From 89a37545165f108f4ee7fd4835597d65752b2399 Mon Sep 17 00:00:00 2001 From: Livingwell088 <58043224+Livingwell088@users.noreply.github.com> Date: Tue, 27 Sep 2022 16:31:59 -0400 Subject: [PATCH 01/42] Initial Proposal --- .idea/.gitignore | 5 +++++ .idea/final_project.iml | 12 ++++++++++++ .idea/modules.xml | 8 ++++++++ .idea/vcs.xml | 6 ++++++ proposal.md | 27 +++++++++++++++++++++++++++ 5 files changed, 58 insertions(+) create mode 100644 .idea/.gitignore create mode 100644 .idea/final_project.iml create mode 100644 .idea/modules.xml create mode 100644 .idea/vcs.xml create mode 100644 proposal.md diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 000000000..b58b603fe --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,5 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ diff --git a/.idea/final_project.iml b/.idea/final_project.iml new file mode 100644 index 000000000..0c8867d7e --- /dev/null +++ b/.idea/final_project.iml @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 000000000..12b00a064 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 000000000..94a25f7f4 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/proposal.md b/proposal.md new file mode 100644 index 000000000..4ed5fb8b3 --- /dev/null +++ b/proposal.md @@ -0,0 +1,27 @@ + +Title: git --date -m "A Dating App for Github Users" (A Github Dating App) +=== +Othniel Bondah, Nicholas Li, Ryan Luu + + +## Technologies +- NodeJS Server +- React for frontend UI (CSS maybe) +- JavaScript for client-side code and logics +- Github for version control +- Auth0 for logging in to the site with the Github Login +- MongoDB for database + + +## Outlines +We will use this dating app for github users to find others who would like to work and mingle together over past, current, or future projects. +Using your github email, you will login and provide your information pertaining to your own projects. +This is not only a chance for you to meet others to find potential work partners for the future but maybe platonic or romantic interests in each other. +Using MongoDB, we will store data of the logged in user with their Github credentials and have them fill out certain preferences in what they find in a work or romantic partner. +Using React, we will supply a certain framework or layout design that is available to all users. + + + +
A certain Form could be setting up a potential date with another user, if you want to work on code together or you want to grab some coffee. +A Results page would be a table or list that can show all the pending, upcoming, or completed dates or meetups for the user. +A logger can include a way to schedule events from the past or for the future. \ No newline at end of file From 2372177ac89651fd2797e62bba3ea97814a41890 Mon Sep 17 00:00:00 2001 From: Ryan Luu Date: Tue, 4 Oct 2022 23:20:00 -0400 Subject: [PATCH 02/42] adding UI --- authentication.html | 26 ++++++++++++++++++++++++++ index.html | 28 ++++++++++++++++++++++++++++ style.css | 12 ++++++++++++ 3 files changed, 66 insertions(+) create mode 100644 authentication.html create mode 100644 index.html create mode 100644 style.css diff --git a/authentication.html b/authentication.html new file mode 100644 index 000000000..1552e0ae6 --- /dev/null +++ b/authentication.html @@ -0,0 +1,26 @@ + + + + Welcome to GitHub Dating + + + + + +

Welcome to the Homework Reminder!!!

+

+ Please input your login information. If you do not have an account, please create simply a new account. +

+
+
+ + +
+
+ + +
+ +
+ + diff --git a/index.html b/index.html new file mode 100644 index 000000000..84f193452 --- /dev/null +++ b/index.html @@ -0,0 +1,28 @@ + + + + GitHub Dating + + + + + +

GitHub Dating

+
+

Let's Get Started

+
+ +

+ +

+ +

+ +

+ +

+ +
+
+ + diff --git a/style.css b/style.css new file mode 100644 index 000000000..59f854e16 --- /dev/null +++ b/style.css @@ -0,0 +1,12 @@ +label{ + padding-left: 20px; +} + +#addr, #fName, #lName, #email{ + float: right; +} + +div.container-box { + margin-left: auto; + margin-right: 75%; +} \ No newline at end of file From a5702a9b07dd7aad1cf2a776254707aac3450761 Mon Sep 17 00:00:00 2001 From: Livingwell088 <58043224+Livingwell088@users.noreply.github.com> Date: Wed, 5 Oct 2022 14:09:46 -0400 Subject: [PATCH 03/42] Initial Server and database connection --- node_modules/.bin/mime | 12 + node_modules/.bin/mime.cmd | 17 + node_modules/.bin/mime.ps1 | 28 + node_modules/.package-lock.json | 801 ++ node_modules/@types/node/LICENSE | 21 + node_modules/@types/node/README.md | 16 + node_modules/@types/node/assert.d.ts | 911 ++ node_modules/@types/node/assert/strict.d.ts | 8 + node_modules/@types/node/async_hooks.d.ts | 501 + node_modules/@types/node/buffer.d.ts | 2253 +++++ node_modules/@types/node/child_process.d.ts | 1369 +++ node_modules/@types/node/cluster.d.ts | 410 + node_modules/@types/node/console.d.ts | 412 + node_modules/@types/node/constants.d.ts | 18 + node_modules/@types/node/crypto.d.ts | 3961 ++++++++ node_modules/@types/node/dgram.d.ts | 545 ++ .../@types/node/diagnostics_channel.d.ts | 153 + node_modules/@types/node/dns.d.ts | 659 ++ node_modules/@types/node/dns/promises.d.ts | 370 + node_modules/@types/node/dom-events.d.ts | 126 + node_modules/@types/node/domain.d.ts | 170 + node_modules/@types/node/events.d.ts | 678 ++ node_modules/@types/node/fs.d.ts | 3872 ++++++++ node_modules/@types/node/fs/promises.d.ts | 1120 +++ node_modules/@types/node/globals.d.ts | 296 + node_modules/@types/node/globals.global.d.ts | 1 + node_modules/@types/node/http.d.ts | 1553 +++ node_modules/@types/node/http2.d.ts | 2106 ++++ node_modules/@types/node/https.d.ts | 541 ++ node_modules/@types/node/index.d.ts | 133 + node_modules/@types/node/inspector.d.ts | 2741 ++++++ node_modules/@types/node/module.d.ts | 114 + node_modules/@types/node/net.d.ts | 869 ++ node_modules/@types/node/os.d.ts | 466 + node_modules/@types/node/package.json | 232 + node_modules/@types/node/path.d.ts | 191 + node_modules/@types/node/perf_hooks.d.ts | 625 ++ node_modules/@types/node/process.d.ts | 1482 +++ node_modules/@types/node/punycode.d.ts | 117 + node_modules/@types/node/querystring.d.ts | 131 + node_modules/@types/node/readline.d.ts | 653 ++ .../@types/node/readline/promises.d.ts | 143 + node_modules/@types/node/repl.d.ts | 424 + node_modules/@types/node/stream.d.ts | 1340 +++ .../@types/node/stream/consumers.d.ts | 12 + node_modules/@types/node/stream/promises.d.ts | 42 + node_modules/@types/node/stream/web.d.ts | 330 + node_modules/@types/node/string_decoder.d.ts | 67 + node_modules/@types/node/test.d.ts | 314 + node_modules/@types/node/timers.d.ts | 94 + node_modules/@types/node/timers/promises.d.ts | 68 + node_modules/@types/node/tls.d.ts | 1028 ++ node_modules/@types/node/trace_events.d.ts | 171 + node_modules/@types/node/ts4.8/assert.d.ts | 911 ++ .../@types/node/ts4.8/assert/strict.d.ts | 8 + .../@types/node/ts4.8/async_hooks.d.ts | 501 + node_modules/@types/node/ts4.8/buffer.d.ts | 2238 +++++ .../@types/node/ts4.8/child_process.d.ts | 1369 +++ node_modules/@types/node/ts4.8/cluster.d.ts | 410 + node_modules/@types/node/ts4.8/console.d.ts | 412 + node_modules/@types/node/ts4.8/constants.d.ts | 18 + node_modules/@types/node/ts4.8/crypto.d.ts | 3961 ++++++++ node_modules/@types/node/ts4.8/dgram.d.ts | 545 ++ .../node/ts4.8/diagnostics_channel.d.ts | 153 + node_modules/@types/node/ts4.8/dns.d.ts | 659 ++ .../@types/node/ts4.8/dns/promises.d.ts | 370 + node_modules/@types/node/ts4.8/domain.d.ts | 170 + node_modules/@types/node/ts4.8/events.d.ts | 641 ++ node_modules/@types/node/ts4.8/fs.d.ts | 3872 ++++++++ .../@types/node/ts4.8/fs/promises.d.ts | 1120 +++ node_modules/@types/node/ts4.8/globals.d.ts | 294 + .../@types/node/ts4.8/globals.global.d.ts | 1 + node_modules/@types/node/ts4.8/http.d.ts | 1553 +++ node_modules/@types/node/ts4.8/http2.d.ts | 2106 ++++ node_modules/@types/node/ts4.8/https.d.ts | 541 ++ node_modules/@types/node/ts4.8/index.d.ts | 87 + node_modules/@types/node/ts4.8/inspector.d.ts | 2741 ++++++ node_modules/@types/node/ts4.8/module.d.ts | 114 + node_modules/@types/node/ts4.8/net.d.ts | 869 ++ node_modules/@types/node/ts4.8/os.d.ts | 466 + node_modules/@types/node/ts4.8/path.d.ts | 191 + .../@types/node/ts4.8/perf_hooks.d.ts | 610 ++ node_modules/@types/node/ts4.8/process.d.ts | 1482 +++ node_modules/@types/node/ts4.8/punycode.d.ts | 117 + .../@types/node/ts4.8/querystring.d.ts | 131 + node_modules/@types/node/ts4.8/readline.d.ts | 653 ++ .../@types/node/ts4.8/readline/promises.d.ts | 143 + node_modules/@types/node/ts4.8/repl.d.ts | 424 + node_modules/@types/node/ts4.8/stream.d.ts | 1339 +++ .../@types/node/ts4.8/stream/consumers.d.ts | 24 + .../@types/node/ts4.8/stream/promises.d.ts | 42 + .../@types/node/ts4.8/stream/web.d.ts | 330 + .../@types/node/ts4.8/string_decoder.d.ts | 67 + node_modules/@types/node/ts4.8/test.d.ts | 314 + node_modules/@types/node/ts4.8/timers.d.ts | 94 + .../@types/node/ts4.8/timers/promises.d.ts | 68 + node_modules/@types/node/ts4.8/tls.d.ts | 1028 ++ .../@types/node/ts4.8/trace_events.d.ts | 171 + node_modules/@types/node/ts4.8/tty.d.ts | 206 + node_modules/@types/node/ts4.8/url.d.ts | 897 ++ node_modules/@types/node/ts4.8/util.d.ts | 1792 ++++ node_modules/@types/node/ts4.8/v8.d.ts | 396 + node_modules/@types/node/ts4.8/vm.d.ts | 509 + node_modules/@types/node/ts4.8/wasi.d.ts | 158 + .../@types/node/ts4.8/worker_threads.d.ts | 646 ++ node_modules/@types/node/ts4.8/zlib.d.ts | 517 + node_modules/@types/node/tty.d.ts | 206 + node_modules/@types/node/url.d.ts | 897 ++ node_modules/@types/node/util.d.ts | 1822 ++++ node_modules/@types/node/v8.d.ts | 396 + node_modules/@types/node/vm.d.ts | 509 + node_modules/@types/node/wasi.d.ts | 158 + node_modules/@types/node/worker_threads.d.ts | 689 ++ node_modules/@types/node/zlib.d.ts | 517 + .../@types/webidl-conversions/LICENSE | 21 + .../@types/webidl-conversions/README.md | 16 + .../@types/webidl-conversions/index.d.ts | 97 + .../@types/webidl-conversions/package.json | 30 + node_modules/@types/whatwg-url/LICENSE | 21 + node_modules/@types/whatwg-url/README.md | 16 + .../@types/whatwg-url/dist/URL-impl.d.ts | 23 + node_modules/@types/whatwg-url/dist/URL.d.ts | 76 + .../whatwg-url/dist/URLSearchParams-impl.d.ts | 23 + .../whatwg-url/dist/URLSearchParams.d.ts | 91 + node_modules/@types/whatwg-url/index.d.ts | 162 + node_modules/@types/whatwg-url/package.json | 33 + .../@types/whatwg-url/webidl2js-wrapper.d.ts | 4 + node_modules/accepts/HISTORY.md | 243 + node_modules/accepts/LICENSE | 23 + node_modules/accepts/README.md | 140 + node_modules/accepts/index.js | 238 + node_modules/accepts/package.json | 47 + node_modules/array-flatten/LICENSE | 21 + node_modules/array-flatten/README.md | 43 + node_modules/array-flatten/array-flatten.js | 64 + node_modules/array-flatten/package.json | 39 + node_modules/base64-js/LICENSE | 21 + node_modules/base64-js/README.md | 34 + node_modules/base64-js/base64js.min.js | 1 + node_modules/base64-js/index.d.ts | 3 + node_modules/base64-js/index.js | 150 + node_modules/base64-js/package.json | 47 + node_modules/body-parser/HISTORY.md | 651 ++ node_modules/body-parser/LICENSE | 23 + node_modules/body-parser/README.md | 464 + node_modules/body-parser/SECURITY.md | 25 + node_modules/body-parser/index.js | 157 + node_modules/body-parser/lib/read.js | 205 + node_modules/body-parser/lib/types/json.js | 236 + node_modules/body-parser/lib/types/raw.js | 101 + node_modules/body-parser/lib/types/text.js | 121 + .../body-parser/lib/types/urlencoded.js | 284 + node_modules/body-parser/package.json | 56 + node_modules/bson/LICENSE.md | 201 + node_modules/bson/README.md | 376 + node_modules/bson/bower.json | 26 + node_modules/bson/bson.d.ts | 1228 +++ node_modules/bson/dist/bson.browser.esm.js | 7470 +++++++++++++++ .../bson/dist/bson.browser.esm.js.map | 1 + node_modules/bson/dist/bson.browser.umd.js | 7537 +++++++++++++++ .../bson/dist/bson.browser.umd.js.map | 1 + node_modules/bson/dist/bson.bundle.js | 7536 +++++++++++++++ node_modules/bson/dist/bson.bundle.js.map | 1 + node_modules/bson/dist/bson.esm.js | 5436 +++++++++++ node_modules/bson/dist/bson.esm.js.map | 1 + node_modules/bson/etc/prepare.js | 19 + node_modules/bson/lib/binary.js | 426 + node_modules/bson/lib/binary.js.map | 1 + node_modules/bson/lib/bson.js | 251 + node_modules/bson/lib/bson.js.map | 1 + node_modules/bson/lib/code.js | 46 + node_modules/bson/lib/code.js.map | 1 + node_modules/bson/lib/constants.js | 82 + node_modules/bson/lib/constants.js.map | 1 + node_modules/bson/lib/db_ref.js | 97 + node_modules/bson/lib/db_ref.js.map | 1 + node_modules/bson/lib/decimal128.js | 669 ++ node_modules/bson/lib/decimal128.js.map | 1 + node_modules/bson/lib/double.js | 76 + node_modules/bson/lib/double.js.map | 1 + node_modules/bson/lib/ensure_buffer.js | 25 + node_modules/bson/lib/ensure_buffer.js.map | 1 + node_modules/bson/lib/error.js | 55 + node_modules/bson/lib/error.js.map | 1 + node_modules/bson/lib/extended_json.js | 390 + node_modules/bson/lib/extended_json.js.map | 1 + node_modules/bson/lib/int_32.js | 58 + node_modules/bson/lib/int_32.js.map | 1 + node_modules/bson/lib/long.js | 900 ++ node_modules/bson/lib/long.js.map | 1 + node_modules/bson/lib/map.js | 123 + node_modules/bson/lib/map.js.map | 1 + node_modules/bson/lib/max_key.js | 33 + node_modules/bson/lib/max_key.js.map | 1 + node_modules/bson/lib/min_key.js | 33 + node_modules/bson/lib/min_key.js.map | 1 + node_modules/bson/lib/objectid.js | 299 + node_modules/bson/lib/objectid.js.map | 1 + .../bson/lib/parser/calculate_size.js | 194 + .../bson/lib/parser/calculate_size.js.map | 1 + node_modules/bson/lib/parser/deserializer.js | 665 ++ .../bson/lib/parser/deserializer.js.map | 1 + node_modules/bson/lib/parser/serializer.js | 867 ++ .../bson/lib/parser/serializer.js.map | 1 + node_modules/bson/lib/parser/utils.js | 115 + node_modules/bson/lib/parser/utils.js.map | 1 + node_modules/bson/lib/regexp.js | 74 + node_modules/bson/lib/regexp.js.map | 1 + node_modules/bson/lib/symbol.js | 48 + node_modules/bson/lib/symbol.js.map | 1 + node_modules/bson/lib/timestamp.js | 102 + node_modules/bson/lib/timestamp.js.map | 1 + node_modules/bson/lib/utils/global.js | 18 + node_modules/bson/lib/utils/global.js.map | 1 + node_modules/bson/lib/uuid_utils.js | 35 + node_modules/bson/lib/uuid_utils.js.map | 1 + node_modules/bson/lib/validate_utf8.js | 47 + node_modules/bson/lib/validate_utf8.js.map | 1 + node_modules/bson/package.json | 116 + node_modules/bson/src/binary.ts | 481 + node_modules/bson/src/bson.ts | 330 + node_modules/bson/src/code.ts | 61 + node_modules/bson/src/constants.ts | 110 + node_modules/bson/src/db_ref.ts | 124 + node_modules/bson/src/decimal128.ts | 773 ++ node_modules/bson/src/double.ts | 91 + node_modules/bson/src/ensure_buffer.ts | 27 + node_modules/bson/src/error.ts | 23 + node_modules/bson/src/extended_json.ts | 462 + node_modules/bson/src/int_32.ts | 70 + node_modules/bson/src/long.ts | 1040 ++ node_modules/bson/src/map.ts | 119 + node_modules/bson/src/max_key.ts | 38 + node_modules/bson/src/min_key.ts | 38 + node_modules/bson/src/objectid.ts | 354 + .../bson/src/parser/calculate_size.ts | 228 + node_modules/bson/src/parser/deserializer.ts | 782 ++ node_modules/bson/src/parser/serializer.ts | 1076 +++ node_modules/bson/src/parser/utils.ts | 127 + node_modules/bson/src/regexp.ts | 105 + node_modules/bson/src/symbol.ts | 58 + node_modules/bson/src/timestamp.ts | 119 + node_modules/bson/src/utils/global.ts | 22 + node_modules/bson/src/uuid_utils.ts | 33 + node_modules/bson/src/validate_utf8.ts | 47 + node_modules/buffer/AUTHORS.md | 70 + node_modules/buffer/LICENSE | 21 + node_modules/buffer/README.md | 410 + node_modules/buffer/index.d.ts | 186 + node_modules/buffer/index.js | 1817 ++++ node_modules/buffer/package.json | 96 + node_modules/bytes/History.md | 97 + node_modules/bytes/LICENSE | 23 + node_modules/bytes/Readme.md | 152 + node_modules/bytes/index.js | 170 + node_modules/bytes/package.json | 42 + node_modules/call-bind/.eslintignore | 1 + node_modules/call-bind/.eslintrc | 17 + node_modules/call-bind/.github/FUNDING.yml | 12 + node_modules/call-bind/.nycrc | 13 + node_modules/call-bind/CHANGELOG.md | 42 + node_modules/call-bind/LICENSE | 21 + node_modules/call-bind/README.md | 2 + node_modules/call-bind/callBound.js | 15 + node_modules/call-bind/index.js | 47 + node_modules/call-bind/package.json | 80 + node_modules/call-bind/test/callBound.js | 55 + node_modules/call-bind/test/index.js | 66 + node_modules/content-disposition/HISTORY.md | 60 + node_modules/content-disposition/LICENSE | 22 + node_modules/content-disposition/README.md | 142 + node_modules/content-disposition/index.js | 458 + node_modules/content-disposition/package.json | 44 + node_modules/content-type/HISTORY.md | 24 + node_modules/content-type/LICENSE | 22 + node_modules/content-type/README.md | 92 + node_modules/content-type/index.js | 222 + node_modules/content-type/package.json | 40 + node_modules/cookie-signature/.npmignore | 4 + node_modules/cookie-signature/History.md | 38 + node_modules/cookie-signature/Readme.md | 42 + node_modules/cookie-signature/index.js | 51 + node_modules/cookie-signature/package.json | 18 + node_modules/cookie/HISTORY.md | 142 + node_modules/cookie/LICENSE | 24 + node_modules/cookie/README.md | 302 + node_modules/cookie/SECURITY.md | 25 + node_modules/cookie/index.js | 270 + node_modules/cookie/package.json | 44 + node_modules/debug/.coveralls.yml | 1 + node_modules/debug/.eslintrc | 11 + node_modules/debug/.npmignore | 9 + node_modules/debug/.travis.yml | 14 + node_modules/debug/CHANGELOG.md | 362 + node_modules/debug/LICENSE | 19 + node_modules/debug/Makefile | 50 + node_modules/debug/README.md | 312 + node_modules/debug/component.json | 19 + node_modules/debug/karma.conf.js | 70 + node_modules/debug/node.js | 1 + node_modules/debug/package.json | 49 + node_modules/debug/src/browser.js | 185 + node_modules/debug/src/debug.js | 202 + node_modules/debug/src/index.js | 10 + node_modules/debug/src/inspector-log.js | 15 + node_modules/debug/src/node.js | 248 + node_modules/denque/CHANGELOG.md | 29 + node_modules/denque/LICENSE | 201 + node_modules/denque/README.md | 77 + node_modules/denque/index.d.ts | 47 + node_modules/denque/index.js | 481 + node_modules/denque/package.json | 58 + node_modules/depd/History.md | 103 + node_modules/depd/LICENSE | 22 + node_modules/depd/Readme.md | 280 + node_modules/depd/index.js | 538 ++ node_modules/depd/lib/browser/index.js | 77 + node_modules/depd/package.json | 45 + node_modules/destroy/LICENSE | 23 + node_modules/destroy/README.md | 63 + node_modules/destroy/index.js | 209 + node_modules/destroy/package.json | 48 + node_modules/ee-first/LICENSE | 22 + node_modules/ee-first/README.md | 80 + node_modules/ee-first/index.js | 95 + node_modules/ee-first/package.json | 29 + node_modules/encodeurl/HISTORY.md | 14 + node_modules/encodeurl/LICENSE | 22 + node_modules/encodeurl/README.md | 128 + node_modules/encodeurl/index.js | 60 + node_modules/encodeurl/package.json | 40 + node_modules/escape-html/LICENSE | 24 + node_modules/escape-html/Readme.md | 43 + node_modules/escape-html/index.js | 78 + node_modules/escape-html/package.json | 24 + node_modules/etag/HISTORY.md | 83 + node_modules/etag/LICENSE | 22 + node_modules/etag/README.md | 159 + node_modules/etag/index.js | 131 + node_modules/etag/package.json | 47 + node_modules/express/History.md | 3579 +++++++ node_modules/express/LICENSE | 24 + node_modules/express/Readme.md | 166 + node_modules/express/index.js | 11 + node_modules/express/lib/application.js | 661 ++ node_modules/express/lib/express.js | 116 + node_modules/express/lib/middleware/init.js | 43 + node_modules/express/lib/middleware/query.js | 47 + node_modules/express/lib/request.js | 525 + node_modules/express/lib/response.js | 1169 +++ node_modules/express/lib/router/index.js | 673 ++ node_modules/express/lib/router/layer.js | 181 + node_modules/express/lib/router/route.js | 225 + node_modules/express/lib/utils.js | 304 + node_modules/express/lib/view.js | 182 + node_modules/express/package.json | 99 + node_modules/finalhandler/HISTORY.md | 195 + node_modules/finalhandler/LICENSE | 22 + node_modules/finalhandler/README.md | 147 + node_modules/finalhandler/SECURITY.md | 25 + node_modules/finalhandler/index.js | 336 + node_modules/finalhandler/package.json | 46 + node_modules/forwarded/HISTORY.md | 21 + node_modules/forwarded/LICENSE | 22 + node_modules/forwarded/README.md | 57 + node_modules/forwarded/index.js | 90 + node_modules/forwarded/package.json | 45 + node_modules/fresh/HISTORY.md | 70 + node_modules/fresh/LICENSE | 23 + node_modules/fresh/README.md | 119 + node_modules/fresh/index.js | 137 + node_modules/fresh/package.json | 46 + node_modules/function-bind/.editorconfig | 20 + node_modules/function-bind/.eslintrc | 15 + node_modules/function-bind/.jscs.json | 176 + node_modules/function-bind/.npmignore | 22 + node_modules/function-bind/.travis.yml | 168 + node_modules/function-bind/LICENSE | 20 + node_modules/function-bind/README.md | 48 + node_modules/function-bind/implementation.js | 52 + node_modules/function-bind/index.js | 5 + node_modules/function-bind/package.json | 63 + node_modules/function-bind/test/.eslintrc | 9 + node_modules/function-bind/test/index.js | 252 + node_modules/get-intrinsic/.eslintrc | 37 + .../get-intrinsic/.github/FUNDING.yml | 12 + node_modules/get-intrinsic/.nycrc | 9 + node_modules/get-intrinsic/CHANGELOG.md | 98 + node_modules/get-intrinsic/LICENSE | 21 + node_modules/get-intrinsic/README.md | 71 + node_modules/get-intrinsic/index.js | 334 + node_modules/get-intrinsic/package.json | 91 + .../get-intrinsic/test/GetIntrinsic.js | 274 + node_modules/has-symbols/.eslintrc | 11 + node_modules/has-symbols/.github/FUNDING.yml | 12 + node_modules/has-symbols/.nycrc | 9 + node_modules/has-symbols/CHANGELOG.md | 75 + node_modules/has-symbols/LICENSE | 21 + node_modules/has-symbols/README.md | 46 + node_modules/has-symbols/index.js | 13 + node_modules/has-symbols/package.json | 101 + node_modules/has-symbols/shams.js | 42 + node_modules/has-symbols/test/index.js | 22 + .../has-symbols/test/shams/core-js.js | 28 + .../test/shams/get-own-property-symbols.js | 28 + node_modules/has-symbols/test/tests.js | 56 + node_modules/has/LICENSE-MIT | 22 + node_modules/has/README.md | 18 + node_modules/has/package.json | 48 + node_modules/has/src/index.js | 5 + node_modules/has/test/index.js | 10 + node_modules/http-errors/HISTORY.md | 180 + node_modules/http-errors/LICENSE | 23 + node_modules/http-errors/README.md | 169 + node_modules/http-errors/index.js | 289 + node_modules/http-errors/package.json | 50 + node_modules/iconv-lite/Changelog.md | 162 + node_modules/iconv-lite/LICENSE | 21 + node_modules/iconv-lite/README.md | 156 + .../iconv-lite/encodings/dbcs-codec.js | 555 ++ .../iconv-lite/encodings/dbcs-data.js | 176 + node_modules/iconv-lite/encodings/index.js | 22 + node_modules/iconv-lite/encodings/internal.js | 188 + .../iconv-lite/encodings/sbcs-codec.js | 72 + .../encodings/sbcs-data-generated.js | 451 + .../iconv-lite/encodings/sbcs-data.js | 174 + .../encodings/tables/big5-added.json | 122 + .../iconv-lite/encodings/tables/cp936.json | 264 + .../iconv-lite/encodings/tables/cp949.json | 273 + .../iconv-lite/encodings/tables/cp950.json | 177 + .../iconv-lite/encodings/tables/eucjp.json | 182 + .../encodings/tables/gb18030-ranges.json | 1 + .../encodings/tables/gbk-added.json | 55 + .../iconv-lite/encodings/tables/shiftjis.json | 125 + node_modules/iconv-lite/encodings/utf16.js | 177 + node_modules/iconv-lite/encodings/utf7.js | 290 + node_modules/iconv-lite/lib/bom-handling.js | 52 + node_modules/iconv-lite/lib/extend-node.js | 217 + node_modules/iconv-lite/lib/index.d.ts | 24 + node_modules/iconv-lite/lib/index.js | 153 + node_modules/iconv-lite/lib/streams.js | 121 + node_modules/iconv-lite/package.json | 46 + node_modules/ieee754/LICENSE | 11 + node_modules/ieee754/README.md | 51 + node_modules/ieee754/index.d.ts | 10 + node_modules/ieee754/index.js | 85 + node_modules/ieee754/package.json | 52 + node_modules/inherits/LICENSE | 16 + node_modules/inherits/README.md | 42 + node_modules/inherits/inherits.js | 9 + node_modules/inherits/inherits_browser.js | 27 + node_modules/inherits/package.json | 29 + node_modules/ip/README.md | 90 + node_modules/ip/lib/ip.js | 422 + node_modules/ip/package.json | 25 + node_modules/ipaddr.js/LICENSE | 19 + node_modules/ipaddr.js/README.md | 233 + node_modules/ipaddr.js/ipaddr.min.js | 1 + node_modules/ipaddr.js/lib/ipaddr.js | 673 ++ node_modules/ipaddr.js/lib/ipaddr.js.d.ts | 68 + node_modules/ipaddr.js/package.json | 35 + node_modules/media-typer/HISTORY.md | 22 + node_modules/media-typer/LICENSE | 22 + node_modules/media-typer/README.md | 81 + node_modules/media-typer/index.js | 270 + node_modules/media-typer/package.json | 26 + node_modules/memory-pager/.travis.yml | 4 + node_modules/memory-pager/LICENSE | 21 + node_modules/memory-pager/README.md | 65 + node_modules/memory-pager/index.js | 160 + node_modules/memory-pager/package.json | 24 + node_modules/memory-pager/test.js | 80 + node_modules/merge-descriptors/HISTORY.md | 21 + node_modules/merge-descriptors/LICENSE | 23 + node_modules/merge-descriptors/README.md | 48 + node_modules/merge-descriptors/index.js | 60 + node_modules/merge-descriptors/package.json | 32 + node_modules/methods/HISTORY.md | 29 + node_modules/methods/LICENSE | 24 + node_modules/methods/README.md | 51 + node_modules/methods/index.js | 69 + node_modules/methods/package.json | 36 + node_modules/mime-db/HISTORY.md | 507 + node_modules/mime-db/LICENSE | 23 + node_modules/mime-db/README.md | 100 + node_modules/mime-db/db.json | 8519 +++++++++++++++++ node_modules/mime-db/index.js | 12 + node_modules/mime-db/package.json | 60 + node_modules/mime-types/HISTORY.md | 397 + node_modules/mime-types/LICENSE | 23 + node_modules/mime-types/README.md | 113 + node_modules/mime-types/index.js | 188 + node_modules/mime-types/package.json | 44 + node_modules/mime/.npmignore | 0 node_modules/mime/CHANGELOG.md | 164 + node_modules/mime/LICENSE | 21 + node_modules/mime/README.md | 90 + node_modules/mime/cli.js | 8 + node_modules/mime/mime.js | 108 + node_modules/mime/package.json | 44 + node_modules/mime/src/build.js | 53 + node_modules/mime/src/test.js | 60 + node_modules/mime/types.json | 1 + .../.esm-wrapper.mjs | 6 + .../mongodb-connection-string-url/LICENSE | 192 + .../mongodb-connection-string-url/README.md | 25 + .../lib/index.d.ts | 62 + .../lib/index.js | 213 + .../lib/index.js.map | 1 + .../lib/redact.d.ts | 7 + .../lib/redact.js | 86 + .../lib/redact.js.map | 1 + .../package.json | 62 + node_modules/mongodb/LICENSE.md | 201 + node_modules/mongodb/README.md | 280 + node_modules/mongodb/etc/prepare.js | 12 + node_modules/mongodb/lib/admin.js | 112 + node_modules/mongodb/lib/admin.js.map | 1 + node_modules/mongodb/lib/bson.js | 71 + node_modules/mongodb/lib/bson.js.map | 1 + node_modules/mongodb/lib/bulk/common.js | 976 ++ node_modules/mongodb/lib/bulk/common.js.map | 1 + node_modules/mongodb/lib/bulk/ordered.js | 67 + node_modules/mongodb/lib/bulk/ordered.js.map | 1 + node_modules/mongodb/lib/bulk/unordered.js | 92 + .../mongodb/lib/bulk/unordered.js.map | 1 + node_modules/mongodb/lib/change_stream.js | 374 + node_modules/mongodb/lib/change_stream.js.map | 1 + .../mongodb/lib/cmap/auth/auth_provider.js | 36 + .../lib/cmap/auth/auth_provider.js.map | 1 + node_modules/mongodb/lib/cmap/auth/gssapi.js | 190 + .../mongodb/lib/cmap/auth/gssapi.js.map | 1 + .../lib/cmap/auth/mongo_credentials.js | 134 + .../lib/cmap/auth/mongo_credentials.js.map | 1 + node_modules/mongodb/lib/cmap/auth/mongocr.js | 44 + .../mongodb/lib/cmap/auth/mongocr.js.map | 1 + .../mongodb/lib/cmap/auth/mongodb_aws.js | 204 + .../mongodb/lib/cmap/auth/mongodb_aws.js.map | 1 + node_modules/mongodb/lib/cmap/auth/plain.js | 27 + .../mongodb/lib/cmap/auth/plain.js.map | 1 + .../mongodb/lib/cmap/auth/providers.js | 21 + .../mongodb/lib/cmap/auth/providers.js.map | 1 + node_modules/mongodb/lib/cmap/auth/scram.js | 288 + .../mongodb/lib/cmap/auth/scram.js.map | 1 + node_modules/mongodb/lib/cmap/auth/x509.js | 39 + .../mongodb/lib/cmap/auth/x509.js.map | 1 + .../lib/cmap/command_monitoring_events.js | 243 + .../lib/cmap/command_monitoring_events.js.map | 1 + node_modules/mongodb/lib/cmap/commands.js | 481 + node_modules/mongodb/lib/cmap/commands.js.map | 1 + node_modules/mongodb/lib/cmap/connect.js | 398 + node_modules/mongodb/lib/cmap/connect.js.map | 1 + node_modules/mongodb/lib/cmap/connection.js | 470 + .../mongodb/lib/cmap/connection.js.map | 1 + .../mongodb/lib/cmap/connection_pool.js | 550 ++ .../mongodb/lib/cmap/connection_pool.js.map | 1 + .../lib/cmap/connection_pool_events.js | 159 + .../lib/cmap/connection_pool_events.js.map | 1 + node_modules/mongodb/lib/cmap/errors.js | 49 + node_modules/mongodb/lib/cmap/errors.js.map | 1 + .../mongodb/lib/cmap/message_stream.js | 175 + .../mongodb/lib/cmap/message_stream.js.map | 1 + node_modules/mongodb/lib/cmap/metrics.js | 62 + node_modules/mongodb/lib/cmap/metrics.js.map | 1 + .../mongodb/lib/cmap/stream_description.js | 51 + .../lib/cmap/stream_description.js.map | 1 + .../lib/cmap/wire_protocol/compression.js | 96 + .../lib/cmap/wire_protocol/compression.js.map | 1 + .../lib/cmap/wire_protocol/constants.js | 15 + .../lib/cmap/wire_protocol/constants.js.map | 1 + .../mongodb/lib/cmap/wire_protocol/shared.js | 55 + .../lib/cmap/wire_protocol/shared.js.map | 1 + node_modules/mongodb/lib/collection.js | 535 ++ node_modules/mongodb/lib/collection.js.map | 1 + node_modules/mongodb/lib/connection_string.js | 1098 +++ .../mongodb/lib/connection_string.js.map | 1 + node_modules/mongodb/lib/constants.js | 131 + node_modules/mongodb/lib/constants.js.map | 1 + .../mongodb/lib/cursor/abstract_cursor.js | 646 ++ .../mongodb/lib/cursor/abstract_cursor.js.map | 1 + .../mongodb/lib/cursor/aggregation_cursor.js | 172 + .../lib/cursor/aggregation_cursor.js.map | 1 + .../lib/cursor/change_stream_cursor.js | 115 + .../lib/cursor/change_stream_cursor.js.map | 1 + .../mongodb/lib/cursor/find_cursor.js | 382 + .../mongodb/lib/cursor/find_cursor.js.map | 1 + .../lib/cursor/list_collections_cursor.js | 37 + .../lib/cursor/list_collections_cursor.js.map | 1 + .../mongodb/lib/cursor/list_indexes_cursor.js | 36 + .../lib/cursor/list_indexes_cursor.js.map | 1 + node_modules/mongodb/lib/db.js | 337 + node_modules/mongodb/lib/db.js.map | 1 + node_modules/mongodb/lib/deps.js | 63 + node_modules/mongodb/lib/deps.js.map | 1 + node_modules/mongodb/lib/encrypter.js | 109 + node_modules/mongodb/lib/encrypter.js.map | 1 + node_modules/mongodb/lib/error.js | 801 ++ node_modules/mongodb/lib/error.js.map | 1 + node_modules/mongodb/lib/explain.js | 35 + node_modules/mongodb/lib/explain.js.map | 1 + node_modules/mongodb/lib/gridfs/download.js | 318 + .../mongodb/lib/gridfs/download.js.map | 1 + node_modules/mongodb/lib/gridfs/index.js | 152 + node_modules/mongodb/lib/gridfs/index.js.map | 1 + node_modules/mongodb/lib/gridfs/upload.js | 377 + node_modules/mongodb/lib/gridfs/upload.js.map | 1 + node_modules/mongodb/lib/index.js | 175 + node_modules/mongodb/lib/index.js.map | 1 + node_modules/mongodb/lib/logger.js | 217 + node_modules/mongodb/lib/logger.js.map | 1 + node_modules/mongodb/lib/mongo_client.js | 292 + node_modules/mongodb/lib/mongo_client.js.map | 1 + node_modules/mongodb/lib/mongo_types.js | 41 + node_modules/mongodb/lib/mongo_types.js.map | 1 + .../mongodb/lib/operations/add_user.js | 72 + .../mongodb/lib/operations/add_user.js.map | 1 + .../mongodb/lib/operations/aggregate.js | 90 + .../mongodb/lib/operations/aggregate.js.map | 1 + .../mongodb/lib/operations/bulk_write.js | 43 + .../mongodb/lib/operations/bulk_write.js.map | 1 + .../mongodb/lib/operations/collections.js | 29 + .../mongodb/lib/operations/collections.js.map | 1 + .../mongodb/lib/operations/command.js | 95 + .../mongodb/lib/operations/command.js.map | 1 + .../lib/operations/common_functions.js | 71 + .../lib/operations/common_functions.js.map | 1 + .../mongodb/lib/operations/connect.js | 85 + .../mongodb/lib/operations/connect.js.map | 1 + node_modules/mongodb/lib/operations/count.js | 39 + .../mongodb/lib/operations/count.js.map | 1 + .../mongodb/lib/operations/count_documents.js | 37 + .../lib/operations/count_documents.js.map | 1 + .../lib/operations/create_collection.js | 100 + .../lib/operations/create_collection.js.map | 1 + node_modules/mongodb/lib/operations/delete.js | 135 + .../mongodb/lib/operations/delete.js.map | 1 + .../mongodb/lib/operations/distinct.js | 67 + .../mongodb/lib/operations/distinct.js.map | 1 + node_modules/mongodb/lib/operations/drop.js | 84 + .../mongodb/lib/operations/drop.js.map | 1 + .../operations/estimated_document_count.js | 38 + .../estimated_document_count.js.map | 1 + node_modules/mongodb/lib/operations/eval.js | 55 + .../mongodb/lib/operations/eval.js.map | 1 + .../lib/operations/execute_operation.js | 185 + .../lib/operations/execute_operation.js.map | 1 + node_modules/mongodb/lib/operations/find.js | 165 + .../mongodb/lib/operations/find.js.map | 1 + .../mongodb/lib/operations/find_and_modify.js | 156 + .../lib/operations/find_and_modify.js.map | 1 + .../mongodb/lib/operations/get_more.js | 58 + .../mongodb/lib/operations/get_more.js.map | 1 + .../mongodb/lib/operations/indexes.js | 270 + .../mongodb/lib/operations/indexes.js.map | 1 + node_modules/mongodb/lib/operations/insert.js | 99 + .../mongodb/lib/operations/insert.js.map | 1 + .../mongodb/lib/operations/is_capped.js | 30 + .../mongodb/lib/operations/is_capped.js.map | 1 + .../mongodb/lib/operations/kill_cursors.js | 32 + .../lib/operations/kill_cursors.js.map | 1 + .../lib/operations/list_collections.js | 46 + .../lib/operations/list_collections.js.map | 1 + .../mongodb/lib/operations/list_databases.js | 35 + .../lib/operations/list_databases.js.map | 1 + .../mongodb/lib/operations/map_reduce.js | 166 + .../mongodb/lib/operations/map_reduce.js.map | 1 + .../mongodb/lib/operations/operation.js | 70 + .../mongodb/lib/operations/operation.js.map | 1 + .../lib/operations/options_operation.js | 29 + .../lib/operations/options_operation.js.map | 1 + .../mongodb/lib/operations/profiling_level.js | 33 + .../lib/operations/profiling_level.js.map | 1 + .../mongodb/lib/operations/remove_user.js | 21 + .../mongodb/lib/operations/remove_user.js.map | 1 + node_modules/mongodb/lib/operations/rename.js | 46 + .../mongodb/lib/operations/rename.js.map | 1 + .../mongodb/lib/operations/run_command.js | 26 + .../mongodb/lib/operations/run_command.js.map | 1 + .../lib/operations/set_profiling_level.js | 51 + .../lib/operations/set_profiling_level.js.map | 1 + node_modules/mongodb/lib/operations/stats.js | 48 + .../mongodb/lib/operations/stats.js.map | 1 + node_modules/mongodb/lib/operations/update.js | 200 + .../mongodb/lib/operations/update.js.map | 1 + .../lib/operations/validate_collection.js | 41 + .../lib/operations/validate_collection.js.map | 1 + node_modules/mongodb/lib/promise_provider.js | 51 + .../mongodb/lib/promise_provider.js.map | 1 + node_modules/mongodb/lib/read_concern.js | 74 + node_modules/mongodb/lib/read_concern.js.map | 1 + node_modules/mongodb/lib/read_preference.js | 204 + .../mongodb/lib/read_preference.js.map | 1 + node_modules/mongodb/lib/sdam/common.js | 56 + node_modules/mongodb/lib/sdam/common.js.map | 1 + node_modules/mongodb/lib/sdam/events.js | 125 + node_modules/mongodb/lib/sdam/events.js.map | 1 + node_modules/mongodb/lib/sdam/monitor.js | 413 + node_modules/mongodb/lib/sdam/monitor.js.map | 1 + node_modules/mongodb/lib/sdam/server.js | 355 + node_modules/mongodb/lib/sdam/server.js.map | 1 + .../mongodb/lib/sdam/server_description.js | 190 + .../lib/sdam/server_description.js.map | 1 + .../mongodb/lib/sdam/server_selection.js | 228 + .../mongodb/lib/sdam/server_selection.js.map | 1 + node_modules/mongodb/lib/sdam/srv_polling.js | 122 + .../mongodb/lib/sdam/srv_polling.js.map | 1 + node_modules/mongodb/lib/sdam/topology.js | 655 ++ node_modules/mongodb/lib/sdam/topology.js.map | 1 + .../mongodb/lib/sdam/topology_description.js | 340 + .../lib/sdam/topology_description.js.map | 1 + node_modules/mongodb/lib/sessions.js | 747 ++ node_modules/mongodb/lib/sessions.js.map | 1 + node_modules/mongodb/lib/sort.js | 97 + node_modules/mongodb/lib/sort.js.map | 1 + node_modules/mongodb/lib/transactions.js | 138 + node_modules/mongodb/lib/transactions.js.map | 1 + node_modules/mongodb/lib/utils.js | 1032 ++ node_modules/mongodb/lib/utils.js.map | 1 + node_modules/mongodb/lib/write_concern.js | 71 + node_modules/mongodb/lib/write_concern.js.map | 1 + node_modules/mongodb/mongodb.d.ts | 6876 +++++++++++++ node_modules/mongodb/package.json | 138 + node_modules/mongodb/src/admin.ts | 325 + node_modules/mongodb/src/bson.ts | 116 + node_modules/mongodb/src/bulk/common.ts | 1397 +++ node_modules/mongodb/src/bulk/ordered.ts | 83 + node_modules/mongodb/src/bulk/unordered.ts | 110 + node_modules/mongodb/src/change_stream.ts | 964 ++ .../mongodb/src/cmap/auth/auth_provider.ts | 60 + node_modules/mongodb/src/cmap/auth/gssapi.ts | 241 + .../src/cmap/auth/mongo_credentials.ts | 190 + node_modules/mongodb/src/cmap/auth/mongocr.ts | 47 + .../mongodb/src/cmap/auth/mongodb_aws.ts | 293 + node_modules/mongodb/src/cmap/auth/plain.ts | 25 + .../mongodb/src/cmap/auth/providers.ts | 21 + node_modules/mongodb/src/cmap/auth/scram.ts | 384 + node_modules/mongodb/src/cmap/auth/x509.ts | 53 + .../src/cmap/command_monitoring_events.ts | 301 + node_modules/mongodb/src/cmap/commands.ts | 703 ++ node_modules/mongodb/src/cmap/connect.ts | 523 + node_modules/mongodb/src/cmap/connection.ts | 753 ++ .../mongodb/src/cmap/connection_pool.ts | 779 ++ .../src/cmap/connection_pool_events.ts | 191 + node_modules/mongodb/src/cmap/errors.ts | 58 + .../mongodb/src/cmap/message_stream.ts | 242 + node_modules/mongodb/src/cmap/metrics.ts | 58 + .../mongodb/src/cmap/stream_description.ts | 76 + .../src/cmap/wire_protocol/compression.ts | 130 + .../src/cmap/wire_protocol/constants.ts | 11 + .../mongodb/src/cmap/wire_protocol/shared.ts | 76 + node_modules/mongodb/src/collection.ts | 1757 ++++ node_modules/mongodb/src/connection_string.ts | 1280 +++ node_modules/mongodb/src/constants.ts | 136 + .../mongodb/src/cursor/abstract_cursor.ts | 938 ++ .../mongodb/src/cursor/aggregation_cursor.ts | 220 + .../src/cursor/change_stream_cursor.ts | 194 + .../mongodb/src/cursor/find_cursor.ts | 481 + .../src/cursor/list_collections_cursor.ts | 52 + .../mongodb/src/cursor/list_indexes_cursor.ts | 41 + node_modules/mongodb/src/db.ts | 801 ++ node_modules/mongodb/src/deps.ts | 378 + node_modules/mongodb/src/encrypter.ts | 135 + node_modules/mongodb/src/error.ts | 929 ++ node_modules/mongodb/src/explain.ts | 52 + node_modules/mongodb/src/gridfs/download.ts | 459 + node_modules/mongodb/src/gridfs/index.ts | 260 + node_modules/mongodb/src/gridfs/upload.ts | 568 ++ node_modules/mongodb/src/index.ts | 482 + node_modules/mongodb/src/logger.ts | 265 + node_modules/mongodb/src/mongo_client.ts | 788 ++ node_modules/mongodb/src/mongo_types.ts | 548 ++ .../mongodb/src/operations/add_user.ts | 118 + .../mongodb/src/operations/aggregate.ts | 144 + .../mongodb/src/operations/bulk_write.ts | 67 + .../mongodb/src/operations/collections.ts | 48 + .../mongodb/src/operations/command.ts | 193 + .../src/operations/common_functions.ts | 102 + .../mongodb/src/operations/connect.ts | 107 + node_modules/mongodb/src/operations/count.ts | 68 + .../mongodb/src/operations/count_documents.ts | 57 + .../src/operations/create_collection.ts | 200 + node_modules/mongodb/src/operations/delete.ts | 194 + .../mongodb/src/operations/distinct.ts | 90 + node_modules/mongodb/src/operations/drop.ts | 120 + .../operations/estimated_document_count.ts | 62 + node_modules/mongodb/src/operations/eval.ts | 82 + .../src/operations/execute_operation.ts | 298 + node_modules/mongodb/src/operations/find.ts | 288 + .../mongodb/src/operations/find_and_modify.ts | 295 + .../mongodb/src/operations/get_more.ts | 106 + .../mongodb/src/operations/indexes.ts | 500 + node_modules/mongodb/src/operations/insert.ts | 158 + .../mongodb/src/operations/is_capped.ts | 42 + .../mongodb/src/operations/kill_cursors.ts | 53 + .../src/operations/list_collections.ts | 91 + .../mongodb/src/operations/list_databases.ts | 65 + .../mongodb/src/operations/map_reduce.ts | 250 + .../mongodb/src/operations/operation.ts | 125 + .../src/operations/options_operation.ts | 42 + .../mongodb/src/operations/profiling_level.ts | 39 + .../mongodb/src/operations/remove_user.ts | 33 + node_modules/mongodb/src/operations/rename.ts | 67 + .../mongodb/src/operations/run_command.ts | 36 + .../src/operations/set_profiling_level.ts | 74 + node_modules/mongodb/src/operations/stats.ts | 271 + node_modules/mongodb/src/operations/update.ts | 334 + .../src/operations/validate_collection.ts | 59 + node_modules/mongodb/src/promise_provider.ts | 56 + node_modules/mongodb/src/read_concern.ts | 88 + node_modules/mongodb/src/read_preference.ts | 271 + node_modules/mongodb/src/sdam/common.ts | 79 + node_modules/mongodb/src/sdam/events.ts | 182 + node_modules/mongodb/src/sdam/monitor.ts | 588 ++ node_modules/mongodb/src/sdam/server.ts | 542 ++ .../mongodb/src/sdam/server_description.ts | 262 + .../mongodb/src/sdam/server_selection.ts | 324 + node_modules/mongodb/src/sdam/srv_polling.ts | 165 + node_modules/mongodb/src/sdam/topology.ts | 1027 ++ .../mongodb/src/sdam/topology_description.ts | 486 + node_modules/mongodb/src/sessions.ts | 1079 +++ node_modules/mongodb/src/sort.ts | 132 + node_modules/mongodb/src/transactions.ts | 187 + node_modules/mongodb/src/utils.ts | 1296 +++ node_modules/mongodb/src/write_concern.ts | 114 + node_modules/mongodb/tsconfig.json | 40 + node_modules/ms/index.js | 152 + node_modules/ms/license.md | 21 + node_modules/ms/package.json | 37 + node_modules/ms/readme.md | 51 + node_modules/negotiator/HISTORY.md | 108 + node_modules/negotiator/LICENSE | 24 + node_modules/negotiator/README.md | 203 + node_modules/negotiator/index.js | 82 + node_modules/negotiator/lib/charset.js | 169 + node_modules/negotiator/lib/encoding.js | 184 + node_modules/negotiator/lib/language.js | 179 + node_modules/negotiator/lib/mediaType.js | 294 + node_modules/negotiator/package.json | 42 + node_modules/object-inspect/.eslintrc | 53 + .../object-inspect/.github/FUNDING.yml | 12 + node_modules/object-inspect/.nycrc | 13 + node_modules/object-inspect/CHANGELOG.md | 360 + node_modules/object-inspect/LICENSE | 21 + node_modules/object-inspect/example/all.js | 23 + .../object-inspect/example/circular.js | 6 + node_modules/object-inspect/example/fn.js | 5 + .../object-inspect/example/inspect.js | 10 + node_modules/object-inspect/index.js | 512 + .../object-inspect/package-support.json | 20 + node_modules/object-inspect/package.json | 94 + node_modules/object-inspect/readme.markdown | 86 + node_modules/object-inspect/test-core-js.js | 26 + node_modules/object-inspect/test/bigint.js | 58 + .../object-inspect/test/browser/dom.js | 15 + node_modules/object-inspect/test/circular.js | 16 + node_modules/object-inspect/test/deep.js | 12 + node_modules/object-inspect/test/element.js | 53 + node_modules/object-inspect/test/err.js | 48 + node_modules/object-inspect/test/fakes.js | 29 + node_modules/object-inspect/test/fn.js | 76 + node_modules/object-inspect/test/has.js | 15 + node_modules/object-inspect/test/holes.js | 15 + .../object-inspect/test/indent-option.js | 271 + node_modules/object-inspect/test/inspect.js | 139 + node_modules/object-inspect/test/lowbyte.js | 12 + node_modules/object-inspect/test/number.js | 58 + .../object-inspect/test/quoteStyle.js | 17 + .../object-inspect/test/toStringTag.js | 40 + node_modules/object-inspect/test/undef.js | 12 + node_modules/object-inspect/test/values.js | 211 + node_modules/object-inspect/util.inspect.js | 1 + node_modules/on-finished/HISTORY.md | 98 + node_modules/on-finished/LICENSE | 23 + node_modules/on-finished/README.md | 162 + node_modules/on-finished/index.js | 234 + node_modules/on-finished/package.json | 39 + node_modules/parseurl/HISTORY.md | 58 + node_modules/parseurl/LICENSE | 24 + node_modules/parseurl/README.md | 133 + node_modules/parseurl/index.js | 158 + node_modules/parseurl/package.json | 40 + node_modules/path-to-regexp/History.md | 36 + node_modules/path-to-regexp/LICENSE | 21 + node_modules/path-to-regexp/Readme.md | 35 + node_modules/path-to-regexp/index.js | 129 + node_modules/path-to-regexp/package.json | 30 + node_modules/proxy-addr/HISTORY.md | 161 + node_modules/proxy-addr/LICENSE | 22 + node_modules/proxy-addr/README.md | 139 + node_modules/proxy-addr/index.js | 327 + node_modules/proxy-addr/package.json | 47 + node_modules/punycode/LICENSE-MIT.txt | 20 + node_modules/punycode/README.md | 122 + node_modules/punycode/package.json | 58 + node_modules/punycode/punycode.es6.js | 441 + node_modules/punycode/punycode.js | 440 + node_modules/qs/.editorconfig | 40 + node_modules/qs/.eslintrc | 38 + node_modules/qs/.github/FUNDING.yml | 12 + node_modules/qs/.nycrc | 13 + node_modules/qs/CHANGELOG.md | 388 + node_modules/qs/LICENSE.md | 29 + node_modules/qs/README.md | 623 ++ node_modules/qs/dist/qs.js | 2044 ++++ node_modules/qs/lib/formats.js | 23 + node_modules/qs/lib/index.js | 11 + node_modules/qs/lib/parse.js | 263 + node_modules/qs/lib/stringify.js | 317 + node_modules/qs/lib/utils.js | 252 + node_modules/qs/package.json | 73 + node_modules/qs/test/parse.js | 841 ++ node_modules/qs/test/stringify.js | 865 ++ node_modules/qs/test/utils.js | 136 + node_modules/range-parser/HISTORY.md | 56 + node_modules/range-parser/LICENSE | 23 + node_modules/range-parser/README.md | 84 + node_modules/range-parser/index.js | 162 + node_modules/range-parser/package.json | 44 + node_modules/raw-body/HISTORY.md | 303 + node_modules/raw-body/LICENSE | 22 + node_modules/raw-body/README.md | 223 + node_modules/raw-body/SECURITY.md | 24 + node_modules/raw-body/index.d.ts | 87 + node_modules/raw-body/index.js | 329 + node_modules/raw-body/package.json | 49 + node_modules/safe-buffer/LICENSE | 21 + node_modules/safe-buffer/README.md | 584 ++ node_modules/safe-buffer/index.d.ts | 187 + node_modules/safe-buffer/index.js | 65 + node_modules/safe-buffer/package.json | 51 + node_modules/safer-buffer/LICENSE | 21 + node_modules/safer-buffer/Porting-Buffer.md | 268 + node_modules/safer-buffer/Readme.md | 156 + node_modules/safer-buffer/dangerous.js | 58 + node_modules/safer-buffer/package.json | 34 + node_modules/safer-buffer/safer.js | 77 + node_modules/safer-buffer/tests.js | 406 + node_modules/saslprep/.editorconfig | 10 + node_modules/saslprep/.gitattributes | 1 + node_modules/saslprep/.travis.yml | 10 + node_modules/saslprep/CHANGELOG.md | 19 + node_modules/saslprep/LICENSE | 22 + node_modules/saslprep/code-points.mem | Bin 0 -> 419864 bytes node_modules/saslprep/generate-code-points.js | 51 + node_modules/saslprep/index.js | 157 + node_modules/saslprep/lib/code-points.js | 996 ++ .../saslprep/lib/memory-code-points.js | 39 + node_modules/saslprep/lib/util.js | 21 + node_modules/saslprep/package.json | 72 + node_modules/saslprep/readme.md | 31 + node_modules/saslprep/test/index.js | 76 + node_modules/saslprep/test/util.js | 16 + node_modules/send/HISTORY.md | 521 + node_modules/send/LICENSE | 23 + node_modules/send/README.md | 327 + node_modules/send/SECURITY.md | 24 + node_modules/send/index.js | 1143 +++ node_modules/send/node_modules/ms/index.js | 162 + node_modules/send/node_modules/ms/license.md | 21 + .../send/node_modules/ms/package.json | 38 + node_modules/send/node_modules/ms/readme.md | 59 + node_modules/send/package.json | 62 + node_modules/serve-static/HISTORY.md | 471 + node_modules/serve-static/LICENSE | 25 + node_modules/serve-static/README.md | 257 + node_modules/serve-static/index.js | 210 + node_modules/serve-static/package.json | 42 + node_modules/setprototypeof/LICENSE | 13 + node_modules/setprototypeof/README.md | 31 + node_modules/setprototypeof/index.d.ts | 2 + node_modules/setprototypeof/index.js | 17 + node_modules/setprototypeof/package.json | 38 + node_modules/setprototypeof/test/index.js | 24 + node_modules/side-channel/.eslintignore | 1 + node_modules/side-channel/.eslintrc | 11 + node_modules/side-channel/.github/FUNDING.yml | 12 + node_modules/side-channel/.nycrc | 13 + node_modules/side-channel/CHANGELOG.md | 65 + node_modules/side-channel/LICENSE | 21 + node_modules/side-channel/README.md | 2 + node_modules/side-channel/index.js | 124 + node_modules/side-channel/package.json | 67 + node_modules/side-channel/test/index.js | 78 + node_modules/smart-buffer/.prettierrc.yaml | 5 + node_modules/smart-buffer/.travis.yml | 13 + node_modules/smart-buffer/LICENSE | 20 + node_modules/smart-buffer/README.md | 633 ++ .../smart-buffer/build/smartbuffer.js | 1233 +++ .../smart-buffer/build/smartbuffer.js.map | 1 + node_modules/smart-buffer/build/utils.js | 108 + node_modules/smart-buffer/build/utils.js.map | 1 + node_modules/smart-buffer/docs/CHANGELOG.md | 70 + node_modules/smart-buffer/docs/README_v3.md | 367 + node_modules/smart-buffer/docs/ROADMAP.md | 0 node_modules/smart-buffer/package.json | 79 + .../smart-buffer/typings/smartbuffer.d.ts | 755 ++ node_modules/smart-buffer/typings/utils.d.ts | 66 + node_modules/socks/.eslintrc.cjs | 11 + node_modules/socks/.prettierrc.yaml | 7 + node_modules/socks/LICENSE | 20 + node_modules/socks/README.md | 686 ++ .../socks/build/client/socksclient.js | 793 ++ .../socks/build/client/socksclient.js.map | 1 + node_modules/socks/build/common/constants.js | 114 + .../socks/build/common/constants.js.map | 1 + node_modules/socks/build/common/helpers.js | 128 + .../socks/build/common/helpers.js.map | 1 + .../socks/build/common/receivebuffer.js | 43 + .../socks/build/common/receivebuffer.js.map | 1 + node_modules/socks/build/common/util.js | 25 + node_modules/socks/build/common/util.js.map | 1 + node_modules/socks/build/index.js | 18 + node_modules/socks/build/index.js.map | 1 + node_modules/socks/docs/examples/index.md | 17 + .../examples/javascript/associateExample.md | 90 + .../docs/examples/javascript/bindExample.md | 83 + .../examples/javascript/connectExample.md | 258 + .../examples/typescript/associateExample.md | 93 + .../docs/examples/typescript/bindExample.md | 86 + .../examples/typescript/connectExample.md | 265 + node_modules/socks/docs/index.md | 5 + node_modules/socks/docs/migratingFromV1.md | 86 + node_modules/socks/package.json | 58 + .../socks/typings/client/socksclient.d.ts | 162 + .../socks/typings/common/constants.d.ts | 152 + .../socks/typings/common/helpers.d.ts | 13 + .../socks/typings/common/receivebuffer.d.ts | 12 + node_modules/socks/typings/common/util.d.ts | 17 + node_modules/socks/typings/index.d.ts | 1 + node_modules/sparse-bitfield/.npmignore | 1 + node_modules/sparse-bitfield/.travis.yml | 6 + node_modules/sparse-bitfield/LICENSE | 21 + node_modules/sparse-bitfield/README.md | 62 + node_modules/sparse-bitfield/index.js | 95 + node_modules/sparse-bitfield/package.json | 27 + node_modules/sparse-bitfield/test.js | 79 + node_modules/statuses/HISTORY.md | 82 + node_modules/statuses/LICENSE | 23 + node_modules/statuses/README.md | 136 + node_modules/statuses/codes.json | 65 + node_modules/statuses/index.js | 146 + node_modules/statuses/package.json | 49 + node_modules/toidentifier/HISTORY.md | 9 + node_modules/toidentifier/LICENSE | 21 + node_modules/toidentifier/README.md | 61 + node_modules/toidentifier/index.js | 32 + node_modules/toidentifier/package.json | 38 + node_modules/tr46/LICENSE.md | 21 + node_modules/tr46/README.md | 78 + node_modules/tr46/index.js | 298 + node_modules/tr46/lib/mappingTable.json | 1 + node_modules/tr46/lib/regexes.js | 29 + node_modules/tr46/lib/statusMapping.js | 11 + node_modules/tr46/package.json | 47 + node_modules/type-is/HISTORY.md | 259 + node_modules/type-is/LICENSE | 23 + node_modules/type-is/README.md | 170 + node_modules/type-is/index.js | 266 + node_modules/type-is/package.json | 45 + node_modules/unpipe/HISTORY.md | 4 + node_modules/unpipe/LICENSE | 22 + node_modules/unpipe/README.md | 43 + node_modules/unpipe/index.js | 69 + node_modules/unpipe/package.json | 27 + node_modules/utils-merge/.npmignore | 9 + node_modules/utils-merge/LICENSE | 20 + node_modules/utils-merge/README.md | 34 + node_modules/utils-merge/index.js | 23 + node_modules/utils-merge/package.json | 40 + node_modules/vary/HISTORY.md | 39 + node_modules/vary/LICENSE | 22 + node_modules/vary/README.md | 101 + node_modules/vary/index.js | 149 + node_modules/vary/package.json | 43 + node_modules/webidl-conversions/LICENSE.md | 12 + node_modules/webidl-conversions/README.md | 99 + node_modules/webidl-conversions/lib/index.js | 450 + node_modules/webidl-conversions/package.json | 35 + node_modules/whatwg-url/LICENSE.txt | 21 + node_modules/whatwg-url/README.md | 106 + node_modules/whatwg-url/index.js | 27 + node_modules/whatwg-url/lib/Function.js | 42 + node_modules/whatwg-url/lib/URL-impl.js | 209 + node_modules/whatwg-url/lib/URL.js | 442 + .../whatwg-url/lib/URLSearchParams-impl.js | 130 + .../whatwg-url/lib/URLSearchParams.js | 472 + node_modules/whatwg-url/lib/VoidFunction.js | 26 + node_modules/whatwg-url/lib/encoding.js | 16 + node_modules/whatwg-url/lib/infra.js | 26 + .../whatwg-url/lib/percent-encoding.js | 142 + .../whatwg-url/lib/url-state-machine.js | 1244 +++ node_modules/whatwg-url/lib/urlencoded.js | 106 + node_modules/whatwg-url/lib/utils.js | 190 + node_modules/whatwg-url/package.json | 58 + node_modules/whatwg-url/webidl2js-wrapper.js | 7 + package-lock.json | 1375 +++ package.json | 6 + server.js | 53 + 1098 files changed, 260413 insertions(+) create mode 100644 node_modules/.bin/mime create mode 100644 node_modules/.bin/mime.cmd create mode 100644 node_modules/.bin/mime.ps1 create mode 100644 node_modules/.package-lock.json create mode 100644 node_modules/@types/node/LICENSE create mode 100644 node_modules/@types/node/README.md create mode 100644 node_modules/@types/node/assert.d.ts create mode 100644 node_modules/@types/node/assert/strict.d.ts create mode 100644 node_modules/@types/node/async_hooks.d.ts create mode 100644 node_modules/@types/node/buffer.d.ts create mode 100644 node_modules/@types/node/child_process.d.ts create mode 100644 node_modules/@types/node/cluster.d.ts create mode 100644 node_modules/@types/node/console.d.ts create mode 100644 node_modules/@types/node/constants.d.ts create mode 100644 node_modules/@types/node/crypto.d.ts create mode 100644 node_modules/@types/node/dgram.d.ts create mode 100644 node_modules/@types/node/diagnostics_channel.d.ts create mode 100644 node_modules/@types/node/dns.d.ts create mode 100644 node_modules/@types/node/dns/promises.d.ts create mode 100644 node_modules/@types/node/dom-events.d.ts create mode 100644 node_modules/@types/node/domain.d.ts create mode 100644 node_modules/@types/node/events.d.ts create mode 100644 node_modules/@types/node/fs.d.ts create mode 100644 node_modules/@types/node/fs/promises.d.ts create mode 100644 node_modules/@types/node/globals.d.ts create mode 100644 node_modules/@types/node/globals.global.d.ts create mode 100644 node_modules/@types/node/http.d.ts create mode 100644 node_modules/@types/node/http2.d.ts create mode 100644 node_modules/@types/node/https.d.ts create mode 100644 node_modules/@types/node/index.d.ts create mode 100644 node_modules/@types/node/inspector.d.ts create mode 100644 node_modules/@types/node/module.d.ts create mode 100644 node_modules/@types/node/net.d.ts create mode 100644 node_modules/@types/node/os.d.ts create mode 100644 node_modules/@types/node/package.json create mode 100644 node_modules/@types/node/path.d.ts create mode 100644 node_modules/@types/node/perf_hooks.d.ts create mode 100644 node_modules/@types/node/process.d.ts create mode 100644 node_modules/@types/node/punycode.d.ts create mode 100644 node_modules/@types/node/querystring.d.ts create mode 100644 node_modules/@types/node/readline.d.ts create mode 100644 node_modules/@types/node/readline/promises.d.ts create mode 100644 node_modules/@types/node/repl.d.ts create mode 100644 node_modules/@types/node/stream.d.ts create mode 100644 node_modules/@types/node/stream/consumers.d.ts create mode 100644 node_modules/@types/node/stream/promises.d.ts create mode 100644 node_modules/@types/node/stream/web.d.ts create mode 100644 node_modules/@types/node/string_decoder.d.ts create mode 100644 node_modules/@types/node/test.d.ts create mode 100644 node_modules/@types/node/timers.d.ts create mode 100644 node_modules/@types/node/timers/promises.d.ts create mode 100644 node_modules/@types/node/tls.d.ts create mode 100644 node_modules/@types/node/trace_events.d.ts create mode 100644 node_modules/@types/node/ts4.8/assert.d.ts create mode 100644 node_modules/@types/node/ts4.8/assert/strict.d.ts create mode 100644 node_modules/@types/node/ts4.8/async_hooks.d.ts create mode 100644 node_modules/@types/node/ts4.8/buffer.d.ts create mode 100644 node_modules/@types/node/ts4.8/child_process.d.ts create mode 100644 node_modules/@types/node/ts4.8/cluster.d.ts create mode 100644 node_modules/@types/node/ts4.8/console.d.ts create mode 100644 node_modules/@types/node/ts4.8/constants.d.ts create mode 100644 node_modules/@types/node/ts4.8/crypto.d.ts create mode 100644 node_modules/@types/node/ts4.8/dgram.d.ts create mode 100644 node_modules/@types/node/ts4.8/diagnostics_channel.d.ts create mode 100644 node_modules/@types/node/ts4.8/dns.d.ts create mode 100644 node_modules/@types/node/ts4.8/dns/promises.d.ts create mode 100644 node_modules/@types/node/ts4.8/domain.d.ts create mode 100644 node_modules/@types/node/ts4.8/events.d.ts create mode 100644 node_modules/@types/node/ts4.8/fs.d.ts create mode 100644 node_modules/@types/node/ts4.8/fs/promises.d.ts create mode 100644 node_modules/@types/node/ts4.8/globals.d.ts create mode 100644 node_modules/@types/node/ts4.8/globals.global.d.ts create mode 100644 node_modules/@types/node/ts4.8/http.d.ts create mode 100644 node_modules/@types/node/ts4.8/http2.d.ts create mode 100644 node_modules/@types/node/ts4.8/https.d.ts create mode 100644 node_modules/@types/node/ts4.8/index.d.ts create mode 100644 node_modules/@types/node/ts4.8/inspector.d.ts create mode 100644 node_modules/@types/node/ts4.8/module.d.ts create mode 100644 node_modules/@types/node/ts4.8/net.d.ts create mode 100644 node_modules/@types/node/ts4.8/os.d.ts create mode 100644 node_modules/@types/node/ts4.8/path.d.ts create mode 100644 node_modules/@types/node/ts4.8/perf_hooks.d.ts create mode 100644 node_modules/@types/node/ts4.8/process.d.ts create mode 100644 node_modules/@types/node/ts4.8/punycode.d.ts create mode 100644 node_modules/@types/node/ts4.8/querystring.d.ts create mode 100644 node_modules/@types/node/ts4.8/readline.d.ts create mode 100644 node_modules/@types/node/ts4.8/readline/promises.d.ts create mode 100644 node_modules/@types/node/ts4.8/repl.d.ts create mode 100644 node_modules/@types/node/ts4.8/stream.d.ts create mode 100644 node_modules/@types/node/ts4.8/stream/consumers.d.ts create mode 100644 node_modules/@types/node/ts4.8/stream/promises.d.ts create mode 100644 node_modules/@types/node/ts4.8/stream/web.d.ts create mode 100644 node_modules/@types/node/ts4.8/string_decoder.d.ts create mode 100644 node_modules/@types/node/ts4.8/test.d.ts create mode 100644 node_modules/@types/node/ts4.8/timers.d.ts create mode 100644 node_modules/@types/node/ts4.8/timers/promises.d.ts create mode 100644 node_modules/@types/node/ts4.8/tls.d.ts create mode 100644 node_modules/@types/node/ts4.8/trace_events.d.ts create mode 100644 node_modules/@types/node/ts4.8/tty.d.ts create mode 100644 node_modules/@types/node/ts4.8/url.d.ts create mode 100644 node_modules/@types/node/ts4.8/util.d.ts create mode 100644 node_modules/@types/node/ts4.8/v8.d.ts create mode 100644 node_modules/@types/node/ts4.8/vm.d.ts create mode 100644 node_modules/@types/node/ts4.8/wasi.d.ts create mode 100644 node_modules/@types/node/ts4.8/worker_threads.d.ts create mode 100644 node_modules/@types/node/ts4.8/zlib.d.ts create mode 100644 node_modules/@types/node/tty.d.ts create mode 100644 node_modules/@types/node/url.d.ts create mode 100644 node_modules/@types/node/util.d.ts create mode 100644 node_modules/@types/node/v8.d.ts create mode 100644 node_modules/@types/node/vm.d.ts create mode 100644 node_modules/@types/node/wasi.d.ts create mode 100644 node_modules/@types/node/worker_threads.d.ts create mode 100644 node_modules/@types/node/zlib.d.ts create mode 100644 node_modules/@types/webidl-conversions/LICENSE create mode 100644 node_modules/@types/webidl-conversions/README.md create mode 100644 node_modules/@types/webidl-conversions/index.d.ts create mode 100644 node_modules/@types/webidl-conversions/package.json create mode 100644 node_modules/@types/whatwg-url/LICENSE create mode 100644 node_modules/@types/whatwg-url/README.md create mode 100644 node_modules/@types/whatwg-url/dist/URL-impl.d.ts create mode 100644 node_modules/@types/whatwg-url/dist/URL.d.ts create mode 100644 node_modules/@types/whatwg-url/dist/URLSearchParams-impl.d.ts create mode 100644 node_modules/@types/whatwg-url/dist/URLSearchParams.d.ts create mode 100644 node_modules/@types/whatwg-url/index.d.ts create mode 100644 node_modules/@types/whatwg-url/package.json create mode 100644 node_modules/@types/whatwg-url/webidl2js-wrapper.d.ts create mode 100644 node_modules/accepts/HISTORY.md create mode 100644 node_modules/accepts/LICENSE create mode 100644 node_modules/accepts/README.md create mode 100644 node_modules/accepts/index.js create mode 100644 node_modules/accepts/package.json create mode 100644 node_modules/array-flatten/LICENSE create mode 100644 node_modules/array-flatten/README.md create mode 100644 node_modules/array-flatten/array-flatten.js create mode 100644 node_modules/array-flatten/package.json create mode 100644 node_modules/base64-js/LICENSE create mode 100644 node_modules/base64-js/README.md create mode 100644 node_modules/base64-js/base64js.min.js create mode 100644 node_modules/base64-js/index.d.ts create mode 100644 node_modules/base64-js/index.js create mode 100644 node_modules/base64-js/package.json create mode 100644 node_modules/body-parser/HISTORY.md create mode 100644 node_modules/body-parser/LICENSE create mode 100644 node_modules/body-parser/README.md create mode 100644 node_modules/body-parser/SECURITY.md create mode 100644 node_modules/body-parser/index.js create mode 100644 node_modules/body-parser/lib/read.js create mode 100644 node_modules/body-parser/lib/types/json.js create mode 100644 node_modules/body-parser/lib/types/raw.js create mode 100644 node_modules/body-parser/lib/types/text.js create mode 100644 node_modules/body-parser/lib/types/urlencoded.js create mode 100644 node_modules/body-parser/package.json create mode 100644 node_modules/bson/LICENSE.md create mode 100644 node_modules/bson/README.md create mode 100644 node_modules/bson/bower.json create mode 100644 node_modules/bson/bson.d.ts create mode 100644 node_modules/bson/dist/bson.browser.esm.js create mode 100644 node_modules/bson/dist/bson.browser.esm.js.map create mode 100644 node_modules/bson/dist/bson.browser.umd.js create mode 100644 node_modules/bson/dist/bson.browser.umd.js.map create mode 100644 node_modules/bson/dist/bson.bundle.js create mode 100644 node_modules/bson/dist/bson.bundle.js.map create mode 100644 node_modules/bson/dist/bson.esm.js create mode 100644 node_modules/bson/dist/bson.esm.js.map create mode 100644 node_modules/bson/etc/prepare.js create mode 100644 node_modules/bson/lib/binary.js create mode 100644 node_modules/bson/lib/binary.js.map create mode 100644 node_modules/bson/lib/bson.js create mode 100644 node_modules/bson/lib/bson.js.map create mode 100644 node_modules/bson/lib/code.js create mode 100644 node_modules/bson/lib/code.js.map create mode 100644 node_modules/bson/lib/constants.js create mode 100644 node_modules/bson/lib/constants.js.map create mode 100644 node_modules/bson/lib/db_ref.js create mode 100644 node_modules/bson/lib/db_ref.js.map create mode 100644 node_modules/bson/lib/decimal128.js create mode 100644 node_modules/bson/lib/decimal128.js.map create mode 100644 node_modules/bson/lib/double.js create mode 100644 node_modules/bson/lib/double.js.map create mode 100644 node_modules/bson/lib/ensure_buffer.js create mode 100644 node_modules/bson/lib/ensure_buffer.js.map create mode 100644 node_modules/bson/lib/error.js create mode 100644 node_modules/bson/lib/error.js.map create mode 100644 node_modules/bson/lib/extended_json.js create mode 100644 node_modules/bson/lib/extended_json.js.map create mode 100644 node_modules/bson/lib/int_32.js create mode 100644 node_modules/bson/lib/int_32.js.map create mode 100644 node_modules/bson/lib/long.js create mode 100644 node_modules/bson/lib/long.js.map create mode 100644 node_modules/bson/lib/map.js create mode 100644 node_modules/bson/lib/map.js.map create mode 100644 node_modules/bson/lib/max_key.js create mode 100644 node_modules/bson/lib/max_key.js.map create mode 100644 node_modules/bson/lib/min_key.js create mode 100644 node_modules/bson/lib/min_key.js.map create mode 100644 node_modules/bson/lib/objectid.js create mode 100644 node_modules/bson/lib/objectid.js.map create mode 100644 node_modules/bson/lib/parser/calculate_size.js create mode 100644 node_modules/bson/lib/parser/calculate_size.js.map create mode 100644 node_modules/bson/lib/parser/deserializer.js create mode 100644 node_modules/bson/lib/parser/deserializer.js.map create mode 100644 node_modules/bson/lib/parser/serializer.js create mode 100644 node_modules/bson/lib/parser/serializer.js.map create mode 100644 node_modules/bson/lib/parser/utils.js create mode 100644 node_modules/bson/lib/parser/utils.js.map create mode 100644 node_modules/bson/lib/regexp.js create mode 100644 node_modules/bson/lib/regexp.js.map create mode 100644 node_modules/bson/lib/symbol.js create mode 100644 node_modules/bson/lib/symbol.js.map create mode 100644 node_modules/bson/lib/timestamp.js create mode 100644 node_modules/bson/lib/timestamp.js.map create mode 100644 node_modules/bson/lib/utils/global.js create mode 100644 node_modules/bson/lib/utils/global.js.map create mode 100644 node_modules/bson/lib/uuid_utils.js create mode 100644 node_modules/bson/lib/uuid_utils.js.map create mode 100644 node_modules/bson/lib/validate_utf8.js create mode 100644 node_modules/bson/lib/validate_utf8.js.map create mode 100644 node_modules/bson/package.json create mode 100644 node_modules/bson/src/binary.ts create mode 100644 node_modules/bson/src/bson.ts create mode 100644 node_modules/bson/src/code.ts create mode 100644 node_modules/bson/src/constants.ts create mode 100644 node_modules/bson/src/db_ref.ts create mode 100644 node_modules/bson/src/decimal128.ts create mode 100644 node_modules/bson/src/double.ts create mode 100644 node_modules/bson/src/ensure_buffer.ts create mode 100644 node_modules/bson/src/error.ts create mode 100644 node_modules/bson/src/extended_json.ts create mode 100644 node_modules/bson/src/int_32.ts create mode 100644 node_modules/bson/src/long.ts create mode 100644 node_modules/bson/src/map.ts create mode 100644 node_modules/bson/src/max_key.ts create mode 100644 node_modules/bson/src/min_key.ts create mode 100644 node_modules/bson/src/objectid.ts create mode 100644 node_modules/bson/src/parser/calculate_size.ts create mode 100644 node_modules/bson/src/parser/deserializer.ts create mode 100644 node_modules/bson/src/parser/serializer.ts create mode 100644 node_modules/bson/src/parser/utils.ts create mode 100644 node_modules/bson/src/regexp.ts create mode 100644 node_modules/bson/src/symbol.ts create mode 100644 node_modules/bson/src/timestamp.ts create mode 100644 node_modules/bson/src/utils/global.ts create mode 100644 node_modules/bson/src/uuid_utils.ts create mode 100644 node_modules/bson/src/validate_utf8.ts create mode 100644 node_modules/buffer/AUTHORS.md create mode 100644 node_modules/buffer/LICENSE create mode 100644 node_modules/buffer/README.md create mode 100644 node_modules/buffer/index.d.ts create mode 100644 node_modules/buffer/index.js create mode 100644 node_modules/buffer/package.json create mode 100644 node_modules/bytes/History.md create mode 100644 node_modules/bytes/LICENSE create mode 100644 node_modules/bytes/Readme.md create mode 100644 node_modules/bytes/index.js create mode 100644 node_modules/bytes/package.json create mode 100644 node_modules/call-bind/.eslintignore create mode 100644 node_modules/call-bind/.eslintrc create mode 100644 node_modules/call-bind/.github/FUNDING.yml create mode 100644 node_modules/call-bind/.nycrc create mode 100644 node_modules/call-bind/CHANGELOG.md create mode 100644 node_modules/call-bind/LICENSE create mode 100644 node_modules/call-bind/README.md create mode 100644 node_modules/call-bind/callBound.js create mode 100644 node_modules/call-bind/index.js create mode 100644 node_modules/call-bind/package.json create mode 100644 node_modules/call-bind/test/callBound.js create mode 100644 node_modules/call-bind/test/index.js create mode 100644 node_modules/content-disposition/HISTORY.md create mode 100644 node_modules/content-disposition/LICENSE create mode 100644 node_modules/content-disposition/README.md create mode 100644 node_modules/content-disposition/index.js create mode 100644 node_modules/content-disposition/package.json create mode 100644 node_modules/content-type/HISTORY.md create mode 100644 node_modules/content-type/LICENSE create mode 100644 node_modules/content-type/README.md create mode 100644 node_modules/content-type/index.js create mode 100644 node_modules/content-type/package.json create mode 100644 node_modules/cookie-signature/.npmignore create mode 100644 node_modules/cookie-signature/History.md create mode 100644 node_modules/cookie-signature/Readme.md create mode 100644 node_modules/cookie-signature/index.js create mode 100644 node_modules/cookie-signature/package.json create mode 100644 node_modules/cookie/HISTORY.md create mode 100644 node_modules/cookie/LICENSE create mode 100644 node_modules/cookie/README.md create mode 100644 node_modules/cookie/SECURITY.md create mode 100644 node_modules/cookie/index.js create mode 100644 node_modules/cookie/package.json create mode 100644 node_modules/debug/.coveralls.yml create mode 100644 node_modules/debug/.eslintrc create mode 100644 node_modules/debug/.npmignore create mode 100644 node_modules/debug/.travis.yml create mode 100644 node_modules/debug/CHANGELOG.md create mode 100644 node_modules/debug/LICENSE create mode 100644 node_modules/debug/Makefile create mode 100644 node_modules/debug/README.md create mode 100644 node_modules/debug/component.json create mode 100644 node_modules/debug/karma.conf.js create mode 100644 node_modules/debug/node.js create mode 100644 node_modules/debug/package.json create mode 100644 node_modules/debug/src/browser.js create mode 100644 node_modules/debug/src/debug.js create mode 100644 node_modules/debug/src/index.js create mode 100644 node_modules/debug/src/inspector-log.js create mode 100644 node_modules/debug/src/node.js create mode 100644 node_modules/denque/CHANGELOG.md create mode 100644 node_modules/denque/LICENSE create mode 100644 node_modules/denque/README.md create mode 100644 node_modules/denque/index.d.ts create mode 100644 node_modules/denque/index.js create mode 100644 node_modules/denque/package.json create mode 100644 node_modules/depd/History.md create mode 100644 node_modules/depd/LICENSE create mode 100644 node_modules/depd/Readme.md create mode 100644 node_modules/depd/index.js create mode 100644 node_modules/depd/lib/browser/index.js create mode 100644 node_modules/depd/package.json create mode 100644 node_modules/destroy/LICENSE create mode 100644 node_modules/destroy/README.md create mode 100644 node_modules/destroy/index.js create mode 100644 node_modules/destroy/package.json create mode 100644 node_modules/ee-first/LICENSE create mode 100644 node_modules/ee-first/README.md create mode 100644 node_modules/ee-first/index.js create mode 100644 node_modules/ee-first/package.json create mode 100644 node_modules/encodeurl/HISTORY.md create mode 100644 node_modules/encodeurl/LICENSE create mode 100644 node_modules/encodeurl/README.md create mode 100644 node_modules/encodeurl/index.js create mode 100644 node_modules/encodeurl/package.json create mode 100644 node_modules/escape-html/LICENSE create mode 100644 node_modules/escape-html/Readme.md create mode 100644 node_modules/escape-html/index.js create mode 100644 node_modules/escape-html/package.json create mode 100644 node_modules/etag/HISTORY.md create mode 100644 node_modules/etag/LICENSE create mode 100644 node_modules/etag/README.md create mode 100644 node_modules/etag/index.js create mode 100644 node_modules/etag/package.json create mode 100644 node_modules/express/History.md create mode 100644 node_modules/express/LICENSE create mode 100644 node_modules/express/Readme.md create mode 100644 node_modules/express/index.js create mode 100644 node_modules/express/lib/application.js create mode 100644 node_modules/express/lib/express.js create mode 100644 node_modules/express/lib/middleware/init.js create mode 100644 node_modules/express/lib/middleware/query.js create mode 100644 node_modules/express/lib/request.js create mode 100644 node_modules/express/lib/response.js create mode 100644 node_modules/express/lib/router/index.js create mode 100644 node_modules/express/lib/router/layer.js create mode 100644 node_modules/express/lib/router/route.js create mode 100644 node_modules/express/lib/utils.js create mode 100644 node_modules/express/lib/view.js create mode 100644 node_modules/express/package.json create mode 100644 node_modules/finalhandler/HISTORY.md create mode 100644 node_modules/finalhandler/LICENSE create mode 100644 node_modules/finalhandler/README.md create mode 100644 node_modules/finalhandler/SECURITY.md create mode 100644 node_modules/finalhandler/index.js create mode 100644 node_modules/finalhandler/package.json create mode 100644 node_modules/forwarded/HISTORY.md create mode 100644 node_modules/forwarded/LICENSE create mode 100644 node_modules/forwarded/README.md create mode 100644 node_modules/forwarded/index.js create mode 100644 node_modules/forwarded/package.json create mode 100644 node_modules/fresh/HISTORY.md create mode 100644 node_modules/fresh/LICENSE create mode 100644 node_modules/fresh/README.md create mode 100644 node_modules/fresh/index.js create mode 100644 node_modules/fresh/package.json create mode 100644 node_modules/function-bind/.editorconfig create mode 100644 node_modules/function-bind/.eslintrc create mode 100644 node_modules/function-bind/.jscs.json create mode 100644 node_modules/function-bind/.npmignore create mode 100644 node_modules/function-bind/.travis.yml create mode 100644 node_modules/function-bind/LICENSE create mode 100644 node_modules/function-bind/README.md create mode 100644 node_modules/function-bind/implementation.js create mode 100644 node_modules/function-bind/index.js create mode 100644 node_modules/function-bind/package.json create mode 100644 node_modules/function-bind/test/.eslintrc create mode 100644 node_modules/function-bind/test/index.js create mode 100644 node_modules/get-intrinsic/.eslintrc create mode 100644 node_modules/get-intrinsic/.github/FUNDING.yml create mode 100644 node_modules/get-intrinsic/.nycrc create mode 100644 node_modules/get-intrinsic/CHANGELOG.md create mode 100644 node_modules/get-intrinsic/LICENSE create mode 100644 node_modules/get-intrinsic/README.md create mode 100644 node_modules/get-intrinsic/index.js create mode 100644 node_modules/get-intrinsic/package.json create mode 100644 node_modules/get-intrinsic/test/GetIntrinsic.js create mode 100644 node_modules/has-symbols/.eslintrc create mode 100644 node_modules/has-symbols/.github/FUNDING.yml create mode 100644 node_modules/has-symbols/.nycrc create mode 100644 node_modules/has-symbols/CHANGELOG.md create mode 100644 node_modules/has-symbols/LICENSE create mode 100644 node_modules/has-symbols/README.md create mode 100644 node_modules/has-symbols/index.js create mode 100644 node_modules/has-symbols/package.json create mode 100644 node_modules/has-symbols/shams.js create mode 100644 node_modules/has-symbols/test/index.js create mode 100644 node_modules/has-symbols/test/shams/core-js.js create mode 100644 node_modules/has-symbols/test/shams/get-own-property-symbols.js create mode 100644 node_modules/has-symbols/test/tests.js create mode 100644 node_modules/has/LICENSE-MIT create mode 100644 node_modules/has/README.md create mode 100644 node_modules/has/package.json create mode 100644 node_modules/has/src/index.js create mode 100644 node_modules/has/test/index.js create mode 100644 node_modules/http-errors/HISTORY.md create mode 100644 node_modules/http-errors/LICENSE create mode 100644 node_modules/http-errors/README.md create mode 100644 node_modules/http-errors/index.js create mode 100644 node_modules/http-errors/package.json create mode 100644 node_modules/iconv-lite/Changelog.md create mode 100644 node_modules/iconv-lite/LICENSE create mode 100644 node_modules/iconv-lite/README.md create mode 100644 node_modules/iconv-lite/encodings/dbcs-codec.js create mode 100644 node_modules/iconv-lite/encodings/dbcs-data.js create mode 100644 node_modules/iconv-lite/encodings/index.js create mode 100644 node_modules/iconv-lite/encodings/internal.js create mode 100644 node_modules/iconv-lite/encodings/sbcs-codec.js create mode 100644 node_modules/iconv-lite/encodings/sbcs-data-generated.js create mode 100644 node_modules/iconv-lite/encodings/sbcs-data.js create mode 100644 node_modules/iconv-lite/encodings/tables/big5-added.json create mode 100644 node_modules/iconv-lite/encodings/tables/cp936.json create mode 100644 node_modules/iconv-lite/encodings/tables/cp949.json create mode 100644 node_modules/iconv-lite/encodings/tables/cp950.json create mode 100644 node_modules/iconv-lite/encodings/tables/eucjp.json create mode 100644 node_modules/iconv-lite/encodings/tables/gb18030-ranges.json create mode 100644 node_modules/iconv-lite/encodings/tables/gbk-added.json create mode 100644 node_modules/iconv-lite/encodings/tables/shiftjis.json create mode 100644 node_modules/iconv-lite/encodings/utf16.js create mode 100644 node_modules/iconv-lite/encodings/utf7.js create mode 100644 node_modules/iconv-lite/lib/bom-handling.js create mode 100644 node_modules/iconv-lite/lib/extend-node.js create mode 100644 node_modules/iconv-lite/lib/index.d.ts create mode 100644 node_modules/iconv-lite/lib/index.js create mode 100644 node_modules/iconv-lite/lib/streams.js create mode 100644 node_modules/iconv-lite/package.json create mode 100644 node_modules/ieee754/LICENSE create mode 100644 node_modules/ieee754/README.md create mode 100644 node_modules/ieee754/index.d.ts create mode 100644 node_modules/ieee754/index.js create mode 100644 node_modules/ieee754/package.json create mode 100644 node_modules/inherits/LICENSE create mode 100644 node_modules/inherits/README.md create mode 100644 node_modules/inherits/inherits.js create mode 100644 node_modules/inherits/inherits_browser.js create mode 100644 node_modules/inherits/package.json create mode 100644 node_modules/ip/README.md create mode 100644 node_modules/ip/lib/ip.js create mode 100644 node_modules/ip/package.json create mode 100644 node_modules/ipaddr.js/LICENSE create mode 100644 node_modules/ipaddr.js/README.md create mode 100644 node_modules/ipaddr.js/ipaddr.min.js create mode 100644 node_modules/ipaddr.js/lib/ipaddr.js create mode 100644 node_modules/ipaddr.js/lib/ipaddr.js.d.ts create mode 100644 node_modules/ipaddr.js/package.json create mode 100644 node_modules/media-typer/HISTORY.md create mode 100644 node_modules/media-typer/LICENSE create mode 100644 node_modules/media-typer/README.md create mode 100644 node_modules/media-typer/index.js create mode 100644 node_modules/media-typer/package.json create mode 100644 node_modules/memory-pager/.travis.yml create mode 100644 node_modules/memory-pager/LICENSE create mode 100644 node_modules/memory-pager/README.md create mode 100644 node_modules/memory-pager/index.js create mode 100644 node_modules/memory-pager/package.json create mode 100644 node_modules/memory-pager/test.js create mode 100644 node_modules/merge-descriptors/HISTORY.md create mode 100644 node_modules/merge-descriptors/LICENSE create mode 100644 node_modules/merge-descriptors/README.md create mode 100644 node_modules/merge-descriptors/index.js create mode 100644 node_modules/merge-descriptors/package.json create mode 100644 node_modules/methods/HISTORY.md create mode 100644 node_modules/methods/LICENSE create mode 100644 node_modules/methods/README.md create mode 100644 node_modules/methods/index.js create mode 100644 node_modules/methods/package.json create mode 100644 node_modules/mime-db/HISTORY.md create mode 100644 node_modules/mime-db/LICENSE create mode 100644 node_modules/mime-db/README.md create mode 100644 node_modules/mime-db/db.json create mode 100644 node_modules/mime-db/index.js create mode 100644 node_modules/mime-db/package.json create mode 100644 node_modules/mime-types/HISTORY.md create mode 100644 node_modules/mime-types/LICENSE create mode 100644 node_modules/mime-types/README.md create mode 100644 node_modules/mime-types/index.js create mode 100644 node_modules/mime-types/package.json create mode 100644 node_modules/mime/.npmignore create mode 100644 node_modules/mime/CHANGELOG.md create mode 100644 node_modules/mime/LICENSE create mode 100644 node_modules/mime/README.md create mode 100644 node_modules/mime/cli.js create mode 100644 node_modules/mime/mime.js create mode 100644 node_modules/mime/package.json create mode 100644 node_modules/mime/src/build.js create mode 100644 node_modules/mime/src/test.js create mode 100644 node_modules/mime/types.json create mode 100644 node_modules/mongodb-connection-string-url/.esm-wrapper.mjs create mode 100644 node_modules/mongodb-connection-string-url/LICENSE create mode 100644 node_modules/mongodb-connection-string-url/README.md create mode 100644 node_modules/mongodb-connection-string-url/lib/index.d.ts create mode 100644 node_modules/mongodb-connection-string-url/lib/index.js create mode 100644 node_modules/mongodb-connection-string-url/lib/index.js.map create mode 100644 node_modules/mongodb-connection-string-url/lib/redact.d.ts create mode 100644 node_modules/mongodb-connection-string-url/lib/redact.js create mode 100644 node_modules/mongodb-connection-string-url/lib/redact.js.map create mode 100644 node_modules/mongodb-connection-string-url/package.json create mode 100644 node_modules/mongodb/LICENSE.md create mode 100644 node_modules/mongodb/README.md create mode 100644 node_modules/mongodb/etc/prepare.js create mode 100644 node_modules/mongodb/lib/admin.js create mode 100644 node_modules/mongodb/lib/admin.js.map create mode 100644 node_modules/mongodb/lib/bson.js create mode 100644 node_modules/mongodb/lib/bson.js.map create mode 100644 node_modules/mongodb/lib/bulk/common.js create mode 100644 node_modules/mongodb/lib/bulk/common.js.map create mode 100644 node_modules/mongodb/lib/bulk/ordered.js create mode 100644 node_modules/mongodb/lib/bulk/ordered.js.map create mode 100644 node_modules/mongodb/lib/bulk/unordered.js create mode 100644 node_modules/mongodb/lib/bulk/unordered.js.map create mode 100644 node_modules/mongodb/lib/change_stream.js create mode 100644 node_modules/mongodb/lib/change_stream.js.map create mode 100644 node_modules/mongodb/lib/cmap/auth/auth_provider.js create mode 100644 node_modules/mongodb/lib/cmap/auth/auth_provider.js.map create mode 100644 node_modules/mongodb/lib/cmap/auth/gssapi.js create mode 100644 node_modules/mongodb/lib/cmap/auth/gssapi.js.map create mode 100644 node_modules/mongodb/lib/cmap/auth/mongo_credentials.js create mode 100644 node_modules/mongodb/lib/cmap/auth/mongo_credentials.js.map create mode 100644 node_modules/mongodb/lib/cmap/auth/mongocr.js create mode 100644 node_modules/mongodb/lib/cmap/auth/mongocr.js.map create mode 100644 node_modules/mongodb/lib/cmap/auth/mongodb_aws.js create mode 100644 node_modules/mongodb/lib/cmap/auth/mongodb_aws.js.map create mode 100644 node_modules/mongodb/lib/cmap/auth/plain.js create mode 100644 node_modules/mongodb/lib/cmap/auth/plain.js.map create mode 100644 node_modules/mongodb/lib/cmap/auth/providers.js create mode 100644 node_modules/mongodb/lib/cmap/auth/providers.js.map create mode 100644 node_modules/mongodb/lib/cmap/auth/scram.js create mode 100644 node_modules/mongodb/lib/cmap/auth/scram.js.map create mode 100644 node_modules/mongodb/lib/cmap/auth/x509.js create mode 100644 node_modules/mongodb/lib/cmap/auth/x509.js.map create mode 100644 node_modules/mongodb/lib/cmap/command_monitoring_events.js create mode 100644 node_modules/mongodb/lib/cmap/command_monitoring_events.js.map create mode 100644 node_modules/mongodb/lib/cmap/commands.js create mode 100644 node_modules/mongodb/lib/cmap/commands.js.map create mode 100644 node_modules/mongodb/lib/cmap/connect.js create mode 100644 node_modules/mongodb/lib/cmap/connect.js.map create mode 100644 node_modules/mongodb/lib/cmap/connection.js create mode 100644 node_modules/mongodb/lib/cmap/connection.js.map create mode 100644 node_modules/mongodb/lib/cmap/connection_pool.js create mode 100644 node_modules/mongodb/lib/cmap/connection_pool.js.map create mode 100644 node_modules/mongodb/lib/cmap/connection_pool_events.js create mode 100644 node_modules/mongodb/lib/cmap/connection_pool_events.js.map create mode 100644 node_modules/mongodb/lib/cmap/errors.js create mode 100644 node_modules/mongodb/lib/cmap/errors.js.map create mode 100644 node_modules/mongodb/lib/cmap/message_stream.js create mode 100644 node_modules/mongodb/lib/cmap/message_stream.js.map create mode 100644 node_modules/mongodb/lib/cmap/metrics.js create mode 100644 node_modules/mongodb/lib/cmap/metrics.js.map create mode 100644 node_modules/mongodb/lib/cmap/stream_description.js create mode 100644 node_modules/mongodb/lib/cmap/stream_description.js.map create mode 100644 node_modules/mongodb/lib/cmap/wire_protocol/compression.js create mode 100644 node_modules/mongodb/lib/cmap/wire_protocol/compression.js.map create mode 100644 node_modules/mongodb/lib/cmap/wire_protocol/constants.js create mode 100644 node_modules/mongodb/lib/cmap/wire_protocol/constants.js.map create mode 100644 node_modules/mongodb/lib/cmap/wire_protocol/shared.js create mode 100644 node_modules/mongodb/lib/cmap/wire_protocol/shared.js.map create mode 100644 node_modules/mongodb/lib/collection.js create mode 100644 node_modules/mongodb/lib/collection.js.map create mode 100644 node_modules/mongodb/lib/connection_string.js create mode 100644 node_modules/mongodb/lib/connection_string.js.map create mode 100644 node_modules/mongodb/lib/constants.js create mode 100644 node_modules/mongodb/lib/constants.js.map create mode 100644 node_modules/mongodb/lib/cursor/abstract_cursor.js create mode 100644 node_modules/mongodb/lib/cursor/abstract_cursor.js.map create mode 100644 node_modules/mongodb/lib/cursor/aggregation_cursor.js create mode 100644 node_modules/mongodb/lib/cursor/aggregation_cursor.js.map create mode 100644 node_modules/mongodb/lib/cursor/change_stream_cursor.js create mode 100644 node_modules/mongodb/lib/cursor/change_stream_cursor.js.map create mode 100644 node_modules/mongodb/lib/cursor/find_cursor.js create mode 100644 node_modules/mongodb/lib/cursor/find_cursor.js.map create mode 100644 node_modules/mongodb/lib/cursor/list_collections_cursor.js create mode 100644 node_modules/mongodb/lib/cursor/list_collections_cursor.js.map create mode 100644 node_modules/mongodb/lib/cursor/list_indexes_cursor.js create mode 100644 node_modules/mongodb/lib/cursor/list_indexes_cursor.js.map create mode 100644 node_modules/mongodb/lib/db.js create mode 100644 node_modules/mongodb/lib/db.js.map create mode 100644 node_modules/mongodb/lib/deps.js create mode 100644 node_modules/mongodb/lib/deps.js.map create mode 100644 node_modules/mongodb/lib/encrypter.js create mode 100644 node_modules/mongodb/lib/encrypter.js.map create mode 100644 node_modules/mongodb/lib/error.js create mode 100644 node_modules/mongodb/lib/error.js.map create mode 100644 node_modules/mongodb/lib/explain.js create mode 100644 node_modules/mongodb/lib/explain.js.map create mode 100644 node_modules/mongodb/lib/gridfs/download.js create mode 100644 node_modules/mongodb/lib/gridfs/download.js.map create mode 100644 node_modules/mongodb/lib/gridfs/index.js create mode 100644 node_modules/mongodb/lib/gridfs/index.js.map create mode 100644 node_modules/mongodb/lib/gridfs/upload.js create mode 100644 node_modules/mongodb/lib/gridfs/upload.js.map create mode 100644 node_modules/mongodb/lib/index.js create mode 100644 node_modules/mongodb/lib/index.js.map create mode 100644 node_modules/mongodb/lib/logger.js create mode 100644 node_modules/mongodb/lib/logger.js.map create mode 100644 node_modules/mongodb/lib/mongo_client.js create mode 100644 node_modules/mongodb/lib/mongo_client.js.map create mode 100644 node_modules/mongodb/lib/mongo_types.js create mode 100644 node_modules/mongodb/lib/mongo_types.js.map create mode 100644 node_modules/mongodb/lib/operations/add_user.js create mode 100644 node_modules/mongodb/lib/operations/add_user.js.map create mode 100644 node_modules/mongodb/lib/operations/aggregate.js create mode 100644 node_modules/mongodb/lib/operations/aggregate.js.map create mode 100644 node_modules/mongodb/lib/operations/bulk_write.js create mode 100644 node_modules/mongodb/lib/operations/bulk_write.js.map create mode 100644 node_modules/mongodb/lib/operations/collections.js create mode 100644 node_modules/mongodb/lib/operations/collections.js.map create mode 100644 node_modules/mongodb/lib/operations/command.js create mode 100644 node_modules/mongodb/lib/operations/command.js.map create mode 100644 node_modules/mongodb/lib/operations/common_functions.js create mode 100644 node_modules/mongodb/lib/operations/common_functions.js.map create mode 100644 node_modules/mongodb/lib/operations/connect.js create mode 100644 node_modules/mongodb/lib/operations/connect.js.map create mode 100644 node_modules/mongodb/lib/operations/count.js create mode 100644 node_modules/mongodb/lib/operations/count.js.map create mode 100644 node_modules/mongodb/lib/operations/count_documents.js create mode 100644 node_modules/mongodb/lib/operations/count_documents.js.map create mode 100644 node_modules/mongodb/lib/operations/create_collection.js create mode 100644 node_modules/mongodb/lib/operations/create_collection.js.map create mode 100644 node_modules/mongodb/lib/operations/delete.js create mode 100644 node_modules/mongodb/lib/operations/delete.js.map create mode 100644 node_modules/mongodb/lib/operations/distinct.js create mode 100644 node_modules/mongodb/lib/operations/distinct.js.map create mode 100644 node_modules/mongodb/lib/operations/drop.js create mode 100644 node_modules/mongodb/lib/operations/drop.js.map create mode 100644 node_modules/mongodb/lib/operations/estimated_document_count.js create mode 100644 node_modules/mongodb/lib/operations/estimated_document_count.js.map create mode 100644 node_modules/mongodb/lib/operations/eval.js create mode 100644 node_modules/mongodb/lib/operations/eval.js.map create mode 100644 node_modules/mongodb/lib/operations/execute_operation.js create mode 100644 node_modules/mongodb/lib/operations/execute_operation.js.map create mode 100644 node_modules/mongodb/lib/operations/find.js create mode 100644 node_modules/mongodb/lib/operations/find.js.map create mode 100644 node_modules/mongodb/lib/operations/find_and_modify.js create mode 100644 node_modules/mongodb/lib/operations/find_and_modify.js.map create mode 100644 node_modules/mongodb/lib/operations/get_more.js create mode 100644 node_modules/mongodb/lib/operations/get_more.js.map create mode 100644 node_modules/mongodb/lib/operations/indexes.js create mode 100644 node_modules/mongodb/lib/operations/indexes.js.map create mode 100644 node_modules/mongodb/lib/operations/insert.js create mode 100644 node_modules/mongodb/lib/operations/insert.js.map create mode 100644 node_modules/mongodb/lib/operations/is_capped.js create mode 100644 node_modules/mongodb/lib/operations/is_capped.js.map create mode 100644 node_modules/mongodb/lib/operations/kill_cursors.js create mode 100644 node_modules/mongodb/lib/operations/kill_cursors.js.map create mode 100644 node_modules/mongodb/lib/operations/list_collections.js create mode 100644 node_modules/mongodb/lib/operations/list_collections.js.map create mode 100644 node_modules/mongodb/lib/operations/list_databases.js create mode 100644 node_modules/mongodb/lib/operations/list_databases.js.map create mode 100644 node_modules/mongodb/lib/operations/map_reduce.js create mode 100644 node_modules/mongodb/lib/operations/map_reduce.js.map create mode 100644 node_modules/mongodb/lib/operations/operation.js create mode 100644 node_modules/mongodb/lib/operations/operation.js.map create mode 100644 node_modules/mongodb/lib/operations/options_operation.js create mode 100644 node_modules/mongodb/lib/operations/options_operation.js.map create mode 100644 node_modules/mongodb/lib/operations/profiling_level.js create mode 100644 node_modules/mongodb/lib/operations/profiling_level.js.map create mode 100644 node_modules/mongodb/lib/operations/remove_user.js create mode 100644 node_modules/mongodb/lib/operations/remove_user.js.map create mode 100644 node_modules/mongodb/lib/operations/rename.js create mode 100644 node_modules/mongodb/lib/operations/rename.js.map create mode 100644 node_modules/mongodb/lib/operations/run_command.js create mode 100644 node_modules/mongodb/lib/operations/run_command.js.map create mode 100644 node_modules/mongodb/lib/operations/set_profiling_level.js create mode 100644 node_modules/mongodb/lib/operations/set_profiling_level.js.map create mode 100644 node_modules/mongodb/lib/operations/stats.js create mode 100644 node_modules/mongodb/lib/operations/stats.js.map create mode 100644 node_modules/mongodb/lib/operations/update.js create mode 100644 node_modules/mongodb/lib/operations/update.js.map create mode 100644 node_modules/mongodb/lib/operations/validate_collection.js create mode 100644 node_modules/mongodb/lib/operations/validate_collection.js.map create mode 100644 node_modules/mongodb/lib/promise_provider.js create mode 100644 node_modules/mongodb/lib/promise_provider.js.map create mode 100644 node_modules/mongodb/lib/read_concern.js create mode 100644 node_modules/mongodb/lib/read_concern.js.map create mode 100644 node_modules/mongodb/lib/read_preference.js create mode 100644 node_modules/mongodb/lib/read_preference.js.map create mode 100644 node_modules/mongodb/lib/sdam/common.js create mode 100644 node_modules/mongodb/lib/sdam/common.js.map create mode 100644 node_modules/mongodb/lib/sdam/events.js create mode 100644 node_modules/mongodb/lib/sdam/events.js.map create mode 100644 node_modules/mongodb/lib/sdam/monitor.js create mode 100644 node_modules/mongodb/lib/sdam/monitor.js.map create mode 100644 node_modules/mongodb/lib/sdam/server.js create mode 100644 node_modules/mongodb/lib/sdam/server.js.map create mode 100644 node_modules/mongodb/lib/sdam/server_description.js create mode 100644 node_modules/mongodb/lib/sdam/server_description.js.map create mode 100644 node_modules/mongodb/lib/sdam/server_selection.js create mode 100644 node_modules/mongodb/lib/sdam/server_selection.js.map create mode 100644 node_modules/mongodb/lib/sdam/srv_polling.js create mode 100644 node_modules/mongodb/lib/sdam/srv_polling.js.map create mode 100644 node_modules/mongodb/lib/sdam/topology.js create mode 100644 node_modules/mongodb/lib/sdam/topology.js.map create mode 100644 node_modules/mongodb/lib/sdam/topology_description.js create mode 100644 node_modules/mongodb/lib/sdam/topology_description.js.map create mode 100644 node_modules/mongodb/lib/sessions.js create mode 100644 node_modules/mongodb/lib/sessions.js.map create mode 100644 node_modules/mongodb/lib/sort.js create mode 100644 node_modules/mongodb/lib/sort.js.map create mode 100644 node_modules/mongodb/lib/transactions.js create mode 100644 node_modules/mongodb/lib/transactions.js.map create mode 100644 node_modules/mongodb/lib/utils.js create mode 100644 node_modules/mongodb/lib/utils.js.map create mode 100644 node_modules/mongodb/lib/write_concern.js create mode 100644 node_modules/mongodb/lib/write_concern.js.map create mode 100644 node_modules/mongodb/mongodb.d.ts create mode 100644 node_modules/mongodb/package.json create mode 100644 node_modules/mongodb/src/admin.ts create mode 100644 node_modules/mongodb/src/bson.ts create mode 100644 node_modules/mongodb/src/bulk/common.ts create mode 100644 node_modules/mongodb/src/bulk/ordered.ts create mode 100644 node_modules/mongodb/src/bulk/unordered.ts create mode 100644 node_modules/mongodb/src/change_stream.ts create mode 100644 node_modules/mongodb/src/cmap/auth/auth_provider.ts create mode 100644 node_modules/mongodb/src/cmap/auth/gssapi.ts create mode 100644 node_modules/mongodb/src/cmap/auth/mongo_credentials.ts create mode 100644 node_modules/mongodb/src/cmap/auth/mongocr.ts create mode 100644 node_modules/mongodb/src/cmap/auth/mongodb_aws.ts create mode 100644 node_modules/mongodb/src/cmap/auth/plain.ts create mode 100644 node_modules/mongodb/src/cmap/auth/providers.ts create mode 100644 node_modules/mongodb/src/cmap/auth/scram.ts create mode 100644 node_modules/mongodb/src/cmap/auth/x509.ts create mode 100644 node_modules/mongodb/src/cmap/command_monitoring_events.ts create mode 100644 node_modules/mongodb/src/cmap/commands.ts create mode 100644 node_modules/mongodb/src/cmap/connect.ts create mode 100644 node_modules/mongodb/src/cmap/connection.ts create mode 100644 node_modules/mongodb/src/cmap/connection_pool.ts create mode 100644 node_modules/mongodb/src/cmap/connection_pool_events.ts create mode 100644 node_modules/mongodb/src/cmap/errors.ts create mode 100644 node_modules/mongodb/src/cmap/message_stream.ts create mode 100644 node_modules/mongodb/src/cmap/metrics.ts create mode 100644 node_modules/mongodb/src/cmap/stream_description.ts create mode 100644 node_modules/mongodb/src/cmap/wire_protocol/compression.ts create mode 100644 node_modules/mongodb/src/cmap/wire_protocol/constants.ts create mode 100644 node_modules/mongodb/src/cmap/wire_protocol/shared.ts create mode 100644 node_modules/mongodb/src/collection.ts create mode 100644 node_modules/mongodb/src/connection_string.ts create mode 100644 node_modules/mongodb/src/constants.ts create mode 100644 node_modules/mongodb/src/cursor/abstract_cursor.ts create mode 100644 node_modules/mongodb/src/cursor/aggregation_cursor.ts create mode 100644 node_modules/mongodb/src/cursor/change_stream_cursor.ts create mode 100644 node_modules/mongodb/src/cursor/find_cursor.ts create mode 100644 node_modules/mongodb/src/cursor/list_collections_cursor.ts create mode 100644 node_modules/mongodb/src/cursor/list_indexes_cursor.ts create mode 100644 node_modules/mongodb/src/db.ts create mode 100644 node_modules/mongodb/src/deps.ts create mode 100644 node_modules/mongodb/src/encrypter.ts create mode 100644 node_modules/mongodb/src/error.ts create mode 100644 node_modules/mongodb/src/explain.ts create mode 100644 node_modules/mongodb/src/gridfs/download.ts create mode 100644 node_modules/mongodb/src/gridfs/index.ts create mode 100644 node_modules/mongodb/src/gridfs/upload.ts create mode 100644 node_modules/mongodb/src/index.ts create mode 100644 node_modules/mongodb/src/logger.ts create mode 100644 node_modules/mongodb/src/mongo_client.ts create mode 100644 node_modules/mongodb/src/mongo_types.ts create mode 100644 node_modules/mongodb/src/operations/add_user.ts create mode 100644 node_modules/mongodb/src/operations/aggregate.ts create mode 100644 node_modules/mongodb/src/operations/bulk_write.ts create mode 100644 node_modules/mongodb/src/operations/collections.ts create mode 100644 node_modules/mongodb/src/operations/command.ts create mode 100644 node_modules/mongodb/src/operations/common_functions.ts create mode 100644 node_modules/mongodb/src/operations/connect.ts create mode 100644 node_modules/mongodb/src/operations/count.ts create mode 100644 node_modules/mongodb/src/operations/count_documents.ts create mode 100644 node_modules/mongodb/src/operations/create_collection.ts create mode 100644 node_modules/mongodb/src/operations/delete.ts create mode 100644 node_modules/mongodb/src/operations/distinct.ts create mode 100644 node_modules/mongodb/src/operations/drop.ts create mode 100644 node_modules/mongodb/src/operations/estimated_document_count.ts create mode 100644 node_modules/mongodb/src/operations/eval.ts create mode 100644 node_modules/mongodb/src/operations/execute_operation.ts create mode 100644 node_modules/mongodb/src/operations/find.ts create mode 100644 node_modules/mongodb/src/operations/find_and_modify.ts create mode 100644 node_modules/mongodb/src/operations/get_more.ts create mode 100644 node_modules/mongodb/src/operations/indexes.ts create mode 100644 node_modules/mongodb/src/operations/insert.ts create mode 100644 node_modules/mongodb/src/operations/is_capped.ts create mode 100644 node_modules/mongodb/src/operations/kill_cursors.ts create mode 100644 node_modules/mongodb/src/operations/list_collections.ts create mode 100644 node_modules/mongodb/src/operations/list_databases.ts create mode 100644 node_modules/mongodb/src/operations/map_reduce.ts create mode 100644 node_modules/mongodb/src/operations/operation.ts create mode 100644 node_modules/mongodb/src/operations/options_operation.ts create mode 100644 node_modules/mongodb/src/operations/profiling_level.ts create mode 100644 node_modules/mongodb/src/operations/remove_user.ts create mode 100644 node_modules/mongodb/src/operations/rename.ts create mode 100644 node_modules/mongodb/src/operations/run_command.ts create mode 100644 node_modules/mongodb/src/operations/set_profiling_level.ts create mode 100644 node_modules/mongodb/src/operations/stats.ts create mode 100644 node_modules/mongodb/src/operations/update.ts create mode 100644 node_modules/mongodb/src/operations/validate_collection.ts create mode 100644 node_modules/mongodb/src/promise_provider.ts create mode 100644 node_modules/mongodb/src/read_concern.ts create mode 100644 node_modules/mongodb/src/read_preference.ts create mode 100644 node_modules/mongodb/src/sdam/common.ts create mode 100644 node_modules/mongodb/src/sdam/events.ts create mode 100644 node_modules/mongodb/src/sdam/monitor.ts create mode 100644 node_modules/mongodb/src/sdam/server.ts create mode 100644 node_modules/mongodb/src/sdam/server_description.ts create mode 100644 node_modules/mongodb/src/sdam/server_selection.ts create mode 100644 node_modules/mongodb/src/sdam/srv_polling.ts create mode 100644 node_modules/mongodb/src/sdam/topology.ts create mode 100644 node_modules/mongodb/src/sdam/topology_description.ts create mode 100644 node_modules/mongodb/src/sessions.ts create mode 100644 node_modules/mongodb/src/sort.ts create mode 100644 node_modules/mongodb/src/transactions.ts create mode 100644 node_modules/mongodb/src/utils.ts create mode 100644 node_modules/mongodb/src/write_concern.ts create mode 100644 node_modules/mongodb/tsconfig.json create mode 100644 node_modules/ms/index.js create mode 100644 node_modules/ms/license.md create mode 100644 node_modules/ms/package.json create mode 100644 node_modules/ms/readme.md create mode 100644 node_modules/negotiator/HISTORY.md create mode 100644 node_modules/negotiator/LICENSE create mode 100644 node_modules/negotiator/README.md create mode 100644 node_modules/negotiator/index.js create mode 100644 node_modules/negotiator/lib/charset.js create mode 100644 node_modules/negotiator/lib/encoding.js create mode 100644 node_modules/negotiator/lib/language.js create mode 100644 node_modules/negotiator/lib/mediaType.js create mode 100644 node_modules/negotiator/package.json create mode 100644 node_modules/object-inspect/.eslintrc create mode 100644 node_modules/object-inspect/.github/FUNDING.yml create mode 100644 node_modules/object-inspect/.nycrc create mode 100644 node_modules/object-inspect/CHANGELOG.md create mode 100644 node_modules/object-inspect/LICENSE create mode 100644 node_modules/object-inspect/example/all.js create mode 100644 node_modules/object-inspect/example/circular.js create mode 100644 node_modules/object-inspect/example/fn.js create mode 100644 node_modules/object-inspect/example/inspect.js create mode 100644 node_modules/object-inspect/index.js create mode 100644 node_modules/object-inspect/package-support.json create mode 100644 node_modules/object-inspect/package.json create mode 100644 node_modules/object-inspect/readme.markdown create mode 100644 node_modules/object-inspect/test-core-js.js create mode 100644 node_modules/object-inspect/test/bigint.js create mode 100644 node_modules/object-inspect/test/browser/dom.js create mode 100644 node_modules/object-inspect/test/circular.js create mode 100644 node_modules/object-inspect/test/deep.js create mode 100644 node_modules/object-inspect/test/element.js create mode 100644 node_modules/object-inspect/test/err.js create mode 100644 node_modules/object-inspect/test/fakes.js create mode 100644 node_modules/object-inspect/test/fn.js create mode 100644 node_modules/object-inspect/test/has.js create mode 100644 node_modules/object-inspect/test/holes.js create mode 100644 node_modules/object-inspect/test/indent-option.js create mode 100644 node_modules/object-inspect/test/inspect.js create mode 100644 node_modules/object-inspect/test/lowbyte.js create mode 100644 node_modules/object-inspect/test/number.js create mode 100644 node_modules/object-inspect/test/quoteStyle.js create mode 100644 node_modules/object-inspect/test/toStringTag.js create mode 100644 node_modules/object-inspect/test/undef.js create mode 100644 node_modules/object-inspect/test/values.js create mode 100644 node_modules/object-inspect/util.inspect.js create mode 100644 node_modules/on-finished/HISTORY.md create mode 100644 node_modules/on-finished/LICENSE create mode 100644 node_modules/on-finished/README.md create mode 100644 node_modules/on-finished/index.js create mode 100644 node_modules/on-finished/package.json create mode 100644 node_modules/parseurl/HISTORY.md create mode 100644 node_modules/parseurl/LICENSE create mode 100644 node_modules/parseurl/README.md create mode 100644 node_modules/parseurl/index.js create mode 100644 node_modules/parseurl/package.json create mode 100644 node_modules/path-to-regexp/History.md create mode 100644 node_modules/path-to-regexp/LICENSE create mode 100644 node_modules/path-to-regexp/Readme.md create mode 100644 node_modules/path-to-regexp/index.js create mode 100644 node_modules/path-to-regexp/package.json create mode 100644 node_modules/proxy-addr/HISTORY.md create mode 100644 node_modules/proxy-addr/LICENSE create mode 100644 node_modules/proxy-addr/README.md create mode 100644 node_modules/proxy-addr/index.js create mode 100644 node_modules/proxy-addr/package.json create mode 100644 node_modules/punycode/LICENSE-MIT.txt create mode 100644 node_modules/punycode/README.md create mode 100644 node_modules/punycode/package.json create mode 100644 node_modules/punycode/punycode.es6.js create mode 100644 node_modules/punycode/punycode.js create mode 100644 node_modules/qs/.editorconfig create mode 100644 node_modules/qs/.eslintrc create mode 100644 node_modules/qs/.github/FUNDING.yml create mode 100644 node_modules/qs/.nycrc create mode 100644 node_modules/qs/CHANGELOG.md create mode 100644 node_modules/qs/LICENSE.md create mode 100644 node_modules/qs/README.md create mode 100644 node_modules/qs/dist/qs.js create mode 100644 node_modules/qs/lib/formats.js create mode 100644 node_modules/qs/lib/index.js create mode 100644 node_modules/qs/lib/parse.js create mode 100644 node_modules/qs/lib/stringify.js create mode 100644 node_modules/qs/lib/utils.js create mode 100644 node_modules/qs/package.json create mode 100644 node_modules/qs/test/parse.js create mode 100644 node_modules/qs/test/stringify.js create mode 100644 node_modules/qs/test/utils.js create mode 100644 node_modules/range-parser/HISTORY.md create mode 100644 node_modules/range-parser/LICENSE create mode 100644 node_modules/range-parser/README.md create mode 100644 node_modules/range-parser/index.js create mode 100644 node_modules/range-parser/package.json create mode 100644 node_modules/raw-body/HISTORY.md create mode 100644 node_modules/raw-body/LICENSE create mode 100644 node_modules/raw-body/README.md create mode 100644 node_modules/raw-body/SECURITY.md create mode 100644 node_modules/raw-body/index.d.ts create mode 100644 node_modules/raw-body/index.js create mode 100644 node_modules/raw-body/package.json create mode 100644 node_modules/safe-buffer/LICENSE create mode 100644 node_modules/safe-buffer/README.md create mode 100644 node_modules/safe-buffer/index.d.ts create mode 100644 node_modules/safe-buffer/index.js create mode 100644 node_modules/safe-buffer/package.json create mode 100644 node_modules/safer-buffer/LICENSE create mode 100644 node_modules/safer-buffer/Porting-Buffer.md create mode 100644 node_modules/safer-buffer/Readme.md create mode 100644 node_modules/safer-buffer/dangerous.js create mode 100644 node_modules/safer-buffer/package.json create mode 100644 node_modules/safer-buffer/safer.js create mode 100644 node_modules/safer-buffer/tests.js create mode 100644 node_modules/saslprep/.editorconfig create mode 100644 node_modules/saslprep/.gitattributes create mode 100644 node_modules/saslprep/.travis.yml create mode 100644 node_modules/saslprep/CHANGELOG.md create mode 100644 node_modules/saslprep/LICENSE create mode 100644 node_modules/saslprep/code-points.mem create mode 100644 node_modules/saslprep/generate-code-points.js create mode 100644 node_modules/saslprep/index.js create mode 100644 node_modules/saslprep/lib/code-points.js create mode 100644 node_modules/saslprep/lib/memory-code-points.js create mode 100644 node_modules/saslprep/lib/util.js create mode 100644 node_modules/saslprep/package.json create mode 100644 node_modules/saslprep/readme.md create mode 100644 node_modules/saslprep/test/index.js create mode 100644 node_modules/saslprep/test/util.js create mode 100644 node_modules/send/HISTORY.md create mode 100644 node_modules/send/LICENSE create mode 100644 node_modules/send/README.md create mode 100644 node_modules/send/SECURITY.md create mode 100644 node_modules/send/index.js create mode 100644 node_modules/send/node_modules/ms/index.js create mode 100644 node_modules/send/node_modules/ms/license.md create mode 100644 node_modules/send/node_modules/ms/package.json create mode 100644 node_modules/send/node_modules/ms/readme.md create mode 100644 node_modules/send/package.json create mode 100644 node_modules/serve-static/HISTORY.md create mode 100644 node_modules/serve-static/LICENSE create mode 100644 node_modules/serve-static/README.md create mode 100644 node_modules/serve-static/index.js create mode 100644 node_modules/serve-static/package.json create mode 100644 node_modules/setprototypeof/LICENSE create mode 100644 node_modules/setprototypeof/README.md create mode 100644 node_modules/setprototypeof/index.d.ts create mode 100644 node_modules/setprototypeof/index.js create mode 100644 node_modules/setprototypeof/package.json create mode 100644 node_modules/setprototypeof/test/index.js create mode 100644 node_modules/side-channel/.eslintignore create mode 100644 node_modules/side-channel/.eslintrc create mode 100644 node_modules/side-channel/.github/FUNDING.yml create mode 100644 node_modules/side-channel/.nycrc create mode 100644 node_modules/side-channel/CHANGELOG.md create mode 100644 node_modules/side-channel/LICENSE create mode 100644 node_modules/side-channel/README.md create mode 100644 node_modules/side-channel/index.js create mode 100644 node_modules/side-channel/package.json create mode 100644 node_modules/side-channel/test/index.js create mode 100644 node_modules/smart-buffer/.prettierrc.yaml create mode 100644 node_modules/smart-buffer/.travis.yml create mode 100644 node_modules/smart-buffer/LICENSE create mode 100644 node_modules/smart-buffer/README.md create mode 100644 node_modules/smart-buffer/build/smartbuffer.js create mode 100644 node_modules/smart-buffer/build/smartbuffer.js.map create mode 100644 node_modules/smart-buffer/build/utils.js create mode 100644 node_modules/smart-buffer/build/utils.js.map create mode 100644 node_modules/smart-buffer/docs/CHANGELOG.md create mode 100644 node_modules/smart-buffer/docs/README_v3.md create mode 100644 node_modules/smart-buffer/docs/ROADMAP.md create mode 100644 node_modules/smart-buffer/package.json create mode 100644 node_modules/smart-buffer/typings/smartbuffer.d.ts create mode 100644 node_modules/smart-buffer/typings/utils.d.ts create mode 100644 node_modules/socks/.eslintrc.cjs create mode 100644 node_modules/socks/.prettierrc.yaml create mode 100644 node_modules/socks/LICENSE create mode 100644 node_modules/socks/README.md create mode 100644 node_modules/socks/build/client/socksclient.js create mode 100644 node_modules/socks/build/client/socksclient.js.map create mode 100644 node_modules/socks/build/common/constants.js create mode 100644 node_modules/socks/build/common/constants.js.map create mode 100644 node_modules/socks/build/common/helpers.js create mode 100644 node_modules/socks/build/common/helpers.js.map create mode 100644 node_modules/socks/build/common/receivebuffer.js create mode 100644 node_modules/socks/build/common/receivebuffer.js.map create mode 100644 node_modules/socks/build/common/util.js create mode 100644 node_modules/socks/build/common/util.js.map create mode 100644 node_modules/socks/build/index.js create mode 100644 node_modules/socks/build/index.js.map create mode 100644 node_modules/socks/docs/examples/index.md create mode 100644 node_modules/socks/docs/examples/javascript/associateExample.md create mode 100644 node_modules/socks/docs/examples/javascript/bindExample.md create mode 100644 node_modules/socks/docs/examples/javascript/connectExample.md create mode 100644 node_modules/socks/docs/examples/typescript/associateExample.md create mode 100644 node_modules/socks/docs/examples/typescript/bindExample.md create mode 100644 node_modules/socks/docs/examples/typescript/connectExample.md create mode 100644 node_modules/socks/docs/index.md create mode 100644 node_modules/socks/docs/migratingFromV1.md create mode 100644 node_modules/socks/package.json create mode 100644 node_modules/socks/typings/client/socksclient.d.ts create mode 100644 node_modules/socks/typings/common/constants.d.ts create mode 100644 node_modules/socks/typings/common/helpers.d.ts create mode 100644 node_modules/socks/typings/common/receivebuffer.d.ts create mode 100644 node_modules/socks/typings/common/util.d.ts create mode 100644 node_modules/socks/typings/index.d.ts create mode 100644 node_modules/sparse-bitfield/.npmignore create mode 100644 node_modules/sparse-bitfield/.travis.yml create mode 100644 node_modules/sparse-bitfield/LICENSE create mode 100644 node_modules/sparse-bitfield/README.md create mode 100644 node_modules/sparse-bitfield/index.js create mode 100644 node_modules/sparse-bitfield/package.json create mode 100644 node_modules/sparse-bitfield/test.js create mode 100644 node_modules/statuses/HISTORY.md create mode 100644 node_modules/statuses/LICENSE create mode 100644 node_modules/statuses/README.md create mode 100644 node_modules/statuses/codes.json create mode 100644 node_modules/statuses/index.js create mode 100644 node_modules/statuses/package.json create mode 100644 node_modules/toidentifier/HISTORY.md create mode 100644 node_modules/toidentifier/LICENSE create mode 100644 node_modules/toidentifier/README.md create mode 100644 node_modules/toidentifier/index.js create mode 100644 node_modules/toidentifier/package.json create mode 100644 node_modules/tr46/LICENSE.md create mode 100644 node_modules/tr46/README.md create mode 100644 node_modules/tr46/index.js create mode 100644 node_modules/tr46/lib/mappingTable.json create mode 100644 node_modules/tr46/lib/regexes.js create mode 100644 node_modules/tr46/lib/statusMapping.js create mode 100644 node_modules/tr46/package.json create mode 100644 node_modules/type-is/HISTORY.md create mode 100644 node_modules/type-is/LICENSE create mode 100644 node_modules/type-is/README.md create mode 100644 node_modules/type-is/index.js create mode 100644 node_modules/type-is/package.json create mode 100644 node_modules/unpipe/HISTORY.md create mode 100644 node_modules/unpipe/LICENSE create mode 100644 node_modules/unpipe/README.md create mode 100644 node_modules/unpipe/index.js create mode 100644 node_modules/unpipe/package.json create mode 100644 node_modules/utils-merge/.npmignore create mode 100644 node_modules/utils-merge/LICENSE create mode 100644 node_modules/utils-merge/README.md create mode 100644 node_modules/utils-merge/index.js create mode 100644 node_modules/utils-merge/package.json create mode 100644 node_modules/vary/HISTORY.md create mode 100644 node_modules/vary/LICENSE create mode 100644 node_modules/vary/README.md create mode 100644 node_modules/vary/index.js create mode 100644 node_modules/vary/package.json create mode 100644 node_modules/webidl-conversions/LICENSE.md create mode 100644 node_modules/webidl-conversions/README.md create mode 100644 node_modules/webidl-conversions/lib/index.js create mode 100644 node_modules/webidl-conversions/package.json create mode 100644 node_modules/whatwg-url/LICENSE.txt create mode 100644 node_modules/whatwg-url/README.md create mode 100644 node_modules/whatwg-url/index.js create mode 100644 node_modules/whatwg-url/lib/Function.js create mode 100644 node_modules/whatwg-url/lib/URL-impl.js create mode 100644 node_modules/whatwg-url/lib/URL.js create mode 100644 node_modules/whatwg-url/lib/URLSearchParams-impl.js create mode 100644 node_modules/whatwg-url/lib/URLSearchParams.js create mode 100644 node_modules/whatwg-url/lib/VoidFunction.js create mode 100644 node_modules/whatwg-url/lib/encoding.js create mode 100644 node_modules/whatwg-url/lib/infra.js create mode 100644 node_modules/whatwg-url/lib/percent-encoding.js create mode 100644 node_modules/whatwg-url/lib/url-state-machine.js create mode 100644 node_modules/whatwg-url/lib/urlencoded.js create mode 100644 node_modules/whatwg-url/lib/utils.js create mode 100644 node_modules/whatwg-url/package.json create mode 100644 node_modules/whatwg-url/webidl2js-wrapper.js create mode 100644 package-lock.json create mode 100644 package.json create mode 100644 server.js diff --git a/node_modules/.bin/mime b/node_modules/.bin/mime new file mode 100644 index 000000000..0a62a1b13 --- /dev/null +++ b/node_modules/.bin/mime @@ -0,0 +1,12 @@ +#!/bin/sh +basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')") + +case `uname` in + *CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;; +esac + +if [ -x "$basedir/node" ]; then + exec "$basedir/node" "$basedir/../mime/cli.js" "$@" +else + exec node "$basedir/../mime/cli.js" "$@" +fi diff --git a/node_modules/.bin/mime.cmd b/node_modules/.bin/mime.cmd new file mode 100644 index 000000000..54491f12e --- /dev/null +++ b/node_modules/.bin/mime.cmd @@ -0,0 +1,17 @@ +@ECHO off +GOTO start +:find_dp0 +SET dp0=%~dp0 +EXIT /b +:start +SETLOCAL +CALL :find_dp0 + +IF EXIST "%dp0%\node.exe" ( + SET "_prog=%dp0%\node.exe" +) ELSE ( + SET "_prog=node" + SET PATHEXT=%PATHEXT:;.JS;=;% +) + +endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\mime\cli.js" %* diff --git a/node_modules/.bin/mime.ps1 b/node_modules/.bin/mime.ps1 new file mode 100644 index 000000000..2222f40bc --- /dev/null +++ b/node_modules/.bin/mime.ps1 @@ -0,0 +1,28 @@ +#!/usr/bin/env pwsh +$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent + +$exe="" +if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { + # Fix case when both the Windows and Linux builds of Node + # are installed in the same directory + $exe=".exe" +} +$ret=0 +if (Test-Path "$basedir/node$exe") { + # Support pipeline input + if ($MyInvocation.ExpectingInput) { + $input | & "$basedir/node$exe" "$basedir/../mime/cli.js" $args + } else { + & "$basedir/node$exe" "$basedir/../mime/cli.js" $args + } + $ret=$LASTEXITCODE +} else { + # Support pipeline input + if ($MyInvocation.ExpectingInput) { + $input | & "node$exe" "$basedir/../mime/cli.js" $args + } else { + & "node$exe" "$basedir/../mime/cli.js" $args + } + $ret=$LASTEXITCODE +} +exit $ret diff --git a/node_modules/.package-lock.json b/node_modules/.package-lock.json new file mode 100644 index 000000000..32b243eb5 --- /dev/null +++ b/node_modules/.package-lock.json @@ -0,0 +1,801 @@ +{ + "name": "final_project", + "lockfileVersion": 2, + "requires": true, + "packages": { + "node_modules/@types/node": { + "version": "18.8.2", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.8.2.tgz", + "integrity": "sha512-cRMwIgdDN43GO4xMWAfJAecYn8wV4JbsOGHNfNUIDiuYkUYAR5ec4Rj7IO2SAhFPEfpPtLtUTbbny/TCT7aDwA==" + }, + "node_modules/@types/webidl-conversions": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@types/webidl-conversions/-/webidl-conversions-7.0.0.tgz", + "integrity": "sha512-xTE1E+YF4aWPJJeUzaZI5DRntlkY3+BCVJi0axFptnjGmAoWxkyREIh/XMrfxVLejwQxMCfDXdICo0VLxThrog==" + }, + "node_modules/@types/whatwg-url": { + "version": "8.2.2", + "resolved": "https://registry.npmjs.org/@types/whatwg-url/-/whatwg-url-8.2.2.tgz", + "integrity": "sha512-FtQu10RWgn3D9U4aazdwIE2yzphmTJREDqNdODHrbrZmmMqI0vMheC/6NE/J1Yveaj8H+ela+YwWTjq5PGmuhA==", + "dependencies": { + "@types/node": "*", + "@types/webidl-conversions": "*" + } + }, + "node_modules/accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "dependencies": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/body-parser": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.0.tgz", + "integrity": "sha512-DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg==", + "dependencies": { + "bytes": "3.1.2", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.10.3", + "raw-body": "2.5.1", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/bson": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/bson/-/bson-4.7.0.tgz", + "integrity": "sha512-VrlEE4vuiO1WTpfof4VmaVolCVYkYTgB9iWgYNOrVlnifpME/06fhFRmONgBhClD5pFC1t9ZWqFUQEQAzY43bA==", + "dependencies": { + "buffer": "^5.6.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "dependencies": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "dependencies": { + "safe-buffer": "5.2.1" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/content-type": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", + "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" + }, + "node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/denque": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/denque/-/denque-2.1.0.tgz", + "integrity": "sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw==", + "engines": { + "node": ">=0.10" + } + }, + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" + }, + "node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" + }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/express": { + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/express/-/express-4.18.1.tgz", + "integrity": "sha512-zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q==", + "dependencies": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.0", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.5.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.2.0", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.7", + "qs": "6.10.3", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.18.0", + "serve-static": "1.15.0", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/finalhandler": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", + "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "node_modules/get-intrinsic": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz", + "integrity": "sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==", + "dependencies": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dependencies": { + "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "dependencies": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "node_modules/ip": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz", + "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==" + }, + "node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/memory-pager": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/memory-pager/-/memory-pager-1.5.0.tgz", + "integrity": "sha512-ZS4Bp4r/Zoeq6+NLJpP+0Zzm0pR8whtGPf1XExKLJBAczGMnSi3It14OiNCStjQjM6NU1okjQGSxgEZN8eBYKg==", + "optional": true + }, + "node_modules/merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==" + }, + "node_modules/methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mongodb": { + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-4.10.0.tgz", + "integrity": "sha512-My2QxLTw0Cc1O9gih0mz4mqo145Jq4rLAQx0Glk/Ha9iYBzYpt4I2QFNRIh35uNFNfe8KFQcdwY1/HKxXBkinw==", + "dependencies": { + "bson": "^4.7.0", + "denque": "^2.1.0", + "mongodb-connection-string-url": "^2.5.3", + "socks": "^2.7.0" + }, + "engines": { + "node": ">=12.9.0" + }, + "optionalDependencies": { + "saslprep": "^1.0.3" + } + }, + "node_modules/mongodb-connection-string-url": { + "version": "2.5.4", + "resolved": "https://registry.npmjs.org/mongodb-connection-string-url/-/mongodb-connection-string-url-2.5.4.tgz", + "integrity": "sha512-SeAxuWs0ez3iI3vvmLk/j2y+zHwigTDKQhtdxTgt5ZCOQQS5+HW4g45/Xw5vzzbn7oQXCNQ24Z40AkJsizEy7w==", + "dependencies": { + "@types/whatwg-url": "^8.2.1", + "whatwg-url": "^11.0.0" + } + }, + "node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/object-inspect": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz", + "integrity": "sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==" + }, + "node_modules/proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "dependencies": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", + "engines": { + "node": ">=6" + } + }, + "node_modules/qs": { + "version": "6.10.3", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.3.tgz", + "integrity": "sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==", + "dependencies": { + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/raw-body": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", + "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", + "dependencies": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + }, + "node_modules/saslprep": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/saslprep/-/saslprep-1.0.3.tgz", + "integrity": "sha512-/MY/PEMbk2SuY5sScONwhUDsV2p77Znkb/q3nSVstq/yQzYJOH/Azh29p9oJLsl3LnQwSvZDKagDGBsBwSooag==", + "optional": true, + "dependencies": { + "sparse-bitfield": "^3.0.3" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/send": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "dependencies": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/send/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + }, + "node_modules/serve-static": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "dependencies": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.18.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" + }, + "node_modules/side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "dependencies": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/smart-buffer": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", + "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", + "engines": { + "node": ">= 6.0.0", + "npm": ">= 3.0.0" + } + }, + "node_modules/socks": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/socks/-/socks-2.7.1.tgz", + "integrity": "sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==", + "dependencies": { + "ip": "^2.0.0", + "smart-buffer": "^4.2.0" + }, + "engines": { + "node": ">= 10.13.0", + "npm": ">= 3.0.0" + } + }, + "node_modules/sparse-bitfield": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/sparse-bitfield/-/sparse-bitfield-3.0.3.tgz", + "integrity": "sha512-kvzhi7vqKTfkh0PZU+2D2PIllw2ymqJKujUcyPMd9Y75Nv4nPbGJZXNhxsgdQab2BmlDct1YnfQCguEvHr7VsQ==", + "optional": true, + "dependencies": { + "memory-pager": "^1.0.2" + } + }, + "node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/tr46": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-3.0.0.tgz", + "integrity": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==", + "dependencies": { + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "dependencies": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/webidl-conversions": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", + "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", + "engines": { + "node": ">=12" + } + }, + "node_modules/whatwg-url": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-11.0.0.tgz", + "integrity": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==", + "dependencies": { + "tr46": "^3.0.0", + "webidl-conversions": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + } + } +} diff --git a/node_modules/@types/node/LICENSE b/node_modules/@types/node/LICENSE new file mode 100644 index 000000000..9e841e7a2 --- /dev/null +++ b/node_modules/@types/node/LICENSE @@ -0,0 +1,21 @@ + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE diff --git a/node_modules/@types/node/README.md b/node_modules/@types/node/README.md new file mode 100644 index 000000000..a79e43693 --- /dev/null +++ b/node_modules/@types/node/README.md @@ -0,0 +1,16 @@ +# Installation +> `npm install --save @types/node` + +# Summary +This package contains type definitions for Node.js (https://nodejs.org/). + +# Details +Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node. + +### Additional Details + * Last updated: Tue, 04 Oct 2022 15:32:57 GMT + * Dependencies: none + * Global values: `AbortController`, `AbortSignal`, `__dirname`, `__filename`, `console`, `exports`, `gc`, `global`, `module`, `process`, `require`, `structuredClone` + +# Credits +These definitions were written by [Microsoft TypeScript](https://github.com/Microsoft), [DefinitelyTyped](https://github.com/DefinitelyTyped), [Alberto Schiabel](https://github.com/jkomyno), [Alvis HT Tang](https://github.com/alvis), [Andrew Makarov](https://github.com/r3nya), [Benjamin Toueg](https://github.com/btoueg), [Chigozirim C.](https://github.com/smac89), [David Junger](https://github.com/touffy), [Deividas Bakanas](https://github.com/DeividasBakanas), [Eugene Y. Q. Shen](https://github.com/eyqs), [Hannes Magnusson](https://github.com/Hannes-Magnusson-CK), [Huw](https://github.com/hoo29), [Kelvin Jin](https://github.com/kjin), [Klaus Meinhardt](https://github.com/ajafff), [Lishude](https://github.com/islishude), [Mariusz Wiktorczyk](https://github.com/mwiktorczyk), [Mohsen Azimi](https://github.com/mohsen1), [Nicolas Even](https://github.com/n-e), [Nikita Galkin](https://github.com/galkin), [Parambir Singh](https://github.com/parambirs), [Sebastian Silbermann](https://github.com/eps1lon), [Simon Schick](https://github.com/SimonSchick), [Thomas den Hollander](https://github.com/ThomasdenH), [Wilco Bakker](https://github.com/WilcoBakker), [wwwy3y3](https://github.com/wwwy3y3), [Samuel Ainsworth](https://github.com/samuela), [Kyle Uehlein](https://github.com/kuehlein), [Thanik Bhongbhibhat](https://github.com/bhongy), [Marcin Kopacz](https://github.com/chyzwar), [Trivikram Kamat](https://github.com/trivikr), [Junxiao Shi](https://github.com/yoursunny), [Ilia Baryshnikov](https://github.com/qwelias), [ExE Boss](https://github.com/ExE-Boss), [Piotr Błażejewicz](https://github.com/peterblazejewicz), [Anna Henningsen](https://github.com/addaleax), [Victor Perin](https://github.com/victorperin), [Yongsheng Zhang](https://github.com/ZYSzys), [NodeJS Contributors](https://github.com/NodeJS), [Linus Unnebäck](https://github.com/LinusU), [wafuwafu13](https://github.com/wafuwafu13), and [Matteo Collina](https://github.com/mcollina). diff --git a/node_modules/@types/node/assert.d.ts b/node_modules/@types/node/assert.d.ts new file mode 100644 index 000000000..8e02a66a0 --- /dev/null +++ b/node_modules/@types/node/assert.d.ts @@ -0,0 +1,911 @@ +/** + * The `assert` module provides a set of assertion functions for verifying + * invariants. + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/assert.js) + */ +declare module 'assert' { + /** + * An alias of {@link ok}. + * @since v0.5.9 + * @param value The input that is checked for being truthy. + */ + function assert(value: unknown, message?: string | Error): asserts value; + namespace assert { + /** + * Indicates the failure of an assertion. All errors thrown by the `assert` module + * will be instances of the `AssertionError` class. + */ + class AssertionError extends Error { + actual: unknown; + expected: unknown; + operator: string; + generatedMessage: boolean; + code: 'ERR_ASSERTION'; + constructor(options?: { + /** If provided, the error message is set to this value. */ + message?: string | undefined; + /** The `actual` property on the error instance. */ + actual?: unknown | undefined; + /** The `expected` property on the error instance. */ + expected?: unknown | undefined; + /** The `operator` property on the error instance. */ + operator?: string | undefined; + /** If provided, the generated stack trace omits frames before this function. */ + // tslint:disable-next-line:ban-types + stackStartFn?: Function | undefined; + }); + } + /** + * This feature is currently experimental and behavior might still change. + * @since v14.2.0, v12.19.0 + * @experimental + */ + class CallTracker { + /** + * The wrapper function is expected to be called exactly `exact` times. If the + * function has not been called exactly `exact` times when `tracker.verify()` is called, then `tracker.verify()` will throw an + * error. + * + * ```js + * import assert from 'assert'; + * + * // Creates call tracker. + * const tracker = new assert.CallTracker(); + * + * function func() {} + * + * // Returns a function that wraps func() that must be called exact times + * // before tracker.verify(). + * const callsfunc = tracker.calls(func); + * ``` + * @since v14.2.0, v12.19.0 + * @param [fn='A no-op function'] + * @param [exact=1] + * @return that wraps `fn`. + */ + calls(exact?: number): () => void; + calls any>(fn?: Func, exact?: number): Func; + /** + * The arrays contains information about the expected and actual number of calls of + * the functions that have not been called the expected number of times. + * + * ```js + * import assert from 'assert'; + * + * // Creates call tracker. + * const tracker = new assert.CallTracker(); + * + * function func() {} + * + * function foo() {} + * + * // Returns a function that wraps func() that must be called exact times + * // before tracker.verify(). + * const callsfunc = tracker.calls(func, 2); + * + * // Returns an array containing information on callsfunc() + * tracker.report(); + * // [ + * // { + * // message: 'Expected the func function to be executed 2 time(s) but was + * // executed 0 time(s).', + * // actual: 0, + * // expected: 2, + * // operator: 'func', + * // stack: stack trace + * // } + * // ] + * ``` + * @since v14.2.0, v12.19.0 + * @return of objects containing information about the wrapper functions returned by `calls`. + */ + report(): CallTrackerReportInformation[]; + /** + * Iterates through the list of functions passed to `tracker.calls()` and will throw an error for functions that + * have not been called the expected number of times. + * + * ```js + * import assert from 'assert'; + * + * // Creates call tracker. + * const tracker = new assert.CallTracker(); + * + * function func() {} + * + * // Returns a function that wraps func() that must be called exact times + * // before tracker.verify(). + * const callsfunc = tracker.calls(func, 2); + * + * callsfunc(); + * + * // Will throw an error since callsfunc() was only called once. + * tracker.verify(); + * ``` + * @since v14.2.0, v12.19.0 + */ + verify(): void; + } + interface CallTrackerReportInformation { + message: string; + /** The actual number of times the function was called. */ + actual: number; + /** The number of times the function was expected to be called. */ + expected: number; + /** The name of the function that is wrapped. */ + operator: string; + /** A stack trace of the function. */ + stack: object; + } + type AssertPredicate = RegExp | (new () => object) | ((thrown: unknown) => boolean) | object | Error; + /** + * Throws an `AssertionError` with the provided error message or a default + * error message. If the `message` parameter is an instance of an `Error` then + * it will be thrown instead of the `AssertionError`. + * + * ```js + * import assert from 'assert/strict'; + * + * assert.fail(); + * // AssertionError [ERR_ASSERTION]: Failed + * + * assert.fail('boom'); + * // AssertionError [ERR_ASSERTION]: boom + * + * assert.fail(new TypeError('need array')); + * // TypeError: need array + * ``` + * + * Using `assert.fail()` with more than two arguments is possible but deprecated. + * See below for further details. + * @since v0.1.21 + * @param [message='Failed'] + */ + function fail(message?: string | Error): never; + /** @deprecated since v10.0.0 - use fail([message]) or other assert functions instead. */ + function fail( + actual: unknown, + expected: unknown, + message?: string | Error, + operator?: string, + // tslint:disable-next-line:ban-types + stackStartFn?: Function + ): never; + /** + * Tests if `value` is truthy. It is equivalent to`assert.equal(!!value, true, message)`. + * + * If `value` is not truthy, an `AssertionError` is thrown with a `message`property set equal to the value of the `message` parameter. If the `message`parameter is `undefined`, a default + * error message is assigned. If the `message`parameter is an instance of an `Error` then it will be thrown instead of the`AssertionError`. + * If no arguments are passed in at all `message` will be set to the string:`` 'No value argument passed to `assert.ok()`' ``. + * + * Be aware that in the `repl` the error message will be different to the one + * thrown in a file! See below for further details. + * + * ```js + * import assert from 'assert/strict'; + * + * assert.ok(true); + * // OK + * assert.ok(1); + * // OK + * + * assert.ok(); + * // AssertionError: No value argument passed to `assert.ok()` + * + * assert.ok(false, 'it\'s false'); + * // AssertionError: it's false + * + * // In the repl: + * assert.ok(typeof 123 === 'string'); + * // AssertionError: false == true + * + * // In a file (e.g. test.js): + * assert.ok(typeof 123 === 'string'); + * // AssertionError: The expression evaluated to a falsy value: + * // + * // assert.ok(typeof 123 === 'string') + * + * assert.ok(false); + * // AssertionError: The expression evaluated to a falsy value: + * // + * // assert.ok(false) + * + * assert.ok(0); + * // AssertionError: The expression evaluated to a falsy value: + * // + * // assert.ok(0) + * ``` + * + * ```js + * import assert from 'assert/strict'; + * + * // Using `assert()` works the same: + * assert(0); + * // AssertionError: The expression evaluated to a falsy value: + * // + * // assert(0) + * ``` + * @since v0.1.21 + */ + function ok(value: unknown, message?: string | Error): asserts value; + /** + * **Strict assertion mode** + * + * An alias of {@link strictEqual}. + * + * **Legacy assertion mode** + * + * > Stability: 3 - Legacy: Use {@link strictEqual} instead. + * + * Tests shallow, coercive equality between the `actual` and `expected` parameters + * using the [`==` operator](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Equality). `NaN` is specially handled + * and treated as being identical if both sides are `NaN`. + * + * ```js + * import assert from 'assert'; + * + * assert.equal(1, 1); + * // OK, 1 == 1 + * assert.equal(1, '1'); + * // OK, 1 == '1' + * assert.equal(NaN, NaN); + * // OK + * + * assert.equal(1, 2); + * // AssertionError: 1 == 2 + * assert.equal({ a: { b: 1 } }, { a: { b: 1 } }); + * // AssertionError: { a: { b: 1 } } == { a: { b: 1 } } + * ``` + * + * If the values are not equal, an `AssertionError` is thrown with a `message`property set equal to the value of the `message` parameter. If the `message`parameter is undefined, a default + * error message is assigned. If the `message`parameter is an instance of an `Error` then it will be thrown instead of the`AssertionError`. + * @since v0.1.21 + */ + function equal(actual: unknown, expected: unknown, message?: string | Error): void; + /** + * **Strict assertion mode** + * + * An alias of {@link notStrictEqual}. + * + * **Legacy assertion mode** + * + * > Stability: 3 - Legacy: Use {@link notStrictEqual} instead. + * + * Tests shallow, coercive inequality with the [`!=` operator](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Inequality). `NaN` is + * specially handled and treated as being identical if both sides are `NaN`. + * + * ```js + * import assert from 'assert'; + * + * assert.notEqual(1, 2); + * // OK + * + * assert.notEqual(1, 1); + * // AssertionError: 1 != 1 + * + * assert.notEqual(1, '1'); + * // AssertionError: 1 != '1' + * ``` + * + * If the values are equal, an `AssertionError` is thrown with a `message`property set equal to the value of the `message` parameter. If the `message`parameter is undefined, a default error + * message is assigned. If the `message`parameter is an instance of an `Error` then it will be thrown instead of the`AssertionError`. + * @since v0.1.21 + */ + function notEqual(actual: unknown, expected: unknown, message?: string | Error): void; + /** + * **Strict assertion mode** + * + * An alias of {@link deepStrictEqual}. + * + * **Legacy assertion mode** + * + * > Stability: 3 - Legacy: Use {@link deepStrictEqual} instead. + * + * Tests for deep equality between the `actual` and `expected` parameters. Consider + * using {@link deepStrictEqual} instead. {@link deepEqual} can have + * surprising results. + * + * _Deep equality_ means that the enumerable "own" properties of child objects + * are also recursively evaluated by the following rules. + * @since v0.1.21 + */ + function deepEqual(actual: unknown, expected: unknown, message?: string | Error): void; + /** + * **Strict assertion mode** + * + * An alias of {@link notDeepStrictEqual}. + * + * **Legacy assertion mode** + * + * > Stability: 3 - Legacy: Use {@link notDeepStrictEqual} instead. + * + * Tests for any deep inequality. Opposite of {@link deepEqual}. + * + * ```js + * import assert from 'assert'; + * + * const obj1 = { + * a: { + * b: 1 + * } + * }; + * const obj2 = { + * a: { + * b: 2 + * } + * }; + * const obj3 = { + * a: { + * b: 1 + * } + * }; + * const obj4 = Object.create(obj1); + * + * assert.notDeepEqual(obj1, obj1); + * // AssertionError: { a: { b: 1 } } notDeepEqual { a: { b: 1 } } + * + * assert.notDeepEqual(obj1, obj2); + * // OK + * + * assert.notDeepEqual(obj1, obj3); + * // AssertionError: { a: { b: 1 } } notDeepEqual { a: { b: 1 } } + * + * assert.notDeepEqual(obj1, obj4); + * // OK + * ``` + * + * If the values are deeply equal, an `AssertionError` is thrown with a`message` property set equal to the value of the `message` parameter. If the`message` parameter is undefined, a default + * error message is assigned. If the`message` parameter is an instance of an `Error` then it will be thrown + * instead of the `AssertionError`. + * @since v0.1.21 + */ + function notDeepEqual(actual: unknown, expected: unknown, message?: string | Error): void; + /** + * Tests strict equality between the `actual` and `expected` parameters as + * determined by [`Object.is()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/is). + * + * ```js + * import assert from 'assert/strict'; + * + * assert.strictEqual(1, 2); + * // AssertionError [ERR_ASSERTION]: Expected inputs to be strictly equal: + * // + * // 1 !== 2 + * + * assert.strictEqual(1, 1); + * // OK + * + * assert.strictEqual('Hello foobar', 'Hello World!'); + * // AssertionError [ERR_ASSERTION]: Expected inputs to be strictly equal: + * // + actual - expected + * // + * // + 'Hello foobar' + * // - 'Hello World!' + * // ^ + * + * const apples = 1; + * const oranges = 2; + * assert.strictEqual(apples, oranges, `apples ${apples} !== oranges ${oranges}`); + * // AssertionError [ERR_ASSERTION]: apples 1 !== oranges 2 + * + * assert.strictEqual(1, '1', new TypeError('Inputs are not identical')); + * // TypeError: Inputs are not identical + * ``` + * + * If the values are not strictly equal, an `AssertionError` is thrown with a`message` property set equal to the value of the `message` parameter. If the`message` parameter is undefined, a + * default error message is assigned. If the`message` parameter is an instance of an `Error` then it will be thrown + * instead of the `AssertionError`. + * @since v0.1.21 + */ + function strictEqual(actual: unknown, expected: T, message?: string | Error): asserts actual is T; + /** + * Tests strict inequality between the `actual` and `expected` parameters as + * determined by [`Object.is()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/is). + * + * ```js + * import assert from 'assert/strict'; + * + * assert.notStrictEqual(1, 2); + * // OK + * + * assert.notStrictEqual(1, 1); + * // AssertionError [ERR_ASSERTION]: Expected "actual" to be strictly unequal to: + * // + * // 1 + * + * assert.notStrictEqual(1, '1'); + * // OK + * ``` + * + * If the values are strictly equal, an `AssertionError` is thrown with a`message` property set equal to the value of the `message` parameter. If the`message` parameter is undefined, a + * default error message is assigned. If the`message` parameter is an instance of an `Error` then it will be thrown + * instead of the `AssertionError`. + * @since v0.1.21 + */ + function notStrictEqual(actual: unknown, expected: unknown, message?: string | Error): void; + /** + * Tests for deep equality between the `actual` and `expected` parameters. + * "Deep" equality means that the enumerable "own" properties of child objects + * are recursively evaluated also by the following rules. + * @since v1.2.0 + */ + function deepStrictEqual(actual: unknown, expected: T, message?: string | Error): asserts actual is T; + /** + * Tests for deep strict inequality. Opposite of {@link deepStrictEqual}. + * + * ```js + * import assert from 'assert/strict'; + * + * assert.notDeepStrictEqual({ a: 1 }, { a: '1' }); + * // OK + * ``` + * + * If the values are deeply and strictly equal, an `AssertionError` is thrown + * with a `message` property set equal to the value of the `message` parameter. If + * the `message` parameter is undefined, a default error message is assigned. If + * the `message` parameter is an instance of an `Error` then it will be thrown + * instead of the `AssertionError`. + * @since v1.2.0 + */ + function notDeepStrictEqual(actual: unknown, expected: unknown, message?: string | Error): void; + /** + * Expects the function `fn` to throw an error. + * + * If specified, `error` can be a [`Class`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes), + * [`RegExp`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions), a validation function, + * a validation object where each property will be tested for strict deep equality, + * or an instance of error where each property will be tested for strict deep + * equality including the non-enumerable `message` and `name` properties. When + * using an object, it is also possible to use a regular expression, when + * validating against a string property. See below for examples. + * + * If specified, `message` will be appended to the message provided by the`AssertionError` if the `fn` call fails to throw or in case the error validation + * fails. + * + * Custom validation object/error instance: + * + * ```js + * import assert from 'assert/strict'; + * + * const err = new TypeError('Wrong value'); + * err.code = 404; + * err.foo = 'bar'; + * err.info = { + * nested: true, + * baz: 'text' + * }; + * err.reg = /abc/i; + * + * assert.throws( + * () => { + * throw err; + * }, + * { + * name: 'TypeError', + * message: 'Wrong value', + * info: { + * nested: true, + * baz: 'text' + * } + * // Only properties on the validation object will be tested for. + * // Using nested objects requires all properties to be present. Otherwise + * // the validation is going to fail. + * } + * ); + * + * // Using regular expressions to validate error properties: + * throws( + * () => { + * throw err; + * }, + * { + * // The `name` and `message` properties are strings and using regular + * // expressions on those will match against the string. If they fail, an + * // error is thrown. + * name: /^TypeError$/, + * message: /Wrong/, + * foo: 'bar', + * info: { + * nested: true, + * // It is not possible to use regular expressions for nested properties! + * baz: 'text' + * }, + * // The `reg` property contains a regular expression and only if the + * // validation object contains an identical regular expression, it is going + * // to pass. + * reg: /abc/i + * } + * ); + * + * // Fails due to the different `message` and `name` properties: + * throws( + * () => { + * const otherErr = new Error('Not found'); + * // Copy all enumerable properties from `err` to `otherErr`. + * for (const [key, value] of Object.entries(err)) { + * otherErr[key] = value; + * } + * throw otherErr; + * }, + * // The error's `message` and `name` properties will also be checked when using + * // an error as validation object. + * err + * ); + * ``` + * + * Validate instanceof using constructor: + * + * ```js + * import assert from 'assert/strict'; + * + * assert.throws( + * () => { + * throw new Error('Wrong value'); + * }, + * Error + * ); + * ``` + * + * Validate error message using [`RegExp`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions): + * + * Using a regular expression runs `.toString` on the error object, and will + * therefore also include the error name. + * + * ```js + * import assert from 'assert/strict'; + * + * assert.throws( + * () => { + * throw new Error('Wrong value'); + * }, + * /^Error: Wrong value$/ + * ); + * ``` + * + * Custom error validation: + * + * The function must return `true` to indicate all internal validations passed. + * It will otherwise fail with an `AssertionError`. + * + * ```js + * import assert from 'assert/strict'; + * + * assert.throws( + * () => { + * throw new Error('Wrong value'); + * }, + * (err) => { + * assert(err instanceof Error); + * assert(/value/.test(err)); + * // Avoid returning anything from validation functions besides `true`. + * // Otherwise, it's not clear what part of the validation failed. Instead, + * // throw an error about the specific validation that failed (as done in this + * // example) and add as much helpful debugging information to that error as + * // possible. + * return true; + * }, + * 'unexpected error' + * ); + * ``` + * + * `error` cannot be a string. If a string is provided as the second + * argument, then `error` is assumed to be omitted and the string will be used for`message` instead. This can lead to easy-to-miss mistakes. Using the same + * message as the thrown error message is going to result in an`ERR_AMBIGUOUS_ARGUMENT` error. Please read the example below carefully if using + * a string as the second argument gets considered: + * + * ```js + * import assert from 'assert/strict'; + * + * function throwingFirst() { + * throw new Error('First'); + * } + * + * function throwingSecond() { + * throw new Error('Second'); + * } + * + * function notThrowing() {} + * + * // The second argument is a string and the input function threw an Error. + * // The first case will not throw as it does not match for the error message + * // thrown by the input function! + * assert.throws(throwingFirst, 'Second'); + * // In the next example the message has no benefit over the message from the + * // error and since it is not clear if the user intended to actually match + * // against the error message, Node.js throws an `ERR_AMBIGUOUS_ARGUMENT` error. + * assert.throws(throwingSecond, 'Second'); + * // TypeError [ERR_AMBIGUOUS_ARGUMENT] + * + * // The string is only used (as message) in case the function does not throw: + * assert.throws(notThrowing, 'Second'); + * // AssertionError [ERR_ASSERTION]: Missing expected exception: Second + * + * // If it was intended to match for the error message do this instead: + * // It does not throw because the error messages match. + * assert.throws(throwingSecond, /Second$/); + * + * // If the error message does not match, an AssertionError is thrown. + * assert.throws(throwingFirst, /Second$/); + * // AssertionError [ERR_ASSERTION] + * ``` + * + * Due to the confusing error-prone notation, avoid a string as the second + * argument. + * @since v0.1.21 + */ + function throws(block: () => unknown, message?: string | Error): void; + function throws(block: () => unknown, error: AssertPredicate, message?: string | Error): void; + /** + * Asserts that the function `fn` does not throw an error. + * + * Using `assert.doesNotThrow()` is actually not useful because there + * is no benefit in catching an error and then rethrowing it. Instead, consider + * adding a comment next to the specific code path that should not throw and keep + * error messages as expressive as possible. + * + * When `assert.doesNotThrow()` is called, it will immediately call the `fn`function. + * + * If an error is thrown and it is the same type as that specified by the `error`parameter, then an `AssertionError` is thrown. If the error is of a + * different type, or if the `error` parameter is undefined, the error is + * propagated back to the caller. + * + * If specified, `error` can be a [`Class`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes), + * [`RegExp`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions) or a validation + * function. See {@link throws} for more details. + * + * The following, for instance, will throw the `TypeError` because there is no + * matching error type in the assertion: + * + * ```js + * import assert from 'assert/strict'; + * + * assert.doesNotThrow( + * () => { + * throw new TypeError('Wrong value'); + * }, + * SyntaxError + * ); + * ``` + * + * However, the following will result in an `AssertionError` with the message + * 'Got unwanted exception...': + * + * ```js + * import assert from 'assert/strict'; + * + * assert.doesNotThrow( + * () => { + * throw new TypeError('Wrong value'); + * }, + * TypeError + * ); + * ``` + * + * If an `AssertionError` is thrown and a value is provided for the `message`parameter, the value of `message` will be appended to the `AssertionError` message: + * + * ```js + * import assert from 'assert/strict'; + * + * assert.doesNotThrow( + * () => { + * throw new TypeError('Wrong value'); + * }, + * /Wrong value/, + * 'Whoops' + * ); + * // Throws: AssertionError: Got unwanted exception: Whoops + * ``` + * @since v0.1.21 + */ + function doesNotThrow(block: () => unknown, message?: string | Error): void; + function doesNotThrow(block: () => unknown, error: AssertPredicate, message?: string | Error): void; + /** + * Throws `value` if `value` is not `undefined` or `null`. This is useful when + * testing the `error` argument in callbacks. The stack trace contains all frames + * from the error passed to `ifError()` including the potential new frames for`ifError()` itself. + * + * ```js + * import assert from 'assert/strict'; + * + * assert.ifError(null); + * // OK + * assert.ifError(0); + * // AssertionError [ERR_ASSERTION]: ifError got unwanted exception: 0 + * assert.ifError('error'); + * // AssertionError [ERR_ASSERTION]: ifError got unwanted exception: 'error' + * assert.ifError(new Error()); + * // AssertionError [ERR_ASSERTION]: ifError got unwanted exception: Error + * + * // Create some random error frames. + * let err; + * (function errorFrame() { + * err = new Error('test error'); + * })(); + * + * (function ifErrorFrame() { + * assert.ifError(err); + * })(); + * // AssertionError [ERR_ASSERTION]: ifError got unwanted exception: test error + * // at ifErrorFrame + * // at errorFrame + * ``` + * @since v0.1.97 + */ + function ifError(value: unknown): asserts value is null | undefined; + /** + * Awaits the `asyncFn` promise or, if `asyncFn` is a function, immediately + * calls the function and awaits the returned promise to complete. It will then + * check that the promise is rejected. + * + * If `asyncFn` is a function and it throws an error synchronously,`assert.rejects()` will return a rejected `Promise` with that error. If the + * function does not return a promise, `assert.rejects()` will return a rejected`Promise` with an `ERR_INVALID_RETURN_VALUE` error. In both cases the error + * handler is skipped. + * + * Besides the async nature to await the completion behaves identically to {@link throws}. + * + * If specified, `error` can be a [`Class`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes), + * [`RegExp`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions), a validation function, + * an object where each property will be tested for, or an instance of error where + * each property will be tested for including the non-enumerable `message` and`name` properties. + * + * If specified, `message` will be the message provided by the `AssertionError` if the `asyncFn` fails to reject. + * + * ```js + * import assert from 'assert/strict'; + * + * await assert.rejects( + * async () => { + * throw new TypeError('Wrong value'); + * }, + * { + * name: 'TypeError', + * message: 'Wrong value' + * } + * ); + * ``` + * + * ```js + * import assert from 'assert/strict'; + * + * await assert.rejects( + * async () => { + * throw new TypeError('Wrong value'); + * }, + * (err) => { + * assert.strictEqual(err.name, 'TypeError'); + * assert.strictEqual(err.message, 'Wrong value'); + * return true; + * } + * ); + * ``` + * + * ```js + * import assert from 'assert/strict'; + * + * assert.rejects( + * Promise.reject(new Error('Wrong value')), + * Error + * ).then(() => { + * // ... + * }); + * ``` + * + * `error` cannot be a string. If a string is provided as the second + * argument, then `error` is assumed to be omitted and the string will be used for`message` instead. This can lead to easy-to-miss mistakes. Please read the + * example in {@link throws} carefully if using a string as the second + * argument gets considered. + * @since v10.0.0 + */ + function rejects(block: (() => Promise) | Promise, message?: string | Error): Promise; + function rejects(block: (() => Promise) | Promise, error: AssertPredicate, message?: string | Error): Promise; + /** + * Awaits the `asyncFn` promise or, if `asyncFn` is a function, immediately + * calls the function and awaits the returned promise to complete. It will then + * check that the promise is not rejected. + * + * If `asyncFn` is a function and it throws an error synchronously,`assert.doesNotReject()` will return a rejected `Promise` with that error. If + * the function does not return a promise, `assert.doesNotReject()` will return a + * rejected `Promise` with an `ERR_INVALID_RETURN_VALUE` error. In both cases + * the error handler is skipped. + * + * Using `assert.doesNotReject()` is actually not useful because there is little + * benefit in catching a rejection and then rejecting it again. Instead, consider + * adding a comment next to the specific code path that should not reject and keep + * error messages as expressive as possible. + * + * If specified, `error` can be a [`Class`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes), + * [`RegExp`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions) or a validation + * function. See {@link throws} for more details. + * + * Besides the async nature to await the completion behaves identically to {@link doesNotThrow}. + * + * ```js + * import assert from 'assert/strict'; + * + * await assert.doesNotReject( + * async () => { + * throw new TypeError('Wrong value'); + * }, + * SyntaxError + * ); + * ``` + * + * ```js + * import assert from 'assert/strict'; + * + * assert.doesNotReject(Promise.reject(new TypeError('Wrong value'))) + * .then(() => { + * // ... + * }); + * ``` + * @since v10.0.0 + */ + function doesNotReject(block: (() => Promise) | Promise, message?: string | Error): Promise; + function doesNotReject(block: (() => Promise) | Promise, error: AssertPredicate, message?: string | Error): Promise; + /** + * Expects the `string` input to match the regular expression. + * + * ```js + * import assert from 'assert/strict'; + * + * assert.match('I will fail', /pass/); + * // AssertionError [ERR_ASSERTION]: The input did not match the regular ... + * + * assert.match(123, /pass/); + * // AssertionError [ERR_ASSERTION]: The "string" argument must be of type string. + * + * assert.match('I will pass', /pass/); + * // OK + * ``` + * + * If the values do not match, or if the `string` argument is of another type than`string`, an `AssertionError` is thrown with a `message` property set equal + * to the value of the `message` parameter. If the `message` parameter is + * undefined, a default error message is assigned. If the `message` parameter is an + * instance of an `Error` then it will be thrown instead of the `AssertionError`. + * @since v13.6.0, v12.16.0 + */ + function match(value: string, regExp: RegExp, message?: string | Error): void; + /** + * Expects the `string` input not to match the regular expression. + * + * ```js + * import assert from 'assert/strict'; + * + * assert.doesNotMatch('I will fail', /fail/); + * // AssertionError [ERR_ASSERTION]: The input was expected to not match the ... + * + * assert.doesNotMatch(123, /pass/); + * // AssertionError [ERR_ASSERTION]: The "string" argument must be of type string. + * + * assert.doesNotMatch('I will pass', /different/); + * // OK + * ``` + * + * If the values do match, or if the `string` argument is of another type than`string`, an `AssertionError` is thrown with a `message` property set equal + * to the value of the `message` parameter. If the `message` parameter is + * undefined, a default error message is assigned. If the `message` parameter is an + * instance of an `Error` then it will be thrown instead of the `AssertionError`. + * @since v13.6.0, v12.16.0 + */ + function doesNotMatch(value: string, regExp: RegExp, message?: string | Error): void; + const strict: Omit & { + (value: unknown, message?: string | Error): asserts value; + equal: typeof strictEqual; + notEqual: typeof notStrictEqual; + deepEqual: typeof deepStrictEqual; + notDeepEqual: typeof notDeepStrictEqual; + // Mapped types and assertion functions are incompatible? + // TS2775: Assertions require every name in the call target + // to be declared with an explicit type annotation. + ok: typeof ok; + strictEqual: typeof strictEqual; + deepStrictEqual: typeof deepStrictEqual; + ifError: typeof ifError; + strict: typeof strict; + }; + } + export = assert; +} +declare module 'node:assert' { + import assert = require('assert'); + export = assert; +} diff --git a/node_modules/@types/node/assert/strict.d.ts b/node_modules/@types/node/assert/strict.d.ts new file mode 100644 index 000000000..b4319b974 --- /dev/null +++ b/node_modules/@types/node/assert/strict.d.ts @@ -0,0 +1,8 @@ +declare module 'assert/strict' { + import { strict } from 'node:assert'; + export = strict; +} +declare module 'node:assert/strict' { + import { strict } from 'node:assert'; + export = strict; +} diff --git a/node_modules/@types/node/async_hooks.d.ts b/node_modules/@types/node/async_hooks.d.ts new file mode 100644 index 000000000..0bf473965 --- /dev/null +++ b/node_modules/@types/node/async_hooks.d.ts @@ -0,0 +1,501 @@ +/** + * The `async_hooks` module provides an API to track asynchronous resources. It + * can be accessed using: + * + * ```js + * import async_hooks from 'async_hooks'; + * ``` + * @experimental + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/async_hooks.js) + */ +declare module 'async_hooks' { + /** + * ```js + * import { executionAsyncId } from 'async_hooks'; + * + * console.log(executionAsyncId()); // 1 - bootstrap + * fs.open(path, 'r', (err, fd) => { + * console.log(executionAsyncId()); // 6 - open() + * }); + * ``` + * + * The ID returned from `executionAsyncId()` is related to execution timing, not + * causality (which is covered by `triggerAsyncId()`): + * + * ```js + * const server = net.createServer((conn) => { + * // Returns the ID of the server, not of the new connection, because the + * // callback runs in the execution scope of the server's MakeCallback(). + * async_hooks.executionAsyncId(); + * + * }).listen(port, () => { + * // Returns the ID of a TickObject (process.nextTick()) because all + * // callbacks passed to .listen() are wrapped in a nextTick(). + * async_hooks.executionAsyncId(); + * }); + * ``` + * + * Promise contexts may not get precise `executionAsyncIds` by default. + * See the section on `promise execution tracking`. + * @since v8.1.0 + * @return The `asyncId` of the current execution context. Useful to track when something calls. + */ + function executionAsyncId(): number; + /** + * Resource objects returned by `executionAsyncResource()` are most often internal + * Node.js handle objects with undocumented APIs. Using any functions or properties + * on the object is likely to crash your application and should be avoided. + * + * Using `executionAsyncResource()` in the top-level execution context will + * return an empty object as there is no handle or request object to use, + * but having an object representing the top-level can be helpful. + * + * ```js + * import { open } from 'fs'; + * import { executionAsyncId, executionAsyncResource } from 'async_hooks'; + * + * console.log(executionAsyncId(), executionAsyncResource()); // 1 {} + * open(new URL(import.meta.url), 'r', (err, fd) => { + * console.log(executionAsyncId(), executionAsyncResource()); // 7 FSReqWrap + * }); + * ``` + * + * This can be used to implement continuation local storage without the + * use of a tracking `Map` to store the metadata: + * + * ```js + * import { createServer } from 'http'; + * import { + * executionAsyncId, + * executionAsyncResource, + * createHook + * } from 'async_hooks'; + * const sym = Symbol('state'); // Private symbol to avoid pollution + * + * createHook({ + * init(asyncId, type, triggerAsyncId, resource) { + * const cr = executionAsyncResource(); + * if (cr) { + * resource[sym] = cr[sym]; + * } + * } + * }).enable(); + * + * const server = createServer((req, res) => { + * executionAsyncResource()[sym] = { state: req.url }; + * setTimeout(function() { + * res.end(JSON.stringify(executionAsyncResource()[sym])); + * }, 100); + * }).listen(3000); + * ``` + * @since v13.9.0, v12.17.0 + * @return The resource representing the current execution. Useful to store data within the resource. + */ + function executionAsyncResource(): object; + /** + * ```js + * const server = net.createServer((conn) => { + * // The resource that caused (or triggered) this callback to be called + * // was that of the new connection. Thus the return value of triggerAsyncId() + * // is the asyncId of "conn". + * async_hooks.triggerAsyncId(); + * + * }).listen(port, () => { + * // Even though all callbacks passed to .listen() are wrapped in a nextTick() + * // the callback itself exists because the call to the server's .listen() + * // was made. So the return value would be the ID of the server. + * async_hooks.triggerAsyncId(); + * }); + * ``` + * + * Promise contexts may not get valid `triggerAsyncId`s by default. See + * the section on `promise execution tracking`. + * @return The ID of the resource responsible for calling the callback that is currently being executed. + */ + function triggerAsyncId(): number; + interface HookCallbacks { + /** + * Called when a class is constructed that has the possibility to emit an asynchronous event. + * @param asyncId a unique ID for the async resource + * @param type the type of the async resource + * @param triggerAsyncId the unique ID of the async resource in whose execution context this async resource was created + * @param resource reference to the resource representing the async operation, needs to be released during destroy + */ + init?(asyncId: number, type: string, triggerAsyncId: number, resource: object): void; + /** + * When an asynchronous operation is initiated or completes a callback is called to notify the user. + * The before callback is called just before said callback is executed. + * @param asyncId the unique identifier assigned to the resource about to execute the callback. + */ + before?(asyncId: number): void; + /** + * Called immediately after the callback specified in before is completed. + * @param asyncId the unique identifier assigned to the resource which has executed the callback. + */ + after?(asyncId: number): void; + /** + * Called when a promise has resolve() called. This may not be in the same execution id + * as the promise itself. + * @param asyncId the unique id for the promise that was resolve()d. + */ + promiseResolve?(asyncId: number): void; + /** + * Called after the resource corresponding to asyncId is destroyed + * @param asyncId a unique ID for the async resource + */ + destroy?(asyncId: number): void; + } + interface AsyncHook { + /** + * Enable the callbacks for a given AsyncHook instance. If no callbacks are provided enabling is a noop. + */ + enable(): this; + /** + * Disable the callbacks for a given AsyncHook instance from the global pool of AsyncHook callbacks to be executed. Once a hook has been disabled it will not be called again until enabled. + */ + disable(): this; + } + /** + * Registers functions to be called for different lifetime events of each async + * operation. + * + * The callbacks `init()`/`before()`/`after()`/`destroy()` are called for the + * respective asynchronous event during a resource's lifetime. + * + * All callbacks are optional. For example, if only resource cleanup needs to + * be tracked, then only the `destroy` callback needs to be passed. The + * specifics of all functions that can be passed to `callbacks` is in the `Hook Callbacks` section. + * + * ```js + * import { createHook } from 'async_hooks'; + * + * const asyncHook = createHook({ + * init(asyncId, type, triggerAsyncId, resource) { }, + * destroy(asyncId) { } + * }); + * ``` + * + * The callbacks will be inherited via the prototype chain: + * + * ```js + * class MyAsyncCallbacks { + * init(asyncId, type, triggerAsyncId, resource) { } + * destroy(asyncId) {} + * } + * + * class MyAddedCallbacks extends MyAsyncCallbacks { + * before(asyncId) { } + * after(asyncId) { } + * } + * + * const asyncHook = async_hooks.createHook(new MyAddedCallbacks()); + * ``` + * + * Because promises are asynchronous resources whose lifecycle is tracked + * via the async hooks mechanism, the `init()`, `before()`, `after()`, and`destroy()` callbacks _must not_ be async functions that return promises. + * @since v8.1.0 + * @param callbacks The `Hook Callbacks` to register + * @return Instance used for disabling and enabling hooks + */ + function createHook(callbacks: HookCallbacks): AsyncHook; + interface AsyncResourceOptions { + /** + * The ID of the execution context that created this async event. + * @default executionAsyncId() + */ + triggerAsyncId?: number | undefined; + /** + * Disables automatic `emitDestroy` when the object is garbage collected. + * This usually does not need to be set (even if `emitDestroy` is called + * manually), unless the resource's `asyncId` is retrieved and the + * sensitive API's `emitDestroy` is called with it. + * @default false + */ + requireManualDestroy?: boolean | undefined; + } + /** + * The class `AsyncResource` is designed to be extended by the embedder's async + * resources. Using this, users can easily trigger the lifetime events of their + * own resources. + * + * The `init` hook will trigger when an `AsyncResource` is instantiated. + * + * The following is an overview of the `AsyncResource` API. + * + * ```js + * import { AsyncResource, executionAsyncId } from 'async_hooks'; + * + * // AsyncResource() is meant to be extended. Instantiating a + * // new AsyncResource() also triggers init. If triggerAsyncId is omitted then + * // async_hook.executionAsyncId() is used. + * const asyncResource = new AsyncResource( + * type, { triggerAsyncId: executionAsyncId(), requireManualDestroy: false } + * ); + * + * // Run a function in the execution context of the resource. This will + * // * establish the context of the resource + * // * trigger the AsyncHooks before callbacks + * // * call the provided function `fn` with the supplied arguments + * // * trigger the AsyncHooks after callbacks + * // * restore the original execution context + * asyncResource.runInAsyncScope(fn, thisArg, ...args); + * + * // Call AsyncHooks destroy callbacks. + * asyncResource.emitDestroy(); + * + * // Return the unique ID assigned to the AsyncResource instance. + * asyncResource.asyncId(); + * + * // Return the trigger ID for the AsyncResource instance. + * asyncResource.triggerAsyncId(); + * ``` + */ + class AsyncResource { + /** + * AsyncResource() is meant to be extended. Instantiating a + * new AsyncResource() also triggers init. If triggerAsyncId is omitted then + * async_hook.executionAsyncId() is used. + * @param type The type of async event. + * @param triggerAsyncId The ID of the execution context that created + * this async event (default: `executionAsyncId()`), or an + * AsyncResourceOptions object (since v9.3.0) + */ + constructor(type: string, triggerAsyncId?: number | AsyncResourceOptions); + /** + * Binds the given function to the current execution context. + * + * The returned function will have an `asyncResource` property referencing + * the `AsyncResource` to which the function is bound. + * @since v14.8.0, v12.19.0 + * @param fn The function to bind to the current execution context. + * @param type An optional name to associate with the underlying `AsyncResource`. + */ + static bind any, ThisArg>( + fn: Func, + type?: string, + thisArg?: ThisArg + ): Func & { + asyncResource: AsyncResource; + }; + /** + * Binds the given function to execute to this `AsyncResource`'s scope. + * + * The returned function will have an `asyncResource` property referencing + * the `AsyncResource` to which the function is bound. + * @since v14.8.0, v12.19.0 + * @param fn The function to bind to the current `AsyncResource`. + */ + bind any>( + fn: Func + ): Func & { + asyncResource: AsyncResource; + }; + /** + * Call the provided function with the provided arguments in the execution context + * of the async resource. This will establish the context, trigger the AsyncHooks + * before callbacks, call the function, trigger the AsyncHooks after callbacks, and + * then restore the original execution context. + * @since v9.6.0 + * @param fn The function to call in the execution context of this async resource. + * @param thisArg The receiver to be used for the function call. + * @param args Optional arguments to pass to the function. + */ + runInAsyncScope(fn: (this: This, ...args: any[]) => Result, thisArg?: This, ...args: any[]): Result; + /** + * Call all `destroy` hooks. This should only ever be called once. An error will + * be thrown if it is called more than once. This **must** be manually called. If + * the resource is left to be collected by the GC then the `destroy` hooks will + * never be called. + * @return A reference to `asyncResource`. + */ + emitDestroy(): this; + /** + * @return The unique `asyncId` assigned to the resource. + */ + asyncId(): number; + /** + * + * @return The same `triggerAsyncId` that is passed to the `AsyncResource` constructor. + */ + triggerAsyncId(): number; + } + /** + * This class creates stores that stay coherent through asynchronous operations. + * + * While you can create your own implementation on top of the `async_hooks` module,`AsyncLocalStorage` should be preferred as it is a performant and memory safe + * implementation that involves significant optimizations that are non-obvious to + * implement. + * + * The following example uses `AsyncLocalStorage` to build a simple logger + * that assigns IDs to incoming HTTP requests and includes them in messages + * logged within each request. + * + * ```js + * import http from 'http'; + * import { AsyncLocalStorage } from 'async_hooks'; + * + * const asyncLocalStorage = new AsyncLocalStorage(); + * + * function logWithId(msg) { + * const id = asyncLocalStorage.getStore(); + * console.log(`${id !== undefined ? id : '-'}:`, msg); + * } + * + * let idSeq = 0; + * http.createServer((req, res) => { + * asyncLocalStorage.run(idSeq++, () => { + * logWithId('start'); + * // Imagine any chain of async operations here + * setImmediate(() => { + * logWithId('finish'); + * res.end(); + * }); + * }); + * }).listen(8080); + * + * http.get('http://localhost:8080'); + * http.get('http://localhost:8080'); + * // Prints: + * // 0: start + * // 1: start + * // 0: finish + * // 1: finish + * ``` + * + * Each instance of `AsyncLocalStorage` maintains an independent storage context. + * Multiple instances can safely exist simultaneously without risk of interfering + * with each other's data. + * @since v13.10.0, v12.17.0 + */ + class AsyncLocalStorage { + /** + * Disables the instance of `AsyncLocalStorage`. All subsequent calls + * to `asyncLocalStorage.getStore()` will return `undefined` until`asyncLocalStorage.run()` or `asyncLocalStorage.enterWith()` is called again. + * + * When calling `asyncLocalStorage.disable()`, all current contexts linked to the + * instance will be exited. + * + * Calling `asyncLocalStorage.disable()` is required before the`asyncLocalStorage` can be garbage collected. This does not apply to stores + * provided by the `asyncLocalStorage`, as those objects are garbage collected + * along with the corresponding async resources. + * + * Use this method when the `asyncLocalStorage` is not in use anymore + * in the current process. + * @since v13.10.0, v12.17.0 + * @experimental + */ + disable(): void; + /** + * Returns the current store. + * If called outside of an asynchronous context initialized by + * calling `asyncLocalStorage.run()` or `asyncLocalStorage.enterWith()`, it + * returns `undefined`. + * @since v13.10.0, v12.17.0 + */ + getStore(): T | undefined; + /** + * Runs a function synchronously within a context and returns its + * return value. The store is not accessible outside of the callback function. + * The store is accessible to any asynchronous operations created within the + * callback. + * + * The optional `args` are passed to the callback function. + * + * If the callback function throws an error, the error is thrown by `run()` too. + * The stacktrace is not impacted by this call and the context is exited. + * + * Example: + * + * ```js + * const store = { id: 2 }; + * try { + * asyncLocalStorage.run(store, () => { + * asyncLocalStorage.getStore(); // Returns the store object + * setTimeout(() => { + * asyncLocalStorage.getStore(); // Returns the store object + * }, 200); + * throw new Error(); + * }); + * } catch (e) { + * asyncLocalStorage.getStore(); // Returns undefined + * // The error will be caught here + * } + * ``` + * @since v13.10.0, v12.17.0 + */ + run(store: T, callback: (...args: TArgs) => R, ...args: TArgs): R; + /** + * Runs a function synchronously outside of a context and returns its + * return value. The store is not accessible within the callback function or + * the asynchronous operations created within the callback. Any `getStore()`call done within the callback function will always return `undefined`. + * + * The optional `args` are passed to the callback function. + * + * If the callback function throws an error, the error is thrown by `exit()` too. + * The stacktrace is not impacted by this call and the context is re-entered. + * + * Example: + * + * ```js + * // Within a call to run + * try { + * asyncLocalStorage.getStore(); // Returns the store object or value + * asyncLocalStorage.exit(() => { + * asyncLocalStorage.getStore(); // Returns undefined + * throw new Error(); + * }); + * } catch (e) { + * asyncLocalStorage.getStore(); // Returns the same object or value + * // The error will be caught here + * } + * ``` + * @since v13.10.0, v12.17.0 + * @experimental + */ + exit(callback: (...args: TArgs) => R, ...args: TArgs): R; + /** + * Transitions into the context for the remainder of the current + * synchronous execution and then persists the store through any following + * asynchronous calls. + * + * Example: + * + * ```js + * const store = { id: 1 }; + * // Replaces previous store with the given store object + * asyncLocalStorage.enterWith(store); + * asyncLocalStorage.getStore(); // Returns the store object + * someAsyncOperation(() => { + * asyncLocalStorage.getStore(); // Returns the same object + * }); + * ``` + * + * This transition will continue for the _entire_ synchronous execution. + * This means that if, for example, the context is entered within an event + * handler subsequent event handlers will also run within that context unless + * specifically bound to another context with an `AsyncResource`. That is why`run()` should be preferred over `enterWith()` unless there are strong reasons + * to use the latter method. + * + * ```js + * const store = { id: 1 }; + * + * emitter.on('my-event', () => { + * asyncLocalStorage.enterWith(store); + * }); + * emitter.on('my-event', () => { + * asyncLocalStorage.getStore(); // Returns the same object + * }); + * + * asyncLocalStorage.getStore(); // Returns undefined + * emitter.emit('my-event'); + * asyncLocalStorage.getStore(); // Returns the same object + * ``` + * @since v13.11.0, v12.17.0 + * @experimental + */ + enterWith(store: T): void; + } +} +declare module 'node:async_hooks' { + export * from 'async_hooks'; +} diff --git a/node_modules/@types/node/buffer.d.ts b/node_modules/@types/node/buffer.d.ts new file mode 100644 index 000000000..c45dcf72d --- /dev/null +++ b/node_modules/@types/node/buffer.d.ts @@ -0,0 +1,2253 @@ +/** + * `Buffer` objects are used to represent a fixed-length sequence of bytes. Many + * Node.js APIs support `Buffer`s. + * + * The `Buffer` class is a subclass of JavaScript's [`Uint8Array`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array) class and + * extends it with methods that cover additional use cases. Node.js APIs accept + * plain [`Uint8Array`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array) s wherever `Buffer`s are supported as well. + * + * While the `Buffer` class is available within the global scope, it is still + * recommended to explicitly reference it via an import or require statement. + * + * ```js + * import { Buffer } from 'buffer'; + * + * // Creates a zero-filled Buffer of length 10. + * const buf1 = Buffer.alloc(10); + * + * // Creates a Buffer of length 10, + * // filled with bytes which all have the value `1`. + * const buf2 = Buffer.alloc(10, 1); + * + * // Creates an uninitialized buffer of length 10. + * // This is faster than calling Buffer.alloc() but the returned + * // Buffer instance might contain old data that needs to be + * // overwritten using fill(), write(), or other functions that fill the Buffer's + * // contents. + * const buf3 = Buffer.allocUnsafe(10); + * + * // Creates a Buffer containing the bytes [1, 2, 3]. + * const buf4 = Buffer.from([1, 2, 3]); + * + * // Creates a Buffer containing the bytes [1, 1, 1, 1] – the entries + * // are all truncated using `(value & 255)` to fit into the range 0–255. + * const buf5 = Buffer.from([257, 257.5, -255, '1']); + * + * // Creates a Buffer containing the UTF-8-encoded bytes for the string 'tést': + * // [0x74, 0xc3, 0xa9, 0x73, 0x74] (in hexadecimal notation) + * // [116, 195, 169, 115, 116] (in decimal notation) + * const buf6 = Buffer.from('tést'); + * + * // Creates a Buffer containing the Latin-1 bytes [0x74, 0xe9, 0x73, 0x74]. + * const buf7 = Buffer.from('tést', 'latin1'); + * ``` + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/buffer.js) + */ +declare module 'buffer' { + import { BinaryLike } from 'node:crypto'; + import { ReadableStream as WebReadableStream } from 'node:stream/web'; + export const INSPECT_MAX_BYTES: number; + export const kMaxLength: number; + export const kStringMaxLength: number; + export const constants: { + MAX_LENGTH: number; + MAX_STRING_LENGTH: number; + }; + export type TranscodeEncoding = 'ascii' | 'utf8' | 'utf16le' | 'ucs2' | 'latin1' | 'binary'; + /** + * Re-encodes the given `Buffer` or `Uint8Array` instance from one character + * encoding to another. Returns a new `Buffer` instance. + * + * Throws if the `fromEnc` or `toEnc` specify invalid character encodings or if + * conversion from `fromEnc` to `toEnc` is not permitted. + * + * Encodings supported by `buffer.transcode()` are: `'ascii'`, `'utf8'`,`'utf16le'`, `'ucs2'`, `'latin1'`, and `'binary'`. + * + * The transcoding process will use substitution characters if a given byte + * sequence cannot be adequately represented in the target encoding. For instance: + * + * ```js + * import { Buffer, transcode } from 'buffer'; + * + * const newBuf = transcode(Buffer.from('€'), 'utf8', 'ascii'); + * console.log(newBuf.toString('ascii')); + * // Prints: '?' + * ``` + * + * Because the Euro (`€`) sign is not representable in US-ASCII, it is replaced + * with `?` in the transcoded `Buffer`. + * @since v7.1.0 + * @param source A `Buffer` or `Uint8Array` instance. + * @param fromEnc The current encoding. + * @param toEnc To target encoding. + */ + export function transcode(source: Uint8Array, fromEnc: TranscodeEncoding, toEnc: TranscodeEncoding): Buffer; + export const SlowBuffer: { + /** @deprecated since v6.0.0, use `Buffer.allocUnsafeSlow()` */ + new (size: number): Buffer; + prototype: Buffer; + }; + /** + * Resolves a `'blob:nodedata:...'` an associated `Blob` object registered using + * a prior call to `URL.createObjectURL()`. + * @since v16.7.0 + * @experimental + * @param id A `'blob:nodedata:...` URL string returned by a prior call to `URL.createObjectURL()`. + */ + export function resolveObjectURL(id: string): Blob | undefined; + export { Buffer }; + /** + * @experimental + */ + export interface BlobOptions { + /** + * @default 'utf8' + */ + encoding?: BufferEncoding | undefined; + /** + * The Blob content-type. The intent is for `type` to convey + * the MIME media type of the data, however no validation of the type format + * is performed. + */ + type?: string | undefined; + } + /** + * A [`Blob`](https://developer.mozilla.org/en-US/docs/Web/API/Blob) encapsulates immutable, raw data that can be safely shared across + * multiple worker threads. + * @since v15.7.0, v14.18.0 + */ + export class Blob { + /** + * The total size of the `Blob` in bytes. + * @since v15.7.0, v14.18.0 + */ + readonly size: number; + /** + * The content-type of the `Blob`. + * @since v15.7.0, v14.18.0 + */ + readonly type: string; + /** + * Creates a new `Blob` object containing a concatenation of the given sources. + * + * {ArrayBuffer}, {TypedArray}, {DataView}, and {Buffer} sources are copied into + * the 'Blob' and can therefore be safely modified after the 'Blob' is created. + * + * String sources are also copied into the `Blob`. + */ + constructor(sources: Array, options?: BlobOptions); + /** + * Returns a promise that fulfills with an [ArrayBuffer](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer) containing a copy of + * the `Blob` data. + * @since v15.7.0, v14.18.0 + */ + arrayBuffer(): Promise; + /** + * Creates and returns a new `Blob` containing a subset of this `Blob` objects + * data. The original `Blob` is not altered. + * @since v15.7.0, v14.18.0 + * @param start The starting index. + * @param end The ending index. + * @param type The content-type for the new `Blob` + */ + slice(start?: number, end?: number, type?: string): Blob; + /** + * Returns a promise that fulfills with the contents of the `Blob` decoded as a + * UTF-8 string. + * @since v15.7.0, v14.18.0 + */ + text(): Promise; + /** + * Returns a new (WHATWG) `ReadableStream` that allows the content of the `Blob` to be read. + * @since v16.7.0 + */ + stream(): WebReadableStream; + } + export import atob = globalThis.atob; + export import btoa = globalThis.btoa; + + import { Blob as _Blob } from 'buffer'; + global { + // Buffer class + type BufferEncoding = 'ascii' | 'utf8' | 'utf-8' | 'utf16le' | 'ucs2' | 'ucs-2' | 'base64' | 'base64url' | 'latin1' | 'binary' | 'hex'; + type WithImplicitCoercion = + | T + | { + valueOf(): T; + }; + /** + * Raw data is stored in instances of the Buffer class. + * A Buffer is similar to an array of integers but corresponds to a raw memory allocation outside the V8 heap. A Buffer cannot be resized. + * Valid string encodings: 'ascii'|'utf8'|'utf16le'|'ucs2'(alias of 'utf16le')|'base64'|'base64url'|'binary'(deprecated)|'hex' + */ + interface BufferConstructor { + /** + * Allocates a new buffer containing the given {str}. + * + * @param str String to store in buffer. + * @param encoding encoding to use, optional. Default is 'utf8' + * @deprecated since v10.0.0 - Use `Buffer.from(string[, encoding])` instead. + */ + new (str: string, encoding?: BufferEncoding): Buffer; + /** + * Allocates a new buffer of {size} octets. + * + * @param size count of octets to allocate. + * @deprecated since v10.0.0 - Use `Buffer.alloc()` instead (also see `Buffer.allocUnsafe()`). + */ + new (size: number): Buffer; + /** + * Allocates a new buffer containing the given {array} of octets. + * + * @param array The octets to store. + * @deprecated since v10.0.0 - Use `Buffer.from(array)` instead. + */ + new (array: Uint8Array): Buffer; + /** + * Produces a Buffer backed by the same allocated memory as + * the given {ArrayBuffer}/{SharedArrayBuffer}. + * + * + * @param arrayBuffer The ArrayBuffer with which to share memory. + * @deprecated since v10.0.0 - Use `Buffer.from(arrayBuffer[, byteOffset[, length]])` instead. + */ + new (arrayBuffer: ArrayBuffer | SharedArrayBuffer): Buffer; + /** + * Allocates a new buffer containing the given {array} of octets. + * + * @param array The octets to store. + * @deprecated since v10.0.0 - Use `Buffer.from(array)` instead. + */ + new (array: ReadonlyArray): Buffer; + /** + * Copies the passed {buffer} data onto a new {Buffer} instance. + * + * @param buffer The buffer to copy. + * @deprecated since v10.0.0 - Use `Buffer.from(buffer)` instead. + */ + new (buffer: Buffer): Buffer; + /** + * Allocates a new `Buffer` using an `array` of bytes in the range `0` – `255`. + * Array entries outside that range will be truncated to fit into it. + * + * ```js + * import { Buffer } from 'buffer'; + * + * // Creates a new Buffer containing the UTF-8 bytes of the string 'buffer'. + * const buf = Buffer.from([0x62, 0x75, 0x66, 0x66, 0x65, 0x72]); + * ``` + * + * A `TypeError` will be thrown if `array` is not an `Array` or another type + * appropriate for `Buffer.from()` variants. + * + * `Buffer.from(array)` and `Buffer.from(string)` may also use the internal`Buffer` pool like `Buffer.allocUnsafe()` does. + * @since v5.10.0 + */ + from(arrayBuffer: WithImplicitCoercion, byteOffset?: number, length?: number): Buffer; + /** + * Creates a new Buffer using the passed {data} + * @param data data to create a new Buffer + */ + from(data: Uint8Array | ReadonlyArray): Buffer; + from(data: WithImplicitCoercion | string>): Buffer; + /** + * Creates a new Buffer containing the given JavaScript string {str}. + * If provided, the {encoding} parameter identifies the character encoding. + * If not provided, {encoding} defaults to 'utf8'. + */ + from( + str: + | WithImplicitCoercion + | { + [Symbol.toPrimitive](hint: 'string'): string; + }, + encoding?: BufferEncoding + ): Buffer; + /** + * Creates a new Buffer using the passed {data} + * @param values to create a new Buffer + */ + of(...items: number[]): Buffer; + /** + * Returns `true` if `obj` is a `Buffer`, `false` otherwise. + * + * ```js + * import { Buffer } from 'buffer'; + * + * Buffer.isBuffer(Buffer.alloc(10)); // true + * Buffer.isBuffer(Buffer.from('foo')); // true + * Buffer.isBuffer('a string'); // false + * Buffer.isBuffer([]); // false + * Buffer.isBuffer(new Uint8Array(1024)); // false + * ``` + * @since v0.1.101 + */ + isBuffer(obj: any): obj is Buffer; + /** + * Returns `true` if `encoding` is the name of a supported character encoding, + * or `false` otherwise. + * + * ```js + * import { Buffer } from 'buffer'; + * + * console.log(Buffer.isEncoding('utf8')); + * // Prints: true + * + * console.log(Buffer.isEncoding('hex')); + * // Prints: true + * + * console.log(Buffer.isEncoding('utf/8')); + * // Prints: false + * + * console.log(Buffer.isEncoding('')); + * // Prints: false + * ``` + * @since v0.9.1 + * @param encoding A character encoding name to check. + */ + isEncoding(encoding: string): encoding is BufferEncoding; + /** + * Returns the byte length of a string when encoded using `encoding`. + * This is not the same as [`String.prototype.length`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/length), which does not account + * for the encoding that is used to convert the string into bytes. + * + * For `'base64'`, `'base64url'`, and `'hex'`, this function assumes valid input. + * For strings that contain non-base64/hex-encoded data (e.g. whitespace), the + * return value might be greater than the length of a `Buffer` created from the + * string. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const str = '\u00bd + \u00bc = \u00be'; + * + * console.log(`${str}: ${str.length} characters, ` + + * `${Buffer.byteLength(str, 'utf8')} bytes`); + * // Prints: ½ + ¼ = ¾: 9 characters, 12 bytes + * ``` + * + * When `string` is a + * `Buffer`/[`DataView`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView)/[`TypedArray`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/- + * Reference/Global_Objects/TypedArray)/[`ArrayBuffer`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer)/[`SharedArrayBuffer`](https://develop- + * er.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SharedArrayBuffer), the byte length as reported by `.byteLength`is returned. + * @since v0.1.90 + * @param string A value to calculate the length of. + * @param [encoding='utf8'] If `string` is a string, this is its encoding. + * @return The number of bytes contained within `string`. + */ + byteLength(string: string | NodeJS.ArrayBufferView | ArrayBuffer | SharedArrayBuffer, encoding?: BufferEncoding): number; + /** + * Returns a new `Buffer` which is the result of concatenating all the `Buffer`instances in the `list` together. + * + * If the list has no items, or if the `totalLength` is 0, then a new zero-length`Buffer` is returned. + * + * If `totalLength` is not provided, it is calculated from the `Buffer` instances + * in `list` by adding their lengths. + * + * If `totalLength` is provided, it is coerced to an unsigned integer. If the + * combined length of the `Buffer`s in `list` exceeds `totalLength`, the result is + * truncated to `totalLength`. + * + * ```js + * import { Buffer } from 'buffer'; + * + * // Create a single `Buffer` from a list of three `Buffer` instances. + * + * const buf1 = Buffer.alloc(10); + * const buf2 = Buffer.alloc(14); + * const buf3 = Buffer.alloc(18); + * const totalLength = buf1.length + buf2.length + buf3.length; + * + * console.log(totalLength); + * // Prints: 42 + * + * const bufA = Buffer.concat([buf1, buf2, buf3], totalLength); + * + * console.log(bufA); + * // Prints: + * console.log(bufA.length); + * // Prints: 42 + * ``` + * + * `Buffer.concat()` may also use the internal `Buffer` pool like `Buffer.allocUnsafe()` does. + * @since v0.7.11 + * @param list List of `Buffer` or {@link Uint8Array} instances to concatenate. + * @param totalLength Total length of the `Buffer` instances in `list` when concatenated. + */ + concat(list: ReadonlyArray, totalLength?: number): Buffer; + /** + * Compares `buf1` to `buf2`, typically for the purpose of sorting arrays of`Buffer` instances. This is equivalent to calling `buf1.compare(buf2)`. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf1 = Buffer.from('1234'); + * const buf2 = Buffer.from('0123'); + * const arr = [buf1, buf2]; + * + * console.log(arr.sort(Buffer.compare)); + * // Prints: [ , ] + * // (This result is equal to: [buf2, buf1].) + * ``` + * @since v0.11.13 + * @return Either `-1`, `0`, or `1`, depending on the result of the comparison. See `compare` for details. + */ + compare(buf1: Uint8Array, buf2: Uint8Array): -1 | 0 | 1; + /** + * Allocates a new `Buffer` of `size` bytes. If `fill` is `undefined`, the`Buffer` will be zero-filled. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.alloc(5); + * + * console.log(buf); + * // Prints: + * ``` + * + * If `size` is larger than {@link constants.MAX_LENGTH} or smaller than 0, `ERR_INVALID_ARG_VALUE` is thrown. + * + * If `fill` is specified, the allocated `Buffer` will be initialized by calling `buf.fill(fill)`. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.alloc(5, 'a'); + * + * console.log(buf); + * // Prints: + * ``` + * + * If both `fill` and `encoding` are specified, the allocated `Buffer` will be + * initialized by calling `buf.fill(fill, encoding)`. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.alloc(11, 'aGVsbG8gd29ybGQ=', 'base64'); + * + * console.log(buf); + * // Prints: + * ``` + * + * Calling `Buffer.alloc()` can be measurably slower than the alternative `Buffer.allocUnsafe()` but ensures that the newly created `Buffer` instance + * contents will never contain sensitive data from previous allocations, including + * data that might not have been allocated for `Buffer`s. + * + * A `TypeError` will be thrown if `size` is not a number. + * @since v5.10.0 + * @param size The desired length of the new `Buffer`. + * @param [fill=0] A value to pre-fill the new `Buffer` with. + * @param [encoding='utf8'] If `fill` is a string, this is its encoding. + */ + alloc(size: number, fill?: string | Buffer | number, encoding?: BufferEncoding): Buffer; + /** + * Allocates a new `Buffer` of `size` bytes. If `size` is larger than {@link constants.MAX_LENGTH} or smaller than 0, `ERR_INVALID_ARG_VALUE` is thrown. + * + * The underlying memory for `Buffer` instances created in this way is _not_ + * _initialized_. The contents of the newly created `Buffer` are unknown and _may contain sensitive data_. Use `Buffer.alloc()` instead to initialize`Buffer` instances with zeroes. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.allocUnsafe(10); + * + * console.log(buf); + * // Prints (contents may vary): + * + * buf.fill(0); + * + * console.log(buf); + * // Prints: + * ``` + * + * A `TypeError` will be thrown if `size` is not a number. + * + * The `Buffer` module pre-allocates an internal `Buffer` instance of + * size `Buffer.poolSize` that is used as a pool for the fast allocation of new`Buffer` instances created using `Buffer.allocUnsafe()`,`Buffer.from(array)`, `Buffer.concat()`, and the + * deprecated`new Buffer(size)` constructor only when `size` is less than or equal + * to `Buffer.poolSize >> 1` (floor of `Buffer.poolSize` divided by two). + * + * Use of this pre-allocated internal memory pool is a key difference between + * calling `Buffer.alloc(size, fill)` vs. `Buffer.allocUnsafe(size).fill(fill)`. + * Specifically, `Buffer.alloc(size, fill)` will _never_ use the internal `Buffer`pool, while `Buffer.allocUnsafe(size).fill(fill)`_will_ use the internal`Buffer` pool if `size` is less + * than or equal to half `Buffer.poolSize`. The + * difference is subtle but can be important when an application requires the + * additional performance that `Buffer.allocUnsafe()` provides. + * @since v5.10.0 + * @param size The desired length of the new `Buffer`. + */ + allocUnsafe(size: number): Buffer; + /** + * Allocates a new `Buffer` of `size` bytes. If `size` is larger than {@link constants.MAX_LENGTH} or smaller than 0, `ERR_INVALID_ARG_VALUE` is thrown. A zero-length `Buffer` is created + * if `size` is 0. + * + * The underlying memory for `Buffer` instances created in this way is _not_ + * _initialized_. The contents of the newly created `Buffer` are unknown and _may contain sensitive data_. Use `buf.fill(0)` to initialize + * such `Buffer` instances with zeroes. + * + * When using `Buffer.allocUnsafe()` to allocate new `Buffer` instances, + * allocations under 4 KB are sliced from a single pre-allocated `Buffer`. This + * allows applications to avoid the garbage collection overhead of creating many + * individually allocated `Buffer` instances. This approach improves both + * performance and memory usage by eliminating the need to track and clean up as + * many individual `ArrayBuffer` objects. + * + * However, in the case where a developer may need to retain a small chunk of + * memory from a pool for an indeterminate amount of time, it may be appropriate + * to create an un-pooled `Buffer` instance using `Buffer.allocUnsafeSlow()` and + * then copying out the relevant bits. + * + * ```js + * import { Buffer } from 'buffer'; + * + * // Need to keep around a few small chunks of memory. + * const store = []; + * + * socket.on('readable', () => { + * let data; + * while (null !== (data = readable.read())) { + * // Allocate for retained data. + * const sb = Buffer.allocUnsafeSlow(10); + * + * // Copy the data into the new allocation. + * data.copy(sb, 0, 0, 10); + * + * store.push(sb); + * } + * }); + * ``` + * + * A `TypeError` will be thrown if `size` is not a number. + * @since v5.12.0 + * @param size The desired length of the new `Buffer`. + */ + allocUnsafeSlow(size: number): Buffer; + /** + * This is the size (in bytes) of pre-allocated internal `Buffer` instances used + * for pooling. This value may be modified. + * @since v0.11.3 + */ + poolSize: number; + } + interface Buffer extends Uint8Array { + /** + * Writes `string` to `buf` at `offset` according to the character encoding in`encoding`. The `length` parameter is the number of bytes to write. If `buf` did + * not contain enough space to fit the entire string, only part of `string` will be + * written. However, partially encoded characters will not be written. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.alloc(256); + * + * const len = buf.write('\u00bd + \u00bc = \u00be', 0); + * + * console.log(`${len} bytes: ${buf.toString('utf8', 0, len)}`); + * // Prints: 12 bytes: ½ + ¼ = ¾ + * + * const buffer = Buffer.alloc(10); + * + * const length = buffer.write('abcd', 8); + * + * console.log(`${length} bytes: ${buffer.toString('utf8', 8, 10)}`); + * // Prints: 2 bytes : ab + * ``` + * @since v0.1.90 + * @param string String to write to `buf`. + * @param [offset=0] Number of bytes to skip before starting to write `string`. + * @param [length=buf.length - offset] Maximum number of bytes to write (written bytes will not exceed `buf.length - offset`). + * @param [encoding='utf8'] The character encoding of `string`. + * @return Number of bytes written. + */ + write(string: string, encoding?: BufferEncoding): number; + write(string: string, offset: number, encoding?: BufferEncoding): number; + write(string: string, offset: number, length: number, encoding?: BufferEncoding): number; + /** + * Decodes `buf` to a string according to the specified character encoding in`encoding`. `start` and `end` may be passed to decode only a subset of `buf`. + * + * If `encoding` is `'utf8'` and a byte sequence in the input is not valid UTF-8, + * then each invalid byte is replaced with the replacement character `U+FFFD`. + * + * The maximum length of a string instance (in UTF-16 code units) is available + * as {@link constants.MAX_STRING_LENGTH}. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf1 = Buffer.allocUnsafe(26); + * + * for (let i = 0; i < 26; i++) { + * // 97 is the decimal ASCII value for 'a'. + * buf1[i] = i + 97; + * } + * + * console.log(buf1.toString('utf8')); + * // Prints: abcdefghijklmnopqrstuvwxyz + * console.log(buf1.toString('utf8', 0, 5)); + * // Prints: abcde + * + * const buf2 = Buffer.from('tést'); + * + * console.log(buf2.toString('hex')); + * // Prints: 74c3a97374 + * console.log(buf2.toString('utf8', 0, 3)); + * // Prints: té + * console.log(buf2.toString(undefined, 0, 3)); + * // Prints: té + * ``` + * @since v0.1.90 + * @param [encoding='utf8'] The character encoding to use. + * @param [start=0] The byte offset to start decoding at. + * @param [end=buf.length] The byte offset to stop decoding at (not inclusive). + */ + toString(encoding?: BufferEncoding, start?: number, end?: number): string; + /** + * Returns a JSON representation of `buf`. [`JSON.stringify()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify) implicitly calls + * this function when stringifying a `Buffer` instance. + * + * `Buffer.from()` accepts objects in the format returned from this method. + * In particular, `Buffer.from(buf.toJSON())` works like `Buffer.from(buf)`. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.from([0x1, 0x2, 0x3, 0x4, 0x5]); + * const json = JSON.stringify(buf); + * + * console.log(json); + * // Prints: {"type":"Buffer","data":[1,2,3,4,5]} + * + * const copy = JSON.parse(json, (key, value) => { + * return value && value.type === 'Buffer' ? + * Buffer.from(value) : + * value; + * }); + * + * console.log(copy); + * // Prints: + * ``` + * @since v0.9.2 + */ + toJSON(): { + type: 'Buffer'; + data: number[]; + }; + /** + * Returns `true` if both `buf` and `otherBuffer` have exactly the same bytes,`false` otherwise. Equivalent to `buf.compare(otherBuffer) === 0`. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf1 = Buffer.from('ABC'); + * const buf2 = Buffer.from('414243', 'hex'); + * const buf3 = Buffer.from('ABCD'); + * + * console.log(buf1.equals(buf2)); + * // Prints: true + * console.log(buf1.equals(buf3)); + * // Prints: false + * ``` + * @since v0.11.13 + * @param otherBuffer A `Buffer` or {@link Uint8Array} with which to compare `buf`. + */ + equals(otherBuffer: Uint8Array): boolean; + /** + * Compares `buf` with `target` and returns a number indicating whether `buf`comes before, after, or is the same as `target` in sort order. + * Comparison is based on the actual sequence of bytes in each `Buffer`. + * + * * `0` is returned if `target` is the same as `buf` + * * `1` is returned if `target` should come _before_`buf` when sorted. + * * `-1` is returned if `target` should come _after_`buf` when sorted. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf1 = Buffer.from('ABC'); + * const buf2 = Buffer.from('BCD'); + * const buf3 = Buffer.from('ABCD'); + * + * console.log(buf1.compare(buf1)); + * // Prints: 0 + * console.log(buf1.compare(buf2)); + * // Prints: -1 + * console.log(buf1.compare(buf3)); + * // Prints: -1 + * console.log(buf2.compare(buf1)); + * // Prints: 1 + * console.log(buf2.compare(buf3)); + * // Prints: 1 + * console.log([buf1, buf2, buf3].sort(Buffer.compare)); + * // Prints: [ , , ] + * // (This result is equal to: [buf1, buf3, buf2].) + * ``` + * + * The optional `targetStart`, `targetEnd`, `sourceStart`, and `sourceEnd`arguments can be used to limit the comparison to specific ranges within `target`and `buf` respectively. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf1 = Buffer.from([1, 2, 3, 4, 5, 6, 7, 8, 9]); + * const buf2 = Buffer.from([5, 6, 7, 8, 9, 1, 2, 3, 4]); + * + * console.log(buf1.compare(buf2, 5, 9, 0, 4)); + * // Prints: 0 + * console.log(buf1.compare(buf2, 0, 6, 4)); + * // Prints: -1 + * console.log(buf1.compare(buf2, 5, 6, 5)); + * // Prints: 1 + * ``` + * + * `ERR_OUT_OF_RANGE` is thrown if `targetStart < 0`, `sourceStart < 0`,`targetEnd > target.byteLength`, or `sourceEnd > source.byteLength`. + * @since v0.11.13 + * @param target A `Buffer` or {@link Uint8Array} with which to compare `buf`. + * @param [targetStart=0] The offset within `target` at which to begin comparison. + * @param [targetEnd=target.length] The offset within `target` at which to end comparison (not inclusive). + * @param [sourceStart=0] The offset within `buf` at which to begin comparison. + * @param [sourceEnd=buf.length] The offset within `buf` at which to end comparison (not inclusive). + */ + compare(target: Uint8Array, targetStart?: number, targetEnd?: number, sourceStart?: number, sourceEnd?: number): -1 | 0 | 1; + /** + * Copies data from a region of `buf` to a region in `target`, even if the `target`memory region overlaps with `buf`. + * + * [`TypedArray.prototype.set()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/set) performs the same operation, and is available + * for all TypedArrays, including Node.js `Buffer`s, although it takes + * different function arguments. + * + * ```js + * import { Buffer } from 'buffer'; + * + * // Create two `Buffer` instances. + * const buf1 = Buffer.allocUnsafe(26); + * const buf2 = Buffer.allocUnsafe(26).fill('!'); + * + * for (let i = 0; i < 26; i++) { + * // 97 is the decimal ASCII value for 'a'. + * buf1[i] = i + 97; + * } + * + * // Copy `buf1` bytes 16 through 19 into `buf2` starting at byte 8 of `buf2`. + * buf1.copy(buf2, 8, 16, 20); + * // This is equivalent to: + * // buf2.set(buf1.subarray(16, 20), 8); + * + * console.log(buf2.toString('ascii', 0, 25)); + * // Prints: !!!!!!!!qrst!!!!!!!!!!!!! + * ``` + * + * ```js + * import { Buffer } from 'buffer'; + * + * // Create a `Buffer` and copy data from one region to an overlapping region + * // within the same `Buffer`. + * + * const buf = Buffer.allocUnsafe(26); + * + * for (let i = 0; i < 26; i++) { + * // 97 is the decimal ASCII value for 'a'. + * buf[i] = i + 97; + * } + * + * buf.copy(buf, 0, 4, 10); + * + * console.log(buf.toString()); + * // Prints: efghijghijklmnopqrstuvwxyz + * ``` + * @since v0.1.90 + * @param target A `Buffer` or {@link Uint8Array} to copy into. + * @param [targetStart=0] The offset within `target` at which to begin writing. + * @param [sourceStart=0] The offset within `buf` from which to begin copying. + * @param [sourceEnd=buf.length] The offset within `buf` at which to stop copying (not inclusive). + * @return The number of bytes copied. + */ + copy(target: Uint8Array, targetStart?: number, sourceStart?: number, sourceEnd?: number): number; + /** + * Returns a new `Buffer` that references the same memory as the original, but + * offset and cropped by the `start` and `end` indices. + * + * This method is not compatible with the `Uint8Array.prototype.slice()`, + * which is a superclass of `Buffer`. To copy the slice, use`Uint8Array.prototype.slice()`. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.from('buffer'); + * + * const copiedBuf = Uint8Array.prototype.slice.call(buf); + * copiedBuf[0]++; + * console.log(copiedBuf.toString()); + * // Prints: cuffer + * + * console.log(buf.toString()); + * // Prints: buffer + * + * // With buf.slice(), the original buffer is modified. + * const notReallyCopiedBuf = buf.slice(); + * notReallyCopiedBuf[0]++; + * console.log(notReallyCopiedBuf.toString()); + * // Prints: cuffer + * console.log(buf.toString()); + * // Also prints: cuffer (!) + * ``` + * @since v0.3.0 + * @deprecated Use `subarray` instead. + * @param [start=0] Where the new `Buffer` will start. + * @param [end=buf.length] Where the new `Buffer` will end (not inclusive). + */ + slice(start?: number, end?: number): Buffer; + /** + * Returns a new `Buffer` that references the same memory as the original, but + * offset and cropped by the `start` and `end` indices. + * + * Specifying `end` greater than `buf.length` will return the same result as + * that of `end` equal to `buf.length`. + * + * This method is inherited from [`TypedArray.prototype.subarray()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/subarray). + * + * Modifying the new `Buffer` slice will modify the memory in the original `Buffer`because the allocated memory of the two objects overlap. + * + * ```js + * import { Buffer } from 'buffer'; + * + * // Create a `Buffer` with the ASCII alphabet, take a slice, and modify one byte + * // from the original `Buffer`. + * + * const buf1 = Buffer.allocUnsafe(26); + * + * for (let i = 0; i < 26; i++) { + * // 97 is the decimal ASCII value for 'a'. + * buf1[i] = i + 97; + * } + * + * const buf2 = buf1.subarray(0, 3); + * + * console.log(buf2.toString('ascii', 0, buf2.length)); + * // Prints: abc + * + * buf1[0] = 33; + * + * console.log(buf2.toString('ascii', 0, buf2.length)); + * // Prints: !bc + * ``` + * + * Specifying negative indexes causes the slice to be generated relative to the + * end of `buf` rather than the beginning. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.from('buffer'); + * + * console.log(buf.subarray(-6, -1).toString()); + * // Prints: buffe + * // (Equivalent to buf.subarray(0, 5).) + * + * console.log(buf.subarray(-6, -2).toString()); + * // Prints: buff + * // (Equivalent to buf.subarray(0, 4).) + * + * console.log(buf.subarray(-5, -2).toString()); + * // Prints: uff + * // (Equivalent to buf.subarray(1, 4).) + * ``` + * @since v3.0.0 + * @param [start=0] Where the new `Buffer` will start. + * @param [end=buf.length] Where the new `Buffer` will end (not inclusive). + */ + subarray(start?: number, end?: number): Buffer; + /** + * Writes `value` to `buf` at the specified `offset` as big-endian. + * + * `value` is interpreted and written as a two's complement signed integer. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.allocUnsafe(8); + * + * buf.writeBigInt64BE(0x0102030405060708n, 0); + * + * console.log(buf); + * // Prints: + * ``` + * @since v12.0.0, v10.20.0 + * @param value Number to be written to `buf`. + * @param [offset=0] Number of bytes to skip before starting to write. Must satisfy: `0 <= offset <= buf.length - 8`. + * @return `offset` plus the number of bytes written. + */ + writeBigInt64BE(value: bigint, offset?: number): number; + /** + * Writes `value` to `buf` at the specified `offset` as little-endian. + * + * `value` is interpreted and written as a two's complement signed integer. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.allocUnsafe(8); + * + * buf.writeBigInt64LE(0x0102030405060708n, 0); + * + * console.log(buf); + * // Prints: + * ``` + * @since v12.0.0, v10.20.0 + * @param value Number to be written to `buf`. + * @param [offset=0] Number of bytes to skip before starting to write. Must satisfy: `0 <= offset <= buf.length - 8`. + * @return `offset` plus the number of bytes written. + */ + writeBigInt64LE(value: bigint, offset?: number): number; + /** + * Writes `value` to `buf` at the specified `offset` as big-endian. + * + * This function is also available under the `writeBigUint64BE` alias. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.allocUnsafe(8); + * + * buf.writeBigUInt64BE(0xdecafafecacefaden, 0); + * + * console.log(buf); + * // Prints: + * ``` + * @since v12.0.0, v10.20.0 + * @param value Number to be written to `buf`. + * @param [offset=0] Number of bytes to skip before starting to write. Must satisfy: `0 <= offset <= buf.length - 8`. + * @return `offset` plus the number of bytes written. + */ + writeBigUInt64BE(value: bigint, offset?: number): number; + /** + * @alias Buffer.writeBigUInt64BE + * @since v14.10.0, v12.19.0 + */ + writeBigUint64BE(value: bigint, offset?: number): number; + /** + * Writes `value` to `buf` at the specified `offset` as little-endian + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.allocUnsafe(8); + * + * buf.writeBigUInt64LE(0xdecafafecacefaden, 0); + * + * console.log(buf); + * // Prints: + * ``` + * + * This function is also available under the `writeBigUint64LE` alias. + * @since v12.0.0, v10.20.0 + * @param value Number to be written to `buf`. + * @param [offset=0] Number of bytes to skip before starting to write. Must satisfy: `0 <= offset <= buf.length - 8`. + * @return `offset` plus the number of bytes written. + */ + writeBigUInt64LE(value: bigint, offset?: number): number; + /** + * @alias Buffer.writeBigUInt64LE + * @since v14.10.0, v12.19.0 + */ + writeBigUint64LE(value: bigint, offset?: number): number; + /** + * Writes `byteLength` bytes of `value` to `buf` at the specified `offset`as little-endian. Supports up to 48 bits of accuracy. Behavior is undefined + * when `value` is anything other than an unsigned integer. + * + * This function is also available under the `writeUintLE` alias. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.allocUnsafe(6); + * + * buf.writeUIntLE(0x1234567890ab, 0, 6); + * + * console.log(buf); + * // Prints: + * ``` + * @since v0.5.5 + * @param value Number to be written to `buf`. + * @param offset Number of bytes to skip before starting to write. Must satisfy `0 <= offset <= buf.length - byteLength`. + * @param byteLength Number of bytes to write. Must satisfy `0 < byteLength <= 6`. + * @return `offset` plus the number of bytes written. + */ + writeUIntLE(value: number, offset: number, byteLength: number): number; + /** + * @alias Buffer.writeUIntLE + * @since v14.9.0, v12.19.0 + */ + writeUintLE(value: number, offset: number, byteLength: number): number; + /** + * Writes `byteLength` bytes of `value` to `buf` at the specified `offset`as big-endian. Supports up to 48 bits of accuracy. Behavior is undefined + * when `value` is anything other than an unsigned integer. + * + * This function is also available under the `writeUintBE` alias. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.allocUnsafe(6); + * + * buf.writeUIntBE(0x1234567890ab, 0, 6); + * + * console.log(buf); + * // Prints: + * ``` + * @since v0.5.5 + * @param value Number to be written to `buf`. + * @param offset Number of bytes to skip before starting to write. Must satisfy `0 <= offset <= buf.length - byteLength`. + * @param byteLength Number of bytes to write. Must satisfy `0 < byteLength <= 6`. + * @return `offset` plus the number of bytes written. + */ + writeUIntBE(value: number, offset: number, byteLength: number): number; + /** + * @alias Buffer.writeUIntBE + * @since v14.9.0, v12.19.0 + */ + writeUintBE(value: number, offset: number, byteLength: number): number; + /** + * Writes `byteLength` bytes of `value` to `buf` at the specified `offset`as little-endian. Supports up to 48 bits of accuracy. Behavior is undefined + * when `value` is anything other than a signed integer. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.allocUnsafe(6); + * + * buf.writeIntLE(0x1234567890ab, 0, 6); + * + * console.log(buf); + * // Prints: + * ``` + * @since v0.11.15 + * @param value Number to be written to `buf`. + * @param offset Number of bytes to skip before starting to write. Must satisfy `0 <= offset <= buf.length - byteLength`. + * @param byteLength Number of bytes to write. Must satisfy `0 < byteLength <= 6`. + * @return `offset` plus the number of bytes written. + */ + writeIntLE(value: number, offset: number, byteLength: number): number; + /** + * Writes `byteLength` bytes of `value` to `buf` at the specified `offset`as big-endian. Supports up to 48 bits of accuracy. Behavior is undefined when`value` is anything other than a + * signed integer. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.allocUnsafe(6); + * + * buf.writeIntBE(0x1234567890ab, 0, 6); + * + * console.log(buf); + * // Prints: + * ``` + * @since v0.11.15 + * @param value Number to be written to `buf`. + * @param offset Number of bytes to skip before starting to write. Must satisfy `0 <= offset <= buf.length - byteLength`. + * @param byteLength Number of bytes to write. Must satisfy `0 < byteLength <= 6`. + * @return `offset` plus the number of bytes written. + */ + writeIntBE(value: number, offset: number, byteLength: number): number; + /** + * Reads an unsigned, big-endian 64-bit integer from `buf` at the specified`offset`. + * + * This function is also available under the `readBigUint64BE` alias. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.from([0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff]); + * + * console.log(buf.readBigUInt64BE(0)); + * // Prints: 4294967295n + * ``` + * @since v12.0.0, v10.20.0 + * @param [offset=0] Number of bytes to skip before starting to read. Must satisfy: `0 <= offset <= buf.length - 8`. + */ + readBigUInt64BE(offset?: number): bigint; + /** + * @alias Buffer.readBigUInt64BE + * @since v14.10.0, v12.19.0 + */ + readBigUint64BE(offset?: number): bigint; + /** + * Reads an unsigned, little-endian 64-bit integer from `buf` at the specified`offset`. + * + * This function is also available under the `readBigUint64LE` alias. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.from([0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff]); + * + * console.log(buf.readBigUInt64LE(0)); + * // Prints: 18446744069414584320n + * ``` + * @since v12.0.0, v10.20.0 + * @param [offset=0] Number of bytes to skip before starting to read. Must satisfy: `0 <= offset <= buf.length - 8`. + */ + readBigUInt64LE(offset?: number): bigint; + /** + * @alias Buffer.readBigUInt64LE + * @since v14.10.0, v12.19.0 + */ + readBigUint64LE(offset?: number): bigint; + /** + * Reads a signed, big-endian 64-bit integer from `buf` at the specified `offset`. + * + * Integers read from a `Buffer` are interpreted as two's complement signed + * values. + * @since v12.0.0, v10.20.0 + * @param [offset=0] Number of bytes to skip before starting to read. Must satisfy: `0 <= offset <= buf.length - 8`. + */ + readBigInt64BE(offset?: number): bigint; + /** + * Reads a signed, little-endian 64-bit integer from `buf` at the specified`offset`. + * + * Integers read from a `Buffer` are interpreted as two's complement signed + * values. + * @since v12.0.0, v10.20.0 + * @param [offset=0] Number of bytes to skip before starting to read. Must satisfy: `0 <= offset <= buf.length - 8`. + */ + readBigInt64LE(offset?: number): bigint; + /** + * Reads `byteLength` number of bytes from `buf` at the specified `offset`and interprets the result as an unsigned, little-endian integer supporting + * up to 48 bits of accuracy. + * + * This function is also available under the `readUintLE` alias. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.from([0x12, 0x34, 0x56, 0x78, 0x90, 0xab]); + * + * console.log(buf.readUIntLE(0, 6).toString(16)); + * // Prints: ab9078563412 + * ``` + * @since v0.11.15 + * @param offset Number of bytes to skip before starting to read. Must satisfy `0 <= offset <= buf.length - byteLength`. + * @param byteLength Number of bytes to read. Must satisfy `0 < byteLength <= 6`. + */ + readUIntLE(offset: number, byteLength: number): number; + /** + * @alias Buffer.readUIntLE + * @since v14.9.0, v12.19.0 + */ + readUintLE(offset: number, byteLength: number): number; + /** + * Reads `byteLength` number of bytes from `buf` at the specified `offset`and interprets the result as an unsigned big-endian integer supporting + * up to 48 bits of accuracy. + * + * This function is also available under the `readUintBE` alias. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.from([0x12, 0x34, 0x56, 0x78, 0x90, 0xab]); + * + * console.log(buf.readUIntBE(0, 6).toString(16)); + * // Prints: 1234567890ab + * console.log(buf.readUIntBE(1, 6).toString(16)); + * // Throws ERR_OUT_OF_RANGE. + * ``` + * @since v0.11.15 + * @param offset Number of bytes to skip before starting to read. Must satisfy `0 <= offset <= buf.length - byteLength`. + * @param byteLength Number of bytes to read. Must satisfy `0 < byteLength <= 6`. + */ + readUIntBE(offset: number, byteLength: number): number; + /** + * @alias Buffer.readUIntBE + * @since v14.9.0, v12.19.0 + */ + readUintBE(offset: number, byteLength: number): number; + /** + * Reads `byteLength` number of bytes from `buf` at the specified `offset`and interprets the result as a little-endian, two's complement signed value + * supporting up to 48 bits of accuracy. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.from([0x12, 0x34, 0x56, 0x78, 0x90, 0xab]); + * + * console.log(buf.readIntLE(0, 6).toString(16)); + * // Prints: -546f87a9cbee + * ``` + * @since v0.11.15 + * @param offset Number of bytes to skip before starting to read. Must satisfy `0 <= offset <= buf.length - byteLength`. + * @param byteLength Number of bytes to read. Must satisfy `0 < byteLength <= 6`. + */ + readIntLE(offset: number, byteLength: number): number; + /** + * Reads `byteLength` number of bytes from `buf` at the specified `offset`and interprets the result as a big-endian, two's complement signed value + * supporting up to 48 bits of accuracy. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.from([0x12, 0x34, 0x56, 0x78, 0x90, 0xab]); + * + * console.log(buf.readIntBE(0, 6).toString(16)); + * // Prints: 1234567890ab + * console.log(buf.readIntBE(1, 6).toString(16)); + * // Throws ERR_OUT_OF_RANGE. + * console.log(buf.readIntBE(1, 0).toString(16)); + * // Throws ERR_OUT_OF_RANGE. + * ``` + * @since v0.11.15 + * @param offset Number of bytes to skip before starting to read. Must satisfy `0 <= offset <= buf.length - byteLength`. + * @param byteLength Number of bytes to read. Must satisfy `0 < byteLength <= 6`. + */ + readIntBE(offset: number, byteLength: number): number; + /** + * Reads an unsigned 8-bit integer from `buf` at the specified `offset`. + * + * This function is also available under the `readUint8` alias. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.from([1, -2]); + * + * console.log(buf.readUInt8(0)); + * // Prints: 1 + * console.log(buf.readUInt8(1)); + * // Prints: 254 + * console.log(buf.readUInt8(2)); + * // Throws ERR_OUT_OF_RANGE. + * ``` + * @since v0.5.0 + * @param [offset=0] Number of bytes to skip before starting to read. Must satisfy `0 <= offset <= buf.length - 1`. + */ + readUInt8(offset?: number): number; + /** + * @alias Buffer.readUInt8 + * @since v14.9.0, v12.19.0 + */ + readUint8(offset?: number): number; + /** + * Reads an unsigned, little-endian 16-bit integer from `buf` at the specified`offset`. + * + * This function is also available under the `readUint16LE` alias. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.from([0x12, 0x34, 0x56]); + * + * console.log(buf.readUInt16LE(0).toString(16)); + * // Prints: 3412 + * console.log(buf.readUInt16LE(1).toString(16)); + * // Prints: 5634 + * console.log(buf.readUInt16LE(2).toString(16)); + * // Throws ERR_OUT_OF_RANGE. + * ``` + * @since v0.5.5 + * @param [offset=0] Number of bytes to skip before starting to read. Must satisfy `0 <= offset <= buf.length - 2`. + */ + readUInt16LE(offset?: number): number; + /** + * @alias Buffer.readUInt16LE + * @since v14.9.0, v12.19.0 + */ + readUint16LE(offset?: number): number; + /** + * Reads an unsigned, big-endian 16-bit integer from `buf` at the specified`offset`. + * + * This function is also available under the `readUint16BE` alias. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.from([0x12, 0x34, 0x56]); + * + * console.log(buf.readUInt16BE(0).toString(16)); + * // Prints: 1234 + * console.log(buf.readUInt16BE(1).toString(16)); + * // Prints: 3456 + * ``` + * @since v0.5.5 + * @param [offset=0] Number of bytes to skip before starting to read. Must satisfy `0 <= offset <= buf.length - 2`. + */ + readUInt16BE(offset?: number): number; + /** + * @alias Buffer.readUInt16BE + * @since v14.9.0, v12.19.0 + */ + readUint16BE(offset?: number): number; + /** + * Reads an unsigned, little-endian 32-bit integer from `buf` at the specified`offset`. + * + * This function is also available under the `readUint32LE` alias. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.from([0x12, 0x34, 0x56, 0x78]); + * + * console.log(buf.readUInt32LE(0).toString(16)); + * // Prints: 78563412 + * console.log(buf.readUInt32LE(1).toString(16)); + * // Throws ERR_OUT_OF_RANGE. + * ``` + * @since v0.5.5 + * @param [offset=0] Number of bytes to skip before starting to read. Must satisfy `0 <= offset <= buf.length - 4`. + */ + readUInt32LE(offset?: number): number; + /** + * @alias Buffer.readUInt32LE + * @since v14.9.0, v12.19.0 + */ + readUint32LE(offset?: number): number; + /** + * Reads an unsigned, big-endian 32-bit integer from `buf` at the specified`offset`. + * + * This function is also available under the `readUint32BE` alias. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.from([0x12, 0x34, 0x56, 0x78]); + * + * console.log(buf.readUInt32BE(0).toString(16)); + * // Prints: 12345678 + * ``` + * @since v0.5.5 + * @param [offset=0] Number of bytes to skip before starting to read. Must satisfy `0 <= offset <= buf.length - 4`. + */ + readUInt32BE(offset?: number): number; + /** + * @alias Buffer.readUInt32BE + * @since v14.9.0, v12.19.0 + */ + readUint32BE(offset?: number): number; + /** + * Reads a signed 8-bit integer from `buf` at the specified `offset`. + * + * Integers read from a `Buffer` are interpreted as two's complement signed values. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.from([-1, 5]); + * + * console.log(buf.readInt8(0)); + * // Prints: -1 + * console.log(buf.readInt8(1)); + * // Prints: 5 + * console.log(buf.readInt8(2)); + * // Throws ERR_OUT_OF_RANGE. + * ``` + * @since v0.5.0 + * @param [offset=0] Number of bytes to skip before starting to read. Must satisfy `0 <= offset <= buf.length - 1`. + */ + readInt8(offset?: number): number; + /** + * Reads a signed, little-endian 16-bit integer from `buf` at the specified`offset`. + * + * Integers read from a `Buffer` are interpreted as two's complement signed values. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.from([0, 5]); + * + * console.log(buf.readInt16LE(0)); + * // Prints: 1280 + * console.log(buf.readInt16LE(1)); + * // Throws ERR_OUT_OF_RANGE. + * ``` + * @since v0.5.5 + * @param [offset=0] Number of bytes to skip before starting to read. Must satisfy `0 <= offset <= buf.length - 2`. + */ + readInt16LE(offset?: number): number; + /** + * Reads a signed, big-endian 16-bit integer from `buf` at the specified `offset`. + * + * Integers read from a `Buffer` are interpreted as two's complement signed values. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.from([0, 5]); + * + * console.log(buf.readInt16BE(0)); + * // Prints: 5 + * ``` + * @since v0.5.5 + * @param [offset=0] Number of bytes to skip before starting to read. Must satisfy `0 <= offset <= buf.length - 2`. + */ + readInt16BE(offset?: number): number; + /** + * Reads a signed, little-endian 32-bit integer from `buf` at the specified`offset`. + * + * Integers read from a `Buffer` are interpreted as two's complement signed values. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.from([0, 0, 0, 5]); + * + * console.log(buf.readInt32LE(0)); + * // Prints: 83886080 + * console.log(buf.readInt32LE(1)); + * // Throws ERR_OUT_OF_RANGE. + * ``` + * @since v0.5.5 + * @param [offset=0] Number of bytes to skip before starting to read. Must satisfy `0 <= offset <= buf.length - 4`. + */ + readInt32LE(offset?: number): number; + /** + * Reads a signed, big-endian 32-bit integer from `buf` at the specified `offset`. + * + * Integers read from a `Buffer` are interpreted as two's complement signed values. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.from([0, 0, 0, 5]); + * + * console.log(buf.readInt32BE(0)); + * // Prints: 5 + * ``` + * @since v0.5.5 + * @param [offset=0] Number of bytes to skip before starting to read. Must satisfy `0 <= offset <= buf.length - 4`. + */ + readInt32BE(offset?: number): number; + /** + * Reads a 32-bit, little-endian float from `buf` at the specified `offset`. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.from([1, 2, 3, 4]); + * + * console.log(buf.readFloatLE(0)); + * // Prints: 1.539989614439558e-36 + * console.log(buf.readFloatLE(1)); + * // Throws ERR_OUT_OF_RANGE. + * ``` + * @since v0.11.15 + * @param [offset=0] Number of bytes to skip before starting to read. Must satisfy `0 <= offset <= buf.length - 4`. + */ + readFloatLE(offset?: number): number; + /** + * Reads a 32-bit, big-endian float from `buf` at the specified `offset`. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.from([1, 2, 3, 4]); + * + * console.log(buf.readFloatBE(0)); + * // Prints: 2.387939260590663e-38 + * ``` + * @since v0.11.15 + * @param [offset=0] Number of bytes to skip before starting to read. Must satisfy `0 <= offset <= buf.length - 4`. + */ + readFloatBE(offset?: number): number; + /** + * Reads a 64-bit, little-endian double from `buf` at the specified `offset`. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.from([1, 2, 3, 4, 5, 6, 7, 8]); + * + * console.log(buf.readDoubleLE(0)); + * // Prints: 5.447603722011605e-270 + * console.log(buf.readDoubleLE(1)); + * // Throws ERR_OUT_OF_RANGE. + * ``` + * @since v0.11.15 + * @param [offset=0] Number of bytes to skip before starting to read. Must satisfy `0 <= offset <= buf.length - 8`. + */ + readDoubleLE(offset?: number): number; + /** + * Reads a 64-bit, big-endian double from `buf` at the specified `offset`. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.from([1, 2, 3, 4, 5, 6, 7, 8]); + * + * console.log(buf.readDoubleBE(0)); + * // Prints: 8.20788039913184e-304 + * ``` + * @since v0.11.15 + * @param [offset=0] Number of bytes to skip before starting to read. Must satisfy `0 <= offset <= buf.length - 8`. + */ + readDoubleBE(offset?: number): number; + reverse(): this; + /** + * Interprets `buf` as an array of unsigned 16-bit integers and swaps the + * byte order _in-place_. Throws `ERR_INVALID_BUFFER_SIZE` if `buf.length` is not a multiple of 2. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf1 = Buffer.from([0x1, 0x2, 0x3, 0x4, 0x5, 0x6, 0x7, 0x8]); + * + * console.log(buf1); + * // Prints: + * + * buf1.swap16(); + * + * console.log(buf1); + * // Prints: + * + * const buf2 = Buffer.from([0x1, 0x2, 0x3]); + * + * buf2.swap16(); + * // Throws ERR_INVALID_BUFFER_SIZE. + * ``` + * + * One convenient use of `buf.swap16()` is to perform a fast in-place conversion + * between UTF-16 little-endian and UTF-16 big-endian: + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.from('This is little-endian UTF-16', 'utf16le'); + * buf.swap16(); // Convert to big-endian UTF-16 text. + * ``` + * @since v5.10.0 + * @return A reference to `buf`. + */ + swap16(): Buffer; + /** + * Interprets `buf` as an array of unsigned 32-bit integers and swaps the + * byte order _in-place_. Throws `ERR_INVALID_BUFFER_SIZE` if `buf.length` is not a multiple of 4. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf1 = Buffer.from([0x1, 0x2, 0x3, 0x4, 0x5, 0x6, 0x7, 0x8]); + * + * console.log(buf1); + * // Prints: + * + * buf1.swap32(); + * + * console.log(buf1); + * // Prints: + * + * const buf2 = Buffer.from([0x1, 0x2, 0x3]); + * + * buf2.swap32(); + * // Throws ERR_INVALID_BUFFER_SIZE. + * ``` + * @since v5.10.0 + * @return A reference to `buf`. + */ + swap32(): Buffer; + /** + * Interprets `buf` as an array of 64-bit numbers and swaps byte order _in-place_. + * Throws `ERR_INVALID_BUFFER_SIZE` if `buf.length` is not a multiple of 8. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf1 = Buffer.from([0x1, 0x2, 0x3, 0x4, 0x5, 0x6, 0x7, 0x8]); + * + * console.log(buf1); + * // Prints: + * + * buf1.swap64(); + * + * console.log(buf1); + * // Prints: + * + * const buf2 = Buffer.from([0x1, 0x2, 0x3]); + * + * buf2.swap64(); + * // Throws ERR_INVALID_BUFFER_SIZE. + * ``` + * @since v6.3.0 + * @return A reference to `buf`. + */ + swap64(): Buffer; + /** + * Writes `value` to `buf` at the specified `offset`. `value` must be a + * valid unsigned 8-bit integer. Behavior is undefined when `value` is anything + * other than an unsigned 8-bit integer. + * + * This function is also available under the `writeUint8` alias. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.allocUnsafe(4); + * + * buf.writeUInt8(0x3, 0); + * buf.writeUInt8(0x4, 1); + * buf.writeUInt8(0x23, 2); + * buf.writeUInt8(0x42, 3); + * + * console.log(buf); + * // Prints: + * ``` + * @since v0.5.0 + * @param value Number to be written to `buf`. + * @param [offset=0] Number of bytes to skip before starting to write. Must satisfy `0 <= offset <= buf.length - 1`. + * @return `offset` plus the number of bytes written. + */ + writeUInt8(value: number, offset?: number): number; + /** + * @alias Buffer.writeUInt8 + * @since v14.9.0, v12.19.0 + */ + writeUint8(value: number, offset?: number): number; + /** + * Writes `value` to `buf` at the specified `offset` as little-endian. The `value`must be a valid unsigned 16-bit integer. Behavior is undefined when `value` is + * anything other than an unsigned 16-bit integer. + * + * This function is also available under the `writeUint16LE` alias. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.allocUnsafe(4); + * + * buf.writeUInt16LE(0xdead, 0); + * buf.writeUInt16LE(0xbeef, 2); + * + * console.log(buf); + * // Prints: + * ``` + * @since v0.5.5 + * @param value Number to be written to `buf`. + * @param [offset=0] Number of bytes to skip before starting to write. Must satisfy `0 <= offset <= buf.length - 2`. + * @return `offset` plus the number of bytes written. + */ + writeUInt16LE(value: number, offset?: number): number; + /** + * @alias Buffer.writeUInt16LE + * @since v14.9.0, v12.19.0 + */ + writeUint16LE(value: number, offset?: number): number; + /** + * Writes `value` to `buf` at the specified `offset` as big-endian. The `value`must be a valid unsigned 16-bit integer. Behavior is undefined when `value`is anything other than an + * unsigned 16-bit integer. + * + * This function is also available under the `writeUint16BE` alias. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.allocUnsafe(4); + * + * buf.writeUInt16BE(0xdead, 0); + * buf.writeUInt16BE(0xbeef, 2); + * + * console.log(buf); + * // Prints: + * ``` + * @since v0.5.5 + * @param value Number to be written to `buf`. + * @param [offset=0] Number of bytes to skip before starting to write. Must satisfy `0 <= offset <= buf.length - 2`. + * @return `offset` plus the number of bytes written. + */ + writeUInt16BE(value: number, offset?: number): number; + /** + * @alias Buffer.writeUInt16BE + * @since v14.9.0, v12.19.0 + */ + writeUint16BE(value: number, offset?: number): number; + /** + * Writes `value` to `buf` at the specified `offset` as little-endian. The `value`must be a valid unsigned 32-bit integer. Behavior is undefined when `value` is + * anything other than an unsigned 32-bit integer. + * + * This function is also available under the `writeUint32LE` alias. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.allocUnsafe(4); + * + * buf.writeUInt32LE(0xfeedface, 0); + * + * console.log(buf); + * // Prints: + * ``` + * @since v0.5.5 + * @param value Number to be written to `buf`. + * @param [offset=0] Number of bytes to skip before starting to write. Must satisfy `0 <= offset <= buf.length - 4`. + * @return `offset` plus the number of bytes written. + */ + writeUInt32LE(value: number, offset?: number): number; + /** + * @alias Buffer.writeUInt32LE + * @since v14.9.0, v12.19.0 + */ + writeUint32LE(value: number, offset?: number): number; + /** + * Writes `value` to `buf` at the specified `offset` as big-endian. The `value`must be a valid unsigned 32-bit integer. Behavior is undefined when `value`is anything other than an + * unsigned 32-bit integer. + * + * This function is also available under the `writeUint32BE` alias. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.allocUnsafe(4); + * + * buf.writeUInt32BE(0xfeedface, 0); + * + * console.log(buf); + * // Prints: + * ``` + * @since v0.5.5 + * @param value Number to be written to `buf`. + * @param [offset=0] Number of bytes to skip before starting to write. Must satisfy `0 <= offset <= buf.length - 4`. + * @return `offset` plus the number of bytes written. + */ + writeUInt32BE(value: number, offset?: number): number; + /** + * @alias Buffer.writeUInt32BE + * @since v14.9.0, v12.19.0 + */ + writeUint32BE(value: number, offset?: number): number; + /** + * Writes `value` to `buf` at the specified `offset`. `value` must be a valid + * signed 8-bit integer. Behavior is undefined when `value` is anything other than + * a signed 8-bit integer. + * + * `value` is interpreted and written as a two's complement signed integer. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.allocUnsafe(2); + * + * buf.writeInt8(2, 0); + * buf.writeInt8(-2, 1); + * + * console.log(buf); + * // Prints: + * ``` + * @since v0.5.0 + * @param value Number to be written to `buf`. + * @param [offset=0] Number of bytes to skip before starting to write. Must satisfy `0 <= offset <= buf.length - 1`. + * @return `offset` plus the number of bytes written. + */ + writeInt8(value: number, offset?: number): number; + /** + * Writes `value` to `buf` at the specified `offset` as little-endian. The `value`must be a valid signed 16-bit integer. Behavior is undefined when `value` is + * anything other than a signed 16-bit integer. + * + * The `value` is interpreted and written as a two's complement signed integer. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.allocUnsafe(2); + * + * buf.writeInt16LE(0x0304, 0); + * + * console.log(buf); + * // Prints: + * ``` + * @since v0.5.5 + * @param value Number to be written to `buf`. + * @param [offset=0] Number of bytes to skip before starting to write. Must satisfy `0 <= offset <= buf.length - 2`. + * @return `offset` plus the number of bytes written. + */ + writeInt16LE(value: number, offset?: number): number; + /** + * Writes `value` to `buf` at the specified `offset` as big-endian. The `value`must be a valid signed 16-bit integer. Behavior is undefined when `value` is + * anything other than a signed 16-bit integer. + * + * The `value` is interpreted and written as a two's complement signed integer. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.allocUnsafe(2); + * + * buf.writeInt16BE(0x0102, 0); + * + * console.log(buf); + * // Prints: + * ``` + * @since v0.5.5 + * @param value Number to be written to `buf`. + * @param [offset=0] Number of bytes to skip before starting to write. Must satisfy `0 <= offset <= buf.length - 2`. + * @return `offset` plus the number of bytes written. + */ + writeInt16BE(value: number, offset?: number): number; + /** + * Writes `value` to `buf` at the specified `offset` as little-endian. The `value`must be a valid signed 32-bit integer. Behavior is undefined when `value` is + * anything other than a signed 32-bit integer. + * + * The `value` is interpreted and written as a two's complement signed integer. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.allocUnsafe(4); + * + * buf.writeInt32LE(0x05060708, 0); + * + * console.log(buf); + * // Prints: + * ``` + * @since v0.5.5 + * @param value Number to be written to `buf`. + * @param [offset=0] Number of bytes to skip before starting to write. Must satisfy `0 <= offset <= buf.length - 4`. + * @return `offset` plus the number of bytes written. + */ + writeInt32LE(value: number, offset?: number): number; + /** + * Writes `value` to `buf` at the specified `offset` as big-endian. The `value`must be a valid signed 32-bit integer. Behavior is undefined when `value` is + * anything other than a signed 32-bit integer. + * + * The `value` is interpreted and written as a two's complement signed integer. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.allocUnsafe(4); + * + * buf.writeInt32BE(0x01020304, 0); + * + * console.log(buf); + * // Prints: + * ``` + * @since v0.5.5 + * @param value Number to be written to `buf`. + * @param [offset=0] Number of bytes to skip before starting to write. Must satisfy `0 <= offset <= buf.length - 4`. + * @return `offset` plus the number of bytes written. + */ + writeInt32BE(value: number, offset?: number): number; + /** + * Writes `value` to `buf` at the specified `offset` as little-endian. Behavior is + * undefined when `value` is anything other than a JavaScript number. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.allocUnsafe(4); + * + * buf.writeFloatLE(0xcafebabe, 0); + * + * console.log(buf); + * // Prints: + * ``` + * @since v0.11.15 + * @param value Number to be written to `buf`. + * @param [offset=0] Number of bytes to skip before starting to write. Must satisfy `0 <= offset <= buf.length - 4`. + * @return `offset` plus the number of bytes written. + */ + writeFloatLE(value: number, offset?: number): number; + /** + * Writes `value` to `buf` at the specified `offset` as big-endian. Behavior is + * undefined when `value` is anything other than a JavaScript number. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.allocUnsafe(4); + * + * buf.writeFloatBE(0xcafebabe, 0); + * + * console.log(buf); + * // Prints: + * ``` + * @since v0.11.15 + * @param value Number to be written to `buf`. + * @param [offset=0] Number of bytes to skip before starting to write. Must satisfy `0 <= offset <= buf.length - 4`. + * @return `offset` plus the number of bytes written. + */ + writeFloatBE(value: number, offset?: number): number; + /** + * Writes `value` to `buf` at the specified `offset` as little-endian. The `value`must be a JavaScript number. Behavior is undefined when `value` is anything + * other than a JavaScript number. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.allocUnsafe(8); + * + * buf.writeDoubleLE(123.456, 0); + * + * console.log(buf); + * // Prints: + * ``` + * @since v0.11.15 + * @param value Number to be written to `buf`. + * @param [offset=0] Number of bytes to skip before starting to write. Must satisfy `0 <= offset <= buf.length - 8`. + * @return `offset` plus the number of bytes written. + */ + writeDoubleLE(value: number, offset?: number): number; + /** + * Writes `value` to `buf` at the specified `offset` as big-endian. The `value`must be a JavaScript number. Behavior is undefined when `value` is anything + * other than a JavaScript number. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.allocUnsafe(8); + * + * buf.writeDoubleBE(123.456, 0); + * + * console.log(buf); + * // Prints: + * ``` + * @since v0.11.15 + * @param value Number to be written to `buf`. + * @param [offset=0] Number of bytes to skip before starting to write. Must satisfy `0 <= offset <= buf.length - 8`. + * @return `offset` plus the number of bytes written. + */ + writeDoubleBE(value: number, offset?: number): number; + /** + * Fills `buf` with the specified `value`. If the `offset` and `end` are not given, + * the entire `buf` will be filled: + * + * ```js + * import { Buffer } from 'buffer'; + * + * // Fill a `Buffer` with the ASCII character 'h'. + * + * const b = Buffer.allocUnsafe(50).fill('h'); + * + * console.log(b.toString()); + * // Prints: hhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh + * ``` + * + * `value` is coerced to a `uint32` value if it is not a string, `Buffer`, or + * integer. If the resulting integer is greater than `255` (decimal), `buf` will be + * filled with `value & 255`. + * + * If the final write of a `fill()` operation falls on a multi-byte character, + * then only the bytes of that character that fit into `buf` are written: + * + * ```js + * import { Buffer } from 'buffer'; + * + * // Fill a `Buffer` with character that takes up two bytes in UTF-8. + * + * console.log(Buffer.allocUnsafe(5).fill('\u0222')); + * // Prints: + * ``` + * + * If `value` contains invalid characters, it is truncated; if no valid + * fill data remains, an exception is thrown: + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.allocUnsafe(5); + * + * console.log(buf.fill('a')); + * // Prints: + * console.log(buf.fill('aazz', 'hex')); + * // Prints: + * console.log(buf.fill('zz', 'hex')); + * // Throws an exception. + * ``` + * @since v0.5.0 + * @param value The value with which to fill `buf`. + * @param [offset=0] Number of bytes to skip before starting to fill `buf`. + * @param [end=buf.length] Where to stop filling `buf` (not inclusive). + * @param [encoding='utf8'] The encoding for `value` if `value` is a string. + * @return A reference to `buf`. + */ + fill(value: string | Uint8Array | number, offset?: number, end?: number, encoding?: BufferEncoding): this; + /** + * If `value` is: + * + * * a string, `value` is interpreted according to the character encoding in`encoding`. + * * a `Buffer` or [`Uint8Array`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array), `value` will be used in its entirety. + * To compare a partial `Buffer`, use `buf.subarray`. + * * a number, `value` will be interpreted as an unsigned 8-bit integer + * value between `0` and `255`. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.from('this is a buffer'); + * + * console.log(buf.indexOf('this')); + * // Prints: 0 + * console.log(buf.indexOf('is')); + * // Prints: 2 + * console.log(buf.indexOf(Buffer.from('a buffer'))); + * // Prints: 8 + * console.log(buf.indexOf(97)); + * // Prints: 8 (97 is the decimal ASCII value for 'a') + * console.log(buf.indexOf(Buffer.from('a buffer example'))); + * // Prints: -1 + * console.log(buf.indexOf(Buffer.from('a buffer example').slice(0, 8))); + * // Prints: 8 + * + * const utf16Buffer = Buffer.from('\u039a\u0391\u03a3\u03a3\u0395', 'utf16le'); + * + * console.log(utf16Buffer.indexOf('\u03a3', 0, 'utf16le')); + * // Prints: 4 + * console.log(utf16Buffer.indexOf('\u03a3', -4, 'utf16le')); + * // Prints: 6 + * ``` + * + * If `value` is not a string, number, or `Buffer`, this method will throw a`TypeError`. If `value` is a number, it will be coerced to a valid byte value, + * an integer between 0 and 255. + * + * If `byteOffset` is not a number, it will be coerced to a number. If the result + * of coercion is `NaN` or `0`, then the entire buffer will be searched. This + * behavior matches [`String.prototype.indexOf()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/indexOf). + * + * ```js + * import { Buffer } from 'buffer'; + * + * const b = Buffer.from('abcdef'); + * + * // Passing a value that's a number, but not a valid byte. + * // Prints: 2, equivalent to searching for 99 or 'c'. + * console.log(b.indexOf(99.9)); + * console.log(b.indexOf(256 + 99)); + * + * // Passing a byteOffset that coerces to NaN or 0. + * // Prints: 1, searching the whole buffer. + * console.log(b.indexOf('b', undefined)); + * console.log(b.indexOf('b', {})); + * console.log(b.indexOf('b', null)); + * console.log(b.indexOf('b', [])); + * ``` + * + * If `value` is an empty string or empty `Buffer` and `byteOffset` is less + * than `buf.length`, `byteOffset` will be returned. If `value` is empty and`byteOffset` is at least `buf.length`, `buf.length` will be returned. + * @since v1.5.0 + * @param value What to search for. + * @param [byteOffset=0] Where to begin searching in `buf`. If negative, then offset is calculated from the end of `buf`. + * @param [encoding='utf8'] If `value` is a string, this is the encoding used to determine the binary representation of the string that will be searched for in `buf`. + * @return The index of the first occurrence of `value` in `buf`, or `-1` if `buf` does not contain `value`. + */ + indexOf(value: string | number | Uint8Array, byteOffset?: number, encoding?: BufferEncoding): number; + /** + * Identical to `buf.indexOf()`, except the last occurrence of `value` is found + * rather than the first occurrence. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.from('this buffer is a buffer'); + * + * console.log(buf.lastIndexOf('this')); + * // Prints: 0 + * console.log(buf.lastIndexOf('buffer')); + * // Prints: 17 + * console.log(buf.lastIndexOf(Buffer.from('buffer'))); + * // Prints: 17 + * console.log(buf.lastIndexOf(97)); + * // Prints: 15 (97 is the decimal ASCII value for 'a') + * console.log(buf.lastIndexOf(Buffer.from('yolo'))); + * // Prints: -1 + * console.log(buf.lastIndexOf('buffer', 5)); + * // Prints: 5 + * console.log(buf.lastIndexOf('buffer', 4)); + * // Prints: -1 + * + * const utf16Buffer = Buffer.from('\u039a\u0391\u03a3\u03a3\u0395', 'utf16le'); + * + * console.log(utf16Buffer.lastIndexOf('\u03a3', undefined, 'utf16le')); + * // Prints: 6 + * console.log(utf16Buffer.lastIndexOf('\u03a3', -5, 'utf16le')); + * // Prints: 4 + * ``` + * + * If `value` is not a string, number, or `Buffer`, this method will throw a`TypeError`. If `value` is a number, it will be coerced to a valid byte value, + * an integer between 0 and 255. + * + * If `byteOffset` is not a number, it will be coerced to a number. Any arguments + * that coerce to `NaN`, like `{}` or `undefined`, will search the whole buffer. + * This behavior matches [`String.prototype.lastIndexOf()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/lastIndexOf). + * + * ```js + * import { Buffer } from 'buffer'; + * + * const b = Buffer.from('abcdef'); + * + * // Passing a value that's a number, but not a valid byte. + * // Prints: 2, equivalent to searching for 99 or 'c'. + * console.log(b.lastIndexOf(99.9)); + * console.log(b.lastIndexOf(256 + 99)); + * + * // Passing a byteOffset that coerces to NaN. + * // Prints: 1, searching the whole buffer. + * console.log(b.lastIndexOf('b', undefined)); + * console.log(b.lastIndexOf('b', {})); + * + * // Passing a byteOffset that coerces to 0. + * // Prints: -1, equivalent to passing 0. + * console.log(b.lastIndexOf('b', null)); + * console.log(b.lastIndexOf('b', [])); + * ``` + * + * If `value` is an empty string or empty `Buffer`, `byteOffset` will be returned. + * @since v6.0.0 + * @param value What to search for. + * @param [byteOffset=buf.length - 1] Where to begin searching in `buf`. If negative, then offset is calculated from the end of `buf`. + * @param [encoding='utf8'] If `value` is a string, this is the encoding used to determine the binary representation of the string that will be searched for in `buf`. + * @return The index of the last occurrence of `value` in `buf`, or `-1` if `buf` does not contain `value`. + */ + lastIndexOf(value: string | number | Uint8Array, byteOffset?: number, encoding?: BufferEncoding): number; + /** + * Creates and returns an [iterator](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols) of `[index, byte]` pairs from the contents + * of `buf`. + * + * ```js + * import { Buffer } from 'buffer'; + * + * // Log the entire contents of a `Buffer`. + * + * const buf = Buffer.from('buffer'); + * + * for (const pair of buf.entries()) { + * console.log(pair); + * } + * // Prints: + * // [0, 98] + * // [1, 117] + * // [2, 102] + * // [3, 102] + * // [4, 101] + * // [5, 114] + * ``` + * @since v1.1.0 + */ + entries(): IterableIterator<[number, number]>; + /** + * Equivalent to `buf.indexOf() !== -1`. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.from('this is a buffer'); + * + * console.log(buf.includes('this')); + * // Prints: true + * console.log(buf.includes('is')); + * // Prints: true + * console.log(buf.includes(Buffer.from('a buffer'))); + * // Prints: true + * console.log(buf.includes(97)); + * // Prints: true (97 is the decimal ASCII value for 'a') + * console.log(buf.includes(Buffer.from('a buffer example'))); + * // Prints: false + * console.log(buf.includes(Buffer.from('a buffer example').slice(0, 8))); + * // Prints: true + * console.log(buf.includes('this', 4)); + * // Prints: false + * ``` + * @since v5.3.0 + * @param value What to search for. + * @param [byteOffset=0] Where to begin searching in `buf`. If negative, then offset is calculated from the end of `buf`. + * @param [encoding='utf8'] If `value` is a string, this is its encoding. + * @return `true` if `value` was found in `buf`, `false` otherwise. + */ + includes(value: string | number | Buffer, byteOffset?: number, encoding?: BufferEncoding): boolean; + /** + * Creates and returns an [iterator](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols) of `buf` keys (indices). + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.from('buffer'); + * + * for (const key of buf.keys()) { + * console.log(key); + * } + * // Prints: + * // 0 + * // 1 + * // 2 + * // 3 + * // 4 + * // 5 + * ``` + * @since v1.1.0 + */ + keys(): IterableIterator; + /** + * Creates and returns an [iterator](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols) for `buf` values (bytes). This function is + * called automatically when a `Buffer` is used in a `for..of` statement. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.from('buffer'); + * + * for (const value of buf.values()) { + * console.log(value); + * } + * // Prints: + * // 98 + * // 117 + * // 102 + * // 102 + * // 101 + * // 114 + * + * for (const value of buf) { + * console.log(value); + * } + * // Prints: + * // 98 + * // 117 + * // 102 + * // 102 + * // 101 + * // 114 + * ``` + * @since v1.1.0 + */ + values(): IterableIterator; + } + var Buffer: BufferConstructor; + /** + * Decodes a string of Base64-encoded data into bytes, and encodes those bytes + * into a string using Latin-1 (ISO-8859-1). + * + * The `data` may be any JavaScript-value that can be coerced into a string. + * + * **This function is only provided for compatibility with legacy web platform APIs** + * **and should never be used in new code, because they use strings to represent** + * **binary data and predate the introduction of typed arrays in JavaScript.** + * **For code running using Node.js APIs, converting between base64-encoded strings** + * **and binary data should be performed using `Buffer.from(str, 'base64')` and`buf.toString('base64')`.** + * @since v15.13.0, v14.17.0 + * @deprecated Use `Buffer.from(data, 'base64')` instead. + * @param data The Base64-encoded input string. + */ + function atob(data: string): string; + /** + * Decodes a string into bytes using Latin-1 (ISO-8859), and encodes those bytes + * into a string using Base64. + * + * The `data` may be any JavaScript-value that can be coerced into a string. + * + * **This function is only provided for compatibility with legacy web platform APIs** + * **and should never be used in new code, because they use strings to represent** + * **binary data and predate the introduction of typed arrays in JavaScript.** + * **For code running using Node.js APIs, converting between base64-encoded strings** + * **and binary data should be performed using `Buffer.from(str, 'base64')` and`buf.toString('base64')`.** + * @since v15.13.0, v14.17.0 + * @deprecated Use `buf.toString('base64')` instead. + * @param data An ASCII (Latin1) string. + */ + function btoa(data: string): string; + + /** + * `Blob` class is a global reference for `require('node:buffer').Blob` + * https://nodejs.org/api/buffer.html#class-blob + * @since v18.0.0 + */ + var Blob: typeof globalThis extends { + onmessage: any; + Blob: infer T; + } + ? T + : typeof _Blob; + } +} +declare module 'node:buffer' { + export * from 'buffer'; +} diff --git a/node_modules/@types/node/child_process.d.ts b/node_modules/@types/node/child_process.d.ts new file mode 100644 index 000000000..79c7290e0 --- /dev/null +++ b/node_modules/@types/node/child_process.d.ts @@ -0,0 +1,1369 @@ +/** + * The `child_process` module provides the ability to spawn subprocesses in + * a manner that is similar, but not identical, to [`popen(3)`](http://man7.org/linux/man-pages/man3/popen.3.html). This capability + * is primarily provided by the {@link spawn} function: + * + * ```js + * const { spawn } = require('child_process'); + * const ls = spawn('ls', ['-lh', '/usr']); + * + * ls.stdout.on('data', (data) => { + * console.log(`stdout: ${data}`); + * }); + * + * ls.stderr.on('data', (data) => { + * console.error(`stderr: ${data}`); + * }); + * + * ls.on('close', (code) => { + * console.log(`child process exited with code ${code}`); + * }); + * ``` + * + * By default, pipes for `stdin`, `stdout`, and `stderr` are established between + * the parent Node.js process and the spawned subprocess. These pipes have + * limited (and platform-specific) capacity. If the subprocess writes to + * stdout in excess of that limit without the output being captured, the + * subprocess blocks waiting for the pipe buffer to accept more data. This is + * identical to the behavior of pipes in the shell. Use the `{ stdio: 'ignore' }`option if the output will not be consumed. + * + * The command lookup is performed using the `options.env.PATH` environment + * variable if `env` is in the `options` object. Otherwise, `process.env.PATH` is + * used. If `options.env` is set without `PATH`, lookup on Unix is performed + * on a default search path search of `/usr/bin:/bin` (see your operating system's + * manual for execvpe/execvp), on Windows the current processes environment + * variable `PATH` is used. + * + * On Windows, environment variables are case-insensitive. Node.js + * lexicographically sorts the `env` keys and uses the first one that + * case-insensitively matches. Only first (in lexicographic order) entry will be + * passed to the subprocess. This might lead to issues on Windows when passing + * objects to the `env` option that have multiple variants of the same key, such as`PATH` and `Path`. + * + * The {@link spawn} method spawns the child process asynchronously, + * without blocking the Node.js event loop. The {@link spawnSync} function provides equivalent functionality in a synchronous manner that blocks + * the event loop until the spawned process either exits or is terminated. + * + * For convenience, the `child_process` module provides a handful of synchronous + * and asynchronous alternatives to {@link spawn} and {@link spawnSync}. Each of these alternatives are implemented on + * top of {@link spawn} or {@link spawnSync}. + * + * * {@link exec}: spawns a shell and runs a command within that + * shell, passing the `stdout` and `stderr` to a callback function when + * complete. + * * {@link execFile}: similar to {@link exec} except + * that it spawns the command directly without first spawning a shell by + * default. + * * {@link fork}: spawns a new Node.js process and invokes a + * specified module with an IPC communication channel established that allows + * sending messages between parent and child. + * * {@link execSync}: a synchronous version of {@link exec} that will block the Node.js event loop. + * * {@link execFileSync}: a synchronous version of {@link execFile} that will block the Node.js event loop. + * + * For certain use cases, such as automating shell scripts, the `synchronous counterparts` may be more convenient. In many cases, however, + * the synchronous methods can have significant impact on performance due to + * stalling the event loop while spawned processes complete. + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/child_process.js) + */ +declare module 'child_process' { + import { ObjectEncodingOptions } from 'node:fs'; + import { EventEmitter, Abortable } from 'node:events'; + import * as net from 'node:net'; + import { Writable, Readable, Stream, Pipe } from 'node:stream'; + import { URL } from 'node:url'; + type Serializable = string | object | number | boolean | bigint; + type SendHandle = net.Socket | net.Server; + /** + * Instances of the `ChildProcess` represent spawned child processes. + * + * Instances of `ChildProcess` are not intended to be created directly. Rather, + * use the {@link spawn}, {@link exec},{@link execFile}, or {@link fork} methods to create + * instances of `ChildProcess`. + * @since v2.2.0 + */ + class ChildProcess extends EventEmitter { + /** + * A `Writable Stream` that represents the child process's `stdin`. + * + * If a child process waits to read all of its input, the child will not continue + * until this stream has been closed via `end()`. + * + * If the child was spawned with `stdio[0]` set to anything other than `'pipe'`, + * then this will be `null`. + * + * `subprocess.stdin` is an alias for `subprocess.stdio[0]`. Both properties will + * refer to the same value. + * + * The `subprocess.stdin` property can be `undefined` if the child process could + * not be successfully spawned. + * @since v0.1.90 + */ + stdin: Writable | null; + /** + * A `Readable Stream` that represents the child process's `stdout`. + * + * If the child was spawned with `stdio[1]` set to anything other than `'pipe'`, + * then this will be `null`. + * + * `subprocess.stdout` is an alias for `subprocess.stdio[1]`. Both properties will + * refer to the same value. + * + * ```js + * const { spawn } = require('child_process'); + * + * const subprocess = spawn('ls'); + * + * subprocess.stdout.on('data', (data) => { + * console.log(`Received chunk ${data}`); + * }); + * ``` + * + * The `subprocess.stdout` property can be `null` if the child process could + * not be successfully spawned. + * @since v0.1.90 + */ + stdout: Readable | null; + /** + * A `Readable Stream` that represents the child process's `stderr`. + * + * If the child was spawned with `stdio[2]` set to anything other than `'pipe'`, + * then this will be `null`. + * + * `subprocess.stderr` is an alias for `subprocess.stdio[2]`. Both properties will + * refer to the same value. + * + * The `subprocess.stderr` property can be `null` if the child process could + * not be successfully spawned. + * @since v0.1.90 + */ + stderr: Readable | null; + /** + * The `subprocess.channel` property is a reference to the child's IPC channel. If + * no IPC channel currently exists, this property is `undefined`. + * @since v7.1.0 + */ + readonly channel?: Pipe | null | undefined; + /** + * A sparse array of pipes to the child process, corresponding with positions in + * the `stdio` option passed to {@link spawn} that have been set + * to the value `'pipe'`. `subprocess.stdio[0]`, `subprocess.stdio[1]`, and`subprocess.stdio[2]` are also available as `subprocess.stdin`,`subprocess.stdout`, and `subprocess.stderr`, + * respectively. + * + * In the following example, only the child's fd `1` (stdout) is configured as a + * pipe, so only the parent's `subprocess.stdio[1]` is a stream, all other values + * in the array are `null`. + * + * ```js + * const assert = require('assert'); + * const fs = require('fs'); + * const child_process = require('child_process'); + * + * const subprocess = child_process.spawn('ls', { + * stdio: [ + * 0, // Use parent's stdin for child. + * 'pipe', // Pipe child's stdout to parent. + * fs.openSync('err.out', 'w'), // Direct child's stderr to a file. + * ] + * }); + * + * assert.strictEqual(subprocess.stdio[0], null); + * assert.strictEqual(subprocess.stdio[0], subprocess.stdin); + * + * assert(subprocess.stdout); + * assert.strictEqual(subprocess.stdio[1], subprocess.stdout); + * + * assert.strictEqual(subprocess.stdio[2], null); + * assert.strictEqual(subprocess.stdio[2], subprocess.stderr); + * ``` + * + * The `subprocess.stdio` property can be `undefined` if the child process could + * not be successfully spawned. + * @since v0.7.10 + */ + readonly stdio: [ + Writable | null, + // stdin + Readable | null, + // stdout + Readable | null, + // stderr + Readable | Writable | null | undefined, + // extra + Readable | Writable | null | undefined // extra + ]; + /** + * The `subprocess.killed` property indicates whether the child process + * successfully received a signal from `subprocess.kill()`. The `killed` property + * does not indicate that the child process has been terminated. + * @since v0.5.10 + */ + readonly killed: boolean; + /** + * Returns the process identifier (PID) of the child process. If the child process + * fails to spawn due to errors, then the value is `undefined` and `error` is + * emitted. + * + * ```js + * const { spawn } = require('child_process'); + * const grep = spawn('grep', ['ssh']); + * + * console.log(`Spawned child pid: ${grep.pid}`); + * grep.stdin.end(); + * ``` + * @since v0.1.90 + */ + readonly pid?: number | undefined; + /** + * The `subprocess.connected` property indicates whether it is still possible to + * send and receive messages from a child process. When `subprocess.connected` is`false`, it is no longer possible to send or receive messages. + * @since v0.7.2 + */ + readonly connected: boolean; + /** + * The `subprocess.exitCode` property indicates the exit code of the child process. + * If the child process is still running, the field will be `null`. + */ + readonly exitCode: number | null; + /** + * The `subprocess.signalCode` property indicates the signal received by + * the child process if any, else `null`. + */ + readonly signalCode: NodeJS.Signals | null; + /** + * The `subprocess.spawnargs` property represents the full list of command-line + * arguments the child process was launched with. + */ + readonly spawnargs: string[]; + /** + * The `subprocess.spawnfile` property indicates the executable file name of + * the child process that is launched. + * + * For {@link fork}, its value will be equal to `process.execPath`. + * For {@link spawn}, its value will be the name of + * the executable file. + * For {@link exec}, its value will be the name of the shell + * in which the child process is launched. + */ + readonly spawnfile: string; + /** + * The `subprocess.kill()` method sends a signal to the child process. If no + * argument is given, the process will be sent the `'SIGTERM'` signal. See [`signal(7)`](http://man7.org/linux/man-pages/man7/signal.7.html) for a list of available signals. This function + * returns `true` if [`kill(2)`](http://man7.org/linux/man-pages/man2/kill.2.html) succeeds, and `false` otherwise. + * + * ```js + * const { spawn } = require('child_process'); + * const grep = spawn('grep', ['ssh']); + * + * grep.on('close', (code, signal) => { + * console.log( + * `child process terminated due to receipt of signal ${signal}`); + * }); + * + * // Send SIGHUP to process. + * grep.kill('SIGHUP'); + * ``` + * + * The `ChildProcess` object may emit an `'error'` event if the signal + * cannot be delivered. Sending a signal to a child process that has already exited + * is not an error but may have unforeseen consequences. Specifically, if the + * process identifier (PID) has been reassigned to another process, the signal will + * be delivered to that process instead which can have unexpected results. + * + * While the function is called `kill`, the signal delivered to the child process + * may not actually terminate the process. + * + * See [`kill(2)`](http://man7.org/linux/man-pages/man2/kill.2.html) for reference. + * + * On Windows, where POSIX signals do not exist, the `signal` argument will be + * ignored, and the process will be killed forcefully and abruptly (similar to`'SIGKILL'`). + * See `Signal Events` for more details. + * + * On Linux, child processes of child processes will not be terminated + * when attempting to kill their parent. This is likely to happen when running a + * new process in a shell or with the use of the `shell` option of `ChildProcess`: + * + * ```js + * 'use strict'; + * const { spawn } = require('child_process'); + * + * const subprocess = spawn( + * 'sh', + * [ + * '-c', + * `node -e "setInterval(() => { + * console.log(process.pid, 'is alive') + * }, 500);"`, + * ], { + * stdio: ['inherit', 'inherit', 'inherit'] + * } + * ); + * + * setTimeout(() => { + * subprocess.kill(); // Does not terminate the Node.js process in the shell. + * }, 2000); + * ``` + * @since v0.1.90 + */ + kill(signal?: NodeJS.Signals | number): boolean; + /** + * When an IPC channel has been established between the parent and child ( + * i.e. when using {@link fork}), the `subprocess.send()` method can + * be used to send messages to the child process. When the child process is a + * Node.js instance, these messages can be received via the `'message'` event. + * + * The message goes through serialization and parsing. The resulting + * message might not be the same as what is originally sent. + * + * For example, in the parent script: + * + * ```js + * const cp = require('child_process'); + * const n = cp.fork(`${__dirname}/sub.js`); + * + * n.on('message', (m) => { + * console.log('PARENT got message:', m); + * }); + * + * // Causes the child to print: CHILD got message: { hello: 'world' } + * n.send({ hello: 'world' }); + * ``` + * + * And then the child script, `'sub.js'` might look like this: + * + * ```js + * process.on('message', (m) => { + * console.log('CHILD got message:', m); + * }); + * + * // Causes the parent to print: PARENT got message: { foo: 'bar', baz: null } + * process.send({ foo: 'bar', baz: NaN }); + * ``` + * + * Child Node.js processes will have a `process.send()` method of their own + * that allows the child to send messages back to the parent. + * + * There is a special case when sending a `{cmd: 'NODE_foo'}` message. Messages + * containing a `NODE_` prefix in the `cmd` property are reserved for use within + * Node.js core and will not be emitted in the child's `'message'` event. Rather, such messages are emitted using the`'internalMessage'` event and are consumed internally by Node.js. + * Applications should avoid using such messages or listening for`'internalMessage'` events as it is subject to change without notice. + * + * The optional `sendHandle` argument that may be passed to `subprocess.send()` is + * for passing a TCP server or socket object to the child process. The child will + * receive the object as the second argument passed to the callback function + * registered on the `'message'` event. Any data that is received + * and buffered in the socket will not be sent to the child. + * + * The optional `callback` is a function that is invoked after the message is + * sent but before the child may have received it. The function is called with a + * single argument: `null` on success, or an `Error` object on failure. + * + * If no `callback` function is provided and the message cannot be sent, an`'error'` event will be emitted by the `ChildProcess` object. This can + * happen, for instance, when the child process has already exited. + * + * `subprocess.send()` will return `false` if the channel has closed or when the + * backlog of unsent messages exceeds a threshold that makes it unwise to send + * more. Otherwise, the method returns `true`. The `callback` function can be + * used to implement flow control. + * + * #### Example: sending a server object + * + * The `sendHandle` argument can be used, for instance, to pass the handle of + * a TCP server object to the child process as illustrated in the example below: + * + * ```js + * const subprocess = require('child_process').fork('subprocess.js'); + * + * // Open up the server object and send the handle. + * const server = require('net').createServer(); + * server.on('connection', (socket) => { + * socket.end('handled by parent'); + * }); + * server.listen(1337, () => { + * subprocess.send('server', server); + * }); + * ``` + * + * The child would then receive the server object as: + * + * ```js + * process.on('message', (m, server) => { + * if (m === 'server') { + * server.on('connection', (socket) => { + * socket.end('handled by child'); + * }); + * } + * }); + * ``` + * + * Once the server is now shared between the parent and child, some connections + * can be handled by the parent and some by the child. + * + * While the example above uses a server created using the `net` module, `dgram`module servers use exactly the same workflow with the exceptions of listening on + * a `'message'` event instead of `'connection'` and using `server.bind()` instead + * of `server.listen()`. This is, however, currently only supported on Unix + * platforms. + * + * #### Example: sending a socket object + * + * Similarly, the `sendHandler` argument can be used to pass the handle of a + * socket to the child process. The example below spawns two children that each + * handle connections with "normal" or "special" priority: + * + * ```js + * const { fork } = require('child_process'); + * const normal = fork('subprocess.js', ['normal']); + * const special = fork('subprocess.js', ['special']); + * + * // Open up the server and send sockets to child. Use pauseOnConnect to prevent + * // the sockets from being read before they are sent to the child process. + * const server = require('net').createServer({ pauseOnConnect: true }); + * server.on('connection', (socket) => { + * + * // If this is special priority... + * if (socket.remoteAddress === '74.125.127.100') { + * special.send('socket', socket); + * return; + * } + * // This is normal priority. + * normal.send('socket', socket); + * }); + * server.listen(1337); + * ``` + * + * The `subprocess.js` would receive the socket handle as the second argument + * passed to the event callback function: + * + * ```js + * process.on('message', (m, socket) => { + * if (m === 'socket') { + * if (socket) { + * // Check that the client socket exists. + * // It is possible for the socket to be closed between the time it is + * // sent and the time it is received in the child process. + * socket.end(`Request handled with ${process.argv[2]} priority`); + * } + * } + * }); + * ``` + * + * Do not use `.maxConnections` on a socket that has been passed to a subprocess. + * The parent cannot track when the socket is destroyed. + * + * Any `'message'` handlers in the subprocess should verify that `socket` exists, + * as the connection may have been closed during the time it takes to send the + * connection to the child. + * @since v0.5.9 + * @param options The `options` argument, if present, is an object used to parameterize the sending of certain types of handles. `options` supports the following properties: + */ + send(message: Serializable, callback?: (error: Error | null) => void): boolean; + send(message: Serializable, sendHandle?: SendHandle, callback?: (error: Error | null) => void): boolean; + send(message: Serializable, sendHandle?: SendHandle, options?: MessageOptions, callback?: (error: Error | null) => void): boolean; + /** + * Closes the IPC channel between parent and child, allowing the child to exit + * gracefully once there are no other connections keeping it alive. After calling + * this method the `subprocess.connected` and `process.connected` properties in + * both the parent and child (respectively) will be set to `false`, and it will be + * no longer possible to pass messages between the processes. + * + * The `'disconnect'` event will be emitted when there are no messages in the + * process of being received. This will most often be triggered immediately after + * calling `subprocess.disconnect()`. + * + * When the child process is a Node.js instance (e.g. spawned using {@link fork}), the `process.disconnect()` method can be invoked + * within the child process to close the IPC channel as well. + * @since v0.7.2 + */ + disconnect(): void; + /** + * By default, the parent will wait for the detached child to exit. To prevent the + * parent from waiting for a given `subprocess` to exit, use the`subprocess.unref()` method. Doing so will cause the parent's event loop to not + * include the child in its reference count, allowing the parent to exit + * independently of the child, unless there is an established IPC channel between + * the child and the parent. + * + * ```js + * const { spawn } = require('child_process'); + * + * const subprocess = spawn(process.argv[0], ['child_program.js'], { + * detached: true, + * stdio: 'ignore' + * }); + * + * subprocess.unref(); + * ``` + * @since v0.7.10 + */ + unref(): void; + /** + * Calling `subprocess.ref()` after making a call to `subprocess.unref()` will + * restore the removed reference count for the child process, forcing the parent + * to wait for the child to exit before exiting itself. + * + * ```js + * const { spawn } = require('child_process'); + * + * const subprocess = spawn(process.argv[0], ['child_program.js'], { + * detached: true, + * stdio: 'ignore' + * }); + * + * subprocess.unref(); + * subprocess.ref(); + * ``` + * @since v0.7.10 + */ + ref(): void; + /** + * events.EventEmitter + * 1. close + * 2. disconnect + * 3. error + * 4. exit + * 5. message + * 6. spawn + */ + addListener(event: string, listener: (...args: any[]) => void): this; + addListener(event: 'close', listener: (code: number | null, signal: NodeJS.Signals | null) => void): this; + addListener(event: 'disconnect', listener: () => void): this; + addListener(event: 'error', listener: (err: Error) => void): this; + addListener(event: 'exit', listener: (code: number | null, signal: NodeJS.Signals | null) => void): this; + addListener(event: 'message', listener: (message: Serializable, sendHandle: SendHandle) => void): this; + addListener(event: 'spawn', listener: () => void): this; + emit(event: string | symbol, ...args: any[]): boolean; + emit(event: 'close', code: number | null, signal: NodeJS.Signals | null): boolean; + emit(event: 'disconnect'): boolean; + emit(event: 'error', err: Error): boolean; + emit(event: 'exit', code: number | null, signal: NodeJS.Signals | null): boolean; + emit(event: 'message', message: Serializable, sendHandle: SendHandle): boolean; + emit(event: 'spawn', listener: () => void): boolean; + on(event: string, listener: (...args: any[]) => void): this; + on(event: 'close', listener: (code: number | null, signal: NodeJS.Signals | null) => void): this; + on(event: 'disconnect', listener: () => void): this; + on(event: 'error', listener: (err: Error) => void): this; + on(event: 'exit', listener: (code: number | null, signal: NodeJS.Signals | null) => void): this; + on(event: 'message', listener: (message: Serializable, sendHandle: SendHandle) => void): this; + on(event: 'spawn', listener: () => void): this; + once(event: string, listener: (...args: any[]) => void): this; + once(event: 'close', listener: (code: number | null, signal: NodeJS.Signals | null) => void): this; + once(event: 'disconnect', listener: () => void): this; + once(event: 'error', listener: (err: Error) => void): this; + once(event: 'exit', listener: (code: number | null, signal: NodeJS.Signals | null) => void): this; + once(event: 'message', listener: (message: Serializable, sendHandle: SendHandle) => void): this; + once(event: 'spawn', listener: () => void): this; + prependListener(event: string, listener: (...args: any[]) => void): this; + prependListener(event: 'close', listener: (code: number | null, signal: NodeJS.Signals | null) => void): this; + prependListener(event: 'disconnect', listener: () => void): this; + prependListener(event: 'error', listener: (err: Error) => void): this; + prependListener(event: 'exit', listener: (code: number | null, signal: NodeJS.Signals | null) => void): this; + prependListener(event: 'message', listener: (message: Serializable, sendHandle: SendHandle) => void): this; + prependListener(event: 'spawn', listener: () => void): this; + prependOnceListener(event: string, listener: (...args: any[]) => void): this; + prependOnceListener(event: 'close', listener: (code: number | null, signal: NodeJS.Signals | null) => void): this; + prependOnceListener(event: 'disconnect', listener: () => void): this; + prependOnceListener(event: 'error', listener: (err: Error) => void): this; + prependOnceListener(event: 'exit', listener: (code: number | null, signal: NodeJS.Signals | null) => void): this; + prependOnceListener(event: 'message', listener: (message: Serializable, sendHandle: SendHandle) => void): this; + prependOnceListener(event: 'spawn', listener: () => void): this; + } + // return this object when stdio option is undefined or not specified + interface ChildProcessWithoutNullStreams extends ChildProcess { + stdin: Writable; + stdout: Readable; + stderr: Readable; + readonly stdio: [ + Writable, + Readable, + Readable, + // stderr + Readable | Writable | null | undefined, + // extra, no modification + Readable | Writable | null | undefined // extra, no modification + ]; + } + // return this object when stdio option is a tuple of 3 + interface ChildProcessByStdio extends ChildProcess { + stdin: I; + stdout: O; + stderr: E; + readonly stdio: [ + I, + O, + E, + Readable | Writable | null | undefined, + // extra, no modification + Readable | Writable | null | undefined // extra, no modification + ]; + } + interface MessageOptions { + keepOpen?: boolean | undefined; + } + type IOType = 'overlapped' | 'pipe' | 'ignore' | 'inherit'; + type StdioOptions = IOType | Array; + type SerializationType = 'json' | 'advanced'; + interface MessagingOptions extends Abortable { + /** + * Specify the kind of serialization used for sending messages between processes. + * @default 'json' + */ + serialization?: SerializationType | undefined; + /** + * The signal value to be used when the spawned process will be killed by the abort signal. + * @default 'SIGTERM' + */ + killSignal?: NodeJS.Signals | number | undefined; + /** + * In milliseconds the maximum amount of time the process is allowed to run. + */ + timeout?: number | undefined; + } + interface ProcessEnvOptions { + uid?: number | undefined; + gid?: number | undefined; + cwd?: string | URL | undefined; + env?: NodeJS.ProcessEnv | undefined; + } + interface CommonOptions extends ProcessEnvOptions { + /** + * @default true + */ + windowsHide?: boolean | undefined; + /** + * @default 0 + */ + timeout?: number | undefined; + } + interface CommonSpawnOptions extends CommonOptions, MessagingOptions, Abortable { + argv0?: string | undefined; + stdio?: StdioOptions | undefined; + shell?: boolean | string | undefined; + windowsVerbatimArguments?: boolean | undefined; + } + interface SpawnOptions extends CommonSpawnOptions { + detached?: boolean | undefined; + } + interface SpawnOptionsWithoutStdio extends SpawnOptions { + stdio?: StdioPipeNamed | StdioPipe[] | undefined; + } + type StdioNull = 'inherit' | 'ignore' | Stream; + type StdioPipeNamed = 'pipe' | 'overlapped'; + type StdioPipe = undefined | null | StdioPipeNamed; + interface SpawnOptionsWithStdioTuple extends SpawnOptions { + stdio: [Stdin, Stdout, Stderr]; + } + /** + * The `child_process.spawn()` method spawns a new process using the given`command`, with command-line arguments in `args`. If omitted, `args` defaults + * to an empty array. + * + * **If the `shell` option is enabled, do not pass unsanitized user input to this** + * **function. Any input containing shell metacharacters may be used to trigger** + * **arbitrary command execution.** + * + * A third argument may be used to specify additional options, with these defaults: + * + * ```js + * const defaults = { + * cwd: undefined, + * env: process.env + * }; + * ``` + * + * Use `cwd` to specify the working directory from which the process is spawned. + * If not given, the default is to inherit the current working directory. If given, + * but the path does not exist, the child process emits an `ENOENT` error + * and exits immediately. `ENOENT` is also emitted when the command + * does not exist. + * + * Use `env` to specify environment variables that will be visible to the new + * process, the default is `process.env`. + * + * `undefined` values in `env` will be ignored. + * + * Example of running `ls -lh /usr`, capturing `stdout`, `stderr`, and the + * exit code: + * + * ```js + * const { spawn } = require('child_process'); + * const ls = spawn('ls', ['-lh', '/usr']); + * + * ls.stdout.on('data', (data) => { + * console.log(`stdout: ${data}`); + * }); + * + * ls.stderr.on('data', (data) => { + * console.error(`stderr: ${data}`); + * }); + * + * ls.on('close', (code) => { + * console.log(`child process exited with code ${code}`); + * }); + * ``` + * + * Example: A very elaborate way to run `ps ax | grep ssh` + * + * ```js + * const { spawn } = require('child_process'); + * const ps = spawn('ps', ['ax']); + * const grep = spawn('grep', ['ssh']); + * + * ps.stdout.on('data', (data) => { + * grep.stdin.write(data); + * }); + * + * ps.stderr.on('data', (data) => { + * console.error(`ps stderr: ${data}`); + * }); + * + * ps.on('close', (code) => { + * if (code !== 0) { + * console.log(`ps process exited with code ${code}`); + * } + * grep.stdin.end(); + * }); + * + * grep.stdout.on('data', (data) => { + * console.log(data.toString()); + * }); + * + * grep.stderr.on('data', (data) => { + * console.error(`grep stderr: ${data}`); + * }); + * + * grep.on('close', (code) => { + * if (code !== 0) { + * console.log(`grep process exited with code ${code}`); + * } + * }); + * ``` + * + * Example of checking for failed `spawn`: + * + * ```js + * const { spawn } = require('child_process'); + * const subprocess = spawn('bad_command'); + * + * subprocess.on('error', (err) => { + * console.error('Failed to start subprocess.'); + * }); + * ``` + * + * Certain platforms (macOS, Linux) will use the value of `argv[0]` for the process + * title while others (Windows, SunOS) will use `command`. + * + * Node.js currently overwrites `argv[0]` with `process.execPath` on startup, so`process.argv[0]` in a Node.js child process will not match the `argv0`parameter passed to `spawn` from the parent, + * retrieve it with the`process.argv0` property instead. + * + * If the `signal` option is enabled, calling `.abort()` on the corresponding`AbortController` is similar to calling `.kill()` on the child process except + * the error passed to the callback will be an `AbortError`: + * + * ```js + * const { spawn } = require('child_process'); + * const controller = new AbortController(); + * const { signal } = controller; + * const grep = spawn('grep', ['ssh'], { signal }); + * grep.on('error', (err) => { + * // This will be called with err being an AbortError if the controller aborts + * }); + * controller.abort(); // Stops the child process + * ``` + * @since v0.1.90 + * @param command The command to run. + * @param args List of string arguments. + */ + function spawn(command: string, options?: SpawnOptionsWithoutStdio): ChildProcessWithoutNullStreams; + function spawn(command: string, options: SpawnOptionsWithStdioTuple): ChildProcessByStdio; + function spawn(command: string, options: SpawnOptionsWithStdioTuple): ChildProcessByStdio; + function spawn(command: string, options: SpawnOptionsWithStdioTuple): ChildProcessByStdio; + function spawn(command: string, options: SpawnOptionsWithStdioTuple): ChildProcessByStdio; + function spawn(command: string, options: SpawnOptionsWithStdioTuple): ChildProcessByStdio; + function spawn(command: string, options: SpawnOptionsWithStdioTuple): ChildProcessByStdio; + function spawn(command: string, options: SpawnOptionsWithStdioTuple): ChildProcessByStdio; + function spawn(command: string, options: SpawnOptionsWithStdioTuple): ChildProcessByStdio; + function spawn(command: string, options: SpawnOptions): ChildProcess; + // overloads of spawn with 'args' + function spawn(command: string, args?: ReadonlyArray, options?: SpawnOptionsWithoutStdio): ChildProcessWithoutNullStreams; + function spawn(command: string, args: ReadonlyArray, options: SpawnOptionsWithStdioTuple): ChildProcessByStdio; + function spawn(command: string, args: ReadonlyArray, options: SpawnOptionsWithStdioTuple): ChildProcessByStdio; + function spawn(command: string, args: ReadonlyArray, options: SpawnOptionsWithStdioTuple): ChildProcessByStdio; + function spawn(command: string, args: ReadonlyArray, options: SpawnOptionsWithStdioTuple): ChildProcessByStdio; + function spawn(command: string, args: ReadonlyArray, options: SpawnOptionsWithStdioTuple): ChildProcessByStdio; + function spawn(command: string, args: ReadonlyArray, options: SpawnOptionsWithStdioTuple): ChildProcessByStdio; + function spawn(command: string, args: ReadonlyArray, options: SpawnOptionsWithStdioTuple): ChildProcessByStdio; + function spawn(command: string, args: ReadonlyArray, options: SpawnOptionsWithStdioTuple): ChildProcessByStdio; + function spawn(command: string, args: ReadonlyArray, options: SpawnOptions): ChildProcess; + interface ExecOptions extends CommonOptions { + shell?: string | undefined; + signal?: AbortSignal | undefined; + maxBuffer?: number | undefined; + killSignal?: NodeJS.Signals | number | undefined; + } + interface ExecOptionsWithStringEncoding extends ExecOptions { + encoding: BufferEncoding; + } + interface ExecOptionsWithBufferEncoding extends ExecOptions { + encoding: BufferEncoding | null; // specify `null`. + } + interface ExecException extends Error { + cmd?: string | undefined; + killed?: boolean | undefined; + code?: number | undefined; + signal?: NodeJS.Signals | undefined; + } + /** + * Spawns a shell then executes the `command` within that shell, buffering any + * generated output. The `command` string passed to the exec function is processed + * directly by the shell and special characters (vary based on [shell](https://en.wikipedia.org/wiki/List_of_command-line_interpreters)) + * need to be dealt with accordingly: + * + * ```js + * const { exec } = require('child_process'); + * + * exec('"/path/to/test file/test.sh" arg1 arg2'); + * // Double quotes are used so that the space in the path is not interpreted as + * // a delimiter of multiple arguments. + * + * exec('echo "The \\$HOME variable is $HOME"'); + * // The $HOME variable is escaped in the first instance, but not in the second. + * ``` + * + * **Never pass unsanitized user input to this function. Any input containing shell** + * **metacharacters may be used to trigger arbitrary command execution.** + * + * If a `callback` function is provided, it is called with the arguments`(error, stdout, stderr)`. On success, `error` will be `null`. On error,`error` will be an instance of `Error`. The + * `error.code` property will be + * the exit code of the process. By convention, any exit code other than `0`indicates an error. `error.signal` will be the signal that terminated the + * process. + * + * The `stdout` and `stderr` arguments passed to the callback will contain the + * stdout and stderr output of the child process. By default, Node.js will decode + * the output as UTF-8 and pass strings to the callback. The `encoding` option + * can be used to specify the character encoding used to decode the stdout and + * stderr output. If `encoding` is `'buffer'`, or an unrecognized character + * encoding, `Buffer` objects will be passed to the callback instead. + * + * ```js + * const { exec } = require('child_process'); + * exec('cat *.js missing_file | wc -l', (error, stdout, stderr) => { + * if (error) { + * console.error(`exec error: ${error}`); + * return; + * } + * console.log(`stdout: ${stdout}`); + * console.error(`stderr: ${stderr}`); + * }); + * ``` + * + * If `timeout` is greater than `0`, the parent will send the signal + * identified by the `killSignal` property (the default is `'SIGTERM'`) if the + * child runs longer than `timeout` milliseconds. + * + * Unlike the [`exec(3)`](http://man7.org/linux/man-pages/man3/exec.3.html) POSIX system call, `child_process.exec()` does not replace + * the existing process and uses a shell to execute the command. + * + * If this method is invoked as its `util.promisify()` ed version, it returns + * a `Promise` for an `Object` with `stdout` and `stderr` properties. The returned`ChildProcess` instance is attached to the `Promise` as a `child` property. In + * case of an error (including any error resulting in an exit code other than 0), a + * rejected promise is returned, with the same `error` object given in the + * callback, but with two additional properties `stdout` and `stderr`. + * + * ```js + * const util = require('util'); + * const exec = util.promisify(require('child_process').exec); + * + * async function lsExample() { + * const { stdout, stderr } = await exec('ls'); + * console.log('stdout:', stdout); + * console.error('stderr:', stderr); + * } + * lsExample(); + * ``` + * + * If the `signal` option is enabled, calling `.abort()` on the corresponding`AbortController` is similar to calling `.kill()` on the child process except + * the error passed to the callback will be an `AbortError`: + * + * ```js + * const { exec } = require('child_process'); + * const controller = new AbortController(); + * const { signal } = controller; + * const child = exec('grep ssh', { signal }, (error) => { + * console.log(error); // an AbortError + * }); + * controller.abort(); + * ``` + * @since v0.1.90 + * @param command The command to run, with space-separated arguments. + * @param callback called with the output when process terminates. + */ + function exec(command: string, callback?: (error: ExecException | null, stdout: string, stderr: string) => void): ChildProcess; + // `options` with `"buffer"` or `null` for `encoding` means stdout/stderr are definitely `Buffer`. + function exec( + command: string, + options: { + encoding: 'buffer' | null; + } & ExecOptions, + callback?: (error: ExecException | null, stdout: Buffer, stderr: Buffer) => void + ): ChildProcess; + // `options` with well known `encoding` means stdout/stderr are definitely `string`. + function exec( + command: string, + options: { + encoding: BufferEncoding; + } & ExecOptions, + callback?: (error: ExecException | null, stdout: string, stderr: string) => void + ): ChildProcess; + // `options` with an `encoding` whose type is `string` means stdout/stderr could either be `Buffer` or `string`. + // There is no guarantee the `encoding` is unknown as `string` is a superset of `BufferEncoding`. + function exec( + command: string, + options: { + encoding: BufferEncoding; + } & ExecOptions, + callback?: (error: ExecException | null, stdout: string | Buffer, stderr: string | Buffer) => void + ): ChildProcess; + // `options` without an `encoding` means stdout/stderr are definitely `string`. + function exec(command: string, options: ExecOptions, callback?: (error: ExecException | null, stdout: string, stderr: string) => void): ChildProcess; + // fallback if nothing else matches. Worst case is always `string | Buffer`. + function exec( + command: string, + options: (ObjectEncodingOptions & ExecOptions) | undefined | null, + callback?: (error: ExecException | null, stdout: string | Buffer, stderr: string | Buffer) => void + ): ChildProcess; + interface PromiseWithChild extends Promise { + child: ChildProcess; + } + namespace exec { + function __promisify__(command: string): PromiseWithChild<{ + stdout: string; + stderr: string; + }>; + function __promisify__( + command: string, + options: { + encoding: 'buffer' | null; + } & ExecOptions + ): PromiseWithChild<{ + stdout: Buffer; + stderr: Buffer; + }>; + function __promisify__( + command: string, + options: { + encoding: BufferEncoding; + } & ExecOptions + ): PromiseWithChild<{ + stdout: string; + stderr: string; + }>; + function __promisify__( + command: string, + options: ExecOptions + ): PromiseWithChild<{ + stdout: string; + stderr: string; + }>; + function __promisify__( + command: string, + options?: (ObjectEncodingOptions & ExecOptions) | null + ): PromiseWithChild<{ + stdout: string | Buffer; + stderr: string | Buffer; + }>; + } + interface ExecFileOptions extends CommonOptions, Abortable { + maxBuffer?: number | undefined; + killSignal?: NodeJS.Signals | number | undefined; + windowsVerbatimArguments?: boolean | undefined; + shell?: boolean | string | undefined; + signal?: AbortSignal | undefined; + } + interface ExecFileOptionsWithStringEncoding extends ExecFileOptions { + encoding: BufferEncoding; + } + interface ExecFileOptionsWithBufferEncoding extends ExecFileOptions { + encoding: 'buffer' | null; + } + interface ExecFileOptionsWithOtherEncoding extends ExecFileOptions { + encoding: BufferEncoding; + } + type ExecFileException = ExecException & NodeJS.ErrnoException; + /** + * The `child_process.execFile()` function is similar to {@link exec} except that it does not spawn a shell by default. Rather, the specified + * executable `file` is spawned directly as a new process making it slightly more + * efficient than {@link exec}. + * + * The same options as {@link exec} are supported. Since a shell is + * not spawned, behaviors such as I/O redirection and file globbing are not + * supported. + * + * ```js + * const { execFile } = require('child_process'); + * const child = execFile('node', ['--version'], (error, stdout, stderr) => { + * if (error) { + * throw error; + * } + * console.log(stdout); + * }); + * ``` + * + * The `stdout` and `stderr` arguments passed to the callback will contain the + * stdout and stderr output of the child process. By default, Node.js will decode + * the output as UTF-8 and pass strings to the callback. The `encoding` option + * can be used to specify the character encoding used to decode the stdout and + * stderr output. If `encoding` is `'buffer'`, or an unrecognized character + * encoding, `Buffer` objects will be passed to the callback instead. + * + * If this method is invoked as its `util.promisify()` ed version, it returns + * a `Promise` for an `Object` with `stdout` and `stderr` properties. The returned`ChildProcess` instance is attached to the `Promise` as a `child` property. In + * case of an error (including any error resulting in an exit code other than 0), a + * rejected promise is returned, with the same `error` object given in the + * callback, but with two additional properties `stdout` and `stderr`. + * + * ```js + * const util = require('util'); + * const execFile = util.promisify(require('child_process').execFile); + * async function getVersion() { + * const { stdout } = await execFile('node', ['--version']); + * console.log(stdout); + * } + * getVersion(); + * ``` + * + * **If the `shell` option is enabled, do not pass unsanitized user input to this** + * **function. Any input containing shell metacharacters may be used to trigger** + * **arbitrary command execution.** + * + * If the `signal` option is enabled, calling `.abort()` on the corresponding`AbortController` is similar to calling `.kill()` on the child process except + * the error passed to the callback will be an `AbortError`: + * + * ```js + * const { execFile } = require('child_process'); + * const controller = new AbortController(); + * const { signal } = controller; + * const child = execFile('node', ['--version'], { signal }, (error) => { + * console.log(error); // an AbortError + * }); + * controller.abort(); + * ``` + * @since v0.1.91 + * @param file The name or path of the executable file to run. + * @param args List of string arguments. + * @param callback Called with the output when process terminates. + */ + function execFile(file: string): ChildProcess; + function execFile(file: string, options: (ObjectEncodingOptions & ExecFileOptions) | undefined | null): ChildProcess; + function execFile(file: string, args?: ReadonlyArray | null): ChildProcess; + function execFile(file: string, args: ReadonlyArray | undefined | null, options: (ObjectEncodingOptions & ExecFileOptions) | undefined | null): ChildProcess; + // no `options` definitely means stdout/stderr are `string`. + function execFile(file: string, callback: (error: ExecFileException | null, stdout: string, stderr: string) => void): ChildProcess; + function execFile(file: string, args: ReadonlyArray | undefined | null, callback: (error: ExecFileException | null, stdout: string, stderr: string) => void): ChildProcess; + // `options` with `"buffer"` or `null` for `encoding` means stdout/stderr are definitely `Buffer`. + function execFile(file: string, options: ExecFileOptionsWithBufferEncoding, callback: (error: ExecFileException | null, stdout: Buffer, stderr: Buffer) => void): ChildProcess; + function execFile( + file: string, + args: ReadonlyArray | undefined | null, + options: ExecFileOptionsWithBufferEncoding, + callback: (error: ExecFileException | null, stdout: Buffer, stderr: Buffer) => void + ): ChildProcess; + // `options` with well known `encoding` means stdout/stderr are definitely `string`. + function execFile(file: string, options: ExecFileOptionsWithStringEncoding, callback: (error: ExecFileException | null, stdout: string, stderr: string) => void): ChildProcess; + function execFile( + file: string, + args: ReadonlyArray | undefined | null, + options: ExecFileOptionsWithStringEncoding, + callback: (error: ExecFileException | null, stdout: string, stderr: string) => void + ): ChildProcess; + // `options` with an `encoding` whose type is `string` means stdout/stderr could either be `Buffer` or `string`. + // There is no guarantee the `encoding` is unknown as `string` is a superset of `BufferEncoding`. + function execFile(file: string, options: ExecFileOptionsWithOtherEncoding, callback: (error: ExecFileException | null, stdout: string | Buffer, stderr: string | Buffer) => void): ChildProcess; + function execFile( + file: string, + args: ReadonlyArray | undefined | null, + options: ExecFileOptionsWithOtherEncoding, + callback: (error: ExecFileException | null, stdout: string | Buffer, stderr: string | Buffer) => void + ): ChildProcess; + // `options` without an `encoding` means stdout/stderr are definitely `string`. + function execFile(file: string, options: ExecFileOptions, callback: (error: ExecFileException | null, stdout: string, stderr: string) => void): ChildProcess; + function execFile( + file: string, + args: ReadonlyArray | undefined | null, + options: ExecFileOptions, + callback: (error: ExecFileException | null, stdout: string, stderr: string) => void + ): ChildProcess; + // fallback if nothing else matches. Worst case is always `string | Buffer`. + function execFile( + file: string, + options: (ObjectEncodingOptions & ExecFileOptions) | undefined | null, + callback: ((error: ExecFileException | null, stdout: string | Buffer, stderr: string | Buffer) => void) | undefined | null + ): ChildProcess; + function execFile( + file: string, + args: ReadonlyArray | undefined | null, + options: (ObjectEncodingOptions & ExecFileOptions) | undefined | null, + callback: ((error: ExecFileException | null, stdout: string | Buffer, stderr: string | Buffer) => void) | undefined | null + ): ChildProcess; + namespace execFile { + function __promisify__(file: string): PromiseWithChild<{ + stdout: string; + stderr: string; + }>; + function __promisify__( + file: string, + args: ReadonlyArray | undefined | null + ): PromiseWithChild<{ + stdout: string; + stderr: string; + }>; + function __promisify__( + file: string, + options: ExecFileOptionsWithBufferEncoding + ): PromiseWithChild<{ + stdout: Buffer; + stderr: Buffer; + }>; + function __promisify__( + file: string, + args: ReadonlyArray | undefined | null, + options: ExecFileOptionsWithBufferEncoding + ): PromiseWithChild<{ + stdout: Buffer; + stderr: Buffer; + }>; + function __promisify__( + file: string, + options: ExecFileOptionsWithStringEncoding + ): PromiseWithChild<{ + stdout: string; + stderr: string; + }>; + function __promisify__( + file: string, + args: ReadonlyArray | undefined | null, + options: ExecFileOptionsWithStringEncoding + ): PromiseWithChild<{ + stdout: string; + stderr: string; + }>; + function __promisify__( + file: string, + options: ExecFileOptionsWithOtherEncoding + ): PromiseWithChild<{ + stdout: string | Buffer; + stderr: string | Buffer; + }>; + function __promisify__( + file: string, + args: ReadonlyArray | undefined | null, + options: ExecFileOptionsWithOtherEncoding + ): PromiseWithChild<{ + stdout: string | Buffer; + stderr: string | Buffer; + }>; + function __promisify__( + file: string, + options: ExecFileOptions + ): PromiseWithChild<{ + stdout: string; + stderr: string; + }>; + function __promisify__( + file: string, + args: ReadonlyArray | undefined | null, + options: ExecFileOptions + ): PromiseWithChild<{ + stdout: string; + stderr: string; + }>; + function __promisify__( + file: string, + options: (ObjectEncodingOptions & ExecFileOptions) | undefined | null + ): PromiseWithChild<{ + stdout: string | Buffer; + stderr: string | Buffer; + }>; + function __promisify__( + file: string, + args: ReadonlyArray | undefined | null, + options: (ObjectEncodingOptions & ExecFileOptions) | undefined | null + ): PromiseWithChild<{ + stdout: string | Buffer; + stderr: string | Buffer; + }>; + } + interface ForkOptions extends ProcessEnvOptions, MessagingOptions, Abortable { + execPath?: string | undefined; + execArgv?: string[] | undefined; + silent?: boolean | undefined; + stdio?: StdioOptions | undefined; + detached?: boolean | undefined; + windowsVerbatimArguments?: boolean | undefined; + } + /** + * The `child_process.fork()` method is a special case of {@link spawn} used specifically to spawn new Node.js processes. + * Like {@link spawn}, a `ChildProcess` object is returned. The + * returned `ChildProcess` will have an additional communication channel + * built-in that allows messages to be passed back and forth between the parent and + * child. See `subprocess.send()` for details. + * + * Keep in mind that spawned Node.js child processes are + * independent of the parent with exception of the IPC communication channel + * that is established between the two. Each process has its own memory, with + * their own V8 instances. Because of the additional resource allocations + * required, spawning a large number of child Node.js processes is not + * recommended. + * + * By default, `child_process.fork()` will spawn new Node.js instances using the `process.execPath` of the parent process. The `execPath` property in the`options` object allows for an alternative + * execution path to be used. + * + * Node.js processes launched with a custom `execPath` will communicate with the + * parent process using the file descriptor (fd) identified using the + * environment variable `NODE_CHANNEL_FD` on the child process. + * + * Unlike the [`fork(2)`](http://man7.org/linux/man-pages/man2/fork.2.html) POSIX system call, `child_process.fork()` does not clone the + * current process. + * + * The `shell` option available in {@link spawn} is not supported by`child_process.fork()` and will be ignored if set. + * + * If the `signal` option is enabled, calling `.abort()` on the corresponding`AbortController` is similar to calling `.kill()` on the child process except + * the error passed to the callback will be an `AbortError`: + * + * ```js + * if (process.argv[2] === 'child') { + * setTimeout(() => { + * console.log(`Hello from ${process.argv[2]}!`); + * }, 1_000); + * } else { + * const { fork } = require('child_process'); + * const controller = new AbortController(); + * const { signal } = controller; + * const child = fork(__filename, ['child'], { signal }); + * child.on('error', (err) => { + * // This will be called with err being an AbortError if the controller aborts + * }); + * controller.abort(); // Stops the child process + * } + * ``` + * @since v0.5.0 + * @param modulePath The module to run in the child. + * @param args List of string arguments. + */ + function fork(modulePath: string, options?: ForkOptions): ChildProcess; + function fork(modulePath: string, args?: ReadonlyArray, options?: ForkOptions): ChildProcess; + interface SpawnSyncOptions extends CommonSpawnOptions { + input?: string | NodeJS.ArrayBufferView | undefined; + maxBuffer?: number | undefined; + encoding?: BufferEncoding | 'buffer' | null | undefined; + } + interface SpawnSyncOptionsWithStringEncoding extends SpawnSyncOptions { + encoding: BufferEncoding; + } + interface SpawnSyncOptionsWithBufferEncoding extends SpawnSyncOptions { + encoding?: 'buffer' | null | undefined; + } + interface SpawnSyncReturns { + pid: number; + output: Array; + stdout: T; + stderr: T; + status: number | null; + signal: NodeJS.Signals | null; + error?: Error | undefined; + } + /** + * The `child_process.spawnSync()` method is generally identical to {@link spawn} with the exception that the function will not return + * until the child process has fully closed. When a timeout has been encountered + * and `killSignal` is sent, the method won't return until the process has + * completely exited. If the process intercepts and handles the `SIGTERM` signal + * and doesn't exit, the parent process will wait until the child process has + * exited. + * + * **If the `shell` option is enabled, do not pass unsanitized user input to this** + * **function. Any input containing shell metacharacters may be used to trigger** + * **arbitrary command execution.** + * @since v0.11.12 + * @param command The command to run. + * @param args List of string arguments. + */ + function spawnSync(command: string): SpawnSyncReturns; + function spawnSync(command: string, options: SpawnSyncOptionsWithStringEncoding): SpawnSyncReturns; + function spawnSync(command: string, options: SpawnSyncOptionsWithBufferEncoding): SpawnSyncReturns; + function spawnSync(command: string, options?: SpawnSyncOptions): SpawnSyncReturns; + function spawnSync(command: string, args: ReadonlyArray): SpawnSyncReturns; + function spawnSync(command: string, args: ReadonlyArray, options: SpawnSyncOptionsWithStringEncoding): SpawnSyncReturns; + function spawnSync(command: string, args: ReadonlyArray, options: SpawnSyncOptionsWithBufferEncoding): SpawnSyncReturns; + function spawnSync(command: string, args?: ReadonlyArray, options?: SpawnSyncOptions): SpawnSyncReturns; + interface CommonExecOptions extends CommonOptions { + input?: string | NodeJS.ArrayBufferView | undefined; + stdio?: StdioOptions | undefined; + killSignal?: NodeJS.Signals | number | undefined; + maxBuffer?: number | undefined; + encoding?: BufferEncoding | 'buffer' | null | undefined; + } + interface ExecSyncOptions extends CommonExecOptions { + shell?: string | undefined; + } + interface ExecSyncOptionsWithStringEncoding extends ExecSyncOptions { + encoding: BufferEncoding; + } + interface ExecSyncOptionsWithBufferEncoding extends ExecSyncOptions { + encoding?: 'buffer' | null | undefined; + } + /** + * The `child_process.execSync()` method is generally identical to {@link exec} with the exception that the method will not return + * until the child process has fully closed. When a timeout has been encountered + * and `killSignal` is sent, the method won't return until the process has + * completely exited. If the child process intercepts and handles the `SIGTERM`signal and doesn't exit, the parent process will wait until the child process + * has exited. + * + * If the process times out or has a non-zero exit code, this method will throw. + * The `Error` object will contain the entire result from {@link spawnSync}. + * + * **Never pass unsanitized user input to this function. Any input containing shell** + * **metacharacters may be used to trigger arbitrary command execution.** + * @since v0.11.12 + * @param command The command to run. + * @return The stdout from the command. + */ + function execSync(command: string): Buffer; + function execSync(command: string, options: ExecSyncOptionsWithStringEncoding): string; + function execSync(command: string, options: ExecSyncOptionsWithBufferEncoding): Buffer; + function execSync(command: string, options?: ExecSyncOptions): string | Buffer; + interface ExecFileSyncOptions extends CommonExecOptions { + shell?: boolean | string | undefined; + } + interface ExecFileSyncOptionsWithStringEncoding extends ExecFileSyncOptions { + encoding: BufferEncoding; + } + interface ExecFileSyncOptionsWithBufferEncoding extends ExecFileSyncOptions { + encoding?: 'buffer' | null; // specify `null`. + } + /** + * The `child_process.execFileSync()` method is generally identical to {@link execFile} with the exception that the method will not + * return until the child process has fully closed. When a timeout has been + * encountered and `killSignal` is sent, the method won't return until the process + * has completely exited. + * + * If the child process intercepts and handles the `SIGTERM` signal and + * does not exit, the parent process will still wait until the child process has + * exited. + * + * If the process times out or has a non-zero exit code, this method will throw an `Error` that will include the full result of the underlying {@link spawnSync}. + * + * **If the `shell` option is enabled, do not pass unsanitized user input to this** + * **function. Any input containing shell metacharacters may be used to trigger** + * **arbitrary command execution.** + * @since v0.11.12 + * @param file The name or path of the executable file to run. + * @param args List of string arguments. + * @return The stdout from the command. + */ + function execFileSync(file: string): Buffer; + function execFileSync(file: string, options: ExecFileSyncOptionsWithStringEncoding): string; + function execFileSync(file: string, options: ExecFileSyncOptionsWithBufferEncoding): Buffer; + function execFileSync(file: string, options?: ExecFileSyncOptions): string | Buffer; + function execFileSync(file: string, args: ReadonlyArray): Buffer; + function execFileSync(file: string, args: ReadonlyArray, options: ExecFileSyncOptionsWithStringEncoding): string; + function execFileSync(file: string, args: ReadonlyArray, options: ExecFileSyncOptionsWithBufferEncoding): Buffer; + function execFileSync(file: string, args?: ReadonlyArray, options?: ExecFileSyncOptions): string | Buffer; +} +declare module 'node:child_process' { + export * from 'child_process'; +} diff --git a/node_modules/@types/node/cluster.d.ts b/node_modules/@types/node/cluster.d.ts new file mode 100644 index 000000000..37dbc5746 --- /dev/null +++ b/node_modules/@types/node/cluster.d.ts @@ -0,0 +1,410 @@ +/** + * Clusters of Node.js processes can be used to run multiple instances of Node.js + * that can distribute workloads among their application threads. When process + * isolation is not needed, use the `worker_threads` module instead, which + * allows running multiple application threads within a single Node.js instance. + * + * The cluster module allows easy creation of child processes that all share + * server ports. + * + * ```js + * import cluster from 'cluster'; + * import http from 'http'; + * import { cpus } from 'os'; + * import process from 'process'; + * + * const numCPUs = cpus().length; + * + * if (cluster.isPrimary) { + * console.log(`Primary ${process.pid} is running`); + * + * // Fork workers. + * for (let i = 0; i < numCPUs; i++) { + * cluster.fork(); + * } + * + * cluster.on('exit', (worker, code, signal) => { + * console.log(`worker ${worker.process.pid} died`); + * }); + * } else { + * // Workers can share any TCP connection + * // In this case it is an HTTP server + * http.createServer((req, res) => { + * res.writeHead(200); + * res.end('hello world\n'); + * }).listen(8000); + * + * console.log(`Worker ${process.pid} started`); + * } + * ``` + * + * Running Node.js will now share port 8000 between the workers: + * + * ```console + * $ node server.js + * Primary 3596 is running + * Worker 4324 started + * Worker 4520 started + * Worker 6056 started + * Worker 5644 started + * ``` + * + * On Windows, it is not yet possible to set up a named pipe server in a worker. + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/cluster.js) + */ +declare module 'cluster' { + import * as child from 'node:child_process'; + import EventEmitter = require('node:events'); + import * as net from 'node:net'; + export interface ClusterSettings { + execArgv?: string[] | undefined; // default: process.execArgv + exec?: string | undefined; + args?: string[] | undefined; + silent?: boolean | undefined; + stdio?: any[] | undefined; + uid?: number | undefined; + gid?: number | undefined; + inspectPort?: number | (() => number) | undefined; + } + export interface Address { + address: string; + port: number; + addressType: number | 'udp4' | 'udp6'; // 4, 6, -1, "udp4", "udp6" + } + /** + * A `Worker` object contains all public information and method about a worker. + * In the primary it can be obtained using `cluster.workers`. In a worker + * it can be obtained using `cluster.worker`. + * @since v0.7.0 + */ + export class Worker extends EventEmitter { + /** + * Each new worker is given its own unique id, this id is stored in the`id`. + * + * While a worker is alive, this is the key that indexes it in`cluster.workers`. + * @since v0.8.0 + */ + id: number; + /** + * All workers are created using `child_process.fork()`, the returned object + * from this function is stored as `.process`. In a worker, the global `process`is stored. + * + * See: `Child Process module`. + * + * Workers will call `process.exit(0)` if the `'disconnect'` event occurs + * on `process` and `.exitedAfterDisconnect` is not `true`. This protects against + * accidental disconnection. + * @since v0.7.0 + */ + process: child.ChildProcess; + /** + * Send a message to a worker or primary, optionally with a handle. + * + * In the primary, this sends a message to a specific worker. It is identical to `ChildProcess.send()`. + * + * In a worker, this sends a message to the primary. It is identical to`process.send()`. + * + * This example will echo back all messages from the primary: + * + * ```js + * if (cluster.isPrimary) { + * const worker = cluster.fork(); + * worker.send('hi there'); + * + * } else if (cluster.isWorker) { + * process.on('message', (msg) => { + * process.send(msg); + * }); + * } + * ``` + * @since v0.7.0 + * @param options The `options` argument, if present, is an object used to parameterize the sending of certain types of handles. `options` supports the following properties: + */ + send(message: child.Serializable, callback?: (error: Error | null) => void): boolean; + send(message: child.Serializable, sendHandle: child.SendHandle, callback?: (error: Error | null) => void): boolean; + send(message: child.Serializable, sendHandle: child.SendHandle, options?: child.MessageOptions, callback?: (error: Error | null) => void): boolean; + /** + * This function will kill the worker. In the primary worker, it does this by + * disconnecting the `worker.process`, and once disconnected, killing with`signal`. In the worker, it does it by killing the process with `signal`. + * + * The `kill()` function kills the worker process without waiting for a graceful + * disconnect, it has the same behavior as `worker.process.kill()`. + * + * This method is aliased as `worker.destroy()` for backwards compatibility. + * + * In a worker, `process.kill()` exists, but it is not this function; + * it is `kill()`. + * @since v0.9.12 + * @param [signal='SIGTERM'] Name of the kill signal to send to the worker process. + */ + kill(signal?: string): void; + destroy(signal?: string): void; + /** + * In a worker, this function will close all servers, wait for the `'close'` event + * on those servers, and then disconnect the IPC channel. + * + * In the primary, an internal message is sent to the worker causing it to call`.disconnect()` on itself. + * + * Causes `.exitedAfterDisconnect` to be set. + * + * After a server is closed, it will no longer accept new connections, + * but connections may be accepted by any other listening worker. Existing + * connections will be allowed to close as usual. When no more connections exist, + * see `server.close()`, the IPC channel to the worker will close allowing it + * to die gracefully. + * + * The above applies _only_ to server connections, client connections are not + * automatically closed by workers, and disconnect does not wait for them to close + * before exiting. + * + * In a worker, `process.disconnect` exists, but it is not this function; + * it is `disconnect()`. + * + * Because long living server connections may block workers from disconnecting, it + * may be useful to send a message, so application specific actions may be taken to + * close them. It also may be useful to implement a timeout, killing a worker if + * the `'disconnect'` event has not been emitted after some time. + * + * ```js + * if (cluster.isPrimary) { + * const worker = cluster.fork(); + * let timeout; + * + * worker.on('listening', (address) => { + * worker.send('shutdown'); + * worker.disconnect(); + * timeout = setTimeout(() => { + * worker.kill(); + * }, 2000); + * }); + * + * worker.on('disconnect', () => { + * clearTimeout(timeout); + * }); + * + * } else if (cluster.isWorker) { + * const net = require('net'); + * const server = net.createServer((socket) => { + * // Connections never end + * }); + * + * server.listen(8000); + * + * process.on('message', (msg) => { + * if (msg === 'shutdown') { + * // Initiate graceful close of any connections to server + * } + * }); + * } + * ``` + * @since v0.7.7 + * @return A reference to `worker`. + */ + disconnect(): void; + /** + * This function returns `true` if the worker is connected to its primary via its + * IPC channel, `false` otherwise. A worker is connected to its primary after it + * has been created. It is disconnected after the `'disconnect'` event is emitted. + * @since v0.11.14 + */ + isConnected(): boolean; + /** + * This function returns `true` if the worker's process has terminated (either + * because of exiting or being signaled). Otherwise, it returns `false`. + * + * ```js + * import cluster from 'cluster'; + * import http from 'http'; + * import { cpus } from 'os'; + * import process from 'process'; + * + * const numCPUs = cpus().length; + * + * if (cluster.isPrimary) { + * console.log(`Primary ${process.pid} is running`); + * + * // Fork workers. + * for (let i = 0; i < numCPUs; i++) { + * cluster.fork(); + * } + * + * cluster.on('fork', (worker) => { + * console.log('worker is dead:', worker.isDead()); + * }); + * + * cluster.on('exit', (worker, code, signal) => { + * console.log('worker is dead:', worker.isDead()); + * }); + * } else { + * // Workers can share any TCP connection. In this case, it is an HTTP server. + * http.createServer((req, res) => { + * res.writeHead(200); + * res.end(`Current process\n ${process.pid}`); + * process.kill(process.pid); + * }).listen(8000); + * } + * ``` + * @since v0.11.14 + */ + isDead(): boolean; + /** + * This property is `true` if the worker exited due to `.disconnect()`. + * If the worker exited any other way, it is `false`. If the + * worker has not exited, it is `undefined`. + * + * The boolean `worker.exitedAfterDisconnect` allows distinguishing between + * voluntary and accidental exit, the primary may choose not to respawn a worker + * based on this value. + * + * ```js + * cluster.on('exit', (worker, code, signal) => { + * if (worker.exitedAfterDisconnect === true) { + * console.log('Oh, it was just voluntary – no need to worry'); + * } + * }); + * + * // kill worker + * worker.kill(); + * ``` + * @since v6.0.0 + */ + exitedAfterDisconnect: boolean; + /** + * events.EventEmitter + * 1. disconnect + * 2. error + * 3. exit + * 4. listening + * 5. message + * 6. online + */ + addListener(event: string, listener: (...args: any[]) => void): this; + addListener(event: 'disconnect', listener: () => void): this; + addListener(event: 'error', listener: (error: Error) => void): this; + addListener(event: 'exit', listener: (code: number, signal: string) => void): this; + addListener(event: 'listening', listener: (address: Address) => void): this; + addListener(event: 'message', listener: (message: any, handle: net.Socket | net.Server) => void): this; // the handle is a net.Socket or net.Server object, or undefined. + addListener(event: 'online', listener: () => void): this; + emit(event: string | symbol, ...args: any[]): boolean; + emit(event: 'disconnect'): boolean; + emit(event: 'error', error: Error): boolean; + emit(event: 'exit', code: number, signal: string): boolean; + emit(event: 'listening', address: Address): boolean; + emit(event: 'message', message: any, handle: net.Socket | net.Server): boolean; + emit(event: 'online'): boolean; + on(event: string, listener: (...args: any[]) => void): this; + on(event: 'disconnect', listener: () => void): this; + on(event: 'error', listener: (error: Error) => void): this; + on(event: 'exit', listener: (code: number, signal: string) => void): this; + on(event: 'listening', listener: (address: Address) => void): this; + on(event: 'message', listener: (message: any, handle: net.Socket | net.Server) => void): this; // the handle is a net.Socket or net.Server object, or undefined. + on(event: 'online', listener: () => void): this; + once(event: string, listener: (...args: any[]) => void): this; + once(event: 'disconnect', listener: () => void): this; + once(event: 'error', listener: (error: Error) => void): this; + once(event: 'exit', listener: (code: number, signal: string) => void): this; + once(event: 'listening', listener: (address: Address) => void): this; + once(event: 'message', listener: (message: any, handle: net.Socket | net.Server) => void): this; // the handle is a net.Socket or net.Server object, or undefined. + once(event: 'online', listener: () => void): this; + prependListener(event: string, listener: (...args: any[]) => void): this; + prependListener(event: 'disconnect', listener: () => void): this; + prependListener(event: 'error', listener: (error: Error) => void): this; + prependListener(event: 'exit', listener: (code: number, signal: string) => void): this; + prependListener(event: 'listening', listener: (address: Address) => void): this; + prependListener(event: 'message', listener: (message: any, handle: net.Socket | net.Server) => void): this; // the handle is a net.Socket or net.Server object, or undefined. + prependListener(event: 'online', listener: () => void): this; + prependOnceListener(event: string, listener: (...args: any[]) => void): this; + prependOnceListener(event: 'disconnect', listener: () => void): this; + prependOnceListener(event: 'error', listener: (error: Error) => void): this; + prependOnceListener(event: 'exit', listener: (code: number, signal: string) => void): this; + prependOnceListener(event: 'listening', listener: (address: Address) => void): this; + prependOnceListener(event: 'message', listener: (message: any, handle: net.Socket | net.Server) => void): this; // the handle is a net.Socket or net.Server object, or undefined. + prependOnceListener(event: 'online', listener: () => void): this; + } + export interface Cluster extends EventEmitter { + disconnect(callback?: () => void): void; + fork(env?: any): Worker; + /** @deprecated since v16.0.0 - use isPrimary. */ + readonly isMaster: boolean; + readonly isPrimary: boolean; + readonly isWorker: boolean; + schedulingPolicy: number; + readonly settings: ClusterSettings; + /** @deprecated since v16.0.0 - use setupPrimary. */ + setupMaster(settings?: ClusterSettings): void; + /** + * `setupPrimary` is used to change the default 'fork' behavior. Once called, the settings will be present in cluster.settings. + */ + setupPrimary(settings?: ClusterSettings): void; + readonly worker?: Worker | undefined; + readonly workers?: NodeJS.Dict | undefined; + readonly SCHED_NONE: number; + readonly SCHED_RR: number; + /** + * events.EventEmitter + * 1. disconnect + * 2. exit + * 3. fork + * 4. listening + * 5. message + * 6. online + * 7. setup + */ + addListener(event: string, listener: (...args: any[]) => void): this; + addListener(event: 'disconnect', listener: (worker: Worker) => void): this; + addListener(event: 'exit', listener: (worker: Worker, code: number, signal: string) => void): this; + addListener(event: 'fork', listener: (worker: Worker) => void): this; + addListener(event: 'listening', listener: (worker: Worker, address: Address) => void): this; + addListener(event: 'message', listener: (worker: Worker, message: any, handle: net.Socket | net.Server) => void): this; // the handle is a net.Socket or net.Server object, or undefined. + addListener(event: 'online', listener: (worker: Worker) => void): this; + addListener(event: 'setup', listener: (settings: ClusterSettings) => void): this; + emit(event: string | symbol, ...args: any[]): boolean; + emit(event: 'disconnect', worker: Worker): boolean; + emit(event: 'exit', worker: Worker, code: number, signal: string): boolean; + emit(event: 'fork', worker: Worker): boolean; + emit(event: 'listening', worker: Worker, address: Address): boolean; + emit(event: 'message', worker: Worker, message: any, handle: net.Socket | net.Server): boolean; + emit(event: 'online', worker: Worker): boolean; + emit(event: 'setup', settings: ClusterSettings): boolean; + on(event: string, listener: (...args: any[]) => void): this; + on(event: 'disconnect', listener: (worker: Worker) => void): this; + on(event: 'exit', listener: (worker: Worker, code: number, signal: string) => void): this; + on(event: 'fork', listener: (worker: Worker) => void): this; + on(event: 'listening', listener: (worker: Worker, address: Address) => void): this; + on(event: 'message', listener: (worker: Worker, message: any, handle: net.Socket | net.Server) => void): this; // the handle is a net.Socket or net.Server object, or undefined. + on(event: 'online', listener: (worker: Worker) => void): this; + on(event: 'setup', listener: (settings: ClusterSettings) => void): this; + once(event: string, listener: (...args: any[]) => void): this; + once(event: 'disconnect', listener: (worker: Worker) => void): this; + once(event: 'exit', listener: (worker: Worker, code: number, signal: string) => void): this; + once(event: 'fork', listener: (worker: Worker) => void): this; + once(event: 'listening', listener: (worker: Worker, address: Address) => void): this; + once(event: 'message', listener: (worker: Worker, message: any, handle: net.Socket | net.Server) => void): this; // the handle is a net.Socket or net.Server object, or undefined. + once(event: 'online', listener: (worker: Worker) => void): this; + once(event: 'setup', listener: (settings: ClusterSettings) => void): this; + prependListener(event: string, listener: (...args: any[]) => void): this; + prependListener(event: 'disconnect', listener: (worker: Worker) => void): this; + prependListener(event: 'exit', listener: (worker: Worker, code: number, signal: string) => void): this; + prependListener(event: 'fork', listener: (worker: Worker) => void): this; + prependListener(event: 'listening', listener: (worker: Worker, address: Address) => void): this; + // the handle is a net.Socket or net.Server object, or undefined. + prependListener(event: 'message', listener: (worker: Worker, message: any, handle?: net.Socket | net.Server) => void): this; + prependListener(event: 'online', listener: (worker: Worker) => void): this; + prependListener(event: 'setup', listener: (settings: ClusterSettings) => void): this; + prependOnceListener(event: string, listener: (...args: any[]) => void): this; + prependOnceListener(event: 'disconnect', listener: (worker: Worker) => void): this; + prependOnceListener(event: 'exit', listener: (worker: Worker, code: number, signal: string) => void): this; + prependOnceListener(event: 'fork', listener: (worker: Worker) => void): this; + prependOnceListener(event: 'listening', listener: (worker: Worker, address: Address) => void): this; + // the handle is a net.Socket or net.Server object, or undefined. + prependOnceListener(event: 'message', listener: (worker: Worker, message: any, handle: net.Socket | net.Server) => void): this; + prependOnceListener(event: 'online', listener: (worker: Worker) => void): this; + prependOnceListener(event: 'setup', listener: (settings: ClusterSettings) => void): this; + } + const cluster: Cluster; + export default cluster; +} +declare module 'node:cluster' { + export * from 'cluster'; + export { default as default } from 'cluster'; +} diff --git a/node_modules/@types/node/console.d.ts b/node_modules/@types/node/console.d.ts new file mode 100644 index 000000000..16c9137ad --- /dev/null +++ b/node_modules/@types/node/console.d.ts @@ -0,0 +1,412 @@ +/** + * The `console` module provides a simple debugging console that is similar to the + * JavaScript console mechanism provided by web browsers. + * + * The module exports two specific components: + * + * * A `Console` class with methods such as `console.log()`, `console.error()` and`console.warn()` that can be used to write to any Node.js stream. + * * A global `console` instance configured to write to `process.stdout` and `process.stderr`. The global `console` can be used without calling`require('console')`. + * + * _**Warning**_: The global console object's methods are neither consistently + * synchronous like the browser APIs they resemble, nor are they consistently + * asynchronous like all other Node.js streams. See the `note on process I/O` for + * more information. + * + * Example using the global `console`: + * + * ```js + * console.log('hello world'); + * // Prints: hello world, to stdout + * console.log('hello %s', 'world'); + * // Prints: hello world, to stdout + * console.error(new Error('Whoops, something bad happened')); + * // Prints error message and stack trace to stderr: + * // Error: Whoops, something bad happened + * // at [eval]:5:15 + * // at Script.runInThisContext (node:vm:132:18) + * // at Object.runInThisContext (node:vm:309:38) + * // at node:internal/process/execution:77:19 + * // at [eval]-wrapper:6:22 + * // at evalScript (node:internal/process/execution:76:60) + * // at node:internal/main/eval_string:23:3 + * + * const name = 'Will Robinson'; + * console.warn(`Danger ${name}! Danger!`); + * // Prints: Danger Will Robinson! Danger!, to stderr + * ``` + * + * Example using the `Console` class: + * + * ```js + * const out = getStreamSomehow(); + * const err = getStreamSomehow(); + * const myConsole = new console.Console(out, err); + * + * myConsole.log('hello world'); + * // Prints: hello world, to out + * myConsole.log('hello %s', 'world'); + * // Prints: hello world, to out + * myConsole.error(new Error('Whoops, something bad happened')); + * // Prints: [Error: Whoops, something bad happened], to err + * + * const name = 'Will Robinson'; + * myConsole.warn(`Danger ${name}! Danger!`); + * // Prints: Danger Will Robinson! Danger!, to err + * ``` + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/console.js) + */ +declare module 'console' { + import console = require('node:console'); + export = console; +} +declare module 'node:console' { + import { InspectOptions } from 'node:util'; + global { + // This needs to be global to avoid TS2403 in case lib.dom.d.ts is present in the same build + interface Console { + Console: console.ConsoleConstructor; + /** + * `console.assert()` writes a message if `value` is [falsy](https://developer.mozilla.org/en-US/docs/Glossary/Falsy) or omitted. It only + * writes a message and does not otherwise affect execution. The output always + * starts with `"Assertion failed"`. If provided, `message` is formatted using `util.format()`. + * + * If `value` is [truthy](https://developer.mozilla.org/en-US/docs/Glossary/Truthy), nothing happens. + * + * ```js + * console.assert(true, 'does nothing'); + * + * console.assert(false, 'Whoops %s work', 'didn\'t'); + * // Assertion failed: Whoops didn't work + * + * console.assert(); + * // Assertion failed + * ``` + * @since v0.1.101 + * @param value The value tested for being truthy. + * @param message All arguments besides `value` are used as error message. + */ + assert(value: any, message?: string, ...optionalParams: any[]): void; + /** + * When `stdout` is a TTY, calling `console.clear()` will attempt to clear the + * TTY. When `stdout` is not a TTY, this method does nothing. + * + * The specific operation of `console.clear()` can vary across operating systems + * and terminal types. For most Linux operating systems, `console.clear()`operates similarly to the `clear` shell command. On Windows, `console.clear()`will clear only the output in the + * current terminal viewport for the Node.js + * binary. + * @since v8.3.0 + */ + clear(): void; + /** + * Maintains an internal counter specific to `label` and outputs to `stdout` the + * number of times `console.count()` has been called with the given `label`. + * + * ```js + * > console.count() + * default: 1 + * undefined + * > console.count('default') + * default: 2 + * undefined + * > console.count('abc') + * abc: 1 + * undefined + * > console.count('xyz') + * xyz: 1 + * undefined + * > console.count('abc') + * abc: 2 + * undefined + * > console.count() + * default: 3 + * undefined + * > + * ``` + * @since v8.3.0 + * @param label The display label for the counter. + */ + count(label?: string): void; + /** + * Resets the internal counter specific to `label`. + * + * ```js + * > console.count('abc'); + * abc: 1 + * undefined + * > console.countReset('abc'); + * undefined + * > console.count('abc'); + * abc: 1 + * undefined + * > + * ``` + * @since v8.3.0 + * @param label The display label for the counter. + */ + countReset(label?: string): void; + /** + * The `console.debug()` function is an alias for {@link log}. + * @since v8.0.0 + */ + debug(message?: any, ...optionalParams: any[]): void; + /** + * Uses `util.inspect()` on `obj` and prints the resulting string to `stdout`. + * This function bypasses any custom `inspect()` function defined on `obj`. + * @since v0.1.101 + */ + dir(obj: any, options?: InspectOptions): void; + /** + * This method calls `console.log()` passing it the arguments received. + * This method does not produce any XML formatting. + * @since v8.0.0 + */ + dirxml(...data: any[]): void; + /** + * Prints to `stderr` with newline. Multiple arguments can be passed, with the + * first used as the primary message and all additional used as substitution + * values similar to [`printf(3)`](http://man7.org/linux/man-pages/man3/printf.3.html) (the arguments are all passed to `util.format()`). + * + * ```js + * const code = 5; + * console.error('error #%d', code); + * // Prints: error #5, to stderr + * console.error('error', code); + * // Prints: error 5, to stderr + * ``` + * + * If formatting elements (e.g. `%d`) are not found in the first string then `util.inspect()` is called on each argument and the resulting string + * values are concatenated. See `util.format()` for more information. + * @since v0.1.100 + */ + error(message?: any, ...optionalParams: any[]): void; + /** + * Increases indentation of subsequent lines by spaces for `groupIndentation`length. + * + * If one or more `label`s are provided, those are printed first without the + * additional indentation. + * @since v8.5.0 + */ + group(...label: any[]): void; + /** + * An alias for {@link group}. + * @since v8.5.0 + */ + groupCollapsed(...label: any[]): void; + /** + * Decreases indentation of subsequent lines by spaces for `groupIndentation`length. + * @since v8.5.0 + */ + groupEnd(): void; + /** + * The `console.info()` function is an alias for {@link log}. + * @since v0.1.100 + */ + info(message?: any, ...optionalParams: any[]): void; + /** + * Prints to `stdout` with newline. Multiple arguments can be passed, with the + * first used as the primary message and all additional used as substitution + * values similar to [`printf(3)`](http://man7.org/linux/man-pages/man3/printf.3.html) (the arguments are all passed to `util.format()`). + * + * ```js + * const count = 5; + * console.log('count: %d', count); + * // Prints: count: 5, to stdout + * console.log('count:', count); + * // Prints: count: 5, to stdout + * ``` + * + * See `util.format()` for more information. + * @since v0.1.100 + */ + log(message?: any, ...optionalParams: any[]): void; + /** + * Try to construct a table with the columns of the properties of `tabularData`(or use `properties`) and rows of `tabularData` and log it. Falls back to just + * logging the argument if it can’t be parsed as tabular. + * + * ```js + * // These can't be parsed as tabular data + * console.table(Symbol()); + * // Symbol() + * + * console.table(undefined); + * // undefined + * + * console.table([{ a: 1, b: 'Y' }, { a: 'Z', b: 2 }]); + * // ┌─────────┬─────┬─────┐ + * // │ (index) │ a │ b │ + * // ├─────────┼─────┼─────┤ + * // │ 0 │ 1 │ 'Y' │ + * // │ 1 │ 'Z' │ 2 │ + * // └─────────┴─────┴─────┘ + * + * console.table([{ a: 1, b: 'Y' }, { a: 'Z', b: 2 }], ['a']); + * // ┌─────────┬─────┐ + * // │ (index) │ a │ + * // ├─────────┼─────┤ + * // │ 0 │ 1 │ + * // │ 1 │ 'Z' │ + * // └─────────┴─────┘ + * ``` + * @since v10.0.0 + * @param properties Alternate properties for constructing the table. + */ + table(tabularData: any, properties?: ReadonlyArray): void; + /** + * Starts a timer that can be used to compute the duration of an operation. Timers + * are identified by a unique `label`. Use the same `label` when calling {@link timeEnd} to stop the timer and output the elapsed time in + * suitable time units to `stdout`. For example, if the elapsed + * time is 3869ms, `console.timeEnd()` displays "3.869s". + * @since v0.1.104 + */ + time(label?: string): void; + /** + * Stops a timer that was previously started by calling {@link time} and + * prints the result to `stdout`: + * + * ```js + * console.time('100-elements'); + * for (let i = 0; i < 100; i++) {} + * console.timeEnd('100-elements'); + * // prints 100-elements: 225.438ms + * ``` + * @since v0.1.104 + */ + timeEnd(label?: string): void; + /** + * For a timer that was previously started by calling {@link time}, prints + * the elapsed time and other `data` arguments to `stdout`: + * + * ```js + * console.time('process'); + * const value = expensiveProcess1(); // Returns 42 + * console.timeLog('process', value); + * // Prints "process: 365.227ms 42". + * doExpensiveProcess2(value); + * console.timeEnd('process'); + * ``` + * @since v10.7.0 + */ + timeLog(label?: string, ...data: any[]): void; + /** + * Prints to `stderr` the string `'Trace: '`, followed by the `util.format()` formatted message and stack trace to the current position in the code. + * + * ```js + * console.trace('Show me'); + * // Prints: (stack trace will vary based on where trace is called) + * // Trace: Show me + * // at repl:2:9 + * // at REPLServer.defaultEval (repl.js:248:27) + * // at bound (domain.js:287:14) + * // at REPLServer.runBound [as eval] (domain.js:300:12) + * // at REPLServer. (repl.js:412:12) + * // at emitOne (events.js:82:20) + * // at REPLServer.emit (events.js:169:7) + * // at REPLServer.Interface._onLine (readline.js:210:10) + * // at REPLServer.Interface._line (readline.js:549:8) + * // at REPLServer.Interface._ttyWrite (readline.js:826:14) + * ``` + * @since v0.1.104 + */ + trace(message?: any, ...optionalParams: any[]): void; + /** + * The `console.warn()` function is an alias for {@link error}. + * @since v0.1.100 + */ + warn(message?: any, ...optionalParams: any[]): void; + // --- Inspector mode only --- + /** + * This method does not display anything unless used in the inspector. + * Starts a JavaScript CPU profile with an optional label. + */ + profile(label?: string): void; + /** + * This method does not display anything unless used in the inspector. + * Stops the current JavaScript CPU profiling session if one has been started and prints the report to the Profiles panel of the inspector. + */ + profileEnd(label?: string): void; + /** + * This method does not display anything unless used in the inspector. + * Adds an event with the label `label` to the Timeline panel of the inspector. + */ + timeStamp(label?: string): void; + } + /** + * The `console` module provides a simple debugging console that is similar to the + * JavaScript console mechanism provided by web browsers. + * + * The module exports two specific components: + * + * * A `Console` class with methods such as `console.log()`, `console.error()` and`console.warn()` that can be used to write to any Node.js stream. + * * A global `console` instance configured to write to `process.stdout` and `process.stderr`. The global `console` can be used without calling`require('console')`. + * + * _**Warning**_: The global console object's methods are neither consistently + * synchronous like the browser APIs they resemble, nor are they consistently + * asynchronous like all other Node.js streams. See the `note on process I/O` for + * more information. + * + * Example using the global `console`: + * + * ```js + * console.log('hello world'); + * // Prints: hello world, to stdout + * console.log('hello %s', 'world'); + * // Prints: hello world, to stdout + * console.error(new Error('Whoops, something bad happened')); + * // Prints error message and stack trace to stderr: + * // Error: Whoops, something bad happened + * // at [eval]:5:15 + * // at Script.runInThisContext (node:vm:132:18) + * // at Object.runInThisContext (node:vm:309:38) + * // at node:internal/process/execution:77:19 + * // at [eval]-wrapper:6:22 + * // at evalScript (node:internal/process/execution:76:60) + * // at node:internal/main/eval_string:23:3 + * + * const name = 'Will Robinson'; + * console.warn(`Danger ${name}! Danger!`); + * // Prints: Danger Will Robinson! Danger!, to stderr + * ``` + * + * Example using the `Console` class: + * + * ```js + * const out = getStreamSomehow(); + * const err = getStreamSomehow(); + * const myConsole = new console.Console(out, err); + * + * myConsole.log('hello world'); + * // Prints: hello world, to out + * myConsole.log('hello %s', 'world'); + * // Prints: hello world, to out + * myConsole.error(new Error('Whoops, something bad happened')); + * // Prints: [Error: Whoops, something bad happened], to err + * + * const name = 'Will Robinson'; + * myConsole.warn(`Danger ${name}! Danger!`); + * // Prints: Danger Will Robinson! Danger!, to err + * ``` + * @see [source](https://github.com/nodejs/node/blob/v16.4.2/lib/console.js) + */ + namespace console { + interface ConsoleConstructorOptions { + stdout: NodeJS.WritableStream; + stderr?: NodeJS.WritableStream | undefined; + ignoreErrors?: boolean | undefined; + colorMode?: boolean | 'auto' | undefined; + inspectOptions?: InspectOptions | undefined; + /** + * Set group indentation + * @default 2 + */ + groupIndentation?: number | undefined; + } + interface ConsoleConstructor { + prototype: Console; + new (stdout: NodeJS.WritableStream, stderr?: NodeJS.WritableStream, ignoreErrors?: boolean): Console; + new (options: ConsoleConstructorOptions): Console; + } + } + var console: Console; + } + export = globalThis.console; +} diff --git a/node_modules/@types/node/constants.d.ts b/node_modules/@types/node/constants.d.ts new file mode 100644 index 000000000..208020dcb --- /dev/null +++ b/node_modules/@types/node/constants.d.ts @@ -0,0 +1,18 @@ +/** @deprecated since v6.3.0 - use constants property exposed by the relevant module instead. */ +declare module 'constants' { + import { constants as osConstants, SignalConstants } from 'node:os'; + import { constants as cryptoConstants } from 'node:crypto'; + import { constants as fsConstants } from 'node:fs'; + + const exp: typeof osConstants.errno & + typeof osConstants.priority & + SignalConstants & + typeof cryptoConstants & + typeof fsConstants; + export = exp; +} + +declare module 'node:constants' { + import constants = require('constants'); + export = constants; +} diff --git a/node_modules/@types/node/crypto.d.ts b/node_modules/@types/node/crypto.d.ts new file mode 100644 index 000000000..6135090b0 --- /dev/null +++ b/node_modules/@types/node/crypto.d.ts @@ -0,0 +1,3961 @@ +/** + * The `crypto` module provides cryptographic functionality that includes a set of + * wrappers for OpenSSL's hash, HMAC, cipher, decipher, sign, and verify functions. + * + * ```js + * const { createHmac } = await import('crypto'); + * + * const secret = 'abcdefg'; + * const hash = createHmac('sha256', secret) + * .update('I love cupcakes') + * .digest('hex'); + * console.log(hash); + * // Prints: + * // c0fa1bc00531bd78ef38c628449c5102aeabd49b5dc3a2a516ea6ea959d6658e + * ``` + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/crypto.js) + */ +declare module 'crypto' { + import * as stream from 'node:stream'; + import { PeerCertificate } from 'node:tls'; + /** + * SPKAC is a Certificate Signing Request mechanism originally implemented by + * Netscape and was specified formally as part of [HTML5's `keygen` element](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/keygen). + * + * `` is deprecated since [HTML 5.2](https://www.w3.org/TR/html52/changes.html#features-removed) and new projects + * should not use this element anymore. + * + * The `crypto` module provides the `Certificate` class for working with SPKAC + * data. The most common usage is handling output generated by the HTML5`` element. Node.js uses [OpenSSL's SPKAC + * implementation](https://www.openssl.org/docs/man1.1.0/apps/openssl-spkac.html) internally. + * @since v0.11.8 + */ + class Certificate { + /** + * ```js + * const { Certificate } = await import('crypto'); + * const spkac = getSpkacSomehow(); + * const challenge = Certificate.exportChallenge(spkac); + * console.log(challenge.toString('utf8')); + * // Prints: the challenge as a UTF8 string + * ``` + * @since v9.0.0 + * @param encoding The `encoding` of the `spkac` string. + * @return The challenge component of the `spkac` data structure, which includes a public key and a challenge. + */ + static exportChallenge(spkac: BinaryLike): Buffer; + /** + * ```js + * const { Certificate } = await import('crypto'); + * const spkac = getSpkacSomehow(); + * const publicKey = Certificate.exportPublicKey(spkac); + * console.log(publicKey); + * // Prints: the public key as + * ``` + * @since v9.0.0 + * @param encoding The `encoding` of the `spkac` string. + * @return The public key component of the `spkac` data structure, which includes a public key and a challenge. + */ + static exportPublicKey(spkac: BinaryLike, encoding?: string): Buffer; + /** + * ```js + * import { Buffer } from 'buffer'; + * const { Certificate } = await import('crypto'); + * + * const spkac = getSpkacSomehow(); + * console.log(Certificate.verifySpkac(Buffer.from(spkac))); + * // Prints: true or false + * ``` + * @since v9.0.0 + * @param encoding The `encoding` of the `spkac` string. + * @return `true` if the given `spkac` data structure is valid, `false` otherwise. + */ + static verifySpkac(spkac: NodeJS.ArrayBufferView): boolean; + /** + * @deprecated + * @param spkac + * @returns The challenge component of the `spkac` data structure, + * which includes a public key and a challenge. + */ + exportChallenge(spkac: BinaryLike): Buffer; + /** + * @deprecated + * @param spkac + * @param encoding The encoding of the spkac string. + * @returns The public key component of the `spkac` data structure, + * which includes a public key and a challenge. + */ + exportPublicKey(spkac: BinaryLike, encoding?: string): Buffer; + /** + * @deprecated + * @param spkac + * @returns `true` if the given `spkac` data structure is valid, + * `false` otherwise. + */ + verifySpkac(spkac: NodeJS.ArrayBufferView): boolean; + } + namespace constants { + // https://nodejs.org/dist/latest-v10.x/docs/api/crypto.html#crypto_crypto_constants + const OPENSSL_VERSION_NUMBER: number; + /** Applies multiple bug workarounds within OpenSSL. See https://www.openssl.org/docs/man1.0.2/ssl/SSL_CTX_set_options.html for detail. */ + const SSL_OP_ALL: number; + /** Allows legacy insecure renegotiation between OpenSSL and unpatched clients or servers. See https://www.openssl.org/docs/man1.0.2/ssl/SSL_CTX_set_options.html. */ + const SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION: number; + /** Attempts to use the server's preferences instead of the client's when selecting a cipher. See https://www.openssl.org/docs/man1.0.2/ssl/SSL_CTX_set_options.html. */ + const SSL_OP_CIPHER_SERVER_PREFERENCE: number; + /** Instructs OpenSSL to use Cisco's "speshul" version of DTLS_BAD_VER. */ + const SSL_OP_CISCO_ANYCONNECT: number; + /** Instructs OpenSSL to turn on cookie exchange. */ + const SSL_OP_COOKIE_EXCHANGE: number; + /** Instructs OpenSSL to add server-hello extension from an early version of the cryptopro draft. */ + const SSL_OP_CRYPTOPRO_TLSEXT_BUG: number; + /** Instructs OpenSSL to disable a SSL 3.0/TLS 1.0 vulnerability workaround added in OpenSSL 0.9.6d. */ + const SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS: number; + /** Instructs OpenSSL to always use the tmp_rsa key when performing RSA operations. */ + const SSL_OP_EPHEMERAL_RSA: number; + /** Allows initial connection to servers that do not support RI. */ + const SSL_OP_LEGACY_SERVER_CONNECT: number; + const SSL_OP_MICROSOFT_BIG_SSLV3_BUFFER: number; + const SSL_OP_MICROSOFT_SESS_ID_BUG: number; + /** Instructs OpenSSL to disable the workaround for a man-in-the-middle protocol-version vulnerability in the SSL 2.0 server implementation. */ + const SSL_OP_MSIE_SSLV2_RSA_PADDING: number; + const SSL_OP_NETSCAPE_CA_DN_BUG: number; + const SSL_OP_NETSCAPE_CHALLENGE_BUG: number; + const SSL_OP_NETSCAPE_DEMO_CIPHER_CHANGE_BUG: number; + const SSL_OP_NETSCAPE_REUSE_CIPHER_CHANGE_BUG: number; + /** Instructs OpenSSL to disable support for SSL/TLS compression. */ + const SSL_OP_NO_COMPRESSION: number; + const SSL_OP_NO_QUERY_MTU: number; + /** Instructs OpenSSL to always start a new session when performing renegotiation. */ + const SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION: number; + const SSL_OP_NO_SSLv2: number; + const SSL_OP_NO_SSLv3: number; + const SSL_OP_NO_TICKET: number; + const SSL_OP_NO_TLSv1: number; + const SSL_OP_NO_TLSv1_1: number; + const SSL_OP_NO_TLSv1_2: number; + const SSL_OP_PKCS1_CHECK_1: number; + const SSL_OP_PKCS1_CHECK_2: number; + /** Instructs OpenSSL to always create a new key when using temporary/ephemeral DH parameters. */ + const SSL_OP_SINGLE_DH_USE: number; + /** Instructs OpenSSL to always create a new key when using temporary/ephemeral ECDH parameters. */ + const SSL_OP_SINGLE_ECDH_USE: number; + const SSL_OP_SSLEAY_080_CLIENT_DH_BUG: number; + const SSL_OP_SSLREF2_REUSE_CERT_TYPE_BUG: number; + const SSL_OP_TLS_BLOCK_PADDING_BUG: number; + const SSL_OP_TLS_D5_BUG: number; + /** Instructs OpenSSL to disable version rollback attack detection. */ + const SSL_OP_TLS_ROLLBACK_BUG: number; + const ENGINE_METHOD_RSA: number; + const ENGINE_METHOD_DSA: number; + const ENGINE_METHOD_DH: number; + const ENGINE_METHOD_RAND: number; + const ENGINE_METHOD_EC: number; + const ENGINE_METHOD_CIPHERS: number; + const ENGINE_METHOD_DIGESTS: number; + const ENGINE_METHOD_PKEY_METHS: number; + const ENGINE_METHOD_PKEY_ASN1_METHS: number; + const ENGINE_METHOD_ALL: number; + const ENGINE_METHOD_NONE: number; + const DH_CHECK_P_NOT_SAFE_PRIME: number; + const DH_CHECK_P_NOT_PRIME: number; + const DH_UNABLE_TO_CHECK_GENERATOR: number; + const DH_NOT_SUITABLE_GENERATOR: number; + const ALPN_ENABLED: number; + const RSA_PKCS1_PADDING: number; + const RSA_SSLV23_PADDING: number; + const RSA_NO_PADDING: number; + const RSA_PKCS1_OAEP_PADDING: number; + const RSA_X931_PADDING: number; + const RSA_PKCS1_PSS_PADDING: number; + /** Sets the salt length for RSA_PKCS1_PSS_PADDING to the digest size when signing or verifying. */ + const RSA_PSS_SALTLEN_DIGEST: number; + /** Sets the salt length for RSA_PKCS1_PSS_PADDING to the maximum permissible value when signing data. */ + const RSA_PSS_SALTLEN_MAX_SIGN: number; + /** Causes the salt length for RSA_PKCS1_PSS_PADDING to be determined automatically when verifying a signature. */ + const RSA_PSS_SALTLEN_AUTO: number; + const POINT_CONVERSION_COMPRESSED: number; + const POINT_CONVERSION_UNCOMPRESSED: number; + const POINT_CONVERSION_HYBRID: number; + /** Specifies the built-in default cipher list used by Node.js (colon-separated values). */ + const defaultCoreCipherList: string; + /** Specifies the active default cipher list used by the current Node.js process (colon-separated values). */ + const defaultCipherList: string; + } + interface HashOptions extends stream.TransformOptions { + /** + * For XOF hash functions such as `shake256`, the + * outputLength option can be used to specify the desired output length in bytes. + */ + outputLength?: number | undefined; + } + /** @deprecated since v10.0.0 */ + const fips: boolean; + /** + * Creates and returns a `Hash` object that can be used to generate hash digests + * using the given `algorithm`. Optional `options` argument controls stream + * behavior. For XOF hash functions such as `'shake256'`, the `outputLength` option + * can be used to specify the desired output length in bytes. + * + * The `algorithm` is dependent on the available algorithms supported by the + * version of OpenSSL on the platform. Examples are `'sha256'`, `'sha512'`, etc. + * On recent releases of OpenSSL, `openssl list -digest-algorithms` will + * display the available digest algorithms. + * + * Example: generating the sha256 sum of a file + * + * ```js + * import { + * createReadStream + * } from 'fs'; + * import { argv } from 'process'; + * const { + * createHash + * } = await import('crypto'); + * + * const filename = argv[2]; + * + * const hash = createHash('sha256'); + * + * const input = createReadStream(filename); + * input.on('readable', () => { + * // Only one element is going to be produced by the + * // hash stream. + * const data = input.read(); + * if (data) + * hash.update(data); + * else { + * console.log(`${hash.digest('hex')} ${filename}`); + * } + * }); + * ``` + * @since v0.1.92 + * @param options `stream.transform` options + */ + function createHash(algorithm: string, options?: HashOptions): Hash; + /** + * Creates and returns an `Hmac` object that uses the given `algorithm` and `key`. + * Optional `options` argument controls stream behavior. + * + * The `algorithm` is dependent on the available algorithms supported by the + * version of OpenSSL on the platform. Examples are `'sha256'`, `'sha512'`, etc. + * On recent releases of OpenSSL, `openssl list -digest-algorithms` will + * display the available digest algorithms. + * + * The `key` is the HMAC key used to generate the cryptographic HMAC hash. If it is + * a `KeyObject`, its type must be `secret`. + * + * Example: generating the sha256 HMAC of a file + * + * ```js + * import { + * createReadStream + * } from 'fs'; + * import { argv } from 'process'; + * const { + * createHmac + * } = await import('crypto'); + * + * const filename = argv[2]; + * + * const hmac = createHmac('sha256', 'a secret'); + * + * const input = createReadStream(filename); + * input.on('readable', () => { + * // Only one element is going to be produced by the + * // hash stream. + * const data = input.read(); + * if (data) + * hmac.update(data); + * else { + * console.log(`${hmac.digest('hex')} ${filename}`); + * } + * }); + * ``` + * @since v0.1.94 + * @param options `stream.transform` options + */ + function createHmac(algorithm: string, key: BinaryLike | KeyObject, options?: stream.TransformOptions): Hmac; + // https://nodejs.org/api/buffer.html#buffer_buffers_and_character_encodings + type BinaryToTextEncoding = 'base64' | 'base64url' | 'hex' | 'binary'; + type CharacterEncoding = 'utf8' | 'utf-8' | 'utf16le' | 'latin1'; + type LegacyCharacterEncoding = 'ascii' | 'binary' | 'ucs2' | 'ucs-2'; + type Encoding = BinaryToTextEncoding | CharacterEncoding | LegacyCharacterEncoding; + type ECDHKeyFormat = 'compressed' | 'uncompressed' | 'hybrid'; + /** + * The `Hash` class is a utility for creating hash digests of data. It can be + * used in one of two ways: + * + * * As a `stream` that is both readable and writable, where data is written + * to produce a computed hash digest on the readable side, or + * * Using the `hash.update()` and `hash.digest()` methods to produce the + * computed hash. + * + * The {@link createHash} method is used to create `Hash` instances. `Hash`objects are not to be created directly using the `new` keyword. + * + * Example: Using `Hash` objects as streams: + * + * ```js + * const { + * createHash + * } = await import('crypto'); + * + * const hash = createHash('sha256'); + * + * hash.on('readable', () => { + * // Only one element is going to be produced by the + * // hash stream. + * const data = hash.read(); + * if (data) { + * console.log(data.toString('hex')); + * // Prints: + * // 6a2da20943931e9834fc12cfe5bb47bbd9ae43489a30726962b576f4e3993e50 + * } + * }); + * + * hash.write('some data to hash'); + * hash.end(); + * ``` + * + * Example: Using `Hash` and piped streams: + * + * ```js + * import { createReadStream } from 'fs'; + * import { stdout } from 'process'; + * const { createHash } = await import('crypto'); + * + * const hash = createHash('sha256'); + * + * const input = createReadStream('test.js'); + * input.pipe(hash).setEncoding('hex').pipe(stdout); + * ``` + * + * Example: Using the `hash.update()` and `hash.digest()` methods: + * + * ```js + * const { + * createHash + * } = await import('crypto'); + * + * const hash = createHash('sha256'); + * + * hash.update('some data to hash'); + * console.log(hash.digest('hex')); + * // Prints: + * // 6a2da20943931e9834fc12cfe5bb47bbd9ae43489a30726962b576f4e3993e50 + * ``` + * @since v0.1.92 + */ + class Hash extends stream.Transform { + private constructor(); + /** + * Creates a new `Hash` object that contains a deep copy of the internal state + * of the current `Hash` object. + * + * The optional `options` argument controls stream behavior. For XOF hash + * functions such as `'shake256'`, the `outputLength` option can be used to + * specify the desired output length in bytes. + * + * An error is thrown when an attempt is made to copy the `Hash` object after + * its `hash.digest()` method has been called. + * + * ```js + * // Calculate a rolling hash. + * const { + * createHash + * } = await import('crypto'); + * + * const hash = createHash('sha256'); + * + * hash.update('one'); + * console.log(hash.copy().digest('hex')); + * + * hash.update('two'); + * console.log(hash.copy().digest('hex')); + * + * hash.update('three'); + * console.log(hash.copy().digest('hex')); + * + * // Etc. + * ``` + * @since v13.1.0 + * @param options `stream.transform` options + */ + copy(options?: stream.TransformOptions): Hash; + /** + * Updates the hash content with the given `data`, the encoding of which + * is given in `inputEncoding`. + * If `encoding` is not provided, and the `data` is a string, an + * encoding of `'utf8'` is enforced. If `data` is a `Buffer`, `TypedArray`, or`DataView`, then `inputEncoding` is ignored. + * + * This can be called many times with new data as it is streamed. + * @since v0.1.92 + * @param inputEncoding The `encoding` of the `data` string. + */ + update(data: BinaryLike): Hash; + update(data: string, inputEncoding: Encoding): Hash; + /** + * Calculates the digest of all of the data passed to be hashed (using the `hash.update()` method). + * If `encoding` is provided a string will be returned; otherwise + * a `Buffer` is returned. + * + * The `Hash` object can not be used again after `hash.digest()` method has been + * called. Multiple calls will cause an error to be thrown. + * @since v0.1.92 + * @param encoding The `encoding` of the return value. + */ + digest(): Buffer; + digest(encoding: BinaryToTextEncoding): string; + } + /** + * The `Hmac` class is a utility for creating cryptographic HMAC digests. It can + * be used in one of two ways: + * + * * As a `stream` that is both readable and writable, where data is written + * to produce a computed HMAC digest on the readable side, or + * * Using the `hmac.update()` and `hmac.digest()` methods to produce the + * computed HMAC digest. + * + * The {@link createHmac} method is used to create `Hmac` instances. `Hmac`objects are not to be created directly using the `new` keyword. + * + * Example: Using `Hmac` objects as streams: + * + * ```js + * const { + * createHmac + * } = await import('crypto'); + * + * const hmac = createHmac('sha256', 'a secret'); + * + * hmac.on('readable', () => { + * // Only one element is going to be produced by the + * // hash stream. + * const data = hmac.read(); + * if (data) { + * console.log(data.toString('hex')); + * // Prints: + * // 7fd04df92f636fd450bc841c9418e5825c17f33ad9c87c518115a45971f7f77e + * } + * }); + * + * hmac.write('some data to hash'); + * hmac.end(); + * ``` + * + * Example: Using `Hmac` and piped streams: + * + * ```js + * import { createReadStream } from 'fs'; + * import { stdout } from 'process'; + * const { + * createHmac + * } = await import('crypto'); + * + * const hmac = createHmac('sha256', 'a secret'); + * + * const input = createReadStream('test.js'); + * input.pipe(hmac).pipe(stdout); + * ``` + * + * Example: Using the `hmac.update()` and `hmac.digest()` methods: + * + * ```js + * const { + * createHmac + * } = await import('crypto'); + * + * const hmac = createHmac('sha256', 'a secret'); + * + * hmac.update('some data to hash'); + * console.log(hmac.digest('hex')); + * // Prints: + * // 7fd04df92f636fd450bc841c9418e5825c17f33ad9c87c518115a45971f7f77e + * ``` + * @since v0.1.94 + */ + class Hmac extends stream.Transform { + private constructor(); + /** + * Updates the `Hmac` content with the given `data`, the encoding of which + * is given in `inputEncoding`. + * If `encoding` is not provided, and the `data` is a string, an + * encoding of `'utf8'` is enforced. If `data` is a `Buffer`, `TypedArray`, or`DataView`, then `inputEncoding` is ignored. + * + * This can be called many times with new data as it is streamed. + * @since v0.1.94 + * @param inputEncoding The `encoding` of the `data` string. + */ + update(data: BinaryLike): Hmac; + update(data: string, inputEncoding: Encoding): Hmac; + /** + * Calculates the HMAC digest of all of the data passed using `hmac.update()`. + * If `encoding` is + * provided a string is returned; otherwise a `Buffer` is returned; + * + * The `Hmac` object can not be used again after `hmac.digest()` has been + * called. Multiple calls to `hmac.digest()` will result in an error being thrown. + * @since v0.1.94 + * @param encoding The `encoding` of the return value. + */ + digest(): Buffer; + digest(encoding: BinaryToTextEncoding): string; + } + type KeyObjectType = 'secret' | 'public' | 'private'; + interface KeyExportOptions { + type: 'pkcs1' | 'spki' | 'pkcs8' | 'sec1'; + format: T; + cipher?: string | undefined; + passphrase?: string | Buffer | undefined; + } + interface JwkKeyExportOptions { + format: 'jwk'; + } + interface JsonWebKey { + crv?: string | undefined; + d?: string | undefined; + dp?: string | undefined; + dq?: string | undefined; + e?: string | undefined; + k?: string | undefined; + kty?: string | undefined; + n?: string | undefined; + p?: string | undefined; + q?: string | undefined; + qi?: string | undefined; + x?: string | undefined; + y?: string | undefined; + [key: string]: unknown; + } + interface AsymmetricKeyDetails { + /** + * Key size in bits (RSA, DSA). + */ + modulusLength?: number | undefined; + /** + * Public exponent (RSA). + */ + publicExponent?: bigint | undefined; + /** + * Name of the message digest (RSA-PSS). + */ + hashAlgorithm?: string | undefined; + /** + * Name of the message digest used by MGF1 (RSA-PSS). + */ + mgf1HashAlgorithm?: string | undefined; + /** + * Minimal salt length in bytes (RSA-PSS). + */ + saltLength?: number | undefined; + /** + * Size of q in bits (DSA). + */ + divisorLength?: number | undefined; + /** + * Name of the curve (EC). + */ + namedCurve?: string | undefined; + } + /** + * Node.js uses a `KeyObject` class to represent a symmetric or asymmetric key, + * and each kind of key exposes different functions. The {@link createSecretKey}, {@link createPublicKey} and {@link createPrivateKey} methods are used to create `KeyObject`instances. `KeyObject` + * objects are not to be created directly using the `new`keyword. + * + * Most applications should consider using the new `KeyObject` API instead of + * passing keys as strings or `Buffer`s due to improved security features. + * + * `KeyObject` instances can be passed to other threads via `postMessage()`. + * The receiver obtains a cloned `KeyObject`, and the `KeyObject` does not need to + * be listed in the `transferList` argument. + * @since v11.6.0 + */ + class KeyObject { + private constructor(); + /** + * Example: Converting a `CryptoKey` instance to a `KeyObject`: + * + * ```js + * const { webcrypto, KeyObject } = await import('crypto'); + * const { subtle } = webcrypto; + * + * const key = await subtle.generateKey({ + * name: 'HMAC', + * hash: 'SHA-256', + * length: 256 + * }, true, ['sign', 'verify']); + * + * const keyObject = KeyObject.from(key); + * console.log(keyObject.symmetricKeySize); + * // Prints: 32 (symmetric key size in bytes) + * ``` + * @since v15.0.0 + */ + static from(key: webcrypto.CryptoKey): KeyObject; + /** + * For asymmetric keys, this property represents the type of the key. Supported key + * types are: + * + * * `'rsa'` (OID 1.2.840.113549.1.1.1) + * * `'rsa-pss'` (OID 1.2.840.113549.1.1.10) + * * `'dsa'` (OID 1.2.840.10040.4.1) + * * `'ec'` (OID 1.2.840.10045.2.1) + * * `'x25519'` (OID 1.3.101.110) + * * `'x448'` (OID 1.3.101.111) + * * `'ed25519'` (OID 1.3.101.112) + * * `'ed448'` (OID 1.3.101.113) + * * `'dh'` (OID 1.2.840.113549.1.3.1) + * + * This property is `undefined` for unrecognized `KeyObject` types and symmetric + * keys. + * @since v11.6.0 + */ + asymmetricKeyType?: KeyType | undefined; + /** + * For asymmetric keys, this property represents the size of the embedded key in + * bytes. This property is `undefined` for symmetric keys. + */ + asymmetricKeySize?: number | undefined; + /** + * This property exists only on asymmetric keys. Depending on the type of the key, + * this object contains information about the key. None of the information obtained + * through this property can be used to uniquely identify a key or to compromise + * the security of the key. + * + * For RSA-PSS keys, if the key material contains a `RSASSA-PSS-params` sequence, + * the `hashAlgorithm`, `mgf1HashAlgorithm`, and `saltLength` properties will be + * set. + * + * Other key details might be exposed via this API using additional attributes. + * @since v15.7.0 + */ + asymmetricKeyDetails?: AsymmetricKeyDetails | undefined; + /** + * For symmetric keys, the following encoding options can be used: + * + * For public keys, the following encoding options can be used: + * + * For private keys, the following encoding options can be used: + * + * The result type depends on the selected encoding format, when PEM the + * result is a string, when DER it will be a buffer containing the data + * encoded as DER, when [JWK](https://tools.ietf.org/html/rfc7517) it will be an object. + * + * When [JWK](https://tools.ietf.org/html/rfc7517) encoding format was selected, all other encoding options are + * ignored. + * + * PKCS#1, SEC1, and PKCS#8 type keys can be encrypted by using a combination of + * the `cipher` and `format` options. The PKCS#8 `type` can be used with any`format` to encrypt any key algorithm (RSA, EC, or DH) by specifying a`cipher`. PKCS#1 and SEC1 can only be + * encrypted by specifying a `cipher`when the PEM `format` is used. For maximum compatibility, use PKCS#8 for + * encrypted private keys. Since PKCS#8 defines its own + * encryption mechanism, PEM-level encryption is not supported when encrypting + * a PKCS#8 key. See [RFC 5208](https://www.rfc-editor.org/rfc/rfc5208.txt) for PKCS#8 encryption and [RFC 1421](https://www.rfc-editor.org/rfc/rfc1421.txt) for + * PKCS#1 and SEC1 encryption. + * @since v11.6.0 + */ + export(options: KeyExportOptions<'pem'>): string | Buffer; + export(options?: KeyExportOptions<'der'>): Buffer; + export(options?: JwkKeyExportOptions): JsonWebKey; + /** + * For secret keys, this property represents the size of the key in bytes. This + * property is `undefined` for asymmetric keys. + * @since v11.6.0 + */ + symmetricKeySize?: number | undefined; + /** + * Depending on the type of this `KeyObject`, this property is either`'secret'` for secret (symmetric) keys, `'public'` for public (asymmetric) keys + * or `'private'` for private (asymmetric) keys. + * @since v11.6.0 + */ + type: KeyObjectType; + } + type CipherCCMTypes = 'aes-128-ccm' | 'aes-192-ccm' | 'aes-256-ccm' | 'chacha20-poly1305'; + type CipherGCMTypes = 'aes-128-gcm' | 'aes-192-gcm' | 'aes-256-gcm'; + type CipherOCBTypes = 'aes-128-ocb' | 'aes-192-ocb' | 'aes-256-ocb'; + type BinaryLike = string | NodeJS.ArrayBufferView; + type CipherKey = BinaryLike | KeyObject; + interface CipherCCMOptions extends stream.TransformOptions { + authTagLength: number; + } + interface CipherGCMOptions extends stream.TransformOptions { + authTagLength?: number | undefined; + } + interface CipherOCBOptions extends stream.TransformOptions { + authTagLength: number; + } + /** + * Creates and returns a `Cipher` object that uses the given `algorithm` and`password`. + * + * The `options` argument controls stream behavior and is optional except when a + * cipher in CCM or OCB mode (e.g. `'aes-128-ccm'`) is used. In that case, the`authTagLength` option is required and specifies the length of the + * authentication tag in bytes, see `CCM mode`. In GCM mode, the `authTagLength`option is not required but can be used to set the length of the authentication + * tag that will be returned by `getAuthTag()` and defaults to 16 bytes. + * For `chacha20-poly1305`, the `authTagLength` option defaults to 16 bytes. + * + * The `algorithm` is dependent on OpenSSL, examples are `'aes192'`, etc. On + * recent OpenSSL releases, `openssl list -cipher-algorithms` will + * display the available cipher algorithms. + * + * The `password` is used to derive the cipher key and initialization vector (IV). + * The value must be either a `'latin1'` encoded string, a `Buffer`, a`TypedArray`, or a `DataView`. + * + * The implementation of `crypto.createCipher()` derives keys using the OpenSSL + * function [`EVP_BytesToKey`](https://www.openssl.org/docs/man1.1.0/crypto/EVP_BytesToKey.html) with the digest algorithm set to MD5, one + * iteration, and no salt. The lack of salt allows dictionary attacks as the same + * password always creates the same key. The low iteration count and + * non-cryptographically secure hash algorithm allow passwords to be tested very + * rapidly. + * + * In line with OpenSSL's recommendation to use a more modern algorithm instead of [`EVP_BytesToKey`](https://www.openssl.org/docs/man1.1.0/crypto/EVP_BytesToKey.html) it is recommended that + * developers derive a key and IV on + * their own using {@link scrypt} and to use {@link createCipheriv} to create the `Cipher` object. Users should not use ciphers with counter mode + * (e.g. CTR, GCM, or CCM) in `crypto.createCipher()`. A warning is emitted when + * they are used in order to avoid the risk of IV reuse that causes + * vulnerabilities. For the case when IV is reused in GCM, see [Nonce-Disrespecting Adversaries](https://github.com/nonce-disrespect/nonce-disrespect) for details. + * @since v0.1.94 + * @deprecated Since v10.0.0 - Use {@link createCipheriv} instead. + * @param options `stream.transform` options + */ + function createCipher(algorithm: CipherCCMTypes, password: BinaryLike, options: CipherCCMOptions): CipherCCM; + /** @deprecated since v10.0.0 use `createCipheriv()` */ + function createCipher(algorithm: CipherGCMTypes, password: BinaryLike, options?: CipherGCMOptions): CipherGCM; + /** @deprecated since v10.0.0 use `createCipheriv()` */ + function createCipher(algorithm: string, password: BinaryLike, options?: stream.TransformOptions): Cipher; + /** + * Creates and returns a `Cipher` object, with the given `algorithm`, `key` and + * initialization vector (`iv`). + * + * The `options` argument controls stream behavior and is optional except when a + * cipher in CCM or OCB mode (e.g. `'aes-128-ccm'`) is used. In that case, the`authTagLength` option is required and specifies the length of the + * authentication tag in bytes, see `CCM mode`. In GCM mode, the `authTagLength`option is not required but can be used to set the length of the authentication + * tag that will be returned by `getAuthTag()` and defaults to 16 bytes. + * For `chacha20-poly1305`, the `authTagLength` option defaults to 16 bytes. + * + * The `algorithm` is dependent on OpenSSL, examples are `'aes192'`, etc. On + * recent OpenSSL releases, `openssl list -cipher-algorithms` will + * display the available cipher algorithms. + * + * The `key` is the raw key used by the `algorithm` and `iv` is an [initialization vector](https://en.wikipedia.org/wiki/Initialization_vector). Both arguments must be `'utf8'` encoded + * strings,`Buffers`, `TypedArray`, or `DataView`s. The `key` may optionally be + * a `KeyObject` of type `secret`. If the cipher does not need + * an initialization vector, `iv` may be `null`. + * + * When passing strings for `key` or `iv`, please consider `caveats when using strings as inputs to cryptographic APIs`. + * + * Initialization vectors should be unpredictable and unique; ideally, they will be + * cryptographically random. They do not have to be secret: IVs are typically just + * added to ciphertext messages unencrypted. It may sound contradictory that + * something has to be unpredictable and unique, but does not have to be secret; + * remember that an attacker must not be able to predict ahead of time what a + * given IV will be. + * @since v0.1.94 + * @param options `stream.transform` options + */ + function createCipheriv(algorithm: CipherCCMTypes, key: CipherKey, iv: BinaryLike, options: CipherCCMOptions): CipherCCM; + function createCipheriv(algorithm: CipherOCBTypes, key: CipherKey, iv: BinaryLike, options: CipherOCBOptions): CipherOCB; + function createCipheriv(algorithm: CipherGCMTypes, key: CipherKey, iv: BinaryLike, options?: CipherGCMOptions): CipherGCM; + function createCipheriv(algorithm: string, key: CipherKey, iv: BinaryLike | null, options?: stream.TransformOptions): Cipher; + /** + * Instances of the `Cipher` class are used to encrypt data. The class can be + * used in one of two ways: + * + * * As a `stream` that is both readable and writable, where plain unencrypted + * data is written to produce encrypted data on the readable side, or + * * Using the `cipher.update()` and `cipher.final()` methods to produce + * the encrypted data. + * + * The {@link createCipher} or {@link createCipheriv} methods are + * used to create `Cipher` instances. `Cipher` objects are not to be created + * directly using the `new` keyword. + * + * Example: Using `Cipher` objects as streams: + * + * ```js + * const { + * scrypt, + * randomFill, + * createCipheriv + * } = await import('crypto'); + * + * const algorithm = 'aes-192-cbc'; + * const password = 'Password used to generate key'; + * + * // First, we'll generate the key. The key length is dependent on the algorithm. + * // In this case for aes192, it is 24 bytes (192 bits). + * scrypt(password, 'salt', 24, (err, key) => { + * if (err) throw err; + * // Then, we'll generate a random initialization vector + * randomFill(new Uint8Array(16), (err, iv) => { + * if (err) throw err; + * + * // Once we have the key and iv, we can create and use the cipher... + * const cipher = createCipheriv(algorithm, key, iv); + * + * let encrypted = ''; + * cipher.setEncoding('hex'); + * + * cipher.on('data', (chunk) => encrypted += chunk); + * cipher.on('end', () => console.log(encrypted)); + * + * cipher.write('some clear text data'); + * cipher.end(); + * }); + * }); + * ``` + * + * Example: Using `Cipher` and piped streams: + * + * ```js + * import { + * createReadStream, + * createWriteStream, + * } from 'fs'; + * + * import { + * pipeline + * } from 'stream'; + * + * const { + * scrypt, + * randomFill, + * createCipheriv + * } = await import('crypto'); + * + * const algorithm = 'aes-192-cbc'; + * const password = 'Password used to generate key'; + * + * // First, we'll generate the key. The key length is dependent on the algorithm. + * // In this case for aes192, it is 24 bytes (192 bits). + * scrypt(password, 'salt', 24, (err, key) => { + * if (err) throw err; + * // Then, we'll generate a random initialization vector + * randomFill(new Uint8Array(16), (err, iv) => { + * if (err) throw err; + * + * const cipher = createCipheriv(algorithm, key, iv); + * + * const input = createReadStream('test.js'); + * const output = createWriteStream('test.enc'); + * + * pipeline(input, cipher, output, (err) => { + * if (err) throw err; + * }); + * }); + * }); + * ``` + * + * Example: Using the `cipher.update()` and `cipher.final()` methods: + * + * ```js + * const { + * scrypt, + * randomFill, + * createCipheriv + * } = await import('crypto'); + * + * const algorithm = 'aes-192-cbc'; + * const password = 'Password used to generate key'; + * + * // First, we'll generate the key. The key length is dependent on the algorithm. + * // In this case for aes192, it is 24 bytes (192 bits). + * scrypt(password, 'salt', 24, (err, key) => { + * if (err) throw err; + * // Then, we'll generate a random initialization vector + * randomFill(new Uint8Array(16), (err, iv) => { + * if (err) throw err; + * + * const cipher = createCipheriv(algorithm, key, iv); + * + * let encrypted = cipher.update('some clear text data', 'utf8', 'hex'); + * encrypted += cipher.final('hex'); + * console.log(encrypted); + * }); + * }); + * ``` + * @since v0.1.94 + */ + class Cipher extends stream.Transform { + private constructor(); + /** + * Updates the cipher with `data`. If the `inputEncoding` argument is given, + * the `data`argument is a string using the specified encoding. If the `inputEncoding`argument is not given, `data` must be a `Buffer`, `TypedArray`, or`DataView`. If `data` is a `Buffer`, + * `TypedArray`, or `DataView`, then`inputEncoding` is ignored. + * + * The `outputEncoding` specifies the output format of the enciphered + * data. If the `outputEncoding`is specified, a string using the specified encoding is returned. If no`outputEncoding` is provided, a `Buffer` is returned. + * + * The `cipher.update()` method can be called multiple times with new data until `cipher.final()` is called. Calling `cipher.update()` after `cipher.final()` will result in an error being + * thrown. + * @since v0.1.94 + * @param inputEncoding The `encoding` of the data. + * @param outputEncoding The `encoding` of the return value. + */ + update(data: BinaryLike): Buffer; + update(data: string, inputEncoding: Encoding): Buffer; + update(data: NodeJS.ArrayBufferView, inputEncoding: undefined, outputEncoding: Encoding): string; + update(data: string, inputEncoding: Encoding | undefined, outputEncoding: Encoding): string; + /** + * Once the `cipher.final()` method has been called, the `Cipher` object can no + * longer be used to encrypt data. Attempts to call `cipher.final()` more than + * once will result in an error being thrown. + * @since v0.1.94 + * @param outputEncoding The `encoding` of the return value. + * @return Any remaining enciphered contents. If `outputEncoding` is specified, a string is returned. If an `outputEncoding` is not provided, a {@link Buffer} is returned. + */ + final(): Buffer; + final(outputEncoding: BufferEncoding): string; + /** + * When using block encryption algorithms, the `Cipher` class will automatically + * add padding to the input data to the appropriate block size. To disable the + * default padding call `cipher.setAutoPadding(false)`. + * + * When `autoPadding` is `false`, the length of the entire input data must be a + * multiple of the cipher's block size or `cipher.final()` will throw an error. + * Disabling automatic padding is useful for non-standard padding, for instance + * using `0x0` instead of PKCS padding. + * + * The `cipher.setAutoPadding()` method must be called before `cipher.final()`. + * @since v0.7.1 + * @param [autoPadding=true] + * @return for method chaining. + */ + setAutoPadding(autoPadding?: boolean): this; + } + interface CipherCCM extends Cipher { + setAAD( + buffer: NodeJS.ArrayBufferView, + options: { + plaintextLength: number; + } + ): this; + getAuthTag(): Buffer; + } + interface CipherGCM extends Cipher { + setAAD( + buffer: NodeJS.ArrayBufferView, + options?: { + plaintextLength: number; + } + ): this; + getAuthTag(): Buffer; + } + interface CipherOCB extends Cipher { + setAAD( + buffer: NodeJS.ArrayBufferView, + options?: { + plaintextLength: number; + } + ): this; + getAuthTag(): Buffer; + } + /** + * Creates and returns a `Decipher` object that uses the given `algorithm` and`password` (key). + * + * The `options` argument controls stream behavior and is optional except when a + * cipher in CCM or OCB mode (e.g. `'aes-128-ccm'`) is used. In that case, the`authTagLength` option is required and specifies the length of the + * authentication tag in bytes, see `CCM mode`. + * For `chacha20-poly1305`, the `authTagLength` option defaults to 16 bytes. + * + * The implementation of `crypto.createDecipher()` derives keys using the OpenSSL + * function [`EVP_BytesToKey`](https://www.openssl.org/docs/man1.1.0/crypto/EVP_BytesToKey.html) with the digest algorithm set to MD5, one + * iteration, and no salt. The lack of salt allows dictionary attacks as the same + * password always creates the same key. The low iteration count and + * non-cryptographically secure hash algorithm allow passwords to be tested very + * rapidly. + * + * In line with OpenSSL's recommendation to use a more modern algorithm instead of [`EVP_BytesToKey`](https://www.openssl.org/docs/man1.1.0/crypto/EVP_BytesToKey.html) it is recommended that + * developers derive a key and IV on + * their own using {@link scrypt} and to use {@link createDecipheriv} to create the `Decipher` object. + * @since v0.1.94 + * @deprecated Since v10.0.0 - Use {@link createDecipheriv} instead. + * @param options `stream.transform` options + */ + function createDecipher(algorithm: CipherCCMTypes, password: BinaryLike, options: CipherCCMOptions): DecipherCCM; + /** @deprecated since v10.0.0 use `createDecipheriv()` */ + function createDecipher(algorithm: CipherGCMTypes, password: BinaryLike, options?: CipherGCMOptions): DecipherGCM; + /** @deprecated since v10.0.0 use `createDecipheriv()` */ + function createDecipher(algorithm: string, password: BinaryLike, options?: stream.TransformOptions): Decipher; + /** + * Creates and returns a `Decipher` object that uses the given `algorithm`, `key`and initialization vector (`iv`). + * + * The `options` argument controls stream behavior and is optional except when a + * cipher in CCM or OCB mode (e.g. `'aes-128-ccm'`) is used. In that case, the`authTagLength` option is required and specifies the length of the + * authentication tag in bytes, see `CCM mode`. In GCM mode, the `authTagLength`option is not required but can be used to restrict accepted authentication tags + * to those with the specified length. + * For `chacha20-poly1305`, the `authTagLength` option defaults to 16 bytes. + * + * The `algorithm` is dependent on OpenSSL, examples are `'aes192'`, etc. On + * recent OpenSSL releases, `openssl list -cipher-algorithms` will + * display the available cipher algorithms. + * + * The `key` is the raw key used by the `algorithm` and `iv` is an [initialization vector](https://en.wikipedia.org/wiki/Initialization_vector). Both arguments must be `'utf8'` encoded + * strings,`Buffers`, `TypedArray`, or `DataView`s. The `key` may optionally be + * a `KeyObject` of type `secret`. If the cipher does not need + * an initialization vector, `iv` may be `null`. + * + * When passing strings for `key` or `iv`, please consider `caveats when using strings as inputs to cryptographic APIs`. + * + * Initialization vectors should be unpredictable and unique; ideally, they will be + * cryptographically random. They do not have to be secret: IVs are typically just + * added to ciphertext messages unencrypted. It may sound contradictory that + * something has to be unpredictable and unique, but does not have to be secret; + * remember that an attacker must not be able to predict ahead of time what a given + * IV will be. + * @since v0.1.94 + * @param options `stream.transform` options + */ + function createDecipheriv(algorithm: CipherCCMTypes, key: CipherKey, iv: BinaryLike, options: CipherCCMOptions): DecipherCCM; + function createDecipheriv(algorithm: CipherOCBTypes, key: CipherKey, iv: BinaryLike, options: CipherOCBOptions): DecipherOCB; + function createDecipheriv(algorithm: CipherGCMTypes, key: CipherKey, iv: BinaryLike, options?: CipherGCMOptions): DecipherGCM; + function createDecipheriv(algorithm: string, key: CipherKey, iv: BinaryLike | null, options?: stream.TransformOptions): Decipher; + /** + * Instances of the `Decipher` class are used to decrypt data. The class can be + * used in one of two ways: + * + * * As a `stream` that is both readable and writable, where plain encrypted + * data is written to produce unencrypted data on the readable side, or + * * Using the `decipher.update()` and `decipher.final()` methods to + * produce the unencrypted data. + * + * The {@link createDecipher} or {@link createDecipheriv} methods are + * used to create `Decipher` instances. `Decipher` objects are not to be created + * directly using the `new` keyword. + * + * Example: Using `Decipher` objects as streams: + * + * ```js + * import { Buffer } from 'buffer'; + * const { + * scryptSync, + * createDecipheriv + * } = await import('crypto'); + * + * const algorithm = 'aes-192-cbc'; + * const password = 'Password used to generate key'; + * // Key length is dependent on the algorithm. In this case for aes192, it is + * // 24 bytes (192 bits). + * // Use the async `crypto.scrypt()` instead. + * const key = scryptSync(password, 'salt', 24); + * // The IV is usually passed along with the ciphertext. + * const iv = Buffer.alloc(16, 0); // Initialization vector. + * + * const decipher = createDecipheriv(algorithm, key, iv); + * + * let decrypted = ''; + * decipher.on('readable', () => { + * while (null !== (chunk = decipher.read())) { + * decrypted += chunk.toString('utf8'); + * } + * }); + * decipher.on('end', () => { + * console.log(decrypted); + * // Prints: some clear text data + * }); + * + * // Encrypted with same algorithm, key and iv. + * const encrypted = + * 'e5f79c5915c02171eec6b212d5520d44480993d7d622a7c4c2da32f6efda0ffa'; + * decipher.write(encrypted, 'hex'); + * decipher.end(); + * ``` + * + * Example: Using `Decipher` and piped streams: + * + * ```js + * import { + * createReadStream, + * createWriteStream, + * } from 'fs'; + * import { Buffer } from 'buffer'; + * const { + * scryptSync, + * createDecipheriv + * } = await import('crypto'); + * + * const algorithm = 'aes-192-cbc'; + * const password = 'Password used to generate key'; + * // Use the async `crypto.scrypt()` instead. + * const key = scryptSync(password, 'salt', 24); + * // The IV is usually passed along with the ciphertext. + * const iv = Buffer.alloc(16, 0); // Initialization vector. + * + * const decipher = createDecipheriv(algorithm, key, iv); + * + * const input = createReadStream('test.enc'); + * const output = createWriteStream('test.js'); + * + * input.pipe(decipher).pipe(output); + * ``` + * + * Example: Using the `decipher.update()` and `decipher.final()` methods: + * + * ```js + * import { Buffer } from 'buffer'; + * const { + * scryptSync, + * createDecipheriv + * } = await import('crypto'); + * + * const algorithm = 'aes-192-cbc'; + * const password = 'Password used to generate key'; + * // Use the async `crypto.scrypt()` instead. + * const key = scryptSync(password, 'salt', 24); + * // The IV is usually passed along with the ciphertext. + * const iv = Buffer.alloc(16, 0); // Initialization vector. + * + * const decipher = createDecipheriv(algorithm, key, iv); + * + * // Encrypted using same algorithm, key and iv. + * const encrypted = + * 'e5f79c5915c02171eec6b212d5520d44480993d7d622a7c4c2da32f6efda0ffa'; + * let decrypted = decipher.update(encrypted, 'hex', 'utf8'); + * decrypted += decipher.final('utf8'); + * console.log(decrypted); + * // Prints: some clear text data + * ``` + * @since v0.1.94 + */ + class Decipher extends stream.Transform { + private constructor(); + /** + * Updates the decipher with `data`. If the `inputEncoding` argument is given, + * the `data`argument is a string using the specified encoding. If the `inputEncoding`argument is not given, `data` must be a `Buffer`. If `data` is a `Buffer` then `inputEncoding` is + * ignored. + * + * The `outputEncoding` specifies the output format of the enciphered + * data. If the `outputEncoding`is specified, a string using the specified encoding is returned. If no`outputEncoding` is provided, a `Buffer` is returned. + * + * The `decipher.update()` method can be called multiple times with new data until `decipher.final()` is called. Calling `decipher.update()` after `decipher.final()` will result in an error + * being thrown. + * @since v0.1.94 + * @param inputEncoding The `encoding` of the `data` string. + * @param outputEncoding The `encoding` of the return value. + */ + update(data: NodeJS.ArrayBufferView): Buffer; + update(data: string, inputEncoding: Encoding): Buffer; + update(data: NodeJS.ArrayBufferView, inputEncoding: undefined, outputEncoding: Encoding): string; + update(data: string, inputEncoding: Encoding | undefined, outputEncoding: Encoding): string; + /** + * Once the `decipher.final()` method has been called, the `Decipher` object can + * no longer be used to decrypt data. Attempts to call `decipher.final()` more + * than once will result in an error being thrown. + * @since v0.1.94 + * @param outputEncoding The `encoding` of the return value. + * @return Any remaining deciphered contents. If `outputEncoding` is specified, a string is returned. If an `outputEncoding` is not provided, a {@link Buffer} is returned. + */ + final(): Buffer; + final(outputEncoding: BufferEncoding): string; + /** + * When data has been encrypted without standard block padding, calling`decipher.setAutoPadding(false)` will disable automatic padding to prevent `decipher.final()` from checking for and + * removing padding. + * + * Turning auto padding off will only work if the input data's length is a + * multiple of the ciphers block size. + * + * The `decipher.setAutoPadding()` method must be called before `decipher.final()`. + * @since v0.7.1 + * @param [autoPadding=true] + * @return for method chaining. + */ + setAutoPadding(auto_padding?: boolean): this; + } + interface DecipherCCM extends Decipher { + setAuthTag(buffer: NodeJS.ArrayBufferView): this; + setAAD( + buffer: NodeJS.ArrayBufferView, + options: { + plaintextLength: number; + } + ): this; + } + interface DecipherGCM extends Decipher { + setAuthTag(buffer: NodeJS.ArrayBufferView): this; + setAAD( + buffer: NodeJS.ArrayBufferView, + options?: { + plaintextLength: number; + } + ): this; + } + interface DecipherOCB extends Decipher { + setAuthTag(buffer: NodeJS.ArrayBufferView): this; + setAAD( + buffer: NodeJS.ArrayBufferView, + options?: { + plaintextLength: number; + } + ): this; + } + interface PrivateKeyInput { + key: string | Buffer; + format?: KeyFormat | undefined; + type?: 'pkcs1' | 'pkcs8' | 'sec1' | undefined; + passphrase?: string | Buffer | undefined; + } + interface PublicKeyInput { + key: string | Buffer; + format?: KeyFormat | undefined; + type?: 'pkcs1' | 'spki' | undefined; + } + /** + * Asynchronously generates a new random secret key of the given `length`. The`type` will determine which validations will be performed on the `length`. + * + * ```js + * const { + * generateKey + * } = await import('crypto'); + * + * generateKey('hmac', { length: 64 }, (err, key) => { + * if (err) throw err; + * console.log(key.export().toString('hex')); // 46e..........620 + * }); + * ``` + * @since v15.0.0 + * @param type The intended use of the generated secret key. Currently accepted values are `'hmac'` and `'aes'`. + */ + function generateKey( + type: 'hmac' | 'aes', + options: { + length: number; + }, + callback: (err: Error | null, key: KeyObject) => void + ): void; + /** + * Synchronously generates a new random secret key of the given `length`. The`type` will determine which validations will be performed on the `length`. + * + * ```js + * const { + * generateKeySync + * } = await import('crypto'); + * + * const key = generateKeySync('hmac', { length: 64 }); + * console.log(key.export().toString('hex')); // e89..........41e + * ``` + * @since v15.0.0 + * @param type The intended use of the generated secret key. Currently accepted values are `'hmac'` and `'aes'`. + */ + function generateKeySync( + type: 'hmac' | 'aes', + options: { + length: number; + } + ): KeyObject; + interface JsonWebKeyInput { + key: JsonWebKey; + format: 'jwk'; + } + /** + * Creates and returns a new key object containing a private key. If `key` is a + * string or `Buffer`, `format` is assumed to be `'pem'`; otherwise, `key`must be an object with the properties described above. + * + * If the private key is encrypted, a `passphrase` must be specified. The length + * of the passphrase is limited to 1024 bytes. + * @since v11.6.0 + */ + function createPrivateKey(key: PrivateKeyInput | string | Buffer | JsonWebKeyInput): KeyObject; + /** + * Creates and returns a new key object containing a public key. If `key` is a + * string or `Buffer`, `format` is assumed to be `'pem'`; if `key` is a `KeyObject`with type `'private'`, the public key is derived from the given private key; + * otherwise, `key` must be an object with the properties described above. + * + * If the format is `'pem'`, the `'key'` may also be an X.509 certificate. + * + * Because public keys can be derived from private keys, a private key may be + * passed instead of a public key. In that case, this function behaves as if {@link createPrivateKey} had been called, except that the type of the + * returned `KeyObject` will be `'public'` and that the private key cannot be + * extracted from the returned `KeyObject`. Similarly, if a `KeyObject` with type`'private'` is given, a new `KeyObject` with type `'public'` will be returned + * and it will be impossible to extract the private key from the returned object. + * @since v11.6.0 + */ + function createPublicKey(key: PublicKeyInput | string | Buffer | KeyObject | JsonWebKeyInput): KeyObject; + /** + * Creates and returns a new key object containing a secret key for symmetric + * encryption or `Hmac`. + * @since v11.6.0 + * @param encoding The string encoding when `key` is a string. + */ + function createSecretKey(key: NodeJS.ArrayBufferView): KeyObject; + function createSecretKey(key: string, encoding: BufferEncoding): KeyObject; + /** + * Creates and returns a `Sign` object that uses the given `algorithm`. Use {@link getHashes} to obtain the names of the available digest algorithms. + * Optional `options` argument controls the `stream.Writable` behavior. + * + * In some cases, a `Sign` instance can be created using the name of a signature + * algorithm, such as `'RSA-SHA256'`, instead of a digest algorithm. This will use + * the corresponding digest algorithm. This does not work for all signature + * algorithms, such as `'ecdsa-with-SHA256'`, so it is best to always use digest + * algorithm names. + * @since v0.1.92 + * @param options `stream.Writable` options + */ + function createSign(algorithm: string, options?: stream.WritableOptions): Sign; + type DSAEncoding = 'der' | 'ieee-p1363'; + interface SigningOptions { + /** + * @See crypto.constants.RSA_PKCS1_PADDING + */ + padding?: number | undefined; + saltLength?: number | undefined; + dsaEncoding?: DSAEncoding | undefined; + } + interface SignPrivateKeyInput extends PrivateKeyInput, SigningOptions {} + interface SignKeyObjectInput extends SigningOptions { + key: KeyObject; + } + interface VerifyPublicKeyInput extends PublicKeyInput, SigningOptions {} + interface VerifyKeyObjectInput extends SigningOptions { + key: KeyObject; + } + type KeyLike = string | Buffer | KeyObject; + /** + * The `Sign` class is a utility for generating signatures. It can be used in one + * of two ways: + * + * * As a writable `stream`, where data to be signed is written and the `sign.sign()` method is used to generate and return the signature, or + * * Using the `sign.update()` and `sign.sign()` methods to produce the + * signature. + * + * The {@link createSign} method is used to create `Sign` instances. The + * argument is the string name of the hash function to use. `Sign` objects are not + * to be created directly using the `new` keyword. + * + * Example: Using `Sign` and `Verify` objects as streams: + * + * ```js + * const { + * generateKeyPairSync, + * createSign, + * createVerify + * } = await import('crypto'); + * + * const { privateKey, publicKey } = generateKeyPairSync('ec', { + * namedCurve: 'sect239k1' + * }); + * + * const sign = createSign('SHA256'); + * sign.write('some data to sign'); + * sign.end(); + * const signature = sign.sign(privateKey, 'hex'); + * + * const verify = createVerify('SHA256'); + * verify.write('some data to sign'); + * verify.end(); + * console.log(verify.verify(publicKey, signature, 'hex')); + * // Prints: true + * ``` + * + * Example: Using the `sign.update()` and `verify.update()` methods: + * + * ```js + * const { + * generateKeyPairSync, + * createSign, + * createVerify + * } = await import('crypto'); + * + * const { privateKey, publicKey } = generateKeyPairSync('rsa', { + * modulusLength: 2048, + * }); + * + * const sign = createSign('SHA256'); + * sign.update('some data to sign'); + * sign.end(); + * const signature = sign.sign(privateKey); + * + * const verify = createVerify('SHA256'); + * verify.update('some data to sign'); + * verify.end(); + * console.log(verify.verify(publicKey, signature)); + * // Prints: true + * ``` + * @since v0.1.92 + */ + class Sign extends stream.Writable { + private constructor(); + /** + * Updates the `Sign` content with the given `data`, the encoding of which + * is given in `inputEncoding`. + * If `encoding` is not provided, and the `data` is a string, an + * encoding of `'utf8'` is enforced. If `data` is a `Buffer`, `TypedArray`, or`DataView`, then `inputEncoding` is ignored. + * + * This can be called many times with new data as it is streamed. + * @since v0.1.92 + * @param inputEncoding The `encoding` of the `data` string. + */ + update(data: BinaryLike): this; + update(data: string, inputEncoding: Encoding): this; + /** + * Calculates the signature on all the data passed through using either `sign.update()` or `sign.write()`. + * + * If `privateKey` is not a `KeyObject`, this function behaves as if`privateKey` had been passed to {@link createPrivateKey}. If it is an + * object, the following additional properties can be passed: + * + * If `outputEncoding` is provided a string is returned; otherwise a `Buffer` is returned. + * + * The `Sign` object can not be again used after `sign.sign()` method has been + * called. Multiple calls to `sign.sign()` will result in an error being thrown. + * @since v0.1.92 + */ + sign(privateKey: KeyLike | SignKeyObjectInput | SignPrivateKeyInput): Buffer; + sign(privateKey: KeyLike | SignKeyObjectInput | SignPrivateKeyInput, outputFormat: BinaryToTextEncoding): string; + } + /** + * Creates and returns a `Verify` object that uses the given algorithm. + * Use {@link getHashes} to obtain an array of names of the available + * signing algorithms. Optional `options` argument controls the`stream.Writable` behavior. + * + * In some cases, a `Verify` instance can be created using the name of a signature + * algorithm, such as `'RSA-SHA256'`, instead of a digest algorithm. This will use + * the corresponding digest algorithm. This does not work for all signature + * algorithms, such as `'ecdsa-with-SHA256'`, so it is best to always use digest + * algorithm names. + * @since v0.1.92 + * @param options `stream.Writable` options + */ + function createVerify(algorithm: string, options?: stream.WritableOptions): Verify; + /** + * The `Verify` class is a utility for verifying signatures. It can be used in one + * of two ways: + * + * * As a writable `stream` where written data is used to validate against the + * supplied signature, or + * * Using the `verify.update()` and `verify.verify()` methods to verify + * the signature. + * + * The {@link createVerify} method is used to create `Verify` instances.`Verify` objects are not to be created directly using the `new` keyword. + * + * See `Sign` for examples. + * @since v0.1.92 + */ + class Verify extends stream.Writable { + private constructor(); + /** + * Updates the `Verify` content with the given `data`, the encoding of which + * is given in `inputEncoding`. + * If `inputEncoding` is not provided, and the `data` is a string, an + * encoding of `'utf8'` is enforced. If `data` is a `Buffer`, `TypedArray`, or`DataView`, then `inputEncoding` is ignored. + * + * This can be called many times with new data as it is streamed. + * @since v0.1.92 + * @param inputEncoding The `encoding` of the `data` string. + */ + update(data: BinaryLike): Verify; + update(data: string, inputEncoding: Encoding): Verify; + /** + * Verifies the provided data using the given `object` and `signature`. + * + * If `object` is not a `KeyObject`, this function behaves as if`object` had been passed to {@link createPublicKey}. If it is an + * object, the following additional properties can be passed: + * + * The `signature` argument is the previously calculated signature for the data, in + * the `signatureEncoding`. + * If a `signatureEncoding` is specified, the `signature` is expected to be a + * string; otherwise `signature` is expected to be a `Buffer`,`TypedArray`, or `DataView`. + * + * The `verify` object can not be used again after `verify.verify()` has been + * called. Multiple calls to `verify.verify()` will result in an error being + * thrown. + * + * Because public keys can be derived from private keys, a private key may + * be passed instead of a public key. + * @since v0.1.92 + */ + verify(object: KeyLike | VerifyKeyObjectInput | VerifyPublicKeyInput, signature: NodeJS.ArrayBufferView): boolean; + verify(object: KeyLike | VerifyKeyObjectInput | VerifyPublicKeyInput, signature: string, signature_format?: BinaryToTextEncoding): boolean; + } + /** + * Creates a `DiffieHellman` key exchange object using the supplied `prime` and an + * optional specific `generator`. + * + * The `generator` argument can be a number, string, or `Buffer`. If`generator` is not specified, the value `2` is used. + * + * If `primeEncoding` is specified, `prime` is expected to be a string; otherwise + * a `Buffer`, `TypedArray`, or `DataView` is expected. + * + * If `generatorEncoding` is specified, `generator` is expected to be a string; + * otherwise a number, `Buffer`, `TypedArray`, or `DataView` is expected. + * @since v0.11.12 + * @param primeEncoding The `encoding` of the `prime` string. + * @param [generator=2] + * @param generatorEncoding The `encoding` of the `generator` string. + */ + function createDiffieHellman(primeLength: number, generator?: number): DiffieHellman; + function createDiffieHellman(prime: ArrayBuffer | NodeJS.ArrayBufferView, generator?: number | ArrayBuffer | NodeJS.ArrayBufferView): DiffieHellman; + function createDiffieHellman(prime: ArrayBuffer | NodeJS.ArrayBufferView, generator: string, generatorEncoding: BinaryToTextEncoding): DiffieHellman; + function createDiffieHellman(prime: string, primeEncoding: BinaryToTextEncoding, generator?: number | ArrayBuffer | NodeJS.ArrayBufferView): DiffieHellman; + function createDiffieHellman(prime: string, primeEncoding: BinaryToTextEncoding, generator: string, generatorEncoding: BinaryToTextEncoding): DiffieHellman; + /** + * The `DiffieHellman` class is a utility for creating Diffie-Hellman key + * exchanges. + * + * Instances of the `DiffieHellman` class can be created using the {@link createDiffieHellman} function. + * + * ```js + * import assert from 'assert'; + * + * const { + * createDiffieHellman + * } = await import('crypto'); + * + * // Generate Alice's keys... + * const alice = createDiffieHellman(2048); + * const aliceKey = alice.generateKeys(); + * + * // Generate Bob's keys... + * const bob = createDiffieHellman(alice.getPrime(), alice.getGenerator()); + * const bobKey = bob.generateKeys(); + * + * // Exchange and generate the secret... + * const aliceSecret = alice.computeSecret(bobKey); + * const bobSecret = bob.computeSecret(aliceKey); + * + * // OK + * assert.strictEqual(aliceSecret.toString('hex'), bobSecret.toString('hex')); + * ``` + * @since v0.5.0 + */ + class DiffieHellman { + private constructor(); + /** + * Generates private and public Diffie-Hellman key values, and returns + * the public key in the specified `encoding`. This key should be + * transferred to the other party. + * If `encoding` is provided a string is returned; otherwise a `Buffer` is returned. + * @since v0.5.0 + * @param encoding The `encoding` of the return value. + */ + generateKeys(): Buffer; + generateKeys(encoding: BinaryToTextEncoding): string; + /** + * Computes the shared secret using `otherPublicKey` as the other + * party's public key and returns the computed shared secret. The supplied + * key is interpreted using the specified `inputEncoding`, and secret is + * encoded using specified `outputEncoding`. + * If the `inputEncoding` is not + * provided, `otherPublicKey` is expected to be a `Buffer`,`TypedArray`, or `DataView`. + * + * If `outputEncoding` is given a string is returned; otherwise, a `Buffer` is returned. + * @since v0.5.0 + * @param inputEncoding The `encoding` of an `otherPublicKey` string. + * @param outputEncoding The `encoding` of the return value. + */ + computeSecret(otherPublicKey: NodeJS.ArrayBufferView, inputEncoding?: null, outputEncoding?: null): Buffer; + computeSecret(otherPublicKey: string, inputEncoding: BinaryToTextEncoding, outputEncoding?: null): Buffer; + computeSecret(otherPublicKey: NodeJS.ArrayBufferView, inputEncoding: null, outputEncoding: BinaryToTextEncoding): string; + computeSecret(otherPublicKey: string, inputEncoding: BinaryToTextEncoding, outputEncoding: BinaryToTextEncoding): string; + /** + * Returns the Diffie-Hellman prime in the specified `encoding`. + * If `encoding` is provided a string is + * returned; otherwise a `Buffer` is returned. + * @since v0.5.0 + * @param encoding The `encoding` of the return value. + */ + getPrime(): Buffer; + getPrime(encoding: BinaryToTextEncoding): string; + /** + * Returns the Diffie-Hellman generator in the specified `encoding`. + * If `encoding` is provided a string is + * returned; otherwise a `Buffer` is returned. + * @since v0.5.0 + * @param encoding The `encoding` of the return value. + */ + getGenerator(): Buffer; + getGenerator(encoding: BinaryToTextEncoding): string; + /** + * Returns the Diffie-Hellman public key in the specified `encoding`. + * If `encoding` is provided a + * string is returned; otherwise a `Buffer` is returned. + * @since v0.5.0 + * @param encoding The `encoding` of the return value. + */ + getPublicKey(): Buffer; + getPublicKey(encoding: BinaryToTextEncoding): string; + /** + * Returns the Diffie-Hellman private key in the specified `encoding`. + * If `encoding` is provided a + * string is returned; otherwise a `Buffer` is returned. + * @since v0.5.0 + * @param encoding The `encoding` of the return value. + */ + getPrivateKey(): Buffer; + getPrivateKey(encoding: BinaryToTextEncoding): string; + /** + * Sets the Diffie-Hellman public key. If the `encoding` argument is provided,`publicKey` is expected + * to be a string. If no `encoding` is provided, `publicKey` is expected + * to be a `Buffer`, `TypedArray`, or `DataView`. + * @since v0.5.0 + * @param encoding The `encoding` of the `publicKey` string. + */ + setPublicKey(publicKey: NodeJS.ArrayBufferView): void; + setPublicKey(publicKey: string, encoding: BufferEncoding): void; + /** + * Sets the Diffie-Hellman private key. If the `encoding` argument is provided,`privateKey` is expected + * to be a string. If no `encoding` is provided, `privateKey` is expected + * to be a `Buffer`, `TypedArray`, or `DataView`. + * @since v0.5.0 + * @param encoding The `encoding` of the `privateKey` string. + */ + setPrivateKey(privateKey: NodeJS.ArrayBufferView): void; + setPrivateKey(privateKey: string, encoding: BufferEncoding): void; + /** + * A bit field containing any warnings and/or errors resulting from a check + * performed during initialization of the `DiffieHellman` object. + * + * The following values are valid for this property (as defined in `constants`module): + * + * * `DH_CHECK_P_NOT_SAFE_PRIME` + * * `DH_CHECK_P_NOT_PRIME` + * * `DH_UNABLE_TO_CHECK_GENERATOR` + * * `DH_NOT_SUITABLE_GENERATOR` + * @since v0.11.12 + */ + verifyError: number; + } + /** + * The `DiffieHellmanGroup` class takes a well-known modp group as its argument. + * It works the same as `DiffieHellman`, except that it does not allow changing its keys after creation. + * In other words, it does not implement `setPublicKey()` or `setPrivateKey()` methods. + * + * ```js + * const { createDiffieHellmanGroup } = await import('node:crypto'); + * const dh = createDiffieHellmanGroup('modp1'); + * ``` + * The name (e.g. `'modp1'`) is taken from [RFC 2412](https://www.rfc-editor.org/rfc/rfc2412.txt) (modp1 and 2) and [RFC 3526](https://www.rfc-editor.org/rfc/rfc3526.txt): + * ```bash + * $ perl -ne 'print "$1\n" if /"(modp\d+)"/' src/node_crypto_groups.h + * modp1 # 768 bits + * modp2 # 1024 bits + * modp5 # 1536 bits + * modp14 # 2048 bits + * modp15 # etc. + * modp16 + * modp17 + * modp18 + * ``` + * @since v0.7.5 + */ + const DiffieHellmanGroup: DiffieHellmanGroupConstructor; + interface DiffieHellmanGroupConstructor { + new(name: string): DiffieHellmanGroup; + (name: string): DiffieHellmanGroup; + readonly prototype: DiffieHellmanGroup; + } + type DiffieHellmanGroup = Omit; + /** + * Creates a predefined `DiffieHellmanGroup` key exchange object. The + * supported groups are: `'modp1'`, `'modp2'`, `'modp5'` (defined in [RFC 2412](https://www.rfc-editor.org/rfc/rfc2412.txt), but see `Caveats`) and `'modp14'`, `'modp15'`,`'modp16'`, `'modp17'`, + * `'modp18'` (defined in [RFC 3526](https://www.rfc-editor.org/rfc/rfc3526.txt)). The + * returned object mimics the interface of objects created by {@link createDiffieHellman}, but will not allow changing + * the keys (with `diffieHellman.setPublicKey()`, for example). The + * advantage of using this method is that the parties do not have to + * generate nor exchange a group modulus beforehand, saving both processor + * and communication time. + * + * Example (obtaining a shared secret): + * + * ```js + * const { + * getDiffieHellman + * } = await import('crypto'); + * const alice = getDiffieHellman('modp14'); + * const bob = getDiffieHellman('modp14'); + * + * alice.generateKeys(); + * bob.generateKeys(); + * + * const aliceSecret = alice.computeSecret(bob.getPublicKey(), null, 'hex'); + * const bobSecret = bob.computeSecret(alice.getPublicKey(), null, 'hex'); + * + * // aliceSecret and bobSecret should be the same + * console.log(aliceSecret === bobSecret); + * ``` + * @since v0.7.5 + */ + function getDiffieHellman(groupName: string): DiffieHellmanGroup; + /** + * An alias for {@link getDiffieHellman} + * @since v0.9.3 + */ + function createDiffieHellmanGroup(name: string): DiffieHellmanGroup; + /** + * Provides an asynchronous Password-Based Key Derivation Function 2 (PBKDF2) + * implementation. A selected HMAC digest algorithm specified by `digest` is + * applied to derive a key of the requested byte length (`keylen`) from the`password`, `salt` and `iterations`. + * + * The supplied `callback` function is called with two arguments: `err` and`derivedKey`. If an error occurs while deriving the key, `err` will be set; + * otherwise `err` will be `null`. By default, the successfully generated`derivedKey` will be passed to the callback as a `Buffer`. An error will be + * thrown if any of the input arguments specify invalid values or types. + * + * If `digest` is `null`, `'sha1'` will be used. This behavior is deprecated, + * please specify a `digest` explicitly. + * + * The `iterations` argument must be a number set as high as possible. The + * higher the number of iterations, the more secure the derived key will be, + * but will take a longer amount of time to complete. + * + * The `salt` should be as unique as possible. It is recommended that a salt is + * random and at least 16 bytes long. See [NIST SP 800-132](https://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-132.pdf) for details. + * + * When passing strings for `password` or `salt`, please consider `caveats when using strings as inputs to cryptographic APIs`. + * + * ```js + * const { + * pbkdf2 + * } = await import('crypto'); + * + * pbkdf2('secret', 'salt', 100000, 64, 'sha512', (err, derivedKey) => { + * if (err) throw err; + * console.log(derivedKey.toString('hex')); // '3745e48...08d59ae' + * }); + * ``` + * + * The `crypto.DEFAULT_ENCODING` property can be used to change the way the`derivedKey` is passed to the callback. This property, however, has been + * deprecated and use should be avoided. + * + * ```js + * import crypto from 'crypto'; + * crypto.DEFAULT_ENCODING = 'hex'; + * crypto.pbkdf2('secret', 'salt', 100000, 512, 'sha512', (err, derivedKey) => { + * if (err) throw err; + * console.log(derivedKey); // '3745e48...aa39b34' + * }); + * ``` + * + * An array of supported digest functions can be retrieved using {@link getHashes}. + * + * This API uses libuv's threadpool, which can have surprising and + * negative performance implications for some applications; see the `UV_THREADPOOL_SIZE` documentation for more information. + * @since v0.5.5 + */ + function pbkdf2(password: BinaryLike, salt: BinaryLike, iterations: number, keylen: number, digest: string, callback: (err: Error | null, derivedKey: Buffer) => void): void; + /** + * Provides a synchronous Password-Based Key Derivation Function 2 (PBKDF2) + * implementation. A selected HMAC digest algorithm specified by `digest` is + * applied to derive a key of the requested byte length (`keylen`) from the`password`, `salt` and `iterations`. + * + * If an error occurs an `Error` will be thrown, otherwise the derived key will be + * returned as a `Buffer`. + * + * If `digest` is `null`, `'sha1'` will be used. This behavior is deprecated, + * please specify a `digest` explicitly. + * + * The `iterations` argument must be a number set as high as possible. The + * higher the number of iterations, the more secure the derived key will be, + * but will take a longer amount of time to complete. + * + * The `salt` should be as unique as possible. It is recommended that a salt is + * random and at least 16 bytes long. See [NIST SP 800-132](https://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-132.pdf) for details. + * + * When passing strings for `password` or `salt`, please consider `caveats when using strings as inputs to cryptographic APIs`. + * + * ```js + * const { + * pbkdf2Sync + * } = await import('crypto'); + * + * const key = pbkdf2Sync('secret', 'salt', 100000, 64, 'sha512'); + * console.log(key.toString('hex')); // '3745e48...08d59ae' + * ``` + * + * The `crypto.DEFAULT_ENCODING` property may be used to change the way the`derivedKey` is returned. This property, however, is deprecated and use + * should be avoided. + * + * ```js + * import crypto from 'crypto'; + * crypto.DEFAULT_ENCODING = 'hex'; + * const key = crypto.pbkdf2Sync('secret', 'salt', 100000, 512, 'sha512'); + * console.log(key); // '3745e48...aa39b34' + * ``` + * + * An array of supported digest functions can be retrieved using {@link getHashes}. + * @since v0.9.3 + */ + function pbkdf2Sync(password: BinaryLike, salt: BinaryLike, iterations: number, keylen: number, digest: string): Buffer; + /** + * Generates cryptographically strong pseudorandom data. The `size` argument + * is a number indicating the number of bytes to generate. + * + * If a `callback` function is provided, the bytes are generated asynchronously + * and the `callback` function is invoked with two arguments: `err` and `buf`. + * If an error occurs, `err` will be an `Error` object; otherwise it is `null`. The`buf` argument is a `Buffer` containing the generated bytes. + * + * ```js + * // Asynchronous + * const { + * randomBytes + * } = await import('crypto'); + * + * randomBytes(256, (err, buf) => { + * if (err) throw err; + * console.log(`${buf.length} bytes of random data: ${buf.toString('hex')}`); + * }); + * ``` + * + * If the `callback` function is not provided, the random bytes are generated + * synchronously and returned as a `Buffer`. An error will be thrown if + * there is a problem generating the bytes. + * + * ```js + * // Synchronous + * const { + * randomBytes + * } = await import('crypto'); + * + * const buf = randomBytes(256); + * console.log( + * `${buf.length} bytes of random data: ${buf.toString('hex')}`); + * ``` + * + * The `crypto.randomBytes()` method will not complete until there is + * sufficient entropy available. + * This should normally never take longer than a few milliseconds. The only time + * when generating the random bytes may conceivably block for a longer period of + * time is right after boot, when the whole system is still low on entropy. + * + * This API uses libuv's threadpool, which can have surprising and + * negative performance implications for some applications; see the `UV_THREADPOOL_SIZE` documentation for more information. + * + * The asynchronous version of `crypto.randomBytes()` is carried out in a single + * threadpool request. To minimize threadpool task length variation, partition + * large `randomBytes` requests when doing so as part of fulfilling a client + * request. + * @since v0.5.8 + * @param size The number of bytes to generate. The `size` must not be larger than `2**31 - 1`. + * @return if the `callback` function is not provided. + */ + function randomBytes(size: number): Buffer; + function randomBytes(size: number, callback: (err: Error | null, buf: Buffer) => void): void; + function pseudoRandomBytes(size: number): Buffer; + function pseudoRandomBytes(size: number, callback: (err: Error | null, buf: Buffer) => void): void; + /** + * Return a random integer `n` such that `min <= n < max`. This + * implementation avoids [modulo bias](https://en.wikipedia.org/wiki/Fisher%E2%80%93Yates_shuffle#Modulo_bias). + * + * The range (`max - min`) must be less than 248. `min` and `max` must + * be [safe integers](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/isSafeInteger). + * + * If the `callback` function is not provided, the random integer is + * generated synchronously. + * + * ```js + * // Asynchronous + * const { + * randomInt + * } = await import('crypto'); + * + * randomInt(3, (err, n) => { + * if (err) throw err; + * console.log(`Random number chosen from (0, 1, 2): ${n}`); + * }); + * ``` + * + * ```js + * // Synchronous + * const { + * randomInt + * } = await import('crypto'); + * + * const n = randomInt(3); + * console.log(`Random number chosen from (0, 1, 2): ${n}`); + * ``` + * + * ```js + * // With `min` argument + * const { + * randomInt + * } = await import('crypto'); + * + * const n = randomInt(1, 7); + * console.log(`The dice rolled: ${n}`); + * ``` + * @since v14.10.0, v12.19.0 + * @param [min=0] Start of random range (inclusive). + * @param max End of random range (exclusive). + * @param callback `function(err, n) {}`. + */ + function randomInt(max: number): number; + function randomInt(min: number, max: number): number; + function randomInt(max: number, callback: (err: Error | null, value: number) => void): void; + function randomInt(min: number, max: number, callback: (err: Error | null, value: number) => void): void; + /** + * Synchronous version of {@link randomFill}. + * + * ```js + * import { Buffer } from 'buffer'; + * const { randomFillSync } = await import('crypto'); + * + * const buf = Buffer.alloc(10); + * console.log(randomFillSync(buf).toString('hex')); + * + * randomFillSync(buf, 5); + * console.log(buf.toString('hex')); + * + * // The above is equivalent to the following: + * randomFillSync(buf, 5, 5); + * console.log(buf.toString('hex')); + * ``` + * + * Any `ArrayBuffer`, `TypedArray` or `DataView` instance may be passed as`buffer`. + * + * ```js + * import { Buffer } from 'buffer'; + * const { randomFillSync } = await import('crypto'); + * + * const a = new Uint32Array(10); + * console.log(Buffer.from(randomFillSync(a).buffer, + * a.byteOffset, a.byteLength).toString('hex')); + * + * const b = new DataView(new ArrayBuffer(10)); + * console.log(Buffer.from(randomFillSync(b).buffer, + * b.byteOffset, b.byteLength).toString('hex')); + * + * const c = new ArrayBuffer(10); + * console.log(Buffer.from(randomFillSync(c)).toString('hex')); + * ``` + * @since v7.10.0, v6.13.0 + * @param buffer Must be supplied. The size of the provided `buffer` must not be larger than `2**31 - 1`. + * @param [offset=0] + * @param [size=buffer.length - offset] + * @return The object passed as `buffer` argument. + */ + function randomFillSync(buffer: T, offset?: number, size?: number): T; + /** + * This function is similar to {@link randomBytes} but requires the first + * argument to be a `Buffer` that will be filled. It also + * requires that a callback is passed in. + * + * If the `callback` function is not provided, an error will be thrown. + * + * ```js + * import { Buffer } from 'buffer'; + * const { randomFill } = await import('crypto'); + * + * const buf = Buffer.alloc(10); + * randomFill(buf, (err, buf) => { + * if (err) throw err; + * console.log(buf.toString('hex')); + * }); + * + * randomFill(buf, 5, (err, buf) => { + * if (err) throw err; + * console.log(buf.toString('hex')); + * }); + * + * // The above is equivalent to the following: + * randomFill(buf, 5, 5, (err, buf) => { + * if (err) throw err; + * console.log(buf.toString('hex')); + * }); + * ``` + * + * Any `ArrayBuffer`, `TypedArray`, or `DataView` instance may be passed as`buffer`. + * + * While this includes instances of `Float32Array` and `Float64Array`, this + * function should not be used to generate random floating-point numbers. The + * result may contain `+Infinity`, `-Infinity`, and `NaN`, and even if the array + * contains finite numbers only, they are not drawn from a uniform random + * distribution and have no meaningful lower or upper bounds. + * + * ```js + * import { Buffer } from 'buffer'; + * const { randomFill } = await import('crypto'); + * + * const a = new Uint32Array(10); + * randomFill(a, (err, buf) => { + * if (err) throw err; + * console.log(Buffer.from(buf.buffer, buf.byteOffset, buf.byteLength) + * .toString('hex')); + * }); + * + * const b = new DataView(new ArrayBuffer(10)); + * randomFill(b, (err, buf) => { + * if (err) throw err; + * console.log(Buffer.from(buf.buffer, buf.byteOffset, buf.byteLength) + * .toString('hex')); + * }); + * + * const c = new ArrayBuffer(10); + * randomFill(c, (err, buf) => { + * if (err) throw err; + * console.log(Buffer.from(buf).toString('hex')); + * }); + * ``` + * + * This API uses libuv's threadpool, which can have surprising and + * negative performance implications for some applications; see the `UV_THREADPOOL_SIZE` documentation for more information. + * + * The asynchronous version of `crypto.randomFill()` is carried out in a single + * threadpool request. To minimize threadpool task length variation, partition + * large `randomFill` requests when doing so as part of fulfilling a client + * request. + * @since v7.10.0, v6.13.0 + * @param buffer Must be supplied. The size of the provided `buffer` must not be larger than `2**31 - 1`. + * @param [offset=0] + * @param [size=buffer.length - offset] + * @param callback `function(err, buf) {}`. + */ + function randomFill(buffer: T, callback: (err: Error | null, buf: T) => void): void; + function randomFill(buffer: T, offset: number, callback: (err: Error | null, buf: T) => void): void; + function randomFill(buffer: T, offset: number, size: number, callback: (err: Error | null, buf: T) => void): void; + interface ScryptOptions { + cost?: number | undefined; + blockSize?: number | undefined; + parallelization?: number | undefined; + N?: number | undefined; + r?: number | undefined; + p?: number | undefined; + maxmem?: number | undefined; + } + /** + * Provides an asynchronous [scrypt](https://en.wikipedia.org/wiki/Scrypt) implementation. Scrypt is a password-based + * key derivation function that is designed to be expensive computationally and + * memory-wise in order to make brute-force attacks unrewarding. + * + * The `salt` should be as unique as possible. It is recommended that a salt is + * random and at least 16 bytes long. See [NIST SP 800-132](https://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-132.pdf) for details. + * + * When passing strings for `password` or `salt`, please consider `caveats when using strings as inputs to cryptographic APIs`. + * + * The `callback` function is called with two arguments: `err` and `derivedKey`.`err` is an exception object when key derivation fails, otherwise `err` is`null`. `derivedKey` is passed to the + * callback as a `Buffer`. + * + * An exception is thrown when any of the input arguments specify invalid values + * or types. + * + * ```js + * const { + * scrypt + * } = await import('crypto'); + * + * // Using the factory defaults. + * scrypt('password', 'salt', 64, (err, derivedKey) => { + * if (err) throw err; + * console.log(derivedKey.toString('hex')); // '3745e48...08d59ae' + * }); + * // Using a custom N parameter. Must be a power of two. + * scrypt('password', 'salt', 64, { N: 1024 }, (err, derivedKey) => { + * if (err) throw err; + * console.log(derivedKey.toString('hex')); // '3745e48...aa39b34' + * }); + * ``` + * @since v10.5.0 + */ + function scrypt(password: BinaryLike, salt: BinaryLike, keylen: number, callback: (err: Error | null, derivedKey: Buffer) => void): void; + function scrypt(password: BinaryLike, salt: BinaryLike, keylen: number, options: ScryptOptions, callback: (err: Error | null, derivedKey: Buffer) => void): void; + /** + * Provides a synchronous [scrypt](https://en.wikipedia.org/wiki/Scrypt) implementation. Scrypt is a password-based + * key derivation function that is designed to be expensive computationally and + * memory-wise in order to make brute-force attacks unrewarding. + * + * The `salt` should be as unique as possible. It is recommended that a salt is + * random and at least 16 bytes long. See [NIST SP 800-132](https://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-132.pdf) for details. + * + * When passing strings for `password` or `salt`, please consider `caveats when using strings as inputs to cryptographic APIs`. + * + * An exception is thrown when key derivation fails, otherwise the derived key is + * returned as a `Buffer`. + * + * An exception is thrown when any of the input arguments specify invalid values + * or types. + * + * ```js + * const { + * scryptSync + * } = await import('crypto'); + * // Using the factory defaults. + * + * const key1 = scryptSync('password', 'salt', 64); + * console.log(key1.toString('hex')); // '3745e48...08d59ae' + * // Using a custom N parameter. Must be a power of two. + * const key2 = scryptSync('password', 'salt', 64, { N: 1024 }); + * console.log(key2.toString('hex')); // '3745e48...aa39b34' + * ``` + * @since v10.5.0 + */ + function scryptSync(password: BinaryLike, salt: BinaryLike, keylen: number, options?: ScryptOptions): Buffer; + interface RsaPublicKey { + key: KeyLike; + padding?: number | undefined; + } + interface RsaPrivateKey { + key: KeyLike; + passphrase?: string | undefined; + /** + * @default 'sha1' + */ + oaepHash?: string | undefined; + oaepLabel?: NodeJS.TypedArray | undefined; + padding?: number | undefined; + } + /** + * Encrypts the content of `buffer` with `key` and returns a new `Buffer` with encrypted content. The returned data can be decrypted using + * the corresponding private key, for example using {@link privateDecrypt}. + * + * If `key` is not a `KeyObject`, this function behaves as if`key` had been passed to {@link createPublicKey}. If it is an + * object, the `padding` property can be passed. Otherwise, this function uses`RSA_PKCS1_OAEP_PADDING`. + * + * Because RSA public keys can be derived from private keys, a private key may + * be passed instead of a public key. + * @since v0.11.14 + */ + function publicEncrypt(key: RsaPublicKey | RsaPrivateKey | KeyLike, buffer: NodeJS.ArrayBufferView): Buffer; + /** + * Decrypts `buffer` with `key`.`buffer` was previously encrypted using + * the corresponding private key, for example using {@link privateEncrypt}. + * + * If `key` is not a `KeyObject`, this function behaves as if`key` had been passed to {@link createPublicKey}. If it is an + * object, the `padding` property can be passed. Otherwise, this function uses`RSA_PKCS1_PADDING`. + * + * Because RSA public keys can be derived from private keys, a private key may + * be passed instead of a public key. + * @since v1.1.0 + */ + function publicDecrypt(key: RsaPublicKey | RsaPrivateKey | KeyLike, buffer: NodeJS.ArrayBufferView): Buffer; + /** + * Decrypts `buffer` with `privateKey`. `buffer` was previously encrypted using + * the corresponding public key, for example using {@link publicEncrypt}. + * + * If `privateKey` is not a `KeyObject`, this function behaves as if`privateKey` had been passed to {@link createPrivateKey}. If it is an + * object, the `padding` property can be passed. Otherwise, this function uses`RSA_PKCS1_OAEP_PADDING`. + * @since v0.11.14 + */ + function privateDecrypt(privateKey: RsaPrivateKey | KeyLike, buffer: NodeJS.ArrayBufferView): Buffer; + /** + * Encrypts `buffer` with `privateKey`. The returned data can be decrypted using + * the corresponding public key, for example using {@link publicDecrypt}. + * + * If `privateKey` is not a `KeyObject`, this function behaves as if`privateKey` had been passed to {@link createPrivateKey}. If it is an + * object, the `padding` property can be passed. Otherwise, this function uses`RSA_PKCS1_PADDING`. + * @since v1.1.0 + */ + function privateEncrypt(privateKey: RsaPrivateKey | KeyLike, buffer: NodeJS.ArrayBufferView): Buffer; + /** + * ```js + * const { + * getCiphers + * } = await import('crypto'); + * + * console.log(getCiphers()); // ['aes-128-cbc', 'aes-128-ccm', ...] + * ``` + * @since v0.9.3 + * @return An array with the names of the supported cipher algorithms. + */ + function getCiphers(): string[]; + /** + * ```js + * const { + * getCurves + * } = await import('crypto'); + * + * console.log(getCurves()); // ['Oakley-EC2N-3', 'Oakley-EC2N-4', ...] + * ``` + * @since v2.3.0 + * @return An array with the names of the supported elliptic curves. + */ + function getCurves(): string[]; + /** + * @since v10.0.0 + * @return `1` if and only if a FIPS compliant crypto provider is currently in use, `0` otherwise. A future semver-major release may change the return type of this API to a {boolean}. + */ + function getFips(): 1 | 0; + /** + * Enables the FIPS compliant crypto provider in a FIPS-enabled Node.js build. Throws an error if FIPS mode is not available. + * @since v10.0.0 + * @param bool `true` to enable FIPS mode. + */ + function setFips(bool: boolean): void; + /** + * ```js + * const { + * getHashes + * } = await import('crypto'); + * + * console.log(getHashes()); // ['DSA', 'DSA-SHA', 'DSA-SHA1', ...] + * ``` + * @since v0.9.3 + * @return An array of the names of the supported hash algorithms, such as `'RSA-SHA256'`. Hash algorithms are also called "digest" algorithms. + */ + function getHashes(): string[]; + /** + * The `ECDH` class is a utility for creating Elliptic Curve Diffie-Hellman (ECDH) + * key exchanges. + * + * Instances of the `ECDH` class can be created using the {@link createECDH} function. + * + * ```js + * import assert from 'assert'; + * + * const { + * createECDH + * } = await import('crypto'); + * + * // Generate Alice's keys... + * const alice = createECDH('secp521r1'); + * const aliceKey = alice.generateKeys(); + * + * // Generate Bob's keys... + * const bob = createECDH('secp521r1'); + * const bobKey = bob.generateKeys(); + * + * // Exchange and generate the secret... + * const aliceSecret = alice.computeSecret(bobKey); + * const bobSecret = bob.computeSecret(aliceKey); + * + * assert.strictEqual(aliceSecret.toString('hex'), bobSecret.toString('hex')); + * // OK + * ``` + * @since v0.11.14 + */ + class ECDH { + private constructor(); + /** + * Converts the EC Diffie-Hellman public key specified by `key` and `curve` to the + * format specified by `format`. The `format` argument specifies point encoding + * and can be `'compressed'`, `'uncompressed'` or `'hybrid'`. The supplied key is + * interpreted using the specified `inputEncoding`, and the returned key is encoded + * using the specified `outputEncoding`. + * + * Use {@link getCurves} to obtain a list of available curve names. + * On recent OpenSSL releases, `openssl ecparam -list_curves` will also display + * the name and description of each available elliptic curve. + * + * If `format` is not specified the point will be returned in `'uncompressed'`format. + * + * If the `inputEncoding` is not provided, `key` is expected to be a `Buffer`,`TypedArray`, or `DataView`. + * + * Example (uncompressing a key): + * + * ```js + * const { + * createECDH, + * ECDH + * } = await import('crypto'); + * + * const ecdh = createECDH('secp256k1'); + * ecdh.generateKeys(); + * + * const compressedKey = ecdh.getPublicKey('hex', 'compressed'); + * + * const uncompressedKey = ECDH.convertKey(compressedKey, + * 'secp256k1', + * 'hex', + * 'hex', + * 'uncompressed'); + * + * // The converted key and the uncompressed public key should be the same + * console.log(uncompressedKey === ecdh.getPublicKey('hex')); + * ``` + * @since v10.0.0 + * @param inputEncoding The `encoding` of the `key` string. + * @param outputEncoding The `encoding` of the return value. + * @param [format='uncompressed'] + */ + static convertKey( + key: BinaryLike, + curve: string, + inputEncoding?: BinaryToTextEncoding, + outputEncoding?: 'latin1' | 'hex' | 'base64' | 'base64url', + format?: 'uncompressed' | 'compressed' | 'hybrid' + ): Buffer | string; + /** + * Generates private and public EC Diffie-Hellman key values, and returns + * the public key in the specified `format` and `encoding`. This key should be + * transferred to the other party. + * + * The `format` argument specifies point encoding and can be `'compressed'` or`'uncompressed'`. If `format` is not specified, the point will be returned in`'uncompressed'` format. + * + * If `encoding` is provided a string is returned; otherwise a `Buffer` is returned. + * @since v0.11.14 + * @param encoding The `encoding` of the return value. + * @param [format='uncompressed'] + */ + generateKeys(): Buffer; + generateKeys(encoding: BinaryToTextEncoding, format?: ECDHKeyFormat): string; + /** + * Computes the shared secret using `otherPublicKey` as the other + * party's public key and returns the computed shared secret. The supplied + * key is interpreted using specified `inputEncoding`, and the returned secret + * is encoded using the specified `outputEncoding`. + * If the `inputEncoding` is not + * provided, `otherPublicKey` is expected to be a `Buffer`, `TypedArray`, or`DataView`. + * + * If `outputEncoding` is given a string will be returned; otherwise a `Buffer` is returned. + * + * `ecdh.computeSecret` will throw an`ERR_CRYPTO_ECDH_INVALID_PUBLIC_KEY` error when `otherPublicKey`lies outside of the elliptic curve. Since `otherPublicKey` is + * usually supplied from a remote user over an insecure network, + * be sure to handle this exception accordingly. + * @since v0.11.14 + * @param inputEncoding The `encoding` of the `otherPublicKey` string. + * @param outputEncoding The `encoding` of the return value. + */ + computeSecret(otherPublicKey: NodeJS.ArrayBufferView): Buffer; + computeSecret(otherPublicKey: string, inputEncoding: BinaryToTextEncoding): Buffer; + computeSecret(otherPublicKey: NodeJS.ArrayBufferView, outputEncoding: BinaryToTextEncoding): string; + computeSecret(otherPublicKey: string, inputEncoding: BinaryToTextEncoding, outputEncoding: BinaryToTextEncoding): string; + /** + * If `encoding` is specified, a string is returned; otherwise a `Buffer` is + * returned. + * @since v0.11.14 + * @param encoding The `encoding` of the return value. + * @return The EC Diffie-Hellman in the specified `encoding`. + */ + getPrivateKey(): Buffer; + getPrivateKey(encoding: BinaryToTextEncoding): string; + /** + * The `format` argument specifies point encoding and can be `'compressed'` or`'uncompressed'`. If `format` is not specified the point will be returned in`'uncompressed'` format. + * + * If `encoding` is specified, a string is returned; otherwise a `Buffer` is + * returned. + * @since v0.11.14 + * @param [encoding] The `encoding` of the return value. + * @param [format='uncompressed'] + * @return The EC Diffie-Hellman public key in the specified `encoding` and `format`. + */ + getPublicKey(encoding?: null, format?: ECDHKeyFormat): Buffer; + getPublicKey(encoding: BinaryToTextEncoding, format?: ECDHKeyFormat): string; + /** + * Sets the EC Diffie-Hellman private key. + * If `encoding` is provided, `privateKey` is expected + * to be a string; otherwise `privateKey` is expected to be a `Buffer`,`TypedArray`, or `DataView`. + * + * If `privateKey` is not valid for the curve specified when the `ECDH` object was + * created, an error is thrown. Upon setting the private key, the associated + * public point (key) is also generated and set in the `ECDH` object. + * @since v0.11.14 + * @param encoding The `encoding` of the `privateKey` string. + */ + setPrivateKey(privateKey: NodeJS.ArrayBufferView): void; + setPrivateKey(privateKey: string, encoding: BinaryToTextEncoding): void; + } + /** + * Creates an Elliptic Curve Diffie-Hellman (`ECDH`) key exchange object using a + * predefined curve specified by the `curveName` string. Use {@link getCurves} to obtain a list of available curve names. On recent + * OpenSSL releases, `openssl ecparam -list_curves` will also display the name + * and description of each available elliptic curve. + * @since v0.11.14 + */ + function createECDH(curveName: string): ECDH; + /** + * This function is based on a constant-time algorithm. + * Returns true if `a` is equal to `b`, without leaking timing information that + * would allow an attacker to guess one of the values. This is suitable for + * comparing HMAC digests or secret values like authentication cookies or [capability urls](https://www.w3.org/TR/capability-urls/). + * + * `a` and `b` must both be `Buffer`s, `TypedArray`s, or `DataView`s, and they + * must have the same byte length. An error is thrown if `a` and `b` have + * different byte lengths. + * + * If at least one of `a` and `b` is a `TypedArray` with more than one byte per + * entry, such as `Uint16Array`, the result will be computed using the platform + * byte order. + * + * Use of `crypto.timingSafeEqual` does not guarantee that the _surrounding_ code + * is timing-safe. Care should be taken to ensure that the surrounding code does + * not introduce timing vulnerabilities. + * @since v6.6.0 + */ + function timingSafeEqual(a: NodeJS.ArrayBufferView, b: NodeJS.ArrayBufferView): boolean; + /** @deprecated since v10.0.0 */ + const DEFAULT_ENCODING: BufferEncoding; + type KeyType = 'rsa' | 'rsa-pss' | 'dsa' | 'ec' | 'ed25519' | 'ed448' | 'x25519' | 'x448'; + type KeyFormat = 'pem' | 'der'; + interface BasePrivateKeyEncodingOptions { + format: T; + cipher?: string | undefined; + passphrase?: string | undefined; + } + interface KeyPairKeyObjectResult { + publicKey: KeyObject; + privateKey: KeyObject; + } + interface ED25519KeyPairKeyObjectOptions {} + interface ED448KeyPairKeyObjectOptions {} + interface X25519KeyPairKeyObjectOptions {} + interface X448KeyPairKeyObjectOptions {} + interface ECKeyPairKeyObjectOptions { + /** + * Name of the curve to use + */ + namedCurve: string; + } + interface RSAKeyPairKeyObjectOptions { + /** + * Key size in bits + */ + modulusLength: number; + /** + * Public exponent + * @default 0x10001 + */ + publicExponent?: number | undefined; + } + interface RSAPSSKeyPairKeyObjectOptions { + /** + * Key size in bits + */ + modulusLength: number; + /** + * Public exponent + * @default 0x10001 + */ + publicExponent?: number | undefined; + /** + * Name of the message digest + */ + hashAlgorithm?: string; + /** + * Name of the message digest used by MGF1 + */ + mgf1HashAlgorithm?: string; + /** + * Minimal salt length in bytes + */ + saltLength?: string; + } + interface DSAKeyPairKeyObjectOptions { + /** + * Key size in bits + */ + modulusLength: number; + /** + * Size of q in bits + */ + divisorLength: number; + } + interface RSAKeyPairOptions { + /** + * Key size in bits + */ + modulusLength: number; + /** + * Public exponent + * @default 0x10001 + */ + publicExponent?: number | undefined; + publicKeyEncoding: { + type: 'pkcs1' | 'spki'; + format: PubF; + }; + privateKeyEncoding: BasePrivateKeyEncodingOptions & { + type: 'pkcs1' | 'pkcs8'; + }; + } + interface RSAPSSKeyPairOptions { + /** + * Key size in bits + */ + modulusLength: number; + /** + * Public exponent + * @default 0x10001 + */ + publicExponent?: number | undefined; + /** + * Name of the message digest + */ + hashAlgorithm?: string; + /** + * Name of the message digest used by MGF1 + */ + mgf1HashAlgorithm?: string; + /** + * Minimal salt length in bytes + */ + saltLength?: string; + publicKeyEncoding: { + type: 'spki'; + format: PubF; + }; + privateKeyEncoding: BasePrivateKeyEncodingOptions & { + type: 'pkcs8'; + }; + } + interface DSAKeyPairOptions { + /** + * Key size in bits + */ + modulusLength: number; + /** + * Size of q in bits + */ + divisorLength: number; + publicKeyEncoding: { + type: 'spki'; + format: PubF; + }; + privateKeyEncoding: BasePrivateKeyEncodingOptions & { + type: 'pkcs8'; + }; + } + interface ECKeyPairOptions { + /** + * Name of the curve to use. + */ + namedCurve: string; + publicKeyEncoding: { + type: 'pkcs1' | 'spki'; + format: PubF; + }; + privateKeyEncoding: BasePrivateKeyEncodingOptions & { + type: 'sec1' | 'pkcs8'; + }; + } + interface ED25519KeyPairOptions { + publicKeyEncoding: { + type: 'spki'; + format: PubF; + }; + privateKeyEncoding: BasePrivateKeyEncodingOptions & { + type: 'pkcs8'; + }; + } + interface ED448KeyPairOptions { + publicKeyEncoding: { + type: 'spki'; + format: PubF; + }; + privateKeyEncoding: BasePrivateKeyEncodingOptions & { + type: 'pkcs8'; + }; + } + interface X25519KeyPairOptions { + publicKeyEncoding: { + type: 'spki'; + format: PubF; + }; + privateKeyEncoding: BasePrivateKeyEncodingOptions & { + type: 'pkcs8'; + }; + } + interface X448KeyPairOptions { + publicKeyEncoding: { + type: 'spki'; + format: PubF; + }; + privateKeyEncoding: BasePrivateKeyEncodingOptions & { + type: 'pkcs8'; + }; + } + interface KeyPairSyncResult { + publicKey: T1; + privateKey: T2; + } + /** + * Generates a new asymmetric key pair of the given `type`. RSA, RSA-PSS, DSA, EC, + * Ed25519, Ed448, X25519, X448, and DH are currently supported. + * + * If a `publicKeyEncoding` or `privateKeyEncoding` was specified, this function + * behaves as if `keyObject.export()` had been called on its result. Otherwise, + * the respective part of the key is returned as a `KeyObject`. + * + * When encoding public keys, it is recommended to use `'spki'`. When encoding + * private keys, it is recommended to use `'pkcs8'` with a strong passphrase, + * and to keep the passphrase confidential. + * + * ```js + * const { + * generateKeyPairSync + * } = await import('crypto'); + * + * const { + * publicKey, + * privateKey, + * } = generateKeyPairSync('rsa', { + * modulusLength: 4096, + * publicKeyEncoding: { + * type: 'spki', + * format: 'pem' + * }, + * privateKeyEncoding: { + * type: 'pkcs8', + * format: 'pem', + * cipher: 'aes-256-cbc', + * passphrase: 'top secret' + * } + * }); + * ``` + * + * The return value `{ publicKey, privateKey }` represents the generated key pair. + * When PEM encoding was selected, the respective key will be a string, otherwise + * it will be a buffer containing the data encoded as DER. + * @since v10.12.0 + * @param type Must be `'rsa'`, `'rsa-pss'`, `'dsa'`, `'ec'`, `'ed25519'`, `'ed448'`, `'x25519'`, `'x448'`, or `'dh'`. + */ + function generateKeyPairSync(type: 'rsa', options: RSAKeyPairOptions<'pem', 'pem'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'rsa', options: RSAKeyPairOptions<'pem', 'der'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'rsa', options: RSAKeyPairOptions<'der', 'pem'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'rsa', options: RSAKeyPairOptions<'der', 'der'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'rsa', options: RSAKeyPairKeyObjectOptions): KeyPairKeyObjectResult; + function generateKeyPairSync(type: 'rsa-pss', options: RSAPSSKeyPairOptions<'pem', 'pem'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'rsa-pss', options: RSAPSSKeyPairOptions<'pem', 'der'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'rsa-pss', options: RSAPSSKeyPairOptions<'der', 'pem'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'rsa-pss', options: RSAPSSKeyPairOptions<'der', 'der'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'rsa-pss', options: RSAPSSKeyPairKeyObjectOptions): KeyPairKeyObjectResult; + function generateKeyPairSync(type: 'dsa', options: DSAKeyPairOptions<'pem', 'pem'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'dsa', options: DSAKeyPairOptions<'pem', 'der'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'dsa', options: DSAKeyPairOptions<'der', 'pem'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'dsa', options: DSAKeyPairOptions<'der', 'der'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'dsa', options: DSAKeyPairKeyObjectOptions): KeyPairKeyObjectResult; + function generateKeyPairSync(type: 'ec', options: ECKeyPairOptions<'pem', 'pem'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'ec', options: ECKeyPairOptions<'pem', 'der'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'ec', options: ECKeyPairOptions<'der', 'pem'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'ec', options: ECKeyPairOptions<'der', 'der'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'ec', options: ECKeyPairKeyObjectOptions): KeyPairKeyObjectResult; + function generateKeyPairSync(type: 'ed25519', options: ED25519KeyPairOptions<'pem', 'pem'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'ed25519', options: ED25519KeyPairOptions<'pem', 'der'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'ed25519', options: ED25519KeyPairOptions<'der', 'pem'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'ed25519', options: ED25519KeyPairOptions<'der', 'der'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'ed25519', options?: ED25519KeyPairKeyObjectOptions): KeyPairKeyObjectResult; + function generateKeyPairSync(type: 'ed448', options: ED448KeyPairOptions<'pem', 'pem'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'ed448', options: ED448KeyPairOptions<'pem', 'der'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'ed448', options: ED448KeyPairOptions<'der', 'pem'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'ed448', options: ED448KeyPairOptions<'der', 'der'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'ed448', options?: ED448KeyPairKeyObjectOptions): KeyPairKeyObjectResult; + function generateKeyPairSync(type: 'x25519', options: X25519KeyPairOptions<'pem', 'pem'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'x25519', options: X25519KeyPairOptions<'pem', 'der'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'x25519', options: X25519KeyPairOptions<'der', 'pem'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'x25519', options: X25519KeyPairOptions<'der', 'der'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'x25519', options?: X25519KeyPairKeyObjectOptions): KeyPairKeyObjectResult; + function generateKeyPairSync(type: 'x448', options: X448KeyPairOptions<'pem', 'pem'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'x448', options: X448KeyPairOptions<'pem', 'der'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'x448', options: X448KeyPairOptions<'der', 'pem'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'x448', options: X448KeyPairOptions<'der', 'der'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'x448', options?: X448KeyPairKeyObjectOptions): KeyPairKeyObjectResult; + /** + * Generates a new asymmetric key pair of the given `type`. RSA, RSA-PSS, DSA, EC, + * Ed25519, Ed448, X25519, X448, and DH are currently supported. + * + * If a `publicKeyEncoding` or `privateKeyEncoding` was specified, this function + * behaves as if `keyObject.export()` had been called on its result. Otherwise, + * the respective part of the key is returned as a `KeyObject`. + * + * It is recommended to encode public keys as `'spki'` and private keys as`'pkcs8'` with encryption for long-term storage: + * + * ```js + * const { + * generateKeyPair + * } = await import('crypto'); + * + * generateKeyPair('rsa', { + * modulusLength: 4096, + * publicKeyEncoding: { + * type: 'spki', + * format: 'pem' + * }, + * privateKeyEncoding: { + * type: 'pkcs8', + * format: 'pem', + * cipher: 'aes-256-cbc', + * passphrase: 'top secret' + * } + * }, (err, publicKey, privateKey) => { + * // Handle errors and use the generated key pair. + * }); + * ``` + * + * On completion, `callback` will be called with `err` set to `undefined` and`publicKey` / `privateKey` representing the generated key pair. + * + * If this method is invoked as its `util.promisify()` ed version, it returns + * a `Promise` for an `Object` with `publicKey` and `privateKey` properties. + * @since v10.12.0 + * @param type Must be `'rsa'`, `'rsa-pss'`, `'dsa'`, `'ec'`, `'ed25519'`, `'ed448'`, `'x25519'`, `'x448'`, or `'dh'`. + */ + function generateKeyPair(type: 'rsa', options: RSAKeyPairOptions<'pem', 'pem'>, callback: (err: Error | null, publicKey: string, privateKey: string) => void): void; + function generateKeyPair(type: 'rsa', options: RSAKeyPairOptions<'pem', 'der'>, callback: (err: Error | null, publicKey: string, privateKey: Buffer) => void): void; + function generateKeyPair(type: 'rsa', options: RSAKeyPairOptions<'der', 'pem'>, callback: (err: Error | null, publicKey: Buffer, privateKey: string) => void): void; + function generateKeyPair(type: 'rsa', options: RSAKeyPairOptions<'der', 'der'>, callback: (err: Error | null, publicKey: Buffer, privateKey: Buffer) => void): void; + function generateKeyPair(type: 'rsa', options: RSAKeyPairKeyObjectOptions, callback: (err: Error | null, publicKey: KeyObject, privateKey: KeyObject) => void): void; + function generateKeyPair(type: 'rsa-pss', options: RSAPSSKeyPairOptions<'pem', 'pem'>, callback: (err: Error | null, publicKey: string, privateKey: string) => void): void; + function generateKeyPair(type: 'rsa-pss', options: RSAPSSKeyPairOptions<'pem', 'der'>, callback: (err: Error | null, publicKey: string, privateKey: Buffer) => void): void; + function generateKeyPair(type: 'rsa-pss', options: RSAPSSKeyPairOptions<'der', 'pem'>, callback: (err: Error | null, publicKey: Buffer, privateKey: string) => void): void; + function generateKeyPair(type: 'rsa-pss', options: RSAPSSKeyPairOptions<'der', 'der'>, callback: (err: Error | null, publicKey: Buffer, privateKey: Buffer) => void): void; + function generateKeyPair(type: 'rsa-pss', options: RSAPSSKeyPairKeyObjectOptions, callback: (err: Error | null, publicKey: KeyObject, privateKey: KeyObject) => void): void; + function generateKeyPair(type: 'dsa', options: DSAKeyPairOptions<'pem', 'pem'>, callback: (err: Error | null, publicKey: string, privateKey: string) => void): void; + function generateKeyPair(type: 'dsa', options: DSAKeyPairOptions<'pem', 'der'>, callback: (err: Error | null, publicKey: string, privateKey: Buffer) => void): void; + function generateKeyPair(type: 'dsa', options: DSAKeyPairOptions<'der', 'pem'>, callback: (err: Error | null, publicKey: Buffer, privateKey: string) => void): void; + function generateKeyPair(type: 'dsa', options: DSAKeyPairOptions<'der', 'der'>, callback: (err: Error | null, publicKey: Buffer, privateKey: Buffer) => void): void; + function generateKeyPair(type: 'dsa', options: DSAKeyPairKeyObjectOptions, callback: (err: Error | null, publicKey: KeyObject, privateKey: KeyObject) => void): void; + function generateKeyPair(type: 'ec', options: ECKeyPairOptions<'pem', 'pem'>, callback: (err: Error | null, publicKey: string, privateKey: string) => void): void; + function generateKeyPair(type: 'ec', options: ECKeyPairOptions<'pem', 'der'>, callback: (err: Error | null, publicKey: string, privateKey: Buffer) => void): void; + function generateKeyPair(type: 'ec', options: ECKeyPairOptions<'der', 'pem'>, callback: (err: Error | null, publicKey: Buffer, privateKey: string) => void): void; + function generateKeyPair(type: 'ec', options: ECKeyPairOptions<'der', 'der'>, callback: (err: Error | null, publicKey: Buffer, privateKey: Buffer) => void): void; + function generateKeyPair(type: 'ec', options: ECKeyPairKeyObjectOptions, callback: (err: Error | null, publicKey: KeyObject, privateKey: KeyObject) => void): void; + function generateKeyPair(type: 'ed25519', options: ED25519KeyPairOptions<'pem', 'pem'>, callback: (err: Error | null, publicKey: string, privateKey: string) => void): void; + function generateKeyPair(type: 'ed25519', options: ED25519KeyPairOptions<'pem', 'der'>, callback: (err: Error | null, publicKey: string, privateKey: Buffer) => void): void; + function generateKeyPair(type: 'ed25519', options: ED25519KeyPairOptions<'der', 'pem'>, callback: (err: Error | null, publicKey: Buffer, privateKey: string) => void): void; + function generateKeyPair(type: 'ed25519', options: ED25519KeyPairOptions<'der', 'der'>, callback: (err: Error | null, publicKey: Buffer, privateKey: Buffer) => void): void; + function generateKeyPair(type: 'ed25519', options: ED25519KeyPairKeyObjectOptions | undefined, callback: (err: Error | null, publicKey: KeyObject, privateKey: KeyObject) => void): void; + function generateKeyPair(type: 'ed448', options: ED448KeyPairOptions<'pem', 'pem'>, callback: (err: Error | null, publicKey: string, privateKey: string) => void): void; + function generateKeyPair(type: 'ed448', options: ED448KeyPairOptions<'pem', 'der'>, callback: (err: Error | null, publicKey: string, privateKey: Buffer) => void): void; + function generateKeyPair(type: 'ed448', options: ED448KeyPairOptions<'der', 'pem'>, callback: (err: Error | null, publicKey: Buffer, privateKey: string) => void): void; + function generateKeyPair(type: 'ed448', options: ED448KeyPairOptions<'der', 'der'>, callback: (err: Error | null, publicKey: Buffer, privateKey: Buffer) => void): void; + function generateKeyPair(type: 'ed448', options: ED448KeyPairKeyObjectOptions | undefined, callback: (err: Error | null, publicKey: KeyObject, privateKey: KeyObject) => void): void; + function generateKeyPair(type: 'x25519', options: X25519KeyPairOptions<'pem', 'pem'>, callback: (err: Error | null, publicKey: string, privateKey: string) => void): void; + function generateKeyPair(type: 'x25519', options: X25519KeyPairOptions<'pem', 'der'>, callback: (err: Error | null, publicKey: string, privateKey: Buffer) => void): void; + function generateKeyPair(type: 'x25519', options: X25519KeyPairOptions<'der', 'pem'>, callback: (err: Error | null, publicKey: Buffer, privateKey: string) => void): void; + function generateKeyPair(type: 'x25519', options: X25519KeyPairOptions<'der', 'der'>, callback: (err: Error | null, publicKey: Buffer, privateKey: Buffer) => void): void; + function generateKeyPair(type: 'x25519', options: X25519KeyPairKeyObjectOptions | undefined, callback: (err: Error | null, publicKey: KeyObject, privateKey: KeyObject) => void): void; + function generateKeyPair(type: 'x448', options: X448KeyPairOptions<'pem', 'pem'>, callback: (err: Error | null, publicKey: string, privateKey: string) => void): void; + function generateKeyPair(type: 'x448', options: X448KeyPairOptions<'pem', 'der'>, callback: (err: Error | null, publicKey: string, privateKey: Buffer) => void): void; + function generateKeyPair(type: 'x448', options: X448KeyPairOptions<'der', 'pem'>, callback: (err: Error | null, publicKey: Buffer, privateKey: string) => void): void; + function generateKeyPair(type: 'x448', options: X448KeyPairOptions<'der', 'der'>, callback: (err: Error | null, publicKey: Buffer, privateKey: Buffer) => void): void; + function generateKeyPair(type: 'x448', options: X448KeyPairKeyObjectOptions | undefined, callback: (err: Error | null, publicKey: KeyObject, privateKey: KeyObject) => void): void; + namespace generateKeyPair { + function __promisify__( + type: 'rsa', + options: RSAKeyPairOptions<'pem', 'pem'> + ): Promise<{ + publicKey: string; + privateKey: string; + }>; + function __promisify__( + type: 'rsa', + options: RSAKeyPairOptions<'pem', 'der'> + ): Promise<{ + publicKey: string; + privateKey: Buffer; + }>; + function __promisify__( + type: 'rsa', + options: RSAKeyPairOptions<'der', 'pem'> + ): Promise<{ + publicKey: Buffer; + privateKey: string; + }>; + function __promisify__( + type: 'rsa', + options: RSAKeyPairOptions<'der', 'der'> + ): Promise<{ + publicKey: Buffer; + privateKey: Buffer; + }>; + function __promisify__(type: 'rsa', options: RSAKeyPairKeyObjectOptions): Promise; + function __promisify__( + type: 'rsa-pss', + options: RSAPSSKeyPairOptions<'pem', 'pem'> + ): Promise<{ + publicKey: string; + privateKey: string; + }>; + function __promisify__( + type: 'rsa-pss', + options: RSAPSSKeyPairOptions<'pem', 'der'> + ): Promise<{ + publicKey: string; + privateKey: Buffer; + }>; + function __promisify__( + type: 'rsa-pss', + options: RSAPSSKeyPairOptions<'der', 'pem'> + ): Promise<{ + publicKey: Buffer; + privateKey: string; + }>; + function __promisify__( + type: 'rsa-pss', + options: RSAPSSKeyPairOptions<'der', 'der'> + ): Promise<{ + publicKey: Buffer; + privateKey: Buffer; + }>; + function __promisify__(type: 'rsa-pss', options: RSAPSSKeyPairKeyObjectOptions): Promise; + function __promisify__( + type: 'dsa', + options: DSAKeyPairOptions<'pem', 'pem'> + ): Promise<{ + publicKey: string; + privateKey: string; + }>; + function __promisify__( + type: 'dsa', + options: DSAKeyPairOptions<'pem', 'der'> + ): Promise<{ + publicKey: string; + privateKey: Buffer; + }>; + function __promisify__( + type: 'dsa', + options: DSAKeyPairOptions<'der', 'pem'> + ): Promise<{ + publicKey: Buffer; + privateKey: string; + }>; + function __promisify__( + type: 'dsa', + options: DSAKeyPairOptions<'der', 'der'> + ): Promise<{ + publicKey: Buffer; + privateKey: Buffer; + }>; + function __promisify__(type: 'dsa', options: DSAKeyPairKeyObjectOptions): Promise; + function __promisify__( + type: 'ec', + options: ECKeyPairOptions<'pem', 'pem'> + ): Promise<{ + publicKey: string; + privateKey: string; + }>; + function __promisify__( + type: 'ec', + options: ECKeyPairOptions<'pem', 'der'> + ): Promise<{ + publicKey: string; + privateKey: Buffer; + }>; + function __promisify__( + type: 'ec', + options: ECKeyPairOptions<'der', 'pem'> + ): Promise<{ + publicKey: Buffer; + privateKey: string; + }>; + function __promisify__( + type: 'ec', + options: ECKeyPairOptions<'der', 'der'> + ): Promise<{ + publicKey: Buffer; + privateKey: Buffer; + }>; + function __promisify__(type: 'ec', options: ECKeyPairKeyObjectOptions): Promise; + function __promisify__( + type: 'ed25519', + options: ED25519KeyPairOptions<'pem', 'pem'> + ): Promise<{ + publicKey: string; + privateKey: string; + }>; + function __promisify__( + type: 'ed25519', + options: ED25519KeyPairOptions<'pem', 'der'> + ): Promise<{ + publicKey: string; + privateKey: Buffer; + }>; + function __promisify__( + type: 'ed25519', + options: ED25519KeyPairOptions<'der', 'pem'> + ): Promise<{ + publicKey: Buffer; + privateKey: string; + }>; + function __promisify__( + type: 'ed25519', + options: ED25519KeyPairOptions<'der', 'der'> + ): Promise<{ + publicKey: Buffer; + privateKey: Buffer; + }>; + function __promisify__(type: 'ed25519', options?: ED25519KeyPairKeyObjectOptions): Promise; + function __promisify__( + type: 'ed448', + options: ED448KeyPairOptions<'pem', 'pem'> + ): Promise<{ + publicKey: string; + privateKey: string; + }>; + function __promisify__( + type: 'ed448', + options: ED448KeyPairOptions<'pem', 'der'> + ): Promise<{ + publicKey: string; + privateKey: Buffer; + }>; + function __promisify__( + type: 'ed448', + options: ED448KeyPairOptions<'der', 'pem'> + ): Promise<{ + publicKey: Buffer; + privateKey: string; + }>; + function __promisify__( + type: 'ed448', + options: ED448KeyPairOptions<'der', 'der'> + ): Promise<{ + publicKey: Buffer; + privateKey: Buffer; + }>; + function __promisify__(type: 'ed448', options?: ED448KeyPairKeyObjectOptions): Promise; + function __promisify__( + type: 'x25519', + options: X25519KeyPairOptions<'pem', 'pem'> + ): Promise<{ + publicKey: string; + privateKey: string; + }>; + function __promisify__( + type: 'x25519', + options: X25519KeyPairOptions<'pem', 'der'> + ): Promise<{ + publicKey: string; + privateKey: Buffer; + }>; + function __promisify__( + type: 'x25519', + options: X25519KeyPairOptions<'der', 'pem'> + ): Promise<{ + publicKey: Buffer; + privateKey: string; + }>; + function __promisify__( + type: 'x25519', + options: X25519KeyPairOptions<'der', 'der'> + ): Promise<{ + publicKey: Buffer; + privateKey: Buffer; + }>; + function __promisify__(type: 'x25519', options?: X25519KeyPairKeyObjectOptions): Promise; + function __promisify__( + type: 'x448', + options: X448KeyPairOptions<'pem', 'pem'> + ): Promise<{ + publicKey: string; + privateKey: string; + }>; + function __promisify__( + type: 'x448', + options: X448KeyPairOptions<'pem', 'der'> + ): Promise<{ + publicKey: string; + privateKey: Buffer; + }>; + function __promisify__( + type: 'x448', + options: X448KeyPairOptions<'der', 'pem'> + ): Promise<{ + publicKey: Buffer; + privateKey: string; + }>; + function __promisify__( + type: 'x448', + options: X448KeyPairOptions<'der', 'der'> + ): Promise<{ + publicKey: Buffer; + privateKey: Buffer; + }>; + function __promisify__(type: 'x448', options?: X448KeyPairKeyObjectOptions): Promise; + } + /** + * Calculates and returns the signature for `data` using the given private key and + * algorithm. If `algorithm` is `null` or `undefined`, then the algorithm is + * dependent upon the key type (especially Ed25519 and Ed448). + * + * If `key` is not a `KeyObject`, this function behaves as if `key` had been + * passed to {@link createPrivateKey}. If it is an object, the following + * additional properties can be passed: + * + * If the `callback` function is provided this function uses libuv's threadpool. + * @since v12.0.0 + */ + function sign(algorithm: string | null | undefined, data: NodeJS.ArrayBufferView, key: KeyLike | SignKeyObjectInput | SignPrivateKeyInput): Buffer; + function sign( + algorithm: string | null | undefined, + data: NodeJS.ArrayBufferView, + key: KeyLike | SignKeyObjectInput | SignPrivateKeyInput, + callback: (error: Error | null, data: Buffer) => void + ): void; + /** + * Verifies the given signature for `data` using the given key and algorithm. If`algorithm` is `null` or `undefined`, then the algorithm is dependent upon the + * key type (especially Ed25519 and Ed448). + * + * If `key` is not a `KeyObject`, this function behaves as if `key` had been + * passed to {@link createPublicKey}. If it is an object, the following + * additional properties can be passed: + * + * The `signature` argument is the previously calculated signature for the `data`. + * + * Because public keys can be derived from private keys, a private key or a public + * key may be passed for `key`. + * + * If the `callback` function is provided this function uses libuv's threadpool. + * @since v12.0.0 + */ + function verify(algorithm: string | null | undefined, data: NodeJS.ArrayBufferView, key: KeyLike | VerifyKeyObjectInput | VerifyPublicKeyInput, signature: NodeJS.ArrayBufferView): boolean; + function verify( + algorithm: string | null | undefined, + data: NodeJS.ArrayBufferView, + key: KeyLike | VerifyKeyObjectInput | VerifyPublicKeyInput, + signature: NodeJS.ArrayBufferView, + callback: (error: Error | null, result: boolean) => void + ): void; + /** + * Computes the Diffie-Hellman secret based on a `privateKey` and a `publicKey`. + * Both keys must have the same `asymmetricKeyType`, which must be one of `'dh'`(for Diffie-Hellman), `'ec'` (for ECDH), `'x448'`, or `'x25519'` (for ECDH-ES). + * @since v13.9.0, v12.17.0 + */ + function diffieHellman(options: { privateKey: KeyObject; publicKey: KeyObject }): Buffer; + type CipherMode = 'cbc' | 'ccm' | 'cfb' | 'ctr' | 'ecb' | 'gcm' | 'ocb' | 'ofb' | 'stream' | 'wrap' | 'xts'; + interface CipherInfoOptions { + /** + * A test key length. + */ + keyLength?: number | undefined; + /** + * A test IV length. + */ + ivLength?: number | undefined; + } + interface CipherInfo { + /** + * The name of the cipher. + */ + name: string; + /** + * The nid of the cipher. + */ + nid: number; + /** + * The block size of the cipher in bytes. + * This property is omitted when mode is 'stream'. + */ + blockSize?: number | undefined; + /** + * The expected or default initialization vector length in bytes. + * This property is omitted if the cipher does not use an initialization vector. + */ + ivLength?: number | undefined; + /** + * The expected or default key length in bytes. + */ + keyLength: number; + /** + * The cipher mode. + */ + mode: CipherMode; + } + /** + * Returns information about a given cipher. + * + * Some ciphers accept variable length keys and initialization vectors. By default, + * the `crypto.getCipherInfo()` method will return the default values for these + * ciphers. To test if a given key length or iv length is acceptable for given + * cipher, use the `keyLength` and `ivLength` options. If the given values are + * unacceptable, `undefined` will be returned. + * @since v15.0.0 + * @param nameOrNid The name or nid of the cipher to query. + */ + function getCipherInfo(nameOrNid: string | number, options?: CipherInfoOptions): CipherInfo | undefined; + /** + * HKDF is a simple key derivation function defined in RFC 5869\. The given `ikm`,`salt` and `info` are used with the `digest` to derive a key of `keylen` bytes. + * + * The supplied `callback` function is called with two arguments: `err` and`derivedKey`. If an errors occurs while deriving the key, `err` will be set; + * otherwise `err` will be `null`. The successfully generated `derivedKey` will + * be passed to the callback as an [ArrayBuffer](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer). An error will be thrown if any + * of the input arguments specify invalid values or types. + * + * ```js + * import { Buffer } from 'buffer'; + * const { + * hkdf + * } = await import('crypto'); + * + * hkdf('sha512', 'key', 'salt', 'info', 64, (err, derivedKey) => { + * if (err) throw err; + * console.log(Buffer.from(derivedKey).toString('hex')); // '24156e2...5391653' + * }); + * ``` + * @since v15.0.0 + * @param digest The digest algorithm to use. + * @param ikm The input keying material. It must be at least one byte in length. + * @param salt The salt value. Must be provided but can be zero-length. + * @param info Additional info value. Must be provided but can be zero-length, and cannot be more than 1024 bytes. + * @param keylen The length of the key to generate. Must be greater than 0. The maximum allowable value is `255` times the number of bytes produced by the selected digest function (e.g. `sha512` + * generates 64-byte hashes, making the maximum HKDF output 16320 bytes). + */ + function hkdf(digest: string, irm: BinaryLike | KeyObject, salt: BinaryLike, info: BinaryLike, keylen: number, callback: (err: Error | null, derivedKey: ArrayBuffer) => void): void; + /** + * Provides a synchronous HKDF key derivation function as defined in RFC 5869\. The + * given `ikm`, `salt` and `info` are used with the `digest` to derive a key of`keylen` bytes. + * + * The successfully generated `derivedKey` will be returned as an [ArrayBuffer](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer). + * + * An error will be thrown if any of the input arguments specify invalid values or + * types, or if the derived key cannot be generated. + * + * ```js + * import { Buffer } from 'buffer'; + * const { + * hkdfSync + * } = await import('crypto'); + * + * const derivedKey = hkdfSync('sha512', 'key', 'salt', 'info', 64); + * console.log(Buffer.from(derivedKey).toString('hex')); // '24156e2...5391653' + * ``` + * @since v15.0.0 + * @param digest The digest algorithm to use. + * @param ikm The input keying material. It must be at least one byte in length. + * @param salt The salt value. Must be provided but can be zero-length. + * @param info Additional info value. Must be provided but can be zero-length, and cannot be more than 1024 bytes. + * @param keylen The length of the key to generate. Must be greater than 0. The maximum allowable value is `255` times the number of bytes produced by the selected digest function (e.g. `sha512` + * generates 64-byte hashes, making the maximum HKDF output 16320 bytes). + */ + function hkdfSync(digest: string, ikm: BinaryLike | KeyObject, salt: BinaryLike, info: BinaryLike, keylen: number): ArrayBuffer; + interface SecureHeapUsage { + /** + * The total allocated secure heap size as specified using the `--secure-heap=n` command-line flag. + */ + total: number; + /** + * The minimum allocation from the secure heap as specified using the `--secure-heap-min` command-line flag. + */ + min: number; + /** + * The total number of bytes currently allocated from the secure heap. + */ + used: number; + /** + * The calculated ratio of `used` to `total` allocated bytes. + */ + utilization: number; + } + /** + * @since v15.6.0 + */ + function secureHeapUsed(): SecureHeapUsage; + interface RandomUUIDOptions { + /** + * By default, to improve performance, + * Node.js will pre-emptively generate and persistently cache enough + * random data to generate up to 128 random UUIDs. To generate a UUID + * without using the cache, set `disableEntropyCache` to `true`. + * + * @default `false` + */ + disableEntropyCache?: boolean | undefined; + } + /** + * Generates a random [RFC 4122](https://www.rfc-editor.org/rfc/rfc4122.txt) version 4 UUID. The UUID is generated using a + * cryptographic pseudorandom number generator. + * @since v15.6.0, v14.17.0 + */ + function randomUUID(options?: RandomUUIDOptions): string; + interface X509CheckOptions { + /** + * @default 'always' + */ + subject: 'always' | 'never'; + /** + * @default true + */ + wildcards: boolean; + /** + * @default true + */ + partialWildcards: boolean; + /** + * @default false + */ + multiLabelWildcards: boolean; + /** + * @default false + */ + singleLabelSubdomains: boolean; + } + /** + * Encapsulates an X509 certificate and provides read-only access to + * its information. + * + * ```js + * const { X509Certificate } = await import('crypto'); + * + * const x509 = new X509Certificate('{... pem encoded cert ...}'); + * + * console.log(x509.subject); + * ``` + * @since v15.6.0 + */ + class X509Certificate { + /** + * Will be \`true\` if this is a Certificate Authority (CA) certificate. + * @since v15.6.0 + */ + readonly ca: boolean; + /** + * The SHA-1 fingerprint of this certificate. + * + * Because SHA-1 is cryptographically broken and because the security of SHA-1 is + * significantly worse than that of algorithms that are commonly used to sign + * certificates, consider using `x509.fingerprint256` instead. + * @since v15.6.0 + */ + readonly fingerprint: string; + /** + * The SHA-256 fingerprint of this certificate. + * @since v15.6.0 + */ + readonly fingerprint256: string; + /** + * The SHA-512 fingerprint of this certificate. + * @since v16.14.0 + */ + readonly fingerprint512: string; + /** + * The complete subject of this certificate. + * @since v15.6.0 + */ + readonly subject: string; + /** + * The subject alternative name specified for this certificate or `undefined` + * if not available. + * @since v15.6.0 + */ + readonly subjectAltName: string | undefined; + /** + * The information access content of this certificate or `undefined` if not + * available. + * @since v15.6.0 + */ + readonly infoAccess: string | undefined; + /** + * An array detailing the key usages for this certificate. + * @since v15.6.0 + */ + readonly keyUsage: string[]; + /** + * The issuer identification included in this certificate. + * @since v15.6.0 + */ + readonly issuer: string; + /** + * The issuer certificate or `undefined` if the issuer certificate is not + * available. + * @since v15.9.0 + */ + readonly issuerCertificate?: X509Certificate | undefined; + /** + * The public key `KeyObject` for this certificate. + * @since v15.6.0 + */ + readonly publicKey: KeyObject; + /** + * A `Buffer` containing the DER encoding of this certificate. + * @since v15.6.0 + */ + readonly raw: Buffer; + /** + * The serial number of this certificate. + * + * Serial numbers are assigned by certificate authorities and do not uniquely + * identify certificates. Consider using `x509.fingerprint256` as a unique + * identifier instead. + * @since v15.6.0 + */ + readonly serialNumber: string; + /** + * The date/time from which this certificate is considered valid. + * @since v15.6.0 + */ + readonly validFrom: string; + /** + * The date/time until which this certificate is considered valid. + * @since v15.6.0 + */ + readonly validTo: string; + constructor(buffer: BinaryLike); + /** + * Checks whether the certificate matches the given email address. + * + * If the `'subject'` option is undefined or set to `'default'`, the certificate + * subject is only considered if the subject alternative name extension either does + * not exist or does not contain any email addresses. + * + * If the `'subject'` option is set to `'always'` and if the subject alternative + * name extension either does not exist or does not contain a matching email + * address, the certificate subject is considered. + * + * If the `'subject'` option is set to `'never'`, the certificate subject is never + * considered, even if the certificate contains no subject alternative names. + * @since v15.6.0 + * @return Returns `email` if the certificate matches, `undefined` if it does not. + */ + checkEmail(email: string, options?: Pick): string | undefined; + /** + * Checks whether the certificate matches the given host name. + * + * If the certificate matches the given host name, the matching subject name is + * returned. The returned name might be an exact match (e.g., `foo.example.com`) + * or it might contain wildcards (e.g., `*.example.com`). Because host name + * comparisons are case-insensitive, the returned subject name might also differ + * from the given `name` in capitalization. + * + * If the `'subject'` option is undefined or set to `'default'`, the certificate + * subject is only considered if the subject alternative name extension either does + * not exist or does not contain any DNS names. This behavior is consistent with [RFC 2818](https://www.rfc-editor.org/rfc/rfc2818.txt) ("HTTP Over TLS"). + * + * If the `'subject'` option is set to `'always'` and if the subject alternative + * name extension either does not exist or does not contain a matching DNS name, + * the certificate subject is considered. + * + * If the `'subject'` option is set to `'never'`, the certificate subject is never + * considered, even if the certificate contains no subject alternative names. + * @since v15.6.0 + * @return Returns a subject name that matches `name`, or `undefined` if no subject name matches `name`. + */ + checkHost(name: string, options?: X509CheckOptions): string | undefined; + /** + * Checks whether the certificate matches the given IP address (IPv4 or IPv6). + * + * Only [RFC 5280](https://www.rfc-editor.org/rfc/rfc5280.txt) `iPAddress` subject alternative names are considered, and they + * must match the given `ip` address exactly. Other subject alternative names as + * well as the subject field of the certificate are ignored. + * @since v15.6.0 + * @return Returns `ip` if the certificate matches, `undefined` if it does not. + */ + checkIP(ip: string): string | undefined; + /** + * Checks whether this certificate was issued by the given `otherCert`. + * @since v15.6.0 + */ + checkIssued(otherCert: X509Certificate): boolean; + /** + * Checks whether the public key for this certificate is consistent with + * the given private key. + * @since v15.6.0 + * @param privateKey A private key. + */ + checkPrivateKey(privateKey: KeyObject): boolean; + /** + * There is no standard JSON encoding for X509 certificates. The`toJSON()` method returns a string containing the PEM encoded + * certificate. + * @since v15.6.0 + */ + toJSON(): string; + /** + * Returns information about this certificate using the legacy `certificate object` encoding. + * @since v15.6.0 + */ + toLegacyObject(): PeerCertificate; + /** + * Returns the PEM-encoded certificate. + * @since v15.6.0 + */ + toString(): string; + /** + * Verifies that this certificate was signed by the given public key. + * Does not perform any other validation checks on the certificate. + * @since v15.6.0 + * @param publicKey A public key. + */ + verify(publicKey: KeyObject): boolean; + } + type LargeNumberLike = NodeJS.ArrayBufferView | SharedArrayBuffer | ArrayBuffer | bigint; + interface GeneratePrimeOptions { + add?: LargeNumberLike | undefined; + rem?: LargeNumberLike | undefined; + /** + * @default false + */ + safe?: boolean | undefined; + bigint?: boolean | undefined; + } + interface GeneratePrimeOptionsBigInt extends GeneratePrimeOptions { + bigint: true; + } + interface GeneratePrimeOptionsArrayBuffer extends GeneratePrimeOptions { + bigint?: false | undefined; + } + /** + * Generates a pseudorandom prime of `size` bits. + * + * If `options.safe` is `true`, the prime will be a safe prime -- that is,`(prime - 1) / 2` will also be a prime. + * + * The `options.add` and `options.rem` parameters can be used to enforce additional + * requirements, e.g., for Diffie-Hellman: + * + * * If `options.add` and `options.rem` are both set, the prime will satisfy the + * condition that `prime % add = rem`. + * * If only `options.add` is set and `options.safe` is not `true`, the prime will + * satisfy the condition that `prime % add = 1`. + * * If only `options.add` is set and `options.safe` is set to `true`, the prime + * will instead satisfy the condition that `prime % add = 3`. This is necessary + * because `prime % add = 1` for `options.add > 2` would contradict the condition + * enforced by `options.safe`. + * * `options.rem` is ignored if `options.add` is not given. + * + * Both `options.add` and `options.rem` must be encoded as big-endian sequences + * if given as an `ArrayBuffer`, `SharedArrayBuffer`, `TypedArray`, `Buffer`, or`DataView`. + * + * By default, the prime is encoded as a big-endian sequence of octets + * in an [ArrayBuffer](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer). If the `bigint` option is `true`, then a + * [bigint](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt) is provided. + * @since v15.8.0 + * @param size The size (in bits) of the prime to generate. + */ + function generatePrime(size: number, callback: (err: Error | null, prime: ArrayBuffer) => void): void; + function generatePrime(size: number, options: GeneratePrimeOptionsBigInt, callback: (err: Error | null, prime: bigint) => void): void; + function generatePrime(size: number, options: GeneratePrimeOptionsArrayBuffer, callback: (err: Error | null, prime: ArrayBuffer) => void): void; + function generatePrime(size: number, options: GeneratePrimeOptions, callback: (err: Error | null, prime: ArrayBuffer | bigint) => void): void; + /** + * Generates a pseudorandom prime of `size` bits. + * + * If `options.safe` is `true`, the prime will be a safe prime -- that is,`(prime - 1) / 2` will also be a prime. + * + * The `options.add` and `options.rem` parameters can be used to enforce additional + * requirements, e.g., for Diffie-Hellman: + * + * * If `options.add` and `options.rem` are both set, the prime will satisfy the + * condition that `prime % add = rem`. + * * If only `options.add` is set and `options.safe` is not `true`, the prime will + * satisfy the condition that `prime % add = 1`. + * * If only `options.add` is set and `options.safe` is set to `true`, the prime + * will instead satisfy the condition that `prime % add = 3`. This is necessary + * because `prime % add = 1` for `options.add > 2` would contradict the condition + * enforced by `options.safe`. + * * `options.rem` is ignored if `options.add` is not given. + * + * Both `options.add` and `options.rem` must be encoded as big-endian sequences + * if given as an `ArrayBuffer`, `SharedArrayBuffer`, `TypedArray`, `Buffer`, or`DataView`. + * + * By default, the prime is encoded as a big-endian sequence of octets + * in an [ArrayBuffer](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer). If the `bigint` option is `true`, then a + * [bigint](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt) is provided. + * @since v15.8.0 + * @param size The size (in bits) of the prime to generate. + */ + function generatePrimeSync(size: number): ArrayBuffer; + function generatePrimeSync(size: number, options: GeneratePrimeOptionsBigInt): bigint; + function generatePrimeSync(size: number, options: GeneratePrimeOptionsArrayBuffer): ArrayBuffer; + function generatePrimeSync(size: number, options: GeneratePrimeOptions): ArrayBuffer | bigint; + interface CheckPrimeOptions { + /** + * The number of Miller-Rabin probabilistic primality iterations to perform. + * When the value is 0 (zero), a number of checks is used that yields a false positive rate of at most 2-64 for random input. + * Care must be used when selecting a number of checks. + * Refer to the OpenSSL documentation for the BN_is_prime_ex function nchecks options for more details. + * + * @default 0 + */ + checks?: number | undefined; + } + /** + * Checks the primality of the `candidate`. + * @since v15.8.0 + * @param candidate A possible prime encoded as a sequence of big endian octets of arbitrary length. + */ + function checkPrime(value: LargeNumberLike, callback: (err: Error | null, result: boolean) => void): void; + function checkPrime(value: LargeNumberLike, options: CheckPrimeOptions, callback: (err: Error | null, result: boolean) => void): void; + /** + * Checks the primality of the `candidate`. + * @since v15.8.0 + * @param candidate A possible prime encoded as a sequence of big endian octets of arbitrary length. + * @return `true` if the candidate is a prime with an error probability less than `0.25 ** options.checks`. + */ + function checkPrimeSync(candidate: LargeNumberLike, options?: CheckPrimeOptions): boolean; + /** + * Load and set the `engine` for some or all OpenSSL functions (selected by flags). + * + * `engine` could be either an id or a path to the engine's shared library. + * + * The optional `flags` argument uses `ENGINE_METHOD_ALL` by default. + * The `flags` is a bit field taking one of or a mix of the following flags (defined in `crypto.constants`): + * + * - `crypto.constants.ENGINE_METHOD_RSA` + * - `crypto.constants.ENGINE_METHOD_DSA` + * - `crypto.constants.ENGINE_METHOD_DH` + * - `crypto.constants.ENGINE_METHOD_RAND` + * - `crypto.constants.ENGINE_METHOD_EC` + * - `crypto.constants.ENGINE_METHOD_CIPHERS` + * - `crypto.constants.ENGINE_METHOD_DIGESTS` + * - `crypto.constants.ENGINE_METHOD_PKEY_METHS` + * - `crypto.constants.ENGINE_METHOD_PKEY_ASN1_METHS` + * - `crypto.constants.ENGINE_METHOD_ALL` + * - `crypto.constants.ENGINE_METHOD_NONE` + * + * The flags below are deprecated in OpenSSL-1.1.0. + * + * - `crypto.constants.ENGINE_METHOD_ECDH` + * - `crypto.constants.ENGINE_METHOD_ECDSA` + * - `crypto.constants.ENGINE_METHOD_STORE` + * @since v0.11.11 + * @param [flags=crypto.constants.ENGINE_METHOD_ALL] + */ + function setEngine(engine: string, flags?: number): void; + /** + * A convenient alias for `crypto.webcrypto.getRandomValues()`. + * This implementation is not compliant with the Web Crypto spec, + * to write web-compatible code use `crypto.webcrypto.getRandomValues()` instead. + * @since v17.4.0 + * @returns Returns `typedArray`. + */ + function getRandomValues(typedArray: T): T; + /** + * A convenient alias for `crypto.webcrypto.subtle`. + * @since v17.4.0 + */ + const subtle: webcrypto.SubtleCrypto; + /** + * An implementation of the Web Crypto API standard. + * + * See the {@link https://nodejs.org/docs/latest/api/webcrypto.html Web Crypto API documentation} for details. + * @since v15.0.0 + */ + const webcrypto: webcrypto.Crypto; + namespace webcrypto { + type BufferSource = ArrayBufferView | ArrayBuffer; + type KeyFormat = 'jwk' | 'pkcs8' | 'raw' | 'spki'; + type KeyType = 'private' | 'public' | 'secret'; + type KeyUsage = 'decrypt' | 'deriveBits' | 'deriveKey' | 'encrypt' | 'sign' | 'unwrapKey' | 'verify' | 'wrapKey'; + type AlgorithmIdentifier = Algorithm | string; + type HashAlgorithmIdentifier = AlgorithmIdentifier; + type NamedCurve = string; + type BigInteger = Uint8Array; + interface AesCbcParams extends Algorithm { + iv: BufferSource; + } + interface AesCtrParams extends Algorithm { + counter: BufferSource; + length: number; + } + interface AesDerivedKeyParams extends Algorithm { + length: number; + } + interface AesGcmParams extends Algorithm { + additionalData?: BufferSource; + iv: BufferSource; + tagLength?: number; + } + interface AesKeyAlgorithm extends KeyAlgorithm { + length: number; + } + interface AesKeyGenParams extends Algorithm { + length: number; + } + interface Algorithm { + name: string; + } + interface EcKeyAlgorithm extends KeyAlgorithm { + namedCurve: NamedCurve; + } + interface EcKeyGenParams extends Algorithm { + namedCurve: NamedCurve; + } + interface EcKeyImportParams extends Algorithm { + namedCurve: NamedCurve; + } + interface EcdhKeyDeriveParams extends Algorithm { + public: CryptoKey; + } + interface EcdsaParams extends Algorithm { + hash: HashAlgorithmIdentifier; + } + interface Ed448Params extends Algorithm { + context?: BufferSource; + } + interface HkdfParams extends Algorithm { + hash: HashAlgorithmIdentifier; + info: BufferSource; + salt: BufferSource; + } + interface HmacImportParams extends Algorithm { + hash: HashAlgorithmIdentifier; + length?: number; + } + interface HmacKeyAlgorithm extends KeyAlgorithm { + hash: KeyAlgorithm; + length: number; + } + interface HmacKeyGenParams extends Algorithm { + hash: HashAlgorithmIdentifier; + length?: number; + } + interface JsonWebKey { + alg?: string; + crv?: string; + d?: string; + dp?: string; + dq?: string; + e?: string; + ext?: boolean; + k?: string; + key_ops?: string[]; + kty?: string; + n?: string; + oth?: RsaOtherPrimesInfo[]; + p?: string; + q?: string; + qi?: string; + use?: string; + x?: string; + y?: string; + } + interface KeyAlgorithm { + name: string; + } + interface Pbkdf2Params extends Algorithm { + hash: HashAlgorithmIdentifier; + iterations: number; + salt: BufferSource; + } + interface RsaHashedImportParams extends Algorithm { + hash: HashAlgorithmIdentifier; + } + interface RsaHashedKeyAlgorithm extends RsaKeyAlgorithm { + hash: KeyAlgorithm; + } + interface RsaHashedKeyGenParams extends RsaKeyGenParams { + hash: HashAlgorithmIdentifier; + } + interface RsaKeyAlgorithm extends KeyAlgorithm { + modulusLength: number; + publicExponent: BigInteger; + } + interface RsaKeyGenParams extends Algorithm { + modulusLength: number; + publicExponent: BigInteger; + } + interface RsaOaepParams extends Algorithm { + label?: BufferSource; + } + interface RsaOtherPrimesInfo { + d?: string; + r?: string; + t?: string; + } + interface RsaPssParams extends Algorithm { + saltLength: number; + } + /** + * Calling `require('node:crypto').webcrypto` returns an instance of the `Crypto` class. + * `Crypto` is a singleton that provides access to the remainder of the crypto API. + * @since v15.0.0 + */ + interface Crypto { + /** + * Provides access to the `SubtleCrypto` API. + * @since v15.0.0 + */ + readonly subtle: SubtleCrypto; + /** + * Generates cryptographically strong random values. + * The given `typedArray` is filled with random values, and a reference to `typedArray` is returned. + * + * The given `typedArray` must be an integer-based instance of {@link NodeJS.TypedArray}, i.e. `Float32Array` and `Float64Array` are not accepted. + * + * An error will be thrown if the given `typedArray` is larger than 65,536 bytes. + * @since v15.0.0 + */ + getRandomValues>(typedArray: T): T; + /** + * Generates a random {@link https://www.rfc-editor.org/rfc/rfc4122.txt RFC 4122} version 4 UUID. + * The UUID is generated using a cryptographic pseudorandom number generator. + * @since v16.7.0 + */ + randomUUID(): string; + CryptoKey: CryptoKeyConstructor; + } + // This constructor throws ILLEGAL_CONSTRUCTOR so it should not be newable. + interface CryptoKeyConstructor { + /** Illegal constructor */ + (_: { readonly _: unique symbol }): never; // Allows instanceof to work but not be callable by the user. + readonly length: 0; + readonly name: 'CryptoKey'; + readonly prototype: CryptoKey; + } + /** + * @since v15.0.0 + */ + interface CryptoKey { + /** + * An object detailing the algorithm for which the key can be used along with additional algorithm-specific parameters. + * @since v15.0.0 + */ + readonly algorithm: KeyAlgorithm; + /** + * When `true`, the {@link CryptoKey} can be extracted using either `subtleCrypto.exportKey()` or `subtleCrypto.wrapKey()`. + * @since v15.0.0 + */ + readonly extractable: boolean; + /** + * A string identifying whether the key is a symmetric (`'secret'`) or asymmetric (`'private'` or `'public'`) key. + * @since v15.0.0 + */ + readonly type: KeyType; + /** + * An array of strings identifying the operations for which the key may be used. + * + * The possible usages are: + * - `'encrypt'` - The key may be used to encrypt data. + * - `'decrypt'` - The key may be used to decrypt data. + * - `'sign'` - The key may be used to generate digital signatures. + * - `'verify'` - The key may be used to verify digital signatures. + * - `'deriveKey'` - The key may be used to derive a new key. + * - `'deriveBits'` - The key may be used to derive bits. + * - `'wrapKey'` - The key may be used to wrap another key. + * - `'unwrapKey'` - The key may be used to unwrap another key. + * + * Valid key usages depend on the key algorithm (identified by `cryptokey.algorithm.name`). + * @since v15.0.0 + */ + readonly usages: KeyUsage[]; + } + /** + * The `CryptoKeyPair` is a simple dictionary object with `publicKey` and `privateKey` properties, representing an asymmetric key pair. + * @since v15.0.0 + */ + interface CryptoKeyPair { + /** + * A {@link CryptoKey} whose type will be `'private'`. + * @since v15.0.0 + */ + privateKey: CryptoKey; + /** + * A {@link CryptoKey} whose type will be `'public'`. + * @since v15.0.0 + */ + publicKey: CryptoKey; + } + /** + * @since v15.0.0 + */ + interface SubtleCrypto { + /** + * Using the method and parameters specified in `algorithm` and the keying material provided by `key`, + * `subtle.decrypt()` attempts to decipher the provided `data`. If successful, + * the returned promise will be resolved with an `` containing the plaintext result. + * + * The algorithms currently supported include: + * + * - `'RSA-OAEP'` + * - `'AES-CTR'` + * - `'AES-CBC'` + * - `'AES-GCM'` + * @since v15.0.0 + */ + decrypt(algorithm: AlgorithmIdentifier | RsaOaepParams | AesCtrParams | AesCbcParams | AesGcmParams, key: CryptoKey, data: BufferSource): Promise; + /** + * Using the method and parameters specified in `algorithm` and the keying material provided by `baseKey`, + * `subtle.deriveBits()` attempts to generate `length` bits. + * The Node.js implementation requires that `length` is a multiple of `8`. + * If successful, the returned promise will be resolved with an `` containing the generated data. + * + * The algorithms currently supported include: + * + * - `'ECDH'` + * - `'X25519'` + * - `'X448'` + * - `'HKDF'` + * - `'PBKDF2'` + * @since v15.0.0 + */ + deriveBits(algorithm: AlgorithmIdentifier | EcdhKeyDeriveParams | HkdfParams | Pbkdf2Params, baseKey: CryptoKey, length: number): Promise; + /** + * Using the method and parameters specified in `algorithm`, and the keying material provided by `baseKey`, + * `subtle.deriveKey()` attempts to generate a new ` based on the method and parameters in `derivedKeyAlgorithm`. + * + * Calling `subtle.deriveKey()` is equivalent to calling `subtle.deriveBits()` to generate raw keying material, + * then passing the result into the `subtle.importKey()` method using the `deriveKeyAlgorithm`, `extractable`, and `keyUsages` parameters as input. + * + * The algorithms currently supported include: + * + * - `'ECDH'` + * - `'X25519'` + * - `'X448'` + * - `'HKDF'` + * - `'PBKDF2'` + * @param keyUsages See {@link https://nodejs.org/docs/latest/api/webcrypto.html#cryptokeyusages Key usages}. + * @since v15.0.0 + */ + deriveKey( + algorithm: AlgorithmIdentifier | EcdhKeyDeriveParams | HkdfParams | Pbkdf2Params, + baseKey: CryptoKey, + derivedKeyAlgorithm: AlgorithmIdentifier | AesDerivedKeyParams | HmacImportParams | HkdfParams | Pbkdf2Params, + extractable: boolean, + keyUsages: ReadonlyArray + ): Promise; + /** + * Using the method identified by `algorithm`, `subtle.digest()` attempts to generate a digest of `data`. + * If successful, the returned promise is resolved with an `` containing the computed digest. + * + * If `algorithm` is provided as a ``, it must be one of: + * + * - `'SHA-1'` + * - `'SHA-256'` + * - `'SHA-384'` + * - `'SHA-512'` + * + * If `algorithm` is provided as an ``, it must have a `name` property whose value is one of the above. + * @since v15.0.0 + */ + digest(algorithm: AlgorithmIdentifier, data: BufferSource): Promise; + /** + * Using the method and parameters specified by `algorithm` and the keying material provided by `key`, + * `subtle.encrypt()` attempts to encipher `data`. If successful, + * the returned promise is resolved with an `` containing the encrypted result. + * + * The algorithms currently supported include: + * + * - `'RSA-OAEP'` + * - `'AES-CTR'` + * - `'AES-CBC'` + * - `'AES-GCM'` + * @since v15.0.0 + */ + encrypt(algorithm: AlgorithmIdentifier | RsaOaepParams | AesCtrParams | AesCbcParams | AesGcmParams, key: CryptoKey, data: BufferSource): Promise; + /** + * Exports the given key into the specified format, if supported. + * + * If the `` is not extractable, the returned promise will reject. + * + * When `format` is either `'pkcs8'` or `'spki'` and the export is successful, + * the returned promise will be resolved with an `` containing the exported key data. + * + * When `format` is `'jwk'` and the export is successful, the returned promise will be resolved with a + * JavaScript object conforming to the {@link https://tools.ietf.org/html/rfc7517 JSON Web Key} specification. + * @param format Must be one of `'raw'`, `'pkcs8'`, `'spki'`, or `'jwk'`. + * @returns `` containing ``. + * @since v15.0.0 + */ + exportKey(format: 'jwk', key: CryptoKey): Promise; + exportKey(format: Exclude, key: CryptoKey): Promise; + /** + * Using the method and parameters provided in `algorithm`, + * `subtle.generateKey()` attempts to generate new keying material. + * Depending the method used, the method may generate either a single `` or a ``. + * + * The `` (public and private key) generating algorithms supported include: + * + * - `'RSASSA-PKCS1-v1_5'` + * - `'RSA-PSS'` + * - `'RSA-OAEP'` + * - `'ECDSA'` + * - `'Ed25519'` + * - `'Ed448'` + * - `'ECDH'` + * - `'X25519'` + * - `'X448'` + * The `` (secret key) generating algorithms supported include: + * + * - `'HMAC'` + * - `'AES-CTR'` + * - `'AES-CBC'` + * - `'AES-GCM'` + * - `'AES-KW'` + * @param keyUsages See {@link https://nodejs.org/docs/latest/api/webcrypto.html#cryptokeyusages Key usages}. + * @since v15.0.0 + */ + generateKey(algorithm: RsaHashedKeyGenParams | EcKeyGenParams, extractable: boolean, keyUsages: ReadonlyArray): Promise; + generateKey(algorithm: AesKeyGenParams | HmacKeyGenParams | Pbkdf2Params, extractable: boolean, keyUsages: ReadonlyArray): Promise; + generateKey(algorithm: AlgorithmIdentifier, extractable: boolean, keyUsages: KeyUsage[]): Promise; + /** + * The `subtle.importKey()` method attempts to interpret the provided `keyData` as the given `format` + * to create a `` instance using the provided `algorithm`, `extractable`, and `keyUsages` arguments. + * If the import is successful, the returned promise will be resolved with the created ``. + * + * If importing a `'PBKDF2'` key, `extractable` must be `false`. + * @param format Must be one of `'raw'`, `'pkcs8'`, `'spki'`, or `'jwk'`. + * @param keyUsages See {@link https://nodejs.org/docs/latest/api/webcrypto.html#cryptokeyusages Key usages}. + * @since v15.0.0 + */ + importKey( + format: 'jwk', + keyData: JsonWebKey, + algorithm: AlgorithmIdentifier | RsaHashedImportParams | EcKeyImportParams | HmacImportParams | AesKeyAlgorithm, + extractable: boolean, + keyUsages: ReadonlyArray + ): Promise; + importKey( + format: Exclude, + keyData: BufferSource, + algorithm: AlgorithmIdentifier | RsaHashedImportParams | EcKeyImportParams | HmacImportParams | AesKeyAlgorithm, + extractable: boolean, + keyUsages: KeyUsage[] + ): Promise; + /** + * Using the method and parameters given by `algorithm` and the keying material provided by `key`, + * `subtle.sign()` attempts to generate a cryptographic signature of `data`. If successful, + * the returned promise is resolved with an `` containing the generated signature. + * + * The algorithms currently supported include: + * + * - `'RSASSA-PKCS1-v1_5'` + * - `'RSA-PSS'` + * - `'ECDSA'` + * - `'Ed25519'` + * - `'Ed448'` + * - `'HMAC'` + * @since v15.0.0 + */ + sign(algorithm: AlgorithmIdentifier | RsaPssParams | EcdsaParams | Ed448Params, key: CryptoKey, data: BufferSource): Promise; + /** + * In cryptography, "wrapping a key" refers to exporting and then encrypting the keying material. + * The `subtle.unwrapKey()` method attempts to decrypt a wrapped key and create a `` instance. + * It is equivalent to calling `subtle.decrypt()` first on the encrypted key data (using the `wrappedKey`, `unwrapAlgo`, and `unwrappingKey` arguments as input) + * then passing the results in to the `subtle.importKey()` method using the `unwrappedKeyAlgo`, `extractable`, and `keyUsages` arguments as inputs. + * If successful, the returned promise is resolved with a `` object. + * + * The wrapping algorithms currently supported include: + * + * - `'RSA-OAEP'` + * - `'AES-CTR'` + * - `'AES-CBC'` + * - `'AES-GCM'` + * - `'AES-KW'` + * + * The unwrapped key algorithms supported include: + * + * - `'RSASSA-PKCS1-v1_5'` + * - `'RSA-PSS'` + * - `'RSA-OAEP'` + * - `'ECDSA'` + * - `'Ed25519'` + * - `'Ed448'` + * - `'ECDH'` + * - `'X25519'` + * - `'X448'` + * - `'HMAC'` + * - `'AES-CTR'` + * - `'AES-CBC'` + * - `'AES-GCM'` + * - `'AES-KW'` + * @param format Must be one of `'raw'`, `'pkcs8'`, `'spki'`, or `'jwk'`. + * @param keyUsages See {@link https://nodejs.org/docs/latest/api/webcrypto.html#cryptokeyusages Key usages}. + * @since v15.0.0 + */ + unwrapKey( + format: KeyFormat, + wrappedKey: BufferSource, + unwrappingKey: CryptoKey, + unwrapAlgorithm: AlgorithmIdentifier | RsaOaepParams | AesCtrParams | AesCbcParams | AesGcmParams, + unwrappedKeyAlgorithm: AlgorithmIdentifier | RsaHashedImportParams | EcKeyImportParams | HmacImportParams | AesKeyAlgorithm, + extractable: boolean, + keyUsages: KeyUsage[] + ): Promise; + /** + * Using the method and parameters given in `algorithm` and the keying material provided by `key`, + * `subtle.verify()` attempts to verify that `signature` is a valid cryptographic signature of `data`. + * The returned promise is resolved with either `true` or `false`. + * + * The algorithms currently supported include: + * + * - `'RSASSA-PKCS1-v1_5'` + * - `'RSA-PSS'` + * - `'ECDSA'` + * - `'Ed25519'` + * - `'Ed448'` + * - `'HMAC'` + * @since v15.0.0 + */ + verify(algorithm: AlgorithmIdentifier | RsaPssParams | EcdsaParams | Ed448Params, key: CryptoKey, signature: BufferSource, data: BufferSource): Promise; + /** + * In cryptography, "wrapping a key" refers to exporting and then encrypting the keying material. + * The `subtle.wrapKey()` method exports the keying material into the format identified by `format`, + * then encrypts it using the method and parameters specified by `wrapAlgo` and the keying material provided by `wrappingKey`. + * It is the equivalent to calling `subtle.exportKey()` using `format` and `key` as the arguments, + * then passing the result to the `subtle.encrypt()` method using `wrappingKey` and `wrapAlgo` as inputs. + * If successful, the returned promise will be resolved with an `` containing the encrypted key data. + * + * The wrapping algorithms currently supported include: + * + * - `'RSA-OAEP'` + * - `'AES-CTR'` + * - `'AES-CBC'` + * - `'AES-GCM'` + * - `'AES-KW'` + * @param format Must be one of `'raw'`, `'pkcs8'`, `'spki'`, or `'jwk'`. + * @since v15.0.0 + */ + wrapKey(format: KeyFormat, key: CryptoKey, wrappingKey: CryptoKey, wrapAlgorithm: AlgorithmIdentifier | RsaOaepParams | AesCtrParams | AesCbcParams | AesGcmParams): Promise; + } + } +} +declare module 'node:crypto' { + export * from 'crypto'; +} diff --git a/node_modules/@types/node/dgram.d.ts b/node_modules/@types/node/dgram.d.ts new file mode 100644 index 000000000..247328d28 --- /dev/null +++ b/node_modules/@types/node/dgram.d.ts @@ -0,0 +1,545 @@ +/** + * The `dgram` module provides an implementation of UDP datagram sockets. + * + * ```js + * import dgram from 'dgram'; + * + * const server = dgram.createSocket('udp4'); + * + * server.on('error', (err) => { + * console.log(`server error:\n${err.stack}`); + * server.close(); + * }); + * + * server.on('message', (msg, rinfo) => { + * console.log(`server got: ${msg} from ${rinfo.address}:${rinfo.port}`); + * }); + * + * server.on('listening', () => { + * const address = server.address(); + * console.log(`server listening ${address.address}:${address.port}`); + * }); + * + * server.bind(41234); + * // Prints: server listening 0.0.0.0:41234 + * ``` + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/dgram.js) + */ +declare module 'dgram' { + import { AddressInfo } from 'node:net'; + import * as dns from 'node:dns'; + import { EventEmitter, Abortable } from 'node:events'; + interface RemoteInfo { + address: string; + family: 'IPv4' | 'IPv6'; + port: number; + size: number; + } + interface BindOptions { + port?: number | undefined; + address?: string | undefined; + exclusive?: boolean | undefined; + fd?: number | undefined; + } + type SocketType = 'udp4' | 'udp6'; + interface SocketOptions extends Abortable { + type: SocketType; + reuseAddr?: boolean | undefined; + /** + * @default false + */ + ipv6Only?: boolean | undefined; + recvBufferSize?: number | undefined; + sendBufferSize?: number | undefined; + lookup?: ((hostname: string, options: dns.LookupOneOptions, callback: (err: NodeJS.ErrnoException | null, address: string, family: number) => void) => void) | undefined; + } + /** + * Creates a `dgram.Socket` object. Once the socket is created, calling `socket.bind()` will instruct the socket to begin listening for datagram + * messages. When `address` and `port` are not passed to `socket.bind()` the + * method will bind the socket to the "all interfaces" address on a random port + * (it does the right thing for both `udp4` and `udp6` sockets). The bound address + * and port can be retrieved using `socket.address().address` and `socket.address().port`. + * + * If the `signal` option is enabled, calling `.abort()` on the corresponding`AbortController` is similar to calling `.close()` on the socket: + * + * ```js + * const controller = new AbortController(); + * const { signal } = controller; + * const server = dgram.createSocket({ type: 'udp4', signal }); + * server.on('message', (msg, rinfo) => { + * console.log(`server got: ${msg} from ${rinfo.address}:${rinfo.port}`); + * }); + * // Later, when you want to close the server. + * controller.abort(); + * ``` + * @since v0.11.13 + * @param options Available options are: + * @param callback Attached as a listener for `'message'` events. Optional. + */ + function createSocket(type: SocketType, callback?: (msg: Buffer, rinfo: RemoteInfo) => void): Socket; + function createSocket(options: SocketOptions, callback?: (msg: Buffer, rinfo: RemoteInfo) => void): Socket; + /** + * Encapsulates the datagram functionality. + * + * New instances of `dgram.Socket` are created using {@link createSocket}. + * The `new` keyword is not to be used to create `dgram.Socket` instances. + * @since v0.1.99 + */ + class Socket extends EventEmitter { + /** + * Tells the kernel to join a multicast group at the given `multicastAddress` and`multicastInterface` using the `IP_ADD_MEMBERSHIP` socket option. If the`multicastInterface` argument is not + * specified, the operating system will choose + * one interface and will add membership to it. To add membership to every + * available interface, call `addMembership` multiple times, once per interface. + * + * When called on an unbound socket, this method will implicitly bind to a random + * port, listening on all interfaces. + * + * When sharing a UDP socket across multiple `cluster` workers, the`socket.addMembership()` function must be called only once or an`EADDRINUSE` error will occur: + * + * ```js + * import cluster from 'cluster'; + * import dgram from 'dgram'; + * + * if (cluster.isPrimary) { + * cluster.fork(); // Works ok. + * cluster.fork(); // Fails with EADDRINUSE. + * } else { + * const s = dgram.createSocket('udp4'); + * s.bind(1234, () => { + * s.addMembership('224.0.0.114'); + * }); + * } + * ``` + * @since v0.6.9 + */ + addMembership(multicastAddress: string, multicastInterface?: string): void; + /** + * Returns an object containing the address information for a socket. + * For UDP sockets, this object will contain `address`, `family` and `port`properties. + * + * This method throws `EBADF` if called on an unbound socket. + * @since v0.1.99 + */ + address(): AddressInfo; + /** + * For UDP sockets, causes the `dgram.Socket` to listen for datagram + * messages on a named `port` and optional `address`. If `port` is not + * specified or is `0`, the operating system will attempt to bind to a + * random port. If `address` is not specified, the operating system will + * attempt to listen on all addresses. Once binding is complete, a`'listening'` event is emitted and the optional `callback` function is + * called. + * + * Specifying both a `'listening'` event listener and passing a`callback` to the `socket.bind()` method is not harmful but not very + * useful. + * + * A bound datagram socket keeps the Node.js process running to receive + * datagram messages. + * + * If binding fails, an `'error'` event is generated. In rare case (e.g. + * attempting to bind with a closed socket), an `Error` may be thrown. + * + * Example of a UDP server listening on port 41234: + * + * ```js + * import dgram from 'dgram'; + * + * const server = dgram.createSocket('udp4'); + * + * server.on('error', (err) => { + * console.log(`server error:\n${err.stack}`); + * server.close(); + * }); + * + * server.on('message', (msg, rinfo) => { + * console.log(`server got: ${msg} from ${rinfo.address}:${rinfo.port}`); + * }); + * + * server.on('listening', () => { + * const address = server.address(); + * console.log(`server listening ${address.address}:${address.port}`); + * }); + * + * server.bind(41234); + * // Prints: server listening 0.0.0.0:41234 + * ``` + * @since v0.1.99 + * @param callback with no parameters. Called when binding is complete. + */ + bind(port?: number, address?: string, callback?: () => void): this; + bind(port?: number, callback?: () => void): this; + bind(callback?: () => void): this; + bind(options: BindOptions, callback?: () => void): this; + /** + * Close the underlying socket and stop listening for data on it. If a callback is + * provided, it is added as a listener for the `'close'` event. + * @since v0.1.99 + * @param callback Called when the socket has been closed. + */ + close(callback?: () => void): this; + /** + * Associates the `dgram.Socket` to a remote address and port. Every + * message sent by this handle is automatically sent to that destination. Also, + * the socket will only receive messages from that remote peer. + * Trying to call `connect()` on an already connected socket will result + * in an `ERR_SOCKET_DGRAM_IS_CONNECTED` exception. If `address` is not + * provided, `'127.0.0.1'` (for `udp4` sockets) or `'::1'` (for `udp6` sockets) + * will be used by default. Once the connection is complete, a `'connect'` event + * is emitted and the optional `callback` function is called. In case of failure, + * the `callback` is called or, failing this, an `'error'` event is emitted. + * @since v12.0.0 + * @param callback Called when the connection is completed or on error. + */ + connect(port: number, address?: string, callback?: () => void): void; + connect(port: number, callback: () => void): void; + /** + * A synchronous function that disassociates a connected `dgram.Socket` from + * its remote address. Trying to call `disconnect()` on an unbound or already + * disconnected socket will result in an `ERR_SOCKET_DGRAM_NOT_CONNECTED` exception. + * @since v12.0.0 + */ + disconnect(): void; + /** + * Instructs the kernel to leave a multicast group at `multicastAddress` using the`IP_DROP_MEMBERSHIP` socket option. This method is automatically called by the + * kernel when the socket is closed or the process terminates, so most apps will + * never have reason to call this. + * + * If `multicastInterface` is not specified, the operating system will attempt to + * drop membership on all valid interfaces. + * @since v0.6.9 + */ + dropMembership(multicastAddress: string, multicastInterface?: string): void; + /** + * This method throws `ERR_SOCKET_BUFFER_SIZE` if called on an unbound socket. + * @since v8.7.0 + * @return the `SO_RCVBUF` socket receive buffer size in bytes. + */ + getRecvBufferSize(): number; + /** + * This method throws `ERR_SOCKET_BUFFER_SIZE` if called on an unbound socket. + * @since v8.7.0 + * @return the `SO_SNDBUF` socket send buffer size in bytes. + */ + getSendBufferSize(): number; + /** + * By default, binding a socket will cause it to block the Node.js process from + * exiting as long as the socket is open. The `socket.unref()` method can be used + * to exclude the socket from the reference counting that keeps the Node.js + * process active. The `socket.ref()` method adds the socket back to the reference + * counting and restores the default behavior. + * + * Calling `socket.ref()` multiples times will have no additional effect. + * + * The `socket.ref()` method returns a reference to the socket so calls can be + * chained. + * @since v0.9.1 + */ + ref(): this; + /** + * Returns an object containing the `address`, `family`, and `port` of the remote + * endpoint. This method throws an `ERR_SOCKET_DGRAM_NOT_CONNECTED` exception + * if the socket is not connected. + * @since v12.0.0 + */ + remoteAddress(): AddressInfo; + /** + * Broadcasts a datagram on the socket. + * For connectionless sockets, the destination `port` and `address` must be + * specified. Connected sockets, on the other hand, will use their associated + * remote endpoint, so the `port` and `address` arguments must not be set. + * + * The `msg` argument contains the message to be sent. + * Depending on its type, different behavior can apply. If `msg` is a `Buffer`, + * any `TypedArray` or a `DataView`, + * the `offset` and `length` specify the offset within the `Buffer` where the + * message begins and the number of bytes in the message, respectively. + * If `msg` is a `String`, then it is automatically converted to a `Buffer`with `'utf8'` encoding. With messages that + * contain multi-byte characters, `offset` and `length` will be calculated with + * respect to `byte length` and not the character position. + * If `msg` is an array, `offset` and `length` must not be specified. + * + * The `address` argument is a string. If the value of `address` is a host name, + * DNS will be used to resolve the address of the host. If `address` is not + * provided or otherwise nullish, `'127.0.0.1'` (for `udp4` sockets) or `'::1'`(for `udp6` sockets) will be used by default. + * + * If the socket has not been previously bound with a call to `bind`, the socket + * is assigned a random port number and is bound to the "all interfaces" address + * (`'0.0.0.0'` for `udp4` sockets, `'::0'` for `udp6` sockets.) + * + * An optional `callback` function may be specified to as a way of reporting + * DNS errors or for determining when it is safe to reuse the `buf` object. + * DNS lookups delay the time to send for at least one tick of the + * Node.js event loop. + * + * The only way to know for sure that the datagram has been sent is by using a`callback`. If an error occurs and a `callback` is given, the error will be + * passed as the first argument to the `callback`. If a `callback` is not given, + * the error is emitted as an `'error'` event on the `socket` object. + * + * Offset and length are optional but both _must_ be set if either are used. + * They are supported only when the first argument is a `Buffer`, a `TypedArray`, + * or a `DataView`. + * + * This method throws `ERR_SOCKET_BAD_PORT` if called on an unbound socket. + * + * Example of sending a UDP packet to a port on `localhost`; + * + * ```js + * import dgram from 'dgram'; + * import { Buffer } from 'buffer'; + * + * const message = Buffer.from('Some bytes'); + * const client = dgram.createSocket('udp4'); + * client.send(message, 41234, 'localhost', (err) => { + * client.close(); + * }); + * ``` + * + * Example of sending a UDP packet composed of multiple buffers to a port on`127.0.0.1`; + * + * ```js + * import dgram from 'dgram'; + * import { Buffer } from 'buffer'; + * + * const buf1 = Buffer.from('Some '); + * const buf2 = Buffer.from('bytes'); + * const client = dgram.createSocket('udp4'); + * client.send([buf1, buf2], 41234, (err) => { + * client.close(); + * }); + * ``` + * + * Sending multiple buffers might be faster or slower depending on the + * application and operating system. Run benchmarks to + * determine the optimal strategy on a case-by-case basis. Generally speaking, + * however, sending multiple buffers is faster. + * + * Example of sending a UDP packet using a socket connected to a port on`localhost`: + * + * ```js + * import dgram from 'dgram'; + * import { Buffer } from 'buffer'; + * + * const message = Buffer.from('Some bytes'); + * const client = dgram.createSocket('udp4'); + * client.connect(41234, 'localhost', (err) => { + * client.send(message, (err) => { + * client.close(); + * }); + * }); + * ``` + * @since v0.1.99 + * @param msg Message to be sent. + * @param offset Offset in the buffer where the message starts. + * @param length Number of bytes in the message. + * @param port Destination port. + * @param address Destination host name or IP address. + * @param callback Called when the message has been sent. + */ + send(msg: string | Uint8Array | ReadonlyArray, port?: number, address?: string, callback?: (error: Error | null, bytes: number) => void): void; + send(msg: string | Uint8Array | ReadonlyArray, port?: number, callback?: (error: Error | null, bytes: number) => void): void; + send(msg: string | Uint8Array | ReadonlyArray, callback?: (error: Error | null, bytes: number) => void): void; + send(msg: string | Uint8Array, offset: number, length: number, port?: number, address?: string, callback?: (error: Error | null, bytes: number) => void): void; + send(msg: string | Uint8Array, offset: number, length: number, port?: number, callback?: (error: Error | null, bytes: number) => void): void; + send(msg: string | Uint8Array, offset: number, length: number, callback?: (error: Error | null, bytes: number) => void): void; + /** + * Sets or clears the `SO_BROADCAST` socket option. When set to `true`, UDP + * packets may be sent to a local interface's broadcast address. + * + * This method throws `EBADF` if called on an unbound socket. + * @since v0.6.9 + */ + setBroadcast(flag: boolean): void; + /** + * _All references to scope in this section are referring to [IPv6 Zone Indices](https://en.wikipedia.org/wiki/IPv6_address#Scoped_literal_IPv6_addresses), which are defined by [RFC + * 4007](https://tools.ietf.org/html/rfc4007). In string form, an IP_ + * _with a scope index is written as `'IP%scope'` where scope is an interface name_ + * _or interface number._ + * + * Sets the default outgoing multicast interface of the socket to a chosen + * interface or back to system interface selection. The `multicastInterface` must + * be a valid string representation of an IP from the socket's family. + * + * For IPv4 sockets, this should be the IP configured for the desired physical + * interface. All packets sent to multicast on the socket will be sent on the + * interface determined by the most recent successful use of this call. + * + * For IPv6 sockets, `multicastInterface` should include a scope to indicate the + * interface as in the examples that follow. In IPv6, individual `send` calls can + * also use explicit scope in addresses, so only packets sent to a multicast + * address without specifying an explicit scope are affected by the most recent + * successful use of this call. + * + * This method throws `EBADF` if called on an unbound socket. + * + * #### Example: IPv6 outgoing multicast interface + * + * On most systems, where scope format uses the interface name: + * + * ```js + * const socket = dgram.createSocket('udp6'); + * + * socket.bind(1234, () => { + * socket.setMulticastInterface('::%eth1'); + * }); + * ``` + * + * On Windows, where scope format uses an interface number: + * + * ```js + * const socket = dgram.createSocket('udp6'); + * + * socket.bind(1234, () => { + * socket.setMulticastInterface('::%2'); + * }); + * ``` + * + * #### Example: IPv4 outgoing multicast interface + * + * All systems use an IP of the host on the desired physical interface: + * + * ```js + * const socket = dgram.createSocket('udp4'); + * + * socket.bind(1234, () => { + * socket.setMulticastInterface('10.0.0.2'); + * }); + * ``` + * @since v8.6.0 + */ + setMulticastInterface(multicastInterface: string): void; + /** + * Sets or clears the `IP_MULTICAST_LOOP` socket option. When set to `true`, + * multicast packets will also be received on the local interface. + * + * This method throws `EBADF` if called on an unbound socket. + * @since v0.3.8 + */ + setMulticastLoopback(flag: boolean): boolean; + /** + * Sets the `IP_MULTICAST_TTL` socket option. While TTL generally stands for + * "Time to Live", in this context it specifies the number of IP hops that a + * packet is allowed to travel through, specifically for multicast traffic. Each + * router or gateway that forwards a packet decrements the TTL. If the TTL is + * decremented to 0 by a router, it will not be forwarded. + * + * The `ttl` argument may be between 0 and 255\. The default on most systems is `1`. + * + * This method throws `EBADF` if called on an unbound socket. + * @since v0.3.8 + */ + setMulticastTTL(ttl: number): number; + /** + * Sets the `SO_RCVBUF` socket option. Sets the maximum socket receive buffer + * in bytes. + * + * This method throws `ERR_SOCKET_BUFFER_SIZE` if called on an unbound socket. + * @since v8.7.0 + */ + setRecvBufferSize(size: number): void; + /** + * Sets the `SO_SNDBUF` socket option. Sets the maximum socket send buffer + * in bytes. + * + * This method throws `ERR_SOCKET_BUFFER_SIZE` if called on an unbound socket. + * @since v8.7.0 + */ + setSendBufferSize(size: number): void; + /** + * Sets the `IP_TTL` socket option. While TTL generally stands for "Time to Live", + * in this context it specifies the number of IP hops that a packet is allowed to + * travel through. Each router or gateway that forwards a packet decrements the + * TTL. If the TTL is decremented to 0 by a router, it will not be forwarded. + * Changing TTL values is typically done for network probes or when multicasting. + * + * The `ttl` argument may be between 1 and 255\. The default on most systems + * is 64. + * + * This method throws `EBADF` if called on an unbound socket. + * @since v0.1.101 + */ + setTTL(ttl: number): number; + /** + * By default, binding a socket will cause it to block the Node.js process from + * exiting as long as the socket is open. The `socket.unref()` method can be used + * to exclude the socket from the reference counting that keeps the Node.js + * process active, allowing the process to exit even if the socket is still + * listening. + * + * Calling `socket.unref()` multiple times will have no addition effect. + * + * The `socket.unref()` method returns a reference to the socket so calls can be + * chained. + * @since v0.9.1 + */ + unref(): this; + /** + * Tells the kernel to join a source-specific multicast channel at the given`sourceAddress` and `groupAddress`, using the `multicastInterface` with the`IP_ADD_SOURCE_MEMBERSHIP` socket + * option. If the `multicastInterface` argument + * is not specified, the operating system will choose one interface and will add + * membership to it. To add membership to every available interface, call`socket.addSourceSpecificMembership()` multiple times, once per interface. + * + * When called on an unbound socket, this method will implicitly bind to a random + * port, listening on all interfaces. + * @since v13.1.0, v12.16.0 + */ + addSourceSpecificMembership(sourceAddress: string, groupAddress: string, multicastInterface?: string): void; + /** + * Instructs the kernel to leave a source-specific multicast channel at the given`sourceAddress` and `groupAddress` using the `IP_DROP_SOURCE_MEMBERSHIP`socket option. This method is + * automatically called by the kernel when the + * socket is closed or the process terminates, so most apps will never have + * reason to call this. + * + * If `multicastInterface` is not specified, the operating system will attempt to + * drop membership on all valid interfaces. + * @since v13.1.0, v12.16.0 + */ + dropSourceSpecificMembership(sourceAddress: string, groupAddress: string, multicastInterface?: string): void; + /** + * events.EventEmitter + * 1. close + * 2. connect + * 3. error + * 4. listening + * 5. message + */ + addListener(event: string, listener: (...args: any[]) => void): this; + addListener(event: 'close', listener: () => void): this; + addListener(event: 'connect', listener: () => void): this; + addListener(event: 'error', listener: (err: Error) => void): this; + addListener(event: 'listening', listener: () => void): this; + addListener(event: 'message', listener: (msg: Buffer, rinfo: RemoteInfo) => void): this; + emit(event: string | symbol, ...args: any[]): boolean; + emit(event: 'close'): boolean; + emit(event: 'connect'): boolean; + emit(event: 'error', err: Error): boolean; + emit(event: 'listening'): boolean; + emit(event: 'message', msg: Buffer, rinfo: RemoteInfo): boolean; + on(event: string, listener: (...args: any[]) => void): this; + on(event: 'close', listener: () => void): this; + on(event: 'connect', listener: () => void): this; + on(event: 'error', listener: (err: Error) => void): this; + on(event: 'listening', listener: () => void): this; + on(event: 'message', listener: (msg: Buffer, rinfo: RemoteInfo) => void): this; + once(event: string, listener: (...args: any[]) => void): this; + once(event: 'close', listener: () => void): this; + once(event: 'connect', listener: () => void): this; + once(event: 'error', listener: (err: Error) => void): this; + once(event: 'listening', listener: () => void): this; + once(event: 'message', listener: (msg: Buffer, rinfo: RemoteInfo) => void): this; + prependListener(event: string, listener: (...args: any[]) => void): this; + prependListener(event: 'close', listener: () => void): this; + prependListener(event: 'connect', listener: () => void): this; + prependListener(event: 'error', listener: (err: Error) => void): this; + prependListener(event: 'listening', listener: () => void): this; + prependListener(event: 'message', listener: (msg: Buffer, rinfo: RemoteInfo) => void): this; + prependOnceListener(event: string, listener: (...args: any[]) => void): this; + prependOnceListener(event: 'close', listener: () => void): this; + prependOnceListener(event: 'connect', listener: () => void): this; + prependOnceListener(event: 'error', listener: (err: Error) => void): this; + prependOnceListener(event: 'listening', listener: () => void): this; + prependOnceListener(event: 'message', listener: (msg: Buffer, rinfo: RemoteInfo) => void): this; + } +} +declare module 'node:dgram' { + export * from 'dgram'; +} diff --git a/node_modules/@types/node/diagnostics_channel.d.ts b/node_modules/@types/node/diagnostics_channel.d.ts new file mode 100644 index 000000000..a87ba8ca9 --- /dev/null +++ b/node_modules/@types/node/diagnostics_channel.d.ts @@ -0,0 +1,153 @@ +/** + * The `diagnostics_channel` module provides an API to create named channels + * to report arbitrary message data for diagnostics purposes. + * + * It can be accessed using: + * + * ```js + * import diagnostics_channel from 'diagnostics_channel'; + * ``` + * + * It is intended that a module writer wanting to report diagnostics messages + * will create one or many top-level channels to report messages through. + * Channels may also be acquired at runtime but it is not encouraged + * due to the additional overhead of doing so. Channels may be exported for + * convenience, but as long as the name is known it can be acquired anywhere. + * + * If you intend for your module to produce diagnostics data for others to + * consume it is recommended that you include documentation of what named + * channels are used along with the shape of the message data. Channel names + * should generally include the module name to avoid collisions with data from + * other modules. + * @experimental + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/diagnostics_channel.js) + */ +declare module 'diagnostics_channel' { + /** + * Check if there are active subscribers to the named channel. This is helpful if + * the message you want to send might be expensive to prepare. + * + * This API is optional but helpful when trying to publish messages from very + * performance-sensitive code. + * + * ```js + * import diagnostics_channel from 'diagnostics_channel'; + * + * if (diagnostics_channel.hasSubscribers('my-channel')) { + * // There are subscribers, prepare and publish message + * } + * ``` + * @since v15.1.0, v14.17.0 + * @param name The channel name + * @return If there are active subscribers + */ + function hasSubscribers(name: string): boolean; + /** + * This is the primary entry-point for anyone wanting to interact with a named + * channel. It produces a channel object which is optimized to reduce overhead at + * publish time as much as possible. + * + * ```js + * import diagnostics_channel from 'diagnostics_channel'; + * + * const channel = diagnostics_channel.channel('my-channel'); + * ``` + * @since v15.1.0, v14.17.0 + * @param name The channel name + * @return The named channel object + */ + function channel(name: string): Channel; + type ChannelListener = (message: unknown, name: string) => void; + /** + * The class `Channel` represents an individual named channel within the data + * pipeline. It is use to track subscribers and to publish messages when there + * are subscribers present. It exists as a separate object to avoid channel + * lookups at publish time, enabling very fast publish speeds and allowing + * for heavy use while incurring very minimal cost. Channels are created with {@link channel}, constructing a channel directly + * with `new Channel(name)` is not supported. + * @since v15.1.0, v14.17.0 + */ + class Channel { + readonly name: string; + /** + * Check if there are active subscribers to this channel. This is helpful if + * the message you want to send might be expensive to prepare. + * + * This API is optional but helpful when trying to publish messages from very + * performance-sensitive code. + * + * ```js + * import diagnostics_channel from 'diagnostics_channel'; + * + * const channel = diagnostics_channel.channel('my-channel'); + * + * if (channel.hasSubscribers) { + * // There are subscribers, prepare and publish message + * } + * ``` + * @since v15.1.0, v14.17.0 + */ + readonly hasSubscribers: boolean; + private constructor(name: string); + /** + * Publish a message to any subscribers to the channel. This will + * trigger message handlers synchronously so they will execute within + * the same context. + * + * ```js + * import diagnostics_channel from 'diagnostics_channel'; + * + * const channel = diagnostics_channel.channel('my-channel'); + * + * channel.publish({ + * some: 'message' + * }); + * ``` + * @since v15.1.0, v14.17.0 + * @param message The message to send to the channel subscribers + */ + publish(message: unknown): void; + /** + * Register a message handler to subscribe to this channel. This message handler + * will be run synchronously whenever a message is published to the channel. Any + * errors thrown in the message handler will trigger an `'uncaughtException'`. + * + * ```js + * import diagnostics_channel from 'diagnostics_channel'; + * + * const channel = diagnostics_channel.channel('my-channel'); + * + * channel.subscribe((message, name) => { + * // Received data + * }); + * ``` + * @since v15.1.0, v14.17.0 + * @param onMessage The handler to receive channel messages + */ + subscribe(onMessage: ChannelListener): void; + /** + * Remove a message handler previously registered to this channel with `channel.subscribe(onMessage)`. + * + * ```js + * import diagnostics_channel from 'diagnostics_channel'; + * + * const channel = diagnostics_channel.channel('my-channel'); + * + * function onMessage(message, name) { + * // Received data + * } + * + * channel.subscribe(onMessage); + * + * channel.unsubscribe(onMessage); + * ``` + * @since v15.1.0, v14.17.0 + * @param onMessage The previous subscribed handler to remove + * @return `true` if the handler was found, `false` otherwise. + */ + unsubscribe(onMessage: ChannelListener): void; + } +} +declare module 'node:diagnostics_channel' { + export * from 'diagnostics_channel'; +} diff --git a/node_modules/@types/node/dns.d.ts b/node_modules/@types/node/dns.d.ts new file mode 100644 index 000000000..305367b81 --- /dev/null +++ b/node_modules/@types/node/dns.d.ts @@ -0,0 +1,659 @@ +/** + * The `dns` module enables name resolution. For example, use it to look up IP + * addresses of host names. + * + * Although named for the [Domain Name System (DNS)](https://en.wikipedia.org/wiki/Domain_Name_System), it does not always use the + * DNS protocol for lookups. {@link lookup} uses the operating system + * facilities to perform name resolution. It may not need to perform any network + * communication. To perform name resolution the way other applications on the same + * system do, use {@link lookup}. + * + * ```js + * const dns = require('dns'); + * + * dns.lookup('example.org', (err, address, family) => { + * console.log('address: %j family: IPv%s', address, family); + * }); + * // address: "93.184.216.34" family: IPv4 + * ``` + * + * All other functions in the `dns` module connect to an actual DNS server to + * perform name resolution. They will always use the network to perform DNS + * queries. These functions do not use the same set of configuration files used by {@link lookup} (e.g. `/etc/hosts`). Use these functions to always perform + * DNS queries, bypassing other name-resolution facilities. + * + * ```js + * const dns = require('dns'); + * + * dns.resolve4('archive.org', (err, addresses) => { + * if (err) throw err; + * + * console.log(`addresses: ${JSON.stringify(addresses)}`); + * + * addresses.forEach((a) => { + * dns.reverse(a, (err, hostnames) => { + * if (err) { + * throw err; + * } + * console.log(`reverse for ${a}: ${JSON.stringify(hostnames)}`); + * }); + * }); + * }); + * ``` + * + * See the `Implementation considerations section` for more information. + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/dns.js) + */ +declare module 'dns' { + import * as dnsPromises from 'node:dns/promises'; + // Supported getaddrinfo flags. + export const ADDRCONFIG: number; + export const V4MAPPED: number; + /** + * If `dns.V4MAPPED` is specified, return resolved IPv6 addresses as + * well as IPv4 mapped IPv6 addresses. + */ + export const ALL: number; + export interface LookupOptions { + family?: number | undefined; + hints?: number | undefined; + all?: boolean | undefined; + /** + * @default true + */ + verbatim?: boolean | undefined; + } + export interface LookupOneOptions extends LookupOptions { + all?: false | undefined; + } + export interface LookupAllOptions extends LookupOptions { + all: true; + } + export interface LookupAddress { + address: string; + family: number; + } + /** + * Resolves a host name (e.g. `'nodejs.org'`) into the first found A (IPv4) or + * AAAA (IPv6) record. All `option` properties are optional. If `options` is an + * integer, then it must be `4` or `6` – if `options` is not provided, then IPv4 + * and IPv6 addresses are both returned if found. + * + * With the `all` option set to `true`, the arguments for `callback` change to`(err, addresses)`, with `addresses` being an array of objects with the + * properties `address` and `family`. + * + * On error, `err` is an `Error` object, where `err.code` is the error code. + * Keep in mind that `err.code` will be set to `'ENOTFOUND'` not only when + * the host name does not exist but also when the lookup fails in other ways + * such as no available file descriptors. + * + * `dns.lookup()` does not necessarily have anything to do with the DNS protocol. + * The implementation uses an operating system facility that can associate names + * with addresses, and vice versa. This implementation can have subtle but + * important consequences on the behavior of any Node.js program. Please take some + * time to consult the `Implementation considerations section` before using`dns.lookup()`. + * + * Example usage: + * + * ```js + * const dns = require('dns'); + * const options = { + * family: 6, + * hints: dns.ADDRCONFIG | dns.V4MAPPED, + * }; + * dns.lookup('example.com', options, (err, address, family) => + * console.log('address: %j family: IPv%s', address, family)); + * // address: "2606:2800:220:1:248:1893:25c8:1946" family: IPv6 + * + * // When options.all is true, the result will be an Array. + * options.all = true; + * dns.lookup('example.com', options, (err, addresses) => + * console.log('addresses: %j', addresses)); + * // addresses: [{"address":"2606:2800:220:1:248:1893:25c8:1946","family":6}] + * ``` + * + * If this method is invoked as its `util.promisify()` ed version, and `all`is not set to `true`, it returns a `Promise` for an `Object` with `address` and`family` properties. + * @since v0.1.90 + */ + export function lookup(hostname: string, family: number, callback: (err: NodeJS.ErrnoException | null, address: string, family: number) => void): void; + export function lookup(hostname: string, options: LookupOneOptions, callback: (err: NodeJS.ErrnoException | null, address: string, family: number) => void): void; + export function lookup(hostname: string, options: LookupAllOptions, callback: (err: NodeJS.ErrnoException | null, addresses: LookupAddress[]) => void): void; + export function lookup(hostname: string, options: LookupOptions, callback: (err: NodeJS.ErrnoException | null, address: string | LookupAddress[], family: number) => void): void; + export function lookup(hostname: string, callback: (err: NodeJS.ErrnoException | null, address: string, family: number) => void): void; + export namespace lookup { + function __promisify__(hostname: string, options: LookupAllOptions): Promise; + function __promisify__(hostname: string, options?: LookupOneOptions | number): Promise; + function __promisify__(hostname: string, options: LookupOptions): Promise; + } + /** + * Resolves the given `address` and `port` into a host name and service using + * the operating system's underlying `getnameinfo` implementation. + * + * If `address` is not a valid IP address, a `TypeError` will be thrown. + * The `port` will be coerced to a number. If it is not a legal port, a `TypeError`will be thrown. + * + * On an error, `err` is an `Error` object, where `err.code` is the error code. + * + * ```js + * const dns = require('dns'); + * dns.lookupService('127.0.0.1', 22, (err, hostname, service) => { + * console.log(hostname, service); + * // Prints: localhost ssh + * }); + * ``` + * + * If this method is invoked as its `util.promisify()` ed version, it returns a`Promise` for an `Object` with `hostname` and `service` properties. + * @since v0.11.14 + */ + export function lookupService(address: string, port: number, callback: (err: NodeJS.ErrnoException | null, hostname: string, service: string) => void): void; + export namespace lookupService { + function __promisify__( + address: string, + port: number + ): Promise<{ + hostname: string; + service: string; + }>; + } + export interface ResolveOptions { + ttl: boolean; + } + export interface ResolveWithTtlOptions extends ResolveOptions { + ttl: true; + } + export interface RecordWithTtl { + address: string; + ttl: number; + } + /** @deprecated Use `AnyARecord` or `AnyAaaaRecord` instead. */ + export type AnyRecordWithTtl = AnyARecord | AnyAaaaRecord; + export interface AnyARecord extends RecordWithTtl { + type: 'A'; + } + export interface AnyAaaaRecord extends RecordWithTtl { + type: 'AAAA'; + } + export interface CaaRecord { + critial: number; + issue?: string | undefined; + issuewild?: string | undefined; + iodef?: string | undefined; + contactemail?: string | undefined; + contactphone?: string | undefined; + } + export interface MxRecord { + priority: number; + exchange: string; + } + export interface AnyMxRecord extends MxRecord { + type: 'MX'; + } + export interface NaptrRecord { + flags: string; + service: string; + regexp: string; + replacement: string; + order: number; + preference: number; + } + export interface AnyNaptrRecord extends NaptrRecord { + type: 'NAPTR'; + } + export interface SoaRecord { + nsname: string; + hostmaster: string; + serial: number; + refresh: number; + retry: number; + expire: number; + minttl: number; + } + export interface AnySoaRecord extends SoaRecord { + type: 'SOA'; + } + export interface SrvRecord { + priority: number; + weight: number; + port: number; + name: string; + } + export interface AnySrvRecord extends SrvRecord { + type: 'SRV'; + } + export interface AnyTxtRecord { + type: 'TXT'; + entries: string[]; + } + export interface AnyNsRecord { + type: 'NS'; + value: string; + } + export interface AnyPtrRecord { + type: 'PTR'; + value: string; + } + export interface AnyCnameRecord { + type: 'CNAME'; + value: string; + } + export type AnyRecord = AnyARecord | AnyAaaaRecord | AnyCnameRecord | AnyMxRecord | AnyNaptrRecord | AnyNsRecord | AnyPtrRecord | AnySoaRecord | AnySrvRecord | AnyTxtRecord; + /** + * Uses the DNS protocol to resolve a host name (e.g. `'nodejs.org'`) into an array + * of the resource records. The `callback` function has arguments`(err, records)`. When successful, `records` will be an array of resource + * records. The type and structure of individual results varies based on `rrtype`: + * + * + * + * On error, `err` is an `Error` object, where `err.code` is one of the `DNS error codes`. + * @since v0.1.27 + * @param hostname Host name to resolve. + * @param [rrtype='A'] Resource record type. + */ + export function resolve(hostname: string, callback: (err: NodeJS.ErrnoException | null, addresses: string[]) => void): void; + export function resolve(hostname: string, rrtype: 'A', callback: (err: NodeJS.ErrnoException | null, addresses: string[]) => void): void; + export function resolve(hostname: string, rrtype: 'AAAA', callback: (err: NodeJS.ErrnoException | null, addresses: string[]) => void): void; + export function resolve(hostname: string, rrtype: 'ANY', callback: (err: NodeJS.ErrnoException | null, addresses: AnyRecord[]) => void): void; + export function resolve(hostname: string, rrtype: 'CNAME', callback: (err: NodeJS.ErrnoException | null, addresses: string[]) => void): void; + export function resolve(hostname: string, rrtype: 'MX', callback: (err: NodeJS.ErrnoException | null, addresses: MxRecord[]) => void): void; + export function resolve(hostname: string, rrtype: 'NAPTR', callback: (err: NodeJS.ErrnoException | null, addresses: NaptrRecord[]) => void): void; + export function resolve(hostname: string, rrtype: 'NS', callback: (err: NodeJS.ErrnoException | null, addresses: string[]) => void): void; + export function resolve(hostname: string, rrtype: 'PTR', callback: (err: NodeJS.ErrnoException | null, addresses: string[]) => void): void; + export function resolve(hostname: string, rrtype: 'SOA', callback: (err: NodeJS.ErrnoException | null, addresses: SoaRecord) => void): void; + export function resolve(hostname: string, rrtype: 'SRV', callback: (err: NodeJS.ErrnoException | null, addresses: SrvRecord[]) => void): void; + export function resolve(hostname: string, rrtype: 'TXT', callback: (err: NodeJS.ErrnoException | null, addresses: string[][]) => void): void; + export function resolve( + hostname: string, + rrtype: string, + callback: (err: NodeJS.ErrnoException | null, addresses: string[] | MxRecord[] | NaptrRecord[] | SoaRecord | SrvRecord[] | string[][] | AnyRecord[]) => void + ): void; + export namespace resolve { + function __promisify__(hostname: string, rrtype?: 'A' | 'AAAA' | 'CNAME' | 'NS' | 'PTR'): Promise; + function __promisify__(hostname: string, rrtype: 'ANY'): Promise; + function __promisify__(hostname: string, rrtype: 'MX'): Promise; + function __promisify__(hostname: string, rrtype: 'NAPTR'): Promise; + function __promisify__(hostname: string, rrtype: 'SOA'): Promise; + function __promisify__(hostname: string, rrtype: 'SRV'): Promise; + function __promisify__(hostname: string, rrtype: 'TXT'): Promise; + function __promisify__(hostname: string, rrtype: string): Promise; + } + /** + * Uses the DNS protocol to resolve a IPv4 addresses (`A` records) for the`hostname`. The `addresses` argument passed to the `callback` function + * will contain an array of IPv4 addresses (e.g.`['74.125.79.104', '74.125.79.105', '74.125.79.106']`). + * @since v0.1.16 + * @param hostname Host name to resolve. + */ + export function resolve4(hostname: string, callback: (err: NodeJS.ErrnoException | null, addresses: string[]) => void): void; + export function resolve4(hostname: string, options: ResolveWithTtlOptions, callback: (err: NodeJS.ErrnoException | null, addresses: RecordWithTtl[]) => void): void; + export function resolve4(hostname: string, options: ResolveOptions, callback: (err: NodeJS.ErrnoException | null, addresses: string[] | RecordWithTtl[]) => void): void; + export namespace resolve4 { + function __promisify__(hostname: string): Promise; + function __promisify__(hostname: string, options: ResolveWithTtlOptions): Promise; + function __promisify__(hostname: string, options?: ResolveOptions): Promise; + } + /** + * Uses the DNS protocol to resolve a IPv6 addresses (`AAAA` records) for the`hostname`. The `addresses` argument passed to the `callback` function + * will contain an array of IPv6 addresses. + * @since v0.1.16 + * @param hostname Host name to resolve. + */ + export function resolve6(hostname: string, callback: (err: NodeJS.ErrnoException | null, addresses: string[]) => void): void; + export function resolve6(hostname: string, options: ResolveWithTtlOptions, callback: (err: NodeJS.ErrnoException | null, addresses: RecordWithTtl[]) => void): void; + export function resolve6(hostname: string, options: ResolveOptions, callback: (err: NodeJS.ErrnoException | null, addresses: string[] | RecordWithTtl[]) => void): void; + export namespace resolve6 { + function __promisify__(hostname: string): Promise; + function __promisify__(hostname: string, options: ResolveWithTtlOptions): Promise; + function __promisify__(hostname: string, options?: ResolveOptions): Promise; + } + /** + * Uses the DNS protocol to resolve `CNAME` records for the `hostname`. The`addresses` argument passed to the `callback` function + * will contain an array of canonical name records available for the `hostname`(e.g. `['bar.example.com']`). + * @since v0.3.2 + */ + export function resolveCname(hostname: string, callback: (err: NodeJS.ErrnoException | null, addresses: string[]) => void): void; + export namespace resolveCname { + function __promisify__(hostname: string): Promise; + } + /** + * Uses the DNS protocol to resolve `CAA` records for the `hostname`. The`addresses` argument passed to the `callback` function + * will contain an array of certification authority authorization records + * available for the `hostname` (e.g. `[{critical: 0, iodef: 'mailto:pki@example.com'}, {critical: 128, issue: 'pki.example.com'}]`). + * @since v15.0.0, v14.17.0 + */ + export function resolveCaa(hostname: string, callback: (err: NodeJS.ErrnoException | null, records: CaaRecord[]) => void): void; + export namespace resolveCaa { + function __promisify__(hostname: string): Promise; + } + /** + * Uses the DNS protocol to resolve mail exchange records (`MX` records) for the`hostname`. The `addresses` argument passed to the `callback` function will + * contain an array of objects containing both a `priority` and `exchange`property (e.g. `[{priority: 10, exchange: 'mx.example.com'}, ...]`). + * @since v0.1.27 + */ + export function resolveMx(hostname: string, callback: (err: NodeJS.ErrnoException | null, addresses: MxRecord[]) => void): void; + export namespace resolveMx { + function __promisify__(hostname: string): Promise; + } + /** + * Uses the DNS protocol to resolve regular expression based records (`NAPTR`records) for the `hostname`. The `addresses` argument passed to the `callback`function will contain an array of + * objects with the following properties: + * + * * `flags` + * * `service` + * * `regexp` + * * `replacement` + * * `order` + * * `preference` + * + * ```js + * { + * flags: 's', + * service: 'SIP+D2U', + * regexp: '', + * replacement: '_sip._udp.example.com', + * order: 30, + * preference: 100 + * } + * ``` + * @since v0.9.12 + */ + export function resolveNaptr(hostname: string, callback: (err: NodeJS.ErrnoException | null, addresses: NaptrRecord[]) => void): void; + export namespace resolveNaptr { + function __promisify__(hostname: string): Promise; + } + /** + * Uses the DNS protocol to resolve name server records (`NS` records) for the`hostname`. The `addresses` argument passed to the `callback` function will + * contain an array of name server records available for `hostname`(e.g. `['ns1.example.com', 'ns2.example.com']`). + * @since v0.1.90 + */ + export function resolveNs(hostname: string, callback: (err: NodeJS.ErrnoException | null, addresses: string[]) => void): void; + export namespace resolveNs { + function __promisify__(hostname: string): Promise; + } + /** + * Uses the DNS protocol to resolve pointer records (`PTR` records) for the`hostname`. The `addresses` argument passed to the `callback` function will + * be an array of strings containing the reply records. + * @since v6.0.0 + */ + export function resolvePtr(hostname: string, callback: (err: NodeJS.ErrnoException | null, addresses: string[]) => void): void; + export namespace resolvePtr { + function __promisify__(hostname: string): Promise; + } + /** + * Uses the DNS protocol to resolve a start of authority record (`SOA` record) for + * the `hostname`. The `address` argument passed to the `callback` function will + * be an object with the following properties: + * + * * `nsname` + * * `hostmaster` + * * `serial` + * * `refresh` + * * `retry` + * * `expire` + * * `minttl` + * + * ```js + * { + * nsname: 'ns.example.com', + * hostmaster: 'root.example.com', + * serial: 2013101809, + * refresh: 10000, + * retry: 2400, + * expire: 604800, + * minttl: 3600 + * } + * ``` + * @since v0.11.10 + */ + export function resolveSoa(hostname: string, callback: (err: NodeJS.ErrnoException | null, address: SoaRecord) => void): void; + export namespace resolveSoa { + function __promisify__(hostname: string): Promise; + } + /** + * Uses the DNS protocol to resolve service records (`SRV` records) for the`hostname`. The `addresses` argument passed to the `callback` function will + * be an array of objects with the following properties: + * + * * `priority` + * * `weight` + * * `port` + * * `name` + * + * ```js + * { + * priority: 10, + * weight: 5, + * port: 21223, + * name: 'service.example.com' + * } + * ``` + * @since v0.1.27 + */ + export function resolveSrv(hostname: string, callback: (err: NodeJS.ErrnoException | null, addresses: SrvRecord[]) => void): void; + export namespace resolveSrv { + function __promisify__(hostname: string): Promise; + } + /** + * Uses the DNS protocol to resolve text queries (`TXT` records) for the`hostname`. The `records` argument passed to the `callback` function is a + * two-dimensional array of the text records available for `hostname` (e.g.`[ ['v=spf1 ip4:0.0.0.0 ', '~all' ] ]`). Each sub-array contains TXT chunks of + * one record. Depending on the use case, these could be either joined together or + * treated separately. + * @since v0.1.27 + */ + export function resolveTxt(hostname: string, callback: (err: NodeJS.ErrnoException | null, addresses: string[][]) => void): void; + export namespace resolveTxt { + function __promisify__(hostname: string): Promise; + } + /** + * Uses the DNS protocol to resolve all records (also known as `ANY` or `*` query). + * The `ret` argument passed to the `callback` function will be an array containing + * various types of records. Each object has a property `type` that indicates the + * type of the current record. And depending on the `type`, additional properties + * will be present on the object: + * + * + * + * Here is an example of the `ret` object passed to the callback: + * + * ```js + * [ { type: 'A', address: '127.0.0.1', ttl: 299 }, + * { type: 'CNAME', value: 'example.com' }, + * { type: 'MX', exchange: 'alt4.aspmx.l.example.com', priority: 50 }, + * { type: 'NS', value: 'ns1.example.com' }, + * { type: 'TXT', entries: [ 'v=spf1 include:_spf.example.com ~all' ] }, + * { type: 'SOA', + * nsname: 'ns1.example.com', + * hostmaster: 'admin.example.com', + * serial: 156696742, + * refresh: 900, + * retry: 900, + * expire: 1800, + * minttl: 60 } ] + * ``` + * + * DNS server operators may choose not to respond to `ANY`queries. It may be better to call individual methods like {@link resolve4},{@link resolveMx}, and so on. For more details, see [RFC + * 8482](https://tools.ietf.org/html/rfc8482). + */ + export function resolveAny(hostname: string, callback: (err: NodeJS.ErrnoException | null, addresses: AnyRecord[]) => void): void; + export namespace resolveAny { + function __promisify__(hostname: string): Promise; + } + /** + * Performs a reverse DNS query that resolves an IPv4 or IPv6 address to an + * array of host names. + * + * On error, `err` is an `Error` object, where `err.code` is + * one of the `DNS error codes`. + * @since v0.1.16 + */ + export function reverse(ip: string, callback: (err: NodeJS.ErrnoException | null, hostnames: string[]) => void): void; + /** + * Sets the IP address and port of servers to be used when performing DNS + * resolution. The `servers` argument is an array of [RFC 5952](https://tools.ietf.org/html/rfc5952#section-6) formatted + * addresses. If the port is the IANA default DNS port (53) it can be omitted. + * + * ```js + * dns.setServers([ + * '4.4.4.4', + * '[2001:4860:4860::8888]', + * '4.4.4.4:1053', + * '[2001:4860:4860::8888]:1053', + * ]); + * ``` + * + * An error will be thrown if an invalid address is provided. + * + * The `dns.setServers()` method must not be called while a DNS query is in + * progress. + * + * The {@link setServers} method affects only {@link resolve},`dns.resolve*()` and {@link reverse} (and specifically _not_ {@link lookup}). + * + * This method works much like [resolve.conf](https://man7.org/linux/man-pages/man5/resolv.conf.5.html). + * That is, if attempting to resolve with the first server provided results in a`NOTFOUND` error, the `resolve()` method will _not_ attempt to resolve with + * subsequent servers provided. Fallback DNS servers will only be used if the + * earlier ones time out or result in some other error. + * @since v0.11.3 + * @param servers array of `RFC 5952` formatted addresses + */ + export function setServers(servers: ReadonlyArray): void; + /** + * Returns an array of IP address strings, formatted according to [RFC 5952](https://tools.ietf.org/html/rfc5952#section-6), + * that are currently configured for DNS resolution. A string will include a port + * section if a custom port is used. + * + * ```js + * [ + * '4.4.4.4', + * '2001:4860:4860::8888', + * '4.4.4.4:1053', + * '[2001:4860:4860::8888]:1053', + * ] + * ``` + * @since v0.11.3 + */ + export function getServers(): string[]; + /** + * Set the default value of `verbatim` in {@link lookup} and `dnsPromises.lookup()`. The value could be: + * + * * `ipv4first`: sets default `verbatim` `false`. + * * `verbatim`: sets default `verbatim` `true`. + * + * The default is `ipv4first` and {@link setDefaultResultOrder} have higher + * priority than `--dns-result-order`. When using `worker threads`,{@link setDefaultResultOrder} from the main thread won't affect the default + * dns orders in workers. + * @since v16.4.0, v14.18.0 + * @param order must be `'ipv4first'` or `'verbatim'`. + */ + export function setDefaultResultOrder(order: 'ipv4first' | 'verbatim'): void; + // Error codes + export const NODATA: string; + export const FORMERR: string; + export const SERVFAIL: string; + export const NOTFOUND: string; + export const NOTIMP: string; + export const REFUSED: string; + export const BADQUERY: string; + export const BADNAME: string; + export const BADFAMILY: string; + export const BADRESP: string; + export const CONNREFUSED: string; + export const TIMEOUT: string; + export const EOF: string; + export const FILE: string; + export const NOMEM: string; + export const DESTRUCTION: string; + export const BADSTR: string; + export const BADFLAGS: string; + export const NONAME: string; + export const BADHINTS: string; + export const NOTINITIALIZED: string; + export const LOADIPHLPAPI: string; + export const ADDRGETNETWORKPARAMS: string; + export const CANCELLED: string; + export interface ResolverOptions { + timeout?: number | undefined; + /** + * @default 4 + */ + tries?: number; + } + /** + * An independent resolver for DNS requests. + * + * Creating a new resolver uses the default server settings. Setting + * the servers used for a resolver using `resolver.setServers()` does not affect + * other resolvers: + * + * ```js + * const { Resolver } = require('dns'); + * const resolver = new Resolver(); + * resolver.setServers(['4.4.4.4']); + * + * // This request will use the server at 4.4.4.4, independent of global settings. + * resolver.resolve4('example.org', (err, addresses) => { + * // ... + * }); + * ``` + * + * The following methods from the `dns` module are available: + * + * * `resolver.getServers()` + * * `resolver.resolve()` + * * `resolver.resolve4()` + * * `resolver.resolve6()` + * * `resolver.resolveAny()` + * * `resolver.resolveCaa()` + * * `resolver.resolveCname()` + * * `resolver.resolveMx()` + * * `resolver.resolveNaptr()` + * * `resolver.resolveNs()` + * * `resolver.resolvePtr()` + * * `resolver.resolveSoa()` + * * `resolver.resolveSrv()` + * * `resolver.resolveTxt()` + * * `resolver.reverse()` + * * `resolver.setServers()` + * @since v8.3.0 + */ + export class Resolver { + constructor(options?: ResolverOptions); + /** + * Cancel all outstanding DNS queries made by this resolver. The corresponding + * callbacks will be called with an error with code `ECANCELLED`. + * @since v8.3.0 + */ + cancel(): void; + getServers: typeof getServers; + resolve: typeof resolve; + resolve4: typeof resolve4; + resolve6: typeof resolve6; + resolveAny: typeof resolveAny; + resolveCname: typeof resolveCname; + resolveMx: typeof resolveMx; + resolveNaptr: typeof resolveNaptr; + resolveNs: typeof resolveNs; + resolvePtr: typeof resolvePtr; + resolveSoa: typeof resolveSoa; + resolveSrv: typeof resolveSrv; + resolveTxt: typeof resolveTxt; + reverse: typeof reverse; + /** + * The resolver instance will send its requests from the specified IP address. + * This allows programs to specify outbound interfaces when used on multi-homed + * systems. + * + * If a v4 or v6 address is not specified, it is set to the default, and the + * operating system will choose a local address automatically. + * + * The resolver will use the v4 local address when making requests to IPv4 DNS + * servers, and the v6 local address when making requests to IPv6 DNS servers. + * The `rrtype` of resolution requests has no impact on the local address used. + * @since v15.1.0, v14.17.0 + * @param [ipv4='0.0.0.0'] A string representation of an IPv4 address. + * @param [ipv6='::0'] A string representation of an IPv6 address. + */ + setLocalAddress(ipv4?: string, ipv6?: string): void; + setServers: typeof setServers; + } + export { dnsPromises as promises }; +} +declare module 'node:dns' { + export * from 'dns'; +} diff --git a/node_modules/@types/node/dns/promises.d.ts b/node_modules/@types/node/dns/promises.d.ts new file mode 100644 index 000000000..77cd807bd --- /dev/null +++ b/node_modules/@types/node/dns/promises.d.ts @@ -0,0 +1,370 @@ +/** + * The `dns.promises` API provides an alternative set of asynchronous DNS methods + * that return `Promise` objects rather than using callbacks. The API is accessible + * via `require('dns').promises` or `require('dns/promises')`. + * @since v10.6.0 + */ +declare module 'dns/promises' { + import { + LookupAddress, + LookupOneOptions, + LookupAllOptions, + LookupOptions, + AnyRecord, + CaaRecord, + MxRecord, + NaptrRecord, + SoaRecord, + SrvRecord, + ResolveWithTtlOptions, + RecordWithTtl, + ResolveOptions, + ResolverOptions, + } from 'node:dns'; + /** + * Returns an array of IP address strings, formatted according to [RFC 5952](https://tools.ietf.org/html/rfc5952#section-6), + * that are currently configured for DNS resolution. A string will include a port + * section if a custom port is used. + * + * ```js + * [ + * '4.4.4.4', + * '2001:4860:4860::8888', + * '4.4.4.4:1053', + * '[2001:4860:4860::8888]:1053', + * ] + * ``` + * @since v10.6.0 + */ + function getServers(): string[]; + /** + * Resolves a host name (e.g. `'nodejs.org'`) into the first found A (IPv4) or + * AAAA (IPv6) record. All `option` properties are optional. If `options` is an + * integer, then it must be `4` or `6` – if `options` is not provided, then IPv4 + * and IPv6 addresses are both returned if found. + * + * With the `all` option set to `true`, the `Promise` is resolved with `addresses`being an array of objects with the properties `address` and `family`. + * + * On error, the `Promise` is rejected with an `Error` object, where `err.code`is the error code. + * Keep in mind that `err.code` will be set to `'ENOTFOUND'` not only when + * the host name does not exist but also when the lookup fails in other ways + * such as no available file descriptors. + * + * `dnsPromises.lookup()` does not necessarily have anything to do with the DNS + * protocol. The implementation uses an operating system facility that can + * associate names with addresses, and vice versa. This implementation can have + * subtle but important consequences on the behavior of any Node.js program. Please + * take some time to consult the `Implementation considerations section` before + * using `dnsPromises.lookup()`. + * + * Example usage: + * + * ```js + * const dns = require('dns'); + * const dnsPromises = dns.promises; + * const options = { + * family: 6, + * hints: dns.ADDRCONFIG | dns.V4MAPPED, + * }; + * + * dnsPromises.lookup('example.com', options).then((result) => { + * console.log('address: %j family: IPv%s', result.address, result.family); + * // address: "2606:2800:220:1:248:1893:25c8:1946" family: IPv6 + * }); + * + * // When options.all is true, the result will be an Array. + * options.all = true; + * dnsPromises.lookup('example.com', options).then((result) => { + * console.log('addresses: %j', result); + * // addresses: [{"address":"2606:2800:220:1:248:1893:25c8:1946","family":6}] + * }); + * ``` + * @since v10.6.0 + */ + function lookup(hostname: string, family: number): Promise; + function lookup(hostname: string, options: LookupOneOptions): Promise; + function lookup(hostname: string, options: LookupAllOptions): Promise; + function lookup(hostname: string, options: LookupOptions): Promise; + function lookup(hostname: string): Promise; + /** + * Resolves the given `address` and `port` into a host name and service using + * the operating system's underlying `getnameinfo` implementation. + * + * If `address` is not a valid IP address, a `TypeError` will be thrown. + * The `port` will be coerced to a number. If it is not a legal port, a `TypeError`will be thrown. + * + * On error, the `Promise` is rejected with an `Error` object, where `err.code`is the error code. + * + * ```js + * const dnsPromises = require('dns').promises; + * dnsPromises.lookupService('127.0.0.1', 22).then((result) => { + * console.log(result.hostname, result.service); + * // Prints: localhost ssh + * }); + * ``` + * @since v10.6.0 + */ + function lookupService( + address: string, + port: number + ): Promise<{ + hostname: string; + service: string; + }>; + /** + * Uses the DNS protocol to resolve a host name (e.g. `'nodejs.org'`) into an array + * of the resource records. When successful, the `Promise` is resolved with an + * array of resource records. The type and structure of individual results vary + * based on `rrtype`: + * + * + * + * On error, the `Promise` is rejected with an `Error` object, where `err.code`is one of the `DNS error codes`. + * @since v10.6.0 + * @param hostname Host name to resolve. + * @param [rrtype='A'] Resource record type. + */ + function resolve(hostname: string): Promise; + function resolve(hostname: string, rrtype: 'A'): Promise; + function resolve(hostname: string, rrtype: 'AAAA'): Promise; + function resolve(hostname: string, rrtype: 'ANY'): Promise; + function resolve(hostname: string, rrtype: 'CAA'): Promise; + function resolve(hostname: string, rrtype: 'CNAME'): Promise; + function resolve(hostname: string, rrtype: 'MX'): Promise; + function resolve(hostname: string, rrtype: 'NAPTR'): Promise; + function resolve(hostname: string, rrtype: 'NS'): Promise; + function resolve(hostname: string, rrtype: 'PTR'): Promise; + function resolve(hostname: string, rrtype: 'SOA'): Promise; + function resolve(hostname: string, rrtype: 'SRV'): Promise; + function resolve(hostname: string, rrtype: 'TXT'): Promise; + function resolve(hostname: string, rrtype: string): Promise; + /** + * Uses the DNS protocol to resolve IPv4 addresses (`A` records) for the`hostname`. On success, the `Promise` is resolved with an array of IPv4 + * addresses (e.g. `['74.125.79.104', '74.125.79.105', '74.125.79.106']`). + * @since v10.6.0 + * @param hostname Host name to resolve. + */ + function resolve4(hostname: string): Promise; + function resolve4(hostname: string, options: ResolveWithTtlOptions): Promise; + function resolve4(hostname: string, options: ResolveOptions): Promise; + /** + * Uses the DNS protocol to resolve IPv6 addresses (`AAAA` records) for the`hostname`. On success, the `Promise` is resolved with an array of IPv6 + * addresses. + * @since v10.6.0 + * @param hostname Host name to resolve. + */ + function resolve6(hostname: string): Promise; + function resolve6(hostname: string, options: ResolveWithTtlOptions): Promise; + function resolve6(hostname: string, options: ResolveOptions): Promise; + /** + * Uses the DNS protocol to resolve all records (also known as `ANY` or `*` query). + * On success, the `Promise` is resolved with an array containing various types of + * records. Each object has a property `type` that indicates the type of the + * current record. And depending on the `type`, additional properties will be + * present on the object: + * + * + * + * Here is an example of the result object: + * + * ```js + * [ { type: 'A', address: '127.0.0.1', ttl: 299 }, + * { type: 'CNAME', value: 'example.com' }, + * { type: 'MX', exchange: 'alt4.aspmx.l.example.com', priority: 50 }, + * { type: 'NS', value: 'ns1.example.com' }, + * { type: 'TXT', entries: [ 'v=spf1 include:_spf.example.com ~all' ] }, + * { type: 'SOA', + * nsname: 'ns1.example.com', + * hostmaster: 'admin.example.com', + * serial: 156696742, + * refresh: 900, + * retry: 900, + * expire: 1800, + * minttl: 60 } ] + * ``` + * @since v10.6.0 + */ + function resolveAny(hostname: string): Promise; + /** + * Uses the DNS protocol to resolve `CAA` records for the `hostname`. On success, + * the `Promise` is resolved with an array of objects containing available + * certification authority authorization records available for the `hostname`(e.g. `[{critical: 0, iodef: 'mailto:pki@example.com'},{critical: 128, issue: 'pki.example.com'}]`). + * @since v15.0.0, v14.17.0 + */ + function resolveCaa(hostname: string): Promise; + /** + * Uses the DNS protocol to resolve `CNAME` records for the `hostname`. On success, + * the `Promise` is resolved with an array of canonical name records available for + * the `hostname` (e.g. `['bar.example.com']`). + * @since v10.6.0 + */ + function resolveCname(hostname: string): Promise; + /** + * Uses the DNS protocol to resolve mail exchange records (`MX` records) for the`hostname`. On success, the `Promise` is resolved with an array of objects + * containing both a `priority` and `exchange` property (e.g.`[{priority: 10, exchange: 'mx.example.com'}, ...]`). + * @since v10.6.0 + */ + function resolveMx(hostname: string): Promise; + /** + * Uses the DNS protocol to resolve regular expression based records (`NAPTR`records) for the `hostname`. On success, the `Promise` is resolved with an array + * of objects with the following properties: + * + * * `flags` + * * `service` + * * `regexp` + * * `replacement` + * * `order` + * * `preference` + * + * ```js + * { + * flags: 's', + * service: 'SIP+D2U', + * regexp: '', + * replacement: '_sip._udp.example.com', + * order: 30, + * preference: 100 + * } + * ``` + * @since v10.6.0 + */ + function resolveNaptr(hostname: string): Promise; + /** + * Uses the DNS protocol to resolve name server records (`NS` records) for the`hostname`. On success, the `Promise` is resolved with an array of name server + * records available for `hostname` (e.g.`['ns1.example.com', 'ns2.example.com']`). + * @since v10.6.0 + */ + function resolveNs(hostname: string): Promise; + /** + * Uses the DNS protocol to resolve pointer records (`PTR` records) for the`hostname`. On success, the `Promise` is resolved with an array of strings + * containing the reply records. + * @since v10.6.0 + */ + function resolvePtr(hostname: string): Promise; + /** + * Uses the DNS protocol to resolve a start of authority record (`SOA` record) for + * the `hostname`. On success, the `Promise` is resolved with an object with the + * following properties: + * + * * `nsname` + * * `hostmaster` + * * `serial` + * * `refresh` + * * `retry` + * * `expire` + * * `minttl` + * + * ```js + * { + * nsname: 'ns.example.com', + * hostmaster: 'root.example.com', + * serial: 2013101809, + * refresh: 10000, + * retry: 2400, + * expire: 604800, + * minttl: 3600 + * } + * ``` + * @since v10.6.0 + */ + function resolveSoa(hostname: string): Promise; + /** + * Uses the DNS protocol to resolve service records (`SRV` records) for the`hostname`. On success, the `Promise` is resolved with an array of objects with + * the following properties: + * + * * `priority` + * * `weight` + * * `port` + * * `name` + * + * ```js + * { + * priority: 10, + * weight: 5, + * port: 21223, + * name: 'service.example.com' + * } + * ``` + * @since v10.6.0 + */ + function resolveSrv(hostname: string): Promise; + /** + * Uses the DNS protocol to resolve text queries (`TXT` records) for the`hostname`. On success, the `Promise` is resolved with a two-dimensional array + * of the text records available for `hostname` (e.g.`[ ['v=spf1 ip4:0.0.0.0 ', '~all' ] ]`). Each sub-array contains TXT chunks of + * one record. Depending on the use case, these could be either joined together or + * treated separately. + * @since v10.6.0 + */ + function resolveTxt(hostname: string): Promise; + /** + * Performs a reverse DNS query that resolves an IPv4 or IPv6 address to an + * array of host names. + * + * On error, the `Promise` is rejected with an `Error` object, where `err.code`is one of the `DNS error codes`. + * @since v10.6.0 + */ + function reverse(ip: string): Promise; + /** + * Sets the IP address and port of servers to be used when performing DNS + * resolution. The `servers` argument is an array of [RFC 5952](https://tools.ietf.org/html/rfc5952#section-6) formatted + * addresses. If the port is the IANA default DNS port (53) it can be omitted. + * + * ```js + * dnsPromises.setServers([ + * '4.4.4.4', + * '[2001:4860:4860::8888]', + * '4.4.4.4:1053', + * '[2001:4860:4860::8888]:1053', + * ]); + * ``` + * + * An error will be thrown if an invalid address is provided. + * + * The `dnsPromises.setServers()` method must not be called while a DNS query is in + * progress. + * + * This method works much like [resolve.conf](https://man7.org/linux/man-pages/man5/resolv.conf.5.html). + * That is, if attempting to resolve with the first server provided results in a`NOTFOUND` error, the `resolve()` method will _not_ attempt to resolve with + * subsequent servers provided. Fallback DNS servers will only be used if the + * earlier ones time out or result in some other error. + * @since v10.6.0 + * @param servers array of `RFC 5952` formatted addresses + */ + function setServers(servers: ReadonlyArray): void; + /** + * Set the default value of `verbatim` in `dns.lookup()` and `dnsPromises.lookup()`. The value could be: + * + * * `ipv4first`: sets default `verbatim` `false`. + * * `verbatim`: sets default `verbatim` `true`. + * + * The default is `ipv4first` and `dnsPromises.setDefaultResultOrder()` have + * higher priority than `--dns-result-order`. When using `worker threads`,`dnsPromises.setDefaultResultOrder()` from the main thread won't affect the + * default dns orders in workers. + * @since v16.4.0, v14.18.0 + * @param order must be `'ipv4first'` or `'verbatim'`. + */ + function setDefaultResultOrder(order: 'ipv4first' | 'verbatim'): void; + class Resolver { + constructor(options?: ResolverOptions); + cancel(): void; + getServers: typeof getServers; + resolve: typeof resolve; + resolve4: typeof resolve4; + resolve6: typeof resolve6; + resolveAny: typeof resolveAny; + resolveCname: typeof resolveCname; + resolveMx: typeof resolveMx; + resolveNaptr: typeof resolveNaptr; + resolveNs: typeof resolveNs; + resolvePtr: typeof resolvePtr; + resolveSoa: typeof resolveSoa; + resolveSrv: typeof resolveSrv; + resolveTxt: typeof resolveTxt; + reverse: typeof reverse; + setLocalAddress(ipv4?: string, ipv6?: string): void; + setServers: typeof setServers; + } +} +declare module 'node:dns/promises' { + export * from 'dns/promises'; +} diff --git a/node_modules/@types/node/dom-events.d.ts b/node_modules/@types/node/dom-events.d.ts new file mode 100644 index 000000000..16e236faf --- /dev/null +++ b/node_modules/@types/node/dom-events.d.ts @@ -0,0 +1,126 @@ +export {}; // Don't export anything! + +//// DOM-like Events +// NB: The Event / EventTarget / EventListener implementations below were copied +// from lib.dom.d.ts, then edited to reflect Node's documentation at +// https://nodejs.org/api/events.html#class-eventtarget. +// Please read that link to understand important implementation differences. + +// This conditional type will be the existing global Event in a browser, or +// the copy below in a Node environment. +type __Event = typeof globalThis extends { onmessage: any, Event: infer T } +? T +: { + /** This is not used in Node.js and is provided purely for completeness. */ + readonly bubbles: boolean; + /** Alias for event.stopPropagation(). This is not used in Node.js and is provided purely for completeness. */ + cancelBubble: () => void; + /** True if the event was created with the cancelable option */ + readonly cancelable: boolean; + /** This is not used in Node.js and is provided purely for completeness. */ + readonly composed: boolean; + /** Returns an array containing the current EventTarget as the only entry or empty if the event is not being dispatched. This is not used in Node.js and is provided purely for completeness. */ + composedPath(): [EventTarget?] + /** Alias for event.target. */ + readonly currentTarget: EventTarget | null; + /** Is true if cancelable is true and event.preventDefault() has been called. */ + readonly defaultPrevented: boolean; + /** This is not used in Node.js and is provided purely for completeness. */ + readonly eventPhase: 0 | 2; + /** The `AbortSignal` "abort" event is emitted with `isTrusted` set to `true`. The value is `false` in all other cases. */ + readonly isTrusted: boolean; + /** Sets the `defaultPrevented` property to `true` if `cancelable` is `true`. */ + preventDefault(): void; + /** This is not used in Node.js and is provided purely for completeness. */ + returnValue: boolean; + /** Alias for event.target. */ + readonly srcElement: EventTarget | null; + /** Stops the invocation of event listeners after the current one completes. */ + stopImmediatePropagation(): void; + /** This is not used in Node.js and is provided purely for completeness. */ + stopPropagation(): void; + /** The `EventTarget` dispatching the event */ + readonly target: EventTarget | null; + /** The millisecond timestamp when the Event object was created. */ + readonly timeStamp: number; + /** Returns the type of event, e.g. "click", "hashchange", or "submit". */ + readonly type: string; +}; + +// See comment above explaining conditional type +type __EventTarget = typeof globalThis extends { onmessage: any, EventTarget: infer T } +? T +: { + /** + * Adds a new handler for the `type` event. Any given `listener` is added only once per `type` and per `capture` option value. + * + * If the `once` option is true, the `listener` is removed after the next time a `type` event is dispatched. + * + * The `capture` option is not used by Node.js in any functional way other than tracking registered event listeners per the `EventTarget` specification. + * Specifically, the `capture` option is used as part of the key when registering a `listener`. + * Any individual `listener` may be added once with `capture = false`, and once with `capture = true`. + */ + addEventListener( + type: string, + listener: EventListener | EventListenerObject, + options?: AddEventListenerOptions | boolean, + ): void; + /** Dispatches a synthetic event event to target and returns true if either event's cancelable attribute value is false or its preventDefault() method was not invoked, and false otherwise. */ + dispatchEvent(event: Event): boolean; + /** Removes the event listener in target's event listener list with the same type, callback, and options. */ + removeEventListener( + type: string, + listener: EventListener | EventListenerObject, + options?: EventListenerOptions | boolean, + ): void; +}; + +interface EventInit { + bubbles?: boolean; + cancelable?: boolean; + composed?: boolean; +} + +interface EventListenerOptions { + /** Not directly used by Node.js. Added for API completeness. Default: `false`. */ + capture?: boolean; +} + +interface AddEventListenerOptions extends EventListenerOptions { + /** When `true`, the listener is automatically removed when it is first invoked. Default: `false`. */ + once?: boolean; + /** When `true`, serves as a hint that the listener will not call the `Event` object's `preventDefault()` method. Default: false. */ + passive?: boolean; +} + +interface EventListener { + (evt: Event): void; +} + +interface EventListenerObject { + handleEvent(object: Event): void; +} + +import {} from 'events'; // Make this an ambient declaration +declare global { + /** An event which takes place in the DOM. */ + interface Event extends __Event {} + var Event: typeof globalThis extends { onmessage: any, Event: infer T } + ? T + : { + prototype: __Event; + new (type: string, eventInitDict?: EventInit): __Event; + }; + + /** + * EventTarget is a DOM interface implemented by objects that can + * receive events and may have listeners for them. + */ + interface EventTarget extends __EventTarget {} + var EventTarget: typeof globalThis extends { onmessage: any, EventTarget: infer T } + ? T + : { + prototype: __EventTarget; + new (): __EventTarget; + }; +} diff --git a/node_modules/@types/node/domain.d.ts b/node_modules/@types/node/domain.d.ts new file mode 100644 index 000000000..fafe68a5d --- /dev/null +++ b/node_modules/@types/node/domain.d.ts @@ -0,0 +1,170 @@ +/** + * **This module is pending deprecation.** Once a replacement API has been + * finalized, this module will be fully deprecated. Most developers should + * **not** have cause to use this module. Users who absolutely must have + * the functionality that domains provide may rely on it for the time being + * but should expect to have to migrate to a different solution + * in the future. + * + * Domains provide a way to handle multiple different IO operations as a + * single group. If any of the event emitters or callbacks registered to a + * domain emit an `'error'` event, or throw an error, then the domain object + * will be notified, rather than losing the context of the error in the`process.on('uncaughtException')` handler, or causing the program to + * exit immediately with an error code. + * @deprecated Since v1.4.2 - Deprecated + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/domain.js) + */ +declare module 'domain' { + import EventEmitter = require('node:events'); + /** + * The `Domain` class encapsulates the functionality of routing errors and + * uncaught exceptions to the active `Domain` object. + * + * To handle the errors that it catches, listen to its `'error'` event. + */ + class Domain extends EventEmitter { + /** + * An array of timers and event emitters that have been explicitly added + * to the domain. + */ + members: Array; + /** + * The `enter()` method is plumbing used by the `run()`, `bind()`, and`intercept()` methods to set the active domain. It sets `domain.active` and`process.domain` to the domain, and implicitly + * pushes the domain onto the domain + * stack managed by the domain module (see {@link exit} for details on the + * domain stack). The call to `enter()` delimits the beginning of a chain of + * asynchronous calls and I/O operations bound to a domain. + * + * Calling `enter()` changes only the active domain, and does not alter the domain + * itself. `enter()` and `exit()` can be called an arbitrary number of times on a + * single domain. + */ + enter(): void; + /** + * The `exit()` method exits the current domain, popping it off the domain stack. + * Any time execution is going to switch to the context of a different chain of + * asynchronous calls, it's important to ensure that the current domain is exited. + * The call to `exit()` delimits either the end of or an interruption to the chain + * of asynchronous calls and I/O operations bound to a domain. + * + * If there are multiple, nested domains bound to the current execution context,`exit()` will exit any domains nested within this domain. + * + * Calling `exit()` changes only the active domain, and does not alter the domain + * itself. `enter()` and `exit()` can be called an arbitrary number of times on a + * single domain. + */ + exit(): void; + /** + * Run the supplied function in the context of the domain, implicitly + * binding all event emitters, timers, and lowlevel requests that are + * created in that context. Optionally, arguments can be passed to + * the function. + * + * This is the most basic way to use a domain. + * + * ```js + * const domain = require('domain'); + * const fs = require('fs'); + * const d = domain.create(); + * d.on('error', (er) => { + * console.error('Caught error!', er); + * }); + * d.run(() => { + * process.nextTick(() => { + * setTimeout(() => { // Simulating some various async stuff + * fs.open('non-existent file', 'r', (er, fd) => { + * if (er) throw er; + * // proceed... + * }); + * }, 100); + * }); + * }); + * ``` + * + * In this example, the `d.on('error')` handler will be triggered, rather + * than crashing the program. + */ + run(fn: (...args: any[]) => T, ...args: any[]): T; + /** + * Explicitly adds an emitter to the domain. If any event handlers called by + * the emitter throw an error, or if the emitter emits an `'error'` event, it + * will be routed to the domain's `'error'` event, just like with implicit + * binding. + * + * This also works with timers that are returned from `setInterval()` and `setTimeout()`. If their callback function throws, it will be caught by + * the domain `'error'` handler. + * + * If the Timer or `EventEmitter` was already bound to a domain, it is removed + * from that one, and bound to this one instead. + * @param emitter emitter or timer to be added to the domain + */ + add(emitter: EventEmitter | NodeJS.Timer): void; + /** + * The opposite of {@link add}. Removes domain handling from the + * specified emitter. + * @param emitter emitter or timer to be removed from the domain + */ + remove(emitter: EventEmitter | NodeJS.Timer): void; + /** + * The returned function will be a wrapper around the supplied callback + * function. When the returned function is called, any errors that are + * thrown will be routed to the domain's `'error'` event. + * + * ```js + * const d = domain.create(); + * + * function readSomeFile(filename, cb) { + * fs.readFile(filename, 'utf8', d.bind((er, data) => { + * // If this throws, it will also be passed to the domain. + * return cb(er, data ? JSON.parse(data) : null); + * })); + * } + * + * d.on('error', (er) => { + * // An error occurred somewhere. If we throw it now, it will crash the program + * // with the normal line number and stack message. + * }); + * ``` + * @param callback The callback function + * @return The bound function + */ + bind(callback: T): T; + /** + * This method is almost identical to {@link bind}. However, in + * addition to catching thrown errors, it will also intercept `Error` objects sent as the first argument to the function. + * + * In this way, the common `if (err) return callback(err);` pattern can be replaced + * with a single error handler in a single place. + * + * ```js + * const d = domain.create(); + * + * function readSomeFile(filename, cb) { + * fs.readFile(filename, 'utf8', d.intercept((data) => { + * // Note, the first argument is never passed to the + * // callback since it is assumed to be the 'Error' argument + * // and thus intercepted by the domain. + * + * // If this throws, it will also be passed to the domain + * // so the error-handling logic can be moved to the 'error' + * // event on the domain instead of being repeated throughout + * // the program. + * return cb(null, JSON.parse(data)); + * })); + * } + * + * d.on('error', (er) => { + * // An error occurred somewhere. If we throw it now, it will crash the program + * // with the normal line number and stack message. + * }); + * ``` + * @param callback The callback function + * @return The intercepted function + */ + intercept(callback: T): T; + } + function create(): Domain; +} +declare module 'node:domain' { + export * from 'domain'; +} diff --git a/node_modules/@types/node/events.d.ts b/node_modules/@types/node/events.d.ts new file mode 100644 index 000000000..4633df19c --- /dev/null +++ b/node_modules/@types/node/events.d.ts @@ -0,0 +1,678 @@ +/** + * Much of the Node.js core API is built around an idiomatic asynchronous + * event-driven architecture in which certain kinds of objects (called "emitters") + * emit named events that cause `Function` objects ("listeners") to be called. + * + * For instance: a `net.Server` object emits an event each time a peer + * connects to it; a `fs.ReadStream` emits an event when the file is opened; + * a `stream` emits an event whenever data is available to be read. + * + * All objects that emit events are instances of the `EventEmitter` class. These + * objects expose an `eventEmitter.on()` function that allows one or more + * functions to be attached to named events emitted by the object. Typically, + * event names are camel-cased strings but any valid JavaScript property key + * can be used. + * + * When the `EventEmitter` object emits an event, all of the functions attached + * to that specific event are called _synchronously_. Any values returned by the + * called listeners are _ignored_ and discarded. + * + * The following example shows a simple `EventEmitter` instance with a single + * listener. The `eventEmitter.on()` method is used to register listeners, while + * the `eventEmitter.emit()` method is used to trigger the event. + * + * ```js + * const EventEmitter = require('events'); + * + * class MyEmitter extends EventEmitter {} + * + * const myEmitter = new MyEmitter(); + * myEmitter.on('event', () => { + * console.log('an event occurred!'); + * }); + * myEmitter.emit('event'); + * ``` + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/events.js) + */ +declare module 'events' { + // NOTE: This class is in the docs but is **not actually exported** by Node. + // If https://github.com/nodejs/node/issues/39903 gets resolved and Node + // actually starts exporting the class, uncomment below. + + // import { EventListener, EventListenerObject } from '__dom-events'; + // /** The NodeEventTarget is a Node.js-specific extension to EventTarget that emulates a subset of the EventEmitter API. */ + // interface NodeEventTarget extends EventTarget { + // /** + // * Node.js-specific extension to the `EventTarget` class that emulates the equivalent `EventEmitter` API. + // * The only difference between `addListener()` and `addEventListener()` is that addListener() will return a reference to the EventTarget. + // */ + // addListener(type: string, listener: EventListener | EventListenerObject, options?: { once: boolean }): this; + // /** Node.js-specific extension to the `EventTarget` class that returns an array of event `type` names for which event listeners are registered. */ + // eventNames(): string[]; + // /** Node.js-specific extension to the `EventTarget` class that returns the number of event listeners registered for the `type`. */ + // listenerCount(type: string): number; + // /** Node.js-specific alias for `eventTarget.removeListener()`. */ + // off(type: string, listener: EventListener | EventListenerObject): this; + // /** Node.js-specific alias for `eventTarget.addListener()`. */ + // on(type: string, listener: EventListener | EventListenerObject, options?: { once: boolean }): this; + // /** Node.js-specific extension to the `EventTarget` class that adds a `once` listener for the given event `type`. This is equivalent to calling `on` with the `once` option set to `true`. */ + // once(type: string, listener: EventListener | EventListenerObject): this; + // /** + // * Node.js-specific extension to the `EventTarget` class. + // * If `type` is specified, removes all registered listeners for `type`, + // * otherwise removes all registered listeners. + // */ + // removeAllListeners(type: string): this; + // /** + // * Node.js-specific extension to the `EventTarget` class that removes the listener for the given `type`. + // * The only difference between `removeListener()` and `removeEventListener()` is that `removeListener()` will return a reference to the `EventTarget`. + // */ + // removeListener(type: string, listener: EventListener | EventListenerObject): this; + // } + + interface EventEmitterOptions { + /** + * Enables automatic capturing of promise rejection. + */ + captureRejections?: boolean | undefined; + } + // Any EventTarget with a Node-style `once` function + interface _NodeEventTarget { + once(eventName: string | symbol, listener: (...args: any[]) => void): this; + } + // Any EventTarget with a DOM-style `addEventListener` + interface _DOMEventTarget { + addEventListener( + eventName: string, + listener: (...args: any[]) => void, + opts?: { + once: boolean; + } + ): any; + } + interface StaticEventEmitterOptions { + signal?: AbortSignal | undefined; + } + interface EventEmitter extends NodeJS.EventEmitter {} + /** + * The `EventEmitter` class is defined and exposed by the `events` module: + * + * ```js + * const EventEmitter = require('events'); + * ``` + * + * All `EventEmitter`s emit the event `'newListener'` when new listeners are + * added and `'removeListener'` when existing listeners are removed. + * + * It supports the following option: + * @since v0.1.26 + */ + class EventEmitter { + constructor(options?: EventEmitterOptions); + /** + * Creates a `Promise` that is fulfilled when the `EventEmitter` emits the given + * event or that is rejected if the `EventEmitter` emits `'error'` while waiting. + * The `Promise` will resolve with an array of all the arguments emitted to the + * given event. + * + * This method is intentionally generic and works with the web platform [EventTarget](https://dom.spec.whatwg.org/#interface-eventtarget) interface, which has no special`'error'` event + * semantics and does not listen to the `'error'` event. + * + * ```js + * const { once, EventEmitter } = require('events'); + * + * async function run() { + * const ee = new EventEmitter(); + * + * process.nextTick(() => { + * ee.emit('myevent', 42); + * }); + * + * const [value] = await once(ee, 'myevent'); + * console.log(value); + * + * const err = new Error('kaboom'); + * process.nextTick(() => { + * ee.emit('error', err); + * }); + * + * try { + * await once(ee, 'myevent'); + * } catch (err) { + * console.log('error happened', err); + * } + * } + * + * run(); + * ``` + * + * The special handling of the `'error'` event is only used when `events.once()`is used to wait for another event. If `events.once()` is used to wait for the + * '`error'` event itself, then it is treated as any other kind of event without + * special handling: + * + * ```js + * const { EventEmitter, once } = require('events'); + * + * const ee = new EventEmitter(); + * + * once(ee, 'error') + * .then(([err]) => console.log('ok', err.message)) + * .catch((err) => console.log('error', err.message)); + * + * ee.emit('error', new Error('boom')); + * + * // Prints: ok boom + * ``` + * + * An `AbortSignal` can be used to cancel waiting for the event: + * + * ```js + * const { EventEmitter, once } = require('events'); + * + * const ee = new EventEmitter(); + * const ac = new AbortController(); + * + * async function foo(emitter, event, signal) { + * try { + * await once(emitter, event, { signal }); + * console.log('event emitted!'); + * } catch (error) { + * if (error.name === 'AbortError') { + * console.error('Waiting for the event was canceled!'); + * } else { + * console.error('There was an error', error.message); + * } + * } + * } + * + * foo(ee, 'foo', ac.signal); + * ac.abort(); // Abort waiting for the event + * ee.emit('foo'); // Prints: Waiting for the event was canceled! + * ``` + * @since v11.13.0, v10.16.0 + */ + static once(emitter: _NodeEventTarget, eventName: string | symbol, options?: StaticEventEmitterOptions): Promise; + static once(emitter: _DOMEventTarget, eventName: string, options?: StaticEventEmitterOptions): Promise; + /** + * ```js + * const { on, EventEmitter } = require('events'); + * + * (async () => { + * const ee = new EventEmitter(); + * + * // Emit later on + * process.nextTick(() => { + * ee.emit('foo', 'bar'); + * ee.emit('foo', 42); + * }); + * + * for await (const event of on(ee, 'foo')) { + * // The execution of this inner block is synchronous and it + * // processes one event at a time (even with await). Do not use + * // if concurrent execution is required. + * console.log(event); // prints ['bar'] [42] + * } + * // Unreachable here + * })(); + * ``` + * + * Returns an `AsyncIterator` that iterates `eventName` events. It will throw + * if the `EventEmitter` emits `'error'`. It removes all listeners when + * exiting the loop. The `value` returned by each iteration is an array + * composed of the emitted event arguments. + * + * An `AbortSignal` can be used to cancel waiting on events: + * + * ```js + * const { on, EventEmitter } = require('events'); + * const ac = new AbortController(); + * + * (async () => { + * const ee = new EventEmitter(); + * + * // Emit later on + * process.nextTick(() => { + * ee.emit('foo', 'bar'); + * ee.emit('foo', 42); + * }); + * + * for await (const event of on(ee, 'foo', { signal: ac.signal })) { + * // The execution of this inner block is synchronous and it + * // processes one event at a time (even with await). Do not use + * // if concurrent execution is required. + * console.log(event); // prints ['bar'] [42] + * } + * // Unreachable here + * })(); + * + * process.nextTick(() => ac.abort()); + * ``` + * @since v13.6.0, v12.16.0 + * @param eventName The name of the event being listened for + * @return that iterates `eventName` events emitted by the `emitter` + */ + static on(emitter: NodeJS.EventEmitter, eventName: string, options?: StaticEventEmitterOptions): AsyncIterableIterator; + /** + * A class method that returns the number of listeners for the given `eventName`registered on the given `emitter`. + * + * ```js + * const { EventEmitter, listenerCount } = require('events'); + * const myEmitter = new EventEmitter(); + * myEmitter.on('event', () => {}); + * myEmitter.on('event', () => {}); + * console.log(listenerCount(myEmitter, 'event')); + * // Prints: 2 + * ``` + * @since v0.9.12 + * @deprecated Since v3.2.0 - Use `listenerCount` instead. + * @param emitter The emitter to query + * @param eventName The event name + */ + static listenerCount(emitter: NodeJS.EventEmitter, eventName: string | symbol): number; + /** + * Returns a copy of the array of listeners for the event named `eventName`. + * + * For `EventEmitter`s this behaves exactly the same as calling `.listeners` on + * the emitter. + * + * For `EventTarget`s this is the only way to get the event listeners for the + * event target. This is useful for debugging and diagnostic purposes. + * + * ```js + * const { getEventListeners, EventEmitter } = require('events'); + * + * { + * const ee = new EventEmitter(); + * const listener = () => console.log('Events are fun'); + * ee.on('foo', listener); + * getEventListeners(ee, 'foo'); // [listener] + * } + * { + * const et = new EventTarget(); + * const listener = () => console.log('Events are fun'); + * et.addEventListener('foo', listener); + * getEventListeners(et, 'foo'); // [listener] + * } + * ``` + * @since v15.2.0, v14.17.0 + */ + static getEventListeners(emitter: _DOMEventTarget | NodeJS.EventEmitter, name: string | symbol): Function[]; + /** + * ```js + * const { + * setMaxListeners, + * EventEmitter + * } = require('events'); + * + * const target = new EventTarget(); + * const emitter = new EventEmitter(); + * + * setMaxListeners(5, target, emitter); + * ``` + * @since v15.4.0 + * @param n A non-negative number. The maximum number of listeners per `EventTarget` event. + * @param eventsTargets Zero or more {EventTarget} or {EventEmitter} instances. If none are specified, `n` is set as the default max for all newly created {EventTarget} and {EventEmitter} + * objects. + */ + static setMaxListeners(n?: number, ...eventTargets: Array<_DOMEventTarget | NodeJS.EventEmitter>): void; + /** + * This symbol shall be used to install a listener for only monitoring `'error'` + * events. Listeners installed using this symbol are called before the regular + * `'error'` listeners are called. + * + * Installing a listener using this symbol does not change the behavior once an + * `'error'` event is emitted, therefore the process will still crash if no + * regular `'error'` listener is installed. + */ + static readonly errorMonitor: unique symbol; + static readonly captureRejectionSymbol: unique symbol; + /** + * Sets or gets the default captureRejection value for all emitters. + */ + // TODO: These should be described using static getter/setter pairs: + static captureRejections: boolean; + static defaultMaxListeners: number; + } + import internal = require('node:events'); + namespace EventEmitter { + // Should just be `export { EventEmitter }`, but that doesn't work in TypeScript 3.4 + export { internal as EventEmitter }; + export interface Abortable { + /** + * When provided the corresponding `AbortController` can be used to cancel an asynchronous action. + */ + signal?: AbortSignal | undefined; + } + } + global { + namespace NodeJS { + interface EventEmitter { + /** + * Alias for `emitter.on(eventName, listener)`. + * @since v0.1.26 + */ + addListener(eventName: string | symbol, listener: (...args: any[]) => void): this; + /** + * Adds the `listener` function to the end of the listeners array for the + * event named `eventName`. No checks are made to see if the `listener` has + * already been added. Multiple calls passing the same combination of `eventName`and `listener` will result in the `listener` being added, and called, multiple + * times. + * + * ```js + * server.on('connection', (stream) => { + * console.log('someone connected!'); + * }); + * ``` + * + * Returns a reference to the `EventEmitter`, so that calls can be chained. + * + * By default, event listeners are invoked in the order they are added. The`emitter.prependListener()` method can be used as an alternative to add the + * event listener to the beginning of the listeners array. + * + * ```js + * const myEE = new EventEmitter(); + * myEE.on('foo', () => console.log('a')); + * myEE.prependListener('foo', () => console.log('b')); + * myEE.emit('foo'); + * // Prints: + * // b + * // a + * ``` + * @since v0.1.101 + * @param eventName The name of the event. + * @param listener The callback function + */ + on(eventName: string | symbol, listener: (...args: any[]) => void): this; + /** + * Adds a **one-time**`listener` function for the event named `eventName`. The + * next time `eventName` is triggered, this listener is removed and then invoked. + * + * ```js + * server.once('connection', (stream) => { + * console.log('Ah, we have our first user!'); + * }); + * ``` + * + * Returns a reference to the `EventEmitter`, so that calls can be chained. + * + * By default, event listeners are invoked in the order they are added. The`emitter.prependOnceListener()` method can be used as an alternative to add the + * event listener to the beginning of the listeners array. + * + * ```js + * const myEE = new EventEmitter(); + * myEE.once('foo', () => console.log('a')); + * myEE.prependOnceListener('foo', () => console.log('b')); + * myEE.emit('foo'); + * // Prints: + * // b + * // a + * ``` + * @since v0.3.0 + * @param eventName The name of the event. + * @param listener The callback function + */ + once(eventName: string | symbol, listener: (...args: any[]) => void): this; + /** + * Removes the specified `listener` from the listener array for the event named`eventName`. + * + * ```js + * const callback = (stream) => { + * console.log('someone connected!'); + * }; + * server.on('connection', callback); + * // ... + * server.removeListener('connection', callback); + * ``` + * + * `removeListener()` will remove, at most, one instance of a listener from the + * listener array. If any single listener has been added multiple times to the + * listener array for the specified `eventName`, then `removeListener()` must be + * called multiple times to remove each instance. + * + * Once an event is emitted, all listeners attached to it at the + * time of emitting are called in order. This implies that any`removeListener()` or `removeAllListeners()` calls _after_ emitting and _before_ the last listener finishes execution + * will not remove them from`emit()` in progress. Subsequent events behave as expected. + * + * ```js + * const myEmitter = new MyEmitter(); + * + * const callbackA = () => { + * console.log('A'); + * myEmitter.removeListener('event', callbackB); + * }; + * + * const callbackB = () => { + * console.log('B'); + * }; + * + * myEmitter.on('event', callbackA); + * + * myEmitter.on('event', callbackB); + * + * // callbackA removes listener callbackB but it will still be called. + * // Internal listener array at time of emit [callbackA, callbackB] + * myEmitter.emit('event'); + * // Prints: + * // A + * // B + * + * // callbackB is now removed. + * // Internal listener array [callbackA] + * myEmitter.emit('event'); + * // Prints: + * // A + * ``` + * + * Because listeners are managed using an internal array, calling this will + * change the position indices of any listener registered _after_ the listener + * being removed. This will not impact the order in which listeners are called, + * but it means that any copies of the listener array as returned by + * the `emitter.listeners()` method will need to be recreated. + * + * When a single function has been added as a handler multiple times for a single + * event (as in the example below), `removeListener()` will remove the most + * recently added instance. In the example the `once('ping')`listener is removed: + * + * ```js + * const ee = new EventEmitter(); + * + * function pong() { + * console.log('pong'); + * } + * + * ee.on('ping', pong); + * ee.once('ping', pong); + * ee.removeListener('ping', pong); + * + * ee.emit('ping'); + * ee.emit('ping'); + * ``` + * + * Returns a reference to the `EventEmitter`, so that calls can be chained. + * @since v0.1.26 + */ + removeListener(eventName: string | symbol, listener: (...args: any[]) => void): this; + /** + * Alias for `emitter.removeListener()`. + * @since v10.0.0 + */ + off(eventName: string | symbol, listener: (...args: any[]) => void): this; + /** + * Removes all listeners, or those of the specified `eventName`. + * + * It is bad practice to remove listeners added elsewhere in the code, + * particularly when the `EventEmitter` instance was created by some other + * component or module (e.g. sockets or file streams). + * + * Returns a reference to the `EventEmitter`, so that calls can be chained. + * @since v0.1.26 + */ + removeAllListeners(event?: string | symbol): this; + /** + * By default `EventEmitter`s will print a warning if more than `10` listeners are + * added for a particular event. This is a useful default that helps finding + * memory leaks. The `emitter.setMaxListeners()` method allows the limit to be + * modified for this specific `EventEmitter` instance. The value can be set to`Infinity` (or `0`) to indicate an unlimited number of listeners. + * + * Returns a reference to the `EventEmitter`, so that calls can be chained. + * @since v0.3.5 + */ + setMaxListeners(n: number): this; + /** + * Returns the current max listener value for the `EventEmitter` which is either + * set by `emitter.setMaxListeners(n)` or defaults to {@link defaultMaxListeners}. + * @since v1.0.0 + */ + getMaxListeners(): number; + /** + * Returns a copy of the array of listeners for the event named `eventName`. + * + * ```js + * server.on('connection', (stream) => { + * console.log('someone connected!'); + * }); + * console.log(util.inspect(server.listeners('connection'))); + * // Prints: [ [Function] ] + * ``` + * @since v0.1.26 + */ + listeners(eventName: string | symbol): Function[]; + /** + * Returns a copy of the array of listeners for the event named `eventName`, + * including any wrappers (such as those created by `.once()`). + * + * ```js + * const emitter = new EventEmitter(); + * emitter.once('log', () => console.log('log once')); + * + * // Returns a new Array with a function `onceWrapper` which has a property + * // `listener` which contains the original listener bound above + * const listeners = emitter.rawListeners('log'); + * const logFnWrapper = listeners[0]; + * + * // Logs "log once" to the console and does not unbind the `once` event + * logFnWrapper.listener(); + * + * // Logs "log once" to the console and removes the listener + * logFnWrapper(); + * + * emitter.on('log', () => console.log('log persistently')); + * // Will return a new Array with a single function bound by `.on()` above + * const newListeners = emitter.rawListeners('log'); + * + * // Logs "log persistently" twice + * newListeners[0](); + * emitter.emit('log'); + * ``` + * @since v9.4.0 + */ + rawListeners(eventName: string | symbol): Function[]; + /** + * Synchronously calls each of the listeners registered for the event named`eventName`, in the order they were registered, passing the supplied arguments + * to each. + * + * Returns `true` if the event had listeners, `false` otherwise. + * + * ```js + * const EventEmitter = require('events'); + * const myEmitter = new EventEmitter(); + * + * // First listener + * myEmitter.on('event', function firstListener() { + * console.log('Helloooo! first listener'); + * }); + * // Second listener + * myEmitter.on('event', function secondListener(arg1, arg2) { + * console.log(`event with parameters ${arg1}, ${arg2} in second listener`); + * }); + * // Third listener + * myEmitter.on('event', function thirdListener(...args) { + * const parameters = args.join(', '); + * console.log(`event with parameters ${parameters} in third listener`); + * }); + * + * console.log(myEmitter.listeners('event')); + * + * myEmitter.emit('event', 1, 2, 3, 4, 5); + * + * // Prints: + * // [ + * // [Function: firstListener], + * // [Function: secondListener], + * // [Function: thirdListener] + * // ] + * // Helloooo! first listener + * // event with parameters 1, 2 in second listener + * // event with parameters 1, 2, 3, 4, 5 in third listener + * ``` + * @since v0.1.26 + */ + emit(eventName: string | symbol, ...args: any[]): boolean; + /** + * Returns the number of listeners listening to the event named `eventName`. + * @since v3.2.0 + * @param eventName The name of the event being listened for + */ + listenerCount(eventName: string | symbol): number; + /** + * Adds the `listener` function to the _beginning_ of the listeners array for the + * event named `eventName`. No checks are made to see if the `listener` has + * already been added. Multiple calls passing the same combination of `eventName`and `listener` will result in the `listener` being added, and called, multiple + * times. + * + * ```js + * server.prependListener('connection', (stream) => { + * console.log('someone connected!'); + * }); + * ``` + * + * Returns a reference to the `EventEmitter`, so that calls can be chained. + * @since v6.0.0 + * @param eventName The name of the event. + * @param listener The callback function + */ + prependListener(eventName: string | symbol, listener: (...args: any[]) => void): this; + /** + * Adds a **one-time**`listener` function for the event named `eventName` to the _beginning_ of the listeners array. The next time `eventName` is triggered, this + * listener is removed, and then invoked. + * + * ```js + * server.prependOnceListener('connection', (stream) => { + * console.log('Ah, we have our first user!'); + * }); + * ``` + * + * Returns a reference to the `EventEmitter`, so that calls can be chained. + * @since v6.0.0 + * @param eventName The name of the event. + * @param listener The callback function + */ + prependOnceListener(eventName: string | symbol, listener: (...args: any[]) => void): this; + /** + * Returns an array listing the events for which the emitter has registered + * listeners. The values in the array are strings or `Symbol`s. + * + * ```js + * const EventEmitter = require('events'); + * const myEE = new EventEmitter(); + * myEE.on('foo', () => {}); + * myEE.on('bar', () => {}); + * + * const sym = Symbol('symbol'); + * myEE.on(sym, () => {}); + * + * console.log(myEE.eventNames()); + * // Prints: [ 'foo', 'bar', Symbol(symbol) ] + * ``` + * @since v6.0.0 + */ + eventNames(): Array; + } + } + } + export = EventEmitter; +} +declare module 'node:events' { + import events = require('events'); + export = events; +} diff --git a/node_modules/@types/node/fs.d.ts b/node_modules/@types/node/fs.d.ts new file mode 100644 index 000000000..75c53fb0d --- /dev/null +++ b/node_modules/@types/node/fs.d.ts @@ -0,0 +1,3872 @@ +/** + * The `fs` module enables interacting with the file system in a + * way modeled on standard POSIX functions. + * + * To use the promise-based APIs: + * + * ```js + * import * as fs from 'fs/promises'; + * ``` + * + * To use the callback and sync APIs: + * + * ```js + * import * as fs from 'fs'; + * ``` + * + * All file system operations have synchronous, callback, and promise-based + * forms, and are accessible using both CommonJS syntax and ES6 Modules (ESM). + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/fs.js) + */ +declare module 'fs' { + import * as stream from 'node:stream'; + import { Abortable, EventEmitter } from 'node:events'; + import { URL } from 'node:url'; + import * as promises from 'node:fs/promises'; + export { promises }; + /** + * Valid types for path values in "fs". + */ + export type PathLike = string | Buffer | URL; + export type PathOrFileDescriptor = PathLike | number; + export type TimeLike = string | number | Date; + export type NoParamCallback = (err: NodeJS.ErrnoException | null) => void; + export type BufferEncodingOption = + | 'buffer' + | { + encoding: 'buffer'; + }; + export interface ObjectEncodingOptions { + encoding?: BufferEncoding | null | undefined; + } + export type EncodingOption = ObjectEncodingOptions | BufferEncoding | undefined | null; + export type OpenMode = number | string; + export type Mode = number | string; + export interface StatsBase { + isFile(): boolean; + isDirectory(): boolean; + isBlockDevice(): boolean; + isCharacterDevice(): boolean; + isSymbolicLink(): boolean; + isFIFO(): boolean; + isSocket(): boolean; + dev: T; + ino: T; + mode: T; + nlink: T; + uid: T; + gid: T; + rdev: T; + size: T; + blksize: T; + blocks: T; + atimeMs: T; + mtimeMs: T; + ctimeMs: T; + birthtimeMs: T; + atime: Date; + mtime: Date; + ctime: Date; + birthtime: Date; + } + export interface Stats extends StatsBase {} + /** + * A `fs.Stats` object provides information about a file. + * + * Objects returned from {@link stat}, {@link lstat} and {@link fstat} and + * their synchronous counterparts are of this type. + * If `bigint` in the `options` passed to those methods is true, the numeric values + * will be `bigint` instead of `number`, and the object will contain additional + * nanosecond-precision properties suffixed with `Ns`. + * + * ```console + * Stats { + * dev: 2114, + * ino: 48064969, + * mode: 33188, + * nlink: 1, + * uid: 85, + * gid: 100, + * rdev: 0, + * size: 527, + * blksize: 4096, + * blocks: 8, + * atimeMs: 1318289051000.1, + * mtimeMs: 1318289051000.1, + * ctimeMs: 1318289051000.1, + * birthtimeMs: 1318289051000.1, + * atime: Mon, 10 Oct 2011 23:24:11 GMT, + * mtime: Mon, 10 Oct 2011 23:24:11 GMT, + * ctime: Mon, 10 Oct 2011 23:24:11 GMT, + * birthtime: Mon, 10 Oct 2011 23:24:11 GMT } + * ``` + * + * `bigint` version: + * + * ```console + * BigIntStats { + * dev: 2114n, + * ino: 48064969n, + * mode: 33188n, + * nlink: 1n, + * uid: 85n, + * gid: 100n, + * rdev: 0n, + * size: 527n, + * blksize: 4096n, + * blocks: 8n, + * atimeMs: 1318289051000n, + * mtimeMs: 1318289051000n, + * ctimeMs: 1318289051000n, + * birthtimeMs: 1318289051000n, + * atimeNs: 1318289051000000000n, + * mtimeNs: 1318289051000000000n, + * ctimeNs: 1318289051000000000n, + * birthtimeNs: 1318289051000000000n, + * atime: Mon, 10 Oct 2011 23:24:11 GMT, + * mtime: Mon, 10 Oct 2011 23:24:11 GMT, + * ctime: Mon, 10 Oct 2011 23:24:11 GMT, + * birthtime: Mon, 10 Oct 2011 23:24:11 GMT } + * ``` + * @since v0.1.21 + */ + export class Stats {} + /** + * A representation of a directory entry, which can be a file or a subdirectory + * within the directory, as returned by reading from an `fs.Dir`. The + * directory entry is a combination of the file name and file type pairs. + * + * Additionally, when {@link readdir} or {@link readdirSync} is called with + * the `withFileTypes` option set to `true`, the resulting array is filled with `fs.Dirent` objects, rather than strings or `Buffer` s. + * @since v10.10.0 + */ + export class Dirent { + /** + * Returns `true` if the `fs.Dirent` object describes a regular file. + * @since v10.10.0 + */ + isFile(): boolean; + /** + * Returns `true` if the `fs.Dirent` object describes a file system + * directory. + * @since v10.10.0 + */ + isDirectory(): boolean; + /** + * Returns `true` if the `fs.Dirent` object describes a block device. + * @since v10.10.0 + */ + isBlockDevice(): boolean; + /** + * Returns `true` if the `fs.Dirent` object describes a character device. + * @since v10.10.0 + */ + isCharacterDevice(): boolean; + /** + * Returns `true` if the `fs.Dirent` object describes a symbolic link. + * @since v10.10.0 + */ + isSymbolicLink(): boolean; + /** + * Returns `true` if the `fs.Dirent` object describes a first-in-first-out + * (FIFO) pipe. + * @since v10.10.0 + */ + isFIFO(): boolean; + /** + * Returns `true` if the `fs.Dirent` object describes a socket. + * @since v10.10.0 + */ + isSocket(): boolean; + /** + * The file name that this `fs.Dirent` object refers to. The type of this + * value is determined by the `options.encoding` passed to {@link readdir} or {@link readdirSync}. + * @since v10.10.0 + */ + name: string; + } + /** + * A class representing a directory stream. + * + * Created by {@link opendir}, {@link opendirSync}, or `fsPromises.opendir()`. + * + * ```js + * import { opendir } from 'fs/promises'; + * + * try { + * const dir = await opendir('./'); + * for await (const dirent of dir) + * console.log(dirent.name); + * } catch (err) { + * console.error(err); + * } + * ``` + * + * When using the async iterator, the `fs.Dir` object will be automatically + * closed after the iterator exits. + * @since v12.12.0 + */ + export class Dir implements AsyncIterable { + /** + * The read-only path of this directory as was provided to {@link opendir},{@link opendirSync}, or `fsPromises.opendir()`. + * @since v12.12.0 + */ + readonly path: string; + /** + * Asynchronously iterates over the directory via `readdir(3)` until all entries have been read. + */ + [Symbol.asyncIterator](): AsyncIterableIterator; + /** + * Asynchronously close the directory's underlying resource handle. + * Subsequent reads will result in errors. + * + * A promise is returned that will be resolved after the resource has been + * closed. + * @since v12.12.0 + */ + close(): Promise; + close(cb: NoParamCallback): void; + /** + * Synchronously close the directory's underlying resource handle. + * Subsequent reads will result in errors. + * @since v12.12.0 + */ + closeSync(): void; + /** + * Asynchronously read the next directory entry via [`readdir(3)`](http://man7.org/linux/man-pages/man3/readdir.3.html) as an `fs.Dirent`. + * + * A promise is returned that will be resolved with an `fs.Dirent`, or `null`if there are no more directory entries to read. + * + * Directory entries returned by this function are in no particular order as + * provided by the operating system's underlying directory mechanisms. + * Entries added or removed while iterating over the directory might not be + * included in the iteration results. + * @since v12.12.0 + * @return containing {fs.Dirent|null} + */ + read(): Promise; + read(cb: (err: NodeJS.ErrnoException | null, dirEnt: Dirent | null) => void): void; + /** + * Synchronously read the next directory entry as an `fs.Dirent`. See the + * POSIX [`readdir(3)`](http://man7.org/linux/man-pages/man3/readdir.3.html) documentation for more detail. + * + * If there are no more directory entries to read, `null` will be returned. + * + * Directory entries returned by this function are in no particular order as + * provided by the operating system's underlying directory mechanisms. + * Entries added or removed while iterating over the directory might not be + * included in the iteration results. + * @since v12.12.0 + */ + readSync(): Dirent | null; + } + /** + * Class: fs.StatWatcher + * @since v14.3.0, v12.20.0 + * Extends `EventEmitter` + * A successful call to {@link watchFile} method will return a new fs.StatWatcher object. + */ + export interface StatWatcher extends EventEmitter { + /** + * When called, requests that the Node.js event loop _not_ exit so long as the `fs.StatWatcher` is active. Calling `watcher.ref()` multiple times will have + * no effect. + * + * By default, all `fs.StatWatcher` objects are "ref'ed", making it normally + * unnecessary to call `watcher.ref()` unless `watcher.unref()` had been + * called previously. + * @since v14.3.0, v12.20.0 + */ + ref(): this; + /** + * When called, the active `fs.StatWatcher` object will not require the Node.js + * event loop to remain active. If there is no other activity keeping the + * event loop running, the process may exit before the `fs.StatWatcher` object's + * callback is invoked. Calling `watcher.unref()` multiple times will have + * no effect. + * @since v14.3.0, v12.20.0 + */ + unref(): this; + } + export interface FSWatcher extends EventEmitter { + /** + * Stop watching for changes on the given `fs.FSWatcher`. Once stopped, the `fs.FSWatcher` object is no longer usable. + * @since v0.5.8 + */ + close(): void; + /** + * events.EventEmitter + * 1. change + * 2. error + */ + addListener(event: string, listener: (...args: any[]) => void): this; + addListener(event: 'change', listener: (eventType: string, filename: string | Buffer) => void): this; + addListener(event: 'error', listener: (error: Error) => void): this; + addListener(event: 'close', listener: () => void): this; + on(event: string, listener: (...args: any[]) => void): this; + on(event: 'change', listener: (eventType: string, filename: string | Buffer) => void): this; + on(event: 'error', listener: (error: Error) => void): this; + on(event: 'close', listener: () => void): this; + once(event: string, listener: (...args: any[]) => void): this; + once(event: 'change', listener: (eventType: string, filename: string | Buffer) => void): this; + once(event: 'error', listener: (error: Error) => void): this; + once(event: 'close', listener: () => void): this; + prependListener(event: string, listener: (...args: any[]) => void): this; + prependListener(event: 'change', listener: (eventType: string, filename: string | Buffer) => void): this; + prependListener(event: 'error', listener: (error: Error) => void): this; + prependListener(event: 'close', listener: () => void): this; + prependOnceListener(event: string, listener: (...args: any[]) => void): this; + prependOnceListener(event: 'change', listener: (eventType: string, filename: string | Buffer) => void): this; + prependOnceListener(event: 'error', listener: (error: Error) => void): this; + prependOnceListener(event: 'close', listener: () => void): this; + } + /** + * Instances of `fs.ReadStream` are created and returned using the {@link createReadStream} function. + * @since v0.1.93 + */ + export class ReadStream extends stream.Readable { + close(callback?: (err?: NodeJS.ErrnoException | null) => void): void; + /** + * The number of bytes that have been read so far. + * @since v6.4.0 + */ + bytesRead: number; + /** + * The path to the file the stream is reading from as specified in the first + * argument to `fs.createReadStream()`. If `path` is passed as a string, then`readStream.path` will be a string. If `path` is passed as a `Buffer`, then`readStream.path` will be a + * `Buffer`. If `fd` is specified, then`readStream.path` will be `undefined`. + * @since v0.1.93 + */ + path: string | Buffer; + /** + * This property is `true` if the underlying file has not been opened yet, + * i.e. before the `'ready'` event is emitted. + * @since v11.2.0, v10.16.0 + */ + pending: boolean; + /** + * events.EventEmitter + * 1. open + * 2. close + * 3. ready + */ + addListener(event: 'close', listener: () => void): this; + addListener(event: 'data', listener: (chunk: Buffer | string) => void): this; + addListener(event: 'end', listener: () => void): this; + addListener(event: 'error', listener: (err: Error) => void): this; + addListener(event: 'open', listener: (fd: number) => void): this; + addListener(event: 'pause', listener: () => void): this; + addListener(event: 'readable', listener: () => void): this; + addListener(event: 'ready', listener: () => void): this; + addListener(event: 'resume', listener: () => void): this; + addListener(event: string | symbol, listener: (...args: any[]) => void): this; + on(event: 'close', listener: () => void): this; + on(event: 'data', listener: (chunk: Buffer | string) => void): this; + on(event: 'end', listener: () => void): this; + on(event: 'error', listener: (err: Error) => void): this; + on(event: 'open', listener: (fd: number) => void): this; + on(event: 'pause', listener: () => void): this; + on(event: 'readable', listener: () => void): this; + on(event: 'ready', listener: () => void): this; + on(event: 'resume', listener: () => void): this; + on(event: string | symbol, listener: (...args: any[]) => void): this; + once(event: 'close', listener: () => void): this; + once(event: 'data', listener: (chunk: Buffer | string) => void): this; + once(event: 'end', listener: () => void): this; + once(event: 'error', listener: (err: Error) => void): this; + once(event: 'open', listener: (fd: number) => void): this; + once(event: 'pause', listener: () => void): this; + once(event: 'readable', listener: () => void): this; + once(event: 'ready', listener: () => void): this; + once(event: 'resume', listener: () => void): this; + once(event: string | symbol, listener: (...args: any[]) => void): this; + prependListener(event: 'close', listener: () => void): this; + prependListener(event: 'data', listener: (chunk: Buffer | string) => void): this; + prependListener(event: 'end', listener: () => void): this; + prependListener(event: 'error', listener: (err: Error) => void): this; + prependListener(event: 'open', listener: (fd: number) => void): this; + prependListener(event: 'pause', listener: () => void): this; + prependListener(event: 'readable', listener: () => void): this; + prependListener(event: 'ready', listener: () => void): this; + prependListener(event: 'resume', listener: () => void): this; + prependListener(event: string | symbol, listener: (...args: any[]) => void): this; + prependOnceListener(event: 'close', listener: () => void): this; + prependOnceListener(event: 'data', listener: (chunk: Buffer | string) => void): this; + prependOnceListener(event: 'end', listener: () => void): this; + prependOnceListener(event: 'error', listener: (err: Error) => void): this; + prependOnceListener(event: 'open', listener: (fd: number) => void): this; + prependOnceListener(event: 'pause', listener: () => void): this; + prependOnceListener(event: 'readable', listener: () => void): this; + prependOnceListener(event: 'ready', listener: () => void): this; + prependOnceListener(event: 'resume', listener: () => void): this; + prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this; + } + /** + * * Extends `stream.Writable` + * + * Instances of `fs.WriteStream` are created and returned using the {@link createWriteStream} function. + * @since v0.1.93 + */ + export class WriteStream extends stream.Writable { + /** + * Closes `writeStream`. Optionally accepts a + * callback that will be executed once the `writeStream`is closed. + * @since v0.9.4 + */ + close(callback?: (err?: NodeJS.ErrnoException | null) => void): void; + /** + * The number of bytes written so far. Does not include data that is still queued + * for writing. + * @since v0.4.7 + */ + bytesWritten: number; + /** + * The path to the file the stream is writing to as specified in the first + * argument to {@link createWriteStream}. If `path` is passed as a string, then`writeStream.path` will be a string. If `path` is passed as a `Buffer`, then`writeStream.path` will be a + * `Buffer`. + * @since v0.1.93 + */ + path: string | Buffer; + /** + * This property is `true` if the underlying file has not been opened yet, + * i.e. before the `'ready'` event is emitted. + * @since v11.2.0 + */ + pending: boolean; + /** + * events.EventEmitter + * 1. open + * 2. close + * 3. ready + */ + addListener(event: 'close', listener: () => void): this; + addListener(event: 'drain', listener: () => void): this; + addListener(event: 'error', listener: (err: Error) => void): this; + addListener(event: 'finish', listener: () => void): this; + addListener(event: 'open', listener: (fd: number) => void): this; + addListener(event: 'pipe', listener: (src: stream.Readable) => void): this; + addListener(event: 'ready', listener: () => void): this; + addListener(event: 'unpipe', listener: (src: stream.Readable) => void): this; + addListener(event: string | symbol, listener: (...args: any[]) => void): this; + on(event: 'close', listener: () => void): this; + on(event: 'drain', listener: () => void): this; + on(event: 'error', listener: (err: Error) => void): this; + on(event: 'finish', listener: () => void): this; + on(event: 'open', listener: (fd: number) => void): this; + on(event: 'pipe', listener: (src: stream.Readable) => void): this; + on(event: 'ready', listener: () => void): this; + on(event: 'unpipe', listener: (src: stream.Readable) => void): this; + on(event: string | symbol, listener: (...args: any[]) => void): this; + once(event: 'close', listener: () => void): this; + once(event: 'drain', listener: () => void): this; + once(event: 'error', listener: (err: Error) => void): this; + once(event: 'finish', listener: () => void): this; + once(event: 'open', listener: (fd: number) => void): this; + once(event: 'pipe', listener: (src: stream.Readable) => void): this; + once(event: 'ready', listener: () => void): this; + once(event: 'unpipe', listener: (src: stream.Readable) => void): this; + once(event: string | symbol, listener: (...args: any[]) => void): this; + prependListener(event: 'close', listener: () => void): this; + prependListener(event: 'drain', listener: () => void): this; + prependListener(event: 'error', listener: (err: Error) => void): this; + prependListener(event: 'finish', listener: () => void): this; + prependListener(event: 'open', listener: (fd: number) => void): this; + prependListener(event: 'pipe', listener: (src: stream.Readable) => void): this; + prependListener(event: 'ready', listener: () => void): this; + prependListener(event: 'unpipe', listener: (src: stream.Readable) => void): this; + prependListener(event: string | symbol, listener: (...args: any[]) => void): this; + prependOnceListener(event: 'close', listener: () => void): this; + prependOnceListener(event: 'drain', listener: () => void): this; + prependOnceListener(event: 'error', listener: (err: Error) => void): this; + prependOnceListener(event: 'finish', listener: () => void): this; + prependOnceListener(event: 'open', listener: (fd: number) => void): this; + prependOnceListener(event: 'pipe', listener: (src: stream.Readable) => void): this; + prependOnceListener(event: 'ready', listener: () => void): this; + prependOnceListener(event: 'unpipe', listener: (src: stream.Readable) => void): this; + prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this; + } + /** + * Asynchronously rename file at `oldPath` to the pathname provided + * as `newPath`. In the case that `newPath` already exists, it will + * be overwritten. If there is a directory at `newPath`, an error will + * be raised instead. No arguments other than a possible exception are + * given to the completion callback. + * + * See also: [`rename(2)`](http://man7.org/linux/man-pages/man2/rename.2.html). + * + * ```js + * import { rename } from 'fs'; + * + * rename('oldFile.txt', 'newFile.txt', (err) => { + * if (err) throw err; + * console.log('Rename complete!'); + * }); + * ``` + * @since v0.0.2 + */ + export function rename(oldPath: PathLike, newPath: PathLike, callback: NoParamCallback): void; + export namespace rename { + /** + * Asynchronous rename(2) - Change the name or location of a file or directory. + * @param oldPath A path to a file. If a URL is provided, it must use the `file:` protocol. + * URL support is _experimental_. + * @param newPath A path to a file. If a URL is provided, it must use the `file:` protocol. + * URL support is _experimental_. + */ + function __promisify__(oldPath: PathLike, newPath: PathLike): Promise; + } + /** + * Renames the file from `oldPath` to `newPath`. Returns `undefined`. + * + * See the POSIX [`rename(2)`](http://man7.org/linux/man-pages/man2/rename.2.html) documentation for more details. + * @since v0.1.21 + */ + export function renameSync(oldPath: PathLike, newPath: PathLike): void; + /** + * Truncates the file. No arguments other than a possible exception are + * given to the completion callback. A file descriptor can also be passed as the + * first argument. In this case, `fs.ftruncate()` is called. + * + * ```js + * import { truncate } from 'fs'; + * // Assuming that 'path/file.txt' is a regular file. + * truncate('path/file.txt', (err) => { + * if (err) throw err; + * console.log('path/file.txt was truncated'); + * }); + * ``` + * + * Passing a file descriptor is deprecated and may result in an error being thrown + * in the future. + * + * See the POSIX [`truncate(2)`](http://man7.org/linux/man-pages/man2/truncate.2.html) documentation for more details. + * @since v0.8.6 + * @param [len=0] + */ + export function truncate(path: PathLike, len: number | undefined | null, callback: NoParamCallback): void; + /** + * Asynchronous truncate(2) - Truncate a file to a specified length. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + */ + export function truncate(path: PathLike, callback: NoParamCallback): void; + export namespace truncate { + /** + * Asynchronous truncate(2) - Truncate a file to a specified length. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param len If not specified, defaults to `0`. + */ + function __promisify__(path: PathLike, len?: number | null): Promise; + } + /** + * Truncates the file. Returns `undefined`. A file descriptor can also be + * passed as the first argument. In this case, `fs.ftruncateSync()` is called. + * + * Passing a file descriptor is deprecated and may result in an error being thrown + * in the future. + * @since v0.8.6 + * @param [len=0] + */ + export function truncateSync(path: PathLike, len?: number | null): void; + /** + * Truncates the file descriptor. No arguments other than a possible exception are + * given to the completion callback. + * + * See the POSIX [`ftruncate(2)`](http://man7.org/linux/man-pages/man2/ftruncate.2.html) documentation for more detail. + * + * If the file referred to by the file descriptor was larger than `len` bytes, only + * the first `len` bytes will be retained in the file. + * + * For example, the following program retains only the first four bytes of the + * file: + * + * ```js + * import { open, close, ftruncate } from 'fs'; + * + * function closeFd(fd) { + * close(fd, (err) => { + * if (err) throw err; + * }); + * } + * + * open('temp.txt', 'r+', (err, fd) => { + * if (err) throw err; + * + * try { + * ftruncate(fd, 4, (err) => { + * closeFd(fd); + * if (err) throw err; + * }); + * } catch (err) { + * closeFd(fd); + * if (err) throw err; + * } + * }); + * ``` + * + * If the file previously was shorter than `len` bytes, it is extended, and the + * extended part is filled with null bytes (`'\0'`): + * + * If `len` is negative then `0` will be used. + * @since v0.8.6 + * @param [len=0] + */ + export function ftruncate(fd: number, len: number | undefined | null, callback: NoParamCallback): void; + /** + * Asynchronous ftruncate(2) - Truncate a file to a specified length. + * @param fd A file descriptor. + */ + export function ftruncate(fd: number, callback: NoParamCallback): void; + export namespace ftruncate { + /** + * Asynchronous ftruncate(2) - Truncate a file to a specified length. + * @param fd A file descriptor. + * @param len If not specified, defaults to `0`. + */ + function __promisify__(fd: number, len?: number | null): Promise; + } + /** + * Truncates the file descriptor. Returns `undefined`. + * + * For detailed information, see the documentation of the asynchronous version of + * this API: {@link ftruncate}. + * @since v0.8.6 + * @param [len=0] + */ + export function ftruncateSync(fd: number, len?: number | null): void; + /** + * Asynchronously changes owner and group of a file. No arguments other than a + * possible exception are given to the completion callback. + * + * See the POSIX [`chown(2)`](http://man7.org/linux/man-pages/man2/chown.2.html) documentation for more detail. + * @since v0.1.97 + */ + export function chown(path: PathLike, uid: number, gid: number, callback: NoParamCallback): void; + export namespace chown { + /** + * Asynchronous chown(2) - Change ownership of a file. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + */ + function __promisify__(path: PathLike, uid: number, gid: number): Promise; + } + /** + * Synchronously changes owner and group of a file. Returns `undefined`. + * This is the synchronous version of {@link chown}. + * + * See the POSIX [`chown(2)`](http://man7.org/linux/man-pages/man2/chown.2.html) documentation for more detail. + * @since v0.1.97 + */ + export function chownSync(path: PathLike, uid: number, gid: number): void; + /** + * Sets the owner of the file. No arguments other than a possible exception are + * given to the completion callback. + * + * See the POSIX [`fchown(2)`](http://man7.org/linux/man-pages/man2/fchown.2.html) documentation for more detail. + * @since v0.4.7 + */ + export function fchown(fd: number, uid: number, gid: number, callback: NoParamCallback): void; + export namespace fchown { + /** + * Asynchronous fchown(2) - Change ownership of a file. + * @param fd A file descriptor. + */ + function __promisify__(fd: number, uid: number, gid: number): Promise; + } + /** + * Sets the owner of the file. Returns `undefined`. + * + * See the POSIX [`fchown(2)`](http://man7.org/linux/man-pages/man2/fchown.2.html) documentation for more detail. + * @since v0.4.7 + * @param uid The file's new owner's user id. + * @param gid The file's new group's group id. + */ + export function fchownSync(fd: number, uid: number, gid: number): void; + /** + * Set the owner of the symbolic link. No arguments other than a possible + * exception are given to the completion callback. + * + * See the POSIX [`lchown(2)`](http://man7.org/linux/man-pages/man2/lchown.2.html) documentation for more detail. + */ + export function lchown(path: PathLike, uid: number, gid: number, callback: NoParamCallback): void; + export namespace lchown { + /** + * Asynchronous lchown(2) - Change ownership of a file. Does not dereference symbolic links. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + */ + function __promisify__(path: PathLike, uid: number, gid: number): Promise; + } + /** + * Set the owner for the path. Returns `undefined`. + * + * See the POSIX [`lchown(2)`](http://man7.org/linux/man-pages/man2/lchown.2.html) documentation for more details. + * @param uid The file's new owner's user id. + * @param gid The file's new group's group id. + */ + export function lchownSync(path: PathLike, uid: number, gid: number): void; + /** + * Changes the access and modification times of a file in the same way as {@link utimes}, with the difference that if the path refers to a symbolic + * link, then the link is not dereferenced: instead, the timestamps of the + * symbolic link itself are changed. + * + * No arguments other than a possible exception are given to the completion + * callback. + * @since v14.5.0, v12.19.0 + */ + export function lutimes(path: PathLike, atime: TimeLike, mtime: TimeLike, callback: NoParamCallback): void; + export namespace lutimes { + /** + * Changes the access and modification times of a file in the same way as `fsPromises.utimes()`, + * with the difference that if the path refers to a symbolic link, then the link is not + * dereferenced: instead, the timestamps of the symbolic link itself are changed. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param atime The last access time. If a string is provided, it will be coerced to number. + * @param mtime The last modified time. If a string is provided, it will be coerced to number. + */ + function __promisify__(path: PathLike, atime: TimeLike, mtime: TimeLike): Promise; + } + /** + * Change the file system timestamps of the symbolic link referenced by `path`. + * Returns `undefined`, or throws an exception when parameters are incorrect or + * the operation fails. This is the synchronous version of {@link lutimes}. + * @since v14.5.0, v12.19.0 + */ + export function lutimesSync(path: PathLike, atime: TimeLike, mtime: TimeLike): void; + /** + * Asynchronously changes the permissions of a file. No arguments other than a + * possible exception are given to the completion callback. + * + * See the POSIX [`chmod(2)`](http://man7.org/linux/man-pages/man2/chmod.2.html) documentation for more detail. + * + * ```js + * import { chmod } from 'fs'; + * + * chmod('my_file.txt', 0o775, (err) => { + * if (err) throw err; + * console.log('The permissions for file "my_file.txt" have been changed!'); + * }); + * ``` + * @since v0.1.30 + */ + export function chmod(path: PathLike, mode: Mode, callback: NoParamCallback): void; + export namespace chmod { + /** + * Asynchronous chmod(2) - Change permissions of a file. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param mode A file mode. If a string is passed, it is parsed as an octal integer. + */ + function __promisify__(path: PathLike, mode: Mode): Promise; + } + /** + * For detailed information, see the documentation of the asynchronous version of + * this API: {@link chmod}. + * + * See the POSIX [`chmod(2)`](http://man7.org/linux/man-pages/man2/chmod.2.html) documentation for more detail. + * @since v0.6.7 + */ + export function chmodSync(path: PathLike, mode: Mode): void; + /** + * Sets the permissions on the file. No arguments other than a possible exception + * are given to the completion callback. + * + * See the POSIX [`fchmod(2)`](http://man7.org/linux/man-pages/man2/fchmod.2.html) documentation for more detail. + * @since v0.4.7 + */ + export function fchmod(fd: number, mode: Mode, callback: NoParamCallback): void; + export namespace fchmod { + /** + * Asynchronous fchmod(2) - Change permissions of a file. + * @param fd A file descriptor. + * @param mode A file mode. If a string is passed, it is parsed as an octal integer. + */ + function __promisify__(fd: number, mode: Mode): Promise; + } + /** + * Sets the permissions on the file. Returns `undefined`. + * + * See the POSIX [`fchmod(2)`](http://man7.org/linux/man-pages/man2/fchmod.2.html) documentation for more detail. + * @since v0.4.7 + */ + export function fchmodSync(fd: number, mode: Mode): void; + /** + * Changes the permissions on a symbolic link. No arguments other than a possible + * exception are given to the completion callback. + * + * This method is only implemented on macOS. + * + * See the POSIX [`lchmod(2)`](https://www.freebsd.org/cgi/man.cgi?query=lchmod&sektion=2) documentation for more detail. + * @deprecated Since v0.4.7 + */ + export function lchmod(path: PathLike, mode: Mode, callback: NoParamCallback): void; + /** @deprecated */ + export namespace lchmod { + /** + * Asynchronous lchmod(2) - Change permissions of a file. Does not dereference symbolic links. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param mode A file mode. If a string is passed, it is parsed as an octal integer. + */ + function __promisify__(path: PathLike, mode: Mode): Promise; + } + /** + * Changes the permissions on a symbolic link. Returns `undefined`. + * + * This method is only implemented on macOS. + * + * See the POSIX [`lchmod(2)`](https://www.freebsd.org/cgi/man.cgi?query=lchmod&sektion=2) documentation for more detail. + * @deprecated Since v0.4.7 + */ + export function lchmodSync(path: PathLike, mode: Mode): void; + /** + * Asynchronous [`stat(2)`](http://man7.org/linux/man-pages/man2/stat.2.html). The callback gets two arguments `(err, stats)` where`stats` is an `fs.Stats` object. + * + * In case of an error, the `err.code` will be one of `Common System Errors`. + * + * Using `fs.stat()` to check for the existence of a file before calling`fs.open()`, `fs.readFile()` or `fs.writeFile()` is not recommended. + * Instead, user code should open/read/write the file directly and handle the + * error raised if the file is not available. + * + * To check if a file exists without manipulating it afterwards, {@link access} is recommended. + * + * For example, given the following directory structure: + * + * ```text + * - txtDir + * -- file.txt + * - app.js + * ``` + * + * The next program will check for the stats of the given paths: + * + * ```js + * import { stat } from 'fs'; + * + * const pathsToCheck = ['./txtDir', './txtDir/file.txt']; + * + * for (let i = 0; i < pathsToCheck.length; i++) { + * stat(pathsToCheck[i], (err, stats) => { + * console.log(stats.isDirectory()); + * console.log(stats); + * }); + * } + * ``` + * + * The resulting output will resemble: + * + * ```console + * true + * Stats { + * dev: 16777220, + * mode: 16877, + * nlink: 3, + * uid: 501, + * gid: 20, + * rdev: 0, + * blksize: 4096, + * ino: 14214262, + * size: 96, + * blocks: 0, + * atimeMs: 1561174653071.963, + * mtimeMs: 1561174614583.3518, + * ctimeMs: 1561174626623.5366, + * birthtimeMs: 1561174126937.2893, + * atime: 2019-06-22T03:37:33.072Z, + * mtime: 2019-06-22T03:36:54.583Z, + * ctime: 2019-06-22T03:37:06.624Z, + * birthtime: 2019-06-22T03:28:46.937Z + * } + * false + * Stats { + * dev: 16777220, + * mode: 33188, + * nlink: 1, + * uid: 501, + * gid: 20, + * rdev: 0, + * blksize: 4096, + * ino: 14214074, + * size: 8, + * blocks: 8, + * atimeMs: 1561174616618.8555, + * mtimeMs: 1561174614584, + * ctimeMs: 1561174614583.8145, + * birthtimeMs: 1561174007710.7478, + * atime: 2019-06-22T03:36:56.619Z, + * mtime: 2019-06-22T03:36:54.584Z, + * ctime: 2019-06-22T03:36:54.584Z, + * birthtime: 2019-06-22T03:26:47.711Z + * } + * ``` + * @since v0.0.2 + */ + export function stat(path: PathLike, callback: (err: NodeJS.ErrnoException | null, stats: Stats) => void): void; + export function stat( + path: PathLike, + options: + | (StatOptions & { + bigint?: false | undefined; + }) + | undefined, + callback: (err: NodeJS.ErrnoException | null, stats: Stats) => void + ): void; + export function stat( + path: PathLike, + options: StatOptions & { + bigint: true; + }, + callback: (err: NodeJS.ErrnoException | null, stats: BigIntStats) => void + ): void; + export function stat(path: PathLike, options: StatOptions | undefined, callback: (err: NodeJS.ErrnoException | null, stats: Stats | BigIntStats) => void): void; + export namespace stat { + /** + * Asynchronous stat(2) - Get file status. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + */ + function __promisify__( + path: PathLike, + options?: StatOptions & { + bigint?: false | undefined; + } + ): Promise; + function __promisify__( + path: PathLike, + options: StatOptions & { + bigint: true; + } + ): Promise; + function __promisify__(path: PathLike, options?: StatOptions): Promise; + } + export interface StatSyncFn extends Function { + (path: PathLike, options?: undefined): Stats; + ( + path: PathLike, + options?: StatSyncOptions & { + bigint?: false | undefined; + throwIfNoEntry: false; + } + ): Stats | undefined; + ( + path: PathLike, + options: StatSyncOptions & { + bigint: true; + throwIfNoEntry: false; + } + ): BigIntStats | undefined; + ( + path: PathLike, + options?: StatSyncOptions & { + bigint?: false | undefined; + } + ): Stats; + ( + path: PathLike, + options: StatSyncOptions & { + bigint: true; + } + ): BigIntStats; + ( + path: PathLike, + options: StatSyncOptions & { + bigint: boolean; + throwIfNoEntry?: false | undefined; + } + ): Stats | BigIntStats; + (path: PathLike, options?: StatSyncOptions): Stats | BigIntStats | undefined; + } + /** + * Synchronous stat(2) - Get file status. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + */ + export const statSync: StatSyncFn; + /** + * Invokes the callback with the `fs.Stats` for the file descriptor. + * + * See the POSIX [`fstat(2)`](http://man7.org/linux/man-pages/man2/fstat.2.html) documentation for more detail. + * @since v0.1.95 + */ + export function fstat(fd: number, callback: (err: NodeJS.ErrnoException | null, stats: Stats) => void): void; + export function fstat( + fd: number, + options: + | (StatOptions & { + bigint?: false | undefined; + }) + | undefined, + callback: (err: NodeJS.ErrnoException | null, stats: Stats) => void + ): void; + export function fstat( + fd: number, + options: StatOptions & { + bigint: true; + }, + callback: (err: NodeJS.ErrnoException | null, stats: BigIntStats) => void + ): void; + export function fstat(fd: number, options: StatOptions | undefined, callback: (err: NodeJS.ErrnoException | null, stats: Stats | BigIntStats) => void): void; + export namespace fstat { + /** + * Asynchronous fstat(2) - Get file status. + * @param fd A file descriptor. + */ + function __promisify__( + fd: number, + options?: StatOptions & { + bigint?: false | undefined; + } + ): Promise; + function __promisify__( + fd: number, + options: StatOptions & { + bigint: true; + } + ): Promise; + function __promisify__(fd: number, options?: StatOptions): Promise; + } + /** + * Retrieves the `fs.Stats` for the file descriptor. + * + * See the POSIX [`fstat(2)`](http://man7.org/linux/man-pages/man2/fstat.2.html) documentation for more detail. + * @since v0.1.95 + */ + export function fstatSync( + fd: number, + options?: StatOptions & { + bigint?: false | undefined; + } + ): Stats; + export function fstatSync( + fd: number, + options: StatOptions & { + bigint: true; + } + ): BigIntStats; + export function fstatSync(fd: number, options?: StatOptions): Stats | BigIntStats; + /** + * Retrieves the `fs.Stats` for the symbolic link referred to by the path. + * The callback gets two arguments `(err, stats)` where `stats` is a `fs.Stats` object. `lstat()` is identical to `stat()`, except that if `path` is a symbolic + * link, then the link itself is stat-ed, not the file that it refers to. + * + * See the POSIX [`lstat(2)`](http://man7.org/linux/man-pages/man2/lstat.2.html) documentation for more details. + * @since v0.1.30 + */ + export function lstat(path: PathLike, callback: (err: NodeJS.ErrnoException | null, stats: Stats) => void): void; + export function lstat( + path: PathLike, + options: + | (StatOptions & { + bigint?: false | undefined; + }) + | undefined, + callback: (err: NodeJS.ErrnoException | null, stats: Stats) => void + ): void; + export function lstat( + path: PathLike, + options: StatOptions & { + bigint: true; + }, + callback: (err: NodeJS.ErrnoException | null, stats: BigIntStats) => void + ): void; + export function lstat(path: PathLike, options: StatOptions | undefined, callback: (err: NodeJS.ErrnoException | null, stats: Stats | BigIntStats) => void): void; + export namespace lstat { + /** + * Asynchronous lstat(2) - Get file status. Does not dereference symbolic links. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + */ + function __promisify__( + path: PathLike, + options?: StatOptions & { + bigint?: false | undefined; + } + ): Promise; + function __promisify__( + path: PathLike, + options: StatOptions & { + bigint: true; + } + ): Promise; + function __promisify__(path: PathLike, options?: StatOptions): Promise; + } + /** + * Synchronous lstat(2) - Get file status. Does not dereference symbolic links. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + */ + export const lstatSync: StatSyncFn; + /** + * Creates a new link from the `existingPath` to the `newPath`. See the POSIX [`link(2)`](http://man7.org/linux/man-pages/man2/link.2.html) documentation for more detail. No arguments other than + * a possible + * exception are given to the completion callback. + * @since v0.1.31 + */ + export function link(existingPath: PathLike, newPath: PathLike, callback: NoParamCallback): void; + export namespace link { + /** + * Asynchronous link(2) - Create a new link (also known as a hard link) to an existing file. + * @param existingPath A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param newPath A path to a file. If a URL is provided, it must use the `file:` protocol. + */ + function __promisify__(existingPath: PathLike, newPath: PathLike): Promise; + } + /** + * Creates a new link from the `existingPath` to the `newPath`. See the POSIX [`link(2)`](http://man7.org/linux/man-pages/man2/link.2.html) documentation for more detail. Returns `undefined`. + * @since v0.1.31 + */ + export function linkSync(existingPath: PathLike, newPath: PathLike): void; + /** + * Creates the link called `path` pointing to `target`. No arguments other than a + * possible exception are given to the completion callback. + * + * See the POSIX [`symlink(2)`](http://man7.org/linux/man-pages/man2/symlink.2.html) documentation for more details. + * + * The `type` argument is only available on Windows and ignored on other platforms. + * It can be set to `'dir'`, `'file'`, or `'junction'`. If the `type` argument is + * not set, Node.js will autodetect `target` type and use `'file'` or `'dir'`. If + * the `target` does not exist, `'file'` will be used. Windows junction points + * require the destination path to be absolute. When using `'junction'`, the`target` argument will automatically be normalized to absolute path. + * + * Relative targets are relative to the link’s parent directory. + * + * ```js + * import { symlink } from 'fs'; + * + * symlink('./mew', './mewtwo', callback); + * ``` + * + * The above example creates a symbolic link `mewtwo` which points to `mew` in the + * same directory: + * + * ```bash + * $ tree . + * . + * ├── mew + * └── mewtwo -> ./mew + * ``` + * @since v0.1.31 + */ + export function symlink(target: PathLike, path: PathLike, type: symlink.Type | undefined | null, callback: NoParamCallback): void; + /** + * Asynchronous symlink(2) - Create a new symbolic link to an existing file. + * @param target A path to an existing file. If a URL is provided, it must use the `file:` protocol. + * @param path A path to the new symlink. If a URL is provided, it must use the `file:` protocol. + */ + export function symlink(target: PathLike, path: PathLike, callback: NoParamCallback): void; + export namespace symlink { + /** + * Asynchronous symlink(2) - Create a new symbolic link to an existing file. + * @param target A path to an existing file. If a URL is provided, it must use the `file:` protocol. + * @param path A path to the new symlink. If a URL is provided, it must use the `file:` protocol. + * @param type May be set to `'dir'`, `'file'`, or `'junction'` (default is `'file'`) and is only available on Windows (ignored on other platforms). + * When using `'junction'`, the `target` argument will automatically be normalized to an absolute path. + */ + function __promisify__(target: PathLike, path: PathLike, type?: string | null): Promise; + type Type = 'dir' | 'file' | 'junction'; + } + /** + * Returns `undefined`. + * + * For detailed information, see the documentation of the asynchronous version of + * this API: {@link symlink}. + * @since v0.1.31 + */ + export function symlinkSync(target: PathLike, path: PathLike, type?: symlink.Type | null): void; + /** + * Reads the contents of the symbolic link referred to by `path`. The callback gets + * two arguments `(err, linkString)`. + * + * See the POSIX [`readlink(2)`](http://man7.org/linux/man-pages/man2/readlink.2.html) documentation for more details. + * + * The optional `options` argument can be a string specifying an encoding, or an + * object with an `encoding` property specifying the character encoding to use for + * the link path passed to the callback. If the `encoding` is set to `'buffer'`, + * the link path returned will be passed as a `Buffer` object. + * @since v0.1.31 + */ + export function readlink(path: PathLike, options: EncodingOption, callback: (err: NodeJS.ErrnoException | null, linkString: string) => void): void; + /** + * Asynchronous readlink(2) - read value of a symbolic link. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + export function readlink(path: PathLike, options: BufferEncodingOption, callback: (err: NodeJS.ErrnoException | null, linkString: Buffer) => void): void; + /** + * Asynchronous readlink(2) - read value of a symbolic link. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + export function readlink(path: PathLike, options: EncodingOption, callback: (err: NodeJS.ErrnoException | null, linkString: string | Buffer) => void): void; + /** + * Asynchronous readlink(2) - read value of a symbolic link. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + */ + export function readlink(path: PathLike, callback: (err: NodeJS.ErrnoException | null, linkString: string) => void): void; + export namespace readlink { + /** + * Asynchronous readlink(2) - read value of a symbolic link. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function __promisify__(path: PathLike, options?: EncodingOption): Promise; + /** + * Asynchronous readlink(2) - read value of a symbolic link. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function __promisify__(path: PathLike, options: BufferEncodingOption): Promise; + /** + * Asynchronous readlink(2) - read value of a symbolic link. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function __promisify__(path: PathLike, options?: EncodingOption): Promise; + } + /** + * Returns the symbolic link's string value. + * + * See the POSIX [`readlink(2)`](http://man7.org/linux/man-pages/man2/readlink.2.html) documentation for more details. + * + * The optional `options` argument can be a string specifying an encoding, or an + * object with an `encoding` property specifying the character encoding to use for + * the link path returned. If the `encoding` is set to `'buffer'`, + * the link path returned will be passed as a `Buffer` object. + * @since v0.1.31 + */ + export function readlinkSync(path: PathLike, options?: EncodingOption): string; + /** + * Synchronous readlink(2) - read value of a symbolic link. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + export function readlinkSync(path: PathLike, options: BufferEncodingOption): Buffer; + /** + * Synchronous readlink(2) - read value of a symbolic link. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + export function readlinkSync(path: PathLike, options?: EncodingOption): string | Buffer; + /** + * Asynchronously computes the canonical pathname by resolving `.`, `..` and + * symbolic links. + * + * A canonical pathname is not necessarily unique. Hard links and bind mounts can + * expose a file system entity through many pathnames. + * + * This function behaves like [`realpath(3)`](http://man7.org/linux/man-pages/man3/realpath.3.html), with some exceptions: + * + * 1. No case conversion is performed on case-insensitive file systems. + * 2. The maximum number of symbolic links is platform-independent and generally + * (much) higher than what the native [`realpath(3)`](http://man7.org/linux/man-pages/man3/realpath.3.html) implementation supports. + * + * The `callback` gets two arguments `(err, resolvedPath)`. May use `process.cwd`to resolve relative paths. + * + * Only paths that can be converted to UTF8 strings are supported. + * + * The optional `options` argument can be a string specifying an encoding, or an + * object with an `encoding` property specifying the character encoding to use for + * the path passed to the callback. If the `encoding` is set to `'buffer'`, + * the path returned will be passed as a `Buffer` object. + * + * If `path` resolves to a socket or a pipe, the function will return a system + * dependent name for that object. + * @since v0.1.31 + */ + export function realpath(path: PathLike, options: EncodingOption, callback: (err: NodeJS.ErrnoException | null, resolvedPath: string) => void): void; + /** + * Asynchronous realpath(3) - return the canonicalized absolute pathname. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + export function realpath(path: PathLike, options: BufferEncodingOption, callback: (err: NodeJS.ErrnoException | null, resolvedPath: Buffer) => void): void; + /** + * Asynchronous realpath(3) - return the canonicalized absolute pathname. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + export function realpath(path: PathLike, options: EncodingOption, callback: (err: NodeJS.ErrnoException | null, resolvedPath: string | Buffer) => void): void; + /** + * Asynchronous realpath(3) - return the canonicalized absolute pathname. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + */ + export function realpath(path: PathLike, callback: (err: NodeJS.ErrnoException | null, resolvedPath: string) => void): void; + export namespace realpath { + /** + * Asynchronous realpath(3) - return the canonicalized absolute pathname. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function __promisify__(path: PathLike, options?: EncodingOption): Promise; + /** + * Asynchronous realpath(3) - return the canonicalized absolute pathname. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function __promisify__(path: PathLike, options: BufferEncodingOption): Promise; + /** + * Asynchronous realpath(3) - return the canonicalized absolute pathname. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function __promisify__(path: PathLike, options?: EncodingOption): Promise; + /** + * Asynchronous [`realpath(3)`](http://man7.org/linux/man-pages/man3/realpath.3.html). + * + * The `callback` gets two arguments `(err, resolvedPath)`. + * + * Only paths that can be converted to UTF8 strings are supported. + * + * The optional `options` argument can be a string specifying an encoding, or an + * object with an `encoding` property specifying the character encoding to use for + * the path passed to the callback. If the `encoding` is set to `'buffer'`, + * the path returned will be passed as a `Buffer` object. + * + * On Linux, when Node.js is linked against musl libc, the procfs file system must + * be mounted on `/proc` in order for this function to work. Glibc does not have + * this restriction. + * @since v9.2.0 + */ + function native(path: PathLike, options: EncodingOption, callback: (err: NodeJS.ErrnoException | null, resolvedPath: string) => void): void; + function native(path: PathLike, options: BufferEncodingOption, callback: (err: NodeJS.ErrnoException | null, resolvedPath: Buffer) => void): void; + function native(path: PathLike, options: EncodingOption, callback: (err: NodeJS.ErrnoException | null, resolvedPath: string | Buffer) => void): void; + function native(path: PathLike, callback: (err: NodeJS.ErrnoException | null, resolvedPath: string) => void): void; + } + /** + * Returns the resolved pathname. + * + * For detailed information, see the documentation of the asynchronous version of + * this API: {@link realpath}. + * @since v0.1.31 + */ + export function realpathSync(path: PathLike, options?: EncodingOption): string; + /** + * Synchronous realpath(3) - return the canonicalized absolute pathname. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + export function realpathSync(path: PathLike, options: BufferEncodingOption): Buffer; + /** + * Synchronous realpath(3) - return the canonicalized absolute pathname. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + export function realpathSync(path: PathLike, options?: EncodingOption): string | Buffer; + export namespace realpathSync { + function native(path: PathLike, options?: EncodingOption): string; + function native(path: PathLike, options: BufferEncodingOption): Buffer; + function native(path: PathLike, options?: EncodingOption): string | Buffer; + } + /** + * Asynchronously removes a file or symbolic link. No arguments other than a + * possible exception are given to the completion callback. + * + * ```js + * import { unlink } from 'fs'; + * // Assuming that 'path/file.txt' is a regular file. + * unlink('path/file.txt', (err) => { + * if (err) throw err; + * console.log('path/file.txt was deleted'); + * }); + * ``` + * + * `fs.unlink()` will not work on a directory, empty or otherwise. To remove a + * directory, use {@link rmdir}. + * + * See the POSIX [`unlink(2)`](http://man7.org/linux/man-pages/man2/unlink.2.html) documentation for more details. + * @since v0.0.2 + */ + export function unlink(path: PathLike, callback: NoParamCallback): void; + export namespace unlink { + /** + * Asynchronous unlink(2) - delete a name and possibly the file it refers to. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + */ + function __promisify__(path: PathLike): Promise; + } + /** + * Synchronous [`unlink(2)`](http://man7.org/linux/man-pages/man2/unlink.2.html). Returns `undefined`. + * @since v0.1.21 + */ + export function unlinkSync(path: PathLike): void; + export interface RmDirOptions { + /** + * If an `EBUSY`, `EMFILE`, `ENFILE`, `ENOTEMPTY`, or + * `EPERM` error is encountered, Node.js will retry the operation with a linear + * backoff wait of `retryDelay` ms longer on each try. This option represents the + * number of retries. This option is ignored if the `recursive` option is not + * `true`. + * @default 0 + */ + maxRetries?: number | undefined; + /** + * @deprecated since v14.14.0 In future versions of Node.js and will trigger a warning + * `fs.rmdir(path, { recursive: true })` will throw if `path` does not exist or is a file. + * Use `fs.rm(path, { recursive: true, force: true })` instead. + * + * If `true`, perform a recursive directory removal. In + * recursive mode, operations are retried on failure. + * @default false + */ + recursive?: boolean | undefined; + /** + * The amount of time in milliseconds to wait between retries. + * This option is ignored if the `recursive` option is not `true`. + * @default 100 + */ + retryDelay?: number | undefined; + } + /** + * Asynchronous [`rmdir(2)`](http://man7.org/linux/man-pages/man2/rmdir.2.html). No arguments other than a possible exception are given + * to the completion callback. + * + * Using `fs.rmdir()` on a file (not a directory) results in an `ENOENT` error on + * Windows and an `ENOTDIR` error on POSIX. + * + * To get a behavior similar to the `rm -rf` Unix command, use {@link rm} with options `{ recursive: true, force: true }`. + * @since v0.0.2 + */ + export function rmdir(path: PathLike, callback: NoParamCallback): void; + export function rmdir(path: PathLike, options: RmDirOptions, callback: NoParamCallback): void; + export namespace rmdir { + /** + * Asynchronous rmdir(2) - delete a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + */ + function __promisify__(path: PathLike, options?: RmDirOptions): Promise; + } + /** + * Synchronous [`rmdir(2)`](http://man7.org/linux/man-pages/man2/rmdir.2.html). Returns `undefined`. + * + * Using `fs.rmdirSync()` on a file (not a directory) results in an `ENOENT` error + * on Windows and an `ENOTDIR` error on POSIX. + * + * To get a behavior similar to the `rm -rf` Unix command, use {@link rmSync} with options `{ recursive: true, force: true }`. + * @since v0.1.21 + */ + export function rmdirSync(path: PathLike, options?: RmDirOptions): void; + export interface RmOptions { + /** + * When `true`, exceptions will be ignored if `path` does not exist. + * @default false + */ + force?: boolean | undefined; + /** + * If an `EBUSY`, `EMFILE`, `ENFILE`, `ENOTEMPTY`, or + * `EPERM` error is encountered, Node.js will retry the operation with a linear + * backoff wait of `retryDelay` ms longer on each try. This option represents the + * number of retries. This option is ignored if the `recursive` option is not + * `true`. + * @default 0 + */ + maxRetries?: number | undefined; + /** + * If `true`, perform a recursive directory removal. In + * recursive mode, operations are retried on failure. + * @default false + */ + recursive?: boolean | undefined; + /** + * The amount of time in milliseconds to wait between retries. + * This option is ignored if the `recursive` option is not `true`. + * @default 100 + */ + retryDelay?: number | undefined; + } + /** + * Asynchronously removes files and directories (modeled on the standard POSIX `rm`utility). No arguments other than a possible exception are given to the + * completion callback. + * @since v14.14.0 + */ + export function rm(path: PathLike, callback: NoParamCallback): void; + export function rm(path: PathLike, options: RmOptions, callback: NoParamCallback): void; + export namespace rm { + /** + * Asynchronously removes files and directories (modeled on the standard POSIX `rm` utility). + */ + function __promisify__(path: PathLike, options?: RmOptions): Promise; + } + /** + * Synchronously removes files and directories (modeled on the standard POSIX `rm`utility). Returns `undefined`. + * @since v14.14.0 + */ + export function rmSync(path: PathLike, options?: RmOptions): void; + export interface MakeDirectoryOptions { + /** + * Indicates whether parent folders should be created. + * If a folder was created, the path to the first created folder will be returned. + * @default false + */ + recursive?: boolean | undefined; + /** + * A file mode. If a string is passed, it is parsed as an octal integer. If not specified + * @default 0o777 + */ + mode?: Mode | undefined; + } + /** + * Asynchronously creates a directory. + * + * The callback is given a possible exception and, if `recursive` is `true`, the + * first directory path created, `(err[, path])`.`path` can still be `undefined` when `recursive` is `true`, if no directory was + * created. + * + * The optional `options` argument can be an integer specifying `mode` (permission + * and sticky bits), or an object with a `mode` property and a `recursive`property indicating whether parent directories should be created. Calling`fs.mkdir()` when `path` is a directory that + * exists results in an error only + * when `recursive` is false. + * + * ```js + * import { mkdir } from 'fs'; + * + * // Creates /tmp/a/apple, regardless of whether `/tmp` and /tmp/a exist. + * mkdir('/tmp/a/apple', { recursive: true }, (err) => { + * if (err) throw err; + * }); + * ``` + * + * On Windows, using `fs.mkdir()` on the root directory even with recursion will + * result in an error: + * + * ```js + * import { mkdir } from 'fs'; + * + * mkdir('/', { recursive: true }, (err) => { + * // => [Error: EPERM: operation not permitted, mkdir 'C:\'] + * }); + * ``` + * + * See the POSIX [`mkdir(2)`](http://man7.org/linux/man-pages/man2/mkdir.2.html) documentation for more details. + * @since v0.1.8 + */ + export function mkdir( + path: PathLike, + options: MakeDirectoryOptions & { + recursive: true; + }, + callback: (err: NodeJS.ErrnoException | null, path?: string) => void + ): void; + /** + * Asynchronous mkdir(2) - create a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options Either the file mode, or an object optionally specifying the file mode and whether parent folders + * should be created. If a string is passed, it is parsed as an octal integer. If not specified, defaults to `0o777`. + */ + export function mkdir( + path: PathLike, + options: + | Mode + | (MakeDirectoryOptions & { + recursive?: false | undefined; + }) + | null + | undefined, + callback: NoParamCallback + ): void; + /** + * Asynchronous mkdir(2) - create a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options Either the file mode, or an object optionally specifying the file mode and whether parent folders + * should be created. If a string is passed, it is parsed as an octal integer. If not specified, defaults to `0o777`. + */ + export function mkdir(path: PathLike, options: Mode | MakeDirectoryOptions | null | undefined, callback: (err: NodeJS.ErrnoException | null, path?: string) => void): void; + /** + * Asynchronous mkdir(2) - create a directory with a mode of `0o777`. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + */ + export function mkdir(path: PathLike, callback: NoParamCallback): void; + export namespace mkdir { + /** + * Asynchronous mkdir(2) - create a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options Either the file mode, or an object optionally specifying the file mode and whether parent folders + * should be created. If a string is passed, it is parsed as an octal integer. If not specified, defaults to `0o777`. + */ + function __promisify__( + path: PathLike, + options: MakeDirectoryOptions & { + recursive: true; + } + ): Promise; + /** + * Asynchronous mkdir(2) - create a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options Either the file mode, or an object optionally specifying the file mode and whether parent folders + * should be created. If a string is passed, it is parsed as an octal integer. If not specified, defaults to `0o777`. + */ + function __promisify__( + path: PathLike, + options?: + | Mode + | (MakeDirectoryOptions & { + recursive?: false | undefined; + }) + | null + ): Promise; + /** + * Asynchronous mkdir(2) - create a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options Either the file mode, or an object optionally specifying the file mode and whether parent folders + * should be created. If a string is passed, it is parsed as an octal integer. If not specified, defaults to `0o777`. + */ + function __promisify__(path: PathLike, options?: Mode | MakeDirectoryOptions | null): Promise; + } + /** + * Synchronously creates a directory. Returns `undefined`, or if `recursive` is`true`, the first directory path created. + * This is the synchronous version of {@link mkdir}. + * + * See the POSIX [`mkdir(2)`](http://man7.org/linux/man-pages/man2/mkdir.2.html) documentation for more details. + * @since v0.1.21 + */ + export function mkdirSync( + path: PathLike, + options: MakeDirectoryOptions & { + recursive: true; + } + ): string | undefined; + /** + * Synchronous mkdir(2) - create a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options Either the file mode, or an object optionally specifying the file mode and whether parent folders + * should be created. If a string is passed, it is parsed as an octal integer. If not specified, defaults to `0o777`. + */ + export function mkdirSync( + path: PathLike, + options?: + | Mode + | (MakeDirectoryOptions & { + recursive?: false | undefined; + }) + | null + ): void; + /** + * Synchronous mkdir(2) - create a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options Either the file mode, or an object optionally specifying the file mode and whether parent folders + * should be created. If a string is passed, it is parsed as an octal integer. If not specified, defaults to `0o777`. + */ + export function mkdirSync(path: PathLike, options?: Mode | MakeDirectoryOptions | null): string | undefined; + /** + * Creates a unique temporary directory. + * + * Generates six random characters to be appended behind a required`prefix` to create a unique temporary directory. Due to platform + * inconsistencies, avoid trailing `X` characters in `prefix`. Some platforms, + * notably the BSDs, can return more than six random characters, and replace + * trailing `X` characters in `prefix` with random characters. + * + * The created directory path is passed as a string to the callback's second + * parameter. + * + * The optional `options` argument can be a string specifying an encoding, or an + * object with an `encoding` property specifying the character encoding to use. + * + * ```js + * import { mkdtemp } from 'fs'; + * + * mkdtemp(path.join(os.tmpdir(), 'foo-'), (err, directory) => { + * if (err) throw err; + * console.log(directory); + * // Prints: /tmp/foo-itXde2 or C:\Users\...\AppData\Local\Temp\foo-itXde2 + * }); + * ``` + * + * The `fs.mkdtemp()` method will append the six randomly selected characters + * directly to the `prefix` string. For instance, given a directory `/tmp`, if the + * intention is to create a temporary directory _within_`/tmp`, the `prefix`must end with a trailing platform-specific path separator + * (`require('path').sep`). + * + * ```js + * import { tmpdir } from 'os'; + * import { mkdtemp } from 'fs'; + * + * // The parent directory for the new temporary directory + * const tmpDir = tmpdir(); + * + * // This method is *INCORRECT*: + * mkdtemp(tmpDir, (err, directory) => { + * if (err) throw err; + * console.log(directory); + * // Will print something similar to `/tmpabc123`. + * // A new temporary directory is created at the file system root + * // rather than *within* the /tmp directory. + * }); + * + * // This method is *CORRECT*: + * import { sep } from 'path'; + * mkdtemp(`${tmpDir}${sep}`, (err, directory) => { + * if (err) throw err; + * console.log(directory); + * // Will print something similar to `/tmp/abc123`. + * // A new temporary directory is created within + * // the /tmp directory. + * }); + * ``` + * @since v5.10.0 + */ + export function mkdtemp(prefix: string, options: EncodingOption, callback: (err: NodeJS.ErrnoException | null, folder: string) => void): void; + /** + * Asynchronously creates a unique temporary directory. + * Generates six random characters to be appended behind a required prefix to create a unique temporary directory. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + export function mkdtemp( + prefix: string, + options: + | 'buffer' + | { + encoding: 'buffer'; + }, + callback: (err: NodeJS.ErrnoException | null, folder: Buffer) => void + ): void; + /** + * Asynchronously creates a unique temporary directory. + * Generates six random characters to be appended behind a required prefix to create a unique temporary directory. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + export function mkdtemp(prefix: string, options: EncodingOption, callback: (err: NodeJS.ErrnoException | null, folder: string | Buffer) => void): void; + /** + * Asynchronously creates a unique temporary directory. + * Generates six random characters to be appended behind a required prefix to create a unique temporary directory. + */ + export function mkdtemp(prefix: string, callback: (err: NodeJS.ErrnoException | null, folder: string) => void): void; + export namespace mkdtemp { + /** + * Asynchronously creates a unique temporary directory. + * Generates six random characters to be appended behind a required prefix to create a unique temporary directory. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function __promisify__(prefix: string, options?: EncodingOption): Promise; + /** + * Asynchronously creates a unique temporary directory. + * Generates six random characters to be appended behind a required prefix to create a unique temporary directory. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function __promisify__(prefix: string, options: BufferEncodingOption): Promise; + /** + * Asynchronously creates a unique temporary directory. + * Generates six random characters to be appended behind a required prefix to create a unique temporary directory. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function __promisify__(prefix: string, options?: EncodingOption): Promise; + } + /** + * Returns the created directory path. + * + * For detailed information, see the documentation of the asynchronous version of + * this API: {@link mkdtemp}. + * + * The optional `options` argument can be a string specifying an encoding, or an + * object with an `encoding` property specifying the character encoding to use. + * @since v5.10.0 + */ + export function mkdtempSync(prefix: string, options?: EncodingOption): string; + /** + * Synchronously creates a unique temporary directory. + * Generates six random characters to be appended behind a required prefix to create a unique temporary directory. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + export function mkdtempSync(prefix: string, options: BufferEncodingOption): Buffer; + /** + * Synchronously creates a unique temporary directory. + * Generates six random characters to be appended behind a required prefix to create a unique temporary directory. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + export function mkdtempSync(prefix: string, options?: EncodingOption): string | Buffer; + /** + * Reads the contents of a directory. The callback gets two arguments `(err, files)`where `files` is an array of the names of the files in the directory excluding`'.'` and `'..'`. + * + * See the POSIX [`readdir(3)`](http://man7.org/linux/man-pages/man3/readdir.3.html) documentation for more details. + * + * The optional `options` argument can be a string specifying an encoding, or an + * object with an `encoding` property specifying the character encoding to use for + * the filenames passed to the callback. If the `encoding` is set to `'buffer'`, + * the filenames returned will be passed as `Buffer` objects. + * + * If `options.withFileTypes` is set to `true`, the `files` array will contain `fs.Dirent` objects. + * @since v0.1.8 + */ + export function readdir( + path: PathLike, + options: + | { + encoding: BufferEncoding | null; + withFileTypes?: false | undefined; + } + | BufferEncoding + | undefined + | null, + callback: (err: NodeJS.ErrnoException | null, files: string[]) => void + ): void; + /** + * Asynchronous readdir(3) - read a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + export function readdir( + path: PathLike, + options: + | { + encoding: 'buffer'; + withFileTypes?: false | undefined; + } + | 'buffer', + callback: (err: NodeJS.ErrnoException | null, files: Buffer[]) => void + ): void; + /** + * Asynchronous readdir(3) - read a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + export function readdir( + path: PathLike, + options: + | (ObjectEncodingOptions & { + withFileTypes?: false | undefined; + }) + | BufferEncoding + | undefined + | null, + callback: (err: NodeJS.ErrnoException | null, files: string[] | Buffer[]) => void + ): void; + /** + * Asynchronous readdir(3) - read a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + */ + export function readdir(path: PathLike, callback: (err: NodeJS.ErrnoException | null, files: string[]) => void): void; + /** + * Asynchronous readdir(3) - read a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options If called with `withFileTypes: true` the result data will be an array of Dirent. + */ + export function readdir( + path: PathLike, + options: ObjectEncodingOptions & { + withFileTypes: true; + }, + callback: (err: NodeJS.ErrnoException | null, files: Dirent[]) => void + ): void; + export namespace readdir { + /** + * Asynchronous readdir(3) - read a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function __promisify__( + path: PathLike, + options?: + | { + encoding: BufferEncoding | null; + withFileTypes?: false | undefined; + } + | BufferEncoding + | null + ): Promise; + /** + * Asynchronous readdir(3) - read a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function __promisify__( + path: PathLike, + options: + | 'buffer' + | { + encoding: 'buffer'; + withFileTypes?: false | undefined; + } + ): Promise; + /** + * Asynchronous readdir(3) - read a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function __promisify__( + path: PathLike, + options?: + | (ObjectEncodingOptions & { + withFileTypes?: false | undefined; + }) + | BufferEncoding + | null + ): Promise; + /** + * Asynchronous readdir(3) - read a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options If called with `withFileTypes: true` the result data will be an array of Dirent + */ + function __promisify__( + path: PathLike, + options: ObjectEncodingOptions & { + withFileTypes: true; + } + ): Promise; + } + /** + * Reads the contents of the directory. + * + * See the POSIX [`readdir(3)`](http://man7.org/linux/man-pages/man3/readdir.3.html) documentation for more details. + * + * The optional `options` argument can be a string specifying an encoding, or an + * object with an `encoding` property specifying the character encoding to use for + * the filenames returned. If the `encoding` is set to `'buffer'`, + * the filenames returned will be passed as `Buffer` objects. + * + * If `options.withFileTypes` is set to `true`, the result will contain `fs.Dirent` objects. + * @since v0.1.21 + */ + export function readdirSync( + path: PathLike, + options?: + | { + encoding: BufferEncoding | null; + withFileTypes?: false | undefined; + } + | BufferEncoding + | null + ): string[]; + /** + * Synchronous readdir(3) - read a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + export function readdirSync( + path: PathLike, + options: + | { + encoding: 'buffer'; + withFileTypes?: false | undefined; + } + | 'buffer' + ): Buffer[]; + /** + * Synchronous readdir(3) - read a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + export function readdirSync( + path: PathLike, + options?: + | (ObjectEncodingOptions & { + withFileTypes?: false | undefined; + }) + | BufferEncoding + | null + ): string[] | Buffer[]; + /** + * Synchronous readdir(3) - read a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options If called with `withFileTypes: true` the result data will be an array of Dirent. + */ + export function readdirSync( + path: PathLike, + options: ObjectEncodingOptions & { + withFileTypes: true; + } + ): Dirent[]; + /** + * Closes the file descriptor. No arguments other than a possible exception are + * given to the completion callback. + * + * Calling `fs.close()` on any file descriptor (`fd`) that is currently in use + * through any other `fs` operation may lead to undefined behavior. + * + * See the POSIX [`close(2)`](http://man7.org/linux/man-pages/man2/close.2.html) documentation for more detail. + * @since v0.0.2 + */ + export function close(fd: number, callback?: NoParamCallback): void; + export namespace close { + /** + * Asynchronous close(2) - close a file descriptor. + * @param fd A file descriptor. + */ + function __promisify__(fd: number): Promise; + } + /** + * Closes the file descriptor. Returns `undefined`. + * + * Calling `fs.closeSync()` on any file descriptor (`fd`) that is currently in use + * through any other `fs` operation may lead to undefined behavior. + * + * See the POSIX [`close(2)`](http://man7.org/linux/man-pages/man2/close.2.html) documentation for more detail. + * @since v0.1.21 + */ + export function closeSync(fd: number): void; + /** + * Asynchronous file open. See the POSIX [`open(2)`](http://man7.org/linux/man-pages/man2/open.2.html) documentation for more details. + * + * `mode` sets the file mode (permission and sticky bits), but only if the file was + * created. On Windows, only the write permission can be manipulated; see {@link chmod}. + * + * The callback gets two arguments `(err, fd)`. + * + * Some characters (`< > : " / \ | ? *`) are reserved under Windows as documented + * by [Naming Files, Paths, and Namespaces](https://docs.microsoft.com/en-us/windows/desktop/FileIO/naming-a-file). Under NTFS, if the filename contains + * a colon, Node.js will open a file system stream, as described by [this MSDN page](https://docs.microsoft.com/en-us/windows/desktop/FileIO/using-streams). + * + * Functions based on `fs.open()` exhibit this behavior as well:`fs.writeFile()`, `fs.readFile()`, etc. + * @since v0.0.2 + * @param [flags='r'] See `support of file system `flags``. + * @param [mode=0o666] + */ + export function open(path: PathLike, flags: OpenMode | undefined, mode: Mode | undefined | null, callback: (err: NodeJS.ErrnoException | null, fd: number) => void): void; + /** + * Asynchronous open(2) - open and possibly create a file. If the file is created, its mode will be `0o666`. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param [flags='r'] See `support of file system `flags``. + */ + export function open(path: PathLike, flags: OpenMode | undefined, callback: (err: NodeJS.ErrnoException | null, fd: number) => void): void; + /** + * Asynchronous open(2) - open and possibly create a file. If the file is created, its mode will be `0o666`. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + */ + export function open(path: PathLike, callback: (err: NodeJS.ErrnoException | null, fd: number) => void): void; + + export namespace open { + /** + * Asynchronous open(2) - open and possibly create a file. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param mode A file mode. If a string is passed, it is parsed as an octal integer. If not supplied, defaults to `0o666`. + */ + function __promisify__(path: PathLike, flags: OpenMode, mode?: Mode | null): Promise; + } + /** + * Returns an integer representing the file descriptor. + * + * For detailed information, see the documentation of the asynchronous version of + * this API: {@link open}. + * @since v0.1.21 + * @param [flags='r'] + * @param [mode=0o666] + */ + export function openSync(path: PathLike, flags: OpenMode, mode?: Mode | null): number; + /** + * Change the file system timestamps of the object referenced by `path`. + * + * The `atime` and `mtime` arguments follow these rules: + * + * * Values can be either numbers representing Unix epoch time in seconds,`Date`s, or a numeric string like `'123456789.0'`. + * * If the value can not be converted to a number, or is `NaN`, `Infinity` or`-Infinity`, an `Error` will be thrown. + * @since v0.4.2 + */ + export function utimes(path: PathLike, atime: TimeLike, mtime: TimeLike, callback: NoParamCallback): void; + export namespace utimes { + /** + * Asynchronously change file timestamps of the file referenced by the supplied path. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param atime The last access time. If a string is provided, it will be coerced to number. + * @param mtime The last modified time. If a string is provided, it will be coerced to number. + */ + function __promisify__(path: PathLike, atime: TimeLike, mtime: TimeLike): Promise; + } + /** + * Returns `undefined`. + * + * For detailed information, see the documentation of the asynchronous version of + * this API: {@link utimes}. + * @since v0.4.2 + */ + export function utimesSync(path: PathLike, atime: TimeLike, mtime: TimeLike): void; + /** + * Change the file system timestamps of the object referenced by the supplied file + * descriptor. See {@link utimes}. + * @since v0.4.2 + */ + export function futimes(fd: number, atime: TimeLike, mtime: TimeLike, callback: NoParamCallback): void; + export namespace futimes { + /** + * Asynchronously change file timestamps of the file referenced by the supplied file descriptor. + * @param fd A file descriptor. + * @param atime The last access time. If a string is provided, it will be coerced to number. + * @param mtime The last modified time. If a string is provided, it will be coerced to number. + */ + function __promisify__(fd: number, atime: TimeLike, mtime: TimeLike): Promise; + } + /** + * Synchronous version of {@link futimes}. Returns `undefined`. + * @since v0.4.2 + */ + export function futimesSync(fd: number, atime: TimeLike, mtime: TimeLike): void; + /** + * Request that all data for the open file descriptor is flushed to the storage + * device. The specific implementation is operating system and device specific. + * Refer to the POSIX [`fsync(2)`](http://man7.org/linux/man-pages/man2/fsync.2.html) documentation for more detail. No arguments other + * than a possible exception are given to the completion callback. + * @since v0.1.96 + */ + export function fsync(fd: number, callback: NoParamCallback): void; + export namespace fsync { + /** + * Asynchronous fsync(2) - synchronize a file's in-core state with the underlying storage device. + * @param fd A file descriptor. + */ + function __promisify__(fd: number): Promise; + } + /** + * Request that all data for the open file descriptor is flushed to the storage + * device. The specific implementation is operating system and device specific. + * Refer to the POSIX [`fsync(2)`](http://man7.org/linux/man-pages/man2/fsync.2.html) documentation for more detail. Returns `undefined`. + * @since v0.1.96 + */ + export function fsyncSync(fd: number): void; + /** + * Write `buffer` to the file specified by `fd`. + * + * `offset` determines the part of the buffer to be written, and `length` is + * an integer specifying the number of bytes to write. + * + * `position` refers to the offset from the beginning of the file where this data + * should be written. If `typeof position !== 'number'`, the data will be written + * at the current position. See [`pwrite(2)`](http://man7.org/linux/man-pages/man2/pwrite.2.html). + * + * The callback will be given three arguments `(err, bytesWritten, buffer)` where`bytesWritten` specifies how many _bytes_ were written from `buffer`. + * + * If this method is invoked as its `util.promisify()` ed version, it returns + * a promise for an `Object` with `bytesWritten` and `buffer` properties. + * + * It is unsafe to use `fs.write()` multiple times on the same file without waiting + * for the callback. For this scenario, {@link createWriteStream} is + * recommended. + * + * On Linux, positional writes don't work when the file is opened in append mode. + * The kernel ignores the position argument and always appends the data to + * the end of the file. + * @since v0.0.2 + */ + export function write( + fd: number, + buffer: TBuffer, + offset: number | undefined | null, + length: number | undefined | null, + position: number | undefined | null, + callback: (err: NodeJS.ErrnoException | null, written: number, buffer: TBuffer) => void + ): void; + /** + * Asynchronously writes `buffer` to the file referenced by the supplied file descriptor. + * @param fd A file descriptor. + * @param offset The part of the buffer to be written. If not supplied, defaults to `0`. + * @param length The number of bytes to write. If not supplied, defaults to `buffer.length - offset`. + */ + export function write( + fd: number, + buffer: TBuffer, + offset: number | undefined | null, + length: number | undefined | null, + callback: (err: NodeJS.ErrnoException | null, written: number, buffer: TBuffer) => void + ): void; + /** + * Asynchronously writes `buffer` to the file referenced by the supplied file descriptor. + * @param fd A file descriptor. + * @param offset The part of the buffer to be written. If not supplied, defaults to `0`. + */ + export function write( + fd: number, + buffer: TBuffer, + offset: number | undefined | null, + callback: (err: NodeJS.ErrnoException | null, written: number, buffer: TBuffer) => void + ): void; + /** + * Asynchronously writes `buffer` to the file referenced by the supplied file descriptor. + * @param fd A file descriptor. + */ + export function write(fd: number, buffer: TBuffer, callback: (err: NodeJS.ErrnoException | null, written: number, buffer: TBuffer) => void): void; + /** + * Asynchronously writes `string` to the file referenced by the supplied file descriptor. + * @param fd A file descriptor. + * @param string A string to write. + * @param position The offset from the beginning of the file where this data should be written. If not supplied, defaults to the current position. + * @param encoding The expected string encoding. + */ + export function write( + fd: number, + string: string, + position: number | undefined | null, + encoding: BufferEncoding | undefined | null, + callback: (err: NodeJS.ErrnoException | null, written: number, str: string) => void + ): void; + /** + * Asynchronously writes `string` to the file referenced by the supplied file descriptor. + * @param fd A file descriptor. + * @param string A string to write. + * @param position The offset from the beginning of the file where this data should be written. If not supplied, defaults to the current position. + */ + export function write(fd: number, string: string, position: number | undefined | null, callback: (err: NodeJS.ErrnoException | null, written: number, str: string) => void): void; + /** + * Asynchronously writes `string` to the file referenced by the supplied file descriptor. + * @param fd A file descriptor. + * @param string A string to write. + */ + export function write(fd: number, string: string, callback: (err: NodeJS.ErrnoException | null, written: number, str: string) => void): void; + export namespace write { + /** + * Asynchronously writes `buffer` to the file referenced by the supplied file descriptor. + * @param fd A file descriptor. + * @param offset The part of the buffer to be written. If not supplied, defaults to `0`. + * @param length The number of bytes to write. If not supplied, defaults to `buffer.length - offset`. + * @param position The offset from the beginning of the file where this data should be written. If not supplied, defaults to the current position. + */ + function __promisify__( + fd: number, + buffer?: TBuffer, + offset?: number, + length?: number, + position?: number | null + ): Promise<{ + bytesWritten: number; + buffer: TBuffer; + }>; + /** + * Asynchronously writes `string` to the file referenced by the supplied file descriptor. + * @param fd A file descriptor. + * @param string A string to write. + * @param position The offset from the beginning of the file where this data should be written. If not supplied, defaults to the current position. + * @param encoding The expected string encoding. + */ + function __promisify__( + fd: number, + string: string, + position?: number | null, + encoding?: BufferEncoding | null + ): Promise<{ + bytesWritten: number; + buffer: string; + }>; + } + /** + * For detailed information, see the documentation of the asynchronous version of + * this API: {@link write}. + * @since v0.1.21 + * @return The number of bytes written. + */ + export function writeSync(fd: number, buffer: NodeJS.ArrayBufferView, offset?: number | null, length?: number | null, position?: number | null): number; + /** + * Synchronously writes `string` to the file referenced by the supplied file descriptor, returning the number of bytes written. + * @param fd A file descriptor. + * @param string A string to write. + * @param position The offset from the beginning of the file where this data should be written. If not supplied, defaults to the current position. + * @param encoding The expected string encoding. + */ + export function writeSync(fd: number, string: string, position?: number | null, encoding?: BufferEncoding | null): number; + export type ReadPosition = number | bigint; + export interface ReadSyncOptions { + /** + * @default 0 + */ + offset?: number | undefined; + /** + * @default `length of buffer` + */ + length?: number | undefined; + /** + * @default null + */ + position?: ReadPosition | null | undefined; + } + export interface ReadAsyncOptions extends ReadSyncOptions { + buffer?: TBuffer; + } + /** + * Read data from the file specified by `fd`. + * + * The callback is given the three arguments, `(err, bytesRead, buffer)`. + * + * If the file is not modified concurrently, the end-of-file is reached when the + * number of bytes read is zero. + * + * If this method is invoked as its `util.promisify()` ed version, it returns + * a promise for an `Object` with `bytesRead` and `buffer` properties. + * @since v0.0.2 + * @param buffer The buffer that the data will be written to. + * @param offset The position in `buffer` to write the data to. + * @param length The number of bytes to read. + * @param position Specifies where to begin reading from in the file. If `position` is `null` or `-1 `, data will be read from the current file position, and the file position will be updated. If + * `position` is an integer, the file position will be unchanged. + */ + export function read( + fd: number, + buffer: TBuffer, + offset: number, + length: number, + position: ReadPosition | null, + callback: (err: NodeJS.ErrnoException | null, bytesRead: number, buffer: TBuffer) => void + ): void; + /** + * Similar to the above `fs.read` function, this version takes an optional `options` object. + * If not otherwise specified in an `options` object, + * `buffer` defaults to `Buffer.alloc(16384)`, + * `offset` defaults to `0`, + * `length` defaults to `buffer.byteLength`, `- offset` as of Node 17.6.0 + * `position` defaults to `null` + * @since v12.17.0, 13.11.0 + */ + export function read( + fd: number, + options: ReadAsyncOptions, + callback: (err: NodeJS.ErrnoException | null, bytesRead: number, buffer: TBuffer) => void + ): void; + export function read(fd: number, callback: (err: NodeJS.ErrnoException | null, bytesRead: number, buffer: NodeJS.ArrayBufferView) => void): void; + export namespace read { + /** + * @param fd A file descriptor. + * @param buffer The buffer that the data will be written to. + * @param offset The offset in the buffer at which to start writing. + * @param length The number of bytes to read. + * @param position The offset from the beginning of the file from which data should be read. If `null`, data will be read from the current position. + */ + function __promisify__( + fd: number, + buffer: TBuffer, + offset: number, + length: number, + position: number | null + ): Promise<{ + bytesRead: number; + buffer: TBuffer; + }>; + function __promisify__( + fd: number, + options: ReadAsyncOptions + ): Promise<{ + bytesRead: number; + buffer: TBuffer; + }>; + function __promisify__(fd: number): Promise<{ + bytesRead: number; + buffer: NodeJS.ArrayBufferView; + }>; + } + /** + * Returns the number of `bytesRead`. + * + * For detailed information, see the documentation of the asynchronous version of + * this API: {@link read}. + * @since v0.1.21 + */ + export function readSync(fd: number, buffer: NodeJS.ArrayBufferView, offset: number, length: number, position: ReadPosition | null): number; + /** + * Similar to the above `fs.readSync` function, this version takes an optional `options` object. + * If no `options` object is specified, it will default with the above values. + */ + export function readSync(fd: number, buffer: NodeJS.ArrayBufferView, opts?: ReadSyncOptions): number; + /** + * Asynchronously reads the entire contents of a file. + * + * ```js + * import { readFile } from 'fs'; + * + * readFile('/etc/passwd', (err, data) => { + * if (err) throw err; + * console.log(data); + * }); + * ``` + * + * The callback is passed two arguments `(err, data)`, where `data` is the + * contents of the file. + * + * If no encoding is specified, then the raw buffer is returned. + * + * If `options` is a string, then it specifies the encoding: + * + * ```js + * import { readFile } from 'fs'; + * + * readFile('/etc/passwd', 'utf8', callback); + * ``` + * + * When the path is a directory, the behavior of `fs.readFile()` and {@link readFileSync} is platform-specific. On macOS, Linux, and Windows, an + * error will be returned. On FreeBSD, a representation of the directory's contents + * will be returned. + * + * ```js + * import { readFile } from 'fs'; + * + * // macOS, Linux, and Windows + * readFile('', (err, data) => { + * // => [Error: EISDIR: illegal operation on a directory, read ] + * }); + * + * // FreeBSD + * readFile('', (err, data) => { + * // => null, + * }); + * ``` + * + * It is possible to abort an ongoing request using an `AbortSignal`. If a + * request is aborted the callback is called with an `AbortError`: + * + * ```js + * import { readFile } from 'fs'; + * + * const controller = new AbortController(); + * const signal = controller.signal; + * readFile(fileInfo[0].name, { signal }, (err, buf) => { + * // ... + * }); + * // When you want to abort the request + * controller.abort(); + * ``` + * + * The `fs.readFile()` function buffers the entire file. To minimize memory costs, + * when possible prefer streaming via `fs.createReadStream()`. + * + * Aborting an ongoing request does not abort individual operating + * system requests but rather the internal buffering `fs.readFile` performs. + * @since v0.1.29 + * @param path filename or file descriptor + */ + export function readFile( + path: PathOrFileDescriptor, + options: + | ({ + encoding?: null | undefined; + flag?: string | undefined; + } & Abortable) + | undefined + | null, + callback: (err: NodeJS.ErrnoException | null, data: Buffer) => void + ): void; + /** + * Asynchronously reads the entire contents of a file. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * If a file descriptor is provided, the underlying file will _not_ be closed automatically. + * @param options Either the encoding for the result, or an object that contains the encoding and an optional flag. + * If a flag is not provided, it defaults to `'r'`. + */ + export function readFile( + path: PathOrFileDescriptor, + options: + | ({ + encoding: BufferEncoding; + flag?: string | undefined; + } & Abortable) + | BufferEncoding, + callback: (err: NodeJS.ErrnoException | null, data: string) => void + ): void; + /** + * Asynchronously reads the entire contents of a file. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * If a file descriptor is provided, the underlying file will _not_ be closed automatically. + * @param options Either the encoding for the result, or an object that contains the encoding and an optional flag. + * If a flag is not provided, it defaults to `'r'`. + */ + export function readFile( + path: PathOrFileDescriptor, + options: + | (ObjectEncodingOptions & { + flag?: string | undefined; + } & Abortable) + | BufferEncoding + | undefined + | null, + callback: (err: NodeJS.ErrnoException | null, data: string | Buffer) => void + ): void; + /** + * Asynchronously reads the entire contents of a file. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * If a file descriptor is provided, the underlying file will _not_ be closed automatically. + */ + export function readFile(path: PathOrFileDescriptor, callback: (err: NodeJS.ErrnoException | null, data: Buffer) => void): void; + export namespace readFile { + /** + * Asynchronously reads the entire contents of a file. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * If a file descriptor is provided, the underlying file will _not_ be closed automatically. + * @param options An object that may contain an optional flag. + * If a flag is not provided, it defaults to `'r'`. + */ + function __promisify__( + path: PathOrFileDescriptor, + options?: { + encoding?: null | undefined; + flag?: string | undefined; + } | null + ): Promise; + /** + * Asynchronously reads the entire contents of a file. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * URL support is _experimental_. + * If a file descriptor is provided, the underlying file will _not_ be closed automatically. + * @param options Either the encoding for the result, or an object that contains the encoding and an optional flag. + * If a flag is not provided, it defaults to `'r'`. + */ + function __promisify__( + path: PathOrFileDescriptor, + options: + | { + encoding: BufferEncoding; + flag?: string | undefined; + } + | BufferEncoding + ): Promise; + /** + * Asynchronously reads the entire contents of a file. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * URL support is _experimental_. + * If a file descriptor is provided, the underlying file will _not_ be closed automatically. + * @param options Either the encoding for the result, or an object that contains the encoding and an optional flag. + * If a flag is not provided, it defaults to `'r'`. + */ + function __promisify__( + path: PathOrFileDescriptor, + options?: + | (ObjectEncodingOptions & { + flag?: string | undefined; + }) + | BufferEncoding + | null + ): Promise; + } + /** + * Returns the contents of the `path`. + * + * For detailed information, see the documentation of the asynchronous version of + * this API: {@link readFile}. + * + * If the `encoding` option is specified then this function returns a + * string. Otherwise it returns a buffer. + * + * Similar to {@link readFile}, when the path is a directory, the behavior of`fs.readFileSync()` is platform-specific. + * + * ```js + * import { readFileSync } from 'fs'; + * + * // macOS, Linux, and Windows + * readFileSync(''); + * // => [Error: EISDIR: illegal operation on a directory, read ] + * + * // FreeBSD + * readFileSync(''); // => + * ``` + * @since v0.1.8 + * @param path filename or file descriptor + */ + export function readFileSync( + path: PathOrFileDescriptor, + options?: { + encoding?: null | undefined; + flag?: string | undefined; + } | null + ): Buffer; + /** + * Synchronously reads the entire contents of a file. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * If a file descriptor is provided, the underlying file will _not_ be closed automatically. + * @param options Either the encoding for the result, or an object that contains the encoding and an optional flag. + * If a flag is not provided, it defaults to `'r'`. + */ + export function readFileSync( + path: PathOrFileDescriptor, + options: + | { + encoding: BufferEncoding; + flag?: string | undefined; + } + | BufferEncoding + ): string; + /** + * Synchronously reads the entire contents of a file. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * If a file descriptor is provided, the underlying file will _not_ be closed automatically. + * @param options Either the encoding for the result, or an object that contains the encoding and an optional flag. + * If a flag is not provided, it defaults to `'r'`. + */ + export function readFileSync( + path: PathOrFileDescriptor, + options?: + | (ObjectEncodingOptions & { + flag?: string | undefined; + }) + | BufferEncoding + | null + ): string | Buffer; + export type WriteFileOptions = + | (ObjectEncodingOptions & + Abortable & { + mode?: Mode | undefined; + flag?: string | undefined; + }) + | BufferEncoding + | null; + /** + * When `file` is a filename, asynchronously writes data to the file, replacing the + * file if it already exists. `data` can be a string or a buffer. + * + * When `file` is a file descriptor, the behavior is similar to calling`fs.write()` directly (which is recommended). See the notes below on using + * a file descriptor. + * + * The `encoding` option is ignored if `data` is a buffer. + * + * The `mode` option only affects the newly created file. See {@link open} for more details. + * + * ```js + * import { writeFile } from 'fs'; + * import { Buffer } from 'buffer'; + * + * const data = new Uint8Array(Buffer.from('Hello Node.js')); + * writeFile('message.txt', data, (err) => { + * if (err) throw err; + * console.log('The file has been saved!'); + * }); + * ``` + * + * If `options` is a string, then it specifies the encoding: + * + * ```js + * import { writeFile } from 'fs'; + * + * writeFile('message.txt', 'Hello Node.js', 'utf8', callback); + * ``` + * + * It is unsafe to use `fs.writeFile()` multiple times on the same file without + * waiting for the callback. For this scenario, {@link createWriteStream} is + * recommended. + * + * Similarly to `fs.readFile` \- `fs.writeFile` is a convenience method that + * performs multiple `write` calls internally to write the buffer passed to it. + * For performance sensitive code consider using {@link createWriteStream}. + * + * It is possible to use an `AbortSignal` to cancel an `fs.writeFile()`. + * Cancelation is "best effort", and some amount of data is likely still + * to be written. + * + * ```js + * import { writeFile } from 'fs'; + * import { Buffer } from 'buffer'; + * + * const controller = new AbortController(); + * const { signal } = controller; + * const data = new Uint8Array(Buffer.from('Hello Node.js')); + * writeFile('message.txt', data, { signal }, (err) => { + * // When a request is aborted - the callback is called with an AbortError + * }); + * // When the request should be aborted + * controller.abort(); + * ``` + * + * Aborting an ongoing request does not abort individual operating + * system requests but rather the internal buffering `fs.writeFile` performs. + * @since v0.1.29 + * @param file filename or file descriptor + */ + export function writeFile(file: PathOrFileDescriptor, data: string | NodeJS.ArrayBufferView, options: WriteFileOptions, callback: NoParamCallback): void; + /** + * Asynchronously writes data to a file, replacing the file if it already exists. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * If a file descriptor is provided, the underlying file will _not_ be closed automatically. + * @param data The data to write. If something other than a Buffer or Uint8Array is provided, the value is coerced to a string. + */ + export function writeFile(path: PathOrFileDescriptor, data: string | NodeJS.ArrayBufferView, callback: NoParamCallback): void; + export namespace writeFile { + /** + * Asynchronously writes data to a file, replacing the file if it already exists. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * URL support is _experimental_. + * If a file descriptor is provided, the underlying file will _not_ be closed automatically. + * @param data The data to write. If something other than a Buffer or Uint8Array is provided, the value is coerced to a string. + * @param options Either the encoding for the file, or an object optionally specifying the encoding, file mode, and flag. + * If `encoding` is not supplied, the default of `'utf8'` is used. + * If `mode` is not supplied, the default of `0o666` is used. + * If `mode` is a string, it is parsed as an octal integer. + * If `flag` is not supplied, the default of `'w'` is used. + */ + function __promisify__(path: PathOrFileDescriptor, data: string | NodeJS.ArrayBufferView, options?: WriteFileOptions): Promise; + } + /** + * Returns `undefined`. + * + * The `mode` option only affects the newly created file. See {@link open} for more details. + * + * For detailed information, see the documentation of the asynchronous version of + * this API: {@link writeFile}. + * @since v0.1.29 + * @param file filename or file descriptor + */ + export function writeFileSync(file: PathOrFileDescriptor, data: string | NodeJS.ArrayBufferView, options?: WriteFileOptions): void; + /** + * Asynchronously append data to a file, creating the file if it does not yet + * exist. `data` can be a string or a `Buffer`. + * + * The `mode` option only affects the newly created file. See {@link open} for more details. + * + * ```js + * import { appendFile } from 'fs'; + * + * appendFile('message.txt', 'data to append', (err) => { + * if (err) throw err; + * console.log('The "data to append" was appended to file!'); + * }); + * ``` + * + * If `options` is a string, then it specifies the encoding: + * + * ```js + * import { appendFile } from 'fs'; + * + * appendFile('message.txt', 'data to append', 'utf8', callback); + * ``` + * + * The `path` may be specified as a numeric file descriptor that has been opened + * for appending (using `fs.open()` or `fs.openSync()`). The file descriptor will + * not be closed automatically. + * + * ```js + * import { open, close, appendFile } from 'fs'; + * + * function closeFd(fd) { + * close(fd, (err) => { + * if (err) throw err; + * }); + * } + * + * open('message.txt', 'a', (err, fd) => { + * if (err) throw err; + * + * try { + * appendFile(fd, 'data to append', 'utf8', (err) => { + * closeFd(fd); + * if (err) throw err; + * }); + * } catch (err) { + * closeFd(fd); + * throw err; + * } + * }); + * ``` + * @since v0.6.7 + * @param path filename or file descriptor + */ + export function appendFile(path: PathOrFileDescriptor, data: string | Uint8Array, options: WriteFileOptions, callback: NoParamCallback): void; + /** + * Asynchronously append data to a file, creating the file if it does not exist. + * @param file A path to a file. If a URL is provided, it must use the `file:` protocol. + * If a file descriptor is provided, the underlying file will _not_ be closed automatically. + * @param data The data to write. If something other than a Buffer or Uint8Array is provided, the value is coerced to a string. + */ + export function appendFile(file: PathOrFileDescriptor, data: string | Uint8Array, callback: NoParamCallback): void; + export namespace appendFile { + /** + * Asynchronously append data to a file, creating the file if it does not exist. + * @param file A path to a file. If a URL is provided, it must use the `file:` protocol. + * URL support is _experimental_. + * If a file descriptor is provided, the underlying file will _not_ be closed automatically. + * @param data The data to write. If something other than a Buffer or Uint8Array is provided, the value is coerced to a string. + * @param options Either the encoding for the file, or an object optionally specifying the encoding, file mode, and flag. + * If `encoding` is not supplied, the default of `'utf8'` is used. + * If `mode` is not supplied, the default of `0o666` is used. + * If `mode` is a string, it is parsed as an octal integer. + * If `flag` is not supplied, the default of `'a'` is used. + */ + function __promisify__(file: PathOrFileDescriptor, data: string | Uint8Array, options?: WriteFileOptions): Promise; + } + /** + * Synchronously append data to a file, creating the file if it does not yet + * exist. `data` can be a string or a `Buffer`. + * + * The `mode` option only affects the newly created file. See {@link open} for more details. + * + * ```js + * import { appendFileSync } from 'fs'; + * + * try { + * appendFileSync('message.txt', 'data to append'); + * console.log('The "data to append" was appended to file!'); + * } catch (err) { + * // Handle the error + * } + * ``` + * + * If `options` is a string, then it specifies the encoding: + * + * ```js + * import { appendFileSync } from 'fs'; + * + * appendFileSync('message.txt', 'data to append', 'utf8'); + * ``` + * + * The `path` may be specified as a numeric file descriptor that has been opened + * for appending (using `fs.open()` or `fs.openSync()`). The file descriptor will + * not be closed automatically. + * + * ```js + * import { openSync, closeSync, appendFileSync } from 'fs'; + * + * let fd; + * + * try { + * fd = openSync('message.txt', 'a'); + * appendFileSync(fd, 'data to append', 'utf8'); + * } catch (err) { + * // Handle the error + * } finally { + * if (fd !== undefined) + * closeSync(fd); + * } + * ``` + * @since v0.6.7 + * @param path filename or file descriptor + */ + export function appendFileSync(path: PathOrFileDescriptor, data: string | Uint8Array, options?: WriteFileOptions): void; + /** + * Watch for changes on `filename`. The callback `listener` will be called each + * time the file is accessed. + * + * The `options` argument may be omitted. If provided, it should be an object. The`options` object may contain a boolean named `persistent` that indicates + * whether the process should continue to run as long as files are being watched. + * The `options` object may specify an `interval` property indicating how often the + * target should be polled in milliseconds. + * + * The `listener` gets two arguments the current stat object and the previous + * stat object: + * + * ```js + * import { watchFile } from 'fs'; + * + * watchFile('message.text', (curr, prev) => { + * console.log(`the current mtime is: ${curr.mtime}`); + * console.log(`the previous mtime was: ${prev.mtime}`); + * }); + * ``` + * + * These stat objects are instances of `fs.Stat`. If the `bigint` option is `true`, + * the numeric values in these objects are specified as `BigInt`s. + * + * To be notified when the file was modified, not just accessed, it is necessary + * to compare `curr.mtimeMs` and `prev.mtimeMs`. + * + * When an `fs.watchFile` operation results in an `ENOENT` error, it + * will invoke the listener once, with all the fields zeroed (or, for dates, the + * Unix Epoch). If the file is created later on, the listener will be called + * again, with the latest stat objects. This is a change in functionality since + * v0.10. + * + * Using {@link watch} is more efficient than `fs.watchFile` and`fs.unwatchFile`. `fs.watch` should be used instead of `fs.watchFile` and`fs.unwatchFile` when possible. + * + * When a file being watched by `fs.watchFile()` disappears and reappears, + * then the contents of `previous` in the second callback event (the file's + * reappearance) will be the same as the contents of `previous` in the first + * callback event (its disappearance). + * + * This happens when: + * + * * the file is deleted, followed by a restore + * * the file is renamed and then renamed a second time back to its original name + * @since v0.1.31 + */ + export interface WatchFileOptions { + bigint?: boolean | undefined; + persistent?: boolean | undefined; + interval?: number | undefined; + } + /** + * Watch for changes on `filename`. The callback `listener` will be called each + * time the file is accessed. + * + * The `options` argument may be omitted. If provided, it should be an object. The`options` object may contain a boolean named `persistent` that indicates + * whether the process should continue to run as long as files are being watched. + * The `options` object may specify an `interval` property indicating how often the + * target should be polled in milliseconds. + * + * The `listener` gets two arguments the current stat object and the previous + * stat object: + * + * ```js + * import { watchFile } from 'fs'; + * + * watchFile('message.text', (curr, prev) => { + * console.log(`the current mtime is: ${curr.mtime}`); + * console.log(`the previous mtime was: ${prev.mtime}`); + * }); + * ``` + * + * These stat objects are instances of `fs.Stat`. If the `bigint` option is `true`, + * the numeric values in these objects are specified as `BigInt`s. + * + * To be notified when the file was modified, not just accessed, it is necessary + * to compare `curr.mtimeMs` and `prev.mtimeMs`. + * + * When an `fs.watchFile` operation results in an `ENOENT` error, it + * will invoke the listener once, with all the fields zeroed (or, for dates, the + * Unix Epoch). If the file is created later on, the listener will be called + * again, with the latest stat objects. This is a change in functionality since + * v0.10. + * + * Using {@link watch} is more efficient than `fs.watchFile` and`fs.unwatchFile`. `fs.watch` should be used instead of `fs.watchFile` and`fs.unwatchFile` when possible. + * + * When a file being watched by `fs.watchFile()` disappears and reappears, + * then the contents of `previous` in the second callback event (the file's + * reappearance) will be the same as the contents of `previous` in the first + * callback event (its disappearance). + * + * This happens when: + * + * * the file is deleted, followed by a restore + * * the file is renamed and then renamed a second time back to its original name + * @since v0.1.31 + */ + export function watchFile( + filename: PathLike, + options: + | (WatchFileOptions & { + bigint?: false | undefined; + }) + | undefined, + listener: (curr: Stats, prev: Stats) => void + ): StatWatcher; + export function watchFile( + filename: PathLike, + options: + | (WatchFileOptions & { + bigint: true; + }) + | undefined, + listener: (curr: BigIntStats, prev: BigIntStats) => void + ): StatWatcher; + /** + * Watch for changes on `filename`. The callback `listener` will be called each time the file is accessed. + * @param filename A path to a file or directory. If a URL is provided, it must use the `file:` protocol. + */ + export function watchFile(filename: PathLike, listener: (curr: Stats, prev: Stats) => void): StatWatcher; + /** + * Stop watching for changes on `filename`. If `listener` is specified, only that + * particular listener is removed. Otherwise, _all_ listeners are removed, + * effectively stopping watching of `filename`. + * + * Calling `fs.unwatchFile()` with a filename that is not being watched is a + * no-op, not an error. + * + * Using {@link watch} is more efficient than `fs.watchFile()` and`fs.unwatchFile()`. `fs.watch()` should be used instead of `fs.watchFile()`and `fs.unwatchFile()` when possible. + * @since v0.1.31 + * @param listener Optional, a listener previously attached using `fs.watchFile()` + */ + export function unwatchFile(filename: PathLike, listener?: (curr: Stats, prev: Stats) => void): void; + export interface WatchOptions extends Abortable { + encoding?: BufferEncoding | 'buffer' | undefined; + persistent?: boolean | undefined; + recursive?: boolean | undefined; + } + export type WatchEventType = 'rename' | 'change'; + export type WatchListener = (event: WatchEventType, filename: T) => void; + /** + * Watch for changes on `filename`, where `filename` is either a file or a + * directory. + * + * The second argument is optional. If `options` is provided as a string, it + * specifies the `encoding`. Otherwise `options` should be passed as an object. + * + * The listener callback gets two arguments `(eventType, filename)`. `eventType`is either `'rename'` or `'change'`, and `filename` is the name of the file + * which triggered the event. + * + * On most platforms, `'rename'` is emitted whenever a filename appears or + * disappears in the directory. + * + * The listener callback is attached to the `'change'` event fired by `fs.FSWatcher`, but it is not the same thing as the `'change'` value of`eventType`. + * + * If a `signal` is passed, aborting the corresponding AbortController will close + * the returned `fs.FSWatcher`. + * @since v0.5.10 + * @param listener + */ + export function watch( + filename: PathLike, + options: + | (WatchOptions & { + encoding: 'buffer'; + }) + | 'buffer', + listener?: WatchListener + ): FSWatcher; + /** + * Watch for changes on `filename`, where `filename` is either a file or a directory, returning an `FSWatcher`. + * @param filename A path to a file or directory. If a URL is provided, it must use the `file:` protocol. + * @param options Either the encoding for the filename provided to the listener, or an object optionally specifying encoding, persistent, and recursive options. + * If `encoding` is not supplied, the default of `'utf8'` is used. + * If `persistent` is not supplied, the default of `true` is used. + * If `recursive` is not supplied, the default of `false` is used. + */ + export function watch(filename: PathLike, options?: WatchOptions | BufferEncoding | null, listener?: WatchListener): FSWatcher; + /** + * Watch for changes on `filename`, where `filename` is either a file or a directory, returning an `FSWatcher`. + * @param filename A path to a file or directory. If a URL is provided, it must use the `file:` protocol. + * @param options Either the encoding for the filename provided to the listener, or an object optionally specifying encoding, persistent, and recursive options. + * If `encoding` is not supplied, the default of `'utf8'` is used. + * If `persistent` is not supplied, the default of `true` is used. + * If `recursive` is not supplied, the default of `false` is used. + */ + export function watch(filename: PathLike, options: WatchOptions | string, listener?: WatchListener): FSWatcher; + /** + * Watch for changes on `filename`, where `filename` is either a file or a directory, returning an `FSWatcher`. + * @param filename A path to a file or directory. If a URL is provided, it must use the `file:` protocol. + */ + export function watch(filename: PathLike, listener?: WatchListener): FSWatcher; + /** + * Test whether or not the given path exists by checking with the file system. + * Then call the `callback` argument with either true or false: + * + * ```js + * import { exists } from 'fs'; + * + * exists('/etc/passwd', (e) => { + * console.log(e ? 'it exists' : 'no passwd!'); + * }); + * ``` + * + * **The parameters for this callback are not consistent with other Node.js** + * **callbacks.** Normally, the first parameter to a Node.js callback is an `err`parameter, optionally followed by other parameters. The `fs.exists()` callback + * has only one boolean parameter. This is one reason `fs.access()` is recommended + * instead of `fs.exists()`. + * + * Using `fs.exists()` to check for the existence of a file before calling`fs.open()`, `fs.readFile()` or `fs.writeFile()` is not recommended. Doing + * so introduces a race condition, since other processes may change the file's + * state between the two calls. Instead, user code should open/read/write the + * file directly and handle the error raised if the file does not exist. + * + * **write (NOT RECOMMENDED)** + * + * ```js + * import { exists, open, close } from 'fs'; + * + * exists('myfile', (e) => { + * if (e) { + * console.error('myfile already exists'); + * } else { + * open('myfile', 'wx', (err, fd) => { + * if (err) throw err; + * + * try { + * writeMyData(fd); + * } finally { + * close(fd, (err) => { + * if (err) throw err; + * }); + * } + * }); + * } + * }); + * ``` + * + * **write (RECOMMENDED)** + * + * ```js + * import { open, close } from 'fs'; + * open('myfile', 'wx', (err, fd) => { + * if (err) { + * if (err.code === 'EEXIST') { + * console.error('myfile already exists'); + * return; + * } + * + * throw err; + * } + * + * try { + * writeMyData(fd); + * } finally { + * close(fd, (err) => { + * if (err) throw err; + * }); + * } + * }); + * ``` + * + * **read (NOT RECOMMENDED)** + * + * ```js + * import { open, close, exists } from 'fs'; + * + * exists('myfile', (e) => { + * if (e) { + * open('myfile', 'r', (err, fd) => { + * if (err) throw err; + * + * try { + * readMyData(fd); + * } finally { + * close(fd, (err) => { + * if (err) throw err; + * }); + * } + * }); + * } else { + * console.error('myfile does not exist'); + * } + * }); + * ``` + * + * **read (RECOMMENDED)** + * + * ```js + * import { open, close } from 'fs'; + * + * open('myfile', 'r', (err, fd) => { + * if (err) { + * if (err.code === 'ENOENT') { + * console.error('myfile does not exist'); + * return; + * } + * + * throw err; + * } + * + * try { + * readMyData(fd); + * } finally { + * close(fd, (err) => { + * if (err) throw err; + * }); + * } + * }); + * ``` + * + * The "not recommended" examples above check for existence and then use the + * file; the "recommended" examples are better because they use the file directly + * and handle the error, if any. + * + * In general, check for the existence of a file only if the file won’t be + * used directly, for example when its existence is a signal from another + * process. + * @since v0.0.2 + * @deprecated Since v1.0.0 - Use {@link stat} or {@link access} instead. + */ + export function exists(path: PathLike, callback: (exists: boolean) => void): void; + /** @deprecated */ + export namespace exists { + /** + * @param path A path to a file or directory. If a URL is provided, it must use the `file:` protocol. + * URL support is _experimental_. + */ + function __promisify__(path: PathLike): Promise; + } + /** + * Returns `true` if the path exists, `false` otherwise. + * + * For detailed information, see the documentation of the asynchronous version of + * this API: {@link exists}. + * + * `fs.exists()` is deprecated, but `fs.existsSync()` is not. The `callback`parameter to `fs.exists()` accepts parameters that are inconsistent with other + * Node.js callbacks. `fs.existsSync()` does not use a callback. + * + * ```js + * import { existsSync } from 'fs'; + * + * if (existsSync('/etc/passwd')) + * console.log('The path exists.'); + * ``` + * @since v0.1.21 + */ + export function existsSync(path: PathLike): boolean; + export namespace constants { + // File Access Constants + /** Constant for fs.access(). File is visible to the calling process. */ + const F_OK: number; + /** Constant for fs.access(). File can be read by the calling process. */ + const R_OK: number; + /** Constant for fs.access(). File can be written by the calling process. */ + const W_OK: number; + /** Constant for fs.access(). File can be executed by the calling process. */ + const X_OK: number; + // File Copy Constants + /** Constant for fs.copyFile. Flag indicating the destination file should not be overwritten if it already exists. */ + const COPYFILE_EXCL: number; + /** + * Constant for fs.copyFile. copy operation will attempt to create a copy-on-write reflink. + * If the underlying platform does not support copy-on-write, then a fallback copy mechanism is used. + */ + const COPYFILE_FICLONE: number; + /** + * Constant for fs.copyFile. Copy operation will attempt to create a copy-on-write reflink. + * If the underlying platform does not support copy-on-write, then the operation will fail with an error. + */ + const COPYFILE_FICLONE_FORCE: number; + // File Open Constants + /** Constant for fs.open(). Flag indicating to open a file for read-only access. */ + const O_RDONLY: number; + /** Constant for fs.open(). Flag indicating to open a file for write-only access. */ + const O_WRONLY: number; + /** Constant for fs.open(). Flag indicating to open a file for read-write access. */ + const O_RDWR: number; + /** Constant for fs.open(). Flag indicating to create the file if it does not already exist. */ + const O_CREAT: number; + /** Constant for fs.open(). Flag indicating that opening a file should fail if the O_CREAT flag is set and the file already exists. */ + const O_EXCL: number; + /** + * Constant for fs.open(). Flag indicating that if path identifies a terminal device, + * opening the path shall not cause that terminal to become the controlling terminal for the process + * (if the process does not already have one). + */ + const O_NOCTTY: number; + /** Constant for fs.open(). Flag indicating that if the file exists and is a regular file, and the file is opened successfully for write access, its length shall be truncated to zero. */ + const O_TRUNC: number; + /** Constant for fs.open(). Flag indicating that data will be appended to the end of the file. */ + const O_APPEND: number; + /** Constant for fs.open(). Flag indicating that the open should fail if the path is not a directory. */ + const O_DIRECTORY: number; + /** + * constant for fs.open(). + * Flag indicating reading accesses to the file system will no longer result in + * an update to the atime information associated with the file. + * This flag is available on Linux operating systems only. + */ + const O_NOATIME: number; + /** Constant for fs.open(). Flag indicating that the open should fail if the path is a symbolic link. */ + const O_NOFOLLOW: number; + /** Constant for fs.open(). Flag indicating that the file is opened for synchronous I/O. */ + const O_SYNC: number; + /** Constant for fs.open(). Flag indicating that the file is opened for synchronous I/O with write operations waiting for data integrity. */ + const O_DSYNC: number; + /** Constant for fs.open(). Flag indicating to open the symbolic link itself rather than the resource it is pointing to. */ + const O_SYMLINK: number; + /** Constant for fs.open(). When set, an attempt will be made to minimize caching effects of file I/O. */ + const O_DIRECT: number; + /** Constant for fs.open(). Flag indicating to open the file in nonblocking mode when possible. */ + const O_NONBLOCK: number; + // File Type Constants + /** Constant for fs.Stats mode property for determining a file's type. Bit mask used to extract the file type code. */ + const S_IFMT: number; + /** Constant for fs.Stats mode property for determining a file's type. File type constant for a regular file. */ + const S_IFREG: number; + /** Constant for fs.Stats mode property for determining a file's type. File type constant for a directory. */ + const S_IFDIR: number; + /** Constant for fs.Stats mode property for determining a file's type. File type constant for a character-oriented device file. */ + const S_IFCHR: number; + /** Constant for fs.Stats mode property for determining a file's type. File type constant for a block-oriented device file. */ + const S_IFBLK: number; + /** Constant for fs.Stats mode property for determining a file's type. File type constant for a FIFO/pipe. */ + const S_IFIFO: number; + /** Constant for fs.Stats mode property for determining a file's type. File type constant for a symbolic link. */ + const S_IFLNK: number; + /** Constant for fs.Stats mode property for determining a file's type. File type constant for a socket. */ + const S_IFSOCK: number; + // File Mode Constants + /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating readable, writable and executable by owner. */ + const S_IRWXU: number; + /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating readable by owner. */ + const S_IRUSR: number; + /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating writable by owner. */ + const S_IWUSR: number; + /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating executable by owner. */ + const S_IXUSR: number; + /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating readable, writable and executable by group. */ + const S_IRWXG: number; + /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating readable by group. */ + const S_IRGRP: number; + /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating writable by group. */ + const S_IWGRP: number; + /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating executable by group. */ + const S_IXGRP: number; + /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating readable, writable and executable by others. */ + const S_IRWXO: number; + /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating readable by others. */ + const S_IROTH: number; + /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating writable by others. */ + const S_IWOTH: number; + /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating executable by others. */ + const S_IXOTH: number; + /** + * When set, a memory file mapping is used to access the file. This flag + * is available on Windows operating systems only. On other operating systems, + * this flag is ignored. + */ + const UV_FS_O_FILEMAP: number; + } + /** + * Tests a user's permissions for the file or directory specified by `path`. + * The `mode` argument is an optional integer that specifies the accessibility + * checks to be performed. `mode` should be either the value `fs.constants.F_OK`or a mask consisting of the bitwise OR of any of `fs.constants.R_OK`,`fs.constants.W_OK`, and `fs.constants.X_OK` + * (e.g.`fs.constants.W_OK | fs.constants.R_OK`). Check `File access constants` for + * possible values of `mode`. + * + * The final argument, `callback`, is a callback function that is invoked with + * a possible error argument. If any of the accessibility checks fail, the error + * argument will be an `Error` object. The following examples check if`package.json` exists, and if it is readable or writable. + * + * ```js + * import { access, constants } from 'fs'; + * + * const file = 'package.json'; + * + * // Check if the file exists in the current directory. + * access(file, constants.F_OK, (err) => { + * console.log(`${file} ${err ? 'does not exist' : 'exists'}`); + * }); + * + * // Check if the file is readable. + * access(file, constants.R_OK, (err) => { + * console.log(`${file} ${err ? 'is not readable' : 'is readable'}`); + * }); + * + * // Check if the file is writable. + * access(file, constants.W_OK, (err) => { + * console.log(`${file} ${err ? 'is not writable' : 'is writable'}`); + * }); + * + * // Check if the file is readable and writable. + * access(file, constants.R_OK | constants.W_OK, (err) => { + * console.log(`${file} ${err ? 'is not' : 'is'} readable and writable`); + * }); + * ``` + * + * Do not use `fs.access()` to check for the accessibility of a file before calling`fs.open()`, `fs.readFile()` or `fs.writeFile()`. Doing + * so introduces a race condition, since other processes may change the file's + * state between the two calls. Instead, user code should open/read/write the + * file directly and handle the error raised if the file is not accessible. + * + * **write (NOT RECOMMENDED)** + * + * ```js + * import { access, open, close } from 'fs'; + * + * access('myfile', (err) => { + * if (!err) { + * console.error('myfile already exists'); + * return; + * } + * + * open('myfile', 'wx', (err, fd) => { + * if (err) throw err; + * + * try { + * writeMyData(fd); + * } finally { + * close(fd, (err) => { + * if (err) throw err; + * }); + * } + * }); + * }); + * ``` + * + * **write (RECOMMENDED)** + * + * ```js + * import { open, close } from 'fs'; + * + * open('myfile', 'wx', (err, fd) => { + * if (err) { + * if (err.code === 'EEXIST') { + * console.error('myfile already exists'); + * return; + * } + * + * throw err; + * } + * + * try { + * writeMyData(fd); + * } finally { + * close(fd, (err) => { + * if (err) throw err; + * }); + * } + * }); + * ``` + * + * **read (NOT RECOMMENDED)** + * + * ```js + * import { access, open, close } from 'fs'; + * access('myfile', (err) => { + * if (err) { + * if (err.code === 'ENOENT') { + * console.error('myfile does not exist'); + * return; + * } + * + * throw err; + * } + * + * open('myfile', 'r', (err, fd) => { + * if (err) throw err; + * + * try { + * readMyData(fd); + * } finally { + * close(fd, (err) => { + * if (err) throw err; + * }); + * } + * }); + * }); + * ``` + * + * **read (RECOMMENDED)** + * + * ```js + * import { open, close } from 'fs'; + * + * open('myfile', 'r', (err, fd) => { + * if (err) { + * if (err.code === 'ENOENT') { + * console.error('myfile does not exist'); + * return; + * } + * + * throw err; + * } + * + * try { + * readMyData(fd); + * } finally { + * close(fd, (err) => { + * if (err) throw err; + * }); + * } + * }); + * ``` + * + * The "not recommended" examples above check for accessibility and then use the + * file; the "recommended" examples are better because they use the file directly + * and handle the error, if any. + * + * In general, check for the accessibility of a file only if the file will not be + * used directly, for example when its accessibility is a signal from another + * process. + * + * On Windows, access-control policies (ACLs) on a directory may limit access to + * a file or directory. The `fs.access()` function, however, does not check the + * ACL and therefore may report that a path is accessible even if the ACL restricts + * the user from reading or writing to it. + * @since v0.11.15 + * @param [mode=fs.constants.F_OK] + */ + export function access(path: PathLike, mode: number | undefined, callback: NoParamCallback): void; + /** + * Asynchronously tests a user's permissions for the file specified by path. + * @param path A path to a file or directory. If a URL is provided, it must use the `file:` protocol. + */ + export function access(path: PathLike, callback: NoParamCallback): void; + export namespace access { + /** + * Asynchronously tests a user's permissions for the file specified by path. + * @param path A path to a file or directory. If a URL is provided, it must use the `file:` protocol. + * URL support is _experimental_. + */ + function __promisify__(path: PathLike, mode?: number): Promise; + } + /** + * Synchronously tests a user's permissions for the file or directory specified + * by `path`. The `mode` argument is an optional integer that specifies the + * accessibility checks to be performed. `mode` should be either the value`fs.constants.F_OK` or a mask consisting of the bitwise OR of any of`fs.constants.R_OK`, `fs.constants.W_OK`, and + * `fs.constants.X_OK` (e.g.`fs.constants.W_OK | fs.constants.R_OK`). Check `File access constants` for + * possible values of `mode`. + * + * If any of the accessibility checks fail, an `Error` will be thrown. Otherwise, + * the method will return `undefined`. + * + * ```js + * import { accessSync, constants } from 'fs'; + * + * try { + * accessSync('etc/passwd', constants.R_OK | constants.W_OK); + * console.log('can read/write'); + * } catch (err) { + * console.error('no access!'); + * } + * ``` + * @since v0.11.15 + * @param [mode=fs.constants.F_OK] + */ + export function accessSync(path: PathLike, mode?: number): void; + interface StreamOptions { + flags?: string | undefined; + encoding?: BufferEncoding | undefined; + fd?: number | promises.FileHandle | undefined; + mode?: number | undefined; + autoClose?: boolean | undefined; + /** + * @default false + */ + emitClose?: boolean | undefined; + start?: number | undefined; + highWaterMark?: number | undefined; + } + interface ReadStreamOptions extends StreamOptions { + end?: number | undefined; + } + /** + * Unlike the 16 kb default `highWaterMark` for a `stream.Readable`, the stream + * returned by this method has a default `highWaterMark` of 64 kb. + * + * `options` can include `start` and `end` values to read a range of bytes from + * the file instead of the entire file. Both `start` and `end` are inclusive and + * start counting at 0, allowed values are in the + * \[0, [`Number.MAX_SAFE_INTEGER`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/MAX_SAFE_INTEGER)\] range. If `fd` is specified and `start` is + * omitted or `undefined`, `fs.createReadStream()` reads sequentially from the + * current file position. The `encoding` can be any one of those accepted by `Buffer`. + * + * If `fd` is specified, `ReadStream` will ignore the `path` argument and will use + * the specified file descriptor. This means that no `'open'` event will be + * emitted. `fd` should be blocking; non-blocking `fd`s should be passed to `net.Socket`. + * + * If `fd` points to a character device that only supports blocking reads + * (such as keyboard or sound card), read operations do not finish until data is + * available. This can prevent the process from exiting and the stream from + * closing naturally. + * + * By default, the stream will emit a `'close'` event after it has been + * destroyed. Set the `emitClose` option to `false` to change this behavior. + * + * By providing the `fs` option, it is possible to override the corresponding `fs`implementations for `open`, `read`, and `close`. When providing the `fs` option, + * an override for `read` is required. If no `fd` is provided, an override for`open` is also required. If `autoClose` is `true`, an override for `close` is + * also required. + * + * ```js + * import { createReadStream } from 'fs'; + * + * // Create a stream from some character device. + * const stream = createReadStream('/dev/input/event0'); + * setTimeout(() => { + * stream.close(); // This may not close the stream. + * // Artificially marking end-of-stream, as if the underlying resource had + * // indicated end-of-file by itself, allows the stream to close. + * // This does not cancel pending read operations, and if there is such an + * // operation, the process may still not be able to exit successfully + * // until it finishes. + * stream.push(null); + * stream.read(0); + * }, 100); + * ``` + * + * If `autoClose` is false, then the file descriptor won't be closed, even if + * there's an error. It is the application's responsibility to close it and make + * sure there's no file descriptor leak. If `autoClose` is set to true (default + * behavior), on `'error'` or `'end'` the file descriptor will be closed + * automatically. + * + * `mode` sets the file mode (permission and sticky bits), but only if the + * file was created. + * + * An example to read the last 10 bytes of a file which is 100 bytes long: + * + * ```js + * import { createReadStream } from 'fs'; + * + * createReadStream('sample.txt', { start: 90, end: 99 }); + * ``` + * + * If `options` is a string, then it specifies the encoding. + * @since v0.1.31 + */ + export function createReadStream(path: PathLike, options?: BufferEncoding | ReadStreamOptions): ReadStream; + /** + * `options` may also include a `start` option to allow writing data at some + * position past the beginning of the file, allowed values are in the + * \[0, [`Number.MAX_SAFE_INTEGER`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/MAX_SAFE_INTEGER)\] range. Modifying a file rather than + * replacing it may require the `flags` option to be set to `r+` rather than the + * default `w`. The `encoding` can be any one of those accepted by `Buffer`. + * + * If `autoClose` is set to true (default behavior) on `'error'` or `'finish'`the file descriptor will be closed automatically. If `autoClose` is false, + * then the file descriptor won't be closed, even if there's an error. + * It is the application's responsibility to close it and make sure there's no + * file descriptor leak. + * + * By default, the stream will emit a `'close'` event after it has been + * destroyed. Set the `emitClose` option to `false` to change this behavior. + * + * By providing the `fs` option it is possible to override the corresponding `fs`implementations for `open`, `write`, `writev` and `close`. Overriding `write()`without `writev()` can reduce + * performance as some optimizations (`_writev()`) + * will be disabled. When providing the `fs` option, overrides for at least one of`write` and `writev` are required. If no `fd` option is supplied, an override + * for `open` is also required. If `autoClose` is `true`, an override for `close`is also required. + * + * Like `fs.ReadStream`, if `fd` is specified, `fs.WriteStream` will ignore the`path` argument and will use the specified file descriptor. This means that no`'open'` event will be + * emitted. `fd` should be blocking; non-blocking `fd`s + * should be passed to `net.Socket`. + * + * If `options` is a string, then it specifies the encoding. + * @since v0.1.31 + */ + export function createWriteStream(path: PathLike, options?: BufferEncoding | StreamOptions): WriteStream; + /** + * Forces all currently queued I/O operations associated with the file to the + * operating system's synchronized I/O completion state. Refer to the POSIX [`fdatasync(2)`](http://man7.org/linux/man-pages/man2/fdatasync.2.html) documentation for details. No arguments other + * than a possible + * exception are given to the completion callback. + * @since v0.1.96 + */ + export function fdatasync(fd: number, callback: NoParamCallback): void; + export namespace fdatasync { + /** + * Asynchronous fdatasync(2) - synchronize a file's in-core state with storage device. + * @param fd A file descriptor. + */ + function __promisify__(fd: number): Promise; + } + /** + * Forces all currently queued I/O operations associated with the file to the + * operating system's synchronized I/O completion state. Refer to the POSIX [`fdatasync(2)`](http://man7.org/linux/man-pages/man2/fdatasync.2.html) documentation for details. Returns `undefined`. + * @since v0.1.96 + */ + export function fdatasyncSync(fd: number): void; + /** + * Asynchronously copies `src` to `dest`. By default, `dest` is overwritten if it + * already exists. No arguments other than a possible exception are given to the + * callback function. Node.js makes no guarantees about the atomicity of the copy + * operation. If an error occurs after the destination file has been opened for + * writing, Node.js will attempt to remove the destination. + * + * `mode` is an optional integer that specifies the behavior + * of the copy operation. It is possible to create a mask consisting of the bitwise + * OR of two or more values (e.g.`fs.constants.COPYFILE_EXCL | fs.constants.COPYFILE_FICLONE`). + * + * * `fs.constants.COPYFILE_EXCL`: The copy operation will fail if `dest` already + * exists. + * * `fs.constants.COPYFILE_FICLONE`: The copy operation will attempt to create a + * copy-on-write reflink. If the platform does not support copy-on-write, then a + * fallback copy mechanism is used. + * * `fs.constants.COPYFILE_FICLONE_FORCE`: The copy operation will attempt to + * create a copy-on-write reflink. If the platform does not support + * copy-on-write, then the operation will fail. + * + * ```js + * import { copyFile, constants } from 'fs'; + * + * function callback(err) { + * if (err) throw err; + * console.log('source.txt was copied to destination.txt'); + * } + * + * // destination.txt will be created or overwritten by default. + * copyFile('source.txt', 'destination.txt', callback); + * + * // By using COPYFILE_EXCL, the operation will fail if destination.txt exists. + * copyFile('source.txt', 'destination.txt', constants.COPYFILE_EXCL, callback); + * ``` + * @since v8.5.0 + * @param src source filename to copy + * @param dest destination filename of the copy operation + * @param [mode=0] modifiers for copy operation. + */ + export function copyFile(src: PathLike, dest: PathLike, callback: NoParamCallback): void; + export function copyFile(src: PathLike, dest: PathLike, mode: number, callback: NoParamCallback): void; + export namespace copyFile { + function __promisify__(src: PathLike, dst: PathLike, mode?: number): Promise; + } + /** + * Synchronously copies `src` to `dest`. By default, `dest` is overwritten if it + * already exists. Returns `undefined`. Node.js makes no guarantees about the + * atomicity of the copy operation. If an error occurs after the destination file + * has been opened for writing, Node.js will attempt to remove the destination. + * + * `mode` is an optional integer that specifies the behavior + * of the copy operation. It is possible to create a mask consisting of the bitwise + * OR of two or more values (e.g.`fs.constants.COPYFILE_EXCL | fs.constants.COPYFILE_FICLONE`). + * + * * `fs.constants.COPYFILE_EXCL`: The copy operation will fail if `dest` already + * exists. + * * `fs.constants.COPYFILE_FICLONE`: The copy operation will attempt to create a + * copy-on-write reflink. If the platform does not support copy-on-write, then a + * fallback copy mechanism is used. + * * `fs.constants.COPYFILE_FICLONE_FORCE`: The copy operation will attempt to + * create a copy-on-write reflink. If the platform does not support + * copy-on-write, then the operation will fail. + * + * ```js + * import { copyFileSync, constants } from 'fs'; + * + * // destination.txt will be created or overwritten by default. + * copyFileSync('source.txt', 'destination.txt'); + * console.log('source.txt was copied to destination.txt'); + * + * // By using COPYFILE_EXCL, the operation will fail if destination.txt exists. + * copyFileSync('source.txt', 'destination.txt', constants.COPYFILE_EXCL); + * ``` + * @since v8.5.0 + * @param src source filename to copy + * @param dest destination filename of the copy operation + * @param [mode=0] modifiers for copy operation. + */ + export function copyFileSync(src: PathLike, dest: PathLike, mode?: number): void; + /** + * Write an array of `ArrayBufferView`s to the file specified by `fd` using`writev()`. + * + * `position` is the offset from the beginning of the file where this data + * should be written. If `typeof position !== 'number'`, the data will be written + * at the current position. + * + * The callback will be given three arguments: `err`, `bytesWritten`, and`buffers`. `bytesWritten` is how many bytes were written from `buffers`. + * + * If this method is `util.promisify()` ed, it returns a promise for an`Object` with `bytesWritten` and `buffers` properties. + * + * It is unsafe to use `fs.writev()` multiple times on the same file without + * waiting for the callback. For this scenario, use {@link createWriteStream}. + * + * On Linux, positional writes don't work when the file is opened in append mode. + * The kernel ignores the position argument and always appends the data to + * the end of the file. + * @since v12.9.0 + */ + export function writev(fd: number, buffers: ReadonlyArray, cb: (err: NodeJS.ErrnoException | null, bytesWritten: number, buffers: NodeJS.ArrayBufferView[]) => void): void; + export function writev( + fd: number, + buffers: ReadonlyArray, + position: number, + cb: (err: NodeJS.ErrnoException | null, bytesWritten: number, buffers: NodeJS.ArrayBufferView[]) => void + ): void; + export interface WriteVResult { + bytesWritten: number; + buffers: NodeJS.ArrayBufferView[]; + } + export namespace writev { + function __promisify__(fd: number, buffers: ReadonlyArray, position?: number): Promise; + } + /** + * For detailed information, see the documentation of the asynchronous version of + * this API: {@link writev}. + * @since v12.9.0 + * @return The number of bytes written. + */ + export function writevSync(fd: number, buffers: ReadonlyArray, position?: number): number; + /** + * Read from a file specified by `fd` and write to an array of `ArrayBufferView`s + * using `readv()`. + * + * `position` is the offset from the beginning of the file from where data + * should be read. If `typeof position !== 'number'`, the data will be read + * from the current position. + * + * The callback will be given three arguments: `err`, `bytesRead`, and`buffers`. `bytesRead` is how many bytes were read from the file. + * + * If this method is invoked as its `util.promisify()` ed version, it returns + * a promise for an `Object` with `bytesRead` and `buffers` properties. + * @since v13.13.0, v12.17.0 + */ + export function readv(fd: number, buffers: ReadonlyArray, cb: (err: NodeJS.ErrnoException | null, bytesRead: number, buffers: NodeJS.ArrayBufferView[]) => void): void; + export function readv( + fd: number, + buffers: ReadonlyArray, + position: number, + cb: (err: NodeJS.ErrnoException | null, bytesRead: number, buffers: NodeJS.ArrayBufferView[]) => void + ): void; + export interface ReadVResult { + bytesRead: number; + buffers: NodeJS.ArrayBufferView[]; + } + export namespace readv { + function __promisify__(fd: number, buffers: ReadonlyArray, position?: number): Promise; + } + /** + * For detailed information, see the documentation of the asynchronous version of + * this API: {@link readv}. + * @since v13.13.0, v12.17.0 + * @return The number of bytes read. + */ + export function readvSync(fd: number, buffers: ReadonlyArray, position?: number): number; + export interface OpenDirOptions { + encoding?: BufferEncoding | undefined; + /** + * Number of directory entries that are buffered + * internally when reading from the directory. Higher values lead to better + * performance but higher memory usage. + * @default 32 + */ + bufferSize?: number | undefined; + } + /** + * Synchronously open a directory. See [`opendir(3)`](http://man7.org/linux/man-pages/man3/opendir.3.html). + * + * Creates an `fs.Dir`, which contains all further functions for reading from + * and cleaning up the directory. + * + * The `encoding` option sets the encoding for the `path` while opening the + * directory and subsequent read operations. + * @since v12.12.0 + */ + export function opendirSync(path: PathLike, options?: OpenDirOptions): Dir; + /** + * Asynchronously open a directory. See the POSIX [`opendir(3)`](http://man7.org/linux/man-pages/man3/opendir.3.html) documentation for + * more details. + * + * Creates an `fs.Dir`, which contains all further functions for reading from + * and cleaning up the directory. + * + * The `encoding` option sets the encoding for the `path` while opening the + * directory and subsequent read operations. + * @since v12.12.0 + */ + export function opendir(path: PathLike, cb: (err: NodeJS.ErrnoException | null, dir: Dir) => void): void; + export function opendir(path: PathLike, options: OpenDirOptions, cb: (err: NodeJS.ErrnoException | null, dir: Dir) => void): void; + export namespace opendir { + function __promisify__(path: PathLike, options?: OpenDirOptions): Promise; + } + export interface BigIntStats extends StatsBase { + atimeNs: bigint; + mtimeNs: bigint; + ctimeNs: bigint; + birthtimeNs: bigint; + } + export interface BigIntOptions { + bigint: true; + } + export interface StatOptions { + bigint?: boolean | undefined; + } + export interface StatSyncOptions extends StatOptions { + throwIfNoEntry?: boolean | undefined; + } + interface CopyOptionsBase { + /** + * Dereference symlinks + * @default false + */ + dereference?: boolean; + /** + * When `force` is `false`, and the destination + * exists, throw an error. + * @default false + */ + errorOnExist?: boolean; + /** + * Overwrite existing file or directory. _The copy + * operation will ignore errors if you set this to false and the destination + * exists. Use the `errorOnExist` option to change this behavior. + * @default true + */ + force?: boolean; + /** + * When `true` timestamps from `src` will + * be preserved. + * @default false + */ + preserveTimestamps?: boolean; + /** + * Copy directories recursively. + * @default false + */ + recursive?: boolean; + /** + * When true, path resolution for symlinks will be skipped + * @default false + */ + verbatimSymlinks?: boolean; + } + export interface CopyOptions extends CopyOptionsBase { + /** + * Function to filter copied files/directories. Return + * `true` to copy the item, `false` to ignore it. + */ + filter?(source: string, destination: string): boolean | Promise; + } + export interface CopySyncOptions extends CopyOptionsBase { + /** + * Function to filter copied files/directories. Return + * `true` to copy the item, `false` to ignore it. + */ + filter?(source: string, destination: string): boolean; + } + /** + * Asynchronously copies the entire directory structure from `src` to `dest`, + * including subdirectories and files. + * + * When copying a directory to another directory, globs are not supported and + * behavior is similar to `cp dir1/ dir2/`. + * @since v16.7.0 + * @experimental + * @param src source path to copy. + * @param dest destination path to copy to. + */ + export function cp(source: string | URL, destination: string | URL, callback: (err: NodeJS.ErrnoException | null) => void): void; + export function cp(source: string | URL, destination: string | URL, opts: CopyOptions, callback: (err: NodeJS.ErrnoException | null) => void): void; + /** + * Synchronously copies the entire directory structure from `src` to `dest`, + * including subdirectories and files. + * + * When copying a directory to another directory, globs are not supported and + * behavior is similar to `cp dir1/ dir2/`. + * @since v16.7.0 + * @experimental + * @param src source path to copy. + * @param dest destination path to copy to. + */ + export function cpSync(source: string | URL, destination: string | URL, opts?: CopySyncOptions): void; +} +declare module 'node:fs' { + export * from 'fs'; +} diff --git a/node_modules/@types/node/fs/promises.d.ts b/node_modules/@types/node/fs/promises.d.ts new file mode 100644 index 000000000..9d0b5f109 --- /dev/null +++ b/node_modules/@types/node/fs/promises.d.ts @@ -0,0 +1,1120 @@ +/** + * The `fs/promises` API provides asynchronous file system methods that return + * promises. + * + * The promise APIs use the underlying Node.js threadpool to perform file + * system operations off the event loop thread. These operations are not + * synchronized or threadsafe. Care must be taken when performing multiple + * concurrent modifications on the same file or data corruption may occur. + * @since v10.0.0 + */ +declare module 'fs/promises' { + import { Abortable } from 'node:events'; + import { Stream } from 'node:stream'; + import { ReadableStream } from 'node:stream/web'; + import { + BigIntStats, + BufferEncodingOption, + constants as fsConstants, + CopyOptions, + Dir, + Dirent, + MakeDirectoryOptions, + Mode, + ObjectEncodingOptions, + OpenDirOptions, + OpenMode, + PathLike, + ReadStream, + ReadVResult, + RmDirOptions, + RmOptions, + StatOptions, + Stats, + TimeLike, + WatchEventType, + WatchOptions, + WriteStream, + WriteVResult, + } from 'node:fs'; + + interface FileChangeInfo { + eventType: WatchEventType; + filename: T; + } + interface FlagAndOpenMode { + mode?: Mode | undefined; + flag?: OpenMode | undefined; + } + interface FileReadResult { + bytesRead: number; + buffer: T; + } + interface FileReadOptions { + /** + * @default `Buffer.alloc(0xffff)` + */ + buffer?: T; + /** + * @default 0 + */ + offset?: number | null; + /** + * @default `buffer.byteLength` + */ + length?: number | null; + position?: number | null; + } + interface CreateReadStreamOptions { + encoding?: BufferEncoding | null | undefined; + autoClose?: boolean | undefined; + emitClose?: boolean | undefined; + start?: number | undefined; + end?: number | undefined; + highWaterMark?: number | undefined; + } + interface CreateWriteStreamOptions { + encoding?: BufferEncoding | null | undefined; + autoClose?: boolean | undefined; + emitClose?: boolean | undefined; + start?: number | undefined; + } + // TODO: Add `EventEmitter` close + interface FileHandle { + /** + * The numeric file descriptor managed by the {FileHandle} object. + * @since v10.0.0 + */ + readonly fd: number; + /** + * Alias of `filehandle.writeFile()`. + * + * When operating on file handles, the mode cannot be changed from what it was set + * to with `fsPromises.open()`. Therefore, this is equivalent to `filehandle.writeFile()`. + * @since v10.0.0 + * @return Fulfills with `undefined` upon success. + */ + appendFile(data: string | Uint8Array, options?: (ObjectEncodingOptions & FlagAndOpenMode) | BufferEncoding | null): Promise; + /** + * Changes the ownership of the file. A wrapper for [`chown(2)`](http://man7.org/linux/man-pages/man2/chown.2.html). + * @since v10.0.0 + * @param uid The file's new owner's user id. + * @param gid The file's new group's group id. + * @return Fulfills with `undefined` upon success. + */ + chown(uid: number, gid: number): Promise; + /** + * Modifies the permissions on the file. See [`chmod(2)`](http://man7.org/linux/man-pages/man2/chmod.2.html). + * @since v10.0.0 + * @param mode the file mode bit mask. + * @return Fulfills with `undefined` upon success. + */ + chmod(mode: Mode): Promise; + /** + * Unlike the 16 kb default `highWaterMark` for a `stream.Readable`, the stream + * returned by this method has a default `highWaterMark` of 64 kb. + * + * `options` can include `start` and `end` values to read a range of bytes from + * the file instead of the entire file. Both `start` and `end` are inclusive and + * start counting at 0, allowed values are in the + * \[0, [`Number.MAX_SAFE_INTEGER`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/MAX_SAFE_INTEGER)\] range. If `start` is + * omitted or `undefined`, `filehandle.createReadStream()` reads sequentially from + * the current file position. The `encoding` can be any one of those accepted by `Buffer`. + * + * If the `FileHandle` points to a character device that only supports blocking + * reads (such as keyboard or sound card), read operations do not finish until data + * is available. This can prevent the process from exiting and the stream from + * closing naturally. + * + * By default, the stream will emit a `'close'` event after it has been + * destroyed. Set the `emitClose` option to `false` to change this behavior. + * + * ```js + * import { open } from 'fs/promises'; + * + * const fd = await open('/dev/input/event0'); + * // Create a stream from some character device. + * const stream = fd.createReadStream(); + * setTimeout(() => { + * stream.close(); // This may not close the stream. + * // Artificially marking end-of-stream, as if the underlying resource had + * // indicated end-of-file by itself, allows the stream to close. + * // This does not cancel pending read operations, and if there is such an + * // operation, the process may still not be able to exit successfully + * // until it finishes. + * stream.push(null); + * stream.read(0); + * }, 100); + * ``` + * + * If `autoClose` is false, then the file descriptor won't be closed, even if + * there's an error. It is the application's responsibility to close it and make + * sure there's no file descriptor leak. If `autoClose` is set to true (default + * behavior), on `'error'` or `'end'` the file descriptor will be closed + * automatically. + * + * An example to read the last 10 bytes of a file which is 100 bytes long: + * + * ```js + * import { open } from 'fs/promises'; + * + * const fd = await open('sample.txt'); + * fd.createReadStream({ start: 90, end: 99 }); + * ``` + * @since v16.11.0 + */ + createReadStream(options?: CreateReadStreamOptions): ReadStream; + /** + * `options` may also include a `start` option to allow writing data at some + * position past the beginning of the file, allowed values are in the + * \[0, [`Number.MAX_SAFE_INTEGER`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/MAX_SAFE_INTEGER)\] range. Modifying a file rather than + * replacing it may require the `flags` `open` option to be set to `r+` rather than + * the default `r`. The `encoding` can be any one of those accepted by `Buffer`. + * + * If `autoClose` is set to true (default behavior) on `'error'` or `'finish'`the file descriptor will be closed automatically. If `autoClose` is false, + * then the file descriptor won't be closed, even if there's an error. + * It is the application's responsibility to close it and make sure there's no + * file descriptor leak. + * + * By default, the stream will emit a `'close'` event after it has been + * destroyed. Set the `emitClose` option to `false` to change this behavior. + * @since v16.11.0 + */ + createWriteStream(options?: CreateWriteStreamOptions): WriteStream; + /** + * Forces all currently queued I/O operations associated with the file to the + * operating system's synchronized I/O completion state. Refer to the POSIX [`fdatasync(2)`](http://man7.org/linux/man-pages/man2/fdatasync.2.html) documentation for details. + * + * Unlike `filehandle.sync` this method does not flush modified metadata. + * @since v10.0.0 + * @return Fulfills with `undefined` upon success. + */ + datasync(): Promise; + /** + * Request that all data for the open file descriptor is flushed to the storage + * device. The specific implementation is operating system and device specific. + * Refer to the POSIX [`fsync(2)`](http://man7.org/linux/man-pages/man2/fsync.2.html) documentation for more detail. + * @since v10.0.0 + * @return Fufills with `undefined` upon success. + */ + sync(): Promise; + /** + * Reads data from the file and stores that in the given buffer. + * + * If the file is not modified concurrently, the end-of-file is reached when the + * number of bytes read is zero. + * @since v10.0.0 + * @param buffer A buffer that will be filled with the file data read. + * @param offset The location in the buffer at which to start filling. + * @param length The number of bytes to read. + * @param position The location where to begin reading data from the file. If `null`, data will be read from the current file position, and the position will be updated. If `position` is an + * integer, the current file position will remain unchanged. + * @return Fulfills upon success with an object with two properties: + */ + read(buffer: T, offset?: number | null, length?: number | null, position?: number | null): Promise>; + read(options?: FileReadOptions): Promise>; + /** + * Returns a `ReadableStream` that may be used to read the files data. + * + * An error will be thrown if this method is called more than once or is called after the `FileHandle` is closed + * or closing. + * + * ```js + * import { open } from 'node:fs/promises'; + * + * const file = await open('./some/file/to/read'); + * + * for await (const chunk of file.readableWebStream()) + * console.log(chunk); + * + * await file.close(); + * ``` + * + * While the `ReadableStream` will read the file to completion, it will not close the `FileHandle` automatically. User code must still call the `fileHandle.close()` method. + * + * @since v17.0.0 + * @experimental + */ + readableWebStream(): ReadableStream; + /** + * Asynchronously reads the entire contents of a file. + * + * If `options` is a string, then it specifies the `encoding`. + * + * The `FileHandle` has to support reading. + * + * If one or more `filehandle.read()` calls are made on a file handle and then a`filehandle.readFile()` call is made, the data will be read from the current + * position till the end of the file. It doesn't always read from the beginning + * of the file. + * @since v10.0.0 + * @return Fulfills upon a successful read with the contents of the file. If no encoding is specified (using `options.encoding`), the data is returned as a {Buffer} object. Otherwise, the + * data will be a string. + */ + readFile( + options?: { + encoding?: null | undefined; + flag?: OpenMode | undefined; + } | null + ): Promise; + /** + * Asynchronously reads the entire contents of a file. The underlying file will _not_ be closed automatically. + * The `FileHandle` must have been opened for reading. + * @param options An object that may contain an optional flag. + * If a flag is not provided, it defaults to `'r'`. + */ + readFile( + options: + | { + encoding: BufferEncoding; + flag?: OpenMode | undefined; + } + | BufferEncoding + ): Promise; + /** + * Asynchronously reads the entire contents of a file. The underlying file will _not_ be closed automatically. + * The `FileHandle` must have been opened for reading. + * @param options An object that may contain an optional flag. + * If a flag is not provided, it defaults to `'r'`. + */ + readFile( + options?: + | (ObjectEncodingOptions & { + flag?: OpenMode | undefined; + }) + | BufferEncoding + | null + ): Promise; + /** + * @since v10.0.0 + * @return Fulfills with an {fs.Stats} for the file. + */ + stat( + opts?: StatOptions & { + bigint?: false | undefined; + } + ): Promise; + stat( + opts: StatOptions & { + bigint: true; + } + ): Promise; + stat(opts?: StatOptions): Promise; + /** + * Truncates the file. + * + * If the file was larger than `len` bytes, only the first `len` bytes will be + * retained in the file. + * + * The following example retains only the first four bytes of the file: + * + * ```js + * import { open } from 'fs/promises'; + * + * let filehandle = null; + * try { + * filehandle = await open('temp.txt', 'r+'); + * await filehandle.truncate(4); + * } finally { + * await filehandle?.close(); + * } + * ``` + * + * If the file previously was shorter than `len` bytes, it is extended, and the + * extended part is filled with null bytes (`'\0'`): + * + * If `len` is negative then `0` will be used. + * @since v10.0.0 + * @param [len=0] + * @return Fulfills with `undefined` upon success. + */ + truncate(len?: number): Promise; + /** + * Change the file system timestamps of the object referenced by the `FileHandle` then resolves the promise with no arguments upon success. + * @since v10.0.0 + */ + utimes(atime: TimeLike, mtime: TimeLike): Promise; + /** + * Asynchronously writes data to a file, replacing the file if it already exists.`data` can be a string, a buffer, an + * [AsyncIterable](https://tc39.github.io/ecma262/#sec-asynciterable-interface) or + * [Iterable](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols#The_iterable_protocol) object. + * The promise is resolved with no arguments upon success. + * + * If `options` is a string, then it specifies the `encoding`. + * + * The `FileHandle` has to support writing. + * + * It is unsafe to use `filehandle.writeFile()` multiple times on the same file + * without waiting for the promise to be resolved (or rejected). + * + * If one or more `filehandle.write()` calls are made on a file handle and then a`filehandle.writeFile()` call is made, the data will be written from the + * current position till the end of the file. It doesn't always write from the + * beginning of the file. + * @since v10.0.0 + */ + writeFile(data: string | Uint8Array, options?: (ObjectEncodingOptions & FlagAndOpenMode & Abortable) | BufferEncoding | null): Promise; + /** + * Write `buffer` to the file. + * + * The promise is resolved with an object containing two properties: + * + * It is unsafe to use `filehandle.write()` multiple times on the same file + * without waiting for the promise to be resolved (or rejected). For this + * scenario, use `filehandle.createWriteStream()`. + * + * On Linux, positional writes do not work when the file is opened in append mode. + * The kernel ignores the position argument and always appends the data to + * the end of the file. + * @since v10.0.0 + * @param [offset=0] The start position from within `buffer` where the data to write begins. + * @param [length=buffer.byteLength - offset] The number of bytes from `buffer` to write. + * @param position The offset from the beginning of the file where the data from `buffer` should be written. If `position` is not a `number`, the data will be written at the current position. + * See the POSIX pwrite(2) documentation for more detail. + */ + write( + buffer: TBuffer, + offset?: number | null, + length?: number | null, + position?: number | null + ): Promise<{ + bytesWritten: number; + buffer: TBuffer; + }>; + write( + data: string, + position?: number | null, + encoding?: BufferEncoding | null + ): Promise<{ + bytesWritten: number; + buffer: string; + }>; + /** + * Write an array of [ArrayBufferView](https://developer.mozilla.org/en-US/docs/Web/API/ArrayBufferView) s to the file. + * + * The promise is resolved with an object containing a two properties: + * + * It is unsafe to call `writev()` multiple times on the same file without waiting + * for the promise to be resolved (or rejected). + * + * On Linux, positional writes don't work when the file is opened in append mode. + * The kernel ignores the position argument and always appends the data to + * the end of the file. + * @since v12.9.0 + * @param position The offset from the beginning of the file where the data from `buffers` should be written. If `position` is not a `number`, the data will be written at the current + * position. + */ + writev(buffers: ReadonlyArray, position?: number): Promise; + /** + * Read from a file and write to an array of [ArrayBufferView](https://developer.mozilla.org/en-US/docs/Web/API/ArrayBufferView) s + * @since v13.13.0, v12.17.0 + * @param position The offset from the beginning of the file where the data should be read from. If `position` is not a `number`, the data will be read from the current position. + * @return Fulfills upon success an object containing two properties: + */ + readv(buffers: ReadonlyArray, position?: number): Promise; + /** + * Closes the file handle after waiting for any pending operation on the handle to + * complete. + * + * ```js + * import { open } from 'fs/promises'; + * + * let filehandle; + * try { + * filehandle = await open('thefile.txt', 'r'); + * } finally { + * await filehandle?.close(); + * } + * ``` + * @since v10.0.0 + * @return Fulfills with `undefined` upon success. + */ + close(): Promise; + } + + const constants: typeof fsConstants; + + /** + * Tests a user's permissions for the file or directory specified by `path`. + * The `mode` argument is an optional integer that specifies the accessibility + * checks to be performed. `mode` should be either the value `fs.constants.F_OK`or a mask consisting of the bitwise OR of any of `fs.constants.R_OK`,`fs.constants.W_OK`, and `fs.constants.X_OK` + * (e.g.`fs.constants.W_OK | fs.constants.R_OK`). Check `File access constants` for + * possible values of `mode`. + * + * If the accessibility check is successful, the promise is resolved with no + * value. If any of the accessibility checks fail, the promise is rejected + * with an [Error](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error) object. The following example checks if the file`/etc/passwd` can be read and + * written by the current process. + * + * ```js + * import { access } from 'fs/promises'; + * import { constants } from 'fs'; + * + * try { + * await access('/etc/passwd', constants.R_OK | constants.W_OK); + * console.log('can access'); + * } catch { + * console.error('cannot access'); + * } + * ``` + * + * Using `fsPromises.access()` to check for the accessibility of a file before + * calling `fsPromises.open()` is not recommended. Doing so introduces a race + * condition, since other processes may change the file's state between the two + * calls. Instead, user code should open/read/write the file directly and handle + * the error raised if the file is not accessible. + * @since v10.0.0 + * @param [mode=fs.constants.F_OK] + * @return Fulfills with `undefined` upon success. + */ + function access(path: PathLike, mode?: number): Promise; + /** + * Asynchronously copies `src` to `dest`. By default, `dest` is overwritten if it + * already exists. + * + * No guarantees are made about the atomicity of the copy operation. If an + * error occurs after the destination file has been opened for writing, an attempt + * will be made to remove the destination. + * + * ```js + * import { constants } from 'fs'; + * import { copyFile } from 'fs/promises'; + * + * try { + * await copyFile('source.txt', 'destination.txt'); + * console.log('source.txt was copied to destination.txt'); + * } catch { + * console.log('The file could not be copied'); + * } + * + * // By using COPYFILE_EXCL, the operation will fail if destination.txt exists. + * try { + * await copyFile('source.txt', 'destination.txt', constants.COPYFILE_EXCL); + * console.log('source.txt was copied to destination.txt'); + * } catch { + * console.log('The file could not be copied'); + * } + * ``` + * @since v10.0.0 + * @param src source filename to copy + * @param dest destination filename of the copy operation + * @param [mode=0] Optional modifiers that specify the behavior of the copy operation. It is possible to create a mask consisting of the bitwise OR of two or more values (e.g. + * `fs.constants.COPYFILE_EXCL | fs.constants.COPYFILE_FICLONE`) + * @return Fulfills with `undefined` upon success. + */ + function copyFile(src: PathLike, dest: PathLike, mode?: number): Promise; + /** + * Opens a `FileHandle`. + * + * Refer to the POSIX [`open(2)`](http://man7.org/linux/man-pages/man2/open.2.html) documentation for more detail. + * + * Some characters (`< > : " / \ | ? *`) are reserved under Windows as documented + * by [Naming Files, Paths, and Namespaces](https://docs.microsoft.com/en-us/windows/desktop/FileIO/naming-a-file). Under NTFS, if the filename contains + * a colon, Node.js will open a file system stream, as described by [this MSDN page](https://docs.microsoft.com/en-us/windows/desktop/FileIO/using-streams). + * @since v10.0.0 + * @param [flags='r'] See `support of file system `flags``. + * @param [mode=0o666] Sets the file mode (permission and sticky bits) if the file is created. + * @return Fulfills with a {FileHandle} object. + */ + function open(path: PathLike, flags?: string | number, mode?: Mode): Promise; + /** + * Renames `oldPath` to `newPath`. + * @since v10.0.0 + * @return Fulfills with `undefined` upon success. + */ + function rename(oldPath: PathLike, newPath: PathLike): Promise; + /** + * Truncates (shortens or extends the length) of the content at `path` to `len`bytes. + * @since v10.0.0 + * @param [len=0] + * @return Fulfills with `undefined` upon success. + */ + function truncate(path: PathLike, len?: number): Promise; + /** + * Removes the directory identified by `path`. + * + * Using `fsPromises.rmdir()` on a file (not a directory) results in the + * promise being rejected with an `ENOENT` error on Windows and an `ENOTDIR`error on POSIX. + * + * To get a behavior similar to the `rm -rf` Unix command, use `fsPromises.rm()` with options `{ recursive: true, force: true }`. + * @since v10.0.0 + * @return Fulfills with `undefined` upon success. + */ + function rmdir(path: PathLike, options?: RmDirOptions): Promise; + /** + * Removes files and directories (modeled on the standard POSIX `rm` utility). + * @since v14.14.0 + * @return Fulfills with `undefined` upon success. + */ + function rm(path: PathLike, options?: RmOptions): Promise; + /** + * Asynchronously creates a directory. + * + * The optional `options` argument can be an integer specifying `mode` (permission + * and sticky bits), or an object with a `mode` property and a `recursive`property indicating whether parent directories should be created. Calling`fsPromises.mkdir()` when `path` is a directory + * that exists results in a + * rejection only when `recursive` is false. + * @since v10.0.0 + * @return Upon success, fulfills with `undefined` if `recursive` is `false`, or the first directory path created if `recursive` is `true`. + */ + function mkdir( + path: PathLike, + options: MakeDirectoryOptions & { + recursive: true; + } + ): Promise; + /** + * Asynchronous mkdir(2) - create a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options Either the file mode, or an object optionally specifying the file mode and whether parent folders + * should be created. If a string is passed, it is parsed as an octal integer. If not specified, defaults to `0o777`. + */ + function mkdir( + path: PathLike, + options?: + | Mode + | (MakeDirectoryOptions & { + recursive?: false | undefined; + }) + | null + ): Promise; + /** + * Asynchronous mkdir(2) - create a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options Either the file mode, or an object optionally specifying the file mode and whether parent folders + * should be created. If a string is passed, it is parsed as an octal integer. If not specified, defaults to `0o777`. + */ + function mkdir(path: PathLike, options?: Mode | MakeDirectoryOptions | null): Promise; + /** + * Reads the contents of a directory. + * + * The optional `options` argument can be a string specifying an encoding, or an + * object with an `encoding` property specifying the character encoding to use for + * the filenames. If the `encoding` is set to `'buffer'`, the filenames returned + * will be passed as `Buffer` objects. + * + * If `options.withFileTypes` is set to `true`, the resolved array will contain `fs.Dirent` objects. + * + * ```js + * import { readdir } from 'fs/promises'; + * + * try { + * const files = await readdir(path); + * for (const file of files) + * console.log(file); + * } catch (err) { + * console.error(err); + * } + * ``` + * @since v10.0.0 + * @return Fulfills with an array of the names of the files in the directory excluding `'.'` and `'..'`. + */ + function readdir( + path: PathLike, + options?: + | (ObjectEncodingOptions & { + withFileTypes?: false | undefined; + }) + | BufferEncoding + | null + ): Promise; + /** + * Asynchronous readdir(3) - read a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function readdir( + path: PathLike, + options: + | { + encoding: 'buffer'; + withFileTypes?: false | undefined; + } + | 'buffer' + ): Promise; + /** + * Asynchronous readdir(3) - read a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function readdir( + path: PathLike, + options?: + | (ObjectEncodingOptions & { + withFileTypes?: false | undefined; + }) + | BufferEncoding + | null + ): Promise; + /** + * Asynchronous readdir(3) - read a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options If called with `withFileTypes: true` the result data will be an array of Dirent. + */ + function readdir( + path: PathLike, + options: ObjectEncodingOptions & { + withFileTypes: true; + } + ): Promise; + /** + * Reads the contents of the symbolic link referred to by `path`. See the POSIX [`readlink(2)`](http://man7.org/linux/man-pages/man2/readlink.2.html) documentation for more detail. The promise is + * resolved with the`linkString` upon success. + * + * The optional `options` argument can be a string specifying an encoding, or an + * object with an `encoding` property specifying the character encoding to use for + * the link path returned. If the `encoding` is set to `'buffer'`, the link path + * returned will be passed as a `Buffer` object. + * @since v10.0.0 + * @return Fulfills with the `linkString` upon success. + */ + function readlink(path: PathLike, options?: ObjectEncodingOptions | BufferEncoding | null): Promise; + /** + * Asynchronous readlink(2) - read value of a symbolic link. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function readlink(path: PathLike, options: BufferEncodingOption): Promise; + /** + * Asynchronous readlink(2) - read value of a symbolic link. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function readlink(path: PathLike, options?: ObjectEncodingOptions | string | null): Promise; + /** + * Creates a symbolic link. + * + * The `type` argument is only used on Windows platforms and can be one of `'dir'`,`'file'`, or `'junction'`. Windows junction points require the destination path + * to be absolute. When using `'junction'`, the `target` argument will + * automatically be normalized to absolute path. + * @since v10.0.0 + * @param [type='file'] + * @return Fulfills with `undefined` upon success. + */ + function symlink(target: PathLike, path: PathLike, type?: string | null): Promise; + /** + * Equivalent to `fsPromises.stat()` unless `path` refers to a symbolic link, + * in which case the link itself is stat-ed, not the file that it refers to. + * Refer to the POSIX [`lstat(2)`](http://man7.org/linux/man-pages/man2/lstat.2.html) document for more detail. + * @since v10.0.0 + * @return Fulfills with the {fs.Stats} object for the given symbolic link `path`. + */ + function lstat( + path: PathLike, + opts?: StatOptions & { + bigint?: false | undefined; + } + ): Promise; + function lstat( + path: PathLike, + opts: StatOptions & { + bigint: true; + } + ): Promise; + function lstat(path: PathLike, opts?: StatOptions): Promise; + /** + * @since v10.0.0 + * @return Fulfills with the {fs.Stats} object for the given `path`. + */ + function stat( + path: PathLike, + opts?: StatOptions & { + bigint?: false | undefined; + } + ): Promise; + function stat( + path: PathLike, + opts: StatOptions & { + bigint: true; + } + ): Promise; + function stat(path: PathLike, opts?: StatOptions): Promise; + /** + * Creates a new link from the `existingPath` to the `newPath`. See the POSIX [`link(2)`](http://man7.org/linux/man-pages/man2/link.2.html) documentation for more detail. + * @since v10.0.0 + * @return Fulfills with `undefined` upon success. + */ + function link(existingPath: PathLike, newPath: PathLike): Promise; + /** + * If `path` refers to a symbolic link, then the link is removed without affecting + * the file or directory to which that link refers. If the `path` refers to a file + * path that is not a symbolic link, the file is deleted. See the POSIX [`unlink(2)`](http://man7.org/linux/man-pages/man2/unlink.2.html) documentation for more detail. + * @since v10.0.0 + * @return Fulfills with `undefined` upon success. + */ + function unlink(path: PathLike): Promise; + /** + * Changes the permissions of a file. + * @since v10.0.0 + * @return Fulfills with `undefined` upon success. + */ + function chmod(path: PathLike, mode: Mode): Promise; + /** + * Changes the permissions on a symbolic link. + * + * This method is only implemented on macOS. + * @deprecated Since v10.0.0 + * @return Fulfills with `undefined` upon success. + */ + function lchmod(path: PathLike, mode: Mode): Promise; + /** + * Changes the ownership on a symbolic link. + * @since v10.0.0 + * @return Fulfills with `undefined` upon success. + */ + function lchown(path: PathLike, uid: number, gid: number): Promise; + /** + * Changes the access and modification times of a file in the same way as `fsPromises.utimes()`, with the difference that if the path refers to a + * symbolic link, then the link is not dereferenced: instead, the timestamps of + * the symbolic link itself are changed. + * @since v14.5.0, v12.19.0 + * @return Fulfills with `undefined` upon success. + */ + function lutimes(path: PathLike, atime: TimeLike, mtime: TimeLike): Promise; + /** + * Changes the ownership of a file. + * @since v10.0.0 + * @return Fulfills with `undefined` upon success. + */ + function chown(path: PathLike, uid: number, gid: number): Promise; + /** + * Change the file system timestamps of the object referenced by `path`. + * + * The `atime` and `mtime` arguments follow these rules: + * + * * Values can be either numbers representing Unix epoch time, `Date`s, or a + * numeric string like `'123456789.0'`. + * * If the value can not be converted to a number, or is `NaN`, `Infinity` or`-Infinity`, an `Error` will be thrown. + * @since v10.0.0 + * @return Fulfills with `undefined` upon success. + */ + function utimes(path: PathLike, atime: TimeLike, mtime: TimeLike): Promise; + /** + * Determines the actual location of `path` using the same semantics as the`fs.realpath.native()` function. + * + * Only paths that can be converted to UTF8 strings are supported. + * + * The optional `options` argument can be a string specifying an encoding, or an + * object with an `encoding` property specifying the character encoding to use for + * the path. If the `encoding` is set to `'buffer'`, the path returned will be + * passed as a `Buffer` object. + * + * On Linux, when Node.js is linked against musl libc, the procfs file system must + * be mounted on `/proc` in order for this function to work. Glibc does not have + * this restriction. + * @since v10.0.0 + * @return Fulfills with the resolved path upon success. + */ + function realpath(path: PathLike, options?: ObjectEncodingOptions | BufferEncoding | null): Promise; + /** + * Asynchronous realpath(3) - return the canonicalized absolute pathname. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function realpath(path: PathLike, options: BufferEncodingOption): Promise; + /** + * Asynchronous realpath(3) - return the canonicalized absolute pathname. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function realpath(path: PathLike, options?: ObjectEncodingOptions | BufferEncoding | null): Promise; + /** + * Creates a unique temporary directory. A unique directory name is generated by + * appending six random characters to the end of the provided `prefix`. Due to + * platform inconsistencies, avoid trailing `X` characters in `prefix`. Some + * platforms, notably the BSDs, can return more than six random characters, and + * replace trailing `X` characters in `prefix` with random characters. + * + * The optional `options` argument can be a string specifying an encoding, or an + * object with an `encoding` property specifying the character encoding to use. + * + * ```js + * import { mkdtemp } from 'fs/promises'; + * + * try { + * await mkdtemp(path.join(os.tmpdir(), 'foo-')); + * } catch (err) { + * console.error(err); + * } + * ``` + * + * The `fsPromises.mkdtemp()` method will append the six randomly selected + * characters directly to the `prefix` string. For instance, given a directory`/tmp`, if the intention is to create a temporary directory _within_`/tmp`, the`prefix` must end with a trailing + * platform-specific path separator + * (`require('path').sep`). + * @since v10.0.0 + * @return Fulfills with a string containing the filesystem path of the newly created temporary directory. + */ + function mkdtemp(prefix: string, options?: ObjectEncodingOptions | BufferEncoding | null): Promise; + /** + * Asynchronously creates a unique temporary directory. + * Generates six random characters to be appended behind a required `prefix` to create a unique temporary directory. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function mkdtemp(prefix: string, options: BufferEncodingOption): Promise; + /** + * Asynchronously creates a unique temporary directory. + * Generates six random characters to be appended behind a required `prefix` to create a unique temporary directory. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function mkdtemp(prefix: string, options?: ObjectEncodingOptions | BufferEncoding | null): Promise; + /** + * Asynchronously writes data to a file, replacing the file if it already exists.`data` can be a string, a buffer, an + * [AsyncIterable](https://tc39.github.io/ecma262/#sec-asynciterable-interface) or + * [Iterable](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols#The_iterable_protocol) object. + * + * The `encoding` option is ignored if `data` is a buffer. + * + * If `options` is a string, then it specifies the encoding. + * + * The `mode` option only affects the newly created file. See `fs.open()` for more details. + * + * Any specified `FileHandle` has to support writing. + * + * It is unsafe to use `fsPromises.writeFile()` multiple times on the same file + * without waiting for the promise to be settled. + * + * Similarly to `fsPromises.readFile` \- `fsPromises.writeFile` is a convenience + * method that performs multiple `write` calls internally to write the buffer + * passed to it. For performance sensitive code consider using `fs.createWriteStream()` or `filehandle.createWriteStream()`. + * + * It is possible to use an `AbortSignal` to cancel an `fsPromises.writeFile()`. + * Cancelation is "best effort", and some amount of data is likely still + * to be written. + * + * ```js + * import { writeFile } from 'fs/promises'; + * import { Buffer } from 'buffer'; + * + * try { + * const controller = new AbortController(); + * const { signal } = controller; + * const data = new Uint8Array(Buffer.from('Hello Node.js')); + * const promise = writeFile('message.txt', data, { signal }); + * + * // Abort the request before the promise settles. + * controller.abort(); + * + * await promise; + * } catch (err) { + * // When a request is aborted - err is an AbortError + * console.error(err); + * } + * ``` + * + * Aborting an ongoing request does not abort individual operating + * system requests but rather the internal buffering `fs.writeFile` performs. + * @since v10.0.0 + * @param file filename or `FileHandle` + * @return Fulfills with `undefined` upon success. + */ + function writeFile( + file: PathLike | FileHandle, + data: string | NodeJS.ArrayBufferView | Iterable | AsyncIterable | Stream, + options?: + | (ObjectEncodingOptions & { + mode?: Mode | undefined; + flag?: OpenMode | undefined; + } & Abortable) + | BufferEncoding + | null + ): Promise; + /** + * Asynchronously append data to a file, creating the file if it does not yet + * exist. `data` can be a string or a `Buffer`. + * + * If `options` is a string, then it specifies the `encoding`. + * + * The `mode` option only affects the newly created file. See `fs.open()` for more details. + * + * The `path` may be specified as a `FileHandle` that has been opened + * for appending (using `fsPromises.open()`). + * @since v10.0.0 + * @param path filename or {FileHandle} + * @return Fulfills with `undefined` upon success. + */ + function appendFile(path: PathLike | FileHandle, data: string | Uint8Array, options?: (ObjectEncodingOptions & FlagAndOpenMode) | BufferEncoding | null): Promise; + /** + * Asynchronously reads the entire contents of a file. + * + * If no encoding is specified (using `options.encoding`), the data is returned + * as a `Buffer` object. Otherwise, the data will be a string. + * + * If `options` is a string, then it specifies the encoding. + * + * When the `path` is a directory, the behavior of `fsPromises.readFile()` is + * platform-specific. On macOS, Linux, and Windows, the promise will be rejected + * with an error. On FreeBSD, a representation of the directory's contents will be + * returned. + * + * It is possible to abort an ongoing `readFile` using an `AbortSignal`. If a + * request is aborted the promise returned is rejected with an `AbortError`: + * + * ```js + * import { readFile } from 'fs/promises'; + * + * try { + * const controller = new AbortController(); + * const { signal } = controller; + * const promise = readFile(fileName, { signal }); + * + * // Abort the request before the promise settles. + * controller.abort(); + * + * await promise; + * } catch (err) { + * // When a request is aborted - err is an AbortError + * console.error(err); + * } + * ``` + * + * Aborting an ongoing request does not abort individual operating + * system requests but rather the internal buffering `fs.readFile` performs. + * + * Any specified `FileHandle` has to support reading. + * @since v10.0.0 + * @param path filename or `FileHandle` + * @return Fulfills with the contents of the file. + */ + function readFile( + path: PathLike | FileHandle, + options?: + | ({ + encoding?: null | undefined; + flag?: OpenMode | undefined; + } & Abortable) + | null + ): Promise; + /** + * Asynchronously reads the entire contents of a file. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * If a `FileHandle` is provided, the underlying file will _not_ be closed automatically. + * @param options An object that may contain an optional flag. + * If a flag is not provided, it defaults to `'r'`. + */ + function readFile( + path: PathLike | FileHandle, + options: + | ({ + encoding: BufferEncoding; + flag?: OpenMode | undefined; + } & Abortable) + | BufferEncoding + ): Promise; + /** + * Asynchronously reads the entire contents of a file. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * If a `FileHandle` is provided, the underlying file will _not_ be closed automatically. + * @param options An object that may contain an optional flag. + * If a flag is not provided, it defaults to `'r'`. + */ + function readFile( + path: PathLike | FileHandle, + options?: + | (ObjectEncodingOptions & + Abortable & { + flag?: OpenMode | undefined; + }) + | BufferEncoding + | null + ): Promise; + /** + * Asynchronously open a directory for iterative scanning. See the POSIX [`opendir(3)`](http://man7.org/linux/man-pages/man3/opendir.3.html) documentation for more detail. + * + * Creates an `fs.Dir`, which contains all further functions for reading from + * and cleaning up the directory. + * + * The `encoding` option sets the encoding for the `path` while opening the + * directory and subsequent read operations. + * + * Example using async iteration: + * + * ```js + * import { opendir } from 'fs/promises'; + * + * try { + * const dir = await opendir('./'); + * for await (const dirent of dir) + * console.log(dirent.name); + * } catch (err) { + * console.error(err); + * } + * ``` + * + * When using the async iterator, the `fs.Dir` object will be automatically + * closed after the iterator exits. + * @since v12.12.0 + * @return Fulfills with an {fs.Dir}. + */ + function opendir(path: PathLike, options?: OpenDirOptions): Promise; + /** + * Returns an async iterator that watches for changes on `filename`, where `filename`is either a file or a directory. + * + * ```js + * const { watch } = require('fs/promises'); + * + * const ac = new AbortController(); + * const { signal } = ac; + * setTimeout(() => ac.abort(), 10000); + * + * (async () => { + * try { + * const watcher = watch(__filename, { signal }); + * for await (const event of watcher) + * console.log(event); + * } catch (err) { + * if (err.name === 'AbortError') + * return; + * throw err; + * } + * })(); + * ``` + * + * On most platforms, `'rename'` is emitted whenever a filename appears or + * disappears in the directory. + * + * All the `caveats` for `fs.watch()` also apply to `fsPromises.watch()`. + * @since v15.9.0, v14.18.0 + * @return of objects with the properties: + */ + function watch( + filename: PathLike, + options: + | (WatchOptions & { + encoding: 'buffer'; + }) + | 'buffer' + ): AsyncIterable>; + /** + * Watch for changes on `filename`, where `filename` is either a file or a directory, returning an `FSWatcher`. + * @param filename A path to a file or directory. If a URL is provided, it must use the `file:` protocol. + * @param options Either the encoding for the filename provided to the listener, or an object optionally specifying encoding, persistent, and recursive options. + * If `encoding` is not supplied, the default of `'utf8'` is used. + * If `persistent` is not supplied, the default of `true` is used. + * If `recursive` is not supplied, the default of `false` is used. + */ + function watch(filename: PathLike, options?: WatchOptions | BufferEncoding): AsyncIterable>; + /** + * Watch for changes on `filename`, where `filename` is either a file or a directory, returning an `FSWatcher`. + * @param filename A path to a file or directory. If a URL is provided, it must use the `file:` protocol. + * @param options Either the encoding for the filename provided to the listener, or an object optionally specifying encoding, persistent, and recursive options. + * If `encoding` is not supplied, the default of `'utf8'` is used. + * If `persistent` is not supplied, the default of `true` is used. + * If `recursive` is not supplied, the default of `false` is used. + */ + function watch(filename: PathLike, options: WatchOptions | string): AsyncIterable> | AsyncIterable>; + /** + * Asynchronously copies the entire directory structure from `src` to `dest`, + * including subdirectories and files. + * + * When copying a directory to another directory, globs are not supported and + * behavior is similar to `cp dir1/ dir2/`. + * @since v16.7.0 + * @experimental + * @param src source path to copy. + * @param dest destination path to copy to. + * @return Fulfills with `undefined` upon success. + */ + function cp(source: string | URL, destination: string | URL, opts?: CopyOptions): Promise; +} +declare module 'node:fs/promises' { + export * from 'fs/promises'; +} diff --git a/node_modules/@types/node/globals.d.ts b/node_modules/@types/node/globals.d.ts new file mode 100644 index 000000000..08dc5269f --- /dev/null +++ b/node_modules/@types/node/globals.d.ts @@ -0,0 +1,296 @@ +// Declare "static" methods in Error +interface ErrorConstructor { + /** Create .stack property on a target object */ + captureStackTrace(targetObject: object, constructorOpt?: Function): void; + + /** + * Optional override for formatting stack traces + * + * @see https://v8.dev/docs/stack-trace-api#customizing-stack-traces + */ + prepareStackTrace?: ((err: Error, stackTraces: NodeJS.CallSite[]) => any) | undefined; + + stackTraceLimit: number; +} + +/*-----------------------------------------------* + * * + * GLOBAL * + * * + ------------------------------------------------*/ + +// For backwards compability +interface NodeRequire extends NodeJS.Require { } +interface RequireResolve extends NodeJS.RequireResolve { } +interface NodeModule extends NodeJS.Module { } + +declare var process: NodeJS.Process; +declare var console: Console; + +declare var __filename: string; +declare var __dirname: string; + +declare var require: NodeRequire; +declare var module: NodeModule; + +// Same as module.exports +declare var exports: any; + +/** + * Only available if `--expose-gc` is passed to the process. + */ +declare var gc: undefined | (() => void); + +//#region borrowed +// from https://github.com/microsoft/TypeScript/blob/38da7c600c83e7b31193a62495239a0fe478cb67/lib/lib.webworker.d.ts#L633 until moved to separate lib +/** A controller object that allows you to abort one or more DOM requests as and when desired. */ +interface AbortController { + /** + * Returns the AbortSignal object associated with this object. + */ + + readonly signal: AbortSignal; + /** + * Invoking this method will set this object's AbortSignal's aborted flag and signal to any observers that the associated activity is to be aborted. + */ + abort(): void; +} + +/** A signal object that allows you to communicate with a DOM request (such as a Fetch) and abort it if required via an AbortController object. */ +interface AbortSignal extends EventTarget { + /** + * Returns true if this AbortSignal's AbortController has signaled to abort, and false otherwise. + */ + readonly aborted: boolean; +} + +declare var AbortController: { + prototype: AbortController; + new(): AbortController; +}; + +declare var AbortSignal: { + prototype: AbortSignal; + new(): AbortSignal; + // TODO: Add abort() static + timeout(milliseconds: number): AbortSignal; +}; +//#endregion borrowed + +//#region ArrayLike.at() +interface RelativeIndexable { + /** + * Takes an integer value and returns the item at that index, + * allowing for positive and negative integers. + * Negative integers count back from the last item in the array. + */ + at(index: number): T | undefined; +} +interface String extends RelativeIndexable {} +interface Array extends RelativeIndexable {} +interface ReadonlyArray extends RelativeIndexable {} +interface Int8Array extends RelativeIndexable {} +interface Uint8Array extends RelativeIndexable {} +interface Uint8ClampedArray extends RelativeIndexable {} +interface Int16Array extends RelativeIndexable {} +interface Uint16Array extends RelativeIndexable {} +interface Int32Array extends RelativeIndexable {} +interface Uint32Array extends RelativeIndexable {} +interface Float32Array extends RelativeIndexable {} +interface Float64Array extends RelativeIndexable {} +interface BigInt64Array extends RelativeIndexable {} +interface BigUint64Array extends RelativeIndexable {} +//#endregion ArrayLike.at() end + +/** + * @since v17.0.0 + * + * Creates a deep clone of an object. + */ +declare function structuredClone( + value: T, + transfer?: { transfer: ReadonlyArray }, +): T; + +/*----------------------------------------------* +* * +* GLOBAL INTERFACES * +* * +*-----------------------------------------------*/ +declare namespace NodeJS { + interface CallSite { + /** + * Value of "this" + */ + getThis(): unknown; + + /** + * Type of "this" as a string. + * This is the name of the function stored in the constructor field of + * "this", if available. Otherwise the object's [[Class]] internal + * property. + */ + getTypeName(): string | null; + + /** + * Current function + */ + getFunction(): Function | undefined; + + /** + * Name of the current function, typically its name property. + * If a name property is not available an attempt will be made to try + * to infer a name from the function's context. + */ + getFunctionName(): string | null; + + /** + * Name of the property [of "this" or one of its prototypes] that holds + * the current function + */ + getMethodName(): string | null; + + /** + * Name of the script [if this function was defined in a script] + */ + getFileName(): string | null; + + /** + * Current line number [if this function was defined in a script] + */ + getLineNumber(): number | null; + + /** + * Current column number [if this function was defined in a script] + */ + getColumnNumber(): number | null; + + /** + * A call site object representing the location where eval was called + * [if this function was created using a call to eval] + */ + getEvalOrigin(): string | undefined; + + /** + * Is this a toplevel invocation, that is, is "this" the global object? + */ + isToplevel(): boolean; + + /** + * Does this call take place in code defined by a call to eval? + */ + isEval(): boolean; + + /** + * Is this call in native V8 code? + */ + isNative(): boolean; + + /** + * Is this a constructor call? + */ + isConstructor(): boolean; + } + + interface ErrnoException extends Error { + errno?: number | undefined; + code?: string | undefined; + path?: string | undefined; + syscall?: string | undefined; + } + + interface ReadableStream extends EventEmitter { + readable: boolean; + read(size?: number): string | Buffer; + setEncoding(encoding: BufferEncoding): this; + pause(): this; + resume(): this; + isPaused(): boolean; + pipe(destination: T, options?: { end?: boolean | undefined; }): T; + unpipe(destination?: WritableStream): this; + unshift(chunk: string | Uint8Array, encoding?: BufferEncoding): void; + wrap(oldStream: ReadableStream): this; + [Symbol.asyncIterator](): AsyncIterableIterator; + } + + interface WritableStream extends EventEmitter { + writable: boolean; + write(buffer: Uint8Array | string, cb?: (err?: Error | null) => void): boolean; + write(str: string, encoding?: BufferEncoding, cb?: (err?: Error | null) => void): boolean; + end(cb?: () => void): this; + end(data: string | Uint8Array, cb?: () => void): this; + end(str: string, encoding?: BufferEncoding, cb?: () => void): this; + } + + interface ReadWriteStream extends ReadableStream, WritableStream { } + + interface RefCounted { + ref(): this; + unref(): this; + } + + type TypedArray = + | Uint8Array + | Uint8ClampedArray + | Uint16Array + | Uint32Array + | Int8Array + | Int16Array + | Int32Array + | BigUint64Array + | BigInt64Array + | Float32Array + | Float64Array; + type ArrayBufferView = TypedArray | DataView; + + interface Require { + (id: string): any; + resolve: RequireResolve; + cache: Dict; + /** + * @deprecated + */ + extensions: RequireExtensions; + main: Module | undefined; + } + + interface RequireResolve { + (id: string, options?: { paths?: string[] | undefined; }): string; + paths(request: string): string[] | null; + } + + interface RequireExtensions extends Dict<(m: Module, filename: string) => any> { + '.js': (m: Module, filename: string) => any; + '.json': (m: Module, filename: string) => any; + '.node': (m: Module, filename: string) => any; + } + interface Module { + /** + * `true` if the module is running during the Node.js preload + */ + isPreloading: boolean; + exports: any; + require: Require; + id: string; + filename: string; + loaded: boolean; + /** @deprecated since v14.6.0 Please use `require.main` and `module.children` instead. */ + parent: Module | null | undefined; + children: Module[]; + /** + * @since v11.14.0 + * + * The directory name of the module. This is usually the same as the path.dirname() of the module.id. + */ + path: string; + paths: string[]; + } + + interface Dict { + [key: string]: T | undefined; + } + + interface ReadOnlyDict { + readonly [key: string]: T | undefined; + } +} diff --git a/node_modules/@types/node/globals.global.d.ts b/node_modules/@types/node/globals.global.d.ts new file mode 100644 index 000000000..ef1198c05 --- /dev/null +++ b/node_modules/@types/node/globals.global.d.ts @@ -0,0 +1 @@ +declare var global: typeof globalThis; diff --git a/node_modules/@types/node/http.d.ts b/node_modules/@types/node/http.d.ts new file mode 100644 index 000000000..24bc5e78d --- /dev/null +++ b/node_modules/@types/node/http.d.ts @@ -0,0 +1,1553 @@ +/** + * To use the HTTP server and client one must `require('http')`. + * + * The HTTP interfaces in Node.js are designed to support many features + * of the protocol which have been traditionally difficult to use. + * In particular, large, possibly chunk-encoded, messages. The interface is + * careful to never buffer entire requests or responses, so the + * user is able to stream data. + * + * HTTP message headers are represented by an object like this: + * + * ```js + * { 'content-length': '123', + * 'content-type': 'text/plain', + * 'connection': 'keep-alive', + * 'host': 'example.com', + * 'accept': '*' } + * ``` + * + * Keys are lowercased. Values are not modified. + * + * In order to support the full spectrum of possible HTTP applications, the Node.js + * HTTP API is very low-level. It deals with stream handling and message + * parsing only. It parses a message into headers and body but it does not + * parse the actual headers or the body. + * + * See `message.headers` for details on how duplicate headers are handled. + * + * The raw headers as they were received are retained in the `rawHeaders`property, which is an array of `[key, value, key2, value2, ...]`. For + * example, the previous message header object might have a `rawHeaders`list like the following: + * + * ```js + * [ 'ConTent-Length', '123456', + * 'content-LENGTH', '123', + * 'content-type', 'text/plain', + * 'CONNECTION', 'keep-alive', + * 'Host', 'example.com', + * 'accepT', '*' ] + * ``` + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/http.js) + */ +declare module 'http' { + import * as stream from 'node:stream'; + import { URL } from 'node:url'; + import { TcpSocketConnectOpts, Socket, Server as NetServer, LookupFunction } from 'node:net'; + // incoming headers will never contain number + interface IncomingHttpHeaders extends NodeJS.Dict { + accept?: string | undefined; + 'accept-language'?: string | undefined; + 'accept-patch'?: string | undefined; + 'accept-ranges'?: string | undefined; + 'access-control-allow-credentials'?: string | undefined; + 'access-control-allow-headers'?: string | undefined; + 'access-control-allow-methods'?: string | undefined; + 'access-control-allow-origin'?: string | undefined; + 'access-control-expose-headers'?: string | undefined; + 'access-control-max-age'?: string | undefined; + 'access-control-request-headers'?: string | undefined; + 'access-control-request-method'?: string | undefined; + age?: string | undefined; + allow?: string | undefined; + 'alt-svc'?: string | undefined; + authorization?: string | undefined; + 'cache-control'?: string | undefined; + connection?: string | undefined; + 'content-disposition'?: string | undefined; + 'content-encoding'?: string | undefined; + 'content-language'?: string | undefined; + 'content-length'?: string | undefined; + 'content-location'?: string | undefined; + 'content-range'?: string | undefined; + 'content-type'?: string | undefined; + cookie?: string | undefined; + date?: string | undefined; + etag?: string | undefined; + expect?: string | undefined; + expires?: string | undefined; + forwarded?: string | undefined; + from?: string | undefined; + host?: string | undefined; + 'if-match'?: string | undefined; + 'if-modified-since'?: string | undefined; + 'if-none-match'?: string | undefined; + 'if-unmodified-since'?: string | undefined; + 'last-modified'?: string | undefined; + location?: string | undefined; + origin?: string | undefined; + pragma?: string | undefined; + 'proxy-authenticate'?: string | undefined; + 'proxy-authorization'?: string | undefined; + 'public-key-pins'?: string | undefined; + range?: string | undefined; + referer?: string | undefined; + 'retry-after'?: string | undefined; + 'sec-websocket-accept'?: string | undefined; + 'sec-websocket-extensions'?: string | undefined; + 'sec-websocket-key'?: string | undefined; + 'sec-websocket-protocol'?: string | undefined; + 'sec-websocket-version'?: string | undefined; + 'set-cookie'?: string[] | undefined; + 'strict-transport-security'?: string | undefined; + tk?: string | undefined; + trailer?: string | undefined; + 'transfer-encoding'?: string | undefined; + upgrade?: string | undefined; + 'user-agent'?: string | undefined; + vary?: string | undefined; + via?: string | undefined; + warning?: string | undefined; + 'www-authenticate'?: string | undefined; + } + // outgoing headers allows numbers (as they are converted internally to strings) + type OutgoingHttpHeader = number | string | string[]; + interface OutgoingHttpHeaders extends NodeJS.Dict {} + interface ClientRequestArgs { + signal?: AbortSignal | undefined; + protocol?: string | null | undefined; + host?: string | null | undefined; + hostname?: string | null | undefined; + family?: number | undefined; + port?: number | string | null | undefined; + defaultPort?: number | string | undefined; + localAddress?: string | undefined; + socketPath?: string | undefined; + /** + * @default 8192 + */ + maxHeaderSize?: number | undefined; + method?: string | undefined; + path?: string | null | undefined; + headers?: OutgoingHttpHeaders | undefined; + auth?: string | null | undefined; + agent?: Agent | boolean | undefined; + _defaultAgent?: Agent | undefined; + timeout?: number | undefined; + setHost?: boolean | undefined; + // https://github.com/nodejs/node/blob/master/lib/_http_client.js#L278 + createConnection?: + | ((options: ClientRequestArgs, oncreate: (err: Error, socket: Socket) => void) => Socket) + | undefined; + lookup?: LookupFunction | undefined; + } + interface ServerOptions< + Request extends typeof IncomingMessage = typeof IncomingMessage, + Response extends typeof ServerResponse = typeof ServerResponse, + > { + IncomingMessage?: Request | undefined; + ServerResponse?: Response | undefined; + /** + * Optionally overrides the value of + * `--max-http-header-size` for requests received by this server, i.e. + * the maximum length of request headers in bytes. + * @default 8192 + */ + maxHeaderSize?: number | undefined; + /** + * Use an insecure HTTP parser that accepts invalid HTTP headers when true. + * Using the insecure parser should be avoided. + * See --insecure-http-parser for more information. + * @default false + */ + insecureHTTPParser?: boolean | undefined; + /** + * If set to `true`, it disables the use of Nagle's algorithm immediately after a new incoming connection is received. + * @default false + * @since v16.5.0 + */ + noDelay?: boolean | undefined; + /** + * If set to `true`, it enables keep-alive functionality on the socket immediately after a new incoming connection is received, + * similarly on what is done in `socket.setKeepAlive([enable][, initialDelay])`. + * @default false + * @since v16.5.0 + */ + keepAlive?: boolean | undefined; + /** + * If set to a positive number, it sets the initial delay before the first keepalive probe is sent on an idle socket. + * @default 0 + * @since v16.5.0 + */ + keepAliveInitialDelay?: number | undefined; + } + type RequestListener< + Request extends typeof IncomingMessage = typeof IncomingMessage, + Response extends typeof ServerResponse = typeof ServerResponse, + > = (req: InstanceType, res: InstanceType & { req: InstanceType }) => void; + /** + * @since v0.1.17 + */ + class Server< + Request extends typeof IncomingMessage = typeof IncomingMessage, + Response extends typeof ServerResponse = typeof ServerResponse, + > extends NetServer { + constructor(requestListener?: RequestListener); + constructor(options: ServerOptions, requestListener?: RequestListener); + /** + * Sets the timeout value for sockets, and emits a `'timeout'` event on + * the Server object, passing the socket as an argument, if a timeout + * occurs. + * + * If there is a `'timeout'` event listener on the Server object, then it + * will be called with the timed-out socket as an argument. + * + * By default, the Server does not timeout sockets. However, if a callback + * is assigned to the Server's `'timeout'` event, timeouts must be handled + * explicitly. + * @since v0.9.12 + * @param [msecs=0 (no timeout)] + */ + setTimeout(msecs?: number, callback?: () => void): this; + setTimeout(callback: () => void): this; + /** + * Limits maximum incoming headers count. If set to 0, no limit will be applied. + * @since v0.7.0 + */ + maxHeadersCount: number | null; + /** + * The maximum number of requests socket can handle + * before closing keep alive connection. + * + * A value of `0` will disable the limit. + * + * When the limit is reached it will set the `Connection` header value to `close`, + * but will not actually close the connection, subsequent requests sent + * after the limit is reached will get `503 Service Unavailable` as a response. + * @since v16.10.0 + */ + maxRequestsPerSocket: number | null; + /** + * The number of milliseconds of inactivity before a socket is presumed + * to have timed out. + * + * A value of `0` will disable the timeout behavior on incoming connections. + * + * The socket timeout logic is set up on connection, so changing this + * value only affects new connections to the server, not any existing connections. + * @since v0.9.12 + */ + timeout: number; + /** + * Limit the amount of time the parser will wait to receive the complete HTTP + * headers. + * + * If the timeout expires, the server responds with status 408 without + * forwarding the request to the request listener and then closes the connection. + * + * It must be set to a non-zero value (e.g. 120 seconds) to protect against + * potential Denial-of-Service attacks in case the server is deployed without a + * reverse proxy in front. + * @since v11.3.0, v10.14.0 + */ + headersTimeout: number; + /** + * The number of milliseconds of inactivity a server needs to wait for additional + * incoming data, after it has finished writing the last response, before a socket + * will be destroyed. If the server receives new data before the keep-alive + * timeout has fired, it will reset the regular inactivity timeout, i.e.,`server.timeout`. + * + * A value of `0` will disable the keep-alive timeout behavior on incoming + * connections. + * A value of `0` makes the http server behave similarly to Node.js versions prior + * to 8.0.0, which did not have a keep-alive timeout. + * + * The socket timeout logic is set up on connection, so changing this value only + * affects new connections to the server, not any existing connections. + * @since v8.0.0 + */ + keepAliveTimeout: number; + /** + * Sets the timeout value in milliseconds for receiving the entire request from + * the client. + * + * If the timeout expires, the server responds with status 408 without + * forwarding the request to the request listener and then closes the connection. + * + * It must be set to a non-zero value (e.g. 120 seconds) to protect against + * potential Denial-of-Service attacks in case the server is deployed without a + * reverse proxy in front. + * @since v14.11.0 + */ + requestTimeout: number; + /** + * Closes all connections connected to this server. + * @since v18.2.0 + */ + closeAllConnections(): void; + /** + * Closes all connections connected to this server which are not sending a request or waiting for a response. + * @since v18.2.0 + */ + closeIdleConnections(): void; + addListener(event: string, listener: (...args: any[]) => void): this; + addListener(event: 'close', listener: () => void): this; + addListener(event: 'connection', listener: (socket: Socket) => void): this; + addListener(event: 'error', listener: (err: Error) => void): this; + addListener(event: 'listening', listener: () => void): this; + addListener(event: 'checkContinue', listener: RequestListener): this; + addListener(event: 'checkExpectation', listener: RequestListener): this; + addListener(event: 'clientError', listener: (err: Error, socket: stream.Duplex) => void): this; + addListener( + event: 'connect', + listener: (req: InstanceType, socket: stream.Duplex, head: Buffer) => void, + ): this; + addListener(event: 'request', listener: RequestListener): this; + addListener( + event: 'upgrade', + listener: (req: InstanceType, socket: stream.Duplex, head: Buffer) => void, + ): this; + emit(event: string, ...args: any[]): boolean; + emit(event: 'close'): boolean; + emit(event: 'connection', socket: Socket): boolean; + emit(event: 'error', err: Error): boolean; + emit(event: 'listening'): boolean; + emit( + event: 'checkContinue', + req: InstanceType, + res: InstanceType & { req: InstanceType }, + ): boolean; + emit( + event: 'checkExpectation', + req: InstanceType, + res: InstanceType & { req: InstanceType }, + ): boolean; + emit(event: 'clientError', err: Error, socket: stream.Duplex): boolean; + emit(event: 'connect', req: InstanceType, socket: stream.Duplex, head: Buffer): boolean; + emit( + event: 'request', + req: InstanceType, + res: InstanceType & { req: InstanceType }, + ): boolean; + emit(event: 'upgrade', req: InstanceType, socket: stream.Duplex, head: Buffer): boolean; + on(event: string, listener: (...args: any[]) => void): this; + on(event: 'close', listener: () => void): this; + on(event: 'connection', listener: (socket: Socket) => void): this; + on(event: 'error', listener: (err: Error) => void): this; + on(event: 'listening', listener: () => void): this; + on(event: 'checkContinue', listener: RequestListener): this; + on(event: 'checkExpectation', listener: RequestListener): this; + on(event: 'clientError', listener: (err: Error, socket: stream.Duplex) => void): this; + on(event: 'connect', listener: (req: InstanceType, socket: stream.Duplex, head: Buffer) => void): this; + on(event: 'request', listener: RequestListener): this; + on(event: 'upgrade', listener: (req: InstanceType, socket: stream.Duplex, head: Buffer) => void): this; + once(event: string, listener: (...args: any[]) => void): this; + once(event: 'close', listener: () => void): this; + once(event: 'connection', listener: (socket: Socket) => void): this; + once(event: 'error', listener: (err: Error) => void): this; + once(event: 'listening', listener: () => void): this; + once(event: 'checkContinue', listener: RequestListener): this; + once(event: 'checkExpectation', listener: RequestListener): this; + once(event: 'clientError', listener: (err: Error, socket: stream.Duplex) => void): this; + once( + event: 'connect', + listener: (req: InstanceType, socket: stream.Duplex, head: Buffer) => void, + ): this; + once(event: 'request', listener: RequestListener): this; + once( + event: 'upgrade', + listener: (req: InstanceType, socket: stream.Duplex, head: Buffer) => void, + ): this; + prependListener(event: string, listener: (...args: any[]) => void): this; + prependListener(event: 'close', listener: () => void): this; + prependListener(event: 'connection', listener: (socket: Socket) => void): this; + prependListener(event: 'error', listener: (err: Error) => void): this; + prependListener(event: 'listening', listener: () => void): this; + prependListener(event: 'checkContinue', listener: RequestListener): this; + prependListener(event: 'checkExpectation', listener: RequestListener): this; + prependListener(event: 'clientError', listener: (err: Error, socket: stream.Duplex) => void): this; + prependListener( + event: 'connect', + listener: (req: InstanceType, socket: stream.Duplex, head: Buffer) => void, + ): this; + prependListener(event: 'request', listener: RequestListener): this; + prependListener( + event: 'upgrade', + listener: (req: InstanceType, socket: stream.Duplex, head: Buffer) => void, + ): this; + prependOnceListener(event: string, listener: (...args: any[]) => void): this; + prependOnceListener(event: 'close', listener: () => void): this; + prependOnceListener(event: 'connection', listener: (socket: Socket) => void): this; + prependOnceListener(event: 'error', listener: (err: Error) => void): this; + prependOnceListener(event: 'listening', listener: () => void): this; + prependOnceListener(event: 'checkContinue', listener: RequestListener): this; + prependOnceListener(event: 'checkExpectation', listener: RequestListener): this; + prependOnceListener(event: 'clientError', listener: (err: Error, socket: stream.Duplex) => void): this; + prependOnceListener( + event: 'connect', + listener: (req: InstanceType, socket: stream.Duplex, head: Buffer) => void, + ): this; + prependOnceListener(event: 'request', listener: RequestListener): this; + prependOnceListener( + event: 'upgrade', + listener: (req: InstanceType, socket: stream.Duplex, head: Buffer) => void, + ): this; + } + /** + * This class serves as the parent class of {@link ClientRequest} and {@link ServerResponse}. It is an abstract of outgoing message from + * the perspective of the participants of HTTP transaction. + * @since v0.1.17 + */ + class OutgoingMessage extends stream.Writable { + readonly req: Request; + chunkedEncoding: boolean; + shouldKeepAlive: boolean; + useChunkedEncodingByDefault: boolean; + sendDate: boolean; + /** + * @deprecated Use `writableEnded` instead. + */ + finished: boolean; + /** + * Read-only. `true` if the headers were sent, otherwise `false`. + * @since v0.9.3 + */ + readonly headersSent: boolean; + /** + * Aliases of `outgoingMessage.socket` + * @since v0.3.0 + * @deprecated Since v15.12.0,v14.17.1 - Use `socket` instead. + */ + readonly connection: Socket | null; + /** + * Reference to the underlying socket. Usually, users will not want to access + * this property. + * + * After calling `outgoingMessage.end()`, this property will be nulled. + * @since v0.3.0 + */ + readonly socket: Socket | null; + constructor(); + /** + * Once a socket is associated with the message and is connected,`socket.setTimeout()` will be called with `msecs` as the first parameter. + * @since v0.9.12 + * @param callback Optional function to be called when a timeout occurs. Same as binding to the `timeout` event. + */ + setTimeout(msecs: number, callback?: () => void): this; + /** + * Sets a single header value for the header object. + * @since v0.4.0 + * @param name Header name + * @param value Header value + */ + setHeader(name: string, value: number | string | ReadonlyArray): this; + /** + * Gets the value of HTTP header with the given name. If such a name doesn't + * exist in message, it will be `undefined`. + * @since v0.4.0 + * @param name Name of header + */ + getHeader(name: string): number | string | string[] | undefined; + /** + * Returns a shallow copy of the current outgoing headers. Since a shallow + * copy is used, array values may be mutated without additional calls to + * various header-related HTTP module methods. The keys of the returned + * object are the header names and the values are the respective header + * values. All header names are lowercase. + * + * The object returned by the `outgoingMessage.getHeaders()` method does + * not prototypically inherit from the JavaScript Object. This means that + * typical Object methods such as `obj.toString()`, `obj.hasOwnProperty()`, + * and others are not defined and will not work. + * + * ```js + * outgoingMessage.setHeader('Foo', 'bar'); + * outgoingMessage.setHeader('Set-Cookie', ['foo=bar', 'bar=baz']); + * + * const headers = outgoingMessage.getHeaders(); + * // headers === { foo: 'bar', 'set-cookie': ['foo=bar', 'bar=baz'] } + * ``` + * @since v7.7.0 + */ + getHeaders(): OutgoingHttpHeaders; + /** + * Returns an array of names of headers of the outgoing outgoingMessage. All + * names are lowercase. + * @since v7.7.0 + */ + getHeaderNames(): string[]; + /** + * Returns `true` if the header identified by `name` is currently set in the + * outgoing headers. The header name is case-insensitive. + * + * ```js + * const hasContentType = outgoingMessage.hasHeader('content-type'); + * ``` + * @since v7.7.0 + */ + hasHeader(name: string): boolean; + /** + * Removes a header that is queued for implicit sending. + * + * ```js + * outgoingMessage.removeHeader('Content-Encoding'); + * ``` + * @since v0.4.0 + * @param name Header name + */ + removeHeader(name: string): void; + /** + * Adds HTTP trailers (headers but at the end of the message) to the message. + * + * Trailers are **only** be emitted if the message is chunked encoded. If not, + * the trailer will be silently discarded. + * + * HTTP requires the `Trailer` header to be sent to emit trailers, + * with a list of header fields in its value, e.g. + * + * ```js + * message.writeHead(200, { 'Content-Type': 'text/plain', + * 'Trailer': 'Content-MD5' }); + * message.write(fileData); + * message.addTrailers({ 'Content-MD5': '7895bf4b8828b55ceaf47747b4bca667' }); + * message.end(); + * ``` + * + * Attempting to set a header field name or value that contains invalid characters + * will result in a `TypeError` being thrown. + * @since v0.3.0 + */ + addTrailers(headers: OutgoingHttpHeaders | ReadonlyArray<[string, string]>): void; + /** + * Compulsorily flushes the message headers + * + * For efficiency reason, Node.js normally buffers the message headers + * until `outgoingMessage.end()` is called or the first chunk of message data + * is written. It then tries to pack the headers and data into a single TCP + * packet. + * + * It is usually desired (it saves a TCP round-trip), but not when the first + * data is not sent until possibly much later. `outgoingMessage.flushHeaders()`bypasses the optimization and kickstarts the request. + * @since v1.6.0 + */ + flushHeaders(): void; + } + /** + * This object is created internally by an HTTP server, not by the user. It is + * passed as the second parameter to the `'request'` event. + * @since v0.1.17 + */ + class ServerResponse extends OutgoingMessage { + /** + * When using implicit headers (not calling `response.writeHead()` explicitly), + * this property controls the status code that will be sent to the client when + * the headers get flushed. + * + * ```js + * response.statusCode = 404; + * ``` + * + * After response header was sent to the client, this property indicates the + * status code which was sent out. + * @since v0.4.0 + */ + statusCode: number; + /** + * When using implicit headers (not calling `response.writeHead()` explicitly), + * this property controls the status message that will be sent to the client when + * the headers get flushed. If this is left as `undefined` then the standard + * message for the status code will be used. + * + * ```js + * response.statusMessage = 'Not found'; + * ``` + * + * After response header was sent to the client, this property indicates the + * status message which was sent out. + * @since v0.11.8 + */ + statusMessage: string; + constructor(req: Request); + assignSocket(socket: Socket): void; + detachSocket(socket: Socket): void; + /** + * Sends a HTTP/1.1 100 Continue message to the client, indicating that + * the request body should be sent. See the `'checkContinue'` event on`Server`. + * @since v0.3.0 + */ + writeContinue(callback?: () => void): void; + /** + * Sends a response header to the request. The status code is a 3-digit HTTP + * status code, like `404`. The last argument, `headers`, are the response headers. + * Optionally one can give a human-readable `statusMessage` as the second + * argument. + * + * `headers` may be an `Array` where the keys and values are in the same list. + * It is _not_ a list of tuples. So, the even-numbered offsets are key values, + * and the odd-numbered offsets are the associated values. The array is in the same + * format as `request.rawHeaders`. + * + * Returns a reference to the `ServerResponse`, so that calls can be chained. + * + * ```js + * const body = 'hello world'; + * response + * .writeHead(200, { + * 'Content-Length': Buffer.byteLength(body), + * 'Content-Type': 'text/plain' + * }) + * .end(body); + * ``` + * + * This method must only be called once on a message and it must + * be called before `response.end()` is called. + * + * If `response.write()` or `response.end()` are called before calling + * this, the implicit/mutable headers will be calculated and call this function. + * + * When headers have been set with `response.setHeader()`, they will be merged + * with any headers passed to `response.writeHead()`, with the headers passed + * to `response.writeHead()` given precedence. + * + * If this method is called and `response.setHeader()` has not been called, + * it will directly write the supplied header values onto the network channel + * without caching internally, and the `response.getHeader()` on the header + * will not yield the expected result. If progressive population of headers is + * desired with potential future retrieval and modification, use `response.setHeader()` instead. + * + * ```js + * // Returns content-type = text/plain + * const server = http.createServer((req, res) => { + * res.setHeader('Content-Type', 'text/html'); + * res.setHeader('X-Foo', 'bar'); + * res.writeHead(200, { 'Content-Type': 'text/plain' }); + * res.end('ok'); + * }); + * ``` + * + * `Content-Length` is given in bytes, not characters. Use `Buffer.byteLength()` to determine the length of the body in bytes. Node.js + * does not check whether `Content-Length` and the length of the body which has + * been transmitted are equal or not. + * + * Attempting to set a header field name or value that contains invalid characters + * will result in a `TypeError` being thrown. + * @since v0.1.30 + */ + writeHead( + statusCode: number, + statusMessage?: string, + headers?: OutgoingHttpHeaders | OutgoingHttpHeader[], + ): this; + writeHead(statusCode: number, headers?: OutgoingHttpHeaders | OutgoingHttpHeader[]): this; + /** + * Sends a HTTP/1.1 102 Processing message to the client, indicating that + * the request body should be sent. + * @since v10.0.0 + */ + writeProcessing(): void; + } + interface InformationEvent { + statusCode: number; + statusMessage: string; + httpVersion: string; + httpVersionMajor: number; + httpVersionMinor: number; + headers: IncomingHttpHeaders; + rawHeaders: string[]; + } + /** + * This object is created internally and returned from {@link request}. It + * represents an _in-progress_ request whose header has already been queued. The + * header is still mutable using the `setHeader(name, value)`,`getHeader(name)`, `removeHeader(name)` API. The actual header will + * be sent along with the first data chunk or when calling `request.end()`. + * + * To get the response, add a listener for `'response'` to the request object.`'response'` will be emitted from the request object when the response + * headers have been received. The `'response'` event is executed with one + * argument which is an instance of {@link IncomingMessage}. + * + * During the `'response'` event, one can add listeners to the + * response object; particularly to listen for the `'data'` event. + * + * If no `'response'` handler is added, then the response will be + * entirely discarded. However, if a `'response'` event handler is added, + * then the data from the response object **must** be consumed, either by + * calling `response.read()` whenever there is a `'readable'` event, or + * by adding a `'data'` handler, or by calling the `.resume()` method. + * Until the data is consumed, the `'end'` event will not fire. Also, until + * the data is read it will consume memory that can eventually lead to a + * 'process out of memory' error. + * + * For backward compatibility, `res` will only emit `'error'` if there is an`'error'` listener registered. + * + * Node.js does not check whether Content-Length and the length of the + * body which has been transmitted are equal or not. + * @since v0.1.17 + */ + class ClientRequest extends OutgoingMessage { + /** + * The `request.aborted` property will be `true` if the request has + * been aborted. + * @since v0.11.14 + * @deprecated Since v17.0.0,v16.12.0 - Check `destroyed` instead. + */ + aborted: boolean; + /** + * The request host. + * @since v14.5.0, v12.19.0 + */ + host: string; + /** + * The request protocol. + * @since v14.5.0, v12.19.0 + */ + protocol: string; + /** + * When sending request through a keep-alive enabled agent, the underlying socket + * might be reused. But if server closes connection at unfortunate time, client + * may run into a 'ECONNRESET' error. + * + * ```js + * const http = require('http'); + * + * // Server has a 5 seconds keep-alive timeout by default + * http + * .createServer((req, res) => { + * res.write('hello\n'); + * res.end(); + * }) + * .listen(3000); + * + * setInterval(() => { + * // Adapting a keep-alive agent + * http.get('http://localhost:3000', { agent }, (res) => { + * res.on('data', (data) => { + * // Do nothing + * }); + * }); + * }, 5000); // Sending request on 5s interval so it's easy to hit idle timeout + * ``` + * + * By marking a request whether it reused socket or not, we can do + * automatic error retry base on it. + * + * ```js + * const http = require('http'); + * const agent = new http.Agent({ keepAlive: true }); + * + * function retriableRequest() { + * const req = http + * .get('http://localhost:3000', { agent }, (res) => { + * // ... + * }) + * .on('error', (err) => { + * // Check if retry is needed + * if (req.reusedSocket && err.code === 'ECONNRESET') { + * retriableRequest(); + * } + * }); + * } + * + * retriableRequest(); + * ``` + * @since v13.0.0, v12.16.0 + */ + reusedSocket: boolean; + /** + * Limits maximum response headers count. If set to 0, no limit will be applied. + */ + maxHeadersCount: number; + constructor(url: string | URL | ClientRequestArgs, cb?: (res: IncomingMessage) => void); + /** + * The request method. + * @since v0.1.97 + */ + method: string; + /** + * The request path. + * @since v0.4.0 + */ + path: string; + /** + * Marks the request as aborting. Calling this will cause remaining data + * in the response to be dropped and the socket to be destroyed. + * @since v0.3.8 + * @deprecated Since v14.1.0,v13.14.0 - Use `destroy` instead. + */ + abort(): void; + onSocket(socket: Socket): void; + /** + * Once a socket is assigned to this request and is connected `socket.setTimeout()` will be called. + * @since v0.5.9 + * @param timeout Milliseconds before a request times out. + * @param callback Optional function to be called when a timeout occurs. Same as binding to the `'timeout'` event. + */ + setTimeout(timeout: number, callback?: () => void): this; + /** + * Once a socket is assigned to this request and is connected `socket.setNoDelay()` will be called. + * @since v0.5.9 + */ + setNoDelay(noDelay?: boolean): void; + /** + * Once a socket is assigned to this request and is connected `socket.setKeepAlive()` will be called. + * @since v0.5.9 + */ + setSocketKeepAlive(enable?: boolean, initialDelay?: number): void; + /** + * Returns an array containing the unique names of the current outgoing raw + * headers. Header names are returned with their exact casing being set. + * + * ```js + * request.setHeader('Foo', 'bar'); + * request.setHeader('Set-Cookie', ['foo=bar', 'bar=baz']); + * + * const headerNames = request.getRawHeaderNames(); + * // headerNames === ['Foo', 'Set-Cookie'] + * ``` + * @since v15.13.0, v14.17.0 + */ + getRawHeaderNames(): string[]; + /** + * @deprecated + */ + addListener(event: 'abort', listener: () => void): this; + addListener( + event: 'connect', + listener: (response: IncomingMessage, socket: Socket, head: Buffer) => void, + ): this; + addListener(event: 'continue', listener: () => void): this; + addListener(event: 'information', listener: (info: InformationEvent) => void): this; + addListener(event: 'response', listener: (response: IncomingMessage) => void): this; + addListener(event: 'socket', listener: (socket: Socket) => void): this; + addListener(event: 'timeout', listener: () => void): this; + addListener( + event: 'upgrade', + listener: (response: IncomingMessage, socket: Socket, head: Buffer) => void, + ): this; + addListener(event: 'close', listener: () => void): this; + addListener(event: 'drain', listener: () => void): this; + addListener(event: 'error', listener: (err: Error) => void): this; + addListener(event: 'finish', listener: () => void): this; + addListener(event: 'pipe', listener: (src: stream.Readable) => void): this; + addListener(event: 'unpipe', listener: (src: stream.Readable) => void): this; + addListener(event: string | symbol, listener: (...args: any[]) => void): this; + /** + * @deprecated + */ + on(event: 'abort', listener: () => void): this; + on(event: 'connect', listener: (response: IncomingMessage, socket: Socket, head: Buffer) => void): this; + on(event: 'continue', listener: () => void): this; + on(event: 'information', listener: (info: InformationEvent) => void): this; + on(event: 'response', listener: (response: IncomingMessage) => void): this; + on(event: 'socket', listener: (socket: Socket) => void): this; + on(event: 'timeout', listener: () => void): this; + on(event: 'upgrade', listener: (response: IncomingMessage, socket: Socket, head: Buffer) => void): this; + on(event: 'close', listener: () => void): this; + on(event: 'drain', listener: () => void): this; + on(event: 'error', listener: (err: Error) => void): this; + on(event: 'finish', listener: () => void): this; + on(event: 'pipe', listener: (src: stream.Readable) => void): this; + on(event: 'unpipe', listener: (src: stream.Readable) => void): this; + on(event: string | symbol, listener: (...args: any[]) => void): this; + /** + * @deprecated + */ + once(event: 'abort', listener: () => void): this; + once(event: 'connect', listener: (response: IncomingMessage, socket: Socket, head: Buffer) => void): this; + once(event: 'continue', listener: () => void): this; + once(event: 'information', listener: (info: InformationEvent) => void): this; + once(event: 'response', listener: (response: IncomingMessage) => void): this; + once(event: 'socket', listener: (socket: Socket) => void): this; + once(event: 'timeout', listener: () => void): this; + once(event: 'upgrade', listener: (response: IncomingMessage, socket: Socket, head: Buffer) => void): this; + once(event: 'close', listener: () => void): this; + once(event: 'drain', listener: () => void): this; + once(event: 'error', listener: (err: Error) => void): this; + once(event: 'finish', listener: () => void): this; + once(event: 'pipe', listener: (src: stream.Readable) => void): this; + once(event: 'unpipe', listener: (src: stream.Readable) => void): this; + once(event: string | symbol, listener: (...args: any[]) => void): this; + /** + * @deprecated + */ + prependListener(event: 'abort', listener: () => void): this; + prependListener( + event: 'connect', + listener: (response: IncomingMessage, socket: Socket, head: Buffer) => void, + ): this; + prependListener(event: 'continue', listener: () => void): this; + prependListener(event: 'information', listener: (info: InformationEvent) => void): this; + prependListener(event: 'response', listener: (response: IncomingMessage) => void): this; + prependListener(event: 'socket', listener: (socket: Socket) => void): this; + prependListener(event: 'timeout', listener: () => void): this; + prependListener( + event: 'upgrade', + listener: (response: IncomingMessage, socket: Socket, head: Buffer) => void, + ): this; + prependListener(event: 'close', listener: () => void): this; + prependListener(event: 'drain', listener: () => void): this; + prependListener(event: 'error', listener: (err: Error) => void): this; + prependListener(event: 'finish', listener: () => void): this; + prependListener(event: 'pipe', listener: (src: stream.Readable) => void): this; + prependListener(event: 'unpipe', listener: (src: stream.Readable) => void): this; + prependListener(event: string | symbol, listener: (...args: any[]) => void): this; + /** + * @deprecated + */ + prependOnceListener(event: 'abort', listener: () => void): this; + prependOnceListener( + event: 'connect', + listener: (response: IncomingMessage, socket: Socket, head: Buffer) => void, + ): this; + prependOnceListener(event: 'continue', listener: () => void): this; + prependOnceListener(event: 'information', listener: (info: InformationEvent) => void): this; + prependOnceListener(event: 'response', listener: (response: IncomingMessage) => void): this; + prependOnceListener(event: 'socket', listener: (socket: Socket) => void): this; + prependOnceListener(event: 'timeout', listener: () => void): this; + prependOnceListener( + event: 'upgrade', + listener: (response: IncomingMessage, socket: Socket, head: Buffer) => void, + ): this; + prependOnceListener(event: 'close', listener: () => void): this; + prependOnceListener(event: 'drain', listener: () => void): this; + prependOnceListener(event: 'error', listener: (err: Error) => void): this; + prependOnceListener(event: 'finish', listener: () => void): this; + prependOnceListener(event: 'pipe', listener: (src: stream.Readable) => void): this; + prependOnceListener(event: 'unpipe', listener: (src: stream.Readable) => void): this; + prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this; + } + /** + * An `IncomingMessage` object is created by {@link Server} or {@link ClientRequest} and passed as the first argument to the `'request'` and `'response'` event respectively. It may be used to + * access response + * status, headers and data. + * + * Different from its `socket` value which is a subclass of `stream.Duplex`, the`IncomingMessage` itself extends `stream.Readable` and is created separately to + * parse and emit the incoming HTTP headers and payload, as the underlying socket + * may be reused multiple times in case of keep-alive. + * @since v0.1.17 + */ + class IncomingMessage extends stream.Readable { + constructor(socket: Socket); + /** + * The `message.aborted` property will be `true` if the request has + * been aborted. + * @since v10.1.0 + * @deprecated Since v17.0.0,v16.12.0 - Check `message.destroyed` from stream.Readable. + */ + aborted: boolean; + /** + * In case of server request, the HTTP version sent by the client. In the case of + * client response, the HTTP version of the connected-to server. + * Probably either `'1.1'` or `'1.0'`. + * + * Also `message.httpVersionMajor` is the first integer and`message.httpVersionMinor` is the second. + * @since v0.1.1 + */ + httpVersion: string; + httpVersionMajor: number; + httpVersionMinor: number; + /** + * The `message.complete` property will be `true` if a complete HTTP message has + * been received and successfully parsed. + * + * This property is particularly useful as a means of determining if a client or + * server fully transmitted a message before a connection was terminated: + * + * ```js + * const req = http.request({ + * host: '127.0.0.1', + * port: 8080, + * method: 'POST' + * }, (res) => { + * res.resume(); + * res.on('end', () => { + * if (!res.complete) + * console.error( + * 'The connection was terminated while the message was still being sent'); + * }); + * }); + * ``` + * @since v0.3.0 + */ + complete: boolean; + /** + * Alias for `message.socket`. + * @since v0.1.90 + * @deprecated Since v16.0.0 - Use `socket`. + */ + connection: Socket; + /** + * The `net.Socket` object associated with the connection. + * + * With HTTPS support, use `request.socket.getPeerCertificate()` to obtain the + * client's authentication details. + * + * This property is guaranteed to be an instance of the `net.Socket` class, + * a subclass of `stream.Duplex`, unless the user specified a socket + * type other than `net.Socket` or internally nulled. + * @since v0.3.0 + */ + socket: Socket; + /** + * The request/response headers object. + * + * Key-value pairs of header names and values. Header names are lower-cased. + * + * ```js + * // Prints something like: + * // + * // { 'user-agent': 'curl/7.22.0', + * // host: '127.0.0.1:8000', + * // accept: '*' } + * console.log(request.getHeaders()); + * ``` + * + * Duplicates in raw headers are handled in the following ways, depending on the + * header name: + * + * * Duplicates of `age`, `authorization`, `content-length`, `content-type`,`etag`, `expires`, `from`, `host`, `if-modified-since`, `if-unmodified-since`,`last-modified`, `location`, + * `max-forwards`, `proxy-authorization`, `referer`,`retry-after`, `server`, or `user-agent` are discarded. + * * `set-cookie` is always an array. Duplicates are added to the array. + * * For duplicate `cookie` headers, the values are joined together with '; '. + * * For all other headers, the values are joined together with ', '. + * @since v0.1.5 + */ + headers: IncomingHttpHeaders; + /** + * The raw request/response headers list exactly as they were received. + * + * The keys and values are in the same list. It is _not_ a + * list of tuples. So, the even-numbered offsets are key values, and the + * odd-numbered offsets are the associated values. + * + * Header names are not lowercased, and duplicates are not merged. + * + * ```js + * // Prints something like: + * // + * // [ 'user-agent', + * // 'this is invalid because there can be only one', + * // 'User-Agent', + * // 'curl/7.22.0', + * // 'Host', + * // '127.0.0.1:8000', + * // 'ACCEPT', + * // '*' ] + * console.log(request.rawHeaders); + * ``` + * @since v0.11.6 + */ + rawHeaders: string[]; + /** + * The request/response trailers object. Only populated at the `'end'` event. + * @since v0.3.0 + */ + trailers: NodeJS.Dict; + /** + * The raw request/response trailer keys and values exactly as they were + * received. Only populated at the `'end'` event. + * @since v0.11.6 + */ + rawTrailers: string[]; + /** + * Calls `message.socket.setTimeout(msecs, callback)`. + * @since v0.5.9 + */ + setTimeout(msecs: number, callback?: () => void): this; + /** + * **Only valid for request obtained from {@link Server}.** + * + * The request method as a string. Read only. Examples: `'GET'`, `'DELETE'`. + * @since v0.1.1 + */ + method?: string | undefined; + /** + * **Only valid for request obtained from {@link Server}.** + * + * Request URL string. This contains only the URL that is present in the actual + * HTTP request. Take the following request: + * + * ```http + * GET /status?name=ryan HTTP/1.1 + * Accept: text/plain + * ``` + * + * To parse the URL into its parts: + * + * ```js + * new URL(request.url, `http://${request.getHeaders().host}`); + * ``` + * + * When `request.url` is `'/status?name=ryan'` and`request.getHeaders().host` is `'localhost:3000'`: + * + * ```console + * $ node + * > new URL(request.url, `http://${request.getHeaders().host}`) + * URL { + * href: 'http://localhost:3000/status?name=ryan', + * origin: 'http://localhost:3000', + * protocol: 'http:', + * username: '', + * password: '', + * host: 'localhost:3000', + * hostname: 'localhost', + * port: '3000', + * pathname: '/status', + * search: '?name=ryan', + * searchParams: URLSearchParams { 'name' => 'ryan' }, + * hash: '' + * } + * ``` + * @since v0.1.90 + */ + url?: string | undefined; + /** + * **Only valid for response obtained from {@link ClientRequest}.** + * + * The 3-digit HTTP response status code. E.G. `404`. + * @since v0.1.1 + */ + statusCode?: number | undefined; + /** + * **Only valid for response obtained from {@link ClientRequest}.** + * + * The HTTP response status message (reason phrase). E.G. `OK` or `Internal Server Error`. + * @since v0.11.10 + */ + statusMessage?: string | undefined; + /** + * Calls `destroy()` on the socket that received the `IncomingMessage`. If `error`is provided, an `'error'` event is emitted on the socket and `error` is passed + * as an argument to any listeners on the event. + * @since v0.3.0 + */ + destroy(error?: Error): this; + } + interface AgentOptions extends Partial { + /** + * Keep sockets around in a pool to be used by other requests in the future. Default = false + */ + keepAlive?: boolean | undefined; + /** + * When using HTTP KeepAlive, how often to send TCP KeepAlive packets over sockets being kept alive. Default = 1000. + * Only relevant if keepAlive is set to true. + */ + keepAliveMsecs?: number | undefined; + /** + * Maximum number of sockets to allow per host. Default for Node 0.10 is 5, default for Node 0.12 is Infinity + */ + maxSockets?: number | undefined; + /** + * Maximum number of sockets allowed for all hosts in total. Each request will use a new socket until the maximum is reached. Default: Infinity. + */ + maxTotalSockets?: number | undefined; + /** + * Maximum number of sockets to leave open in a free state. Only relevant if keepAlive is set to true. Default = 256. + */ + maxFreeSockets?: number | undefined; + /** + * Socket timeout in milliseconds. This will set the timeout after the socket is connected. + */ + timeout?: number | undefined; + /** + * Scheduling strategy to apply when picking the next free socket to use. + * @default `lifo` + */ + scheduling?: 'fifo' | 'lifo' | undefined; + } + /** + * An `Agent` is responsible for managing connection persistence + * and reuse for HTTP clients. It maintains a queue of pending requests + * for a given host and port, reusing a single socket connection for each + * until the queue is empty, at which time the socket is either destroyed + * or put into a pool where it is kept to be used again for requests to the + * same host and port. Whether it is destroyed or pooled depends on the`keepAlive` `option`. + * + * Pooled connections have TCP Keep-Alive enabled for them, but servers may + * still close idle connections, in which case they will be removed from the + * pool and a new connection will be made when a new HTTP request is made for + * that host and port. Servers may also refuse to allow multiple requests + * over the same connection, in which case the connection will have to be + * remade for every request and cannot be pooled. The `Agent` will still make + * the requests to that server, but each one will occur over a new connection. + * + * When a connection is closed by the client or the server, it is removed + * from the pool. Any unused sockets in the pool will be unrefed so as not + * to keep the Node.js process running when there are no outstanding requests. + * (see `socket.unref()`). + * + * It is good practice, to `destroy()` an `Agent` instance when it is no + * longer in use, because unused sockets consume OS resources. + * + * Sockets are removed from an agent when the socket emits either + * a `'close'` event or an `'agentRemove'` event. When intending to keep one + * HTTP request open for a long time without keeping it in the agent, something + * like the following may be done: + * + * ```js + * http.get(options, (res) => { + * // Do stuff + * }).on('socket', (socket) => { + * socket.emit('agentRemove'); + * }); + * ``` + * + * An agent may also be used for an individual request. By providing`{agent: false}` as an option to the `http.get()` or `http.request()`functions, a one-time use `Agent` with default options + * will be used + * for the client connection. + * + * `agent:false`: + * + * ```js + * http.get({ + * hostname: 'localhost', + * port: 80, + * path: '/', + * agent: false // Create a new agent just for this one request + * }, (res) => { + * // Do stuff with response + * }); + * ``` + * @since v0.3.4 + */ + class Agent { + /** + * By default set to 256\. For agents with `keepAlive` enabled, this + * sets the maximum number of sockets that will be left open in the free + * state. + * @since v0.11.7 + */ + maxFreeSockets: number; + /** + * By default set to `Infinity`. Determines how many concurrent sockets the agent + * can have open per origin. Origin is the returned value of `agent.getName()`. + * @since v0.3.6 + */ + maxSockets: number; + /** + * By default set to `Infinity`. Determines how many concurrent sockets the agent + * can have open. Unlike `maxSockets`, this parameter applies across all origins. + * @since v14.5.0, v12.19.0 + */ + maxTotalSockets: number; + /** + * An object which contains arrays of sockets currently awaiting use by + * the agent when `keepAlive` is enabled. Do not modify. + * + * Sockets in the `freeSockets` list will be automatically destroyed and + * removed from the array on `'timeout'`. + * @since v0.11.4 + */ + readonly freeSockets: NodeJS.ReadOnlyDict; + /** + * An object which contains arrays of sockets currently in use by the + * agent. Do not modify. + * @since v0.3.6 + */ + readonly sockets: NodeJS.ReadOnlyDict; + /** + * An object which contains queues of requests that have not yet been assigned to + * sockets. Do not modify. + * @since v0.5.9 + */ + readonly requests: NodeJS.ReadOnlyDict; + constructor(opts?: AgentOptions); + /** + * Destroy any sockets that are currently in use by the agent. + * + * It is usually not necessary to do this. However, if using an + * agent with `keepAlive` enabled, then it is best to explicitly shut down + * the agent when it is no longer needed. Otherwise, + * sockets might stay open for quite a long time before the server + * terminates them. + * @since v0.11.4 + */ + destroy(): void; + } + const METHODS: string[]; + const STATUS_CODES: { + [errorCode: number]: string | undefined; + [errorCode: string]: string | undefined; + }; + /** + * Returns a new instance of {@link Server}. + * + * The `requestListener` is a function which is automatically + * added to the `'request'` event. + * @since v0.1.13 + */ + function createServer< + Request extends typeof IncomingMessage = typeof IncomingMessage, + Response extends typeof ServerResponse = typeof ServerResponse, + >(requestListener?: RequestListener): Server; + function createServer< + Request extends typeof IncomingMessage = typeof IncomingMessage, + Response extends typeof ServerResponse = typeof ServerResponse, + >( + options: ServerOptions, + requestListener?: RequestListener, + ): Server; + // although RequestOptions are passed as ClientRequestArgs to ClientRequest directly, + // create interface RequestOptions would make the naming more clear to developers + interface RequestOptions extends ClientRequestArgs {} + /** + * `options` in `socket.connect()` are also supported. + * + * Node.js maintains several connections per server to make HTTP requests. + * This function allows one to transparently issue requests. + * + * `url` can be a string or a `URL` object. If `url` is a + * string, it is automatically parsed with `new URL()`. If it is a `URL` object, it will be automatically converted to an ordinary `options` object. + * + * If both `url` and `options` are specified, the objects are merged, with the`options` properties taking precedence. + * + * The optional `callback` parameter will be added as a one-time listener for + * the `'response'` event. + * + * `http.request()` returns an instance of the {@link ClientRequest} class. The `ClientRequest` instance is a writable stream. If one needs to + * upload a file with a POST request, then write to the `ClientRequest` object. + * + * ```js + * const http = require('http'); + * + * const postData = JSON.stringify({ + * 'msg': 'Hello World!' + * }); + * + * const options = { + * hostname: 'www.google.com', + * port: 80, + * path: '/upload', + * method: 'POST', + * headers: { + * 'Content-Type': 'application/json', + * 'Content-Length': Buffer.byteLength(postData) + * } + * }; + * + * const req = http.request(options, (res) => { + * console.log(`STATUS: ${res.statusCode}`); + * console.log(`HEADERS: ${JSON.stringify(res.headers)}`); + * res.setEncoding('utf8'); + * res.on('data', (chunk) => { + * console.log(`BODY: ${chunk}`); + * }); + * res.on('end', () => { + * console.log('No more data in response.'); + * }); + * }); + * + * req.on('error', (e) => { + * console.error(`problem with request: ${e.message}`); + * }); + * + * // Write data to request body + * req.write(postData); + * req.end(); + * ``` + * + * In the example `req.end()` was called. With `http.request()` one + * must always call `req.end()` to signify the end of the request - + * even if there is no data being written to the request body. + * + * If any error is encountered during the request (be that with DNS resolution, + * TCP level errors, or actual HTTP parse errors) an `'error'` event is emitted + * on the returned request object. As with all `'error'` events, if no listeners + * are registered the error will be thrown. + * + * There are a few special headers that should be noted. + * + * * Sending a 'Connection: keep-alive' will notify Node.js that the connection to + * the server should be persisted until the next request. + * * Sending a 'Content-Length' header will disable the default chunked encoding. + * * Sending an 'Expect' header will immediately send the request headers. + * Usually, when sending 'Expect: 100-continue', both a timeout and a listener + * for the `'continue'` event should be set. See RFC 2616 Section 8.2.3 for more + * information. + * * Sending an Authorization header will override using the `auth` option + * to compute basic authentication. + * + * Example using a `URL` as `options`: + * + * ```js + * const options = new URL('http://abc:xyz@example.com'); + * + * const req = http.request(options, (res) => { + * // ... + * }); + * ``` + * + * In a successful request, the following events will be emitted in the following + * order: + * + * * `'socket'` + * * `'response'` + * * `'data'` any number of times, on the `res` object + * (`'data'` will not be emitted at all if the response body is empty, for + * instance, in most redirects) + * * `'end'` on the `res` object + * * `'close'` + * + * In the case of a connection error, the following events will be emitted: + * + * * `'socket'` + * * `'error'` + * * `'close'` + * + * In the case of a premature connection close before the response is received, + * the following events will be emitted in the following order: + * + * * `'socket'` + * * `'error'` with an error with message `'Error: socket hang up'` and code`'ECONNRESET'` + * * `'close'` + * + * In the case of a premature connection close after the response is received, + * the following events will be emitted in the following order: + * + * * `'socket'` + * * `'response'` + * * `'data'` any number of times, on the `res` object + * * (connection closed here) + * * `'aborted'` on the `res` object + * * `'error'` on the `res` object with an error with message`'Error: aborted'` and code `'ECONNRESET'`. + * * `'close'` + * * `'close'` on the `res` object + * + * If `req.destroy()` is called before a socket is assigned, the following + * events will be emitted in the following order: + * + * * (`req.destroy()` called here) + * * `'error'` with an error with message `'Error: socket hang up'` and code`'ECONNRESET'` + * * `'close'` + * + * If `req.destroy()` is called before the connection succeeds, the following + * events will be emitted in the following order: + * + * * `'socket'` + * * (`req.destroy()` called here) + * * `'error'` with an error with message `'Error: socket hang up'` and code`'ECONNRESET'` + * * `'close'` + * + * If `req.destroy()` is called after the response is received, the following + * events will be emitted in the following order: + * + * * `'socket'` + * * `'response'` + * * `'data'` any number of times, on the `res` object + * * (`req.destroy()` called here) + * * `'aborted'` on the `res` object + * * `'error'` on the `res` object with an error with message`'Error: aborted'` and code `'ECONNRESET'`. + * * `'close'` + * * `'close'` on the `res` object + * + * If `req.abort()` is called before a socket is assigned, the following + * events will be emitted in the following order: + * + * * (`req.abort()` called here) + * * `'abort'` + * * `'close'` + * + * If `req.abort()` is called before the connection succeeds, the following + * events will be emitted in the following order: + * + * * `'socket'` + * * (`req.abort()` called here) + * * `'abort'` + * * `'error'` with an error with message `'Error: socket hang up'` and code`'ECONNRESET'` + * * `'close'` + * + * If `req.abort()` is called after the response is received, the following + * events will be emitted in the following order: + * + * * `'socket'` + * * `'response'` + * * `'data'` any number of times, on the `res` object + * * (`req.abort()` called here) + * * `'abort'` + * * `'aborted'` on the `res` object + * * `'error'` on the `res` object with an error with message`'Error: aborted'` and code `'ECONNRESET'`. + * * `'close'` + * * `'close'` on the `res` object + * + * Setting the `timeout` option or using the `setTimeout()` function will + * not abort the request or do anything besides add a `'timeout'` event. + * + * Passing an `AbortSignal` and then calling `abort` on the corresponding`AbortController` will behave the same way as calling `.destroy()` on the + * request itself. + * @since v0.3.6 + */ + function request(options: RequestOptions | string | URL, callback?: (res: IncomingMessage) => void): ClientRequest; + function request( + url: string | URL, + options: RequestOptions, + callback?: (res: IncomingMessage) => void, + ): ClientRequest; + /** + * Since most requests are GET requests without bodies, Node.js provides this + * convenience method. The only difference between this method and {@link request} is that it sets the method to GET and calls `req.end()`automatically. The callback must take care to consume the + * response + * data for reasons stated in {@link ClientRequest} section. + * + * The `callback` is invoked with a single argument that is an instance of {@link IncomingMessage}. + * + * JSON fetching example: + * + * ```js + * http.get('http://localhost:8000/', (res) => { + * const { statusCode } = res; + * const contentType = res.headers['content-type']; + * + * let error; + * // Any 2xx status code signals a successful response but + * // here we're only checking for 200. + * if (statusCode !== 200) { + * error = new Error('Request Failed.\n' + + * `Status Code: ${statusCode}`); + * } else if (!/^application\/json/.test(contentType)) { + * error = new Error('Invalid content-type.\n' + + * `Expected application/json but received ${contentType}`); + * } + * if (error) { + * console.error(error.message); + * // Consume response data to free up memory + * res.resume(); + * return; + * } + * + * res.setEncoding('utf8'); + * let rawData = ''; + * res.on('data', (chunk) => { rawData += chunk; }); + * res.on('end', () => { + * try { + * const parsedData = JSON.parse(rawData); + * console.log(parsedData); + * } catch (e) { + * console.error(e.message); + * } + * }); + * }).on('error', (e) => { + * console.error(`Got error: ${e.message}`); + * }); + * + * // Create a local server to receive data from + * const server = http.createServer((req, res) => { + * res.writeHead(200, { 'Content-Type': 'application/json' }); + * res.end(JSON.stringify({ + * data: 'Hello World!' + * })); + * }); + * + * server.listen(8000); + * ``` + * @since v0.3.6 + * @param options Accepts the same `options` as {@link request}, with the `method` always set to `GET`. Properties that are inherited from the prototype are ignored. + */ + function get(options: RequestOptions | string | URL, callback?: (res: IncomingMessage) => void): ClientRequest; + function get(url: string | URL, options: RequestOptions, callback?: (res: IncomingMessage) => void): ClientRequest; + let globalAgent: Agent; + /** + * Read-only property specifying the maximum allowed size of HTTP headers in bytes. + * Defaults to 16KB. Configurable using the `--max-http-header-size` CLI option. + */ + const maxHeaderSize: number; +} +declare module 'node:http' { + export * from 'http'; +} diff --git a/node_modules/@types/node/http2.d.ts b/node_modules/@types/node/http2.d.ts new file mode 100644 index 000000000..0f628b9d7 --- /dev/null +++ b/node_modules/@types/node/http2.d.ts @@ -0,0 +1,2106 @@ +/** + * The `http2` module provides an implementation of the [HTTP/2](https://tools.ietf.org/html/rfc7540) protocol. It + * can be accessed using: + * + * ```js + * const http2 = require('http2'); + * ``` + * @since v8.4.0 + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/http2.js) + */ +declare module 'http2' { + import EventEmitter = require('node:events'); + import * as fs from 'node:fs'; + import * as net from 'node:net'; + import * as stream from 'node:stream'; + import * as tls from 'node:tls'; + import * as url from 'node:url'; + import { IncomingHttpHeaders as Http1IncomingHttpHeaders, OutgoingHttpHeaders, IncomingMessage, ServerResponse } from 'node:http'; + export { OutgoingHttpHeaders } from 'node:http'; + export interface IncomingHttpStatusHeader { + ':status'?: number | undefined; + } + export interface IncomingHttpHeaders extends Http1IncomingHttpHeaders { + ':path'?: string | undefined; + ':method'?: string | undefined; + ':authority'?: string | undefined; + ':scheme'?: string | undefined; + } + // Http2Stream + export interface StreamPriorityOptions { + exclusive?: boolean | undefined; + parent?: number | undefined; + weight?: number | undefined; + silent?: boolean | undefined; + } + export interface StreamState { + localWindowSize?: number | undefined; + state?: number | undefined; + localClose?: number | undefined; + remoteClose?: number | undefined; + sumDependencyWeight?: number | undefined; + weight?: number | undefined; + } + export interface ServerStreamResponseOptions { + endStream?: boolean | undefined; + waitForTrailers?: boolean | undefined; + } + export interface StatOptions { + offset: number; + length: number; + } + export interface ServerStreamFileResponseOptions { + statCheck?(stats: fs.Stats, headers: OutgoingHttpHeaders, statOptions: StatOptions): void | boolean; + waitForTrailers?: boolean | undefined; + offset?: number | undefined; + length?: number | undefined; + } + export interface ServerStreamFileResponseOptionsWithError extends ServerStreamFileResponseOptions { + onError?(err: NodeJS.ErrnoException): void; + } + export interface Http2Stream extends stream.Duplex { + /** + * Set to `true` if the `Http2Stream` instance was aborted abnormally. When set, + * the `'aborted'` event will have been emitted. + * @since v8.4.0 + */ + readonly aborted: boolean; + /** + * This property shows the number of characters currently buffered to be written. + * See `net.Socket.bufferSize` for details. + * @since v11.2.0, v10.16.0 + */ + readonly bufferSize: number; + /** + * Set to `true` if the `Http2Stream` instance has been closed. + * @since v9.4.0 + */ + readonly closed: boolean; + /** + * Set to `true` if the `Http2Stream` instance has been destroyed and is no longer + * usable. + * @since v8.4.0 + */ + readonly destroyed: boolean; + /** + * Set to `true` if the `END_STREAM` flag was set in the request or response + * HEADERS frame received, indicating that no additional data should be received + * and the readable side of the `Http2Stream` will be closed. + * @since v10.11.0 + */ + readonly endAfterHeaders: boolean; + /** + * The numeric stream identifier of this `Http2Stream` instance. Set to `undefined`if the stream identifier has not yet been assigned. + * @since v8.4.0 + */ + readonly id?: number | undefined; + /** + * Set to `true` if the `Http2Stream` instance has not yet been assigned a + * numeric stream identifier. + * @since v9.4.0 + */ + readonly pending: boolean; + /** + * Set to the `RST_STREAM` `error code` reported when the `Http2Stream` is + * destroyed after either receiving an `RST_STREAM` frame from the connected peer, + * calling `http2stream.close()`, or `http2stream.destroy()`. Will be`undefined` if the `Http2Stream` has not been closed. + * @since v8.4.0 + */ + readonly rstCode: number; + /** + * An object containing the outbound headers sent for this `Http2Stream`. + * @since v9.5.0 + */ + readonly sentHeaders: OutgoingHttpHeaders; + /** + * An array of objects containing the outbound informational (additional) headers + * sent for this `Http2Stream`. + * @since v9.5.0 + */ + readonly sentInfoHeaders?: OutgoingHttpHeaders[] | undefined; + /** + * An object containing the outbound trailers sent for this `HttpStream`. + * @since v9.5.0 + */ + readonly sentTrailers?: OutgoingHttpHeaders | undefined; + /** + * A reference to the `Http2Session` instance that owns this `Http2Stream`. The + * value will be `undefined` after the `Http2Stream` instance is destroyed. + * @since v8.4.0 + */ + readonly session: Http2Session; + /** + * Provides miscellaneous information about the current state of the`Http2Stream`. + * + * A current state of this `Http2Stream`. + * @since v8.4.0 + */ + readonly state: StreamState; + /** + * Closes the `Http2Stream` instance by sending an `RST_STREAM` frame to the + * connected HTTP/2 peer. + * @since v8.4.0 + * @param [code=http2.constants.NGHTTP2_NO_ERROR] Unsigned 32-bit integer identifying the error code. + * @param callback An optional function registered to listen for the `'close'` event. + */ + close(code?: number, callback?: () => void): void; + /** + * Updates the priority for this `Http2Stream` instance. + * @since v8.4.0 + */ + priority(options: StreamPriorityOptions): void; + /** + * ```js + * const http2 = require('http2'); + * const client = http2.connect('http://example.org:8000'); + * const { NGHTTP2_CANCEL } = http2.constants; + * const req = client.request({ ':path': '/' }); + * + * // Cancel the stream if there's no activity after 5 seconds + * req.setTimeout(5000, () => req.close(NGHTTP2_CANCEL)); + * ``` + * @since v8.4.0 + */ + setTimeout(msecs: number, callback?: () => void): void; + /** + * Sends a trailing `HEADERS` frame to the connected HTTP/2 peer. This method + * will cause the `Http2Stream` to be immediately closed and must only be + * called after the `'wantTrailers'` event has been emitted. When sending a + * request or sending a response, the `options.waitForTrailers` option must be set + * in order to keep the `Http2Stream` open after the final `DATA` frame so that + * trailers can be sent. + * + * ```js + * const http2 = require('http2'); + * const server = http2.createServer(); + * server.on('stream', (stream) => { + * stream.respond(undefined, { waitForTrailers: true }); + * stream.on('wantTrailers', () => { + * stream.sendTrailers({ xyz: 'abc' }); + * }); + * stream.end('Hello World'); + * }); + * ``` + * + * The HTTP/1 specification forbids trailers from containing HTTP/2 pseudo-header + * fields (e.g. `':method'`, `':path'`, etc). + * @since v10.0.0 + */ + sendTrailers(headers: OutgoingHttpHeaders): void; + addListener(event: 'aborted', listener: () => void): this; + addListener(event: 'close', listener: () => void): this; + addListener(event: 'data', listener: (chunk: Buffer | string) => void): this; + addListener(event: 'drain', listener: () => void): this; + addListener(event: 'end', listener: () => void): this; + addListener(event: 'error', listener: (err: Error) => void): this; + addListener(event: 'finish', listener: () => void): this; + addListener(event: 'frameError', listener: (frameType: number, errorCode: number) => void): this; + addListener(event: 'pipe', listener: (src: stream.Readable) => void): this; + addListener(event: 'unpipe', listener: (src: stream.Readable) => void): this; + addListener(event: 'streamClosed', listener: (code: number) => void): this; + addListener(event: 'timeout', listener: () => void): this; + addListener(event: 'trailers', listener: (trailers: IncomingHttpHeaders, flags: number) => void): this; + addListener(event: 'wantTrailers', listener: () => void): this; + addListener(event: string | symbol, listener: (...args: any[]) => void): this; + emit(event: 'aborted'): boolean; + emit(event: 'close'): boolean; + emit(event: 'data', chunk: Buffer | string): boolean; + emit(event: 'drain'): boolean; + emit(event: 'end'): boolean; + emit(event: 'error', err: Error): boolean; + emit(event: 'finish'): boolean; + emit(event: 'frameError', frameType: number, errorCode: number): boolean; + emit(event: 'pipe', src: stream.Readable): boolean; + emit(event: 'unpipe', src: stream.Readable): boolean; + emit(event: 'streamClosed', code: number): boolean; + emit(event: 'timeout'): boolean; + emit(event: 'trailers', trailers: IncomingHttpHeaders, flags: number): boolean; + emit(event: 'wantTrailers'): boolean; + emit(event: string | symbol, ...args: any[]): boolean; + on(event: 'aborted', listener: () => void): this; + on(event: 'close', listener: () => void): this; + on(event: 'data', listener: (chunk: Buffer | string) => void): this; + on(event: 'drain', listener: () => void): this; + on(event: 'end', listener: () => void): this; + on(event: 'error', listener: (err: Error) => void): this; + on(event: 'finish', listener: () => void): this; + on(event: 'frameError', listener: (frameType: number, errorCode: number) => void): this; + on(event: 'pipe', listener: (src: stream.Readable) => void): this; + on(event: 'unpipe', listener: (src: stream.Readable) => void): this; + on(event: 'streamClosed', listener: (code: number) => void): this; + on(event: 'timeout', listener: () => void): this; + on(event: 'trailers', listener: (trailers: IncomingHttpHeaders, flags: number) => void): this; + on(event: 'wantTrailers', listener: () => void): this; + on(event: string | symbol, listener: (...args: any[]) => void): this; + once(event: 'aborted', listener: () => void): this; + once(event: 'close', listener: () => void): this; + once(event: 'data', listener: (chunk: Buffer | string) => void): this; + once(event: 'drain', listener: () => void): this; + once(event: 'end', listener: () => void): this; + once(event: 'error', listener: (err: Error) => void): this; + once(event: 'finish', listener: () => void): this; + once(event: 'frameError', listener: (frameType: number, errorCode: number) => void): this; + once(event: 'pipe', listener: (src: stream.Readable) => void): this; + once(event: 'unpipe', listener: (src: stream.Readable) => void): this; + once(event: 'streamClosed', listener: (code: number) => void): this; + once(event: 'timeout', listener: () => void): this; + once(event: 'trailers', listener: (trailers: IncomingHttpHeaders, flags: number) => void): this; + once(event: 'wantTrailers', listener: () => void): this; + once(event: string | symbol, listener: (...args: any[]) => void): this; + prependListener(event: 'aborted', listener: () => void): this; + prependListener(event: 'close', listener: () => void): this; + prependListener(event: 'data', listener: (chunk: Buffer | string) => void): this; + prependListener(event: 'drain', listener: () => void): this; + prependListener(event: 'end', listener: () => void): this; + prependListener(event: 'error', listener: (err: Error) => void): this; + prependListener(event: 'finish', listener: () => void): this; + prependListener(event: 'frameError', listener: (frameType: number, errorCode: number) => void): this; + prependListener(event: 'pipe', listener: (src: stream.Readable) => void): this; + prependListener(event: 'unpipe', listener: (src: stream.Readable) => void): this; + prependListener(event: 'streamClosed', listener: (code: number) => void): this; + prependListener(event: 'timeout', listener: () => void): this; + prependListener(event: 'trailers', listener: (trailers: IncomingHttpHeaders, flags: number) => void): this; + prependListener(event: 'wantTrailers', listener: () => void): this; + prependListener(event: string | symbol, listener: (...args: any[]) => void): this; + prependOnceListener(event: 'aborted', listener: () => void): this; + prependOnceListener(event: 'close', listener: () => void): this; + prependOnceListener(event: 'data', listener: (chunk: Buffer | string) => void): this; + prependOnceListener(event: 'drain', listener: () => void): this; + prependOnceListener(event: 'end', listener: () => void): this; + prependOnceListener(event: 'error', listener: (err: Error) => void): this; + prependOnceListener(event: 'finish', listener: () => void): this; + prependOnceListener(event: 'frameError', listener: (frameType: number, errorCode: number) => void): this; + prependOnceListener(event: 'pipe', listener: (src: stream.Readable) => void): this; + prependOnceListener(event: 'unpipe', listener: (src: stream.Readable) => void): this; + prependOnceListener(event: 'streamClosed', listener: (code: number) => void): this; + prependOnceListener(event: 'timeout', listener: () => void): this; + prependOnceListener(event: 'trailers', listener: (trailers: IncomingHttpHeaders, flags: number) => void): this; + prependOnceListener(event: 'wantTrailers', listener: () => void): this; + prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this; + } + export interface ClientHttp2Stream extends Http2Stream { + addListener(event: 'continue', listener: () => {}): this; + addListener(event: 'headers', listener: (headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number) => void): this; + addListener(event: 'push', listener: (headers: IncomingHttpHeaders, flags: number) => void): this; + addListener(event: 'response', listener: (headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number) => void): this; + addListener(event: string | symbol, listener: (...args: any[]) => void): this; + emit(event: 'continue'): boolean; + emit(event: 'headers', headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number): boolean; + emit(event: 'push', headers: IncomingHttpHeaders, flags: number): boolean; + emit(event: 'response', headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number): boolean; + emit(event: string | symbol, ...args: any[]): boolean; + on(event: 'continue', listener: () => {}): this; + on(event: 'headers', listener: (headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number) => void): this; + on(event: 'push', listener: (headers: IncomingHttpHeaders, flags: number) => void): this; + on(event: 'response', listener: (headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number) => void): this; + on(event: string | symbol, listener: (...args: any[]) => void): this; + once(event: 'continue', listener: () => {}): this; + once(event: 'headers', listener: (headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number) => void): this; + once(event: 'push', listener: (headers: IncomingHttpHeaders, flags: number) => void): this; + once(event: 'response', listener: (headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number) => void): this; + once(event: string | symbol, listener: (...args: any[]) => void): this; + prependListener(event: 'continue', listener: () => {}): this; + prependListener(event: 'headers', listener: (headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number) => void): this; + prependListener(event: 'push', listener: (headers: IncomingHttpHeaders, flags: number) => void): this; + prependListener(event: 'response', listener: (headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number) => void): this; + prependListener(event: string | symbol, listener: (...args: any[]) => void): this; + prependOnceListener(event: 'continue', listener: () => {}): this; + prependOnceListener(event: 'headers', listener: (headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number) => void): this; + prependOnceListener(event: 'push', listener: (headers: IncomingHttpHeaders, flags: number) => void): this; + prependOnceListener(event: 'response', listener: (headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number) => void): this; + prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this; + } + export interface ServerHttp2Stream extends Http2Stream { + /** + * True if headers were sent, false otherwise (read-only). + * @since v8.4.0 + */ + readonly headersSent: boolean; + /** + * Read-only property mapped to the `SETTINGS_ENABLE_PUSH` flag of the remote + * client's most recent `SETTINGS` frame. Will be `true` if the remote peer + * accepts push streams, `false` otherwise. Settings are the same for every`Http2Stream` in the same `Http2Session`. + * @since v8.4.0 + */ + readonly pushAllowed: boolean; + /** + * Sends an additional informational `HEADERS` frame to the connected HTTP/2 peer. + * @since v8.4.0 + */ + additionalHeaders(headers: OutgoingHttpHeaders): void; + /** + * Initiates a push stream. The callback is invoked with the new `Http2Stream`instance created for the push stream passed as the second argument, or an`Error` passed as the first argument. + * + * ```js + * const http2 = require('http2'); + * const server = http2.createServer(); + * server.on('stream', (stream) => { + * stream.respond({ ':status': 200 }); + * stream.pushStream({ ':path': '/' }, (err, pushStream, headers) => { + * if (err) throw err; + * pushStream.respond({ ':status': 200 }); + * pushStream.end('some pushed data'); + * }); + * stream.end('some data'); + * }); + * ``` + * + * Setting the weight of a push stream is not allowed in the `HEADERS` frame. Pass + * a `weight` value to `http2stream.priority` with the `silent` option set to`true` to enable server-side bandwidth balancing between concurrent streams. + * + * Calling `http2stream.pushStream()` from within a pushed stream is not permitted + * and will throw an error. + * @since v8.4.0 + * @param callback Callback that is called once the push stream has been initiated. + */ + pushStream(headers: OutgoingHttpHeaders, callback?: (err: Error | null, pushStream: ServerHttp2Stream, headers: OutgoingHttpHeaders) => void): void; + pushStream(headers: OutgoingHttpHeaders, options?: StreamPriorityOptions, callback?: (err: Error | null, pushStream: ServerHttp2Stream, headers: OutgoingHttpHeaders) => void): void; + /** + * ```js + * const http2 = require('http2'); + * const server = http2.createServer(); + * server.on('stream', (stream) => { + * stream.respond({ ':status': 200 }); + * stream.end('some data'); + * }); + * ``` + * + * When the `options.waitForTrailers` option is set, the `'wantTrailers'` event + * will be emitted immediately after queuing the last chunk of payload data to be + * sent. The `http2stream.sendTrailers()` method can then be used to sent trailing + * header fields to the peer. + * + * When `options.waitForTrailers` is set, the `Http2Stream` will not automatically + * close when the final `DATA` frame is transmitted. User code must call either`http2stream.sendTrailers()` or `http2stream.close()` to close the`Http2Stream`. + * + * ```js + * const http2 = require('http2'); + * const server = http2.createServer(); + * server.on('stream', (stream) => { + * stream.respond({ ':status': 200 }, { waitForTrailers: true }); + * stream.on('wantTrailers', () => { + * stream.sendTrailers({ ABC: 'some value to send' }); + * }); + * stream.end('some data'); + * }); + * ``` + * @since v8.4.0 + */ + respond(headers?: OutgoingHttpHeaders, options?: ServerStreamResponseOptions): void; + /** + * Initiates a response whose data is read from the given file descriptor. No + * validation is performed on the given file descriptor. If an error occurs while + * attempting to read data using the file descriptor, the `Http2Stream` will be + * closed using an `RST_STREAM` frame using the standard `INTERNAL_ERROR` code. + * + * When used, the `Http2Stream` object's `Duplex` interface will be closed + * automatically. + * + * ```js + * const http2 = require('http2'); + * const fs = require('fs'); + * + * const server = http2.createServer(); + * server.on('stream', (stream) => { + * const fd = fs.openSync('/some/file', 'r'); + * + * const stat = fs.fstatSync(fd); + * const headers = { + * 'content-length': stat.size, + * 'last-modified': stat.mtime.toUTCString(), + * 'content-type': 'text/plain; charset=utf-8' + * }; + * stream.respondWithFD(fd, headers); + * stream.on('close', () => fs.closeSync(fd)); + * }); + * ``` + * + * The optional `options.statCheck` function may be specified to give user code + * an opportunity to set additional content headers based on the `fs.Stat` details + * of the given fd. If the `statCheck` function is provided, the`http2stream.respondWithFD()` method will perform an `fs.fstat()` call to + * collect details on the provided file descriptor. + * + * The `offset` and `length` options may be used to limit the response to a + * specific range subset. This can be used, for instance, to support HTTP Range + * requests. + * + * The file descriptor or `FileHandle` is not closed when the stream is closed, + * so it will need to be closed manually once it is no longer needed. + * Using the same file descriptor concurrently for multiple streams + * is not supported and may result in data loss. Re-using a file descriptor + * after a stream has finished is supported. + * + * When the `options.waitForTrailers` option is set, the `'wantTrailers'` event + * will be emitted immediately after queuing the last chunk of payload data to be + * sent. The `http2stream.sendTrailers()` method can then be used to sent trailing + * header fields to the peer. + * + * When `options.waitForTrailers` is set, the `Http2Stream` will not automatically + * close when the final `DATA` frame is transmitted. User code _must_ call either`http2stream.sendTrailers()` or `http2stream.close()` to close the`Http2Stream`. + * + * ```js + * const http2 = require('http2'); + * const fs = require('fs'); + * + * const server = http2.createServer(); + * server.on('stream', (stream) => { + * const fd = fs.openSync('/some/file', 'r'); + * + * const stat = fs.fstatSync(fd); + * const headers = { + * 'content-length': stat.size, + * 'last-modified': stat.mtime.toUTCString(), + * 'content-type': 'text/plain; charset=utf-8' + * }; + * stream.respondWithFD(fd, headers, { waitForTrailers: true }); + * stream.on('wantTrailers', () => { + * stream.sendTrailers({ ABC: 'some value to send' }); + * }); + * + * stream.on('close', () => fs.closeSync(fd)); + * }); + * ``` + * @since v8.4.0 + * @param fd A readable file descriptor. + */ + respondWithFD(fd: number | fs.promises.FileHandle, headers?: OutgoingHttpHeaders, options?: ServerStreamFileResponseOptions): void; + /** + * Sends a regular file as the response. The `path` must specify a regular file + * or an `'error'` event will be emitted on the `Http2Stream` object. + * + * When used, the `Http2Stream` object's `Duplex` interface will be closed + * automatically. + * + * The optional `options.statCheck` function may be specified to give user code + * an opportunity to set additional content headers based on the `fs.Stat` details + * of the given file: + * + * If an error occurs while attempting to read the file data, the `Http2Stream`will be closed using an `RST_STREAM` frame using the standard `INTERNAL_ERROR`code. If the `onError` callback is + * defined, then it will be called. Otherwise + * the stream will be destroyed. + * + * Example using a file path: + * + * ```js + * const http2 = require('http2'); + * const server = http2.createServer(); + * server.on('stream', (stream) => { + * function statCheck(stat, headers) { + * headers['last-modified'] = stat.mtime.toUTCString(); + * } + * + * function onError(err) { + * // stream.respond() can throw if the stream has been destroyed by + * // the other side. + * try { + * if (err.code === 'ENOENT') { + * stream.respond({ ':status': 404 }); + * } else { + * stream.respond({ ':status': 500 }); + * } + * } catch (err) { + * // Perform actual error handling. + * console.log(err); + * } + * stream.end(); + * } + * + * stream.respondWithFile('/some/file', + * { 'content-type': 'text/plain; charset=utf-8' }, + * { statCheck, onError }); + * }); + * ``` + * + * The `options.statCheck` function may also be used to cancel the send operation + * by returning `false`. For instance, a conditional request may check the stat + * results to determine if the file has been modified to return an appropriate`304` response: + * + * ```js + * const http2 = require('http2'); + * const server = http2.createServer(); + * server.on('stream', (stream) => { + * function statCheck(stat, headers) { + * // Check the stat here... + * stream.respond({ ':status': 304 }); + * return false; // Cancel the send operation + * } + * stream.respondWithFile('/some/file', + * { 'content-type': 'text/plain; charset=utf-8' }, + * { statCheck }); + * }); + * ``` + * + * The `content-length` header field will be automatically set. + * + * The `offset` and `length` options may be used to limit the response to a + * specific range subset. This can be used, for instance, to support HTTP Range + * requests. + * + * The `options.onError` function may also be used to handle all the errors + * that could happen before the delivery of the file is initiated. The + * default behavior is to destroy the stream. + * + * When the `options.waitForTrailers` option is set, the `'wantTrailers'` event + * will be emitted immediately after queuing the last chunk of payload data to be + * sent. The `http2stream.sendTrailers()` method can then be used to sent trailing + * header fields to the peer. + * + * When `options.waitForTrailers` is set, the `Http2Stream` will not automatically + * close when the final `DATA` frame is transmitted. User code must call either`http2stream.sendTrailers()` or `http2stream.close()` to close the`Http2Stream`. + * + * ```js + * const http2 = require('http2'); + * const server = http2.createServer(); + * server.on('stream', (stream) => { + * stream.respondWithFile('/some/file', + * { 'content-type': 'text/plain; charset=utf-8' }, + * { waitForTrailers: true }); + * stream.on('wantTrailers', () => { + * stream.sendTrailers({ ABC: 'some value to send' }); + * }); + * }); + * ``` + * @since v8.4.0 + */ + respondWithFile(path: string, headers?: OutgoingHttpHeaders, options?: ServerStreamFileResponseOptionsWithError): void; + } + // Http2Session + export interface Settings { + headerTableSize?: number | undefined; + enablePush?: boolean | undefined; + initialWindowSize?: number | undefined; + maxFrameSize?: number | undefined; + maxConcurrentStreams?: number | undefined; + maxHeaderListSize?: number | undefined; + enableConnectProtocol?: boolean | undefined; + } + export interface ClientSessionRequestOptions { + endStream?: boolean | undefined; + exclusive?: boolean | undefined; + parent?: number | undefined; + weight?: number | undefined; + waitForTrailers?: boolean | undefined; + signal?: AbortSignal | undefined; + } + export interface SessionState { + effectiveLocalWindowSize?: number | undefined; + effectiveRecvDataLength?: number | undefined; + nextStreamID?: number | undefined; + localWindowSize?: number | undefined; + lastProcStreamID?: number | undefined; + remoteWindowSize?: number | undefined; + outboundQueueSize?: number | undefined; + deflateDynamicTableSize?: number | undefined; + inflateDynamicTableSize?: number | undefined; + } + export interface Http2Session extends EventEmitter { + /** + * Value will be `undefined` if the `Http2Session` is not yet connected to a + * socket, `h2c` if the `Http2Session` is not connected to a `TLSSocket`, or + * will return the value of the connected `TLSSocket`'s own `alpnProtocol`property. + * @since v9.4.0 + */ + readonly alpnProtocol?: string | undefined; + /** + * Will be `true` if this `Http2Session` instance has been closed, otherwise`false`. + * @since v9.4.0 + */ + readonly closed: boolean; + /** + * Will be `true` if this `Http2Session` instance is still connecting, will be set + * to `false` before emitting `connect` event and/or calling the `http2.connect`callback. + * @since v10.0.0 + */ + readonly connecting: boolean; + /** + * Will be `true` if this `Http2Session` instance has been destroyed and must no + * longer be used, otherwise `false`. + * @since v8.4.0 + */ + readonly destroyed: boolean; + /** + * Value is `undefined` if the `Http2Session` session socket has not yet been + * connected, `true` if the `Http2Session` is connected with a `TLSSocket`, + * and `false` if the `Http2Session` is connected to any other kind of socket + * or stream. + * @since v9.4.0 + */ + readonly encrypted?: boolean | undefined; + /** + * A prototype-less object describing the current local settings of this`Http2Session`. The local settings are local to _this_`Http2Session` instance. + * @since v8.4.0 + */ + readonly localSettings: Settings; + /** + * If the `Http2Session` is connected to a `TLSSocket`, the `originSet` property + * will return an `Array` of origins for which the `Http2Session` may be + * considered authoritative. + * + * The `originSet` property is only available when using a secure TLS connection. + * @since v9.4.0 + */ + readonly originSet?: string[] | undefined; + /** + * Indicates whether the `Http2Session` is currently waiting for acknowledgment of + * a sent `SETTINGS` frame. Will be `true` after calling the`http2session.settings()` method. Will be `false` once all sent `SETTINGS`frames have been acknowledged. + * @since v8.4.0 + */ + readonly pendingSettingsAck: boolean; + /** + * A prototype-less object describing the current remote settings of this`Http2Session`. The remote settings are set by the _connected_ HTTP/2 peer. + * @since v8.4.0 + */ + readonly remoteSettings: Settings; + /** + * Returns a `Proxy` object that acts as a `net.Socket` (or `tls.TLSSocket`) but + * limits available methods to ones safe to use with HTTP/2. + * + * `destroy`, `emit`, `end`, `pause`, `read`, `resume`, and `write` will throw + * an error with code `ERR_HTTP2_NO_SOCKET_MANIPULATION`. See `Http2Session and Sockets` for more information. + * + * `setTimeout` method will be called on this `Http2Session`. + * + * All other interactions will be routed directly to the socket. + * @since v8.4.0 + */ + readonly socket: net.Socket | tls.TLSSocket; + /** + * Provides miscellaneous information about the current state of the`Http2Session`. + * + * An object describing the current status of this `Http2Session`. + * @since v8.4.0 + */ + readonly state: SessionState; + /** + * The `http2session.type` will be equal to`http2.constants.NGHTTP2_SESSION_SERVER` if this `Http2Session` instance is a + * server, and `http2.constants.NGHTTP2_SESSION_CLIENT` if the instance is a + * client. + * @since v8.4.0 + */ + readonly type: number; + /** + * Gracefully closes the `Http2Session`, allowing any existing streams to + * complete on their own and preventing new `Http2Stream` instances from being + * created. Once closed, `http2session.destroy()`_might_ be called if there + * are no open `Http2Stream` instances. + * + * If specified, the `callback` function is registered as a handler for the`'close'` event. + * @since v9.4.0 + */ + close(callback?: () => void): void; + /** + * Immediately terminates the `Http2Session` and the associated `net.Socket` or`tls.TLSSocket`. + * + * Once destroyed, the `Http2Session` will emit the `'close'` event. If `error`is not undefined, an `'error'` event will be emitted immediately before the`'close'` event. + * + * If there are any remaining open `Http2Streams` associated with the`Http2Session`, those will also be destroyed. + * @since v8.4.0 + * @param error An `Error` object if the `Http2Session` is being destroyed due to an error. + * @param code The HTTP/2 error code to send in the final `GOAWAY` frame. If unspecified, and `error` is not undefined, the default is `INTERNAL_ERROR`, otherwise defaults to `NO_ERROR`. + */ + destroy(error?: Error, code?: number): void; + /** + * Transmits a `GOAWAY` frame to the connected peer _without_ shutting down the`Http2Session`. + * @since v9.4.0 + * @param code An HTTP/2 error code + * @param lastStreamID The numeric ID of the last processed `Http2Stream` + * @param opaqueData A `TypedArray` or `DataView` instance containing additional data to be carried within the `GOAWAY` frame. + */ + goaway(code?: number, lastStreamID?: number, opaqueData?: NodeJS.ArrayBufferView): void; + /** + * Sends a `PING` frame to the connected HTTP/2 peer. A `callback` function must + * be provided. The method will return `true` if the `PING` was sent, `false`otherwise. + * + * The maximum number of outstanding (unacknowledged) pings is determined by the`maxOutstandingPings` configuration option. The default maximum is 10. + * + * If provided, the `payload` must be a `Buffer`, `TypedArray`, or `DataView`containing 8 bytes of data that will be transmitted with the `PING` and + * returned with the ping acknowledgment. + * + * The callback will be invoked with three arguments: an error argument that will + * be `null` if the `PING` was successfully acknowledged, a `duration` argument + * that reports the number of milliseconds elapsed since the ping was sent and the + * acknowledgment was received, and a `Buffer` containing the 8-byte `PING`payload. + * + * ```js + * session.ping(Buffer.from('abcdefgh'), (err, duration, payload) => { + * if (!err) { + * console.log(`Ping acknowledged in ${duration} milliseconds`); + * console.log(`With payload '${payload.toString()}'`); + * } + * }); + * ``` + * + * If the `payload` argument is not specified, the default payload will be the + * 64-bit timestamp (little endian) marking the start of the `PING` duration. + * @since v8.9.3 + * @param payload Optional ping payload. + */ + ping(callback: (err: Error | null, duration: number, payload: Buffer) => void): boolean; + ping(payload: NodeJS.ArrayBufferView, callback: (err: Error | null, duration: number, payload: Buffer) => void): boolean; + /** + * Calls `ref()` on this `Http2Session`instance's underlying `net.Socket`. + * @since v9.4.0 + */ + ref(): void; + /** + * Sets the local endpoint's window size. + * The `windowSize` is the total window size to set, not + * the delta. + * + * ```js + * const http2 = require('http2'); + * + * const server = http2.createServer(); + * const expectedWindowSize = 2 ** 20; + * server.on('connect', (session) => { + * + * // Set local window size to be 2 ** 20 + * session.setLocalWindowSize(expectedWindowSize); + * }); + * ``` + * @since v15.3.0, v14.18.0 + */ + setLocalWindowSize(windowSize: number): void; + /** + * Used to set a callback function that is called when there is no activity on + * the `Http2Session` after `msecs` milliseconds. The given `callback` is + * registered as a listener on the `'timeout'` event. + * @since v8.4.0 + */ + setTimeout(msecs: number, callback?: () => void): void; + /** + * Updates the current local settings for this `Http2Session` and sends a new`SETTINGS` frame to the connected HTTP/2 peer. + * + * Once called, the `http2session.pendingSettingsAck` property will be `true`while the session is waiting for the remote peer to acknowledge the new + * settings. + * + * The new settings will not become effective until the `SETTINGS` acknowledgment + * is received and the `'localSettings'` event is emitted. It is possible to send + * multiple `SETTINGS` frames while acknowledgment is still pending. + * @since v8.4.0 + * @param callback Callback that is called once the session is connected or right away if the session is already connected. + */ + settings(settings: Settings, callback?: (err: Error | null, settings: Settings, duration: number) => void): void; + /** + * Calls `unref()` on this `Http2Session`instance's underlying `net.Socket`. + * @since v9.4.0 + */ + unref(): void; + addListener(event: 'close', listener: () => void): this; + addListener(event: 'error', listener: (err: Error) => void): this; + addListener(event: 'frameError', listener: (frameType: number, errorCode: number, streamID: number) => void): this; + addListener(event: 'goaway', listener: (errorCode: number, lastStreamID: number, opaqueData: Buffer) => void): this; + addListener(event: 'localSettings', listener: (settings: Settings) => void): this; + addListener(event: 'ping', listener: () => void): this; + addListener(event: 'remoteSettings', listener: (settings: Settings) => void): this; + addListener(event: 'timeout', listener: () => void): this; + addListener(event: string | symbol, listener: (...args: any[]) => void): this; + emit(event: 'close'): boolean; + emit(event: 'error', err: Error): boolean; + emit(event: 'frameError', frameType: number, errorCode: number, streamID: number): boolean; + emit(event: 'goaway', errorCode: number, lastStreamID: number, opaqueData: Buffer): boolean; + emit(event: 'localSettings', settings: Settings): boolean; + emit(event: 'ping'): boolean; + emit(event: 'remoteSettings', settings: Settings): boolean; + emit(event: 'timeout'): boolean; + emit(event: string | symbol, ...args: any[]): boolean; + on(event: 'close', listener: () => void): this; + on(event: 'error', listener: (err: Error) => void): this; + on(event: 'frameError', listener: (frameType: number, errorCode: number, streamID: number) => void): this; + on(event: 'goaway', listener: (errorCode: number, lastStreamID: number, opaqueData: Buffer) => void): this; + on(event: 'localSettings', listener: (settings: Settings) => void): this; + on(event: 'ping', listener: () => void): this; + on(event: 'remoteSettings', listener: (settings: Settings) => void): this; + on(event: 'timeout', listener: () => void): this; + on(event: string | symbol, listener: (...args: any[]) => void): this; + once(event: 'close', listener: () => void): this; + once(event: 'error', listener: (err: Error) => void): this; + once(event: 'frameError', listener: (frameType: number, errorCode: number, streamID: number) => void): this; + once(event: 'goaway', listener: (errorCode: number, lastStreamID: number, opaqueData: Buffer) => void): this; + once(event: 'localSettings', listener: (settings: Settings) => void): this; + once(event: 'ping', listener: () => void): this; + once(event: 'remoteSettings', listener: (settings: Settings) => void): this; + once(event: 'timeout', listener: () => void): this; + once(event: string | symbol, listener: (...args: any[]) => void): this; + prependListener(event: 'close', listener: () => void): this; + prependListener(event: 'error', listener: (err: Error) => void): this; + prependListener(event: 'frameError', listener: (frameType: number, errorCode: number, streamID: number) => void): this; + prependListener(event: 'goaway', listener: (errorCode: number, lastStreamID: number, opaqueData: Buffer) => void): this; + prependListener(event: 'localSettings', listener: (settings: Settings) => void): this; + prependListener(event: 'ping', listener: () => void): this; + prependListener(event: 'remoteSettings', listener: (settings: Settings) => void): this; + prependListener(event: 'timeout', listener: () => void): this; + prependListener(event: string | symbol, listener: (...args: any[]) => void): this; + prependOnceListener(event: 'close', listener: () => void): this; + prependOnceListener(event: 'error', listener: (err: Error) => void): this; + prependOnceListener(event: 'frameError', listener: (frameType: number, errorCode: number, streamID: number) => void): this; + prependOnceListener(event: 'goaway', listener: (errorCode: number, lastStreamID: number, opaqueData: Buffer) => void): this; + prependOnceListener(event: 'localSettings', listener: (settings: Settings) => void): this; + prependOnceListener(event: 'ping', listener: () => void): this; + prependOnceListener(event: 'remoteSettings', listener: (settings: Settings) => void): this; + prependOnceListener(event: 'timeout', listener: () => void): this; + prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this; + } + export interface ClientHttp2Session extends Http2Session { + /** + * For HTTP/2 Client `Http2Session` instances only, the `http2session.request()`creates and returns an `Http2Stream` instance that can be used to send an + * HTTP/2 request to the connected server. + * + * When a `ClientHttp2Session` is first created, the socket may not yet be + * connected. if `clienthttp2session.request()` is called during this time, the + * actual request will be deferred until the socket is ready to go. + * If the `session` is closed before the actual request be executed, an`ERR_HTTP2_GOAWAY_SESSION` is thrown. + * + * This method is only available if `http2session.type` is equal to`http2.constants.NGHTTP2_SESSION_CLIENT`. + * + * ```js + * const http2 = require('http2'); + * const clientSession = http2.connect('https://localhost:1234'); + * const { + * HTTP2_HEADER_PATH, + * HTTP2_HEADER_STATUS + * } = http2.constants; + * + * const req = clientSession.request({ [HTTP2_HEADER_PATH]: '/' }); + * req.on('response', (headers) => { + * console.log(headers[HTTP2_HEADER_STATUS]); + * req.on('data', (chunk) => { // .. }); + * req.on('end', () => { // .. }); + * }); + * ``` + * + * When the `options.waitForTrailers` option is set, the `'wantTrailers'` event + * is emitted immediately after queuing the last chunk of payload data to be sent. + * The `http2stream.sendTrailers()` method can then be called to send trailing + * headers to the peer. + * + * When `options.waitForTrailers` is set, the `Http2Stream` will not automatically + * close when the final `DATA` frame is transmitted. User code must call either`http2stream.sendTrailers()` or `http2stream.close()` to close the`Http2Stream`. + * + * When `options.signal` is set with an `AbortSignal` and then `abort` on the + * corresponding `AbortController` is called, the request will emit an `'error'`event with an `AbortError` error. + * + * The `:method` and `:path` pseudo-headers are not specified within `headers`, + * they respectively default to: + * + * * `:method` \= `'GET'` + * * `:path` \= `/` + * @since v8.4.0 + */ + request(headers?: OutgoingHttpHeaders, options?: ClientSessionRequestOptions): ClientHttp2Stream; + addListener(event: 'altsvc', listener: (alt: string, origin: string, stream: number) => void): this; + addListener(event: 'origin', listener: (origins: string[]) => void): this; + addListener(event: 'connect', listener: (session: ClientHttp2Session, socket: net.Socket | tls.TLSSocket) => void): this; + addListener(event: 'stream', listener: (stream: ClientHttp2Stream, headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number) => void): this; + addListener(event: string | symbol, listener: (...args: any[]) => void): this; + emit(event: 'altsvc', alt: string, origin: string, stream: number): boolean; + emit(event: 'origin', origins: ReadonlyArray): boolean; + emit(event: 'connect', session: ClientHttp2Session, socket: net.Socket | tls.TLSSocket): boolean; + emit(event: 'stream', stream: ClientHttp2Stream, headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number): boolean; + emit(event: string | symbol, ...args: any[]): boolean; + on(event: 'altsvc', listener: (alt: string, origin: string, stream: number) => void): this; + on(event: 'origin', listener: (origins: string[]) => void): this; + on(event: 'connect', listener: (session: ClientHttp2Session, socket: net.Socket | tls.TLSSocket) => void): this; + on(event: 'stream', listener: (stream: ClientHttp2Stream, headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number) => void): this; + on(event: string | symbol, listener: (...args: any[]) => void): this; + once(event: 'altsvc', listener: (alt: string, origin: string, stream: number) => void): this; + once(event: 'origin', listener: (origins: string[]) => void): this; + once(event: 'connect', listener: (session: ClientHttp2Session, socket: net.Socket | tls.TLSSocket) => void): this; + once(event: 'stream', listener: (stream: ClientHttp2Stream, headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number) => void): this; + once(event: string | symbol, listener: (...args: any[]) => void): this; + prependListener(event: 'altsvc', listener: (alt: string, origin: string, stream: number) => void): this; + prependListener(event: 'origin', listener: (origins: string[]) => void): this; + prependListener(event: 'connect', listener: (session: ClientHttp2Session, socket: net.Socket | tls.TLSSocket) => void): this; + prependListener(event: 'stream', listener: (stream: ClientHttp2Stream, headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number) => void): this; + prependListener(event: string | symbol, listener: (...args: any[]) => void): this; + prependOnceListener(event: 'altsvc', listener: (alt: string, origin: string, stream: number) => void): this; + prependOnceListener(event: 'origin', listener: (origins: string[]) => void): this; + prependOnceListener(event: 'connect', listener: (session: ClientHttp2Session, socket: net.Socket | tls.TLSSocket) => void): this; + prependOnceListener(event: 'stream', listener: (stream: ClientHttp2Stream, headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number) => void): this; + prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this; + } + export interface AlternativeServiceOptions { + origin: number | string | url.URL; + } + export interface ServerHttp2Session extends Http2Session { + readonly server: Http2Server | Http2SecureServer; + /** + * Submits an `ALTSVC` frame (as defined by [RFC 7838](https://tools.ietf.org/html/rfc7838)) to the connected client. + * + * ```js + * const http2 = require('http2'); + * + * const server = http2.createServer(); + * server.on('session', (session) => { + * // Set altsvc for origin https://example.org:80 + * session.altsvc('h2=":8000"', 'https://example.org:80'); + * }); + * + * server.on('stream', (stream) => { + * // Set altsvc for a specific stream + * stream.session.altsvc('h2=":8000"', stream.id); + * }); + * ``` + * + * Sending an `ALTSVC` frame with a specific stream ID indicates that the alternate + * service is associated with the origin of the given `Http2Stream`. + * + * The `alt` and origin string _must_ contain only ASCII bytes and are + * strictly interpreted as a sequence of ASCII bytes. The special value `'clear'`may be passed to clear any previously set alternative service for a given + * domain. + * + * When a string is passed for the `originOrStream` argument, it will be parsed as + * a URL and the origin will be derived. For instance, the origin for the + * HTTP URL `'https://example.org/foo/bar'` is the ASCII string`'https://example.org'`. An error will be thrown if either the given string + * cannot be parsed as a URL or if a valid origin cannot be derived. + * + * A `URL` object, or any object with an `origin` property, may be passed as`originOrStream`, in which case the value of the `origin` property will be + * used. The value of the `origin` property _must_ be a properly serialized + * ASCII origin. + * @since v9.4.0 + * @param alt A description of the alternative service configuration as defined by `RFC 7838`. + * @param originOrStream Either a URL string specifying the origin (or an `Object` with an `origin` property) or the numeric identifier of an active `Http2Stream` as given by the + * `http2stream.id` property. + */ + altsvc(alt: string, originOrStream: number | string | url.URL | AlternativeServiceOptions): void; + /** + * Submits an `ORIGIN` frame (as defined by [RFC 8336](https://tools.ietf.org/html/rfc8336)) to the connected client + * to advertise the set of origins for which the server is capable of providing + * authoritative responses. + * + * ```js + * const http2 = require('http2'); + * const options = getSecureOptionsSomehow(); + * const server = http2.createSecureServer(options); + * server.on('stream', (stream) => { + * stream.respond(); + * stream.end('ok'); + * }); + * server.on('session', (session) => { + * session.origin('https://example.com', 'https://example.org'); + * }); + * ``` + * + * When a string is passed as an `origin`, it will be parsed as a URL and the + * origin will be derived. For instance, the origin for the HTTP URL`'https://example.org/foo/bar'` is the ASCII string`'https://example.org'`. An error will be thrown if either the given + * string + * cannot be parsed as a URL or if a valid origin cannot be derived. + * + * A `URL` object, or any object with an `origin` property, may be passed as + * an `origin`, in which case the value of the `origin` property will be + * used. The value of the `origin` property _must_ be a properly serialized + * ASCII origin. + * + * Alternatively, the `origins` option may be used when creating a new HTTP/2 + * server using the `http2.createSecureServer()` method: + * + * ```js + * const http2 = require('http2'); + * const options = getSecureOptionsSomehow(); + * options.origins = ['https://example.com', 'https://example.org']; + * const server = http2.createSecureServer(options); + * server.on('stream', (stream) => { + * stream.respond(); + * stream.end('ok'); + * }); + * ``` + * @since v10.12.0 + * @param origins One or more URL Strings passed as separate arguments. + */ + origin( + ...origins: Array< + | string + | url.URL + | { + origin: string; + } + > + ): void; + addListener(event: 'connect', listener: (session: ServerHttp2Session, socket: net.Socket | tls.TLSSocket) => void): this; + addListener(event: 'stream', listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void): this; + addListener(event: string | symbol, listener: (...args: any[]) => void): this; + emit(event: 'connect', session: ServerHttp2Session, socket: net.Socket | tls.TLSSocket): boolean; + emit(event: 'stream', stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number): boolean; + emit(event: string | symbol, ...args: any[]): boolean; + on(event: 'connect', listener: (session: ServerHttp2Session, socket: net.Socket | tls.TLSSocket) => void): this; + on(event: 'stream', listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void): this; + on(event: string | symbol, listener: (...args: any[]) => void): this; + once(event: 'connect', listener: (session: ServerHttp2Session, socket: net.Socket | tls.TLSSocket) => void): this; + once(event: 'stream', listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void): this; + once(event: string | symbol, listener: (...args: any[]) => void): this; + prependListener(event: 'connect', listener: (session: ServerHttp2Session, socket: net.Socket | tls.TLSSocket) => void): this; + prependListener(event: 'stream', listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void): this; + prependListener(event: string | symbol, listener: (...args: any[]) => void): this; + prependOnceListener(event: 'connect', listener: (session: ServerHttp2Session, socket: net.Socket | tls.TLSSocket) => void): this; + prependOnceListener(event: 'stream', listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void): this; + prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this; + } + // Http2Server + export interface SessionOptions { + maxDeflateDynamicTableSize?: number | undefined; + maxSessionMemory?: number | undefined; + maxHeaderListPairs?: number | undefined; + maxOutstandingPings?: number | undefined; + maxSendHeaderBlockLength?: number | undefined; + paddingStrategy?: number | undefined; + peerMaxConcurrentStreams?: number | undefined; + settings?: Settings | undefined; + /** + * Specifies a timeout in milliseconds that + * a server should wait when an [`'unknownProtocol'`][] is emitted. If the + * socket has not been destroyed by that time the server will destroy it. + * @default 100000 + */ + unknownProtocolTimeout?: number | undefined; + selectPadding?(frameLen: number, maxFrameLen: number): number; + createConnection?(authority: url.URL, option: SessionOptions): stream.Duplex; + } + export interface ClientSessionOptions extends SessionOptions { + maxReservedRemoteStreams?: number | undefined; + createConnection?: ((authority: url.URL, option: SessionOptions) => stream.Duplex) | undefined; + protocol?: 'http:' | 'https:' | undefined; + } + export interface ServerSessionOptions extends SessionOptions { + Http1IncomingMessage?: typeof IncomingMessage | undefined; + Http1ServerResponse?: typeof ServerResponse | undefined; + Http2ServerRequest?: typeof Http2ServerRequest | undefined; + Http2ServerResponse?: typeof Http2ServerResponse | undefined; + } + export interface SecureClientSessionOptions extends ClientSessionOptions, tls.ConnectionOptions {} + export interface SecureServerSessionOptions extends ServerSessionOptions, tls.TlsOptions {} + export interface ServerOptions extends ServerSessionOptions {} + export interface SecureServerOptions extends SecureServerSessionOptions { + allowHTTP1?: boolean | undefined; + origins?: string[] | undefined; + } + interface HTTP2ServerCommon { + setTimeout(msec?: number, callback?: () => void): this; + /** + * Throws ERR_HTTP2_INVALID_SETTING_VALUE for invalid settings values. + * Throws ERR_INVALID_ARG_TYPE for invalid settings argument. + */ + updateSettings(settings: Settings): void; + } + export interface Http2Server extends net.Server, HTTP2ServerCommon { + addListener(event: 'checkContinue', listener: (request: Http2ServerRequest, response: Http2ServerResponse) => void): this; + addListener(event: 'request', listener: (request: Http2ServerRequest, response: Http2ServerResponse) => void): this; + addListener(event: 'session', listener: (session: ServerHttp2Session) => void): this; + addListener(event: 'sessionError', listener: (err: Error) => void): this; + addListener(event: 'stream', listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void): this; + addListener(event: 'timeout', listener: () => void): this; + addListener(event: string | symbol, listener: (...args: any[]) => void): this; + emit(event: 'checkContinue', request: Http2ServerRequest, response: Http2ServerResponse): boolean; + emit(event: 'request', request: Http2ServerRequest, response: Http2ServerResponse): boolean; + emit(event: 'session', session: ServerHttp2Session): boolean; + emit(event: 'sessionError', err: Error): boolean; + emit(event: 'stream', stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number): boolean; + emit(event: 'timeout'): boolean; + emit(event: string | symbol, ...args: any[]): boolean; + on(event: 'checkContinue', listener: (request: Http2ServerRequest, response: Http2ServerResponse) => void): this; + on(event: 'request', listener: (request: Http2ServerRequest, response: Http2ServerResponse) => void): this; + on(event: 'session', listener: (session: ServerHttp2Session) => void): this; + on(event: 'sessionError', listener: (err: Error) => void): this; + on(event: 'stream', listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void): this; + on(event: 'timeout', listener: () => void): this; + on(event: string | symbol, listener: (...args: any[]) => void): this; + once(event: 'checkContinue', listener: (request: Http2ServerRequest, response: Http2ServerResponse) => void): this; + once(event: 'request', listener: (request: Http2ServerRequest, response: Http2ServerResponse) => void): this; + once(event: 'session', listener: (session: ServerHttp2Session) => void): this; + once(event: 'sessionError', listener: (err: Error) => void): this; + once(event: 'stream', listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void): this; + once(event: 'timeout', listener: () => void): this; + once(event: string | symbol, listener: (...args: any[]) => void): this; + prependListener(event: 'checkContinue', listener: (request: Http2ServerRequest, response: Http2ServerResponse) => void): this; + prependListener(event: 'request', listener: (request: Http2ServerRequest, response: Http2ServerResponse) => void): this; + prependListener(event: 'session', listener: (session: ServerHttp2Session) => void): this; + prependListener(event: 'sessionError', listener: (err: Error) => void): this; + prependListener(event: 'stream', listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void): this; + prependListener(event: 'timeout', listener: () => void): this; + prependListener(event: string | symbol, listener: (...args: any[]) => void): this; + prependOnceListener(event: 'checkContinue', listener: (request: Http2ServerRequest, response: Http2ServerResponse) => void): this; + prependOnceListener(event: 'request', listener: (request: Http2ServerRequest, response: Http2ServerResponse) => void): this; + prependOnceListener(event: 'session', listener: (session: ServerHttp2Session) => void): this; + prependOnceListener(event: 'sessionError', listener: (err: Error) => void): this; + prependOnceListener(event: 'stream', listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void): this; + prependOnceListener(event: 'timeout', listener: () => void): this; + prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this; + } + export interface Http2SecureServer extends tls.Server, HTTP2ServerCommon { + addListener(event: 'checkContinue', listener: (request: Http2ServerRequest, response: Http2ServerResponse) => void): this; + addListener(event: 'request', listener: (request: Http2ServerRequest, response: Http2ServerResponse) => void): this; + addListener(event: 'session', listener: (session: ServerHttp2Session) => void): this; + addListener(event: 'sessionError', listener: (err: Error) => void): this; + addListener(event: 'stream', listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void): this; + addListener(event: 'timeout', listener: () => void): this; + addListener(event: 'unknownProtocol', listener: (socket: tls.TLSSocket) => void): this; + addListener(event: string | symbol, listener: (...args: any[]) => void): this; + emit(event: 'checkContinue', request: Http2ServerRequest, response: Http2ServerResponse): boolean; + emit(event: 'request', request: Http2ServerRequest, response: Http2ServerResponse): boolean; + emit(event: 'session', session: ServerHttp2Session): boolean; + emit(event: 'sessionError', err: Error): boolean; + emit(event: 'stream', stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number): boolean; + emit(event: 'timeout'): boolean; + emit(event: 'unknownProtocol', socket: tls.TLSSocket): boolean; + emit(event: string | symbol, ...args: any[]): boolean; + on(event: 'checkContinue', listener: (request: Http2ServerRequest, response: Http2ServerResponse) => void): this; + on(event: 'request', listener: (request: Http2ServerRequest, response: Http2ServerResponse) => void): this; + on(event: 'session', listener: (session: ServerHttp2Session) => void): this; + on(event: 'sessionError', listener: (err: Error) => void): this; + on(event: 'stream', listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void): this; + on(event: 'timeout', listener: () => void): this; + on(event: 'unknownProtocol', listener: (socket: tls.TLSSocket) => void): this; + on(event: string | symbol, listener: (...args: any[]) => void): this; + once(event: 'checkContinue', listener: (request: Http2ServerRequest, response: Http2ServerResponse) => void): this; + once(event: 'request', listener: (request: Http2ServerRequest, response: Http2ServerResponse) => void): this; + once(event: 'session', listener: (session: ServerHttp2Session) => void): this; + once(event: 'sessionError', listener: (err: Error) => void): this; + once(event: 'stream', listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void): this; + once(event: 'timeout', listener: () => void): this; + once(event: 'unknownProtocol', listener: (socket: tls.TLSSocket) => void): this; + once(event: string | symbol, listener: (...args: any[]) => void): this; + prependListener(event: 'checkContinue', listener: (request: Http2ServerRequest, response: Http2ServerResponse) => void): this; + prependListener(event: 'request', listener: (request: Http2ServerRequest, response: Http2ServerResponse) => void): this; + prependListener(event: 'session', listener: (session: ServerHttp2Session) => void): this; + prependListener(event: 'sessionError', listener: (err: Error) => void): this; + prependListener(event: 'stream', listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void): this; + prependListener(event: 'timeout', listener: () => void): this; + prependListener(event: 'unknownProtocol', listener: (socket: tls.TLSSocket) => void): this; + prependListener(event: string | symbol, listener: (...args: any[]) => void): this; + prependOnceListener(event: 'checkContinue', listener: (request: Http2ServerRequest, response: Http2ServerResponse) => void): this; + prependOnceListener(event: 'request', listener: (request: Http2ServerRequest, response: Http2ServerResponse) => void): this; + prependOnceListener(event: 'session', listener: (session: ServerHttp2Session) => void): this; + prependOnceListener(event: 'sessionError', listener: (err: Error) => void): this; + prependOnceListener(event: 'stream', listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void): this; + prependOnceListener(event: 'timeout', listener: () => void): this; + prependOnceListener(event: 'unknownProtocol', listener: (socket: tls.TLSSocket) => void): this; + prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this; + } + /** + * A `Http2ServerRequest` object is created by {@link Server} or {@link SecureServer} and passed as the first argument to the `'request'` event. It may be used to access a request status, + * headers, and + * data. + * @since v8.4.0 + */ + export class Http2ServerRequest extends stream.Readable { + constructor(stream: ServerHttp2Stream, headers: IncomingHttpHeaders, options: stream.ReadableOptions, rawHeaders: ReadonlyArray); + /** + * The `request.aborted` property will be `true` if the request has + * been aborted. + * @since v10.1.0 + */ + readonly aborted: boolean; + /** + * The request authority pseudo header field. Because HTTP/2 allows requests + * to set either `:authority` or `host`, this value is derived from`req.headers[':authority']` if present. Otherwise, it is derived from`req.headers['host']`. + * @since v8.4.0 + */ + readonly authority: string; + /** + * See `request.socket`. + * @since v8.4.0 + * @deprecated Since v13.0.0 - Use `socket`. + */ + readonly connection: net.Socket | tls.TLSSocket; + /** + * The `request.complete` property will be `true` if the request has + * been completed, aborted, or destroyed. + * @since v12.10.0 + */ + readonly complete: boolean; + /** + * The request/response headers object. + * + * Key-value pairs of header names and values. Header names are lower-cased. + * + * ```js + * // Prints something like: + * // + * // { 'user-agent': 'curl/7.22.0', + * // host: '127.0.0.1:8000', + * // accept: '*' } + * console.log(request.headers); + * ``` + * + * See `HTTP/2 Headers Object`. + * + * In HTTP/2, the request path, host name, protocol, and method are represented as + * special headers prefixed with the `:` character (e.g. `':path'`). These special + * headers will be included in the `request.headers` object. Care must be taken not + * to inadvertently modify these special headers or errors may occur. For instance, + * removing all headers from the request will cause errors to occur: + * + * ```js + * removeAllHeaders(request.headers); + * assert(request.url); // Fails because the :path header has been removed + * ``` + * @since v8.4.0 + */ + readonly headers: IncomingHttpHeaders; + /** + * In case of server request, the HTTP version sent by the client. In the case of + * client response, the HTTP version of the connected-to server. Returns`'2.0'`. + * + * Also `message.httpVersionMajor` is the first integer and`message.httpVersionMinor` is the second. + * @since v8.4.0 + */ + readonly httpVersion: string; + readonly httpVersionMinor: number; + readonly httpVersionMajor: number; + /** + * The request method as a string. Read-only. Examples: `'GET'`, `'DELETE'`. + * @since v8.4.0 + */ + readonly method: string; + /** + * The raw request/response headers list exactly as they were received. + * + * The keys and values are in the same list. It is _not_ a + * list of tuples. So, the even-numbered offsets are key values, and the + * odd-numbered offsets are the associated values. + * + * Header names are not lowercased, and duplicates are not merged. + * + * ```js + * // Prints something like: + * // + * // [ 'user-agent', + * // 'this is invalid because there can be only one', + * // 'User-Agent', + * // 'curl/7.22.0', + * // 'Host', + * // '127.0.0.1:8000', + * // 'ACCEPT', + * // '*' ] + * console.log(request.rawHeaders); + * ``` + * @since v8.4.0 + */ + readonly rawHeaders: string[]; + /** + * The raw request/response trailer keys and values exactly as they were + * received. Only populated at the `'end'` event. + * @since v8.4.0 + */ + readonly rawTrailers: string[]; + /** + * The request scheme pseudo header field indicating the scheme + * portion of the target URL. + * @since v8.4.0 + */ + readonly scheme: string; + /** + * Returns a `Proxy` object that acts as a `net.Socket` (or `tls.TLSSocket`) but + * applies getters, setters, and methods based on HTTP/2 logic. + * + * `destroyed`, `readable`, and `writable` properties will be retrieved from and + * set on `request.stream`. + * + * `destroy`, `emit`, `end`, `on` and `once` methods will be called on`request.stream`. + * + * `setTimeout` method will be called on `request.stream.session`. + * + * `pause`, `read`, `resume`, and `write` will throw an error with code`ERR_HTTP2_NO_SOCKET_MANIPULATION`. See `Http2Session and Sockets` for + * more information. + * + * All other interactions will be routed directly to the socket. With TLS support, + * use `request.socket.getPeerCertificate()` to obtain the client's + * authentication details. + * @since v8.4.0 + */ + readonly socket: net.Socket | tls.TLSSocket; + /** + * The `Http2Stream` object backing the request. + * @since v8.4.0 + */ + readonly stream: ServerHttp2Stream; + /** + * The request/response trailers object. Only populated at the `'end'` event. + * @since v8.4.0 + */ + readonly trailers: IncomingHttpHeaders; + /** + * Request URL string. This contains only the URL that is present in the actual + * HTTP request. If the request is: + * + * ```http + * GET /status?name=ryan HTTP/1.1 + * Accept: text/plain + * ``` + * + * Then `request.url` will be: + * + * ```js + * '/status?name=ryan' + * ``` + * + * To parse the url into its parts, `new URL()` can be used: + * + * ```console + * $ node + * > new URL('/status?name=ryan', 'http://example.com') + * URL { + * href: 'http://example.com/status?name=ryan', + * origin: 'http://example.com', + * protocol: 'http:', + * username: '', + * password: '', + * host: 'example.com', + * hostname: 'example.com', + * port: '', + * pathname: '/status', + * search: '?name=ryan', + * searchParams: URLSearchParams { 'name' => 'ryan' }, + * hash: '' + * } + * ``` + * @since v8.4.0 + */ + url: string; + /** + * Sets the `Http2Stream`'s timeout value to `msecs`. If a callback is + * provided, then it is added as a listener on the `'timeout'` event on + * the response object. + * + * If no `'timeout'` listener is added to the request, the response, or + * the server, then `Http2Stream` s are destroyed when they time out. If a + * handler is assigned to the request, the response, or the server's `'timeout'`events, timed out sockets must be handled explicitly. + * @since v8.4.0 + */ + setTimeout(msecs: number, callback?: () => void): void; + read(size?: number): Buffer | string | null; + addListener(event: 'aborted', listener: (hadError: boolean, code: number) => void): this; + addListener(event: 'close', listener: () => void): this; + addListener(event: 'data', listener: (chunk: Buffer | string) => void): this; + addListener(event: 'end', listener: () => void): this; + addListener(event: 'readable', listener: () => void): this; + addListener(event: 'error', listener: (err: Error) => void): this; + addListener(event: string | symbol, listener: (...args: any[]) => void): this; + emit(event: 'aborted', hadError: boolean, code: number): boolean; + emit(event: 'close'): boolean; + emit(event: 'data', chunk: Buffer | string): boolean; + emit(event: 'end'): boolean; + emit(event: 'readable'): boolean; + emit(event: 'error', err: Error): boolean; + emit(event: string | symbol, ...args: any[]): boolean; + on(event: 'aborted', listener: (hadError: boolean, code: number) => void): this; + on(event: 'close', listener: () => void): this; + on(event: 'data', listener: (chunk: Buffer | string) => void): this; + on(event: 'end', listener: () => void): this; + on(event: 'readable', listener: () => void): this; + on(event: 'error', listener: (err: Error) => void): this; + on(event: string | symbol, listener: (...args: any[]) => void): this; + once(event: 'aborted', listener: (hadError: boolean, code: number) => void): this; + once(event: 'close', listener: () => void): this; + once(event: 'data', listener: (chunk: Buffer | string) => void): this; + once(event: 'end', listener: () => void): this; + once(event: 'readable', listener: () => void): this; + once(event: 'error', listener: (err: Error) => void): this; + once(event: string | symbol, listener: (...args: any[]) => void): this; + prependListener(event: 'aborted', listener: (hadError: boolean, code: number) => void): this; + prependListener(event: 'close', listener: () => void): this; + prependListener(event: 'data', listener: (chunk: Buffer | string) => void): this; + prependListener(event: 'end', listener: () => void): this; + prependListener(event: 'readable', listener: () => void): this; + prependListener(event: 'error', listener: (err: Error) => void): this; + prependListener(event: string | symbol, listener: (...args: any[]) => void): this; + prependOnceListener(event: 'aborted', listener: (hadError: boolean, code: number) => void): this; + prependOnceListener(event: 'close', listener: () => void): this; + prependOnceListener(event: 'data', listener: (chunk: Buffer | string) => void): this; + prependOnceListener(event: 'end', listener: () => void): this; + prependOnceListener(event: 'readable', listener: () => void): this; + prependOnceListener(event: 'error', listener: (err: Error) => void): this; + prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this; + } + /** + * This object is created internally by an HTTP server, not by the user. It is + * passed as the second parameter to the `'request'` event. + * @since v8.4.0 + */ + export class Http2ServerResponse extends stream.Writable { + constructor(stream: ServerHttp2Stream); + /** + * See `response.socket`. + * @since v8.4.0 + * @deprecated Since v13.0.0 - Use `socket`. + */ + readonly connection: net.Socket | tls.TLSSocket; + /** + * Boolean value that indicates whether the response has completed. Starts + * as `false`. After `response.end()` executes, the value will be `true`. + * @since v8.4.0 + * @deprecated Since v13.4.0,v12.16.0 - Use `writableEnded`. + */ + readonly finished: boolean; + /** + * True if headers were sent, false otherwise (read-only). + * @since v8.4.0 + */ + readonly headersSent: boolean; + /** + * A reference to the original HTTP2 request object. + * @since v15.7.0 + */ + readonly req: Http2ServerRequest; + /** + * Returns a `Proxy` object that acts as a `net.Socket` (or `tls.TLSSocket`) but + * applies getters, setters, and methods based on HTTP/2 logic. + * + * `destroyed`, `readable`, and `writable` properties will be retrieved from and + * set on `response.stream`. + * + * `destroy`, `emit`, `end`, `on` and `once` methods will be called on`response.stream`. + * + * `setTimeout` method will be called on `response.stream.session`. + * + * `pause`, `read`, `resume`, and `write` will throw an error with code`ERR_HTTP2_NO_SOCKET_MANIPULATION`. See `Http2Session and Sockets` for + * more information. + * + * All other interactions will be routed directly to the socket. + * + * ```js + * const http2 = require('http2'); + * const server = http2.createServer((req, res) => { + * const ip = req.socket.remoteAddress; + * const port = req.socket.remotePort; + * res.end(`Your IP address is ${ip} and your source port is ${port}.`); + * }).listen(3000); + * ``` + * @since v8.4.0 + */ + readonly socket: net.Socket | tls.TLSSocket; + /** + * The `Http2Stream` object backing the response. + * @since v8.4.0 + */ + readonly stream: ServerHttp2Stream; + /** + * When true, the Date header will be automatically generated and sent in + * the response if it is not already present in the headers. Defaults to true. + * + * This should only be disabled for testing; HTTP requires the Date header + * in responses. + * @since v8.4.0 + */ + sendDate: boolean; + /** + * When using implicit headers (not calling `response.writeHead()` explicitly), + * this property controls the status code that will be sent to the client when + * the headers get flushed. + * + * ```js + * response.statusCode = 404; + * ``` + * + * After response header was sent to the client, this property indicates the + * status code which was sent out. + * @since v8.4.0 + */ + statusCode: number; + /** + * Status message is not supported by HTTP/2 (RFC 7540 8.1.2.4). It returns + * an empty string. + * @since v8.4.0 + */ + statusMessage: ''; + /** + * This method adds HTTP trailing headers (a header but at the end of the + * message) to the response. + * + * Attempting to set a header field name or value that contains invalid characters + * will result in a `TypeError` being thrown. + * @since v8.4.0 + */ + addTrailers(trailers: OutgoingHttpHeaders): void; + /** + * This method signals to the server that all of the response headers and body + * have been sent; that server should consider this message complete. + * The method, `response.end()`, MUST be called on each response. + * + * If `data` is specified, it is equivalent to calling `response.write(data, encoding)` followed by `response.end(callback)`. + * + * If `callback` is specified, it will be called when the response stream + * is finished. + * @since v8.4.0 + */ + end(callback?: () => void): this; + end(data: string | Uint8Array, callback?: () => void): this; + end(data: string | Uint8Array, encoding: BufferEncoding, callback?: () => void): this; + /** + * Reads out a header that has already been queued but not sent to the client. + * The name is case-insensitive. + * + * ```js + * const contentType = response.getHeader('content-type'); + * ``` + * @since v8.4.0 + */ + getHeader(name: string): string; + /** + * Returns an array containing the unique names of the current outgoing headers. + * All header names are lowercase. + * + * ```js + * response.setHeader('Foo', 'bar'); + * response.setHeader('Set-Cookie', ['foo=bar', 'bar=baz']); + * + * const headerNames = response.getHeaderNames(); + * // headerNames === ['foo', 'set-cookie'] + * ``` + * @since v8.4.0 + */ + getHeaderNames(): string[]; + /** + * Returns a shallow copy of the current outgoing headers. Since a shallow copy + * is used, array values may be mutated without additional calls to various + * header-related http module methods. The keys of the returned object are the + * header names and the values are the respective header values. All header names + * are lowercase. + * + * The object returned by the `response.getHeaders()` method _does not_prototypically inherit from the JavaScript `Object`. This means that typical`Object` methods such as `obj.toString()`, + * `obj.hasOwnProperty()`, and others + * are not defined and _will not work_. + * + * ```js + * response.setHeader('Foo', 'bar'); + * response.setHeader('Set-Cookie', ['foo=bar', 'bar=baz']); + * + * const headers = response.getHeaders(); + * // headers === { foo: 'bar', 'set-cookie': ['foo=bar', 'bar=baz'] } + * ``` + * @since v8.4.0 + */ + getHeaders(): OutgoingHttpHeaders; + /** + * Returns `true` if the header identified by `name` is currently set in the + * outgoing headers. The header name matching is case-insensitive. + * + * ```js + * const hasContentType = response.hasHeader('content-type'); + * ``` + * @since v8.4.0 + */ + hasHeader(name: string): boolean; + /** + * Removes a header that has been queued for implicit sending. + * + * ```js + * response.removeHeader('Content-Encoding'); + * ``` + * @since v8.4.0 + */ + removeHeader(name: string): void; + /** + * Sets a single header value for implicit headers. If this header already exists + * in the to-be-sent headers, its value will be replaced. Use an array of strings + * here to send multiple headers with the same name. + * + * ```js + * response.setHeader('Content-Type', 'text/html; charset=utf-8'); + * ``` + * + * or + * + * ```js + * response.setHeader('Set-Cookie', ['type=ninja', 'language=javascript']); + * ``` + * + * Attempting to set a header field name or value that contains invalid characters + * will result in a `TypeError` being thrown. + * + * When headers have been set with `response.setHeader()`, they will be merged + * with any headers passed to `response.writeHead()`, with the headers passed + * to `response.writeHead()` given precedence. + * + * ```js + * // Returns content-type = text/plain + * const server = http2.createServer((req, res) => { + * res.setHeader('Content-Type', 'text/html; charset=utf-8'); + * res.setHeader('X-Foo', 'bar'); + * res.writeHead(200, { 'Content-Type': 'text/plain; charset=utf-8' }); + * res.end('ok'); + * }); + * ``` + * @since v8.4.0 + */ + setHeader(name: string, value: number | string | ReadonlyArray): void; + /** + * Sets the `Http2Stream`'s timeout value to `msecs`. If a callback is + * provided, then it is added as a listener on the `'timeout'` event on + * the response object. + * + * If no `'timeout'` listener is added to the request, the response, or + * the server, then `Http2Stream` s are destroyed when they time out. If a + * handler is assigned to the request, the response, or the server's `'timeout'`events, timed out sockets must be handled explicitly. + * @since v8.4.0 + */ + setTimeout(msecs: number, callback?: () => void): void; + /** + * If this method is called and `response.writeHead()` has not been called, + * it will switch to implicit header mode and flush the implicit headers. + * + * This sends a chunk of the response body. This method may + * be called multiple times to provide successive parts of the body. + * + * In the `http` module, the response body is omitted when the + * request is a HEAD request. Similarly, the `204` and `304` responses _must not_ include a message body. + * + * `chunk` can be a string or a buffer. If `chunk` is a string, + * the second parameter specifies how to encode it into a byte stream. + * By default the `encoding` is `'utf8'`. `callback` will be called when this chunk + * of data is flushed. + * + * This is the raw HTTP body and has nothing to do with higher-level multi-part + * body encodings that may be used. + * + * The first time `response.write()` is called, it will send the buffered + * header information and the first chunk of the body to the client. The second + * time `response.write()` is called, Node.js assumes data will be streamed, + * and sends the new data separately. That is, the response is buffered up to the + * first chunk of the body. + * + * Returns `true` if the entire data was flushed successfully to the kernel + * buffer. Returns `false` if all or part of the data was queued in user memory.`'drain'` will be emitted when the buffer is free again. + * @since v8.4.0 + */ + write(chunk: string | Uint8Array, callback?: (err: Error) => void): boolean; + write(chunk: string | Uint8Array, encoding: BufferEncoding, callback?: (err: Error) => void): boolean; + /** + * Sends a status `100 Continue` to the client, indicating that the request body + * should be sent. See the `'checkContinue'` event on `Http2Server` and`Http2SecureServer`. + * @since v8.4.0 + */ + writeContinue(): void; + /** + * Sends a response header to the request. The status code is a 3-digit HTTP + * status code, like `404`. The last argument, `headers`, are the response headers. + * + * Returns a reference to the `Http2ServerResponse`, so that calls can be chained. + * + * For compatibility with `HTTP/1`, a human-readable `statusMessage` may be + * passed as the second argument. However, because the `statusMessage` has no + * meaning within HTTP/2, the argument will have no effect and a process warning + * will be emitted. + * + * ```js + * const body = 'hello world'; + * response.writeHead(200, { + * 'Content-Length': Buffer.byteLength(body), + * 'Content-Type': 'text/plain; charset=utf-8', + * }); + * ``` + * + * `Content-Length` is given in bytes not characters. The`Buffer.byteLength()` API may be used to determine the number of bytes in a + * given encoding. On outbound messages, Node.js does not check if Content-Length + * and the length of the body being transmitted are equal or not. However, when + * receiving messages, Node.js will automatically reject messages when the`Content-Length` does not match the actual payload size. + * + * This method may be called at most one time on a message before `response.end()` is called. + * + * If `response.write()` or `response.end()` are called before calling + * this, the implicit/mutable headers will be calculated and call this function. + * + * When headers have been set with `response.setHeader()`, they will be merged + * with any headers passed to `response.writeHead()`, with the headers passed + * to `response.writeHead()` given precedence. + * + * ```js + * // Returns content-type = text/plain + * const server = http2.createServer((req, res) => { + * res.setHeader('Content-Type', 'text/html; charset=utf-8'); + * res.setHeader('X-Foo', 'bar'); + * res.writeHead(200, { 'Content-Type': 'text/plain; charset=utf-8' }); + * res.end('ok'); + * }); + * ``` + * + * Attempting to set a header field name or value that contains invalid characters + * will result in a `TypeError` being thrown. + * @since v8.4.0 + */ + writeHead(statusCode: number, headers?: OutgoingHttpHeaders): this; + writeHead(statusCode: number, statusMessage: string, headers?: OutgoingHttpHeaders): this; + /** + * Call `http2stream.pushStream()` with the given headers, and wrap the + * given `Http2Stream` on a newly created `Http2ServerResponse` as the callback + * parameter if successful. When `Http2ServerRequest` is closed, the callback is + * called with an error `ERR_HTTP2_INVALID_STREAM`. + * @since v8.4.0 + * @param headers An object describing the headers + * @param callback Called once `http2stream.pushStream()` is finished, or either when the attempt to create the pushed `Http2Stream` has failed or has been rejected, or the state of + * `Http2ServerRequest` is closed prior to calling the `http2stream.pushStream()` method + */ + createPushResponse(headers: OutgoingHttpHeaders, callback: (err: Error | null, res: Http2ServerResponse) => void): void; + addListener(event: 'close', listener: () => void): this; + addListener(event: 'drain', listener: () => void): this; + addListener(event: 'error', listener: (error: Error) => void): this; + addListener(event: 'finish', listener: () => void): this; + addListener(event: 'pipe', listener: (src: stream.Readable) => void): this; + addListener(event: 'unpipe', listener: (src: stream.Readable) => void): this; + addListener(event: string | symbol, listener: (...args: any[]) => void): this; + emit(event: 'close'): boolean; + emit(event: 'drain'): boolean; + emit(event: 'error', error: Error): boolean; + emit(event: 'finish'): boolean; + emit(event: 'pipe', src: stream.Readable): boolean; + emit(event: 'unpipe', src: stream.Readable): boolean; + emit(event: string | symbol, ...args: any[]): boolean; + on(event: 'close', listener: () => void): this; + on(event: 'drain', listener: () => void): this; + on(event: 'error', listener: (error: Error) => void): this; + on(event: 'finish', listener: () => void): this; + on(event: 'pipe', listener: (src: stream.Readable) => void): this; + on(event: 'unpipe', listener: (src: stream.Readable) => void): this; + on(event: string | symbol, listener: (...args: any[]) => void): this; + once(event: 'close', listener: () => void): this; + once(event: 'drain', listener: () => void): this; + once(event: 'error', listener: (error: Error) => void): this; + once(event: 'finish', listener: () => void): this; + once(event: 'pipe', listener: (src: stream.Readable) => void): this; + once(event: 'unpipe', listener: (src: stream.Readable) => void): this; + once(event: string | symbol, listener: (...args: any[]) => void): this; + prependListener(event: 'close', listener: () => void): this; + prependListener(event: 'drain', listener: () => void): this; + prependListener(event: 'error', listener: (error: Error) => void): this; + prependListener(event: 'finish', listener: () => void): this; + prependListener(event: 'pipe', listener: (src: stream.Readable) => void): this; + prependListener(event: 'unpipe', listener: (src: stream.Readable) => void): this; + prependListener(event: string | symbol, listener: (...args: any[]) => void): this; + prependOnceListener(event: 'close', listener: () => void): this; + prependOnceListener(event: 'drain', listener: () => void): this; + prependOnceListener(event: 'error', listener: (error: Error) => void): this; + prependOnceListener(event: 'finish', listener: () => void): this; + prependOnceListener(event: 'pipe', listener: (src: stream.Readable) => void): this; + prependOnceListener(event: 'unpipe', listener: (src: stream.Readable) => void): this; + prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this; + } + export namespace constants { + const NGHTTP2_SESSION_SERVER: number; + const NGHTTP2_SESSION_CLIENT: number; + const NGHTTP2_STREAM_STATE_IDLE: number; + const NGHTTP2_STREAM_STATE_OPEN: number; + const NGHTTP2_STREAM_STATE_RESERVED_LOCAL: number; + const NGHTTP2_STREAM_STATE_RESERVED_REMOTE: number; + const NGHTTP2_STREAM_STATE_HALF_CLOSED_LOCAL: number; + const NGHTTP2_STREAM_STATE_HALF_CLOSED_REMOTE: number; + const NGHTTP2_STREAM_STATE_CLOSED: number; + const NGHTTP2_NO_ERROR: number; + const NGHTTP2_PROTOCOL_ERROR: number; + const NGHTTP2_INTERNAL_ERROR: number; + const NGHTTP2_FLOW_CONTROL_ERROR: number; + const NGHTTP2_SETTINGS_TIMEOUT: number; + const NGHTTP2_STREAM_CLOSED: number; + const NGHTTP2_FRAME_SIZE_ERROR: number; + const NGHTTP2_REFUSED_STREAM: number; + const NGHTTP2_CANCEL: number; + const NGHTTP2_COMPRESSION_ERROR: number; + const NGHTTP2_CONNECT_ERROR: number; + const NGHTTP2_ENHANCE_YOUR_CALM: number; + const NGHTTP2_INADEQUATE_SECURITY: number; + const NGHTTP2_HTTP_1_1_REQUIRED: number; + const NGHTTP2_ERR_FRAME_SIZE_ERROR: number; + const NGHTTP2_FLAG_NONE: number; + const NGHTTP2_FLAG_END_STREAM: number; + const NGHTTP2_FLAG_END_HEADERS: number; + const NGHTTP2_FLAG_ACK: number; + const NGHTTP2_FLAG_PADDED: number; + const NGHTTP2_FLAG_PRIORITY: number; + const DEFAULT_SETTINGS_HEADER_TABLE_SIZE: number; + const DEFAULT_SETTINGS_ENABLE_PUSH: number; + const DEFAULT_SETTINGS_INITIAL_WINDOW_SIZE: number; + const DEFAULT_SETTINGS_MAX_FRAME_SIZE: number; + const MAX_MAX_FRAME_SIZE: number; + const MIN_MAX_FRAME_SIZE: number; + const MAX_INITIAL_WINDOW_SIZE: number; + const NGHTTP2_DEFAULT_WEIGHT: number; + const NGHTTP2_SETTINGS_HEADER_TABLE_SIZE: number; + const NGHTTP2_SETTINGS_ENABLE_PUSH: number; + const NGHTTP2_SETTINGS_MAX_CONCURRENT_STREAMS: number; + const NGHTTP2_SETTINGS_INITIAL_WINDOW_SIZE: number; + const NGHTTP2_SETTINGS_MAX_FRAME_SIZE: number; + const NGHTTP2_SETTINGS_MAX_HEADER_LIST_SIZE: number; + const PADDING_STRATEGY_NONE: number; + const PADDING_STRATEGY_MAX: number; + const PADDING_STRATEGY_CALLBACK: number; + const HTTP2_HEADER_STATUS: string; + const HTTP2_HEADER_METHOD: string; + const HTTP2_HEADER_AUTHORITY: string; + const HTTP2_HEADER_SCHEME: string; + const HTTP2_HEADER_PATH: string; + const HTTP2_HEADER_ACCEPT_CHARSET: string; + const HTTP2_HEADER_ACCEPT_ENCODING: string; + const HTTP2_HEADER_ACCEPT_LANGUAGE: string; + const HTTP2_HEADER_ACCEPT_RANGES: string; + const HTTP2_HEADER_ACCEPT: string; + const HTTP2_HEADER_ACCESS_CONTROL_ALLOW_ORIGIN: string; + const HTTP2_HEADER_AGE: string; + const HTTP2_HEADER_ALLOW: string; + const HTTP2_HEADER_AUTHORIZATION: string; + const HTTP2_HEADER_CACHE_CONTROL: string; + const HTTP2_HEADER_CONNECTION: string; + const HTTP2_HEADER_CONTENT_DISPOSITION: string; + const HTTP2_HEADER_CONTENT_ENCODING: string; + const HTTP2_HEADER_CONTENT_LANGUAGE: string; + const HTTP2_HEADER_CONTENT_LENGTH: string; + const HTTP2_HEADER_CONTENT_LOCATION: string; + const HTTP2_HEADER_CONTENT_MD5: string; + const HTTP2_HEADER_CONTENT_RANGE: string; + const HTTP2_HEADER_CONTENT_TYPE: string; + const HTTP2_HEADER_COOKIE: string; + const HTTP2_HEADER_DATE: string; + const HTTP2_HEADER_ETAG: string; + const HTTP2_HEADER_EXPECT: string; + const HTTP2_HEADER_EXPIRES: string; + const HTTP2_HEADER_FROM: string; + const HTTP2_HEADER_HOST: string; + const HTTP2_HEADER_IF_MATCH: string; + const HTTP2_HEADER_IF_MODIFIED_SINCE: string; + const HTTP2_HEADER_IF_NONE_MATCH: string; + const HTTP2_HEADER_IF_RANGE: string; + const HTTP2_HEADER_IF_UNMODIFIED_SINCE: string; + const HTTP2_HEADER_LAST_MODIFIED: string; + const HTTP2_HEADER_LINK: string; + const HTTP2_HEADER_LOCATION: string; + const HTTP2_HEADER_MAX_FORWARDS: string; + const HTTP2_HEADER_PREFER: string; + const HTTP2_HEADER_PROXY_AUTHENTICATE: string; + const HTTP2_HEADER_PROXY_AUTHORIZATION: string; + const HTTP2_HEADER_RANGE: string; + const HTTP2_HEADER_REFERER: string; + const HTTP2_HEADER_REFRESH: string; + const HTTP2_HEADER_RETRY_AFTER: string; + const HTTP2_HEADER_SERVER: string; + const HTTP2_HEADER_SET_COOKIE: string; + const HTTP2_HEADER_STRICT_TRANSPORT_SECURITY: string; + const HTTP2_HEADER_TRANSFER_ENCODING: string; + const HTTP2_HEADER_TE: string; + const HTTP2_HEADER_UPGRADE: string; + const HTTP2_HEADER_USER_AGENT: string; + const HTTP2_HEADER_VARY: string; + const HTTP2_HEADER_VIA: string; + const HTTP2_HEADER_WWW_AUTHENTICATE: string; + const HTTP2_HEADER_HTTP2_SETTINGS: string; + const HTTP2_HEADER_KEEP_ALIVE: string; + const HTTP2_HEADER_PROXY_CONNECTION: string; + const HTTP2_METHOD_ACL: string; + const HTTP2_METHOD_BASELINE_CONTROL: string; + const HTTP2_METHOD_BIND: string; + const HTTP2_METHOD_CHECKIN: string; + const HTTP2_METHOD_CHECKOUT: string; + const HTTP2_METHOD_CONNECT: string; + const HTTP2_METHOD_COPY: string; + const HTTP2_METHOD_DELETE: string; + const HTTP2_METHOD_GET: string; + const HTTP2_METHOD_HEAD: string; + const HTTP2_METHOD_LABEL: string; + const HTTP2_METHOD_LINK: string; + const HTTP2_METHOD_LOCK: string; + const HTTP2_METHOD_MERGE: string; + const HTTP2_METHOD_MKACTIVITY: string; + const HTTP2_METHOD_MKCALENDAR: string; + const HTTP2_METHOD_MKCOL: string; + const HTTP2_METHOD_MKREDIRECTREF: string; + const HTTP2_METHOD_MKWORKSPACE: string; + const HTTP2_METHOD_MOVE: string; + const HTTP2_METHOD_OPTIONS: string; + const HTTP2_METHOD_ORDERPATCH: string; + const HTTP2_METHOD_PATCH: string; + const HTTP2_METHOD_POST: string; + const HTTP2_METHOD_PRI: string; + const HTTP2_METHOD_PROPFIND: string; + const HTTP2_METHOD_PROPPATCH: string; + const HTTP2_METHOD_PUT: string; + const HTTP2_METHOD_REBIND: string; + const HTTP2_METHOD_REPORT: string; + const HTTP2_METHOD_SEARCH: string; + const HTTP2_METHOD_TRACE: string; + const HTTP2_METHOD_UNBIND: string; + const HTTP2_METHOD_UNCHECKOUT: string; + const HTTP2_METHOD_UNLINK: string; + const HTTP2_METHOD_UNLOCK: string; + const HTTP2_METHOD_UPDATE: string; + const HTTP2_METHOD_UPDATEREDIRECTREF: string; + const HTTP2_METHOD_VERSION_CONTROL: string; + const HTTP_STATUS_CONTINUE: number; + const HTTP_STATUS_SWITCHING_PROTOCOLS: number; + const HTTP_STATUS_PROCESSING: number; + const HTTP_STATUS_OK: number; + const HTTP_STATUS_CREATED: number; + const HTTP_STATUS_ACCEPTED: number; + const HTTP_STATUS_NON_AUTHORITATIVE_INFORMATION: number; + const HTTP_STATUS_NO_CONTENT: number; + const HTTP_STATUS_RESET_CONTENT: number; + const HTTP_STATUS_PARTIAL_CONTENT: number; + const HTTP_STATUS_MULTI_STATUS: number; + const HTTP_STATUS_ALREADY_REPORTED: number; + const HTTP_STATUS_IM_USED: number; + const HTTP_STATUS_MULTIPLE_CHOICES: number; + const HTTP_STATUS_MOVED_PERMANENTLY: number; + const HTTP_STATUS_FOUND: number; + const HTTP_STATUS_SEE_OTHER: number; + const HTTP_STATUS_NOT_MODIFIED: number; + const HTTP_STATUS_USE_PROXY: number; + const HTTP_STATUS_TEMPORARY_REDIRECT: number; + const HTTP_STATUS_PERMANENT_REDIRECT: number; + const HTTP_STATUS_BAD_REQUEST: number; + const HTTP_STATUS_UNAUTHORIZED: number; + const HTTP_STATUS_PAYMENT_REQUIRED: number; + const HTTP_STATUS_FORBIDDEN: number; + const HTTP_STATUS_NOT_FOUND: number; + const HTTP_STATUS_METHOD_NOT_ALLOWED: number; + const HTTP_STATUS_NOT_ACCEPTABLE: number; + const HTTP_STATUS_PROXY_AUTHENTICATION_REQUIRED: number; + const HTTP_STATUS_REQUEST_TIMEOUT: number; + const HTTP_STATUS_CONFLICT: number; + const HTTP_STATUS_GONE: number; + const HTTP_STATUS_LENGTH_REQUIRED: number; + const HTTP_STATUS_PRECONDITION_FAILED: number; + const HTTP_STATUS_PAYLOAD_TOO_LARGE: number; + const HTTP_STATUS_URI_TOO_LONG: number; + const HTTP_STATUS_UNSUPPORTED_MEDIA_TYPE: number; + const HTTP_STATUS_RANGE_NOT_SATISFIABLE: number; + const HTTP_STATUS_EXPECTATION_FAILED: number; + const HTTP_STATUS_TEAPOT: number; + const HTTP_STATUS_MISDIRECTED_REQUEST: number; + const HTTP_STATUS_UNPROCESSABLE_ENTITY: number; + const HTTP_STATUS_LOCKED: number; + const HTTP_STATUS_FAILED_DEPENDENCY: number; + const HTTP_STATUS_UNORDERED_COLLECTION: number; + const HTTP_STATUS_UPGRADE_REQUIRED: number; + const HTTP_STATUS_PRECONDITION_REQUIRED: number; + const HTTP_STATUS_TOO_MANY_REQUESTS: number; + const HTTP_STATUS_REQUEST_HEADER_FIELDS_TOO_LARGE: number; + const HTTP_STATUS_UNAVAILABLE_FOR_LEGAL_REASONS: number; + const HTTP_STATUS_INTERNAL_SERVER_ERROR: number; + const HTTP_STATUS_NOT_IMPLEMENTED: number; + const HTTP_STATUS_BAD_GATEWAY: number; + const HTTP_STATUS_SERVICE_UNAVAILABLE: number; + const HTTP_STATUS_GATEWAY_TIMEOUT: number; + const HTTP_STATUS_HTTP_VERSION_NOT_SUPPORTED: number; + const HTTP_STATUS_VARIANT_ALSO_NEGOTIATES: number; + const HTTP_STATUS_INSUFFICIENT_STORAGE: number; + const HTTP_STATUS_LOOP_DETECTED: number; + const HTTP_STATUS_BANDWIDTH_LIMIT_EXCEEDED: number; + const HTTP_STATUS_NOT_EXTENDED: number; + const HTTP_STATUS_NETWORK_AUTHENTICATION_REQUIRED: number; + } + /** + * This symbol can be set as a property on the HTTP/2 headers object with + * an array value in order to provide a list of headers considered sensitive. + */ + export const sensitiveHeaders: symbol; + /** + * Returns an object containing the default settings for an `Http2Session`instance. This method returns a new object instance every time it is called + * so instances returned may be safely modified for use. + * @since v8.4.0 + */ + export function getDefaultSettings(): Settings; + /** + * Returns a `Buffer` instance containing serialized representation of the given + * HTTP/2 settings as specified in the [HTTP/2](https://tools.ietf.org/html/rfc7540) specification. This is intended + * for use with the `HTTP2-Settings` header field. + * + * ```js + * const http2 = require('http2'); + * + * const packed = http2.getPackedSettings({ enablePush: false }); + * + * console.log(packed.toString('base64')); + * // Prints: AAIAAAAA + * ``` + * @since v8.4.0 + */ + export function getPackedSettings(settings: Settings): Buffer; + /** + * Returns a `HTTP/2 Settings Object` containing the deserialized settings from + * the given `Buffer` as generated by `http2.getPackedSettings()`. + * @since v8.4.0 + * @param buf The packed settings. + */ + export function getUnpackedSettings(buf: Uint8Array): Settings; + /** + * Returns a `net.Server` instance that creates and manages `Http2Session`instances. + * + * Since there are no browsers known that support [unencrypted HTTP/2](https://http2.github.io/faq/#does-http2-require-encryption), the use of {@link createSecureServer} is necessary when + * communicating + * with browser clients. + * + * ```js + * const http2 = require('http2'); + * + * // Create an unencrypted HTTP/2 server. + * // Since there are no browsers known that support + * // unencrypted HTTP/2, the use of `http2.createSecureServer()` + * // is necessary when communicating with browser clients. + * const server = http2.createServer(); + * + * server.on('stream', (stream, headers) => { + * stream.respond({ + * 'content-type': 'text/html; charset=utf-8', + * ':status': 200 + * }); + * stream.end('

Hello World

'); + * }); + * + * server.listen(80); + * ``` + * @since v8.4.0 + * @param onRequestHandler See `Compatibility API` + */ + export function createServer(onRequestHandler?: (request: Http2ServerRequest, response: Http2ServerResponse) => void): Http2Server; + export function createServer(options: ServerOptions, onRequestHandler?: (request: Http2ServerRequest, response: Http2ServerResponse) => void): Http2Server; + /** + * Returns a `tls.Server` instance that creates and manages `Http2Session`instances. + * + * ```js + * const http2 = require('http2'); + * const fs = require('fs'); + * + * const options = { + * key: fs.readFileSync('server-key.pem'), + * cert: fs.readFileSync('server-cert.pem') + * }; + * + * // Create a secure HTTP/2 server + * const server = http2.createSecureServer(options); + * + * server.on('stream', (stream, headers) => { + * stream.respond({ + * 'content-type': 'text/html; charset=utf-8', + * ':status': 200 + * }); + * stream.end('

Hello World

'); + * }); + * + * server.listen(80); + * ``` + * @since v8.4.0 + * @param onRequestHandler See `Compatibility API` + */ + export function createSecureServer(onRequestHandler?: (request: Http2ServerRequest, response: Http2ServerResponse) => void): Http2SecureServer; + export function createSecureServer(options: SecureServerOptions, onRequestHandler?: (request: Http2ServerRequest, response: Http2ServerResponse) => void): Http2SecureServer; + /** + * Returns a `ClientHttp2Session` instance. + * + * ```js + * const http2 = require('http2'); + * const client = http2.connect('https://localhost:1234'); + * + * // Use the client + * + * client.close(); + * ``` + * @since v8.4.0 + * @param authority The remote HTTP/2 server to connect to. This must be in the form of a minimal, valid URL with the `http://` or `https://` prefix, host name, and IP port (if a non-default port + * is used). Userinfo (user ID and password), path, querystring, and fragment details in the URL will be ignored. + * @param listener Will be registered as a one-time listener of the {@link 'connect'} event. + */ + export function connect(authority: string | url.URL, listener: (session: ClientHttp2Session, socket: net.Socket | tls.TLSSocket) => void): ClientHttp2Session; + export function connect( + authority: string | url.URL, + options?: ClientSessionOptions | SecureClientSessionOptions, + listener?: (session: ClientHttp2Session, socket: net.Socket | tls.TLSSocket) => void + ): ClientHttp2Session; +} +declare module 'node:http2' { + export * from 'http2'; +} diff --git a/node_modules/@types/node/https.d.ts b/node_modules/@types/node/https.d.ts new file mode 100644 index 000000000..aae4a9584 --- /dev/null +++ b/node_modules/@types/node/https.d.ts @@ -0,0 +1,541 @@ +/** + * HTTPS is the HTTP protocol over TLS/SSL. In Node.js this is implemented as a + * separate module. + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/https.js) + */ +declare module 'https' { + import { Duplex } from 'node:stream'; + import * as tls from 'node:tls'; + import * as http from 'node:http'; + import { URL } from 'node:url'; + type ServerOptions< + Request extends typeof http.IncomingMessage = typeof http.IncomingMessage, + Response extends typeof http.ServerResponse = typeof http.ServerResponse, + > = tls.SecureContextOptions & tls.TlsOptions & http.ServerOptions; + type RequestOptions = http.RequestOptions & + tls.SecureContextOptions & { + rejectUnauthorized?: boolean | undefined; // Defaults to true + servername?: string | undefined; // SNI TLS Extension + }; + interface AgentOptions extends http.AgentOptions, tls.ConnectionOptions { + rejectUnauthorized?: boolean | undefined; + maxCachedSessions?: number | undefined; + } + /** + * An `Agent` object for HTTPS similar to `http.Agent`. See {@link request} for more information. + * @since v0.4.5 + */ + class Agent extends http.Agent { + constructor(options?: AgentOptions); + options: AgentOptions; + } + interface Server< + Request extends typeof http.IncomingMessage = typeof http.IncomingMessage, + Response extends typeof http.ServerResponse = typeof http.ServerResponse, + > extends http.Server {} + /** + * See `http.Server` for more information. + * @since v0.3.4 + */ + class Server< + Request extends typeof http.IncomingMessage = typeof http.IncomingMessage, + Response extends typeof http.ServerResponse = typeof http.ServerResponse, + > extends tls.Server { + constructor(requestListener?: http.RequestListener); + constructor( + options: ServerOptions, + requestListener?: http.RequestListener, + ); + /** + * Closes all connections connected to this server. + * @since v18.2.0 + */ + closeAllConnections(): void; + /** + * Closes all connections connected to this server which are not sending a request or waiting for a response. + * @since v18.2.0 + */ + closeIdleConnections(): void; + addListener(event: string, listener: (...args: any[]) => void): this; + addListener(event: 'keylog', listener: (line: Buffer, tlsSocket: tls.TLSSocket) => void): this; + addListener( + event: 'newSession', + listener: (sessionId: Buffer, sessionData: Buffer, callback: (err: Error, resp: Buffer) => void) => void, + ): this; + addListener( + event: 'OCSPRequest', + listener: ( + certificate: Buffer, + issuer: Buffer, + callback: (err: Error | null, resp: Buffer) => void, + ) => void, + ): this; + addListener( + event: 'resumeSession', + listener: (sessionId: Buffer, callback: (err: Error, sessionData: Buffer) => void) => void, + ): this; + addListener(event: 'secureConnection', listener: (tlsSocket: tls.TLSSocket) => void): this; + addListener(event: 'tlsClientError', listener: (err: Error, tlsSocket: tls.TLSSocket) => void): this; + addListener(event: 'close', listener: () => void): this; + addListener(event: 'connection', listener: (socket: Duplex) => void): this; + addListener(event: 'error', listener: (err: Error) => void): this; + addListener(event: 'listening', listener: () => void): this; + addListener(event: 'checkContinue', listener: http.RequestListener): this; + addListener(event: 'checkExpectation', listener: http.RequestListener): this; + addListener(event: 'clientError', listener: (err: Error, socket: Duplex) => void): this; + addListener( + event: 'connect', + listener: (req: InstanceType, socket: Duplex, head: Buffer) => void, + ): this; + addListener(event: 'request', listener: http.RequestListener): this; + addListener( + event: 'upgrade', + listener: (req: InstanceType, socket: Duplex, head: Buffer) => void, + ): this; + emit(event: string, ...args: any[]): boolean; + emit(event: 'keylog', line: Buffer, tlsSocket: tls.TLSSocket): boolean; + emit( + event: 'newSession', + sessionId: Buffer, + sessionData: Buffer, + callback: (err: Error, resp: Buffer) => void, + ): boolean; + emit( + event: 'OCSPRequest', + certificate: Buffer, + issuer: Buffer, + callback: (err: Error | null, resp: Buffer) => void, + ): boolean; + emit(event: 'resumeSession', sessionId: Buffer, callback: (err: Error, sessionData: Buffer) => void): boolean; + emit(event: 'secureConnection', tlsSocket: tls.TLSSocket): boolean; + emit(event: 'tlsClientError', err: Error, tlsSocket: tls.TLSSocket): boolean; + emit(event: 'close'): boolean; + emit(event: 'connection', socket: Duplex): boolean; + emit(event: 'error', err: Error): boolean; + emit(event: 'listening'): boolean; + emit( + event: 'checkContinue', + req: InstanceType, + res: InstanceType & { req: InstanceType }, + ): boolean; + emit( + event: 'checkExpectation', + req: InstanceType, + res: InstanceType & { req: InstanceType }, + ): boolean; + emit(event: 'clientError', err: Error, socket: Duplex): boolean; + emit(event: 'connect', req: InstanceType, socket: Duplex, head: Buffer): boolean; + emit( + event: 'request', + req: InstanceType, + res: InstanceType & { req: InstanceType }, + ): boolean; + emit(event: 'upgrade', req: InstanceType, socket: Duplex, head: Buffer): boolean; + on(event: string, listener: (...args: any[]) => void): this; + on(event: 'keylog', listener: (line: Buffer, tlsSocket: tls.TLSSocket) => void): this; + on( + event: 'newSession', + listener: (sessionId: Buffer, sessionData: Buffer, callback: (err: Error, resp: Buffer) => void) => void, + ): this; + on( + event: 'OCSPRequest', + listener: ( + certificate: Buffer, + issuer: Buffer, + callback: (err: Error | null, resp: Buffer) => void, + ) => void, + ): this; + on( + event: 'resumeSession', + listener: (sessionId: Buffer, callback: (err: Error, sessionData: Buffer) => void) => void, + ): this; + on(event: 'secureConnection', listener: (tlsSocket: tls.TLSSocket) => void): this; + on(event: 'tlsClientError', listener: (err: Error, tlsSocket: tls.TLSSocket) => void): this; + on(event: 'close', listener: () => void): this; + on(event: 'connection', listener: (socket: Duplex) => void): this; + on(event: 'error', listener: (err: Error) => void): this; + on(event: 'listening', listener: () => void): this; + on(event: 'checkContinue', listener: http.RequestListener): this; + on(event: 'checkExpectation', listener: http.RequestListener): this; + on(event: 'clientError', listener: (err: Error, socket: Duplex) => void): this; + on(event: 'connect', listener: (req: InstanceType, socket: Duplex, head: Buffer) => void): this; + on(event: 'request', listener: http.RequestListener): this; + on(event: 'upgrade', listener: (req: InstanceType, socket: Duplex, head: Buffer) => void): this; + once(event: string, listener: (...args: any[]) => void): this; + once(event: 'keylog', listener: (line: Buffer, tlsSocket: tls.TLSSocket) => void): this; + once( + event: 'newSession', + listener: (sessionId: Buffer, sessionData: Buffer, callback: (err: Error, resp: Buffer) => void) => void, + ): this; + once( + event: 'OCSPRequest', + listener: ( + certificate: Buffer, + issuer: Buffer, + callback: (err: Error | null, resp: Buffer) => void, + ) => void, + ): this; + once( + event: 'resumeSession', + listener: (sessionId: Buffer, callback: (err: Error, sessionData: Buffer) => void) => void, + ): this; + once(event: 'secureConnection', listener: (tlsSocket: tls.TLSSocket) => void): this; + once(event: 'tlsClientError', listener: (err: Error, tlsSocket: tls.TLSSocket) => void): this; + once(event: 'close', listener: () => void): this; + once(event: 'connection', listener: (socket: Duplex) => void): this; + once(event: 'error', listener: (err: Error) => void): this; + once(event: 'listening', listener: () => void): this; + once(event: 'checkContinue', listener: http.RequestListener): this; + once(event: 'checkExpectation', listener: http.RequestListener): this; + once(event: 'clientError', listener: (err: Error, socket: Duplex) => void): this; + once(event: 'connect', listener: (req: InstanceType, socket: Duplex, head: Buffer) => void): this; + once(event: 'request', listener: http.RequestListener): this; + once(event: 'upgrade', listener: (req: InstanceType, socket: Duplex, head: Buffer) => void): this; + prependListener(event: string, listener: (...args: any[]) => void): this; + prependListener(event: 'keylog', listener: (line: Buffer, tlsSocket: tls.TLSSocket) => void): this; + prependListener( + event: 'newSession', + listener: (sessionId: Buffer, sessionData: Buffer, callback: (err: Error, resp: Buffer) => void) => void, + ): this; + prependListener( + event: 'OCSPRequest', + listener: ( + certificate: Buffer, + issuer: Buffer, + callback: (err: Error | null, resp: Buffer) => void, + ) => void, + ): this; + prependListener( + event: 'resumeSession', + listener: (sessionId: Buffer, callback: (err: Error, sessionData: Buffer) => void) => void, + ): this; + prependListener(event: 'secureConnection', listener: (tlsSocket: tls.TLSSocket) => void): this; + prependListener(event: 'tlsClientError', listener: (err: Error, tlsSocket: tls.TLSSocket) => void): this; + prependListener(event: 'close', listener: () => void): this; + prependListener(event: 'connection', listener: (socket: Duplex) => void): this; + prependListener(event: 'error', listener: (err: Error) => void): this; + prependListener(event: 'listening', listener: () => void): this; + prependListener(event: 'checkContinue', listener: http.RequestListener): this; + prependListener(event: 'checkExpectation', listener: http.RequestListener): this; + prependListener(event: 'clientError', listener: (err: Error, socket: Duplex) => void): this; + prependListener( + event: 'connect', + listener: (req: InstanceType, socket: Duplex, head: Buffer) => void, + ): this; + prependListener(event: 'request', listener: http.RequestListener): this; + prependListener( + event: 'upgrade', + listener: (req: InstanceType, socket: Duplex, head: Buffer) => void, + ): this; + prependOnceListener(event: string, listener: (...args: any[]) => void): this; + prependOnceListener(event: 'keylog', listener: (line: Buffer, tlsSocket: tls.TLSSocket) => void): this; + prependOnceListener( + event: 'newSession', + listener: (sessionId: Buffer, sessionData: Buffer, callback: (err: Error, resp: Buffer) => void) => void, + ): this; + prependOnceListener( + event: 'OCSPRequest', + listener: ( + certificate: Buffer, + issuer: Buffer, + callback: (err: Error | null, resp: Buffer) => void, + ) => void, + ): this; + prependOnceListener( + event: 'resumeSession', + listener: (sessionId: Buffer, callback: (err: Error, sessionData: Buffer) => void) => void, + ): this; + prependOnceListener(event: 'secureConnection', listener: (tlsSocket: tls.TLSSocket) => void): this; + prependOnceListener(event: 'tlsClientError', listener: (err: Error, tlsSocket: tls.TLSSocket) => void): this; + prependOnceListener(event: 'close', listener: () => void): this; + prependOnceListener(event: 'connection', listener: (socket: Duplex) => void): this; + prependOnceListener(event: 'error', listener: (err: Error) => void): this; + prependOnceListener(event: 'listening', listener: () => void): this; + prependOnceListener(event: 'checkContinue', listener: http.RequestListener): this; + prependOnceListener(event: 'checkExpectation', listener: http.RequestListener): this; + prependOnceListener(event: 'clientError', listener: (err: Error, socket: Duplex) => void): this; + prependOnceListener( + event: 'connect', + listener: (req: InstanceType, socket: Duplex, head: Buffer) => void, + ): this; + prependOnceListener(event: 'request', listener: http.RequestListener): this; + prependOnceListener( + event: 'upgrade', + listener: (req: InstanceType, socket: Duplex, head: Buffer) => void, + ): this; + } + /** + * ```js + * // curl -k https://localhost:8000/ + * const https = require('https'); + * const fs = require('fs'); + * + * const options = { + * key: fs.readFileSync('test/fixtures/keys/agent2-key.pem'), + * cert: fs.readFileSync('test/fixtures/keys/agent2-cert.pem') + * }; + * + * https.createServer(options, (req, res) => { + * res.writeHead(200); + * res.end('hello world\n'); + * }).listen(8000); + * ``` + * + * Or + * + * ```js + * const https = require('https'); + * const fs = require('fs'); + * + * const options = { + * pfx: fs.readFileSync('test/fixtures/test_cert.pfx'), + * passphrase: 'sample' + * }; + * + * https.createServer(options, (req, res) => { + * res.writeHead(200); + * res.end('hello world\n'); + * }).listen(8000); + * ``` + * @since v0.3.4 + * @param options Accepts `options` from `createServer`, `createSecureContext` and `createServer`. + * @param requestListener A listener to be added to the `'request'` event. + */ + function createServer< + Request extends typeof http.IncomingMessage = typeof http.IncomingMessage, + Response extends typeof http.ServerResponse = typeof http.ServerResponse, + >(requestListener?: http.RequestListener): Server; + function createServer< + Request extends typeof http.IncomingMessage = typeof http.IncomingMessage, + Response extends typeof http.ServerResponse = typeof http.ServerResponse, + >( + options: ServerOptions, + requestListener?: http.RequestListener, + ): Server; + /** + * Makes a request to a secure web server. + * + * The following additional `options` from `tls.connect()` are also accepted:`ca`, `cert`, `ciphers`, `clientCertEngine`, `crl`, `dhparam`, `ecdhCurve`,`honorCipherOrder`, `key`, `passphrase`, + * `pfx`, `rejectUnauthorized`,`secureOptions`, `secureProtocol`, `servername`, `sessionIdContext`,`highWaterMark`. + * + * `options` can be an object, a string, or a `URL` object. If `options` is a + * string, it is automatically parsed with `new URL()`. If it is a `URL` object, it will be automatically converted to an ordinary `options` object. + * + * `https.request()` returns an instance of the `http.ClientRequest` class. The `ClientRequest` instance is a writable stream. If one needs to + * upload a file with a POST request, then write to the `ClientRequest` object. + * + * ```js + * const https = require('https'); + * + * const options = { + * hostname: 'encrypted.google.com', + * port: 443, + * path: '/', + * method: 'GET' + * }; + * + * const req = https.request(options, (res) => { + * console.log('statusCode:', res.statusCode); + * console.log('headers:', res.headers); + * + * res.on('data', (d) => { + * process.stdout.write(d); + * }); + * }); + * + * req.on('error', (e) => { + * console.error(e); + * }); + * req.end(); + * ``` + * + * Example using options from `tls.connect()`: + * + * ```js + * const options = { + * hostname: 'encrypted.google.com', + * port: 443, + * path: '/', + * method: 'GET', + * key: fs.readFileSync('test/fixtures/keys/agent2-key.pem'), + * cert: fs.readFileSync('test/fixtures/keys/agent2-cert.pem') + * }; + * options.agent = new https.Agent(options); + * + * const req = https.request(options, (res) => { + * // ... + * }); + * ``` + * + * Alternatively, opt out of connection pooling by not using an `Agent`. + * + * ```js + * const options = { + * hostname: 'encrypted.google.com', + * port: 443, + * path: '/', + * method: 'GET', + * key: fs.readFileSync('test/fixtures/keys/agent2-key.pem'), + * cert: fs.readFileSync('test/fixtures/keys/agent2-cert.pem'), + * agent: false + * }; + * + * const req = https.request(options, (res) => { + * // ... + * }); + * ``` + * + * Example using a `URL` as `options`: + * + * ```js + * const options = new URL('https://abc:xyz@example.com'); + * + * const req = https.request(options, (res) => { + * // ... + * }); + * ``` + * + * Example pinning on certificate fingerprint, or the public key (similar to`pin-sha256`): + * + * ```js + * const tls = require('tls'); + * const https = require('https'); + * const crypto = require('crypto'); + * + * function sha256(s) { + * return crypto.createHash('sha256').update(s).digest('base64'); + * } + * const options = { + * hostname: 'github.com', + * port: 443, + * path: '/', + * method: 'GET', + * checkServerIdentity: function(host, cert) { + * // Make sure the certificate is issued to the host we are connected to + * const err = tls.checkServerIdentity(host, cert); + * if (err) { + * return err; + * } + * + * // Pin the public key, similar to HPKP pin-sha25 pinning + * const pubkey256 = 'pL1+qb9HTMRZJmuC/bB/ZI9d302BYrrqiVuRyW+DGrU='; + * if (sha256(cert.pubkey) !== pubkey256) { + * const msg = 'Certificate verification error: ' + + * `The public key of '${cert.subject.CN}' ` + + * 'does not match our pinned fingerprint'; + * return new Error(msg); + * } + * + * // Pin the exact certificate, rather than the pub key + * const cert256 = '25:FE:39:32:D9:63:8C:8A:FC:A1:9A:29:87:' + + * 'D8:3E:4C:1D:98:DB:71:E4:1A:48:03:98:EA:22:6A:BD:8B:93:16'; + * if (cert.fingerprint256 !== cert256) { + * const msg = 'Certificate verification error: ' + + * `The certificate of '${cert.subject.CN}' ` + + * 'does not match our pinned fingerprint'; + * return new Error(msg); + * } + * + * // This loop is informational only. + * // Print the certificate and public key fingerprints of all certs in the + * // chain. Its common to pin the public key of the issuer on the public + * // internet, while pinning the public key of the service in sensitive + * // environments. + * do { + * console.log('Subject Common Name:', cert.subject.CN); + * console.log(' Certificate SHA256 fingerprint:', cert.fingerprint256); + * + * hash = crypto.createHash('sha256'); + * console.log(' Public key ping-sha256:', sha256(cert.pubkey)); + * + * lastprint256 = cert.fingerprint256; + * cert = cert.issuerCertificate; + * } while (cert.fingerprint256 !== lastprint256); + * + * }, + * }; + * + * options.agent = new https.Agent(options); + * const req = https.request(options, (res) => { + * console.log('All OK. Server matched our pinned cert or public key'); + * console.log('statusCode:', res.statusCode); + * // Print the HPKP values + * console.log('headers:', res.headers['public-key-pins']); + * + * res.on('data', (d) => {}); + * }); + * + * req.on('error', (e) => { + * console.error(e.message); + * }); + * req.end(); + * ``` + * + * Outputs for example: + * + * ```text + * Subject Common Name: github.com + * Certificate SHA256 fingerprint: 25:FE:39:32:D9:63:8C:8A:FC:A1:9A:29:87:D8:3E:4C:1D:98:DB:71:E4:1A:48:03:98:EA:22:6A:BD:8B:93:16 + * Public key ping-sha256: pL1+qb9HTMRZJmuC/bB/ZI9d302BYrrqiVuRyW+DGrU= + * Subject Common Name: DigiCert SHA2 Extended Validation Server CA + * Certificate SHA256 fingerprint: 40:3E:06:2A:26:53:05:91:13:28:5B:AF:80:A0:D4:AE:42:2C:84:8C:9F:78:FA:D0:1F:C9:4B:C5:B8:7F:EF:1A + * Public key ping-sha256: RRM1dGqnDFsCJXBTHky16vi1obOlCgFFn/yOhI/y+ho= + * Subject Common Name: DigiCert High Assurance EV Root CA + * Certificate SHA256 fingerprint: 74:31:E5:F4:C3:C1:CE:46:90:77:4F:0B:61:E0:54:40:88:3B:A9:A0:1E:D0:0B:A6:AB:D7:80:6E:D3:B1:18:CF + * Public key ping-sha256: WoiWRyIOVNa9ihaBciRSC7XHjliYS9VwUGOIud4PB18= + * All OK. Server matched our pinned cert or public key + * statusCode: 200 + * headers: max-age=0; pin-sha256="WoiWRyIOVNa9ihaBciRSC7XHjliYS9VwUGOIud4PB18="; pin-sha256="RRM1dGqnDFsCJXBTHky16vi1obOlCgFFn/yOhI/y+ho="; + * pin-sha256="k2v657xBsOVe1PQRwOsHsw3bsGT2VzIqz5K+59sNQws="; pin-sha256="K87oWBWM9UZfyddvDfoxL+8lpNyoUB2ptGtn0fv6G2Q="; pin-sha256="IQBnNBEiFuhj+8x6X8XLgh01V9Ic5/V3IRQLNFFc7v4="; + * pin-sha256="iie1VXtL7HzAMF+/PVPR9xzT80kQxdZeJ+zduCB3uj0="; pin-sha256="LvRiGEjRqfzurezaWuj8Wie2gyHMrW5Q06LspMnox7A="; includeSubDomains + * ``` + * @since v0.3.6 + * @param options Accepts all `options` from `request`, with some differences in default values: + */ + function request( + options: RequestOptions | string | URL, + callback?: (res: http.IncomingMessage) => void, + ): http.ClientRequest; + function request( + url: string | URL, + options: RequestOptions, + callback?: (res: http.IncomingMessage) => void, + ): http.ClientRequest; + /** + * Like `http.get()` but for HTTPS. + * + * `options` can be an object, a string, or a `URL` object. If `options` is a + * string, it is automatically parsed with `new URL()`. If it is a `URL` object, it will be automatically converted to an ordinary `options` object. + * + * ```js + * const https = require('https'); + * + * https.get('https://encrypted.google.com/', (res) => { + * console.log('statusCode:', res.statusCode); + * console.log('headers:', res.headers); + * + * res.on('data', (d) => { + * process.stdout.write(d); + * }); + * + * }).on('error', (e) => { + * console.error(e); + * }); + * ``` + * @since v0.3.6 + * @param options Accepts the same `options` as {@link request}, with the `method` always set to `GET`. + */ + function get( + options: RequestOptions | string | URL, + callback?: (res: http.IncomingMessage) => void, + ): http.ClientRequest; + function get( + url: string | URL, + options: RequestOptions, + callback?: (res: http.IncomingMessage) => void, + ): http.ClientRequest; + let globalAgent: Agent; +} +declare module 'node:https' { + export * from 'https'; +} diff --git a/node_modules/@types/node/index.d.ts b/node_modules/@types/node/index.d.ts new file mode 100644 index 000000000..9a8797089 --- /dev/null +++ b/node_modules/@types/node/index.d.ts @@ -0,0 +1,133 @@ +// Type definitions for non-npm package Node.js 18.8 +// Project: https://nodejs.org/ +// Definitions by: Microsoft TypeScript +// DefinitelyTyped +// Alberto Schiabel +// Alvis HT Tang +// Andrew Makarov +// Benjamin Toueg +// Chigozirim C. +// David Junger +// Deividas Bakanas +// Eugene Y. Q. Shen +// Hannes Magnusson +// Huw +// Kelvin Jin +// Klaus Meinhardt +// Lishude +// Mariusz Wiktorczyk +// Mohsen Azimi +// Nicolas Even +// Nikita Galkin +// Parambir Singh +// Sebastian Silbermann +// Simon Schick +// Thomas den Hollander +// Wilco Bakker +// wwwy3y3 +// Samuel Ainsworth +// Kyle Uehlein +// Thanik Bhongbhibhat +// Marcin Kopacz +// Trivikram Kamat +// Junxiao Shi +// Ilia Baryshnikov +// ExE Boss +// Piotr Błażejewicz +// Anna Henningsen +// Victor Perin +// Yongsheng Zhang +// NodeJS Contributors +// Linus Unnebäck +// wafuwafu13 +// Matteo Collina +// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped + +/** + * License for programmatically and manually incorporated + * documentation aka. `JSDoc` from https://github.com/nodejs/node/tree/master/doc + * + * Copyright Node.js contributors. All rights reserved. + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to + * deal in the Software without restriction, including without limitation the + * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or + * sell copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS + * IN THE SOFTWARE. + */ + +// NOTE: These definitions support NodeJS and TypeScript 4.9+. + +// Reference required types from the default lib: +/// +/// +/// +/// + +// Base definitions for all NodeJS modules that are not specific to any version of TypeScript: +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// + +/// diff --git a/node_modules/@types/node/inspector.d.ts b/node_modules/@types/node/inspector.d.ts new file mode 100644 index 000000000..eba0b55d8 --- /dev/null +++ b/node_modules/@types/node/inspector.d.ts @@ -0,0 +1,2741 @@ +// eslint-disable-next-line dt-header +// Type definitions for inspector + +// These definitions are auto-generated. +// Please see https://github.com/DefinitelyTyped/DefinitelyTyped/pull/19330 +// for more information. + +// tslint:disable:max-line-length + +/** + * The `inspector` module provides an API for interacting with the V8 inspector. + * + * It can be accessed using: + * + * ```js + * const inspector = require('inspector'); + * ``` + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/inspector.js) + */ +declare module 'inspector' { + import EventEmitter = require('node:events'); + interface InspectorNotification { + method: string; + params: T; + } + namespace Schema { + /** + * Description of the protocol domain. + */ + interface Domain { + /** + * Domain name. + */ + name: string; + /** + * Domain version. + */ + version: string; + } + interface GetDomainsReturnType { + /** + * List of supported domains. + */ + domains: Domain[]; + } + } + namespace Runtime { + /** + * Unique script identifier. + */ + type ScriptId = string; + /** + * Unique object identifier. + */ + type RemoteObjectId = string; + /** + * Primitive value which cannot be JSON-stringified. + */ + type UnserializableValue = string; + /** + * Mirror object referencing original JavaScript object. + */ + interface RemoteObject { + /** + * Object type. + */ + type: string; + /** + * Object subtype hint. Specified for object type values only. + */ + subtype?: string | undefined; + /** + * Object class (constructor) name. Specified for object type values only. + */ + className?: string | undefined; + /** + * Remote object value in case of primitive values or JSON values (if it was requested). + */ + value?: any; + /** + * Primitive value which can not be JSON-stringified does not have value, but gets this property. + */ + unserializableValue?: UnserializableValue | undefined; + /** + * String representation of the object. + */ + description?: string | undefined; + /** + * Unique object identifier (for non-primitive values). + */ + objectId?: RemoteObjectId | undefined; + /** + * Preview containing abbreviated property values. Specified for object type values only. + * @experimental + */ + preview?: ObjectPreview | undefined; + /** + * @experimental + */ + customPreview?: CustomPreview | undefined; + } + /** + * @experimental + */ + interface CustomPreview { + header: string; + hasBody: boolean; + formatterObjectId: RemoteObjectId; + bindRemoteObjectFunctionId: RemoteObjectId; + configObjectId?: RemoteObjectId | undefined; + } + /** + * Object containing abbreviated remote object value. + * @experimental + */ + interface ObjectPreview { + /** + * Object type. + */ + type: string; + /** + * Object subtype hint. Specified for object type values only. + */ + subtype?: string | undefined; + /** + * String representation of the object. + */ + description?: string | undefined; + /** + * True iff some of the properties or entries of the original object did not fit. + */ + overflow: boolean; + /** + * List of the properties. + */ + properties: PropertyPreview[]; + /** + * List of the entries. Specified for map and set subtype values only. + */ + entries?: EntryPreview[] | undefined; + } + /** + * @experimental + */ + interface PropertyPreview { + /** + * Property name. + */ + name: string; + /** + * Object type. Accessor means that the property itself is an accessor property. + */ + type: string; + /** + * User-friendly property value string. + */ + value?: string | undefined; + /** + * Nested value preview. + */ + valuePreview?: ObjectPreview | undefined; + /** + * Object subtype hint. Specified for object type values only. + */ + subtype?: string | undefined; + } + /** + * @experimental + */ + interface EntryPreview { + /** + * Preview of the key. Specified for map-like collection entries. + */ + key?: ObjectPreview | undefined; + /** + * Preview of the value. + */ + value: ObjectPreview; + } + /** + * Object property descriptor. + */ + interface PropertyDescriptor { + /** + * Property name or symbol description. + */ + name: string; + /** + * The value associated with the property. + */ + value?: RemoteObject | undefined; + /** + * True if the value associated with the property may be changed (data descriptors only). + */ + writable?: boolean | undefined; + /** + * A function which serves as a getter for the property, or undefined if there is no getter (accessor descriptors only). + */ + get?: RemoteObject | undefined; + /** + * A function which serves as a setter for the property, or undefined if there is no setter (accessor descriptors only). + */ + set?: RemoteObject | undefined; + /** + * True if the type of this property descriptor may be changed and if the property may be deleted from the corresponding object. + */ + configurable: boolean; + /** + * True if this property shows up during enumeration of the properties on the corresponding object. + */ + enumerable: boolean; + /** + * True if the result was thrown during the evaluation. + */ + wasThrown?: boolean | undefined; + /** + * True if the property is owned for the object. + */ + isOwn?: boolean | undefined; + /** + * Property symbol object, if the property is of the symbol type. + */ + symbol?: RemoteObject | undefined; + } + /** + * Object internal property descriptor. This property isn't normally visible in JavaScript code. + */ + interface InternalPropertyDescriptor { + /** + * Conventional property name. + */ + name: string; + /** + * The value associated with the property. + */ + value?: RemoteObject | undefined; + } + /** + * Represents function call argument. Either remote object id objectId, primitive value, unserializable primitive value or neither of (for undefined) them should be specified. + */ + interface CallArgument { + /** + * Primitive value or serializable javascript object. + */ + value?: any; + /** + * Primitive value which can not be JSON-stringified. + */ + unserializableValue?: UnserializableValue | undefined; + /** + * Remote object handle. + */ + objectId?: RemoteObjectId | undefined; + } + /** + * Id of an execution context. + */ + type ExecutionContextId = number; + /** + * Description of an isolated world. + */ + interface ExecutionContextDescription { + /** + * Unique id of the execution context. It can be used to specify in which execution context script evaluation should be performed. + */ + id: ExecutionContextId; + /** + * Execution context origin. + */ + origin: string; + /** + * Human readable name describing given context. + */ + name: string; + /** + * Embedder-specific auxiliary data. + */ + auxData?: {} | undefined; + } + /** + * Detailed information about exception (or error) that was thrown during script compilation or execution. + */ + interface ExceptionDetails { + /** + * Exception id. + */ + exceptionId: number; + /** + * Exception text, which should be used together with exception object when available. + */ + text: string; + /** + * Line number of the exception location (0-based). + */ + lineNumber: number; + /** + * Column number of the exception location (0-based). + */ + columnNumber: number; + /** + * Script ID of the exception location. + */ + scriptId?: ScriptId | undefined; + /** + * URL of the exception location, to be used when the script was not reported. + */ + url?: string | undefined; + /** + * JavaScript stack trace if available. + */ + stackTrace?: StackTrace | undefined; + /** + * Exception object if available. + */ + exception?: RemoteObject | undefined; + /** + * Identifier of the context where exception happened. + */ + executionContextId?: ExecutionContextId | undefined; + } + /** + * Number of milliseconds since epoch. + */ + type Timestamp = number; + /** + * Stack entry for runtime errors and assertions. + */ + interface CallFrame { + /** + * JavaScript function name. + */ + functionName: string; + /** + * JavaScript script id. + */ + scriptId: ScriptId; + /** + * JavaScript script name or url. + */ + url: string; + /** + * JavaScript script line number (0-based). + */ + lineNumber: number; + /** + * JavaScript script column number (0-based). + */ + columnNumber: number; + } + /** + * Call frames for assertions or error messages. + */ + interface StackTrace { + /** + * String label of this stack trace. For async traces this may be a name of the function that initiated the async call. + */ + description?: string | undefined; + /** + * JavaScript function name. + */ + callFrames: CallFrame[]; + /** + * Asynchronous JavaScript stack trace that preceded this stack, if available. + */ + parent?: StackTrace | undefined; + /** + * Asynchronous JavaScript stack trace that preceded this stack, if available. + * @experimental + */ + parentId?: StackTraceId | undefined; + } + /** + * Unique identifier of current debugger. + * @experimental + */ + type UniqueDebuggerId = string; + /** + * If debuggerId is set stack trace comes from another debugger and can be resolved there. This allows to track cross-debugger calls. See Runtime.StackTrace and Debugger.paused for usages. + * @experimental + */ + interface StackTraceId { + id: string; + debuggerId?: UniqueDebuggerId | undefined; + } + interface EvaluateParameterType { + /** + * Expression to evaluate. + */ + expression: string; + /** + * Symbolic group name that can be used to release multiple objects. + */ + objectGroup?: string | undefined; + /** + * Determines whether Command Line API should be available during the evaluation. + */ + includeCommandLineAPI?: boolean | undefined; + /** + * In silent mode exceptions thrown during evaluation are not reported and do not pause execution. Overrides setPauseOnException state. + */ + silent?: boolean | undefined; + /** + * Specifies in which execution context to perform evaluation. If the parameter is omitted the evaluation will be performed in the context of the inspected page. + */ + contextId?: ExecutionContextId | undefined; + /** + * Whether the result is expected to be a JSON object that should be sent by value. + */ + returnByValue?: boolean | undefined; + /** + * Whether preview should be generated for the result. + * @experimental + */ + generatePreview?: boolean | undefined; + /** + * Whether execution should be treated as initiated by user in the UI. + */ + userGesture?: boolean | undefined; + /** + * Whether execution should await for resulting value and return once awaited promise is resolved. + */ + awaitPromise?: boolean | undefined; + } + interface AwaitPromiseParameterType { + /** + * Identifier of the promise. + */ + promiseObjectId: RemoteObjectId; + /** + * Whether the result is expected to be a JSON object that should be sent by value. + */ + returnByValue?: boolean | undefined; + /** + * Whether preview should be generated for the result. + */ + generatePreview?: boolean | undefined; + } + interface CallFunctionOnParameterType { + /** + * Declaration of the function to call. + */ + functionDeclaration: string; + /** + * Identifier of the object to call function on. Either objectId or executionContextId should be specified. + */ + objectId?: RemoteObjectId | undefined; + /** + * Call arguments. All call arguments must belong to the same JavaScript world as the target object. + */ + arguments?: CallArgument[] | undefined; + /** + * In silent mode exceptions thrown during evaluation are not reported and do not pause execution. Overrides setPauseOnException state. + */ + silent?: boolean | undefined; + /** + * Whether the result is expected to be a JSON object which should be sent by value. + */ + returnByValue?: boolean | undefined; + /** + * Whether preview should be generated for the result. + * @experimental + */ + generatePreview?: boolean | undefined; + /** + * Whether execution should be treated as initiated by user in the UI. + */ + userGesture?: boolean | undefined; + /** + * Whether execution should await for resulting value and return once awaited promise is resolved. + */ + awaitPromise?: boolean | undefined; + /** + * Specifies execution context which global object will be used to call function on. Either executionContextId or objectId should be specified. + */ + executionContextId?: ExecutionContextId | undefined; + /** + * Symbolic group name that can be used to release multiple objects. If objectGroup is not specified and objectId is, objectGroup will be inherited from object. + */ + objectGroup?: string | undefined; + } + interface GetPropertiesParameterType { + /** + * Identifier of the object to return properties for. + */ + objectId: RemoteObjectId; + /** + * If true, returns properties belonging only to the element itself, not to its prototype chain. + */ + ownProperties?: boolean | undefined; + /** + * If true, returns accessor properties (with getter/setter) only; internal properties are not returned either. + * @experimental + */ + accessorPropertiesOnly?: boolean | undefined; + /** + * Whether preview should be generated for the results. + * @experimental + */ + generatePreview?: boolean | undefined; + } + interface ReleaseObjectParameterType { + /** + * Identifier of the object to release. + */ + objectId: RemoteObjectId; + } + interface ReleaseObjectGroupParameterType { + /** + * Symbolic object group name. + */ + objectGroup: string; + } + interface SetCustomObjectFormatterEnabledParameterType { + enabled: boolean; + } + interface CompileScriptParameterType { + /** + * Expression to compile. + */ + expression: string; + /** + * Source url to be set for the script. + */ + sourceURL: string; + /** + * Specifies whether the compiled script should be persisted. + */ + persistScript: boolean; + /** + * Specifies in which execution context to perform script run. If the parameter is omitted the evaluation will be performed in the context of the inspected page. + */ + executionContextId?: ExecutionContextId | undefined; + } + interface RunScriptParameterType { + /** + * Id of the script to run. + */ + scriptId: ScriptId; + /** + * Specifies in which execution context to perform script run. If the parameter is omitted the evaluation will be performed in the context of the inspected page. + */ + executionContextId?: ExecutionContextId | undefined; + /** + * Symbolic group name that can be used to release multiple objects. + */ + objectGroup?: string | undefined; + /** + * In silent mode exceptions thrown during evaluation are not reported and do not pause execution. Overrides setPauseOnException state. + */ + silent?: boolean | undefined; + /** + * Determines whether Command Line API should be available during the evaluation. + */ + includeCommandLineAPI?: boolean | undefined; + /** + * Whether the result is expected to be a JSON object which should be sent by value. + */ + returnByValue?: boolean | undefined; + /** + * Whether preview should be generated for the result. + */ + generatePreview?: boolean | undefined; + /** + * Whether execution should await for resulting value and return once awaited promise is resolved. + */ + awaitPromise?: boolean | undefined; + } + interface QueryObjectsParameterType { + /** + * Identifier of the prototype to return objects for. + */ + prototypeObjectId: RemoteObjectId; + } + interface GlobalLexicalScopeNamesParameterType { + /** + * Specifies in which execution context to lookup global scope variables. + */ + executionContextId?: ExecutionContextId | undefined; + } + interface EvaluateReturnType { + /** + * Evaluation result. + */ + result: RemoteObject; + /** + * Exception details. + */ + exceptionDetails?: ExceptionDetails | undefined; + } + interface AwaitPromiseReturnType { + /** + * Promise result. Will contain rejected value if promise was rejected. + */ + result: RemoteObject; + /** + * Exception details if stack strace is available. + */ + exceptionDetails?: ExceptionDetails | undefined; + } + interface CallFunctionOnReturnType { + /** + * Call result. + */ + result: RemoteObject; + /** + * Exception details. + */ + exceptionDetails?: ExceptionDetails | undefined; + } + interface GetPropertiesReturnType { + /** + * Object properties. + */ + result: PropertyDescriptor[]; + /** + * Internal object properties (only of the element itself). + */ + internalProperties?: InternalPropertyDescriptor[] | undefined; + /** + * Exception details. + */ + exceptionDetails?: ExceptionDetails | undefined; + } + interface CompileScriptReturnType { + /** + * Id of the script. + */ + scriptId?: ScriptId | undefined; + /** + * Exception details. + */ + exceptionDetails?: ExceptionDetails | undefined; + } + interface RunScriptReturnType { + /** + * Run result. + */ + result: RemoteObject; + /** + * Exception details. + */ + exceptionDetails?: ExceptionDetails | undefined; + } + interface QueryObjectsReturnType { + /** + * Array with objects. + */ + objects: RemoteObject; + } + interface GlobalLexicalScopeNamesReturnType { + names: string[]; + } + interface ExecutionContextCreatedEventDataType { + /** + * A newly created execution context. + */ + context: ExecutionContextDescription; + } + interface ExecutionContextDestroyedEventDataType { + /** + * Id of the destroyed context + */ + executionContextId: ExecutionContextId; + } + interface ExceptionThrownEventDataType { + /** + * Timestamp of the exception. + */ + timestamp: Timestamp; + exceptionDetails: ExceptionDetails; + } + interface ExceptionRevokedEventDataType { + /** + * Reason describing why exception was revoked. + */ + reason: string; + /** + * The id of revoked exception, as reported in exceptionThrown. + */ + exceptionId: number; + } + interface ConsoleAPICalledEventDataType { + /** + * Type of the call. + */ + type: string; + /** + * Call arguments. + */ + args: RemoteObject[]; + /** + * Identifier of the context where the call was made. + */ + executionContextId: ExecutionContextId; + /** + * Call timestamp. + */ + timestamp: Timestamp; + /** + * Stack trace captured when the call was made. + */ + stackTrace?: StackTrace | undefined; + /** + * Console context descriptor for calls on non-default console context (not console.*): 'anonymous#unique-logger-id' for call on unnamed context, 'name#unique-logger-id' for call on named context. + * @experimental + */ + context?: string | undefined; + } + interface InspectRequestedEventDataType { + object: RemoteObject; + hints: {}; + } + } + namespace Debugger { + /** + * Breakpoint identifier. + */ + type BreakpointId = string; + /** + * Call frame identifier. + */ + type CallFrameId = string; + /** + * Location in the source code. + */ + interface Location { + /** + * Script identifier as reported in the Debugger.scriptParsed. + */ + scriptId: Runtime.ScriptId; + /** + * Line number in the script (0-based). + */ + lineNumber: number; + /** + * Column number in the script (0-based). + */ + columnNumber?: number | undefined; + } + /** + * Location in the source code. + * @experimental + */ + interface ScriptPosition { + lineNumber: number; + columnNumber: number; + } + /** + * JavaScript call frame. Array of call frames form the call stack. + */ + interface CallFrame { + /** + * Call frame identifier. This identifier is only valid while the virtual machine is paused. + */ + callFrameId: CallFrameId; + /** + * Name of the JavaScript function called on this call frame. + */ + functionName: string; + /** + * Location in the source code. + */ + functionLocation?: Location | undefined; + /** + * Location in the source code. + */ + location: Location; + /** + * JavaScript script name or url. + */ + url: string; + /** + * Scope chain for this call frame. + */ + scopeChain: Scope[]; + /** + * this object for this call frame. + */ + this: Runtime.RemoteObject; + /** + * The value being returned, if the function is at return point. + */ + returnValue?: Runtime.RemoteObject | undefined; + } + /** + * Scope description. + */ + interface Scope { + /** + * Scope type. + */ + type: string; + /** + * Object representing the scope. For global and with scopes it represents the actual object; for the rest of the scopes, it is artificial transient object enumerating scope variables as its properties. + */ + object: Runtime.RemoteObject; + name?: string | undefined; + /** + * Location in the source code where scope starts + */ + startLocation?: Location | undefined; + /** + * Location in the source code where scope ends + */ + endLocation?: Location | undefined; + } + /** + * Search match for resource. + */ + interface SearchMatch { + /** + * Line number in resource content. + */ + lineNumber: number; + /** + * Line with match content. + */ + lineContent: string; + } + interface BreakLocation { + /** + * Script identifier as reported in the Debugger.scriptParsed. + */ + scriptId: Runtime.ScriptId; + /** + * Line number in the script (0-based). + */ + lineNumber: number; + /** + * Column number in the script (0-based). + */ + columnNumber?: number | undefined; + type?: string | undefined; + } + interface SetBreakpointsActiveParameterType { + /** + * New value for breakpoints active state. + */ + active: boolean; + } + interface SetSkipAllPausesParameterType { + /** + * New value for skip pauses state. + */ + skip: boolean; + } + interface SetBreakpointByUrlParameterType { + /** + * Line number to set breakpoint at. + */ + lineNumber: number; + /** + * URL of the resources to set breakpoint on. + */ + url?: string | undefined; + /** + * Regex pattern for the URLs of the resources to set breakpoints on. Either url or urlRegex must be specified. + */ + urlRegex?: string | undefined; + /** + * Script hash of the resources to set breakpoint on. + */ + scriptHash?: string | undefined; + /** + * Offset in the line to set breakpoint at. + */ + columnNumber?: number | undefined; + /** + * Expression to use as a breakpoint condition. When specified, debugger will only stop on the breakpoint if this expression evaluates to true. + */ + condition?: string | undefined; + } + interface SetBreakpointParameterType { + /** + * Location to set breakpoint in. + */ + location: Location; + /** + * Expression to use as a breakpoint condition. When specified, debugger will only stop on the breakpoint if this expression evaluates to true. + */ + condition?: string | undefined; + } + interface RemoveBreakpointParameterType { + breakpointId: BreakpointId; + } + interface GetPossibleBreakpointsParameterType { + /** + * Start of range to search possible breakpoint locations in. + */ + start: Location; + /** + * End of range to search possible breakpoint locations in (excluding). When not specified, end of scripts is used as end of range. + */ + end?: Location | undefined; + /** + * Only consider locations which are in the same (non-nested) function as start. + */ + restrictToFunction?: boolean | undefined; + } + interface ContinueToLocationParameterType { + /** + * Location to continue to. + */ + location: Location; + targetCallFrames?: string | undefined; + } + interface PauseOnAsyncCallParameterType { + /** + * Debugger will pause when async call with given stack trace is started. + */ + parentStackTraceId: Runtime.StackTraceId; + } + interface StepIntoParameterType { + /** + * Debugger will issue additional Debugger.paused notification if any async task is scheduled before next pause. + * @experimental + */ + breakOnAsyncCall?: boolean | undefined; + } + interface GetStackTraceParameterType { + stackTraceId: Runtime.StackTraceId; + } + interface SearchInContentParameterType { + /** + * Id of the script to search in. + */ + scriptId: Runtime.ScriptId; + /** + * String to search for. + */ + query: string; + /** + * If true, search is case sensitive. + */ + caseSensitive?: boolean | undefined; + /** + * If true, treats string parameter as regex. + */ + isRegex?: boolean | undefined; + } + interface SetScriptSourceParameterType { + /** + * Id of the script to edit. + */ + scriptId: Runtime.ScriptId; + /** + * New content of the script. + */ + scriptSource: string; + /** + * If true the change will not actually be applied. Dry run may be used to get result description without actually modifying the code. + */ + dryRun?: boolean | undefined; + } + interface RestartFrameParameterType { + /** + * Call frame identifier to evaluate on. + */ + callFrameId: CallFrameId; + } + interface GetScriptSourceParameterType { + /** + * Id of the script to get source for. + */ + scriptId: Runtime.ScriptId; + } + interface SetPauseOnExceptionsParameterType { + /** + * Pause on exceptions mode. + */ + state: string; + } + interface EvaluateOnCallFrameParameterType { + /** + * Call frame identifier to evaluate on. + */ + callFrameId: CallFrameId; + /** + * Expression to evaluate. + */ + expression: string; + /** + * String object group name to put result into (allows rapid releasing resulting object handles using releaseObjectGroup). + */ + objectGroup?: string | undefined; + /** + * Specifies whether command line API should be available to the evaluated expression, defaults to false. + */ + includeCommandLineAPI?: boolean | undefined; + /** + * In silent mode exceptions thrown during evaluation are not reported and do not pause execution. Overrides setPauseOnException state. + */ + silent?: boolean | undefined; + /** + * Whether the result is expected to be a JSON object that should be sent by value. + */ + returnByValue?: boolean | undefined; + /** + * Whether preview should be generated for the result. + * @experimental + */ + generatePreview?: boolean | undefined; + /** + * Whether to throw an exception if side effect cannot be ruled out during evaluation. + */ + throwOnSideEffect?: boolean | undefined; + } + interface SetVariableValueParameterType { + /** + * 0-based number of scope as was listed in scope chain. Only 'local', 'closure' and 'catch' scope types are allowed. Other scopes could be manipulated manually. + */ + scopeNumber: number; + /** + * Variable name. + */ + variableName: string; + /** + * New variable value. + */ + newValue: Runtime.CallArgument; + /** + * Id of callframe that holds variable. + */ + callFrameId: CallFrameId; + } + interface SetReturnValueParameterType { + /** + * New return value. + */ + newValue: Runtime.CallArgument; + } + interface SetAsyncCallStackDepthParameterType { + /** + * Maximum depth of async call stacks. Setting to 0 will effectively disable collecting async call stacks (default). + */ + maxDepth: number; + } + interface SetBlackboxPatternsParameterType { + /** + * Array of regexps that will be used to check script url for blackbox state. + */ + patterns: string[]; + } + interface SetBlackboxedRangesParameterType { + /** + * Id of the script. + */ + scriptId: Runtime.ScriptId; + positions: ScriptPosition[]; + } + interface EnableReturnType { + /** + * Unique identifier of the debugger. + * @experimental + */ + debuggerId: Runtime.UniqueDebuggerId; + } + interface SetBreakpointByUrlReturnType { + /** + * Id of the created breakpoint for further reference. + */ + breakpointId: BreakpointId; + /** + * List of the locations this breakpoint resolved into upon addition. + */ + locations: Location[]; + } + interface SetBreakpointReturnType { + /** + * Id of the created breakpoint for further reference. + */ + breakpointId: BreakpointId; + /** + * Location this breakpoint resolved into. + */ + actualLocation: Location; + } + interface GetPossibleBreakpointsReturnType { + /** + * List of the possible breakpoint locations. + */ + locations: BreakLocation[]; + } + interface GetStackTraceReturnType { + stackTrace: Runtime.StackTrace; + } + interface SearchInContentReturnType { + /** + * List of search matches. + */ + result: SearchMatch[]; + } + interface SetScriptSourceReturnType { + /** + * New stack trace in case editing has happened while VM was stopped. + */ + callFrames?: CallFrame[] | undefined; + /** + * Whether current call stack was modified after applying the changes. + */ + stackChanged?: boolean | undefined; + /** + * Async stack trace, if any. + */ + asyncStackTrace?: Runtime.StackTrace | undefined; + /** + * Async stack trace, if any. + * @experimental + */ + asyncStackTraceId?: Runtime.StackTraceId | undefined; + /** + * Exception details if any. + */ + exceptionDetails?: Runtime.ExceptionDetails | undefined; + } + interface RestartFrameReturnType { + /** + * New stack trace. + */ + callFrames: CallFrame[]; + /** + * Async stack trace, if any. + */ + asyncStackTrace?: Runtime.StackTrace | undefined; + /** + * Async stack trace, if any. + * @experimental + */ + asyncStackTraceId?: Runtime.StackTraceId | undefined; + } + interface GetScriptSourceReturnType { + /** + * Script source. + */ + scriptSource: string; + } + interface EvaluateOnCallFrameReturnType { + /** + * Object wrapper for the evaluation result. + */ + result: Runtime.RemoteObject; + /** + * Exception details. + */ + exceptionDetails?: Runtime.ExceptionDetails | undefined; + } + interface ScriptParsedEventDataType { + /** + * Identifier of the script parsed. + */ + scriptId: Runtime.ScriptId; + /** + * URL or name of the script parsed (if any). + */ + url: string; + /** + * Line offset of the script within the resource with given URL (for script tags). + */ + startLine: number; + /** + * Column offset of the script within the resource with given URL. + */ + startColumn: number; + /** + * Last line of the script. + */ + endLine: number; + /** + * Length of the last line of the script. + */ + endColumn: number; + /** + * Specifies script creation context. + */ + executionContextId: Runtime.ExecutionContextId; + /** + * Content hash of the script. + */ + hash: string; + /** + * Embedder-specific auxiliary data. + */ + executionContextAuxData?: {} | undefined; + /** + * True, if this script is generated as a result of the live edit operation. + * @experimental + */ + isLiveEdit?: boolean | undefined; + /** + * URL of source map associated with script (if any). + */ + sourceMapURL?: string | undefined; + /** + * True, if this script has sourceURL. + */ + hasSourceURL?: boolean | undefined; + /** + * True, if this script is ES6 module. + */ + isModule?: boolean | undefined; + /** + * This script length. + */ + length?: number | undefined; + /** + * JavaScript top stack frame of where the script parsed event was triggered if available. + * @experimental + */ + stackTrace?: Runtime.StackTrace | undefined; + } + interface ScriptFailedToParseEventDataType { + /** + * Identifier of the script parsed. + */ + scriptId: Runtime.ScriptId; + /** + * URL or name of the script parsed (if any). + */ + url: string; + /** + * Line offset of the script within the resource with given URL (for script tags). + */ + startLine: number; + /** + * Column offset of the script within the resource with given URL. + */ + startColumn: number; + /** + * Last line of the script. + */ + endLine: number; + /** + * Length of the last line of the script. + */ + endColumn: number; + /** + * Specifies script creation context. + */ + executionContextId: Runtime.ExecutionContextId; + /** + * Content hash of the script. + */ + hash: string; + /** + * Embedder-specific auxiliary data. + */ + executionContextAuxData?: {} | undefined; + /** + * URL of source map associated with script (if any). + */ + sourceMapURL?: string | undefined; + /** + * True, if this script has sourceURL. + */ + hasSourceURL?: boolean | undefined; + /** + * True, if this script is ES6 module. + */ + isModule?: boolean | undefined; + /** + * This script length. + */ + length?: number | undefined; + /** + * JavaScript top stack frame of where the script parsed event was triggered if available. + * @experimental + */ + stackTrace?: Runtime.StackTrace | undefined; + } + interface BreakpointResolvedEventDataType { + /** + * Breakpoint unique identifier. + */ + breakpointId: BreakpointId; + /** + * Actual breakpoint location. + */ + location: Location; + } + interface PausedEventDataType { + /** + * Call stack the virtual machine stopped on. + */ + callFrames: CallFrame[]; + /** + * Pause reason. + */ + reason: string; + /** + * Object containing break-specific auxiliary properties. + */ + data?: {} | undefined; + /** + * Hit breakpoints IDs + */ + hitBreakpoints?: string[] | undefined; + /** + * Async stack trace, if any. + */ + asyncStackTrace?: Runtime.StackTrace | undefined; + /** + * Async stack trace, if any. + * @experimental + */ + asyncStackTraceId?: Runtime.StackTraceId | undefined; + /** + * Just scheduled async call will have this stack trace as parent stack during async execution. This field is available only after Debugger.stepInto call with breakOnAsynCall flag. + * @experimental + */ + asyncCallStackTraceId?: Runtime.StackTraceId | undefined; + } + } + namespace Console { + /** + * Console message. + */ + interface ConsoleMessage { + /** + * Message source. + */ + source: string; + /** + * Message severity. + */ + level: string; + /** + * Message text. + */ + text: string; + /** + * URL of the message origin. + */ + url?: string | undefined; + /** + * Line number in the resource that generated this message (1-based). + */ + line?: number | undefined; + /** + * Column number in the resource that generated this message (1-based). + */ + column?: number | undefined; + } + interface MessageAddedEventDataType { + /** + * Console message that has been added. + */ + message: ConsoleMessage; + } + } + namespace Profiler { + /** + * Profile node. Holds callsite information, execution statistics and child nodes. + */ + interface ProfileNode { + /** + * Unique id of the node. + */ + id: number; + /** + * Function location. + */ + callFrame: Runtime.CallFrame; + /** + * Number of samples where this node was on top of the call stack. + */ + hitCount?: number | undefined; + /** + * Child node ids. + */ + children?: number[] | undefined; + /** + * The reason of being not optimized. The function may be deoptimized or marked as don't optimize. + */ + deoptReason?: string | undefined; + /** + * An array of source position ticks. + */ + positionTicks?: PositionTickInfo[] | undefined; + } + /** + * Profile. + */ + interface Profile { + /** + * The list of profile nodes. First item is the root node. + */ + nodes: ProfileNode[]; + /** + * Profiling start timestamp in microseconds. + */ + startTime: number; + /** + * Profiling end timestamp in microseconds. + */ + endTime: number; + /** + * Ids of samples top nodes. + */ + samples?: number[] | undefined; + /** + * Time intervals between adjacent samples in microseconds. The first delta is relative to the profile startTime. + */ + timeDeltas?: number[] | undefined; + } + /** + * Specifies a number of samples attributed to a certain source position. + */ + interface PositionTickInfo { + /** + * Source line number (1-based). + */ + line: number; + /** + * Number of samples attributed to the source line. + */ + ticks: number; + } + /** + * Coverage data for a source range. + */ + interface CoverageRange { + /** + * JavaScript script source offset for the range start. + */ + startOffset: number; + /** + * JavaScript script source offset for the range end. + */ + endOffset: number; + /** + * Collected execution count of the source range. + */ + count: number; + } + /** + * Coverage data for a JavaScript function. + */ + interface FunctionCoverage { + /** + * JavaScript function name. + */ + functionName: string; + /** + * Source ranges inside the function with coverage data. + */ + ranges: CoverageRange[]; + /** + * Whether coverage data for this function has block granularity. + */ + isBlockCoverage: boolean; + } + /** + * Coverage data for a JavaScript script. + */ + interface ScriptCoverage { + /** + * JavaScript script id. + */ + scriptId: Runtime.ScriptId; + /** + * JavaScript script name or url. + */ + url: string; + /** + * Functions contained in the script that has coverage data. + */ + functions: FunctionCoverage[]; + } + /** + * Describes a type collected during runtime. + * @experimental + */ + interface TypeObject { + /** + * Name of a type collected with type profiling. + */ + name: string; + } + /** + * Source offset and types for a parameter or return value. + * @experimental + */ + interface TypeProfileEntry { + /** + * Source offset of the parameter or end of function for return values. + */ + offset: number; + /** + * The types for this parameter or return value. + */ + types: TypeObject[]; + } + /** + * Type profile data collected during runtime for a JavaScript script. + * @experimental + */ + interface ScriptTypeProfile { + /** + * JavaScript script id. + */ + scriptId: Runtime.ScriptId; + /** + * JavaScript script name or url. + */ + url: string; + /** + * Type profile entries for parameters and return values of the functions in the script. + */ + entries: TypeProfileEntry[]; + } + interface SetSamplingIntervalParameterType { + /** + * New sampling interval in microseconds. + */ + interval: number; + } + interface StartPreciseCoverageParameterType { + /** + * Collect accurate call counts beyond simple 'covered' or 'not covered'. + */ + callCount?: boolean | undefined; + /** + * Collect block-based coverage. + */ + detailed?: boolean | undefined; + } + interface StopReturnType { + /** + * Recorded profile. + */ + profile: Profile; + } + interface TakePreciseCoverageReturnType { + /** + * Coverage data for the current isolate. + */ + result: ScriptCoverage[]; + } + interface GetBestEffortCoverageReturnType { + /** + * Coverage data for the current isolate. + */ + result: ScriptCoverage[]; + } + interface TakeTypeProfileReturnType { + /** + * Type profile for all scripts since startTypeProfile() was turned on. + */ + result: ScriptTypeProfile[]; + } + interface ConsoleProfileStartedEventDataType { + id: string; + /** + * Location of console.profile(). + */ + location: Debugger.Location; + /** + * Profile title passed as an argument to console.profile(). + */ + title?: string | undefined; + } + interface ConsoleProfileFinishedEventDataType { + id: string; + /** + * Location of console.profileEnd(). + */ + location: Debugger.Location; + profile: Profile; + /** + * Profile title passed as an argument to console.profile(). + */ + title?: string | undefined; + } + } + namespace HeapProfiler { + /** + * Heap snapshot object id. + */ + type HeapSnapshotObjectId = string; + /** + * Sampling Heap Profile node. Holds callsite information, allocation statistics and child nodes. + */ + interface SamplingHeapProfileNode { + /** + * Function location. + */ + callFrame: Runtime.CallFrame; + /** + * Allocations size in bytes for the node excluding children. + */ + selfSize: number; + /** + * Child nodes. + */ + children: SamplingHeapProfileNode[]; + } + /** + * Profile. + */ + interface SamplingHeapProfile { + head: SamplingHeapProfileNode; + } + interface StartTrackingHeapObjectsParameterType { + trackAllocations?: boolean | undefined; + } + interface StopTrackingHeapObjectsParameterType { + /** + * If true 'reportHeapSnapshotProgress' events will be generated while snapshot is being taken when the tracking is stopped. + */ + reportProgress?: boolean | undefined; + } + interface TakeHeapSnapshotParameterType { + /** + * If true 'reportHeapSnapshotProgress' events will be generated while snapshot is being taken. + */ + reportProgress?: boolean | undefined; + } + interface GetObjectByHeapObjectIdParameterType { + objectId: HeapSnapshotObjectId; + /** + * Symbolic group name that can be used to release multiple objects. + */ + objectGroup?: string | undefined; + } + interface AddInspectedHeapObjectParameterType { + /** + * Heap snapshot object id to be accessible by means of $x command line API. + */ + heapObjectId: HeapSnapshotObjectId; + } + interface GetHeapObjectIdParameterType { + /** + * Identifier of the object to get heap object id for. + */ + objectId: Runtime.RemoteObjectId; + } + interface StartSamplingParameterType { + /** + * Average sample interval in bytes. Poisson distribution is used for the intervals. The default value is 32768 bytes. + */ + samplingInterval?: number | undefined; + } + interface GetObjectByHeapObjectIdReturnType { + /** + * Evaluation result. + */ + result: Runtime.RemoteObject; + } + interface GetHeapObjectIdReturnType { + /** + * Id of the heap snapshot object corresponding to the passed remote object id. + */ + heapSnapshotObjectId: HeapSnapshotObjectId; + } + interface StopSamplingReturnType { + /** + * Recorded sampling heap profile. + */ + profile: SamplingHeapProfile; + } + interface GetSamplingProfileReturnType { + /** + * Return the sampling profile being collected. + */ + profile: SamplingHeapProfile; + } + interface AddHeapSnapshotChunkEventDataType { + chunk: string; + } + interface ReportHeapSnapshotProgressEventDataType { + done: number; + total: number; + finished?: boolean | undefined; + } + interface LastSeenObjectIdEventDataType { + lastSeenObjectId: number; + timestamp: number; + } + interface HeapStatsUpdateEventDataType { + /** + * An array of triplets. Each triplet describes a fragment. The first integer is the fragment index, the second integer is a total count of objects for the fragment, the third integer is a total size of the objects for the fragment. + */ + statsUpdate: number[]; + } + } + namespace NodeTracing { + interface TraceConfig { + /** + * Controls how the trace buffer stores data. + */ + recordMode?: string | undefined; + /** + * Included category filters. + */ + includedCategories: string[]; + } + interface StartParameterType { + traceConfig: TraceConfig; + } + interface GetCategoriesReturnType { + /** + * A list of supported tracing categories. + */ + categories: string[]; + } + interface DataCollectedEventDataType { + value: Array<{}>; + } + } + namespace NodeWorker { + type WorkerID = string; + /** + * Unique identifier of attached debugging session. + */ + type SessionID = string; + interface WorkerInfo { + workerId: WorkerID; + type: string; + title: string; + url: string; + } + interface SendMessageToWorkerParameterType { + message: string; + /** + * Identifier of the session. + */ + sessionId: SessionID; + } + interface EnableParameterType { + /** + * Whether to new workers should be paused until the frontend sends `Runtime.runIfWaitingForDebugger` + * message to run them. + */ + waitForDebuggerOnStart: boolean; + } + interface DetachParameterType { + sessionId: SessionID; + } + interface AttachedToWorkerEventDataType { + /** + * Identifier assigned to the session used to send/receive messages. + */ + sessionId: SessionID; + workerInfo: WorkerInfo; + waitingForDebugger: boolean; + } + interface DetachedFromWorkerEventDataType { + /** + * Detached session identifier. + */ + sessionId: SessionID; + } + interface ReceivedMessageFromWorkerEventDataType { + /** + * Identifier of a session which sends a message. + */ + sessionId: SessionID; + message: string; + } + } + namespace NodeRuntime { + interface NotifyWhenWaitingForDisconnectParameterType { + enabled: boolean; + } + } + /** + * The `inspector.Session` is used for dispatching messages to the V8 inspector + * back-end and receiving message responses and notifications. + */ + class Session extends EventEmitter { + /** + * Create a new instance of the inspector.Session class. + * The inspector session needs to be connected through session.connect() before the messages can be dispatched to the inspector backend. + */ + constructor(); + /** + * Connects a session to the inspector back-end. + * @since v8.0.0 + */ + connect(): void; + /** + * Immediately close the session. All pending message callbacks will be called + * with an error. `session.connect()` will need to be called to be able to send + * messages again. Reconnected session will lose all inspector state, such as + * enabled agents or configured breakpoints. + * @since v8.0.0 + */ + disconnect(): void; + /** + * Posts a message to the inspector back-end. `callback` will be notified when + * a response is received. `callback` is a function that accepts two optional + * arguments: error and message-specific result. + * + * ```js + * session.post('Runtime.evaluate', { expression: '2 + 2' }, + * (error, { result }) => console.log(result)); + * // Output: { type: 'number', value: 4, description: '4' } + * ``` + * + * The latest version of the V8 inspector protocol is published on the [Chrome DevTools Protocol Viewer](https://chromedevtools.github.io/devtools-protocol/v8/). + * + * Node.js inspector supports all the Chrome DevTools Protocol domains declared + * by V8\. Chrome DevTools Protocol domain provides an interface for interacting + * with one of the runtime agents used to inspect the application state and listen + * to the run-time events. + * + * ## Example usage + * + * Apart from the debugger, various V8 Profilers are available through the DevTools + * protocol. + * @since v8.0.0 + */ + post(method: string, params?: {}, callback?: (err: Error | null, params?: {}) => void): void; + post(method: string, callback?: (err: Error | null, params?: {}) => void): void; + /** + * Returns supported domains. + */ + post(method: 'Schema.getDomains', callback?: (err: Error | null, params: Schema.GetDomainsReturnType) => void): void; + /** + * Evaluates expression on global object. + */ + post(method: 'Runtime.evaluate', params?: Runtime.EvaluateParameterType, callback?: (err: Error | null, params: Runtime.EvaluateReturnType) => void): void; + post(method: 'Runtime.evaluate', callback?: (err: Error | null, params: Runtime.EvaluateReturnType) => void): void; + /** + * Add handler to promise with given promise object id. + */ + post(method: 'Runtime.awaitPromise', params?: Runtime.AwaitPromiseParameterType, callback?: (err: Error | null, params: Runtime.AwaitPromiseReturnType) => void): void; + post(method: 'Runtime.awaitPromise', callback?: (err: Error | null, params: Runtime.AwaitPromiseReturnType) => void): void; + /** + * Calls function with given declaration on the given object. Object group of the result is inherited from the target object. + */ + post(method: 'Runtime.callFunctionOn', params?: Runtime.CallFunctionOnParameterType, callback?: (err: Error | null, params: Runtime.CallFunctionOnReturnType) => void): void; + post(method: 'Runtime.callFunctionOn', callback?: (err: Error | null, params: Runtime.CallFunctionOnReturnType) => void): void; + /** + * Returns properties of a given object. Object group of the result is inherited from the target object. + */ + post(method: 'Runtime.getProperties', params?: Runtime.GetPropertiesParameterType, callback?: (err: Error | null, params: Runtime.GetPropertiesReturnType) => void): void; + post(method: 'Runtime.getProperties', callback?: (err: Error | null, params: Runtime.GetPropertiesReturnType) => void): void; + /** + * Releases remote object with given id. + */ + post(method: 'Runtime.releaseObject', params?: Runtime.ReleaseObjectParameterType, callback?: (err: Error | null) => void): void; + post(method: 'Runtime.releaseObject', callback?: (err: Error | null) => void): void; + /** + * Releases all remote objects that belong to a given group. + */ + post(method: 'Runtime.releaseObjectGroup', params?: Runtime.ReleaseObjectGroupParameterType, callback?: (err: Error | null) => void): void; + post(method: 'Runtime.releaseObjectGroup', callback?: (err: Error | null) => void): void; + /** + * Tells inspected instance to run if it was waiting for debugger to attach. + */ + post(method: 'Runtime.runIfWaitingForDebugger', callback?: (err: Error | null) => void): void; + /** + * Enables reporting of execution contexts creation by means of executionContextCreated event. When the reporting gets enabled the event will be sent immediately for each existing execution context. + */ + post(method: 'Runtime.enable', callback?: (err: Error | null) => void): void; + /** + * Disables reporting of execution contexts creation. + */ + post(method: 'Runtime.disable', callback?: (err: Error | null) => void): void; + /** + * Discards collected exceptions and console API calls. + */ + post(method: 'Runtime.discardConsoleEntries', callback?: (err: Error | null) => void): void; + /** + * @experimental + */ + post(method: 'Runtime.setCustomObjectFormatterEnabled', params?: Runtime.SetCustomObjectFormatterEnabledParameterType, callback?: (err: Error | null) => void): void; + post(method: 'Runtime.setCustomObjectFormatterEnabled', callback?: (err: Error | null) => void): void; + /** + * Compiles expression. + */ + post(method: 'Runtime.compileScript', params?: Runtime.CompileScriptParameterType, callback?: (err: Error | null, params: Runtime.CompileScriptReturnType) => void): void; + post(method: 'Runtime.compileScript', callback?: (err: Error | null, params: Runtime.CompileScriptReturnType) => void): void; + /** + * Runs script with given id in a given context. + */ + post(method: 'Runtime.runScript', params?: Runtime.RunScriptParameterType, callback?: (err: Error | null, params: Runtime.RunScriptReturnType) => void): void; + post(method: 'Runtime.runScript', callback?: (err: Error | null, params: Runtime.RunScriptReturnType) => void): void; + post(method: 'Runtime.queryObjects', params?: Runtime.QueryObjectsParameterType, callback?: (err: Error | null, params: Runtime.QueryObjectsReturnType) => void): void; + post(method: 'Runtime.queryObjects', callback?: (err: Error | null, params: Runtime.QueryObjectsReturnType) => void): void; + /** + * Returns all let, const and class variables from global scope. + */ + post( + method: 'Runtime.globalLexicalScopeNames', + params?: Runtime.GlobalLexicalScopeNamesParameterType, + callback?: (err: Error | null, params: Runtime.GlobalLexicalScopeNamesReturnType) => void + ): void; + post(method: 'Runtime.globalLexicalScopeNames', callback?: (err: Error | null, params: Runtime.GlobalLexicalScopeNamesReturnType) => void): void; + /** + * Enables debugger for the given page. Clients should not assume that the debugging has been enabled until the result for this command is received. + */ + post(method: 'Debugger.enable', callback?: (err: Error | null, params: Debugger.EnableReturnType) => void): void; + /** + * Disables debugger for given page. + */ + post(method: 'Debugger.disable', callback?: (err: Error | null) => void): void; + /** + * Activates / deactivates all breakpoints on the page. + */ + post(method: 'Debugger.setBreakpointsActive', params?: Debugger.SetBreakpointsActiveParameterType, callback?: (err: Error | null) => void): void; + post(method: 'Debugger.setBreakpointsActive', callback?: (err: Error | null) => void): void; + /** + * Makes page not interrupt on any pauses (breakpoint, exception, dom exception etc). + */ + post(method: 'Debugger.setSkipAllPauses', params?: Debugger.SetSkipAllPausesParameterType, callback?: (err: Error | null) => void): void; + post(method: 'Debugger.setSkipAllPauses', callback?: (err: Error | null) => void): void; + /** + * Sets JavaScript breakpoint at given location specified either by URL or URL regex. Once this command is issued, all existing parsed scripts will have breakpoints resolved and returned in locations property. Further matching script parsing will result in subsequent breakpointResolved events issued. This logical breakpoint will survive page reloads. + */ + post(method: 'Debugger.setBreakpointByUrl', params?: Debugger.SetBreakpointByUrlParameterType, callback?: (err: Error | null, params: Debugger.SetBreakpointByUrlReturnType) => void): void; + post(method: 'Debugger.setBreakpointByUrl', callback?: (err: Error | null, params: Debugger.SetBreakpointByUrlReturnType) => void): void; + /** + * Sets JavaScript breakpoint at a given location. + */ + post(method: 'Debugger.setBreakpoint', params?: Debugger.SetBreakpointParameterType, callback?: (err: Error | null, params: Debugger.SetBreakpointReturnType) => void): void; + post(method: 'Debugger.setBreakpoint', callback?: (err: Error | null, params: Debugger.SetBreakpointReturnType) => void): void; + /** + * Removes JavaScript breakpoint. + */ + post(method: 'Debugger.removeBreakpoint', params?: Debugger.RemoveBreakpointParameterType, callback?: (err: Error | null) => void): void; + post(method: 'Debugger.removeBreakpoint', callback?: (err: Error | null) => void): void; + /** + * Returns possible locations for breakpoint. scriptId in start and end range locations should be the same. + */ + post( + method: 'Debugger.getPossibleBreakpoints', + params?: Debugger.GetPossibleBreakpointsParameterType, + callback?: (err: Error | null, params: Debugger.GetPossibleBreakpointsReturnType) => void + ): void; + post(method: 'Debugger.getPossibleBreakpoints', callback?: (err: Error | null, params: Debugger.GetPossibleBreakpointsReturnType) => void): void; + /** + * Continues execution until specific location is reached. + */ + post(method: 'Debugger.continueToLocation', params?: Debugger.ContinueToLocationParameterType, callback?: (err: Error | null) => void): void; + post(method: 'Debugger.continueToLocation', callback?: (err: Error | null) => void): void; + /** + * @experimental + */ + post(method: 'Debugger.pauseOnAsyncCall', params?: Debugger.PauseOnAsyncCallParameterType, callback?: (err: Error | null) => void): void; + post(method: 'Debugger.pauseOnAsyncCall', callback?: (err: Error | null) => void): void; + /** + * Steps over the statement. + */ + post(method: 'Debugger.stepOver', callback?: (err: Error | null) => void): void; + /** + * Steps into the function call. + */ + post(method: 'Debugger.stepInto', params?: Debugger.StepIntoParameterType, callback?: (err: Error | null) => void): void; + post(method: 'Debugger.stepInto', callback?: (err: Error | null) => void): void; + /** + * Steps out of the function call. + */ + post(method: 'Debugger.stepOut', callback?: (err: Error | null) => void): void; + /** + * Stops on the next JavaScript statement. + */ + post(method: 'Debugger.pause', callback?: (err: Error | null) => void): void; + /** + * This method is deprecated - use Debugger.stepInto with breakOnAsyncCall and Debugger.pauseOnAsyncTask instead. Steps into next scheduled async task if any is scheduled before next pause. Returns success when async task is actually scheduled, returns error if no task were scheduled or another scheduleStepIntoAsync was called. + * @experimental + */ + post(method: 'Debugger.scheduleStepIntoAsync', callback?: (err: Error | null) => void): void; + /** + * Resumes JavaScript execution. + */ + post(method: 'Debugger.resume', callback?: (err: Error | null) => void): void; + /** + * Returns stack trace with given stackTraceId. + * @experimental + */ + post(method: 'Debugger.getStackTrace', params?: Debugger.GetStackTraceParameterType, callback?: (err: Error | null, params: Debugger.GetStackTraceReturnType) => void): void; + post(method: 'Debugger.getStackTrace', callback?: (err: Error | null, params: Debugger.GetStackTraceReturnType) => void): void; + /** + * Searches for given string in script content. + */ + post(method: 'Debugger.searchInContent', params?: Debugger.SearchInContentParameterType, callback?: (err: Error | null, params: Debugger.SearchInContentReturnType) => void): void; + post(method: 'Debugger.searchInContent', callback?: (err: Error | null, params: Debugger.SearchInContentReturnType) => void): void; + /** + * Edits JavaScript source live. + */ + post(method: 'Debugger.setScriptSource', params?: Debugger.SetScriptSourceParameterType, callback?: (err: Error | null, params: Debugger.SetScriptSourceReturnType) => void): void; + post(method: 'Debugger.setScriptSource', callback?: (err: Error | null, params: Debugger.SetScriptSourceReturnType) => void): void; + /** + * Restarts particular call frame from the beginning. + */ + post(method: 'Debugger.restartFrame', params?: Debugger.RestartFrameParameterType, callback?: (err: Error | null, params: Debugger.RestartFrameReturnType) => void): void; + post(method: 'Debugger.restartFrame', callback?: (err: Error | null, params: Debugger.RestartFrameReturnType) => void): void; + /** + * Returns source for the script with given id. + */ + post(method: 'Debugger.getScriptSource', params?: Debugger.GetScriptSourceParameterType, callback?: (err: Error | null, params: Debugger.GetScriptSourceReturnType) => void): void; + post(method: 'Debugger.getScriptSource', callback?: (err: Error | null, params: Debugger.GetScriptSourceReturnType) => void): void; + /** + * Defines pause on exceptions state. Can be set to stop on all exceptions, uncaught exceptions or no exceptions. Initial pause on exceptions state is none. + */ + post(method: 'Debugger.setPauseOnExceptions', params?: Debugger.SetPauseOnExceptionsParameterType, callback?: (err: Error | null) => void): void; + post(method: 'Debugger.setPauseOnExceptions', callback?: (err: Error | null) => void): void; + /** + * Evaluates expression on a given call frame. + */ + post(method: 'Debugger.evaluateOnCallFrame', params?: Debugger.EvaluateOnCallFrameParameterType, callback?: (err: Error | null, params: Debugger.EvaluateOnCallFrameReturnType) => void): void; + post(method: 'Debugger.evaluateOnCallFrame', callback?: (err: Error | null, params: Debugger.EvaluateOnCallFrameReturnType) => void): void; + /** + * Changes value of variable in a callframe. Object-based scopes are not supported and must be mutated manually. + */ + post(method: 'Debugger.setVariableValue', params?: Debugger.SetVariableValueParameterType, callback?: (err: Error | null) => void): void; + post(method: 'Debugger.setVariableValue', callback?: (err: Error | null) => void): void; + /** + * Changes return value in top frame. Available only at return break position. + * @experimental + */ + post(method: 'Debugger.setReturnValue', params?: Debugger.SetReturnValueParameterType, callback?: (err: Error | null) => void): void; + post(method: 'Debugger.setReturnValue', callback?: (err: Error | null) => void): void; + /** + * Enables or disables async call stacks tracking. + */ + post(method: 'Debugger.setAsyncCallStackDepth', params?: Debugger.SetAsyncCallStackDepthParameterType, callback?: (err: Error | null) => void): void; + post(method: 'Debugger.setAsyncCallStackDepth', callback?: (err: Error | null) => void): void; + /** + * Replace previous blackbox patterns with passed ones. Forces backend to skip stepping/pausing in scripts with url matching one of the patterns. VM will try to leave blackboxed script by performing 'step in' several times, finally resorting to 'step out' if unsuccessful. + * @experimental + */ + post(method: 'Debugger.setBlackboxPatterns', params?: Debugger.SetBlackboxPatternsParameterType, callback?: (err: Error | null) => void): void; + post(method: 'Debugger.setBlackboxPatterns', callback?: (err: Error | null) => void): void; + /** + * Makes backend skip steps in the script in blackboxed ranges. VM will try leave blacklisted scripts by performing 'step in' several times, finally resorting to 'step out' if unsuccessful. Positions array contains positions where blackbox state is changed. First interval isn't blackboxed. Array should be sorted. + * @experimental + */ + post(method: 'Debugger.setBlackboxedRanges', params?: Debugger.SetBlackboxedRangesParameterType, callback?: (err: Error | null) => void): void; + post(method: 'Debugger.setBlackboxedRanges', callback?: (err: Error | null) => void): void; + /** + * Enables console domain, sends the messages collected so far to the client by means of the messageAdded notification. + */ + post(method: 'Console.enable', callback?: (err: Error | null) => void): void; + /** + * Disables console domain, prevents further console messages from being reported to the client. + */ + post(method: 'Console.disable', callback?: (err: Error | null) => void): void; + /** + * Does nothing. + */ + post(method: 'Console.clearMessages', callback?: (err: Error | null) => void): void; + post(method: 'Profiler.enable', callback?: (err: Error | null) => void): void; + post(method: 'Profiler.disable', callback?: (err: Error | null) => void): void; + /** + * Changes CPU profiler sampling interval. Must be called before CPU profiles recording started. + */ + post(method: 'Profiler.setSamplingInterval', params?: Profiler.SetSamplingIntervalParameterType, callback?: (err: Error | null) => void): void; + post(method: 'Profiler.setSamplingInterval', callback?: (err: Error | null) => void): void; + post(method: 'Profiler.start', callback?: (err: Error | null) => void): void; + post(method: 'Profiler.stop', callback?: (err: Error | null, params: Profiler.StopReturnType) => void): void; + /** + * Enable precise code coverage. Coverage data for JavaScript executed before enabling precise code coverage may be incomplete. Enabling prevents running optimized code and resets execution counters. + */ + post(method: 'Profiler.startPreciseCoverage', params?: Profiler.StartPreciseCoverageParameterType, callback?: (err: Error | null) => void): void; + post(method: 'Profiler.startPreciseCoverage', callback?: (err: Error | null) => void): void; + /** + * Disable precise code coverage. Disabling releases unnecessary execution count records and allows executing optimized code. + */ + post(method: 'Profiler.stopPreciseCoverage', callback?: (err: Error | null) => void): void; + /** + * Collect coverage data for the current isolate, and resets execution counters. Precise code coverage needs to have started. + */ + post(method: 'Profiler.takePreciseCoverage', callback?: (err: Error | null, params: Profiler.TakePreciseCoverageReturnType) => void): void; + /** + * Collect coverage data for the current isolate. The coverage data may be incomplete due to garbage collection. + */ + post(method: 'Profiler.getBestEffortCoverage', callback?: (err: Error | null, params: Profiler.GetBestEffortCoverageReturnType) => void): void; + /** + * Enable type profile. + * @experimental + */ + post(method: 'Profiler.startTypeProfile', callback?: (err: Error | null) => void): void; + /** + * Disable type profile. Disabling releases type profile data collected so far. + * @experimental + */ + post(method: 'Profiler.stopTypeProfile', callback?: (err: Error | null) => void): void; + /** + * Collect type profile. + * @experimental + */ + post(method: 'Profiler.takeTypeProfile', callback?: (err: Error | null, params: Profiler.TakeTypeProfileReturnType) => void): void; + post(method: 'HeapProfiler.enable', callback?: (err: Error | null) => void): void; + post(method: 'HeapProfiler.disable', callback?: (err: Error | null) => void): void; + post(method: 'HeapProfiler.startTrackingHeapObjects', params?: HeapProfiler.StartTrackingHeapObjectsParameterType, callback?: (err: Error | null) => void): void; + post(method: 'HeapProfiler.startTrackingHeapObjects', callback?: (err: Error | null) => void): void; + post(method: 'HeapProfiler.stopTrackingHeapObjects', params?: HeapProfiler.StopTrackingHeapObjectsParameterType, callback?: (err: Error | null) => void): void; + post(method: 'HeapProfiler.stopTrackingHeapObjects', callback?: (err: Error | null) => void): void; + post(method: 'HeapProfiler.takeHeapSnapshot', params?: HeapProfiler.TakeHeapSnapshotParameterType, callback?: (err: Error | null) => void): void; + post(method: 'HeapProfiler.takeHeapSnapshot', callback?: (err: Error | null) => void): void; + post(method: 'HeapProfiler.collectGarbage', callback?: (err: Error | null) => void): void; + post( + method: 'HeapProfiler.getObjectByHeapObjectId', + params?: HeapProfiler.GetObjectByHeapObjectIdParameterType, + callback?: (err: Error | null, params: HeapProfiler.GetObjectByHeapObjectIdReturnType) => void + ): void; + post(method: 'HeapProfiler.getObjectByHeapObjectId', callback?: (err: Error | null, params: HeapProfiler.GetObjectByHeapObjectIdReturnType) => void): void; + /** + * Enables console to refer to the node with given id via $x (see Command Line API for more details $x functions). + */ + post(method: 'HeapProfiler.addInspectedHeapObject', params?: HeapProfiler.AddInspectedHeapObjectParameterType, callback?: (err: Error | null) => void): void; + post(method: 'HeapProfiler.addInspectedHeapObject', callback?: (err: Error | null) => void): void; + post(method: 'HeapProfiler.getHeapObjectId', params?: HeapProfiler.GetHeapObjectIdParameterType, callback?: (err: Error | null, params: HeapProfiler.GetHeapObjectIdReturnType) => void): void; + post(method: 'HeapProfiler.getHeapObjectId', callback?: (err: Error | null, params: HeapProfiler.GetHeapObjectIdReturnType) => void): void; + post(method: 'HeapProfiler.startSampling', params?: HeapProfiler.StartSamplingParameterType, callback?: (err: Error | null) => void): void; + post(method: 'HeapProfiler.startSampling', callback?: (err: Error | null) => void): void; + post(method: 'HeapProfiler.stopSampling', callback?: (err: Error | null, params: HeapProfiler.StopSamplingReturnType) => void): void; + post(method: 'HeapProfiler.getSamplingProfile', callback?: (err: Error | null, params: HeapProfiler.GetSamplingProfileReturnType) => void): void; + /** + * Gets supported tracing categories. + */ + post(method: 'NodeTracing.getCategories', callback?: (err: Error | null, params: NodeTracing.GetCategoriesReturnType) => void): void; + /** + * Start trace events collection. + */ + post(method: 'NodeTracing.start', params?: NodeTracing.StartParameterType, callback?: (err: Error | null) => void): void; + post(method: 'NodeTracing.start', callback?: (err: Error | null) => void): void; + /** + * Stop trace events collection. Remaining collected events will be sent as a sequence of + * dataCollected events followed by tracingComplete event. + */ + post(method: 'NodeTracing.stop', callback?: (err: Error | null) => void): void; + /** + * Sends protocol message over session with given id. + */ + post(method: 'NodeWorker.sendMessageToWorker', params?: NodeWorker.SendMessageToWorkerParameterType, callback?: (err: Error | null) => void): void; + post(method: 'NodeWorker.sendMessageToWorker', callback?: (err: Error | null) => void): void; + /** + * Instructs the inspector to attach to running workers. Will also attach to new workers + * as they start + */ + post(method: 'NodeWorker.enable', params?: NodeWorker.EnableParameterType, callback?: (err: Error | null) => void): void; + post(method: 'NodeWorker.enable', callback?: (err: Error | null) => void): void; + /** + * Detaches from all running workers and disables attaching to new workers as they are started. + */ + post(method: 'NodeWorker.disable', callback?: (err: Error | null) => void): void; + /** + * Detached from the worker with given sessionId. + */ + post(method: 'NodeWorker.detach', params?: NodeWorker.DetachParameterType, callback?: (err: Error | null) => void): void; + post(method: 'NodeWorker.detach', callback?: (err: Error | null) => void): void; + /** + * Enable the `NodeRuntime.waitingForDisconnect`. + */ + post(method: 'NodeRuntime.notifyWhenWaitingForDisconnect', params?: NodeRuntime.NotifyWhenWaitingForDisconnectParameterType, callback?: (err: Error | null) => void): void; + post(method: 'NodeRuntime.notifyWhenWaitingForDisconnect', callback?: (err: Error | null) => void): void; + // Events + addListener(event: string, listener: (...args: any[]) => void): this; + /** + * Emitted when any notification from the V8 Inspector is received. + */ + addListener(event: 'inspectorNotification', listener: (message: InspectorNotification<{}>) => void): this; + /** + * Issued when new execution context is created. + */ + addListener(event: 'Runtime.executionContextCreated', listener: (message: InspectorNotification) => void): this; + /** + * Issued when execution context is destroyed. + */ + addListener(event: 'Runtime.executionContextDestroyed', listener: (message: InspectorNotification) => void): this; + /** + * Issued when all executionContexts were cleared in browser + */ + addListener(event: 'Runtime.executionContextsCleared', listener: () => void): this; + /** + * Issued when exception was thrown and unhandled. + */ + addListener(event: 'Runtime.exceptionThrown', listener: (message: InspectorNotification) => void): this; + /** + * Issued when unhandled exception was revoked. + */ + addListener(event: 'Runtime.exceptionRevoked', listener: (message: InspectorNotification) => void): this; + /** + * Issued when console API was called. + */ + addListener(event: 'Runtime.consoleAPICalled', listener: (message: InspectorNotification) => void): this; + /** + * Issued when object should be inspected (for example, as a result of inspect() command line API call). + */ + addListener(event: 'Runtime.inspectRequested', listener: (message: InspectorNotification) => void): this; + /** + * Fired when virtual machine parses script. This event is also fired for all known and uncollected scripts upon enabling debugger. + */ + addListener(event: 'Debugger.scriptParsed', listener: (message: InspectorNotification) => void): this; + /** + * Fired when virtual machine fails to parse the script. + */ + addListener(event: 'Debugger.scriptFailedToParse', listener: (message: InspectorNotification) => void): this; + /** + * Fired when breakpoint is resolved to an actual script and location. + */ + addListener(event: 'Debugger.breakpointResolved', listener: (message: InspectorNotification) => void): this; + /** + * Fired when the virtual machine stopped on breakpoint or exception or any other stop criteria. + */ + addListener(event: 'Debugger.paused', listener: (message: InspectorNotification) => void): this; + /** + * Fired when the virtual machine resumed execution. + */ + addListener(event: 'Debugger.resumed', listener: () => void): this; + /** + * Issued when new console message is added. + */ + addListener(event: 'Console.messageAdded', listener: (message: InspectorNotification) => void): this; + /** + * Sent when new profile recording is started using console.profile() call. + */ + addListener(event: 'Profiler.consoleProfileStarted', listener: (message: InspectorNotification) => void): this; + addListener(event: 'Profiler.consoleProfileFinished', listener: (message: InspectorNotification) => void): this; + addListener(event: 'HeapProfiler.addHeapSnapshotChunk', listener: (message: InspectorNotification) => void): this; + addListener(event: 'HeapProfiler.resetProfiles', listener: () => void): this; + addListener(event: 'HeapProfiler.reportHeapSnapshotProgress', listener: (message: InspectorNotification) => void): this; + /** + * If heap objects tracking has been started then backend regularly sends a current value for last seen object id and corresponding timestamp. If the were changes in the heap since last event then one or more heapStatsUpdate events will be sent before a new lastSeenObjectId event. + */ + addListener(event: 'HeapProfiler.lastSeenObjectId', listener: (message: InspectorNotification) => void): this; + /** + * If heap objects tracking has been started then backend may send update for one or more fragments + */ + addListener(event: 'HeapProfiler.heapStatsUpdate', listener: (message: InspectorNotification) => void): this; + /** + * Contains an bucket of collected trace events. + */ + addListener(event: 'NodeTracing.dataCollected', listener: (message: InspectorNotification) => void): this; + /** + * Signals that tracing is stopped and there is no trace buffers pending flush, all data were + * delivered via dataCollected events. + */ + addListener(event: 'NodeTracing.tracingComplete', listener: () => void): this; + /** + * Issued when attached to a worker. + */ + addListener(event: 'NodeWorker.attachedToWorker', listener: (message: InspectorNotification) => void): this; + /** + * Issued when detached from the worker. + */ + addListener(event: 'NodeWorker.detachedFromWorker', listener: (message: InspectorNotification) => void): this; + /** + * Notifies about a new protocol message received from the session + * (session ID is provided in attachedToWorker notification). + */ + addListener(event: 'NodeWorker.receivedMessageFromWorker', listener: (message: InspectorNotification) => void): this; + /** + * This event is fired instead of `Runtime.executionContextDestroyed` when + * enabled. + * It is fired when the Node process finished all code execution and is + * waiting for all frontends to disconnect. + */ + addListener(event: 'NodeRuntime.waitingForDisconnect', listener: () => void): this; + emit(event: string | symbol, ...args: any[]): boolean; + emit(event: 'inspectorNotification', message: InspectorNotification<{}>): boolean; + emit(event: 'Runtime.executionContextCreated', message: InspectorNotification): boolean; + emit(event: 'Runtime.executionContextDestroyed', message: InspectorNotification): boolean; + emit(event: 'Runtime.executionContextsCleared'): boolean; + emit(event: 'Runtime.exceptionThrown', message: InspectorNotification): boolean; + emit(event: 'Runtime.exceptionRevoked', message: InspectorNotification): boolean; + emit(event: 'Runtime.consoleAPICalled', message: InspectorNotification): boolean; + emit(event: 'Runtime.inspectRequested', message: InspectorNotification): boolean; + emit(event: 'Debugger.scriptParsed', message: InspectorNotification): boolean; + emit(event: 'Debugger.scriptFailedToParse', message: InspectorNotification): boolean; + emit(event: 'Debugger.breakpointResolved', message: InspectorNotification): boolean; + emit(event: 'Debugger.paused', message: InspectorNotification): boolean; + emit(event: 'Debugger.resumed'): boolean; + emit(event: 'Console.messageAdded', message: InspectorNotification): boolean; + emit(event: 'Profiler.consoleProfileStarted', message: InspectorNotification): boolean; + emit(event: 'Profiler.consoleProfileFinished', message: InspectorNotification): boolean; + emit(event: 'HeapProfiler.addHeapSnapshotChunk', message: InspectorNotification): boolean; + emit(event: 'HeapProfiler.resetProfiles'): boolean; + emit(event: 'HeapProfiler.reportHeapSnapshotProgress', message: InspectorNotification): boolean; + emit(event: 'HeapProfiler.lastSeenObjectId', message: InspectorNotification): boolean; + emit(event: 'HeapProfiler.heapStatsUpdate', message: InspectorNotification): boolean; + emit(event: 'NodeTracing.dataCollected', message: InspectorNotification): boolean; + emit(event: 'NodeTracing.tracingComplete'): boolean; + emit(event: 'NodeWorker.attachedToWorker', message: InspectorNotification): boolean; + emit(event: 'NodeWorker.detachedFromWorker', message: InspectorNotification): boolean; + emit(event: 'NodeWorker.receivedMessageFromWorker', message: InspectorNotification): boolean; + emit(event: 'NodeRuntime.waitingForDisconnect'): boolean; + on(event: string, listener: (...args: any[]) => void): this; + /** + * Emitted when any notification from the V8 Inspector is received. + */ + on(event: 'inspectorNotification', listener: (message: InspectorNotification<{}>) => void): this; + /** + * Issued when new execution context is created. + */ + on(event: 'Runtime.executionContextCreated', listener: (message: InspectorNotification) => void): this; + /** + * Issued when execution context is destroyed. + */ + on(event: 'Runtime.executionContextDestroyed', listener: (message: InspectorNotification) => void): this; + /** + * Issued when all executionContexts were cleared in browser + */ + on(event: 'Runtime.executionContextsCleared', listener: () => void): this; + /** + * Issued when exception was thrown and unhandled. + */ + on(event: 'Runtime.exceptionThrown', listener: (message: InspectorNotification) => void): this; + /** + * Issued when unhandled exception was revoked. + */ + on(event: 'Runtime.exceptionRevoked', listener: (message: InspectorNotification) => void): this; + /** + * Issued when console API was called. + */ + on(event: 'Runtime.consoleAPICalled', listener: (message: InspectorNotification) => void): this; + /** + * Issued when object should be inspected (for example, as a result of inspect() command line API call). + */ + on(event: 'Runtime.inspectRequested', listener: (message: InspectorNotification) => void): this; + /** + * Fired when virtual machine parses script. This event is also fired for all known and uncollected scripts upon enabling debugger. + */ + on(event: 'Debugger.scriptParsed', listener: (message: InspectorNotification) => void): this; + /** + * Fired when virtual machine fails to parse the script. + */ + on(event: 'Debugger.scriptFailedToParse', listener: (message: InspectorNotification) => void): this; + /** + * Fired when breakpoint is resolved to an actual script and location. + */ + on(event: 'Debugger.breakpointResolved', listener: (message: InspectorNotification) => void): this; + /** + * Fired when the virtual machine stopped on breakpoint or exception or any other stop criteria. + */ + on(event: 'Debugger.paused', listener: (message: InspectorNotification) => void): this; + /** + * Fired when the virtual machine resumed execution. + */ + on(event: 'Debugger.resumed', listener: () => void): this; + /** + * Issued when new console message is added. + */ + on(event: 'Console.messageAdded', listener: (message: InspectorNotification) => void): this; + /** + * Sent when new profile recording is started using console.profile() call. + */ + on(event: 'Profiler.consoleProfileStarted', listener: (message: InspectorNotification) => void): this; + on(event: 'Profiler.consoleProfileFinished', listener: (message: InspectorNotification) => void): this; + on(event: 'HeapProfiler.addHeapSnapshotChunk', listener: (message: InspectorNotification) => void): this; + on(event: 'HeapProfiler.resetProfiles', listener: () => void): this; + on(event: 'HeapProfiler.reportHeapSnapshotProgress', listener: (message: InspectorNotification) => void): this; + /** + * If heap objects tracking has been started then backend regularly sends a current value for last seen object id and corresponding timestamp. If the were changes in the heap since last event then one or more heapStatsUpdate events will be sent before a new lastSeenObjectId event. + */ + on(event: 'HeapProfiler.lastSeenObjectId', listener: (message: InspectorNotification) => void): this; + /** + * If heap objects tracking has been started then backend may send update for one or more fragments + */ + on(event: 'HeapProfiler.heapStatsUpdate', listener: (message: InspectorNotification) => void): this; + /** + * Contains an bucket of collected trace events. + */ + on(event: 'NodeTracing.dataCollected', listener: (message: InspectorNotification) => void): this; + /** + * Signals that tracing is stopped and there is no trace buffers pending flush, all data were + * delivered via dataCollected events. + */ + on(event: 'NodeTracing.tracingComplete', listener: () => void): this; + /** + * Issued when attached to a worker. + */ + on(event: 'NodeWorker.attachedToWorker', listener: (message: InspectorNotification) => void): this; + /** + * Issued when detached from the worker. + */ + on(event: 'NodeWorker.detachedFromWorker', listener: (message: InspectorNotification) => void): this; + /** + * Notifies about a new protocol message received from the session + * (session ID is provided in attachedToWorker notification). + */ + on(event: 'NodeWorker.receivedMessageFromWorker', listener: (message: InspectorNotification) => void): this; + /** + * This event is fired instead of `Runtime.executionContextDestroyed` when + * enabled. + * It is fired when the Node process finished all code execution and is + * waiting for all frontends to disconnect. + */ + on(event: 'NodeRuntime.waitingForDisconnect', listener: () => void): this; + once(event: string, listener: (...args: any[]) => void): this; + /** + * Emitted when any notification from the V8 Inspector is received. + */ + once(event: 'inspectorNotification', listener: (message: InspectorNotification<{}>) => void): this; + /** + * Issued when new execution context is created. + */ + once(event: 'Runtime.executionContextCreated', listener: (message: InspectorNotification) => void): this; + /** + * Issued when execution context is destroyed. + */ + once(event: 'Runtime.executionContextDestroyed', listener: (message: InspectorNotification) => void): this; + /** + * Issued when all executionContexts were cleared in browser + */ + once(event: 'Runtime.executionContextsCleared', listener: () => void): this; + /** + * Issued when exception was thrown and unhandled. + */ + once(event: 'Runtime.exceptionThrown', listener: (message: InspectorNotification) => void): this; + /** + * Issued when unhandled exception was revoked. + */ + once(event: 'Runtime.exceptionRevoked', listener: (message: InspectorNotification) => void): this; + /** + * Issued when console API was called. + */ + once(event: 'Runtime.consoleAPICalled', listener: (message: InspectorNotification) => void): this; + /** + * Issued when object should be inspected (for example, as a result of inspect() command line API call). + */ + once(event: 'Runtime.inspectRequested', listener: (message: InspectorNotification) => void): this; + /** + * Fired when virtual machine parses script. This event is also fired for all known and uncollected scripts upon enabling debugger. + */ + once(event: 'Debugger.scriptParsed', listener: (message: InspectorNotification) => void): this; + /** + * Fired when virtual machine fails to parse the script. + */ + once(event: 'Debugger.scriptFailedToParse', listener: (message: InspectorNotification) => void): this; + /** + * Fired when breakpoint is resolved to an actual script and location. + */ + once(event: 'Debugger.breakpointResolved', listener: (message: InspectorNotification) => void): this; + /** + * Fired when the virtual machine stopped on breakpoint or exception or any other stop criteria. + */ + once(event: 'Debugger.paused', listener: (message: InspectorNotification) => void): this; + /** + * Fired when the virtual machine resumed execution. + */ + once(event: 'Debugger.resumed', listener: () => void): this; + /** + * Issued when new console message is added. + */ + once(event: 'Console.messageAdded', listener: (message: InspectorNotification) => void): this; + /** + * Sent when new profile recording is started using console.profile() call. + */ + once(event: 'Profiler.consoleProfileStarted', listener: (message: InspectorNotification) => void): this; + once(event: 'Profiler.consoleProfileFinished', listener: (message: InspectorNotification) => void): this; + once(event: 'HeapProfiler.addHeapSnapshotChunk', listener: (message: InspectorNotification) => void): this; + once(event: 'HeapProfiler.resetProfiles', listener: () => void): this; + once(event: 'HeapProfiler.reportHeapSnapshotProgress', listener: (message: InspectorNotification) => void): this; + /** + * If heap objects tracking has been started then backend regularly sends a current value for last seen object id and corresponding timestamp. If the were changes in the heap since last event then one or more heapStatsUpdate events will be sent before a new lastSeenObjectId event. + */ + once(event: 'HeapProfiler.lastSeenObjectId', listener: (message: InspectorNotification) => void): this; + /** + * If heap objects tracking has been started then backend may send update for one or more fragments + */ + once(event: 'HeapProfiler.heapStatsUpdate', listener: (message: InspectorNotification) => void): this; + /** + * Contains an bucket of collected trace events. + */ + once(event: 'NodeTracing.dataCollected', listener: (message: InspectorNotification) => void): this; + /** + * Signals that tracing is stopped and there is no trace buffers pending flush, all data were + * delivered via dataCollected events. + */ + once(event: 'NodeTracing.tracingComplete', listener: () => void): this; + /** + * Issued when attached to a worker. + */ + once(event: 'NodeWorker.attachedToWorker', listener: (message: InspectorNotification) => void): this; + /** + * Issued when detached from the worker. + */ + once(event: 'NodeWorker.detachedFromWorker', listener: (message: InspectorNotification) => void): this; + /** + * Notifies about a new protocol message received from the session + * (session ID is provided in attachedToWorker notification). + */ + once(event: 'NodeWorker.receivedMessageFromWorker', listener: (message: InspectorNotification) => void): this; + /** + * This event is fired instead of `Runtime.executionContextDestroyed` when + * enabled. + * It is fired when the Node process finished all code execution and is + * waiting for all frontends to disconnect. + */ + once(event: 'NodeRuntime.waitingForDisconnect', listener: () => void): this; + prependListener(event: string, listener: (...args: any[]) => void): this; + /** + * Emitted when any notification from the V8 Inspector is received. + */ + prependListener(event: 'inspectorNotification', listener: (message: InspectorNotification<{}>) => void): this; + /** + * Issued when new execution context is created. + */ + prependListener(event: 'Runtime.executionContextCreated', listener: (message: InspectorNotification) => void): this; + /** + * Issued when execution context is destroyed. + */ + prependListener(event: 'Runtime.executionContextDestroyed', listener: (message: InspectorNotification) => void): this; + /** + * Issued when all executionContexts were cleared in browser + */ + prependListener(event: 'Runtime.executionContextsCleared', listener: () => void): this; + /** + * Issued when exception was thrown and unhandled. + */ + prependListener(event: 'Runtime.exceptionThrown', listener: (message: InspectorNotification) => void): this; + /** + * Issued when unhandled exception was revoked. + */ + prependListener(event: 'Runtime.exceptionRevoked', listener: (message: InspectorNotification) => void): this; + /** + * Issued when console API was called. + */ + prependListener(event: 'Runtime.consoleAPICalled', listener: (message: InspectorNotification) => void): this; + /** + * Issued when object should be inspected (for example, as a result of inspect() command line API call). + */ + prependListener(event: 'Runtime.inspectRequested', listener: (message: InspectorNotification) => void): this; + /** + * Fired when virtual machine parses script. This event is also fired for all known and uncollected scripts upon enabling debugger. + */ + prependListener(event: 'Debugger.scriptParsed', listener: (message: InspectorNotification) => void): this; + /** + * Fired when virtual machine fails to parse the script. + */ + prependListener(event: 'Debugger.scriptFailedToParse', listener: (message: InspectorNotification) => void): this; + /** + * Fired when breakpoint is resolved to an actual script and location. + */ + prependListener(event: 'Debugger.breakpointResolved', listener: (message: InspectorNotification) => void): this; + /** + * Fired when the virtual machine stopped on breakpoint or exception or any other stop criteria. + */ + prependListener(event: 'Debugger.paused', listener: (message: InspectorNotification) => void): this; + /** + * Fired when the virtual machine resumed execution. + */ + prependListener(event: 'Debugger.resumed', listener: () => void): this; + /** + * Issued when new console message is added. + */ + prependListener(event: 'Console.messageAdded', listener: (message: InspectorNotification) => void): this; + /** + * Sent when new profile recording is started using console.profile() call. + */ + prependListener(event: 'Profiler.consoleProfileStarted', listener: (message: InspectorNotification) => void): this; + prependListener(event: 'Profiler.consoleProfileFinished', listener: (message: InspectorNotification) => void): this; + prependListener(event: 'HeapProfiler.addHeapSnapshotChunk', listener: (message: InspectorNotification) => void): this; + prependListener(event: 'HeapProfiler.resetProfiles', listener: () => void): this; + prependListener(event: 'HeapProfiler.reportHeapSnapshotProgress', listener: (message: InspectorNotification) => void): this; + /** + * If heap objects tracking has been started then backend regularly sends a current value for last seen object id and corresponding timestamp. If the were changes in the heap since last event then one or more heapStatsUpdate events will be sent before a new lastSeenObjectId event. + */ + prependListener(event: 'HeapProfiler.lastSeenObjectId', listener: (message: InspectorNotification) => void): this; + /** + * If heap objects tracking has been started then backend may send update for one or more fragments + */ + prependListener(event: 'HeapProfiler.heapStatsUpdate', listener: (message: InspectorNotification) => void): this; + /** + * Contains an bucket of collected trace events. + */ + prependListener(event: 'NodeTracing.dataCollected', listener: (message: InspectorNotification) => void): this; + /** + * Signals that tracing is stopped and there is no trace buffers pending flush, all data were + * delivered via dataCollected events. + */ + prependListener(event: 'NodeTracing.tracingComplete', listener: () => void): this; + /** + * Issued when attached to a worker. + */ + prependListener(event: 'NodeWorker.attachedToWorker', listener: (message: InspectorNotification) => void): this; + /** + * Issued when detached from the worker. + */ + prependListener(event: 'NodeWorker.detachedFromWorker', listener: (message: InspectorNotification) => void): this; + /** + * Notifies about a new protocol message received from the session + * (session ID is provided in attachedToWorker notification). + */ + prependListener(event: 'NodeWorker.receivedMessageFromWorker', listener: (message: InspectorNotification) => void): this; + /** + * This event is fired instead of `Runtime.executionContextDestroyed` when + * enabled. + * It is fired when the Node process finished all code execution and is + * waiting for all frontends to disconnect. + */ + prependListener(event: 'NodeRuntime.waitingForDisconnect', listener: () => void): this; + prependOnceListener(event: string, listener: (...args: any[]) => void): this; + /** + * Emitted when any notification from the V8 Inspector is received. + */ + prependOnceListener(event: 'inspectorNotification', listener: (message: InspectorNotification<{}>) => void): this; + /** + * Issued when new execution context is created. + */ + prependOnceListener(event: 'Runtime.executionContextCreated', listener: (message: InspectorNotification) => void): this; + /** + * Issued when execution context is destroyed. + */ + prependOnceListener(event: 'Runtime.executionContextDestroyed', listener: (message: InspectorNotification) => void): this; + /** + * Issued when all executionContexts were cleared in browser + */ + prependOnceListener(event: 'Runtime.executionContextsCleared', listener: () => void): this; + /** + * Issued when exception was thrown and unhandled. + */ + prependOnceListener(event: 'Runtime.exceptionThrown', listener: (message: InspectorNotification) => void): this; + /** + * Issued when unhandled exception was revoked. + */ + prependOnceListener(event: 'Runtime.exceptionRevoked', listener: (message: InspectorNotification) => void): this; + /** + * Issued when console API was called. + */ + prependOnceListener(event: 'Runtime.consoleAPICalled', listener: (message: InspectorNotification) => void): this; + /** + * Issued when object should be inspected (for example, as a result of inspect() command line API call). + */ + prependOnceListener(event: 'Runtime.inspectRequested', listener: (message: InspectorNotification) => void): this; + /** + * Fired when virtual machine parses script. This event is also fired for all known and uncollected scripts upon enabling debugger. + */ + prependOnceListener(event: 'Debugger.scriptParsed', listener: (message: InspectorNotification) => void): this; + /** + * Fired when virtual machine fails to parse the script. + */ + prependOnceListener(event: 'Debugger.scriptFailedToParse', listener: (message: InspectorNotification) => void): this; + /** + * Fired when breakpoint is resolved to an actual script and location. + */ + prependOnceListener(event: 'Debugger.breakpointResolved', listener: (message: InspectorNotification) => void): this; + /** + * Fired when the virtual machine stopped on breakpoint or exception or any other stop criteria. + */ + prependOnceListener(event: 'Debugger.paused', listener: (message: InspectorNotification) => void): this; + /** + * Fired when the virtual machine resumed execution. + */ + prependOnceListener(event: 'Debugger.resumed', listener: () => void): this; + /** + * Issued when new console message is added. + */ + prependOnceListener(event: 'Console.messageAdded', listener: (message: InspectorNotification) => void): this; + /** + * Sent when new profile recording is started using console.profile() call. + */ + prependOnceListener(event: 'Profiler.consoleProfileStarted', listener: (message: InspectorNotification) => void): this; + prependOnceListener(event: 'Profiler.consoleProfileFinished', listener: (message: InspectorNotification) => void): this; + prependOnceListener(event: 'HeapProfiler.addHeapSnapshotChunk', listener: (message: InspectorNotification) => void): this; + prependOnceListener(event: 'HeapProfiler.resetProfiles', listener: () => void): this; + prependOnceListener(event: 'HeapProfiler.reportHeapSnapshotProgress', listener: (message: InspectorNotification) => void): this; + /** + * If heap objects tracking has been started then backend regularly sends a current value for last seen object id and corresponding timestamp. If the were changes in the heap since last event then one or more heapStatsUpdate events will be sent before a new lastSeenObjectId event. + */ + prependOnceListener(event: 'HeapProfiler.lastSeenObjectId', listener: (message: InspectorNotification) => void): this; + /** + * If heap objects tracking has been started then backend may send update for one or more fragments + */ + prependOnceListener(event: 'HeapProfiler.heapStatsUpdate', listener: (message: InspectorNotification) => void): this; + /** + * Contains an bucket of collected trace events. + */ + prependOnceListener(event: 'NodeTracing.dataCollected', listener: (message: InspectorNotification) => void): this; + /** + * Signals that tracing is stopped and there is no trace buffers pending flush, all data were + * delivered via dataCollected events. + */ + prependOnceListener(event: 'NodeTracing.tracingComplete', listener: () => void): this; + /** + * Issued when attached to a worker. + */ + prependOnceListener(event: 'NodeWorker.attachedToWorker', listener: (message: InspectorNotification) => void): this; + /** + * Issued when detached from the worker. + */ + prependOnceListener(event: 'NodeWorker.detachedFromWorker', listener: (message: InspectorNotification) => void): this; + /** + * Notifies about a new protocol message received from the session + * (session ID is provided in attachedToWorker notification). + */ + prependOnceListener(event: 'NodeWorker.receivedMessageFromWorker', listener: (message: InspectorNotification) => void): this; + /** + * This event is fired instead of `Runtime.executionContextDestroyed` when + * enabled. + * It is fired when the Node process finished all code execution and is + * waiting for all frontends to disconnect. + */ + prependOnceListener(event: 'NodeRuntime.waitingForDisconnect', listener: () => void): this; + } + /** + * Activate inspector on host and port. Equivalent to`node --inspect=[[host:]port]`, but can be done programmatically after node has + * started. + * + * If wait is `true`, will block until a client has connected to the inspect port + * and flow control has been passed to the debugger client. + * + * See the `security warning` regarding the `host`parameter usage. + * @param [port='what was specified on the CLI'] Port to listen on for inspector connections. Optional. + * @param [host='what was specified on the CLI'] Host to listen on for inspector connections. Optional. + * @param [wait=false] Block until a client has connected. Optional. + */ + function open(port?: number, host?: string, wait?: boolean): void; + /** + * Deactivate the inspector. Blocks until there are no active connections. + */ + function close(): void; + /** + * Return the URL of the active inspector, or `undefined` if there is none. + * + * ```console + * $ node --inspect -p 'inspector.url()' + * Debugger listening on ws://127.0.0.1:9229/166e272e-7a30-4d09-97ce-f1c012b43c34 + * For help, see: https://nodejs.org/en/docs/inspector + * ws://127.0.0.1:9229/166e272e-7a30-4d09-97ce-f1c012b43c34 + * + * $ node --inspect=localhost:3000 -p 'inspector.url()' + * Debugger listening on ws://localhost:3000/51cf8d0e-3c36-4c59-8efd-54519839e56a + * For help, see: https://nodejs.org/en/docs/inspector + * ws://localhost:3000/51cf8d0e-3c36-4c59-8efd-54519839e56a + * + * $ node -p 'inspector.url()' + * undefined + * ``` + */ + function url(): string | undefined; + /** + * Blocks until a client (existing or connected later) has sent`Runtime.runIfWaitingForDebugger` command. + * + * An exception will be thrown if there is no active inspector. + * @since v12.7.0 + */ + function waitForDebugger(): void; +} +/** + * The inspector module provides an API for interacting with the V8 inspector. + */ +declare module 'node:inspector' { + import inspector = require('inspector'); + export = inspector; +} diff --git a/node_modules/@types/node/module.d.ts b/node_modules/@types/node/module.d.ts new file mode 100644 index 000000000..d83aec94a --- /dev/null +++ b/node_modules/@types/node/module.d.ts @@ -0,0 +1,114 @@ +/** + * @since v0.3.7 + */ +declare module 'module' { + import { URL } from 'node:url'; + namespace Module { + /** + * The `module.syncBuiltinESMExports()` method updates all the live bindings for + * builtin `ES Modules` to match the properties of the `CommonJS` exports. It + * does not add or remove exported names from the `ES Modules`. + * + * ```js + * const fs = require('fs'); + * const assert = require('assert'); + * const { syncBuiltinESMExports } = require('module'); + * + * fs.readFile = newAPI; + * + * delete fs.readFileSync; + * + * function newAPI() { + * // ... + * } + * + * fs.newAPI = newAPI; + * + * syncBuiltinESMExports(); + * + * import('fs').then((esmFS) => { + * // It syncs the existing readFile property with the new value + * assert.strictEqual(esmFS.readFile, newAPI); + * // readFileSync has been deleted from the required fs + * assert.strictEqual('readFileSync' in fs, false); + * // syncBuiltinESMExports() does not remove readFileSync from esmFS + * assert.strictEqual('readFileSync' in esmFS, true); + * // syncBuiltinESMExports() does not add names + * assert.strictEqual(esmFS.newAPI, undefined); + * }); + * ``` + * @since v12.12.0 + */ + function syncBuiltinESMExports(): void; + /** + * `path` is the resolved path for the file for which a corresponding source map + * should be fetched. + * @since v13.7.0, v12.17.0 + */ + function findSourceMap(path: string, error?: Error): SourceMap; + interface SourceMapPayload { + file: string; + version: number; + sources: string[]; + sourcesContent: string[]; + names: string[]; + mappings: string; + sourceRoot: string; + } + interface SourceMapping { + generatedLine: number; + generatedColumn: number; + originalSource: string; + originalLine: number; + originalColumn: number; + } + /** + * @since v13.7.0, v12.17.0 + */ + class SourceMap { + /** + * Getter for the payload used to construct the `SourceMap` instance. + */ + readonly payload: SourceMapPayload; + constructor(payload: SourceMapPayload); + /** + * Given a line number and column number in the generated source file, returns + * an object representing the position in the original file. The object returned + * consists of the following keys: + */ + findEntry(line: number, column: number): SourceMapping; + } + } + interface Module extends NodeModule {} + class Module { + static runMain(): void; + static wrap(code: string): string; + static createRequire(path: string | URL): NodeRequire; + static builtinModules: string[]; + static Module: typeof Module; + constructor(id: string, parent?: Module); + } + global { + interface ImportMeta { + url: string; + /** + * @experimental + * This feature is only available with the `--experimental-import-meta-resolve` + * command flag enabled. + * + * Provides a module-relative resolution function scoped to each module, returning + * the URL string. + * + * @param specified The module specifier to resolve relative to `parent`. + * @param parent The absolute parent module URL to resolve from. If none + * is specified, the value of `import.meta.url` is used as the default. + */ + resolve?(specified: string, parent?: string | URL): Promise; + } + } + export = Module; +} +declare module 'node:module' { + import module = require('module'); + export = module; +} diff --git a/node_modules/@types/node/net.d.ts b/node_modules/@types/node/net.d.ts new file mode 100644 index 000000000..b7355383f --- /dev/null +++ b/node_modules/@types/node/net.d.ts @@ -0,0 +1,869 @@ +/** + * > Stability: 2 - Stable + * + * The `net` module provides an asynchronous network API for creating stream-based + * TCP or `IPC` servers ({@link createServer}) and clients + * ({@link createConnection}). + * + * It can be accessed using: + * + * ```js + * const net = require('net'); + * ``` + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/net.js) + */ +declare module 'net' { + import * as stream from 'node:stream'; + import { Abortable, EventEmitter } from 'node:events'; + import * as dns from 'node:dns'; + type LookupFunction = (hostname: string, options: dns.LookupOneOptions, callback: (err: NodeJS.ErrnoException | null, address: string, family: number) => void) => void; + interface AddressInfo { + address: string; + family: string; + port: number; + } + interface SocketConstructorOpts { + fd?: number | undefined; + allowHalfOpen?: boolean | undefined; + readable?: boolean | undefined; + writable?: boolean | undefined; + signal?: AbortSignal; + } + interface OnReadOpts { + buffer: Uint8Array | (() => Uint8Array); + /** + * This function is called for every chunk of incoming data. + * Two arguments are passed to it: the number of bytes written to buffer and a reference to buffer. + * Return false from this function to implicitly pause() the socket. + */ + callback(bytesWritten: number, buf: Uint8Array): boolean; + } + interface ConnectOpts { + /** + * If specified, incoming data is stored in a single buffer and passed to the supplied callback when data arrives on the socket. + * Note: this will cause the streaming functionality to not provide any data, however events like 'error', 'end', and 'close' will + * still be emitted as normal and methods like pause() and resume() will also behave as expected. + */ + onread?: OnReadOpts | undefined; + } + interface TcpSocketConnectOpts extends ConnectOpts { + port: number; + host?: string | undefined; + localAddress?: string | undefined; + localPort?: number | undefined; + hints?: number | undefined; + family?: number | undefined; + lookup?: LookupFunction | undefined; + noDelay?: boolean | undefined; + keepAlive?: boolean | undefined; + keepAliveInitialDelay?: number | undefined; + } + interface IpcSocketConnectOpts extends ConnectOpts { + path: string; + } + type SocketConnectOpts = TcpSocketConnectOpts | IpcSocketConnectOpts; + type SocketReadyState = 'opening' | 'open' | 'readOnly' | 'writeOnly' | 'closed'; + /** + * This class is an abstraction of a TCP socket or a streaming `IPC` endpoint + * (uses named pipes on Windows, and Unix domain sockets otherwise). It is also + * an `EventEmitter`. + * + * A `net.Socket` can be created by the user and used directly to interact with + * a server. For example, it is returned by {@link createConnection}, + * so the user can use it to talk to the server. + * + * It can also be created by Node.js and passed to the user when a connection + * is received. For example, it is passed to the listeners of a `'connection'` event emitted on a {@link Server}, so the user can use + * it to interact with the client. + * @since v0.3.4 + */ + class Socket extends stream.Duplex { + constructor(options?: SocketConstructorOpts); + /** + * Sends data on the socket. The second parameter specifies the encoding in the + * case of a string. It defaults to UTF8 encoding. + * + * Returns `true` if the entire data was flushed successfully to the kernel + * buffer. Returns `false` if all or part of the data was queued in user memory.`'drain'` will be emitted when the buffer is again free. + * + * The optional `callback` parameter will be executed when the data is finally + * written out, which may not be immediately. + * + * See `Writable` stream `write()` method for more + * information. + * @since v0.1.90 + * @param [encoding='utf8'] Only used when data is `string`. + */ + write(buffer: Uint8Array | string, cb?: (err?: Error) => void): boolean; + write(str: Uint8Array | string, encoding?: BufferEncoding, cb?: (err?: Error) => void): boolean; + /** + * Initiate a connection on a given socket. + * + * Possible signatures: + * + * * `socket.connect(options[, connectListener])` + * * `socket.connect(path[, connectListener])` for `IPC` connections. + * * `socket.connect(port[, host][, connectListener])` for TCP connections. + * * Returns: `net.Socket` The socket itself. + * + * This function is asynchronous. When the connection is established, the `'connect'` event will be emitted. If there is a problem connecting, + * instead of a `'connect'` event, an `'error'` event will be emitted with + * the error passed to the `'error'` listener. + * The last parameter `connectListener`, if supplied, will be added as a listener + * for the `'connect'` event **once**. + * + * This function should only be used for reconnecting a socket after`'close'` has been emitted or otherwise it may lead to undefined + * behavior. + */ + connect(options: SocketConnectOpts, connectionListener?: () => void): this; + connect(port: number, host: string, connectionListener?: () => void): this; + connect(port: number, connectionListener?: () => void): this; + connect(path: string, connectionListener?: () => void): this; + /** + * Set the encoding for the socket as a `Readable Stream`. See `readable.setEncoding()` for more information. + * @since v0.1.90 + * @return The socket itself. + */ + setEncoding(encoding?: BufferEncoding): this; + /** + * Pauses the reading of data. That is, `'data'` events will not be emitted. + * Useful to throttle back an upload. + * @return The socket itself. + */ + pause(): this; + /** + * Close the TCP connection by sending an RST packet and destroy the stream. + * If this TCP socket is in connecting status, it will send an RST packet + * and destroy this TCP socket once it is connected. Otherwise, it will call + * `socket.destroy` with an `ERR_SOCKET_CLOSED` Error. If this is not a TCP socket + * (for example, a pipe), calling this method will immediately throw + * an `ERR_INVALID_HANDLE_TYPE` Error. + * @since v18.3.0 + * @return The socket itself. + */ + resetAndDestroy(): this; + /** + * Resumes reading after a call to `socket.pause()`. + * @return The socket itself. + */ + resume(): this; + /** + * Sets the socket to timeout after `timeout` milliseconds of inactivity on + * the socket. By default `net.Socket` do not have a timeout. + * + * When an idle timeout is triggered the socket will receive a `'timeout'` event but the connection will not be severed. The user must manually call `socket.end()` or `socket.destroy()` to + * end the connection. + * + * ```js + * socket.setTimeout(3000); + * socket.on('timeout', () => { + * console.log('socket timeout'); + * socket.end(); + * }); + * ``` + * + * If `timeout` is 0, then the existing idle timeout is disabled. + * + * The optional `callback` parameter will be added as a one-time listener for the `'timeout'` event. + * @since v0.1.90 + * @return The socket itself. + */ + setTimeout(timeout: number, callback?: () => void): this; + /** + * Enable/disable the use of Nagle's algorithm. + * + * When a TCP connection is created, it will have Nagle's algorithm enabled. + * + * Nagle's algorithm delays data before it is sent via the network. It attempts + * to optimize throughput at the expense of latency. + * + * Passing `true` for `noDelay` or not passing an argument will disable Nagle's + * algorithm for the socket. Passing `false` for `noDelay` will enable Nagle's + * algorithm. + * @since v0.1.90 + * @param [noDelay=true] + * @return The socket itself. + */ + setNoDelay(noDelay?: boolean): this; + /** + * Enable/disable keep-alive functionality, and optionally set the initial + * delay before the first keepalive probe is sent on an idle socket. + * + * Set `initialDelay` (in milliseconds) to set the delay between the last + * data packet received and the first keepalive probe. Setting `0` for`initialDelay` will leave the value unchanged from the default + * (or previous) setting. + * + * Enabling the keep-alive functionality will set the following socket options: + * + * * `SO_KEEPALIVE=1` + * * `TCP_KEEPIDLE=initialDelay` + * * `TCP_KEEPCNT=10` + * * `TCP_KEEPINTVL=1` + * @since v0.1.92 + * @param [enable=false] + * @param [initialDelay=0] + * @return The socket itself. + */ + setKeepAlive(enable?: boolean, initialDelay?: number): this; + /** + * Returns the bound `address`, the address `family` name and `port` of the + * socket as reported by the operating system:`{ port: 12346, family: 'IPv4', address: '127.0.0.1' }` + * @since v0.1.90 + */ + address(): AddressInfo | {}; + /** + * Calling `unref()` on a socket will allow the program to exit if this is the only + * active socket in the event system. If the socket is already `unref`ed calling`unref()` again will have no effect. + * @since v0.9.1 + * @return The socket itself. + */ + unref(): this; + /** + * Opposite of `unref()`, calling `ref()` on a previously `unref`ed socket will _not_ let the program exit if it's the only socket left (the default behavior). + * If the socket is `ref`ed calling `ref` again will have no effect. + * @since v0.9.1 + * @return The socket itself. + */ + ref(): this; + /** + * This property shows the number of characters buffered for writing. The buffer + * may contain strings whose length after encoding is not yet known. So this number + * is only an approximation of the number of bytes in the buffer. + * + * `net.Socket` has the property that `socket.write()` always works. This is to + * help users get up and running quickly. The computer cannot always keep up + * with the amount of data that is written to a socket. The network connection + * simply might be too slow. Node.js will internally queue up the data written to a + * socket and send it out over the wire when it is possible. + * + * The consequence of this internal buffering is that memory may grow. + * Users who experience large or growing `bufferSize` should attempt to + * "throttle" the data flows in their program with `socket.pause()` and `socket.resume()`. + * @since v0.3.8 + * @deprecated Since v14.6.0 - Use `writableLength` instead. + */ + readonly bufferSize: number; + /** + * The amount of received bytes. + * @since v0.5.3 + */ + readonly bytesRead: number; + /** + * The amount of bytes sent. + * @since v0.5.3 + */ + readonly bytesWritten: number; + /** + * If `true`,`socket.connect(options[, connectListener])` was + * called and has not yet finished. It will stay `true` until the socket becomes + * connected, then it is set to `false` and the `'connect'` event is emitted. Note + * that the `socket.connect(options[, connectListener])` callback is a listener for the `'connect'` event. + * @since v6.1.0 + */ + readonly connecting: boolean; + /** + * See `writable.destroyed` for further details. + */ + readonly destroyed: boolean; + /** + * The string representation of the local IP address the remote client is + * connecting on. For example, in a server listening on `'0.0.0.0'`, if a client + * connects on `'192.168.1.1'`, the value of `socket.localAddress` would be`'192.168.1.1'`. + * @since v0.9.6 + */ + readonly localAddress?: string; + /** + * The numeric representation of the local port. For example, `80` or `21`. + * @since v0.9.6 + */ + readonly localPort?: number; + /** + * The string representation of the local IP family. `'IPv4'` or `'IPv6'`. + * @since v18.8.0 + */ + readonly localFamily?: string; + /** + * This property represents the state of the connection as a string. + * @see {https://nodejs.org/api/net.html#socketreadystate} + * @since v0.5.0 + */ + readonly readyState: SocketReadyState; + /** + * The string representation of the remote IP address. For example,`'74.125.127.100'` or `'2001:4860:a005::68'`. Value may be `undefined` if + * the socket is destroyed (for example, if the client disconnected). + * @since v0.5.10 + */ + readonly remoteAddress?: string | undefined; + /** + * The string representation of the remote IP family. `'IPv4'` or `'IPv6'`. + * @since v0.11.14 + */ + readonly remoteFamily?: string | undefined; + /** + * The numeric representation of the remote port. For example, `80` or `21`. + * @since v0.5.10 + */ + readonly remotePort?: number | undefined; + /** + * The socket timeout in milliseconds as set by socket.setTimeout(). It is undefined if a timeout has not been set. + * @since v10.7.0 + */ + readonly timeout?: number | undefined; + /** + * Half-closes the socket. i.e., it sends a FIN packet. It is possible the + * server will still send some data. + * + * See `writable.end()` for further details. + * @since v0.1.90 + * @param [encoding='utf8'] Only used when data is `string`. + * @param callback Optional callback for when the socket is finished. + * @return The socket itself. + */ + end(callback?: () => void): this; + end(buffer: Uint8Array | string, callback?: () => void): this; + end(str: Uint8Array | string, encoding?: BufferEncoding, callback?: () => void): this; + /** + * events.EventEmitter + * 1. close + * 2. connect + * 3. data + * 4. drain + * 5. end + * 6. error + * 7. lookup + * 8. ready + * 9. timeout + */ + addListener(event: string, listener: (...args: any[]) => void): this; + addListener(event: 'close', listener: (hadError: boolean) => void): this; + addListener(event: 'connect', listener: () => void): this; + addListener(event: 'data', listener: (data: Buffer) => void): this; + addListener(event: 'drain', listener: () => void): this; + addListener(event: 'end', listener: () => void): this; + addListener(event: 'error', listener: (err: Error) => void): this; + addListener(event: 'lookup', listener: (err: Error, address: string, family: string | number, host: string) => void): this; + addListener(event: 'ready', listener: () => void): this; + addListener(event: 'timeout', listener: () => void): this; + emit(event: string | symbol, ...args: any[]): boolean; + emit(event: 'close', hadError: boolean): boolean; + emit(event: 'connect'): boolean; + emit(event: 'data', data: Buffer): boolean; + emit(event: 'drain'): boolean; + emit(event: 'end'): boolean; + emit(event: 'error', err: Error): boolean; + emit(event: 'lookup', err: Error, address: string, family: string | number, host: string): boolean; + emit(event: 'ready'): boolean; + emit(event: 'timeout'): boolean; + on(event: string, listener: (...args: any[]) => void): this; + on(event: 'close', listener: (hadError: boolean) => void): this; + on(event: 'connect', listener: () => void): this; + on(event: 'data', listener: (data: Buffer) => void): this; + on(event: 'drain', listener: () => void): this; + on(event: 'end', listener: () => void): this; + on(event: 'error', listener: (err: Error) => void): this; + on(event: 'lookup', listener: (err: Error, address: string, family: string | number, host: string) => void): this; + on(event: 'ready', listener: () => void): this; + on(event: 'timeout', listener: () => void): this; + once(event: string, listener: (...args: any[]) => void): this; + once(event: 'close', listener: (hadError: boolean) => void): this; + once(event: 'connect', listener: () => void): this; + once(event: 'data', listener: (data: Buffer) => void): this; + once(event: 'drain', listener: () => void): this; + once(event: 'end', listener: () => void): this; + once(event: 'error', listener: (err: Error) => void): this; + once(event: 'lookup', listener: (err: Error, address: string, family: string | number, host: string) => void): this; + once(event: 'ready', listener: () => void): this; + once(event: 'timeout', listener: () => void): this; + prependListener(event: string, listener: (...args: any[]) => void): this; + prependListener(event: 'close', listener: (hadError: boolean) => void): this; + prependListener(event: 'connect', listener: () => void): this; + prependListener(event: 'data', listener: (data: Buffer) => void): this; + prependListener(event: 'drain', listener: () => void): this; + prependListener(event: 'end', listener: () => void): this; + prependListener(event: 'error', listener: (err: Error) => void): this; + prependListener(event: 'lookup', listener: (err: Error, address: string, family: string | number, host: string) => void): this; + prependListener(event: 'ready', listener: () => void): this; + prependListener(event: 'timeout', listener: () => void): this; + prependOnceListener(event: string, listener: (...args: any[]) => void): this; + prependOnceListener(event: 'close', listener: (hadError: boolean) => void): this; + prependOnceListener(event: 'connect', listener: () => void): this; + prependOnceListener(event: 'data', listener: (data: Buffer) => void): this; + prependOnceListener(event: 'drain', listener: () => void): this; + prependOnceListener(event: 'end', listener: () => void): this; + prependOnceListener(event: 'error', listener: (err: Error) => void): this; + prependOnceListener(event: 'lookup', listener: (err: Error, address: string, family: string | number, host: string) => void): this; + prependOnceListener(event: 'ready', listener: () => void): this; + prependOnceListener(event: 'timeout', listener: () => void): this; + } + interface ListenOptions extends Abortable { + port?: number | undefined; + host?: string | undefined; + backlog?: number | undefined; + path?: string | undefined; + exclusive?: boolean | undefined; + readableAll?: boolean | undefined; + writableAll?: boolean | undefined; + /** + * @default false + */ + ipv6Only?: boolean | undefined; + } + interface ServerOpts { + /** + * Indicates whether half-opened TCP connections are allowed. + * @default false + */ + allowHalfOpen?: boolean | undefined; + /** + * Indicates whether the socket should be paused on incoming connections. + * @default false + */ + pauseOnConnect?: boolean | undefined; + /** + * If set to `true`, it disables the use of Nagle's algorithm immediately after a new incoming connection is received. + * @default false + * @since v16.5.0 + */ + noDelay?: boolean | undefined; + /** + * If set to `true`, it enables keep-alive functionality on the socket immediately after a new incoming connection is received, + * similarly on what is done in `socket.setKeepAlive([enable][, initialDelay])`. + * @default false + * @since v16.5.0 + */ + keepAlive?: boolean | undefined; + /** + * If set to a positive number, it sets the initial delay before the first keepalive probe is sent on an idle socket. + * @default 0 + * @since v16.5.0 + */ + keepAliveInitialDelay?: number | undefined; + } + interface DropArgument { + localAddress?: string; + localPort?: number; + localFamily?: string; + remoteAddress?: string; + remotePort?: number; + remoteFamily?: string; + } + /** + * This class is used to create a TCP or `IPC` server. + * @since v0.1.90 + */ + class Server extends EventEmitter { + constructor(connectionListener?: (socket: Socket) => void); + constructor(options?: ServerOpts, connectionListener?: (socket: Socket) => void); + /** + * Start a server listening for connections. A `net.Server` can be a TCP or + * an `IPC` server depending on what it listens to. + * + * Possible signatures: + * + * * `server.listen(handle[, backlog][, callback])` + * * `server.listen(options[, callback])` + * * `server.listen(path[, backlog][, callback])` for `IPC` servers + * * `server.listen([port[, host[, backlog]]][, callback])` for TCP servers + * + * This function is asynchronous. When the server starts listening, the `'listening'` event will be emitted. The last parameter `callback`will be added as a listener for the `'listening'` + * event. + * + * All `listen()` methods can take a `backlog` parameter to specify the maximum + * length of the queue of pending connections. The actual length will be determined + * by the OS through sysctl settings such as `tcp_max_syn_backlog` and `somaxconn`on Linux. The default value of this parameter is 511 (not 512). + * + * All {@link Socket} are set to `SO_REUSEADDR` (see [`socket(7)`](https://man7.org/linux/man-pages/man7/socket.7.html) for + * details). + * + * The `server.listen()` method can be called again if and only if there was an + * error during the first `server.listen()` call or `server.close()` has been + * called. Otherwise, an `ERR_SERVER_ALREADY_LISTEN` error will be thrown. + * + * One of the most common errors raised when listening is `EADDRINUSE`. + * This happens when another server is already listening on the requested`port`/`path`/`handle`. One way to handle this would be to retry + * after a certain amount of time: + * + * ```js + * server.on('error', (e) => { + * if (e.code === 'EADDRINUSE') { + * console.log('Address in use, retrying...'); + * setTimeout(() => { + * server.close(); + * server.listen(PORT, HOST); + * }, 1000); + * } + * }); + * ``` + */ + listen(port?: number, hostname?: string, backlog?: number, listeningListener?: () => void): this; + listen(port?: number, hostname?: string, listeningListener?: () => void): this; + listen(port?: number, backlog?: number, listeningListener?: () => void): this; + listen(port?: number, listeningListener?: () => void): this; + listen(path: string, backlog?: number, listeningListener?: () => void): this; + listen(path: string, listeningListener?: () => void): this; + listen(options: ListenOptions, listeningListener?: () => void): this; + listen(handle: any, backlog?: number, listeningListener?: () => void): this; + listen(handle: any, listeningListener?: () => void): this; + /** + * Stops the server from accepting new connections and keeps existing + * connections. This function is asynchronous, the server is finally closed + * when all connections are ended and the server emits a `'close'` event. + * The optional `callback` will be called once the `'close'` event occurs. Unlike + * that event, it will be called with an `Error` as its only argument if the server + * was not open when it was closed. + * @since v0.1.90 + * @param callback Called when the server is closed. + */ + close(callback?: (err?: Error) => void): this; + /** + * Returns the bound `address`, the address `family` name, and `port` of the server + * as reported by the operating system if listening on an IP socket + * (useful to find which port was assigned when getting an OS-assigned address):`{ port: 12346, family: 'IPv4', address: '127.0.0.1' }`. + * + * For a server listening on a pipe or Unix domain socket, the name is returned + * as a string. + * + * ```js + * const server = net.createServer((socket) => { + * socket.end('goodbye\n'); + * }).on('error', (err) => { + * // Handle errors here. + * throw err; + * }); + * + * // Grab an arbitrary unused port. + * server.listen(() => { + * console.log('opened server on', server.address()); + * }); + * ``` + * + * `server.address()` returns `null` before the `'listening'` event has been + * emitted or after calling `server.close()`. + * @since v0.1.90 + */ + address(): AddressInfo | string | null; + /** + * Asynchronously get the number of concurrent connections on the server. Works + * when sockets were sent to forks. + * + * Callback should take two arguments `err` and `count`. + * @since v0.9.7 + */ + getConnections(cb: (error: Error | null, count: number) => void): void; + /** + * Opposite of `unref()`, calling `ref()` on a previously `unref`ed server will _not_ let the program exit if it's the only server left (the default behavior). + * If the server is `ref`ed calling `ref()` again will have no effect. + * @since v0.9.1 + */ + ref(): this; + /** + * Calling `unref()` on a server will allow the program to exit if this is the only + * active server in the event system. If the server is already `unref`ed calling`unref()` again will have no effect. + * @since v0.9.1 + */ + unref(): this; + /** + * Set this property to reject connections when the server's connection count gets + * high. + * + * It is not recommended to use this option once a socket has been sent to a child + * with `child_process.fork()`. + * @since v0.2.0 + */ + maxConnections: number; + connections: number; + /** + * Indicates whether or not the server is listening for connections. + * @since v5.7.0 + */ + listening: boolean; + /** + * events.EventEmitter + * 1. close + * 2. connection + * 3. error + * 4. listening + * 5. drop + */ + addListener(event: string, listener: (...args: any[]) => void): this; + addListener(event: 'close', listener: () => void): this; + addListener(event: 'connection', listener: (socket: Socket) => void): this; + addListener(event: 'error', listener: (err: Error) => void): this; + addListener(event: 'listening', listener: () => void): this; + addListener(event: 'drop', listener: (data?: DropArgument) => void): this; + emit(event: string | symbol, ...args: any[]): boolean; + emit(event: 'close'): boolean; + emit(event: 'connection', socket: Socket): boolean; + emit(event: 'error', err: Error): boolean; + emit(event: 'listening'): boolean; + emit(event: 'drop', data?: DropArgument): boolean; + on(event: string, listener: (...args: any[]) => void): this; + on(event: 'close', listener: () => void): this; + on(event: 'connection', listener: (socket: Socket) => void): this; + on(event: 'error', listener: (err: Error) => void): this; + on(event: 'listening', listener: () => void): this; + on(event: 'drop', listener: (data?: DropArgument) => void): this; + once(event: string, listener: (...args: any[]) => void): this; + once(event: 'close', listener: () => void): this; + once(event: 'connection', listener: (socket: Socket) => void): this; + once(event: 'error', listener: (err: Error) => void): this; + once(event: 'listening', listener: () => void): this; + once(event: 'drop', listener: (data?: DropArgument) => void): this; + prependListener(event: string, listener: (...args: any[]) => void): this; + prependListener(event: 'close', listener: () => void): this; + prependListener(event: 'connection', listener: (socket: Socket) => void): this; + prependListener(event: 'error', listener: (err: Error) => void): this; + prependListener(event: 'listening', listener: () => void): this; + prependListener(event: 'drop', listener: (data?: DropArgument) => void): this; + prependOnceListener(event: string, listener: (...args: any[]) => void): this; + prependOnceListener(event: 'close', listener: () => void): this; + prependOnceListener(event: 'connection', listener: (socket: Socket) => void): this; + prependOnceListener(event: 'error', listener: (err: Error) => void): this; + prependOnceListener(event: 'listening', listener: () => void): this; + prependOnceListener(event: 'drop', listener: (data?: DropArgument) => void): this; + } + type IPVersion = 'ipv4' | 'ipv6'; + /** + * The `BlockList` object can be used with some network APIs to specify rules for + * disabling inbound or outbound access to specific IP addresses, IP ranges, or + * IP subnets. + * @since v15.0.0, v14.18.0 + */ + class BlockList { + /** + * Adds a rule to block the given IP address. + * @since v15.0.0, v14.18.0 + * @param address An IPv4 or IPv6 address. + * @param [type='ipv4'] Either `'ipv4'` or `'ipv6'`. + */ + addAddress(address: string, type?: IPVersion): void; + addAddress(address: SocketAddress): void; + /** + * Adds a rule to block a range of IP addresses from `start` (inclusive) to`end` (inclusive). + * @since v15.0.0, v14.18.0 + * @param start The starting IPv4 or IPv6 address in the range. + * @param end The ending IPv4 or IPv6 address in the range. + * @param [type='ipv4'] Either `'ipv4'` or `'ipv6'`. + */ + addRange(start: string, end: string, type?: IPVersion): void; + addRange(start: SocketAddress, end: SocketAddress): void; + /** + * Adds a rule to block a range of IP addresses specified as a subnet mask. + * @since v15.0.0, v14.18.0 + * @param net The network IPv4 or IPv6 address. + * @param prefix The number of CIDR prefix bits. For IPv4, this must be a value between `0` and `32`. For IPv6, this must be between `0` and `128`. + * @param [type='ipv4'] Either `'ipv4'` or `'ipv6'`. + */ + addSubnet(net: SocketAddress, prefix: number): void; + addSubnet(net: string, prefix: number, type?: IPVersion): void; + /** + * Returns `true` if the given IP address matches any of the rules added to the`BlockList`. + * + * ```js + * const blockList = new net.BlockList(); + * blockList.addAddress('123.123.123.123'); + * blockList.addRange('10.0.0.1', '10.0.0.10'); + * blockList.addSubnet('8592:757c:efae:4e45::', 64, 'ipv6'); + * + * console.log(blockList.check('123.123.123.123')); // Prints: true + * console.log(blockList.check('10.0.0.3')); // Prints: true + * console.log(blockList.check('222.111.111.222')); // Prints: false + * + * // IPv6 notation for IPv4 addresses works: + * console.log(blockList.check('::ffff:7b7b:7b7b', 'ipv6')); // Prints: true + * console.log(blockList.check('::ffff:123.123.123.123', 'ipv6')); // Prints: true + * ``` + * @since v15.0.0, v14.18.0 + * @param address The IP address to check + * @param [type='ipv4'] Either `'ipv4'` or `'ipv6'`. + */ + check(address: SocketAddress): boolean; + check(address: string, type?: IPVersion): boolean; + } + interface TcpNetConnectOpts extends TcpSocketConnectOpts, SocketConstructorOpts { + timeout?: number | undefined; + } + interface IpcNetConnectOpts extends IpcSocketConnectOpts, SocketConstructorOpts { + timeout?: number | undefined; + } + type NetConnectOpts = TcpNetConnectOpts | IpcNetConnectOpts; + /** + * Creates a new TCP or `IPC` server. + * + * If `allowHalfOpen` is set to `true`, when the other end of the socket + * signals the end of transmission, the server will only send back the end of + * transmission when `socket.end()` is explicitly called. For example, in the + * context of TCP, when a FIN packed is received, a FIN packed is sent + * back only when `socket.end()` is explicitly called. Until then the + * connection is half-closed (non-readable but still writable). See `'end'` event and [RFC 1122](https://tools.ietf.org/html/rfc1122) (section 4.2.2.13) for more information. + * + * If `pauseOnConnect` is set to `true`, then the socket associated with each + * incoming connection will be paused, and no data will be read from its handle. + * This allows connections to be passed between processes without any data being + * read by the original process. To begin reading data from a paused socket, call `socket.resume()`. + * + * The server can be a TCP server or an `IPC` server, depending on what it `listen()` to. + * + * Here is an example of a TCP echo server which listens for connections + * on port 8124: + * + * ```js + * const net = require('net'); + * const server = net.createServer((c) => { + * // 'connection' listener. + * console.log('client connected'); + * c.on('end', () => { + * console.log('client disconnected'); + * }); + * c.write('hello\r\n'); + * c.pipe(c); + * }); + * server.on('error', (err) => { + * throw err; + * }); + * server.listen(8124, () => { + * console.log('server bound'); + * }); + * ``` + * + * Test this by using `telnet`: + * + * ```console + * $ telnet localhost 8124 + * ``` + * + * To listen on the socket `/tmp/echo.sock`: + * + * ```js + * server.listen('/tmp/echo.sock', () => { + * console.log('server bound'); + * }); + * ``` + * + * Use `nc` to connect to a Unix domain socket server: + * + * ```console + * $ nc -U /tmp/echo.sock + * ``` + * @since v0.5.0 + * @param connectionListener Automatically set as a listener for the {@link 'connection'} event. + */ + function createServer(connectionListener?: (socket: Socket) => void): Server; + function createServer(options?: ServerOpts, connectionListener?: (socket: Socket) => void): Server; + /** + * Aliases to {@link createConnection}. + * + * Possible signatures: + * + * * {@link connect} + * * {@link connect} for `IPC` connections. + * * {@link connect} for TCP connections. + */ + function connect(options: NetConnectOpts, connectionListener?: () => void): Socket; + function connect(port: number, host?: string, connectionListener?: () => void): Socket; + function connect(path: string, connectionListener?: () => void): Socket; + /** + * A factory function, which creates a new {@link Socket}, + * immediately initiates connection with `socket.connect()`, + * then returns the `net.Socket` that starts the connection. + * + * When the connection is established, a `'connect'` event will be emitted + * on the returned socket. The last parameter `connectListener`, if supplied, + * will be added as a listener for the `'connect'` event **once**. + * + * Possible signatures: + * + * * {@link createConnection} + * * {@link createConnection} for `IPC` connections. + * * {@link createConnection} for TCP connections. + * + * The {@link connect} function is an alias to this function. + */ + function createConnection(options: NetConnectOpts, connectionListener?: () => void): Socket; + function createConnection(port: number, host?: string, connectionListener?: () => void): Socket; + function createConnection(path: string, connectionListener?: () => void): Socket; + /** + * Returns `6` if `input` is an IPv6 address. Returns `4` if `input` is an IPv4 + * address in [dot-decimal notation](https://en.wikipedia.org/wiki/Dot-decimal_notation) with no leading zeroes. Otherwise, returns`0`. + * + * ```js + * net.isIP('::1'); // returns 6 + * net.isIP('127.0.0.1'); // returns 4 + * net.isIP('127.000.000.001'); // returns 0 + * net.isIP('127.0.0.1/24'); // returns 0 + * net.isIP('fhqwhgads'); // returns 0 + * ``` + * @since v0.3.0 + */ + function isIP(input: string): number; + /** + * Returns `true` if `input` is an IPv4 address in [dot-decimal notation](https://en.wikipedia.org/wiki/Dot-decimal_notation) with no + * leading zeroes. Otherwise, returns `false`. + * + * ```js + * net.isIPv4('127.0.0.1'); // returns true + * net.isIPv4('127.000.000.001'); // returns false + * net.isIPv4('127.0.0.1/24'); // returns false + * net.isIPv4('fhqwhgads'); // returns false + * ``` + * @since v0.3.0 + */ + function isIPv4(input: string): boolean; + /** + * Returns `true` if `input` is an IPv6 address. Otherwise, returns `false`. + * + * ```js + * net.isIPv6('::1'); // returns true + * net.isIPv6('fhqwhgads'); // returns false + * ``` + * @since v0.3.0 + */ + function isIPv6(input: string): boolean; + interface SocketAddressInitOptions { + /** + * The network address as either an IPv4 or IPv6 string. + * @default 127.0.0.1 + */ + address?: string | undefined; + /** + * @default `'ipv4'` + */ + family?: IPVersion | undefined; + /** + * An IPv6 flow-label used only if `family` is `'ipv6'`. + * @default 0 + */ + flowlabel?: number | undefined; + /** + * An IP port. + * @default 0 + */ + port?: number | undefined; + } + /** + * @since v15.14.0, v14.18.0 + */ + class SocketAddress { + constructor(options: SocketAddressInitOptions); + /** + * @since v15.14.0, v14.18.0 + */ + readonly address: string; + /** + * Either \`'ipv4'\` or \`'ipv6'\`. + * @since v15.14.0, v14.18.0 + */ + readonly family: IPVersion; + /** + * @since v15.14.0, v14.18.0 + */ + readonly port: number; + /** + * @since v15.14.0, v14.18.0 + */ + readonly flowlabel: number; + } +} +declare module 'node:net' { + export * from 'net'; +} diff --git a/node_modules/@types/node/os.d.ts b/node_modules/@types/node/os.d.ts new file mode 100644 index 000000000..3c555992d --- /dev/null +++ b/node_modules/@types/node/os.d.ts @@ -0,0 +1,466 @@ +/** + * The `os` module provides operating system-related utility methods and + * properties. It can be accessed using: + * + * ```js + * const os = require('os'); + * ``` + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/os.js) + */ +declare module 'os' { + interface CpuInfo { + model: string; + speed: number; + times: { + user: number; + nice: number; + sys: number; + idle: number; + irq: number; + }; + } + interface NetworkInterfaceBase { + address: string; + netmask: string; + mac: string; + internal: boolean; + cidr: string | null; + } + interface NetworkInterfaceInfoIPv4 extends NetworkInterfaceBase { + family: 'IPv4'; + scopeid?: undefined; + } + interface NetworkInterfaceInfoIPv6 extends NetworkInterfaceBase { + family: 'IPv6'; + scopeid: number; + } + interface UserInfo { + username: T; + uid: number; + gid: number; + shell: T; + homedir: T; + } + type NetworkInterfaceInfo = NetworkInterfaceInfoIPv4 | NetworkInterfaceInfoIPv6; + /** + * Returns the host name of the operating system as a string. + * @since v0.3.3 + */ + function hostname(): string; + /** + * Returns an array containing the 1, 5, and 15 minute load averages. + * + * The load average is a measure of system activity calculated by the operating + * system and expressed as a fractional number. + * + * The load average is a Unix-specific concept. On Windows, the return value is + * always `[0, 0, 0]`. + * @since v0.3.3 + */ + function loadavg(): number[]; + /** + * Returns the system uptime in number of seconds. + * @since v0.3.3 + */ + function uptime(): number; + /** + * Returns the amount of free system memory in bytes as an integer. + * @since v0.3.3 + */ + function freemem(): number; + /** + * Returns the total amount of system memory in bytes as an integer. + * @since v0.3.3 + */ + function totalmem(): number; + /** + * Returns an array of objects containing information about each logical CPU core. + * + * The properties included on each object include: + * + * ```js + * [ + * { + * model: 'Intel(R) Core(TM) i7 CPU 860 @ 2.80GHz', + * speed: 2926, + * times: { + * user: 252020, + * nice: 0, + * sys: 30340, + * idle: 1070356870, + * irq: 0 + * } + * }, + * { + * model: 'Intel(R) Core(TM) i7 CPU 860 @ 2.80GHz', + * speed: 2926, + * times: { + * user: 306960, + * nice: 0, + * sys: 26980, + * idle: 1071569080, + * irq: 0 + * } + * }, + * { + * model: 'Intel(R) Core(TM) i7 CPU 860 @ 2.80GHz', + * speed: 2926, + * times: { + * user: 248450, + * nice: 0, + * sys: 21750, + * idle: 1070919370, + * irq: 0 + * } + * }, + * { + * model: 'Intel(R) Core(TM) i7 CPU 860 @ 2.80GHz', + * speed: 2926, + * times: { + * user: 256880, + * nice: 0, + * sys: 19430, + * idle: 1070905480, + * irq: 20 + * } + * }, + * ] + * ``` + * + * `nice` values are POSIX-only. On Windows, the `nice` values of all processors + * are always 0. + * @since v0.3.3 + */ + function cpus(): CpuInfo[]; + /** + * Returns the operating system name as returned by [`uname(3)`](https://linux.die.net/man/3/uname). For example, it + * returns `'Linux'` on Linux, `'Darwin'` on macOS, and `'Windows_NT'` on Windows. + * + * See [https://en.wikipedia.org/wiki/Uname#Examples](https://en.wikipedia.org/wiki/Uname#Examples) for additional information + * about the output of running [`uname(3)`](https://linux.die.net/man/3/uname) on various operating systems. + * @since v0.3.3 + */ + function type(): string; + /** + * Returns the operating system as a string. + * + * On POSIX systems, the operating system release is determined by calling [`uname(3)`](https://linux.die.net/man/3/uname). On Windows, `GetVersionExW()` is used. See + * [https://en.wikipedia.org/wiki/Uname#Examples](https://en.wikipedia.org/wiki/Uname#Examples) for more information. + * @since v0.3.3 + */ + function release(): string; + /** + * Returns an object containing network interfaces that have been assigned a + * network address. + * + * Each key on the returned object identifies a network interface. The associated + * value is an array of objects that each describe an assigned network address. + * + * The properties available on the assigned network address object include: + * + * ```js + * { + * lo: [ + * { + * address: '127.0.0.1', + * netmask: '255.0.0.0', + * family: 'IPv4', + * mac: '00:00:00:00:00:00', + * internal: true, + * cidr: '127.0.0.1/8' + * }, + * { + * address: '::1', + * netmask: 'ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff', + * family: 'IPv6', + * mac: '00:00:00:00:00:00', + * scopeid: 0, + * internal: true, + * cidr: '::1/128' + * } + * ], + * eth0: [ + * { + * address: '192.168.1.108', + * netmask: '255.255.255.0', + * family: 'IPv4', + * mac: '01:02:03:0a:0b:0c', + * internal: false, + * cidr: '192.168.1.108/24' + * }, + * { + * address: 'fe80::a00:27ff:fe4e:66a1', + * netmask: 'ffff:ffff:ffff:ffff::', + * family: 'IPv6', + * mac: '01:02:03:0a:0b:0c', + * scopeid: 1, + * internal: false, + * cidr: 'fe80::a00:27ff:fe4e:66a1/64' + * } + * ] + * } + * ``` + * @since v0.6.0 + */ + function networkInterfaces(): NodeJS.Dict; + /** + * Returns the string path of the current user's home directory. + * + * On POSIX, it uses the `$HOME` environment variable if defined. Otherwise it + * uses the [effective UID](https://en.wikipedia.org/wiki/User_identifier#Effective_user_ID) to look up the user's home directory. + * + * On Windows, it uses the `USERPROFILE` environment variable if defined. + * Otherwise it uses the path to the profile directory of the current user. + * @since v2.3.0 + */ + function homedir(): string; + /** + * Returns information about the currently effective user. On POSIX platforms, + * this is typically a subset of the password file. The returned object includes + * the `username`, `uid`, `gid`, `shell`, and `homedir`. On Windows, the `uid` and`gid` fields are `-1`, and `shell` is `null`. + * + * The value of `homedir` returned by `os.userInfo()` is provided by the operating + * system. This differs from the result of `os.homedir()`, which queries + * environment variables for the home directory before falling back to the + * operating system response. + * + * Throws a `SystemError` if a user has no `username` or `homedir`. + * @since v6.0.0 + */ + function userInfo(options: { encoding: 'buffer' }): UserInfo; + function userInfo(options?: { encoding: BufferEncoding }): UserInfo; + type SignalConstants = { + [key in NodeJS.Signals]: number; + }; + namespace constants { + const UV_UDP_REUSEADDR: number; + namespace signals {} + const signals: SignalConstants; + namespace errno { + const E2BIG: number; + const EACCES: number; + const EADDRINUSE: number; + const EADDRNOTAVAIL: number; + const EAFNOSUPPORT: number; + const EAGAIN: number; + const EALREADY: number; + const EBADF: number; + const EBADMSG: number; + const EBUSY: number; + const ECANCELED: number; + const ECHILD: number; + const ECONNABORTED: number; + const ECONNREFUSED: number; + const ECONNRESET: number; + const EDEADLK: number; + const EDESTADDRREQ: number; + const EDOM: number; + const EDQUOT: number; + const EEXIST: number; + const EFAULT: number; + const EFBIG: number; + const EHOSTUNREACH: number; + const EIDRM: number; + const EILSEQ: number; + const EINPROGRESS: number; + const EINTR: number; + const EINVAL: number; + const EIO: number; + const EISCONN: number; + const EISDIR: number; + const ELOOP: number; + const EMFILE: number; + const EMLINK: number; + const EMSGSIZE: number; + const EMULTIHOP: number; + const ENAMETOOLONG: number; + const ENETDOWN: number; + const ENETRESET: number; + const ENETUNREACH: number; + const ENFILE: number; + const ENOBUFS: number; + const ENODATA: number; + const ENODEV: number; + const ENOENT: number; + const ENOEXEC: number; + const ENOLCK: number; + const ENOLINK: number; + const ENOMEM: number; + const ENOMSG: number; + const ENOPROTOOPT: number; + const ENOSPC: number; + const ENOSR: number; + const ENOSTR: number; + const ENOSYS: number; + const ENOTCONN: number; + const ENOTDIR: number; + const ENOTEMPTY: number; + const ENOTSOCK: number; + const ENOTSUP: number; + const ENOTTY: number; + const ENXIO: number; + const EOPNOTSUPP: number; + const EOVERFLOW: number; + const EPERM: number; + const EPIPE: number; + const EPROTO: number; + const EPROTONOSUPPORT: number; + const EPROTOTYPE: number; + const ERANGE: number; + const EROFS: number; + const ESPIPE: number; + const ESRCH: number; + const ESTALE: number; + const ETIME: number; + const ETIMEDOUT: number; + const ETXTBSY: number; + const EWOULDBLOCK: number; + const EXDEV: number; + const WSAEINTR: number; + const WSAEBADF: number; + const WSAEACCES: number; + const WSAEFAULT: number; + const WSAEINVAL: number; + const WSAEMFILE: number; + const WSAEWOULDBLOCK: number; + const WSAEINPROGRESS: number; + const WSAEALREADY: number; + const WSAENOTSOCK: number; + const WSAEDESTADDRREQ: number; + const WSAEMSGSIZE: number; + const WSAEPROTOTYPE: number; + const WSAENOPROTOOPT: number; + const WSAEPROTONOSUPPORT: number; + const WSAESOCKTNOSUPPORT: number; + const WSAEOPNOTSUPP: number; + const WSAEPFNOSUPPORT: number; + const WSAEAFNOSUPPORT: number; + const WSAEADDRINUSE: number; + const WSAEADDRNOTAVAIL: number; + const WSAENETDOWN: number; + const WSAENETUNREACH: number; + const WSAENETRESET: number; + const WSAECONNABORTED: number; + const WSAECONNRESET: number; + const WSAENOBUFS: number; + const WSAEISCONN: number; + const WSAENOTCONN: number; + const WSAESHUTDOWN: number; + const WSAETOOMANYREFS: number; + const WSAETIMEDOUT: number; + const WSAECONNREFUSED: number; + const WSAELOOP: number; + const WSAENAMETOOLONG: number; + const WSAEHOSTDOWN: number; + const WSAEHOSTUNREACH: number; + const WSAENOTEMPTY: number; + const WSAEPROCLIM: number; + const WSAEUSERS: number; + const WSAEDQUOT: number; + const WSAESTALE: number; + const WSAEREMOTE: number; + const WSASYSNOTREADY: number; + const WSAVERNOTSUPPORTED: number; + const WSANOTINITIALISED: number; + const WSAEDISCON: number; + const WSAENOMORE: number; + const WSAECANCELLED: number; + const WSAEINVALIDPROCTABLE: number; + const WSAEINVALIDPROVIDER: number; + const WSAEPROVIDERFAILEDINIT: number; + const WSASYSCALLFAILURE: number; + const WSASERVICE_NOT_FOUND: number; + const WSATYPE_NOT_FOUND: number; + const WSA_E_NO_MORE: number; + const WSA_E_CANCELLED: number; + const WSAEREFUSED: number; + } + namespace priority { + const PRIORITY_LOW: number; + const PRIORITY_BELOW_NORMAL: number; + const PRIORITY_NORMAL: number; + const PRIORITY_ABOVE_NORMAL: number; + const PRIORITY_HIGH: number; + const PRIORITY_HIGHEST: number; + } + } + const devNull: string; + const EOL: string; + /** + * Returns the operating system CPU architecture for which the Node.js binary was + * compiled. Possible values are `'arm'`, `'arm64'`, `'ia32'`, `'mips'`,`'mipsel'`, `'ppc'`, `'ppc64'`, `'s390'`, `'s390x'`, and `'x64'`. + * + * The return value is equivalent to `process.arch`. + * @since v0.5.0 + */ + function arch(): string; + /** + * Returns a string identifying the kernel version. + * + * On POSIX systems, the operating system release is determined by calling [`uname(3)`](https://linux.die.net/man/3/uname). On Windows, `RtlGetVersion()` is used, and if it is not + * available, `GetVersionExW()` will be used. See [https://en.wikipedia.org/wiki/Uname#Examples](https://en.wikipedia.org/wiki/Uname#Examples) for more information. + * @since v13.11.0, v12.17.0 + */ + function version(): string; + /** + * Returns a string identifying the operating system platform for which + * the Node.js binary was compiled. The value is set at compile time. + * Possible values are `'aix'`, `'darwin'`, `'freebsd'`,`'linux'`,`'openbsd'`, `'sunos'`, and `'win32'`. + * + * The return value is equivalent to `process.platform`. + * + * The value `'android'` may also be returned if Node.js is built on the Android + * operating system. [Android support is experimental](https://github.com/nodejs/node/blob/HEAD/BUILDING.md#androidandroid-based-devices-eg-firefox-os). + * @since v0.5.0 + */ + function platform(): NodeJS.Platform; + /** + * Returns the machine type as a string, such as arm, aarch64, mips, mips64, ppc64, ppc64le, s390, s390x, i386, i686, x86_64. + * + * On POSIX systems, the machine type is determined by calling [`uname(3)`](https://linux.die.net/man/3/uname). + * On Windows, `RtlGetVersion()` is used, and if it is not available, `GetVersionExW()` will be used. + * See [https://en.wikipedia.org/wiki/Uname#Examples](https://en.wikipedia.org/wiki/Uname#Examples) for more information. + * @since v18.9.0 + */ + function machine(): string; + /** + * Returns the operating system's default directory for temporary files as a + * string. + * @since v0.9.9 + */ + function tmpdir(): string; + /** + * Returns a string identifying the endianness of the CPU for which the Node.js + * binary was compiled. + * + * Possible values are `'BE'` for big endian and `'LE'` for little endian. + * @since v0.9.4 + */ + function endianness(): 'BE' | 'LE'; + /** + * Returns the scheduling priority for the process specified by `pid`. If `pid` is + * not provided or is `0`, the priority of the current process is returned. + * @since v10.10.0 + * @param [pid=0] The process ID to retrieve scheduling priority for. + */ + function getPriority(pid?: number): number; + /** + * Attempts to set the scheduling priority for the process specified by `pid`. If`pid` is not provided or is `0`, the process ID of the current process is used. + * + * The `priority` input must be an integer between `-20` (high priority) and `19`(low priority). Due to differences between Unix priority levels and Windows + * priority classes, `priority` is mapped to one of six priority constants in`os.constants.priority`. When retrieving a process priority level, this range + * mapping may cause the return value to be slightly different on Windows. To avoid + * confusion, set `priority` to one of the priority constants. + * + * On Windows, setting priority to `PRIORITY_HIGHEST` requires elevated user + * privileges. Otherwise the set priority will be silently reduced to`PRIORITY_HIGH`. + * @since v10.10.0 + * @param [pid=0] The process ID to set scheduling priority for. + * @param priority The scheduling priority to assign to the process. + */ + function setPriority(priority: number): void; + function setPriority(pid: number, priority: number): void; +} +declare module 'node:os' { + export * from 'os'; +} diff --git a/node_modules/@types/node/package.json b/node_modules/@types/node/package.json new file mode 100644 index 000000000..fc28868a7 --- /dev/null +++ b/node_modules/@types/node/package.json @@ -0,0 +1,232 @@ +{ + "name": "@types/node", + "version": "18.8.2", + "description": "TypeScript definitions for Node.js", + "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node", + "license": "MIT", + "contributors": [ + { + "name": "Microsoft TypeScript", + "url": "https://github.com/Microsoft", + "githubUsername": "Microsoft" + }, + { + "name": "DefinitelyTyped", + "url": "https://github.com/DefinitelyTyped", + "githubUsername": "DefinitelyTyped" + }, + { + "name": "Alberto Schiabel", + "url": "https://github.com/jkomyno", + "githubUsername": "jkomyno" + }, + { + "name": "Alvis HT Tang", + "url": "https://github.com/alvis", + "githubUsername": "alvis" + }, + { + "name": "Andrew Makarov", + "url": "https://github.com/r3nya", + "githubUsername": "r3nya" + }, + { + "name": "Benjamin Toueg", + "url": "https://github.com/btoueg", + "githubUsername": "btoueg" + }, + { + "name": "Chigozirim C.", + "url": "https://github.com/smac89", + "githubUsername": "smac89" + }, + { + "name": "David Junger", + "url": "https://github.com/touffy", + "githubUsername": "touffy" + }, + { + "name": "Deividas Bakanas", + "url": "https://github.com/DeividasBakanas", + "githubUsername": "DeividasBakanas" + }, + { + "name": "Eugene Y. Q. Shen", + "url": "https://github.com/eyqs", + "githubUsername": "eyqs" + }, + { + "name": "Hannes Magnusson", + "url": "https://github.com/Hannes-Magnusson-CK", + "githubUsername": "Hannes-Magnusson-CK" + }, + { + "name": "Huw", + "url": "https://github.com/hoo29", + "githubUsername": "hoo29" + }, + { + "name": "Kelvin Jin", + "url": "https://github.com/kjin", + "githubUsername": "kjin" + }, + { + "name": "Klaus Meinhardt", + "url": "https://github.com/ajafff", + "githubUsername": "ajafff" + }, + { + "name": "Lishude", + "url": "https://github.com/islishude", + "githubUsername": "islishude" + }, + { + "name": "Mariusz Wiktorczyk", + "url": "https://github.com/mwiktorczyk", + "githubUsername": "mwiktorczyk" + }, + { + "name": "Mohsen Azimi", + "url": "https://github.com/mohsen1", + "githubUsername": "mohsen1" + }, + { + "name": "Nicolas Even", + "url": "https://github.com/n-e", + "githubUsername": "n-e" + }, + { + "name": "Nikita Galkin", + "url": "https://github.com/galkin", + "githubUsername": "galkin" + }, + { + "name": "Parambir Singh", + "url": "https://github.com/parambirs", + "githubUsername": "parambirs" + }, + { + "name": "Sebastian Silbermann", + "url": "https://github.com/eps1lon", + "githubUsername": "eps1lon" + }, + { + "name": "Simon Schick", + "url": "https://github.com/SimonSchick", + "githubUsername": "SimonSchick" + }, + { + "name": "Thomas den Hollander", + "url": "https://github.com/ThomasdenH", + "githubUsername": "ThomasdenH" + }, + { + "name": "Wilco Bakker", + "url": "https://github.com/WilcoBakker", + "githubUsername": "WilcoBakker" + }, + { + "name": "wwwy3y3", + "url": "https://github.com/wwwy3y3", + "githubUsername": "wwwy3y3" + }, + { + "name": "Samuel Ainsworth", + "url": "https://github.com/samuela", + "githubUsername": "samuela" + }, + { + "name": "Kyle Uehlein", + "url": "https://github.com/kuehlein", + "githubUsername": "kuehlein" + }, + { + "name": "Thanik Bhongbhibhat", + "url": "https://github.com/bhongy", + "githubUsername": "bhongy" + }, + { + "name": "Marcin Kopacz", + "url": "https://github.com/chyzwar", + "githubUsername": "chyzwar" + }, + { + "name": "Trivikram Kamat", + "url": "https://github.com/trivikr", + "githubUsername": "trivikr" + }, + { + "name": "Junxiao Shi", + "url": "https://github.com/yoursunny", + "githubUsername": "yoursunny" + }, + { + "name": "Ilia Baryshnikov", + "url": "https://github.com/qwelias", + "githubUsername": "qwelias" + }, + { + "name": "ExE Boss", + "url": "https://github.com/ExE-Boss", + "githubUsername": "ExE-Boss" + }, + { + "name": "Piotr Błażejewicz", + "url": "https://github.com/peterblazejewicz", + "githubUsername": "peterblazejewicz" + }, + { + "name": "Anna Henningsen", + "url": "https://github.com/addaleax", + "githubUsername": "addaleax" + }, + { + "name": "Victor Perin", + "url": "https://github.com/victorperin", + "githubUsername": "victorperin" + }, + { + "name": "Yongsheng Zhang", + "url": "https://github.com/ZYSzys", + "githubUsername": "ZYSzys" + }, + { + "name": "NodeJS Contributors", + "url": "https://github.com/NodeJS", + "githubUsername": "NodeJS" + }, + { + "name": "Linus Unnebäck", + "url": "https://github.com/LinusU", + "githubUsername": "LinusU" + }, + { + "name": "wafuwafu13", + "url": "https://github.com/wafuwafu13", + "githubUsername": "wafuwafu13" + }, + { + "name": "Matteo Collina", + "url": "https://github.com/mcollina", + "githubUsername": "mcollina" + } + ], + "main": "", + "types": "index.d.ts", + "typesVersions": { + "<4.9.0-0": { + "*": [ + "ts4.8/*" + ] + } + }, + "repository": { + "type": "git", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git", + "directory": "types/node" + }, + "scripts": {}, + "dependencies": {}, + "typesPublisherContentHash": "034172ea945b66afc6502e6be34d6fb957c596091e39cf43672e8aca563a8c66", + "typeScriptVersion": "4.1" +} \ No newline at end of file diff --git a/node_modules/@types/node/path.d.ts b/node_modules/@types/node/path.d.ts new file mode 100644 index 000000000..2d643b29b --- /dev/null +++ b/node_modules/@types/node/path.d.ts @@ -0,0 +1,191 @@ +declare module 'path/posix' { + import path = require('path'); + export = path; +} +declare module 'path/win32' { + import path = require('path'); + export = path; +} +/** + * The `path` module provides utilities for working with file and directory paths. + * It can be accessed using: + * + * ```js + * const path = require('path'); + * ``` + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/path.js) + */ +declare module 'path' { + namespace path { + /** + * A parsed path object generated by path.parse() or consumed by path.format(). + */ + interface ParsedPath { + /** + * The root of the path such as '/' or 'c:\' + */ + root: string; + /** + * The full directory path such as '/home/user/dir' or 'c:\path\dir' + */ + dir: string; + /** + * The file name including extension (if any) such as 'index.html' + */ + base: string; + /** + * The file extension (if any) such as '.html' + */ + ext: string; + /** + * The file name without extension (if any) such as 'index' + */ + name: string; + } + interface FormatInputPathObject { + /** + * The root of the path such as '/' or 'c:\' + */ + root?: string | undefined; + /** + * The full directory path such as '/home/user/dir' or 'c:\path\dir' + */ + dir?: string | undefined; + /** + * The file name including extension (if any) such as 'index.html' + */ + base?: string | undefined; + /** + * The file extension (if any) such as '.html' + */ + ext?: string | undefined; + /** + * The file name without extension (if any) such as 'index' + */ + name?: string | undefined; + } + interface PlatformPath { + /** + * Normalize a string path, reducing '..' and '.' parts. + * When multiple slashes are found, they're replaced by a single one; when the path contains a trailing slash, it is preserved. On Windows backslashes are used. + * + * @param path string path to normalize. + * @throws {TypeError} if `path` is not a string. + */ + normalize(path: string): string; + /** + * Join all arguments together and normalize the resulting path. + * + * @param paths paths to join. + * @throws {TypeError} if any of the path segments is not a string. + */ + join(...paths: string[]): string; + /** + * The right-most parameter is considered {to}. Other parameters are considered an array of {from}. + * + * Starting from leftmost {from} parameter, resolves {to} to an absolute path. + * + * If {to} isn't already absolute, {from} arguments are prepended in right to left order, + * until an absolute path is found. If after using all {from} paths still no absolute path is found, + * the current working directory is used as well. The resulting path is normalized, + * and trailing slashes are removed unless the path gets resolved to the root directory. + * + * @param paths A sequence of paths or path segments. + * @throws {TypeError} if any of the arguments is not a string. + */ + resolve(...paths: string[]): string; + /** + * Determines whether {path} is an absolute path. An absolute path will always resolve to the same location, regardless of the working directory. + * + * If the given {path} is a zero-length string, `false` will be returned. + * + * @param path path to test. + * @throws {TypeError} if `path` is not a string. + */ + isAbsolute(path: string): boolean; + /** + * Solve the relative path from {from} to {to} based on the current working directory. + * At times we have two absolute paths, and we need to derive the relative path from one to the other. This is actually the reverse transform of path.resolve. + * + * @throws {TypeError} if either `from` or `to` is not a string. + */ + relative(from: string, to: string): string; + /** + * Return the directory name of a path. Similar to the Unix dirname command. + * + * @param path the path to evaluate. + * @throws {TypeError} if `path` is not a string. + */ + dirname(path: string): string; + /** + * Return the last portion of a path. Similar to the Unix basename command. + * Often used to extract the file name from a fully qualified path. + * + * @param path the path to evaluate. + * @param ext optionally, an extension to remove from the result. + * @throws {TypeError} if `path` is not a string or if `ext` is given and is not a string. + */ + basename(path: string, ext?: string): string; + /** + * Return the extension of the path, from the last '.' to end of string in the last portion of the path. + * If there is no '.' in the last portion of the path or the first character of it is '.', then it returns an empty string. + * + * @param path the path to evaluate. + * @throws {TypeError} if `path` is not a string. + */ + extname(path: string): string; + /** + * The platform-specific file separator. '\\' or '/'. + */ + readonly sep: '\\' | '/'; + /** + * The platform-specific file delimiter. ';' or ':'. + */ + readonly delimiter: ';' | ':'; + /** + * Returns an object from a path string - the opposite of format(). + * + * @param path path to evaluate. + * @throws {TypeError} if `path` is not a string. + */ + parse(path: string): ParsedPath; + /** + * Returns a path string from an object - the opposite of parse(). + * + * @param pathObject path to evaluate. + */ + format(pathObject: FormatInputPathObject): string; + /** + * On Windows systems only, returns an equivalent namespace-prefixed path for the given path. + * If path is not a string, path will be returned without modifications. + * This method is meaningful only on Windows system. + * On POSIX systems, the method is non-operational and always returns path without modifications. + */ + toNamespacedPath(path: string): string; + /** + * Posix specific pathing. + * Same as parent object on posix. + */ + readonly posix: PlatformPath; + /** + * Windows specific pathing. + * Same as parent object on windows + */ + readonly win32: PlatformPath; + } + } + const path: path.PlatformPath; + export = path; +} +declare module 'node:path' { + import path = require('path'); + export = path; +} +declare module 'node:path/posix' { + import path = require('path/posix'); + export = path; +} +declare module 'node:path/win32' { + import path = require('path/win32'); + export = path; +} diff --git a/node_modules/@types/node/perf_hooks.d.ts b/node_modules/@types/node/perf_hooks.d.ts new file mode 100644 index 000000000..5c0b228e7 --- /dev/null +++ b/node_modules/@types/node/perf_hooks.d.ts @@ -0,0 +1,625 @@ +/** + * This module provides an implementation of a subset of the W3C [Web Performance APIs](https://w3c.github.io/perf-timing-primer/) as well as additional APIs for + * Node.js-specific performance measurements. + * + * Node.js supports the following [Web Performance APIs](https://w3c.github.io/perf-timing-primer/): + * + * * [High Resolution Time](https://www.w3.org/TR/hr-time-2) + * * [Performance Timeline](https://w3c.github.io/performance-timeline/) + * * [User Timing](https://www.w3.org/TR/user-timing/) + * + * ```js + * const { PerformanceObserver, performance } = require('perf_hooks'); + * + * const obs = new PerformanceObserver((items) => { + * console.log(items.getEntries()[0].duration); + * performance.clearMarks(); + * }); + * obs.observe({ type: 'measure' }); + * performance.measure('Start to Now'); + * + * performance.mark('A'); + * doSomeLongRunningProcess(() => { + * performance.measure('A to Now', 'A'); + * + * performance.mark('B'); + * performance.measure('A to B', 'A', 'B'); + * }); + * ``` + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/perf_hooks.js) + */ +declare module 'perf_hooks' { + import { AsyncResource } from 'node:async_hooks'; + type EntryType = 'node' | 'mark' | 'measure' | 'gc' | 'function' | 'http2' | 'http'; + interface NodeGCPerformanceDetail { + /** + * When `performanceEntry.entryType` is equal to 'gc', `the performance.kind` property identifies + * the type of garbage collection operation that occurred. + * See perf_hooks.constants for valid values. + */ + readonly kind?: number | undefined; + /** + * When `performanceEntry.entryType` is equal to 'gc', the `performance.flags` + * property contains additional information about garbage collection operation. + * See perf_hooks.constants for valid values. + */ + readonly flags?: number | undefined; + } + /** + * @since v8.5.0 + */ + class PerformanceEntry { + protected constructor(); + /** + * The total number of milliseconds elapsed for this entry. This value will not + * be meaningful for all Performance Entry types. + * @since v8.5.0 + */ + readonly duration: number; + /** + * The name of the performance entry. + * @since v8.5.0 + */ + readonly name: string; + /** + * The high resolution millisecond timestamp marking the starting time of the + * Performance Entry. + * @since v8.5.0 + */ + readonly startTime: number; + /** + * The type of the performance entry. It may be one of: + * + * * `'node'` (Node.js only) + * * `'mark'` (available on the Web) + * * `'measure'` (available on the Web) + * * `'gc'` (Node.js only) + * * `'function'` (Node.js only) + * * `'http2'` (Node.js only) + * * `'http'` (Node.js only) + * @since v8.5.0 + */ + readonly entryType: EntryType; + /** + * Additional detail specific to the `entryType`. + * @since v16.0.0 + */ + readonly detail?: NodeGCPerformanceDetail | unknown | undefined; // TODO: Narrow this based on entry type. + toJSON(): any; + } + class PerformanceMark extends PerformanceEntry { + readonly duration: 0; + readonly entryType: 'mark'; + } + class PerformanceMeasure extends PerformanceEntry { + readonly entryType: 'measure'; + } + /** + * _This property is an extension by Node.js. It is not available in Web browsers._ + * + * Provides timing details for Node.js itself. The constructor of this class + * is not exposed to users. + * @since v8.5.0 + */ + class PerformanceNodeTiming extends PerformanceEntry { + /** + * The high resolution millisecond timestamp at which the Node.js process + * completed bootstrapping. If bootstrapping has not yet finished, the property + * has the value of -1. + * @since v8.5.0 + */ + readonly bootstrapComplete: number; + /** + * The high resolution millisecond timestamp at which the Node.js environment was + * initialized. + * @since v8.5.0 + */ + readonly environment: number; + /** + * The high resolution millisecond timestamp of the amount of time the event loop + * has been idle within the event loop's event provider (e.g. `epoll_wait`). This + * does not take CPU usage into consideration. If the event loop has not yet + * started (e.g., in the first tick of the main script), the property has the + * value of 0. + * @since v14.10.0, v12.19.0 + */ + readonly idleTime: number; + /** + * The high resolution millisecond timestamp at which the Node.js event loop + * exited. If the event loop has not yet exited, the property has the value of -1\. + * It can only have a value of not -1 in a handler of the `'exit'` event. + * @since v8.5.0 + */ + readonly loopExit: number; + /** + * The high resolution millisecond timestamp at which the Node.js event loop + * started. If the event loop has not yet started (e.g., in the first tick of the + * main script), the property has the value of -1. + * @since v8.5.0 + */ + readonly loopStart: number; + /** + * The high resolution millisecond timestamp at which the V8 platform was + * initialized. + * @since v8.5.0 + */ + readonly v8Start: number; + } + interface EventLoopUtilization { + idle: number; + active: number; + utilization: number; + } + /** + * @param util1 The result of a previous call to eventLoopUtilization() + * @param util2 The result of a previous call to eventLoopUtilization() prior to util1 + */ + type EventLoopUtilityFunction = (util1?: EventLoopUtilization, util2?: EventLoopUtilization) => EventLoopUtilization; + interface MarkOptions { + /** + * Additional optional detail to include with the mark. + */ + detail?: unknown | undefined; + /** + * An optional timestamp to be used as the mark time. + * @default `performance.now()`. + */ + startTime?: number | undefined; + } + interface MeasureOptions { + /** + * Additional optional detail to include with the mark. + */ + detail?: unknown | undefined; + /** + * Duration between start and end times. + */ + duration?: number | undefined; + /** + * Timestamp to be used as the end time, or a string identifying a previously recorded mark. + */ + end?: number | string | undefined; + /** + * Timestamp to be used as the start time, or a string identifying a previously recorded mark. + */ + start?: number | string | undefined; + } + interface TimerifyOptions { + /** + * A histogram object created using + * `perf_hooks.createHistogram()` that will record runtime durations in + * nanoseconds. + */ + histogram?: RecordableHistogram | undefined; + } + interface Performance { + /** + * If name is not provided, removes all PerformanceMark objects from the Performance Timeline. + * If name is provided, removes only the named mark. + * @param name + */ + clearMarks(name?: string): void; + /** + * If name is not provided, removes all PerformanceMeasure objects from the Performance Timeline. + * If name is provided, removes only the named measure. + * @param name + * @since v16.7.0 + */ + clearMeasures(name?: string): void; + /** + * Returns a list of `PerformanceEntry` objects in chronological order with respect to `performanceEntry.startTime`. + * If you are only interested in performance entries of certain types or that have certain names, see + * `performance.getEntriesByType()` and `performance.getEntriesByName()`. + * @since v16.7.0 + */ + getEntries(): PerformanceEntry[]; + /** + * Returns a list of `PerformanceEntry` objects in chronological order with respect to `performanceEntry.startTime` + * whose `performanceEntry.name` is equal to `name`, and optionally, whose `performanceEntry.entryType` is equal to `type`. + * @param name + * @param type + * @since v16.7.0 + */ + getEntriesByName(name: string, type?: EntryType): PerformanceEntry[]; + /** + * Returns a list of `PerformanceEntry` objects in chronological order with respect to `performanceEntry.startTime` + * whose `performanceEntry.entryType` is equal to `type`. + * @param type + * @since v16.7.0 + */ + getEntriesByType(type: EntryType): PerformanceEntry[]; + /** + * Creates a new PerformanceMark entry in the Performance Timeline. + * A PerformanceMark is a subclass of PerformanceEntry whose performanceEntry.entryType is always 'mark', + * and whose performanceEntry.duration is always 0. + * Performance marks are used to mark specific significant moments in the Performance Timeline. + * @param name + * @return The PerformanceMark entry that was created + */ + mark(name?: string, options?: MarkOptions): PerformanceMark; + /** + * Creates a new PerformanceMeasure entry in the Performance Timeline. + * A PerformanceMeasure is a subclass of PerformanceEntry whose performanceEntry.entryType is always 'measure', + * and whose performanceEntry.duration measures the number of milliseconds elapsed since startMark and endMark. + * + * The startMark argument may identify any existing PerformanceMark in the the Performance Timeline, or may identify + * any of the timestamp properties provided by the PerformanceNodeTiming class. If the named startMark does not exist, + * then startMark is set to timeOrigin by default. + * + * The endMark argument must identify any existing PerformanceMark in the the Performance Timeline or any of the timestamp + * properties provided by the PerformanceNodeTiming class. If the named endMark does not exist, an error will be thrown. + * @param name + * @param startMark + * @param endMark + * @return The PerformanceMeasure entry that was created + */ + measure(name: string, startMark?: string, endMark?: string): PerformanceMeasure; + measure(name: string, options: MeasureOptions): PerformanceMeasure; + /** + * An instance of the PerformanceNodeTiming class that provides performance metrics for specific Node.js operational milestones. + */ + readonly nodeTiming: PerformanceNodeTiming; + /** + * @return the current high resolution millisecond timestamp + */ + now(): number; + /** + * The timeOrigin specifies the high resolution millisecond timestamp from which all performance metric durations are measured. + */ + readonly timeOrigin: number; + /** + * Wraps a function within a new function that measures the running time of the wrapped function. + * A PerformanceObserver must be subscribed to the 'function' event type in order for the timing details to be accessed. + * @param fn + */ + timerify any>(fn: T, options?: TimerifyOptions): T; + /** + * eventLoopUtilization is similar to CPU utilization except that it is calculated using high precision wall-clock time. + * It represents the percentage of time the event loop has spent outside the event loop's event provider (e.g. epoll_wait). + * No other CPU idle time is taken into consideration. + */ + eventLoopUtilization: EventLoopUtilityFunction; + } + interface PerformanceObserverEntryList { + /** + * Returns a list of `PerformanceEntry` objects in chronological order + * with respect to `performanceEntry.startTime`. + * + * ```js + * const { + * performance, + * PerformanceObserver + * } = require('perf_hooks'); + * + * const obs = new PerformanceObserver((perfObserverList, observer) => { + * console.log(perfObserverList.getEntries()); + * + * * [ + * * PerformanceEntry { + * * name: 'test', + * * entryType: 'mark', + * * startTime: 81.465639, + * * duration: 0 + * * }, + * * PerformanceEntry { + * * name: 'meow', + * * entryType: 'mark', + * * startTime: 81.860064, + * * duration: 0 + * * } + * * ] + * + * + * performance.clearMarks(); + * performance.clearMeasures(); + * observer.disconnect(); + * }); + * obs.observe({ type: 'mark' }); + * + * performance.mark('test'); + * performance.mark('meow'); + * ``` + * @since v8.5.0 + */ + getEntries(): PerformanceEntry[]; + /** + * Returns a list of `PerformanceEntry` objects in chronological order + * with respect to `performanceEntry.startTime` whose `performanceEntry.name` is + * equal to `name`, and optionally, whose `performanceEntry.entryType` is equal to`type`. + * + * ```js + * const { + * performance, + * PerformanceObserver + * } = require('perf_hooks'); + * + * const obs = new PerformanceObserver((perfObserverList, observer) => { + * console.log(perfObserverList.getEntriesByName('meow')); + * + * * [ + * * PerformanceEntry { + * * name: 'meow', + * * entryType: 'mark', + * * startTime: 98.545991, + * * duration: 0 + * * } + * * ] + * + * console.log(perfObserverList.getEntriesByName('nope')); // [] + * + * console.log(perfObserverList.getEntriesByName('test', 'mark')); + * + * * [ + * * PerformanceEntry { + * * name: 'test', + * * entryType: 'mark', + * * startTime: 63.518931, + * * duration: 0 + * * } + * * ] + * + * console.log(perfObserverList.getEntriesByName('test', 'measure')); // [] + * + * performance.clearMarks(); + * performance.clearMeasures(); + * observer.disconnect(); + * }); + * obs.observe({ entryTypes: ['mark', 'measure'] }); + * + * performance.mark('test'); + * performance.mark('meow'); + * ``` + * @since v8.5.0 + */ + getEntriesByName(name: string, type?: EntryType): PerformanceEntry[]; + /** + * Returns a list of `PerformanceEntry` objects in chronological order + * with respect to `performanceEntry.startTime` whose `performanceEntry.entryType`is equal to `type`. + * + * ```js + * const { + * performance, + * PerformanceObserver + * } = require('perf_hooks'); + * + * const obs = new PerformanceObserver((perfObserverList, observer) => { + * console.log(perfObserverList.getEntriesByType('mark')); + * + * * [ + * * PerformanceEntry { + * * name: 'test', + * * entryType: 'mark', + * * startTime: 55.897834, + * * duration: 0 + * * }, + * * PerformanceEntry { + * * name: 'meow', + * * entryType: 'mark', + * * startTime: 56.350146, + * * duration: 0 + * * } + * * ] + * + * performance.clearMarks(); + * performance.clearMeasures(); + * observer.disconnect(); + * }); + * obs.observe({ type: 'mark' }); + * + * performance.mark('test'); + * performance.mark('meow'); + * ``` + * @since v8.5.0 + */ + getEntriesByType(type: EntryType): PerformanceEntry[]; + } + type PerformanceObserverCallback = (list: PerformanceObserverEntryList, observer: PerformanceObserver) => void; + class PerformanceObserver extends AsyncResource { + constructor(callback: PerformanceObserverCallback); + /** + * Disconnects the `PerformanceObserver` instance from all notifications. + * @since v8.5.0 + */ + disconnect(): void; + /** + * Subscribes the `PerformanceObserver` instance to notifications of new `PerformanceEntry` instances identified either by `options.entryTypes`or `options.type`: + * + * ```js + * const { + * performance, + * PerformanceObserver + * } = require('perf_hooks'); + * + * const obs = new PerformanceObserver((list, observer) => { + * // Called once asynchronously. `list` contains three items. + * }); + * obs.observe({ type: 'mark' }); + * + * for (let n = 0; n < 3; n++) + * performance.mark(`test${n}`); + * ``` + * @since v8.5.0 + */ + observe( + options: + | { + entryTypes: ReadonlyArray; + buffered?: boolean | undefined; + } + | { + type: EntryType; + buffered?: boolean | undefined; + } + ): void; + } + namespace constants { + const NODE_PERFORMANCE_GC_MAJOR: number; + const NODE_PERFORMANCE_GC_MINOR: number; + const NODE_PERFORMANCE_GC_INCREMENTAL: number; + const NODE_PERFORMANCE_GC_WEAKCB: number; + const NODE_PERFORMANCE_GC_FLAGS_NO: number; + const NODE_PERFORMANCE_GC_FLAGS_CONSTRUCT_RETAINED: number; + const NODE_PERFORMANCE_GC_FLAGS_FORCED: number; + const NODE_PERFORMANCE_GC_FLAGS_SYNCHRONOUS_PHANTOM_PROCESSING: number; + const NODE_PERFORMANCE_GC_FLAGS_ALL_AVAILABLE_GARBAGE: number; + const NODE_PERFORMANCE_GC_FLAGS_ALL_EXTERNAL_MEMORY: number; + const NODE_PERFORMANCE_GC_FLAGS_SCHEDULE_IDLE: number; + } + const performance: Performance; + interface EventLoopMonitorOptions { + /** + * The sampling rate in milliseconds. + * Must be greater than zero. + * @default 10 + */ + resolution?: number | undefined; + } + interface Histogram { + /** + * Returns a `Map` object detailing the accumulated percentile distribution. + * @since v11.10.0 + */ + readonly percentiles: Map; + /** + * The number of times the event loop delay exceeded the maximum 1 hour event + * loop delay threshold. + * @since v11.10.0 + */ + readonly exceeds: number; + /** + * The minimum recorded event loop delay. + * @since v11.10.0 + */ + readonly min: number; + /** + * The maximum recorded event loop delay. + * @since v11.10.0 + */ + readonly max: number; + /** + * The mean of the recorded event loop delays. + * @since v11.10.0 + */ + readonly mean: number; + /** + * The standard deviation of the recorded event loop delays. + * @since v11.10.0 + */ + readonly stddev: number; + /** + * Resets the collected histogram data. + * @since v11.10.0 + */ + reset(): void; + /** + * Returns the value at the given percentile. + * @since v11.10.0 + * @param percentile A percentile value in the range (0, 100]. + */ + percentile(percentile: number): number; + } + interface IntervalHistogram extends Histogram { + /** + * Enables the update interval timer. Returns `true` if the timer was + * started, `false` if it was already started. + * @since v11.10.0 + */ + enable(): boolean; + /** + * Disables the update interval timer. Returns `true` if the timer was + * stopped, `false` if it was already stopped. + * @since v11.10.0 + */ + disable(): boolean; + } + interface RecordableHistogram extends Histogram { + /** + * @since v15.9.0, v14.18.0 + * @param val The amount to record in the histogram. + */ + record(val: number | bigint): void; + /** + * Calculates the amount of time (in nanoseconds) that has passed since the + * previous call to `recordDelta()` and records that amount in the histogram. + * + * ## Examples + * @since v15.9.0, v14.18.0 + */ + recordDelta(): void; + /** + * Adds the values from other to this histogram. + * @since v17.4.0, v16.14.0 + * @param other Recordable Histogram to combine with + */ + add(other: RecordableHistogram): void; + } + /** + * _This property is an extension by Node.js. It is not available in Web browsers._ + * + * Creates an `IntervalHistogram` object that samples and reports the event loop + * delay over time. The delays will be reported in nanoseconds. + * + * Using a timer to detect approximate event loop delay works because the + * execution of timers is tied specifically to the lifecycle of the libuv + * event loop. That is, a delay in the loop will cause a delay in the execution + * of the timer, and those delays are specifically what this API is intended to + * detect. + * + * ```js + * const { monitorEventLoopDelay } = require('perf_hooks'); + * const h = monitorEventLoopDelay({ resolution: 20 }); + * h.enable(); + * // Do something. + * h.disable(); + * console.log(h.min); + * console.log(h.max); + * console.log(h.mean); + * console.log(h.stddev); + * console.log(h.percentiles); + * console.log(h.percentile(50)); + * console.log(h.percentile(99)); + * ``` + * @since v11.10.0 + */ + function monitorEventLoopDelay(options?: EventLoopMonitorOptions): IntervalHistogram; + interface CreateHistogramOptions { + /** + * The minimum recordable value. Must be an integer value greater than 0. + * @default 1 + */ + min?: number | bigint | undefined; + /** + * The maximum recordable value. Must be an integer value greater than min. + * @default Number.MAX_SAFE_INTEGER + */ + max?: number | bigint | undefined; + /** + * The number of accuracy digits. Must be a number between 1 and 5. + * @default 3 + */ + figures?: number | undefined; + } + /** + * Returns a `RecordableHistogram`. + * @since v15.9.0, v14.18.0 + */ + function createHistogram(options?: CreateHistogramOptions): RecordableHistogram; + + import { performance as _performance } from 'perf_hooks'; + global { + /** + * `performance` is a global reference for `require('perf_hooks').performance` + * https://nodejs.org/api/globals.html#performance + * @since v16.0.0 + */ + var performance: typeof globalThis extends { + onmessage: any; + performance: infer T; + } + ? T + : typeof _performance; + } +} +declare module 'node:perf_hooks' { + export * from 'perf_hooks'; +} diff --git a/node_modules/@types/node/process.d.ts b/node_modules/@types/node/process.d.ts new file mode 100644 index 000000000..12148f911 --- /dev/null +++ b/node_modules/@types/node/process.d.ts @@ -0,0 +1,1482 @@ +declare module 'process' { + import * as tty from 'node:tty'; + import { Worker } from 'node:worker_threads'; + global { + var process: NodeJS.Process; + namespace NodeJS { + // this namespace merge is here because these are specifically used + // as the type for process.stdin, process.stdout, and process.stderr. + // they can't live in tty.d.ts because we need to disambiguate the imported name. + interface ReadStream extends tty.ReadStream {} + interface WriteStream extends tty.WriteStream {} + interface MemoryUsageFn { + /** + * The `process.memoryUsage()` method iterate over each page to gather informations about memory + * usage which can be slow depending on the program memory allocations. + */ + (): MemoryUsage; + /** + * method returns an integer representing the Resident Set Size (RSS) in bytes. + */ + rss(): number; + } + interface MemoryUsage { + rss: number; + heapTotal: number; + heapUsed: number; + external: number; + arrayBuffers: number; + } + interface CpuUsage { + user: number; + system: number; + } + interface ProcessRelease { + name: string; + sourceUrl?: string | undefined; + headersUrl?: string | undefined; + libUrl?: string | undefined; + lts?: string | undefined; + } + interface ProcessVersions extends Dict { + http_parser: string; + node: string; + v8: string; + ares: string; + uv: string; + zlib: string; + modules: string; + openssl: string; + } + type Platform = 'aix' | 'android' | 'darwin' | 'freebsd' | 'haiku' | 'linux' | 'openbsd' | 'sunos' | 'win32' | 'cygwin' | 'netbsd'; + type Architecture = 'arm' | 'arm64' | 'ia32' | 'mips' | 'mipsel' | 'ppc' | 'ppc64' | 's390' | 's390x' | 'x64'; + type Signals = + | 'SIGABRT' + | 'SIGALRM' + | 'SIGBUS' + | 'SIGCHLD' + | 'SIGCONT' + | 'SIGFPE' + | 'SIGHUP' + | 'SIGILL' + | 'SIGINT' + | 'SIGIO' + | 'SIGIOT' + | 'SIGKILL' + | 'SIGPIPE' + | 'SIGPOLL' + | 'SIGPROF' + | 'SIGPWR' + | 'SIGQUIT' + | 'SIGSEGV' + | 'SIGSTKFLT' + | 'SIGSTOP' + | 'SIGSYS' + | 'SIGTERM' + | 'SIGTRAP' + | 'SIGTSTP' + | 'SIGTTIN' + | 'SIGTTOU' + | 'SIGUNUSED' + | 'SIGURG' + | 'SIGUSR1' + | 'SIGUSR2' + | 'SIGVTALRM' + | 'SIGWINCH' + | 'SIGXCPU' + | 'SIGXFSZ' + | 'SIGBREAK' + | 'SIGLOST' + | 'SIGINFO'; + type UncaughtExceptionOrigin = 'uncaughtException' | 'unhandledRejection'; + type MultipleResolveType = 'resolve' | 'reject'; + type BeforeExitListener = (code: number) => void; + type DisconnectListener = () => void; + type ExitListener = (code: number) => void; + type RejectionHandledListener = (promise: Promise) => void; + type UncaughtExceptionListener = (error: Error, origin: UncaughtExceptionOrigin) => void; + /** + * Most of the time the unhandledRejection will be an Error, but this should not be relied upon + * as *anything* can be thrown/rejected, it is therefore unsafe to assume that the value is an Error. + */ + type UnhandledRejectionListener = (reason: unknown, promise: Promise) => void; + type WarningListener = (warning: Error) => void; + type MessageListener = (message: unknown, sendHandle: unknown) => void; + type SignalsListener = (signal: Signals) => void; + type MultipleResolveListener = (type: MultipleResolveType, promise: Promise, value: unknown) => void; + type WorkerListener = (worker: Worker) => void; + interface Socket extends ReadWriteStream { + isTTY?: true | undefined; + } + // Alias for compatibility + interface ProcessEnv extends Dict { + /** + * Can be used to change the default timezone at runtime + */ + TZ?: string; + } + interface HRTime { + (time?: [number, number]): [number, number]; + bigint(): bigint; + } + interface ProcessReport { + /** + * Directory where the report is written. + * working directory of the Node.js process. + * @default '' indicating that reports are written to the current + */ + directory: string; + /** + * Filename where the report is written. + * The default value is the empty string. + * @default '' the output filename will be comprised of a timestamp, + * PID, and sequence number. + */ + filename: string; + /** + * Returns a JSON-formatted diagnostic report for the running process. + * The report's JavaScript stack trace is taken from err, if present. + */ + getReport(err?: Error): string; + /** + * If true, a diagnostic report is generated on fatal errors, + * such as out of memory errors or failed C++ assertions. + * @default false + */ + reportOnFatalError: boolean; + /** + * If true, a diagnostic report is generated when the process + * receives the signal specified by process.report.signal. + * @default false + */ + reportOnSignal: boolean; + /** + * If true, a diagnostic report is generated on uncaught exception. + * @default false + */ + reportOnUncaughtException: boolean; + /** + * The signal used to trigger the creation of a diagnostic report. + * @default 'SIGUSR2' + */ + signal: Signals; + /** + * Writes a diagnostic report to a file. If filename is not provided, the default filename + * includes the date, time, PID, and a sequence number. + * The report's JavaScript stack trace is taken from err, if present. + * + * @param fileName Name of the file where the report is written. + * This should be a relative path, that will be appended to the directory specified in + * `process.report.directory`, or the current working directory of the Node.js process, + * if unspecified. + * @param error A custom error used for reporting the JavaScript stack. + * @return Filename of the generated report. + */ + writeReport(fileName?: string): string; + writeReport(error?: Error): string; + writeReport(fileName?: string, err?: Error): string; + } + interface ResourceUsage { + fsRead: number; + fsWrite: number; + involuntaryContextSwitches: number; + ipcReceived: number; + ipcSent: number; + majorPageFault: number; + maxRSS: number; + minorPageFault: number; + sharedMemorySize: number; + signalsCount: number; + swappedOut: number; + systemCPUTime: number; + unsharedDataSize: number; + unsharedStackSize: number; + userCPUTime: number; + voluntaryContextSwitches: number; + } + interface EmitWarningOptions { + /** + * When `warning` is a `string`, `type` is the name to use for the _type_ of warning being emitted. + * + * @default 'Warning' + */ + type?: string | undefined; + /** + * A unique identifier for the warning instance being emitted. + */ + code?: string | undefined; + /** + * When `warning` is a `string`, `ctor` is an optional function used to limit the generated stack trace. + * + * @default process.emitWarning + */ + ctor?: Function | undefined; + /** + * Additional text to include with the error. + */ + detail?: string | undefined; + } + interface ProcessConfig { + readonly target_defaults: { + readonly cflags: any[]; + readonly default_configuration: string; + readonly defines: string[]; + readonly include_dirs: string[]; + readonly libraries: string[]; + }; + readonly variables: { + readonly clang: number; + readonly host_arch: string; + readonly node_install_npm: boolean; + readonly node_install_waf: boolean; + readonly node_prefix: string; + readonly node_shared_openssl: boolean; + readonly node_shared_v8: boolean; + readonly node_shared_zlib: boolean; + readonly node_use_dtrace: boolean; + readonly node_use_etw: boolean; + readonly node_use_openssl: boolean; + readonly target_arch: string; + readonly v8_no_strict_aliasing: number; + readonly v8_use_snapshot: boolean; + readonly visibility: string; + }; + } + interface Process extends EventEmitter { + /** + * The `process.stdout` property returns a stream connected to`stdout` (fd `1`). It is a `net.Socket` (which is a `Duplex` stream) unless fd `1` refers to a file, in which case it is + * a `Writable` stream. + * + * For example, to copy `process.stdin` to `process.stdout`: + * + * ```js + * import { stdin, stdout } from 'process'; + * + * stdin.pipe(stdout); + * ``` + * + * `process.stdout` differs from other Node.js streams in important ways. See `note on process I/O` for more information. + */ + stdout: WriteStream & { + fd: 1; + }; + /** + * The `process.stderr` property returns a stream connected to`stderr` (fd `2`). It is a `net.Socket` (which is a `Duplex` stream) unless fd `2` refers to a file, in which case it is + * a `Writable` stream. + * + * `process.stderr` differs from other Node.js streams in important ways. See `note on process I/O` for more information. + */ + stderr: WriteStream & { + fd: 2; + }; + /** + * The `process.stdin` property returns a stream connected to`stdin` (fd `0`). It is a `net.Socket` (which is a `Duplex` stream) unless fd `0` refers to a file, in which case it is + * a `Readable` stream. + * + * For details of how to read from `stdin` see `readable.read()`. + * + * As a `Duplex` stream, `process.stdin` can also be used in "old" mode that + * is compatible with scripts written for Node.js prior to v0.10\. + * For more information see `Stream compatibility`. + * + * In "old" streams mode the `stdin` stream is paused by default, so one + * must call `process.stdin.resume()` to read from it. Note also that calling`process.stdin.resume()` itself would switch stream to "old" mode. + */ + stdin: ReadStream & { + fd: 0; + }; + openStdin(): Socket; + /** + * The `process.argv` property returns an array containing the command-line + * arguments passed when the Node.js process was launched. The first element will + * be {@link execPath}. See `process.argv0` if access to the original value + * of `argv[0]` is needed. The second element will be the path to the JavaScript + * file being executed. The remaining elements will be any additional command-line + * arguments. + * + * For example, assuming the following script for `process-args.js`: + * + * ```js + * import { argv } from 'process'; + * + * // print process.argv + * argv.forEach((val, index) => { + * console.log(`${index}: ${val}`); + * }); + * ``` + * + * Launching the Node.js process as: + * + * ```console + * $ node process-args.js one two=three four + * ``` + * + * Would generate the output: + * + * ```text + * 0: /usr/local/bin/node + * 1: /Users/mjr/work/node/process-args.js + * 2: one + * 3: two=three + * 4: four + * ``` + * @since v0.1.27 + */ + argv: string[]; + /** + * The `process.argv0` property stores a read-only copy of the original value of`argv[0]` passed when Node.js starts. + * + * ```console + * $ bash -c 'exec -a customArgv0 ./node' + * > process.argv[0] + * '/Volumes/code/external/node/out/Release/node' + * > process.argv0 + * 'customArgv0' + * ``` + * @since v6.4.0 + */ + argv0: string; + /** + * The `process.execArgv` property returns the set of Node.js-specific command-line + * options passed when the Node.js process was launched. These options do not + * appear in the array returned by the {@link argv} property, and do not + * include the Node.js executable, the name of the script, or any options following + * the script name. These options are useful in order to spawn child processes with + * the same execution environment as the parent. + * + * ```console + * $ node --harmony script.js --version + * ``` + * + * Results in `process.execArgv`: + * + * ```js + * ['--harmony'] + * ``` + * + * And `process.argv`: + * + * ```js + * ['/usr/local/bin/node', 'script.js', '--version'] + * ``` + * + * Refer to `Worker constructor` for the detailed behavior of worker + * threads with this property. + * @since v0.7.7 + */ + execArgv: string[]; + /** + * The `process.execPath` property returns the absolute pathname of the executable + * that started the Node.js process. Symbolic links, if any, are resolved. + * + * ```js + * '/usr/local/bin/node' + * ``` + * @since v0.1.100 + */ + execPath: string; + /** + * The `process.abort()` method causes the Node.js process to exit immediately and + * generate a core file. + * + * This feature is not available in `Worker` threads. + * @since v0.7.0 + */ + abort(): never; + /** + * The `process.chdir()` method changes the current working directory of the + * Node.js process or throws an exception if doing so fails (for instance, if + * the specified `directory` does not exist). + * + * ```js + * import { chdir, cwd } from 'process'; + * + * console.log(`Starting directory: ${cwd()}`); + * try { + * chdir('/tmp'); + * console.log(`New directory: ${cwd()}`); + * } catch (err) { + * console.error(`chdir: ${err}`); + * } + * ``` + * + * This feature is not available in `Worker` threads. + * @since v0.1.17 + */ + chdir(directory: string): void; + /** + * The `process.cwd()` method returns the current working directory of the Node.js + * process. + * + * ```js + * import { cwd } from 'process'; + * + * console.log(`Current directory: ${cwd()}`); + * ``` + * @since v0.1.8 + */ + cwd(): string; + /** + * The port used by the Node.js debugger when enabled. + * + * ```js + * import process from 'process'; + * + * process.debugPort = 5858; + * ``` + * @since v0.7.2 + */ + debugPort: number; + /** + * The `process.emitWarning()` method can be used to emit custom or application + * specific process warnings. These can be listened for by adding a handler to the `'warning'` event. + * + * ```js + * import { emitWarning } from 'process'; + * + * // Emit a warning with a code and additional detail. + * emitWarning('Something happened!', { + * code: 'MY_WARNING', + * detail: 'This is some additional information' + * }); + * // Emits: + * // (node:56338) [MY_WARNING] Warning: Something happened! + * // This is some additional information + * ``` + * + * In this example, an `Error` object is generated internally by`process.emitWarning()` and passed through to the `'warning'` handler. + * + * ```js + * import process from 'process'; + * + * process.on('warning', (warning) => { + * console.warn(warning.name); // 'Warning' + * console.warn(warning.message); // 'Something happened!' + * console.warn(warning.code); // 'MY_WARNING' + * console.warn(warning.stack); // Stack trace + * console.warn(warning.detail); // 'This is some additional information' + * }); + * ``` + * + * If `warning` is passed as an `Error` object, the `options` argument is ignored. + * @since v8.0.0 + * @param warning The warning to emit. + */ + emitWarning(warning: string | Error, ctor?: Function): void; + emitWarning(warning: string | Error, type?: string, ctor?: Function): void; + emitWarning(warning: string | Error, type?: string, code?: string, ctor?: Function): void; + emitWarning(warning: string | Error, options?: EmitWarningOptions): void; + /** + * The `process.env` property returns an object containing the user environment. + * See [`environ(7)`](http://man7.org/linux/man-pages/man7/environ.7.html). + * + * An example of this object looks like: + * + * ```js + * { + * TERM: 'xterm-256color', + * SHELL: '/usr/local/bin/bash', + * USER: 'maciej', + * PATH: '~/.bin/:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin', + * PWD: '/Users/maciej', + * EDITOR: 'vim', + * SHLVL: '1', + * HOME: '/Users/maciej', + * LOGNAME: 'maciej', + * _: '/usr/local/bin/node' + * } + * ``` + * + * It is possible to modify this object, but such modifications will not be + * reflected outside the Node.js process, or (unless explicitly requested) + * to other `Worker` threads. + * In other words, the following example would not work: + * + * ```console + * $ node -e 'process.env.foo = "bar"' && echo $foo + * ``` + * + * While the following will: + * + * ```js + * import { env } from 'process'; + * + * env.foo = 'bar'; + * console.log(env.foo); + * ``` + * + * Assigning a property on `process.env` will implicitly convert the value + * to a string. **This behavior is deprecated.** Future versions of Node.js may + * throw an error when the value is not a string, number, or boolean. + * + * ```js + * import { env } from 'process'; + * + * env.test = null; + * console.log(env.test); + * // => 'null' + * env.test = undefined; + * console.log(env.test); + * // => 'undefined' + * ``` + * + * Use `delete` to delete a property from `process.env`. + * + * ```js + * import { env } from 'process'; + * + * env.TEST = 1; + * delete env.TEST; + * console.log(env.TEST); + * // => undefined + * ``` + * + * On Windows operating systems, environment variables are case-insensitive. + * + * ```js + * import { env } from 'process'; + * + * env.TEST = 1; + * console.log(env.test); + * // => 1 + * ``` + * + * Unless explicitly specified when creating a `Worker` instance, + * each `Worker` thread has its own copy of `process.env`, based on its + * parent thread’s `process.env`, or whatever was specified as the `env` option + * to the `Worker` constructor. Changes to `process.env` will not be visible + * across `Worker` threads, and only the main thread can make changes that + * are visible to the operating system or to native add-ons. + * @since v0.1.27 + */ + env: ProcessEnv; + /** + * The `process.exit()` method instructs Node.js to terminate the process + * synchronously with an exit status of `code`. If `code` is omitted, exit uses + * either the 'success' code `0` or the value of `process.exitCode` if it has been + * set. Node.js will not terminate until all the `'exit'` event listeners are + * called. + * + * To exit with a 'failure' code: + * + * ```js + * import { exit } from 'process'; + * + * exit(1); + * ``` + * + * The shell that executed Node.js should see the exit code as `1`. + * + * Calling `process.exit()` will force the process to exit as quickly as possible + * even if there are still asynchronous operations pending that have not yet + * completed fully, including I/O operations to `process.stdout` and`process.stderr`. + * + * In most situations, it is not actually necessary to call `process.exit()`explicitly. The Node.js process will exit on its own _if there is no additional_ + * _work pending_ in the event loop. The `process.exitCode` property can be set to + * tell the process which exit code to use when the process exits gracefully. + * + * For instance, the following example illustrates a _misuse_ of the`process.exit()` method that could lead to data printed to stdout being + * truncated and lost: + * + * ```js + * import { exit } from 'process'; + * + * // This is an example of what *not* to do: + * if (someConditionNotMet()) { + * printUsageToStdout(); + * exit(1); + * } + * ``` + * + * The reason this is problematic is because writes to `process.stdout` in Node.js + * are sometimes _asynchronous_ and may occur over multiple ticks of the Node.js + * event loop. Calling `process.exit()`, however, forces the process to exit _before_ those additional writes to `stdout` can be performed. + * + * Rather than calling `process.exit()` directly, the code _should_ set the`process.exitCode` and allow the process to exit naturally by avoiding + * scheduling any additional work for the event loop: + * + * ```js + * import process from 'process'; + * + * // How to properly set the exit code while letting + * // the process exit gracefully. + * if (someConditionNotMet()) { + * printUsageToStdout(); + * process.exitCode = 1; + * } + * ``` + * + * If it is necessary to terminate the Node.js process due to an error condition, + * throwing an _uncaught_ error and allowing the process to terminate accordingly + * is safer than calling `process.exit()`. + * + * In `Worker` threads, this function stops the current thread rather + * than the current process. + * @since v0.1.13 + * @param [code=0] The exit code. + */ + exit(code?: number): never; + /** + * A number which will be the process exit code, when the process either + * exits gracefully, or is exited via {@link exit} without specifying + * a code. + * + * Specifying a code to {@link exit} will override any + * previous setting of `process.exitCode`. + * @since v0.11.8 + */ + exitCode?: number | undefined; + /** + * The `process.getgid()` method returns the numerical group identity of the + * process. (See [`getgid(2)`](http://man7.org/linux/man-pages/man2/getgid.2.html).) + * + * ```js + * import process from 'process'; + * + * if (process.getgid) { + * console.log(`Current gid: ${process.getgid()}`); + * } + * ``` + * + * This function is only available on POSIX platforms (i.e. not Windows or + * Android). + * @since v0.1.31 + */ + getgid?: () => number; + /** + * The `process.setgid()` method sets the group identity of the process. (See [`setgid(2)`](http://man7.org/linux/man-pages/man2/setgid.2.html).) The `id` can be passed as either a + * numeric ID or a group name + * string. If a group name is specified, this method blocks while resolving the + * associated numeric ID. + * + * ```js + * import process from 'process'; + * + * if (process.getgid && process.setgid) { + * console.log(`Current gid: ${process.getgid()}`); + * try { + * process.setgid(501); + * console.log(`New gid: ${process.getgid()}`); + * } catch (err) { + * console.log(`Failed to set gid: ${err}`); + * } + * } + * ``` + * + * This function is only available on POSIX platforms (i.e. not Windows or + * Android). + * This feature is not available in `Worker` threads. + * @since v0.1.31 + * @param id The group name or ID + */ + setgid?: (id: number | string) => void; + /** + * The `process.getuid()` method returns the numeric user identity of the process. + * (See [`getuid(2)`](http://man7.org/linux/man-pages/man2/getuid.2.html).) + * + * ```js + * import process from 'process'; + * + * if (process.getuid) { + * console.log(`Current uid: ${process.getuid()}`); + * } + * ``` + * + * This function is only available on POSIX platforms (i.e. not Windows or + * Android). + * @since v0.1.28 + */ + getuid?: () => number; + /** + * The `process.setuid(id)` method sets the user identity of the process. (See [`setuid(2)`](http://man7.org/linux/man-pages/man2/setuid.2.html).) The `id` can be passed as either a + * numeric ID or a username string. + * If a username is specified, the method blocks while resolving the associated + * numeric ID. + * + * ```js + * import process from 'process'; + * + * if (process.getuid && process.setuid) { + * console.log(`Current uid: ${process.getuid()}`); + * try { + * process.setuid(501); + * console.log(`New uid: ${process.getuid()}`); + * } catch (err) { + * console.log(`Failed to set uid: ${err}`); + * } + * } + * ``` + * + * This function is only available on POSIX platforms (i.e. not Windows or + * Android). + * This feature is not available in `Worker` threads. + * @since v0.1.28 + */ + setuid?: (id: number | string) => void; + /** + * The `process.geteuid()` method returns the numerical effective user identity of + * the process. (See [`geteuid(2)`](http://man7.org/linux/man-pages/man2/geteuid.2.html).) + * + * ```js + * import process from 'process'; + * + * if (process.geteuid) { + * console.log(`Current uid: ${process.geteuid()}`); + * } + * ``` + * + * This function is only available on POSIX platforms (i.e. not Windows or + * Android). + * @since v2.0.0 + */ + geteuid?: () => number; + /** + * The `process.seteuid()` method sets the effective user identity of the process. + * (See [`seteuid(2)`](http://man7.org/linux/man-pages/man2/seteuid.2.html).) The `id` can be passed as either a numeric ID or a username + * string. If a username is specified, the method blocks while resolving the + * associated numeric ID. + * + * ```js + * import process from 'process'; + * + * if (process.geteuid && process.seteuid) { + * console.log(`Current uid: ${process.geteuid()}`); + * try { + * process.seteuid(501); + * console.log(`New uid: ${process.geteuid()}`); + * } catch (err) { + * console.log(`Failed to set uid: ${err}`); + * } + * } + * ``` + * + * This function is only available on POSIX platforms (i.e. not Windows or + * Android). + * This feature is not available in `Worker` threads. + * @since v2.0.0 + * @param id A user name or ID + */ + seteuid?: (id: number | string) => void; + /** + * The `process.getegid()` method returns the numerical effective group identity + * of the Node.js process. (See [`getegid(2)`](http://man7.org/linux/man-pages/man2/getegid.2.html).) + * + * ```js + * import process from 'process'; + * + * if (process.getegid) { + * console.log(`Current gid: ${process.getegid()}`); + * } + * ``` + * + * This function is only available on POSIX platforms (i.e. not Windows or + * Android). + * @since v2.0.0 + */ + getegid?: () => number; + /** + * The `process.setegid()` method sets the effective group identity of the process. + * (See [`setegid(2)`](http://man7.org/linux/man-pages/man2/setegid.2.html).) The `id` can be passed as either a numeric ID or a group + * name string. If a group name is specified, this method blocks while resolving + * the associated a numeric ID. + * + * ```js + * import process from 'process'; + * + * if (process.getegid && process.setegid) { + * console.log(`Current gid: ${process.getegid()}`); + * try { + * process.setegid(501); + * console.log(`New gid: ${process.getegid()}`); + * } catch (err) { + * console.log(`Failed to set gid: ${err}`); + * } + * } + * ``` + * + * This function is only available on POSIX platforms (i.e. not Windows or + * Android). + * This feature is not available in `Worker` threads. + * @since v2.0.0 + * @param id A group name or ID + */ + setegid?: (id: number | string) => void; + /** + * The `process.getgroups()` method returns an array with the supplementary group + * IDs. POSIX leaves it unspecified if the effective group ID is included but + * Node.js ensures it always is. + * + * ```js + * import process from 'process'; + * + * if (process.getgroups) { + * console.log(process.getgroups()); // [ 16, 21, 297 ] + * } + * ``` + * + * This function is only available on POSIX platforms (i.e. not Windows or + * Android). + * @since v0.9.4 + */ + getgroups?: () => number[]; + /** + * The `process.setgroups()` method sets the supplementary group IDs for the + * Node.js process. This is a privileged operation that requires the Node.js + * process to have `root` or the `CAP_SETGID` capability. + * + * The `groups` array can contain numeric group IDs, group names, or both. + * + * ```js + * import process from 'process'; + * + * if (process.getgroups && process.setgroups) { + * try { + * process.setgroups([501]); + * console.log(process.getgroups()); // new groups + * } catch (err) { + * console.log(`Failed to set groups: ${err}`); + * } + * } + * ``` + * + * This function is only available on POSIX platforms (i.e. not Windows or + * Android). + * This feature is not available in `Worker` threads. + * @since v0.9.4 + */ + setgroups?: (groups: ReadonlyArray) => void; + /** + * The `process.setUncaughtExceptionCaptureCallback()` function sets a function + * that will be invoked when an uncaught exception occurs, which will receive the + * exception value itself as its first argument. + * + * If such a function is set, the `'uncaughtException'` event will + * not be emitted. If `--abort-on-uncaught-exception` was passed from the + * command line or set through `v8.setFlagsFromString()`, the process will + * not abort. Actions configured to take place on exceptions such as report + * generations will be affected too + * + * To unset the capture function,`process.setUncaughtExceptionCaptureCallback(null)` may be used. Calling this + * method with a non-`null` argument while another capture function is set will + * throw an error. + * + * Using this function is mutually exclusive with using the deprecated `domain` built-in module. + * @since v9.3.0 + */ + setUncaughtExceptionCaptureCallback(cb: ((err: Error) => void) | null): void; + /** + * Indicates whether a callback has been set using {@link setUncaughtExceptionCaptureCallback}. + * @since v9.3.0 + */ + hasUncaughtExceptionCaptureCallback(): boolean; + /** + * The `process.version` property contains the Node.js version string. + * + * ```js + * import { version } from 'process'; + * + * console.log(`Version: ${version}`); + * // Version: v14.8.0 + * ``` + * + * To get the version string without the prepended _v_, use`process.versions.node`. + * @since v0.1.3 + */ + readonly version: string; + /** + * The `process.versions` property returns an object listing the version strings of + * Node.js and its dependencies. `process.versions.modules` indicates the current + * ABI version, which is increased whenever a C++ API changes. Node.js will refuse + * to load modules that were compiled against a different module ABI version. + * + * ```js + * import { versions } from 'process'; + * + * console.log(versions); + * ``` + * + * Will generate an object similar to: + * + * ```console + * { node: '11.13.0', + * v8: '7.0.276.38-node.18', + * uv: '1.27.0', + * zlib: '1.2.11', + * brotli: '1.0.7', + * ares: '1.15.0', + * modules: '67', + * nghttp2: '1.34.0', + * napi: '4', + * llhttp: '1.1.1', + * openssl: '1.1.1b', + * cldr: '34.0', + * icu: '63.1', + * tz: '2018e', + * unicode: '11.0' } + * ``` + * @since v0.2.0 + */ + readonly versions: ProcessVersions; + /** + * The `process.config` property returns an `Object` containing the JavaScript + * representation of the configure options used to compile the current Node.js + * executable. This is the same as the `config.gypi` file that was produced when + * running the `./configure` script. + * + * An example of the possible output looks like: + * + * ```js + * { + * target_defaults: + * { cflags: [], + * default_configuration: 'Release', + * defines: [], + * include_dirs: [], + * libraries: [] }, + * variables: + * { + * host_arch: 'x64', + * napi_build_version: 5, + * node_install_npm: 'true', + * node_prefix: '', + * node_shared_cares: 'false', + * node_shared_http_parser: 'false', + * node_shared_libuv: 'false', + * node_shared_zlib: 'false', + * node_use_dtrace: 'false', + * node_use_openssl: 'true', + * node_shared_openssl: 'false', + * strict_aliasing: 'true', + * target_arch: 'x64', + * v8_use_snapshot: 1 + * } + * } + * ``` + * + * The `process.config` property is **not** read-only and there are existing + * modules in the ecosystem that are known to extend, modify, or entirely replace + * the value of `process.config`. + * + * Modifying the `process.config` property, or any child-property of the`process.config` object has been deprecated. The `process.config` will be made + * read-only in a future release. + * @since v0.7.7 + */ + readonly config: ProcessConfig; + /** + * The `process.kill()` method sends the `signal` to the process identified by`pid`. + * + * Signal names are strings such as `'SIGINT'` or `'SIGHUP'`. See `Signal Events` and [`kill(2)`](http://man7.org/linux/man-pages/man2/kill.2.html) for more information. + * + * This method will throw an error if the target `pid` does not exist. As a special + * case, a signal of `0` can be used to test for the existence of a process. + * Windows platforms will throw an error if the `pid` is used to kill a process + * group. + * + * Even though the name of this function is `process.kill()`, it is really just a + * signal sender, like the `kill` system call. The signal sent may do something + * other than kill the target process. + * + * ```js + * import process, { kill } from 'process'; + * + * process.on('SIGHUP', () => { + * console.log('Got SIGHUP signal.'); + * }); + * + * setTimeout(() => { + * console.log('Exiting.'); + * process.exit(0); + * }, 100); + * + * kill(process.pid, 'SIGHUP'); + * ``` + * + * When `SIGUSR1` is received by a Node.js process, Node.js will start the + * debugger. See `Signal Events`. + * @since v0.0.6 + * @param pid A process ID + * @param [signal='SIGTERM'] The signal to send, either as a string or number. + */ + kill(pid: number, signal?: string | number): true; + /** + * The `process.pid` property returns the PID of the process. + * + * ```js + * import { pid } from 'process'; + * + * console.log(`This process is pid ${pid}`); + * ``` + * @since v0.1.15 + */ + readonly pid: number; + /** + * The `process.ppid` property returns the PID of the parent of the + * current process. + * + * ```js + * import { ppid } from 'process'; + * + * console.log(`The parent process is pid ${ppid}`); + * ``` + * @since v9.2.0, v8.10.0, v6.13.0 + */ + readonly ppid: number; + /** + * The `process.title` property returns the current process title (i.e. returns + * the current value of `ps`). Assigning a new value to `process.title` modifies + * the current value of `ps`. + * + * When a new value is assigned, different platforms will impose different maximum + * length restrictions on the title. Usually such restrictions are quite limited. + * For instance, on Linux and macOS, `process.title` is limited to the size of the + * binary name plus the length of the command-line arguments because setting the`process.title` overwrites the `argv` memory of the process. Node.js v0.8 + * allowed for longer process title strings by also overwriting the `environ`memory but that was potentially insecure and confusing in some (rather obscure) + * cases. + * + * Assigning a value to `process.title` might not result in an accurate label + * within process manager applications such as macOS Activity Monitor or Windows + * Services Manager. + * @since v0.1.104 + */ + title: string; + /** + * The operating system CPU architecture for which the Node.js binary was compiled. + * Possible values are: `'arm'`, `'arm64'`, `'ia32'`, `'mips'`,`'mipsel'`, `'ppc'`,`'ppc64'`, `'s390'`, `'s390x'`, and `'x64'`. + * + * ```js + * import { arch } from 'process'; + * + * console.log(`This processor architecture is ${arch}`); + * ``` + * @since v0.5.0 + */ + readonly arch: Architecture; + /** + * The `process.platform` property returns a string identifying the operating + * system platform for which the Node.js binary was compiled. + * + * Currently possible values are: + * + * * `'aix'` + * * `'darwin'` + * * `'freebsd'` + * * `'linux'` + * * `'openbsd'` + * * `'sunos'` + * * `'win32'` + * + * ```js + * import { platform } from 'process'; + * + * console.log(`This platform is ${platform}`); + * ``` + * + * The value `'android'` may also be returned if the Node.js is built on the + * Android operating system. However, Android support in Node.js [is experimental](https://github.com/nodejs/node/blob/HEAD/BUILDING.md#androidandroid-based-devices-eg-firefox-os). + * @since v0.1.16 + */ + readonly platform: Platform; + /** + * The `process.mainModule` property provides an alternative way of retrieving `require.main`. The difference is that if the main module changes at + * runtime, `require.main` may still refer to the original main module in + * modules that were required before the change occurred. Generally, it's + * safe to assume that the two refer to the same module. + * + * As with `require.main`, `process.mainModule` will be `undefined` if there + * is no entry script. + * @since v0.1.17 + * @deprecated Since v14.0.0 - Use `main` instead. + */ + mainModule?: Module | undefined; + memoryUsage: MemoryUsageFn; + /** + * The `process.cpuUsage()` method returns the user and system CPU time usage of + * the current process, in an object with properties `user` and `system`, whose + * values are microsecond values (millionth of a second). These values measure time + * spent in user and system code respectively, and may end up being greater than + * actual elapsed time if multiple CPU cores are performing work for this process. + * + * The result of a previous call to `process.cpuUsage()` can be passed as the + * argument to the function, to get a diff reading. + * + * ```js + * import { cpuUsage } from 'process'; + * + * const startUsage = cpuUsage(); + * // { user: 38579, system: 6986 } + * + * // spin the CPU for 500 milliseconds + * const now = Date.now(); + * while (Date.now() - now < 500); + * + * console.log(cpuUsage(startUsage)); + * // { user: 514883, system: 11226 } + * ``` + * @since v6.1.0 + * @param previousValue A previous return value from calling `process.cpuUsage()` + */ + cpuUsage(previousValue?: CpuUsage): CpuUsage; + /** + * `process.nextTick()` adds `callback` to the "next tick queue". This queue is + * fully drained after the current operation on the JavaScript stack runs to + * completion and before the event loop is allowed to continue. It's possible to + * create an infinite loop if one were to recursively call `process.nextTick()`. + * See the [Event Loop](https://nodejs.org/en/docs/guides/event-loop-timers-and-nexttick/#process-nexttick) guide for more background. + * + * ```js + * import { nextTick } from 'process'; + * + * console.log('start'); + * nextTick(() => { + * console.log('nextTick callback'); + * }); + * console.log('scheduled'); + * // Output: + * // start + * // scheduled + * // nextTick callback + * ``` + * + * This is important when developing APIs in order to give users the opportunity + * to assign event handlers _after_ an object has been constructed but before any + * I/O has occurred: + * + * ```js + * import { nextTick } from 'process'; + * + * function MyThing(options) { + * this.setupOptions(options); + * + * nextTick(() => { + * this.startDoingStuff(); + * }); + * } + * + * const thing = new MyThing(); + * thing.getReadyForStuff(); + * + * // thing.startDoingStuff() gets called now, not before. + * ``` + * + * It is very important for APIs to be either 100% synchronous or 100% + * asynchronous. Consider this example: + * + * ```js + * // WARNING! DO NOT USE! BAD UNSAFE HAZARD! + * function maybeSync(arg, cb) { + * if (arg) { + * cb(); + * return; + * } + * + * fs.stat('file', cb); + * } + * ``` + * + * This API is hazardous because in the following case: + * + * ```js + * const maybeTrue = Math.random() > 0.5; + * + * maybeSync(maybeTrue, () => { + * foo(); + * }); + * + * bar(); + * ``` + * + * It is not clear whether `foo()` or `bar()` will be called first. + * + * The following approach is much better: + * + * ```js + * import { nextTick } from 'process'; + * + * function definitelyAsync(arg, cb) { + * if (arg) { + * nextTick(cb); + * return; + * } + * + * fs.stat('file', cb); + * } + * ``` + * @since v0.1.26 + * @param args Additional arguments to pass when invoking the `callback` + */ + nextTick(callback: Function, ...args: any[]): void; + /** + * The `process.release` property returns an `Object` containing metadata related + * to the current release, including URLs for the source tarball and headers-only + * tarball. + * + * `process.release` contains the following properties: + * + * ```js + * { + * name: 'node', + * lts: 'Erbium', + * sourceUrl: 'https://nodejs.org/download/release/v12.18.1/node-v12.18.1.tar.gz', + * headersUrl: 'https://nodejs.org/download/release/v12.18.1/node-v12.18.1-headers.tar.gz', + * libUrl: 'https://nodejs.org/download/release/v12.18.1/win-x64/node.lib' + * } + * ``` + * + * In custom builds from non-release versions of the source tree, only the`name` property may be present. The additional properties should not be + * relied upon to exist. + * @since v3.0.0 + */ + readonly release: ProcessRelease; + features: { + inspector: boolean; + debug: boolean; + uv: boolean; + ipv6: boolean; + tls_alpn: boolean; + tls_sni: boolean; + tls_ocsp: boolean; + tls: boolean; + }; + /** + * `process.umask()` returns the Node.js process's file mode creation mask. Child + * processes inherit the mask from the parent process. + * @since v0.1.19 + * @deprecated Calling `process.umask()` with no argument causes the process-wide umask to be written twice. This introduces a race condition between threads, and is a potential * + * security vulnerability. There is no safe, cross-platform alternative API. + */ + umask(): number; + /** + * Can only be set if not in worker thread. + */ + umask(mask: string | number): number; + /** + * The `process.uptime()` method returns the number of seconds the current Node.js + * process has been running. + * + * The return value includes fractions of a second. Use `Math.floor()` to get whole + * seconds. + * @since v0.5.0 + */ + uptime(): number; + hrtime: HRTime; + /** + * If Node.js is spawned with an IPC channel, the `process.send()` method can be + * used to send messages to the parent process. Messages will be received as a `'message'` event on the parent's `ChildProcess` object. + * + * If Node.js was not spawned with an IPC channel, `process.send` will be`undefined`. + * + * The message goes through serialization and parsing. The resulting message might + * not be the same as what is originally sent. + * @since v0.5.9 + * @param options used to parameterize the sending of certain types of handles.`options` supports the following properties: + */ + send?( + message: any, + sendHandle?: any, + options?: { + swallowErrors?: boolean | undefined; + }, + callback?: (error: Error | null) => void + ): boolean; + /** + * If the Node.js process is spawned with an IPC channel (see the `Child Process` and `Cluster` documentation), the `process.disconnect()` method will close the + * IPC channel to the parent process, allowing the child process to exit gracefully + * once there are no other connections keeping it alive. + * + * The effect of calling `process.disconnect()` is the same as calling `ChildProcess.disconnect()` from the parent process. + * + * If the Node.js process was not spawned with an IPC channel,`process.disconnect()` will be `undefined`. + * @since v0.7.2 + */ + disconnect(): void; + /** + * If the Node.js process is spawned with an IPC channel (see the `Child Process` and `Cluster` documentation), the `process.connected` property will return`true` so long as the IPC + * channel is connected and will return `false` after`process.disconnect()` is called. + * + * Once `process.connected` is `false`, it is no longer possible to send messages + * over the IPC channel using `process.send()`. + * @since v0.7.2 + */ + connected: boolean; + /** + * The `process.allowedNodeEnvironmentFlags` property is a special, + * read-only `Set` of flags allowable within the `NODE_OPTIONS` environment variable. + * + * `process.allowedNodeEnvironmentFlags` extends `Set`, but overrides`Set.prototype.has` to recognize several different possible flag + * representations. `process.allowedNodeEnvironmentFlags.has()` will + * return `true` in the following cases: + * + * * Flags may omit leading single (`-`) or double (`--`) dashes; e.g.,`inspect-brk` for `--inspect-brk`, or `r` for `-r`. + * * Flags passed through to V8 (as listed in `--v8-options`) may replace + * one or more _non-leading_ dashes for an underscore, or vice-versa; + * e.g., `--perf_basic_prof`, `--perf-basic-prof`, `--perf_basic-prof`, + * etc. + * * Flags may contain one or more equals (`=`) characters; all + * characters after and including the first equals will be ignored; + * e.g., `--stack-trace-limit=100`. + * * Flags _must_ be allowable within `NODE_OPTIONS`. + * + * When iterating over `process.allowedNodeEnvironmentFlags`, flags will + * appear only _once_; each will begin with one or more dashes. Flags + * passed through to V8 will contain underscores instead of non-leading + * dashes: + * + * ```js + * import { allowedNodeEnvironmentFlags } from 'process'; + * + * allowedNodeEnvironmentFlags.forEach((flag) => { + * // -r + * // --inspect-brk + * // --abort_on_uncaught_exception + * // ... + * }); + * ``` + * + * The methods `add()`, `clear()`, and `delete()` of`process.allowedNodeEnvironmentFlags` do nothing, and will fail + * silently. + * + * If Node.js was compiled _without_ `NODE_OPTIONS` support (shown in {@link config}), `process.allowedNodeEnvironmentFlags` will + * contain what _would have_ been allowable. + * @since v10.10.0 + */ + allowedNodeEnvironmentFlags: ReadonlySet; + /** + * `process.report` is an object whose methods are used to generate diagnostic + * reports for the current process. Additional documentation is available in the `report documentation`. + * @since v11.8.0 + */ + report?: ProcessReport | undefined; + /** + * ```js + * import { resourceUsage } from 'process'; + * + * console.log(resourceUsage()); + * /* + * Will output: + * { + * userCPUTime: 82872, + * systemCPUTime: 4143, + * maxRSS: 33164, + * sharedMemorySize: 0, + * unsharedDataSize: 0, + * unsharedStackSize: 0, + * minorPageFault: 2469, + * majorPageFault: 0, + * swappedOut: 0, + * fsRead: 0, + * fsWrite: 8, + * ipcSent: 0, + * ipcReceived: 0, + * signalsCount: 0, + * voluntaryContextSwitches: 79, + * involuntaryContextSwitches: 1 + * } + * + * ``` + * @since v12.6.0 + * @return the resource usage for the current process. All of these values come from the `uv_getrusage` call which returns a [`uv_rusage_t` struct][uv_rusage_t]. + */ + resourceUsage(): ResourceUsage; + /** + * The `process.traceDeprecation` property indicates whether the`--trace-deprecation` flag is set on the current Node.js process. See the + * documentation for the `'warning' event` and the `emitWarning() method` for more information about this + * flag's behavior. + * @since v0.8.0 + */ + traceDeprecation: boolean; + /* EventEmitter */ + addListener(event: 'beforeExit', listener: BeforeExitListener): this; + addListener(event: 'disconnect', listener: DisconnectListener): this; + addListener(event: 'exit', listener: ExitListener): this; + addListener(event: 'rejectionHandled', listener: RejectionHandledListener): this; + addListener(event: 'uncaughtException', listener: UncaughtExceptionListener): this; + addListener(event: 'uncaughtExceptionMonitor', listener: UncaughtExceptionListener): this; + addListener(event: 'unhandledRejection', listener: UnhandledRejectionListener): this; + addListener(event: 'warning', listener: WarningListener): this; + addListener(event: 'message', listener: MessageListener): this; + addListener(event: Signals, listener: SignalsListener): this; + addListener(event: 'multipleResolves', listener: MultipleResolveListener): this; + addListener(event: 'worker', listener: WorkerListener): this; + emit(event: 'beforeExit', code: number): boolean; + emit(event: 'disconnect'): boolean; + emit(event: 'exit', code: number): boolean; + emit(event: 'rejectionHandled', promise: Promise): boolean; + emit(event: 'uncaughtException', error: Error): boolean; + emit(event: 'uncaughtExceptionMonitor', error: Error): boolean; + emit(event: 'unhandledRejection', reason: unknown, promise: Promise): boolean; + emit(event: 'warning', warning: Error): boolean; + emit(event: 'message', message: unknown, sendHandle: unknown): this; + emit(event: Signals, signal?: Signals): boolean; + emit(event: 'multipleResolves', type: MultipleResolveType, promise: Promise, value: unknown): this; + emit(event: 'worker', listener: WorkerListener): this; + on(event: 'beforeExit', listener: BeforeExitListener): this; + on(event: 'disconnect', listener: DisconnectListener): this; + on(event: 'exit', listener: ExitListener): this; + on(event: 'rejectionHandled', listener: RejectionHandledListener): this; + on(event: 'uncaughtException', listener: UncaughtExceptionListener): this; + on(event: 'uncaughtExceptionMonitor', listener: UncaughtExceptionListener): this; + on(event: 'unhandledRejection', listener: UnhandledRejectionListener): this; + on(event: 'warning', listener: WarningListener): this; + on(event: 'message', listener: MessageListener): this; + on(event: Signals, listener: SignalsListener): this; + on(event: 'multipleResolves', listener: MultipleResolveListener): this; + on(event: 'worker', listener: WorkerListener): this; + on(event: string | symbol, listener: (...args: any[]) => void): this; + once(event: 'beforeExit', listener: BeforeExitListener): this; + once(event: 'disconnect', listener: DisconnectListener): this; + once(event: 'exit', listener: ExitListener): this; + once(event: 'rejectionHandled', listener: RejectionHandledListener): this; + once(event: 'uncaughtException', listener: UncaughtExceptionListener): this; + once(event: 'uncaughtExceptionMonitor', listener: UncaughtExceptionListener): this; + once(event: 'unhandledRejection', listener: UnhandledRejectionListener): this; + once(event: 'warning', listener: WarningListener): this; + once(event: 'message', listener: MessageListener): this; + once(event: Signals, listener: SignalsListener): this; + once(event: 'multipleResolves', listener: MultipleResolveListener): this; + once(event: 'worker', listener: WorkerListener): this; + once(event: string | symbol, listener: (...args: any[]) => void): this; + prependListener(event: 'beforeExit', listener: BeforeExitListener): this; + prependListener(event: 'disconnect', listener: DisconnectListener): this; + prependListener(event: 'exit', listener: ExitListener): this; + prependListener(event: 'rejectionHandled', listener: RejectionHandledListener): this; + prependListener(event: 'uncaughtException', listener: UncaughtExceptionListener): this; + prependListener(event: 'uncaughtExceptionMonitor', listener: UncaughtExceptionListener): this; + prependListener(event: 'unhandledRejection', listener: UnhandledRejectionListener): this; + prependListener(event: 'warning', listener: WarningListener): this; + prependListener(event: 'message', listener: MessageListener): this; + prependListener(event: Signals, listener: SignalsListener): this; + prependListener(event: 'multipleResolves', listener: MultipleResolveListener): this; + prependListener(event: 'worker', listener: WorkerListener): this; + prependOnceListener(event: 'beforeExit', listener: BeforeExitListener): this; + prependOnceListener(event: 'disconnect', listener: DisconnectListener): this; + prependOnceListener(event: 'exit', listener: ExitListener): this; + prependOnceListener(event: 'rejectionHandled', listener: RejectionHandledListener): this; + prependOnceListener(event: 'uncaughtException', listener: UncaughtExceptionListener): this; + prependOnceListener(event: 'uncaughtExceptionMonitor', listener: UncaughtExceptionListener): this; + prependOnceListener(event: 'unhandledRejection', listener: UnhandledRejectionListener): this; + prependOnceListener(event: 'warning', listener: WarningListener): this; + prependOnceListener(event: 'message', listener: MessageListener): this; + prependOnceListener(event: Signals, listener: SignalsListener): this; + prependOnceListener(event: 'multipleResolves', listener: MultipleResolveListener): this; + prependOnceListener(event: 'worker', listener: WorkerListener): this; + listeners(event: 'beforeExit'): BeforeExitListener[]; + listeners(event: 'disconnect'): DisconnectListener[]; + listeners(event: 'exit'): ExitListener[]; + listeners(event: 'rejectionHandled'): RejectionHandledListener[]; + listeners(event: 'uncaughtException'): UncaughtExceptionListener[]; + listeners(event: 'uncaughtExceptionMonitor'): UncaughtExceptionListener[]; + listeners(event: 'unhandledRejection'): UnhandledRejectionListener[]; + listeners(event: 'warning'): WarningListener[]; + listeners(event: 'message'): MessageListener[]; + listeners(event: Signals): SignalsListener[]; + listeners(event: 'multipleResolves'): MultipleResolveListener[]; + listeners(event: 'worker'): WorkerListener[]; + } + } + } + export = process; +} +declare module 'node:process' { + import process = require('process'); + export = process; +} diff --git a/node_modules/@types/node/punycode.d.ts b/node_modules/@types/node/punycode.d.ts new file mode 100644 index 000000000..87ebbb904 --- /dev/null +++ b/node_modules/@types/node/punycode.d.ts @@ -0,0 +1,117 @@ +/** + * **The version of the punycode module bundled in Node.js is being deprecated.**In a future major version of Node.js this module will be removed. Users + * currently depending on the `punycode` module should switch to using the + * userland-provided [Punycode.js](https://github.com/bestiejs/punycode.js) module instead. For punycode-based URL + * encoding, see `url.domainToASCII` or, more generally, the `WHATWG URL API`. + * + * The `punycode` module is a bundled version of the [Punycode.js](https://github.com/bestiejs/punycode.js) module. It + * can be accessed using: + * + * ```js + * const punycode = require('punycode'); + * ``` + * + * [Punycode](https://tools.ietf.org/html/rfc3492) is a character encoding scheme defined by RFC 3492 that is + * primarily intended for use in Internationalized Domain Names. Because host + * names in URLs are limited to ASCII characters only, Domain Names that contain + * non-ASCII characters must be converted into ASCII using the Punycode scheme. + * For instance, the Japanese character that translates into the English word,`'example'` is `'例'`. The Internationalized Domain Name, `'例.com'` (equivalent + * to `'example.com'`) is represented by Punycode as the ASCII string`'xn--fsq.com'`. + * + * The `punycode` module provides a simple implementation of the Punycode standard. + * + * The `punycode` module is a third-party dependency used by Node.js and + * made available to developers as a convenience. Fixes or other modifications to + * the module must be directed to the [Punycode.js](https://github.com/bestiejs/punycode.js) project. + * @deprecated Since v7.0.0 - Deprecated + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/punycode.js) + */ +declare module 'punycode' { + /** + * The `punycode.decode()` method converts a [Punycode](https://tools.ietf.org/html/rfc3492) string of ASCII-only + * characters to the equivalent string of Unicode codepoints. + * + * ```js + * punycode.decode('maana-pta'); // 'mañana' + * punycode.decode('--dqo34k'); // '☃-⌘' + * ``` + * @since v0.5.1 + */ + function decode(string: string): string; + /** + * The `punycode.encode()` method converts a string of Unicode codepoints to a [Punycode](https://tools.ietf.org/html/rfc3492) string of ASCII-only characters. + * + * ```js + * punycode.encode('mañana'); // 'maana-pta' + * punycode.encode('☃-⌘'); // '--dqo34k' + * ``` + * @since v0.5.1 + */ + function encode(string: string): string; + /** + * The `punycode.toUnicode()` method converts a string representing a domain name + * containing [Punycode](https://tools.ietf.org/html/rfc3492) encoded characters into Unicode. Only the [Punycode](https://tools.ietf.org/html/rfc3492) encoded parts of the domain name are be + * converted. + * + * ```js + * // decode domain names + * punycode.toUnicode('xn--maana-pta.com'); // 'mañana.com' + * punycode.toUnicode('xn----dqo34k.com'); // '☃-⌘.com' + * punycode.toUnicode('example.com'); // 'example.com' + * ``` + * @since v0.6.1 + */ + function toUnicode(domain: string): string; + /** + * The `punycode.toASCII()` method converts a Unicode string representing an + * Internationalized Domain Name to [Punycode](https://tools.ietf.org/html/rfc3492). Only the non-ASCII parts of the + * domain name will be converted. Calling `punycode.toASCII()` on a string that + * already only contains ASCII characters will have no effect. + * + * ```js + * // encode domain names + * punycode.toASCII('mañana.com'); // 'xn--maana-pta.com' + * punycode.toASCII('☃-⌘.com'); // 'xn----dqo34k.com' + * punycode.toASCII('example.com'); // 'example.com' + * ``` + * @since v0.6.1 + */ + function toASCII(domain: string): string; + /** + * @deprecated since v7.0.0 + * The version of the punycode module bundled in Node.js is being deprecated. + * In a future major version of Node.js this module will be removed. + * Users currently depending on the punycode module should switch to using + * the userland-provided Punycode.js module instead. + */ + const ucs2: ucs2; + interface ucs2 { + /** + * @deprecated since v7.0.0 + * The version of the punycode module bundled in Node.js is being deprecated. + * In a future major version of Node.js this module will be removed. + * Users currently depending on the punycode module should switch to using + * the userland-provided Punycode.js module instead. + */ + decode(string: string): number[]; + /** + * @deprecated since v7.0.0 + * The version of the punycode module bundled in Node.js is being deprecated. + * In a future major version of Node.js this module will be removed. + * Users currently depending on the punycode module should switch to using + * the userland-provided Punycode.js module instead. + */ + encode(codePoints: ReadonlyArray): string; + } + /** + * @deprecated since v7.0.0 + * The version of the punycode module bundled in Node.js is being deprecated. + * In a future major version of Node.js this module will be removed. + * Users currently depending on the punycode module should switch to using + * the userland-provided Punycode.js module instead. + */ + const version: string; +} +declare module 'node:punycode' { + export * from 'punycode'; +} diff --git a/node_modules/@types/node/querystring.d.ts b/node_modules/@types/node/querystring.d.ts new file mode 100644 index 000000000..e694d8c84 --- /dev/null +++ b/node_modules/@types/node/querystring.d.ts @@ -0,0 +1,131 @@ +/** + * The `querystring` module provides utilities for parsing and formatting URL + * query strings. It can be accessed using: + * + * ```js + * const querystring = require('querystring'); + * ``` + * + * The `querystring` API is considered Legacy. While it is still maintained, + * new code should use the `URLSearchParams` API instead. + * @deprecated Legacy + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/querystring.js) + */ +declare module 'querystring' { + interface StringifyOptions { + encodeURIComponent?: ((str: string) => string) | undefined; + } + interface ParseOptions { + maxKeys?: number | undefined; + decodeURIComponent?: ((str: string) => string) | undefined; + } + interface ParsedUrlQuery extends NodeJS.Dict {} + interface ParsedUrlQueryInput extends NodeJS.Dict | ReadonlyArray | ReadonlyArray | null> {} + /** + * The `querystring.stringify()` method produces a URL query string from a + * given `obj` by iterating through the object's "own properties". + * + * It serializes the following types of values passed in `obj`:[string](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#String_type) | + * [number](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Number_type) | + * [bigint](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt) | + * [boolean](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Boolean_type) | + * [string\[\]](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#String_type) | + * [number\[\]](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Number_type) | + * [bigint\[\]](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt) | + * [boolean\[\]](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Boolean_type) The numeric values must be finite. Any other input values will be coerced to + * empty strings. + * + * ```js + * querystring.stringify({ foo: 'bar', baz: ['qux', 'quux'], corge: '' }); + * // Returns 'foo=bar&baz=qux&baz=quux&corge=' + * + * querystring.stringify({ foo: 'bar', baz: 'qux' }, ';', ':'); + * // Returns 'foo:bar;baz:qux' + * ``` + * + * By default, characters requiring percent-encoding within the query string will + * be encoded as UTF-8\. If an alternative encoding is required, then an alternative`encodeURIComponent` option will need to be specified: + * + * ```js + * // Assuming gbkEncodeURIComponent function already exists, + * + * querystring.stringify({ w: '中文', foo: 'bar' }, null, null, + * { encodeURIComponent: gbkEncodeURIComponent }); + * ``` + * @since v0.1.25 + * @param obj The object to serialize into a URL query string + * @param [sep='&'] The substring used to delimit key and value pairs in the query string. + * @param [eq='='] . The substring used to delimit keys and values in the query string. + */ + function stringify(obj?: ParsedUrlQueryInput, sep?: string, eq?: string, options?: StringifyOptions): string; + /** + * The `querystring.parse()` method parses a URL query string (`str`) into a + * collection of key and value pairs. + * + * For example, the query string `'foo=bar&abc=xyz&abc=123'` is parsed into: + * + * ```js + * { + * foo: 'bar', + * abc: ['xyz', '123'] + * } + * ``` + * + * The object returned by the `querystring.parse()` method _does not_prototypically inherit from the JavaScript `Object`. This means that typical`Object` methods such as `obj.toString()`, + * `obj.hasOwnProperty()`, and others + * are not defined and _will not work_. + * + * By default, percent-encoded characters within the query string will be assumed + * to use UTF-8 encoding. If an alternative character encoding is used, then an + * alternative `decodeURIComponent` option will need to be specified: + * + * ```js + * // Assuming gbkDecodeURIComponent function already exists... + * + * querystring.parse('w=%D6%D0%CE%C4&foo=bar', null, null, + * { decodeURIComponent: gbkDecodeURIComponent }); + * ``` + * @since v0.1.25 + * @param str The URL query string to parse + * @param [sep='&'] The substring used to delimit key and value pairs in the query string. + * @param [eq='='] . The substring used to delimit keys and values in the query string. + */ + function parse(str: string, sep?: string, eq?: string, options?: ParseOptions): ParsedUrlQuery; + /** + * The querystring.encode() function is an alias for querystring.stringify(). + */ + const encode: typeof stringify; + /** + * The querystring.decode() function is an alias for querystring.parse(). + */ + const decode: typeof parse; + /** + * The `querystring.escape()` method performs URL percent-encoding on the given`str` in a manner that is optimized for the specific requirements of URL + * query strings. + * + * The `querystring.escape()` method is used by `querystring.stringify()` and is + * generally not expected to be used directly. It is exported primarily to allow + * application code to provide a replacement percent-encoding implementation if + * necessary by assigning `querystring.escape` to an alternative function. + * @since v0.1.25 + */ + function escape(str: string): string; + /** + * The `querystring.unescape()` method performs decoding of URL percent-encoded + * characters on the given `str`. + * + * The `querystring.unescape()` method is used by `querystring.parse()` and is + * generally not expected to be used directly. It is exported primarily to allow + * application code to provide a replacement decoding implementation if + * necessary by assigning `querystring.unescape` to an alternative function. + * + * By default, the `querystring.unescape()` method will attempt to use the + * JavaScript built-in `decodeURIComponent()` method to decode. If that fails, + * a safer equivalent that does not throw on malformed URLs will be used. + * @since v0.1.25 + */ + function unescape(str: string): string; +} +declare module 'node:querystring' { + export * from 'querystring'; +} diff --git a/node_modules/@types/node/readline.d.ts b/node_modules/@types/node/readline.d.ts new file mode 100644 index 000000000..6ab64acbb --- /dev/null +++ b/node_modules/@types/node/readline.d.ts @@ -0,0 +1,653 @@ +/** + * The `readline` module provides an interface for reading data from a `Readable` stream (such as `process.stdin`) one line at a time. + * + * To use the promise-based APIs: + * + * ```js + * import * as readline from 'node:readline/promises'; + * ``` + * + * To use the callback and sync APIs: + * + * ```js + * import * as readline from 'node:readline'; + * ``` + * + * The following simple example illustrates the basic use of the `readline` module. + * + * ```js + * import * as readline from 'node:readline/promises'; + * import { stdin as input, stdout as output } from 'node:process'; + * + * const rl = readline.createInterface({ input, output }); + * + * const answer = await rl.question('What do you think of Node.js? '); + * + * console.log(`Thank you for your valuable feedback: ${answer}`); + * + * rl.close(); + * ``` + * + * Once this code is invoked, the Node.js application will not terminate until the`readline.Interface` is closed because the interface waits for data to be + * received on the `input` stream. + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/readline.js) + */ +declare module 'readline' { + import { Abortable, EventEmitter } from 'node:events'; + import * as promises from 'node:readline/promises'; + + export { promises }; + export interface Key { + sequence?: string | undefined; + name?: string | undefined; + ctrl?: boolean | undefined; + meta?: boolean | undefined; + shift?: boolean | undefined; + } + /** + * Instances of the `readline.Interface` class are constructed using the`readline.createInterface()` method. Every instance is associated with a + * single `input` `Readable` stream and a single `output` `Writable` stream. + * The `output` stream is used to print prompts for user input that arrives on, + * and is read from, the `input` stream. + * @since v0.1.104 + */ + export class Interface extends EventEmitter { + readonly terminal: boolean; + /** + * The current input data being processed by node. + * + * This can be used when collecting input from a TTY stream to retrieve the + * current value that has been processed thus far, prior to the `line` event + * being emitted. Once the `line` event has been emitted, this property will + * be an empty string. + * + * Be aware that modifying the value during the instance runtime may have + * unintended consequences if `rl.cursor` is not also controlled. + * + * **If not using a TTY stream for input, use the `'line'` event.** + * + * One possible use case would be as follows: + * + * ```js + * const values = ['lorem ipsum', 'dolor sit amet']; + * const rl = readline.createInterface(process.stdin); + * const showResults = debounce(() => { + * console.log( + * '\n', + * values.filter((val) => val.startsWith(rl.line)).join(' ') + * ); + * }, 300); + * process.stdin.on('keypress', (c, k) => { + * showResults(); + * }); + * ``` + * @since v0.1.98 + */ + readonly line: string; + /** + * The cursor position relative to `rl.line`. + * + * This will track where the current cursor lands in the input string, when + * reading input from a TTY stream. The position of cursor determines the + * portion of the input string that will be modified as input is processed, + * as well as the column where the terminal caret will be rendered. + * @since v0.1.98 + */ + readonly cursor: number; + /** + * NOTE: According to the documentation: + * + * > Instances of the `readline.Interface` class are constructed using the + * > `readline.createInterface()` method. + * + * @see https://nodejs.org/dist/latest-v10.x/docs/api/readline.html#readline_class_interface + */ + protected constructor(input: NodeJS.ReadableStream, output?: NodeJS.WritableStream, completer?: Completer | AsyncCompleter, terminal?: boolean); + /** + * NOTE: According to the documentation: + * + * > Instances of the `readline.Interface` class are constructed using the + * > `readline.createInterface()` method. + * + * @see https://nodejs.org/dist/latest-v10.x/docs/api/readline.html#readline_class_interface + */ + protected constructor(options: ReadLineOptions); + /** + * The `rl.getPrompt()` method returns the current prompt used by `rl.prompt()`. + * @since v15.3.0 + * @return the current prompt string + */ + getPrompt(): string; + /** + * The `rl.setPrompt()` method sets the prompt that will be written to `output`whenever `rl.prompt()` is called. + * @since v0.1.98 + */ + setPrompt(prompt: string): void; + /** + * The `rl.prompt()` method writes the `readline.Interface` instances configured`prompt` to a new line in `output` in order to provide a user with a new + * location at which to provide input. + * + * When called, `rl.prompt()` will resume the `input` stream if it has been + * paused. + * + * If the `readline.Interface` was created with `output` set to `null` or`undefined` the prompt is not written. + * @since v0.1.98 + * @param preserveCursor If `true`, prevents the cursor placement from being reset to `0`. + */ + prompt(preserveCursor?: boolean): void; + /** + * The `rl.question()` method displays the `query` by writing it to the `output`, + * waits for user input to be provided on `input`, then invokes the `callback`function passing the provided input as the first argument. + * + * When called, `rl.question()` will resume the `input` stream if it has been + * paused. + * + * If the `readline.Interface` was created with `output` set to `null` or`undefined` the `query` is not written. + * + * The `callback` function passed to `rl.question()` does not follow the typical + * pattern of accepting an `Error` object or `null` as the first argument. + * The `callback` is called with the provided answer as the only argument. + * + * Example usage: + * + * ```js + * rl.question('What is your favorite food? ', (answer) => { + * console.log(`Oh, so your favorite food is ${answer}`); + * }); + * ``` + * + * Using an `AbortController` to cancel a question. + * + * ```js + * const ac = new AbortController(); + * const signal = ac.signal; + * + * rl.question('What is your favorite food? ', { signal }, (answer) => { + * console.log(`Oh, so your favorite food is ${answer}`); + * }); + * + * signal.addEventListener('abort', () => { + * console.log('The food question timed out'); + * }, { once: true }); + * + * setTimeout(() => ac.abort(), 10000); + * ``` + * + * If this method is invoked as it's util.promisify()ed version, it returns a + * Promise that fulfills with the answer. If the question is canceled using + * an `AbortController` it will reject with an `AbortError`. + * + * ```js + * const util = require('util'); + * const question = util.promisify(rl.question).bind(rl); + * + * async function questionExample() { + * try { + * const answer = await question('What is you favorite food? '); + * console.log(`Oh, so your favorite food is ${answer}`); + * } catch (err) { + * console.error('Question rejected', err); + * } + * } + * questionExample(); + * ``` + * @since v0.3.3 + * @param query A statement or query to write to `output`, prepended to the prompt. + * @param callback A callback function that is invoked with the user's input in response to the `query`. + */ + question(query: string, callback: (answer: string) => void): void; + question(query: string, options: Abortable, callback: (answer: string) => void): void; + /** + * The `rl.pause()` method pauses the `input` stream, allowing it to be resumed + * later if necessary. + * + * Calling `rl.pause()` does not immediately pause other events (including`'line'`) from being emitted by the `readline.Interface` instance. + * @since v0.3.4 + */ + pause(): this; + /** + * The `rl.resume()` method resumes the `input` stream if it has been paused. + * @since v0.3.4 + */ + resume(): this; + /** + * The `rl.close()` method closes the `readline.Interface` instance and + * relinquishes control over the `input` and `output` streams. When called, + * the `'close'` event will be emitted. + * + * Calling `rl.close()` does not immediately stop other events (including `'line'`) + * from being emitted by the `readline.Interface` instance. + * @since v0.1.98 + */ + close(): void; + /** + * The `rl.write()` method will write either `data` or a key sequence identified + * by `key` to the `output`. The `key` argument is supported only if `output` is + * a `TTY` text terminal. See `TTY keybindings` for a list of key + * combinations. + * + * If `key` is specified, `data` is ignored. + * + * When called, `rl.write()` will resume the `input` stream if it has been + * paused. + * + * If the `readline.Interface` was created with `output` set to `null` or`undefined` the `data` and `key` are not written. + * + * ```js + * rl.write('Delete this!'); + * // Simulate Ctrl+U to delete the line written previously + * rl.write(null, { ctrl: true, name: 'u' }); + * ``` + * + * The `rl.write()` method will write the data to the `readline` `Interface`'s`input`_as if it were provided by the user_. + * @since v0.1.98 + */ + write(data: string | Buffer, key?: Key): void; + write(data: undefined | null | string | Buffer, key: Key): void; + /** + * Returns the real position of the cursor in relation to the input + * prompt + string. Long input (wrapping) strings, as well as multiple + * line prompts are included in the calculations. + * @since v13.5.0, v12.16.0 + */ + getCursorPos(): CursorPos; + /** + * events.EventEmitter + * 1. close + * 2. line + * 3. pause + * 4. resume + * 5. SIGCONT + * 6. SIGINT + * 7. SIGTSTP + * 8. history + */ + addListener(event: string, listener: (...args: any[]) => void): this; + addListener(event: 'close', listener: () => void): this; + addListener(event: 'line', listener: (input: string) => void): this; + addListener(event: 'pause', listener: () => void): this; + addListener(event: 'resume', listener: () => void): this; + addListener(event: 'SIGCONT', listener: () => void): this; + addListener(event: 'SIGINT', listener: () => void): this; + addListener(event: 'SIGTSTP', listener: () => void): this; + addListener(event: 'history', listener: (history: string[]) => void): this; + emit(event: string | symbol, ...args: any[]): boolean; + emit(event: 'close'): boolean; + emit(event: 'line', input: string): boolean; + emit(event: 'pause'): boolean; + emit(event: 'resume'): boolean; + emit(event: 'SIGCONT'): boolean; + emit(event: 'SIGINT'): boolean; + emit(event: 'SIGTSTP'): boolean; + emit(event: 'history', history: string[]): boolean; + on(event: string, listener: (...args: any[]) => void): this; + on(event: 'close', listener: () => void): this; + on(event: 'line', listener: (input: string) => void): this; + on(event: 'pause', listener: () => void): this; + on(event: 'resume', listener: () => void): this; + on(event: 'SIGCONT', listener: () => void): this; + on(event: 'SIGINT', listener: () => void): this; + on(event: 'SIGTSTP', listener: () => void): this; + on(event: 'history', listener: (history: string[]) => void): this; + once(event: string, listener: (...args: any[]) => void): this; + once(event: 'close', listener: () => void): this; + once(event: 'line', listener: (input: string) => void): this; + once(event: 'pause', listener: () => void): this; + once(event: 'resume', listener: () => void): this; + once(event: 'SIGCONT', listener: () => void): this; + once(event: 'SIGINT', listener: () => void): this; + once(event: 'SIGTSTP', listener: () => void): this; + once(event: 'history', listener: (history: string[]) => void): this; + prependListener(event: string, listener: (...args: any[]) => void): this; + prependListener(event: 'close', listener: () => void): this; + prependListener(event: 'line', listener: (input: string) => void): this; + prependListener(event: 'pause', listener: () => void): this; + prependListener(event: 'resume', listener: () => void): this; + prependListener(event: 'SIGCONT', listener: () => void): this; + prependListener(event: 'SIGINT', listener: () => void): this; + prependListener(event: 'SIGTSTP', listener: () => void): this; + prependListener(event: 'history', listener: (history: string[]) => void): this; + prependOnceListener(event: string, listener: (...args: any[]) => void): this; + prependOnceListener(event: 'close', listener: () => void): this; + prependOnceListener(event: 'line', listener: (input: string) => void): this; + prependOnceListener(event: 'pause', listener: () => void): this; + prependOnceListener(event: 'resume', listener: () => void): this; + prependOnceListener(event: 'SIGCONT', listener: () => void): this; + prependOnceListener(event: 'SIGINT', listener: () => void): this; + prependOnceListener(event: 'SIGTSTP', listener: () => void): this; + prependOnceListener(event: 'history', listener: (history: string[]) => void): this; + [Symbol.asyncIterator](): AsyncIterableIterator; + } + export type ReadLine = Interface; // type forwarded for backwards compatibility + export type Completer = (line: string) => CompleterResult; + export type AsyncCompleter = (line: string, callback: (err?: null | Error, result?: CompleterResult) => void) => void; + export type CompleterResult = [string[], string]; + export interface ReadLineOptions { + input: NodeJS.ReadableStream; + output?: NodeJS.WritableStream | undefined; + completer?: Completer | AsyncCompleter | undefined; + terminal?: boolean | undefined; + /** + * Initial list of history lines. This option makes sense + * only if `terminal` is set to `true` by the user or by an internal `output` + * check, otherwise the history caching mechanism is not initialized at all. + * @default [] + */ + history?: string[] | undefined; + historySize?: number | undefined; + prompt?: string | undefined; + crlfDelay?: number | undefined; + /** + * If `true`, when a new input line added + * to the history list duplicates an older one, this removes the older line + * from the list. + * @default false + */ + removeHistoryDuplicates?: boolean | undefined; + escapeCodeTimeout?: number | undefined; + tabSize?: number | undefined; + } + /** + * The `readline.createInterface()` method creates a new `readline.Interface`instance. + * + * ```js + * const readline = require('readline'); + * const rl = readline.createInterface({ + * input: process.stdin, + * output: process.stdout + * }); + * ``` + * + * Once the `readline.Interface` instance is created, the most common case is to + * listen for the `'line'` event: + * + * ```js + * rl.on('line', (line) => { + * console.log(`Received: ${line}`); + * }); + * ``` + * + * If `terminal` is `true` for this instance then the `output` stream will get + * the best compatibility if it defines an `output.columns` property and emits + * a `'resize'` event on the `output` if or when the columns ever change + * (`process.stdout` does this automatically when it is a TTY). + * + * When creating a `readline.Interface` using `stdin` as input, the program + * will not terminate until it receives `EOF` (Ctrl+D on + * Linux/macOS, Ctrl+Z followed by Return on + * Windows). + * If you want your application to exit without waiting for user input, you can `unref()` the standard input stream: + * + * ```js + * process.stdin.unref(); + * ``` + * @since v0.1.98 + */ + export function createInterface(input: NodeJS.ReadableStream, output?: NodeJS.WritableStream, completer?: Completer | AsyncCompleter, terminal?: boolean): Interface; + export function createInterface(options: ReadLineOptions): Interface; + /** + * The `readline.emitKeypressEvents()` method causes the given `Readable` stream to begin emitting `'keypress'` events corresponding to received input. + * + * Optionally, `interface` specifies a `readline.Interface` instance for which + * autocompletion is disabled when copy-pasted input is detected. + * + * If the `stream` is a `TTY`, then it must be in raw mode. + * + * This is automatically called by any readline instance on its `input` if the`input` is a terminal. Closing the `readline` instance does not stop + * the `input` from emitting `'keypress'` events. + * + * ```js + * readline.emitKeypressEvents(process.stdin); + * if (process.stdin.isTTY) + * process.stdin.setRawMode(true); + * ``` + * + * ## Example: Tiny CLI + * + * The following example illustrates the use of `readline.Interface` class to + * implement a small command-line interface: + * + * ```js + * const readline = require('readline'); + * const rl = readline.createInterface({ + * input: process.stdin, + * output: process.stdout, + * prompt: 'OHAI> ' + * }); + * + * rl.prompt(); + * + * rl.on('line', (line) => { + * switch (line.trim()) { + * case 'hello': + * console.log('world!'); + * break; + * default: + * console.log(`Say what? I might have heard '${line.trim()}'`); + * break; + * } + * rl.prompt(); + * }).on('close', () => { + * console.log('Have a great day!'); + * process.exit(0); + * }); + * ``` + * + * ## Example: Read file stream line-by-Line + * + * A common use case for `readline` is to consume an input file one line at a + * time. The easiest way to do so is leveraging the `fs.ReadStream` API as + * well as a `for await...of` loop: + * + * ```js + * const fs = require('fs'); + * const readline = require('readline'); + * + * async function processLineByLine() { + * const fileStream = fs.createReadStream('input.txt'); + * + * const rl = readline.createInterface({ + * input: fileStream, + * crlfDelay: Infinity + * }); + * // Note: we use the crlfDelay option to recognize all instances of CR LF + * // ('\r\n') in input.txt as a single line break. + * + * for await (const line of rl) { + * // Each line in input.txt will be successively available here as `line`. + * console.log(`Line from file: ${line}`); + * } + * } + * + * processLineByLine(); + * ``` + * + * Alternatively, one could use the `'line'` event: + * + * ```js + * const fs = require('fs'); + * const readline = require('readline'); + * + * const rl = readline.createInterface({ + * input: fs.createReadStream('sample.txt'), + * crlfDelay: Infinity + * }); + * + * rl.on('line', (line) => { + * console.log(`Line from file: ${line}`); + * }); + * ``` + * + * Currently, `for await...of` loop can be a bit slower. If `async` / `await`flow and speed are both essential, a mixed approach can be applied: + * + * ```js + * const { once } = require('events'); + * const { createReadStream } = require('fs'); + * const { createInterface } = require('readline'); + * + * (async function processLineByLine() { + * try { + * const rl = createInterface({ + * input: createReadStream('big-file.txt'), + * crlfDelay: Infinity + * }); + * + * rl.on('line', (line) => { + * // Process the line. + * }); + * + * await once(rl, 'close'); + * + * console.log('File processed.'); + * } catch (err) { + * console.error(err); + * } + * })(); + * ``` + * @since v0.7.7 + */ + export function emitKeypressEvents(stream: NodeJS.ReadableStream, readlineInterface?: Interface): void; + export type Direction = -1 | 0 | 1; + export interface CursorPos { + rows: number; + cols: number; + } + /** + * The `readline.clearLine()` method clears current line of given `TTY` stream + * in a specified direction identified by `dir`. + * @since v0.7.7 + * @param callback Invoked once the operation completes. + * @return `false` if `stream` wishes for the calling code to wait for the `'drain'` event to be emitted before continuing to write additional data; otherwise `true`. + */ + export function clearLine(stream: NodeJS.WritableStream, dir: Direction, callback?: () => void): boolean; + /** + * The `readline.clearScreenDown()` method clears the given `TTY` stream from + * the current position of the cursor down. + * @since v0.7.7 + * @param callback Invoked once the operation completes. + * @return `false` if `stream` wishes for the calling code to wait for the `'drain'` event to be emitted before continuing to write additional data; otherwise `true`. + */ + export function clearScreenDown(stream: NodeJS.WritableStream, callback?: () => void): boolean; + /** + * The `readline.cursorTo()` method moves cursor to the specified position in a + * given `TTY` `stream`. + * @since v0.7.7 + * @param callback Invoked once the operation completes. + * @return `false` if `stream` wishes for the calling code to wait for the `'drain'` event to be emitted before continuing to write additional data; otherwise `true`. + */ + export function cursorTo(stream: NodeJS.WritableStream, x: number, y?: number, callback?: () => void): boolean; + /** + * The `readline.moveCursor()` method moves the cursor _relative_ to its current + * position in a given `TTY` `stream`. + * + * ## Example: Tiny CLI + * + * The following example illustrates the use of `readline.Interface` class to + * implement a small command-line interface: + * + * ```js + * const readline = require('readline'); + * const rl = readline.createInterface({ + * input: process.stdin, + * output: process.stdout, + * prompt: 'OHAI> ' + * }); + * + * rl.prompt(); + * + * rl.on('line', (line) => { + * switch (line.trim()) { + * case 'hello': + * console.log('world!'); + * break; + * default: + * console.log(`Say what? I might have heard '${line.trim()}'`); + * break; + * } + * rl.prompt(); + * }).on('close', () => { + * console.log('Have a great day!'); + * process.exit(0); + * }); + * ``` + * + * ## Example: Read file stream line-by-Line + * + * A common use case for `readline` is to consume an input file one line at a + * time. The easiest way to do so is leveraging the `fs.ReadStream` API as + * well as a `for await...of` loop: + * + * ```js + * const fs = require('fs'); + * const readline = require('readline'); + * + * async function processLineByLine() { + * const fileStream = fs.createReadStream('input.txt'); + * + * const rl = readline.createInterface({ + * input: fileStream, + * crlfDelay: Infinity + * }); + * // Note: we use the crlfDelay option to recognize all instances of CR LF + * // ('\r\n') in input.txt as a single line break. + * + * for await (const line of rl) { + * // Each line in input.txt will be successively available here as `line`. + * console.log(`Line from file: ${line}`); + * } + * } + * + * processLineByLine(); + * ``` + * + * Alternatively, one could use the `'line'` event: + * + * ```js + * const fs = require('fs'); + * const readline = require('readline'); + * + * const rl = readline.createInterface({ + * input: fs.createReadStream('sample.txt'), + * crlfDelay: Infinity + * }); + * + * rl.on('line', (line) => { + * console.log(`Line from file: ${line}`); + * }); + * ``` + * + * Currently, `for await...of` loop can be a bit slower. If `async` / `await`flow and speed are both essential, a mixed approach can be applied: + * + * ```js + * const { once } = require('events'); + * const { createReadStream } = require('fs'); + * const { createInterface } = require('readline'); + * + * (async function processLineByLine() { + * try { + * const rl = createInterface({ + * input: createReadStream('big-file.txt'), + * crlfDelay: Infinity + * }); + * + * rl.on('line', (line) => { + * // Process the line. + * }); + * + * await once(rl, 'close'); + * + * console.log('File processed.'); + * } catch (err) { + * console.error(err); + * } + * })(); + * ``` + * @since v0.7.7 + * @param callback Invoked once the operation completes. + * @return `false` if `stream` wishes for the calling code to wait for the `'drain'` event to be emitted before continuing to write additional data; otherwise `true`. + */ + export function moveCursor(stream: NodeJS.WritableStream, dx: number, dy: number, callback?: () => void): boolean; +} +declare module 'node:readline' { + export * from 'readline'; +} diff --git a/node_modules/@types/node/readline/promises.d.ts b/node_modules/@types/node/readline/promises.d.ts new file mode 100644 index 000000000..8f9f06f0b --- /dev/null +++ b/node_modules/@types/node/readline/promises.d.ts @@ -0,0 +1,143 @@ +/** + * The `readline/promise` module provides an API for reading lines of input from a Readable stream one line at a time. + * + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/readline/promises.js) + * @since v17.0.0 + */ +declare module 'readline/promises' { + import { Interface as _Interface, ReadLineOptions, Completer, AsyncCompleter, Direction } from 'node:readline'; + import { Abortable } from 'node:events'; + + class Interface extends _Interface { + /** + * The rl.question() method displays the query by writing it to the output, waits for user input to be provided on input, + * then invokes the callback function passing the provided input as the first argument. + * + * When called, rl.question() will resume the input stream if it has been paused. + * + * If the readlinePromises.Interface was created with output set to null or undefined the query is not written. + * + * If the question is called after rl.close(), it returns a rejected promise. + * + * Example usage: + * + * ```js + * const answer = await rl.question('What is your favorite food? '); + * console.log(`Oh, so your favorite food is ${answer}`); + * ``` + * + * Using an AbortSignal to cancel a question. + * + * ```js + * const signal = AbortSignal.timeout(10_000); + * + * signal.addEventListener('abort', () => { + * console.log('The food question timed out'); + * }, { once: true }); + * + * const answer = await rl.question('What is your favorite food? ', { signal }); + * console.log(`Oh, so your favorite food is ${answer}`); + * ``` + * + * @since v17.0.0 + * @param query A statement or query to write to output, prepended to the prompt. + */ + question(query: string): Promise; + question(query: string, options: Abortable): Promise; + } + + class Readline { + /** + * @param stream A TTY stream. + */ + constructor(stream: NodeJS.WritableStream, options?: { autoCommit?: boolean }); + /** + * The `rl.clearLine()` method adds to the internal list of pending action an action that clears current line of the associated `stream` in a specified direction identified by `dir`. + * Call `rl.commit()` to see the effect of this method, unless `autoCommit: true` was passed to the constructor. + */ + clearLine(dir: Direction): this; + /** + * The `rl.clearScreenDown()` method adds to the internal list of pending action an action that clears the associated `stream` from the current position of the cursor down. + * Call `rl.commit()` to see the effect of this method, unless `autoCommit: true` was passed to the constructor. + */ + clearScreenDown(): this; + /** + * The `rl.commit()` method sends all the pending actions to the associated `stream` and clears the internal list of pending actions. + */ + commit(): Promise; + /** + * The `rl.cursorTo()` method adds to the internal list of pending action an action that moves cursor to the specified position in the associated `stream`. + * Call `rl.commit()` to see the effect of this method, unless `autoCommit: true` was passed to the constructor. + */ + cursorTo(x: number, y?: number): this; + /** + * The `rl.moveCursor()` method adds to the internal list of pending action an action that moves the cursor relative to its current position in the associated `stream`. + * Call `rl.commit()` to see the effect of this method, unless autoCommit: true was passed to the constructor. + */ + moveCursor(dx: number, dy: number): this; + /** + * The `rl.rollback()` method clears the internal list of pending actions without sending it to the associated `stream`. + */ + rollback(): this; + } + + /** + * The `readlinePromises.createInterface()` method creates a new `readlinePromises.Interface` instance. + * + * ```js + * const readlinePromises = require('node:readline/promises'); + * const rl = readlinePromises.createInterface({ + * input: process.stdin, + * output: process.stdout + * }); + * ``` + * + * Once the `readlinePromises.Interface` instance is created, the most common case is to listen for the `'line'` event: + * + * ```js + * rl.on('line', (line) => { + * console.log(`Received: ${line}`); + * }); + * ``` + * + * If `terminal` is `true` for this instance then the `output` stream will get the best compatibility if it defines an `output.columns` property, + * and emits a `'resize'` event on the `output`, if or when the columns ever change (`process.stdout` does this automatically when it is a TTY). + * + * ## Use of the `completer` function + * + * The `completer` function takes the current line entered by the user as an argument, and returns an `Array` with 2 entries: + * + * - An Array with matching entries for the completion. + * - The substring that was used for the matching. + * + * For instance: `[[substr1, substr2, ...], originalsubstring]`. + * + * ```js + * function completer(line) { + * const completions = '.help .error .exit .quit .q'.split(' '); + * const hits = completions.filter((c) => c.startsWith(line)); + * // Show all completions if none found + * return [hits.length ? hits : completions, line]; + * } + * ``` + * + * The `completer` function can also returns a `Promise`, or be asynchronous: + * + * ```js + * async function completer(linePartial) { + * await someAsyncWork(); + * return [['123'], linePartial]; + * } + * ``` + */ + function createInterface( + input: NodeJS.ReadableStream, + output?: NodeJS.WritableStream, + completer?: Completer | AsyncCompleter, + terminal?: boolean, + ): Interface; + function createInterface(options: ReadLineOptions): Interface; +} +declare module 'node:readline/promises' { + export * from 'readline/promises'; +} diff --git a/node_modules/@types/node/repl.d.ts b/node_modules/@types/node/repl.d.ts new file mode 100644 index 000000000..be42ccc4a --- /dev/null +++ b/node_modules/@types/node/repl.d.ts @@ -0,0 +1,424 @@ +/** + * The `repl` module provides a Read-Eval-Print-Loop (REPL) implementation that + * is available both as a standalone program or includible in other applications. + * It can be accessed using: + * + * ```js + * const repl = require('repl'); + * ``` + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/repl.js) + */ +declare module 'repl' { + import { Interface, Completer, AsyncCompleter } from 'node:readline'; + import { Context } from 'node:vm'; + import { InspectOptions } from 'node:util'; + interface ReplOptions { + /** + * The input prompt to display. + * @default "> " + */ + prompt?: string | undefined; + /** + * The `Readable` stream from which REPL input will be read. + * @default process.stdin + */ + input?: NodeJS.ReadableStream | undefined; + /** + * The `Writable` stream to which REPL output will be written. + * @default process.stdout + */ + output?: NodeJS.WritableStream | undefined; + /** + * If `true`, specifies that the output should be treated as a TTY terminal, and have + * ANSI/VT100 escape codes written to it. + * Default: checking the value of the `isTTY` property on the output stream upon + * instantiation. + */ + terminal?: boolean | undefined; + /** + * The function to be used when evaluating each given line of input. + * Default: an async wrapper for the JavaScript `eval()` function. An `eval` function can + * error with `repl.Recoverable` to indicate the input was incomplete and prompt for + * additional lines. + * + * @see https://nodejs.org/dist/latest-v10.x/docs/api/repl.html#repl_default_evaluation + * @see https://nodejs.org/dist/latest-v10.x/docs/api/repl.html#repl_custom_evaluation_functions + */ + eval?: REPLEval | undefined; + /** + * Defines if the repl prints output previews or not. + * @default `true` Always `false` in case `terminal` is falsy. + */ + preview?: boolean | undefined; + /** + * If `true`, specifies that the default `writer` function should include ANSI color + * styling to REPL output. If a custom `writer` function is provided then this has no + * effect. + * Default: the REPL instance's `terminal` value. + */ + useColors?: boolean | undefined; + /** + * If `true`, specifies that the default evaluation function will use the JavaScript + * `global` as the context as opposed to creating a new separate context for the REPL + * instance. The node CLI REPL sets this value to `true`. + * Default: `false`. + */ + useGlobal?: boolean | undefined; + /** + * If `true`, specifies that the default writer will not output the return value of a + * command if it evaluates to `undefined`. + * Default: `false`. + */ + ignoreUndefined?: boolean | undefined; + /** + * The function to invoke to format the output of each command before writing to `output`. + * Default: a wrapper for `util.inspect`. + * + * @see https://nodejs.org/dist/latest-v10.x/docs/api/repl.html#repl_customizing_repl_output + */ + writer?: REPLWriter | undefined; + /** + * An optional function used for custom Tab auto completion. + * + * @see https://nodejs.org/dist/latest-v11.x/docs/api/readline.html#readline_use_of_the_completer_function + */ + completer?: Completer | AsyncCompleter | undefined; + /** + * A flag that specifies whether the default evaluator executes all JavaScript commands in + * strict mode or default (sloppy) mode. + * Accepted values are: + * - `repl.REPL_MODE_SLOPPY` - evaluates expressions in sloppy mode. + * - `repl.REPL_MODE_STRICT` - evaluates expressions in strict mode. This is equivalent to + * prefacing every repl statement with `'use strict'`. + */ + replMode?: typeof REPL_MODE_SLOPPY | typeof REPL_MODE_STRICT | undefined; + /** + * Stop evaluating the current piece of code when `SIGINT` is received, i.e. `Ctrl+C` is + * pressed. This cannot be used together with a custom `eval` function. + * Default: `false`. + */ + breakEvalOnSigint?: boolean | undefined; + } + type REPLEval = (this: REPLServer, evalCmd: string, context: Context, file: string, cb: (err: Error | null, result: any) => void) => void; + type REPLWriter = (this: REPLServer, obj: any) => string; + /** + * This is the default "writer" value, if none is passed in the REPL options, + * and it can be overridden by custom print functions. + */ + const writer: REPLWriter & { + options: InspectOptions; + }; + type REPLCommandAction = (this: REPLServer, text: string) => void; + interface REPLCommand { + /** + * Help text to be displayed when `.help` is entered. + */ + help?: string | undefined; + /** + * The function to execute, optionally accepting a single string argument. + */ + action: REPLCommandAction; + } + /** + * Instances of `repl.REPLServer` are created using the {@link start} method + * or directly using the JavaScript `new` keyword. + * + * ```js + * const repl = require('repl'); + * + * const options = { useColors: true }; + * + * const firstInstance = repl.start(options); + * const secondInstance = new repl.REPLServer(options); + * ``` + * @since v0.1.91 + */ + class REPLServer extends Interface { + /** + * The `vm.Context` provided to the `eval` function to be used for JavaScript + * evaluation. + */ + readonly context: Context; + /** + * @deprecated since v14.3.0 - Use `input` instead. + */ + readonly inputStream: NodeJS.ReadableStream; + /** + * @deprecated since v14.3.0 - Use `output` instead. + */ + readonly outputStream: NodeJS.WritableStream; + /** + * The `Readable` stream from which REPL input will be read. + */ + readonly input: NodeJS.ReadableStream; + /** + * The `Writable` stream to which REPL output will be written. + */ + readonly output: NodeJS.WritableStream; + /** + * The commands registered via `replServer.defineCommand()`. + */ + readonly commands: NodeJS.ReadOnlyDict; + /** + * A value indicating whether the REPL is currently in "editor mode". + * + * @see https://nodejs.org/dist/latest-v10.x/docs/api/repl.html#repl_commands_and_special_keys + */ + readonly editorMode: boolean; + /** + * A value indicating whether the `_` variable has been assigned. + * + * @see https://nodejs.org/dist/latest-v10.x/docs/api/repl.html#repl_assignment_of_the_underscore_variable + */ + readonly underscoreAssigned: boolean; + /** + * The last evaluation result from the REPL (assigned to the `_` variable inside of the REPL). + * + * @see https://nodejs.org/dist/latest-v10.x/docs/api/repl.html#repl_assignment_of_the_underscore_variable + */ + readonly last: any; + /** + * A value indicating whether the `_error` variable has been assigned. + * + * @since v9.8.0 + * @see https://nodejs.org/dist/latest-v10.x/docs/api/repl.html#repl_assignment_of_the_underscore_variable + */ + readonly underscoreErrAssigned: boolean; + /** + * The last error raised inside the REPL (assigned to the `_error` variable inside of the REPL). + * + * @since v9.8.0 + * @see https://nodejs.org/dist/latest-v10.x/docs/api/repl.html#repl_assignment_of_the_underscore_variable + */ + readonly lastError: any; + /** + * Specified in the REPL options, this is the function to be used when evaluating each + * given line of input. If not specified in the REPL options, this is an async wrapper + * for the JavaScript `eval()` function. + */ + readonly eval: REPLEval; + /** + * Specified in the REPL options, this is a value indicating whether the default + * `writer` function should include ANSI color styling to REPL output. + */ + readonly useColors: boolean; + /** + * Specified in the REPL options, this is a value indicating whether the default `eval` + * function will use the JavaScript `global` as the context as opposed to creating a new + * separate context for the REPL instance. + */ + readonly useGlobal: boolean; + /** + * Specified in the REPL options, this is a value indicating whether the default `writer` + * function should output the result of a command if it evaluates to `undefined`. + */ + readonly ignoreUndefined: boolean; + /** + * Specified in the REPL options, this is the function to invoke to format the output of + * each command before writing to `outputStream`. If not specified in the REPL options, + * this will be a wrapper for `util.inspect`. + */ + readonly writer: REPLWriter; + /** + * Specified in the REPL options, this is the function to use for custom Tab auto-completion. + */ + readonly completer: Completer | AsyncCompleter; + /** + * Specified in the REPL options, this is a flag that specifies whether the default `eval` + * function should execute all JavaScript commands in strict mode or default (sloppy) mode. + * Possible values are: + * - `repl.REPL_MODE_SLOPPY` - evaluates expressions in sloppy mode. + * - `repl.REPL_MODE_STRICT` - evaluates expressions in strict mode. This is equivalent to + * prefacing every repl statement with `'use strict'`. + */ + readonly replMode: typeof REPL_MODE_SLOPPY | typeof REPL_MODE_STRICT; + /** + * NOTE: According to the documentation: + * + * > Instances of `repl.REPLServer` are created using the `repl.start()` method and + * > _should not_ be created directly using the JavaScript `new` keyword. + * + * `REPLServer` cannot be subclassed due to implementation specifics in NodeJS. + * + * @see https://nodejs.org/dist/latest-v10.x/docs/api/repl.html#repl_class_replserver + */ + private constructor(); + /** + * The `replServer.defineCommand()` method is used to add new `.`\-prefixed commands + * to the REPL instance. Such commands are invoked by typing a `.` followed by the`keyword`. The `cmd` is either a `Function` or an `Object` with the following + * properties: + * + * The following example shows two new commands added to the REPL instance: + * + * ```js + * const repl = require('repl'); + * + * const replServer = repl.start({ prompt: '> ' }); + * replServer.defineCommand('sayhello', { + * help: 'Say hello', + * action(name) { + * this.clearBufferedCommand(); + * console.log(`Hello, ${name}!`); + * this.displayPrompt(); + * } + * }); + * replServer.defineCommand('saybye', function saybye() { + * console.log('Goodbye!'); + * this.close(); + * }); + * ``` + * + * The new commands can then be used from within the REPL instance: + * + * ```console + * > .sayhello Node.js User + * Hello, Node.js User! + * > .saybye + * Goodbye! + * ``` + * @since v0.3.0 + * @param keyword The command keyword (_without_ a leading `.` character). + * @param cmd The function to invoke when the command is processed. + */ + defineCommand(keyword: string, cmd: REPLCommandAction | REPLCommand): void; + /** + * The `replServer.displayPrompt()` method readies the REPL instance for input + * from the user, printing the configured `prompt` to a new line in the `output`and resuming the `input` to accept new input. + * + * When multi-line input is being entered, an ellipsis is printed rather than the + * 'prompt'. + * + * When `preserveCursor` is `true`, the cursor placement will not be reset to `0`. + * + * The `replServer.displayPrompt` method is primarily intended to be called from + * within the action function for commands registered using the`replServer.defineCommand()` method. + * @since v0.1.91 + */ + displayPrompt(preserveCursor?: boolean): void; + /** + * The `replServer.clearBufferedCommand()` method clears any command that has been + * buffered but not yet executed. This method is primarily intended to be + * called from within the action function for commands registered using the`replServer.defineCommand()` method. + * @since v9.0.0 + */ + clearBufferedCommand(): void; + /** + * Initializes a history log file for the REPL instance. When executing the + * Node.js binary and using the command-line REPL, a history file is initialized + * by default. However, this is not the case when creating a REPL + * programmatically. Use this method to initialize a history log file when working + * with REPL instances programmatically. + * @since v11.10.0 + * @param historyPath the path to the history file + * @param callback called when history writes are ready or upon error + */ + setupHistory(path: string, callback: (err: Error | null, repl: this) => void): void; + /** + * events.EventEmitter + * 1. close - inherited from `readline.Interface` + * 2. line - inherited from `readline.Interface` + * 3. pause - inherited from `readline.Interface` + * 4. resume - inherited from `readline.Interface` + * 5. SIGCONT - inherited from `readline.Interface` + * 6. SIGINT - inherited from `readline.Interface` + * 7. SIGTSTP - inherited from `readline.Interface` + * 8. exit + * 9. reset + */ + addListener(event: string, listener: (...args: any[]) => void): this; + addListener(event: 'close', listener: () => void): this; + addListener(event: 'line', listener: (input: string) => void): this; + addListener(event: 'pause', listener: () => void): this; + addListener(event: 'resume', listener: () => void): this; + addListener(event: 'SIGCONT', listener: () => void): this; + addListener(event: 'SIGINT', listener: () => void): this; + addListener(event: 'SIGTSTP', listener: () => void): this; + addListener(event: 'exit', listener: () => void): this; + addListener(event: 'reset', listener: (context: Context) => void): this; + emit(event: string | symbol, ...args: any[]): boolean; + emit(event: 'close'): boolean; + emit(event: 'line', input: string): boolean; + emit(event: 'pause'): boolean; + emit(event: 'resume'): boolean; + emit(event: 'SIGCONT'): boolean; + emit(event: 'SIGINT'): boolean; + emit(event: 'SIGTSTP'): boolean; + emit(event: 'exit'): boolean; + emit(event: 'reset', context: Context): boolean; + on(event: string, listener: (...args: any[]) => void): this; + on(event: 'close', listener: () => void): this; + on(event: 'line', listener: (input: string) => void): this; + on(event: 'pause', listener: () => void): this; + on(event: 'resume', listener: () => void): this; + on(event: 'SIGCONT', listener: () => void): this; + on(event: 'SIGINT', listener: () => void): this; + on(event: 'SIGTSTP', listener: () => void): this; + on(event: 'exit', listener: () => void): this; + on(event: 'reset', listener: (context: Context) => void): this; + once(event: string, listener: (...args: any[]) => void): this; + once(event: 'close', listener: () => void): this; + once(event: 'line', listener: (input: string) => void): this; + once(event: 'pause', listener: () => void): this; + once(event: 'resume', listener: () => void): this; + once(event: 'SIGCONT', listener: () => void): this; + once(event: 'SIGINT', listener: () => void): this; + once(event: 'SIGTSTP', listener: () => void): this; + once(event: 'exit', listener: () => void): this; + once(event: 'reset', listener: (context: Context) => void): this; + prependListener(event: string, listener: (...args: any[]) => void): this; + prependListener(event: 'close', listener: () => void): this; + prependListener(event: 'line', listener: (input: string) => void): this; + prependListener(event: 'pause', listener: () => void): this; + prependListener(event: 'resume', listener: () => void): this; + prependListener(event: 'SIGCONT', listener: () => void): this; + prependListener(event: 'SIGINT', listener: () => void): this; + prependListener(event: 'SIGTSTP', listener: () => void): this; + prependListener(event: 'exit', listener: () => void): this; + prependListener(event: 'reset', listener: (context: Context) => void): this; + prependOnceListener(event: string, listener: (...args: any[]) => void): this; + prependOnceListener(event: 'close', listener: () => void): this; + prependOnceListener(event: 'line', listener: (input: string) => void): this; + prependOnceListener(event: 'pause', listener: () => void): this; + prependOnceListener(event: 'resume', listener: () => void): this; + prependOnceListener(event: 'SIGCONT', listener: () => void): this; + prependOnceListener(event: 'SIGINT', listener: () => void): this; + prependOnceListener(event: 'SIGTSTP', listener: () => void): this; + prependOnceListener(event: 'exit', listener: () => void): this; + prependOnceListener(event: 'reset', listener: (context: Context) => void): this; + } + /** + * A flag passed in the REPL options. Evaluates expressions in sloppy mode. + */ + const REPL_MODE_SLOPPY: unique symbol; + /** + * A flag passed in the REPL options. Evaluates expressions in strict mode. + * This is equivalent to prefacing every repl statement with `'use strict'`. + */ + const REPL_MODE_STRICT: unique symbol; + /** + * The `repl.start()` method creates and starts a {@link REPLServer} instance. + * + * If `options` is a string, then it specifies the input prompt: + * + * ```js + * const repl = require('repl'); + * + * // a Unix style prompt + * repl.start('$ '); + * ``` + * @since v0.1.91 + */ + function start(options?: string | ReplOptions): REPLServer; + /** + * Indicates a recoverable error that a `REPLServer` can use to support multi-line input. + * + * @see https://nodejs.org/dist/latest-v10.x/docs/api/repl.html#repl_recoverable_errors + */ + class Recoverable extends SyntaxError { + err: Error; + constructor(err: Error); + } +} +declare module 'node:repl' { + export * from 'repl'; +} diff --git a/node_modules/@types/node/stream.d.ts b/node_modules/@types/node/stream.d.ts new file mode 100644 index 000000000..9f9f34028 --- /dev/null +++ b/node_modules/@types/node/stream.d.ts @@ -0,0 +1,1340 @@ +/** + * A stream is an abstract interface for working with streaming data in Node.js. + * The `stream` module provides an API for implementing the stream interface. + * + * There are many stream objects provided by Node.js. For instance, a `request to an HTTP server` and `process.stdout` are both stream instances. + * + * Streams can be readable, writable, or both. All streams are instances of `EventEmitter`. + * + * To access the `stream` module: + * + * ```js + * const stream = require('stream'); + * ``` + * + * The `stream` module is useful for creating new types of stream instances. It is + * usually not necessary to use the `stream` module to consume streams. + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/stream.js) + */ +declare module 'stream' { + import { EventEmitter, Abortable } from 'node:events'; + import { Blob } from "node:buffer"; + import * as streamPromises from 'node:stream/promises'; + import * as streamConsumers from 'node:stream/consumers'; + import * as streamWeb from 'node:stream/web'; + class internal extends EventEmitter { + pipe( + destination: T, + options?: { + end?: boolean | undefined; + } + ): T; + } + namespace internal { + class Stream extends internal { + constructor(opts?: ReadableOptions); + } + interface StreamOptions extends Abortable { + emitClose?: boolean | undefined; + highWaterMark?: number | undefined; + objectMode?: boolean | undefined; + construct?(this: T, callback: (error?: Error | null) => void): void; + destroy?(this: T, error: Error | null, callback: (error: Error | null) => void): void; + autoDestroy?: boolean | undefined; + } + interface ReadableOptions extends StreamOptions { + encoding?: BufferEncoding | undefined; + read?(this: Readable, size: number): void; + } + /** + * @since v0.9.4 + */ + class Readable extends Stream implements NodeJS.ReadableStream { + /** + * A utility method for creating Readable Streams out of iterators. + */ + static from(iterable: Iterable | AsyncIterable, options?: ReadableOptions): Readable; + /** + * A utility method for creating a `Readable` from a web `ReadableStream`. + * @since v17.0.0 + * @experimental + */ + static fromWeb(readableStream: streamWeb.ReadableStream, options?: Pick): Readable; + /** + * Returns whether the stream has been read from or cancelled. + * @since v16.8.0 + */ + static isDisturbed(stream: Readable | NodeJS.ReadableStream): boolean; + /** + * A utility method for creating a web `ReadableStream` from a `Readable`. + * @since v17.0.0 + * @experimental + */ + static toWeb(streamReadable: Readable): streamWeb.ReadableStream; + /** + * Returns whether the stream was destroyed or errored before emitting `'end'`. + * @since v16.8.0 + * @experimental + */ + readonly readableAborted: boolean; + /** + * Is `true` if it is safe to call `readable.read()`, which means + * the stream has not been destroyed or emitted `'error'` or `'end'`. + * @since v11.4.0 + */ + readable: boolean; + /** + * Returns whether `'data'` has been emitted. + * @since v16.7.0, v14.18.0 + * @experimental + */ + readonly readableDidRead: boolean; + /** + * Getter for the property `encoding` of a given `Readable` stream. The `encoding`property can be set using the `readable.setEncoding()` method. + * @since v12.7.0 + */ + readonly readableEncoding: BufferEncoding | null; + /** + * Becomes `true` when `'end'` event is emitted. + * @since v12.9.0 + */ + readonly readableEnded: boolean; + /** + * This property reflects the current state of a `Readable` stream as described + * in the `Three states` section. + * @since v9.4.0 + */ + readonly readableFlowing: boolean | null; + /** + * Returns the value of `highWaterMark` passed when creating this `Readable`. + * @since v9.3.0 + */ + readonly readableHighWaterMark: number; + /** + * This property contains the number of bytes (or objects) in the queue + * ready to be read. The value provides introspection data regarding + * the status of the `highWaterMark`. + * @since v9.4.0 + */ + readonly readableLength: number; + /** + * Getter for the property `objectMode` of a given `Readable` stream. + * @since v12.3.0 + */ + readonly readableObjectMode: boolean; + /** + * Is `true` after `readable.destroy()` has been called. + * @since v18.0.0 + */ + destroyed: boolean; + /** + * Is true after 'close' has been emitted. + * @since v8.0.0 + */ + readonly closed: boolean; + /** + * Returns error if the stream has been destroyed with an error. + * @since v18.0.0 + */ + readonly errored: Error | null; + constructor(opts?: ReadableOptions); + _construct?(callback: (error?: Error | null) => void): void; + _read(size: number): void; + /** + * The `readable.read()` method reads data out of the internal buffer and + * returns it. If no data is available to be read, `null` is returned. By default, + * the data is returned as a `Buffer` object unless an encoding has been + * specified using the `readable.setEncoding()` method or the stream is operating + * in object mode. + * + * The optional `size` argument specifies a specific number of bytes to read. If`size` bytes are not available to be read, `null` will be returned _unless_the stream has ended, in which + * case all of the data remaining in the internal + * buffer will be returned. + * + * If the `size` argument is not specified, all of the data contained in the + * internal buffer will be returned. + * + * The `size` argument must be less than or equal to 1 GiB. + * + * The `readable.read()` method should only be called on `Readable` streams + * operating in paused mode. In flowing mode, `readable.read()` is called + * automatically until the internal buffer is fully drained. + * + * ```js + * const readable = getReadableStreamSomehow(); + * + * // 'readable' may be triggered multiple times as data is buffered in + * readable.on('readable', () => { + * let chunk; + * console.log('Stream is readable (new data received in buffer)'); + * // Use a loop to make sure we read all currently available data + * while (null !== (chunk = readable.read())) { + * console.log(`Read ${chunk.length} bytes of data...`); + * } + * }); + * + * // 'end' will be triggered once when there is no more data available + * readable.on('end', () => { + * console.log('Reached end of stream.'); + * }); + * ``` + * + * Each call to `readable.read()` returns a chunk of data, or `null`. The chunks + * are not concatenated. A `while` loop is necessary to consume all data + * currently in the buffer. When reading a large file `.read()` may return `null`, + * having consumed all buffered content so far, but there is still more data to + * come not yet buffered. In this case a new `'readable'` event will be emitted + * when there is more data in the buffer. Finally the `'end'` event will be + * emitted when there is no more data to come. + * + * Therefore to read a file's whole contents from a `readable`, it is necessary + * to collect chunks across multiple `'readable'` events: + * + * ```js + * const chunks = []; + * + * readable.on('readable', () => { + * let chunk; + * while (null !== (chunk = readable.read())) { + * chunks.push(chunk); + * } + * }); + * + * readable.on('end', () => { + * const content = chunks.join(''); + * }); + * ``` + * + * A `Readable` stream in object mode will always return a single item from + * a call to `readable.read(size)`, regardless of the value of the`size` argument. + * + * If the `readable.read()` method returns a chunk of data, a `'data'` event will + * also be emitted. + * + * Calling {@link read} after the `'end'` event has + * been emitted will return `null`. No runtime error will be raised. + * @since v0.9.4 + * @param size Optional argument to specify how much data to read. + */ + read(size?: number): any; + /** + * The `readable.setEncoding()` method sets the character encoding for + * data read from the `Readable` stream. + * + * By default, no encoding is assigned and stream data will be returned as`Buffer` objects. Setting an encoding causes the stream data + * to be returned as strings of the specified encoding rather than as `Buffer`objects. For instance, calling `readable.setEncoding('utf8')` will cause the + * output data to be interpreted as UTF-8 data, and passed as strings. Calling`readable.setEncoding('hex')` will cause the data to be encoded in hexadecimal + * string format. + * + * The `Readable` stream will properly handle multi-byte characters delivered + * through the stream that would otherwise become improperly decoded if simply + * pulled from the stream as `Buffer` objects. + * + * ```js + * const readable = getReadableStreamSomehow(); + * readable.setEncoding('utf8'); + * readable.on('data', (chunk) => { + * assert.equal(typeof chunk, 'string'); + * console.log('Got %d characters of string data:', chunk.length); + * }); + * ``` + * @since v0.9.4 + * @param encoding The encoding to use. + */ + setEncoding(encoding: BufferEncoding): this; + /** + * The `readable.pause()` method will cause a stream in flowing mode to stop + * emitting `'data'` events, switching out of flowing mode. Any data that + * becomes available will remain in the internal buffer. + * + * ```js + * const readable = getReadableStreamSomehow(); + * readable.on('data', (chunk) => { + * console.log(`Received ${chunk.length} bytes of data.`); + * readable.pause(); + * console.log('There will be no additional data for 1 second.'); + * setTimeout(() => { + * console.log('Now data will start flowing again.'); + * readable.resume(); + * }, 1000); + * }); + * ``` + * + * The `readable.pause()` method has no effect if there is a `'readable'`event listener. + * @since v0.9.4 + */ + pause(): this; + /** + * The `readable.resume()` method causes an explicitly paused `Readable` stream to + * resume emitting `'data'` events, switching the stream into flowing mode. + * + * The `readable.resume()` method can be used to fully consume the data from a + * stream without actually processing any of that data: + * + * ```js + * getReadableStreamSomehow() + * .resume() + * .on('end', () => { + * console.log('Reached the end, but did not read anything.'); + * }); + * ``` + * + * The `readable.resume()` method has no effect if there is a `'readable'`event listener. + * @since v0.9.4 + */ + resume(): this; + /** + * The `readable.isPaused()` method returns the current operating state of the`Readable`. This is used primarily by the mechanism that underlies the`readable.pipe()` method. In most + * typical cases, there will be no reason to + * use this method directly. + * + * ```js + * const readable = new stream.Readable(); + * + * readable.isPaused(); // === false + * readable.pause(); + * readable.isPaused(); // === true + * readable.resume(); + * readable.isPaused(); // === false + * ``` + * @since v0.11.14 + */ + isPaused(): boolean; + /** + * The `readable.unpipe()` method detaches a `Writable` stream previously attached + * using the {@link pipe} method. + * + * If the `destination` is not specified, then _all_ pipes are detached. + * + * If the `destination` is specified, but no pipe is set up for it, then + * the method does nothing. + * + * ```js + * const fs = require('fs'); + * const readable = getReadableStreamSomehow(); + * const writable = fs.createWriteStream('file.txt'); + * // All the data from readable goes into 'file.txt', + * // but only for the first second. + * readable.pipe(writable); + * setTimeout(() => { + * console.log('Stop writing to file.txt.'); + * readable.unpipe(writable); + * console.log('Manually close the file stream.'); + * writable.end(); + * }, 1000); + * ``` + * @since v0.9.4 + * @param destination Optional specific stream to unpipe + */ + unpipe(destination?: NodeJS.WritableStream): this; + /** + * Passing `chunk` as `null` signals the end of the stream (EOF) and behaves the + * same as `readable.push(null)`, after which no more data can be written. The EOF + * signal is put at the end of the buffer and any buffered data will still be + * flushed. + * + * The `readable.unshift()` method pushes a chunk of data back into the internal + * buffer. This is useful in certain situations where a stream is being consumed by + * code that needs to "un-consume" some amount of data that it has optimistically + * pulled out of the source, so that the data can be passed on to some other party. + * + * The `stream.unshift(chunk)` method cannot be called after the `'end'` event + * has been emitted or a runtime error will be thrown. + * + * Developers using `stream.unshift()` often should consider switching to + * use of a `Transform` stream instead. See the `API for stream implementers` section for more information. + * + * ```js + * // Pull off a header delimited by \n\n. + * // Use unshift() if we get too much. + * // Call the callback with (error, header, stream). + * const { StringDecoder } = require('string_decoder'); + * function parseHeader(stream, callback) { + * stream.on('error', callback); + * stream.on('readable', onReadable); + * const decoder = new StringDecoder('utf8'); + * let header = ''; + * function onReadable() { + * let chunk; + * while (null !== (chunk = stream.read())) { + * const str = decoder.write(chunk); + * if (str.includes('\n\n')) { + * // Found the header boundary. + * const split = str.split(/\n\n/); + * header += split.shift(); + * const remaining = split.join('\n\n'); + * const buf = Buffer.from(remaining, 'utf8'); + * stream.removeListener('error', callback); + * // Remove the 'readable' listener before unshifting. + * stream.removeListener('readable', onReadable); + * if (buf.length) + * stream.unshift(buf); + * // Now the body of the message can be read from the stream. + * callback(null, header, stream); + * return; + * } + * // Still reading the header. + * header += str; + * } + * } + * } + * ``` + * + * Unlike {@link push}, `stream.unshift(chunk)` will not + * end the reading process by resetting the internal reading state of the stream. + * This can cause unexpected results if `readable.unshift()` is called during a + * read (i.e. from within a {@link _read} implementation on a + * custom stream). Following the call to `readable.unshift()` with an immediate {@link push} will reset the reading state appropriately, + * however it is best to simply avoid calling `readable.unshift()` while in the + * process of performing a read. + * @since v0.9.11 + * @param chunk Chunk of data to unshift onto the read queue. For streams not operating in object mode, `chunk` must be a string, `Buffer`, `Uint8Array` or `null`. For object mode + * streams, `chunk` may be any JavaScript value. + * @param encoding Encoding of string chunks. Must be a valid `Buffer` encoding, such as `'utf8'` or `'ascii'`. + */ + unshift(chunk: any, encoding?: BufferEncoding): void; + /** + * Prior to Node.js 0.10, streams did not implement the entire `stream` module API + * as it is currently defined. (See `Compatibility` for more information.) + * + * When using an older Node.js library that emits `'data'` events and has a {@link pause} method that is advisory only, the`readable.wrap()` method can be used to create a `Readable` + * stream that uses + * the old stream as its data source. + * + * It will rarely be necessary to use `readable.wrap()` but the method has been + * provided as a convenience for interacting with older Node.js applications and + * libraries. + * + * ```js + * const { OldReader } = require('./old-api-module.js'); + * const { Readable } = require('stream'); + * const oreader = new OldReader(); + * const myReader = new Readable().wrap(oreader); + * + * myReader.on('readable', () => { + * myReader.read(); // etc. + * }); + * ``` + * @since v0.9.4 + * @param stream An "old style" readable stream + */ + wrap(stream: NodeJS.ReadableStream): this; + push(chunk: any, encoding?: BufferEncoding): boolean; + _destroy(error: Error | null, callback: (error?: Error | null) => void): void; + /** + * Destroy the stream. Optionally emit an `'error'` event, and emit a `'close'`event (unless `emitClose` is set to `false`). After this call, the readable + * stream will release any internal resources and subsequent calls to `push()`will be ignored. + * + * Once `destroy()` has been called any further calls will be a no-op and no + * further errors except from `_destroy()` may be emitted as `'error'`. + * + * Implementors should not override this method, but instead implement `readable._destroy()`. + * @since v8.0.0 + * @param error Error which will be passed as payload in `'error'` event + */ + destroy(error?: Error): this; + /** + * Event emitter + * The defined events on documents including: + * 1. close + * 2. data + * 3. end + * 4. error + * 5. pause + * 6. readable + * 7. resume + */ + addListener(event: 'close', listener: () => void): this; + addListener(event: 'data', listener: (chunk: any) => void): this; + addListener(event: 'end', listener: () => void): this; + addListener(event: 'error', listener: (err: Error) => void): this; + addListener(event: 'pause', listener: () => void): this; + addListener(event: 'readable', listener: () => void): this; + addListener(event: 'resume', listener: () => void): this; + addListener(event: string | symbol, listener: (...args: any[]) => void): this; + emit(event: 'close'): boolean; + emit(event: 'data', chunk: any): boolean; + emit(event: 'end'): boolean; + emit(event: 'error', err: Error): boolean; + emit(event: 'pause'): boolean; + emit(event: 'readable'): boolean; + emit(event: 'resume'): boolean; + emit(event: string | symbol, ...args: any[]): boolean; + on(event: 'close', listener: () => void): this; + on(event: 'data', listener: (chunk: any) => void): this; + on(event: 'end', listener: () => void): this; + on(event: 'error', listener: (err: Error) => void): this; + on(event: 'pause', listener: () => void): this; + on(event: 'readable', listener: () => void): this; + on(event: 'resume', listener: () => void): this; + on(event: string | symbol, listener: (...args: any[]) => void): this; + once(event: 'close', listener: () => void): this; + once(event: 'data', listener: (chunk: any) => void): this; + once(event: 'end', listener: () => void): this; + once(event: 'error', listener: (err: Error) => void): this; + once(event: 'pause', listener: () => void): this; + once(event: 'readable', listener: () => void): this; + once(event: 'resume', listener: () => void): this; + once(event: string | symbol, listener: (...args: any[]) => void): this; + prependListener(event: 'close', listener: () => void): this; + prependListener(event: 'data', listener: (chunk: any) => void): this; + prependListener(event: 'end', listener: () => void): this; + prependListener(event: 'error', listener: (err: Error) => void): this; + prependListener(event: 'pause', listener: () => void): this; + prependListener(event: 'readable', listener: () => void): this; + prependListener(event: 'resume', listener: () => void): this; + prependListener(event: string | symbol, listener: (...args: any[]) => void): this; + prependOnceListener(event: 'close', listener: () => void): this; + prependOnceListener(event: 'data', listener: (chunk: any) => void): this; + prependOnceListener(event: 'end', listener: () => void): this; + prependOnceListener(event: 'error', listener: (err: Error) => void): this; + prependOnceListener(event: 'pause', listener: () => void): this; + prependOnceListener(event: 'readable', listener: () => void): this; + prependOnceListener(event: 'resume', listener: () => void): this; + prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this; + removeListener(event: 'close', listener: () => void): this; + removeListener(event: 'data', listener: (chunk: any) => void): this; + removeListener(event: 'end', listener: () => void): this; + removeListener(event: 'error', listener: (err: Error) => void): this; + removeListener(event: 'pause', listener: () => void): this; + removeListener(event: 'readable', listener: () => void): this; + removeListener(event: 'resume', listener: () => void): this; + removeListener(event: string | symbol, listener: (...args: any[]) => void): this; + [Symbol.asyncIterator](): AsyncIterableIterator; + } + interface WritableOptions extends StreamOptions { + decodeStrings?: boolean | undefined; + defaultEncoding?: BufferEncoding | undefined; + write?(this: Writable, chunk: any, encoding: BufferEncoding, callback: (error?: Error | null) => void): void; + writev?( + this: Writable, + chunks: Array<{ + chunk: any; + encoding: BufferEncoding; + }>, + callback: (error?: Error | null) => void + ): void; + final?(this: Writable, callback: (error?: Error | null) => void): void; + } + /** + * @since v0.9.4 + */ + class Writable extends Stream implements NodeJS.WritableStream { + /** + * A utility method for creating a `Writable` from a web `WritableStream`. + * @since v17.0.0 + * @experimental + */ + static fromWeb(writableStream: streamWeb.WritableStream, options?: Pick): Writable; + /** + * A utility method for creating a web `WritableStream` from a `Writable`. + * @since v17.0.0 + * @experimental + */ + static toWeb(streamWritable: Writable): streamWeb.WritableStream; + /** + * Is `true` if it is safe to call `writable.write()`, which means + * the stream has not been destroyed, errored or ended. + * @since v11.4.0 + */ + readonly writable: boolean; + /** + * Is `true` after `writable.end()` has been called. This property + * does not indicate whether the data has been flushed, for this use `writable.writableFinished` instead. + * @since v12.9.0 + */ + readonly writableEnded: boolean; + /** + * Is set to `true` immediately before the `'finish'` event is emitted. + * @since v12.6.0 + */ + readonly writableFinished: boolean; + /** + * Return the value of `highWaterMark` passed when creating this `Writable`. + * @since v9.3.0 + */ + readonly writableHighWaterMark: number; + /** + * This property contains the number of bytes (or objects) in the queue + * ready to be written. The value provides introspection data regarding + * the status of the `highWaterMark`. + * @since v9.4.0 + */ + readonly writableLength: number; + /** + * Getter for the property `objectMode` of a given `Writable` stream. + * @since v12.3.0 + */ + readonly writableObjectMode: boolean; + /** + * Number of times `writable.uncork()` needs to be + * called in order to fully uncork the stream. + * @since v13.2.0, v12.16.0 + */ + readonly writableCorked: number; + /** + * Is `true` after `writable.destroy()` has been called. + * @since v8.0.0 + */ + destroyed: boolean; + /** + * Is true after 'close' has been emitted. + * @since v8.0.0 + */ + readonly closed: boolean; + /** + * Returns error if the stream has been destroyed with an error. + * @since v18.0.0 + */ + readonly errored: Error | null; + /** + * Is `true` if the stream's buffer has been full and stream will emit 'drain'. + * @since v15.2.0, v14.17.0 + */ + readonly writableNeedDrain: boolean; + constructor(opts?: WritableOptions); + _write(chunk: any, encoding: BufferEncoding, callback: (error?: Error | null) => void): void; + _writev?( + chunks: Array<{ + chunk: any; + encoding: BufferEncoding; + }>, + callback: (error?: Error | null) => void + ): void; + _construct?(callback: (error?: Error | null) => void): void; + _destroy(error: Error | null, callback: (error?: Error | null) => void): void; + _final(callback: (error?: Error | null) => void): void; + /** + * The `writable.write()` method writes some data to the stream, and calls the + * supplied `callback` once the data has been fully handled. If an error + * occurs, the `callback` will be called with the error as its + * first argument. The `callback` is called asynchronously and before `'error'` is + * emitted. + * + * The return value is `true` if the internal buffer is less than the`highWaterMark` configured when the stream was created after admitting `chunk`. + * If `false` is returned, further attempts to write data to the stream should + * stop until the `'drain'` event is emitted. + * + * While a stream is not draining, calls to `write()` will buffer `chunk`, and + * return false. Once all currently buffered chunks are drained (accepted for + * delivery by the operating system), the `'drain'` event will be emitted. + * Once `write()` returns false, do not write more chunks + * until the `'drain'` event is emitted. While calling `write()` on a stream that + * is not draining is allowed, Node.js will buffer all written chunks until + * maximum memory usage occurs, at which point it will abort unconditionally. + * Even before it aborts, high memory usage will cause poor garbage collector + * performance and high RSS (which is not typically released back to the system, + * even after the memory is no longer required). Since TCP sockets may never + * drain if the remote peer does not read the data, writing a socket that is + * not draining may lead to a remotely exploitable vulnerability. + * + * Writing data while the stream is not draining is particularly + * problematic for a `Transform`, because the `Transform` streams are paused + * by default until they are piped or a `'data'` or `'readable'` event handler + * is added. + * + * If the data to be written can be generated or fetched on demand, it is + * recommended to encapsulate the logic into a `Readable` and use {@link pipe}. However, if calling `write()` is preferred, it is + * possible to respect backpressure and avoid memory issues using the `'drain'` event: + * + * ```js + * function write(data, cb) { + * if (!stream.write(data)) { + * stream.once('drain', cb); + * } else { + * process.nextTick(cb); + * } + * } + * + * // Wait for cb to be called before doing any other write. + * write('hello', () => { + * console.log('Write completed, do more writes now.'); + * }); + * ``` + * + * A `Writable` stream in object mode will always ignore the `encoding` argument. + * @since v0.9.4 + * @param chunk Optional data to write. For streams not operating in object mode, `chunk` must be a string, `Buffer` or `Uint8Array`. For object mode streams, `chunk` may be any + * JavaScript value other than `null`. + * @param [encoding='utf8'] The encoding, if `chunk` is a string. + * @param callback Callback for when this chunk of data is flushed. + * @return `false` if the stream wishes for the calling code to wait for the `'drain'` event to be emitted before continuing to write additional data; otherwise `true`. + */ + write(chunk: any, callback?: (error: Error | null | undefined) => void): boolean; + write(chunk: any, encoding: BufferEncoding, callback?: (error: Error | null | undefined) => void): boolean; + /** + * The `writable.setDefaultEncoding()` method sets the default `encoding` for a `Writable` stream. + * @since v0.11.15 + * @param encoding The new default encoding + */ + setDefaultEncoding(encoding: BufferEncoding): this; + /** + * Calling the `writable.end()` method signals that no more data will be written + * to the `Writable`. The optional `chunk` and `encoding` arguments allow one + * final additional chunk of data to be written immediately before closing the + * stream. + * + * Calling the {@link write} method after calling {@link end} will raise an error. + * + * ```js + * // Write 'hello, ' and then end with 'world!'. + * const fs = require('fs'); + * const file = fs.createWriteStream('example.txt'); + * file.write('hello, '); + * file.end('world!'); + * // Writing more now is not allowed! + * ``` + * @since v0.9.4 + * @param chunk Optional data to write. For streams not operating in object mode, `chunk` must be a string, `Buffer` or `Uint8Array`. For object mode streams, `chunk` may be any + * JavaScript value other than `null`. + * @param encoding The encoding if `chunk` is a string + * @param callback Callback for when the stream is finished. + */ + end(cb?: () => void): this; + end(chunk: any, cb?: () => void): this; + end(chunk: any, encoding: BufferEncoding, cb?: () => void): this; + /** + * The `writable.cork()` method forces all written data to be buffered in memory. + * The buffered data will be flushed when either the {@link uncork} or {@link end} methods are called. + * + * The primary intent of `writable.cork()` is to accommodate a situation in which + * several small chunks are written to the stream in rapid succession. Instead of + * immediately forwarding them to the underlying destination, `writable.cork()`buffers all the chunks until `writable.uncork()` is called, which will pass them + * all to `writable._writev()`, if present. This prevents a head-of-line blocking + * situation where data is being buffered while waiting for the first small chunk + * to be processed. However, use of `writable.cork()` without implementing`writable._writev()` may have an adverse effect on throughput. + * + * See also: `writable.uncork()`, `writable._writev()`. + * @since v0.11.2 + */ + cork(): void; + /** + * The `writable.uncork()` method flushes all data buffered since {@link cork} was called. + * + * When using `writable.cork()` and `writable.uncork()` to manage the buffering + * of writes to a stream, defer calls to `writable.uncork()` using`process.nextTick()`. Doing so allows batching of all`writable.write()` calls that occur within a given Node.js event + * loop phase. + * + * ```js + * stream.cork(); + * stream.write('some '); + * stream.write('data '); + * process.nextTick(() => stream.uncork()); + * ``` + * + * If the `writable.cork()` method is called multiple times on a stream, the + * same number of calls to `writable.uncork()` must be called to flush the buffered + * data. + * + * ```js + * stream.cork(); + * stream.write('some '); + * stream.cork(); + * stream.write('data '); + * process.nextTick(() => { + * stream.uncork(); + * // The data will not be flushed until uncork() is called a second time. + * stream.uncork(); + * }); + * ``` + * + * See also: `writable.cork()`. + * @since v0.11.2 + */ + uncork(): void; + /** + * Destroy the stream. Optionally emit an `'error'` event, and emit a `'close'`event (unless `emitClose` is set to `false`). After this call, the writable + * stream has ended and subsequent calls to `write()` or `end()` will result in + * an `ERR_STREAM_DESTROYED` error. + * This is a destructive and immediate way to destroy a stream. Previous calls to`write()` may not have drained, and may trigger an `ERR_STREAM_DESTROYED` error. + * Use `end()` instead of destroy if data should flush before close, or wait for + * the `'drain'` event before destroying the stream. + * + * Once `destroy()` has been called any further calls will be a no-op and no + * further errors except from `_destroy()` may be emitted as `'error'`. + * + * Implementors should not override this method, + * but instead implement `writable._destroy()`. + * @since v8.0.0 + * @param error Optional, an error to emit with `'error'` event. + */ + destroy(error?: Error): this; + /** + * Event emitter + * The defined events on documents including: + * 1. close + * 2. drain + * 3. error + * 4. finish + * 5. pipe + * 6. unpipe + */ + addListener(event: 'close', listener: () => void): this; + addListener(event: 'drain', listener: () => void): this; + addListener(event: 'error', listener: (err: Error) => void): this; + addListener(event: 'finish', listener: () => void): this; + addListener(event: 'pipe', listener: (src: Readable) => void): this; + addListener(event: 'unpipe', listener: (src: Readable) => void): this; + addListener(event: string | symbol, listener: (...args: any[]) => void): this; + emit(event: 'close'): boolean; + emit(event: 'drain'): boolean; + emit(event: 'error', err: Error): boolean; + emit(event: 'finish'): boolean; + emit(event: 'pipe', src: Readable): boolean; + emit(event: 'unpipe', src: Readable): boolean; + emit(event: string | symbol, ...args: any[]): boolean; + on(event: 'close', listener: () => void): this; + on(event: 'drain', listener: () => void): this; + on(event: 'error', listener: (err: Error) => void): this; + on(event: 'finish', listener: () => void): this; + on(event: 'pipe', listener: (src: Readable) => void): this; + on(event: 'unpipe', listener: (src: Readable) => void): this; + on(event: string | symbol, listener: (...args: any[]) => void): this; + once(event: 'close', listener: () => void): this; + once(event: 'drain', listener: () => void): this; + once(event: 'error', listener: (err: Error) => void): this; + once(event: 'finish', listener: () => void): this; + once(event: 'pipe', listener: (src: Readable) => void): this; + once(event: 'unpipe', listener: (src: Readable) => void): this; + once(event: string | symbol, listener: (...args: any[]) => void): this; + prependListener(event: 'close', listener: () => void): this; + prependListener(event: 'drain', listener: () => void): this; + prependListener(event: 'error', listener: (err: Error) => void): this; + prependListener(event: 'finish', listener: () => void): this; + prependListener(event: 'pipe', listener: (src: Readable) => void): this; + prependListener(event: 'unpipe', listener: (src: Readable) => void): this; + prependListener(event: string | symbol, listener: (...args: any[]) => void): this; + prependOnceListener(event: 'close', listener: () => void): this; + prependOnceListener(event: 'drain', listener: () => void): this; + prependOnceListener(event: 'error', listener: (err: Error) => void): this; + prependOnceListener(event: 'finish', listener: () => void): this; + prependOnceListener(event: 'pipe', listener: (src: Readable) => void): this; + prependOnceListener(event: 'unpipe', listener: (src: Readable) => void): this; + prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this; + removeListener(event: 'close', listener: () => void): this; + removeListener(event: 'drain', listener: () => void): this; + removeListener(event: 'error', listener: (err: Error) => void): this; + removeListener(event: 'finish', listener: () => void): this; + removeListener(event: 'pipe', listener: (src: Readable) => void): this; + removeListener(event: 'unpipe', listener: (src: Readable) => void): this; + removeListener(event: string | symbol, listener: (...args: any[]) => void): this; + } + interface DuplexOptions extends ReadableOptions, WritableOptions { + allowHalfOpen?: boolean | undefined; + readableObjectMode?: boolean | undefined; + writableObjectMode?: boolean | undefined; + readableHighWaterMark?: number | undefined; + writableHighWaterMark?: number | undefined; + writableCorked?: number | undefined; + construct?(this: Duplex, callback: (error?: Error | null) => void): void; + read?(this: Duplex, size: number): void; + write?(this: Duplex, chunk: any, encoding: BufferEncoding, callback: (error?: Error | null) => void): void; + writev?( + this: Duplex, + chunks: Array<{ + chunk: any; + encoding: BufferEncoding; + }>, + callback: (error?: Error | null) => void + ): void; + final?(this: Duplex, callback: (error?: Error | null) => void): void; + destroy?(this: Duplex, error: Error | null, callback: (error: Error | null) => void): void; + } + /** + * Duplex streams are streams that implement both the `Readable` and `Writable` interfaces. + * + * Examples of `Duplex` streams include: + * + * * `TCP sockets` + * * `zlib streams` + * * `crypto streams` + * @since v0.9.4 + */ + class Duplex extends Readable implements Writable { + readonly writable: boolean; + readonly writableEnded: boolean; + readonly writableFinished: boolean; + readonly writableHighWaterMark: number; + readonly writableLength: number; + readonly writableObjectMode: boolean; + readonly writableCorked: number; + readonly writableNeedDrain: boolean; + readonly closed: boolean; + readonly errored: Error | null; + /** + * If `false` then the stream will automatically end the writable side when the + * readable side ends. Set initially by the `allowHalfOpen` constructor option, + * which defaults to `false`. + * + * This can be changed manually to change the half-open behavior of an existing`Duplex` stream instance, but must be changed before the `'end'` event is + * emitted. + * @since v0.9.4 + */ + allowHalfOpen: boolean; + constructor(opts?: DuplexOptions); + /** + * A utility method for creating duplex streams. + * + * - `Stream` converts writable stream into writable `Duplex` and readable stream + * to `Duplex`. + * - `Blob` converts into readable `Duplex`. + * - `string` converts into readable `Duplex`. + * - `ArrayBuffer` converts into readable `Duplex`. + * - `AsyncIterable` converts into a readable `Duplex`. Cannot yield `null`. + * - `AsyncGeneratorFunction` converts into a readable/writable transform + * `Duplex`. Must take a source `AsyncIterable` as first parameter. Cannot yield + * `null`. + * - `AsyncFunction` converts into a writable `Duplex`. Must return + * either `null` or `undefined` + * - `Object ({ writable, readable })` converts `readable` and + * `writable` into `Stream` and then combines them into `Duplex` where the + * `Duplex` will write to the `writable` and read from the `readable`. + * - `Promise` converts into readable `Duplex`. Value `null` is ignored. + * + * @since v16.8.0 + */ + static from(src: Stream | Blob | ArrayBuffer | string | Iterable | AsyncIterable | AsyncGeneratorFunction | Promise | Object): Duplex; + _write(chunk: any, encoding: BufferEncoding, callback: (error?: Error | null) => void): void; + _writev?( + chunks: Array<{ + chunk: any; + encoding: BufferEncoding; + }>, + callback: (error?: Error | null) => void + ): void; + _destroy(error: Error | null, callback: (error: Error | null) => void): void; + _final(callback: (error?: Error | null) => void): void; + write(chunk: any, encoding?: BufferEncoding, cb?: (error: Error | null | undefined) => void): boolean; + write(chunk: any, cb?: (error: Error | null | undefined) => void): boolean; + setDefaultEncoding(encoding: BufferEncoding): this; + end(cb?: () => void): this; + end(chunk: any, cb?: () => void): this; + end(chunk: any, encoding?: BufferEncoding, cb?: () => void): this; + cork(): void; + uncork(): void; + } + type TransformCallback = (error?: Error | null, data?: any) => void; + interface TransformOptions extends DuplexOptions { + construct?(this: Transform, callback: (error?: Error | null) => void): void; + read?(this: Transform, size: number): void; + write?(this: Transform, chunk: any, encoding: BufferEncoding, callback: (error?: Error | null) => void): void; + writev?( + this: Transform, + chunks: Array<{ + chunk: any; + encoding: BufferEncoding; + }>, + callback: (error?: Error | null) => void + ): void; + final?(this: Transform, callback: (error?: Error | null) => void): void; + destroy?(this: Transform, error: Error | null, callback: (error: Error | null) => void): void; + transform?(this: Transform, chunk: any, encoding: BufferEncoding, callback: TransformCallback): void; + flush?(this: Transform, callback: TransformCallback): void; + } + /** + * Transform streams are `Duplex` streams where the output is in some way + * related to the input. Like all `Duplex` streams, `Transform` streams + * implement both the `Readable` and `Writable` interfaces. + * + * Examples of `Transform` streams include: + * + * * `zlib streams` + * * `crypto streams` + * @since v0.9.4 + */ + class Transform extends Duplex { + constructor(opts?: TransformOptions); + _transform(chunk: any, encoding: BufferEncoding, callback: TransformCallback): void; + _flush(callback: TransformCallback): void; + } + /** + * The `stream.PassThrough` class is a trivial implementation of a `Transform` stream that simply passes the input bytes across to the output. Its purpose is + * primarily for examples and testing, but there are some use cases where`stream.PassThrough` is useful as a building block for novel sorts of streams. + */ + class PassThrough extends Transform {} + /** + * Attaches an AbortSignal to a readable or writeable stream. This lets code + * control stream destruction using an `AbortController`. + * + * Calling `abort` on the `AbortController` corresponding to the passed`AbortSignal` will behave the same way as calling `.destroy(new AbortError())`on the stream. + * + * ```js + * const fs = require('fs'); + * + * const controller = new AbortController(); + * const read = addAbortSignal( + * controller.signal, + * fs.createReadStream(('object.json')) + * ); + * // Later, abort the operation closing the stream + * controller.abort(); + * ``` + * + * Or using an `AbortSignal` with a readable stream as an async iterable: + * + * ```js + * const controller = new AbortController(); + * setTimeout(() => controller.abort(), 10_000); // set a timeout + * const stream = addAbortSignal( + * controller.signal, + * fs.createReadStream(('object.json')) + * ); + * (async () => { + * try { + * for await (const chunk of stream) { + * await process(chunk); + * } + * } catch (e) { + * if (e.name === 'AbortError') { + * // The operation was cancelled + * } else { + * throw e; + * } + * } + * })(); + * ``` + * @since v15.4.0 + * @param signal A signal representing possible cancellation + * @param stream a stream to attach a signal to + */ + function addAbortSignal(signal: AbortSignal, stream: T): T; + interface FinishedOptions extends Abortable { + error?: boolean | undefined; + readable?: boolean | undefined; + writable?: boolean | undefined; + } + /** + * A function to get notified when a stream is no longer readable, writable + * or has experienced an error or a premature close event. + * + * ```js + * const { finished } = require('stream'); + * + * const rs = fs.createReadStream('archive.tar'); + * + * finished(rs, (err) => { + * if (err) { + * console.error('Stream failed.', err); + * } else { + * console.log('Stream is done reading.'); + * } + * }); + * + * rs.resume(); // Drain the stream. + * ``` + * + * Especially useful in error handling scenarios where a stream is destroyed + * prematurely (like an aborted HTTP request), and will not emit `'end'`or `'finish'`. + * + * The `finished` API provides promise version: + * + * ```js + * const { finished } = require('stream/promises'); + * + * const rs = fs.createReadStream('archive.tar'); + * + * async function run() { + * await finished(rs); + * console.log('Stream is done reading.'); + * } + * + * run().catch(console.error); + * rs.resume(); // Drain the stream. + * ``` + * + * `stream.finished()` leaves dangling event listeners (in particular`'error'`, `'end'`, `'finish'` and `'close'`) after `callback` has been + * invoked. The reason for this is so that unexpected `'error'` events (due to + * incorrect stream implementations) do not cause unexpected crashes. + * If this is unwanted behavior then the returned cleanup function needs to be + * invoked in the callback: + * + * ```js + * const cleanup = finished(rs, (err) => { + * cleanup(); + * // ... + * }); + * ``` + * @since v10.0.0 + * @param stream A readable and/or writable stream. + * @param callback A callback function that takes an optional error argument. + * @return A cleanup function which removes all registered listeners. + */ + function finished(stream: NodeJS.ReadableStream | NodeJS.WritableStream | NodeJS.ReadWriteStream, options: FinishedOptions, callback: (err?: NodeJS.ErrnoException | null) => void): () => void; + function finished(stream: NodeJS.ReadableStream | NodeJS.WritableStream | NodeJS.ReadWriteStream, callback: (err?: NodeJS.ErrnoException | null) => void): () => void; + namespace finished { + function __promisify__(stream: NodeJS.ReadableStream | NodeJS.WritableStream | NodeJS.ReadWriteStream, options?: FinishedOptions): Promise; + } + type PipelineSourceFunction = () => Iterable | AsyncIterable; + type PipelineSource = Iterable | AsyncIterable | NodeJS.ReadableStream | PipelineSourceFunction; + type PipelineTransform, U> = + | NodeJS.ReadWriteStream + | ((source: S extends (...args: any[]) => Iterable | AsyncIterable ? AsyncIterable : S) => AsyncIterable); + type PipelineTransformSource = PipelineSource | PipelineTransform; + type PipelineDestinationIterableFunction = (source: AsyncIterable) => AsyncIterable; + type PipelineDestinationPromiseFunction = (source: AsyncIterable) => Promise

; + type PipelineDestination, P> = S extends PipelineTransformSource + ? NodeJS.WritableStream | PipelineDestinationIterableFunction | PipelineDestinationPromiseFunction + : never; + type PipelineCallback> = S extends PipelineDestinationPromiseFunction + ? (err: NodeJS.ErrnoException | null, value: P) => void + : (err: NodeJS.ErrnoException | null) => void; + type PipelinePromise> = S extends PipelineDestinationPromiseFunction ? Promise

: Promise; + interface PipelineOptions { + signal: AbortSignal; + } + /** + * A module method to pipe between streams and generators forwarding errors and + * properly cleaning up and provide a callback when the pipeline is complete. + * + * ```js + * const { pipeline } = require('stream'); + * const fs = require('fs'); + * const zlib = require('zlib'); + * + * // Use the pipeline API to easily pipe a series of streams + * // together and get notified when the pipeline is fully done. + * + * // A pipeline to gzip a potentially huge tar file efficiently: + * + * pipeline( + * fs.createReadStream('archive.tar'), + * zlib.createGzip(), + * fs.createWriteStream('archive.tar.gz'), + * (err) => { + * if (err) { + * console.error('Pipeline failed.', err); + * } else { + * console.log('Pipeline succeeded.'); + * } + * } + * ); + * ``` + * + * The `pipeline` API provides a promise version, which can also + * receive an options argument as the last parameter with a`signal` `AbortSignal` property. When the signal is aborted,`destroy` will be called on the underlying pipeline, with + * an`AbortError`. + * + * ```js + * const { pipeline } = require('stream/promises'); + * + * async function run() { + * await pipeline( + * fs.createReadStream('archive.tar'), + * zlib.createGzip(), + * fs.createWriteStream('archive.tar.gz') + * ); + * console.log('Pipeline succeeded.'); + * } + * + * run().catch(console.error); + * ``` + * + * To use an `AbortSignal`, pass it inside an options object, + * as the last argument: + * + * ```js + * const { pipeline } = require('stream/promises'); + * + * async function run() { + * const ac = new AbortController(); + * const signal = ac.signal; + * + * setTimeout(() => ac.abort(), 1); + * await pipeline( + * fs.createReadStream('archive.tar'), + * zlib.createGzip(), + * fs.createWriteStream('archive.tar.gz'), + * { signal }, + * ); + * } + * + * run().catch(console.error); // AbortError + * ``` + * + * The `pipeline` API also supports async generators: + * + * ```js + * const { pipeline } = require('stream/promises'); + * const fs = require('fs'); + * + * async function run() { + * await pipeline( + * fs.createReadStream('lowercase.txt'), + * async function* (source, { signal }) { + * source.setEncoding('utf8'); // Work with strings rather than `Buffer`s. + * for await (const chunk of source) { + * yield await processChunk(chunk, { signal }); + * } + * }, + * fs.createWriteStream('uppercase.txt') + * ); + * console.log('Pipeline succeeded.'); + * } + * + * run().catch(console.error); + * ``` + * + * Remember to handle the `signal` argument passed into the async generator. + * Especially in the case where the async generator is the source for the + * pipeline (i.e. first argument) or the pipeline will never complete. + * + * ```js + * const { pipeline } = require('stream/promises'); + * const fs = require('fs'); + * + * async function run() { + * await pipeline( + * async function* ({ signal }) { + * await someLongRunningfn({ signal }); + * yield 'asd'; + * }, + * fs.createWriteStream('uppercase.txt') + * ); + * console.log('Pipeline succeeded.'); + * } + * + * run().catch(console.error); + * ``` + * + * `stream.pipeline()` will call `stream.destroy(err)` on all streams except: + * + * * `Readable` streams which have emitted `'end'` or `'close'`. + * * `Writable` streams which have emitted `'finish'` or `'close'`. + * + * `stream.pipeline()` leaves dangling event listeners on the streams + * after the `callback` has been invoked. In the case of reuse of streams after + * failure, this can cause event listener leaks and swallowed errors. If the last + * stream is readable, dangling event listeners will be removed so that the last + * stream can be consumed later. + * + * `stream.pipeline()` closes all the streams when an error is raised. + * The `IncomingRequest` usage with `pipeline` could lead to an unexpected behavior + * once it would destroy the socket without sending the expected response. + * See the example below: + * + * ```js + * const fs = require('fs'); + * const http = require('http'); + * const { pipeline } = require('stream'); + * + * const server = http.createServer((req, res) => { + * const fileStream = fs.createReadStream('./fileNotExist.txt'); + * pipeline(fileStream, res, (err) => { + * if (err) { + * console.log(err); // No such file + * // this message can't be sent once `pipeline` already destroyed the socket + * return res.end('error!!!'); + * } + * }); + * }); + * ``` + * @since v10.0.0 + * @param callback Called when the pipeline is fully done. + */ + function pipeline, B extends PipelineDestination>( + source: A, + destination: B, + callback?: PipelineCallback + ): B extends NodeJS.WritableStream ? B : NodeJS.WritableStream; + function pipeline, T1 extends PipelineTransform, B extends PipelineDestination>( + source: A, + transform1: T1, + destination: B, + callback?: PipelineCallback + ): B extends NodeJS.WritableStream ? B : NodeJS.WritableStream; + function pipeline, T1 extends PipelineTransform, T2 extends PipelineTransform, B extends PipelineDestination>( + source: A, + transform1: T1, + transform2: T2, + destination: B, + callback?: PipelineCallback + ): B extends NodeJS.WritableStream ? B : NodeJS.WritableStream; + function pipeline< + A extends PipelineSource, + T1 extends PipelineTransform, + T2 extends PipelineTransform, + T3 extends PipelineTransform, + B extends PipelineDestination + >(source: A, transform1: T1, transform2: T2, transform3: T3, destination: B, callback?: PipelineCallback): B extends NodeJS.WritableStream ? B : NodeJS.WritableStream; + function pipeline< + A extends PipelineSource, + T1 extends PipelineTransform, + T2 extends PipelineTransform, + T3 extends PipelineTransform, + T4 extends PipelineTransform, + B extends PipelineDestination + >(source: A, transform1: T1, transform2: T2, transform3: T3, transform4: T4, destination: B, callback?: PipelineCallback): B extends NodeJS.WritableStream ? B : NodeJS.WritableStream; + function pipeline( + streams: ReadonlyArray, + callback?: (err: NodeJS.ErrnoException | null) => void + ): NodeJS.WritableStream; + function pipeline( + stream1: NodeJS.ReadableStream, + stream2: NodeJS.ReadWriteStream | NodeJS.WritableStream, + ...streams: Array void)> + ): NodeJS.WritableStream; + namespace pipeline { + function __promisify__, B extends PipelineDestination>(source: A, destination: B, options?: PipelineOptions): PipelinePromise; + function __promisify__, T1 extends PipelineTransform, B extends PipelineDestination>( + source: A, + transform1: T1, + destination: B, + options?: PipelineOptions + ): PipelinePromise; + function __promisify__, T1 extends PipelineTransform, T2 extends PipelineTransform, B extends PipelineDestination>( + source: A, + transform1: T1, + transform2: T2, + destination: B, + options?: PipelineOptions + ): PipelinePromise; + function __promisify__< + A extends PipelineSource, + T1 extends PipelineTransform, + T2 extends PipelineTransform, + T3 extends PipelineTransform, + B extends PipelineDestination + >(source: A, transform1: T1, transform2: T2, transform3: T3, destination: B, options?: PipelineOptions): PipelinePromise; + function __promisify__< + A extends PipelineSource, + T1 extends PipelineTransform, + T2 extends PipelineTransform, + T3 extends PipelineTransform, + T4 extends PipelineTransform, + B extends PipelineDestination + >(source: A, transform1: T1, transform2: T2, transform3: T3, transform4: T4, destination: B, options?: PipelineOptions): PipelinePromise; + function __promisify__(streams: ReadonlyArray, options?: PipelineOptions): Promise; + function __promisify__( + stream1: NodeJS.ReadableStream, + stream2: NodeJS.ReadWriteStream | NodeJS.WritableStream, + ...streams: Array + ): Promise; + } + interface Pipe { + close(): void; + hasRef(): boolean; + ref(): void; + unref(): void; + } + + /** + * Returns whether the stream has encountered an error. + * @since v17.3.0 + */ + function isErrored(stream: Readable | Writable | NodeJS.ReadableStream | NodeJS.WritableStream): boolean; + + /** + * Returns whether the stream is readable. + * @since v17.4.0 + */ + function isReadable(stream: Readable | NodeJS.ReadableStream): boolean; + + const promises: typeof streamPromises; + const consumers: typeof streamConsumers; + } + export = internal; +} +declare module 'node:stream' { + import stream = require('stream'); + export = stream; +} diff --git a/node_modules/@types/node/stream/consumers.d.ts b/node_modules/@types/node/stream/consumers.d.ts new file mode 100644 index 000000000..1ebf12e1f --- /dev/null +++ b/node_modules/@types/node/stream/consumers.d.ts @@ -0,0 +1,12 @@ +declare module 'stream/consumers' { + import { Blob as NodeBlob } from "node:buffer"; + import { Readable } from 'node:stream'; + function buffer(stream: NodeJS.ReadableStream | Readable | AsyncIterator): Promise; + function text(stream: NodeJS.ReadableStream | Readable | AsyncIterator): Promise; + function arrayBuffer(stream: NodeJS.ReadableStream | Readable | AsyncIterator): Promise; + function blob(stream: NodeJS.ReadableStream | Readable | AsyncIterator): Promise; + function json(stream: NodeJS.ReadableStream | Readable | AsyncIterator): Promise; +} +declare module 'node:stream/consumers' { + export * from 'stream/consumers'; +} diff --git a/node_modules/@types/node/stream/promises.d.ts b/node_modules/@types/node/stream/promises.d.ts new file mode 100644 index 000000000..b427073de --- /dev/null +++ b/node_modules/@types/node/stream/promises.d.ts @@ -0,0 +1,42 @@ +declare module 'stream/promises' { + import { FinishedOptions, PipelineSource, PipelineTransform, PipelineDestination, PipelinePromise, PipelineOptions } from 'node:stream'; + function finished(stream: NodeJS.ReadableStream | NodeJS.WritableStream | NodeJS.ReadWriteStream, options?: FinishedOptions): Promise; + function pipeline, B extends PipelineDestination>(source: A, destination: B, options?: PipelineOptions): PipelinePromise; + function pipeline, T1 extends PipelineTransform, B extends PipelineDestination>( + source: A, + transform1: T1, + destination: B, + options?: PipelineOptions + ): PipelinePromise; + function pipeline, T1 extends PipelineTransform, T2 extends PipelineTransform, B extends PipelineDestination>( + source: A, + transform1: T1, + transform2: T2, + destination: B, + options?: PipelineOptions + ): PipelinePromise; + function pipeline< + A extends PipelineSource, + T1 extends PipelineTransform, + T2 extends PipelineTransform, + T3 extends PipelineTransform, + B extends PipelineDestination + >(source: A, transform1: T1, transform2: T2, transform3: T3, destination: B, options?: PipelineOptions): PipelinePromise; + function pipeline< + A extends PipelineSource, + T1 extends PipelineTransform, + T2 extends PipelineTransform, + T3 extends PipelineTransform, + T4 extends PipelineTransform, + B extends PipelineDestination + >(source: A, transform1: T1, transform2: T2, transform3: T3, transform4: T4, destination: B, options?: PipelineOptions): PipelinePromise; + function pipeline(streams: ReadonlyArray, options?: PipelineOptions): Promise; + function pipeline( + stream1: NodeJS.ReadableStream, + stream2: NodeJS.ReadWriteStream | NodeJS.WritableStream, + ...streams: Array + ): Promise; +} +declare module 'node:stream/promises' { + export * from 'stream/promises'; +} diff --git a/node_modules/@types/node/stream/web.d.ts b/node_modules/@types/node/stream/web.d.ts new file mode 100644 index 000000000..f9ef0570d --- /dev/null +++ b/node_modules/@types/node/stream/web.d.ts @@ -0,0 +1,330 @@ +declare module 'stream/web' { + // stub module, pending copy&paste from .d.ts or manual impl + // copy from lib.dom.d.ts + interface ReadableWritablePair { + readable: ReadableStream; + /** + * Provides a convenient, chainable way of piping this readable stream + * through a transform stream (or any other { writable, readable } + * pair). It simply pipes the stream into the writable side of the + * supplied pair, and returns the readable side for further use. + * + * Piping a stream will lock it for the duration of the pipe, preventing + * any other consumer from acquiring a reader. + */ + writable: WritableStream; + } + interface StreamPipeOptions { + preventAbort?: boolean; + preventCancel?: boolean; + /** + * Pipes this readable stream to a given writable stream destination. + * The way in which the piping process behaves under various error + * conditions can be customized with a number of passed options. It + * returns a promise that fulfills when the piping process completes + * successfully, or rejects if any errors were encountered. + * + * Piping a stream will lock it for the duration of the pipe, preventing + * any other consumer from acquiring a reader. + * + * Errors and closures of the source and destination streams propagate + * as follows: + * + * An error in this source readable stream will abort destination, + * unless preventAbort is truthy. The returned promise will be rejected + * with the source's error, or with any error that occurs during + * aborting the destination. + * + * An error in destination will cancel this source readable stream, + * unless preventCancel is truthy. The returned promise will be rejected + * with the destination's error, or with any error that occurs during + * canceling the source. + * + * When this source readable stream closes, destination will be closed, + * unless preventClose is truthy. The returned promise will be fulfilled + * once this process completes, unless an error is encountered while + * closing the destination, in which case it will be rejected with that + * error. + * + * If destination starts out closed or closing, this source readable + * stream will be canceled, unless preventCancel is true. The returned + * promise will be rejected with an error indicating piping to a closed + * stream failed, or with any error that occurs during canceling the + * source. + * + * The signal option can be set to an AbortSignal to allow aborting an + * ongoing pipe operation via the corresponding AbortController. In this + * case, this source readable stream will be canceled, and destination + * aborted, unless the respective options preventCancel or preventAbort + * are set. + */ + preventClose?: boolean; + signal?: AbortSignal; + } + interface ReadableStreamGenericReader { + readonly closed: Promise; + cancel(reason?: any): Promise; + } + interface ReadableStreamDefaultReadValueResult { + done: false; + value: T; + } + interface ReadableStreamDefaultReadDoneResult { + done: true; + value?: undefined; + } + type ReadableStreamController = ReadableStreamDefaultController; + type ReadableStreamDefaultReadResult = ReadableStreamDefaultReadValueResult | ReadableStreamDefaultReadDoneResult; + interface ReadableByteStreamControllerCallback { + (controller: ReadableByteStreamController): void | PromiseLike; + } + interface UnderlyingSinkAbortCallback { + (reason?: any): void | PromiseLike; + } + interface UnderlyingSinkCloseCallback { + (): void | PromiseLike; + } + interface UnderlyingSinkStartCallback { + (controller: WritableStreamDefaultController): any; + } + interface UnderlyingSinkWriteCallback { + (chunk: W, controller: WritableStreamDefaultController): void | PromiseLike; + } + interface UnderlyingSourceCancelCallback { + (reason?: any): void | PromiseLike; + } + interface UnderlyingSourcePullCallback { + (controller: ReadableStreamController): void | PromiseLike; + } + interface UnderlyingSourceStartCallback { + (controller: ReadableStreamController): any; + } + interface TransformerFlushCallback { + (controller: TransformStreamDefaultController): void | PromiseLike; + } + interface TransformerStartCallback { + (controller: TransformStreamDefaultController): any; + } + interface TransformerTransformCallback { + (chunk: I, controller: TransformStreamDefaultController): void | PromiseLike; + } + interface UnderlyingByteSource { + autoAllocateChunkSize?: number; + cancel?: ReadableStreamErrorCallback; + pull?: ReadableByteStreamControllerCallback; + start?: ReadableByteStreamControllerCallback; + type: 'bytes'; + } + interface UnderlyingSource { + cancel?: UnderlyingSourceCancelCallback; + pull?: UnderlyingSourcePullCallback; + start?: UnderlyingSourceStartCallback; + type?: undefined; + } + interface UnderlyingSink { + abort?: UnderlyingSinkAbortCallback; + close?: UnderlyingSinkCloseCallback; + start?: UnderlyingSinkStartCallback; + type?: undefined; + write?: UnderlyingSinkWriteCallback; + } + interface ReadableStreamErrorCallback { + (reason: any): void | PromiseLike; + } + /** This Streams API interface represents a readable stream of byte data. */ + interface ReadableStream { + readonly locked: boolean; + cancel(reason?: any): Promise; + getReader(): ReadableStreamDefaultReader; + pipeThrough(transform: ReadableWritablePair, options?: StreamPipeOptions): ReadableStream; + pipeTo(destination: WritableStream, options?: StreamPipeOptions): Promise; + tee(): [ReadableStream, ReadableStream]; + values(options?: { preventCancel?: boolean }): AsyncIterableIterator; + [Symbol.asyncIterator](): AsyncIterableIterator; + } + const ReadableStream: { + prototype: ReadableStream; + new (underlyingSource: UnderlyingByteSource, strategy?: QueuingStrategy): ReadableStream; + new (underlyingSource?: UnderlyingSource, strategy?: QueuingStrategy): ReadableStream; + }; + interface ReadableStreamDefaultReader extends ReadableStreamGenericReader { + read(): Promise>; + releaseLock(): void; + } + const ReadableStreamDefaultReader: { + prototype: ReadableStreamDefaultReader; + new (stream: ReadableStream): ReadableStreamDefaultReader; + }; + const ReadableStreamBYOBReader: any; + const ReadableStreamBYOBRequest: any; + interface ReadableByteStreamController { + readonly byobRequest: undefined; + readonly desiredSize: number | null; + close(): void; + enqueue(chunk: ArrayBufferView): void; + error(error?: any): void; + } + const ReadableByteStreamController: { + prototype: ReadableByteStreamController; + new (): ReadableByteStreamController; + }; + interface ReadableStreamDefaultController { + readonly desiredSize: number | null; + close(): void; + enqueue(chunk?: R): void; + error(e?: any): void; + } + const ReadableStreamDefaultController: { + prototype: ReadableStreamDefaultController; + new (): ReadableStreamDefaultController; + }; + interface Transformer { + flush?: TransformerFlushCallback; + readableType?: undefined; + start?: TransformerStartCallback; + transform?: TransformerTransformCallback; + writableType?: undefined; + } + interface TransformStream { + readonly readable: ReadableStream; + readonly writable: WritableStream; + } + const TransformStream: { + prototype: TransformStream; + new (transformer?: Transformer, writableStrategy?: QueuingStrategy, readableStrategy?: QueuingStrategy): TransformStream; + }; + interface TransformStreamDefaultController { + readonly desiredSize: number | null; + enqueue(chunk?: O): void; + error(reason?: any): void; + terminate(): void; + } + const TransformStreamDefaultController: { + prototype: TransformStreamDefaultController; + new (): TransformStreamDefaultController; + }; + /** + * This Streams API interface provides a standard abstraction for writing + * streaming data to a destination, known as a sink. This object comes with + * built-in back pressure and queuing. + */ + interface WritableStream { + readonly locked: boolean; + abort(reason?: any): Promise; + close(): Promise; + getWriter(): WritableStreamDefaultWriter; + } + const WritableStream: { + prototype: WritableStream; + new (underlyingSink?: UnderlyingSink, strategy?: QueuingStrategy): WritableStream; + }; + /** + * This Streams API interface is the object returned by + * WritableStream.getWriter() and once created locks the < writer to the + * WritableStream ensuring that no other streams can write to the underlying + * sink. + */ + interface WritableStreamDefaultWriter { + readonly closed: Promise; + readonly desiredSize: number | null; + readonly ready: Promise; + abort(reason?: any): Promise; + close(): Promise; + releaseLock(): void; + write(chunk?: W): Promise; + } + const WritableStreamDefaultWriter: { + prototype: WritableStreamDefaultWriter; + new (stream: WritableStream): WritableStreamDefaultWriter; + }; + /** + * This Streams API interface represents a controller allowing control of a + * WritableStream's state. When constructing a WritableStream, the + * underlying sink is given a corresponding WritableStreamDefaultController + * instance to manipulate. + */ + interface WritableStreamDefaultController { + error(e?: any): void; + } + const WritableStreamDefaultController: { + prototype: WritableStreamDefaultController; + new (): WritableStreamDefaultController; + }; + interface QueuingStrategy { + highWaterMark?: number; + size?: QueuingStrategySize; + } + interface QueuingStrategySize { + (chunk?: T): number; + } + interface QueuingStrategyInit { + /** + * Creates a new ByteLengthQueuingStrategy with the provided high water + * mark. + * + * Note that the provided high water mark will not be validated ahead of + * time. Instead, if it is negative, NaN, or not a number, the resulting + * ByteLengthQueuingStrategy will cause the corresponding stream + * constructor to throw. + */ + highWaterMark: number; + } + /** + * This Streams API interface provides a built-in byte length queuing + * strategy that can be used when constructing streams. + */ + interface ByteLengthQueuingStrategy extends QueuingStrategy { + readonly highWaterMark: number; + readonly size: QueuingStrategySize; + } + const ByteLengthQueuingStrategy: { + prototype: ByteLengthQueuingStrategy; + new (init: QueuingStrategyInit): ByteLengthQueuingStrategy; + }; + /** + * This Streams API interface provides a built-in byte length queuing + * strategy that can be used when constructing streams. + */ + interface CountQueuingStrategy extends QueuingStrategy { + readonly highWaterMark: number; + readonly size: QueuingStrategySize; + } + const CountQueuingStrategy: { + prototype: CountQueuingStrategy; + new (init: QueuingStrategyInit): CountQueuingStrategy; + }; + interface TextEncoderStream { + /** Returns "utf-8". */ + readonly encoding: 'utf-8'; + readonly readable: ReadableStream; + readonly writable: WritableStream; + readonly [Symbol.toStringTag]: string; + } + const TextEncoderStream: { + prototype: TextEncoderStream; + new (): TextEncoderStream; + }; + interface TextDecoderOptions { + fatal?: boolean; + ignoreBOM?: boolean; + } + type BufferSource = ArrayBufferView | ArrayBuffer; + interface TextDecoderStream { + /** Returns encoding's name, lower cased. */ + readonly encoding: string; + /** Returns `true` if error mode is "fatal", and `false` otherwise. */ + readonly fatal: boolean; + /** Returns `true` if ignore BOM flag is set, and `false` otherwise. */ + readonly ignoreBOM: boolean; + readonly readable: ReadableStream; + readonly writable: WritableStream; + readonly [Symbol.toStringTag]: string; + } + const TextDecoderStream: { + prototype: TextDecoderStream; + new (label?: string, options?: TextDecoderOptions): TextDecoderStream; + }; +} +declare module 'node:stream/web' { + export * from 'stream/web'; +} diff --git a/node_modules/@types/node/string_decoder.d.ts b/node_modules/@types/node/string_decoder.d.ts new file mode 100644 index 000000000..a58580411 --- /dev/null +++ b/node_modules/@types/node/string_decoder.d.ts @@ -0,0 +1,67 @@ +/** + * The `string_decoder` module provides an API for decoding `Buffer` objects into + * strings in a manner that preserves encoded multi-byte UTF-8 and UTF-16 + * characters. It can be accessed using: + * + * ```js + * const { StringDecoder } = require('string_decoder'); + * ``` + * + * The following example shows the basic use of the `StringDecoder` class. + * + * ```js + * const { StringDecoder } = require('string_decoder'); + * const decoder = new StringDecoder('utf8'); + * + * const cent = Buffer.from([0xC2, 0xA2]); + * console.log(decoder.write(cent)); + * + * const euro = Buffer.from([0xE2, 0x82, 0xAC]); + * console.log(decoder.write(euro)); + * ``` + * + * When a `Buffer` instance is written to the `StringDecoder` instance, an + * internal buffer is used to ensure that the decoded string does not contain + * any incomplete multibyte characters. These are held in the buffer until the + * next call to `stringDecoder.write()` or until `stringDecoder.end()` is called. + * + * In the following example, the three UTF-8 encoded bytes of the European Euro + * symbol (`€`) are written over three separate operations: + * + * ```js + * const { StringDecoder } = require('string_decoder'); + * const decoder = new StringDecoder('utf8'); + * + * decoder.write(Buffer.from([0xE2])); + * decoder.write(Buffer.from([0x82])); + * console.log(decoder.end(Buffer.from([0xAC]))); + * ``` + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/string_decoder.js) + */ +declare module 'string_decoder' { + class StringDecoder { + constructor(encoding?: BufferEncoding); + /** + * Returns a decoded string, ensuring that any incomplete multibyte characters at + * the end of the `Buffer`, or `TypedArray`, or `DataView` are omitted from the + * returned string and stored in an internal buffer for the next call to`stringDecoder.write()` or `stringDecoder.end()`. + * @since v0.1.99 + * @param buffer A `Buffer`, or `TypedArray`, or `DataView` containing the bytes to decode. + */ + write(buffer: Buffer): string; + /** + * Returns any remaining input stored in the internal buffer as a string. Bytes + * representing incomplete UTF-8 and UTF-16 characters will be replaced with + * substitution characters appropriate for the character encoding. + * + * If the `buffer` argument is provided, one final call to `stringDecoder.write()`is performed before returning the remaining input. + * After `end()` is called, the `stringDecoder` object can be reused for new input. + * @since v0.9.3 + * @param buffer A `Buffer`, or `TypedArray`, or `DataView` containing the bytes to decode. + */ + end(buffer?: Buffer): string; + } +} +declare module 'node:string_decoder' { + export * from 'string_decoder'; +} diff --git a/node_modules/@types/node/test.d.ts b/node_modules/@types/node/test.d.ts new file mode 100644 index 000000000..a9b4eeb5e --- /dev/null +++ b/node_modules/@types/node/test.d.ts @@ -0,0 +1,314 @@ +/** + * The `node:test` module provides a standalone testing module. + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/test.js) + */ +declare module 'node:test' { + /** + * Programmatically start the test runner. + * @since v18.9.0 + * @param options Configuration options for running tests. + * @returns A {@link TapStream} that emits events about the test execution. + */ + function run(options?: RunOptions): TapStream; + + /** + * The `test()` function is the value imported from the test module. Each invocation of this + * function results in the creation of a test point in the TAP output. + * + * The {@link TestContext} object passed to the fn argument can be used to perform actions + * related to the current test. Examples include skipping the test, adding additional TAP + * diagnostic information, or creating subtests. + * + * `test()` returns a {@link Promise} that resolves once the test completes. The return value + * can usually be discarded for top level tests. However, the return value from subtests should + * be used to prevent the parent test from finishing first and cancelling the subtest as shown + * in the following example. + * + * ```js + * test('top level test', async (t) => { + * // The setTimeout() in the following subtest would cause it to outlive its + * // parent test if 'await' is removed on the next line. Once the parent test + * // completes, it will cancel any outstanding subtests. + * await t.test('longer running subtest', async (t) => { + * return new Promise((resolve, reject) => { + * setTimeout(resolve, 1000); + * }); + * }); + * }); + * ``` + * @since v18.0.0 + * @param name The name of the test, which is displayed when reporting test results. + * Default: The `name` property of fn, or `''` if `fn` does not have a name. + * @param options Configuration options for the test + * @param fn The function under test. The first argument to this function is a + * {@link TestContext} object. If the test uses callbacks, the callback function is + * passed as the second argument. Default: A no-op function. + * @returns A {@link Promise} resolved with `undefined` once the test completes. + */ + function test(name?: string, fn?: TestFn): Promise; + function test(name?: string, options?: TestOptions, fn?: TestFn): Promise; + function test(options?: TestOptions, fn?: TestFn): Promise; + function test(fn?: TestFn): Promise; + + /** + * @since v18.6.0 + * @param name The name of the suite, which is displayed when reporting suite results. + * Default: The `name` property of fn, or `''` if `fn` does not have a name. + * @param options Configuration options for the suite + * @param fn The function under suite. Default: A no-op function. + */ + function describe(name?: string, options?: TestOptions, fn?: SuiteFn): void; + function describe(name?: string, fn?: SuiteFn): void; + function describe(options?: TestOptions, fn?: SuiteFn): void; + function describe(fn?: SuiteFn): void; + + /** + * @since v18.6.0 + * @param name The name of the test, which is displayed when reporting test results. + * Default: The `name` property of fn, or `''` if `fn` does not have a name. + * @param options Configuration options for the test + * @param fn The function under test. If the test uses callbacks, the callback function is + * passed as the second argument. Default: A no-op function. + */ + function it(name?: string, options?: TestOptions, fn?: ItFn): void; + function it(name?: string, fn?: ItFn): void; + function it(options?: TestOptions, fn?: ItFn): void; + function it(fn?: ItFn): void; + + /** + * The type of a function under test. The first argument to this function is a + * {@link TestContext} object. If the test uses callbacks, the callback function is passed as + * the second argument. + */ + type TestFn = (t: TestContext, done: (result?: any) => void) => any; + + /** + * The type of a function under Suite. + * If the test uses callbacks, the callback function is passed as an argument + */ + type SuiteFn = (done: (result?: any) => void) => void; + + /** + * The type of a function under test. + * If the test uses callbacks, the callback function is passed as an argument + */ + type ItFn = (done: (result?: any) => void) => any; + + interface RunOptions { + /** + * @default false + */ + concurrency?: number | boolean; + + /** + * An array containing the list of files to run. If unspecified, the test runner execution model will be used. + */ + files?: readonly string[]; + + /** + * Allows aborting an in-progress test. + * @default undefined + */ + signal?: AbortSignal; + + /** + * A number of milliseconds the test will fail after. If unspecified, subtests inherit this + * value from their parent. + * @default Infinity + */ + timeout?: number; + } + + /** + * A successful call of the run() method will return a new TapStream object, streaming a TAP output. + * TapStream will emit events in the order of the tests' definitions. + * @since v18.9.0 + */ + interface TapStream extends NodeJS.ReadableStream { + addListener(event: 'test:diagnostic', listener: (message: string) => void): this; + addListener(event: 'test:fail', listener: (data: TestFail) => void): this; + addListener(event: 'test:pass', listener: (data: TestPass) => void): this; + addListener(event: string, listener: (...args: any[]) => void): this; + emit(event: 'test:diagnostic', message: string): boolean; + emit(event: 'test:fail', data: TestFail): boolean; + emit(event: 'test:pass', data: TestPass): boolean; + emit(event: string | symbol, ...args: any[]): boolean; + on(event: 'test:diagnostic', listener: (message: string) => void): this; + on(event: 'test:fail', listener: (data: TestFail) => void): this; + on(event: 'test:pass', listener: (data: TestPass) => void): this; + on(event: string, listener: (...args: any[]) => void): this; + once(event: 'test:diagnostic', listener: (message: string) => void): this; + once(event: 'test:fail', listener: (data: TestFail) => void): this; + once(event: 'test:pass', listener: (data: TestPass) => void): this; + once(event: string, listener: (...args: any[]) => void): this; + prependListener(event: 'test:diagnostic', listener: (message: string) => void): this; + prependListener(event: 'test:fail', listener: (data: TestFail) => void): this; + prependListener(event: 'test:pass', listener: (data: TestPass) => void): this; + prependListener(event: string, listener: (...args: any[]) => void): this; + prependOnceListener(event: 'test:diagnostic', listener: (message: string) => void): this; + prependOnceListener(event: 'test:fail', listener: (data: TestFail) => void): this; + prependOnceListener(event: 'test:pass', listener: (data: TestPass) => void): this; + prependOnceListener(event: string, listener: (...args: any[]) => void): this; + } + + interface TestFail { + /** + * The test duration. + */ + duration: number; + + /** + * The failure casing test to fail. + */ + error: Error; + + /** + * The test name. + */ + name: string; + + /** + * The ordinal number of the test. + */ + testNumber: number; + + /** + * Present if `context.todo` is called. + */ + todo?: string; + + /** + * Present if `context.skip` is called. + */ + skip?: string; + } + + interface TestPass { + /** + * The test duration. + */ + duration: number; + + /** + * The test name. + */ + name: string; + + /** + * The ordinal number of the test. + */ + testNumber: number; + + /** + * Present if `context.todo` is called. + */ + todo?: string; + + /** + * Present if `context.skip` is called. + */ + skip?: string; + } + + /** + * An instance of `TestContext` is passed to each test function in order to interact with the + * test runner. However, the `TestContext` constructor is not exposed as part of the API. + * @since v18.0.0 + */ + interface TestContext { + /** + * This function is used to write TAP diagnostics to the output. Any diagnostic information is + * included at the end of the test's results. This function does not return a value. + * @param message Message to be displayed as a TAP diagnostic. + * @since v18.0.0 + */ + diagnostic(message: string): void; + + /** + * If `shouldRunOnlyTests` is truthy, the test context will only run tests that have the `only` + * option set. Otherwise, all tests are run. If Node.js was not started with the `--test-only` + * command-line option, this function is a no-op. + * @param shouldRunOnlyTests Whether or not to run `only` tests. + * @since v18.0.0 + */ + runOnly(shouldRunOnlyTests: boolean): void; + + /** + * This function causes the test's output to indicate the test as skipped. If `message` is + * provided, it is included in the TAP output. Calling `skip()` does not terminate execution of + * the test function. This function does not return a value. + * @param message Optional skip message to be displayed in TAP output. + * @since v18.0.0 + */ + skip(message?: string): void; + + /** + * This function adds a `TODO` directive to the test's output. If `message` is provided, it is + * included in the TAP output. Calling `todo()` does not terminate execution of the test + * function. This function does not return a value. + * @param message Optional `TODO` message to be displayed in TAP output. + * @since v18.0.0 + */ + todo(message?: string): void; + + /** + * This function is used to create subtests under the current test. This function behaves in + * the same fashion as the top level {@link test} function. + * @since v18.0.0 + * @param name The name of the test, which is displayed when reporting test results. + * Default: The `name` property of fn, or `''` if `fn` does not have a name. + * @param options Configuration options for the test + * @param fn The function under test. This first argument to this function is a + * {@link TestContext} object. If the test uses callbacks, the callback function is + * passed as the second argument. Default: A no-op function. + * @returns A {@link Promise} resolved with `undefined` once the test completes. + */ + test: typeof test; + } + + interface TestOptions { + /** + * The number of tests that can be run at the same time. If unspecified, subtests inherit this + * value from their parent. + * @default 1 + */ + concurrency?: number; + + /** + * If truthy, and the test context is configured to run `only` tests, then this test will be + * run. Otherwise, the test is skipped. + * @default false + */ + only?: boolean; + + /** + * Allows aborting an in-progress test. + * @since v18.8.0 + */ + signal?: AbortSignal; + + /** + * If truthy, the test is skipped. If a string is provided, that string is displayed in the + * test results as the reason for skipping the test. + * @default false + */ + skip?: boolean | string; + + /** + * A number of milliseconds the test will fail after. If unspecified, subtests inherit this + * value from their parent. + * @default Infinity + * @since v18.7.0 + */ + timeout?: number; + + /** + * If truthy, the test marked as `TODO`. If a string is provided, that string is displayed in + * the test results as the reason why the test is `TODO`. + * @default false + */ + todo?: boolean | string; + } + + export { test as default, run, test, describe, it }; +} diff --git a/node_modules/@types/node/timers.d.ts b/node_modules/@types/node/timers.d.ts new file mode 100644 index 000000000..b26f3ceda --- /dev/null +++ b/node_modules/@types/node/timers.d.ts @@ -0,0 +1,94 @@ +/** + * The `timer` module exposes a global API for scheduling functions to + * be called at some future period of time. Because the timer functions are + * globals, there is no need to call `require('timers')` to use the API. + * + * The timer functions within Node.js implement a similar API as the timers API + * provided by Web Browsers but use a different internal implementation that is + * built around the Node.js [Event Loop](https://nodejs.org/en/docs/guides/event-loop-timers-and-nexttick/#setimmediate-vs-settimeout). + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/timers.js) + */ +declare module 'timers' { + import { Abortable } from 'node:events'; + import { setTimeout as setTimeoutPromise, setImmediate as setImmediatePromise, setInterval as setIntervalPromise } from 'node:timers/promises'; + interface TimerOptions extends Abortable { + /** + * Set to `false` to indicate that the scheduled `Timeout` + * should not require the Node.js event loop to remain active. + * @default true + */ + ref?: boolean | undefined; + } + let setTimeout: typeof global.setTimeout; + let clearTimeout: typeof global.clearTimeout; + let setInterval: typeof global.setInterval; + let clearInterval: typeof global.clearInterval; + let setImmediate: typeof global.setImmediate; + let clearImmediate: typeof global.clearImmediate; + global { + namespace NodeJS { + // compatibility with older typings + interface Timer extends RefCounted { + hasRef(): boolean; + refresh(): this; + [Symbol.toPrimitive](): number; + } + interface Immediate extends RefCounted { + /** + * If true, the `Immediate` object will keep the Node.js event loop active. + * @since v11.0.0 + */ + hasRef(): boolean; + _onImmediate: Function; // to distinguish it from the Timeout class + } + interface Timeout extends Timer { + /** + * If true, the `Timeout` object will keep the Node.js event loop active. + * @since v11.0.0 + */ + hasRef(): boolean; + /** + * Sets the timer's start time to the current time, and reschedules the timer to + * call its callback at the previously specified duration adjusted to the current + * time. This is useful for refreshing a timer without allocating a new + * JavaScript object. + * + * Using this on a timer that has already called its callback will reactivate the + * timer. + * @since v10.2.0 + * @return a reference to `timeout` + */ + refresh(): this; + [Symbol.toPrimitive](): number; + } + } + function setTimeout(callback: (...args: TArgs) => void, ms?: number, ...args: TArgs): NodeJS.Timeout; + // util.promisify no rest args compability + // tslint:disable-next-line void-return + function setTimeout(callback: (args: void) => void, ms?: number): NodeJS.Timeout; + namespace setTimeout { + const __promisify__: typeof setTimeoutPromise; + } + function clearTimeout(timeoutId: NodeJS.Timeout | string | number | undefined): void; + function setInterval(callback: (...args: TArgs) => void, ms?: number, ...args: TArgs): NodeJS.Timer; + // util.promisify no rest args compability + // tslint:disable-next-line void-return + function setInterval(callback: (args: void) => void, ms?: number): NodeJS.Timer; + namespace setInterval { + const __promisify__: typeof setIntervalPromise; + } + function clearInterval(intervalId: NodeJS.Timeout | string | number | undefined): void; + function setImmediate(callback: (...args: TArgs) => void, ...args: TArgs): NodeJS.Immediate; + // util.promisify no rest args compability + // tslint:disable-next-line void-return + function setImmediate(callback: (args: void) => void): NodeJS.Immediate; + namespace setImmediate { + const __promisify__: typeof setImmediatePromise; + } + function clearImmediate(immediateId: NodeJS.Immediate | undefined): void; + function queueMicrotask(callback: () => void): void; + } +} +declare module 'node:timers' { + export * from 'timers'; +} diff --git a/node_modules/@types/node/timers/promises.d.ts b/node_modules/@types/node/timers/promises.d.ts new file mode 100644 index 000000000..fd778880e --- /dev/null +++ b/node_modules/@types/node/timers/promises.d.ts @@ -0,0 +1,68 @@ +/** + * The `timers/promises` API provides an alternative set of timer functions + * that return `Promise` objects. The API is accessible via`require('timers/promises')`. + * + * ```js + * import { + * setTimeout, + * setImmediate, + * setInterval, + * } from 'timers/promises'; + * ``` + * @since v15.0.0 + */ +declare module 'timers/promises' { + import { TimerOptions } from 'node:timers'; + /** + * ```js + * import { + * setTimeout, + * } from 'timers/promises'; + * + * const res = await setTimeout(100, 'result'); + * + * console.log(res); // Prints 'result' + * ``` + * @since v15.0.0 + * @param [delay=1] The number of milliseconds to wait before fulfilling the promise. + * @param value A value with which the promise is fulfilled. + */ + function setTimeout(delay?: number, value?: T, options?: TimerOptions): Promise; + /** + * ```js + * import { + * setImmediate, + * } from 'timers/promises'; + * + * const res = await setImmediate('result'); + * + * console.log(res); // Prints 'result' + * ``` + * @since v15.0.0 + * @param value A value with which the promise is fulfilled. + */ + function setImmediate(value?: T, options?: TimerOptions): Promise; + /** + * Returns an async iterator that generates values in an interval of `delay` ms. + * + * ```js + * import { + * setInterval, + * } from 'timers/promises'; + * + * const interval = 100; + * for await (const startTime of setInterval(interval, Date.now())) { + * const now = Date.now(); + * console.log(now); + * if ((now - startTime) > 1000) + * break; + * } + * console.log(Date.now()); + * ``` + * @since v15.9.0 + */ + function setInterval(delay?: number, value?: T, options?: TimerOptions): AsyncIterable; +} +declare module 'node:timers/promises' { + export * from 'timers/promises'; +} diff --git a/node_modules/@types/node/tls.d.ts b/node_modules/@types/node/tls.d.ts new file mode 100644 index 000000000..2cbc71658 --- /dev/null +++ b/node_modules/@types/node/tls.d.ts @@ -0,0 +1,1028 @@ +/** + * The `tls` module provides an implementation of the Transport Layer Security + * (TLS) and Secure Socket Layer (SSL) protocols that is built on top of OpenSSL. + * The module can be accessed using: + * + * ```js + * const tls = require('tls'); + * ``` + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/tls.js) + */ +declare module 'tls' { + import { X509Certificate } from 'node:crypto'; + import * as net from 'node:net'; + import * as stream from 'stream'; + const CLIENT_RENEG_LIMIT: number; + const CLIENT_RENEG_WINDOW: number; + interface Certificate { + /** + * Country code. + */ + C: string; + /** + * Street. + */ + ST: string; + /** + * Locality. + */ + L: string; + /** + * Organization. + */ + O: string; + /** + * Organizational unit. + */ + OU: string; + /** + * Common name. + */ + CN: string; + } + interface PeerCertificate { + subject: Certificate; + issuer: Certificate; + subjectaltname: string; + infoAccess: NodeJS.Dict; + modulus: string; + exponent: string; + valid_from: string; + valid_to: string; + fingerprint: string; + fingerprint256: string; + ext_key_usage: string[]; + serialNumber: string; + raw: Buffer; + } + interface DetailedPeerCertificate extends PeerCertificate { + issuerCertificate: DetailedPeerCertificate; + } + interface CipherNameAndProtocol { + /** + * The cipher name. + */ + name: string; + /** + * SSL/TLS protocol version. + */ + version: string; + /** + * IETF name for the cipher suite. + */ + standardName: string; + } + interface EphemeralKeyInfo { + /** + * The supported types are 'DH' and 'ECDH'. + */ + type: string; + /** + * The name property is available only when type is 'ECDH'. + */ + name?: string | undefined; + /** + * The size of parameter of an ephemeral key exchange. + */ + size: number; + } + interface KeyObject { + /** + * Private keys in PEM format. + */ + pem: string | Buffer; + /** + * Optional passphrase. + */ + passphrase?: string | undefined; + } + interface PxfObject { + /** + * PFX or PKCS12 encoded private key and certificate chain. + */ + buf: string | Buffer; + /** + * Optional passphrase. + */ + passphrase?: string | undefined; + } + interface TLSSocketOptions extends SecureContextOptions, CommonConnectionOptions { + /** + * If true the TLS socket will be instantiated in server-mode. + * Defaults to false. + */ + isServer?: boolean | undefined; + /** + * An optional net.Server instance. + */ + server?: net.Server | undefined; + /** + * An optional Buffer instance containing a TLS session. + */ + session?: Buffer | undefined; + /** + * If true, specifies that the OCSP status request extension will be + * added to the client hello and an 'OCSPResponse' event will be + * emitted on the socket before establishing a secure communication + */ + requestOCSP?: boolean | undefined; + } + /** + * Performs transparent encryption of written data and all required TLS + * negotiation. + * + * Instances of `tls.TLSSocket` implement the duplex `Stream` interface. + * + * Methods that return TLS connection metadata (e.g.{@link TLSSocket.getPeerCertificate} will only return data while the + * connection is open. + * @since v0.11.4 + */ + class TLSSocket extends net.Socket { + /** + * Construct a new tls.TLSSocket object from an existing TCP socket. + */ + constructor(socket: net.Socket, options?: TLSSocketOptions); + /** + * This property is `true` if the peer certificate was signed by one of the CAs + * specified when creating the `tls.TLSSocket` instance, otherwise `false`. + * @since v0.11.4 + */ + authorized: boolean; + /** + * Returns the reason why the peer's certificate was not been verified. This + * property is set only when `tlsSocket.authorized === false`. + * @since v0.11.4 + */ + authorizationError: Error; + /** + * Always returns `true`. This may be used to distinguish TLS sockets from regular`net.Socket` instances. + * @since v0.11.4 + */ + encrypted: true; + /** + * String containing the selected ALPN protocol. + * Before a handshake has completed, this value is always null. + * When a handshake is completed but not ALPN protocol was selected, tlsSocket.alpnProtocol equals false. + */ + alpnProtocol: string | false | null; + /** + * Returns an object representing the local certificate. The returned object has + * some properties corresponding to the fields of the certificate. + * + * See {@link TLSSocket.getPeerCertificate} for an example of the certificate + * structure. + * + * If there is no local certificate, an empty object will be returned. If the + * socket has been destroyed, `null` will be returned. + * @since v11.2.0 + */ + getCertificate(): PeerCertificate | object | null; + /** + * Returns an object containing information on the negotiated cipher suite. + * + * For example: + * + * ```json + * { + * "name": "AES128-SHA256", + * "standardName": "TLS_RSA_WITH_AES_128_CBC_SHA256", + * "version": "TLSv1.2" + * } + * ``` + * + * See [SSL\_CIPHER\_get\_name](https://www.openssl.org/docs/man1.1.1/man3/SSL_CIPHER_get_name.html) for more information. + * @since v0.11.4 + */ + getCipher(): CipherNameAndProtocol; + /** + * Returns an object representing the type, name, and size of parameter of + * an ephemeral key exchange in `perfect forward secrecy` on a client + * connection. It returns an empty object when the key exchange is not + * ephemeral. As this is only supported on a client socket; `null` is returned + * if called on a server socket. The supported types are `'DH'` and `'ECDH'`. The`name` property is available only when type is `'ECDH'`. + * + * For example: `{ type: 'ECDH', name: 'prime256v1', size: 256 }`. + * @since v5.0.0 + */ + getEphemeralKeyInfo(): EphemeralKeyInfo | object | null; + /** + * As the `Finished` messages are message digests of the complete handshake + * (with a total of 192 bits for TLS 1.0 and more for SSL 3.0), they can + * be used for external authentication procedures when the authentication + * provided by SSL/TLS is not desired or is not enough. + * + * Corresponds to the `SSL_get_finished` routine in OpenSSL and may be used + * to implement the `tls-unique` channel binding from [RFC 5929](https://tools.ietf.org/html/rfc5929). + * @since v9.9.0 + * @return The latest `Finished` message that has been sent to the socket as part of a SSL/TLS handshake, or `undefined` if no `Finished` message has been sent yet. + */ + getFinished(): Buffer | undefined; + /** + * Returns an object representing the peer's certificate. If the peer does not + * provide a certificate, an empty object will be returned. If the socket has been + * destroyed, `null` will be returned. + * + * If the full certificate chain was requested, each certificate will include an`issuerCertificate` property containing an object representing its issuer's + * certificate. + * @since v0.11.4 + * @param detailed Include the full certificate chain if `true`, otherwise include just the peer's certificate. + * @return A certificate object. + */ + getPeerCertificate(detailed: true): DetailedPeerCertificate; + getPeerCertificate(detailed?: false): PeerCertificate; + getPeerCertificate(detailed?: boolean): PeerCertificate | DetailedPeerCertificate; + /** + * As the `Finished` messages are message digests of the complete handshake + * (with a total of 192 bits for TLS 1.0 and more for SSL 3.0), they can + * be used for external authentication procedures when the authentication + * provided by SSL/TLS is not desired or is not enough. + * + * Corresponds to the `SSL_get_peer_finished` routine in OpenSSL and may be used + * to implement the `tls-unique` channel binding from [RFC 5929](https://tools.ietf.org/html/rfc5929). + * @since v9.9.0 + * @return The latest `Finished` message that is expected or has actually been received from the socket as part of a SSL/TLS handshake, or `undefined` if there is no `Finished` message so + * far. + */ + getPeerFinished(): Buffer | undefined; + /** + * Returns a string containing the negotiated SSL/TLS protocol version of the + * current connection. The value `'unknown'` will be returned for connected + * sockets that have not completed the handshaking process. The value `null` will + * be returned for server sockets or disconnected client sockets. + * + * Protocol versions are: + * + * * `'SSLv3'` + * * `'TLSv1'` + * * `'TLSv1.1'` + * * `'TLSv1.2'` + * * `'TLSv1.3'` + * + * See the OpenSSL [`SSL_get_version`](https://www.openssl.org/docs/man1.1.1/man3/SSL_get_version.html) documentation for more information. + * @since v5.7.0 + */ + getProtocol(): string | null; + /** + * Returns the TLS session data or `undefined` if no session was + * negotiated. On the client, the data can be provided to the `session` option of {@link connect} to resume the connection. On the server, it may be useful + * for debugging. + * + * See `Session Resumption` for more information. + * + * Note: `getSession()` works only for TLSv1.2 and below. For TLSv1.3, applications + * must use the `'session'` event (it also works for TLSv1.2 and below). + * @since v0.11.4 + */ + getSession(): Buffer | undefined; + /** + * See [SSL\_get\_shared\_sigalgs](https://www.openssl.org/docs/man1.1.1/man3/SSL_get_shared_sigalgs.html) for more information. + * @since v12.11.0 + * @return List of signature algorithms shared between the server and the client in the order of decreasing preference. + */ + getSharedSigalgs(): string[]; + /** + * For a client, returns the TLS session ticket if one is available, or`undefined`. For a server, always returns `undefined`. + * + * It may be useful for debugging. + * + * See `Session Resumption` for more information. + * @since v0.11.4 + */ + getTLSTicket(): Buffer | undefined; + /** + * See `Session Resumption` for more information. + * @since v0.5.6 + * @return `true` if the session was reused, `false` otherwise. + */ + isSessionReused(): boolean; + /** + * The `tlsSocket.renegotiate()` method initiates a TLS renegotiation process. + * Upon completion, the `callback` function will be passed a single argument + * that is either an `Error` (if the request failed) or `null`. + * + * This method can be used to request a peer's certificate after the secure + * connection has been established. + * + * When running as the server, the socket will be destroyed with an error after`handshakeTimeout` timeout. + * + * For TLSv1.3, renegotiation cannot be initiated, it is not supported by the + * protocol. + * @since v0.11.8 + * @param callback If `renegotiate()` returned `true`, callback is attached once to the `'secure'` event. If `renegotiate()` returned `false`, `callback` will be called in the next tick with + * an error, unless the `tlsSocket` has been destroyed, in which case `callback` will not be called at all. + * @return `true` if renegotiation was initiated, `false` otherwise. + */ + renegotiate( + options: { + rejectUnauthorized?: boolean | undefined; + requestCert?: boolean | undefined; + }, + callback: (err: Error | null) => void + ): undefined | boolean; + /** + * The `tlsSocket.setMaxSendFragment()` method sets the maximum TLS fragment size. + * Returns `true` if setting the limit succeeded; `false` otherwise. + * + * Smaller fragment sizes decrease the buffering latency on the client: larger + * fragments are buffered by the TLS layer until the entire fragment is received + * and its integrity is verified; large fragments can span multiple roundtrips + * and their processing can be delayed due to packet loss or reordering. However, + * smaller fragments add extra TLS framing bytes and CPU overhead, which may + * decrease overall server throughput. + * @since v0.11.11 + * @param [size=16384] The maximum TLS fragment size. The maximum value is `16384`. + */ + setMaxSendFragment(size: number): boolean; + /** + * Disables TLS renegotiation for this `TLSSocket` instance. Once called, attempts + * to renegotiate will trigger an `'error'` event on the `TLSSocket`. + * @since v8.4.0 + */ + disableRenegotiation(): void; + /** + * When enabled, TLS packet trace information is written to `stderr`. This can be + * used to debug TLS connection problems. + * + * The format of the output is identical to the output of`openssl s_client -trace` or `openssl s_server -trace`. While it is produced by + * OpenSSL's `SSL_trace()` function, the format is undocumented, can change + * without notice, and should not be relied on. + * @since v12.2.0 + */ + enableTrace(): void; + /** + * Returns the peer certificate as an `X509Certificate` object. + * + * If there is no peer certificate, or the socket has been destroyed,`undefined` will be returned. + * @since v15.9.0 + */ + getPeerX509Certificate(): X509Certificate | undefined; + /** + * Returns the local certificate as an `X509Certificate` object. + * + * If there is no local certificate, or the socket has been destroyed,`undefined` will be returned. + * @since v15.9.0 + */ + getX509Certificate(): X509Certificate | undefined; + /** + * Keying material is used for validations to prevent different kind of attacks in + * network protocols, for example in the specifications of IEEE 802.1X. + * + * Example + * + * ```js + * const keyingMaterial = tlsSocket.exportKeyingMaterial( + * 128, + * 'client finished'); + * + * /* + * Example return value of keyingMaterial: + * + * + * ``` + * + * See the OpenSSL [`SSL_export_keying_material`](https://www.openssl.org/docs/man1.1.1/man3/SSL_export_keying_material.html) documentation for more + * information. + * @since v13.10.0, v12.17.0 + * @param length number of bytes to retrieve from keying material + * @param label an application specific label, typically this will be a value from the [IANA Exporter Label + * Registry](https://www.iana.org/assignments/tls-parameters/tls-parameters.xhtml#exporter-labels). + * @param context Optionally provide a context. + * @return requested bytes of the keying material + */ + exportKeyingMaterial(length: number, label: string, context: Buffer): Buffer; + addListener(event: string, listener: (...args: any[]) => void): this; + addListener(event: 'OCSPResponse', listener: (response: Buffer) => void): this; + addListener(event: 'secureConnect', listener: () => void): this; + addListener(event: 'session', listener: (session: Buffer) => void): this; + addListener(event: 'keylog', listener: (line: Buffer) => void): this; + emit(event: string | symbol, ...args: any[]): boolean; + emit(event: 'OCSPResponse', response: Buffer): boolean; + emit(event: 'secureConnect'): boolean; + emit(event: 'session', session: Buffer): boolean; + emit(event: 'keylog', line: Buffer): boolean; + on(event: string, listener: (...args: any[]) => void): this; + on(event: 'OCSPResponse', listener: (response: Buffer) => void): this; + on(event: 'secureConnect', listener: () => void): this; + on(event: 'session', listener: (session: Buffer) => void): this; + on(event: 'keylog', listener: (line: Buffer) => void): this; + once(event: string, listener: (...args: any[]) => void): this; + once(event: 'OCSPResponse', listener: (response: Buffer) => void): this; + once(event: 'secureConnect', listener: () => void): this; + once(event: 'session', listener: (session: Buffer) => void): this; + once(event: 'keylog', listener: (line: Buffer) => void): this; + prependListener(event: string, listener: (...args: any[]) => void): this; + prependListener(event: 'OCSPResponse', listener: (response: Buffer) => void): this; + prependListener(event: 'secureConnect', listener: () => void): this; + prependListener(event: 'session', listener: (session: Buffer) => void): this; + prependListener(event: 'keylog', listener: (line: Buffer) => void): this; + prependOnceListener(event: string, listener: (...args: any[]) => void): this; + prependOnceListener(event: 'OCSPResponse', listener: (response: Buffer) => void): this; + prependOnceListener(event: 'secureConnect', listener: () => void): this; + prependOnceListener(event: 'session', listener: (session: Buffer) => void): this; + prependOnceListener(event: 'keylog', listener: (line: Buffer) => void): this; + } + interface CommonConnectionOptions { + /** + * An optional TLS context object from tls.createSecureContext() + */ + secureContext?: SecureContext | undefined; + /** + * When enabled, TLS packet trace information is written to `stderr`. This can be + * used to debug TLS connection problems. + * @default false + */ + enableTrace?: boolean | undefined; + /** + * If true the server will request a certificate from clients that + * connect and attempt to verify that certificate. Defaults to + * false. + */ + requestCert?: boolean | undefined; + /** + * An array of strings or a Buffer naming possible ALPN protocols. + * (Protocols should be ordered by their priority.) + */ + ALPNProtocols?: string[] | Uint8Array[] | Uint8Array | undefined; + /** + * SNICallback(servername, cb) A function that will be + * called if the client supports SNI TLS extension. Two arguments + * will be passed when called: servername and cb. SNICallback should + * invoke cb(null, ctx), where ctx is a SecureContext instance. + * (tls.createSecureContext(...) can be used to get a proper + * SecureContext.) If SNICallback wasn't provided the default callback + * with high-level API will be used (see below). + */ + SNICallback?: ((servername: string, cb: (err: Error | null, ctx?: SecureContext) => void) => void) | undefined; + /** + * If true the server will reject any connection which is not + * authorized with the list of supplied CAs. This option only has an + * effect if requestCert is true. + * @default true + */ + rejectUnauthorized?: boolean | undefined; + } + interface TlsOptions extends SecureContextOptions, CommonConnectionOptions, net.ServerOpts { + /** + * Abort the connection if the SSL/TLS handshake does not finish in the + * specified number of milliseconds. A 'tlsClientError' is emitted on + * the tls.Server object whenever a handshake times out. Default: + * 120000 (120 seconds). + */ + handshakeTimeout?: number | undefined; + /** + * The number of seconds after which a TLS session created by the + * server will no longer be resumable. See Session Resumption for more + * information. Default: 300. + */ + sessionTimeout?: number | undefined; + /** + * 48-bytes of cryptographically strong pseudo-random data. + */ + ticketKeys?: Buffer | undefined; + /** + * + * @param socket + * @param identity identity parameter sent from the client. + * @return pre-shared key that must either be + * a buffer or `null` to stop the negotiation process. Returned PSK must be + * compatible with the selected cipher's digest. + * + * When negotiating TLS-PSK (pre-shared keys), this function is called + * with the identity provided by the client. + * If the return value is `null` the negotiation process will stop and an + * "unknown_psk_identity" alert message will be sent to the other party. + * If the server wishes to hide the fact that the PSK identity was not known, + * the callback must provide some random data as `psk` to make the connection + * fail with "decrypt_error" before negotiation is finished. + * PSK ciphers are disabled by default, and using TLS-PSK thus + * requires explicitly specifying a cipher suite with the `ciphers` option. + * More information can be found in the RFC 4279. + */ + pskCallback?(socket: TLSSocket, identity: string): DataView | NodeJS.TypedArray | null; + /** + * hint to send to a client to help + * with selecting the identity during TLS-PSK negotiation. Will be ignored + * in TLS 1.3. Upon failing to set pskIdentityHint `tlsClientError` will be + * emitted with `ERR_TLS_PSK_SET_IDENTIY_HINT_FAILED` code. + */ + pskIdentityHint?: string | undefined; + } + interface PSKCallbackNegotation { + psk: DataView | NodeJS.TypedArray; + identity: string; + } + interface ConnectionOptions extends SecureContextOptions, CommonConnectionOptions { + host?: string | undefined; + port?: number | undefined; + path?: string | undefined; // Creates unix socket connection to path. If this option is specified, `host` and `port` are ignored. + socket?: stream.Duplex | undefined; // Establish secure connection on a given socket rather than creating a new socket + checkServerIdentity?: typeof checkServerIdentity | undefined; + servername?: string | undefined; // SNI TLS Extension + session?: Buffer | undefined; + minDHSize?: number | undefined; + lookup?: net.LookupFunction | undefined; + timeout?: number | undefined; + /** + * When negotiating TLS-PSK (pre-shared keys), this function is called + * with optional identity `hint` provided by the server or `null` + * in case of TLS 1.3 where `hint` was removed. + * It will be necessary to provide a custom `tls.checkServerIdentity()` + * for the connection as the default one will try to check hostname/IP + * of the server against the certificate but that's not applicable for PSK + * because there won't be a certificate present. + * More information can be found in the RFC 4279. + * + * @param hint message sent from the server to help client + * decide which identity to use during negotiation. + * Always `null` if TLS 1.3 is used. + * @returns Return `null` to stop the negotiation process. `psk` must be + * compatible with the selected cipher's digest. + * `identity` must use UTF-8 encoding. + */ + pskCallback?(hint: string | null): PSKCallbackNegotation | null; + } + /** + * Accepts encrypted connections using TLS or SSL. + * @since v0.3.2 + */ + class Server extends net.Server { + constructor(secureConnectionListener?: (socket: TLSSocket) => void); + constructor(options: TlsOptions, secureConnectionListener?: (socket: TLSSocket) => void); + /** + * The `server.addContext()` method adds a secure context that will be used if + * the client request's SNI name matches the supplied `hostname` (or wildcard). + * + * When there are multiple matching contexts, the most recently added one is + * used. + * @since v0.5.3 + * @param hostname A SNI host name or wildcard (e.g. `'*'`) + * @param context An object containing any of the possible properties from the {@link createSecureContext} `options` arguments (e.g. `key`, `cert`, `ca`, etc). + */ + addContext(hostname: string, context: SecureContextOptions): void; + /** + * Returns the session ticket keys. + * + * See `Session Resumption` for more information. + * @since v3.0.0 + * @return A 48-byte buffer containing the session ticket keys. + */ + getTicketKeys(): Buffer; + /** + * The `server.setSecureContext()` method replaces the secure context of an + * existing server. Existing connections to the server are not interrupted. + * @since v11.0.0 + * @param options An object containing any of the possible properties from the {@link createSecureContext} `options` arguments (e.g. `key`, `cert`, `ca`, etc). + */ + setSecureContext(options: SecureContextOptions): void; + /** + * Sets the session ticket keys. + * + * Changes to the ticket keys are effective only for future server connections. + * Existing or currently pending server connections will use the previous keys. + * + * See `Session Resumption` for more information. + * @since v3.0.0 + * @param keys A 48-byte buffer containing the session ticket keys. + */ + setTicketKeys(keys: Buffer): void; + /** + * events.EventEmitter + * 1. tlsClientError + * 2. newSession + * 3. OCSPRequest + * 4. resumeSession + * 5. secureConnection + * 6. keylog + */ + addListener(event: string, listener: (...args: any[]) => void): this; + addListener(event: 'tlsClientError', listener: (err: Error, tlsSocket: TLSSocket) => void): this; + addListener(event: 'newSession', listener: (sessionId: Buffer, sessionData: Buffer, callback: () => void) => void): this; + addListener(event: 'OCSPRequest', listener: (certificate: Buffer, issuer: Buffer, callback: (err: Error | null, resp: Buffer) => void) => void): this; + addListener(event: 'resumeSession', listener: (sessionId: Buffer, callback: (err: Error | null, sessionData: Buffer | null) => void) => void): this; + addListener(event: 'secureConnection', listener: (tlsSocket: TLSSocket) => void): this; + addListener(event: 'keylog', listener: (line: Buffer, tlsSocket: TLSSocket) => void): this; + emit(event: string | symbol, ...args: any[]): boolean; + emit(event: 'tlsClientError', err: Error, tlsSocket: TLSSocket): boolean; + emit(event: 'newSession', sessionId: Buffer, sessionData: Buffer, callback: () => void): boolean; + emit(event: 'OCSPRequest', certificate: Buffer, issuer: Buffer, callback: (err: Error | null, resp: Buffer) => void): boolean; + emit(event: 'resumeSession', sessionId: Buffer, callback: (err: Error | null, sessionData: Buffer | null) => void): boolean; + emit(event: 'secureConnection', tlsSocket: TLSSocket): boolean; + emit(event: 'keylog', line: Buffer, tlsSocket: TLSSocket): boolean; + on(event: string, listener: (...args: any[]) => void): this; + on(event: 'tlsClientError', listener: (err: Error, tlsSocket: TLSSocket) => void): this; + on(event: 'newSession', listener: (sessionId: Buffer, sessionData: Buffer, callback: () => void) => void): this; + on(event: 'OCSPRequest', listener: (certificate: Buffer, issuer: Buffer, callback: (err: Error | null, resp: Buffer) => void) => void): this; + on(event: 'resumeSession', listener: (sessionId: Buffer, callback: (err: Error | null, sessionData: Buffer | null) => void) => void): this; + on(event: 'secureConnection', listener: (tlsSocket: TLSSocket) => void): this; + on(event: 'keylog', listener: (line: Buffer, tlsSocket: TLSSocket) => void): this; + once(event: string, listener: (...args: any[]) => void): this; + once(event: 'tlsClientError', listener: (err: Error, tlsSocket: TLSSocket) => void): this; + once(event: 'newSession', listener: (sessionId: Buffer, sessionData: Buffer, callback: () => void) => void): this; + once(event: 'OCSPRequest', listener: (certificate: Buffer, issuer: Buffer, callback: (err: Error | null, resp: Buffer) => void) => void): this; + once(event: 'resumeSession', listener: (sessionId: Buffer, callback: (err: Error | null, sessionData: Buffer | null) => void) => void): this; + once(event: 'secureConnection', listener: (tlsSocket: TLSSocket) => void): this; + once(event: 'keylog', listener: (line: Buffer, tlsSocket: TLSSocket) => void): this; + prependListener(event: string, listener: (...args: any[]) => void): this; + prependListener(event: 'tlsClientError', listener: (err: Error, tlsSocket: TLSSocket) => void): this; + prependListener(event: 'newSession', listener: (sessionId: Buffer, sessionData: Buffer, callback: () => void) => void): this; + prependListener(event: 'OCSPRequest', listener: (certificate: Buffer, issuer: Buffer, callback: (err: Error | null, resp: Buffer) => void) => void): this; + prependListener(event: 'resumeSession', listener: (sessionId: Buffer, callback: (err: Error | null, sessionData: Buffer | null) => void) => void): this; + prependListener(event: 'secureConnection', listener: (tlsSocket: TLSSocket) => void): this; + prependListener(event: 'keylog', listener: (line: Buffer, tlsSocket: TLSSocket) => void): this; + prependOnceListener(event: string, listener: (...args: any[]) => void): this; + prependOnceListener(event: 'tlsClientError', listener: (err: Error, tlsSocket: TLSSocket) => void): this; + prependOnceListener(event: 'newSession', listener: (sessionId: Buffer, sessionData: Buffer, callback: () => void) => void): this; + prependOnceListener(event: 'OCSPRequest', listener: (certificate: Buffer, issuer: Buffer, callback: (err: Error | null, resp: Buffer) => void) => void): this; + prependOnceListener(event: 'resumeSession', listener: (sessionId: Buffer, callback: (err: Error | null, sessionData: Buffer | null) => void) => void): this; + prependOnceListener(event: 'secureConnection', listener: (tlsSocket: TLSSocket) => void): this; + prependOnceListener(event: 'keylog', listener: (line: Buffer, tlsSocket: TLSSocket) => void): this; + } + /** + * @deprecated since v0.11.3 Use `tls.TLSSocket` instead. + */ + interface SecurePair { + encrypted: TLSSocket; + cleartext: TLSSocket; + } + type SecureVersion = 'TLSv1.3' | 'TLSv1.2' | 'TLSv1.1' | 'TLSv1'; + interface SecureContextOptions { + /** + * Optionally override the trusted CA certificates. Default is to trust + * the well-known CAs curated by Mozilla. Mozilla's CAs are completely + * replaced when CAs are explicitly specified using this option. + */ + ca?: string | Buffer | Array | undefined; + /** + * Cert chains in PEM format. One cert chain should be provided per + * private key. Each cert chain should consist of the PEM formatted + * certificate for a provided private key, followed by the PEM + * formatted intermediate certificates (if any), in order, and not + * including the root CA (the root CA must be pre-known to the peer, + * see ca). When providing multiple cert chains, they do not have to + * be in the same order as their private keys in key. If the + * intermediate certificates are not provided, the peer will not be + * able to validate the certificate, and the handshake will fail. + */ + cert?: string | Buffer | Array | undefined; + /** + * Colon-separated list of supported signature algorithms. The list + * can contain digest algorithms (SHA256, MD5 etc.), public key + * algorithms (RSA-PSS, ECDSA etc.), combination of both (e.g + * 'RSA+SHA384') or TLS v1.3 scheme names (e.g. rsa_pss_pss_sha512). + */ + sigalgs?: string | undefined; + /** + * Cipher suite specification, replacing the default. For more + * information, see modifying the default cipher suite. Permitted + * ciphers can be obtained via tls.getCiphers(). Cipher names must be + * uppercased in order for OpenSSL to accept them. + */ + ciphers?: string | undefined; + /** + * Name of an OpenSSL engine which can provide the client certificate. + */ + clientCertEngine?: string | undefined; + /** + * PEM formatted CRLs (Certificate Revocation Lists). + */ + crl?: string | Buffer | Array | undefined; + /** + * Diffie Hellman parameters, required for Perfect Forward Secrecy. Use + * openssl dhparam to create the parameters. The key length must be + * greater than or equal to 1024 bits or else an error will be thrown. + * Although 1024 bits is permissible, use 2048 bits or larger for + * stronger security. If omitted or invalid, the parameters are + * silently discarded and DHE ciphers will not be available. + */ + dhparam?: string | Buffer | undefined; + /** + * A string describing a named curve or a colon separated list of curve + * NIDs or names, for example P-521:P-384:P-256, to use for ECDH key + * agreement. Set to auto to select the curve automatically. Use + * crypto.getCurves() to obtain a list of available curve names. On + * recent releases, openssl ecparam -list_curves will also display the + * name and description of each available elliptic curve. Default: + * tls.DEFAULT_ECDH_CURVE. + */ + ecdhCurve?: string | undefined; + /** + * Attempt to use the server's cipher suite preferences instead of the + * client's. When true, causes SSL_OP_CIPHER_SERVER_PREFERENCE to be + * set in secureOptions + */ + honorCipherOrder?: boolean | undefined; + /** + * Private keys in PEM format. PEM allows the option of private keys + * being encrypted. Encrypted keys will be decrypted with + * options.passphrase. Multiple keys using different algorithms can be + * provided either as an array of unencrypted key strings or buffers, + * or an array of objects in the form {pem: [, + * passphrase: ]}. The object form can only occur in an array. + * object.passphrase is optional. Encrypted keys will be decrypted with + * object.passphrase if provided, or options.passphrase if it is not. + */ + key?: string | Buffer | Array | undefined; + /** + * Name of an OpenSSL engine to get private key from. Should be used + * together with privateKeyIdentifier. + */ + privateKeyEngine?: string | undefined; + /** + * Identifier of a private key managed by an OpenSSL engine. Should be + * used together with privateKeyEngine. Should not be set together with + * key, because both options define a private key in different ways. + */ + privateKeyIdentifier?: string | undefined; + /** + * Optionally set the maximum TLS version to allow. One + * of `'TLSv1.3'`, `'TLSv1.2'`, `'TLSv1.1'`, or `'TLSv1'`. Cannot be specified along with the + * `secureProtocol` option, use one or the other. + * **Default:** `'TLSv1.3'`, unless changed using CLI options. Using + * `--tls-max-v1.2` sets the default to `'TLSv1.2'`. Using `--tls-max-v1.3` sets the default to + * `'TLSv1.3'`. If multiple of the options are provided, the highest maximum is used. + */ + maxVersion?: SecureVersion | undefined; + /** + * Optionally set the minimum TLS version to allow. One + * of `'TLSv1.3'`, `'TLSv1.2'`, `'TLSv1.1'`, or `'TLSv1'`. Cannot be specified along with the + * `secureProtocol` option, use one or the other. It is not recommended to use + * less than TLSv1.2, but it may be required for interoperability. + * **Default:** `'TLSv1.2'`, unless changed using CLI options. Using + * `--tls-v1.0` sets the default to `'TLSv1'`. Using `--tls-v1.1` sets the default to + * `'TLSv1.1'`. Using `--tls-min-v1.3` sets the default to + * 'TLSv1.3'. If multiple of the options are provided, the lowest minimum is used. + */ + minVersion?: SecureVersion | undefined; + /** + * Shared passphrase used for a single private key and/or a PFX. + */ + passphrase?: string | undefined; + /** + * PFX or PKCS12 encoded private key and certificate chain. pfx is an + * alternative to providing key and cert individually. PFX is usually + * encrypted, if it is, passphrase will be used to decrypt it. Multiple + * PFX can be provided either as an array of unencrypted PFX buffers, + * or an array of objects in the form {buf: [, + * passphrase: ]}. The object form can only occur in an array. + * object.passphrase is optional. Encrypted PFX will be decrypted with + * object.passphrase if provided, or options.passphrase if it is not. + */ + pfx?: string | Buffer | Array | undefined; + /** + * Optionally affect the OpenSSL protocol behavior, which is not + * usually necessary. This should be used carefully if at all! Value is + * a numeric bitmask of the SSL_OP_* options from OpenSSL Options + */ + secureOptions?: number | undefined; // Value is a numeric bitmask of the `SSL_OP_*` options + /** + * Legacy mechanism to select the TLS protocol version to use, it does + * not support independent control of the minimum and maximum version, + * and does not support limiting the protocol to TLSv1.3. Use + * minVersion and maxVersion instead. The possible values are listed as + * SSL_METHODS, use the function names as strings. For example, use + * 'TLSv1_1_method' to force TLS version 1.1, or 'TLS_method' to allow + * any TLS protocol version up to TLSv1.3. It is not recommended to use + * TLS versions less than 1.2, but it may be required for + * interoperability. Default: none, see minVersion. + */ + secureProtocol?: string | undefined; + /** + * Opaque identifier used by servers to ensure session state is not + * shared between applications. Unused by clients. + */ + sessionIdContext?: string | undefined; + /** + * 48-bytes of cryptographically strong pseudo-random data. + * See Session Resumption for more information. + */ + ticketKeys?: Buffer | undefined; + /** + * The number of seconds after which a TLS session created by the + * server will no longer be resumable. See Session Resumption for more + * information. Default: 300. + */ + sessionTimeout?: number | undefined; + } + interface SecureContext { + context: any; + } + /** + * Verifies the certificate `cert` is issued to `hostname`. + * + * Returns [Error](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error) object, populating it with `reason`, `host`, and `cert` on + * failure. On success, returns [undefined](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Undefined_type). + * + * This function is intended to be used in combination with the`checkServerIdentity` option that can be passed to {@link connect} and as + * such operates on a `certificate object`. For other purposes, consider using `x509.checkHost()` instead. + * + * This function can be overwritten by providing an alternative function as the`options.checkServerIdentity` option that is passed to `tls.connect()`. The + * overwriting function can call `tls.checkServerIdentity()` of course, to augment + * the checks done with additional verification. + * + * This function is only called if the certificate passed all other checks, such as + * being issued by trusted CA (`options.ca`). + * + * Earlier versions of Node.js incorrectly accepted certificates for a given`hostname` if a matching `uniformResourceIdentifier` subject alternative name + * was present (see [CVE-2021-44531](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44531)). Applications that wish to accept`uniformResourceIdentifier` subject alternative names can use + * a custom`options.checkServerIdentity` function that implements the desired behavior. + * @since v0.8.4 + * @param hostname The host name or IP address to verify the certificate against. + * @param cert A `certificate object` representing the peer's certificate. + */ + function checkServerIdentity(hostname: string, cert: PeerCertificate): Error | undefined; + /** + * Creates a new {@link Server}. The `secureConnectionListener`, if provided, is + * automatically set as a listener for the `'secureConnection'` event. + * + * The `ticketKeys` options is automatically shared between `cluster` module + * workers. + * + * The following illustrates a simple echo server: + * + * ```js + * const tls = require('tls'); + * const fs = require('fs'); + * + * const options = { + * key: fs.readFileSync('server-key.pem'), + * cert: fs.readFileSync('server-cert.pem'), + * + * // This is necessary only if using client certificate authentication. + * requestCert: true, + * + * // This is necessary only if the client uses a self-signed certificate. + * ca: [ fs.readFileSync('client-cert.pem') ] + * }; + * + * const server = tls.createServer(options, (socket) => { + * console.log('server connected', + * socket.authorized ? 'authorized' : 'unauthorized'); + * socket.write('welcome!\n'); + * socket.setEncoding('utf8'); + * socket.pipe(socket); + * }); + * server.listen(8000, () => { + * console.log('server bound'); + * }); + * ``` + * + * The server can be tested by connecting to it using the example client from {@link connect}. + * @since v0.3.2 + */ + function createServer(secureConnectionListener?: (socket: TLSSocket) => void): Server; + function createServer(options: TlsOptions, secureConnectionListener?: (socket: TLSSocket) => void): Server; + /** + * The `callback` function, if specified, will be added as a listener for the `'secureConnect'` event. + * + * `tls.connect()` returns a {@link TLSSocket} object. + * + * Unlike the `https` API, `tls.connect()` does not enable the + * SNI (Server Name Indication) extension by default, which may cause some + * servers to return an incorrect certificate or reject the connection + * altogether. To enable SNI, set the `servername` option in addition + * to `host`. + * + * The following illustrates a client for the echo server example from {@link createServer}: + * + * ```js + * // Assumes an echo server that is listening on port 8000. + * const tls = require('tls'); + * const fs = require('fs'); + * + * const options = { + * // Necessary only if the server requires client certificate authentication. + * key: fs.readFileSync('client-key.pem'), + * cert: fs.readFileSync('client-cert.pem'), + * + * // Necessary only if the server uses a self-signed certificate. + * ca: [ fs.readFileSync('server-cert.pem') ], + * + * // Necessary only if the server's cert isn't for "localhost". + * checkServerIdentity: () => { return null; }, + * }; + * + * const socket = tls.connect(8000, options, () => { + * console.log('client connected', + * socket.authorized ? 'authorized' : 'unauthorized'); + * process.stdin.pipe(socket); + * process.stdin.resume(); + * }); + * socket.setEncoding('utf8'); + * socket.on('data', (data) => { + * console.log(data); + * }); + * socket.on('end', () => { + * console.log('server ends connection'); + * }); + * ``` + * @since v0.11.3 + */ + function connect(options: ConnectionOptions, secureConnectListener?: () => void): TLSSocket; + function connect(port: number, host?: string, options?: ConnectionOptions, secureConnectListener?: () => void): TLSSocket; + function connect(port: number, options?: ConnectionOptions, secureConnectListener?: () => void): TLSSocket; + /** + * Creates a new secure pair object with two streams, one of which reads and writes + * the encrypted data and the other of which reads and writes the cleartext data. + * Generally, the encrypted stream is piped to/from an incoming encrypted data + * stream and the cleartext one is used as a replacement for the initial encrypted + * stream. + * + * `tls.createSecurePair()` returns a `tls.SecurePair` object with `cleartext` and`encrypted` stream properties. + * + * Using `cleartext` has the same API as {@link TLSSocket}. + * + * The `tls.createSecurePair()` method is now deprecated in favor of`tls.TLSSocket()`. For example, the code: + * + * ```js + * pair = tls.createSecurePair(// ... ); + * pair.encrypted.pipe(socket); + * socket.pipe(pair.encrypted); + * ``` + * + * can be replaced by: + * + * ```js + * secureSocket = tls.TLSSocket(socket, options); + * ``` + * + * where `secureSocket` has the same API as `pair.cleartext`. + * @since v0.3.2 + * @deprecated Since v0.11.3 - Use {@link TLSSocket} instead. + * @param context A secure context object as returned by `tls.createSecureContext()` + * @param isServer `true` to specify that this TLS connection should be opened as a server. + * @param requestCert `true` to specify whether a server should request a certificate from a connecting client. Only applies when `isServer` is `true`. + * @param rejectUnauthorized If not `false` a server automatically reject clients with invalid certificates. Only applies when `isServer` is `true`. + */ + function createSecurePair(context?: SecureContext, isServer?: boolean, requestCert?: boolean, rejectUnauthorized?: boolean): SecurePair; + /** + * {@link createServer} sets the default value of the `honorCipherOrder` option + * to `true`, other APIs that create secure contexts leave it unset. + * + * {@link createServer} uses a 128 bit truncated SHA1 hash value generated + * from `process.argv` as the default value of the `sessionIdContext` option, other + * APIs that create secure contexts have no default value. + * + * The `tls.createSecureContext()` method creates a `SecureContext` object. It is + * usable as an argument to several `tls` APIs, such as {@link createServer} and `server.addContext()`, but has no public methods. + * + * A key is _required_ for ciphers that use certificates. Either `key` or`pfx` can be used to provide it. + * + * If the `ca` option is not given, then Node.js will default to using [Mozilla's publicly trusted list of + * CAs](https://hg.mozilla.org/mozilla-central/raw-file/tip/security/nss/lib/ckfw/builtins/certdata.txt). + * @since v0.11.13 + */ + function createSecureContext(options?: SecureContextOptions): SecureContext; + /** + * Returns an array with the names of the supported TLS ciphers. The names are + * lower-case for historical reasons, but must be uppercased to be used in + * the `ciphers` option of {@link createSecureContext}. + * + * Not all supported ciphers are enabled by default. See `Modifying the default TLS cipher suite`. + * + * Cipher names that start with `'tls_'` are for TLSv1.3, all the others are for + * TLSv1.2 and below. + * + * ```js + * console.log(tls.getCiphers()); // ['aes128-gcm-sha256', 'aes128-sha', ...] + * ``` + * @since v0.10.2 + */ + function getCiphers(): string[]; + /** + * The default curve name to use for ECDH key agreement in a tls server. + * The default value is 'auto'. See tls.createSecureContext() for further + * information. + */ + let DEFAULT_ECDH_CURVE: string; + /** + * The default value of the maxVersion option of + * tls.createSecureContext(). It can be assigned any of the supported TLS + * protocol versions, 'TLSv1.3', 'TLSv1.2', 'TLSv1.1', or 'TLSv1'. Default: + * 'TLSv1.3', unless changed using CLI options. Using --tls-max-v1.2 sets + * the default to 'TLSv1.2'. Using --tls-max-v1.3 sets the default to + * 'TLSv1.3'. If multiple of the options are provided, the highest maximum + * is used. + */ + let DEFAULT_MAX_VERSION: SecureVersion; + /** + * The default value of the minVersion option of tls.createSecureContext(). + * It can be assigned any of the supported TLS protocol versions, + * 'TLSv1.3', 'TLSv1.2', 'TLSv1.1', or 'TLSv1'. Default: 'TLSv1.2', unless + * changed using CLI options. Using --tls-min-v1.0 sets the default to + * 'TLSv1'. Using --tls-min-v1.1 sets the default to 'TLSv1.1'. Using + * --tls-min-v1.3 sets the default to 'TLSv1.3'. If multiple of the options + * are provided, the lowest minimum is used. + */ + let DEFAULT_MIN_VERSION: SecureVersion; + /** + * An immutable array of strings representing the root certificates (in PEM + * format) used for verifying peer certificates. This is the default value + * of the ca option to tls.createSecureContext(). + */ + const rootCertificates: ReadonlyArray; +} +declare module 'node:tls' { + export * from 'tls'; +} diff --git a/node_modules/@types/node/trace_events.d.ts b/node_modules/@types/node/trace_events.d.ts new file mode 100644 index 000000000..d47aa9311 --- /dev/null +++ b/node_modules/@types/node/trace_events.d.ts @@ -0,0 +1,171 @@ +/** + * The `trace_events` module provides a mechanism to centralize tracing information + * generated by V8, Node.js core, and userspace code. + * + * Tracing can be enabled with the `--trace-event-categories` command-line flag + * or by using the `trace_events` module. The `--trace-event-categories` flag + * accepts a list of comma-separated category names. + * + * The available categories are: + * + * * `node`: An empty placeholder. + * * `node.async_hooks`: Enables capture of detailed `async_hooks` trace data. + * The `async_hooks` events have a unique `asyncId` and a special `triggerId` `triggerAsyncId` property. + * * `node.bootstrap`: Enables capture of Node.js bootstrap milestones. + * * `node.console`: Enables capture of `console.time()` and `console.count()`output. + * * `node.dns.native`: Enables capture of trace data for DNS queries. + * * `node.environment`: Enables capture of Node.js Environment milestones. + * * `node.fs.sync`: Enables capture of trace data for file system sync methods. + * * `node.perf`: Enables capture of `Performance API` measurements. + * * `node.perf.usertiming`: Enables capture of only Performance API User Timing + * measures and marks. + * * `node.perf.timerify`: Enables capture of only Performance API timerify + * measurements. + * * `node.promises.rejections`: Enables capture of trace data tracking the number + * of unhandled Promise rejections and handled-after-rejections. + * * `node.vm.script`: Enables capture of trace data for the `vm` module's`runInNewContext()`, `runInContext()`, and `runInThisContext()` methods. + * * `v8`: The `V8` events are GC, compiling, and execution related. + * + * By default the `node`, `node.async_hooks`, and `v8` categories are enabled. + * + * ```bash + * node --trace-event-categories v8,node,node.async_hooks server.js + * ``` + * + * Prior versions of Node.js required the use of the `--trace-events-enabled`flag to enable trace events. This requirement has been removed. However, the`--trace-events-enabled` flag _may_ still be + * used and will enable the`node`, `node.async_hooks`, and `v8` trace event categories by default. + * + * ```bash + * node --trace-events-enabled + * + * # is equivalent to + * + * node --trace-event-categories v8,node,node.async_hooks + * ``` + * + * Alternatively, trace events may be enabled using the `trace_events` module: + * + * ```js + * const trace_events = require('trace_events'); + * const tracing = trace_events.createTracing({ categories: ['node.perf'] }); + * tracing.enable(); // Enable trace event capture for the 'node.perf' category + * + * // do work + * + * tracing.disable(); // Disable trace event capture for the 'node.perf' category + * ``` + * + * Running Node.js with tracing enabled will produce log files that can be opened + * in the [`chrome://tracing`](https://www.chromium.org/developers/how-tos/trace-event-profiling-tool) tab of Chrome. + * + * The logging file is by default called `node_trace.${rotation}.log`, where`${rotation}` is an incrementing log-rotation id. The filepath pattern can + * be specified with `--trace-event-file-pattern` that accepts a template + * string that supports `${rotation}` and `${pid}`: + * + * ```bash + * node --trace-event-categories v8 --trace-event-file-pattern '${pid}-${rotation}.log' server.js + * ``` + * + * To guarantee that the log file is properly generated after signal events like`SIGINT`, `SIGTERM`, or `SIGBREAK`, make sure to have the appropriate handlers + * in your code, such as: + * + * ```js + * process.on('SIGINT', function onSigint() { + * console.info('Received SIGINT.'); + * process.exit(130); // Or applicable exit code depending on OS and signal + * }); + * ``` + * + * The tracing system uses the same time source + * as the one used by `process.hrtime()`. + * However the trace-event timestamps are expressed in microseconds, + * unlike `process.hrtime()` which returns nanoseconds. + * + * The features from this module are not available in `Worker` threads. + * @experimental + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/trace_events.js) + */ +declare module 'trace_events' { + /** + * The `Tracing` object is used to enable or disable tracing for sets of + * categories. Instances are created using the + * `trace_events.createTracing()` method. + * + * When created, the `Tracing` object is disabled. Calling the + * `tracing.enable()` method adds the categories to the set of enabled trace + * event categories. Calling `tracing.disable()` will remove the categories + * from the set of enabled trace event categories. + */ + interface Tracing { + /** + * A comma-separated list of the trace event categories covered by this + * `Tracing` object. + */ + readonly categories: string; + /** + * Disables this `Tracing` object. + * + * Only trace event categories _not_ covered by other enabled `Tracing` + * objects and _not_ specified by the `--trace-event-categories` flag + * will be disabled. + */ + disable(): void; + /** + * Enables this `Tracing` object for the set of categories covered by + * the `Tracing` object. + */ + enable(): void; + /** + * `true` only if the `Tracing` object has been enabled. + */ + readonly enabled: boolean; + } + interface CreateTracingOptions { + /** + * An array of trace category names. Values included in the array are + * coerced to a string when possible. An error will be thrown if the + * value cannot be coerced. + */ + categories: string[]; + } + /** + * Creates and returns a `Tracing` object for the given set of `categories`. + * + * ```js + * const trace_events = require('trace_events'); + * const categories = ['node.perf', 'node.async_hooks']; + * const tracing = trace_events.createTracing({ categories }); + * tracing.enable(); + * // do stuff + * tracing.disable(); + * ``` + * @since v10.0.0 + * @return . + */ + function createTracing(options: CreateTracingOptions): Tracing; + /** + * Returns a comma-separated list of all currently-enabled trace event + * categories. The current set of enabled trace event categories is determined + * by the _union_ of all currently-enabled `Tracing` objects and any categories + * enabled using the `--trace-event-categories` flag. + * + * Given the file `test.js` below, the command`node --trace-event-categories node.perf test.js` will print`'node.async_hooks,node.perf'` to the console. + * + * ```js + * const trace_events = require('trace_events'); + * const t1 = trace_events.createTracing({ categories: ['node.async_hooks'] }); + * const t2 = trace_events.createTracing({ categories: ['node.perf'] }); + * const t3 = trace_events.createTracing({ categories: ['v8'] }); + * + * t1.enable(); + * t2.enable(); + * + * console.log(trace_events.getEnabledCategories()); + * ``` + * @since v10.0.0 + */ + function getEnabledCategories(): string | undefined; +} +declare module 'node:trace_events' { + export * from 'trace_events'; +} diff --git a/node_modules/@types/node/ts4.8/assert.d.ts b/node_modules/@types/node/ts4.8/assert.d.ts new file mode 100644 index 000000000..8e02a66a0 --- /dev/null +++ b/node_modules/@types/node/ts4.8/assert.d.ts @@ -0,0 +1,911 @@ +/** + * The `assert` module provides a set of assertion functions for verifying + * invariants. + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/assert.js) + */ +declare module 'assert' { + /** + * An alias of {@link ok}. + * @since v0.5.9 + * @param value The input that is checked for being truthy. + */ + function assert(value: unknown, message?: string | Error): asserts value; + namespace assert { + /** + * Indicates the failure of an assertion. All errors thrown by the `assert` module + * will be instances of the `AssertionError` class. + */ + class AssertionError extends Error { + actual: unknown; + expected: unknown; + operator: string; + generatedMessage: boolean; + code: 'ERR_ASSERTION'; + constructor(options?: { + /** If provided, the error message is set to this value. */ + message?: string | undefined; + /** The `actual` property on the error instance. */ + actual?: unknown | undefined; + /** The `expected` property on the error instance. */ + expected?: unknown | undefined; + /** The `operator` property on the error instance. */ + operator?: string | undefined; + /** If provided, the generated stack trace omits frames before this function. */ + // tslint:disable-next-line:ban-types + stackStartFn?: Function | undefined; + }); + } + /** + * This feature is currently experimental and behavior might still change. + * @since v14.2.0, v12.19.0 + * @experimental + */ + class CallTracker { + /** + * The wrapper function is expected to be called exactly `exact` times. If the + * function has not been called exactly `exact` times when `tracker.verify()` is called, then `tracker.verify()` will throw an + * error. + * + * ```js + * import assert from 'assert'; + * + * // Creates call tracker. + * const tracker = new assert.CallTracker(); + * + * function func() {} + * + * // Returns a function that wraps func() that must be called exact times + * // before tracker.verify(). + * const callsfunc = tracker.calls(func); + * ``` + * @since v14.2.0, v12.19.0 + * @param [fn='A no-op function'] + * @param [exact=1] + * @return that wraps `fn`. + */ + calls(exact?: number): () => void; + calls any>(fn?: Func, exact?: number): Func; + /** + * The arrays contains information about the expected and actual number of calls of + * the functions that have not been called the expected number of times. + * + * ```js + * import assert from 'assert'; + * + * // Creates call tracker. + * const tracker = new assert.CallTracker(); + * + * function func() {} + * + * function foo() {} + * + * // Returns a function that wraps func() that must be called exact times + * // before tracker.verify(). + * const callsfunc = tracker.calls(func, 2); + * + * // Returns an array containing information on callsfunc() + * tracker.report(); + * // [ + * // { + * // message: 'Expected the func function to be executed 2 time(s) but was + * // executed 0 time(s).', + * // actual: 0, + * // expected: 2, + * // operator: 'func', + * // stack: stack trace + * // } + * // ] + * ``` + * @since v14.2.0, v12.19.0 + * @return of objects containing information about the wrapper functions returned by `calls`. + */ + report(): CallTrackerReportInformation[]; + /** + * Iterates through the list of functions passed to `tracker.calls()` and will throw an error for functions that + * have not been called the expected number of times. + * + * ```js + * import assert from 'assert'; + * + * // Creates call tracker. + * const tracker = new assert.CallTracker(); + * + * function func() {} + * + * // Returns a function that wraps func() that must be called exact times + * // before tracker.verify(). + * const callsfunc = tracker.calls(func, 2); + * + * callsfunc(); + * + * // Will throw an error since callsfunc() was only called once. + * tracker.verify(); + * ``` + * @since v14.2.0, v12.19.0 + */ + verify(): void; + } + interface CallTrackerReportInformation { + message: string; + /** The actual number of times the function was called. */ + actual: number; + /** The number of times the function was expected to be called. */ + expected: number; + /** The name of the function that is wrapped. */ + operator: string; + /** A stack trace of the function. */ + stack: object; + } + type AssertPredicate = RegExp | (new () => object) | ((thrown: unknown) => boolean) | object | Error; + /** + * Throws an `AssertionError` with the provided error message or a default + * error message. If the `message` parameter is an instance of an `Error` then + * it will be thrown instead of the `AssertionError`. + * + * ```js + * import assert from 'assert/strict'; + * + * assert.fail(); + * // AssertionError [ERR_ASSERTION]: Failed + * + * assert.fail('boom'); + * // AssertionError [ERR_ASSERTION]: boom + * + * assert.fail(new TypeError('need array')); + * // TypeError: need array + * ``` + * + * Using `assert.fail()` with more than two arguments is possible but deprecated. + * See below for further details. + * @since v0.1.21 + * @param [message='Failed'] + */ + function fail(message?: string | Error): never; + /** @deprecated since v10.0.0 - use fail([message]) or other assert functions instead. */ + function fail( + actual: unknown, + expected: unknown, + message?: string | Error, + operator?: string, + // tslint:disable-next-line:ban-types + stackStartFn?: Function + ): never; + /** + * Tests if `value` is truthy. It is equivalent to`assert.equal(!!value, true, message)`. + * + * If `value` is not truthy, an `AssertionError` is thrown with a `message`property set equal to the value of the `message` parameter. If the `message`parameter is `undefined`, a default + * error message is assigned. If the `message`parameter is an instance of an `Error` then it will be thrown instead of the`AssertionError`. + * If no arguments are passed in at all `message` will be set to the string:`` 'No value argument passed to `assert.ok()`' ``. + * + * Be aware that in the `repl` the error message will be different to the one + * thrown in a file! See below for further details. + * + * ```js + * import assert from 'assert/strict'; + * + * assert.ok(true); + * // OK + * assert.ok(1); + * // OK + * + * assert.ok(); + * // AssertionError: No value argument passed to `assert.ok()` + * + * assert.ok(false, 'it\'s false'); + * // AssertionError: it's false + * + * // In the repl: + * assert.ok(typeof 123 === 'string'); + * // AssertionError: false == true + * + * // In a file (e.g. test.js): + * assert.ok(typeof 123 === 'string'); + * // AssertionError: The expression evaluated to a falsy value: + * // + * // assert.ok(typeof 123 === 'string') + * + * assert.ok(false); + * // AssertionError: The expression evaluated to a falsy value: + * // + * // assert.ok(false) + * + * assert.ok(0); + * // AssertionError: The expression evaluated to a falsy value: + * // + * // assert.ok(0) + * ``` + * + * ```js + * import assert from 'assert/strict'; + * + * // Using `assert()` works the same: + * assert(0); + * // AssertionError: The expression evaluated to a falsy value: + * // + * // assert(0) + * ``` + * @since v0.1.21 + */ + function ok(value: unknown, message?: string | Error): asserts value; + /** + * **Strict assertion mode** + * + * An alias of {@link strictEqual}. + * + * **Legacy assertion mode** + * + * > Stability: 3 - Legacy: Use {@link strictEqual} instead. + * + * Tests shallow, coercive equality between the `actual` and `expected` parameters + * using the [`==` operator](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Equality). `NaN` is specially handled + * and treated as being identical if both sides are `NaN`. + * + * ```js + * import assert from 'assert'; + * + * assert.equal(1, 1); + * // OK, 1 == 1 + * assert.equal(1, '1'); + * // OK, 1 == '1' + * assert.equal(NaN, NaN); + * // OK + * + * assert.equal(1, 2); + * // AssertionError: 1 == 2 + * assert.equal({ a: { b: 1 } }, { a: { b: 1 } }); + * // AssertionError: { a: { b: 1 } } == { a: { b: 1 } } + * ``` + * + * If the values are not equal, an `AssertionError` is thrown with a `message`property set equal to the value of the `message` parameter. If the `message`parameter is undefined, a default + * error message is assigned. If the `message`parameter is an instance of an `Error` then it will be thrown instead of the`AssertionError`. + * @since v0.1.21 + */ + function equal(actual: unknown, expected: unknown, message?: string | Error): void; + /** + * **Strict assertion mode** + * + * An alias of {@link notStrictEqual}. + * + * **Legacy assertion mode** + * + * > Stability: 3 - Legacy: Use {@link notStrictEqual} instead. + * + * Tests shallow, coercive inequality with the [`!=` operator](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Inequality). `NaN` is + * specially handled and treated as being identical if both sides are `NaN`. + * + * ```js + * import assert from 'assert'; + * + * assert.notEqual(1, 2); + * // OK + * + * assert.notEqual(1, 1); + * // AssertionError: 1 != 1 + * + * assert.notEqual(1, '1'); + * // AssertionError: 1 != '1' + * ``` + * + * If the values are equal, an `AssertionError` is thrown with a `message`property set equal to the value of the `message` parameter. If the `message`parameter is undefined, a default error + * message is assigned. If the `message`parameter is an instance of an `Error` then it will be thrown instead of the`AssertionError`. + * @since v0.1.21 + */ + function notEqual(actual: unknown, expected: unknown, message?: string | Error): void; + /** + * **Strict assertion mode** + * + * An alias of {@link deepStrictEqual}. + * + * **Legacy assertion mode** + * + * > Stability: 3 - Legacy: Use {@link deepStrictEqual} instead. + * + * Tests for deep equality between the `actual` and `expected` parameters. Consider + * using {@link deepStrictEqual} instead. {@link deepEqual} can have + * surprising results. + * + * _Deep equality_ means that the enumerable "own" properties of child objects + * are also recursively evaluated by the following rules. + * @since v0.1.21 + */ + function deepEqual(actual: unknown, expected: unknown, message?: string | Error): void; + /** + * **Strict assertion mode** + * + * An alias of {@link notDeepStrictEqual}. + * + * **Legacy assertion mode** + * + * > Stability: 3 - Legacy: Use {@link notDeepStrictEqual} instead. + * + * Tests for any deep inequality. Opposite of {@link deepEqual}. + * + * ```js + * import assert from 'assert'; + * + * const obj1 = { + * a: { + * b: 1 + * } + * }; + * const obj2 = { + * a: { + * b: 2 + * } + * }; + * const obj3 = { + * a: { + * b: 1 + * } + * }; + * const obj4 = Object.create(obj1); + * + * assert.notDeepEqual(obj1, obj1); + * // AssertionError: { a: { b: 1 } } notDeepEqual { a: { b: 1 } } + * + * assert.notDeepEqual(obj1, obj2); + * // OK + * + * assert.notDeepEqual(obj1, obj3); + * // AssertionError: { a: { b: 1 } } notDeepEqual { a: { b: 1 } } + * + * assert.notDeepEqual(obj1, obj4); + * // OK + * ``` + * + * If the values are deeply equal, an `AssertionError` is thrown with a`message` property set equal to the value of the `message` parameter. If the`message` parameter is undefined, a default + * error message is assigned. If the`message` parameter is an instance of an `Error` then it will be thrown + * instead of the `AssertionError`. + * @since v0.1.21 + */ + function notDeepEqual(actual: unknown, expected: unknown, message?: string | Error): void; + /** + * Tests strict equality between the `actual` and `expected` parameters as + * determined by [`Object.is()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/is). + * + * ```js + * import assert from 'assert/strict'; + * + * assert.strictEqual(1, 2); + * // AssertionError [ERR_ASSERTION]: Expected inputs to be strictly equal: + * // + * // 1 !== 2 + * + * assert.strictEqual(1, 1); + * // OK + * + * assert.strictEqual('Hello foobar', 'Hello World!'); + * // AssertionError [ERR_ASSERTION]: Expected inputs to be strictly equal: + * // + actual - expected + * // + * // + 'Hello foobar' + * // - 'Hello World!' + * // ^ + * + * const apples = 1; + * const oranges = 2; + * assert.strictEqual(apples, oranges, `apples ${apples} !== oranges ${oranges}`); + * // AssertionError [ERR_ASSERTION]: apples 1 !== oranges 2 + * + * assert.strictEqual(1, '1', new TypeError('Inputs are not identical')); + * // TypeError: Inputs are not identical + * ``` + * + * If the values are not strictly equal, an `AssertionError` is thrown with a`message` property set equal to the value of the `message` parameter. If the`message` parameter is undefined, a + * default error message is assigned. If the`message` parameter is an instance of an `Error` then it will be thrown + * instead of the `AssertionError`. + * @since v0.1.21 + */ + function strictEqual(actual: unknown, expected: T, message?: string | Error): asserts actual is T; + /** + * Tests strict inequality between the `actual` and `expected` parameters as + * determined by [`Object.is()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/is). + * + * ```js + * import assert from 'assert/strict'; + * + * assert.notStrictEqual(1, 2); + * // OK + * + * assert.notStrictEqual(1, 1); + * // AssertionError [ERR_ASSERTION]: Expected "actual" to be strictly unequal to: + * // + * // 1 + * + * assert.notStrictEqual(1, '1'); + * // OK + * ``` + * + * If the values are strictly equal, an `AssertionError` is thrown with a`message` property set equal to the value of the `message` parameter. If the`message` parameter is undefined, a + * default error message is assigned. If the`message` parameter is an instance of an `Error` then it will be thrown + * instead of the `AssertionError`. + * @since v0.1.21 + */ + function notStrictEqual(actual: unknown, expected: unknown, message?: string | Error): void; + /** + * Tests for deep equality between the `actual` and `expected` parameters. + * "Deep" equality means that the enumerable "own" properties of child objects + * are recursively evaluated also by the following rules. + * @since v1.2.0 + */ + function deepStrictEqual(actual: unknown, expected: T, message?: string | Error): asserts actual is T; + /** + * Tests for deep strict inequality. Opposite of {@link deepStrictEqual}. + * + * ```js + * import assert from 'assert/strict'; + * + * assert.notDeepStrictEqual({ a: 1 }, { a: '1' }); + * // OK + * ``` + * + * If the values are deeply and strictly equal, an `AssertionError` is thrown + * with a `message` property set equal to the value of the `message` parameter. If + * the `message` parameter is undefined, a default error message is assigned. If + * the `message` parameter is an instance of an `Error` then it will be thrown + * instead of the `AssertionError`. + * @since v1.2.0 + */ + function notDeepStrictEqual(actual: unknown, expected: unknown, message?: string | Error): void; + /** + * Expects the function `fn` to throw an error. + * + * If specified, `error` can be a [`Class`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes), + * [`RegExp`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions), a validation function, + * a validation object where each property will be tested for strict deep equality, + * or an instance of error where each property will be tested for strict deep + * equality including the non-enumerable `message` and `name` properties. When + * using an object, it is also possible to use a regular expression, when + * validating against a string property. See below for examples. + * + * If specified, `message` will be appended to the message provided by the`AssertionError` if the `fn` call fails to throw or in case the error validation + * fails. + * + * Custom validation object/error instance: + * + * ```js + * import assert from 'assert/strict'; + * + * const err = new TypeError('Wrong value'); + * err.code = 404; + * err.foo = 'bar'; + * err.info = { + * nested: true, + * baz: 'text' + * }; + * err.reg = /abc/i; + * + * assert.throws( + * () => { + * throw err; + * }, + * { + * name: 'TypeError', + * message: 'Wrong value', + * info: { + * nested: true, + * baz: 'text' + * } + * // Only properties on the validation object will be tested for. + * // Using nested objects requires all properties to be present. Otherwise + * // the validation is going to fail. + * } + * ); + * + * // Using regular expressions to validate error properties: + * throws( + * () => { + * throw err; + * }, + * { + * // The `name` and `message` properties are strings and using regular + * // expressions on those will match against the string. If they fail, an + * // error is thrown. + * name: /^TypeError$/, + * message: /Wrong/, + * foo: 'bar', + * info: { + * nested: true, + * // It is not possible to use regular expressions for nested properties! + * baz: 'text' + * }, + * // The `reg` property contains a regular expression and only if the + * // validation object contains an identical regular expression, it is going + * // to pass. + * reg: /abc/i + * } + * ); + * + * // Fails due to the different `message` and `name` properties: + * throws( + * () => { + * const otherErr = new Error('Not found'); + * // Copy all enumerable properties from `err` to `otherErr`. + * for (const [key, value] of Object.entries(err)) { + * otherErr[key] = value; + * } + * throw otherErr; + * }, + * // The error's `message` and `name` properties will also be checked when using + * // an error as validation object. + * err + * ); + * ``` + * + * Validate instanceof using constructor: + * + * ```js + * import assert from 'assert/strict'; + * + * assert.throws( + * () => { + * throw new Error('Wrong value'); + * }, + * Error + * ); + * ``` + * + * Validate error message using [`RegExp`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions): + * + * Using a regular expression runs `.toString` on the error object, and will + * therefore also include the error name. + * + * ```js + * import assert from 'assert/strict'; + * + * assert.throws( + * () => { + * throw new Error('Wrong value'); + * }, + * /^Error: Wrong value$/ + * ); + * ``` + * + * Custom error validation: + * + * The function must return `true` to indicate all internal validations passed. + * It will otherwise fail with an `AssertionError`. + * + * ```js + * import assert from 'assert/strict'; + * + * assert.throws( + * () => { + * throw new Error('Wrong value'); + * }, + * (err) => { + * assert(err instanceof Error); + * assert(/value/.test(err)); + * // Avoid returning anything from validation functions besides `true`. + * // Otherwise, it's not clear what part of the validation failed. Instead, + * // throw an error about the specific validation that failed (as done in this + * // example) and add as much helpful debugging information to that error as + * // possible. + * return true; + * }, + * 'unexpected error' + * ); + * ``` + * + * `error` cannot be a string. If a string is provided as the second + * argument, then `error` is assumed to be omitted and the string will be used for`message` instead. This can lead to easy-to-miss mistakes. Using the same + * message as the thrown error message is going to result in an`ERR_AMBIGUOUS_ARGUMENT` error. Please read the example below carefully if using + * a string as the second argument gets considered: + * + * ```js + * import assert from 'assert/strict'; + * + * function throwingFirst() { + * throw new Error('First'); + * } + * + * function throwingSecond() { + * throw new Error('Second'); + * } + * + * function notThrowing() {} + * + * // The second argument is a string and the input function threw an Error. + * // The first case will not throw as it does not match for the error message + * // thrown by the input function! + * assert.throws(throwingFirst, 'Second'); + * // In the next example the message has no benefit over the message from the + * // error and since it is not clear if the user intended to actually match + * // against the error message, Node.js throws an `ERR_AMBIGUOUS_ARGUMENT` error. + * assert.throws(throwingSecond, 'Second'); + * // TypeError [ERR_AMBIGUOUS_ARGUMENT] + * + * // The string is only used (as message) in case the function does not throw: + * assert.throws(notThrowing, 'Second'); + * // AssertionError [ERR_ASSERTION]: Missing expected exception: Second + * + * // If it was intended to match for the error message do this instead: + * // It does not throw because the error messages match. + * assert.throws(throwingSecond, /Second$/); + * + * // If the error message does not match, an AssertionError is thrown. + * assert.throws(throwingFirst, /Second$/); + * // AssertionError [ERR_ASSERTION] + * ``` + * + * Due to the confusing error-prone notation, avoid a string as the second + * argument. + * @since v0.1.21 + */ + function throws(block: () => unknown, message?: string | Error): void; + function throws(block: () => unknown, error: AssertPredicate, message?: string | Error): void; + /** + * Asserts that the function `fn` does not throw an error. + * + * Using `assert.doesNotThrow()` is actually not useful because there + * is no benefit in catching an error and then rethrowing it. Instead, consider + * adding a comment next to the specific code path that should not throw and keep + * error messages as expressive as possible. + * + * When `assert.doesNotThrow()` is called, it will immediately call the `fn`function. + * + * If an error is thrown and it is the same type as that specified by the `error`parameter, then an `AssertionError` is thrown. If the error is of a + * different type, or if the `error` parameter is undefined, the error is + * propagated back to the caller. + * + * If specified, `error` can be a [`Class`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes), + * [`RegExp`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions) or a validation + * function. See {@link throws} for more details. + * + * The following, for instance, will throw the `TypeError` because there is no + * matching error type in the assertion: + * + * ```js + * import assert from 'assert/strict'; + * + * assert.doesNotThrow( + * () => { + * throw new TypeError('Wrong value'); + * }, + * SyntaxError + * ); + * ``` + * + * However, the following will result in an `AssertionError` with the message + * 'Got unwanted exception...': + * + * ```js + * import assert from 'assert/strict'; + * + * assert.doesNotThrow( + * () => { + * throw new TypeError('Wrong value'); + * }, + * TypeError + * ); + * ``` + * + * If an `AssertionError` is thrown and a value is provided for the `message`parameter, the value of `message` will be appended to the `AssertionError` message: + * + * ```js + * import assert from 'assert/strict'; + * + * assert.doesNotThrow( + * () => { + * throw new TypeError('Wrong value'); + * }, + * /Wrong value/, + * 'Whoops' + * ); + * // Throws: AssertionError: Got unwanted exception: Whoops + * ``` + * @since v0.1.21 + */ + function doesNotThrow(block: () => unknown, message?: string | Error): void; + function doesNotThrow(block: () => unknown, error: AssertPredicate, message?: string | Error): void; + /** + * Throws `value` if `value` is not `undefined` or `null`. This is useful when + * testing the `error` argument in callbacks. The stack trace contains all frames + * from the error passed to `ifError()` including the potential new frames for`ifError()` itself. + * + * ```js + * import assert from 'assert/strict'; + * + * assert.ifError(null); + * // OK + * assert.ifError(0); + * // AssertionError [ERR_ASSERTION]: ifError got unwanted exception: 0 + * assert.ifError('error'); + * // AssertionError [ERR_ASSERTION]: ifError got unwanted exception: 'error' + * assert.ifError(new Error()); + * // AssertionError [ERR_ASSERTION]: ifError got unwanted exception: Error + * + * // Create some random error frames. + * let err; + * (function errorFrame() { + * err = new Error('test error'); + * })(); + * + * (function ifErrorFrame() { + * assert.ifError(err); + * })(); + * // AssertionError [ERR_ASSERTION]: ifError got unwanted exception: test error + * // at ifErrorFrame + * // at errorFrame + * ``` + * @since v0.1.97 + */ + function ifError(value: unknown): asserts value is null | undefined; + /** + * Awaits the `asyncFn` promise or, if `asyncFn` is a function, immediately + * calls the function and awaits the returned promise to complete. It will then + * check that the promise is rejected. + * + * If `asyncFn` is a function and it throws an error synchronously,`assert.rejects()` will return a rejected `Promise` with that error. If the + * function does not return a promise, `assert.rejects()` will return a rejected`Promise` with an `ERR_INVALID_RETURN_VALUE` error. In both cases the error + * handler is skipped. + * + * Besides the async nature to await the completion behaves identically to {@link throws}. + * + * If specified, `error` can be a [`Class`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes), + * [`RegExp`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions), a validation function, + * an object where each property will be tested for, or an instance of error where + * each property will be tested for including the non-enumerable `message` and`name` properties. + * + * If specified, `message` will be the message provided by the `AssertionError` if the `asyncFn` fails to reject. + * + * ```js + * import assert from 'assert/strict'; + * + * await assert.rejects( + * async () => { + * throw new TypeError('Wrong value'); + * }, + * { + * name: 'TypeError', + * message: 'Wrong value' + * } + * ); + * ``` + * + * ```js + * import assert from 'assert/strict'; + * + * await assert.rejects( + * async () => { + * throw new TypeError('Wrong value'); + * }, + * (err) => { + * assert.strictEqual(err.name, 'TypeError'); + * assert.strictEqual(err.message, 'Wrong value'); + * return true; + * } + * ); + * ``` + * + * ```js + * import assert from 'assert/strict'; + * + * assert.rejects( + * Promise.reject(new Error('Wrong value')), + * Error + * ).then(() => { + * // ... + * }); + * ``` + * + * `error` cannot be a string. If a string is provided as the second + * argument, then `error` is assumed to be omitted and the string will be used for`message` instead. This can lead to easy-to-miss mistakes. Please read the + * example in {@link throws} carefully if using a string as the second + * argument gets considered. + * @since v10.0.0 + */ + function rejects(block: (() => Promise) | Promise, message?: string | Error): Promise; + function rejects(block: (() => Promise) | Promise, error: AssertPredicate, message?: string | Error): Promise; + /** + * Awaits the `asyncFn` promise or, if `asyncFn` is a function, immediately + * calls the function and awaits the returned promise to complete. It will then + * check that the promise is not rejected. + * + * If `asyncFn` is a function and it throws an error synchronously,`assert.doesNotReject()` will return a rejected `Promise` with that error. If + * the function does not return a promise, `assert.doesNotReject()` will return a + * rejected `Promise` with an `ERR_INVALID_RETURN_VALUE` error. In both cases + * the error handler is skipped. + * + * Using `assert.doesNotReject()` is actually not useful because there is little + * benefit in catching a rejection and then rejecting it again. Instead, consider + * adding a comment next to the specific code path that should not reject and keep + * error messages as expressive as possible. + * + * If specified, `error` can be a [`Class`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes), + * [`RegExp`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions) or a validation + * function. See {@link throws} for more details. + * + * Besides the async nature to await the completion behaves identically to {@link doesNotThrow}. + * + * ```js + * import assert from 'assert/strict'; + * + * await assert.doesNotReject( + * async () => { + * throw new TypeError('Wrong value'); + * }, + * SyntaxError + * ); + * ``` + * + * ```js + * import assert from 'assert/strict'; + * + * assert.doesNotReject(Promise.reject(new TypeError('Wrong value'))) + * .then(() => { + * // ... + * }); + * ``` + * @since v10.0.0 + */ + function doesNotReject(block: (() => Promise) | Promise, message?: string | Error): Promise; + function doesNotReject(block: (() => Promise) | Promise, error: AssertPredicate, message?: string | Error): Promise; + /** + * Expects the `string` input to match the regular expression. + * + * ```js + * import assert from 'assert/strict'; + * + * assert.match('I will fail', /pass/); + * // AssertionError [ERR_ASSERTION]: The input did not match the regular ... + * + * assert.match(123, /pass/); + * // AssertionError [ERR_ASSERTION]: The "string" argument must be of type string. + * + * assert.match('I will pass', /pass/); + * // OK + * ``` + * + * If the values do not match, or if the `string` argument is of another type than`string`, an `AssertionError` is thrown with a `message` property set equal + * to the value of the `message` parameter. If the `message` parameter is + * undefined, a default error message is assigned. If the `message` parameter is an + * instance of an `Error` then it will be thrown instead of the `AssertionError`. + * @since v13.6.0, v12.16.0 + */ + function match(value: string, regExp: RegExp, message?: string | Error): void; + /** + * Expects the `string` input not to match the regular expression. + * + * ```js + * import assert from 'assert/strict'; + * + * assert.doesNotMatch('I will fail', /fail/); + * // AssertionError [ERR_ASSERTION]: The input was expected to not match the ... + * + * assert.doesNotMatch(123, /pass/); + * // AssertionError [ERR_ASSERTION]: The "string" argument must be of type string. + * + * assert.doesNotMatch('I will pass', /different/); + * // OK + * ``` + * + * If the values do match, or if the `string` argument is of another type than`string`, an `AssertionError` is thrown with a `message` property set equal + * to the value of the `message` parameter. If the `message` parameter is + * undefined, a default error message is assigned. If the `message` parameter is an + * instance of an `Error` then it will be thrown instead of the `AssertionError`. + * @since v13.6.0, v12.16.0 + */ + function doesNotMatch(value: string, regExp: RegExp, message?: string | Error): void; + const strict: Omit & { + (value: unknown, message?: string | Error): asserts value; + equal: typeof strictEqual; + notEqual: typeof notStrictEqual; + deepEqual: typeof deepStrictEqual; + notDeepEqual: typeof notDeepStrictEqual; + // Mapped types and assertion functions are incompatible? + // TS2775: Assertions require every name in the call target + // to be declared with an explicit type annotation. + ok: typeof ok; + strictEqual: typeof strictEqual; + deepStrictEqual: typeof deepStrictEqual; + ifError: typeof ifError; + strict: typeof strict; + }; + } + export = assert; +} +declare module 'node:assert' { + import assert = require('assert'); + export = assert; +} diff --git a/node_modules/@types/node/ts4.8/assert/strict.d.ts b/node_modules/@types/node/ts4.8/assert/strict.d.ts new file mode 100644 index 000000000..b4319b974 --- /dev/null +++ b/node_modules/@types/node/ts4.8/assert/strict.d.ts @@ -0,0 +1,8 @@ +declare module 'assert/strict' { + import { strict } from 'node:assert'; + export = strict; +} +declare module 'node:assert/strict' { + import { strict } from 'node:assert'; + export = strict; +} diff --git a/node_modules/@types/node/ts4.8/async_hooks.d.ts b/node_modules/@types/node/ts4.8/async_hooks.d.ts new file mode 100644 index 000000000..0bf473965 --- /dev/null +++ b/node_modules/@types/node/ts4.8/async_hooks.d.ts @@ -0,0 +1,501 @@ +/** + * The `async_hooks` module provides an API to track asynchronous resources. It + * can be accessed using: + * + * ```js + * import async_hooks from 'async_hooks'; + * ``` + * @experimental + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/async_hooks.js) + */ +declare module 'async_hooks' { + /** + * ```js + * import { executionAsyncId } from 'async_hooks'; + * + * console.log(executionAsyncId()); // 1 - bootstrap + * fs.open(path, 'r', (err, fd) => { + * console.log(executionAsyncId()); // 6 - open() + * }); + * ``` + * + * The ID returned from `executionAsyncId()` is related to execution timing, not + * causality (which is covered by `triggerAsyncId()`): + * + * ```js + * const server = net.createServer((conn) => { + * // Returns the ID of the server, not of the new connection, because the + * // callback runs in the execution scope of the server's MakeCallback(). + * async_hooks.executionAsyncId(); + * + * }).listen(port, () => { + * // Returns the ID of a TickObject (process.nextTick()) because all + * // callbacks passed to .listen() are wrapped in a nextTick(). + * async_hooks.executionAsyncId(); + * }); + * ``` + * + * Promise contexts may not get precise `executionAsyncIds` by default. + * See the section on `promise execution tracking`. + * @since v8.1.0 + * @return The `asyncId` of the current execution context. Useful to track when something calls. + */ + function executionAsyncId(): number; + /** + * Resource objects returned by `executionAsyncResource()` are most often internal + * Node.js handle objects with undocumented APIs. Using any functions or properties + * on the object is likely to crash your application and should be avoided. + * + * Using `executionAsyncResource()` in the top-level execution context will + * return an empty object as there is no handle or request object to use, + * but having an object representing the top-level can be helpful. + * + * ```js + * import { open } from 'fs'; + * import { executionAsyncId, executionAsyncResource } from 'async_hooks'; + * + * console.log(executionAsyncId(), executionAsyncResource()); // 1 {} + * open(new URL(import.meta.url), 'r', (err, fd) => { + * console.log(executionAsyncId(), executionAsyncResource()); // 7 FSReqWrap + * }); + * ``` + * + * This can be used to implement continuation local storage without the + * use of a tracking `Map` to store the metadata: + * + * ```js + * import { createServer } from 'http'; + * import { + * executionAsyncId, + * executionAsyncResource, + * createHook + * } from 'async_hooks'; + * const sym = Symbol('state'); // Private symbol to avoid pollution + * + * createHook({ + * init(asyncId, type, triggerAsyncId, resource) { + * const cr = executionAsyncResource(); + * if (cr) { + * resource[sym] = cr[sym]; + * } + * } + * }).enable(); + * + * const server = createServer((req, res) => { + * executionAsyncResource()[sym] = { state: req.url }; + * setTimeout(function() { + * res.end(JSON.stringify(executionAsyncResource()[sym])); + * }, 100); + * }).listen(3000); + * ``` + * @since v13.9.0, v12.17.0 + * @return The resource representing the current execution. Useful to store data within the resource. + */ + function executionAsyncResource(): object; + /** + * ```js + * const server = net.createServer((conn) => { + * // The resource that caused (or triggered) this callback to be called + * // was that of the new connection. Thus the return value of triggerAsyncId() + * // is the asyncId of "conn". + * async_hooks.triggerAsyncId(); + * + * }).listen(port, () => { + * // Even though all callbacks passed to .listen() are wrapped in a nextTick() + * // the callback itself exists because the call to the server's .listen() + * // was made. So the return value would be the ID of the server. + * async_hooks.triggerAsyncId(); + * }); + * ``` + * + * Promise contexts may not get valid `triggerAsyncId`s by default. See + * the section on `promise execution tracking`. + * @return The ID of the resource responsible for calling the callback that is currently being executed. + */ + function triggerAsyncId(): number; + interface HookCallbacks { + /** + * Called when a class is constructed that has the possibility to emit an asynchronous event. + * @param asyncId a unique ID for the async resource + * @param type the type of the async resource + * @param triggerAsyncId the unique ID of the async resource in whose execution context this async resource was created + * @param resource reference to the resource representing the async operation, needs to be released during destroy + */ + init?(asyncId: number, type: string, triggerAsyncId: number, resource: object): void; + /** + * When an asynchronous operation is initiated or completes a callback is called to notify the user. + * The before callback is called just before said callback is executed. + * @param asyncId the unique identifier assigned to the resource about to execute the callback. + */ + before?(asyncId: number): void; + /** + * Called immediately after the callback specified in before is completed. + * @param asyncId the unique identifier assigned to the resource which has executed the callback. + */ + after?(asyncId: number): void; + /** + * Called when a promise has resolve() called. This may not be in the same execution id + * as the promise itself. + * @param asyncId the unique id for the promise that was resolve()d. + */ + promiseResolve?(asyncId: number): void; + /** + * Called after the resource corresponding to asyncId is destroyed + * @param asyncId a unique ID for the async resource + */ + destroy?(asyncId: number): void; + } + interface AsyncHook { + /** + * Enable the callbacks for a given AsyncHook instance. If no callbacks are provided enabling is a noop. + */ + enable(): this; + /** + * Disable the callbacks for a given AsyncHook instance from the global pool of AsyncHook callbacks to be executed. Once a hook has been disabled it will not be called again until enabled. + */ + disable(): this; + } + /** + * Registers functions to be called for different lifetime events of each async + * operation. + * + * The callbacks `init()`/`before()`/`after()`/`destroy()` are called for the + * respective asynchronous event during a resource's lifetime. + * + * All callbacks are optional. For example, if only resource cleanup needs to + * be tracked, then only the `destroy` callback needs to be passed. The + * specifics of all functions that can be passed to `callbacks` is in the `Hook Callbacks` section. + * + * ```js + * import { createHook } from 'async_hooks'; + * + * const asyncHook = createHook({ + * init(asyncId, type, triggerAsyncId, resource) { }, + * destroy(asyncId) { } + * }); + * ``` + * + * The callbacks will be inherited via the prototype chain: + * + * ```js + * class MyAsyncCallbacks { + * init(asyncId, type, triggerAsyncId, resource) { } + * destroy(asyncId) {} + * } + * + * class MyAddedCallbacks extends MyAsyncCallbacks { + * before(asyncId) { } + * after(asyncId) { } + * } + * + * const asyncHook = async_hooks.createHook(new MyAddedCallbacks()); + * ``` + * + * Because promises are asynchronous resources whose lifecycle is tracked + * via the async hooks mechanism, the `init()`, `before()`, `after()`, and`destroy()` callbacks _must not_ be async functions that return promises. + * @since v8.1.0 + * @param callbacks The `Hook Callbacks` to register + * @return Instance used for disabling and enabling hooks + */ + function createHook(callbacks: HookCallbacks): AsyncHook; + interface AsyncResourceOptions { + /** + * The ID of the execution context that created this async event. + * @default executionAsyncId() + */ + triggerAsyncId?: number | undefined; + /** + * Disables automatic `emitDestroy` when the object is garbage collected. + * This usually does not need to be set (even if `emitDestroy` is called + * manually), unless the resource's `asyncId` is retrieved and the + * sensitive API's `emitDestroy` is called with it. + * @default false + */ + requireManualDestroy?: boolean | undefined; + } + /** + * The class `AsyncResource` is designed to be extended by the embedder's async + * resources. Using this, users can easily trigger the lifetime events of their + * own resources. + * + * The `init` hook will trigger when an `AsyncResource` is instantiated. + * + * The following is an overview of the `AsyncResource` API. + * + * ```js + * import { AsyncResource, executionAsyncId } from 'async_hooks'; + * + * // AsyncResource() is meant to be extended. Instantiating a + * // new AsyncResource() also triggers init. If triggerAsyncId is omitted then + * // async_hook.executionAsyncId() is used. + * const asyncResource = new AsyncResource( + * type, { triggerAsyncId: executionAsyncId(), requireManualDestroy: false } + * ); + * + * // Run a function in the execution context of the resource. This will + * // * establish the context of the resource + * // * trigger the AsyncHooks before callbacks + * // * call the provided function `fn` with the supplied arguments + * // * trigger the AsyncHooks after callbacks + * // * restore the original execution context + * asyncResource.runInAsyncScope(fn, thisArg, ...args); + * + * // Call AsyncHooks destroy callbacks. + * asyncResource.emitDestroy(); + * + * // Return the unique ID assigned to the AsyncResource instance. + * asyncResource.asyncId(); + * + * // Return the trigger ID for the AsyncResource instance. + * asyncResource.triggerAsyncId(); + * ``` + */ + class AsyncResource { + /** + * AsyncResource() is meant to be extended. Instantiating a + * new AsyncResource() also triggers init. If triggerAsyncId is omitted then + * async_hook.executionAsyncId() is used. + * @param type The type of async event. + * @param triggerAsyncId The ID of the execution context that created + * this async event (default: `executionAsyncId()`), or an + * AsyncResourceOptions object (since v9.3.0) + */ + constructor(type: string, triggerAsyncId?: number | AsyncResourceOptions); + /** + * Binds the given function to the current execution context. + * + * The returned function will have an `asyncResource` property referencing + * the `AsyncResource` to which the function is bound. + * @since v14.8.0, v12.19.0 + * @param fn The function to bind to the current execution context. + * @param type An optional name to associate with the underlying `AsyncResource`. + */ + static bind any, ThisArg>( + fn: Func, + type?: string, + thisArg?: ThisArg + ): Func & { + asyncResource: AsyncResource; + }; + /** + * Binds the given function to execute to this `AsyncResource`'s scope. + * + * The returned function will have an `asyncResource` property referencing + * the `AsyncResource` to which the function is bound. + * @since v14.8.0, v12.19.0 + * @param fn The function to bind to the current `AsyncResource`. + */ + bind any>( + fn: Func + ): Func & { + asyncResource: AsyncResource; + }; + /** + * Call the provided function with the provided arguments in the execution context + * of the async resource. This will establish the context, trigger the AsyncHooks + * before callbacks, call the function, trigger the AsyncHooks after callbacks, and + * then restore the original execution context. + * @since v9.6.0 + * @param fn The function to call in the execution context of this async resource. + * @param thisArg The receiver to be used for the function call. + * @param args Optional arguments to pass to the function. + */ + runInAsyncScope(fn: (this: This, ...args: any[]) => Result, thisArg?: This, ...args: any[]): Result; + /** + * Call all `destroy` hooks. This should only ever be called once. An error will + * be thrown if it is called more than once. This **must** be manually called. If + * the resource is left to be collected by the GC then the `destroy` hooks will + * never be called. + * @return A reference to `asyncResource`. + */ + emitDestroy(): this; + /** + * @return The unique `asyncId` assigned to the resource. + */ + asyncId(): number; + /** + * + * @return The same `triggerAsyncId` that is passed to the `AsyncResource` constructor. + */ + triggerAsyncId(): number; + } + /** + * This class creates stores that stay coherent through asynchronous operations. + * + * While you can create your own implementation on top of the `async_hooks` module,`AsyncLocalStorage` should be preferred as it is a performant and memory safe + * implementation that involves significant optimizations that are non-obvious to + * implement. + * + * The following example uses `AsyncLocalStorage` to build a simple logger + * that assigns IDs to incoming HTTP requests and includes them in messages + * logged within each request. + * + * ```js + * import http from 'http'; + * import { AsyncLocalStorage } from 'async_hooks'; + * + * const asyncLocalStorage = new AsyncLocalStorage(); + * + * function logWithId(msg) { + * const id = asyncLocalStorage.getStore(); + * console.log(`${id !== undefined ? id : '-'}:`, msg); + * } + * + * let idSeq = 0; + * http.createServer((req, res) => { + * asyncLocalStorage.run(idSeq++, () => { + * logWithId('start'); + * // Imagine any chain of async operations here + * setImmediate(() => { + * logWithId('finish'); + * res.end(); + * }); + * }); + * }).listen(8080); + * + * http.get('http://localhost:8080'); + * http.get('http://localhost:8080'); + * // Prints: + * // 0: start + * // 1: start + * // 0: finish + * // 1: finish + * ``` + * + * Each instance of `AsyncLocalStorage` maintains an independent storage context. + * Multiple instances can safely exist simultaneously without risk of interfering + * with each other's data. + * @since v13.10.0, v12.17.0 + */ + class AsyncLocalStorage { + /** + * Disables the instance of `AsyncLocalStorage`. All subsequent calls + * to `asyncLocalStorage.getStore()` will return `undefined` until`asyncLocalStorage.run()` or `asyncLocalStorage.enterWith()` is called again. + * + * When calling `asyncLocalStorage.disable()`, all current contexts linked to the + * instance will be exited. + * + * Calling `asyncLocalStorage.disable()` is required before the`asyncLocalStorage` can be garbage collected. This does not apply to stores + * provided by the `asyncLocalStorage`, as those objects are garbage collected + * along with the corresponding async resources. + * + * Use this method when the `asyncLocalStorage` is not in use anymore + * in the current process. + * @since v13.10.0, v12.17.0 + * @experimental + */ + disable(): void; + /** + * Returns the current store. + * If called outside of an asynchronous context initialized by + * calling `asyncLocalStorage.run()` or `asyncLocalStorage.enterWith()`, it + * returns `undefined`. + * @since v13.10.0, v12.17.0 + */ + getStore(): T | undefined; + /** + * Runs a function synchronously within a context and returns its + * return value. The store is not accessible outside of the callback function. + * The store is accessible to any asynchronous operations created within the + * callback. + * + * The optional `args` are passed to the callback function. + * + * If the callback function throws an error, the error is thrown by `run()` too. + * The stacktrace is not impacted by this call and the context is exited. + * + * Example: + * + * ```js + * const store = { id: 2 }; + * try { + * asyncLocalStorage.run(store, () => { + * asyncLocalStorage.getStore(); // Returns the store object + * setTimeout(() => { + * asyncLocalStorage.getStore(); // Returns the store object + * }, 200); + * throw new Error(); + * }); + * } catch (e) { + * asyncLocalStorage.getStore(); // Returns undefined + * // The error will be caught here + * } + * ``` + * @since v13.10.0, v12.17.0 + */ + run(store: T, callback: (...args: TArgs) => R, ...args: TArgs): R; + /** + * Runs a function synchronously outside of a context and returns its + * return value. The store is not accessible within the callback function or + * the asynchronous operations created within the callback. Any `getStore()`call done within the callback function will always return `undefined`. + * + * The optional `args` are passed to the callback function. + * + * If the callback function throws an error, the error is thrown by `exit()` too. + * The stacktrace is not impacted by this call and the context is re-entered. + * + * Example: + * + * ```js + * // Within a call to run + * try { + * asyncLocalStorage.getStore(); // Returns the store object or value + * asyncLocalStorage.exit(() => { + * asyncLocalStorage.getStore(); // Returns undefined + * throw new Error(); + * }); + * } catch (e) { + * asyncLocalStorage.getStore(); // Returns the same object or value + * // The error will be caught here + * } + * ``` + * @since v13.10.0, v12.17.0 + * @experimental + */ + exit(callback: (...args: TArgs) => R, ...args: TArgs): R; + /** + * Transitions into the context for the remainder of the current + * synchronous execution and then persists the store through any following + * asynchronous calls. + * + * Example: + * + * ```js + * const store = { id: 1 }; + * // Replaces previous store with the given store object + * asyncLocalStorage.enterWith(store); + * asyncLocalStorage.getStore(); // Returns the store object + * someAsyncOperation(() => { + * asyncLocalStorage.getStore(); // Returns the same object + * }); + * ``` + * + * This transition will continue for the _entire_ synchronous execution. + * This means that if, for example, the context is entered within an event + * handler subsequent event handlers will also run within that context unless + * specifically bound to another context with an `AsyncResource`. That is why`run()` should be preferred over `enterWith()` unless there are strong reasons + * to use the latter method. + * + * ```js + * const store = { id: 1 }; + * + * emitter.on('my-event', () => { + * asyncLocalStorage.enterWith(store); + * }); + * emitter.on('my-event', () => { + * asyncLocalStorage.getStore(); // Returns the same object + * }); + * + * asyncLocalStorage.getStore(); // Returns undefined + * emitter.emit('my-event'); + * asyncLocalStorage.getStore(); // Returns the same object + * ``` + * @since v13.11.0, v12.17.0 + * @experimental + */ + enterWith(store: T): void; + } +} +declare module 'node:async_hooks' { + export * from 'async_hooks'; +} diff --git a/node_modules/@types/node/ts4.8/buffer.d.ts b/node_modules/@types/node/ts4.8/buffer.d.ts new file mode 100644 index 000000000..13ab33546 --- /dev/null +++ b/node_modules/@types/node/ts4.8/buffer.d.ts @@ -0,0 +1,2238 @@ +/** + * `Buffer` objects are used to represent a fixed-length sequence of bytes. Many + * Node.js APIs support `Buffer`s. + * + * The `Buffer` class is a subclass of JavaScript's [`Uint8Array`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array) class and + * extends it with methods that cover additional use cases. Node.js APIs accept + * plain [`Uint8Array`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array) s wherever `Buffer`s are supported as well. + * + * While the `Buffer` class is available within the global scope, it is still + * recommended to explicitly reference it via an import or require statement. + * + * ```js + * import { Buffer } from 'buffer'; + * + * // Creates a zero-filled Buffer of length 10. + * const buf1 = Buffer.alloc(10); + * + * // Creates a Buffer of length 10, + * // filled with bytes which all have the value `1`. + * const buf2 = Buffer.alloc(10, 1); + * + * // Creates an uninitialized buffer of length 10. + * // This is faster than calling Buffer.alloc() but the returned + * // Buffer instance might contain old data that needs to be + * // overwritten using fill(), write(), or other functions that fill the Buffer's + * // contents. + * const buf3 = Buffer.allocUnsafe(10); + * + * // Creates a Buffer containing the bytes [1, 2, 3]. + * const buf4 = Buffer.from([1, 2, 3]); + * + * // Creates a Buffer containing the bytes [1, 1, 1, 1] – the entries + * // are all truncated using `(value & 255)` to fit into the range 0–255. + * const buf5 = Buffer.from([257, 257.5, -255, '1']); + * + * // Creates a Buffer containing the UTF-8-encoded bytes for the string 'tést': + * // [0x74, 0xc3, 0xa9, 0x73, 0x74] (in hexadecimal notation) + * // [116, 195, 169, 115, 116] (in decimal notation) + * const buf6 = Buffer.from('tést'); + * + * // Creates a Buffer containing the Latin-1 bytes [0x74, 0xe9, 0x73, 0x74]. + * const buf7 = Buffer.from('tést', 'latin1'); + * ``` + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/buffer.js) + */ +declare module 'buffer' { + import { BinaryLike } from 'node:crypto'; + export const INSPECT_MAX_BYTES: number; + export const kMaxLength: number; + export const kStringMaxLength: number; + export const constants: { + MAX_LENGTH: number; + MAX_STRING_LENGTH: number; + }; + export type TranscodeEncoding = 'ascii' | 'utf8' | 'utf16le' | 'ucs2' | 'latin1' | 'binary'; + /** + * Re-encodes the given `Buffer` or `Uint8Array` instance from one character + * encoding to another. Returns a new `Buffer` instance. + * + * Throws if the `fromEnc` or `toEnc` specify invalid character encodings or if + * conversion from `fromEnc` to `toEnc` is not permitted. + * + * Encodings supported by `buffer.transcode()` are: `'ascii'`, `'utf8'`,`'utf16le'`, `'ucs2'`, `'latin1'`, and `'binary'`. + * + * The transcoding process will use substitution characters if a given byte + * sequence cannot be adequately represented in the target encoding. For instance: + * + * ```js + * import { Buffer, transcode } from 'buffer'; + * + * const newBuf = transcode(Buffer.from('€'), 'utf8', 'ascii'); + * console.log(newBuf.toString('ascii')); + * // Prints: '?' + * ``` + * + * Because the Euro (`€`) sign is not representable in US-ASCII, it is replaced + * with `?` in the transcoded `Buffer`. + * @since v7.1.0 + * @param source A `Buffer` or `Uint8Array` instance. + * @param fromEnc The current encoding. + * @param toEnc To target encoding. + */ + export function transcode(source: Uint8Array, fromEnc: TranscodeEncoding, toEnc: TranscodeEncoding): Buffer; + export const SlowBuffer: { + /** @deprecated since v6.0.0, use `Buffer.allocUnsafeSlow()` */ + new (size: number): Buffer; + prototype: Buffer; + }; + /** + * Resolves a `'blob:nodedata:...'` an associated `Blob` object registered using + * a prior call to `URL.createObjectURL()`. + * @since v16.7.0 + * @experimental + * @param id A `'blob:nodedata:...` URL string returned by a prior call to `URL.createObjectURL()`. + */ + export function resolveObjectURL(id: string): Blob | undefined; + export { Buffer }; + /** + * @experimental + */ + export interface BlobOptions { + /** + * @default 'utf8' + */ + encoding?: BufferEncoding | undefined; + /** + * The Blob content-type. The intent is for `type` to convey + * the MIME media type of the data, however no validation of the type format + * is performed. + */ + type?: string | undefined; + } + /** + * A [`Blob`](https://developer.mozilla.org/en-US/docs/Web/API/Blob) encapsulates immutable, raw data that can be safely shared across + * multiple worker threads. + * @since v15.7.0, v14.18.0 + */ + export class Blob { + /** + * The total size of the `Blob` in bytes. + * @since v15.7.0, v14.18.0 + */ + readonly size: number; + /** + * The content-type of the `Blob`. + * @since v15.7.0, v14.18.0 + */ + readonly type: string; + /** + * Creates a new `Blob` object containing a concatenation of the given sources. + * + * {ArrayBuffer}, {TypedArray}, {DataView}, and {Buffer} sources are copied into + * the 'Blob' and can therefore be safely modified after the 'Blob' is created. + * + * String sources are also copied into the `Blob`. + */ + constructor(sources: Array, options?: BlobOptions); + /** + * Returns a promise that fulfills with an [ArrayBuffer](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer) containing a copy of + * the `Blob` data. + * @since v15.7.0, v14.18.0 + */ + arrayBuffer(): Promise; + /** + * Creates and returns a new `Blob` containing a subset of this `Blob` objects + * data. The original `Blob` is not altered. + * @since v15.7.0, v14.18.0 + * @param start The starting index. + * @param end The ending index. + * @param type The content-type for the new `Blob` + */ + slice(start?: number, end?: number, type?: string): Blob; + /** + * Returns a promise that fulfills with the contents of the `Blob` decoded as a + * UTF-8 string. + * @since v15.7.0, v14.18.0 + */ + text(): Promise; + /** + * Returns a new `ReadableStream` that allows the content of the `Blob` to be read. + * @since v16.7.0 + */ + stream(): unknown; // pending web streams types + } + export import atob = globalThis.atob; + export import btoa = globalThis.btoa; + global { + // Buffer class + type BufferEncoding = 'ascii' | 'utf8' | 'utf-8' | 'utf16le' | 'ucs2' | 'ucs-2' | 'base64' | 'base64url' | 'latin1' | 'binary' | 'hex'; + type WithImplicitCoercion = + | T + | { + valueOf(): T; + }; + /** + * Raw data is stored in instances of the Buffer class. + * A Buffer is similar to an array of integers but corresponds to a raw memory allocation outside the V8 heap. A Buffer cannot be resized. + * Valid string encodings: 'ascii'|'utf8'|'utf16le'|'ucs2'(alias of 'utf16le')|'base64'|'base64url'|'binary'(deprecated)|'hex' + */ + interface BufferConstructor { + /** + * Allocates a new buffer containing the given {str}. + * + * @param str String to store in buffer. + * @param encoding encoding to use, optional. Default is 'utf8' + * @deprecated since v10.0.0 - Use `Buffer.from(string[, encoding])` instead. + */ + new (str: string, encoding?: BufferEncoding): Buffer; + /** + * Allocates a new buffer of {size} octets. + * + * @param size count of octets to allocate. + * @deprecated since v10.0.0 - Use `Buffer.alloc()` instead (also see `Buffer.allocUnsafe()`). + */ + new (size: number): Buffer; + /** + * Allocates a new buffer containing the given {array} of octets. + * + * @param array The octets to store. + * @deprecated since v10.0.0 - Use `Buffer.from(array)` instead. + */ + new (array: Uint8Array): Buffer; + /** + * Produces a Buffer backed by the same allocated memory as + * the given {ArrayBuffer}/{SharedArrayBuffer}. + * + * + * @param arrayBuffer The ArrayBuffer with which to share memory. + * @deprecated since v10.0.0 - Use `Buffer.from(arrayBuffer[, byteOffset[, length]])` instead. + */ + new (arrayBuffer: ArrayBuffer | SharedArrayBuffer): Buffer; + /** + * Allocates a new buffer containing the given {array} of octets. + * + * @param array The octets to store. + * @deprecated since v10.0.0 - Use `Buffer.from(array)` instead. + */ + new (array: ReadonlyArray): Buffer; + /** + * Copies the passed {buffer} data onto a new {Buffer} instance. + * + * @param buffer The buffer to copy. + * @deprecated since v10.0.0 - Use `Buffer.from(buffer)` instead. + */ + new (buffer: Buffer): Buffer; + /** + * Allocates a new `Buffer` using an `array` of bytes in the range `0` – `255`. + * Array entries outside that range will be truncated to fit into it. + * + * ```js + * import { Buffer } from 'buffer'; + * + * // Creates a new Buffer containing the UTF-8 bytes of the string 'buffer'. + * const buf = Buffer.from([0x62, 0x75, 0x66, 0x66, 0x65, 0x72]); + * ``` + * + * A `TypeError` will be thrown if `array` is not an `Array` or another type + * appropriate for `Buffer.from()` variants. + * + * `Buffer.from(array)` and `Buffer.from(string)` may also use the internal`Buffer` pool like `Buffer.allocUnsafe()` does. + * @since v5.10.0 + */ + from(arrayBuffer: WithImplicitCoercion, byteOffset?: number, length?: number): Buffer; + /** + * Creates a new Buffer using the passed {data} + * @param data data to create a new Buffer + */ + from(data: Uint8Array | ReadonlyArray): Buffer; + from(data: WithImplicitCoercion | string>): Buffer; + /** + * Creates a new Buffer containing the given JavaScript string {str}. + * If provided, the {encoding} parameter identifies the character encoding. + * If not provided, {encoding} defaults to 'utf8'. + */ + from( + str: + | WithImplicitCoercion + | { + [Symbol.toPrimitive](hint: 'string'): string; + }, + encoding?: BufferEncoding + ): Buffer; + /** + * Creates a new Buffer using the passed {data} + * @param values to create a new Buffer + */ + of(...items: number[]): Buffer; + /** + * Returns `true` if `obj` is a `Buffer`, `false` otherwise. + * + * ```js + * import { Buffer } from 'buffer'; + * + * Buffer.isBuffer(Buffer.alloc(10)); // true + * Buffer.isBuffer(Buffer.from('foo')); // true + * Buffer.isBuffer('a string'); // false + * Buffer.isBuffer([]); // false + * Buffer.isBuffer(new Uint8Array(1024)); // false + * ``` + * @since v0.1.101 + */ + isBuffer(obj: any): obj is Buffer; + /** + * Returns `true` if `encoding` is the name of a supported character encoding, + * or `false` otherwise. + * + * ```js + * import { Buffer } from 'buffer'; + * + * console.log(Buffer.isEncoding('utf8')); + * // Prints: true + * + * console.log(Buffer.isEncoding('hex')); + * // Prints: true + * + * console.log(Buffer.isEncoding('utf/8')); + * // Prints: false + * + * console.log(Buffer.isEncoding('')); + * // Prints: false + * ``` + * @since v0.9.1 + * @param encoding A character encoding name to check. + */ + isEncoding(encoding: string): encoding is BufferEncoding; + /** + * Returns the byte length of a string when encoded using `encoding`. + * This is not the same as [`String.prototype.length`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/length), which does not account + * for the encoding that is used to convert the string into bytes. + * + * For `'base64'`, `'base64url'`, and `'hex'`, this function assumes valid input. + * For strings that contain non-base64/hex-encoded data (e.g. whitespace), the + * return value might be greater than the length of a `Buffer` created from the + * string. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const str = '\u00bd + \u00bc = \u00be'; + * + * console.log(`${str}: ${str.length} characters, ` + + * `${Buffer.byteLength(str, 'utf8')} bytes`); + * // Prints: ½ + ¼ = ¾: 9 characters, 12 bytes + * ``` + * + * When `string` is a + * `Buffer`/[`DataView`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView)/[`TypedArray`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/- + * Reference/Global_Objects/TypedArray)/[`ArrayBuffer`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer)/[`SharedArrayBuffer`](https://develop- + * er.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SharedArrayBuffer), the byte length as reported by `.byteLength`is returned. + * @since v0.1.90 + * @param string A value to calculate the length of. + * @param [encoding='utf8'] If `string` is a string, this is its encoding. + * @return The number of bytes contained within `string`. + */ + byteLength(string: string | NodeJS.ArrayBufferView | ArrayBuffer | SharedArrayBuffer, encoding?: BufferEncoding): number; + /** + * Returns a new `Buffer` which is the result of concatenating all the `Buffer`instances in the `list` together. + * + * If the list has no items, or if the `totalLength` is 0, then a new zero-length`Buffer` is returned. + * + * If `totalLength` is not provided, it is calculated from the `Buffer` instances + * in `list` by adding their lengths. + * + * If `totalLength` is provided, it is coerced to an unsigned integer. If the + * combined length of the `Buffer`s in `list` exceeds `totalLength`, the result is + * truncated to `totalLength`. + * + * ```js + * import { Buffer } from 'buffer'; + * + * // Create a single `Buffer` from a list of three `Buffer` instances. + * + * const buf1 = Buffer.alloc(10); + * const buf2 = Buffer.alloc(14); + * const buf3 = Buffer.alloc(18); + * const totalLength = buf1.length + buf2.length + buf3.length; + * + * console.log(totalLength); + * // Prints: 42 + * + * const bufA = Buffer.concat([buf1, buf2, buf3], totalLength); + * + * console.log(bufA); + * // Prints: + * console.log(bufA.length); + * // Prints: 42 + * ``` + * + * `Buffer.concat()` may also use the internal `Buffer` pool like `Buffer.allocUnsafe()` does. + * @since v0.7.11 + * @param list List of `Buffer` or {@link Uint8Array} instances to concatenate. + * @param totalLength Total length of the `Buffer` instances in `list` when concatenated. + */ + concat(list: ReadonlyArray, totalLength?: number): Buffer; + /** + * Compares `buf1` to `buf2`, typically for the purpose of sorting arrays of`Buffer` instances. This is equivalent to calling `buf1.compare(buf2)`. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf1 = Buffer.from('1234'); + * const buf2 = Buffer.from('0123'); + * const arr = [buf1, buf2]; + * + * console.log(arr.sort(Buffer.compare)); + * // Prints: [ , ] + * // (This result is equal to: [buf2, buf1].) + * ``` + * @since v0.11.13 + * @return Either `-1`, `0`, or `1`, depending on the result of the comparison. See `compare` for details. + */ + compare(buf1: Uint8Array, buf2: Uint8Array): -1 | 0 | 1; + /** + * Allocates a new `Buffer` of `size` bytes. If `fill` is `undefined`, the`Buffer` will be zero-filled. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.alloc(5); + * + * console.log(buf); + * // Prints: + * ``` + * + * If `size` is larger than {@link constants.MAX_LENGTH} or smaller than 0, `ERR_INVALID_ARG_VALUE` is thrown. + * + * If `fill` is specified, the allocated `Buffer` will be initialized by calling `buf.fill(fill)`. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.alloc(5, 'a'); + * + * console.log(buf); + * // Prints: + * ``` + * + * If both `fill` and `encoding` are specified, the allocated `Buffer` will be + * initialized by calling `buf.fill(fill, encoding)`. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.alloc(11, 'aGVsbG8gd29ybGQ=', 'base64'); + * + * console.log(buf); + * // Prints: + * ``` + * + * Calling `Buffer.alloc()` can be measurably slower than the alternative `Buffer.allocUnsafe()` but ensures that the newly created `Buffer` instance + * contents will never contain sensitive data from previous allocations, including + * data that might not have been allocated for `Buffer`s. + * + * A `TypeError` will be thrown if `size` is not a number. + * @since v5.10.0 + * @param size The desired length of the new `Buffer`. + * @param [fill=0] A value to pre-fill the new `Buffer` with. + * @param [encoding='utf8'] If `fill` is a string, this is its encoding. + */ + alloc(size: number, fill?: string | Buffer | number, encoding?: BufferEncoding): Buffer; + /** + * Allocates a new `Buffer` of `size` bytes. If `size` is larger than {@link constants.MAX_LENGTH} or smaller than 0, `ERR_INVALID_ARG_VALUE` is thrown. + * + * The underlying memory for `Buffer` instances created in this way is _not_ + * _initialized_. The contents of the newly created `Buffer` are unknown and _may contain sensitive data_. Use `Buffer.alloc()` instead to initialize`Buffer` instances with zeroes. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.allocUnsafe(10); + * + * console.log(buf); + * // Prints (contents may vary): + * + * buf.fill(0); + * + * console.log(buf); + * // Prints: + * ``` + * + * A `TypeError` will be thrown if `size` is not a number. + * + * The `Buffer` module pre-allocates an internal `Buffer` instance of + * size `Buffer.poolSize` that is used as a pool for the fast allocation of new`Buffer` instances created using `Buffer.allocUnsafe()`,`Buffer.from(array)`, `Buffer.concat()`, and the + * deprecated`new Buffer(size)` constructor only when `size` is less than or equal + * to `Buffer.poolSize >> 1` (floor of `Buffer.poolSize` divided by two). + * + * Use of this pre-allocated internal memory pool is a key difference between + * calling `Buffer.alloc(size, fill)` vs. `Buffer.allocUnsafe(size).fill(fill)`. + * Specifically, `Buffer.alloc(size, fill)` will _never_ use the internal `Buffer`pool, while `Buffer.allocUnsafe(size).fill(fill)`_will_ use the internal`Buffer` pool if `size` is less + * than or equal to half `Buffer.poolSize`. The + * difference is subtle but can be important when an application requires the + * additional performance that `Buffer.allocUnsafe()` provides. + * @since v5.10.0 + * @param size The desired length of the new `Buffer`. + */ + allocUnsafe(size: number): Buffer; + /** + * Allocates a new `Buffer` of `size` bytes. If `size` is larger than {@link constants.MAX_LENGTH} or smaller than 0, `ERR_INVALID_ARG_VALUE` is thrown. A zero-length `Buffer` is created + * if `size` is 0. + * + * The underlying memory for `Buffer` instances created in this way is _not_ + * _initialized_. The contents of the newly created `Buffer` are unknown and _may contain sensitive data_. Use `buf.fill(0)` to initialize + * such `Buffer` instances with zeroes. + * + * When using `Buffer.allocUnsafe()` to allocate new `Buffer` instances, + * allocations under 4 KB are sliced from a single pre-allocated `Buffer`. This + * allows applications to avoid the garbage collection overhead of creating many + * individually allocated `Buffer` instances. This approach improves both + * performance and memory usage by eliminating the need to track and clean up as + * many individual `ArrayBuffer` objects. + * + * However, in the case where a developer may need to retain a small chunk of + * memory from a pool for an indeterminate amount of time, it may be appropriate + * to create an un-pooled `Buffer` instance using `Buffer.allocUnsafeSlow()` and + * then copying out the relevant bits. + * + * ```js + * import { Buffer } from 'buffer'; + * + * // Need to keep around a few small chunks of memory. + * const store = []; + * + * socket.on('readable', () => { + * let data; + * while (null !== (data = readable.read())) { + * // Allocate for retained data. + * const sb = Buffer.allocUnsafeSlow(10); + * + * // Copy the data into the new allocation. + * data.copy(sb, 0, 0, 10); + * + * store.push(sb); + * } + * }); + * ``` + * + * A `TypeError` will be thrown if `size` is not a number. + * @since v5.12.0 + * @param size The desired length of the new `Buffer`. + */ + allocUnsafeSlow(size: number): Buffer; + /** + * This is the size (in bytes) of pre-allocated internal `Buffer` instances used + * for pooling. This value may be modified. + * @since v0.11.3 + */ + poolSize: number; + } + interface Buffer extends Uint8Array { + /** + * Writes `string` to `buf` at `offset` according to the character encoding in`encoding`. The `length` parameter is the number of bytes to write. If `buf` did + * not contain enough space to fit the entire string, only part of `string` will be + * written. However, partially encoded characters will not be written. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.alloc(256); + * + * const len = buf.write('\u00bd + \u00bc = \u00be', 0); + * + * console.log(`${len} bytes: ${buf.toString('utf8', 0, len)}`); + * // Prints: 12 bytes: ½ + ¼ = ¾ + * + * const buffer = Buffer.alloc(10); + * + * const length = buffer.write('abcd', 8); + * + * console.log(`${length} bytes: ${buffer.toString('utf8', 8, 10)}`); + * // Prints: 2 bytes : ab + * ``` + * @since v0.1.90 + * @param string String to write to `buf`. + * @param [offset=0] Number of bytes to skip before starting to write `string`. + * @param [length=buf.length - offset] Maximum number of bytes to write (written bytes will not exceed `buf.length - offset`). + * @param [encoding='utf8'] The character encoding of `string`. + * @return Number of bytes written. + */ + write(string: string, encoding?: BufferEncoding): number; + write(string: string, offset: number, encoding?: BufferEncoding): number; + write(string: string, offset: number, length: number, encoding?: BufferEncoding): number; + /** + * Decodes `buf` to a string according to the specified character encoding in`encoding`. `start` and `end` may be passed to decode only a subset of `buf`. + * + * If `encoding` is `'utf8'` and a byte sequence in the input is not valid UTF-8, + * then each invalid byte is replaced with the replacement character `U+FFFD`. + * + * The maximum length of a string instance (in UTF-16 code units) is available + * as {@link constants.MAX_STRING_LENGTH}. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf1 = Buffer.allocUnsafe(26); + * + * for (let i = 0; i < 26; i++) { + * // 97 is the decimal ASCII value for 'a'. + * buf1[i] = i + 97; + * } + * + * console.log(buf1.toString('utf8')); + * // Prints: abcdefghijklmnopqrstuvwxyz + * console.log(buf1.toString('utf8', 0, 5)); + * // Prints: abcde + * + * const buf2 = Buffer.from('tést'); + * + * console.log(buf2.toString('hex')); + * // Prints: 74c3a97374 + * console.log(buf2.toString('utf8', 0, 3)); + * // Prints: té + * console.log(buf2.toString(undefined, 0, 3)); + * // Prints: té + * ``` + * @since v0.1.90 + * @param [encoding='utf8'] The character encoding to use. + * @param [start=0] The byte offset to start decoding at. + * @param [end=buf.length] The byte offset to stop decoding at (not inclusive). + */ + toString(encoding?: BufferEncoding, start?: number, end?: number): string; + /** + * Returns a JSON representation of `buf`. [`JSON.stringify()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify) implicitly calls + * this function when stringifying a `Buffer` instance. + * + * `Buffer.from()` accepts objects in the format returned from this method. + * In particular, `Buffer.from(buf.toJSON())` works like `Buffer.from(buf)`. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.from([0x1, 0x2, 0x3, 0x4, 0x5]); + * const json = JSON.stringify(buf); + * + * console.log(json); + * // Prints: {"type":"Buffer","data":[1,2,3,4,5]} + * + * const copy = JSON.parse(json, (key, value) => { + * return value && value.type === 'Buffer' ? + * Buffer.from(value) : + * value; + * }); + * + * console.log(copy); + * // Prints: + * ``` + * @since v0.9.2 + */ + toJSON(): { + type: 'Buffer'; + data: number[]; + }; + /** + * Returns `true` if both `buf` and `otherBuffer` have exactly the same bytes,`false` otherwise. Equivalent to `buf.compare(otherBuffer) === 0`. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf1 = Buffer.from('ABC'); + * const buf2 = Buffer.from('414243', 'hex'); + * const buf3 = Buffer.from('ABCD'); + * + * console.log(buf1.equals(buf2)); + * // Prints: true + * console.log(buf1.equals(buf3)); + * // Prints: false + * ``` + * @since v0.11.13 + * @param otherBuffer A `Buffer` or {@link Uint8Array} with which to compare `buf`. + */ + equals(otherBuffer: Uint8Array): boolean; + /** + * Compares `buf` with `target` and returns a number indicating whether `buf`comes before, after, or is the same as `target` in sort order. + * Comparison is based on the actual sequence of bytes in each `Buffer`. + * + * * `0` is returned if `target` is the same as `buf` + * * `1` is returned if `target` should come _before_`buf` when sorted. + * * `-1` is returned if `target` should come _after_`buf` when sorted. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf1 = Buffer.from('ABC'); + * const buf2 = Buffer.from('BCD'); + * const buf3 = Buffer.from('ABCD'); + * + * console.log(buf1.compare(buf1)); + * // Prints: 0 + * console.log(buf1.compare(buf2)); + * // Prints: -1 + * console.log(buf1.compare(buf3)); + * // Prints: -1 + * console.log(buf2.compare(buf1)); + * // Prints: 1 + * console.log(buf2.compare(buf3)); + * // Prints: 1 + * console.log([buf1, buf2, buf3].sort(Buffer.compare)); + * // Prints: [ , , ] + * // (This result is equal to: [buf1, buf3, buf2].) + * ``` + * + * The optional `targetStart`, `targetEnd`, `sourceStart`, and `sourceEnd`arguments can be used to limit the comparison to specific ranges within `target`and `buf` respectively. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf1 = Buffer.from([1, 2, 3, 4, 5, 6, 7, 8, 9]); + * const buf2 = Buffer.from([5, 6, 7, 8, 9, 1, 2, 3, 4]); + * + * console.log(buf1.compare(buf2, 5, 9, 0, 4)); + * // Prints: 0 + * console.log(buf1.compare(buf2, 0, 6, 4)); + * // Prints: -1 + * console.log(buf1.compare(buf2, 5, 6, 5)); + * // Prints: 1 + * ``` + * + * `ERR_OUT_OF_RANGE` is thrown if `targetStart < 0`, `sourceStart < 0`,`targetEnd > target.byteLength`, or `sourceEnd > source.byteLength`. + * @since v0.11.13 + * @param target A `Buffer` or {@link Uint8Array} with which to compare `buf`. + * @param [targetStart=0] The offset within `target` at which to begin comparison. + * @param [targetEnd=target.length] The offset within `target` at which to end comparison (not inclusive). + * @param [sourceStart=0] The offset within `buf` at which to begin comparison. + * @param [sourceEnd=buf.length] The offset within `buf` at which to end comparison (not inclusive). + */ + compare(target: Uint8Array, targetStart?: number, targetEnd?: number, sourceStart?: number, sourceEnd?: number): -1 | 0 | 1; + /** + * Copies data from a region of `buf` to a region in `target`, even if the `target`memory region overlaps with `buf`. + * + * [`TypedArray.prototype.set()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/set) performs the same operation, and is available + * for all TypedArrays, including Node.js `Buffer`s, although it takes + * different function arguments. + * + * ```js + * import { Buffer } from 'buffer'; + * + * // Create two `Buffer` instances. + * const buf1 = Buffer.allocUnsafe(26); + * const buf2 = Buffer.allocUnsafe(26).fill('!'); + * + * for (let i = 0; i < 26; i++) { + * // 97 is the decimal ASCII value for 'a'. + * buf1[i] = i + 97; + * } + * + * // Copy `buf1` bytes 16 through 19 into `buf2` starting at byte 8 of `buf2`. + * buf1.copy(buf2, 8, 16, 20); + * // This is equivalent to: + * // buf2.set(buf1.subarray(16, 20), 8); + * + * console.log(buf2.toString('ascii', 0, 25)); + * // Prints: !!!!!!!!qrst!!!!!!!!!!!!! + * ``` + * + * ```js + * import { Buffer } from 'buffer'; + * + * // Create a `Buffer` and copy data from one region to an overlapping region + * // within the same `Buffer`. + * + * const buf = Buffer.allocUnsafe(26); + * + * for (let i = 0; i < 26; i++) { + * // 97 is the decimal ASCII value for 'a'. + * buf[i] = i + 97; + * } + * + * buf.copy(buf, 0, 4, 10); + * + * console.log(buf.toString()); + * // Prints: efghijghijklmnopqrstuvwxyz + * ``` + * @since v0.1.90 + * @param target A `Buffer` or {@link Uint8Array} to copy into. + * @param [targetStart=0] The offset within `target` at which to begin writing. + * @param [sourceStart=0] The offset within `buf` from which to begin copying. + * @param [sourceEnd=buf.length] The offset within `buf` at which to stop copying (not inclusive). + * @return The number of bytes copied. + */ + copy(target: Uint8Array, targetStart?: number, sourceStart?: number, sourceEnd?: number): number; + /** + * Returns a new `Buffer` that references the same memory as the original, but + * offset and cropped by the `start` and `end` indices. + * + * This method is not compatible with the `Uint8Array.prototype.slice()`, + * which is a superclass of `Buffer`. To copy the slice, use`Uint8Array.prototype.slice()`. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.from('buffer'); + * + * const copiedBuf = Uint8Array.prototype.slice.call(buf); + * copiedBuf[0]++; + * console.log(copiedBuf.toString()); + * // Prints: cuffer + * + * console.log(buf.toString()); + * // Prints: buffer + * + * // With buf.slice(), the original buffer is modified. + * const notReallyCopiedBuf = buf.slice(); + * notReallyCopiedBuf[0]++; + * console.log(notReallyCopiedBuf.toString()); + * // Prints: cuffer + * console.log(buf.toString()); + * // Also prints: cuffer (!) + * ``` + * @since v0.3.0 + * @deprecated Use `subarray` instead. + * @param [start=0] Where the new `Buffer` will start. + * @param [end=buf.length] Where the new `Buffer` will end (not inclusive). + */ + slice(start?: number, end?: number): Buffer; + /** + * Returns a new `Buffer` that references the same memory as the original, but + * offset and cropped by the `start` and `end` indices. + * + * Specifying `end` greater than `buf.length` will return the same result as + * that of `end` equal to `buf.length`. + * + * This method is inherited from [`TypedArray.prototype.subarray()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/subarray). + * + * Modifying the new `Buffer` slice will modify the memory in the original `Buffer`because the allocated memory of the two objects overlap. + * + * ```js + * import { Buffer } from 'buffer'; + * + * // Create a `Buffer` with the ASCII alphabet, take a slice, and modify one byte + * // from the original `Buffer`. + * + * const buf1 = Buffer.allocUnsafe(26); + * + * for (let i = 0; i < 26; i++) { + * // 97 is the decimal ASCII value for 'a'. + * buf1[i] = i + 97; + * } + * + * const buf2 = buf1.subarray(0, 3); + * + * console.log(buf2.toString('ascii', 0, buf2.length)); + * // Prints: abc + * + * buf1[0] = 33; + * + * console.log(buf2.toString('ascii', 0, buf2.length)); + * // Prints: !bc + * ``` + * + * Specifying negative indexes causes the slice to be generated relative to the + * end of `buf` rather than the beginning. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.from('buffer'); + * + * console.log(buf.subarray(-6, -1).toString()); + * // Prints: buffe + * // (Equivalent to buf.subarray(0, 5).) + * + * console.log(buf.subarray(-6, -2).toString()); + * // Prints: buff + * // (Equivalent to buf.subarray(0, 4).) + * + * console.log(buf.subarray(-5, -2).toString()); + * // Prints: uff + * // (Equivalent to buf.subarray(1, 4).) + * ``` + * @since v3.0.0 + * @param [start=0] Where the new `Buffer` will start. + * @param [end=buf.length] Where the new `Buffer` will end (not inclusive). + */ + subarray(start?: number, end?: number): Buffer; + /** + * Writes `value` to `buf` at the specified `offset` as big-endian. + * + * `value` is interpreted and written as a two's complement signed integer. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.allocUnsafe(8); + * + * buf.writeBigInt64BE(0x0102030405060708n, 0); + * + * console.log(buf); + * // Prints: + * ``` + * @since v12.0.0, v10.20.0 + * @param value Number to be written to `buf`. + * @param [offset=0] Number of bytes to skip before starting to write. Must satisfy: `0 <= offset <= buf.length - 8`. + * @return `offset` plus the number of bytes written. + */ + writeBigInt64BE(value: bigint, offset?: number): number; + /** + * Writes `value` to `buf` at the specified `offset` as little-endian. + * + * `value` is interpreted and written as a two's complement signed integer. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.allocUnsafe(8); + * + * buf.writeBigInt64LE(0x0102030405060708n, 0); + * + * console.log(buf); + * // Prints: + * ``` + * @since v12.0.0, v10.20.0 + * @param value Number to be written to `buf`. + * @param [offset=0] Number of bytes to skip before starting to write. Must satisfy: `0 <= offset <= buf.length - 8`. + * @return `offset` plus the number of bytes written. + */ + writeBigInt64LE(value: bigint, offset?: number): number; + /** + * Writes `value` to `buf` at the specified `offset` as big-endian. + * + * This function is also available under the `writeBigUint64BE` alias. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.allocUnsafe(8); + * + * buf.writeBigUInt64BE(0xdecafafecacefaden, 0); + * + * console.log(buf); + * // Prints: + * ``` + * @since v12.0.0, v10.20.0 + * @param value Number to be written to `buf`. + * @param [offset=0] Number of bytes to skip before starting to write. Must satisfy: `0 <= offset <= buf.length - 8`. + * @return `offset` plus the number of bytes written. + */ + writeBigUInt64BE(value: bigint, offset?: number): number; + /** + * @alias Buffer.writeBigUInt64BE + * @since v14.10.0, v12.19.0 + */ + writeBigUint64BE(value: bigint, offset?: number): number; + /** + * Writes `value` to `buf` at the specified `offset` as little-endian + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.allocUnsafe(8); + * + * buf.writeBigUInt64LE(0xdecafafecacefaden, 0); + * + * console.log(buf); + * // Prints: + * ``` + * + * This function is also available under the `writeBigUint64LE` alias. + * @since v12.0.0, v10.20.0 + * @param value Number to be written to `buf`. + * @param [offset=0] Number of bytes to skip before starting to write. Must satisfy: `0 <= offset <= buf.length - 8`. + * @return `offset` plus the number of bytes written. + */ + writeBigUInt64LE(value: bigint, offset?: number): number; + /** + * @alias Buffer.writeBigUInt64LE + * @since v14.10.0, v12.19.0 + */ + writeBigUint64LE(value: bigint, offset?: number): number; + /** + * Writes `byteLength` bytes of `value` to `buf` at the specified `offset`as little-endian. Supports up to 48 bits of accuracy. Behavior is undefined + * when `value` is anything other than an unsigned integer. + * + * This function is also available under the `writeUintLE` alias. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.allocUnsafe(6); + * + * buf.writeUIntLE(0x1234567890ab, 0, 6); + * + * console.log(buf); + * // Prints: + * ``` + * @since v0.5.5 + * @param value Number to be written to `buf`. + * @param offset Number of bytes to skip before starting to write. Must satisfy `0 <= offset <= buf.length - byteLength`. + * @param byteLength Number of bytes to write. Must satisfy `0 < byteLength <= 6`. + * @return `offset` plus the number of bytes written. + */ + writeUIntLE(value: number, offset: number, byteLength: number): number; + /** + * @alias Buffer.writeUIntLE + * @since v14.9.0, v12.19.0 + */ + writeUintLE(value: number, offset: number, byteLength: number): number; + /** + * Writes `byteLength` bytes of `value` to `buf` at the specified `offset`as big-endian. Supports up to 48 bits of accuracy. Behavior is undefined + * when `value` is anything other than an unsigned integer. + * + * This function is also available under the `writeUintBE` alias. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.allocUnsafe(6); + * + * buf.writeUIntBE(0x1234567890ab, 0, 6); + * + * console.log(buf); + * // Prints: + * ``` + * @since v0.5.5 + * @param value Number to be written to `buf`. + * @param offset Number of bytes to skip before starting to write. Must satisfy `0 <= offset <= buf.length - byteLength`. + * @param byteLength Number of bytes to write. Must satisfy `0 < byteLength <= 6`. + * @return `offset` plus the number of bytes written. + */ + writeUIntBE(value: number, offset: number, byteLength: number): number; + /** + * @alias Buffer.writeUIntBE + * @since v14.9.0, v12.19.0 + */ + writeUintBE(value: number, offset: number, byteLength: number): number; + /** + * Writes `byteLength` bytes of `value` to `buf` at the specified `offset`as little-endian. Supports up to 48 bits of accuracy. Behavior is undefined + * when `value` is anything other than a signed integer. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.allocUnsafe(6); + * + * buf.writeIntLE(0x1234567890ab, 0, 6); + * + * console.log(buf); + * // Prints: + * ``` + * @since v0.11.15 + * @param value Number to be written to `buf`. + * @param offset Number of bytes to skip before starting to write. Must satisfy `0 <= offset <= buf.length - byteLength`. + * @param byteLength Number of bytes to write. Must satisfy `0 < byteLength <= 6`. + * @return `offset` plus the number of bytes written. + */ + writeIntLE(value: number, offset: number, byteLength: number): number; + /** + * Writes `byteLength` bytes of `value` to `buf` at the specified `offset`as big-endian. Supports up to 48 bits of accuracy. Behavior is undefined when`value` is anything other than a + * signed integer. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.allocUnsafe(6); + * + * buf.writeIntBE(0x1234567890ab, 0, 6); + * + * console.log(buf); + * // Prints: + * ``` + * @since v0.11.15 + * @param value Number to be written to `buf`. + * @param offset Number of bytes to skip before starting to write. Must satisfy `0 <= offset <= buf.length - byteLength`. + * @param byteLength Number of bytes to write. Must satisfy `0 < byteLength <= 6`. + * @return `offset` plus the number of bytes written. + */ + writeIntBE(value: number, offset: number, byteLength: number): number; + /** + * Reads an unsigned, big-endian 64-bit integer from `buf` at the specified`offset`. + * + * This function is also available under the `readBigUint64BE` alias. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.from([0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff]); + * + * console.log(buf.readBigUInt64BE(0)); + * // Prints: 4294967295n + * ``` + * @since v12.0.0, v10.20.0 + * @param [offset=0] Number of bytes to skip before starting to read. Must satisfy: `0 <= offset <= buf.length - 8`. + */ + readBigUInt64BE(offset?: number): bigint; + /** + * @alias Buffer.readBigUInt64BE + * @since v14.10.0, v12.19.0 + */ + readBigUint64BE(offset?: number): bigint; + /** + * Reads an unsigned, little-endian 64-bit integer from `buf` at the specified`offset`. + * + * This function is also available under the `readBigUint64LE` alias. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.from([0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff]); + * + * console.log(buf.readBigUInt64LE(0)); + * // Prints: 18446744069414584320n + * ``` + * @since v12.0.0, v10.20.0 + * @param [offset=0] Number of bytes to skip before starting to read. Must satisfy: `0 <= offset <= buf.length - 8`. + */ + readBigUInt64LE(offset?: number): bigint; + /** + * @alias Buffer.readBigUInt64LE + * @since v14.10.0, v12.19.0 + */ + readBigUint64LE(offset?: number): bigint; + /** + * Reads a signed, big-endian 64-bit integer from `buf` at the specified `offset`. + * + * Integers read from a `Buffer` are interpreted as two's complement signed + * values. + * @since v12.0.0, v10.20.0 + * @param [offset=0] Number of bytes to skip before starting to read. Must satisfy: `0 <= offset <= buf.length - 8`. + */ + readBigInt64BE(offset?: number): bigint; + /** + * Reads a signed, little-endian 64-bit integer from `buf` at the specified`offset`. + * + * Integers read from a `Buffer` are interpreted as two's complement signed + * values. + * @since v12.0.0, v10.20.0 + * @param [offset=0] Number of bytes to skip before starting to read. Must satisfy: `0 <= offset <= buf.length - 8`. + */ + readBigInt64LE(offset?: number): bigint; + /** + * Reads `byteLength` number of bytes from `buf` at the specified `offset`and interprets the result as an unsigned, little-endian integer supporting + * up to 48 bits of accuracy. + * + * This function is also available under the `readUintLE` alias. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.from([0x12, 0x34, 0x56, 0x78, 0x90, 0xab]); + * + * console.log(buf.readUIntLE(0, 6).toString(16)); + * // Prints: ab9078563412 + * ``` + * @since v0.11.15 + * @param offset Number of bytes to skip before starting to read. Must satisfy `0 <= offset <= buf.length - byteLength`. + * @param byteLength Number of bytes to read. Must satisfy `0 < byteLength <= 6`. + */ + readUIntLE(offset: number, byteLength: number): number; + /** + * @alias Buffer.readUIntLE + * @since v14.9.0, v12.19.0 + */ + readUintLE(offset: number, byteLength: number): number; + /** + * Reads `byteLength` number of bytes from `buf` at the specified `offset`and interprets the result as an unsigned big-endian integer supporting + * up to 48 bits of accuracy. + * + * This function is also available under the `readUintBE` alias. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.from([0x12, 0x34, 0x56, 0x78, 0x90, 0xab]); + * + * console.log(buf.readUIntBE(0, 6).toString(16)); + * // Prints: 1234567890ab + * console.log(buf.readUIntBE(1, 6).toString(16)); + * // Throws ERR_OUT_OF_RANGE. + * ``` + * @since v0.11.15 + * @param offset Number of bytes to skip before starting to read. Must satisfy `0 <= offset <= buf.length - byteLength`. + * @param byteLength Number of bytes to read. Must satisfy `0 < byteLength <= 6`. + */ + readUIntBE(offset: number, byteLength: number): number; + /** + * @alias Buffer.readUIntBE + * @since v14.9.0, v12.19.0 + */ + readUintBE(offset: number, byteLength: number): number; + /** + * Reads `byteLength` number of bytes from `buf` at the specified `offset`and interprets the result as a little-endian, two's complement signed value + * supporting up to 48 bits of accuracy. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.from([0x12, 0x34, 0x56, 0x78, 0x90, 0xab]); + * + * console.log(buf.readIntLE(0, 6).toString(16)); + * // Prints: -546f87a9cbee + * ``` + * @since v0.11.15 + * @param offset Number of bytes to skip before starting to read. Must satisfy `0 <= offset <= buf.length - byteLength`. + * @param byteLength Number of bytes to read. Must satisfy `0 < byteLength <= 6`. + */ + readIntLE(offset: number, byteLength: number): number; + /** + * Reads `byteLength` number of bytes from `buf` at the specified `offset`and interprets the result as a big-endian, two's complement signed value + * supporting up to 48 bits of accuracy. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.from([0x12, 0x34, 0x56, 0x78, 0x90, 0xab]); + * + * console.log(buf.readIntBE(0, 6).toString(16)); + * // Prints: 1234567890ab + * console.log(buf.readIntBE(1, 6).toString(16)); + * // Throws ERR_OUT_OF_RANGE. + * console.log(buf.readIntBE(1, 0).toString(16)); + * // Throws ERR_OUT_OF_RANGE. + * ``` + * @since v0.11.15 + * @param offset Number of bytes to skip before starting to read. Must satisfy `0 <= offset <= buf.length - byteLength`. + * @param byteLength Number of bytes to read. Must satisfy `0 < byteLength <= 6`. + */ + readIntBE(offset: number, byteLength: number): number; + /** + * Reads an unsigned 8-bit integer from `buf` at the specified `offset`. + * + * This function is also available under the `readUint8` alias. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.from([1, -2]); + * + * console.log(buf.readUInt8(0)); + * // Prints: 1 + * console.log(buf.readUInt8(1)); + * // Prints: 254 + * console.log(buf.readUInt8(2)); + * // Throws ERR_OUT_OF_RANGE. + * ``` + * @since v0.5.0 + * @param [offset=0] Number of bytes to skip before starting to read. Must satisfy `0 <= offset <= buf.length - 1`. + */ + readUInt8(offset?: number): number; + /** + * @alias Buffer.readUInt8 + * @since v14.9.0, v12.19.0 + */ + readUint8(offset?: number): number; + /** + * Reads an unsigned, little-endian 16-bit integer from `buf` at the specified`offset`. + * + * This function is also available under the `readUint16LE` alias. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.from([0x12, 0x34, 0x56]); + * + * console.log(buf.readUInt16LE(0).toString(16)); + * // Prints: 3412 + * console.log(buf.readUInt16LE(1).toString(16)); + * // Prints: 5634 + * console.log(buf.readUInt16LE(2).toString(16)); + * // Throws ERR_OUT_OF_RANGE. + * ``` + * @since v0.5.5 + * @param [offset=0] Number of bytes to skip before starting to read. Must satisfy `0 <= offset <= buf.length - 2`. + */ + readUInt16LE(offset?: number): number; + /** + * @alias Buffer.readUInt16LE + * @since v14.9.0, v12.19.0 + */ + readUint16LE(offset?: number): number; + /** + * Reads an unsigned, big-endian 16-bit integer from `buf` at the specified`offset`. + * + * This function is also available under the `readUint16BE` alias. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.from([0x12, 0x34, 0x56]); + * + * console.log(buf.readUInt16BE(0).toString(16)); + * // Prints: 1234 + * console.log(buf.readUInt16BE(1).toString(16)); + * // Prints: 3456 + * ``` + * @since v0.5.5 + * @param [offset=0] Number of bytes to skip before starting to read. Must satisfy `0 <= offset <= buf.length - 2`. + */ + readUInt16BE(offset?: number): number; + /** + * @alias Buffer.readUInt16BE + * @since v14.9.0, v12.19.0 + */ + readUint16BE(offset?: number): number; + /** + * Reads an unsigned, little-endian 32-bit integer from `buf` at the specified`offset`. + * + * This function is also available under the `readUint32LE` alias. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.from([0x12, 0x34, 0x56, 0x78]); + * + * console.log(buf.readUInt32LE(0).toString(16)); + * // Prints: 78563412 + * console.log(buf.readUInt32LE(1).toString(16)); + * // Throws ERR_OUT_OF_RANGE. + * ``` + * @since v0.5.5 + * @param [offset=0] Number of bytes to skip before starting to read. Must satisfy `0 <= offset <= buf.length - 4`. + */ + readUInt32LE(offset?: number): number; + /** + * @alias Buffer.readUInt32LE + * @since v14.9.0, v12.19.0 + */ + readUint32LE(offset?: number): number; + /** + * Reads an unsigned, big-endian 32-bit integer from `buf` at the specified`offset`. + * + * This function is also available under the `readUint32BE` alias. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.from([0x12, 0x34, 0x56, 0x78]); + * + * console.log(buf.readUInt32BE(0).toString(16)); + * // Prints: 12345678 + * ``` + * @since v0.5.5 + * @param [offset=0] Number of bytes to skip before starting to read. Must satisfy `0 <= offset <= buf.length - 4`. + */ + readUInt32BE(offset?: number): number; + /** + * @alias Buffer.readUInt32BE + * @since v14.9.0, v12.19.0 + */ + readUint32BE(offset?: number): number; + /** + * Reads a signed 8-bit integer from `buf` at the specified `offset`. + * + * Integers read from a `Buffer` are interpreted as two's complement signed values. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.from([-1, 5]); + * + * console.log(buf.readInt8(0)); + * // Prints: -1 + * console.log(buf.readInt8(1)); + * // Prints: 5 + * console.log(buf.readInt8(2)); + * // Throws ERR_OUT_OF_RANGE. + * ``` + * @since v0.5.0 + * @param [offset=0] Number of bytes to skip before starting to read. Must satisfy `0 <= offset <= buf.length - 1`. + */ + readInt8(offset?: number): number; + /** + * Reads a signed, little-endian 16-bit integer from `buf` at the specified`offset`. + * + * Integers read from a `Buffer` are interpreted as two's complement signed values. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.from([0, 5]); + * + * console.log(buf.readInt16LE(0)); + * // Prints: 1280 + * console.log(buf.readInt16LE(1)); + * // Throws ERR_OUT_OF_RANGE. + * ``` + * @since v0.5.5 + * @param [offset=0] Number of bytes to skip before starting to read. Must satisfy `0 <= offset <= buf.length - 2`. + */ + readInt16LE(offset?: number): number; + /** + * Reads a signed, big-endian 16-bit integer from `buf` at the specified `offset`. + * + * Integers read from a `Buffer` are interpreted as two's complement signed values. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.from([0, 5]); + * + * console.log(buf.readInt16BE(0)); + * // Prints: 5 + * ``` + * @since v0.5.5 + * @param [offset=0] Number of bytes to skip before starting to read. Must satisfy `0 <= offset <= buf.length - 2`. + */ + readInt16BE(offset?: number): number; + /** + * Reads a signed, little-endian 32-bit integer from `buf` at the specified`offset`. + * + * Integers read from a `Buffer` are interpreted as two's complement signed values. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.from([0, 0, 0, 5]); + * + * console.log(buf.readInt32LE(0)); + * // Prints: 83886080 + * console.log(buf.readInt32LE(1)); + * // Throws ERR_OUT_OF_RANGE. + * ``` + * @since v0.5.5 + * @param [offset=0] Number of bytes to skip before starting to read. Must satisfy `0 <= offset <= buf.length - 4`. + */ + readInt32LE(offset?: number): number; + /** + * Reads a signed, big-endian 32-bit integer from `buf` at the specified `offset`. + * + * Integers read from a `Buffer` are interpreted as two's complement signed values. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.from([0, 0, 0, 5]); + * + * console.log(buf.readInt32BE(0)); + * // Prints: 5 + * ``` + * @since v0.5.5 + * @param [offset=0] Number of bytes to skip before starting to read. Must satisfy `0 <= offset <= buf.length - 4`. + */ + readInt32BE(offset?: number): number; + /** + * Reads a 32-bit, little-endian float from `buf` at the specified `offset`. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.from([1, 2, 3, 4]); + * + * console.log(buf.readFloatLE(0)); + * // Prints: 1.539989614439558e-36 + * console.log(buf.readFloatLE(1)); + * // Throws ERR_OUT_OF_RANGE. + * ``` + * @since v0.11.15 + * @param [offset=0] Number of bytes to skip before starting to read. Must satisfy `0 <= offset <= buf.length - 4`. + */ + readFloatLE(offset?: number): number; + /** + * Reads a 32-bit, big-endian float from `buf` at the specified `offset`. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.from([1, 2, 3, 4]); + * + * console.log(buf.readFloatBE(0)); + * // Prints: 2.387939260590663e-38 + * ``` + * @since v0.11.15 + * @param [offset=0] Number of bytes to skip before starting to read. Must satisfy `0 <= offset <= buf.length - 4`. + */ + readFloatBE(offset?: number): number; + /** + * Reads a 64-bit, little-endian double from `buf` at the specified `offset`. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.from([1, 2, 3, 4, 5, 6, 7, 8]); + * + * console.log(buf.readDoubleLE(0)); + * // Prints: 5.447603722011605e-270 + * console.log(buf.readDoubleLE(1)); + * // Throws ERR_OUT_OF_RANGE. + * ``` + * @since v0.11.15 + * @param [offset=0] Number of bytes to skip before starting to read. Must satisfy `0 <= offset <= buf.length - 8`. + */ + readDoubleLE(offset?: number): number; + /** + * Reads a 64-bit, big-endian double from `buf` at the specified `offset`. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.from([1, 2, 3, 4, 5, 6, 7, 8]); + * + * console.log(buf.readDoubleBE(0)); + * // Prints: 8.20788039913184e-304 + * ``` + * @since v0.11.15 + * @param [offset=0] Number of bytes to skip before starting to read. Must satisfy `0 <= offset <= buf.length - 8`. + */ + readDoubleBE(offset?: number): number; + reverse(): this; + /** + * Interprets `buf` as an array of unsigned 16-bit integers and swaps the + * byte order _in-place_. Throws `ERR_INVALID_BUFFER_SIZE` if `buf.length` is not a multiple of 2. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf1 = Buffer.from([0x1, 0x2, 0x3, 0x4, 0x5, 0x6, 0x7, 0x8]); + * + * console.log(buf1); + * // Prints: + * + * buf1.swap16(); + * + * console.log(buf1); + * // Prints: + * + * const buf2 = Buffer.from([0x1, 0x2, 0x3]); + * + * buf2.swap16(); + * // Throws ERR_INVALID_BUFFER_SIZE. + * ``` + * + * One convenient use of `buf.swap16()` is to perform a fast in-place conversion + * between UTF-16 little-endian and UTF-16 big-endian: + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.from('This is little-endian UTF-16', 'utf16le'); + * buf.swap16(); // Convert to big-endian UTF-16 text. + * ``` + * @since v5.10.0 + * @return A reference to `buf`. + */ + swap16(): Buffer; + /** + * Interprets `buf` as an array of unsigned 32-bit integers and swaps the + * byte order _in-place_. Throws `ERR_INVALID_BUFFER_SIZE` if `buf.length` is not a multiple of 4. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf1 = Buffer.from([0x1, 0x2, 0x3, 0x4, 0x5, 0x6, 0x7, 0x8]); + * + * console.log(buf1); + * // Prints: + * + * buf1.swap32(); + * + * console.log(buf1); + * // Prints: + * + * const buf2 = Buffer.from([0x1, 0x2, 0x3]); + * + * buf2.swap32(); + * // Throws ERR_INVALID_BUFFER_SIZE. + * ``` + * @since v5.10.0 + * @return A reference to `buf`. + */ + swap32(): Buffer; + /** + * Interprets `buf` as an array of 64-bit numbers and swaps byte order _in-place_. + * Throws `ERR_INVALID_BUFFER_SIZE` if `buf.length` is not a multiple of 8. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf1 = Buffer.from([0x1, 0x2, 0x3, 0x4, 0x5, 0x6, 0x7, 0x8]); + * + * console.log(buf1); + * // Prints: + * + * buf1.swap64(); + * + * console.log(buf1); + * // Prints: + * + * const buf2 = Buffer.from([0x1, 0x2, 0x3]); + * + * buf2.swap64(); + * // Throws ERR_INVALID_BUFFER_SIZE. + * ``` + * @since v6.3.0 + * @return A reference to `buf`. + */ + swap64(): Buffer; + /** + * Writes `value` to `buf` at the specified `offset`. `value` must be a + * valid unsigned 8-bit integer. Behavior is undefined when `value` is anything + * other than an unsigned 8-bit integer. + * + * This function is also available under the `writeUint8` alias. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.allocUnsafe(4); + * + * buf.writeUInt8(0x3, 0); + * buf.writeUInt8(0x4, 1); + * buf.writeUInt8(0x23, 2); + * buf.writeUInt8(0x42, 3); + * + * console.log(buf); + * // Prints: + * ``` + * @since v0.5.0 + * @param value Number to be written to `buf`. + * @param [offset=0] Number of bytes to skip before starting to write. Must satisfy `0 <= offset <= buf.length - 1`. + * @return `offset` plus the number of bytes written. + */ + writeUInt8(value: number, offset?: number): number; + /** + * @alias Buffer.writeUInt8 + * @since v14.9.0, v12.19.0 + */ + writeUint8(value: number, offset?: number): number; + /** + * Writes `value` to `buf` at the specified `offset` as little-endian. The `value`must be a valid unsigned 16-bit integer. Behavior is undefined when `value` is + * anything other than an unsigned 16-bit integer. + * + * This function is also available under the `writeUint16LE` alias. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.allocUnsafe(4); + * + * buf.writeUInt16LE(0xdead, 0); + * buf.writeUInt16LE(0xbeef, 2); + * + * console.log(buf); + * // Prints: + * ``` + * @since v0.5.5 + * @param value Number to be written to `buf`. + * @param [offset=0] Number of bytes to skip before starting to write. Must satisfy `0 <= offset <= buf.length - 2`. + * @return `offset` plus the number of bytes written. + */ + writeUInt16LE(value: number, offset?: number): number; + /** + * @alias Buffer.writeUInt16LE + * @since v14.9.0, v12.19.0 + */ + writeUint16LE(value: number, offset?: number): number; + /** + * Writes `value` to `buf` at the specified `offset` as big-endian. The `value`must be a valid unsigned 16-bit integer. Behavior is undefined when `value`is anything other than an + * unsigned 16-bit integer. + * + * This function is also available under the `writeUint16BE` alias. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.allocUnsafe(4); + * + * buf.writeUInt16BE(0xdead, 0); + * buf.writeUInt16BE(0xbeef, 2); + * + * console.log(buf); + * // Prints: + * ``` + * @since v0.5.5 + * @param value Number to be written to `buf`. + * @param [offset=0] Number of bytes to skip before starting to write. Must satisfy `0 <= offset <= buf.length - 2`. + * @return `offset` plus the number of bytes written. + */ + writeUInt16BE(value: number, offset?: number): number; + /** + * @alias Buffer.writeUInt16BE + * @since v14.9.0, v12.19.0 + */ + writeUint16BE(value: number, offset?: number): number; + /** + * Writes `value` to `buf` at the specified `offset` as little-endian. The `value`must be a valid unsigned 32-bit integer. Behavior is undefined when `value` is + * anything other than an unsigned 32-bit integer. + * + * This function is also available under the `writeUint32LE` alias. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.allocUnsafe(4); + * + * buf.writeUInt32LE(0xfeedface, 0); + * + * console.log(buf); + * // Prints: + * ``` + * @since v0.5.5 + * @param value Number to be written to `buf`. + * @param [offset=0] Number of bytes to skip before starting to write. Must satisfy `0 <= offset <= buf.length - 4`. + * @return `offset` plus the number of bytes written. + */ + writeUInt32LE(value: number, offset?: number): number; + /** + * @alias Buffer.writeUInt32LE + * @since v14.9.0, v12.19.0 + */ + writeUint32LE(value: number, offset?: number): number; + /** + * Writes `value` to `buf` at the specified `offset` as big-endian. The `value`must be a valid unsigned 32-bit integer. Behavior is undefined when `value`is anything other than an + * unsigned 32-bit integer. + * + * This function is also available under the `writeUint32BE` alias. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.allocUnsafe(4); + * + * buf.writeUInt32BE(0xfeedface, 0); + * + * console.log(buf); + * // Prints: + * ``` + * @since v0.5.5 + * @param value Number to be written to `buf`. + * @param [offset=0] Number of bytes to skip before starting to write. Must satisfy `0 <= offset <= buf.length - 4`. + * @return `offset` plus the number of bytes written. + */ + writeUInt32BE(value: number, offset?: number): number; + /** + * @alias Buffer.writeUInt32BE + * @since v14.9.0, v12.19.0 + */ + writeUint32BE(value: number, offset?: number): number; + /** + * Writes `value` to `buf` at the specified `offset`. `value` must be a valid + * signed 8-bit integer. Behavior is undefined when `value` is anything other than + * a signed 8-bit integer. + * + * `value` is interpreted and written as a two's complement signed integer. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.allocUnsafe(2); + * + * buf.writeInt8(2, 0); + * buf.writeInt8(-2, 1); + * + * console.log(buf); + * // Prints: + * ``` + * @since v0.5.0 + * @param value Number to be written to `buf`. + * @param [offset=0] Number of bytes to skip before starting to write. Must satisfy `0 <= offset <= buf.length - 1`. + * @return `offset` plus the number of bytes written. + */ + writeInt8(value: number, offset?: number): number; + /** + * Writes `value` to `buf` at the specified `offset` as little-endian. The `value`must be a valid signed 16-bit integer. Behavior is undefined when `value` is + * anything other than a signed 16-bit integer. + * + * The `value` is interpreted and written as a two's complement signed integer. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.allocUnsafe(2); + * + * buf.writeInt16LE(0x0304, 0); + * + * console.log(buf); + * // Prints: + * ``` + * @since v0.5.5 + * @param value Number to be written to `buf`. + * @param [offset=0] Number of bytes to skip before starting to write. Must satisfy `0 <= offset <= buf.length - 2`. + * @return `offset` plus the number of bytes written. + */ + writeInt16LE(value: number, offset?: number): number; + /** + * Writes `value` to `buf` at the specified `offset` as big-endian. The `value`must be a valid signed 16-bit integer. Behavior is undefined when `value` is + * anything other than a signed 16-bit integer. + * + * The `value` is interpreted and written as a two's complement signed integer. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.allocUnsafe(2); + * + * buf.writeInt16BE(0x0102, 0); + * + * console.log(buf); + * // Prints: + * ``` + * @since v0.5.5 + * @param value Number to be written to `buf`. + * @param [offset=0] Number of bytes to skip before starting to write. Must satisfy `0 <= offset <= buf.length - 2`. + * @return `offset` plus the number of bytes written. + */ + writeInt16BE(value: number, offset?: number): number; + /** + * Writes `value` to `buf` at the specified `offset` as little-endian. The `value`must be a valid signed 32-bit integer. Behavior is undefined when `value` is + * anything other than a signed 32-bit integer. + * + * The `value` is interpreted and written as a two's complement signed integer. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.allocUnsafe(4); + * + * buf.writeInt32LE(0x05060708, 0); + * + * console.log(buf); + * // Prints: + * ``` + * @since v0.5.5 + * @param value Number to be written to `buf`. + * @param [offset=0] Number of bytes to skip before starting to write. Must satisfy `0 <= offset <= buf.length - 4`. + * @return `offset` plus the number of bytes written. + */ + writeInt32LE(value: number, offset?: number): number; + /** + * Writes `value` to `buf` at the specified `offset` as big-endian. The `value`must be a valid signed 32-bit integer. Behavior is undefined when `value` is + * anything other than a signed 32-bit integer. + * + * The `value` is interpreted and written as a two's complement signed integer. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.allocUnsafe(4); + * + * buf.writeInt32BE(0x01020304, 0); + * + * console.log(buf); + * // Prints: + * ``` + * @since v0.5.5 + * @param value Number to be written to `buf`. + * @param [offset=0] Number of bytes to skip before starting to write. Must satisfy `0 <= offset <= buf.length - 4`. + * @return `offset` plus the number of bytes written. + */ + writeInt32BE(value: number, offset?: number): number; + /** + * Writes `value` to `buf` at the specified `offset` as little-endian. Behavior is + * undefined when `value` is anything other than a JavaScript number. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.allocUnsafe(4); + * + * buf.writeFloatLE(0xcafebabe, 0); + * + * console.log(buf); + * // Prints: + * ``` + * @since v0.11.15 + * @param value Number to be written to `buf`. + * @param [offset=0] Number of bytes to skip before starting to write. Must satisfy `0 <= offset <= buf.length - 4`. + * @return `offset` plus the number of bytes written. + */ + writeFloatLE(value: number, offset?: number): number; + /** + * Writes `value` to `buf` at the specified `offset` as big-endian. Behavior is + * undefined when `value` is anything other than a JavaScript number. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.allocUnsafe(4); + * + * buf.writeFloatBE(0xcafebabe, 0); + * + * console.log(buf); + * // Prints: + * ``` + * @since v0.11.15 + * @param value Number to be written to `buf`. + * @param [offset=0] Number of bytes to skip before starting to write. Must satisfy `0 <= offset <= buf.length - 4`. + * @return `offset` plus the number of bytes written. + */ + writeFloatBE(value: number, offset?: number): number; + /** + * Writes `value` to `buf` at the specified `offset` as little-endian. The `value`must be a JavaScript number. Behavior is undefined when `value` is anything + * other than a JavaScript number. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.allocUnsafe(8); + * + * buf.writeDoubleLE(123.456, 0); + * + * console.log(buf); + * // Prints: + * ``` + * @since v0.11.15 + * @param value Number to be written to `buf`. + * @param [offset=0] Number of bytes to skip before starting to write. Must satisfy `0 <= offset <= buf.length - 8`. + * @return `offset` plus the number of bytes written. + */ + writeDoubleLE(value: number, offset?: number): number; + /** + * Writes `value` to `buf` at the specified `offset` as big-endian. The `value`must be a JavaScript number. Behavior is undefined when `value` is anything + * other than a JavaScript number. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.allocUnsafe(8); + * + * buf.writeDoubleBE(123.456, 0); + * + * console.log(buf); + * // Prints: + * ``` + * @since v0.11.15 + * @param value Number to be written to `buf`. + * @param [offset=0] Number of bytes to skip before starting to write. Must satisfy `0 <= offset <= buf.length - 8`. + * @return `offset` plus the number of bytes written. + */ + writeDoubleBE(value: number, offset?: number): number; + /** + * Fills `buf` with the specified `value`. If the `offset` and `end` are not given, + * the entire `buf` will be filled: + * + * ```js + * import { Buffer } from 'buffer'; + * + * // Fill a `Buffer` with the ASCII character 'h'. + * + * const b = Buffer.allocUnsafe(50).fill('h'); + * + * console.log(b.toString()); + * // Prints: hhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh + * ``` + * + * `value` is coerced to a `uint32` value if it is not a string, `Buffer`, or + * integer. If the resulting integer is greater than `255` (decimal), `buf` will be + * filled with `value & 255`. + * + * If the final write of a `fill()` operation falls on a multi-byte character, + * then only the bytes of that character that fit into `buf` are written: + * + * ```js + * import { Buffer } from 'buffer'; + * + * // Fill a `Buffer` with character that takes up two bytes in UTF-8. + * + * console.log(Buffer.allocUnsafe(5).fill('\u0222')); + * // Prints: + * ``` + * + * If `value` contains invalid characters, it is truncated; if no valid + * fill data remains, an exception is thrown: + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.allocUnsafe(5); + * + * console.log(buf.fill('a')); + * // Prints: + * console.log(buf.fill('aazz', 'hex')); + * // Prints: + * console.log(buf.fill('zz', 'hex')); + * // Throws an exception. + * ``` + * @since v0.5.0 + * @param value The value with which to fill `buf`. + * @param [offset=0] Number of bytes to skip before starting to fill `buf`. + * @param [end=buf.length] Where to stop filling `buf` (not inclusive). + * @param [encoding='utf8'] The encoding for `value` if `value` is a string. + * @return A reference to `buf`. + */ + fill(value: string | Uint8Array | number, offset?: number, end?: number, encoding?: BufferEncoding): this; + /** + * If `value` is: + * + * * a string, `value` is interpreted according to the character encoding in`encoding`. + * * a `Buffer` or [`Uint8Array`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array), `value` will be used in its entirety. + * To compare a partial `Buffer`, use `buf.subarray`. + * * a number, `value` will be interpreted as an unsigned 8-bit integer + * value between `0` and `255`. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.from('this is a buffer'); + * + * console.log(buf.indexOf('this')); + * // Prints: 0 + * console.log(buf.indexOf('is')); + * // Prints: 2 + * console.log(buf.indexOf(Buffer.from('a buffer'))); + * // Prints: 8 + * console.log(buf.indexOf(97)); + * // Prints: 8 (97 is the decimal ASCII value for 'a') + * console.log(buf.indexOf(Buffer.from('a buffer example'))); + * // Prints: -1 + * console.log(buf.indexOf(Buffer.from('a buffer example').slice(0, 8))); + * // Prints: 8 + * + * const utf16Buffer = Buffer.from('\u039a\u0391\u03a3\u03a3\u0395', 'utf16le'); + * + * console.log(utf16Buffer.indexOf('\u03a3', 0, 'utf16le')); + * // Prints: 4 + * console.log(utf16Buffer.indexOf('\u03a3', -4, 'utf16le')); + * // Prints: 6 + * ``` + * + * If `value` is not a string, number, or `Buffer`, this method will throw a`TypeError`. If `value` is a number, it will be coerced to a valid byte value, + * an integer between 0 and 255. + * + * If `byteOffset` is not a number, it will be coerced to a number. If the result + * of coercion is `NaN` or `0`, then the entire buffer will be searched. This + * behavior matches [`String.prototype.indexOf()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/indexOf). + * + * ```js + * import { Buffer } from 'buffer'; + * + * const b = Buffer.from('abcdef'); + * + * // Passing a value that's a number, but not a valid byte. + * // Prints: 2, equivalent to searching for 99 or 'c'. + * console.log(b.indexOf(99.9)); + * console.log(b.indexOf(256 + 99)); + * + * // Passing a byteOffset that coerces to NaN or 0. + * // Prints: 1, searching the whole buffer. + * console.log(b.indexOf('b', undefined)); + * console.log(b.indexOf('b', {})); + * console.log(b.indexOf('b', null)); + * console.log(b.indexOf('b', [])); + * ``` + * + * If `value` is an empty string or empty `Buffer` and `byteOffset` is less + * than `buf.length`, `byteOffset` will be returned. If `value` is empty and`byteOffset` is at least `buf.length`, `buf.length` will be returned. + * @since v1.5.0 + * @param value What to search for. + * @param [byteOffset=0] Where to begin searching in `buf`. If negative, then offset is calculated from the end of `buf`. + * @param [encoding='utf8'] If `value` is a string, this is the encoding used to determine the binary representation of the string that will be searched for in `buf`. + * @return The index of the first occurrence of `value` in `buf`, or `-1` if `buf` does not contain `value`. + */ + indexOf(value: string | number | Uint8Array, byteOffset?: number, encoding?: BufferEncoding): number; + /** + * Identical to `buf.indexOf()`, except the last occurrence of `value` is found + * rather than the first occurrence. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.from('this buffer is a buffer'); + * + * console.log(buf.lastIndexOf('this')); + * // Prints: 0 + * console.log(buf.lastIndexOf('buffer')); + * // Prints: 17 + * console.log(buf.lastIndexOf(Buffer.from('buffer'))); + * // Prints: 17 + * console.log(buf.lastIndexOf(97)); + * // Prints: 15 (97 is the decimal ASCII value for 'a') + * console.log(buf.lastIndexOf(Buffer.from('yolo'))); + * // Prints: -1 + * console.log(buf.lastIndexOf('buffer', 5)); + * // Prints: 5 + * console.log(buf.lastIndexOf('buffer', 4)); + * // Prints: -1 + * + * const utf16Buffer = Buffer.from('\u039a\u0391\u03a3\u03a3\u0395', 'utf16le'); + * + * console.log(utf16Buffer.lastIndexOf('\u03a3', undefined, 'utf16le')); + * // Prints: 6 + * console.log(utf16Buffer.lastIndexOf('\u03a3', -5, 'utf16le')); + * // Prints: 4 + * ``` + * + * If `value` is not a string, number, or `Buffer`, this method will throw a`TypeError`. If `value` is a number, it will be coerced to a valid byte value, + * an integer between 0 and 255. + * + * If `byteOffset` is not a number, it will be coerced to a number. Any arguments + * that coerce to `NaN`, like `{}` or `undefined`, will search the whole buffer. + * This behavior matches [`String.prototype.lastIndexOf()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/lastIndexOf). + * + * ```js + * import { Buffer } from 'buffer'; + * + * const b = Buffer.from('abcdef'); + * + * // Passing a value that's a number, but not a valid byte. + * // Prints: 2, equivalent to searching for 99 or 'c'. + * console.log(b.lastIndexOf(99.9)); + * console.log(b.lastIndexOf(256 + 99)); + * + * // Passing a byteOffset that coerces to NaN. + * // Prints: 1, searching the whole buffer. + * console.log(b.lastIndexOf('b', undefined)); + * console.log(b.lastIndexOf('b', {})); + * + * // Passing a byteOffset that coerces to 0. + * // Prints: -1, equivalent to passing 0. + * console.log(b.lastIndexOf('b', null)); + * console.log(b.lastIndexOf('b', [])); + * ``` + * + * If `value` is an empty string or empty `Buffer`, `byteOffset` will be returned. + * @since v6.0.0 + * @param value What to search for. + * @param [byteOffset=buf.length - 1] Where to begin searching in `buf`. If negative, then offset is calculated from the end of `buf`. + * @param [encoding='utf8'] If `value` is a string, this is the encoding used to determine the binary representation of the string that will be searched for in `buf`. + * @return The index of the last occurrence of `value` in `buf`, or `-1` if `buf` does not contain `value`. + */ + lastIndexOf(value: string | number | Uint8Array, byteOffset?: number, encoding?: BufferEncoding): number; + /** + * Creates and returns an [iterator](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols) of `[index, byte]` pairs from the contents + * of `buf`. + * + * ```js + * import { Buffer } from 'buffer'; + * + * // Log the entire contents of a `Buffer`. + * + * const buf = Buffer.from('buffer'); + * + * for (const pair of buf.entries()) { + * console.log(pair); + * } + * // Prints: + * // [0, 98] + * // [1, 117] + * // [2, 102] + * // [3, 102] + * // [4, 101] + * // [5, 114] + * ``` + * @since v1.1.0 + */ + entries(): IterableIterator<[number, number]>; + /** + * Equivalent to `buf.indexOf() !== -1`. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.from('this is a buffer'); + * + * console.log(buf.includes('this')); + * // Prints: true + * console.log(buf.includes('is')); + * // Prints: true + * console.log(buf.includes(Buffer.from('a buffer'))); + * // Prints: true + * console.log(buf.includes(97)); + * // Prints: true (97 is the decimal ASCII value for 'a') + * console.log(buf.includes(Buffer.from('a buffer example'))); + * // Prints: false + * console.log(buf.includes(Buffer.from('a buffer example').slice(0, 8))); + * // Prints: true + * console.log(buf.includes('this', 4)); + * // Prints: false + * ``` + * @since v5.3.0 + * @param value What to search for. + * @param [byteOffset=0] Where to begin searching in `buf`. If negative, then offset is calculated from the end of `buf`. + * @param [encoding='utf8'] If `value` is a string, this is its encoding. + * @return `true` if `value` was found in `buf`, `false` otherwise. + */ + includes(value: string | number | Buffer, byteOffset?: number, encoding?: BufferEncoding): boolean; + /** + * Creates and returns an [iterator](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols) of `buf` keys (indices). + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.from('buffer'); + * + * for (const key of buf.keys()) { + * console.log(key); + * } + * // Prints: + * // 0 + * // 1 + * // 2 + * // 3 + * // 4 + * // 5 + * ``` + * @since v1.1.0 + */ + keys(): IterableIterator; + /** + * Creates and returns an [iterator](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols) for `buf` values (bytes). This function is + * called automatically when a `Buffer` is used in a `for..of` statement. + * + * ```js + * import { Buffer } from 'buffer'; + * + * const buf = Buffer.from('buffer'); + * + * for (const value of buf.values()) { + * console.log(value); + * } + * // Prints: + * // 98 + * // 117 + * // 102 + * // 102 + * // 101 + * // 114 + * + * for (const value of buf) { + * console.log(value); + * } + * // Prints: + * // 98 + * // 117 + * // 102 + * // 102 + * // 101 + * // 114 + * ``` + * @since v1.1.0 + */ + values(): IterableIterator; + } + var Buffer: BufferConstructor; + /** + * Decodes a string of Base64-encoded data into bytes, and encodes those bytes + * into a string using Latin-1 (ISO-8859-1). + * + * The `data` may be any JavaScript-value that can be coerced into a string. + * + * **This function is only provided for compatibility with legacy web platform APIs** + * **and should never be used in new code, because they use strings to represent** + * **binary data and predate the introduction of typed arrays in JavaScript.** + * **For code running using Node.js APIs, converting between base64-encoded strings** + * **and binary data should be performed using `Buffer.from(str, 'base64')` and`buf.toString('base64')`.** + * @since v15.13.0, v14.17.0 + * @deprecated Use `Buffer.from(data, 'base64')` instead. + * @param data The Base64-encoded input string. + */ + function atob(data: string): string; + /** + * Decodes a string into bytes using Latin-1 (ISO-8859), and encodes those bytes + * into a string using Base64. + * + * The `data` may be any JavaScript-value that can be coerced into a string. + * + * **This function is only provided for compatibility with legacy web platform APIs** + * **and should never be used in new code, because they use strings to represent** + * **binary data and predate the introduction of typed arrays in JavaScript.** + * **For code running using Node.js APIs, converting between base64-encoded strings** + * **and binary data should be performed using `Buffer.from(str, 'base64')` and`buf.toString('base64')`.** + * @since v15.13.0, v14.17.0 + * @deprecated Use `buf.toString('base64')` instead. + * @param data An ASCII (Latin1) string. + */ + function btoa(data: string): string; + } +} +declare module 'node:buffer' { + export * from 'buffer'; +} diff --git a/node_modules/@types/node/ts4.8/child_process.d.ts b/node_modules/@types/node/ts4.8/child_process.d.ts new file mode 100644 index 000000000..79c7290e0 --- /dev/null +++ b/node_modules/@types/node/ts4.8/child_process.d.ts @@ -0,0 +1,1369 @@ +/** + * The `child_process` module provides the ability to spawn subprocesses in + * a manner that is similar, but not identical, to [`popen(3)`](http://man7.org/linux/man-pages/man3/popen.3.html). This capability + * is primarily provided by the {@link spawn} function: + * + * ```js + * const { spawn } = require('child_process'); + * const ls = spawn('ls', ['-lh', '/usr']); + * + * ls.stdout.on('data', (data) => { + * console.log(`stdout: ${data}`); + * }); + * + * ls.stderr.on('data', (data) => { + * console.error(`stderr: ${data}`); + * }); + * + * ls.on('close', (code) => { + * console.log(`child process exited with code ${code}`); + * }); + * ``` + * + * By default, pipes for `stdin`, `stdout`, and `stderr` are established between + * the parent Node.js process and the spawned subprocess. These pipes have + * limited (and platform-specific) capacity. If the subprocess writes to + * stdout in excess of that limit without the output being captured, the + * subprocess blocks waiting for the pipe buffer to accept more data. This is + * identical to the behavior of pipes in the shell. Use the `{ stdio: 'ignore' }`option if the output will not be consumed. + * + * The command lookup is performed using the `options.env.PATH` environment + * variable if `env` is in the `options` object. Otherwise, `process.env.PATH` is + * used. If `options.env` is set without `PATH`, lookup on Unix is performed + * on a default search path search of `/usr/bin:/bin` (see your operating system's + * manual for execvpe/execvp), on Windows the current processes environment + * variable `PATH` is used. + * + * On Windows, environment variables are case-insensitive. Node.js + * lexicographically sorts the `env` keys and uses the first one that + * case-insensitively matches. Only first (in lexicographic order) entry will be + * passed to the subprocess. This might lead to issues on Windows when passing + * objects to the `env` option that have multiple variants of the same key, such as`PATH` and `Path`. + * + * The {@link spawn} method spawns the child process asynchronously, + * without blocking the Node.js event loop. The {@link spawnSync} function provides equivalent functionality in a synchronous manner that blocks + * the event loop until the spawned process either exits or is terminated. + * + * For convenience, the `child_process` module provides a handful of synchronous + * and asynchronous alternatives to {@link spawn} and {@link spawnSync}. Each of these alternatives are implemented on + * top of {@link spawn} or {@link spawnSync}. + * + * * {@link exec}: spawns a shell and runs a command within that + * shell, passing the `stdout` and `stderr` to a callback function when + * complete. + * * {@link execFile}: similar to {@link exec} except + * that it spawns the command directly without first spawning a shell by + * default. + * * {@link fork}: spawns a new Node.js process and invokes a + * specified module with an IPC communication channel established that allows + * sending messages between parent and child. + * * {@link execSync}: a synchronous version of {@link exec} that will block the Node.js event loop. + * * {@link execFileSync}: a synchronous version of {@link execFile} that will block the Node.js event loop. + * + * For certain use cases, such as automating shell scripts, the `synchronous counterparts` may be more convenient. In many cases, however, + * the synchronous methods can have significant impact on performance due to + * stalling the event loop while spawned processes complete. + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/child_process.js) + */ +declare module 'child_process' { + import { ObjectEncodingOptions } from 'node:fs'; + import { EventEmitter, Abortable } from 'node:events'; + import * as net from 'node:net'; + import { Writable, Readable, Stream, Pipe } from 'node:stream'; + import { URL } from 'node:url'; + type Serializable = string | object | number | boolean | bigint; + type SendHandle = net.Socket | net.Server; + /** + * Instances of the `ChildProcess` represent spawned child processes. + * + * Instances of `ChildProcess` are not intended to be created directly. Rather, + * use the {@link spawn}, {@link exec},{@link execFile}, or {@link fork} methods to create + * instances of `ChildProcess`. + * @since v2.2.0 + */ + class ChildProcess extends EventEmitter { + /** + * A `Writable Stream` that represents the child process's `stdin`. + * + * If a child process waits to read all of its input, the child will not continue + * until this stream has been closed via `end()`. + * + * If the child was spawned with `stdio[0]` set to anything other than `'pipe'`, + * then this will be `null`. + * + * `subprocess.stdin` is an alias for `subprocess.stdio[0]`. Both properties will + * refer to the same value. + * + * The `subprocess.stdin` property can be `undefined` if the child process could + * not be successfully spawned. + * @since v0.1.90 + */ + stdin: Writable | null; + /** + * A `Readable Stream` that represents the child process's `stdout`. + * + * If the child was spawned with `stdio[1]` set to anything other than `'pipe'`, + * then this will be `null`. + * + * `subprocess.stdout` is an alias for `subprocess.stdio[1]`. Both properties will + * refer to the same value. + * + * ```js + * const { spawn } = require('child_process'); + * + * const subprocess = spawn('ls'); + * + * subprocess.stdout.on('data', (data) => { + * console.log(`Received chunk ${data}`); + * }); + * ``` + * + * The `subprocess.stdout` property can be `null` if the child process could + * not be successfully spawned. + * @since v0.1.90 + */ + stdout: Readable | null; + /** + * A `Readable Stream` that represents the child process's `stderr`. + * + * If the child was spawned with `stdio[2]` set to anything other than `'pipe'`, + * then this will be `null`. + * + * `subprocess.stderr` is an alias for `subprocess.stdio[2]`. Both properties will + * refer to the same value. + * + * The `subprocess.stderr` property can be `null` if the child process could + * not be successfully spawned. + * @since v0.1.90 + */ + stderr: Readable | null; + /** + * The `subprocess.channel` property is a reference to the child's IPC channel. If + * no IPC channel currently exists, this property is `undefined`. + * @since v7.1.0 + */ + readonly channel?: Pipe | null | undefined; + /** + * A sparse array of pipes to the child process, corresponding with positions in + * the `stdio` option passed to {@link spawn} that have been set + * to the value `'pipe'`. `subprocess.stdio[0]`, `subprocess.stdio[1]`, and`subprocess.stdio[2]` are also available as `subprocess.stdin`,`subprocess.stdout`, and `subprocess.stderr`, + * respectively. + * + * In the following example, only the child's fd `1` (stdout) is configured as a + * pipe, so only the parent's `subprocess.stdio[1]` is a stream, all other values + * in the array are `null`. + * + * ```js + * const assert = require('assert'); + * const fs = require('fs'); + * const child_process = require('child_process'); + * + * const subprocess = child_process.spawn('ls', { + * stdio: [ + * 0, // Use parent's stdin for child. + * 'pipe', // Pipe child's stdout to parent. + * fs.openSync('err.out', 'w'), // Direct child's stderr to a file. + * ] + * }); + * + * assert.strictEqual(subprocess.stdio[0], null); + * assert.strictEqual(subprocess.stdio[0], subprocess.stdin); + * + * assert(subprocess.stdout); + * assert.strictEqual(subprocess.stdio[1], subprocess.stdout); + * + * assert.strictEqual(subprocess.stdio[2], null); + * assert.strictEqual(subprocess.stdio[2], subprocess.stderr); + * ``` + * + * The `subprocess.stdio` property can be `undefined` if the child process could + * not be successfully spawned. + * @since v0.7.10 + */ + readonly stdio: [ + Writable | null, + // stdin + Readable | null, + // stdout + Readable | null, + // stderr + Readable | Writable | null | undefined, + // extra + Readable | Writable | null | undefined // extra + ]; + /** + * The `subprocess.killed` property indicates whether the child process + * successfully received a signal from `subprocess.kill()`. The `killed` property + * does not indicate that the child process has been terminated. + * @since v0.5.10 + */ + readonly killed: boolean; + /** + * Returns the process identifier (PID) of the child process. If the child process + * fails to spawn due to errors, then the value is `undefined` and `error` is + * emitted. + * + * ```js + * const { spawn } = require('child_process'); + * const grep = spawn('grep', ['ssh']); + * + * console.log(`Spawned child pid: ${grep.pid}`); + * grep.stdin.end(); + * ``` + * @since v0.1.90 + */ + readonly pid?: number | undefined; + /** + * The `subprocess.connected` property indicates whether it is still possible to + * send and receive messages from a child process. When `subprocess.connected` is`false`, it is no longer possible to send or receive messages. + * @since v0.7.2 + */ + readonly connected: boolean; + /** + * The `subprocess.exitCode` property indicates the exit code of the child process. + * If the child process is still running, the field will be `null`. + */ + readonly exitCode: number | null; + /** + * The `subprocess.signalCode` property indicates the signal received by + * the child process if any, else `null`. + */ + readonly signalCode: NodeJS.Signals | null; + /** + * The `subprocess.spawnargs` property represents the full list of command-line + * arguments the child process was launched with. + */ + readonly spawnargs: string[]; + /** + * The `subprocess.spawnfile` property indicates the executable file name of + * the child process that is launched. + * + * For {@link fork}, its value will be equal to `process.execPath`. + * For {@link spawn}, its value will be the name of + * the executable file. + * For {@link exec}, its value will be the name of the shell + * in which the child process is launched. + */ + readonly spawnfile: string; + /** + * The `subprocess.kill()` method sends a signal to the child process. If no + * argument is given, the process will be sent the `'SIGTERM'` signal. See [`signal(7)`](http://man7.org/linux/man-pages/man7/signal.7.html) for a list of available signals. This function + * returns `true` if [`kill(2)`](http://man7.org/linux/man-pages/man2/kill.2.html) succeeds, and `false` otherwise. + * + * ```js + * const { spawn } = require('child_process'); + * const grep = spawn('grep', ['ssh']); + * + * grep.on('close', (code, signal) => { + * console.log( + * `child process terminated due to receipt of signal ${signal}`); + * }); + * + * // Send SIGHUP to process. + * grep.kill('SIGHUP'); + * ``` + * + * The `ChildProcess` object may emit an `'error'` event if the signal + * cannot be delivered. Sending a signal to a child process that has already exited + * is not an error but may have unforeseen consequences. Specifically, if the + * process identifier (PID) has been reassigned to another process, the signal will + * be delivered to that process instead which can have unexpected results. + * + * While the function is called `kill`, the signal delivered to the child process + * may not actually terminate the process. + * + * See [`kill(2)`](http://man7.org/linux/man-pages/man2/kill.2.html) for reference. + * + * On Windows, where POSIX signals do not exist, the `signal` argument will be + * ignored, and the process will be killed forcefully and abruptly (similar to`'SIGKILL'`). + * See `Signal Events` for more details. + * + * On Linux, child processes of child processes will not be terminated + * when attempting to kill their parent. This is likely to happen when running a + * new process in a shell or with the use of the `shell` option of `ChildProcess`: + * + * ```js + * 'use strict'; + * const { spawn } = require('child_process'); + * + * const subprocess = spawn( + * 'sh', + * [ + * '-c', + * `node -e "setInterval(() => { + * console.log(process.pid, 'is alive') + * }, 500);"`, + * ], { + * stdio: ['inherit', 'inherit', 'inherit'] + * } + * ); + * + * setTimeout(() => { + * subprocess.kill(); // Does not terminate the Node.js process in the shell. + * }, 2000); + * ``` + * @since v0.1.90 + */ + kill(signal?: NodeJS.Signals | number): boolean; + /** + * When an IPC channel has been established between the parent and child ( + * i.e. when using {@link fork}), the `subprocess.send()` method can + * be used to send messages to the child process. When the child process is a + * Node.js instance, these messages can be received via the `'message'` event. + * + * The message goes through serialization and parsing. The resulting + * message might not be the same as what is originally sent. + * + * For example, in the parent script: + * + * ```js + * const cp = require('child_process'); + * const n = cp.fork(`${__dirname}/sub.js`); + * + * n.on('message', (m) => { + * console.log('PARENT got message:', m); + * }); + * + * // Causes the child to print: CHILD got message: { hello: 'world' } + * n.send({ hello: 'world' }); + * ``` + * + * And then the child script, `'sub.js'` might look like this: + * + * ```js + * process.on('message', (m) => { + * console.log('CHILD got message:', m); + * }); + * + * // Causes the parent to print: PARENT got message: { foo: 'bar', baz: null } + * process.send({ foo: 'bar', baz: NaN }); + * ``` + * + * Child Node.js processes will have a `process.send()` method of their own + * that allows the child to send messages back to the parent. + * + * There is a special case when sending a `{cmd: 'NODE_foo'}` message. Messages + * containing a `NODE_` prefix in the `cmd` property are reserved for use within + * Node.js core and will not be emitted in the child's `'message'` event. Rather, such messages are emitted using the`'internalMessage'` event and are consumed internally by Node.js. + * Applications should avoid using such messages or listening for`'internalMessage'` events as it is subject to change without notice. + * + * The optional `sendHandle` argument that may be passed to `subprocess.send()` is + * for passing a TCP server or socket object to the child process. The child will + * receive the object as the second argument passed to the callback function + * registered on the `'message'` event. Any data that is received + * and buffered in the socket will not be sent to the child. + * + * The optional `callback` is a function that is invoked after the message is + * sent but before the child may have received it. The function is called with a + * single argument: `null` on success, or an `Error` object on failure. + * + * If no `callback` function is provided and the message cannot be sent, an`'error'` event will be emitted by the `ChildProcess` object. This can + * happen, for instance, when the child process has already exited. + * + * `subprocess.send()` will return `false` if the channel has closed or when the + * backlog of unsent messages exceeds a threshold that makes it unwise to send + * more. Otherwise, the method returns `true`. The `callback` function can be + * used to implement flow control. + * + * #### Example: sending a server object + * + * The `sendHandle` argument can be used, for instance, to pass the handle of + * a TCP server object to the child process as illustrated in the example below: + * + * ```js + * const subprocess = require('child_process').fork('subprocess.js'); + * + * // Open up the server object and send the handle. + * const server = require('net').createServer(); + * server.on('connection', (socket) => { + * socket.end('handled by parent'); + * }); + * server.listen(1337, () => { + * subprocess.send('server', server); + * }); + * ``` + * + * The child would then receive the server object as: + * + * ```js + * process.on('message', (m, server) => { + * if (m === 'server') { + * server.on('connection', (socket) => { + * socket.end('handled by child'); + * }); + * } + * }); + * ``` + * + * Once the server is now shared between the parent and child, some connections + * can be handled by the parent and some by the child. + * + * While the example above uses a server created using the `net` module, `dgram`module servers use exactly the same workflow with the exceptions of listening on + * a `'message'` event instead of `'connection'` and using `server.bind()` instead + * of `server.listen()`. This is, however, currently only supported on Unix + * platforms. + * + * #### Example: sending a socket object + * + * Similarly, the `sendHandler` argument can be used to pass the handle of a + * socket to the child process. The example below spawns two children that each + * handle connections with "normal" or "special" priority: + * + * ```js + * const { fork } = require('child_process'); + * const normal = fork('subprocess.js', ['normal']); + * const special = fork('subprocess.js', ['special']); + * + * // Open up the server and send sockets to child. Use pauseOnConnect to prevent + * // the sockets from being read before they are sent to the child process. + * const server = require('net').createServer({ pauseOnConnect: true }); + * server.on('connection', (socket) => { + * + * // If this is special priority... + * if (socket.remoteAddress === '74.125.127.100') { + * special.send('socket', socket); + * return; + * } + * // This is normal priority. + * normal.send('socket', socket); + * }); + * server.listen(1337); + * ``` + * + * The `subprocess.js` would receive the socket handle as the second argument + * passed to the event callback function: + * + * ```js + * process.on('message', (m, socket) => { + * if (m === 'socket') { + * if (socket) { + * // Check that the client socket exists. + * // It is possible for the socket to be closed between the time it is + * // sent and the time it is received in the child process. + * socket.end(`Request handled with ${process.argv[2]} priority`); + * } + * } + * }); + * ``` + * + * Do not use `.maxConnections` on a socket that has been passed to a subprocess. + * The parent cannot track when the socket is destroyed. + * + * Any `'message'` handlers in the subprocess should verify that `socket` exists, + * as the connection may have been closed during the time it takes to send the + * connection to the child. + * @since v0.5.9 + * @param options The `options` argument, if present, is an object used to parameterize the sending of certain types of handles. `options` supports the following properties: + */ + send(message: Serializable, callback?: (error: Error | null) => void): boolean; + send(message: Serializable, sendHandle?: SendHandle, callback?: (error: Error | null) => void): boolean; + send(message: Serializable, sendHandle?: SendHandle, options?: MessageOptions, callback?: (error: Error | null) => void): boolean; + /** + * Closes the IPC channel between parent and child, allowing the child to exit + * gracefully once there are no other connections keeping it alive. After calling + * this method the `subprocess.connected` and `process.connected` properties in + * both the parent and child (respectively) will be set to `false`, and it will be + * no longer possible to pass messages between the processes. + * + * The `'disconnect'` event will be emitted when there are no messages in the + * process of being received. This will most often be triggered immediately after + * calling `subprocess.disconnect()`. + * + * When the child process is a Node.js instance (e.g. spawned using {@link fork}), the `process.disconnect()` method can be invoked + * within the child process to close the IPC channel as well. + * @since v0.7.2 + */ + disconnect(): void; + /** + * By default, the parent will wait for the detached child to exit. To prevent the + * parent from waiting for a given `subprocess` to exit, use the`subprocess.unref()` method. Doing so will cause the parent's event loop to not + * include the child in its reference count, allowing the parent to exit + * independently of the child, unless there is an established IPC channel between + * the child and the parent. + * + * ```js + * const { spawn } = require('child_process'); + * + * const subprocess = spawn(process.argv[0], ['child_program.js'], { + * detached: true, + * stdio: 'ignore' + * }); + * + * subprocess.unref(); + * ``` + * @since v0.7.10 + */ + unref(): void; + /** + * Calling `subprocess.ref()` after making a call to `subprocess.unref()` will + * restore the removed reference count for the child process, forcing the parent + * to wait for the child to exit before exiting itself. + * + * ```js + * const { spawn } = require('child_process'); + * + * const subprocess = spawn(process.argv[0], ['child_program.js'], { + * detached: true, + * stdio: 'ignore' + * }); + * + * subprocess.unref(); + * subprocess.ref(); + * ``` + * @since v0.7.10 + */ + ref(): void; + /** + * events.EventEmitter + * 1. close + * 2. disconnect + * 3. error + * 4. exit + * 5. message + * 6. spawn + */ + addListener(event: string, listener: (...args: any[]) => void): this; + addListener(event: 'close', listener: (code: number | null, signal: NodeJS.Signals | null) => void): this; + addListener(event: 'disconnect', listener: () => void): this; + addListener(event: 'error', listener: (err: Error) => void): this; + addListener(event: 'exit', listener: (code: number | null, signal: NodeJS.Signals | null) => void): this; + addListener(event: 'message', listener: (message: Serializable, sendHandle: SendHandle) => void): this; + addListener(event: 'spawn', listener: () => void): this; + emit(event: string | symbol, ...args: any[]): boolean; + emit(event: 'close', code: number | null, signal: NodeJS.Signals | null): boolean; + emit(event: 'disconnect'): boolean; + emit(event: 'error', err: Error): boolean; + emit(event: 'exit', code: number | null, signal: NodeJS.Signals | null): boolean; + emit(event: 'message', message: Serializable, sendHandle: SendHandle): boolean; + emit(event: 'spawn', listener: () => void): boolean; + on(event: string, listener: (...args: any[]) => void): this; + on(event: 'close', listener: (code: number | null, signal: NodeJS.Signals | null) => void): this; + on(event: 'disconnect', listener: () => void): this; + on(event: 'error', listener: (err: Error) => void): this; + on(event: 'exit', listener: (code: number | null, signal: NodeJS.Signals | null) => void): this; + on(event: 'message', listener: (message: Serializable, sendHandle: SendHandle) => void): this; + on(event: 'spawn', listener: () => void): this; + once(event: string, listener: (...args: any[]) => void): this; + once(event: 'close', listener: (code: number | null, signal: NodeJS.Signals | null) => void): this; + once(event: 'disconnect', listener: () => void): this; + once(event: 'error', listener: (err: Error) => void): this; + once(event: 'exit', listener: (code: number | null, signal: NodeJS.Signals | null) => void): this; + once(event: 'message', listener: (message: Serializable, sendHandle: SendHandle) => void): this; + once(event: 'spawn', listener: () => void): this; + prependListener(event: string, listener: (...args: any[]) => void): this; + prependListener(event: 'close', listener: (code: number | null, signal: NodeJS.Signals | null) => void): this; + prependListener(event: 'disconnect', listener: () => void): this; + prependListener(event: 'error', listener: (err: Error) => void): this; + prependListener(event: 'exit', listener: (code: number | null, signal: NodeJS.Signals | null) => void): this; + prependListener(event: 'message', listener: (message: Serializable, sendHandle: SendHandle) => void): this; + prependListener(event: 'spawn', listener: () => void): this; + prependOnceListener(event: string, listener: (...args: any[]) => void): this; + prependOnceListener(event: 'close', listener: (code: number | null, signal: NodeJS.Signals | null) => void): this; + prependOnceListener(event: 'disconnect', listener: () => void): this; + prependOnceListener(event: 'error', listener: (err: Error) => void): this; + prependOnceListener(event: 'exit', listener: (code: number | null, signal: NodeJS.Signals | null) => void): this; + prependOnceListener(event: 'message', listener: (message: Serializable, sendHandle: SendHandle) => void): this; + prependOnceListener(event: 'spawn', listener: () => void): this; + } + // return this object when stdio option is undefined or not specified + interface ChildProcessWithoutNullStreams extends ChildProcess { + stdin: Writable; + stdout: Readable; + stderr: Readable; + readonly stdio: [ + Writable, + Readable, + Readable, + // stderr + Readable | Writable | null | undefined, + // extra, no modification + Readable | Writable | null | undefined // extra, no modification + ]; + } + // return this object when stdio option is a tuple of 3 + interface ChildProcessByStdio extends ChildProcess { + stdin: I; + stdout: O; + stderr: E; + readonly stdio: [ + I, + O, + E, + Readable | Writable | null | undefined, + // extra, no modification + Readable | Writable | null | undefined // extra, no modification + ]; + } + interface MessageOptions { + keepOpen?: boolean | undefined; + } + type IOType = 'overlapped' | 'pipe' | 'ignore' | 'inherit'; + type StdioOptions = IOType | Array; + type SerializationType = 'json' | 'advanced'; + interface MessagingOptions extends Abortable { + /** + * Specify the kind of serialization used for sending messages between processes. + * @default 'json' + */ + serialization?: SerializationType | undefined; + /** + * The signal value to be used when the spawned process will be killed by the abort signal. + * @default 'SIGTERM' + */ + killSignal?: NodeJS.Signals | number | undefined; + /** + * In milliseconds the maximum amount of time the process is allowed to run. + */ + timeout?: number | undefined; + } + interface ProcessEnvOptions { + uid?: number | undefined; + gid?: number | undefined; + cwd?: string | URL | undefined; + env?: NodeJS.ProcessEnv | undefined; + } + interface CommonOptions extends ProcessEnvOptions { + /** + * @default true + */ + windowsHide?: boolean | undefined; + /** + * @default 0 + */ + timeout?: number | undefined; + } + interface CommonSpawnOptions extends CommonOptions, MessagingOptions, Abortable { + argv0?: string | undefined; + stdio?: StdioOptions | undefined; + shell?: boolean | string | undefined; + windowsVerbatimArguments?: boolean | undefined; + } + interface SpawnOptions extends CommonSpawnOptions { + detached?: boolean | undefined; + } + interface SpawnOptionsWithoutStdio extends SpawnOptions { + stdio?: StdioPipeNamed | StdioPipe[] | undefined; + } + type StdioNull = 'inherit' | 'ignore' | Stream; + type StdioPipeNamed = 'pipe' | 'overlapped'; + type StdioPipe = undefined | null | StdioPipeNamed; + interface SpawnOptionsWithStdioTuple extends SpawnOptions { + stdio: [Stdin, Stdout, Stderr]; + } + /** + * The `child_process.spawn()` method spawns a new process using the given`command`, with command-line arguments in `args`. If omitted, `args` defaults + * to an empty array. + * + * **If the `shell` option is enabled, do not pass unsanitized user input to this** + * **function. Any input containing shell metacharacters may be used to trigger** + * **arbitrary command execution.** + * + * A third argument may be used to specify additional options, with these defaults: + * + * ```js + * const defaults = { + * cwd: undefined, + * env: process.env + * }; + * ``` + * + * Use `cwd` to specify the working directory from which the process is spawned. + * If not given, the default is to inherit the current working directory. If given, + * but the path does not exist, the child process emits an `ENOENT` error + * and exits immediately. `ENOENT` is also emitted when the command + * does not exist. + * + * Use `env` to specify environment variables that will be visible to the new + * process, the default is `process.env`. + * + * `undefined` values in `env` will be ignored. + * + * Example of running `ls -lh /usr`, capturing `stdout`, `stderr`, and the + * exit code: + * + * ```js + * const { spawn } = require('child_process'); + * const ls = spawn('ls', ['-lh', '/usr']); + * + * ls.stdout.on('data', (data) => { + * console.log(`stdout: ${data}`); + * }); + * + * ls.stderr.on('data', (data) => { + * console.error(`stderr: ${data}`); + * }); + * + * ls.on('close', (code) => { + * console.log(`child process exited with code ${code}`); + * }); + * ``` + * + * Example: A very elaborate way to run `ps ax | grep ssh` + * + * ```js + * const { spawn } = require('child_process'); + * const ps = spawn('ps', ['ax']); + * const grep = spawn('grep', ['ssh']); + * + * ps.stdout.on('data', (data) => { + * grep.stdin.write(data); + * }); + * + * ps.stderr.on('data', (data) => { + * console.error(`ps stderr: ${data}`); + * }); + * + * ps.on('close', (code) => { + * if (code !== 0) { + * console.log(`ps process exited with code ${code}`); + * } + * grep.stdin.end(); + * }); + * + * grep.stdout.on('data', (data) => { + * console.log(data.toString()); + * }); + * + * grep.stderr.on('data', (data) => { + * console.error(`grep stderr: ${data}`); + * }); + * + * grep.on('close', (code) => { + * if (code !== 0) { + * console.log(`grep process exited with code ${code}`); + * } + * }); + * ``` + * + * Example of checking for failed `spawn`: + * + * ```js + * const { spawn } = require('child_process'); + * const subprocess = spawn('bad_command'); + * + * subprocess.on('error', (err) => { + * console.error('Failed to start subprocess.'); + * }); + * ``` + * + * Certain platforms (macOS, Linux) will use the value of `argv[0]` for the process + * title while others (Windows, SunOS) will use `command`. + * + * Node.js currently overwrites `argv[0]` with `process.execPath` on startup, so`process.argv[0]` in a Node.js child process will not match the `argv0`parameter passed to `spawn` from the parent, + * retrieve it with the`process.argv0` property instead. + * + * If the `signal` option is enabled, calling `.abort()` on the corresponding`AbortController` is similar to calling `.kill()` on the child process except + * the error passed to the callback will be an `AbortError`: + * + * ```js + * const { spawn } = require('child_process'); + * const controller = new AbortController(); + * const { signal } = controller; + * const grep = spawn('grep', ['ssh'], { signal }); + * grep.on('error', (err) => { + * // This will be called with err being an AbortError if the controller aborts + * }); + * controller.abort(); // Stops the child process + * ``` + * @since v0.1.90 + * @param command The command to run. + * @param args List of string arguments. + */ + function spawn(command: string, options?: SpawnOptionsWithoutStdio): ChildProcessWithoutNullStreams; + function spawn(command: string, options: SpawnOptionsWithStdioTuple): ChildProcessByStdio; + function spawn(command: string, options: SpawnOptionsWithStdioTuple): ChildProcessByStdio; + function spawn(command: string, options: SpawnOptionsWithStdioTuple): ChildProcessByStdio; + function spawn(command: string, options: SpawnOptionsWithStdioTuple): ChildProcessByStdio; + function spawn(command: string, options: SpawnOptionsWithStdioTuple): ChildProcessByStdio; + function spawn(command: string, options: SpawnOptionsWithStdioTuple): ChildProcessByStdio; + function spawn(command: string, options: SpawnOptionsWithStdioTuple): ChildProcessByStdio; + function spawn(command: string, options: SpawnOptionsWithStdioTuple): ChildProcessByStdio; + function spawn(command: string, options: SpawnOptions): ChildProcess; + // overloads of spawn with 'args' + function spawn(command: string, args?: ReadonlyArray, options?: SpawnOptionsWithoutStdio): ChildProcessWithoutNullStreams; + function spawn(command: string, args: ReadonlyArray, options: SpawnOptionsWithStdioTuple): ChildProcessByStdio; + function spawn(command: string, args: ReadonlyArray, options: SpawnOptionsWithStdioTuple): ChildProcessByStdio; + function spawn(command: string, args: ReadonlyArray, options: SpawnOptionsWithStdioTuple): ChildProcessByStdio; + function spawn(command: string, args: ReadonlyArray, options: SpawnOptionsWithStdioTuple): ChildProcessByStdio; + function spawn(command: string, args: ReadonlyArray, options: SpawnOptionsWithStdioTuple): ChildProcessByStdio; + function spawn(command: string, args: ReadonlyArray, options: SpawnOptionsWithStdioTuple): ChildProcessByStdio; + function spawn(command: string, args: ReadonlyArray, options: SpawnOptionsWithStdioTuple): ChildProcessByStdio; + function spawn(command: string, args: ReadonlyArray, options: SpawnOptionsWithStdioTuple): ChildProcessByStdio; + function spawn(command: string, args: ReadonlyArray, options: SpawnOptions): ChildProcess; + interface ExecOptions extends CommonOptions { + shell?: string | undefined; + signal?: AbortSignal | undefined; + maxBuffer?: number | undefined; + killSignal?: NodeJS.Signals | number | undefined; + } + interface ExecOptionsWithStringEncoding extends ExecOptions { + encoding: BufferEncoding; + } + interface ExecOptionsWithBufferEncoding extends ExecOptions { + encoding: BufferEncoding | null; // specify `null`. + } + interface ExecException extends Error { + cmd?: string | undefined; + killed?: boolean | undefined; + code?: number | undefined; + signal?: NodeJS.Signals | undefined; + } + /** + * Spawns a shell then executes the `command` within that shell, buffering any + * generated output. The `command` string passed to the exec function is processed + * directly by the shell and special characters (vary based on [shell](https://en.wikipedia.org/wiki/List_of_command-line_interpreters)) + * need to be dealt with accordingly: + * + * ```js + * const { exec } = require('child_process'); + * + * exec('"/path/to/test file/test.sh" arg1 arg2'); + * // Double quotes are used so that the space in the path is not interpreted as + * // a delimiter of multiple arguments. + * + * exec('echo "The \\$HOME variable is $HOME"'); + * // The $HOME variable is escaped in the first instance, but not in the second. + * ``` + * + * **Never pass unsanitized user input to this function. Any input containing shell** + * **metacharacters may be used to trigger arbitrary command execution.** + * + * If a `callback` function is provided, it is called with the arguments`(error, stdout, stderr)`. On success, `error` will be `null`. On error,`error` will be an instance of `Error`. The + * `error.code` property will be + * the exit code of the process. By convention, any exit code other than `0`indicates an error. `error.signal` will be the signal that terminated the + * process. + * + * The `stdout` and `stderr` arguments passed to the callback will contain the + * stdout and stderr output of the child process. By default, Node.js will decode + * the output as UTF-8 and pass strings to the callback. The `encoding` option + * can be used to specify the character encoding used to decode the stdout and + * stderr output. If `encoding` is `'buffer'`, or an unrecognized character + * encoding, `Buffer` objects will be passed to the callback instead. + * + * ```js + * const { exec } = require('child_process'); + * exec('cat *.js missing_file | wc -l', (error, stdout, stderr) => { + * if (error) { + * console.error(`exec error: ${error}`); + * return; + * } + * console.log(`stdout: ${stdout}`); + * console.error(`stderr: ${stderr}`); + * }); + * ``` + * + * If `timeout` is greater than `0`, the parent will send the signal + * identified by the `killSignal` property (the default is `'SIGTERM'`) if the + * child runs longer than `timeout` milliseconds. + * + * Unlike the [`exec(3)`](http://man7.org/linux/man-pages/man3/exec.3.html) POSIX system call, `child_process.exec()` does not replace + * the existing process and uses a shell to execute the command. + * + * If this method is invoked as its `util.promisify()` ed version, it returns + * a `Promise` for an `Object` with `stdout` and `stderr` properties. The returned`ChildProcess` instance is attached to the `Promise` as a `child` property. In + * case of an error (including any error resulting in an exit code other than 0), a + * rejected promise is returned, with the same `error` object given in the + * callback, but with two additional properties `stdout` and `stderr`. + * + * ```js + * const util = require('util'); + * const exec = util.promisify(require('child_process').exec); + * + * async function lsExample() { + * const { stdout, stderr } = await exec('ls'); + * console.log('stdout:', stdout); + * console.error('stderr:', stderr); + * } + * lsExample(); + * ``` + * + * If the `signal` option is enabled, calling `.abort()` on the corresponding`AbortController` is similar to calling `.kill()` on the child process except + * the error passed to the callback will be an `AbortError`: + * + * ```js + * const { exec } = require('child_process'); + * const controller = new AbortController(); + * const { signal } = controller; + * const child = exec('grep ssh', { signal }, (error) => { + * console.log(error); // an AbortError + * }); + * controller.abort(); + * ``` + * @since v0.1.90 + * @param command The command to run, with space-separated arguments. + * @param callback called with the output when process terminates. + */ + function exec(command: string, callback?: (error: ExecException | null, stdout: string, stderr: string) => void): ChildProcess; + // `options` with `"buffer"` or `null` for `encoding` means stdout/stderr are definitely `Buffer`. + function exec( + command: string, + options: { + encoding: 'buffer' | null; + } & ExecOptions, + callback?: (error: ExecException | null, stdout: Buffer, stderr: Buffer) => void + ): ChildProcess; + // `options` with well known `encoding` means stdout/stderr are definitely `string`. + function exec( + command: string, + options: { + encoding: BufferEncoding; + } & ExecOptions, + callback?: (error: ExecException | null, stdout: string, stderr: string) => void + ): ChildProcess; + // `options` with an `encoding` whose type is `string` means stdout/stderr could either be `Buffer` or `string`. + // There is no guarantee the `encoding` is unknown as `string` is a superset of `BufferEncoding`. + function exec( + command: string, + options: { + encoding: BufferEncoding; + } & ExecOptions, + callback?: (error: ExecException | null, stdout: string | Buffer, stderr: string | Buffer) => void + ): ChildProcess; + // `options` without an `encoding` means stdout/stderr are definitely `string`. + function exec(command: string, options: ExecOptions, callback?: (error: ExecException | null, stdout: string, stderr: string) => void): ChildProcess; + // fallback if nothing else matches. Worst case is always `string | Buffer`. + function exec( + command: string, + options: (ObjectEncodingOptions & ExecOptions) | undefined | null, + callback?: (error: ExecException | null, stdout: string | Buffer, stderr: string | Buffer) => void + ): ChildProcess; + interface PromiseWithChild extends Promise { + child: ChildProcess; + } + namespace exec { + function __promisify__(command: string): PromiseWithChild<{ + stdout: string; + stderr: string; + }>; + function __promisify__( + command: string, + options: { + encoding: 'buffer' | null; + } & ExecOptions + ): PromiseWithChild<{ + stdout: Buffer; + stderr: Buffer; + }>; + function __promisify__( + command: string, + options: { + encoding: BufferEncoding; + } & ExecOptions + ): PromiseWithChild<{ + stdout: string; + stderr: string; + }>; + function __promisify__( + command: string, + options: ExecOptions + ): PromiseWithChild<{ + stdout: string; + stderr: string; + }>; + function __promisify__( + command: string, + options?: (ObjectEncodingOptions & ExecOptions) | null + ): PromiseWithChild<{ + stdout: string | Buffer; + stderr: string | Buffer; + }>; + } + interface ExecFileOptions extends CommonOptions, Abortable { + maxBuffer?: number | undefined; + killSignal?: NodeJS.Signals | number | undefined; + windowsVerbatimArguments?: boolean | undefined; + shell?: boolean | string | undefined; + signal?: AbortSignal | undefined; + } + interface ExecFileOptionsWithStringEncoding extends ExecFileOptions { + encoding: BufferEncoding; + } + interface ExecFileOptionsWithBufferEncoding extends ExecFileOptions { + encoding: 'buffer' | null; + } + interface ExecFileOptionsWithOtherEncoding extends ExecFileOptions { + encoding: BufferEncoding; + } + type ExecFileException = ExecException & NodeJS.ErrnoException; + /** + * The `child_process.execFile()` function is similar to {@link exec} except that it does not spawn a shell by default. Rather, the specified + * executable `file` is spawned directly as a new process making it slightly more + * efficient than {@link exec}. + * + * The same options as {@link exec} are supported. Since a shell is + * not spawned, behaviors such as I/O redirection and file globbing are not + * supported. + * + * ```js + * const { execFile } = require('child_process'); + * const child = execFile('node', ['--version'], (error, stdout, stderr) => { + * if (error) { + * throw error; + * } + * console.log(stdout); + * }); + * ``` + * + * The `stdout` and `stderr` arguments passed to the callback will contain the + * stdout and stderr output of the child process. By default, Node.js will decode + * the output as UTF-8 and pass strings to the callback. The `encoding` option + * can be used to specify the character encoding used to decode the stdout and + * stderr output. If `encoding` is `'buffer'`, or an unrecognized character + * encoding, `Buffer` objects will be passed to the callback instead. + * + * If this method is invoked as its `util.promisify()` ed version, it returns + * a `Promise` for an `Object` with `stdout` and `stderr` properties. The returned`ChildProcess` instance is attached to the `Promise` as a `child` property. In + * case of an error (including any error resulting in an exit code other than 0), a + * rejected promise is returned, with the same `error` object given in the + * callback, but with two additional properties `stdout` and `stderr`. + * + * ```js + * const util = require('util'); + * const execFile = util.promisify(require('child_process').execFile); + * async function getVersion() { + * const { stdout } = await execFile('node', ['--version']); + * console.log(stdout); + * } + * getVersion(); + * ``` + * + * **If the `shell` option is enabled, do not pass unsanitized user input to this** + * **function. Any input containing shell metacharacters may be used to trigger** + * **arbitrary command execution.** + * + * If the `signal` option is enabled, calling `.abort()` on the corresponding`AbortController` is similar to calling `.kill()` on the child process except + * the error passed to the callback will be an `AbortError`: + * + * ```js + * const { execFile } = require('child_process'); + * const controller = new AbortController(); + * const { signal } = controller; + * const child = execFile('node', ['--version'], { signal }, (error) => { + * console.log(error); // an AbortError + * }); + * controller.abort(); + * ``` + * @since v0.1.91 + * @param file The name or path of the executable file to run. + * @param args List of string arguments. + * @param callback Called with the output when process terminates. + */ + function execFile(file: string): ChildProcess; + function execFile(file: string, options: (ObjectEncodingOptions & ExecFileOptions) | undefined | null): ChildProcess; + function execFile(file: string, args?: ReadonlyArray | null): ChildProcess; + function execFile(file: string, args: ReadonlyArray | undefined | null, options: (ObjectEncodingOptions & ExecFileOptions) | undefined | null): ChildProcess; + // no `options` definitely means stdout/stderr are `string`. + function execFile(file: string, callback: (error: ExecFileException | null, stdout: string, stderr: string) => void): ChildProcess; + function execFile(file: string, args: ReadonlyArray | undefined | null, callback: (error: ExecFileException | null, stdout: string, stderr: string) => void): ChildProcess; + // `options` with `"buffer"` or `null` for `encoding` means stdout/stderr are definitely `Buffer`. + function execFile(file: string, options: ExecFileOptionsWithBufferEncoding, callback: (error: ExecFileException | null, stdout: Buffer, stderr: Buffer) => void): ChildProcess; + function execFile( + file: string, + args: ReadonlyArray | undefined | null, + options: ExecFileOptionsWithBufferEncoding, + callback: (error: ExecFileException | null, stdout: Buffer, stderr: Buffer) => void + ): ChildProcess; + // `options` with well known `encoding` means stdout/stderr are definitely `string`. + function execFile(file: string, options: ExecFileOptionsWithStringEncoding, callback: (error: ExecFileException | null, stdout: string, stderr: string) => void): ChildProcess; + function execFile( + file: string, + args: ReadonlyArray | undefined | null, + options: ExecFileOptionsWithStringEncoding, + callback: (error: ExecFileException | null, stdout: string, stderr: string) => void + ): ChildProcess; + // `options` with an `encoding` whose type is `string` means stdout/stderr could either be `Buffer` or `string`. + // There is no guarantee the `encoding` is unknown as `string` is a superset of `BufferEncoding`. + function execFile(file: string, options: ExecFileOptionsWithOtherEncoding, callback: (error: ExecFileException | null, stdout: string | Buffer, stderr: string | Buffer) => void): ChildProcess; + function execFile( + file: string, + args: ReadonlyArray | undefined | null, + options: ExecFileOptionsWithOtherEncoding, + callback: (error: ExecFileException | null, stdout: string | Buffer, stderr: string | Buffer) => void + ): ChildProcess; + // `options` without an `encoding` means stdout/stderr are definitely `string`. + function execFile(file: string, options: ExecFileOptions, callback: (error: ExecFileException | null, stdout: string, stderr: string) => void): ChildProcess; + function execFile( + file: string, + args: ReadonlyArray | undefined | null, + options: ExecFileOptions, + callback: (error: ExecFileException | null, stdout: string, stderr: string) => void + ): ChildProcess; + // fallback if nothing else matches. Worst case is always `string | Buffer`. + function execFile( + file: string, + options: (ObjectEncodingOptions & ExecFileOptions) | undefined | null, + callback: ((error: ExecFileException | null, stdout: string | Buffer, stderr: string | Buffer) => void) | undefined | null + ): ChildProcess; + function execFile( + file: string, + args: ReadonlyArray | undefined | null, + options: (ObjectEncodingOptions & ExecFileOptions) | undefined | null, + callback: ((error: ExecFileException | null, stdout: string | Buffer, stderr: string | Buffer) => void) | undefined | null + ): ChildProcess; + namespace execFile { + function __promisify__(file: string): PromiseWithChild<{ + stdout: string; + stderr: string; + }>; + function __promisify__( + file: string, + args: ReadonlyArray | undefined | null + ): PromiseWithChild<{ + stdout: string; + stderr: string; + }>; + function __promisify__( + file: string, + options: ExecFileOptionsWithBufferEncoding + ): PromiseWithChild<{ + stdout: Buffer; + stderr: Buffer; + }>; + function __promisify__( + file: string, + args: ReadonlyArray | undefined | null, + options: ExecFileOptionsWithBufferEncoding + ): PromiseWithChild<{ + stdout: Buffer; + stderr: Buffer; + }>; + function __promisify__( + file: string, + options: ExecFileOptionsWithStringEncoding + ): PromiseWithChild<{ + stdout: string; + stderr: string; + }>; + function __promisify__( + file: string, + args: ReadonlyArray | undefined | null, + options: ExecFileOptionsWithStringEncoding + ): PromiseWithChild<{ + stdout: string; + stderr: string; + }>; + function __promisify__( + file: string, + options: ExecFileOptionsWithOtherEncoding + ): PromiseWithChild<{ + stdout: string | Buffer; + stderr: string | Buffer; + }>; + function __promisify__( + file: string, + args: ReadonlyArray | undefined | null, + options: ExecFileOptionsWithOtherEncoding + ): PromiseWithChild<{ + stdout: string | Buffer; + stderr: string | Buffer; + }>; + function __promisify__( + file: string, + options: ExecFileOptions + ): PromiseWithChild<{ + stdout: string; + stderr: string; + }>; + function __promisify__( + file: string, + args: ReadonlyArray | undefined | null, + options: ExecFileOptions + ): PromiseWithChild<{ + stdout: string; + stderr: string; + }>; + function __promisify__( + file: string, + options: (ObjectEncodingOptions & ExecFileOptions) | undefined | null + ): PromiseWithChild<{ + stdout: string | Buffer; + stderr: string | Buffer; + }>; + function __promisify__( + file: string, + args: ReadonlyArray | undefined | null, + options: (ObjectEncodingOptions & ExecFileOptions) | undefined | null + ): PromiseWithChild<{ + stdout: string | Buffer; + stderr: string | Buffer; + }>; + } + interface ForkOptions extends ProcessEnvOptions, MessagingOptions, Abortable { + execPath?: string | undefined; + execArgv?: string[] | undefined; + silent?: boolean | undefined; + stdio?: StdioOptions | undefined; + detached?: boolean | undefined; + windowsVerbatimArguments?: boolean | undefined; + } + /** + * The `child_process.fork()` method is a special case of {@link spawn} used specifically to spawn new Node.js processes. + * Like {@link spawn}, a `ChildProcess` object is returned. The + * returned `ChildProcess` will have an additional communication channel + * built-in that allows messages to be passed back and forth between the parent and + * child. See `subprocess.send()` for details. + * + * Keep in mind that spawned Node.js child processes are + * independent of the parent with exception of the IPC communication channel + * that is established between the two. Each process has its own memory, with + * their own V8 instances. Because of the additional resource allocations + * required, spawning a large number of child Node.js processes is not + * recommended. + * + * By default, `child_process.fork()` will spawn new Node.js instances using the `process.execPath` of the parent process. The `execPath` property in the`options` object allows for an alternative + * execution path to be used. + * + * Node.js processes launched with a custom `execPath` will communicate with the + * parent process using the file descriptor (fd) identified using the + * environment variable `NODE_CHANNEL_FD` on the child process. + * + * Unlike the [`fork(2)`](http://man7.org/linux/man-pages/man2/fork.2.html) POSIX system call, `child_process.fork()` does not clone the + * current process. + * + * The `shell` option available in {@link spawn} is not supported by`child_process.fork()` and will be ignored if set. + * + * If the `signal` option is enabled, calling `.abort()` on the corresponding`AbortController` is similar to calling `.kill()` on the child process except + * the error passed to the callback will be an `AbortError`: + * + * ```js + * if (process.argv[2] === 'child') { + * setTimeout(() => { + * console.log(`Hello from ${process.argv[2]}!`); + * }, 1_000); + * } else { + * const { fork } = require('child_process'); + * const controller = new AbortController(); + * const { signal } = controller; + * const child = fork(__filename, ['child'], { signal }); + * child.on('error', (err) => { + * // This will be called with err being an AbortError if the controller aborts + * }); + * controller.abort(); // Stops the child process + * } + * ``` + * @since v0.5.0 + * @param modulePath The module to run in the child. + * @param args List of string arguments. + */ + function fork(modulePath: string, options?: ForkOptions): ChildProcess; + function fork(modulePath: string, args?: ReadonlyArray, options?: ForkOptions): ChildProcess; + interface SpawnSyncOptions extends CommonSpawnOptions { + input?: string | NodeJS.ArrayBufferView | undefined; + maxBuffer?: number | undefined; + encoding?: BufferEncoding | 'buffer' | null | undefined; + } + interface SpawnSyncOptionsWithStringEncoding extends SpawnSyncOptions { + encoding: BufferEncoding; + } + interface SpawnSyncOptionsWithBufferEncoding extends SpawnSyncOptions { + encoding?: 'buffer' | null | undefined; + } + interface SpawnSyncReturns { + pid: number; + output: Array; + stdout: T; + stderr: T; + status: number | null; + signal: NodeJS.Signals | null; + error?: Error | undefined; + } + /** + * The `child_process.spawnSync()` method is generally identical to {@link spawn} with the exception that the function will not return + * until the child process has fully closed. When a timeout has been encountered + * and `killSignal` is sent, the method won't return until the process has + * completely exited. If the process intercepts and handles the `SIGTERM` signal + * and doesn't exit, the parent process will wait until the child process has + * exited. + * + * **If the `shell` option is enabled, do not pass unsanitized user input to this** + * **function. Any input containing shell metacharacters may be used to trigger** + * **arbitrary command execution.** + * @since v0.11.12 + * @param command The command to run. + * @param args List of string arguments. + */ + function spawnSync(command: string): SpawnSyncReturns; + function spawnSync(command: string, options: SpawnSyncOptionsWithStringEncoding): SpawnSyncReturns; + function spawnSync(command: string, options: SpawnSyncOptionsWithBufferEncoding): SpawnSyncReturns; + function spawnSync(command: string, options?: SpawnSyncOptions): SpawnSyncReturns; + function spawnSync(command: string, args: ReadonlyArray): SpawnSyncReturns; + function spawnSync(command: string, args: ReadonlyArray, options: SpawnSyncOptionsWithStringEncoding): SpawnSyncReturns; + function spawnSync(command: string, args: ReadonlyArray, options: SpawnSyncOptionsWithBufferEncoding): SpawnSyncReturns; + function spawnSync(command: string, args?: ReadonlyArray, options?: SpawnSyncOptions): SpawnSyncReturns; + interface CommonExecOptions extends CommonOptions { + input?: string | NodeJS.ArrayBufferView | undefined; + stdio?: StdioOptions | undefined; + killSignal?: NodeJS.Signals | number | undefined; + maxBuffer?: number | undefined; + encoding?: BufferEncoding | 'buffer' | null | undefined; + } + interface ExecSyncOptions extends CommonExecOptions { + shell?: string | undefined; + } + interface ExecSyncOptionsWithStringEncoding extends ExecSyncOptions { + encoding: BufferEncoding; + } + interface ExecSyncOptionsWithBufferEncoding extends ExecSyncOptions { + encoding?: 'buffer' | null | undefined; + } + /** + * The `child_process.execSync()` method is generally identical to {@link exec} with the exception that the method will not return + * until the child process has fully closed. When a timeout has been encountered + * and `killSignal` is sent, the method won't return until the process has + * completely exited. If the child process intercepts and handles the `SIGTERM`signal and doesn't exit, the parent process will wait until the child process + * has exited. + * + * If the process times out or has a non-zero exit code, this method will throw. + * The `Error` object will contain the entire result from {@link spawnSync}. + * + * **Never pass unsanitized user input to this function. Any input containing shell** + * **metacharacters may be used to trigger arbitrary command execution.** + * @since v0.11.12 + * @param command The command to run. + * @return The stdout from the command. + */ + function execSync(command: string): Buffer; + function execSync(command: string, options: ExecSyncOptionsWithStringEncoding): string; + function execSync(command: string, options: ExecSyncOptionsWithBufferEncoding): Buffer; + function execSync(command: string, options?: ExecSyncOptions): string | Buffer; + interface ExecFileSyncOptions extends CommonExecOptions { + shell?: boolean | string | undefined; + } + interface ExecFileSyncOptionsWithStringEncoding extends ExecFileSyncOptions { + encoding: BufferEncoding; + } + interface ExecFileSyncOptionsWithBufferEncoding extends ExecFileSyncOptions { + encoding?: 'buffer' | null; // specify `null`. + } + /** + * The `child_process.execFileSync()` method is generally identical to {@link execFile} with the exception that the method will not + * return until the child process has fully closed. When a timeout has been + * encountered and `killSignal` is sent, the method won't return until the process + * has completely exited. + * + * If the child process intercepts and handles the `SIGTERM` signal and + * does not exit, the parent process will still wait until the child process has + * exited. + * + * If the process times out or has a non-zero exit code, this method will throw an `Error` that will include the full result of the underlying {@link spawnSync}. + * + * **If the `shell` option is enabled, do not pass unsanitized user input to this** + * **function. Any input containing shell metacharacters may be used to trigger** + * **arbitrary command execution.** + * @since v0.11.12 + * @param file The name or path of the executable file to run. + * @param args List of string arguments. + * @return The stdout from the command. + */ + function execFileSync(file: string): Buffer; + function execFileSync(file: string, options: ExecFileSyncOptionsWithStringEncoding): string; + function execFileSync(file: string, options: ExecFileSyncOptionsWithBufferEncoding): Buffer; + function execFileSync(file: string, options?: ExecFileSyncOptions): string | Buffer; + function execFileSync(file: string, args: ReadonlyArray): Buffer; + function execFileSync(file: string, args: ReadonlyArray, options: ExecFileSyncOptionsWithStringEncoding): string; + function execFileSync(file: string, args: ReadonlyArray, options: ExecFileSyncOptionsWithBufferEncoding): Buffer; + function execFileSync(file: string, args?: ReadonlyArray, options?: ExecFileSyncOptions): string | Buffer; +} +declare module 'node:child_process' { + export * from 'child_process'; +} diff --git a/node_modules/@types/node/ts4.8/cluster.d.ts b/node_modules/@types/node/ts4.8/cluster.d.ts new file mode 100644 index 000000000..37dbc5746 --- /dev/null +++ b/node_modules/@types/node/ts4.8/cluster.d.ts @@ -0,0 +1,410 @@ +/** + * Clusters of Node.js processes can be used to run multiple instances of Node.js + * that can distribute workloads among their application threads. When process + * isolation is not needed, use the `worker_threads` module instead, which + * allows running multiple application threads within a single Node.js instance. + * + * The cluster module allows easy creation of child processes that all share + * server ports. + * + * ```js + * import cluster from 'cluster'; + * import http from 'http'; + * import { cpus } from 'os'; + * import process from 'process'; + * + * const numCPUs = cpus().length; + * + * if (cluster.isPrimary) { + * console.log(`Primary ${process.pid} is running`); + * + * // Fork workers. + * for (let i = 0; i < numCPUs; i++) { + * cluster.fork(); + * } + * + * cluster.on('exit', (worker, code, signal) => { + * console.log(`worker ${worker.process.pid} died`); + * }); + * } else { + * // Workers can share any TCP connection + * // In this case it is an HTTP server + * http.createServer((req, res) => { + * res.writeHead(200); + * res.end('hello world\n'); + * }).listen(8000); + * + * console.log(`Worker ${process.pid} started`); + * } + * ``` + * + * Running Node.js will now share port 8000 between the workers: + * + * ```console + * $ node server.js + * Primary 3596 is running + * Worker 4324 started + * Worker 4520 started + * Worker 6056 started + * Worker 5644 started + * ``` + * + * On Windows, it is not yet possible to set up a named pipe server in a worker. + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/cluster.js) + */ +declare module 'cluster' { + import * as child from 'node:child_process'; + import EventEmitter = require('node:events'); + import * as net from 'node:net'; + export interface ClusterSettings { + execArgv?: string[] | undefined; // default: process.execArgv + exec?: string | undefined; + args?: string[] | undefined; + silent?: boolean | undefined; + stdio?: any[] | undefined; + uid?: number | undefined; + gid?: number | undefined; + inspectPort?: number | (() => number) | undefined; + } + export interface Address { + address: string; + port: number; + addressType: number | 'udp4' | 'udp6'; // 4, 6, -1, "udp4", "udp6" + } + /** + * A `Worker` object contains all public information and method about a worker. + * In the primary it can be obtained using `cluster.workers`. In a worker + * it can be obtained using `cluster.worker`. + * @since v0.7.0 + */ + export class Worker extends EventEmitter { + /** + * Each new worker is given its own unique id, this id is stored in the`id`. + * + * While a worker is alive, this is the key that indexes it in`cluster.workers`. + * @since v0.8.0 + */ + id: number; + /** + * All workers are created using `child_process.fork()`, the returned object + * from this function is stored as `.process`. In a worker, the global `process`is stored. + * + * See: `Child Process module`. + * + * Workers will call `process.exit(0)` if the `'disconnect'` event occurs + * on `process` and `.exitedAfterDisconnect` is not `true`. This protects against + * accidental disconnection. + * @since v0.7.0 + */ + process: child.ChildProcess; + /** + * Send a message to a worker or primary, optionally with a handle. + * + * In the primary, this sends a message to a specific worker. It is identical to `ChildProcess.send()`. + * + * In a worker, this sends a message to the primary. It is identical to`process.send()`. + * + * This example will echo back all messages from the primary: + * + * ```js + * if (cluster.isPrimary) { + * const worker = cluster.fork(); + * worker.send('hi there'); + * + * } else if (cluster.isWorker) { + * process.on('message', (msg) => { + * process.send(msg); + * }); + * } + * ``` + * @since v0.7.0 + * @param options The `options` argument, if present, is an object used to parameterize the sending of certain types of handles. `options` supports the following properties: + */ + send(message: child.Serializable, callback?: (error: Error | null) => void): boolean; + send(message: child.Serializable, sendHandle: child.SendHandle, callback?: (error: Error | null) => void): boolean; + send(message: child.Serializable, sendHandle: child.SendHandle, options?: child.MessageOptions, callback?: (error: Error | null) => void): boolean; + /** + * This function will kill the worker. In the primary worker, it does this by + * disconnecting the `worker.process`, and once disconnected, killing with`signal`. In the worker, it does it by killing the process with `signal`. + * + * The `kill()` function kills the worker process without waiting for a graceful + * disconnect, it has the same behavior as `worker.process.kill()`. + * + * This method is aliased as `worker.destroy()` for backwards compatibility. + * + * In a worker, `process.kill()` exists, but it is not this function; + * it is `kill()`. + * @since v0.9.12 + * @param [signal='SIGTERM'] Name of the kill signal to send to the worker process. + */ + kill(signal?: string): void; + destroy(signal?: string): void; + /** + * In a worker, this function will close all servers, wait for the `'close'` event + * on those servers, and then disconnect the IPC channel. + * + * In the primary, an internal message is sent to the worker causing it to call`.disconnect()` on itself. + * + * Causes `.exitedAfterDisconnect` to be set. + * + * After a server is closed, it will no longer accept new connections, + * but connections may be accepted by any other listening worker. Existing + * connections will be allowed to close as usual. When no more connections exist, + * see `server.close()`, the IPC channel to the worker will close allowing it + * to die gracefully. + * + * The above applies _only_ to server connections, client connections are not + * automatically closed by workers, and disconnect does not wait for them to close + * before exiting. + * + * In a worker, `process.disconnect` exists, but it is not this function; + * it is `disconnect()`. + * + * Because long living server connections may block workers from disconnecting, it + * may be useful to send a message, so application specific actions may be taken to + * close them. It also may be useful to implement a timeout, killing a worker if + * the `'disconnect'` event has not been emitted after some time. + * + * ```js + * if (cluster.isPrimary) { + * const worker = cluster.fork(); + * let timeout; + * + * worker.on('listening', (address) => { + * worker.send('shutdown'); + * worker.disconnect(); + * timeout = setTimeout(() => { + * worker.kill(); + * }, 2000); + * }); + * + * worker.on('disconnect', () => { + * clearTimeout(timeout); + * }); + * + * } else if (cluster.isWorker) { + * const net = require('net'); + * const server = net.createServer((socket) => { + * // Connections never end + * }); + * + * server.listen(8000); + * + * process.on('message', (msg) => { + * if (msg === 'shutdown') { + * // Initiate graceful close of any connections to server + * } + * }); + * } + * ``` + * @since v0.7.7 + * @return A reference to `worker`. + */ + disconnect(): void; + /** + * This function returns `true` if the worker is connected to its primary via its + * IPC channel, `false` otherwise. A worker is connected to its primary after it + * has been created. It is disconnected after the `'disconnect'` event is emitted. + * @since v0.11.14 + */ + isConnected(): boolean; + /** + * This function returns `true` if the worker's process has terminated (either + * because of exiting or being signaled). Otherwise, it returns `false`. + * + * ```js + * import cluster from 'cluster'; + * import http from 'http'; + * import { cpus } from 'os'; + * import process from 'process'; + * + * const numCPUs = cpus().length; + * + * if (cluster.isPrimary) { + * console.log(`Primary ${process.pid} is running`); + * + * // Fork workers. + * for (let i = 0; i < numCPUs; i++) { + * cluster.fork(); + * } + * + * cluster.on('fork', (worker) => { + * console.log('worker is dead:', worker.isDead()); + * }); + * + * cluster.on('exit', (worker, code, signal) => { + * console.log('worker is dead:', worker.isDead()); + * }); + * } else { + * // Workers can share any TCP connection. In this case, it is an HTTP server. + * http.createServer((req, res) => { + * res.writeHead(200); + * res.end(`Current process\n ${process.pid}`); + * process.kill(process.pid); + * }).listen(8000); + * } + * ``` + * @since v0.11.14 + */ + isDead(): boolean; + /** + * This property is `true` if the worker exited due to `.disconnect()`. + * If the worker exited any other way, it is `false`. If the + * worker has not exited, it is `undefined`. + * + * The boolean `worker.exitedAfterDisconnect` allows distinguishing between + * voluntary and accidental exit, the primary may choose not to respawn a worker + * based on this value. + * + * ```js + * cluster.on('exit', (worker, code, signal) => { + * if (worker.exitedAfterDisconnect === true) { + * console.log('Oh, it was just voluntary – no need to worry'); + * } + * }); + * + * // kill worker + * worker.kill(); + * ``` + * @since v6.0.0 + */ + exitedAfterDisconnect: boolean; + /** + * events.EventEmitter + * 1. disconnect + * 2. error + * 3. exit + * 4. listening + * 5. message + * 6. online + */ + addListener(event: string, listener: (...args: any[]) => void): this; + addListener(event: 'disconnect', listener: () => void): this; + addListener(event: 'error', listener: (error: Error) => void): this; + addListener(event: 'exit', listener: (code: number, signal: string) => void): this; + addListener(event: 'listening', listener: (address: Address) => void): this; + addListener(event: 'message', listener: (message: any, handle: net.Socket | net.Server) => void): this; // the handle is a net.Socket or net.Server object, or undefined. + addListener(event: 'online', listener: () => void): this; + emit(event: string | symbol, ...args: any[]): boolean; + emit(event: 'disconnect'): boolean; + emit(event: 'error', error: Error): boolean; + emit(event: 'exit', code: number, signal: string): boolean; + emit(event: 'listening', address: Address): boolean; + emit(event: 'message', message: any, handle: net.Socket | net.Server): boolean; + emit(event: 'online'): boolean; + on(event: string, listener: (...args: any[]) => void): this; + on(event: 'disconnect', listener: () => void): this; + on(event: 'error', listener: (error: Error) => void): this; + on(event: 'exit', listener: (code: number, signal: string) => void): this; + on(event: 'listening', listener: (address: Address) => void): this; + on(event: 'message', listener: (message: any, handle: net.Socket | net.Server) => void): this; // the handle is a net.Socket or net.Server object, or undefined. + on(event: 'online', listener: () => void): this; + once(event: string, listener: (...args: any[]) => void): this; + once(event: 'disconnect', listener: () => void): this; + once(event: 'error', listener: (error: Error) => void): this; + once(event: 'exit', listener: (code: number, signal: string) => void): this; + once(event: 'listening', listener: (address: Address) => void): this; + once(event: 'message', listener: (message: any, handle: net.Socket | net.Server) => void): this; // the handle is a net.Socket or net.Server object, or undefined. + once(event: 'online', listener: () => void): this; + prependListener(event: string, listener: (...args: any[]) => void): this; + prependListener(event: 'disconnect', listener: () => void): this; + prependListener(event: 'error', listener: (error: Error) => void): this; + prependListener(event: 'exit', listener: (code: number, signal: string) => void): this; + prependListener(event: 'listening', listener: (address: Address) => void): this; + prependListener(event: 'message', listener: (message: any, handle: net.Socket | net.Server) => void): this; // the handle is a net.Socket or net.Server object, or undefined. + prependListener(event: 'online', listener: () => void): this; + prependOnceListener(event: string, listener: (...args: any[]) => void): this; + prependOnceListener(event: 'disconnect', listener: () => void): this; + prependOnceListener(event: 'error', listener: (error: Error) => void): this; + prependOnceListener(event: 'exit', listener: (code: number, signal: string) => void): this; + prependOnceListener(event: 'listening', listener: (address: Address) => void): this; + prependOnceListener(event: 'message', listener: (message: any, handle: net.Socket | net.Server) => void): this; // the handle is a net.Socket or net.Server object, or undefined. + prependOnceListener(event: 'online', listener: () => void): this; + } + export interface Cluster extends EventEmitter { + disconnect(callback?: () => void): void; + fork(env?: any): Worker; + /** @deprecated since v16.0.0 - use isPrimary. */ + readonly isMaster: boolean; + readonly isPrimary: boolean; + readonly isWorker: boolean; + schedulingPolicy: number; + readonly settings: ClusterSettings; + /** @deprecated since v16.0.0 - use setupPrimary. */ + setupMaster(settings?: ClusterSettings): void; + /** + * `setupPrimary` is used to change the default 'fork' behavior. Once called, the settings will be present in cluster.settings. + */ + setupPrimary(settings?: ClusterSettings): void; + readonly worker?: Worker | undefined; + readonly workers?: NodeJS.Dict | undefined; + readonly SCHED_NONE: number; + readonly SCHED_RR: number; + /** + * events.EventEmitter + * 1. disconnect + * 2. exit + * 3. fork + * 4. listening + * 5. message + * 6. online + * 7. setup + */ + addListener(event: string, listener: (...args: any[]) => void): this; + addListener(event: 'disconnect', listener: (worker: Worker) => void): this; + addListener(event: 'exit', listener: (worker: Worker, code: number, signal: string) => void): this; + addListener(event: 'fork', listener: (worker: Worker) => void): this; + addListener(event: 'listening', listener: (worker: Worker, address: Address) => void): this; + addListener(event: 'message', listener: (worker: Worker, message: any, handle: net.Socket | net.Server) => void): this; // the handle is a net.Socket or net.Server object, or undefined. + addListener(event: 'online', listener: (worker: Worker) => void): this; + addListener(event: 'setup', listener: (settings: ClusterSettings) => void): this; + emit(event: string | symbol, ...args: any[]): boolean; + emit(event: 'disconnect', worker: Worker): boolean; + emit(event: 'exit', worker: Worker, code: number, signal: string): boolean; + emit(event: 'fork', worker: Worker): boolean; + emit(event: 'listening', worker: Worker, address: Address): boolean; + emit(event: 'message', worker: Worker, message: any, handle: net.Socket | net.Server): boolean; + emit(event: 'online', worker: Worker): boolean; + emit(event: 'setup', settings: ClusterSettings): boolean; + on(event: string, listener: (...args: any[]) => void): this; + on(event: 'disconnect', listener: (worker: Worker) => void): this; + on(event: 'exit', listener: (worker: Worker, code: number, signal: string) => void): this; + on(event: 'fork', listener: (worker: Worker) => void): this; + on(event: 'listening', listener: (worker: Worker, address: Address) => void): this; + on(event: 'message', listener: (worker: Worker, message: any, handle: net.Socket | net.Server) => void): this; // the handle is a net.Socket or net.Server object, or undefined. + on(event: 'online', listener: (worker: Worker) => void): this; + on(event: 'setup', listener: (settings: ClusterSettings) => void): this; + once(event: string, listener: (...args: any[]) => void): this; + once(event: 'disconnect', listener: (worker: Worker) => void): this; + once(event: 'exit', listener: (worker: Worker, code: number, signal: string) => void): this; + once(event: 'fork', listener: (worker: Worker) => void): this; + once(event: 'listening', listener: (worker: Worker, address: Address) => void): this; + once(event: 'message', listener: (worker: Worker, message: any, handle: net.Socket | net.Server) => void): this; // the handle is a net.Socket or net.Server object, or undefined. + once(event: 'online', listener: (worker: Worker) => void): this; + once(event: 'setup', listener: (settings: ClusterSettings) => void): this; + prependListener(event: string, listener: (...args: any[]) => void): this; + prependListener(event: 'disconnect', listener: (worker: Worker) => void): this; + prependListener(event: 'exit', listener: (worker: Worker, code: number, signal: string) => void): this; + prependListener(event: 'fork', listener: (worker: Worker) => void): this; + prependListener(event: 'listening', listener: (worker: Worker, address: Address) => void): this; + // the handle is a net.Socket or net.Server object, or undefined. + prependListener(event: 'message', listener: (worker: Worker, message: any, handle?: net.Socket | net.Server) => void): this; + prependListener(event: 'online', listener: (worker: Worker) => void): this; + prependListener(event: 'setup', listener: (settings: ClusterSettings) => void): this; + prependOnceListener(event: string, listener: (...args: any[]) => void): this; + prependOnceListener(event: 'disconnect', listener: (worker: Worker) => void): this; + prependOnceListener(event: 'exit', listener: (worker: Worker, code: number, signal: string) => void): this; + prependOnceListener(event: 'fork', listener: (worker: Worker) => void): this; + prependOnceListener(event: 'listening', listener: (worker: Worker, address: Address) => void): this; + // the handle is a net.Socket or net.Server object, or undefined. + prependOnceListener(event: 'message', listener: (worker: Worker, message: any, handle: net.Socket | net.Server) => void): this; + prependOnceListener(event: 'online', listener: (worker: Worker) => void): this; + prependOnceListener(event: 'setup', listener: (settings: ClusterSettings) => void): this; + } + const cluster: Cluster; + export default cluster; +} +declare module 'node:cluster' { + export * from 'cluster'; + export { default as default } from 'cluster'; +} diff --git a/node_modules/@types/node/ts4.8/console.d.ts b/node_modules/@types/node/ts4.8/console.d.ts new file mode 100644 index 000000000..16c9137ad --- /dev/null +++ b/node_modules/@types/node/ts4.8/console.d.ts @@ -0,0 +1,412 @@ +/** + * The `console` module provides a simple debugging console that is similar to the + * JavaScript console mechanism provided by web browsers. + * + * The module exports two specific components: + * + * * A `Console` class with methods such as `console.log()`, `console.error()` and`console.warn()` that can be used to write to any Node.js stream. + * * A global `console` instance configured to write to `process.stdout` and `process.stderr`. The global `console` can be used without calling`require('console')`. + * + * _**Warning**_: The global console object's methods are neither consistently + * synchronous like the browser APIs they resemble, nor are they consistently + * asynchronous like all other Node.js streams. See the `note on process I/O` for + * more information. + * + * Example using the global `console`: + * + * ```js + * console.log('hello world'); + * // Prints: hello world, to stdout + * console.log('hello %s', 'world'); + * // Prints: hello world, to stdout + * console.error(new Error('Whoops, something bad happened')); + * // Prints error message and stack trace to stderr: + * // Error: Whoops, something bad happened + * // at [eval]:5:15 + * // at Script.runInThisContext (node:vm:132:18) + * // at Object.runInThisContext (node:vm:309:38) + * // at node:internal/process/execution:77:19 + * // at [eval]-wrapper:6:22 + * // at evalScript (node:internal/process/execution:76:60) + * // at node:internal/main/eval_string:23:3 + * + * const name = 'Will Robinson'; + * console.warn(`Danger ${name}! Danger!`); + * // Prints: Danger Will Robinson! Danger!, to stderr + * ``` + * + * Example using the `Console` class: + * + * ```js + * const out = getStreamSomehow(); + * const err = getStreamSomehow(); + * const myConsole = new console.Console(out, err); + * + * myConsole.log('hello world'); + * // Prints: hello world, to out + * myConsole.log('hello %s', 'world'); + * // Prints: hello world, to out + * myConsole.error(new Error('Whoops, something bad happened')); + * // Prints: [Error: Whoops, something bad happened], to err + * + * const name = 'Will Robinson'; + * myConsole.warn(`Danger ${name}! Danger!`); + * // Prints: Danger Will Robinson! Danger!, to err + * ``` + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/console.js) + */ +declare module 'console' { + import console = require('node:console'); + export = console; +} +declare module 'node:console' { + import { InspectOptions } from 'node:util'; + global { + // This needs to be global to avoid TS2403 in case lib.dom.d.ts is present in the same build + interface Console { + Console: console.ConsoleConstructor; + /** + * `console.assert()` writes a message if `value` is [falsy](https://developer.mozilla.org/en-US/docs/Glossary/Falsy) or omitted. It only + * writes a message and does not otherwise affect execution. The output always + * starts with `"Assertion failed"`. If provided, `message` is formatted using `util.format()`. + * + * If `value` is [truthy](https://developer.mozilla.org/en-US/docs/Glossary/Truthy), nothing happens. + * + * ```js + * console.assert(true, 'does nothing'); + * + * console.assert(false, 'Whoops %s work', 'didn\'t'); + * // Assertion failed: Whoops didn't work + * + * console.assert(); + * // Assertion failed + * ``` + * @since v0.1.101 + * @param value The value tested for being truthy. + * @param message All arguments besides `value` are used as error message. + */ + assert(value: any, message?: string, ...optionalParams: any[]): void; + /** + * When `stdout` is a TTY, calling `console.clear()` will attempt to clear the + * TTY. When `stdout` is not a TTY, this method does nothing. + * + * The specific operation of `console.clear()` can vary across operating systems + * and terminal types. For most Linux operating systems, `console.clear()`operates similarly to the `clear` shell command. On Windows, `console.clear()`will clear only the output in the + * current terminal viewport for the Node.js + * binary. + * @since v8.3.0 + */ + clear(): void; + /** + * Maintains an internal counter specific to `label` and outputs to `stdout` the + * number of times `console.count()` has been called with the given `label`. + * + * ```js + * > console.count() + * default: 1 + * undefined + * > console.count('default') + * default: 2 + * undefined + * > console.count('abc') + * abc: 1 + * undefined + * > console.count('xyz') + * xyz: 1 + * undefined + * > console.count('abc') + * abc: 2 + * undefined + * > console.count() + * default: 3 + * undefined + * > + * ``` + * @since v8.3.0 + * @param label The display label for the counter. + */ + count(label?: string): void; + /** + * Resets the internal counter specific to `label`. + * + * ```js + * > console.count('abc'); + * abc: 1 + * undefined + * > console.countReset('abc'); + * undefined + * > console.count('abc'); + * abc: 1 + * undefined + * > + * ``` + * @since v8.3.0 + * @param label The display label for the counter. + */ + countReset(label?: string): void; + /** + * The `console.debug()` function is an alias for {@link log}. + * @since v8.0.0 + */ + debug(message?: any, ...optionalParams: any[]): void; + /** + * Uses `util.inspect()` on `obj` and prints the resulting string to `stdout`. + * This function bypasses any custom `inspect()` function defined on `obj`. + * @since v0.1.101 + */ + dir(obj: any, options?: InspectOptions): void; + /** + * This method calls `console.log()` passing it the arguments received. + * This method does not produce any XML formatting. + * @since v8.0.0 + */ + dirxml(...data: any[]): void; + /** + * Prints to `stderr` with newline. Multiple arguments can be passed, with the + * first used as the primary message and all additional used as substitution + * values similar to [`printf(3)`](http://man7.org/linux/man-pages/man3/printf.3.html) (the arguments are all passed to `util.format()`). + * + * ```js + * const code = 5; + * console.error('error #%d', code); + * // Prints: error #5, to stderr + * console.error('error', code); + * // Prints: error 5, to stderr + * ``` + * + * If formatting elements (e.g. `%d`) are not found in the first string then `util.inspect()` is called on each argument and the resulting string + * values are concatenated. See `util.format()` for more information. + * @since v0.1.100 + */ + error(message?: any, ...optionalParams: any[]): void; + /** + * Increases indentation of subsequent lines by spaces for `groupIndentation`length. + * + * If one or more `label`s are provided, those are printed first without the + * additional indentation. + * @since v8.5.0 + */ + group(...label: any[]): void; + /** + * An alias for {@link group}. + * @since v8.5.0 + */ + groupCollapsed(...label: any[]): void; + /** + * Decreases indentation of subsequent lines by spaces for `groupIndentation`length. + * @since v8.5.0 + */ + groupEnd(): void; + /** + * The `console.info()` function is an alias for {@link log}. + * @since v0.1.100 + */ + info(message?: any, ...optionalParams: any[]): void; + /** + * Prints to `stdout` with newline. Multiple arguments can be passed, with the + * first used as the primary message and all additional used as substitution + * values similar to [`printf(3)`](http://man7.org/linux/man-pages/man3/printf.3.html) (the arguments are all passed to `util.format()`). + * + * ```js + * const count = 5; + * console.log('count: %d', count); + * // Prints: count: 5, to stdout + * console.log('count:', count); + * // Prints: count: 5, to stdout + * ``` + * + * See `util.format()` for more information. + * @since v0.1.100 + */ + log(message?: any, ...optionalParams: any[]): void; + /** + * Try to construct a table with the columns of the properties of `tabularData`(or use `properties`) and rows of `tabularData` and log it. Falls back to just + * logging the argument if it can’t be parsed as tabular. + * + * ```js + * // These can't be parsed as tabular data + * console.table(Symbol()); + * // Symbol() + * + * console.table(undefined); + * // undefined + * + * console.table([{ a: 1, b: 'Y' }, { a: 'Z', b: 2 }]); + * // ┌─────────┬─────┬─────┐ + * // │ (index) │ a │ b │ + * // ├─────────┼─────┼─────┤ + * // │ 0 │ 1 │ 'Y' │ + * // │ 1 │ 'Z' │ 2 │ + * // └─────────┴─────┴─────┘ + * + * console.table([{ a: 1, b: 'Y' }, { a: 'Z', b: 2 }], ['a']); + * // ┌─────────┬─────┐ + * // │ (index) │ a │ + * // ├─────────┼─────┤ + * // │ 0 │ 1 │ + * // │ 1 │ 'Z' │ + * // └─────────┴─────┘ + * ``` + * @since v10.0.0 + * @param properties Alternate properties for constructing the table. + */ + table(tabularData: any, properties?: ReadonlyArray): void; + /** + * Starts a timer that can be used to compute the duration of an operation. Timers + * are identified by a unique `label`. Use the same `label` when calling {@link timeEnd} to stop the timer and output the elapsed time in + * suitable time units to `stdout`. For example, if the elapsed + * time is 3869ms, `console.timeEnd()` displays "3.869s". + * @since v0.1.104 + */ + time(label?: string): void; + /** + * Stops a timer that was previously started by calling {@link time} and + * prints the result to `stdout`: + * + * ```js + * console.time('100-elements'); + * for (let i = 0; i < 100; i++) {} + * console.timeEnd('100-elements'); + * // prints 100-elements: 225.438ms + * ``` + * @since v0.1.104 + */ + timeEnd(label?: string): void; + /** + * For a timer that was previously started by calling {@link time}, prints + * the elapsed time and other `data` arguments to `stdout`: + * + * ```js + * console.time('process'); + * const value = expensiveProcess1(); // Returns 42 + * console.timeLog('process', value); + * // Prints "process: 365.227ms 42". + * doExpensiveProcess2(value); + * console.timeEnd('process'); + * ``` + * @since v10.7.0 + */ + timeLog(label?: string, ...data: any[]): void; + /** + * Prints to `stderr` the string `'Trace: '`, followed by the `util.format()` formatted message and stack trace to the current position in the code. + * + * ```js + * console.trace('Show me'); + * // Prints: (stack trace will vary based on where trace is called) + * // Trace: Show me + * // at repl:2:9 + * // at REPLServer.defaultEval (repl.js:248:27) + * // at bound (domain.js:287:14) + * // at REPLServer.runBound [as eval] (domain.js:300:12) + * // at REPLServer. (repl.js:412:12) + * // at emitOne (events.js:82:20) + * // at REPLServer.emit (events.js:169:7) + * // at REPLServer.Interface._onLine (readline.js:210:10) + * // at REPLServer.Interface._line (readline.js:549:8) + * // at REPLServer.Interface._ttyWrite (readline.js:826:14) + * ``` + * @since v0.1.104 + */ + trace(message?: any, ...optionalParams: any[]): void; + /** + * The `console.warn()` function is an alias for {@link error}. + * @since v0.1.100 + */ + warn(message?: any, ...optionalParams: any[]): void; + // --- Inspector mode only --- + /** + * This method does not display anything unless used in the inspector. + * Starts a JavaScript CPU profile with an optional label. + */ + profile(label?: string): void; + /** + * This method does not display anything unless used in the inspector. + * Stops the current JavaScript CPU profiling session if one has been started and prints the report to the Profiles panel of the inspector. + */ + profileEnd(label?: string): void; + /** + * This method does not display anything unless used in the inspector. + * Adds an event with the label `label` to the Timeline panel of the inspector. + */ + timeStamp(label?: string): void; + } + /** + * The `console` module provides a simple debugging console that is similar to the + * JavaScript console mechanism provided by web browsers. + * + * The module exports two specific components: + * + * * A `Console` class with methods such as `console.log()`, `console.error()` and`console.warn()` that can be used to write to any Node.js stream. + * * A global `console` instance configured to write to `process.stdout` and `process.stderr`. The global `console` can be used without calling`require('console')`. + * + * _**Warning**_: The global console object's methods are neither consistently + * synchronous like the browser APIs they resemble, nor are they consistently + * asynchronous like all other Node.js streams. See the `note on process I/O` for + * more information. + * + * Example using the global `console`: + * + * ```js + * console.log('hello world'); + * // Prints: hello world, to stdout + * console.log('hello %s', 'world'); + * // Prints: hello world, to stdout + * console.error(new Error('Whoops, something bad happened')); + * // Prints error message and stack trace to stderr: + * // Error: Whoops, something bad happened + * // at [eval]:5:15 + * // at Script.runInThisContext (node:vm:132:18) + * // at Object.runInThisContext (node:vm:309:38) + * // at node:internal/process/execution:77:19 + * // at [eval]-wrapper:6:22 + * // at evalScript (node:internal/process/execution:76:60) + * // at node:internal/main/eval_string:23:3 + * + * const name = 'Will Robinson'; + * console.warn(`Danger ${name}! Danger!`); + * // Prints: Danger Will Robinson! Danger!, to stderr + * ``` + * + * Example using the `Console` class: + * + * ```js + * const out = getStreamSomehow(); + * const err = getStreamSomehow(); + * const myConsole = new console.Console(out, err); + * + * myConsole.log('hello world'); + * // Prints: hello world, to out + * myConsole.log('hello %s', 'world'); + * // Prints: hello world, to out + * myConsole.error(new Error('Whoops, something bad happened')); + * // Prints: [Error: Whoops, something bad happened], to err + * + * const name = 'Will Robinson'; + * myConsole.warn(`Danger ${name}! Danger!`); + * // Prints: Danger Will Robinson! Danger!, to err + * ``` + * @see [source](https://github.com/nodejs/node/blob/v16.4.2/lib/console.js) + */ + namespace console { + interface ConsoleConstructorOptions { + stdout: NodeJS.WritableStream; + stderr?: NodeJS.WritableStream | undefined; + ignoreErrors?: boolean | undefined; + colorMode?: boolean | 'auto' | undefined; + inspectOptions?: InspectOptions | undefined; + /** + * Set group indentation + * @default 2 + */ + groupIndentation?: number | undefined; + } + interface ConsoleConstructor { + prototype: Console; + new (stdout: NodeJS.WritableStream, stderr?: NodeJS.WritableStream, ignoreErrors?: boolean): Console; + new (options: ConsoleConstructorOptions): Console; + } + } + var console: Console; + } + export = globalThis.console; +} diff --git a/node_modules/@types/node/ts4.8/constants.d.ts b/node_modules/@types/node/ts4.8/constants.d.ts new file mode 100644 index 000000000..208020dcb --- /dev/null +++ b/node_modules/@types/node/ts4.8/constants.d.ts @@ -0,0 +1,18 @@ +/** @deprecated since v6.3.0 - use constants property exposed by the relevant module instead. */ +declare module 'constants' { + import { constants as osConstants, SignalConstants } from 'node:os'; + import { constants as cryptoConstants } from 'node:crypto'; + import { constants as fsConstants } from 'node:fs'; + + const exp: typeof osConstants.errno & + typeof osConstants.priority & + SignalConstants & + typeof cryptoConstants & + typeof fsConstants; + export = exp; +} + +declare module 'node:constants' { + import constants = require('constants'); + export = constants; +} diff --git a/node_modules/@types/node/ts4.8/crypto.d.ts b/node_modules/@types/node/ts4.8/crypto.d.ts new file mode 100644 index 000000000..6135090b0 --- /dev/null +++ b/node_modules/@types/node/ts4.8/crypto.d.ts @@ -0,0 +1,3961 @@ +/** + * The `crypto` module provides cryptographic functionality that includes a set of + * wrappers for OpenSSL's hash, HMAC, cipher, decipher, sign, and verify functions. + * + * ```js + * const { createHmac } = await import('crypto'); + * + * const secret = 'abcdefg'; + * const hash = createHmac('sha256', secret) + * .update('I love cupcakes') + * .digest('hex'); + * console.log(hash); + * // Prints: + * // c0fa1bc00531bd78ef38c628449c5102aeabd49b5dc3a2a516ea6ea959d6658e + * ``` + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/crypto.js) + */ +declare module 'crypto' { + import * as stream from 'node:stream'; + import { PeerCertificate } from 'node:tls'; + /** + * SPKAC is a Certificate Signing Request mechanism originally implemented by + * Netscape and was specified formally as part of [HTML5's `keygen` element](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/keygen). + * + * `` is deprecated since [HTML 5.2](https://www.w3.org/TR/html52/changes.html#features-removed) and new projects + * should not use this element anymore. + * + * The `crypto` module provides the `Certificate` class for working with SPKAC + * data. The most common usage is handling output generated by the HTML5`` element. Node.js uses [OpenSSL's SPKAC + * implementation](https://www.openssl.org/docs/man1.1.0/apps/openssl-spkac.html) internally. + * @since v0.11.8 + */ + class Certificate { + /** + * ```js + * const { Certificate } = await import('crypto'); + * const spkac = getSpkacSomehow(); + * const challenge = Certificate.exportChallenge(spkac); + * console.log(challenge.toString('utf8')); + * // Prints: the challenge as a UTF8 string + * ``` + * @since v9.0.0 + * @param encoding The `encoding` of the `spkac` string. + * @return The challenge component of the `spkac` data structure, which includes a public key and a challenge. + */ + static exportChallenge(spkac: BinaryLike): Buffer; + /** + * ```js + * const { Certificate } = await import('crypto'); + * const spkac = getSpkacSomehow(); + * const publicKey = Certificate.exportPublicKey(spkac); + * console.log(publicKey); + * // Prints: the public key as + * ``` + * @since v9.0.0 + * @param encoding The `encoding` of the `spkac` string. + * @return The public key component of the `spkac` data structure, which includes a public key and a challenge. + */ + static exportPublicKey(spkac: BinaryLike, encoding?: string): Buffer; + /** + * ```js + * import { Buffer } from 'buffer'; + * const { Certificate } = await import('crypto'); + * + * const spkac = getSpkacSomehow(); + * console.log(Certificate.verifySpkac(Buffer.from(spkac))); + * // Prints: true or false + * ``` + * @since v9.0.0 + * @param encoding The `encoding` of the `spkac` string. + * @return `true` if the given `spkac` data structure is valid, `false` otherwise. + */ + static verifySpkac(spkac: NodeJS.ArrayBufferView): boolean; + /** + * @deprecated + * @param spkac + * @returns The challenge component of the `spkac` data structure, + * which includes a public key and a challenge. + */ + exportChallenge(spkac: BinaryLike): Buffer; + /** + * @deprecated + * @param spkac + * @param encoding The encoding of the spkac string. + * @returns The public key component of the `spkac` data structure, + * which includes a public key and a challenge. + */ + exportPublicKey(spkac: BinaryLike, encoding?: string): Buffer; + /** + * @deprecated + * @param spkac + * @returns `true` if the given `spkac` data structure is valid, + * `false` otherwise. + */ + verifySpkac(spkac: NodeJS.ArrayBufferView): boolean; + } + namespace constants { + // https://nodejs.org/dist/latest-v10.x/docs/api/crypto.html#crypto_crypto_constants + const OPENSSL_VERSION_NUMBER: number; + /** Applies multiple bug workarounds within OpenSSL. See https://www.openssl.org/docs/man1.0.2/ssl/SSL_CTX_set_options.html for detail. */ + const SSL_OP_ALL: number; + /** Allows legacy insecure renegotiation between OpenSSL and unpatched clients or servers. See https://www.openssl.org/docs/man1.0.2/ssl/SSL_CTX_set_options.html. */ + const SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION: number; + /** Attempts to use the server's preferences instead of the client's when selecting a cipher. See https://www.openssl.org/docs/man1.0.2/ssl/SSL_CTX_set_options.html. */ + const SSL_OP_CIPHER_SERVER_PREFERENCE: number; + /** Instructs OpenSSL to use Cisco's "speshul" version of DTLS_BAD_VER. */ + const SSL_OP_CISCO_ANYCONNECT: number; + /** Instructs OpenSSL to turn on cookie exchange. */ + const SSL_OP_COOKIE_EXCHANGE: number; + /** Instructs OpenSSL to add server-hello extension from an early version of the cryptopro draft. */ + const SSL_OP_CRYPTOPRO_TLSEXT_BUG: number; + /** Instructs OpenSSL to disable a SSL 3.0/TLS 1.0 vulnerability workaround added in OpenSSL 0.9.6d. */ + const SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS: number; + /** Instructs OpenSSL to always use the tmp_rsa key when performing RSA operations. */ + const SSL_OP_EPHEMERAL_RSA: number; + /** Allows initial connection to servers that do not support RI. */ + const SSL_OP_LEGACY_SERVER_CONNECT: number; + const SSL_OP_MICROSOFT_BIG_SSLV3_BUFFER: number; + const SSL_OP_MICROSOFT_SESS_ID_BUG: number; + /** Instructs OpenSSL to disable the workaround for a man-in-the-middle protocol-version vulnerability in the SSL 2.0 server implementation. */ + const SSL_OP_MSIE_SSLV2_RSA_PADDING: number; + const SSL_OP_NETSCAPE_CA_DN_BUG: number; + const SSL_OP_NETSCAPE_CHALLENGE_BUG: number; + const SSL_OP_NETSCAPE_DEMO_CIPHER_CHANGE_BUG: number; + const SSL_OP_NETSCAPE_REUSE_CIPHER_CHANGE_BUG: number; + /** Instructs OpenSSL to disable support for SSL/TLS compression. */ + const SSL_OP_NO_COMPRESSION: number; + const SSL_OP_NO_QUERY_MTU: number; + /** Instructs OpenSSL to always start a new session when performing renegotiation. */ + const SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION: number; + const SSL_OP_NO_SSLv2: number; + const SSL_OP_NO_SSLv3: number; + const SSL_OP_NO_TICKET: number; + const SSL_OP_NO_TLSv1: number; + const SSL_OP_NO_TLSv1_1: number; + const SSL_OP_NO_TLSv1_2: number; + const SSL_OP_PKCS1_CHECK_1: number; + const SSL_OP_PKCS1_CHECK_2: number; + /** Instructs OpenSSL to always create a new key when using temporary/ephemeral DH parameters. */ + const SSL_OP_SINGLE_DH_USE: number; + /** Instructs OpenSSL to always create a new key when using temporary/ephemeral ECDH parameters. */ + const SSL_OP_SINGLE_ECDH_USE: number; + const SSL_OP_SSLEAY_080_CLIENT_DH_BUG: number; + const SSL_OP_SSLREF2_REUSE_CERT_TYPE_BUG: number; + const SSL_OP_TLS_BLOCK_PADDING_BUG: number; + const SSL_OP_TLS_D5_BUG: number; + /** Instructs OpenSSL to disable version rollback attack detection. */ + const SSL_OP_TLS_ROLLBACK_BUG: number; + const ENGINE_METHOD_RSA: number; + const ENGINE_METHOD_DSA: number; + const ENGINE_METHOD_DH: number; + const ENGINE_METHOD_RAND: number; + const ENGINE_METHOD_EC: number; + const ENGINE_METHOD_CIPHERS: number; + const ENGINE_METHOD_DIGESTS: number; + const ENGINE_METHOD_PKEY_METHS: number; + const ENGINE_METHOD_PKEY_ASN1_METHS: number; + const ENGINE_METHOD_ALL: number; + const ENGINE_METHOD_NONE: number; + const DH_CHECK_P_NOT_SAFE_PRIME: number; + const DH_CHECK_P_NOT_PRIME: number; + const DH_UNABLE_TO_CHECK_GENERATOR: number; + const DH_NOT_SUITABLE_GENERATOR: number; + const ALPN_ENABLED: number; + const RSA_PKCS1_PADDING: number; + const RSA_SSLV23_PADDING: number; + const RSA_NO_PADDING: number; + const RSA_PKCS1_OAEP_PADDING: number; + const RSA_X931_PADDING: number; + const RSA_PKCS1_PSS_PADDING: number; + /** Sets the salt length for RSA_PKCS1_PSS_PADDING to the digest size when signing or verifying. */ + const RSA_PSS_SALTLEN_DIGEST: number; + /** Sets the salt length for RSA_PKCS1_PSS_PADDING to the maximum permissible value when signing data. */ + const RSA_PSS_SALTLEN_MAX_SIGN: number; + /** Causes the salt length for RSA_PKCS1_PSS_PADDING to be determined automatically when verifying a signature. */ + const RSA_PSS_SALTLEN_AUTO: number; + const POINT_CONVERSION_COMPRESSED: number; + const POINT_CONVERSION_UNCOMPRESSED: number; + const POINT_CONVERSION_HYBRID: number; + /** Specifies the built-in default cipher list used by Node.js (colon-separated values). */ + const defaultCoreCipherList: string; + /** Specifies the active default cipher list used by the current Node.js process (colon-separated values). */ + const defaultCipherList: string; + } + interface HashOptions extends stream.TransformOptions { + /** + * For XOF hash functions such as `shake256`, the + * outputLength option can be used to specify the desired output length in bytes. + */ + outputLength?: number | undefined; + } + /** @deprecated since v10.0.0 */ + const fips: boolean; + /** + * Creates and returns a `Hash` object that can be used to generate hash digests + * using the given `algorithm`. Optional `options` argument controls stream + * behavior. For XOF hash functions such as `'shake256'`, the `outputLength` option + * can be used to specify the desired output length in bytes. + * + * The `algorithm` is dependent on the available algorithms supported by the + * version of OpenSSL on the platform. Examples are `'sha256'`, `'sha512'`, etc. + * On recent releases of OpenSSL, `openssl list -digest-algorithms` will + * display the available digest algorithms. + * + * Example: generating the sha256 sum of a file + * + * ```js + * import { + * createReadStream + * } from 'fs'; + * import { argv } from 'process'; + * const { + * createHash + * } = await import('crypto'); + * + * const filename = argv[2]; + * + * const hash = createHash('sha256'); + * + * const input = createReadStream(filename); + * input.on('readable', () => { + * // Only one element is going to be produced by the + * // hash stream. + * const data = input.read(); + * if (data) + * hash.update(data); + * else { + * console.log(`${hash.digest('hex')} ${filename}`); + * } + * }); + * ``` + * @since v0.1.92 + * @param options `stream.transform` options + */ + function createHash(algorithm: string, options?: HashOptions): Hash; + /** + * Creates and returns an `Hmac` object that uses the given `algorithm` and `key`. + * Optional `options` argument controls stream behavior. + * + * The `algorithm` is dependent on the available algorithms supported by the + * version of OpenSSL on the platform. Examples are `'sha256'`, `'sha512'`, etc. + * On recent releases of OpenSSL, `openssl list -digest-algorithms` will + * display the available digest algorithms. + * + * The `key` is the HMAC key used to generate the cryptographic HMAC hash. If it is + * a `KeyObject`, its type must be `secret`. + * + * Example: generating the sha256 HMAC of a file + * + * ```js + * import { + * createReadStream + * } from 'fs'; + * import { argv } from 'process'; + * const { + * createHmac + * } = await import('crypto'); + * + * const filename = argv[2]; + * + * const hmac = createHmac('sha256', 'a secret'); + * + * const input = createReadStream(filename); + * input.on('readable', () => { + * // Only one element is going to be produced by the + * // hash stream. + * const data = input.read(); + * if (data) + * hmac.update(data); + * else { + * console.log(`${hmac.digest('hex')} ${filename}`); + * } + * }); + * ``` + * @since v0.1.94 + * @param options `stream.transform` options + */ + function createHmac(algorithm: string, key: BinaryLike | KeyObject, options?: stream.TransformOptions): Hmac; + // https://nodejs.org/api/buffer.html#buffer_buffers_and_character_encodings + type BinaryToTextEncoding = 'base64' | 'base64url' | 'hex' | 'binary'; + type CharacterEncoding = 'utf8' | 'utf-8' | 'utf16le' | 'latin1'; + type LegacyCharacterEncoding = 'ascii' | 'binary' | 'ucs2' | 'ucs-2'; + type Encoding = BinaryToTextEncoding | CharacterEncoding | LegacyCharacterEncoding; + type ECDHKeyFormat = 'compressed' | 'uncompressed' | 'hybrid'; + /** + * The `Hash` class is a utility for creating hash digests of data. It can be + * used in one of two ways: + * + * * As a `stream` that is both readable and writable, where data is written + * to produce a computed hash digest on the readable side, or + * * Using the `hash.update()` and `hash.digest()` methods to produce the + * computed hash. + * + * The {@link createHash} method is used to create `Hash` instances. `Hash`objects are not to be created directly using the `new` keyword. + * + * Example: Using `Hash` objects as streams: + * + * ```js + * const { + * createHash + * } = await import('crypto'); + * + * const hash = createHash('sha256'); + * + * hash.on('readable', () => { + * // Only one element is going to be produced by the + * // hash stream. + * const data = hash.read(); + * if (data) { + * console.log(data.toString('hex')); + * // Prints: + * // 6a2da20943931e9834fc12cfe5bb47bbd9ae43489a30726962b576f4e3993e50 + * } + * }); + * + * hash.write('some data to hash'); + * hash.end(); + * ``` + * + * Example: Using `Hash` and piped streams: + * + * ```js + * import { createReadStream } from 'fs'; + * import { stdout } from 'process'; + * const { createHash } = await import('crypto'); + * + * const hash = createHash('sha256'); + * + * const input = createReadStream('test.js'); + * input.pipe(hash).setEncoding('hex').pipe(stdout); + * ``` + * + * Example: Using the `hash.update()` and `hash.digest()` methods: + * + * ```js + * const { + * createHash + * } = await import('crypto'); + * + * const hash = createHash('sha256'); + * + * hash.update('some data to hash'); + * console.log(hash.digest('hex')); + * // Prints: + * // 6a2da20943931e9834fc12cfe5bb47bbd9ae43489a30726962b576f4e3993e50 + * ``` + * @since v0.1.92 + */ + class Hash extends stream.Transform { + private constructor(); + /** + * Creates a new `Hash` object that contains a deep copy of the internal state + * of the current `Hash` object. + * + * The optional `options` argument controls stream behavior. For XOF hash + * functions such as `'shake256'`, the `outputLength` option can be used to + * specify the desired output length in bytes. + * + * An error is thrown when an attempt is made to copy the `Hash` object after + * its `hash.digest()` method has been called. + * + * ```js + * // Calculate a rolling hash. + * const { + * createHash + * } = await import('crypto'); + * + * const hash = createHash('sha256'); + * + * hash.update('one'); + * console.log(hash.copy().digest('hex')); + * + * hash.update('two'); + * console.log(hash.copy().digest('hex')); + * + * hash.update('three'); + * console.log(hash.copy().digest('hex')); + * + * // Etc. + * ``` + * @since v13.1.0 + * @param options `stream.transform` options + */ + copy(options?: stream.TransformOptions): Hash; + /** + * Updates the hash content with the given `data`, the encoding of which + * is given in `inputEncoding`. + * If `encoding` is not provided, and the `data` is a string, an + * encoding of `'utf8'` is enforced. If `data` is a `Buffer`, `TypedArray`, or`DataView`, then `inputEncoding` is ignored. + * + * This can be called many times with new data as it is streamed. + * @since v0.1.92 + * @param inputEncoding The `encoding` of the `data` string. + */ + update(data: BinaryLike): Hash; + update(data: string, inputEncoding: Encoding): Hash; + /** + * Calculates the digest of all of the data passed to be hashed (using the `hash.update()` method). + * If `encoding` is provided a string will be returned; otherwise + * a `Buffer` is returned. + * + * The `Hash` object can not be used again after `hash.digest()` method has been + * called. Multiple calls will cause an error to be thrown. + * @since v0.1.92 + * @param encoding The `encoding` of the return value. + */ + digest(): Buffer; + digest(encoding: BinaryToTextEncoding): string; + } + /** + * The `Hmac` class is a utility for creating cryptographic HMAC digests. It can + * be used in one of two ways: + * + * * As a `stream` that is both readable and writable, where data is written + * to produce a computed HMAC digest on the readable side, or + * * Using the `hmac.update()` and `hmac.digest()` methods to produce the + * computed HMAC digest. + * + * The {@link createHmac} method is used to create `Hmac` instances. `Hmac`objects are not to be created directly using the `new` keyword. + * + * Example: Using `Hmac` objects as streams: + * + * ```js + * const { + * createHmac + * } = await import('crypto'); + * + * const hmac = createHmac('sha256', 'a secret'); + * + * hmac.on('readable', () => { + * // Only one element is going to be produced by the + * // hash stream. + * const data = hmac.read(); + * if (data) { + * console.log(data.toString('hex')); + * // Prints: + * // 7fd04df92f636fd450bc841c9418e5825c17f33ad9c87c518115a45971f7f77e + * } + * }); + * + * hmac.write('some data to hash'); + * hmac.end(); + * ``` + * + * Example: Using `Hmac` and piped streams: + * + * ```js + * import { createReadStream } from 'fs'; + * import { stdout } from 'process'; + * const { + * createHmac + * } = await import('crypto'); + * + * const hmac = createHmac('sha256', 'a secret'); + * + * const input = createReadStream('test.js'); + * input.pipe(hmac).pipe(stdout); + * ``` + * + * Example: Using the `hmac.update()` and `hmac.digest()` methods: + * + * ```js + * const { + * createHmac + * } = await import('crypto'); + * + * const hmac = createHmac('sha256', 'a secret'); + * + * hmac.update('some data to hash'); + * console.log(hmac.digest('hex')); + * // Prints: + * // 7fd04df92f636fd450bc841c9418e5825c17f33ad9c87c518115a45971f7f77e + * ``` + * @since v0.1.94 + */ + class Hmac extends stream.Transform { + private constructor(); + /** + * Updates the `Hmac` content with the given `data`, the encoding of which + * is given in `inputEncoding`. + * If `encoding` is not provided, and the `data` is a string, an + * encoding of `'utf8'` is enforced. If `data` is a `Buffer`, `TypedArray`, or`DataView`, then `inputEncoding` is ignored. + * + * This can be called many times with new data as it is streamed. + * @since v0.1.94 + * @param inputEncoding The `encoding` of the `data` string. + */ + update(data: BinaryLike): Hmac; + update(data: string, inputEncoding: Encoding): Hmac; + /** + * Calculates the HMAC digest of all of the data passed using `hmac.update()`. + * If `encoding` is + * provided a string is returned; otherwise a `Buffer` is returned; + * + * The `Hmac` object can not be used again after `hmac.digest()` has been + * called. Multiple calls to `hmac.digest()` will result in an error being thrown. + * @since v0.1.94 + * @param encoding The `encoding` of the return value. + */ + digest(): Buffer; + digest(encoding: BinaryToTextEncoding): string; + } + type KeyObjectType = 'secret' | 'public' | 'private'; + interface KeyExportOptions { + type: 'pkcs1' | 'spki' | 'pkcs8' | 'sec1'; + format: T; + cipher?: string | undefined; + passphrase?: string | Buffer | undefined; + } + interface JwkKeyExportOptions { + format: 'jwk'; + } + interface JsonWebKey { + crv?: string | undefined; + d?: string | undefined; + dp?: string | undefined; + dq?: string | undefined; + e?: string | undefined; + k?: string | undefined; + kty?: string | undefined; + n?: string | undefined; + p?: string | undefined; + q?: string | undefined; + qi?: string | undefined; + x?: string | undefined; + y?: string | undefined; + [key: string]: unknown; + } + interface AsymmetricKeyDetails { + /** + * Key size in bits (RSA, DSA). + */ + modulusLength?: number | undefined; + /** + * Public exponent (RSA). + */ + publicExponent?: bigint | undefined; + /** + * Name of the message digest (RSA-PSS). + */ + hashAlgorithm?: string | undefined; + /** + * Name of the message digest used by MGF1 (RSA-PSS). + */ + mgf1HashAlgorithm?: string | undefined; + /** + * Minimal salt length in bytes (RSA-PSS). + */ + saltLength?: number | undefined; + /** + * Size of q in bits (DSA). + */ + divisorLength?: number | undefined; + /** + * Name of the curve (EC). + */ + namedCurve?: string | undefined; + } + /** + * Node.js uses a `KeyObject` class to represent a symmetric or asymmetric key, + * and each kind of key exposes different functions. The {@link createSecretKey}, {@link createPublicKey} and {@link createPrivateKey} methods are used to create `KeyObject`instances. `KeyObject` + * objects are not to be created directly using the `new`keyword. + * + * Most applications should consider using the new `KeyObject` API instead of + * passing keys as strings or `Buffer`s due to improved security features. + * + * `KeyObject` instances can be passed to other threads via `postMessage()`. + * The receiver obtains a cloned `KeyObject`, and the `KeyObject` does not need to + * be listed in the `transferList` argument. + * @since v11.6.0 + */ + class KeyObject { + private constructor(); + /** + * Example: Converting a `CryptoKey` instance to a `KeyObject`: + * + * ```js + * const { webcrypto, KeyObject } = await import('crypto'); + * const { subtle } = webcrypto; + * + * const key = await subtle.generateKey({ + * name: 'HMAC', + * hash: 'SHA-256', + * length: 256 + * }, true, ['sign', 'verify']); + * + * const keyObject = KeyObject.from(key); + * console.log(keyObject.symmetricKeySize); + * // Prints: 32 (symmetric key size in bytes) + * ``` + * @since v15.0.0 + */ + static from(key: webcrypto.CryptoKey): KeyObject; + /** + * For asymmetric keys, this property represents the type of the key. Supported key + * types are: + * + * * `'rsa'` (OID 1.2.840.113549.1.1.1) + * * `'rsa-pss'` (OID 1.2.840.113549.1.1.10) + * * `'dsa'` (OID 1.2.840.10040.4.1) + * * `'ec'` (OID 1.2.840.10045.2.1) + * * `'x25519'` (OID 1.3.101.110) + * * `'x448'` (OID 1.3.101.111) + * * `'ed25519'` (OID 1.3.101.112) + * * `'ed448'` (OID 1.3.101.113) + * * `'dh'` (OID 1.2.840.113549.1.3.1) + * + * This property is `undefined` for unrecognized `KeyObject` types and symmetric + * keys. + * @since v11.6.0 + */ + asymmetricKeyType?: KeyType | undefined; + /** + * For asymmetric keys, this property represents the size of the embedded key in + * bytes. This property is `undefined` for symmetric keys. + */ + asymmetricKeySize?: number | undefined; + /** + * This property exists only on asymmetric keys. Depending on the type of the key, + * this object contains information about the key. None of the information obtained + * through this property can be used to uniquely identify a key or to compromise + * the security of the key. + * + * For RSA-PSS keys, if the key material contains a `RSASSA-PSS-params` sequence, + * the `hashAlgorithm`, `mgf1HashAlgorithm`, and `saltLength` properties will be + * set. + * + * Other key details might be exposed via this API using additional attributes. + * @since v15.7.0 + */ + asymmetricKeyDetails?: AsymmetricKeyDetails | undefined; + /** + * For symmetric keys, the following encoding options can be used: + * + * For public keys, the following encoding options can be used: + * + * For private keys, the following encoding options can be used: + * + * The result type depends on the selected encoding format, when PEM the + * result is a string, when DER it will be a buffer containing the data + * encoded as DER, when [JWK](https://tools.ietf.org/html/rfc7517) it will be an object. + * + * When [JWK](https://tools.ietf.org/html/rfc7517) encoding format was selected, all other encoding options are + * ignored. + * + * PKCS#1, SEC1, and PKCS#8 type keys can be encrypted by using a combination of + * the `cipher` and `format` options. The PKCS#8 `type` can be used with any`format` to encrypt any key algorithm (RSA, EC, or DH) by specifying a`cipher`. PKCS#1 and SEC1 can only be + * encrypted by specifying a `cipher`when the PEM `format` is used. For maximum compatibility, use PKCS#8 for + * encrypted private keys. Since PKCS#8 defines its own + * encryption mechanism, PEM-level encryption is not supported when encrypting + * a PKCS#8 key. See [RFC 5208](https://www.rfc-editor.org/rfc/rfc5208.txt) for PKCS#8 encryption and [RFC 1421](https://www.rfc-editor.org/rfc/rfc1421.txt) for + * PKCS#1 and SEC1 encryption. + * @since v11.6.0 + */ + export(options: KeyExportOptions<'pem'>): string | Buffer; + export(options?: KeyExportOptions<'der'>): Buffer; + export(options?: JwkKeyExportOptions): JsonWebKey; + /** + * For secret keys, this property represents the size of the key in bytes. This + * property is `undefined` for asymmetric keys. + * @since v11.6.0 + */ + symmetricKeySize?: number | undefined; + /** + * Depending on the type of this `KeyObject`, this property is either`'secret'` for secret (symmetric) keys, `'public'` for public (asymmetric) keys + * or `'private'` for private (asymmetric) keys. + * @since v11.6.0 + */ + type: KeyObjectType; + } + type CipherCCMTypes = 'aes-128-ccm' | 'aes-192-ccm' | 'aes-256-ccm' | 'chacha20-poly1305'; + type CipherGCMTypes = 'aes-128-gcm' | 'aes-192-gcm' | 'aes-256-gcm'; + type CipherOCBTypes = 'aes-128-ocb' | 'aes-192-ocb' | 'aes-256-ocb'; + type BinaryLike = string | NodeJS.ArrayBufferView; + type CipherKey = BinaryLike | KeyObject; + interface CipherCCMOptions extends stream.TransformOptions { + authTagLength: number; + } + interface CipherGCMOptions extends stream.TransformOptions { + authTagLength?: number | undefined; + } + interface CipherOCBOptions extends stream.TransformOptions { + authTagLength: number; + } + /** + * Creates and returns a `Cipher` object that uses the given `algorithm` and`password`. + * + * The `options` argument controls stream behavior and is optional except when a + * cipher in CCM or OCB mode (e.g. `'aes-128-ccm'`) is used. In that case, the`authTagLength` option is required and specifies the length of the + * authentication tag in bytes, see `CCM mode`. In GCM mode, the `authTagLength`option is not required but can be used to set the length of the authentication + * tag that will be returned by `getAuthTag()` and defaults to 16 bytes. + * For `chacha20-poly1305`, the `authTagLength` option defaults to 16 bytes. + * + * The `algorithm` is dependent on OpenSSL, examples are `'aes192'`, etc. On + * recent OpenSSL releases, `openssl list -cipher-algorithms` will + * display the available cipher algorithms. + * + * The `password` is used to derive the cipher key and initialization vector (IV). + * The value must be either a `'latin1'` encoded string, a `Buffer`, a`TypedArray`, or a `DataView`. + * + * The implementation of `crypto.createCipher()` derives keys using the OpenSSL + * function [`EVP_BytesToKey`](https://www.openssl.org/docs/man1.1.0/crypto/EVP_BytesToKey.html) with the digest algorithm set to MD5, one + * iteration, and no salt. The lack of salt allows dictionary attacks as the same + * password always creates the same key. The low iteration count and + * non-cryptographically secure hash algorithm allow passwords to be tested very + * rapidly. + * + * In line with OpenSSL's recommendation to use a more modern algorithm instead of [`EVP_BytesToKey`](https://www.openssl.org/docs/man1.1.0/crypto/EVP_BytesToKey.html) it is recommended that + * developers derive a key and IV on + * their own using {@link scrypt} and to use {@link createCipheriv} to create the `Cipher` object. Users should not use ciphers with counter mode + * (e.g. CTR, GCM, or CCM) in `crypto.createCipher()`. A warning is emitted when + * they are used in order to avoid the risk of IV reuse that causes + * vulnerabilities. For the case when IV is reused in GCM, see [Nonce-Disrespecting Adversaries](https://github.com/nonce-disrespect/nonce-disrespect) for details. + * @since v0.1.94 + * @deprecated Since v10.0.0 - Use {@link createCipheriv} instead. + * @param options `stream.transform` options + */ + function createCipher(algorithm: CipherCCMTypes, password: BinaryLike, options: CipherCCMOptions): CipherCCM; + /** @deprecated since v10.0.0 use `createCipheriv()` */ + function createCipher(algorithm: CipherGCMTypes, password: BinaryLike, options?: CipherGCMOptions): CipherGCM; + /** @deprecated since v10.0.0 use `createCipheriv()` */ + function createCipher(algorithm: string, password: BinaryLike, options?: stream.TransformOptions): Cipher; + /** + * Creates and returns a `Cipher` object, with the given `algorithm`, `key` and + * initialization vector (`iv`). + * + * The `options` argument controls stream behavior and is optional except when a + * cipher in CCM or OCB mode (e.g. `'aes-128-ccm'`) is used. In that case, the`authTagLength` option is required and specifies the length of the + * authentication tag in bytes, see `CCM mode`. In GCM mode, the `authTagLength`option is not required but can be used to set the length of the authentication + * tag that will be returned by `getAuthTag()` and defaults to 16 bytes. + * For `chacha20-poly1305`, the `authTagLength` option defaults to 16 bytes. + * + * The `algorithm` is dependent on OpenSSL, examples are `'aes192'`, etc. On + * recent OpenSSL releases, `openssl list -cipher-algorithms` will + * display the available cipher algorithms. + * + * The `key` is the raw key used by the `algorithm` and `iv` is an [initialization vector](https://en.wikipedia.org/wiki/Initialization_vector). Both arguments must be `'utf8'` encoded + * strings,`Buffers`, `TypedArray`, or `DataView`s. The `key` may optionally be + * a `KeyObject` of type `secret`. If the cipher does not need + * an initialization vector, `iv` may be `null`. + * + * When passing strings for `key` or `iv`, please consider `caveats when using strings as inputs to cryptographic APIs`. + * + * Initialization vectors should be unpredictable and unique; ideally, they will be + * cryptographically random. They do not have to be secret: IVs are typically just + * added to ciphertext messages unencrypted. It may sound contradictory that + * something has to be unpredictable and unique, but does not have to be secret; + * remember that an attacker must not be able to predict ahead of time what a + * given IV will be. + * @since v0.1.94 + * @param options `stream.transform` options + */ + function createCipheriv(algorithm: CipherCCMTypes, key: CipherKey, iv: BinaryLike, options: CipherCCMOptions): CipherCCM; + function createCipheriv(algorithm: CipherOCBTypes, key: CipherKey, iv: BinaryLike, options: CipherOCBOptions): CipherOCB; + function createCipheriv(algorithm: CipherGCMTypes, key: CipherKey, iv: BinaryLike, options?: CipherGCMOptions): CipherGCM; + function createCipheriv(algorithm: string, key: CipherKey, iv: BinaryLike | null, options?: stream.TransformOptions): Cipher; + /** + * Instances of the `Cipher` class are used to encrypt data. The class can be + * used in one of two ways: + * + * * As a `stream` that is both readable and writable, where plain unencrypted + * data is written to produce encrypted data on the readable side, or + * * Using the `cipher.update()` and `cipher.final()` methods to produce + * the encrypted data. + * + * The {@link createCipher} or {@link createCipheriv} methods are + * used to create `Cipher` instances. `Cipher` objects are not to be created + * directly using the `new` keyword. + * + * Example: Using `Cipher` objects as streams: + * + * ```js + * const { + * scrypt, + * randomFill, + * createCipheriv + * } = await import('crypto'); + * + * const algorithm = 'aes-192-cbc'; + * const password = 'Password used to generate key'; + * + * // First, we'll generate the key. The key length is dependent on the algorithm. + * // In this case for aes192, it is 24 bytes (192 bits). + * scrypt(password, 'salt', 24, (err, key) => { + * if (err) throw err; + * // Then, we'll generate a random initialization vector + * randomFill(new Uint8Array(16), (err, iv) => { + * if (err) throw err; + * + * // Once we have the key and iv, we can create and use the cipher... + * const cipher = createCipheriv(algorithm, key, iv); + * + * let encrypted = ''; + * cipher.setEncoding('hex'); + * + * cipher.on('data', (chunk) => encrypted += chunk); + * cipher.on('end', () => console.log(encrypted)); + * + * cipher.write('some clear text data'); + * cipher.end(); + * }); + * }); + * ``` + * + * Example: Using `Cipher` and piped streams: + * + * ```js + * import { + * createReadStream, + * createWriteStream, + * } from 'fs'; + * + * import { + * pipeline + * } from 'stream'; + * + * const { + * scrypt, + * randomFill, + * createCipheriv + * } = await import('crypto'); + * + * const algorithm = 'aes-192-cbc'; + * const password = 'Password used to generate key'; + * + * // First, we'll generate the key. The key length is dependent on the algorithm. + * // In this case for aes192, it is 24 bytes (192 bits). + * scrypt(password, 'salt', 24, (err, key) => { + * if (err) throw err; + * // Then, we'll generate a random initialization vector + * randomFill(new Uint8Array(16), (err, iv) => { + * if (err) throw err; + * + * const cipher = createCipheriv(algorithm, key, iv); + * + * const input = createReadStream('test.js'); + * const output = createWriteStream('test.enc'); + * + * pipeline(input, cipher, output, (err) => { + * if (err) throw err; + * }); + * }); + * }); + * ``` + * + * Example: Using the `cipher.update()` and `cipher.final()` methods: + * + * ```js + * const { + * scrypt, + * randomFill, + * createCipheriv + * } = await import('crypto'); + * + * const algorithm = 'aes-192-cbc'; + * const password = 'Password used to generate key'; + * + * // First, we'll generate the key. The key length is dependent on the algorithm. + * // In this case for aes192, it is 24 bytes (192 bits). + * scrypt(password, 'salt', 24, (err, key) => { + * if (err) throw err; + * // Then, we'll generate a random initialization vector + * randomFill(new Uint8Array(16), (err, iv) => { + * if (err) throw err; + * + * const cipher = createCipheriv(algorithm, key, iv); + * + * let encrypted = cipher.update('some clear text data', 'utf8', 'hex'); + * encrypted += cipher.final('hex'); + * console.log(encrypted); + * }); + * }); + * ``` + * @since v0.1.94 + */ + class Cipher extends stream.Transform { + private constructor(); + /** + * Updates the cipher with `data`. If the `inputEncoding` argument is given, + * the `data`argument is a string using the specified encoding. If the `inputEncoding`argument is not given, `data` must be a `Buffer`, `TypedArray`, or`DataView`. If `data` is a `Buffer`, + * `TypedArray`, or `DataView`, then`inputEncoding` is ignored. + * + * The `outputEncoding` specifies the output format of the enciphered + * data. If the `outputEncoding`is specified, a string using the specified encoding is returned. If no`outputEncoding` is provided, a `Buffer` is returned. + * + * The `cipher.update()` method can be called multiple times with new data until `cipher.final()` is called. Calling `cipher.update()` after `cipher.final()` will result in an error being + * thrown. + * @since v0.1.94 + * @param inputEncoding The `encoding` of the data. + * @param outputEncoding The `encoding` of the return value. + */ + update(data: BinaryLike): Buffer; + update(data: string, inputEncoding: Encoding): Buffer; + update(data: NodeJS.ArrayBufferView, inputEncoding: undefined, outputEncoding: Encoding): string; + update(data: string, inputEncoding: Encoding | undefined, outputEncoding: Encoding): string; + /** + * Once the `cipher.final()` method has been called, the `Cipher` object can no + * longer be used to encrypt data. Attempts to call `cipher.final()` more than + * once will result in an error being thrown. + * @since v0.1.94 + * @param outputEncoding The `encoding` of the return value. + * @return Any remaining enciphered contents. If `outputEncoding` is specified, a string is returned. If an `outputEncoding` is not provided, a {@link Buffer} is returned. + */ + final(): Buffer; + final(outputEncoding: BufferEncoding): string; + /** + * When using block encryption algorithms, the `Cipher` class will automatically + * add padding to the input data to the appropriate block size. To disable the + * default padding call `cipher.setAutoPadding(false)`. + * + * When `autoPadding` is `false`, the length of the entire input data must be a + * multiple of the cipher's block size or `cipher.final()` will throw an error. + * Disabling automatic padding is useful for non-standard padding, for instance + * using `0x0` instead of PKCS padding. + * + * The `cipher.setAutoPadding()` method must be called before `cipher.final()`. + * @since v0.7.1 + * @param [autoPadding=true] + * @return for method chaining. + */ + setAutoPadding(autoPadding?: boolean): this; + } + interface CipherCCM extends Cipher { + setAAD( + buffer: NodeJS.ArrayBufferView, + options: { + plaintextLength: number; + } + ): this; + getAuthTag(): Buffer; + } + interface CipherGCM extends Cipher { + setAAD( + buffer: NodeJS.ArrayBufferView, + options?: { + plaintextLength: number; + } + ): this; + getAuthTag(): Buffer; + } + interface CipherOCB extends Cipher { + setAAD( + buffer: NodeJS.ArrayBufferView, + options?: { + plaintextLength: number; + } + ): this; + getAuthTag(): Buffer; + } + /** + * Creates and returns a `Decipher` object that uses the given `algorithm` and`password` (key). + * + * The `options` argument controls stream behavior and is optional except when a + * cipher in CCM or OCB mode (e.g. `'aes-128-ccm'`) is used. In that case, the`authTagLength` option is required and specifies the length of the + * authentication tag in bytes, see `CCM mode`. + * For `chacha20-poly1305`, the `authTagLength` option defaults to 16 bytes. + * + * The implementation of `crypto.createDecipher()` derives keys using the OpenSSL + * function [`EVP_BytesToKey`](https://www.openssl.org/docs/man1.1.0/crypto/EVP_BytesToKey.html) with the digest algorithm set to MD5, one + * iteration, and no salt. The lack of salt allows dictionary attacks as the same + * password always creates the same key. The low iteration count and + * non-cryptographically secure hash algorithm allow passwords to be tested very + * rapidly. + * + * In line with OpenSSL's recommendation to use a more modern algorithm instead of [`EVP_BytesToKey`](https://www.openssl.org/docs/man1.1.0/crypto/EVP_BytesToKey.html) it is recommended that + * developers derive a key and IV on + * their own using {@link scrypt} and to use {@link createDecipheriv} to create the `Decipher` object. + * @since v0.1.94 + * @deprecated Since v10.0.0 - Use {@link createDecipheriv} instead. + * @param options `stream.transform` options + */ + function createDecipher(algorithm: CipherCCMTypes, password: BinaryLike, options: CipherCCMOptions): DecipherCCM; + /** @deprecated since v10.0.0 use `createDecipheriv()` */ + function createDecipher(algorithm: CipherGCMTypes, password: BinaryLike, options?: CipherGCMOptions): DecipherGCM; + /** @deprecated since v10.0.0 use `createDecipheriv()` */ + function createDecipher(algorithm: string, password: BinaryLike, options?: stream.TransformOptions): Decipher; + /** + * Creates and returns a `Decipher` object that uses the given `algorithm`, `key`and initialization vector (`iv`). + * + * The `options` argument controls stream behavior and is optional except when a + * cipher in CCM or OCB mode (e.g. `'aes-128-ccm'`) is used. In that case, the`authTagLength` option is required and specifies the length of the + * authentication tag in bytes, see `CCM mode`. In GCM mode, the `authTagLength`option is not required but can be used to restrict accepted authentication tags + * to those with the specified length. + * For `chacha20-poly1305`, the `authTagLength` option defaults to 16 bytes. + * + * The `algorithm` is dependent on OpenSSL, examples are `'aes192'`, etc. On + * recent OpenSSL releases, `openssl list -cipher-algorithms` will + * display the available cipher algorithms. + * + * The `key` is the raw key used by the `algorithm` and `iv` is an [initialization vector](https://en.wikipedia.org/wiki/Initialization_vector). Both arguments must be `'utf8'` encoded + * strings,`Buffers`, `TypedArray`, or `DataView`s. The `key` may optionally be + * a `KeyObject` of type `secret`. If the cipher does not need + * an initialization vector, `iv` may be `null`. + * + * When passing strings for `key` or `iv`, please consider `caveats when using strings as inputs to cryptographic APIs`. + * + * Initialization vectors should be unpredictable and unique; ideally, they will be + * cryptographically random. They do not have to be secret: IVs are typically just + * added to ciphertext messages unencrypted. It may sound contradictory that + * something has to be unpredictable and unique, but does not have to be secret; + * remember that an attacker must not be able to predict ahead of time what a given + * IV will be. + * @since v0.1.94 + * @param options `stream.transform` options + */ + function createDecipheriv(algorithm: CipherCCMTypes, key: CipherKey, iv: BinaryLike, options: CipherCCMOptions): DecipherCCM; + function createDecipheriv(algorithm: CipherOCBTypes, key: CipherKey, iv: BinaryLike, options: CipherOCBOptions): DecipherOCB; + function createDecipheriv(algorithm: CipherGCMTypes, key: CipherKey, iv: BinaryLike, options?: CipherGCMOptions): DecipherGCM; + function createDecipheriv(algorithm: string, key: CipherKey, iv: BinaryLike | null, options?: stream.TransformOptions): Decipher; + /** + * Instances of the `Decipher` class are used to decrypt data. The class can be + * used in one of two ways: + * + * * As a `stream` that is both readable and writable, where plain encrypted + * data is written to produce unencrypted data on the readable side, or + * * Using the `decipher.update()` and `decipher.final()` methods to + * produce the unencrypted data. + * + * The {@link createDecipher} or {@link createDecipheriv} methods are + * used to create `Decipher` instances. `Decipher` objects are not to be created + * directly using the `new` keyword. + * + * Example: Using `Decipher` objects as streams: + * + * ```js + * import { Buffer } from 'buffer'; + * const { + * scryptSync, + * createDecipheriv + * } = await import('crypto'); + * + * const algorithm = 'aes-192-cbc'; + * const password = 'Password used to generate key'; + * // Key length is dependent on the algorithm. In this case for aes192, it is + * // 24 bytes (192 bits). + * // Use the async `crypto.scrypt()` instead. + * const key = scryptSync(password, 'salt', 24); + * // The IV is usually passed along with the ciphertext. + * const iv = Buffer.alloc(16, 0); // Initialization vector. + * + * const decipher = createDecipheriv(algorithm, key, iv); + * + * let decrypted = ''; + * decipher.on('readable', () => { + * while (null !== (chunk = decipher.read())) { + * decrypted += chunk.toString('utf8'); + * } + * }); + * decipher.on('end', () => { + * console.log(decrypted); + * // Prints: some clear text data + * }); + * + * // Encrypted with same algorithm, key and iv. + * const encrypted = + * 'e5f79c5915c02171eec6b212d5520d44480993d7d622a7c4c2da32f6efda0ffa'; + * decipher.write(encrypted, 'hex'); + * decipher.end(); + * ``` + * + * Example: Using `Decipher` and piped streams: + * + * ```js + * import { + * createReadStream, + * createWriteStream, + * } from 'fs'; + * import { Buffer } from 'buffer'; + * const { + * scryptSync, + * createDecipheriv + * } = await import('crypto'); + * + * const algorithm = 'aes-192-cbc'; + * const password = 'Password used to generate key'; + * // Use the async `crypto.scrypt()` instead. + * const key = scryptSync(password, 'salt', 24); + * // The IV is usually passed along with the ciphertext. + * const iv = Buffer.alloc(16, 0); // Initialization vector. + * + * const decipher = createDecipheriv(algorithm, key, iv); + * + * const input = createReadStream('test.enc'); + * const output = createWriteStream('test.js'); + * + * input.pipe(decipher).pipe(output); + * ``` + * + * Example: Using the `decipher.update()` and `decipher.final()` methods: + * + * ```js + * import { Buffer } from 'buffer'; + * const { + * scryptSync, + * createDecipheriv + * } = await import('crypto'); + * + * const algorithm = 'aes-192-cbc'; + * const password = 'Password used to generate key'; + * // Use the async `crypto.scrypt()` instead. + * const key = scryptSync(password, 'salt', 24); + * // The IV is usually passed along with the ciphertext. + * const iv = Buffer.alloc(16, 0); // Initialization vector. + * + * const decipher = createDecipheriv(algorithm, key, iv); + * + * // Encrypted using same algorithm, key and iv. + * const encrypted = + * 'e5f79c5915c02171eec6b212d5520d44480993d7d622a7c4c2da32f6efda0ffa'; + * let decrypted = decipher.update(encrypted, 'hex', 'utf8'); + * decrypted += decipher.final('utf8'); + * console.log(decrypted); + * // Prints: some clear text data + * ``` + * @since v0.1.94 + */ + class Decipher extends stream.Transform { + private constructor(); + /** + * Updates the decipher with `data`. If the `inputEncoding` argument is given, + * the `data`argument is a string using the specified encoding. If the `inputEncoding`argument is not given, `data` must be a `Buffer`. If `data` is a `Buffer` then `inputEncoding` is + * ignored. + * + * The `outputEncoding` specifies the output format of the enciphered + * data. If the `outputEncoding`is specified, a string using the specified encoding is returned. If no`outputEncoding` is provided, a `Buffer` is returned. + * + * The `decipher.update()` method can be called multiple times with new data until `decipher.final()` is called. Calling `decipher.update()` after `decipher.final()` will result in an error + * being thrown. + * @since v0.1.94 + * @param inputEncoding The `encoding` of the `data` string. + * @param outputEncoding The `encoding` of the return value. + */ + update(data: NodeJS.ArrayBufferView): Buffer; + update(data: string, inputEncoding: Encoding): Buffer; + update(data: NodeJS.ArrayBufferView, inputEncoding: undefined, outputEncoding: Encoding): string; + update(data: string, inputEncoding: Encoding | undefined, outputEncoding: Encoding): string; + /** + * Once the `decipher.final()` method has been called, the `Decipher` object can + * no longer be used to decrypt data. Attempts to call `decipher.final()` more + * than once will result in an error being thrown. + * @since v0.1.94 + * @param outputEncoding The `encoding` of the return value. + * @return Any remaining deciphered contents. If `outputEncoding` is specified, a string is returned. If an `outputEncoding` is not provided, a {@link Buffer} is returned. + */ + final(): Buffer; + final(outputEncoding: BufferEncoding): string; + /** + * When data has been encrypted without standard block padding, calling`decipher.setAutoPadding(false)` will disable automatic padding to prevent `decipher.final()` from checking for and + * removing padding. + * + * Turning auto padding off will only work if the input data's length is a + * multiple of the ciphers block size. + * + * The `decipher.setAutoPadding()` method must be called before `decipher.final()`. + * @since v0.7.1 + * @param [autoPadding=true] + * @return for method chaining. + */ + setAutoPadding(auto_padding?: boolean): this; + } + interface DecipherCCM extends Decipher { + setAuthTag(buffer: NodeJS.ArrayBufferView): this; + setAAD( + buffer: NodeJS.ArrayBufferView, + options: { + plaintextLength: number; + } + ): this; + } + interface DecipherGCM extends Decipher { + setAuthTag(buffer: NodeJS.ArrayBufferView): this; + setAAD( + buffer: NodeJS.ArrayBufferView, + options?: { + plaintextLength: number; + } + ): this; + } + interface DecipherOCB extends Decipher { + setAuthTag(buffer: NodeJS.ArrayBufferView): this; + setAAD( + buffer: NodeJS.ArrayBufferView, + options?: { + plaintextLength: number; + } + ): this; + } + interface PrivateKeyInput { + key: string | Buffer; + format?: KeyFormat | undefined; + type?: 'pkcs1' | 'pkcs8' | 'sec1' | undefined; + passphrase?: string | Buffer | undefined; + } + interface PublicKeyInput { + key: string | Buffer; + format?: KeyFormat | undefined; + type?: 'pkcs1' | 'spki' | undefined; + } + /** + * Asynchronously generates a new random secret key of the given `length`. The`type` will determine which validations will be performed on the `length`. + * + * ```js + * const { + * generateKey + * } = await import('crypto'); + * + * generateKey('hmac', { length: 64 }, (err, key) => { + * if (err) throw err; + * console.log(key.export().toString('hex')); // 46e..........620 + * }); + * ``` + * @since v15.0.0 + * @param type The intended use of the generated secret key. Currently accepted values are `'hmac'` and `'aes'`. + */ + function generateKey( + type: 'hmac' | 'aes', + options: { + length: number; + }, + callback: (err: Error | null, key: KeyObject) => void + ): void; + /** + * Synchronously generates a new random secret key of the given `length`. The`type` will determine which validations will be performed on the `length`. + * + * ```js + * const { + * generateKeySync + * } = await import('crypto'); + * + * const key = generateKeySync('hmac', { length: 64 }); + * console.log(key.export().toString('hex')); // e89..........41e + * ``` + * @since v15.0.0 + * @param type The intended use of the generated secret key. Currently accepted values are `'hmac'` and `'aes'`. + */ + function generateKeySync( + type: 'hmac' | 'aes', + options: { + length: number; + } + ): KeyObject; + interface JsonWebKeyInput { + key: JsonWebKey; + format: 'jwk'; + } + /** + * Creates and returns a new key object containing a private key. If `key` is a + * string or `Buffer`, `format` is assumed to be `'pem'`; otherwise, `key`must be an object with the properties described above. + * + * If the private key is encrypted, a `passphrase` must be specified. The length + * of the passphrase is limited to 1024 bytes. + * @since v11.6.0 + */ + function createPrivateKey(key: PrivateKeyInput | string | Buffer | JsonWebKeyInput): KeyObject; + /** + * Creates and returns a new key object containing a public key. If `key` is a + * string or `Buffer`, `format` is assumed to be `'pem'`; if `key` is a `KeyObject`with type `'private'`, the public key is derived from the given private key; + * otherwise, `key` must be an object with the properties described above. + * + * If the format is `'pem'`, the `'key'` may also be an X.509 certificate. + * + * Because public keys can be derived from private keys, a private key may be + * passed instead of a public key. In that case, this function behaves as if {@link createPrivateKey} had been called, except that the type of the + * returned `KeyObject` will be `'public'` and that the private key cannot be + * extracted from the returned `KeyObject`. Similarly, if a `KeyObject` with type`'private'` is given, a new `KeyObject` with type `'public'` will be returned + * and it will be impossible to extract the private key from the returned object. + * @since v11.6.0 + */ + function createPublicKey(key: PublicKeyInput | string | Buffer | KeyObject | JsonWebKeyInput): KeyObject; + /** + * Creates and returns a new key object containing a secret key for symmetric + * encryption or `Hmac`. + * @since v11.6.0 + * @param encoding The string encoding when `key` is a string. + */ + function createSecretKey(key: NodeJS.ArrayBufferView): KeyObject; + function createSecretKey(key: string, encoding: BufferEncoding): KeyObject; + /** + * Creates and returns a `Sign` object that uses the given `algorithm`. Use {@link getHashes} to obtain the names of the available digest algorithms. + * Optional `options` argument controls the `stream.Writable` behavior. + * + * In some cases, a `Sign` instance can be created using the name of a signature + * algorithm, such as `'RSA-SHA256'`, instead of a digest algorithm. This will use + * the corresponding digest algorithm. This does not work for all signature + * algorithms, such as `'ecdsa-with-SHA256'`, so it is best to always use digest + * algorithm names. + * @since v0.1.92 + * @param options `stream.Writable` options + */ + function createSign(algorithm: string, options?: stream.WritableOptions): Sign; + type DSAEncoding = 'der' | 'ieee-p1363'; + interface SigningOptions { + /** + * @See crypto.constants.RSA_PKCS1_PADDING + */ + padding?: number | undefined; + saltLength?: number | undefined; + dsaEncoding?: DSAEncoding | undefined; + } + interface SignPrivateKeyInput extends PrivateKeyInput, SigningOptions {} + interface SignKeyObjectInput extends SigningOptions { + key: KeyObject; + } + interface VerifyPublicKeyInput extends PublicKeyInput, SigningOptions {} + interface VerifyKeyObjectInput extends SigningOptions { + key: KeyObject; + } + type KeyLike = string | Buffer | KeyObject; + /** + * The `Sign` class is a utility for generating signatures. It can be used in one + * of two ways: + * + * * As a writable `stream`, where data to be signed is written and the `sign.sign()` method is used to generate and return the signature, or + * * Using the `sign.update()` and `sign.sign()` methods to produce the + * signature. + * + * The {@link createSign} method is used to create `Sign` instances. The + * argument is the string name of the hash function to use. `Sign` objects are not + * to be created directly using the `new` keyword. + * + * Example: Using `Sign` and `Verify` objects as streams: + * + * ```js + * const { + * generateKeyPairSync, + * createSign, + * createVerify + * } = await import('crypto'); + * + * const { privateKey, publicKey } = generateKeyPairSync('ec', { + * namedCurve: 'sect239k1' + * }); + * + * const sign = createSign('SHA256'); + * sign.write('some data to sign'); + * sign.end(); + * const signature = sign.sign(privateKey, 'hex'); + * + * const verify = createVerify('SHA256'); + * verify.write('some data to sign'); + * verify.end(); + * console.log(verify.verify(publicKey, signature, 'hex')); + * // Prints: true + * ``` + * + * Example: Using the `sign.update()` and `verify.update()` methods: + * + * ```js + * const { + * generateKeyPairSync, + * createSign, + * createVerify + * } = await import('crypto'); + * + * const { privateKey, publicKey } = generateKeyPairSync('rsa', { + * modulusLength: 2048, + * }); + * + * const sign = createSign('SHA256'); + * sign.update('some data to sign'); + * sign.end(); + * const signature = sign.sign(privateKey); + * + * const verify = createVerify('SHA256'); + * verify.update('some data to sign'); + * verify.end(); + * console.log(verify.verify(publicKey, signature)); + * // Prints: true + * ``` + * @since v0.1.92 + */ + class Sign extends stream.Writable { + private constructor(); + /** + * Updates the `Sign` content with the given `data`, the encoding of which + * is given in `inputEncoding`. + * If `encoding` is not provided, and the `data` is a string, an + * encoding of `'utf8'` is enforced. If `data` is a `Buffer`, `TypedArray`, or`DataView`, then `inputEncoding` is ignored. + * + * This can be called many times with new data as it is streamed. + * @since v0.1.92 + * @param inputEncoding The `encoding` of the `data` string. + */ + update(data: BinaryLike): this; + update(data: string, inputEncoding: Encoding): this; + /** + * Calculates the signature on all the data passed through using either `sign.update()` or `sign.write()`. + * + * If `privateKey` is not a `KeyObject`, this function behaves as if`privateKey` had been passed to {@link createPrivateKey}. If it is an + * object, the following additional properties can be passed: + * + * If `outputEncoding` is provided a string is returned; otherwise a `Buffer` is returned. + * + * The `Sign` object can not be again used after `sign.sign()` method has been + * called. Multiple calls to `sign.sign()` will result in an error being thrown. + * @since v0.1.92 + */ + sign(privateKey: KeyLike | SignKeyObjectInput | SignPrivateKeyInput): Buffer; + sign(privateKey: KeyLike | SignKeyObjectInput | SignPrivateKeyInput, outputFormat: BinaryToTextEncoding): string; + } + /** + * Creates and returns a `Verify` object that uses the given algorithm. + * Use {@link getHashes} to obtain an array of names of the available + * signing algorithms. Optional `options` argument controls the`stream.Writable` behavior. + * + * In some cases, a `Verify` instance can be created using the name of a signature + * algorithm, such as `'RSA-SHA256'`, instead of a digest algorithm. This will use + * the corresponding digest algorithm. This does not work for all signature + * algorithms, such as `'ecdsa-with-SHA256'`, so it is best to always use digest + * algorithm names. + * @since v0.1.92 + * @param options `stream.Writable` options + */ + function createVerify(algorithm: string, options?: stream.WritableOptions): Verify; + /** + * The `Verify` class is a utility for verifying signatures. It can be used in one + * of two ways: + * + * * As a writable `stream` where written data is used to validate against the + * supplied signature, or + * * Using the `verify.update()` and `verify.verify()` methods to verify + * the signature. + * + * The {@link createVerify} method is used to create `Verify` instances.`Verify` objects are not to be created directly using the `new` keyword. + * + * See `Sign` for examples. + * @since v0.1.92 + */ + class Verify extends stream.Writable { + private constructor(); + /** + * Updates the `Verify` content with the given `data`, the encoding of which + * is given in `inputEncoding`. + * If `inputEncoding` is not provided, and the `data` is a string, an + * encoding of `'utf8'` is enforced. If `data` is a `Buffer`, `TypedArray`, or`DataView`, then `inputEncoding` is ignored. + * + * This can be called many times with new data as it is streamed. + * @since v0.1.92 + * @param inputEncoding The `encoding` of the `data` string. + */ + update(data: BinaryLike): Verify; + update(data: string, inputEncoding: Encoding): Verify; + /** + * Verifies the provided data using the given `object` and `signature`. + * + * If `object` is not a `KeyObject`, this function behaves as if`object` had been passed to {@link createPublicKey}. If it is an + * object, the following additional properties can be passed: + * + * The `signature` argument is the previously calculated signature for the data, in + * the `signatureEncoding`. + * If a `signatureEncoding` is specified, the `signature` is expected to be a + * string; otherwise `signature` is expected to be a `Buffer`,`TypedArray`, or `DataView`. + * + * The `verify` object can not be used again after `verify.verify()` has been + * called. Multiple calls to `verify.verify()` will result in an error being + * thrown. + * + * Because public keys can be derived from private keys, a private key may + * be passed instead of a public key. + * @since v0.1.92 + */ + verify(object: KeyLike | VerifyKeyObjectInput | VerifyPublicKeyInput, signature: NodeJS.ArrayBufferView): boolean; + verify(object: KeyLike | VerifyKeyObjectInput | VerifyPublicKeyInput, signature: string, signature_format?: BinaryToTextEncoding): boolean; + } + /** + * Creates a `DiffieHellman` key exchange object using the supplied `prime` and an + * optional specific `generator`. + * + * The `generator` argument can be a number, string, or `Buffer`. If`generator` is not specified, the value `2` is used. + * + * If `primeEncoding` is specified, `prime` is expected to be a string; otherwise + * a `Buffer`, `TypedArray`, or `DataView` is expected. + * + * If `generatorEncoding` is specified, `generator` is expected to be a string; + * otherwise a number, `Buffer`, `TypedArray`, or `DataView` is expected. + * @since v0.11.12 + * @param primeEncoding The `encoding` of the `prime` string. + * @param [generator=2] + * @param generatorEncoding The `encoding` of the `generator` string. + */ + function createDiffieHellman(primeLength: number, generator?: number): DiffieHellman; + function createDiffieHellman(prime: ArrayBuffer | NodeJS.ArrayBufferView, generator?: number | ArrayBuffer | NodeJS.ArrayBufferView): DiffieHellman; + function createDiffieHellman(prime: ArrayBuffer | NodeJS.ArrayBufferView, generator: string, generatorEncoding: BinaryToTextEncoding): DiffieHellman; + function createDiffieHellman(prime: string, primeEncoding: BinaryToTextEncoding, generator?: number | ArrayBuffer | NodeJS.ArrayBufferView): DiffieHellman; + function createDiffieHellman(prime: string, primeEncoding: BinaryToTextEncoding, generator: string, generatorEncoding: BinaryToTextEncoding): DiffieHellman; + /** + * The `DiffieHellman` class is a utility for creating Diffie-Hellman key + * exchanges. + * + * Instances of the `DiffieHellman` class can be created using the {@link createDiffieHellman} function. + * + * ```js + * import assert from 'assert'; + * + * const { + * createDiffieHellman + * } = await import('crypto'); + * + * // Generate Alice's keys... + * const alice = createDiffieHellman(2048); + * const aliceKey = alice.generateKeys(); + * + * // Generate Bob's keys... + * const bob = createDiffieHellman(alice.getPrime(), alice.getGenerator()); + * const bobKey = bob.generateKeys(); + * + * // Exchange and generate the secret... + * const aliceSecret = alice.computeSecret(bobKey); + * const bobSecret = bob.computeSecret(aliceKey); + * + * // OK + * assert.strictEqual(aliceSecret.toString('hex'), bobSecret.toString('hex')); + * ``` + * @since v0.5.0 + */ + class DiffieHellman { + private constructor(); + /** + * Generates private and public Diffie-Hellman key values, and returns + * the public key in the specified `encoding`. This key should be + * transferred to the other party. + * If `encoding` is provided a string is returned; otherwise a `Buffer` is returned. + * @since v0.5.0 + * @param encoding The `encoding` of the return value. + */ + generateKeys(): Buffer; + generateKeys(encoding: BinaryToTextEncoding): string; + /** + * Computes the shared secret using `otherPublicKey` as the other + * party's public key and returns the computed shared secret. The supplied + * key is interpreted using the specified `inputEncoding`, and secret is + * encoded using specified `outputEncoding`. + * If the `inputEncoding` is not + * provided, `otherPublicKey` is expected to be a `Buffer`,`TypedArray`, or `DataView`. + * + * If `outputEncoding` is given a string is returned; otherwise, a `Buffer` is returned. + * @since v0.5.0 + * @param inputEncoding The `encoding` of an `otherPublicKey` string. + * @param outputEncoding The `encoding` of the return value. + */ + computeSecret(otherPublicKey: NodeJS.ArrayBufferView, inputEncoding?: null, outputEncoding?: null): Buffer; + computeSecret(otherPublicKey: string, inputEncoding: BinaryToTextEncoding, outputEncoding?: null): Buffer; + computeSecret(otherPublicKey: NodeJS.ArrayBufferView, inputEncoding: null, outputEncoding: BinaryToTextEncoding): string; + computeSecret(otherPublicKey: string, inputEncoding: BinaryToTextEncoding, outputEncoding: BinaryToTextEncoding): string; + /** + * Returns the Diffie-Hellman prime in the specified `encoding`. + * If `encoding` is provided a string is + * returned; otherwise a `Buffer` is returned. + * @since v0.5.0 + * @param encoding The `encoding` of the return value. + */ + getPrime(): Buffer; + getPrime(encoding: BinaryToTextEncoding): string; + /** + * Returns the Diffie-Hellman generator in the specified `encoding`. + * If `encoding` is provided a string is + * returned; otherwise a `Buffer` is returned. + * @since v0.5.0 + * @param encoding The `encoding` of the return value. + */ + getGenerator(): Buffer; + getGenerator(encoding: BinaryToTextEncoding): string; + /** + * Returns the Diffie-Hellman public key in the specified `encoding`. + * If `encoding` is provided a + * string is returned; otherwise a `Buffer` is returned. + * @since v0.5.0 + * @param encoding The `encoding` of the return value. + */ + getPublicKey(): Buffer; + getPublicKey(encoding: BinaryToTextEncoding): string; + /** + * Returns the Diffie-Hellman private key in the specified `encoding`. + * If `encoding` is provided a + * string is returned; otherwise a `Buffer` is returned. + * @since v0.5.0 + * @param encoding The `encoding` of the return value. + */ + getPrivateKey(): Buffer; + getPrivateKey(encoding: BinaryToTextEncoding): string; + /** + * Sets the Diffie-Hellman public key. If the `encoding` argument is provided,`publicKey` is expected + * to be a string. If no `encoding` is provided, `publicKey` is expected + * to be a `Buffer`, `TypedArray`, or `DataView`. + * @since v0.5.0 + * @param encoding The `encoding` of the `publicKey` string. + */ + setPublicKey(publicKey: NodeJS.ArrayBufferView): void; + setPublicKey(publicKey: string, encoding: BufferEncoding): void; + /** + * Sets the Diffie-Hellman private key. If the `encoding` argument is provided,`privateKey` is expected + * to be a string. If no `encoding` is provided, `privateKey` is expected + * to be a `Buffer`, `TypedArray`, or `DataView`. + * @since v0.5.0 + * @param encoding The `encoding` of the `privateKey` string. + */ + setPrivateKey(privateKey: NodeJS.ArrayBufferView): void; + setPrivateKey(privateKey: string, encoding: BufferEncoding): void; + /** + * A bit field containing any warnings and/or errors resulting from a check + * performed during initialization of the `DiffieHellman` object. + * + * The following values are valid for this property (as defined in `constants`module): + * + * * `DH_CHECK_P_NOT_SAFE_PRIME` + * * `DH_CHECK_P_NOT_PRIME` + * * `DH_UNABLE_TO_CHECK_GENERATOR` + * * `DH_NOT_SUITABLE_GENERATOR` + * @since v0.11.12 + */ + verifyError: number; + } + /** + * The `DiffieHellmanGroup` class takes a well-known modp group as its argument. + * It works the same as `DiffieHellman`, except that it does not allow changing its keys after creation. + * In other words, it does not implement `setPublicKey()` or `setPrivateKey()` methods. + * + * ```js + * const { createDiffieHellmanGroup } = await import('node:crypto'); + * const dh = createDiffieHellmanGroup('modp1'); + * ``` + * The name (e.g. `'modp1'`) is taken from [RFC 2412](https://www.rfc-editor.org/rfc/rfc2412.txt) (modp1 and 2) and [RFC 3526](https://www.rfc-editor.org/rfc/rfc3526.txt): + * ```bash + * $ perl -ne 'print "$1\n" if /"(modp\d+)"/' src/node_crypto_groups.h + * modp1 # 768 bits + * modp2 # 1024 bits + * modp5 # 1536 bits + * modp14 # 2048 bits + * modp15 # etc. + * modp16 + * modp17 + * modp18 + * ``` + * @since v0.7.5 + */ + const DiffieHellmanGroup: DiffieHellmanGroupConstructor; + interface DiffieHellmanGroupConstructor { + new(name: string): DiffieHellmanGroup; + (name: string): DiffieHellmanGroup; + readonly prototype: DiffieHellmanGroup; + } + type DiffieHellmanGroup = Omit; + /** + * Creates a predefined `DiffieHellmanGroup` key exchange object. The + * supported groups are: `'modp1'`, `'modp2'`, `'modp5'` (defined in [RFC 2412](https://www.rfc-editor.org/rfc/rfc2412.txt), but see `Caveats`) and `'modp14'`, `'modp15'`,`'modp16'`, `'modp17'`, + * `'modp18'` (defined in [RFC 3526](https://www.rfc-editor.org/rfc/rfc3526.txt)). The + * returned object mimics the interface of objects created by {@link createDiffieHellman}, but will not allow changing + * the keys (with `diffieHellman.setPublicKey()`, for example). The + * advantage of using this method is that the parties do not have to + * generate nor exchange a group modulus beforehand, saving both processor + * and communication time. + * + * Example (obtaining a shared secret): + * + * ```js + * const { + * getDiffieHellman + * } = await import('crypto'); + * const alice = getDiffieHellman('modp14'); + * const bob = getDiffieHellman('modp14'); + * + * alice.generateKeys(); + * bob.generateKeys(); + * + * const aliceSecret = alice.computeSecret(bob.getPublicKey(), null, 'hex'); + * const bobSecret = bob.computeSecret(alice.getPublicKey(), null, 'hex'); + * + * // aliceSecret and bobSecret should be the same + * console.log(aliceSecret === bobSecret); + * ``` + * @since v0.7.5 + */ + function getDiffieHellman(groupName: string): DiffieHellmanGroup; + /** + * An alias for {@link getDiffieHellman} + * @since v0.9.3 + */ + function createDiffieHellmanGroup(name: string): DiffieHellmanGroup; + /** + * Provides an asynchronous Password-Based Key Derivation Function 2 (PBKDF2) + * implementation. A selected HMAC digest algorithm specified by `digest` is + * applied to derive a key of the requested byte length (`keylen`) from the`password`, `salt` and `iterations`. + * + * The supplied `callback` function is called with two arguments: `err` and`derivedKey`. If an error occurs while deriving the key, `err` will be set; + * otherwise `err` will be `null`. By default, the successfully generated`derivedKey` will be passed to the callback as a `Buffer`. An error will be + * thrown if any of the input arguments specify invalid values or types. + * + * If `digest` is `null`, `'sha1'` will be used. This behavior is deprecated, + * please specify a `digest` explicitly. + * + * The `iterations` argument must be a number set as high as possible. The + * higher the number of iterations, the more secure the derived key will be, + * but will take a longer amount of time to complete. + * + * The `salt` should be as unique as possible. It is recommended that a salt is + * random and at least 16 bytes long. See [NIST SP 800-132](https://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-132.pdf) for details. + * + * When passing strings for `password` or `salt`, please consider `caveats when using strings as inputs to cryptographic APIs`. + * + * ```js + * const { + * pbkdf2 + * } = await import('crypto'); + * + * pbkdf2('secret', 'salt', 100000, 64, 'sha512', (err, derivedKey) => { + * if (err) throw err; + * console.log(derivedKey.toString('hex')); // '3745e48...08d59ae' + * }); + * ``` + * + * The `crypto.DEFAULT_ENCODING` property can be used to change the way the`derivedKey` is passed to the callback. This property, however, has been + * deprecated and use should be avoided. + * + * ```js + * import crypto from 'crypto'; + * crypto.DEFAULT_ENCODING = 'hex'; + * crypto.pbkdf2('secret', 'salt', 100000, 512, 'sha512', (err, derivedKey) => { + * if (err) throw err; + * console.log(derivedKey); // '3745e48...aa39b34' + * }); + * ``` + * + * An array of supported digest functions can be retrieved using {@link getHashes}. + * + * This API uses libuv's threadpool, which can have surprising and + * negative performance implications for some applications; see the `UV_THREADPOOL_SIZE` documentation for more information. + * @since v0.5.5 + */ + function pbkdf2(password: BinaryLike, salt: BinaryLike, iterations: number, keylen: number, digest: string, callback: (err: Error | null, derivedKey: Buffer) => void): void; + /** + * Provides a synchronous Password-Based Key Derivation Function 2 (PBKDF2) + * implementation. A selected HMAC digest algorithm specified by `digest` is + * applied to derive a key of the requested byte length (`keylen`) from the`password`, `salt` and `iterations`. + * + * If an error occurs an `Error` will be thrown, otherwise the derived key will be + * returned as a `Buffer`. + * + * If `digest` is `null`, `'sha1'` will be used. This behavior is deprecated, + * please specify a `digest` explicitly. + * + * The `iterations` argument must be a number set as high as possible. The + * higher the number of iterations, the more secure the derived key will be, + * but will take a longer amount of time to complete. + * + * The `salt` should be as unique as possible. It is recommended that a salt is + * random and at least 16 bytes long. See [NIST SP 800-132](https://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-132.pdf) for details. + * + * When passing strings for `password` or `salt`, please consider `caveats when using strings as inputs to cryptographic APIs`. + * + * ```js + * const { + * pbkdf2Sync + * } = await import('crypto'); + * + * const key = pbkdf2Sync('secret', 'salt', 100000, 64, 'sha512'); + * console.log(key.toString('hex')); // '3745e48...08d59ae' + * ``` + * + * The `crypto.DEFAULT_ENCODING` property may be used to change the way the`derivedKey` is returned. This property, however, is deprecated and use + * should be avoided. + * + * ```js + * import crypto from 'crypto'; + * crypto.DEFAULT_ENCODING = 'hex'; + * const key = crypto.pbkdf2Sync('secret', 'salt', 100000, 512, 'sha512'); + * console.log(key); // '3745e48...aa39b34' + * ``` + * + * An array of supported digest functions can be retrieved using {@link getHashes}. + * @since v0.9.3 + */ + function pbkdf2Sync(password: BinaryLike, salt: BinaryLike, iterations: number, keylen: number, digest: string): Buffer; + /** + * Generates cryptographically strong pseudorandom data. The `size` argument + * is a number indicating the number of bytes to generate. + * + * If a `callback` function is provided, the bytes are generated asynchronously + * and the `callback` function is invoked with two arguments: `err` and `buf`. + * If an error occurs, `err` will be an `Error` object; otherwise it is `null`. The`buf` argument is a `Buffer` containing the generated bytes. + * + * ```js + * // Asynchronous + * const { + * randomBytes + * } = await import('crypto'); + * + * randomBytes(256, (err, buf) => { + * if (err) throw err; + * console.log(`${buf.length} bytes of random data: ${buf.toString('hex')}`); + * }); + * ``` + * + * If the `callback` function is not provided, the random bytes are generated + * synchronously and returned as a `Buffer`. An error will be thrown if + * there is a problem generating the bytes. + * + * ```js + * // Synchronous + * const { + * randomBytes + * } = await import('crypto'); + * + * const buf = randomBytes(256); + * console.log( + * `${buf.length} bytes of random data: ${buf.toString('hex')}`); + * ``` + * + * The `crypto.randomBytes()` method will not complete until there is + * sufficient entropy available. + * This should normally never take longer than a few milliseconds. The only time + * when generating the random bytes may conceivably block for a longer period of + * time is right after boot, when the whole system is still low on entropy. + * + * This API uses libuv's threadpool, which can have surprising and + * negative performance implications for some applications; see the `UV_THREADPOOL_SIZE` documentation for more information. + * + * The asynchronous version of `crypto.randomBytes()` is carried out in a single + * threadpool request. To minimize threadpool task length variation, partition + * large `randomBytes` requests when doing so as part of fulfilling a client + * request. + * @since v0.5.8 + * @param size The number of bytes to generate. The `size` must not be larger than `2**31 - 1`. + * @return if the `callback` function is not provided. + */ + function randomBytes(size: number): Buffer; + function randomBytes(size: number, callback: (err: Error | null, buf: Buffer) => void): void; + function pseudoRandomBytes(size: number): Buffer; + function pseudoRandomBytes(size: number, callback: (err: Error | null, buf: Buffer) => void): void; + /** + * Return a random integer `n` such that `min <= n < max`. This + * implementation avoids [modulo bias](https://en.wikipedia.org/wiki/Fisher%E2%80%93Yates_shuffle#Modulo_bias). + * + * The range (`max - min`) must be less than 248. `min` and `max` must + * be [safe integers](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/isSafeInteger). + * + * If the `callback` function is not provided, the random integer is + * generated synchronously. + * + * ```js + * // Asynchronous + * const { + * randomInt + * } = await import('crypto'); + * + * randomInt(3, (err, n) => { + * if (err) throw err; + * console.log(`Random number chosen from (0, 1, 2): ${n}`); + * }); + * ``` + * + * ```js + * // Synchronous + * const { + * randomInt + * } = await import('crypto'); + * + * const n = randomInt(3); + * console.log(`Random number chosen from (0, 1, 2): ${n}`); + * ``` + * + * ```js + * // With `min` argument + * const { + * randomInt + * } = await import('crypto'); + * + * const n = randomInt(1, 7); + * console.log(`The dice rolled: ${n}`); + * ``` + * @since v14.10.0, v12.19.0 + * @param [min=0] Start of random range (inclusive). + * @param max End of random range (exclusive). + * @param callback `function(err, n) {}`. + */ + function randomInt(max: number): number; + function randomInt(min: number, max: number): number; + function randomInt(max: number, callback: (err: Error | null, value: number) => void): void; + function randomInt(min: number, max: number, callback: (err: Error | null, value: number) => void): void; + /** + * Synchronous version of {@link randomFill}. + * + * ```js + * import { Buffer } from 'buffer'; + * const { randomFillSync } = await import('crypto'); + * + * const buf = Buffer.alloc(10); + * console.log(randomFillSync(buf).toString('hex')); + * + * randomFillSync(buf, 5); + * console.log(buf.toString('hex')); + * + * // The above is equivalent to the following: + * randomFillSync(buf, 5, 5); + * console.log(buf.toString('hex')); + * ``` + * + * Any `ArrayBuffer`, `TypedArray` or `DataView` instance may be passed as`buffer`. + * + * ```js + * import { Buffer } from 'buffer'; + * const { randomFillSync } = await import('crypto'); + * + * const a = new Uint32Array(10); + * console.log(Buffer.from(randomFillSync(a).buffer, + * a.byteOffset, a.byteLength).toString('hex')); + * + * const b = new DataView(new ArrayBuffer(10)); + * console.log(Buffer.from(randomFillSync(b).buffer, + * b.byteOffset, b.byteLength).toString('hex')); + * + * const c = new ArrayBuffer(10); + * console.log(Buffer.from(randomFillSync(c)).toString('hex')); + * ``` + * @since v7.10.0, v6.13.0 + * @param buffer Must be supplied. The size of the provided `buffer` must not be larger than `2**31 - 1`. + * @param [offset=0] + * @param [size=buffer.length - offset] + * @return The object passed as `buffer` argument. + */ + function randomFillSync(buffer: T, offset?: number, size?: number): T; + /** + * This function is similar to {@link randomBytes} but requires the first + * argument to be a `Buffer` that will be filled. It also + * requires that a callback is passed in. + * + * If the `callback` function is not provided, an error will be thrown. + * + * ```js + * import { Buffer } from 'buffer'; + * const { randomFill } = await import('crypto'); + * + * const buf = Buffer.alloc(10); + * randomFill(buf, (err, buf) => { + * if (err) throw err; + * console.log(buf.toString('hex')); + * }); + * + * randomFill(buf, 5, (err, buf) => { + * if (err) throw err; + * console.log(buf.toString('hex')); + * }); + * + * // The above is equivalent to the following: + * randomFill(buf, 5, 5, (err, buf) => { + * if (err) throw err; + * console.log(buf.toString('hex')); + * }); + * ``` + * + * Any `ArrayBuffer`, `TypedArray`, or `DataView` instance may be passed as`buffer`. + * + * While this includes instances of `Float32Array` and `Float64Array`, this + * function should not be used to generate random floating-point numbers. The + * result may contain `+Infinity`, `-Infinity`, and `NaN`, and even if the array + * contains finite numbers only, they are not drawn from a uniform random + * distribution and have no meaningful lower or upper bounds. + * + * ```js + * import { Buffer } from 'buffer'; + * const { randomFill } = await import('crypto'); + * + * const a = new Uint32Array(10); + * randomFill(a, (err, buf) => { + * if (err) throw err; + * console.log(Buffer.from(buf.buffer, buf.byteOffset, buf.byteLength) + * .toString('hex')); + * }); + * + * const b = new DataView(new ArrayBuffer(10)); + * randomFill(b, (err, buf) => { + * if (err) throw err; + * console.log(Buffer.from(buf.buffer, buf.byteOffset, buf.byteLength) + * .toString('hex')); + * }); + * + * const c = new ArrayBuffer(10); + * randomFill(c, (err, buf) => { + * if (err) throw err; + * console.log(Buffer.from(buf).toString('hex')); + * }); + * ``` + * + * This API uses libuv's threadpool, which can have surprising and + * negative performance implications for some applications; see the `UV_THREADPOOL_SIZE` documentation for more information. + * + * The asynchronous version of `crypto.randomFill()` is carried out in a single + * threadpool request. To minimize threadpool task length variation, partition + * large `randomFill` requests when doing so as part of fulfilling a client + * request. + * @since v7.10.0, v6.13.0 + * @param buffer Must be supplied. The size of the provided `buffer` must not be larger than `2**31 - 1`. + * @param [offset=0] + * @param [size=buffer.length - offset] + * @param callback `function(err, buf) {}`. + */ + function randomFill(buffer: T, callback: (err: Error | null, buf: T) => void): void; + function randomFill(buffer: T, offset: number, callback: (err: Error | null, buf: T) => void): void; + function randomFill(buffer: T, offset: number, size: number, callback: (err: Error | null, buf: T) => void): void; + interface ScryptOptions { + cost?: number | undefined; + blockSize?: number | undefined; + parallelization?: number | undefined; + N?: number | undefined; + r?: number | undefined; + p?: number | undefined; + maxmem?: number | undefined; + } + /** + * Provides an asynchronous [scrypt](https://en.wikipedia.org/wiki/Scrypt) implementation. Scrypt is a password-based + * key derivation function that is designed to be expensive computationally and + * memory-wise in order to make brute-force attacks unrewarding. + * + * The `salt` should be as unique as possible. It is recommended that a salt is + * random and at least 16 bytes long. See [NIST SP 800-132](https://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-132.pdf) for details. + * + * When passing strings for `password` or `salt`, please consider `caveats when using strings as inputs to cryptographic APIs`. + * + * The `callback` function is called with two arguments: `err` and `derivedKey`.`err` is an exception object when key derivation fails, otherwise `err` is`null`. `derivedKey` is passed to the + * callback as a `Buffer`. + * + * An exception is thrown when any of the input arguments specify invalid values + * or types. + * + * ```js + * const { + * scrypt + * } = await import('crypto'); + * + * // Using the factory defaults. + * scrypt('password', 'salt', 64, (err, derivedKey) => { + * if (err) throw err; + * console.log(derivedKey.toString('hex')); // '3745e48...08d59ae' + * }); + * // Using a custom N parameter. Must be a power of two. + * scrypt('password', 'salt', 64, { N: 1024 }, (err, derivedKey) => { + * if (err) throw err; + * console.log(derivedKey.toString('hex')); // '3745e48...aa39b34' + * }); + * ``` + * @since v10.5.0 + */ + function scrypt(password: BinaryLike, salt: BinaryLike, keylen: number, callback: (err: Error | null, derivedKey: Buffer) => void): void; + function scrypt(password: BinaryLike, salt: BinaryLike, keylen: number, options: ScryptOptions, callback: (err: Error | null, derivedKey: Buffer) => void): void; + /** + * Provides a synchronous [scrypt](https://en.wikipedia.org/wiki/Scrypt) implementation. Scrypt is a password-based + * key derivation function that is designed to be expensive computationally and + * memory-wise in order to make brute-force attacks unrewarding. + * + * The `salt` should be as unique as possible. It is recommended that a salt is + * random and at least 16 bytes long. See [NIST SP 800-132](https://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-132.pdf) for details. + * + * When passing strings for `password` or `salt`, please consider `caveats when using strings as inputs to cryptographic APIs`. + * + * An exception is thrown when key derivation fails, otherwise the derived key is + * returned as a `Buffer`. + * + * An exception is thrown when any of the input arguments specify invalid values + * or types. + * + * ```js + * const { + * scryptSync + * } = await import('crypto'); + * // Using the factory defaults. + * + * const key1 = scryptSync('password', 'salt', 64); + * console.log(key1.toString('hex')); // '3745e48...08d59ae' + * // Using a custom N parameter. Must be a power of two. + * const key2 = scryptSync('password', 'salt', 64, { N: 1024 }); + * console.log(key2.toString('hex')); // '3745e48...aa39b34' + * ``` + * @since v10.5.0 + */ + function scryptSync(password: BinaryLike, salt: BinaryLike, keylen: number, options?: ScryptOptions): Buffer; + interface RsaPublicKey { + key: KeyLike; + padding?: number | undefined; + } + interface RsaPrivateKey { + key: KeyLike; + passphrase?: string | undefined; + /** + * @default 'sha1' + */ + oaepHash?: string | undefined; + oaepLabel?: NodeJS.TypedArray | undefined; + padding?: number | undefined; + } + /** + * Encrypts the content of `buffer` with `key` and returns a new `Buffer` with encrypted content. The returned data can be decrypted using + * the corresponding private key, for example using {@link privateDecrypt}. + * + * If `key` is not a `KeyObject`, this function behaves as if`key` had been passed to {@link createPublicKey}. If it is an + * object, the `padding` property can be passed. Otherwise, this function uses`RSA_PKCS1_OAEP_PADDING`. + * + * Because RSA public keys can be derived from private keys, a private key may + * be passed instead of a public key. + * @since v0.11.14 + */ + function publicEncrypt(key: RsaPublicKey | RsaPrivateKey | KeyLike, buffer: NodeJS.ArrayBufferView): Buffer; + /** + * Decrypts `buffer` with `key`.`buffer` was previously encrypted using + * the corresponding private key, for example using {@link privateEncrypt}. + * + * If `key` is not a `KeyObject`, this function behaves as if`key` had been passed to {@link createPublicKey}. If it is an + * object, the `padding` property can be passed. Otherwise, this function uses`RSA_PKCS1_PADDING`. + * + * Because RSA public keys can be derived from private keys, a private key may + * be passed instead of a public key. + * @since v1.1.0 + */ + function publicDecrypt(key: RsaPublicKey | RsaPrivateKey | KeyLike, buffer: NodeJS.ArrayBufferView): Buffer; + /** + * Decrypts `buffer` with `privateKey`. `buffer` was previously encrypted using + * the corresponding public key, for example using {@link publicEncrypt}. + * + * If `privateKey` is not a `KeyObject`, this function behaves as if`privateKey` had been passed to {@link createPrivateKey}. If it is an + * object, the `padding` property can be passed. Otherwise, this function uses`RSA_PKCS1_OAEP_PADDING`. + * @since v0.11.14 + */ + function privateDecrypt(privateKey: RsaPrivateKey | KeyLike, buffer: NodeJS.ArrayBufferView): Buffer; + /** + * Encrypts `buffer` with `privateKey`. The returned data can be decrypted using + * the corresponding public key, for example using {@link publicDecrypt}. + * + * If `privateKey` is not a `KeyObject`, this function behaves as if`privateKey` had been passed to {@link createPrivateKey}. If it is an + * object, the `padding` property can be passed. Otherwise, this function uses`RSA_PKCS1_PADDING`. + * @since v1.1.0 + */ + function privateEncrypt(privateKey: RsaPrivateKey | KeyLike, buffer: NodeJS.ArrayBufferView): Buffer; + /** + * ```js + * const { + * getCiphers + * } = await import('crypto'); + * + * console.log(getCiphers()); // ['aes-128-cbc', 'aes-128-ccm', ...] + * ``` + * @since v0.9.3 + * @return An array with the names of the supported cipher algorithms. + */ + function getCiphers(): string[]; + /** + * ```js + * const { + * getCurves + * } = await import('crypto'); + * + * console.log(getCurves()); // ['Oakley-EC2N-3', 'Oakley-EC2N-4', ...] + * ``` + * @since v2.3.0 + * @return An array with the names of the supported elliptic curves. + */ + function getCurves(): string[]; + /** + * @since v10.0.0 + * @return `1` if and only if a FIPS compliant crypto provider is currently in use, `0` otherwise. A future semver-major release may change the return type of this API to a {boolean}. + */ + function getFips(): 1 | 0; + /** + * Enables the FIPS compliant crypto provider in a FIPS-enabled Node.js build. Throws an error if FIPS mode is not available. + * @since v10.0.0 + * @param bool `true` to enable FIPS mode. + */ + function setFips(bool: boolean): void; + /** + * ```js + * const { + * getHashes + * } = await import('crypto'); + * + * console.log(getHashes()); // ['DSA', 'DSA-SHA', 'DSA-SHA1', ...] + * ``` + * @since v0.9.3 + * @return An array of the names of the supported hash algorithms, such as `'RSA-SHA256'`. Hash algorithms are also called "digest" algorithms. + */ + function getHashes(): string[]; + /** + * The `ECDH` class is a utility for creating Elliptic Curve Diffie-Hellman (ECDH) + * key exchanges. + * + * Instances of the `ECDH` class can be created using the {@link createECDH} function. + * + * ```js + * import assert from 'assert'; + * + * const { + * createECDH + * } = await import('crypto'); + * + * // Generate Alice's keys... + * const alice = createECDH('secp521r1'); + * const aliceKey = alice.generateKeys(); + * + * // Generate Bob's keys... + * const bob = createECDH('secp521r1'); + * const bobKey = bob.generateKeys(); + * + * // Exchange and generate the secret... + * const aliceSecret = alice.computeSecret(bobKey); + * const bobSecret = bob.computeSecret(aliceKey); + * + * assert.strictEqual(aliceSecret.toString('hex'), bobSecret.toString('hex')); + * // OK + * ``` + * @since v0.11.14 + */ + class ECDH { + private constructor(); + /** + * Converts the EC Diffie-Hellman public key specified by `key` and `curve` to the + * format specified by `format`. The `format` argument specifies point encoding + * and can be `'compressed'`, `'uncompressed'` or `'hybrid'`. The supplied key is + * interpreted using the specified `inputEncoding`, and the returned key is encoded + * using the specified `outputEncoding`. + * + * Use {@link getCurves} to obtain a list of available curve names. + * On recent OpenSSL releases, `openssl ecparam -list_curves` will also display + * the name and description of each available elliptic curve. + * + * If `format` is not specified the point will be returned in `'uncompressed'`format. + * + * If the `inputEncoding` is not provided, `key` is expected to be a `Buffer`,`TypedArray`, or `DataView`. + * + * Example (uncompressing a key): + * + * ```js + * const { + * createECDH, + * ECDH + * } = await import('crypto'); + * + * const ecdh = createECDH('secp256k1'); + * ecdh.generateKeys(); + * + * const compressedKey = ecdh.getPublicKey('hex', 'compressed'); + * + * const uncompressedKey = ECDH.convertKey(compressedKey, + * 'secp256k1', + * 'hex', + * 'hex', + * 'uncompressed'); + * + * // The converted key and the uncompressed public key should be the same + * console.log(uncompressedKey === ecdh.getPublicKey('hex')); + * ``` + * @since v10.0.0 + * @param inputEncoding The `encoding` of the `key` string. + * @param outputEncoding The `encoding` of the return value. + * @param [format='uncompressed'] + */ + static convertKey( + key: BinaryLike, + curve: string, + inputEncoding?: BinaryToTextEncoding, + outputEncoding?: 'latin1' | 'hex' | 'base64' | 'base64url', + format?: 'uncompressed' | 'compressed' | 'hybrid' + ): Buffer | string; + /** + * Generates private and public EC Diffie-Hellman key values, and returns + * the public key in the specified `format` and `encoding`. This key should be + * transferred to the other party. + * + * The `format` argument specifies point encoding and can be `'compressed'` or`'uncompressed'`. If `format` is not specified, the point will be returned in`'uncompressed'` format. + * + * If `encoding` is provided a string is returned; otherwise a `Buffer` is returned. + * @since v0.11.14 + * @param encoding The `encoding` of the return value. + * @param [format='uncompressed'] + */ + generateKeys(): Buffer; + generateKeys(encoding: BinaryToTextEncoding, format?: ECDHKeyFormat): string; + /** + * Computes the shared secret using `otherPublicKey` as the other + * party's public key and returns the computed shared secret. The supplied + * key is interpreted using specified `inputEncoding`, and the returned secret + * is encoded using the specified `outputEncoding`. + * If the `inputEncoding` is not + * provided, `otherPublicKey` is expected to be a `Buffer`, `TypedArray`, or`DataView`. + * + * If `outputEncoding` is given a string will be returned; otherwise a `Buffer` is returned. + * + * `ecdh.computeSecret` will throw an`ERR_CRYPTO_ECDH_INVALID_PUBLIC_KEY` error when `otherPublicKey`lies outside of the elliptic curve. Since `otherPublicKey` is + * usually supplied from a remote user over an insecure network, + * be sure to handle this exception accordingly. + * @since v0.11.14 + * @param inputEncoding The `encoding` of the `otherPublicKey` string. + * @param outputEncoding The `encoding` of the return value. + */ + computeSecret(otherPublicKey: NodeJS.ArrayBufferView): Buffer; + computeSecret(otherPublicKey: string, inputEncoding: BinaryToTextEncoding): Buffer; + computeSecret(otherPublicKey: NodeJS.ArrayBufferView, outputEncoding: BinaryToTextEncoding): string; + computeSecret(otherPublicKey: string, inputEncoding: BinaryToTextEncoding, outputEncoding: BinaryToTextEncoding): string; + /** + * If `encoding` is specified, a string is returned; otherwise a `Buffer` is + * returned. + * @since v0.11.14 + * @param encoding The `encoding` of the return value. + * @return The EC Diffie-Hellman in the specified `encoding`. + */ + getPrivateKey(): Buffer; + getPrivateKey(encoding: BinaryToTextEncoding): string; + /** + * The `format` argument specifies point encoding and can be `'compressed'` or`'uncompressed'`. If `format` is not specified the point will be returned in`'uncompressed'` format. + * + * If `encoding` is specified, a string is returned; otherwise a `Buffer` is + * returned. + * @since v0.11.14 + * @param [encoding] The `encoding` of the return value. + * @param [format='uncompressed'] + * @return The EC Diffie-Hellman public key in the specified `encoding` and `format`. + */ + getPublicKey(encoding?: null, format?: ECDHKeyFormat): Buffer; + getPublicKey(encoding: BinaryToTextEncoding, format?: ECDHKeyFormat): string; + /** + * Sets the EC Diffie-Hellman private key. + * If `encoding` is provided, `privateKey` is expected + * to be a string; otherwise `privateKey` is expected to be a `Buffer`,`TypedArray`, or `DataView`. + * + * If `privateKey` is not valid for the curve specified when the `ECDH` object was + * created, an error is thrown. Upon setting the private key, the associated + * public point (key) is also generated and set in the `ECDH` object. + * @since v0.11.14 + * @param encoding The `encoding` of the `privateKey` string. + */ + setPrivateKey(privateKey: NodeJS.ArrayBufferView): void; + setPrivateKey(privateKey: string, encoding: BinaryToTextEncoding): void; + } + /** + * Creates an Elliptic Curve Diffie-Hellman (`ECDH`) key exchange object using a + * predefined curve specified by the `curveName` string. Use {@link getCurves} to obtain a list of available curve names. On recent + * OpenSSL releases, `openssl ecparam -list_curves` will also display the name + * and description of each available elliptic curve. + * @since v0.11.14 + */ + function createECDH(curveName: string): ECDH; + /** + * This function is based on a constant-time algorithm. + * Returns true if `a` is equal to `b`, without leaking timing information that + * would allow an attacker to guess one of the values. This is suitable for + * comparing HMAC digests or secret values like authentication cookies or [capability urls](https://www.w3.org/TR/capability-urls/). + * + * `a` and `b` must both be `Buffer`s, `TypedArray`s, or `DataView`s, and they + * must have the same byte length. An error is thrown if `a` and `b` have + * different byte lengths. + * + * If at least one of `a` and `b` is a `TypedArray` with more than one byte per + * entry, such as `Uint16Array`, the result will be computed using the platform + * byte order. + * + * Use of `crypto.timingSafeEqual` does not guarantee that the _surrounding_ code + * is timing-safe. Care should be taken to ensure that the surrounding code does + * not introduce timing vulnerabilities. + * @since v6.6.0 + */ + function timingSafeEqual(a: NodeJS.ArrayBufferView, b: NodeJS.ArrayBufferView): boolean; + /** @deprecated since v10.0.0 */ + const DEFAULT_ENCODING: BufferEncoding; + type KeyType = 'rsa' | 'rsa-pss' | 'dsa' | 'ec' | 'ed25519' | 'ed448' | 'x25519' | 'x448'; + type KeyFormat = 'pem' | 'der'; + interface BasePrivateKeyEncodingOptions { + format: T; + cipher?: string | undefined; + passphrase?: string | undefined; + } + interface KeyPairKeyObjectResult { + publicKey: KeyObject; + privateKey: KeyObject; + } + interface ED25519KeyPairKeyObjectOptions {} + interface ED448KeyPairKeyObjectOptions {} + interface X25519KeyPairKeyObjectOptions {} + interface X448KeyPairKeyObjectOptions {} + interface ECKeyPairKeyObjectOptions { + /** + * Name of the curve to use + */ + namedCurve: string; + } + interface RSAKeyPairKeyObjectOptions { + /** + * Key size in bits + */ + modulusLength: number; + /** + * Public exponent + * @default 0x10001 + */ + publicExponent?: number | undefined; + } + interface RSAPSSKeyPairKeyObjectOptions { + /** + * Key size in bits + */ + modulusLength: number; + /** + * Public exponent + * @default 0x10001 + */ + publicExponent?: number | undefined; + /** + * Name of the message digest + */ + hashAlgorithm?: string; + /** + * Name of the message digest used by MGF1 + */ + mgf1HashAlgorithm?: string; + /** + * Minimal salt length in bytes + */ + saltLength?: string; + } + interface DSAKeyPairKeyObjectOptions { + /** + * Key size in bits + */ + modulusLength: number; + /** + * Size of q in bits + */ + divisorLength: number; + } + interface RSAKeyPairOptions { + /** + * Key size in bits + */ + modulusLength: number; + /** + * Public exponent + * @default 0x10001 + */ + publicExponent?: number | undefined; + publicKeyEncoding: { + type: 'pkcs1' | 'spki'; + format: PubF; + }; + privateKeyEncoding: BasePrivateKeyEncodingOptions & { + type: 'pkcs1' | 'pkcs8'; + }; + } + interface RSAPSSKeyPairOptions { + /** + * Key size in bits + */ + modulusLength: number; + /** + * Public exponent + * @default 0x10001 + */ + publicExponent?: number | undefined; + /** + * Name of the message digest + */ + hashAlgorithm?: string; + /** + * Name of the message digest used by MGF1 + */ + mgf1HashAlgorithm?: string; + /** + * Minimal salt length in bytes + */ + saltLength?: string; + publicKeyEncoding: { + type: 'spki'; + format: PubF; + }; + privateKeyEncoding: BasePrivateKeyEncodingOptions & { + type: 'pkcs8'; + }; + } + interface DSAKeyPairOptions { + /** + * Key size in bits + */ + modulusLength: number; + /** + * Size of q in bits + */ + divisorLength: number; + publicKeyEncoding: { + type: 'spki'; + format: PubF; + }; + privateKeyEncoding: BasePrivateKeyEncodingOptions & { + type: 'pkcs8'; + }; + } + interface ECKeyPairOptions { + /** + * Name of the curve to use. + */ + namedCurve: string; + publicKeyEncoding: { + type: 'pkcs1' | 'spki'; + format: PubF; + }; + privateKeyEncoding: BasePrivateKeyEncodingOptions & { + type: 'sec1' | 'pkcs8'; + }; + } + interface ED25519KeyPairOptions { + publicKeyEncoding: { + type: 'spki'; + format: PubF; + }; + privateKeyEncoding: BasePrivateKeyEncodingOptions & { + type: 'pkcs8'; + }; + } + interface ED448KeyPairOptions { + publicKeyEncoding: { + type: 'spki'; + format: PubF; + }; + privateKeyEncoding: BasePrivateKeyEncodingOptions & { + type: 'pkcs8'; + }; + } + interface X25519KeyPairOptions { + publicKeyEncoding: { + type: 'spki'; + format: PubF; + }; + privateKeyEncoding: BasePrivateKeyEncodingOptions & { + type: 'pkcs8'; + }; + } + interface X448KeyPairOptions { + publicKeyEncoding: { + type: 'spki'; + format: PubF; + }; + privateKeyEncoding: BasePrivateKeyEncodingOptions & { + type: 'pkcs8'; + }; + } + interface KeyPairSyncResult { + publicKey: T1; + privateKey: T2; + } + /** + * Generates a new asymmetric key pair of the given `type`. RSA, RSA-PSS, DSA, EC, + * Ed25519, Ed448, X25519, X448, and DH are currently supported. + * + * If a `publicKeyEncoding` or `privateKeyEncoding` was specified, this function + * behaves as if `keyObject.export()` had been called on its result. Otherwise, + * the respective part of the key is returned as a `KeyObject`. + * + * When encoding public keys, it is recommended to use `'spki'`. When encoding + * private keys, it is recommended to use `'pkcs8'` with a strong passphrase, + * and to keep the passphrase confidential. + * + * ```js + * const { + * generateKeyPairSync + * } = await import('crypto'); + * + * const { + * publicKey, + * privateKey, + * } = generateKeyPairSync('rsa', { + * modulusLength: 4096, + * publicKeyEncoding: { + * type: 'spki', + * format: 'pem' + * }, + * privateKeyEncoding: { + * type: 'pkcs8', + * format: 'pem', + * cipher: 'aes-256-cbc', + * passphrase: 'top secret' + * } + * }); + * ``` + * + * The return value `{ publicKey, privateKey }` represents the generated key pair. + * When PEM encoding was selected, the respective key will be a string, otherwise + * it will be a buffer containing the data encoded as DER. + * @since v10.12.0 + * @param type Must be `'rsa'`, `'rsa-pss'`, `'dsa'`, `'ec'`, `'ed25519'`, `'ed448'`, `'x25519'`, `'x448'`, or `'dh'`. + */ + function generateKeyPairSync(type: 'rsa', options: RSAKeyPairOptions<'pem', 'pem'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'rsa', options: RSAKeyPairOptions<'pem', 'der'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'rsa', options: RSAKeyPairOptions<'der', 'pem'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'rsa', options: RSAKeyPairOptions<'der', 'der'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'rsa', options: RSAKeyPairKeyObjectOptions): KeyPairKeyObjectResult; + function generateKeyPairSync(type: 'rsa-pss', options: RSAPSSKeyPairOptions<'pem', 'pem'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'rsa-pss', options: RSAPSSKeyPairOptions<'pem', 'der'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'rsa-pss', options: RSAPSSKeyPairOptions<'der', 'pem'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'rsa-pss', options: RSAPSSKeyPairOptions<'der', 'der'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'rsa-pss', options: RSAPSSKeyPairKeyObjectOptions): KeyPairKeyObjectResult; + function generateKeyPairSync(type: 'dsa', options: DSAKeyPairOptions<'pem', 'pem'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'dsa', options: DSAKeyPairOptions<'pem', 'der'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'dsa', options: DSAKeyPairOptions<'der', 'pem'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'dsa', options: DSAKeyPairOptions<'der', 'der'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'dsa', options: DSAKeyPairKeyObjectOptions): KeyPairKeyObjectResult; + function generateKeyPairSync(type: 'ec', options: ECKeyPairOptions<'pem', 'pem'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'ec', options: ECKeyPairOptions<'pem', 'der'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'ec', options: ECKeyPairOptions<'der', 'pem'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'ec', options: ECKeyPairOptions<'der', 'der'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'ec', options: ECKeyPairKeyObjectOptions): KeyPairKeyObjectResult; + function generateKeyPairSync(type: 'ed25519', options: ED25519KeyPairOptions<'pem', 'pem'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'ed25519', options: ED25519KeyPairOptions<'pem', 'der'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'ed25519', options: ED25519KeyPairOptions<'der', 'pem'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'ed25519', options: ED25519KeyPairOptions<'der', 'der'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'ed25519', options?: ED25519KeyPairKeyObjectOptions): KeyPairKeyObjectResult; + function generateKeyPairSync(type: 'ed448', options: ED448KeyPairOptions<'pem', 'pem'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'ed448', options: ED448KeyPairOptions<'pem', 'der'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'ed448', options: ED448KeyPairOptions<'der', 'pem'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'ed448', options: ED448KeyPairOptions<'der', 'der'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'ed448', options?: ED448KeyPairKeyObjectOptions): KeyPairKeyObjectResult; + function generateKeyPairSync(type: 'x25519', options: X25519KeyPairOptions<'pem', 'pem'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'x25519', options: X25519KeyPairOptions<'pem', 'der'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'x25519', options: X25519KeyPairOptions<'der', 'pem'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'x25519', options: X25519KeyPairOptions<'der', 'der'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'x25519', options?: X25519KeyPairKeyObjectOptions): KeyPairKeyObjectResult; + function generateKeyPairSync(type: 'x448', options: X448KeyPairOptions<'pem', 'pem'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'x448', options: X448KeyPairOptions<'pem', 'der'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'x448', options: X448KeyPairOptions<'der', 'pem'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'x448', options: X448KeyPairOptions<'der', 'der'>): KeyPairSyncResult; + function generateKeyPairSync(type: 'x448', options?: X448KeyPairKeyObjectOptions): KeyPairKeyObjectResult; + /** + * Generates a new asymmetric key pair of the given `type`. RSA, RSA-PSS, DSA, EC, + * Ed25519, Ed448, X25519, X448, and DH are currently supported. + * + * If a `publicKeyEncoding` or `privateKeyEncoding` was specified, this function + * behaves as if `keyObject.export()` had been called on its result. Otherwise, + * the respective part of the key is returned as a `KeyObject`. + * + * It is recommended to encode public keys as `'spki'` and private keys as`'pkcs8'` with encryption for long-term storage: + * + * ```js + * const { + * generateKeyPair + * } = await import('crypto'); + * + * generateKeyPair('rsa', { + * modulusLength: 4096, + * publicKeyEncoding: { + * type: 'spki', + * format: 'pem' + * }, + * privateKeyEncoding: { + * type: 'pkcs8', + * format: 'pem', + * cipher: 'aes-256-cbc', + * passphrase: 'top secret' + * } + * }, (err, publicKey, privateKey) => { + * // Handle errors and use the generated key pair. + * }); + * ``` + * + * On completion, `callback` will be called with `err` set to `undefined` and`publicKey` / `privateKey` representing the generated key pair. + * + * If this method is invoked as its `util.promisify()` ed version, it returns + * a `Promise` for an `Object` with `publicKey` and `privateKey` properties. + * @since v10.12.0 + * @param type Must be `'rsa'`, `'rsa-pss'`, `'dsa'`, `'ec'`, `'ed25519'`, `'ed448'`, `'x25519'`, `'x448'`, or `'dh'`. + */ + function generateKeyPair(type: 'rsa', options: RSAKeyPairOptions<'pem', 'pem'>, callback: (err: Error | null, publicKey: string, privateKey: string) => void): void; + function generateKeyPair(type: 'rsa', options: RSAKeyPairOptions<'pem', 'der'>, callback: (err: Error | null, publicKey: string, privateKey: Buffer) => void): void; + function generateKeyPair(type: 'rsa', options: RSAKeyPairOptions<'der', 'pem'>, callback: (err: Error | null, publicKey: Buffer, privateKey: string) => void): void; + function generateKeyPair(type: 'rsa', options: RSAKeyPairOptions<'der', 'der'>, callback: (err: Error | null, publicKey: Buffer, privateKey: Buffer) => void): void; + function generateKeyPair(type: 'rsa', options: RSAKeyPairKeyObjectOptions, callback: (err: Error | null, publicKey: KeyObject, privateKey: KeyObject) => void): void; + function generateKeyPair(type: 'rsa-pss', options: RSAPSSKeyPairOptions<'pem', 'pem'>, callback: (err: Error | null, publicKey: string, privateKey: string) => void): void; + function generateKeyPair(type: 'rsa-pss', options: RSAPSSKeyPairOptions<'pem', 'der'>, callback: (err: Error | null, publicKey: string, privateKey: Buffer) => void): void; + function generateKeyPair(type: 'rsa-pss', options: RSAPSSKeyPairOptions<'der', 'pem'>, callback: (err: Error | null, publicKey: Buffer, privateKey: string) => void): void; + function generateKeyPair(type: 'rsa-pss', options: RSAPSSKeyPairOptions<'der', 'der'>, callback: (err: Error | null, publicKey: Buffer, privateKey: Buffer) => void): void; + function generateKeyPair(type: 'rsa-pss', options: RSAPSSKeyPairKeyObjectOptions, callback: (err: Error | null, publicKey: KeyObject, privateKey: KeyObject) => void): void; + function generateKeyPair(type: 'dsa', options: DSAKeyPairOptions<'pem', 'pem'>, callback: (err: Error | null, publicKey: string, privateKey: string) => void): void; + function generateKeyPair(type: 'dsa', options: DSAKeyPairOptions<'pem', 'der'>, callback: (err: Error | null, publicKey: string, privateKey: Buffer) => void): void; + function generateKeyPair(type: 'dsa', options: DSAKeyPairOptions<'der', 'pem'>, callback: (err: Error | null, publicKey: Buffer, privateKey: string) => void): void; + function generateKeyPair(type: 'dsa', options: DSAKeyPairOptions<'der', 'der'>, callback: (err: Error | null, publicKey: Buffer, privateKey: Buffer) => void): void; + function generateKeyPair(type: 'dsa', options: DSAKeyPairKeyObjectOptions, callback: (err: Error | null, publicKey: KeyObject, privateKey: KeyObject) => void): void; + function generateKeyPair(type: 'ec', options: ECKeyPairOptions<'pem', 'pem'>, callback: (err: Error | null, publicKey: string, privateKey: string) => void): void; + function generateKeyPair(type: 'ec', options: ECKeyPairOptions<'pem', 'der'>, callback: (err: Error | null, publicKey: string, privateKey: Buffer) => void): void; + function generateKeyPair(type: 'ec', options: ECKeyPairOptions<'der', 'pem'>, callback: (err: Error | null, publicKey: Buffer, privateKey: string) => void): void; + function generateKeyPair(type: 'ec', options: ECKeyPairOptions<'der', 'der'>, callback: (err: Error | null, publicKey: Buffer, privateKey: Buffer) => void): void; + function generateKeyPair(type: 'ec', options: ECKeyPairKeyObjectOptions, callback: (err: Error | null, publicKey: KeyObject, privateKey: KeyObject) => void): void; + function generateKeyPair(type: 'ed25519', options: ED25519KeyPairOptions<'pem', 'pem'>, callback: (err: Error | null, publicKey: string, privateKey: string) => void): void; + function generateKeyPair(type: 'ed25519', options: ED25519KeyPairOptions<'pem', 'der'>, callback: (err: Error | null, publicKey: string, privateKey: Buffer) => void): void; + function generateKeyPair(type: 'ed25519', options: ED25519KeyPairOptions<'der', 'pem'>, callback: (err: Error | null, publicKey: Buffer, privateKey: string) => void): void; + function generateKeyPair(type: 'ed25519', options: ED25519KeyPairOptions<'der', 'der'>, callback: (err: Error | null, publicKey: Buffer, privateKey: Buffer) => void): void; + function generateKeyPair(type: 'ed25519', options: ED25519KeyPairKeyObjectOptions | undefined, callback: (err: Error | null, publicKey: KeyObject, privateKey: KeyObject) => void): void; + function generateKeyPair(type: 'ed448', options: ED448KeyPairOptions<'pem', 'pem'>, callback: (err: Error | null, publicKey: string, privateKey: string) => void): void; + function generateKeyPair(type: 'ed448', options: ED448KeyPairOptions<'pem', 'der'>, callback: (err: Error | null, publicKey: string, privateKey: Buffer) => void): void; + function generateKeyPair(type: 'ed448', options: ED448KeyPairOptions<'der', 'pem'>, callback: (err: Error | null, publicKey: Buffer, privateKey: string) => void): void; + function generateKeyPair(type: 'ed448', options: ED448KeyPairOptions<'der', 'der'>, callback: (err: Error | null, publicKey: Buffer, privateKey: Buffer) => void): void; + function generateKeyPair(type: 'ed448', options: ED448KeyPairKeyObjectOptions | undefined, callback: (err: Error | null, publicKey: KeyObject, privateKey: KeyObject) => void): void; + function generateKeyPair(type: 'x25519', options: X25519KeyPairOptions<'pem', 'pem'>, callback: (err: Error | null, publicKey: string, privateKey: string) => void): void; + function generateKeyPair(type: 'x25519', options: X25519KeyPairOptions<'pem', 'der'>, callback: (err: Error | null, publicKey: string, privateKey: Buffer) => void): void; + function generateKeyPair(type: 'x25519', options: X25519KeyPairOptions<'der', 'pem'>, callback: (err: Error | null, publicKey: Buffer, privateKey: string) => void): void; + function generateKeyPair(type: 'x25519', options: X25519KeyPairOptions<'der', 'der'>, callback: (err: Error | null, publicKey: Buffer, privateKey: Buffer) => void): void; + function generateKeyPair(type: 'x25519', options: X25519KeyPairKeyObjectOptions | undefined, callback: (err: Error | null, publicKey: KeyObject, privateKey: KeyObject) => void): void; + function generateKeyPair(type: 'x448', options: X448KeyPairOptions<'pem', 'pem'>, callback: (err: Error | null, publicKey: string, privateKey: string) => void): void; + function generateKeyPair(type: 'x448', options: X448KeyPairOptions<'pem', 'der'>, callback: (err: Error | null, publicKey: string, privateKey: Buffer) => void): void; + function generateKeyPair(type: 'x448', options: X448KeyPairOptions<'der', 'pem'>, callback: (err: Error | null, publicKey: Buffer, privateKey: string) => void): void; + function generateKeyPair(type: 'x448', options: X448KeyPairOptions<'der', 'der'>, callback: (err: Error | null, publicKey: Buffer, privateKey: Buffer) => void): void; + function generateKeyPair(type: 'x448', options: X448KeyPairKeyObjectOptions | undefined, callback: (err: Error | null, publicKey: KeyObject, privateKey: KeyObject) => void): void; + namespace generateKeyPair { + function __promisify__( + type: 'rsa', + options: RSAKeyPairOptions<'pem', 'pem'> + ): Promise<{ + publicKey: string; + privateKey: string; + }>; + function __promisify__( + type: 'rsa', + options: RSAKeyPairOptions<'pem', 'der'> + ): Promise<{ + publicKey: string; + privateKey: Buffer; + }>; + function __promisify__( + type: 'rsa', + options: RSAKeyPairOptions<'der', 'pem'> + ): Promise<{ + publicKey: Buffer; + privateKey: string; + }>; + function __promisify__( + type: 'rsa', + options: RSAKeyPairOptions<'der', 'der'> + ): Promise<{ + publicKey: Buffer; + privateKey: Buffer; + }>; + function __promisify__(type: 'rsa', options: RSAKeyPairKeyObjectOptions): Promise; + function __promisify__( + type: 'rsa-pss', + options: RSAPSSKeyPairOptions<'pem', 'pem'> + ): Promise<{ + publicKey: string; + privateKey: string; + }>; + function __promisify__( + type: 'rsa-pss', + options: RSAPSSKeyPairOptions<'pem', 'der'> + ): Promise<{ + publicKey: string; + privateKey: Buffer; + }>; + function __promisify__( + type: 'rsa-pss', + options: RSAPSSKeyPairOptions<'der', 'pem'> + ): Promise<{ + publicKey: Buffer; + privateKey: string; + }>; + function __promisify__( + type: 'rsa-pss', + options: RSAPSSKeyPairOptions<'der', 'der'> + ): Promise<{ + publicKey: Buffer; + privateKey: Buffer; + }>; + function __promisify__(type: 'rsa-pss', options: RSAPSSKeyPairKeyObjectOptions): Promise; + function __promisify__( + type: 'dsa', + options: DSAKeyPairOptions<'pem', 'pem'> + ): Promise<{ + publicKey: string; + privateKey: string; + }>; + function __promisify__( + type: 'dsa', + options: DSAKeyPairOptions<'pem', 'der'> + ): Promise<{ + publicKey: string; + privateKey: Buffer; + }>; + function __promisify__( + type: 'dsa', + options: DSAKeyPairOptions<'der', 'pem'> + ): Promise<{ + publicKey: Buffer; + privateKey: string; + }>; + function __promisify__( + type: 'dsa', + options: DSAKeyPairOptions<'der', 'der'> + ): Promise<{ + publicKey: Buffer; + privateKey: Buffer; + }>; + function __promisify__(type: 'dsa', options: DSAKeyPairKeyObjectOptions): Promise; + function __promisify__( + type: 'ec', + options: ECKeyPairOptions<'pem', 'pem'> + ): Promise<{ + publicKey: string; + privateKey: string; + }>; + function __promisify__( + type: 'ec', + options: ECKeyPairOptions<'pem', 'der'> + ): Promise<{ + publicKey: string; + privateKey: Buffer; + }>; + function __promisify__( + type: 'ec', + options: ECKeyPairOptions<'der', 'pem'> + ): Promise<{ + publicKey: Buffer; + privateKey: string; + }>; + function __promisify__( + type: 'ec', + options: ECKeyPairOptions<'der', 'der'> + ): Promise<{ + publicKey: Buffer; + privateKey: Buffer; + }>; + function __promisify__(type: 'ec', options: ECKeyPairKeyObjectOptions): Promise; + function __promisify__( + type: 'ed25519', + options: ED25519KeyPairOptions<'pem', 'pem'> + ): Promise<{ + publicKey: string; + privateKey: string; + }>; + function __promisify__( + type: 'ed25519', + options: ED25519KeyPairOptions<'pem', 'der'> + ): Promise<{ + publicKey: string; + privateKey: Buffer; + }>; + function __promisify__( + type: 'ed25519', + options: ED25519KeyPairOptions<'der', 'pem'> + ): Promise<{ + publicKey: Buffer; + privateKey: string; + }>; + function __promisify__( + type: 'ed25519', + options: ED25519KeyPairOptions<'der', 'der'> + ): Promise<{ + publicKey: Buffer; + privateKey: Buffer; + }>; + function __promisify__(type: 'ed25519', options?: ED25519KeyPairKeyObjectOptions): Promise; + function __promisify__( + type: 'ed448', + options: ED448KeyPairOptions<'pem', 'pem'> + ): Promise<{ + publicKey: string; + privateKey: string; + }>; + function __promisify__( + type: 'ed448', + options: ED448KeyPairOptions<'pem', 'der'> + ): Promise<{ + publicKey: string; + privateKey: Buffer; + }>; + function __promisify__( + type: 'ed448', + options: ED448KeyPairOptions<'der', 'pem'> + ): Promise<{ + publicKey: Buffer; + privateKey: string; + }>; + function __promisify__( + type: 'ed448', + options: ED448KeyPairOptions<'der', 'der'> + ): Promise<{ + publicKey: Buffer; + privateKey: Buffer; + }>; + function __promisify__(type: 'ed448', options?: ED448KeyPairKeyObjectOptions): Promise; + function __promisify__( + type: 'x25519', + options: X25519KeyPairOptions<'pem', 'pem'> + ): Promise<{ + publicKey: string; + privateKey: string; + }>; + function __promisify__( + type: 'x25519', + options: X25519KeyPairOptions<'pem', 'der'> + ): Promise<{ + publicKey: string; + privateKey: Buffer; + }>; + function __promisify__( + type: 'x25519', + options: X25519KeyPairOptions<'der', 'pem'> + ): Promise<{ + publicKey: Buffer; + privateKey: string; + }>; + function __promisify__( + type: 'x25519', + options: X25519KeyPairOptions<'der', 'der'> + ): Promise<{ + publicKey: Buffer; + privateKey: Buffer; + }>; + function __promisify__(type: 'x25519', options?: X25519KeyPairKeyObjectOptions): Promise; + function __promisify__( + type: 'x448', + options: X448KeyPairOptions<'pem', 'pem'> + ): Promise<{ + publicKey: string; + privateKey: string; + }>; + function __promisify__( + type: 'x448', + options: X448KeyPairOptions<'pem', 'der'> + ): Promise<{ + publicKey: string; + privateKey: Buffer; + }>; + function __promisify__( + type: 'x448', + options: X448KeyPairOptions<'der', 'pem'> + ): Promise<{ + publicKey: Buffer; + privateKey: string; + }>; + function __promisify__( + type: 'x448', + options: X448KeyPairOptions<'der', 'der'> + ): Promise<{ + publicKey: Buffer; + privateKey: Buffer; + }>; + function __promisify__(type: 'x448', options?: X448KeyPairKeyObjectOptions): Promise; + } + /** + * Calculates and returns the signature for `data` using the given private key and + * algorithm. If `algorithm` is `null` or `undefined`, then the algorithm is + * dependent upon the key type (especially Ed25519 and Ed448). + * + * If `key` is not a `KeyObject`, this function behaves as if `key` had been + * passed to {@link createPrivateKey}. If it is an object, the following + * additional properties can be passed: + * + * If the `callback` function is provided this function uses libuv's threadpool. + * @since v12.0.0 + */ + function sign(algorithm: string | null | undefined, data: NodeJS.ArrayBufferView, key: KeyLike | SignKeyObjectInput | SignPrivateKeyInput): Buffer; + function sign( + algorithm: string | null | undefined, + data: NodeJS.ArrayBufferView, + key: KeyLike | SignKeyObjectInput | SignPrivateKeyInput, + callback: (error: Error | null, data: Buffer) => void + ): void; + /** + * Verifies the given signature for `data` using the given key and algorithm. If`algorithm` is `null` or `undefined`, then the algorithm is dependent upon the + * key type (especially Ed25519 and Ed448). + * + * If `key` is not a `KeyObject`, this function behaves as if `key` had been + * passed to {@link createPublicKey}. If it is an object, the following + * additional properties can be passed: + * + * The `signature` argument is the previously calculated signature for the `data`. + * + * Because public keys can be derived from private keys, a private key or a public + * key may be passed for `key`. + * + * If the `callback` function is provided this function uses libuv's threadpool. + * @since v12.0.0 + */ + function verify(algorithm: string | null | undefined, data: NodeJS.ArrayBufferView, key: KeyLike | VerifyKeyObjectInput | VerifyPublicKeyInput, signature: NodeJS.ArrayBufferView): boolean; + function verify( + algorithm: string | null | undefined, + data: NodeJS.ArrayBufferView, + key: KeyLike | VerifyKeyObjectInput | VerifyPublicKeyInput, + signature: NodeJS.ArrayBufferView, + callback: (error: Error | null, result: boolean) => void + ): void; + /** + * Computes the Diffie-Hellman secret based on a `privateKey` and a `publicKey`. + * Both keys must have the same `asymmetricKeyType`, which must be one of `'dh'`(for Diffie-Hellman), `'ec'` (for ECDH), `'x448'`, or `'x25519'` (for ECDH-ES). + * @since v13.9.0, v12.17.0 + */ + function diffieHellman(options: { privateKey: KeyObject; publicKey: KeyObject }): Buffer; + type CipherMode = 'cbc' | 'ccm' | 'cfb' | 'ctr' | 'ecb' | 'gcm' | 'ocb' | 'ofb' | 'stream' | 'wrap' | 'xts'; + interface CipherInfoOptions { + /** + * A test key length. + */ + keyLength?: number | undefined; + /** + * A test IV length. + */ + ivLength?: number | undefined; + } + interface CipherInfo { + /** + * The name of the cipher. + */ + name: string; + /** + * The nid of the cipher. + */ + nid: number; + /** + * The block size of the cipher in bytes. + * This property is omitted when mode is 'stream'. + */ + blockSize?: number | undefined; + /** + * The expected or default initialization vector length in bytes. + * This property is omitted if the cipher does not use an initialization vector. + */ + ivLength?: number | undefined; + /** + * The expected or default key length in bytes. + */ + keyLength: number; + /** + * The cipher mode. + */ + mode: CipherMode; + } + /** + * Returns information about a given cipher. + * + * Some ciphers accept variable length keys and initialization vectors. By default, + * the `crypto.getCipherInfo()` method will return the default values for these + * ciphers. To test if a given key length or iv length is acceptable for given + * cipher, use the `keyLength` and `ivLength` options. If the given values are + * unacceptable, `undefined` will be returned. + * @since v15.0.0 + * @param nameOrNid The name or nid of the cipher to query. + */ + function getCipherInfo(nameOrNid: string | number, options?: CipherInfoOptions): CipherInfo | undefined; + /** + * HKDF is a simple key derivation function defined in RFC 5869\. The given `ikm`,`salt` and `info` are used with the `digest` to derive a key of `keylen` bytes. + * + * The supplied `callback` function is called with two arguments: `err` and`derivedKey`. If an errors occurs while deriving the key, `err` will be set; + * otherwise `err` will be `null`. The successfully generated `derivedKey` will + * be passed to the callback as an [ArrayBuffer](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer). An error will be thrown if any + * of the input arguments specify invalid values or types. + * + * ```js + * import { Buffer } from 'buffer'; + * const { + * hkdf + * } = await import('crypto'); + * + * hkdf('sha512', 'key', 'salt', 'info', 64, (err, derivedKey) => { + * if (err) throw err; + * console.log(Buffer.from(derivedKey).toString('hex')); // '24156e2...5391653' + * }); + * ``` + * @since v15.0.0 + * @param digest The digest algorithm to use. + * @param ikm The input keying material. It must be at least one byte in length. + * @param salt The salt value. Must be provided but can be zero-length. + * @param info Additional info value. Must be provided but can be zero-length, and cannot be more than 1024 bytes. + * @param keylen The length of the key to generate. Must be greater than 0. The maximum allowable value is `255` times the number of bytes produced by the selected digest function (e.g. `sha512` + * generates 64-byte hashes, making the maximum HKDF output 16320 bytes). + */ + function hkdf(digest: string, irm: BinaryLike | KeyObject, salt: BinaryLike, info: BinaryLike, keylen: number, callback: (err: Error | null, derivedKey: ArrayBuffer) => void): void; + /** + * Provides a synchronous HKDF key derivation function as defined in RFC 5869\. The + * given `ikm`, `salt` and `info` are used with the `digest` to derive a key of`keylen` bytes. + * + * The successfully generated `derivedKey` will be returned as an [ArrayBuffer](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer). + * + * An error will be thrown if any of the input arguments specify invalid values or + * types, or if the derived key cannot be generated. + * + * ```js + * import { Buffer } from 'buffer'; + * const { + * hkdfSync + * } = await import('crypto'); + * + * const derivedKey = hkdfSync('sha512', 'key', 'salt', 'info', 64); + * console.log(Buffer.from(derivedKey).toString('hex')); // '24156e2...5391653' + * ``` + * @since v15.0.0 + * @param digest The digest algorithm to use. + * @param ikm The input keying material. It must be at least one byte in length. + * @param salt The salt value. Must be provided but can be zero-length. + * @param info Additional info value. Must be provided but can be zero-length, and cannot be more than 1024 bytes. + * @param keylen The length of the key to generate. Must be greater than 0. The maximum allowable value is `255` times the number of bytes produced by the selected digest function (e.g. `sha512` + * generates 64-byte hashes, making the maximum HKDF output 16320 bytes). + */ + function hkdfSync(digest: string, ikm: BinaryLike | KeyObject, salt: BinaryLike, info: BinaryLike, keylen: number): ArrayBuffer; + interface SecureHeapUsage { + /** + * The total allocated secure heap size as specified using the `--secure-heap=n` command-line flag. + */ + total: number; + /** + * The minimum allocation from the secure heap as specified using the `--secure-heap-min` command-line flag. + */ + min: number; + /** + * The total number of bytes currently allocated from the secure heap. + */ + used: number; + /** + * The calculated ratio of `used` to `total` allocated bytes. + */ + utilization: number; + } + /** + * @since v15.6.0 + */ + function secureHeapUsed(): SecureHeapUsage; + interface RandomUUIDOptions { + /** + * By default, to improve performance, + * Node.js will pre-emptively generate and persistently cache enough + * random data to generate up to 128 random UUIDs. To generate a UUID + * without using the cache, set `disableEntropyCache` to `true`. + * + * @default `false` + */ + disableEntropyCache?: boolean | undefined; + } + /** + * Generates a random [RFC 4122](https://www.rfc-editor.org/rfc/rfc4122.txt) version 4 UUID. The UUID is generated using a + * cryptographic pseudorandom number generator. + * @since v15.6.0, v14.17.0 + */ + function randomUUID(options?: RandomUUIDOptions): string; + interface X509CheckOptions { + /** + * @default 'always' + */ + subject: 'always' | 'never'; + /** + * @default true + */ + wildcards: boolean; + /** + * @default true + */ + partialWildcards: boolean; + /** + * @default false + */ + multiLabelWildcards: boolean; + /** + * @default false + */ + singleLabelSubdomains: boolean; + } + /** + * Encapsulates an X509 certificate and provides read-only access to + * its information. + * + * ```js + * const { X509Certificate } = await import('crypto'); + * + * const x509 = new X509Certificate('{... pem encoded cert ...}'); + * + * console.log(x509.subject); + * ``` + * @since v15.6.0 + */ + class X509Certificate { + /** + * Will be \`true\` if this is a Certificate Authority (CA) certificate. + * @since v15.6.0 + */ + readonly ca: boolean; + /** + * The SHA-1 fingerprint of this certificate. + * + * Because SHA-1 is cryptographically broken and because the security of SHA-1 is + * significantly worse than that of algorithms that are commonly used to sign + * certificates, consider using `x509.fingerprint256` instead. + * @since v15.6.0 + */ + readonly fingerprint: string; + /** + * The SHA-256 fingerprint of this certificate. + * @since v15.6.0 + */ + readonly fingerprint256: string; + /** + * The SHA-512 fingerprint of this certificate. + * @since v16.14.0 + */ + readonly fingerprint512: string; + /** + * The complete subject of this certificate. + * @since v15.6.0 + */ + readonly subject: string; + /** + * The subject alternative name specified for this certificate or `undefined` + * if not available. + * @since v15.6.0 + */ + readonly subjectAltName: string | undefined; + /** + * The information access content of this certificate or `undefined` if not + * available. + * @since v15.6.0 + */ + readonly infoAccess: string | undefined; + /** + * An array detailing the key usages for this certificate. + * @since v15.6.0 + */ + readonly keyUsage: string[]; + /** + * The issuer identification included in this certificate. + * @since v15.6.0 + */ + readonly issuer: string; + /** + * The issuer certificate or `undefined` if the issuer certificate is not + * available. + * @since v15.9.0 + */ + readonly issuerCertificate?: X509Certificate | undefined; + /** + * The public key `KeyObject` for this certificate. + * @since v15.6.0 + */ + readonly publicKey: KeyObject; + /** + * A `Buffer` containing the DER encoding of this certificate. + * @since v15.6.0 + */ + readonly raw: Buffer; + /** + * The serial number of this certificate. + * + * Serial numbers are assigned by certificate authorities and do not uniquely + * identify certificates. Consider using `x509.fingerprint256` as a unique + * identifier instead. + * @since v15.6.0 + */ + readonly serialNumber: string; + /** + * The date/time from which this certificate is considered valid. + * @since v15.6.0 + */ + readonly validFrom: string; + /** + * The date/time until which this certificate is considered valid. + * @since v15.6.0 + */ + readonly validTo: string; + constructor(buffer: BinaryLike); + /** + * Checks whether the certificate matches the given email address. + * + * If the `'subject'` option is undefined or set to `'default'`, the certificate + * subject is only considered if the subject alternative name extension either does + * not exist or does not contain any email addresses. + * + * If the `'subject'` option is set to `'always'` and if the subject alternative + * name extension either does not exist or does not contain a matching email + * address, the certificate subject is considered. + * + * If the `'subject'` option is set to `'never'`, the certificate subject is never + * considered, even if the certificate contains no subject alternative names. + * @since v15.6.0 + * @return Returns `email` if the certificate matches, `undefined` if it does not. + */ + checkEmail(email: string, options?: Pick): string | undefined; + /** + * Checks whether the certificate matches the given host name. + * + * If the certificate matches the given host name, the matching subject name is + * returned. The returned name might be an exact match (e.g., `foo.example.com`) + * or it might contain wildcards (e.g., `*.example.com`). Because host name + * comparisons are case-insensitive, the returned subject name might also differ + * from the given `name` in capitalization. + * + * If the `'subject'` option is undefined or set to `'default'`, the certificate + * subject is only considered if the subject alternative name extension either does + * not exist or does not contain any DNS names. This behavior is consistent with [RFC 2818](https://www.rfc-editor.org/rfc/rfc2818.txt) ("HTTP Over TLS"). + * + * If the `'subject'` option is set to `'always'` and if the subject alternative + * name extension either does not exist or does not contain a matching DNS name, + * the certificate subject is considered. + * + * If the `'subject'` option is set to `'never'`, the certificate subject is never + * considered, even if the certificate contains no subject alternative names. + * @since v15.6.0 + * @return Returns a subject name that matches `name`, or `undefined` if no subject name matches `name`. + */ + checkHost(name: string, options?: X509CheckOptions): string | undefined; + /** + * Checks whether the certificate matches the given IP address (IPv4 or IPv6). + * + * Only [RFC 5280](https://www.rfc-editor.org/rfc/rfc5280.txt) `iPAddress` subject alternative names are considered, and they + * must match the given `ip` address exactly. Other subject alternative names as + * well as the subject field of the certificate are ignored. + * @since v15.6.0 + * @return Returns `ip` if the certificate matches, `undefined` if it does not. + */ + checkIP(ip: string): string | undefined; + /** + * Checks whether this certificate was issued by the given `otherCert`. + * @since v15.6.0 + */ + checkIssued(otherCert: X509Certificate): boolean; + /** + * Checks whether the public key for this certificate is consistent with + * the given private key. + * @since v15.6.0 + * @param privateKey A private key. + */ + checkPrivateKey(privateKey: KeyObject): boolean; + /** + * There is no standard JSON encoding for X509 certificates. The`toJSON()` method returns a string containing the PEM encoded + * certificate. + * @since v15.6.0 + */ + toJSON(): string; + /** + * Returns information about this certificate using the legacy `certificate object` encoding. + * @since v15.6.0 + */ + toLegacyObject(): PeerCertificate; + /** + * Returns the PEM-encoded certificate. + * @since v15.6.0 + */ + toString(): string; + /** + * Verifies that this certificate was signed by the given public key. + * Does not perform any other validation checks on the certificate. + * @since v15.6.0 + * @param publicKey A public key. + */ + verify(publicKey: KeyObject): boolean; + } + type LargeNumberLike = NodeJS.ArrayBufferView | SharedArrayBuffer | ArrayBuffer | bigint; + interface GeneratePrimeOptions { + add?: LargeNumberLike | undefined; + rem?: LargeNumberLike | undefined; + /** + * @default false + */ + safe?: boolean | undefined; + bigint?: boolean | undefined; + } + interface GeneratePrimeOptionsBigInt extends GeneratePrimeOptions { + bigint: true; + } + interface GeneratePrimeOptionsArrayBuffer extends GeneratePrimeOptions { + bigint?: false | undefined; + } + /** + * Generates a pseudorandom prime of `size` bits. + * + * If `options.safe` is `true`, the prime will be a safe prime -- that is,`(prime - 1) / 2` will also be a prime. + * + * The `options.add` and `options.rem` parameters can be used to enforce additional + * requirements, e.g., for Diffie-Hellman: + * + * * If `options.add` and `options.rem` are both set, the prime will satisfy the + * condition that `prime % add = rem`. + * * If only `options.add` is set and `options.safe` is not `true`, the prime will + * satisfy the condition that `prime % add = 1`. + * * If only `options.add` is set and `options.safe` is set to `true`, the prime + * will instead satisfy the condition that `prime % add = 3`. This is necessary + * because `prime % add = 1` for `options.add > 2` would contradict the condition + * enforced by `options.safe`. + * * `options.rem` is ignored if `options.add` is not given. + * + * Both `options.add` and `options.rem` must be encoded as big-endian sequences + * if given as an `ArrayBuffer`, `SharedArrayBuffer`, `TypedArray`, `Buffer`, or`DataView`. + * + * By default, the prime is encoded as a big-endian sequence of octets + * in an [ArrayBuffer](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer). If the `bigint` option is `true`, then a + * [bigint](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt) is provided. + * @since v15.8.0 + * @param size The size (in bits) of the prime to generate. + */ + function generatePrime(size: number, callback: (err: Error | null, prime: ArrayBuffer) => void): void; + function generatePrime(size: number, options: GeneratePrimeOptionsBigInt, callback: (err: Error | null, prime: bigint) => void): void; + function generatePrime(size: number, options: GeneratePrimeOptionsArrayBuffer, callback: (err: Error | null, prime: ArrayBuffer) => void): void; + function generatePrime(size: number, options: GeneratePrimeOptions, callback: (err: Error | null, prime: ArrayBuffer | bigint) => void): void; + /** + * Generates a pseudorandom prime of `size` bits. + * + * If `options.safe` is `true`, the prime will be a safe prime -- that is,`(prime - 1) / 2` will also be a prime. + * + * The `options.add` and `options.rem` parameters can be used to enforce additional + * requirements, e.g., for Diffie-Hellman: + * + * * If `options.add` and `options.rem` are both set, the prime will satisfy the + * condition that `prime % add = rem`. + * * If only `options.add` is set and `options.safe` is not `true`, the prime will + * satisfy the condition that `prime % add = 1`. + * * If only `options.add` is set and `options.safe` is set to `true`, the prime + * will instead satisfy the condition that `prime % add = 3`. This is necessary + * because `prime % add = 1` for `options.add > 2` would contradict the condition + * enforced by `options.safe`. + * * `options.rem` is ignored if `options.add` is not given. + * + * Both `options.add` and `options.rem` must be encoded as big-endian sequences + * if given as an `ArrayBuffer`, `SharedArrayBuffer`, `TypedArray`, `Buffer`, or`DataView`. + * + * By default, the prime is encoded as a big-endian sequence of octets + * in an [ArrayBuffer](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer). If the `bigint` option is `true`, then a + * [bigint](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt) is provided. + * @since v15.8.0 + * @param size The size (in bits) of the prime to generate. + */ + function generatePrimeSync(size: number): ArrayBuffer; + function generatePrimeSync(size: number, options: GeneratePrimeOptionsBigInt): bigint; + function generatePrimeSync(size: number, options: GeneratePrimeOptionsArrayBuffer): ArrayBuffer; + function generatePrimeSync(size: number, options: GeneratePrimeOptions): ArrayBuffer | bigint; + interface CheckPrimeOptions { + /** + * The number of Miller-Rabin probabilistic primality iterations to perform. + * When the value is 0 (zero), a number of checks is used that yields a false positive rate of at most 2-64 for random input. + * Care must be used when selecting a number of checks. + * Refer to the OpenSSL documentation for the BN_is_prime_ex function nchecks options for more details. + * + * @default 0 + */ + checks?: number | undefined; + } + /** + * Checks the primality of the `candidate`. + * @since v15.8.0 + * @param candidate A possible prime encoded as a sequence of big endian octets of arbitrary length. + */ + function checkPrime(value: LargeNumberLike, callback: (err: Error | null, result: boolean) => void): void; + function checkPrime(value: LargeNumberLike, options: CheckPrimeOptions, callback: (err: Error | null, result: boolean) => void): void; + /** + * Checks the primality of the `candidate`. + * @since v15.8.0 + * @param candidate A possible prime encoded as a sequence of big endian octets of arbitrary length. + * @return `true` if the candidate is a prime with an error probability less than `0.25 ** options.checks`. + */ + function checkPrimeSync(candidate: LargeNumberLike, options?: CheckPrimeOptions): boolean; + /** + * Load and set the `engine` for some or all OpenSSL functions (selected by flags). + * + * `engine` could be either an id or a path to the engine's shared library. + * + * The optional `flags` argument uses `ENGINE_METHOD_ALL` by default. + * The `flags` is a bit field taking one of or a mix of the following flags (defined in `crypto.constants`): + * + * - `crypto.constants.ENGINE_METHOD_RSA` + * - `crypto.constants.ENGINE_METHOD_DSA` + * - `crypto.constants.ENGINE_METHOD_DH` + * - `crypto.constants.ENGINE_METHOD_RAND` + * - `crypto.constants.ENGINE_METHOD_EC` + * - `crypto.constants.ENGINE_METHOD_CIPHERS` + * - `crypto.constants.ENGINE_METHOD_DIGESTS` + * - `crypto.constants.ENGINE_METHOD_PKEY_METHS` + * - `crypto.constants.ENGINE_METHOD_PKEY_ASN1_METHS` + * - `crypto.constants.ENGINE_METHOD_ALL` + * - `crypto.constants.ENGINE_METHOD_NONE` + * + * The flags below are deprecated in OpenSSL-1.1.0. + * + * - `crypto.constants.ENGINE_METHOD_ECDH` + * - `crypto.constants.ENGINE_METHOD_ECDSA` + * - `crypto.constants.ENGINE_METHOD_STORE` + * @since v0.11.11 + * @param [flags=crypto.constants.ENGINE_METHOD_ALL] + */ + function setEngine(engine: string, flags?: number): void; + /** + * A convenient alias for `crypto.webcrypto.getRandomValues()`. + * This implementation is not compliant with the Web Crypto spec, + * to write web-compatible code use `crypto.webcrypto.getRandomValues()` instead. + * @since v17.4.0 + * @returns Returns `typedArray`. + */ + function getRandomValues(typedArray: T): T; + /** + * A convenient alias for `crypto.webcrypto.subtle`. + * @since v17.4.0 + */ + const subtle: webcrypto.SubtleCrypto; + /** + * An implementation of the Web Crypto API standard. + * + * See the {@link https://nodejs.org/docs/latest/api/webcrypto.html Web Crypto API documentation} for details. + * @since v15.0.0 + */ + const webcrypto: webcrypto.Crypto; + namespace webcrypto { + type BufferSource = ArrayBufferView | ArrayBuffer; + type KeyFormat = 'jwk' | 'pkcs8' | 'raw' | 'spki'; + type KeyType = 'private' | 'public' | 'secret'; + type KeyUsage = 'decrypt' | 'deriveBits' | 'deriveKey' | 'encrypt' | 'sign' | 'unwrapKey' | 'verify' | 'wrapKey'; + type AlgorithmIdentifier = Algorithm | string; + type HashAlgorithmIdentifier = AlgorithmIdentifier; + type NamedCurve = string; + type BigInteger = Uint8Array; + interface AesCbcParams extends Algorithm { + iv: BufferSource; + } + interface AesCtrParams extends Algorithm { + counter: BufferSource; + length: number; + } + interface AesDerivedKeyParams extends Algorithm { + length: number; + } + interface AesGcmParams extends Algorithm { + additionalData?: BufferSource; + iv: BufferSource; + tagLength?: number; + } + interface AesKeyAlgorithm extends KeyAlgorithm { + length: number; + } + interface AesKeyGenParams extends Algorithm { + length: number; + } + interface Algorithm { + name: string; + } + interface EcKeyAlgorithm extends KeyAlgorithm { + namedCurve: NamedCurve; + } + interface EcKeyGenParams extends Algorithm { + namedCurve: NamedCurve; + } + interface EcKeyImportParams extends Algorithm { + namedCurve: NamedCurve; + } + interface EcdhKeyDeriveParams extends Algorithm { + public: CryptoKey; + } + interface EcdsaParams extends Algorithm { + hash: HashAlgorithmIdentifier; + } + interface Ed448Params extends Algorithm { + context?: BufferSource; + } + interface HkdfParams extends Algorithm { + hash: HashAlgorithmIdentifier; + info: BufferSource; + salt: BufferSource; + } + interface HmacImportParams extends Algorithm { + hash: HashAlgorithmIdentifier; + length?: number; + } + interface HmacKeyAlgorithm extends KeyAlgorithm { + hash: KeyAlgorithm; + length: number; + } + interface HmacKeyGenParams extends Algorithm { + hash: HashAlgorithmIdentifier; + length?: number; + } + interface JsonWebKey { + alg?: string; + crv?: string; + d?: string; + dp?: string; + dq?: string; + e?: string; + ext?: boolean; + k?: string; + key_ops?: string[]; + kty?: string; + n?: string; + oth?: RsaOtherPrimesInfo[]; + p?: string; + q?: string; + qi?: string; + use?: string; + x?: string; + y?: string; + } + interface KeyAlgorithm { + name: string; + } + interface Pbkdf2Params extends Algorithm { + hash: HashAlgorithmIdentifier; + iterations: number; + salt: BufferSource; + } + interface RsaHashedImportParams extends Algorithm { + hash: HashAlgorithmIdentifier; + } + interface RsaHashedKeyAlgorithm extends RsaKeyAlgorithm { + hash: KeyAlgorithm; + } + interface RsaHashedKeyGenParams extends RsaKeyGenParams { + hash: HashAlgorithmIdentifier; + } + interface RsaKeyAlgorithm extends KeyAlgorithm { + modulusLength: number; + publicExponent: BigInteger; + } + interface RsaKeyGenParams extends Algorithm { + modulusLength: number; + publicExponent: BigInteger; + } + interface RsaOaepParams extends Algorithm { + label?: BufferSource; + } + interface RsaOtherPrimesInfo { + d?: string; + r?: string; + t?: string; + } + interface RsaPssParams extends Algorithm { + saltLength: number; + } + /** + * Calling `require('node:crypto').webcrypto` returns an instance of the `Crypto` class. + * `Crypto` is a singleton that provides access to the remainder of the crypto API. + * @since v15.0.0 + */ + interface Crypto { + /** + * Provides access to the `SubtleCrypto` API. + * @since v15.0.0 + */ + readonly subtle: SubtleCrypto; + /** + * Generates cryptographically strong random values. + * The given `typedArray` is filled with random values, and a reference to `typedArray` is returned. + * + * The given `typedArray` must be an integer-based instance of {@link NodeJS.TypedArray}, i.e. `Float32Array` and `Float64Array` are not accepted. + * + * An error will be thrown if the given `typedArray` is larger than 65,536 bytes. + * @since v15.0.0 + */ + getRandomValues>(typedArray: T): T; + /** + * Generates a random {@link https://www.rfc-editor.org/rfc/rfc4122.txt RFC 4122} version 4 UUID. + * The UUID is generated using a cryptographic pseudorandom number generator. + * @since v16.7.0 + */ + randomUUID(): string; + CryptoKey: CryptoKeyConstructor; + } + // This constructor throws ILLEGAL_CONSTRUCTOR so it should not be newable. + interface CryptoKeyConstructor { + /** Illegal constructor */ + (_: { readonly _: unique symbol }): never; // Allows instanceof to work but not be callable by the user. + readonly length: 0; + readonly name: 'CryptoKey'; + readonly prototype: CryptoKey; + } + /** + * @since v15.0.0 + */ + interface CryptoKey { + /** + * An object detailing the algorithm for which the key can be used along with additional algorithm-specific parameters. + * @since v15.0.0 + */ + readonly algorithm: KeyAlgorithm; + /** + * When `true`, the {@link CryptoKey} can be extracted using either `subtleCrypto.exportKey()` or `subtleCrypto.wrapKey()`. + * @since v15.0.0 + */ + readonly extractable: boolean; + /** + * A string identifying whether the key is a symmetric (`'secret'`) or asymmetric (`'private'` or `'public'`) key. + * @since v15.0.0 + */ + readonly type: KeyType; + /** + * An array of strings identifying the operations for which the key may be used. + * + * The possible usages are: + * - `'encrypt'` - The key may be used to encrypt data. + * - `'decrypt'` - The key may be used to decrypt data. + * - `'sign'` - The key may be used to generate digital signatures. + * - `'verify'` - The key may be used to verify digital signatures. + * - `'deriveKey'` - The key may be used to derive a new key. + * - `'deriveBits'` - The key may be used to derive bits. + * - `'wrapKey'` - The key may be used to wrap another key. + * - `'unwrapKey'` - The key may be used to unwrap another key. + * + * Valid key usages depend on the key algorithm (identified by `cryptokey.algorithm.name`). + * @since v15.0.0 + */ + readonly usages: KeyUsage[]; + } + /** + * The `CryptoKeyPair` is a simple dictionary object with `publicKey` and `privateKey` properties, representing an asymmetric key pair. + * @since v15.0.0 + */ + interface CryptoKeyPair { + /** + * A {@link CryptoKey} whose type will be `'private'`. + * @since v15.0.0 + */ + privateKey: CryptoKey; + /** + * A {@link CryptoKey} whose type will be `'public'`. + * @since v15.0.0 + */ + publicKey: CryptoKey; + } + /** + * @since v15.0.0 + */ + interface SubtleCrypto { + /** + * Using the method and parameters specified in `algorithm` and the keying material provided by `key`, + * `subtle.decrypt()` attempts to decipher the provided `data`. If successful, + * the returned promise will be resolved with an `` containing the plaintext result. + * + * The algorithms currently supported include: + * + * - `'RSA-OAEP'` + * - `'AES-CTR'` + * - `'AES-CBC'` + * - `'AES-GCM'` + * @since v15.0.0 + */ + decrypt(algorithm: AlgorithmIdentifier | RsaOaepParams | AesCtrParams | AesCbcParams | AesGcmParams, key: CryptoKey, data: BufferSource): Promise; + /** + * Using the method and parameters specified in `algorithm` and the keying material provided by `baseKey`, + * `subtle.deriveBits()` attempts to generate `length` bits. + * The Node.js implementation requires that `length` is a multiple of `8`. + * If successful, the returned promise will be resolved with an `` containing the generated data. + * + * The algorithms currently supported include: + * + * - `'ECDH'` + * - `'X25519'` + * - `'X448'` + * - `'HKDF'` + * - `'PBKDF2'` + * @since v15.0.0 + */ + deriveBits(algorithm: AlgorithmIdentifier | EcdhKeyDeriveParams | HkdfParams | Pbkdf2Params, baseKey: CryptoKey, length: number): Promise; + /** + * Using the method and parameters specified in `algorithm`, and the keying material provided by `baseKey`, + * `subtle.deriveKey()` attempts to generate a new ` based on the method and parameters in `derivedKeyAlgorithm`. + * + * Calling `subtle.deriveKey()` is equivalent to calling `subtle.deriveBits()` to generate raw keying material, + * then passing the result into the `subtle.importKey()` method using the `deriveKeyAlgorithm`, `extractable`, and `keyUsages` parameters as input. + * + * The algorithms currently supported include: + * + * - `'ECDH'` + * - `'X25519'` + * - `'X448'` + * - `'HKDF'` + * - `'PBKDF2'` + * @param keyUsages See {@link https://nodejs.org/docs/latest/api/webcrypto.html#cryptokeyusages Key usages}. + * @since v15.0.0 + */ + deriveKey( + algorithm: AlgorithmIdentifier | EcdhKeyDeriveParams | HkdfParams | Pbkdf2Params, + baseKey: CryptoKey, + derivedKeyAlgorithm: AlgorithmIdentifier | AesDerivedKeyParams | HmacImportParams | HkdfParams | Pbkdf2Params, + extractable: boolean, + keyUsages: ReadonlyArray + ): Promise; + /** + * Using the method identified by `algorithm`, `subtle.digest()` attempts to generate a digest of `data`. + * If successful, the returned promise is resolved with an `` containing the computed digest. + * + * If `algorithm` is provided as a ``, it must be one of: + * + * - `'SHA-1'` + * - `'SHA-256'` + * - `'SHA-384'` + * - `'SHA-512'` + * + * If `algorithm` is provided as an ``, it must have a `name` property whose value is one of the above. + * @since v15.0.0 + */ + digest(algorithm: AlgorithmIdentifier, data: BufferSource): Promise; + /** + * Using the method and parameters specified by `algorithm` and the keying material provided by `key`, + * `subtle.encrypt()` attempts to encipher `data`. If successful, + * the returned promise is resolved with an `` containing the encrypted result. + * + * The algorithms currently supported include: + * + * - `'RSA-OAEP'` + * - `'AES-CTR'` + * - `'AES-CBC'` + * - `'AES-GCM'` + * @since v15.0.0 + */ + encrypt(algorithm: AlgorithmIdentifier | RsaOaepParams | AesCtrParams | AesCbcParams | AesGcmParams, key: CryptoKey, data: BufferSource): Promise; + /** + * Exports the given key into the specified format, if supported. + * + * If the `` is not extractable, the returned promise will reject. + * + * When `format` is either `'pkcs8'` or `'spki'` and the export is successful, + * the returned promise will be resolved with an `` containing the exported key data. + * + * When `format` is `'jwk'` and the export is successful, the returned promise will be resolved with a + * JavaScript object conforming to the {@link https://tools.ietf.org/html/rfc7517 JSON Web Key} specification. + * @param format Must be one of `'raw'`, `'pkcs8'`, `'spki'`, or `'jwk'`. + * @returns `` containing ``. + * @since v15.0.0 + */ + exportKey(format: 'jwk', key: CryptoKey): Promise; + exportKey(format: Exclude, key: CryptoKey): Promise; + /** + * Using the method and parameters provided in `algorithm`, + * `subtle.generateKey()` attempts to generate new keying material. + * Depending the method used, the method may generate either a single `` or a ``. + * + * The `` (public and private key) generating algorithms supported include: + * + * - `'RSASSA-PKCS1-v1_5'` + * - `'RSA-PSS'` + * - `'RSA-OAEP'` + * - `'ECDSA'` + * - `'Ed25519'` + * - `'Ed448'` + * - `'ECDH'` + * - `'X25519'` + * - `'X448'` + * The `` (secret key) generating algorithms supported include: + * + * - `'HMAC'` + * - `'AES-CTR'` + * - `'AES-CBC'` + * - `'AES-GCM'` + * - `'AES-KW'` + * @param keyUsages See {@link https://nodejs.org/docs/latest/api/webcrypto.html#cryptokeyusages Key usages}. + * @since v15.0.0 + */ + generateKey(algorithm: RsaHashedKeyGenParams | EcKeyGenParams, extractable: boolean, keyUsages: ReadonlyArray): Promise; + generateKey(algorithm: AesKeyGenParams | HmacKeyGenParams | Pbkdf2Params, extractable: boolean, keyUsages: ReadonlyArray): Promise; + generateKey(algorithm: AlgorithmIdentifier, extractable: boolean, keyUsages: KeyUsage[]): Promise; + /** + * The `subtle.importKey()` method attempts to interpret the provided `keyData` as the given `format` + * to create a `` instance using the provided `algorithm`, `extractable`, and `keyUsages` arguments. + * If the import is successful, the returned promise will be resolved with the created ``. + * + * If importing a `'PBKDF2'` key, `extractable` must be `false`. + * @param format Must be one of `'raw'`, `'pkcs8'`, `'spki'`, or `'jwk'`. + * @param keyUsages See {@link https://nodejs.org/docs/latest/api/webcrypto.html#cryptokeyusages Key usages}. + * @since v15.0.0 + */ + importKey( + format: 'jwk', + keyData: JsonWebKey, + algorithm: AlgorithmIdentifier | RsaHashedImportParams | EcKeyImportParams | HmacImportParams | AesKeyAlgorithm, + extractable: boolean, + keyUsages: ReadonlyArray + ): Promise; + importKey( + format: Exclude, + keyData: BufferSource, + algorithm: AlgorithmIdentifier | RsaHashedImportParams | EcKeyImportParams | HmacImportParams | AesKeyAlgorithm, + extractable: boolean, + keyUsages: KeyUsage[] + ): Promise; + /** + * Using the method and parameters given by `algorithm` and the keying material provided by `key`, + * `subtle.sign()` attempts to generate a cryptographic signature of `data`. If successful, + * the returned promise is resolved with an `` containing the generated signature. + * + * The algorithms currently supported include: + * + * - `'RSASSA-PKCS1-v1_5'` + * - `'RSA-PSS'` + * - `'ECDSA'` + * - `'Ed25519'` + * - `'Ed448'` + * - `'HMAC'` + * @since v15.0.0 + */ + sign(algorithm: AlgorithmIdentifier | RsaPssParams | EcdsaParams | Ed448Params, key: CryptoKey, data: BufferSource): Promise; + /** + * In cryptography, "wrapping a key" refers to exporting and then encrypting the keying material. + * The `subtle.unwrapKey()` method attempts to decrypt a wrapped key and create a `` instance. + * It is equivalent to calling `subtle.decrypt()` first on the encrypted key data (using the `wrappedKey`, `unwrapAlgo`, and `unwrappingKey` arguments as input) + * then passing the results in to the `subtle.importKey()` method using the `unwrappedKeyAlgo`, `extractable`, and `keyUsages` arguments as inputs. + * If successful, the returned promise is resolved with a `` object. + * + * The wrapping algorithms currently supported include: + * + * - `'RSA-OAEP'` + * - `'AES-CTR'` + * - `'AES-CBC'` + * - `'AES-GCM'` + * - `'AES-KW'` + * + * The unwrapped key algorithms supported include: + * + * - `'RSASSA-PKCS1-v1_5'` + * - `'RSA-PSS'` + * - `'RSA-OAEP'` + * - `'ECDSA'` + * - `'Ed25519'` + * - `'Ed448'` + * - `'ECDH'` + * - `'X25519'` + * - `'X448'` + * - `'HMAC'` + * - `'AES-CTR'` + * - `'AES-CBC'` + * - `'AES-GCM'` + * - `'AES-KW'` + * @param format Must be one of `'raw'`, `'pkcs8'`, `'spki'`, or `'jwk'`. + * @param keyUsages See {@link https://nodejs.org/docs/latest/api/webcrypto.html#cryptokeyusages Key usages}. + * @since v15.0.0 + */ + unwrapKey( + format: KeyFormat, + wrappedKey: BufferSource, + unwrappingKey: CryptoKey, + unwrapAlgorithm: AlgorithmIdentifier | RsaOaepParams | AesCtrParams | AesCbcParams | AesGcmParams, + unwrappedKeyAlgorithm: AlgorithmIdentifier | RsaHashedImportParams | EcKeyImportParams | HmacImportParams | AesKeyAlgorithm, + extractable: boolean, + keyUsages: KeyUsage[] + ): Promise; + /** + * Using the method and parameters given in `algorithm` and the keying material provided by `key`, + * `subtle.verify()` attempts to verify that `signature` is a valid cryptographic signature of `data`. + * The returned promise is resolved with either `true` or `false`. + * + * The algorithms currently supported include: + * + * - `'RSASSA-PKCS1-v1_5'` + * - `'RSA-PSS'` + * - `'ECDSA'` + * - `'Ed25519'` + * - `'Ed448'` + * - `'HMAC'` + * @since v15.0.0 + */ + verify(algorithm: AlgorithmIdentifier | RsaPssParams | EcdsaParams | Ed448Params, key: CryptoKey, signature: BufferSource, data: BufferSource): Promise; + /** + * In cryptography, "wrapping a key" refers to exporting and then encrypting the keying material. + * The `subtle.wrapKey()` method exports the keying material into the format identified by `format`, + * then encrypts it using the method and parameters specified by `wrapAlgo` and the keying material provided by `wrappingKey`. + * It is the equivalent to calling `subtle.exportKey()` using `format` and `key` as the arguments, + * then passing the result to the `subtle.encrypt()` method using `wrappingKey` and `wrapAlgo` as inputs. + * If successful, the returned promise will be resolved with an `` containing the encrypted key data. + * + * The wrapping algorithms currently supported include: + * + * - `'RSA-OAEP'` + * - `'AES-CTR'` + * - `'AES-CBC'` + * - `'AES-GCM'` + * - `'AES-KW'` + * @param format Must be one of `'raw'`, `'pkcs8'`, `'spki'`, or `'jwk'`. + * @since v15.0.0 + */ + wrapKey(format: KeyFormat, key: CryptoKey, wrappingKey: CryptoKey, wrapAlgorithm: AlgorithmIdentifier | RsaOaepParams | AesCtrParams | AesCbcParams | AesGcmParams): Promise; + } + } +} +declare module 'node:crypto' { + export * from 'crypto'; +} diff --git a/node_modules/@types/node/ts4.8/dgram.d.ts b/node_modules/@types/node/ts4.8/dgram.d.ts new file mode 100644 index 000000000..247328d28 --- /dev/null +++ b/node_modules/@types/node/ts4.8/dgram.d.ts @@ -0,0 +1,545 @@ +/** + * The `dgram` module provides an implementation of UDP datagram sockets. + * + * ```js + * import dgram from 'dgram'; + * + * const server = dgram.createSocket('udp4'); + * + * server.on('error', (err) => { + * console.log(`server error:\n${err.stack}`); + * server.close(); + * }); + * + * server.on('message', (msg, rinfo) => { + * console.log(`server got: ${msg} from ${rinfo.address}:${rinfo.port}`); + * }); + * + * server.on('listening', () => { + * const address = server.address(); + * console.log(`server listening ${address.address}:${address.port}`); + * }); + * + * server.bind(41234); + * // Prints: server listening 0.0.0.0:41234 + * ``` + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/dgram.js) + */ +declare module 'dgram' { + import { AddressInfo } from 'node:net'; + import * as dns from 'node:dns'; + import { EventEmitter, Abortable } from 'node:events'; + interface RemoteInfo { + address: string; + family: 'IPv4' | 'IPv6'; + port: number; + size: number; + } + interface BindOptions { + port?: number | undefined; + address?: string | undefined; + exclusive?: boolean | undefined; + fd?: number | undefined; + } + type SocketType = 'udp4' | 'udp6'; + interface SocketOptions extends Abortable { + type: SocketType; + reuseAddr?: boolean | undefined; + /** + * @default false + */ + ipv6Only?: boolean | undefined; + recvBufferSize?: number | undefined; + sendBufferSize?: number | undefined; + lookup?: ((hostname: string, options: dns.LookupOneOptions, callback: (err: NodeJS.ErrnoException | null, address: string, family: number) => void) => void) | undefined; + } + /** + * Creates a `dgram.Socket` object. Once the socket is created, calling `socket.bind()` will instruct the socket to begin listening for datagram + * messages. When `address` and `port` are not passed to `socket.bind()` the + * method will bind the socket to the "all interfaces" address on a random port + * (it does the right thing for both `udp4` and `udp6` sockets). The bound address + * and port can be retrieved using `socket.address().address` and `socket.address().port`. + * + * If the `signal` option is enabled, calling `.abort()` on the corresponding`AbortController` is similar to calling `.close()` on the socket: + * + * ```js + * const controller = new AbortController(); + * const { signal } = controller; + * const server = dgram.createSocket({ type: 'udp4', signal }); + * server.on('message', (msg, rinfo) => { + * console.log(`server got: ${msg} from ${rinfo.address}:${rinfo.port}`); + * }); + * // Later, when you want to close the server. + * controller.abort(); + * ``` + * @since v0.11.13 + * @param options Available options are: + * @param callback Attached as a listener for `'message'` events. Optional. + */ + function createSocket(type: SocketType, callback?: (msg: Buffer, rinfo: RemoteInfo) => void): Socket; + function createSocket(options: SocketOptions, callback?: (msg: Buffer, rinfo: RemoteInfo) => void): Socket; + /** + * Encapsulates the datagram functionality. + * + * New instances of `dgram.Socket` are created using {@link createSocket}. + * The `new` keyword is not to be used to create `dgram.Socket` instances. + * @since v0.1.99 + */ + class Socket extends EventEmitter { + /** + * Tells the kernel to join a multicast group at the given `multicastAddress` and`multicastInterface` using the `IP_ADD_MEMBERSHIP` socket option. If the`multicastInterface` argument is not + * specified, the operating system will choose + * one interface and will add membership to it. To add membership to every + * available interface, call `addMembership` multiple times, once per interface. + * + * When called on an unbound socket, this method will implicitly bind to a random + * port, listening on all interfaces. + * + * When sharing a UDP socket across multiple `cluster` workers, the`socket.addMembership()` function must be called only once or an`EADDRINUSE` error will occur: + * + * ```js + * import cluster from 'cluster'; + * import dgram from 'dgram'; + * + * if (cluster.isPrimary) { + * cluster.fork(); // Works ok. + * cluster.fork(); // Fails with EADDRINUSE. + * } else { + * const s = dgram.createSocket('udp4'); + * s.bind(1234, () => { + * s.addMembership('224.0.0.114'); + * }); + * } + * ``` + * @since v0.6.9 + */ + addMembership(multicastAddress: string, multicastInterface?: string): void; + /** + * Returns an object containing the address information for a socket. + * For UDP sockets, this object will contain `address`, `family` and `port`properties. + * + * This method throws `EBADF` if called on an unbound socket. + * @since v0.1.99 + */ + address(): AddressInfo; + /** + * For UDP sockets, causes the `dgram.Socket` to listen for datagram + * messages on a named `port` and optional `address`. If `port` is not + * specified or is `0`, the operating system will attempt to bind to a + * random port. If `address` is not specified, the operating system will + * attempt to listen on all addresses. Once binding is complete, a`'listening'` event is emitted and the optional `callback` function is + * called. + * + * Specifying both a `'listening'` event listener and passing a`callback` to the `socket.bind()` method is not harmful but not very + * useful. + * + * A bound datagram socket keeps the Node.js process running to receive + * datagram messages. + * + * If binding fails, an `'error'` event is generated. In rare case (e.g. + * attempting to bind with a closed socket), an `Error` may be thrown. + * + * Example of a UDP server listening on port 41234: + * + * ```js + * import dgram from 'dgram'; + * + * const server = dgram.createSocket('udp4'); + * + * server.on('error', (err) => { + * console.log(`server error:\n${err.stack}`); + * server.close(); + * }); + * + * server.on('message', (msg, rinfo) => { + * console.log(`server got: ${msg} from ${rinfo.address}:${rinfo.port}`); + * }); + * + * server.on('listening', () => { + * const address = server.address(); + * console.log(`server listening ${address.address}:${address.port}`); + * }); + * + * server.bind(41234); + * // Prints: server listening 0.0.0.0:41234 + * ``` + * @since v0.1.99 + * @param callback with no parameters. Called when binding is complete. + */ + bind(port?: number, address?: string, callback?: () => void): this; + bind(port?: number, callback?: () => void): this; + bind(callback?: () => void): this; + bind(options: BindOptions, callback?: () => void): this; + /** + * Close the underlying socket and stop listening for data on it. If a callback is + * provided, it is added as a listener for the `'close'` event. + * @since v0.1.99 + * @param callback Called when the socket has been closed. + */ + close(callback?: () => void): this; + /** + * Associates the `dgram.Socket` to a remote address and port. Every + * message sent by this handle is automatically sent to that destination. Also, + * the socket will only receive messages from that remote peer. + * Trying to call `connect()` on an already connected socket will result + * in an `ERR_SOCKET_DGRAM_IS_CONNECTED` exception. If `address` is not + * provided, `'127.0.0.1'` (for `udp4` sockets) or `'::1'` (for `udp6` sockets) + * will be used by default. Once the connection is complete, a `'connect'` event + * is emitted and the optional `callback` function is called. In case of failure, + * the `callback` is called or, failing this, an `'error'` event is emitted. + * @since v12.0.0 + * @param callback Called when the connection is completed or on error. + */ + connect(port: number, address?: string, callback?: () => void): void; + connect(port: number, callback: () => void): void; + /** + * A synchronous function that disassociates a connected `dgram.Socket` from + * its remote address. Trying to call `disconnect()` on an unbound or already + * disconnected socket will result in an `ERR_SOCKET_DGRAM_NOT_CONNECTED` exception. + * @since v12.0.0 + */ + disconnect(): void; + /** + * Instructs the kernel to leave a multicast group at `multicastAddress` using the`IP_DROP_MEMBERSHIP` socket option. This method is automatically called by the + * kernel when the socket is closed or the process terminates, so most apps will + * never have reason to call this. + * + * If `multicastInterface` is not specified, the operating system will attempt to + * drop membership on all valid interfaces. + * @since v0.6.9 + */ + dropMembership(multicastAddress: string, multicastInterface?: string): void; + /** + * This method throws `ERR_SOCKET_BUFFER_SIZE` if called on an unbound socket. + * @since v8.7.0 + * @return the `SO_RCVBUF` socket receive buffer size in bytes. + */ + getRecvBufferSize(): number; + /** + * This method throws `ERR_SOCKET_BUFFER_SIZE` if called on an unbound socket. + * @since v8.7.0 + * @return the `SO_SNDBUF` socket send buffer size in bytes. + */ + getSendBufferSize(): number; + /** + * By default, binding a socket will cause it to block the Node.js process from + * exiting as long as the socket is open. The `socket.unref()` method can be used + * to exclude the socket from the reference counting that keeps the Node.js + * process active. The `socket.ref()` method adds the socket back to the reference + * counting and restores the default behavior. + * + * Calling `socket.ref()` multiples times will have no additional effect. + * + * The `socket.ref()` method returns a reference to the socket so calls can be + * chained. + * @since v0.9.1 + */ + ref(): this; + /** + * Returns an object containing the `address`, `family`, and `port` of the remote + * endpoint. This method throws an `ERR_SOCKET_DGRAM_NOT_CONNECTED` exception + * if the socket is not connected. + * @since v12.0.0 + */ + remoteAddress(): AddressInfo; + /** + * Broadcasts a datagram on the socket. + * For connectionless sockets, the destination `port` and `address` must be + * specified. Connected sockets, on the other hand, will use their associated + * remote endpoint, so the `port` and `address` arguments must not be set. + * + * The `msg` argument contains the message to be sent. + * Depending on its type, different behavior can apply. If `msg` is a `Buffer`, + * any `TypedArray` or a `DataView`, + * the `offset` and `length` specify the offset within the `Buffer` where the + * message begins and the number of bytes in the message, respectively. + * If `msg` is a `String`, then it is automatically converted to a `Buffer`with `'utf8'` encoding. With messages that + * contain multi-byte characters, `offset` and `length` will be calculated with + * respect to `byte length` and not the character position. + * If `msg` is an array, `offset` and `length` must not be specified. + * + * The `address` argument is a string. If the value of `address` is a host name, + * DNS will be used to resolve the address of the host. If `address` is not + * provided or otherwise nullish, `'127.0.0.1'` (for `udp4` sockets) or `'::1'`(for `udp6` sockets) will be used by default. + * + * If the socket has not been previously bound with a call to `bind`, the socket + * is assigned a random port number and is bound to the "all interfaces" address + * (`'0.0.0.0'` for `udp4` sockets, `'::0'` for `udp6` sockets.) + * + * An optional `callback` function may be specified to as a way of reporting + * DNS errors or for determining when it is safe to reuse the `buf` object. + * DNS lookups delay the time to send for at least one tick of the + * Node.js event loop. + * + * The only way to know for sure that the datagram has been sent is by using a`callback`. If an error occurs and a `callback` is given, the error will be + * passed as the first argument to the `callback`. If a `callback` is not given, + * the error is emitted as an `'error'` event on the `socket` object. + * + * Offset and length are optional but both _must_ be set if either are used. + * They are supported only when the first argument is a `Buffer`, a `TypedArray`, + * or a `DataView`. + * + * This method throws `ERR_SOCKET_BAD_PORT` if called on an unbound socket. + * + * Example of sending a UDP packet to a port on `localhost`; + * + * ```js + * import dgram from 'dgram'; + * import { Buffer } from 'buffer'; + * + * const message = Buffer.from('Some bytes'); + * const client = dgram.createSocket('udp4'); + * client.send(message, 41234, 'localhost', (err) => { + * client.close(); + * }); + * ``` + * + * Example of sending a UDP packet composed of multiple buffers to a port on`127.0.0.1`; + * + * ```js + * import dgram from 'dgram'; + * import { Buffer } from 'buffer'; + * + * const buf1 = Buffer.from('Some '); + * const buf2 = Buffer.from('bytes'); + * const client = dgram.createSocket('udp4'); + * client.send([buf1, buf2], 41234, (err) => { + * client.close(); + * }); + * ``` + * + * Sending multiple buffers might be faster or slower depending on the + * application and operating system. Run benchmarks to + * determine the optimal strategy on a case-by-case basis. Generally speaking, + * however, sending multiple buffers is faster. + * + * Example of sending a UDP packet using a socket connected to a port on`localhost`: + * + * ```js + * import dgram from 'dgram'; + * import { Buffer } from 'buffer'; + * + * const message = Buffer.from('Some bytes'); + * const client = dgram.createSocket('udp4'); + * client.connect(41234, 'localhost', (err) => { + * client.send(message, (err) => { + * client.close(); + * }); + * }); + * ``` + * @since v0.1.99 + * @param msg Message to be sent. + * @param offset Offset in the buffer where the message starts. + * @param length Number of bytes in the message. + * @param port Destination port. + * @param address Destination host name or IP address. + * @param callback Called when the message has been sent. + */ + send(msg: string | Uint8Array | ReadonlyArray, port?: number, address?: string, callback?: (error: Error | null, bytes: number) => void): void; + send(msg: string | Uint8Array | ReadonlyArray, port?: number, callback?: (error: Error | null, bytes: number) => void): void; + send(msg: string | Uint8Array | ReadonlyArray, callback?: (error: Error | null, bytes: number) => void): void; + send(msg: string | Uint8Array, offset: number, length: number, port?: number, address?: string, callback?: (error: Error | null, bytes: number) => void): void; + send(msg: string | Uint8Array, offset: number, length: number, port?: number, callback?: (error: Error | null, bytes: number) => void): void; + send(msg: string | Uint8Array, offset: number, length: number, callback?: (error: Error | null, bytes: number) => void): void; + /** + * Sets or clears the `SO_BROADCAST` socket option. When set to `true`, UDP + * packets may be sent to a local interface's broadcast address. + * + * This method throws `EBADF` if called on an unbound socket. + * @since v0.6.9 + */ + setBroadcast(flag: boolean): void; + /** + * _All references to scope in this section are referring to [IPv6 Zone Indices](https://en.wikipedia.org/wiki/IPv6_address#Scoped_literal_IPv6_addresses), which are defined by [RFC + * 4007](https://tools.ietf.org/html/rfc4007). In string form, an IP_ + * _with a scope index is written as `'IP%scope'` where scope is an interface name_ + * _or interface number._ + * + * Sets the default outgoing multicast interface of the socket to a chosen + * interface or back to system interface selection. The `multicastInterface` must + * be a valid string representation of an IP from the socket's family. + * + * For IPv4 sockets, this should be the IP configured for the desired physical + * interface. All packets sent to multicast on the socket will be sent on the + * interface determined by the most recent successful use of this call. + * + * For IPv6 sockets, `multicastInterface` should include a scope to indicate the + * interface as in the examples that follow. In IPv6, individual `send` calls can + * also use explicit scope in addresses, so only packets sent to a multicast + * address without specifying an explicit scope are affected by the most recent + * successful use of this call. + * + * This method throws `EBADF` if called on an unbound socket. + * + * #### Example: IPv6 outgoing multicast interface + * + * On most systems, where scope format uses the interface name: + * + * ```js + * const socket = dgram.createSocket('udp6'); + * + * socket.bind(1234, () => { + * socket.setMulticastInterface('::%eth1'); + * }); + * ``` + * + * On Windows, where scope format uses an interface number: + * + * ```js + * const socket = dgram.createSocket('udp6'); + * + * socket.bind(1234, () => { + * socket.setMulticastInterface('::%2'); + * }); + * ``` + * + * #### Example: IPv4 outgoing multicast interface + * + * All systems use an IP of the host on the desired physical interface: + * + * ```js + * const socket = dgram.createSocket('udp4'); + * + * socket.bind(1234, () => { + * socket.setMulticastInterface('10.0.0.2'); + * }); + * ``` + * @since v8.6.0 + */ + setMulticastInterface(multicastInterface: string): void; + /** + * Sets or clears the `IP_MULTICAST_LOOP` socket option. When set to `true`, + * multicast packets will also be received on the local interface. + * + * This method throws `EBADF` if called on an unbound socket. + * @since v0.3.8 + */ + setMulticastLoopback(flag: boolean): boolean; + /** + * Sets the `IP_MULTICAST_TTL` socket option. While TTL generally stands for + * "Time to Live", in this context it specifies the number of IP hops that a + * packet is allowed to travel through, specifically for multicast traffic. Each + * router or gateway that forwards a packet decrements the TTL. If the TTL is + * decremented to 0 by a router, it will not be forwarded. + * + * The `ttl` argument may be between 0 and 255\. The default on most systems is `1`. + * + * This method throws `EBADF` if called on an unbound socket. + * @since v0.3.8 + */ + setMulticastTTL(ttl: number): number; + /** + * Sets the `SO_RCVBUF` socket option. Sets the maximum socket receive buffer + * in bytes. + * + * This method throws `ERR_SOCKET_BUFFER_SIZE` if called on an unbound socket. + * @since v8.7.0 + */ + setRecvBufferSize(size: number): void; + /** + * Sets the `SO_SNDBUF` socket option. Sets the maximum socket send buffer + * in bytes. + * + * This method throws `ERR_SOCKET_BUFFER_SIZE` if called on an unbound socket. + * @since v8.7.0 + */ + setSendBufferSize(size: number): void; + /** + * Sets the `IP_TTL` socket option. While TTL generally stands for "Time to Live", + * in this context it specifies the number of IP hops that a packet is allowed to + * travel through. Each router or gateway that forwards a packet decrements the + * TTL. If the TTL is decremented to 0 by a router, it will not be forwarded. + * Changing TTL values is typically done for network probes or when multicasting. + * + * The `ttl` argument may be between 1 and 255\. The default on most systems + * is 64. + * + * This method throws `EBADF` if called on an unbound socket. + * @since v0.1.101 + */ + setTTL(ttl: number): number; + /** + * By default, binding a socket will cause it to block the Node.js process from + * exiting as long as the socket is open. The `socket.unref()` method can be used + * to exclude the socket from the reference counting that keeps the Node.js + * process active, allowing the process to exit even if the socket is still + * listening. + * + * Calling `socket.unref()` multiple times will have no addition effect. + * + * The `socket.unref()` method returns a reference to the socket so calls can be + * chained. + * @since v0.9.1 + */ + unref(): this; + /** + * Tells the kernel to join a source-specific multicast channel at the given`sourceAddress` and `groupAddress`, using the `multicastInterface` with the`IP_ADD_SOURCE_MEMBERSHIP` socket + * option. If the `multicastInterface` argument + * is not specified, the operating system will choose one interface and will add + * membership to it. To add membership to every available interface, call`socket.addSourceSpecificMembership()` multiple times, once per interface. + * + * When called on an unbound socket, this method will implicitly bind to a random + * port, listening on all interfaces. + * @since v13.1.0, v12.16.0 + */ + addSourceSpecificMembership(sourceAddress: string, groupAddress: string, multicastInterface?: string): void; + /** + * Instructs the kernel to leave a source-specific multicast channel at the given`sourceAddress` and `groupAddress` using the `IP_DROP_SOURCE_MEMBERSHIP`socket option. This method is + * automatically called by the kernel when the + * socket is closed or the process terminates, so most apps will never have + * reason to call this. + * + * If `multicastInterface` is not specified, the operating system will attempt to + * drop membership on all valid interfaces. + * @since v13.1.0, v12.16.0 + */ + dropSourceSpecificMembership(sourceAddress: string, groupAddress: string, multicastInterface?: string): void; + /** + * events.EventEmitter + * 1. close + * 2. connect + * 3. error + * 4. listening + * 5. message + */ + addListener(event: string, listener: (...args: any[]) => void): this; + addListener(event: 'close', listener: () => void): this; + addListener(event: 'connect', listener: () => void): this; + addListener(event: 'error', listener: (err: Error) => void): this; + addListener(event: 'listening', listener: () => void): this; + addListener(event: 'message', listener: (msg: Buffer, rinfo: RemoteInfo) => void): this; + emit(event: string | symbol, ...args: any[]): boolean; + emit(event: 'close'): boolean; + emit(event: 'connect'): boolean; + emit(event: 'error', err: Error): boolean; + emit(event: 'listening'): boolean; + emit(event: 'message', msg: Buffer, rinfo: RemoteInfo): boolean; + on(event: string, listener: (...args: any[]) => void): this; + on(event: 'close', listener: () => void): this; + on(event: 'connect', listener: () => void): this; + on(event: 'error', listener: (err: Error) => void): this; + on(event: 'listening', listener: () => void): this; + on(event: 'message', listener: (msg: Buffer, rinfo: RemoteInfo) => void): this; + once(event: string, listener: (...args: any[]) => void): this; + once(event: 'close', listener: () => void): this; + once(event: 'connect', listener: () => void): this; + once(event: 'error', listener: (err: Error) => void): this; + once(event: 'listening', listener: () => void): this; + once(event: 'message', listener: (msg: Buffer, rinfo: RemoteInfo) => void): this; + prependListener(event: string, listener: (...args: any[]) => void): this; + prependListener(event: 'close', listener: () => void): this; + prependListener(event: 'connect', listener: () => void): this; + prependListener(event: 'error', listener: (err: Error) => void): this; + prependListener(event: 'listening', listener: () => void): this; + prependListener(event: 'message', listener: (msg: Buffer, rinfo: RemoteInfo) => void): this; + prependOnceListener(event: string, listener: (...args: any[]) => void): this; + prependOnceListener(event: 'close', listener: () => void): this; + prependOnceListener(event: 'connect', listener: () => void): this; + prependOnceListener(event: 'error', listener: (err: Error) => void): this; + prependOnceListener(event: 'listening', listener: () => void): this; + prependOnceListener(event: 'message', listener: (msg: Buffer, rinfo: RemoteInfo) => void): this; + } +} +declare module 'node:dgram' { + export * from 'dgram'; +} diff --git a/node_modules/@types/node/ts4.8/diagnostics_channel.d.ts b/node_modules/@types/node/ts4.8/diagnostics_channel.d.ts new file mode 100644 index 000000000..a87ba8ca9 --- /dev/null +++ b/node_modules/@types/node/ts4.8/diagnostics_channel.d.ts @@ -0,0 +1,153 @@ +/** + * The `diagnostics_channel` module provides an API to create named channels + * to report arbitrary message data for diagnostics purposes. + * + * It can be accessed using: + * + * ```js + * import diagnostics_channel from 'diagnostics_channel'; + * ``` + * + * It is intended that a module writer wanting to report diagnostics messages + * will create one or many top-level channels to report messages through. + * Channels may also be acquired at runtime but it is not encouraged + * due to the additional overhead of doing so. Channels may be exported for + * convenience, but as long as the name is known it can be acquired anywhere. + * + * If you intend for your module to produce diagnostics data for others to + * consume it is recommended that you include documentation of what named + * channels are used along with the shape of the message data. Channel names + * should generally include the module name to avoid collisions with data from + * other modules. + * @experimental + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/diagnostics_channel.js) + */ +declare module 'diagnostics_channel' { + /** + * Check if there are active subscribers to the named channel. This is helpful if + * the message you want to send might be expensive to prepare. + * + * This API is optional but helpful when trying to publish messages from very + * performance-sensitive code. + * + * ```js + * import diagnostics_channel from 'diagnostics_channel'; + * + * if (diagnostics_channel.hasSubscribers('my-channel')) { + * // There are subscribers, prepare and publish message + * } + * ``` + * @since v15.1.0, v14.17.0 + * @param name The channel name + * @return If there are active subscribers + */ + function hasSubscribers(name: string): boolean; + /** + * This is the primary entry-point for anyone wanting to interact with a named + * channel. It produces a channel object which is optimized to reduce overhead at + * publish time as much as possible. + * + * ```js + * import diagnostics_channel from 'diagnostics_channel'; + * + * const channel = diagnostics_channel.channel('my-channel'); + * ``` + * @since v15.1.0, v14.17.0 + * @param name The channel name + * @return The named channel object + */ + function channel(name: string): Channel; + type ChannelListener = (message: unknown, name: string) => void; + /** + * The class `Channel` represents an individual named channel within the data + * pipeline. It is use to track subscribers and to publish messages when there + * are subscribers present. It exists as a separate object to avoid channel + * lookups at publish time, enabling very fast publish speeds and allowing + * for heavy use while incurring very minimal cost. Channels are created with {@link channel}, constructing a channel directly + * with `new Channel(name)` is not supported. + * @since v15.1.0, v14.17.0 + */ + class Channel { + readonly name: string; + /** + * Check if there are active subscribers to this channel. This is helpful if + * the message you want to send might be expensive to prepare. + * + * This API is optional but helpful when trying to publish messages from very + * performance-sensitive code. + * + * ```js + * import diagnostics_channel from 'diagnostics_channel'; + * + * const channel = diagnostics_channel.channel('my-channel'); + * + * if (channel.hasSubscribers) { + * // There are subscribers, prepare and publish message + * } + * ``` + * @since v15.1.0, v14.17.0 + */ + readonly hasSubscribers: boolean; + private constructor(name: string); + /** + * Publish a message to any subscribers to the channel. This will + * trigger message handlers synchronously so they will execute within + * the same context. + * + * ```js + * import diagnostics_channel from 'diagnostics_channel'; + * + * const channel = diagnostics_channel.channel('my-channel'); + * + * channel.publish({ + * some: 'message' + * }); + * ``` + * @since v15.1.0, v14.17.0 + * @param message The message to send to the channel subscribers + */ + publish(message: unknown): void; + /** + * Register a message handler to subscribe to this channel. This message handler + * will be run synchronously whenever a message is published to the channel. Any + * errors thrown in the message handler will trigger an `'uncaughtException'`. + * + * ```js + * import diagnostics_channel from 'diagnostics_channel'; + * + * const channel = diagnostics_channel.channel('my-channel'); + * + * channel.subscribe((message, name) => { + * // Received data + * }); + * ``` + * @since v15.1.0, v14.17.0 + * @param onMessage The handler to receive channel messages + */ + subscribe(onMessage: ChannelListener): void; + /** + * Remove a message handler previously registered to this channel with `channel.subscribe(onMessage)`. + * + * ```js + * import diagnostics_channel from 'diagnostics_channel'; + * + * const channel = diagnostics_channel.channel('my-channel'); + * + * function onMessage(message, name) { + * // Received data + * } + * + * channel.subscribe(onMessage); + * + * channel.unsubscribe(onMessage); + * ``` + * @since v15.1.0, v14.17.0 + * @param onMessage The previous subscribed handler to remove + * @return `true` if the handler was found, `false` otherwise. + */ + unsubscribe(onMessage: ChannelListener): void; + } +} +declare module 'node:diagnostics_channel' { + export * from 'diagnostics_channel'; +} diff --git a/node_modules/@types/node/ts4.8/dns.d.ts b/node_modules/@types/node/ts4.8/dns.d.ts new file mode 100644 index 000000000..305367b81 --- /dev/null +++ b/node_modules/@types/node/ts4.8/dns.d.ts @@ -0,0 +1,659 @@ +/** + * The `dns` module enables name resolution. For example, use it to look up IP + * addresses of host names. + * + * Although named for the [Domain Name System (DNS)](https://en.wikipedia.org/wiki/Domain_Name_System), it does not always use the + * DNS protocol for lookups. {@link lookup} uses the operating system + * facilities to perform name resolution. It may not need to perform any network + * communication. To perform name resolution the way other applications on the same + * system do, use {@link lookup}. + * + * ```js + * const dns = require('dns'); + * + * dns.lookup('example.org', (err, address, family) => { + * console.log('address: %j family: IPv%s', address, family); + * }); + * // address: "93.184.216.34" family: IPv4 + * ``` + * + * All other functions in the `dns` module connect to an actual DNS server to + * perform name resolution. They will always use the network to perform DNS + * queries. These functions do not use the same set of configuration files used by {@link lookup} (e.g. `/etc/hosts`). Use these functions to always perform + * DNS queries, bypassing other name-resolution facilities. + * + * ```js + * const dns = require('dns'); + * + * dns.resolve4('archive.org', (err, addresses) => { + * if (err) throw err; + * + * console.log(`addresses: ${JSON.stringify(addresses)}`); + * + * addresses.forEach((a) => { + * dns.reverse(a, (err, hostnames) => { + * if (err) { + * throw err; + * } + * console.log(`reverse for ${a}: ${JSON.stringify(hostnames)}`); + * }); + * }); + * }); + * ``` + * + * See the `Implementation considerations section` for more information. + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/dns.js) + */ +declare module 'dns' { + import * as dnsPromises from 'node:dns/promises'; + // Supported getaddrinfo flags. + export const ADDRCONFIG: number; + export const V4MAPPED: number; + /** + * If `dns.V4MAPPED` is specified, return resolved IPv6 addresses as + * well as IPv4 mapped IPv6 addresses. + */ + export const ALL: number; + export interface LookupOptions { + family?: number | undefined; + hints?: number | undefined; + all?: boolean | undefined; + /** + * @default true + */ + verbatim?: boolean | undefined; + } + export interface LookupOneOptions extends LookupOptions { + all?: false | undefined; + } + export interface LookupAllOptions extends LookupOptions { + all: true; + } + export interface LookupAddress { + address: string; + family: number; + } + /** + * Resolves a host name (e.g. `'nodejs.org'`) into the first found A (IPv4) or + * AAAA (IPv6) record. All `option` properties are optional. If `options` is an + * integer, then it must be `4` or `6` – if `options` is not provided, then IPv4 + * and IPv6 addresses are both returned if found. + * + * With the `all` option set to `true`, the arguments for `callback` change to`(err, addresses)`, with `addresses` being an array of objects with the + * properties `address` and `family`. + * + * On error, `err` is an `Error` object, where `err.code` is the error code. + * Keep in mind that `err.code` will be set to `'ENOTFOUND'` not only when + * the host name does not exist but also when the lookup fails in other ways + * such as no available file descriptors. + * + * `dns.lookup()` does not necessarily have anything to do with the DNS protocol. + * The implementation uses an operating system facility that can associate names + * with addresses, and vice versa. This implementation can have subtle but + * important consequences on the behavior of any Node.js program. Please take some + * time to consult the `Implementation considerations section` before using`dns.lookup()`. + * + * Example usage: + * + * ```js + * const dns = require('dns'); + * const options = { + * family: 6, + * hints: dns.ADDRCONFIG | dns.V4MAPPED, + * }; + * dns.lookup('example.com', options, (err, address, family) => + * console.log('address: %j family: IPv%s', address, family)); + * // address: "2606:2800:220:1:248:1893:25c8:1946" family: IPv6 + * + * // When options.all is true, the result will be an Array. + * options.all = true; + * dns.lookup('example.com', options, (err, addresses) => + * console.log('addresses: %j', addresses)); + * // addresses: [{"address":"2606:2800:220:1:248:1893:25c8:1946","family":6}] + * ``` + * + * If this method is invoked as its `util.promisify()` ed version, and `all`is not set to `true`, it returns a `Promise` for an `Object` with `address` and`family` properties. + * @since v0.1.90 + */ + export function lookup(hostname: string, family: number, callback: (err: NodeJS.ErrnoException | null, address: string, family: number) => void): void; + export function lookup(hostname: string, options: LookupOneOptions, callback: (err: NodeJS.ErrnoException | null, address: string, family: number) => void): void; + export function lookup(hostname: string, options: LookupAllOptions, callback: (err: NodeJS.ErrnoException | null, addresses: LookupAddress[]) => void): void; + export function lookup(hostname: string, options: LookupOptions, callback: (err: NodeJS.ErrnoException | null, address: string | LookupAddress[], family: number) => void): void; + export function lookup(hostname: string, callback: (err: NodeJS.ErrnoException | null, address: string, family: number) => void): void; + export namespace lookup { + function __promisify__(hostname: string, options: LookupAllOptions): Promise; + function __promisify__(hostname: string, options?: LookupOneOptions | number): Promise; + function __promisify__(hostname: string, options: LookupOptions): Promise; + } + /** + * Resolves the given `address` and `port` into a host name and service using + * the operating system's underlying `getnameinfo` implementation. + * + * If `address` is not a valid IP address, a `TypeError` will be thrown. + * The `port` will be coerced to a number. If it is not a legal port, a `TypeError`will be thrown. + * + * On an error, `err` is an `Error` object, where `err.code` is the error code. + * + * ```js + * const dns = require('dns'); + * dns.lookupService('127.0.0.1', 22, (err, hostname, service) => { + * console.log(hostname, service); + * // Prints: localhost ssh + * }); + * ``` + * + * If this method is invoked as its `util.promisify()` ed version, it returns a`Promise` for an `Object` with `hostname` and `service` properties. + * @since v0.11.14 + */ + export function lookupService(address: string, port: number, callback: (err: NodeJS.ErrnoException | null, hostname: string, service: string) => void): void; + export namespace lookupService { + function __promisify__( + address: string, + port: number + ): Promise<{ + hostname: string; + service: string; + }>; + } + export interface ResolveOptions { + ttl: boolean; + } + export interface ResolveWithTtlOptions extends ResolveOptions { + ttl: true; + } + export interface RecordWithTtl { + address: string; + ttl: number; + } + /** @deprecated Use `AnyARecord` or `AnyAaaaRecord` instead. */ + export type AnyRecordWithTtl = AnyARecord | AnyAaaaRecord; + export interface AnyARecord extends RecordWithTtl { + type: 'A'; + } + export interface AnyAaaaRecord extends RecordWithTtl { + type: 'AAAA'; + } + export interface CaaRecord { + critial: number; + issue?: string | undefined; + issuewild?: string | undefined; + iodef?: string | undefined; + contactemail?: string | undefined; + contactphone?: string | undefined; + } + export interface MxRecord { + priority: number; + exchange: string; + } + export interface AnyMxRecord extends MxRecord { + type: 'MX'; + } + export interface NaptrRecord { + flags: string; + service: string; + regexp: string; + replacement: string; + order: number; + preference: number; + } + export interface AnyNaptrRecord extends NaptrRecord { + type: 'NAPTR'; + } + export interface SoaRecord { + nsname: string; + hostmaster: string; + serial: number; + refresh: number; + retry: number; + expire: number; + minttl: number; + } + export interface AnySoaRecord extends SoaRecord { + type: 'SOA'; + } + export interface SrvRecord { + priority: number; + weight: number; + port: number; + name: string; + } + export interface AnySrvRecord extends SrvRecord { + type: 'SRV'; + } + export interface AnyTxtRecord { + type: 'TXT'; + entries: string[]; + } + export interface AnyNsRecord { + type: 'NS'; + value: string; + } + export interface AnyPtrRecord { + type: 'PTR'; + value: string; + } + export interface AnyCnameRecord { + type: 'CNAME'; + value: string; + } + export type AnyRecord = AnyARecord | AnyAaaaRecord | AnyCnameRecord | AnyMxRecord | AnyNaptrRecord | AnyNsRecord | AnyPtrRecord | AnySoaRecord | AnySrvRecord | AnyTxtRecord; + /** + * Uses the DNS protocol to resolve a host name (e.g. `'nodejs.org'`) into an array + * of the resource records. The `callback` function has arguments`(err, records)`. When successful, `records` will be an array of resource + * records. The type and structure of individual results varies based on `rrtype`: + * + * + * + * On error, `err` is an `Error` object, where `err.code` is one of the `DNS error codes`. + * @since v0.1.27 + * @param hostname Host name to resolve. + * @param [rrtype='A'] Resource record type. + */ + export function resolve(hostname: string, callback: (err: NodeJS.ErrnoException | null, addresses: string[]) => void): void; + export function resolve(hostname: string, rrtype: 'A', callback: (err: NodeJS.ErrnoException | null, addresses: string[]) => void): void; + export function resolve(hostname: string, rrtype: 'AAAA', callback: (err: NodeJS.ErrnoException | null, addresses: string[]) => void): void; + export function resolve(hostname: string, rrtype: 'ANY', callback: (err: NodeJS.ErrnoException | null, addresses: AnyRecord[]) => void): void; + export function resolve(hostname: string, rrtype: 'CNAME', callback: (err: NodeJS.ErrnoException | null, addresses: string[]) => void): void; + export function resolve(hostname: string, rrtype: 'MX', callback: (err: NodeJS.ErrnoException | null, addresses: MxRecord[]) => void): void; + export function resolve(hostname: string, rrtype: 'NAPTR', callback: (err: NodeJS.ErrnoException | null, addresses: NaptrRecord[]) => void): void; + export function resolve(hostname: string, rrtype: 'NS', callback: (err: NodeJS.ErrnoException | null, addresses: string[]) => void): void; + export function resolve(hostname: string, rrtype: 'PTR', callback: (err: NodeJS.ErrnoException | null, addresses: string[]) => void): void; + export function resolve(hostname: string, rrtype: 'SOA', callback: (err: NodeJS.ErrnoException | null, addresses: SoaRecord) => void): void; + export function resolve(hostname: string, rrtype: 'SRV', callback: (err: NodeJS.ErrnoException | null, addresses: SrvRecord[]) => void): void; + export function resolve(hostname: string, rrtype: 'TXT', callback: (err: NodeJS.ErrnoException | null, addresses: string[][]) => void): void; + export function resolve( + hostname: string, + rrtype: string, + callback: (err: NodeJS.ErrnoException | null, addresses: string[] | MxRecord[] | NaptrRecord[] | SoaRecord | SrvRecord[] | string[][] | AnyRecord[]) => void + ): void; + export namespace resolve { + function __promisify__(hostname: string, rrtype?: 'A' | 'AAAA' | 'CNAME' | 'NS' | 'PTR'): Promise; + function __promisify__(hostname: string, rrtype: 'ANY'): Promise; + function __promisify__(hostname: string, rrtype: 'MX'): Promise; + function __promisify__(hostname: string, rrtype: 'NAPTR'): Promise; + function __promisify__(hostname: string, rrtype: 'SOA'): Promise; + function __promisify__(hostname: string, rrtype: 'SRV'): Promise; + function __promisify__(hostname: string, rrtype: 'TXT'): Promise; + function __promisify__(hostname: string, rrtype: string): Promise; + } + /** + * Uses the DNS protocol to resolve a IPv4 addresses (`A` records) for the`hostname`. The `addresses` argument passed to the `callback` function + * will contain an array of IPv4 addresses (e.g.`['74.125.79.104', '74.125.79.105', '74.125.79.106']`). + * @since v0.1.16 + * @param hostname Host name to resolve. + */ + export function resolve4(hostname: string, callback: (err: NodeJS.ErrnoException | null, addresses: string[]) => void): void; + export function resolve4(hostname: string, options: ResolveWithTtlOptions, callback: (err: NodeJS.ErrnoException | null, addresses: RecordWithTtl[]) => void): void; + export function resolve4(hostname: string, options: ResolveOptions, callback: (err: NodeJS.ErrnoException | null, addresses: string[] | RecordWithTtl[]) => void): void; + export namespace resolve4 { + function __promisify__(hostname: string): Promise; + function __promisify__(hostname: string, options: ResolveWithTtlOptions): Promise; + function __promisify__(hostname: string, options?: ResolveOptions): Promise; + } + /** + * Uses the DNS protocol to resolve a IPv6 addresses (`AAAA` records) for the`hostname`. The `addresses` argument passed to the `callback` function + * will contain an array of IPv6 addresses. + * @since v0.1.16 + * @param hostname Host name to resolve. + */ + export function resolve6(hostname: string, callback: (err: NodeJS.ErrnoException | null, addresses: string[]) => void): void; + export function resolve6(hostname: string, options: ResolveWithTtlOptions, callback: (err: NodeJS.ErrnoException | null, addresses: RecordWithTtl[]) => void): void; + export function resolve6(hostname: string, options: ResolveOptions, callback: (err: NodeJS.ErrnoException | null, addresses: string[] | RecordWithTtl[]) => void): void; + export namespace resolve6 { + function __promisify__(hostname: string): Promise; + function __promisify__(hostname: string, options: ResolveWithTtlOptions): Promise; + function __promisify__(hostname: string, options?: ResolveOptions): Promise; + } + /** + * Uses the DNS protocol to resolve `CNAME` records for the `hostname`. The`addresses` argument passed to the `callback` function + * will contain an array of canonical name records available for the `hostname`(e.g. `['bar.example.com']`). + * @since v0.3.2 + */ + export function resolveCname(hostname: string, callback: (err: NodeJS.ErrnoException | null, addresses: string[]) => void): void; + export namespace resolveCname { + function __promisify__(hostname: string): Promise; + } + /** + * Uses the DNS protocol to resolve `CAA` records for the `hostname`. The`addresses` argument passed to the `callback` function + * will contain an array of certification authority authorization records + * available for the `hostname` (e.g. `[{critical: 0, iodef: 'mailto:pki@example.com'}, {critical: 128, issue: 'pki.example.com'}]`). + * @since v15.0.0, v14.17.0 + */ + export function resolveCaa(hostname: string, callback: (err: NodeJS.ErrnoException | null, records: CaaRecord[]) => void): void; + export namespace resolveCaa { + function __promisify__(hostname: string): Promise; + } + /** + * Uses the DNS protocol to resolve mail exchange records (`MX` records) for the`hostname`. The `addresses` argument passed to the `callback` function will + * contain an array of objects containing both a `priority` and `exchange`property (e.g. `[{priority: 10, exchange: 'mx.example.com'}, ...]`). + * @since v0.1.27 + */ + export function resolveMx(hostname: string, callback: (err: NodeJS.ErrnoException | null, addresses: MxRecord[]) => void): void; + export namespace resolveMx { + function __promisify__(hostname: string): Promise; + } + /** + * Uses the DNS protocol to resolve regular expression based records (`NAPTR`records) for the `hostname`. The `addresses` argument passed to the `callback`function will contain an array of + * objects with the following properties: + * + * * `flags` + * * `service` + * * `regexp` + * * `replacement` + * * `order` + * * `preference` + * + * ```js + * { + * flags: 's', + * service: 'SIP+D2U', + * regexp: '', + * replacement: '_sip._udp.example.com', + * order: 30, + * preference: 100 + * } + * ``` + * @since v0.9.12 + */ + export function resolveNaptr(hostname: string, callback: (err: NodeJS.ErrnoException | null, addresses: NaptrRecord[]) => void): void; + export namespace resolveNaptr { + function __promisify__(hostname: string): Promise; + } + /** + * Uses the DNS protocol to resolve name server records (`NS` records) for the`hostname`. The `addresses` argument passed to the `callback` function will + * contain an array of name server records available for `hostname`(e.g. `['ns1.example.com', 'ns2.example.com']`). + * @since v0.1.90 + */ + export function resolveNs(hostname: string, callback: (err: NodeJS.ErrnoException | null, addresses: string[]) => void): void; + export namespace resolveNs { + function __promisify__(hostname: string): Promise; + } + /** + * Uses the DNS protocol to resolve pointer records (`PTR` records) for the`hostname`. The `addresses` argument passed to the `callback` function will + * be an array of strings containing the reply records. + * @since v6.0.0 + */ + export function resolvePtr(hostname: string, callback: (err: NodeJS.ErrnoException | null, addresses: string[]) => void): void; + export namespace resolvePtr { + function __promisify__(hostname: string): Promise; + } + /** + * Uses the DNS protocol to resolve a start of authority record (`SOA` record) for + * the `hostname`. The `address` argument passed to the `callback` function will + * be an object with the following properties: + * + * * `nsname` + * * `hostmaster` + * * `serial` + * * `refresh` + * * `retry` + * * `expire` + * * `minttl` + * + * ```js + * { + * nsname: 'ns.example.com', + * hostmaster: 'root.example.com', + * serial: 2013101809, + * refresh: 10000, + * retry: 2400, + * expire: 604800, + * minttl: 3600 + * } + * ``` + * @since v0.11.10 + */ + export function resolveSoa(hostname: string, callback: (err: NodeJS.ErrnoException | null, address: SoaRecord) => void): void; + export namespace resolveSoa { + function __promisify__(hostname: string): Promise; + } + /** + * Uses the DNS protocol to resolve service records (`SRV` records) for the`hostname`. The `addresses` argument passed to the `callback` function will + * be an array of objects with the following properties: + * + * * `priority` + * * `weight` + * * `port` + * * `name` + * + * ```js + * { + * priority: 10, + * weight: 5, + * port: 21223, + * name: 'service.example.com' + * } + * ``` + * @since v0.1.27 + */ + export function resolveSrv(hostname: string, callback: (err: NodeJS.ErrnoException | null, addresses: SrvRecord[]) => void): void; + export namespace resolveSrv { + function __promisify__(hostname: string): Promise; + } + /** + * Uses the DNS protocol to resolve text queries (`TXT` records) for the`hostname`. The `records` argument passed to the `callback` function is a + * two-dimensional array of the text records available for `hostname` (e.g.`[ ['v=spf1 ip4:0.0.0.0 ', '~all' ] ]`). Each sub-array contains TXT chunks of + * one record. Depending on the use case, these could be either joined together or + * treated separately. + * @since v0.1.27 + */ + export function resolveTxt(hostname: string, callback: (err: NodeJS.ErrnoException | null, addresses: string[][]) => void): void; + export namespace resolveTxt { + function __promisify__(hostname: string): Promise; + } + /** + * Uses the DNS protocol to resolve all records (also known as `ANY` or `*` query). + * The `ret` argument passed to the `callback` function will be an array containing + * various types of records. Each object has a property `type` that indicates the + * type of the current record. And depending on the `type`, additional properties + * will be present on the object: + * + * + * + * Here is an example of the `ret` object passed to the callback: + * + * ```js + * [ { type: 'A', address: '127.0.0.1', ttl: 299 }, + * { type: 'CNAME', value: 'example.com' }, + * { type: 'MX', exchange: 'alt4.aspmx.l.example.com', priority: 50 }, + * { type: 'NS', value: 'ns1.example.com' }, + * { type: 'TXT', entries: [ 'v=spf1 include:_spf.example.com ~all' ] }, + * { type: 'SOA', + * nsname: 'ns1.example.com', + * hostmaster: 'admin.example.com', + * serial: 156696742, + * refresh: 900, + * retry: 900, + * expire: 1800, + * minttl: 60 } ] + * ``` + * + * DNS server operators may choose not to respond to `ANY`queries. It may be better to call individual methods like {@link resolve4},{@link resolveMx}, and so on. For more details, see [RFC + * 8482](https://tools.ietf.org/html/rfc8482). + */ + export function resolveAny(hostname: string, callback: (err: NodeJS.ErrnoException | null, addresses: AnyRecord[]) => void): void; + export namespace resolveAny { + function __promisify__(hostname: string): Promise; + } + /** + * Performs a reverse DNS query that resolves an IPv4 or IPv6 address to an + * array of host names. + * + * On error, `err` is an `Error` object, where `err.code` is + * one of the `DNS error codes`. + * @since v0.1.16 + */ + export function reverse(ip: string, callback: (err: NodeJS.ErrnoException | null, hostnames: string[]) => void): void; + /** + * Sets the IP address and port of servers to be used when performing DNS + * resolution. The `servers` argument is an array of [RFC 5952](https://tools.ietf.org/html/rfc5952#section-6) formatted + * addresses. If the port is the IANA default DNS port (53) it can be omitted. + * + * ```js + * dns.setServers([ + * '4.4.4.4', + * '[2001:4860:4860::8888]', + * '4.4.4.4:1053', + * '[2001:4860:4860::8888]:1053', + * ]); + * ``` + * + * An error will be thrown if an invalid address is provided. + * + * The `dns.setServers()` method must not be called while a DNS query is in + * progress. + * + * The {@link setServers} method affects only {@link resolve},`dns.resolve*()` and {@link reverse} (and specifically _not_ {@link lookup}). + * + * This method works much like [resolve.conf](https://man7.org/linux/man-pages/man5/resolv.conf.5.html). + * That is, if attempting to resolve with the first server provided results in a`NOTFOUND` error, the `resolve()` method will _not_ attempt to resolve with + * subsequent servers provided. Fallback DNS servers will only be used if the + * earlier ones time out or result in some other error. + * @since v0.11.3 + * @param servers array of `RFC 5952` formatted addresses + */ + export function setServers(servers: ReadonlyArray): void; + /** + * Returns an array of IP address strings, formatted according to [RFC 5952](https://tools.ietf.org/html/rfc5952#section-6), + * that are currently configured for DNS resolution. A string will include a port + * section if a custom port is used. + * + * ```js + * [ + * '4.4.4.4', + * '2001:4860:4860::8888', + * '4.4.4.4:1053', + * '[2001:4860:4860::8888]:1053', + * ] + * ``` + * @since v0.11.3 + */ + export function getServers(): string[]; + /** + * Set the default value of `verbatim` in {@link lookup} and `dnsPromises.lookup()`. The value could be: + * + * * `ipv4first`: sets default `verbatim` `false`. + * * `verbatim`: sets default `verbatim` `true`. + * + * The default is `ipv4first` and {@link setDefaultResultOrder} have higher + * priority than `--dns-result-order`. When using `worker threads`,{@link setDefaultResultOrder} from the main thread won't affect the default + * dns orders in workers. + * @since v16.4.0, v14.18.0 + * @param order must be `'ipv4first'` or `'verbatim'`. + */ + export function setDefaultResultOrder(order: 'ipv4first' | 'verbatim'): void; + // Error codes + export const NODATA: string; + export const FORMERR: string; + export const SERVFAIL: string; + export const NOTFOUND: string; + export const NOTIMP: string; + export const REFUSED: string; + export const BADQUERY: string; + export const BADNAME: string; + export const BADFAMILY: string; + export const BADRESP: string; + export const CONNREFUSED: string; + export const TIMEOUT: string; + export const EOF: string; + export const FILE: string; + export const NOMEM: string; + export const DESTRUCTION: string; + export const BADSTR: string; + export const BADFLAGS: string; + export const NONAME: string; + export const BADHINTS: string; + export const NOTINITIALIZED: string; + export const LOADIPHLPAPI: string; + export const ADDRGETNETWORKPARAMS: string; + export const CANCELLED: string; + export interface ResolverOptions { + timeout?: number | undefined; + /** + * @default 4 + */ + tries?: number; + } + /** + * An independent resolver for DNS requests. + * + * Creating a new resolver uses the default server settings. Setting + * the servers used for a resolver using `resolver.setServers()` does not affect + * other resolvers: + * + * ```js + * const { Resolver } = require('dns'); + * const resolver = new Resolver(); + * resolver.setServers(['4.4.4.4']); + * + * // This request will use the server at 4.4.4.4, independent of global settings. + * resolver.resolve4('example.org', (err, addresses) => { + * // ... + * }); + * ``` + * + * The following methods from the `dns` module are available: + * + * * `resolver.getServers()` + * * `resolver.resolve()` + * * `resolver.resolve4()` + * * `resolver.resolve6()` + * * `resolver.resolveAny()` + * * `resolver.resolveCaa()` + * * `resolver.resolveCname()` + * * `resolver.resolveMx()` + * * `resolver.resolveNaptr()` + * * `resolver.resolveNs()` + * * `resolver.resolvePtr()` + * * `resolver.resolveSoa()` + * * `resolver.resolveSrv()` + * * `resolver.resolveTxt()` + * * `resolver.reverse()` + * * `resolver.setServers()` + * @since v8.3.0 + */ + export class Resolver { + constructor(options?: ResolverOptions); + /** + * Cancel all outstanding DNS queries made by this resolver. The corresponding + * callbacks will be called with an error with code `ECANCELLED`. + * @since v8.3.0 + */ + cancel(): void; + getServers: typeof getServers; + resolve: typeof resolve; + resolve4: typeof resolve4; + resolve6: typeof resolve6; + resolveAny: typeof resolveAny; + resolveCname: typeof resolveCname; + resolveMx: typeof resolveMx; + resolveNaptr: typeof resolveNaptr; + resolveNs: typeof resolveNs; + resolvePtr: typeof resolvePtr; + resolveSoa: typeof resolveSoa; + resolveSrv: typeof resolveSrv; + resolveTxt: typeof resolveTxt; + reverse: typeof reverse; + /** + * The resolver instance will send its requests from the specified IP address. + * This allows programs to specify outbound interfaces when used on multi-homed + * systems. + * + * If a v4 or v6 address is not specified, it is set to the default, and the + * operating system will choose a local address automatically. + * + * The resolver will use the v4 local address when making requests to IPv4 DNS + * servers, and the v6 local address when making requests to IPv6 DNS servers. + * The `rrtype` of resolution requests has no impact on the local address used. + * @since v15.1.0, v14.17.0 + * @param [ipv4='0.0.0.0'] A string representation of an IPv4 address. + * @param [ipv6='::0'] A string representation of an IPv6 address. + */ + setLocalAddress(ipv4?: string, ipv6?: string): void; + setServers: typeof setServers; + } + export { dnsPromises as promises }; +} +declare module 'node:dns' { + export * from 'dns'; +} diff --git a/node_modules/@types/node/ts4.8/dns/promises.d.ts b/node_modules/@types/node/ts4.8/dns/promises.d.ts new file mode 100644 index 000000000..77cd807bd --- /dev/null +++ b/node_modules/@types/node/ts4.8/dns/promises.d.ts @@ -0,0 +1,370 @@ +/** + * The `dns.promises` API provides an alternative set of asynchronous DNS methods + * that return `Promise` objects rather than using callbacks. The API is accessible + * via `require('dns').promises` or `require('dns/promises')`. + * @since v10.6.0 + */ +declare module 'dns/promises' { + import { + LookupAddress, + LookupOneOptions, + LookupAllOptions, + LookupOptions, + AnyRecord, + CaaRecord, + MxRecord, + NaptrRecord, + SoaRecord, + SrvRecord, + ResolveWithTtlOptions, + RecordWithTtl, + ResolveOptions, + ResolverOptions, + } from 'node:dns'; + /** + * Returns an array of IP address strings, formatted according to [RFC 5952](https://tools.ietf.org/html/rfc5952#section-6), + * that are currently configured for DNS resolution. A string will include a port + * section if a custom port is used. + * + * ```js + * [ + * '4.4.4.4', + * '2001:4860:4860::8888', + * '4.4.4.4:1053', + * '[2001:4860:4860::8888]:1053', + * ] + * ``` + * @since v10.6.0 + */ + function getServers(): string[]; + /** + * Resolves a host name (e.g. `'nodejs.org'`) into the first found A (IPv4) or + * AAAA (IPv6) record. All `option` properties are optional. If `options` is an + * integer, then it must be `4` or `6` – if `options` is not provided, then IPv4 + * and IPv6 addresses are both returned if found. + * + * With the `all` option set to `true`, the `Promise` is resolved with `addresses`being an array of objects with the properties `address` and `family`. + * + * On error, the `Promise` is rejected with an `Error` object, where `err.code`is the error code. + * Keep in mind that `err.code` will be set to `'ENOTFOUND'` not only when + * the host name does not exist but also when the lookup fails in other ways + * such as no available file descriptors. + * + * `dnsPromises.lookup()` does not necessarily have anything to do with the DNS + * protocol. The implementation uses an operating system facility that can + * associate names with addresses, and vice versa. This implementation can have + * subtle but important consequences on the behavior of any Node.js program. Please + * take some time to consult the `Implementation considerations section` before + * using `dnsPromises.lookup()`. + * + * Example usage: + * + * ```js + * const dns = require('dns'); + * const dnsPromises = dns.promises; + * const options = { + * family: 6, + * hints: dns.ADDRCONFIG | dns.V4MAPPED, + * }; + * + * dnsPromises.lookup('example.com', options).then((result) => { + * console.log('address: %j family: IPv%s', result.address, result.family); + * // address: "2606:2800:220:1:248:1893:25c8:1946" family: IPv6 + * }); + * + * // When options.all is true, the result will be an Array. + * options.all = true; + * dnsPromises.lookup('example.com', options).then((result) => { + * console.log('addresses: %j', result); + * // addresses: [{"address":"2606:2800:220:1:248:1893:25c8:1946","family":6}] + * }); + * ``` + * @since v10.6.0 + */ + function lookup(hostname: string, family: number): Promise; + function lookup(hostname: string, options: LookupOneOptions): Promise; + function lookup(hostname: string, options: LookupAllOptions): Promise; + function lookup(hostname: string, options: LookupOptions): Promise; + function lookup(hostname: string): Promise; + /** + * Resolves the given `address` and `port` into a host name and service using + * the operating system's underlying `getnameinfo` implementation. + * + * If `address` is not a valid IP address, a `TypeError` will be thrown. + * The `port` will be coerced to a number. If it is not a legal port, a `TypeError`will be thrown. + * + * On error, the `Promise` is rejected with an `Error` object, where `err.code`is the error code. + * + * ```js + * const dnsPromises = require('dns').promises; + * dnsPromises.lookupService('127.0.0.1', 22).then((result) => { + * console.log(result.hostname, result.service); + * // Prints: localhost ssh + * }); + * ``` + * @since v10.6.0 + */ + function lookupService( + address: string, + port: number + ): Promise<{ + hostname: string; + service: string; + }>; + /** + * Uses the DNS protocol to resolve a host name (e.g. `'nodejs.org'`) into an array + * of the resource records. When successful, the `Promise` is resolved with an + * array of resource records. The type and structure of individual results vary + * based on `rrtype`: + * + * + * + * On error, the `Promise` is rejected with an `Error` object, where `err.code`is one of the `DNS error codes`. + * @since v10.6.0 + * @param hostname Host name to resolve. + * @param [rrtype='A'] Resource record type. + */ + function resolve(hostname: string): Promise; + function resolve(hostname: string, rrtype: 'A'): Promise; + function resolve(hostname: string, rrtype: 'AAAA'): Promise; + function resolve(hostname: string, rrtype: 'ANY'): Promise; + function resolve(hostname: string, rrtype: 'CAA'): Promise; + function resolve(hostname: string, rrtype: 'CNAME'): Promise; + function resolve(hostname: string, rrtype: 'MX'): Promise; + function resolve(hostname: string, rrtype: 'NAPTR'): Promise; + function resolve(hostname: string, rrtype: 'NS'): Promise; + function resolve(hostname: string, rrtype: 'PTR'): Promise; + function resolve(hostname: string, rrtype: 'SOA'): Promise; + function resolve(hostname: string, rrtype: 'SRV'): Promise; + function resolve(hostname: string, rrtype: 'TXT'): Promise; + function resolve(hostname: string, rrtype: string): Promise; + /** + * Uses the DNS protocol to resolve IPv4 addresses (`A` records) for the`hostname`. On success, the `Promise` is resolved with an array of IPv4 + * addresses (e.g. `['74.125.79.104', '74.125.79.105', '74.125.79.106']`). + * @since v10.6.0 + * @param hostname Host name to resolve. + */ + function resolve4(hostname: string): Promise; + function resolve4(hostname: string, options: ResolveWithTtlOptions): Promise; + function resolve4(hostname: string, options: ResolveOptions): Promise; + /** + * Uses the DNS protocol to resolve IPv6 addresses (`AAAA` records) for the`hostname`. On success, the `Promise` is resolved with an array of IPv6 + * addresses. + * @since v10.6.0 + * @param hostname Host name to resolve. + */ + function resolve6(hostname: string): Promise; + function resolve6(hostname: string, options: ResolveWithTtlOptions): Promise; + function resolve6(hostname: string, options: ResolveOptions): Promise; + /** + * Uses the DNS protocol to resolve all records (also known as `ANY` or `*` query). + * On success, the `Promise` is resolved with an array containing various types of + * records. Each object has a property `type` that indicates the type of the + * current record. And depending on the `type`, additional properties will be + * present on the object: + * + * + * + * Here is an example of the result object: + * + * ```js + * [ { type: 'A', address: '127.0.0.1', ttl: 299 }, + * { type: 'CNAME', value: 'example.com' }, + * { type: 'MX', exchange: 'alt4.aspmx.l.example.com', priority: 50 }, + * { type: 'NS', value: 'ns1.example.com' }, + * { type: 'TXT', entries: [ 'v=spf1 include:_spf.example.com ~all' ] }, + * { type: 'SOA', + * nsname: 'ns1.example.com', + * hostmaster: 'admin.example.com', + * serial: 156696742, + * refresh: 900, + * retry: 900, + * expire: 1800, + * minttl: 60 } ] + * ``` + * @since v10.6.0 + */ + function resolveAny(hostname: string): Promise; + /** + * Uses the DNS protocol to resolve `CAA` records for the `hostname`. On success, + * the `Promise` is resolved with an array of objects containing available + * certification authority authorization records available for the `hostname`(e.g. `[{critical: 0, iodef: 'mailto:pki@example.com'},{critical: 128, issue: 'pki.example.com'}]`). + * @since v15.0.0, v14.17.0 + */ + function resolveCaa(hostname: string): Promise; + /** + * Uses the DNS protocol to resolve `CNAME` records for the `hostname`. On success, + * the `Promise` is resolved with an array of canonical name records available for + * the `hostname` (e.g. `['bar.example.com']`). + * @since v10.6.0 + */ + function resolveCname(hostname: string): Promise; + /** + * Uses the DNS protocol to resolve mail exchange records (`MX` records) for the`hostname`. On success, the `Promise` is resolved with an array of objects + * containing both a `priority` and `exchange` property (e.g.`[{priority: 10, exchange: 'mx.example.com'}, ...]`). + * @since v10.6.0 + */ + function resolveMx(hostname: string): Promise; + /** + * Uses the DNS protocol to resolve regular expression based records (`NAPTR`records) for the `hostname`. On success, the `Promise` is resolved with an array + * of objects with the following properties: + * + * * `flags` + * * `service` + * * `regexp` + * * `replacement` + * * `order` + * * `preference` + * + * ```js + * { + * flags: 's', + * service: 'SIP+D2U', + * regexp: '', + * replacement: '_sip._udp.example.com', + * order: 30, + * preference: 100 + * } + * ``` + * @since v10.6.0 + */ + function resolveNaptr(hostname: string): Promise; + /** + * Uses the DNS protocol to resolve name server records (`NS` records) for the`hostname`. On success, the `Promise` is resolved with an array of name server + * records available for `hostname` (e.g.`['ns1.example.com', 'ns2.example.com']`). + * @since v10.6.0 + */ + function resolveNs(hostname: string): Promise; + /** + * Uses the DNS protocol to resolve pointer records (`PTR` records) for the`hostname`. On success, the `Promise` is resolved with an array of strings + * containing the reply records. + * @since v10.6.0 + */ + function resolvePtr(hostname: string): Promise; + /** + * Uses the DNS protocol to resolve a start of authority record (`SOA` record) for + * the `hostname`. On success, the `Promise` is resolved with an object with the + * following properties: + * + * * `nsname` + * * `hostmaster` + * * `serial` + * * `refresh` + * * `retry` + * * `expire` + * * `minttl` + * + * ```js + * { + * nsname: 'ns.example.com', + * hostmaster: 'root.example.com', + * serial: 2013101809, + * refresh: 10000, + * retry: 2400, + * expire: 604800, + * minttl: 3600 + * } + * ``` + * @since v10.6.0 + */ + function resolveSoa(hostname: string): Promise; + /** + * Uses the DNS protocol to resolve service records (`SRV` records) for the`hostname`. On success, the `Promise` is resolved with an array of objects with + * the following properties: + * + * * `priority` + * * `weight` + * * `port` + * * `name` + * + * ```js + * { + * priority: 10, + * weight: 5, + * port: 21223, + * name: 'service.example.com' + * } + * ``` + * @since v10.6.0 + */ + function resolveSrv(hostname: string): Promise; + /** + * Uses the DNS protocol to resolve text queries (`TXT` records) for the`hostname`. On success, the `Promise` is resolved with a two-dimensional array + * of the text records available for `hostname` (e.g.`[ ['v=spf1 ip4:0.0.0.0 ', '~all' ] ]`). Each sub-array contains TXT chunks of + * one record. Depending on the use case, these could be either joined together or + * treated separately. + * @since v10.6.0 + */ + function resolveTxt(hostname: string): Promise; + /** + * Performs a reverse DNS query that resolves an IPv4 or IPv6 address to an + * array of host names. + * + * On error, the `Promise` is rejected with an `Error` object, where `err.code`is one of the `DNS error codes`. + * @since v10.6.0 + */ + function reverse(ip: string): Promise; + /** + * Sets the IP address and port of servers to be used when performing DNS + * resolution. The `servers` argument is an array of [RFC 5952](https://tools.ietf.org/html/rfc5952#section-6) formatted + * addresses. If the port is the IANA default DNS port (53) it can be omitted. + * + * ```js + * dnsPromises.setServers([ + * '4.4.4.4', + * '[2001:4860:4860::8888]', + * '4.4.4.4:1053', + * '[2001:4860:4860::8888]:1053', + * ]); + * ``` + * + * An error will be thrown if an invalid address is provided. + * + * The `dnsPromises.setServers()` method must not be called while a DNS query is in + * progress. + * + * This method works much like [resolve.conf](https://man7.org/linux/man-pages/man5/resolv.conf.5.html). + * That is, if attempting to resolve with the first server provided results in a`NOTFOUND` error, the `resolve()` method will _not_ attempt to resolve with + * subsequent servers provided. Fallback DNS servers will only be used if the + * earlier ones time out or result in some other error. + * @since v10.6.0 + * @param servers array of `RFC 5952` formatted addresses + */ + function setServers(servers: ReadonlyArray): void; + /** + * Set the default value of `verbatim` in `dns.lookup()` and `dnsPromises.lookup()`. The value could be: + * + * * `ipv4first`: sets default `verbatim` `false`. + * * `verbatim`: sets default `verbatim` `true`. + * + * The default is `ipv4first` and `dnsPromises.setDefaultResultOrder()` have + * higher priority than `--dns-result-order`. When using `worker threads`,`dnsPromises.setDefaultResultOrder()` from the main thread won't affect the + * default dns orders in workers. + * @since v16.4.0, v14.18.0 + * @param order must be `'ipv4first'` or `'verbatim'`. + */ + function setDefaultResultOrder(order: 'ipv4first' | 'verbatim'): void; + class Resolver { + constructor(options?: ResolverOptions); + cancel(): void; + getServers: typeof getServers; + resolve: typeof resolve; + resolve4: typeof resolve4; + resolve6: typeof resolve6; + resolveAny: typeof resolveAny; + resolveCname: typeof resolveCname; + resolveMx: typeof resolveMx; + resolveNaptr: typeof resolveNaptr; + resolveNs: typeof resolveNs; + resolvePtr: typeof resolvePtr; + resolveSoa: typeof resolveSoa; + resolveSrv: typeof resolveSrv; + resolveTxt: typeof resolveTxt; + reverse: typeof reverse; + setLocalAddress(ipv4?: string, ipv6?: string): void; + setServers: typeof setServers; + } +} +declare module 'node:dns/promises' { + export * from 'dns/promises'; +} diff --git a/node_modules/@types/node/ts4.8/domain.d.ts b/node_modules/@types/node/ts4.8/domain.d.ts new file mode 100644 index 000000000..fafe68a5d --- /dev/null +++ b/node_modules/@types/node/ts4.8/domain.d.ts @@ -0,0 +1,170 @@ +/** + * **This module is pending deprecation.** Once a replacement API has been + * finalized, this module will be fully deprecated. Most developers should + * **not** have cause to use this module. Users who absolutely must have + * the functionality that domains provide may rely on it for the time being + * but should expect to have to migrate to a different solution + * in the future. + * + * Domains provide a way to handle multiple different IO operations as a + * single group. If any of the event emitters or callbacks registered to a + * domain emit an `'error'` event, or throw an error, then the domain object + * will be notified, rather than losing the context of the error in the`process.on('uncaughtException')` handler, or causing the program to + * exit immediately with an error code. + * @deprecated Since v1.4.2 - Deprecated + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/domain.js) + */ +declare module 'domain' { + import EventEmitter = require('node:events'); + /** + * The `Domain` class encapsulates the functionality of routing errors and + * uncaught exceptions to the active `Domain` object. + * + * To handle the errors that it catches, listen to its `'error'` event. + */ + class Domain extends EventEmitter { + /** + * An array of timers and event emitters that have been explicitly added + * to the domain. + */ + members: Array; + /** + * The `enter()` method is plumbing used by the `run()`, `bind()`, and`intercept()` methods to set the active domain. It sets `domain.active` and`process.domain` to the domain, and implicitly + * pushes the domain onto the domain + * stack managed by the domain module (see {@link exit} for details on the + * domain stack). The call to `enter()` delimits the beginning of a chain of + * asynchronous calls and I/O operations bound to a domain. + * + * Calling `enter()` changes only the active domain, and does not alter the domain + * itself. `enter()` and `exit()` can be called an arbitrary number of times on a + * single domain. + */ + enter(): void; + /** + * The `exit()` method exits the current domain, popping it off the domain stack. + * Any time execution is going to switch to the context of a different chain of + * asynchronous calls, it's important to ensure that the current domain is exited. + * The call to `exit()` delimits either the end of or an interruption to the chain + * of asynchronous calls and I/O operations bound to a domain. + * + * If there are multiple, nested domains bound to the current execution context,`exit()` will exit any domains nested within this domain. + * + * Calling `exit()` changes only the active domain, and does not alter the domain + * itself. `enter()` and `exit()` can be called an arbitrary number of times on a + * single domain. + */ + exit(): void; + /** + * Run the supplied function in the context of the domain, implicitly + * binding all event emitters, timers, and lowlevel requests that are + * created in that context. Optionally, arguments can be passed to + * the function. + * + * This is the most basic way to use a domain. + * + * ```js + * const domain = require('domain'); + * const fs = require('fs'); + * const d = domain.create(); + * d.on('error', (er) => { + * console.error('Caught error!', er); + * }); + * d.run(() => { + * process.nextTick(() => { + * setTimeout(() => { // Simulating some various async stuff + * fs.open('non-existent file', 'r', (er, fd) => { + * if (er) throw er; + * // proceed... + * }); + * }, 100); + * }); + * }); + * ``` + * + * In this example, the `d.on('error')` handler will be triggered, rather + * than crashing the program. + */ + run(fn: (...args: any[]) => T, ...args: any[]): T; + /** + * Explicitly adds an emitter to the domain. If any event handlers called by + * the emitter throw an error, or if the emitter emits an `'error'` event, it + * will be routed to the domain's `'error'` event, just like with implicit + * binding. + * + * This also works with timers that are returned from `setInterval()` and `setTimeout()`. If their callback function throws, it will be caught by + * the domain `'error'` handler. + * + * If the Timer or `EventEmitter` was already bound to a domain, it is removed + * from that one, and bound to this one instead. + * @param emitter emitter or timer to be added to the domain + */ + add(emitter: EventEmitter | NodeJS.Timer): void; + /** + * The opposite of {@link add}. Removes domain handling from the + * specified emitter. + * @param emitter emitter or timer to be removed from the domain + */ + remove(emitter: EventEmitter | NodeJS.Timer): void; + /** + * The returned function will be a wrapper around the supplied callback + * function. When the returned function is called, any errors that are + * thrown will be routed to the domain's `'error'` event. + * + * ```js + * const d = domain.create(); + * + * function readSomeFile(filename, cb) { + * fs.readFile(filename, 'utf8', d.bind((er, data) => { + * // If this throws, it will also be passed to the domain. + * return cb(er, data ? JSON.parse(data) : null); + * })); + * } + * + * d.on('error', (er) => { + * // An error occurred somewhere. If we throw it now, it will crash the program + * // with the normal line number and stack message. + * }); + * ``` + * @param callback The callback function + * @return The bound function + */ + bind(callback: T): T; + /** + * This method is almost identical to {@link bind}. However, in + * addition to catching thrown errors, it will also intercept `Error` objects sent as the first argument to the function. + * + * In this way, the common `if (err) return callback(err);` pattern can be replaced + * with a single error handler in a single place. + * + * ```js + * const d = domain.create(); + * + * function readSomeFile(filename, cb) { + * fs.readFile(filename, 'utf8', d.intercept((data) => { + * // Note, the first argument is never passed to the + * // callback since it is assumed to be the 'Error' argument + * // and thus intercepted by the domain. + * + * // If this throws, it will also be passed to the domain + * // so the error-handling logic can be moved to the 'error' + * // event on the domain instead of being repeated throughout + * // the program. + * return cb(null, JSON.parse(data)); + * })); + * } + * + * d.on('error', (er) => { + * // An error occurred somewhere. If we throw it now, it will crash the program + * // with the normal line number and stack message. + * }); + * ``` + * @param callback The callback function + * @return The intercepted function + */ + intercept(callback: T): T; + } + function create(): Domain; +} +declare module 'node:domain' { + export * from 'domain'; +} diff --git a/node_modules/@types/node/ts4.8/events.d.ts b/node_modules/@types/node/ts4.8/events.d.ts new file mode 100644 index 000000000..b8283ac95 --- /dev/null +++ b/node_modules/@types/node/ts4.8/events.d.ts @@ -0,0 +1,641 @@ +/** + * Much of the Node.js core API is built around an idiomatic asynchronous + * event-driven architecture in which certain kinds of objects (called "emitters") + * emit named events that cause `Function` objects ("listeners") to be called. + * + * For instance: a `net.Server` object emits an event each time a peer + * connects to it; a `fs.ReadStream` emits an event when the file is opened; + * a `stream` emits an event whenever data is available to be read. + * + * All objects that emit events are instances of the `EventEmitter` class. These + * objects expose an `eventEmitter.on()` function that allows one or more + * functions to be attached to named events emitted by the object. Typically, + * event names are camel-cased strings but any valid JavaScript property key + * can be used. + * + * When the `EventEmitter` object emits an event, all of the functions attached + * to that specific event are called _synchronously_. Any values returned by the + * called listeners are _ignored_ and discarded. + * + * The following example shows a simple `EventEmitter` instance with a single + * listener. The `eventEmitter.on()` method is used to register listeners, while + * the `eventEmitter.emit()` method is used to trigger the event. + * + * ```js + * const EventEmitter = require('events'); + * + * class MyEmitter extends EventEmitter {} + * + * const myEmitter = new MyEmitter(); + * myEmitter.on('event', () => { + * console.log('an event occurred!'); + * }); + * myEmitter.emit('event'); + * ``` + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/events.js) + */ +declare module 'events' { + interface EventEmitterOptions { + /** + * Enables automatic capturing of promise rejection. + */ + captureRejections?: boolean | undefined; + } + interface NodeEventTarget { + once(eventName: string | symbol, listener: (...args: any[]) => void): this; + } + interface DOMEventTarget { + addEventListener( + eventName: string, + listener: (...args: any[]) => void, + opts?: { + once: boolean; + } + ): any; + } + interface StaticEventEmitterOptions { + signal?: AbortSignal | undefined; + } + interface EventEmitter extends NodeJS.EventEmitter {} + /** + * The `EventEmitter` class is defined and exposed by the `events` module: + * + * ```js + * const EventEmitter = require('events'); + * ``` + * + * All `EventEmitter`s emit the event `'newListener'` when new listeners are + * added and `'removeListener'` when existing listeners are removed. + * + * It supports the following option: + * @since v0.1.26 + */ + class EventEmitter { + constructor(options?: EventEmitterOptions); + /** + * Creates a `Promise` that is fulfilled when the `EventEmitter` emits the given + * event or that is rejected if the `EventEmitter` emits `'error'` while waiting. + * The `Promise` will resolve with an array of all the arguments emitted to the + * given event. + * + * This method is intentionally generic and works with the web platform [EventTarget](https://dom.spec.whatwg.org/#interface-eventtarget) interface, which has no special`'error'` event + * semantics and does not listen to the `'error'` event. + * + * ```js + * const { once, EventEmitter } = require('events'); + * + * async function run() { + * const ee = new EventEmitter(); + * + * process.nextTick(() => { + * ee.emit('myevent', 42); + * }); + * + * const [value] = await once(ee, 'myevent'); + * console.log(value); + * + * const err = new Error('kaboom'); + * process.nextTick(() => { + * ee.emit('error', err); + * }); + * + * try { + * await once(ee, 'myevent'); + * } catch (err) { + * console.log('error happened', err); + * } + * } + * + * run(); + * ``` + * + * The special handling of the `'error'` event is only used when `events.once()`is used to wait for another event. If `events.once()` is used to wait for the + * '`error'` event itself, then it is treated as any other kind of event without + * special handling: + * + * ```js + * const { EventEmitter, once } = require('events'); + * + * const ee = new EventEmitter(); + * + * once(ee, 'error') + * .then(([err]) => console.log('ok', err.message)) + * .catch((err) => console.log('error', err.message)); + * + * ee.emit('error', new Error('boom')); + * + * // Prints: ok boom + * ``` + * + * An `AbortSignal` can be used to cancel waiting for the event: + * + * ```js + * const { EventEmitter, once } = require('events'); + * + * const ee = new EventEmitter(); + * const ac = new AbortController(); + * + * async function foo(emitter, event, signal) { + * try { + * await once(emitter, event, { signal }); + * console.log('event emitted!'); + * } catch (error) { + * if (error.name === 'AbortError') { + * console.error('Waiting for the event was canceled!'); + * } else { + * console.error('There was an error', error.message); + * } + * } + * } + * + * foo(ee, 'foo', ac.signal); + * ac.abort(); // Abort waiting for the event + * ee.emit('foo'); // Prints: Waiting for the event was canceled! + * ``` + * @since v11.13.0, v10.16.0 + */ + static once(emitter: NodeEventTarget, eventName: string | symbol, options?: StaticEventEmitterOptions): Promise; + static once(emitter: DOMEventTarget, eventName: string, options?: StaticEventEmitterOptions): Promise; + /** + * ```js + * const { on, EventEmitter } = require('events'); + * + * (async () => { + * const ee = new EventEmitter(); + * + * // Emit later on + * process.nextTick(() => { + * ee.emit('foo', 'bar'); + * ee.emit('foo', 42); + * }); + * + * for await (const event of on(ee, 'foo')) { + * // The execution of this inner block is synchronous and it + * // processes one event at a time (even with await). Do not use + * // if concurrent execution is required. + * console.log(event); // prints ['bar'] [42] + * } + * // Unreachable here + * })(); + * ``` + * + * Returns an `AsyncIterator` that iterates `eventName` events. It will throw + * if the `EventEmitter` emits `'error'`. It removes all listeners when + * exiting the loop. The `value` returned by each iteration is an array + * composed of the emitted event arguments. + * + * An `AbortSignal` can be used to cancel waiting on events: + * + * ```js + * const { on, EventEmitter } = require('events'); + * const ac = new AbortController(); + * + * (async () => { + * const ee = new EventEmitter(); + * + * // Emit later on + * process.nextTick(() => { + * ee.emit('foo', 'bar'); + * ee.emit('foo', 42); + * }); + * + * for await (const event of on(ee, 'foo', { signal: ac.signal })) { + * // The execution of this inner block is synchronous and it + * // processes one event at a time (even with await). Do not use + * // if concurrent execution is required. + * console.log(event); // prints ['bar'] [42] + * } + * // Unreachable here + * })(); + * + * process.nextTick(() => ac.abort()); + * ``` + * @since v13.6.0, v12.16.0 + * @param eventName The name of the event being listened for + * @return that iterates `eventName` events emitted by the `emitter` + */ + static on(emitter: NodeJS.EventEmitter, eventName: string, options?: StaticEventEmitterOptions): AsyncIterableIterator; + /** + * A class method that returns the number of listeners for the given `eventName`registered on the given `emitter`. + * + * ```js + * const { EventEmitter, listenerCount } = require('events'); + * const myEmitter = new EventEmitter(); + * myEmitter.on('event', () => {}); + * myEmitter.on('event', () => {}); + * console.log(listenerCount(myEmitter, 'event')); + * // Prints: 2 + * ``` + * @since v0.9.12 + * @deprecated Since v3.2.0 - Use `listenerCount` instead. + * @param emitter The emitter to query + * @param eventName The event name + */ + static listenerCount(emitter: NodeJS.EventEmitter, eventName: string | symbol): number; + /** + * Returns a copy of the array of listeners for the event named `eventName`. + * + * For `EventEmitter`s this behaves exactly the same as calling `.listeners` on + * the emitter. + * + * For `EventTarget`s this is the only way to get the event listeners for the + * event target. This is useful for debugging and diagnostic purposes. + * + * ```js + * const { getEventListeners, EventEmitter } = require('events'); + * + * { + * const ee = new EventEmitter(); + * const listener = () => console.log('Events are fun'); + * ee.on('foo', listener); + * getEventListeners(ee, 'foo'); // [listener] + * } + * { + * const et = new EventTarget(); + * const listener = () => console.log('Events are fun'); + * et.addEventListener('foo', listener); + * getEventListeners(et, 'foo'); // [listener] + * } + * ``` + * @since v15.2.0, v14.17.0 + */ + static getEventListeners(emitter: DOMEventTarget | NodeJS.EventEmitter, name: string | symbol): Function[]; + /** + * ```js + * const { + * setMaxListeners, + * EventEmitter + * } = require('events'); + * + * const target = new EventTarget(); + * const emitter = new EventEmitter(); + * + * setMaxListeners(5, target, emitter); + * ``` + * @since v15.4.0 + * @param n A non-negative number. The maximum number of listeners per `EventTarget` event. + * @param eventsTargets Zero or more {EventTarget} or {EventEmitter} instances. If none are specified, `n` is set as the default max for all newly created {EventTarget} and {EventEmitter} + * objects. + */ + static setMaxListeners(n?: number, ...eventTargets: Array): void; + /** + * This symbol shall be used to install a listener for only monitoring `'error'` + * events. Listeners installed using this symbol are called before the regular + * `'error'` listeners are called. + * + * Installing a listener using this symbol does not change the behavior once an + * `'error'` event is emitted, therefore the process will still crash if no + * regular `'error'` listener is installed. + */ + static readonly errorMonitor: unique symbol; + static readonly captureRejectionSymbol: unique symbol; + /** + * Sets or gets the default captureRejection value for all emitters. + */ + // TODO: These should be described using static getter/setter pairs: + static captureRejections: boolean; + static defaultMaxListeners: number; + } + import internal = require('node:events'); + namespace EventEmitter { + // Should just be `export { EventEmitter }`, but that doesn't work in TypeScript 3.4 + export { internal as EventEmitter }; + export interface Abortable { + /** + * When provided the corresponding `AbortController` can be used to cancel an asynchronous action. + */ + signal?: AbortSignal | undefined; + } + } + global { + namespace NodeJS { + interface EventEmitter { + /** + * Alias for `emitter.on(eventName, listener)`. + * @since v0.1.26 + */ + addListener(eventName: string | symbol, listener: (...args: any[]) => void): this; + /** + * Adds the `listener` function to the end of the listeners array for the + * event named `eventName`. No checks are made to see if the `listener` has + * already been added. Multiple calls passing the same combination of `eventName`and `listener` will result in the `listener` being added, and called, multiple + * times. + * + * ```js + * server.on('connection', (stream) => { + * console.log('someone connected!'); + * }); + * ``` + * + * Returns a reference to the `EventEmitter`, so that calls can be chained. + * + * By default, event listeners are invoked in the order they are added. The`emitter.prependListener()` method can be used as an alternative to add the + * event listener to the beginning of the listeners array. + * + * ```js + * const myEE = new EventEmitter(); + * myEE.on('foo', () => console.log('a')); + * myEE.prependListener('foo', () => console.log('b')); + * myEE.emit('foo'); + * // Prints: + * // b + * // a + * ``` + * @since v0.1.101 + * @param eventName The name of the event. + * @param listener The callback function + */ + on(eventName: string | symbol, listener: (...args: any[]) => void): this; + /** + * Adds a **one-time**`listener` function for the event named `eventName`. The + * next time `eventName` is triggered, this listener is removed and then invoked. + * + * ```js + * server.once('connection', (stream) => { + * console.log('Ah, we have our first user!'); + * }); + * ``` + * + * Returns a reference to the `EventEmitter`, so that calls can be chained. + * + * By default, event listeners are invoked in the order they are added. The`emitter.prependOnceListener()` method can be used as an alternative to add the + * event listener to the beginning of the listeners array. + * + * ```js + * const myEE = new EventEmitter(); + * myEE.once('foo', () => console.log('a')); + * myEE.prependOnceListener('foo', () => console.log('b')); + * myEE.emit('foo'); + * // Prints: + * // b + * // a + * ``` + * @since v0.3.0 + * @param eventName The name of the event. + * @param listener The callback function + */ + once(eventName: string | symbol, listener: (...args: any[]) => void): this; + /** + * Removes the specified `listener` from the listener array for the event named`eventName`. + * + * ```js + * const callback = (stream) => { + * console.log('someone connected!'); + * }; + * server.on('connection', callback); + * // ... + * server.removeListener('connection', callback); + * ``` + * + * `removeListener()` will remove, at most, one instance of a listener from the + * listener array. If any single listener has been added multiple times to the + * listener array for the specified `eventName`, then `removeListener()` must be + * called multiple times to remove each instance. + * + * Once an event is emitted, all listeners attached to it at the + * time of emitting are called in order. This implies that any`removeListener()` or `removeAllListeners()` calls _after_ emitting and _before_ the last listener finishes execution + * will not remove them from`emit()` in progress. Subsequent events behave as expected. + * + * ```js + * const myEmitter = new MyEmitter(); + * + * const callbackA = () => { + * console.log('A'); + * myEmitter.removeListener('event', callbackB); + * }; + * + * const callbackB = () => { + * console.log('B'); + * }; + * + * myEmitter.on('event', callbackA); + * + * myEmitter.on('event', callbackB); + * + * // callbackA removes listener callbackB but it will still be called. + * // Internal listener array at time of emit [callbackA, callbackB] + * myEmitter.emit('event'); + * // Prints: + * // A + * // B + * + * // callbackB is now removed. + * // Internal listener array [callbackA] + * myEmitter.emit('event'); + * // Prints: + * // A + * ``` + * + * Because listeners are managed using an internal array, calling this will + * change the position indices of any listener registered _after_ the listener + * being removed. This will not impact the order in which listeners are called, + * but it means that any copies of the listener array as returned by + * the `emitter.listeners()` method will need to be recreated. + * + * When a single function has been added as a handler multiple times for a single + * event (as in the example below), `removeListener()` will remove the most + * recently added instance. In the example the `once('ping')`listener is removed: + * + * ```js + * const ee = new EventEmitter(); + * + * function pong() { + * console.log('pong'); + * } + * + * ee.on('ping', pong); + * ee.once('ping', pong); + * ee.removeListener('ping', pong); + * + * ee.emit('ping'); + * ee.emit('ping'); + * ``` + * + * Returns a reference to the `EventEmitter`, so that calls can be chained. + * @since v0.1.26 + */ + removeListener(eventName: string | symbol, listener: (...args: any[]) => void): this; + /** + * Alias for `emitter.removeListener()`. + * @since v10.0.0 + */ + off(eventName: string | symbol, listener: (...args: any[]) => void): this; + /** + * Removes all listeners, or those of the specified `eventName`. + * + * It is bad practice to remove listeners added elsewhere in the code, + * particularly when the `EventEmitter` instance was created by some other + * component or module (e.g. sockets or file streams). + * + * Returns a reference to the `EventEmitter`, so that calls can be chained. + * @since v0.1.26 + */ + removeAllListeners(event?: string | symbol): this; + /** + * By default `EventEmitter`s will print a warning if more than `10` listeners are + * added for a particular event. This is a useful default that helps finding + * memory leaks. The `emitter.setMaxListeners()` method allows the limit to be + * modified for this specific `EventEmitter` instance. The value can be set to`Infinity` (or `0`) to indicate an unlimited number of listeners. + * + * Returns a reference to the `EventEmitter`, so that calls can be chained. + * @since v0.3.5 + */ + setMaxListeners(n: number): this; + /** + * Returns the current max listener value for the `EventEmitter` which is either + * set by `emitter.setMaxListeners(n)` or defaults to {@link defaultMaxListeners}. + * @since v1.0.0 + */ + getMaxListeners(): number; + /** + * Returns a copy of the array of listeners for the event named `eventName`. + * + * ```js + * server.on('connection', (stream) => { + * console.log('someone connected!'); + * }); + * console.log(util.inspect(server.listeners('connection'))); + * // Prints: [ [Function] ] + * ``` + * @since v0.1.26 + */ + listeners(eventName: string | symbol): Function[]; + /** + * Returns a copy of the array of listeners for the event named `eventName`, + * including any wrappers (such as those created by `.once()`). + * + * ```js + * const emitter = new EventEmitter(); + * emitter.once('log', () => console.log('log once')); + * + * // Returns a new Array with a function `onceWrapper` which has a property + * // `listener` which contains the original listener bound above + * const listeners = emitter.rawListeners('log'); + * const logFnWrapper = listeners[0]; + * + * // Logs "log once" to the console and does not unbind the `once` event + * logFnWrapper.listener(); + * + * // Logs "log once" to the console and removes the listener + * logFnWrapper(); + * + * emitter.on('log', () => console.log('log persistently')); + * // Will return a new Array with a single function bound by `.on()` above + * const newListeners = emitter.rawListeners('log'); + * + * // Logs "log persistently" twice + * newListeners[0](); + * emitter.emit('log'); + * ``` + * @since v9.4.0 + */ + rawListeners(eventName: string | symbol): Function[]; + /** + * Synchronously calls each of the listeners registered for the event named`eventName`, in the order they were registered, passing the supplied arguments + * to each. + * + * Returns `true` if the event had listeners, `false` otherwise. + * + * ```js + * const EventEmitter = require('events'); + * const myEmitter = new EventEmitter(); + * + * // First listener + * myEmitter.on('event', function firstListener() { + * console.log('Helloooo! first listener'); + * }); + * // Second listener + * myEmitter.on('event', function secondListener(arg1, arg2) { + * console.log(`event with parameters ${arg1}, ${arg2} in second listener`); + * }); + * // Third listener + * myEmitter.on('event', function thirdListener(...args) { + * const parameters = args.join(', '); + * console.log(`event with parameters ${parameters} in third listener`); + * }); + * + * console.log(myEmitter.listeners('event')); + * + * myEmitter.emit('event', 1, 2, 3, 4, 5); + * + * // Prints: + * // [ + * // [Function: firstListener], + * // [Function: secondListener], + * // [Function: thirdListener] + * // ] + * // Helloooo! first listener + * // event with parameters 1, 2 in second listener + * // event with parameters 1, 2, 3, 4, 5 in third listener + * ``` + * @since v0.1.26 + */ + emit(eventName: string | symbol, ...args: any[]): boolean; + /** + * Returns the number of listeners listening to the event named `eventName`. + * @since v3.2.0 + * @param eventName The name of the event being listened for + */ + listenerCount(eventName: string | symbol): number; + /** + * Adds the `listener` function to the _beginning_ of the listeners array for the + * event named `eventName`. No checks are made to see if the `listener` has + * already been added. Multiple calls passing the same combination of `eventName`and `listener` will result in the `listener` being added, and called, multiple + * times. + * + * ```js + * server.prependListener('connection', (stream) => { + * console.log('someone connected!'); + * }); + * ``` + * + * Returns a reference to the `EventEmitter`, so that calls can be chained. + * @since v6.0.0 + * @param eventName The name of the event. + * @param listener The callback function + */ + prependListener(eventName: string | symbol, listener: (...args: any[]) => void): this; + /** + * Adds a **one-time**`listener` function for the event named `eventName` to the _beginning_ of the listeners array. The next time `eventName` is triggered, this + * listener is removed, and then invoked. + * + * ```js + * server.prependOnceListener('connection', (stream) => { + * console.log('Ah, we have our first user!'); + * }); + * ``` + * + * Returns a reference to the `EventEmitter`, so that calls can be chained. + * @since v6.0.0 + * @param eventName The name of the event. + * @param listener The callback function + */ + prependOnceListener(eventName: string | symbol, listener: (...args: any[]) => void): this; + /** + * Returns an array listing the events for which the emitter has registered + * listeners. The values in the array are strings or `Symbol`s. + * + * ```js + * const EventEmitter = require('events'); + * const myEE = new EventEmitter(); + * myEE.on('foo', () => {}); + * myEE.on('bar', () => {}); + * + * const sym = Symbol('symbol'); + * myEE.on(sym, () => {}); + * + * console.log(myEE.eventNames()); + * // Prints: [ 'foo', 'bar', Symbol(symbol) ] + * ``` + * @since v6.0.0 + */ + eventNames(): Array; + } + } + } + export = EventEmitter; +} +declare module 'node:events' { + import events = require('events'); + export = events; +} diff --git a/node_modules/@types/node/ts4.8/fs.d.ts b/node_modules/@types/node/ts4.8/fs.d.ts new file mode 100644 index 000000000..75c53fb0d --- /dev/null +++ b/node_modules/@types/node/ts4.8/fs.d.ts @@ -0,0 +1,3872 @@ +/** + * The `fs` module enables interacting with the file system in a + * way modeled on standard POSIX functions. + * + * To use the promise-based APIs: + * + * ```js + * import * as fs from 'fs/promises'; + * ``` + * + * To use the callback and sync APIs: + * + * ```js + * import * as fs from 'fs'; + * ``` + * + * All file system operations have synchronous, callback, and promise-based + * forms, and are accessible using both CommonJS syntax and ES6 Modules (ESM). + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/fs.js) + */ +declare module 'fs' { + import * as stream from 'node:stream'; + import { Abortable, EventEmitter } from 'node:events'; + import { URL } from 'node:url'; + import * as promises from 'node:fs/promises'; + export { promises }; + /** + * Valid types for path values in "fs". + */ + export type PathLike = string | Buffer | URL; + export type PathOrFileDescriptor = PathLike | number; + export type TimeLike = string | number | Date; + export type NoParamCallback = (err: NodeJS.ErrnoException | null) => void; + export type BufferEncodingOption = + | 'buffer' + | { + encoding: 'buffer'; + }; + export interface ObjectEncodingOptions { + encoding?: BufferEncoding | null | undefined; + } + export type EncodingOption = ObjectEncodingOptions | BufferEncoding | undefined | null; + export type OpenMode = number | string; + export type Mode = number | string; + export interface StatsBase { + isFile(): boolean; + isDirectory(): boolean; + isBlockDevice(): boolean; + isCharacterDevice(): boolean; + isSymbolicLink(): boolean; + isFIFO(): boolean; + isSocket(): boolean; + dev: T; + ino: T; + mode: T; + nlink: T; + uid: T; + gid: T; + rdev: T; + size: T; + blksize: T; + blocks: T; + atimeMs: T; + mtimeMs: T; + ctimeMs: T; + birthtimeMs: T; + atime: Date; + mtime: Date; + ctime: Date; + birthtime: Date; + } + export interface Stats extends StatsBase {} + /** + * A `fs.Stats` object provides information about a file. + * + * Objects returned from {@link stat}, {@link lstat} and {@link fstat} and + * their synchronous counterparts are of this type. + * If `bigint` in the `options` passed to those methods is true, the numeric values + * will be `bigint` instead of `number`, and the object will contain additional + * nanosecond-precision properties suffixed with `Ns`. + * + * ```console + * Stats { + * dev: 2114, + * ino: 48064969, + * mode: 33188, + * nlink: 1, + * uid: 85, + * gid: 100, + * rdev: 0, + * size: 527, + * blksize: 4096, + * blocks: 8, + * atimeMs: 1318289051000.1, + * mtimeMs: 1318289051000.1, + * ctimeMs: 1318289051000.1, + * birthtimeMs: 1318289051000.1, + * atime: Mon, 10 Oct 2011 23:24:11 GMT, + * mtime: Mon, 10 Oct 2011 23:24:11 GMT, + * ctime: Mon, 10 Oct 2011 23:24:11 GMT, + * birthtime: Mon, 10 Oct 2011 23:24:11 GMT } + * ``` + * + * `bigint` version: + * + * ```console + * BigIntStats { + * dev: 2114n, + * ino: 48064969n, + * mode: 33188n, + * nlink: 1n, + * uid: 85n, + * gid: 100n, + * rdev: 0n, + * size: 527n, + * blksize: 4096n, + * blocks: 8n, + * atimeMs: 1318289051000n, + * mtimeMs: 1318289051000n, + * ctimeMs: 1318289051000n, + * birthtimeMs: 1318289051000n, + * atimeNs: 1318289051000000000n, + * mtimeNs: 1318289051000000000n, + * ctimeNs: 1318289051000000000n, + * birthtimeNs: 1318289051000000000n, + * atime: Mon, 10 Oct 2011 23:24:11 GMT, + * mtime: Mon, 10 Oct 2011 23:24:11 GMT, + * ctime: Mon, 10 Oct 2011 23:24:11 GMT, + * birthtime: Mon, 10 Oct 2011 23:24:11 GMT } + * ``` + * @since v0.1.21 + */ + export class Stats {} + /** + * A representation of a directory entry, which can be a file or a subdirectory + * within the directory, as returned by reading from an `fs.Dir`. The + * directory entry is a combination of the file name and file type pairs. + * + * Additionally, when {@link readdir} or {@link readdirSync} is called with + * the `withFileTypes` option set to `true`, the resulting array is filled with `fs.Dirent` objects, rather than strings or `Buffer` s. + * @since v10.10.0 + */ + export class Dirent { + /** + * Returns `true` if the `fs.Dirent` object describes a regular file. + * @since v10.10.0 + */ + isFile(): boolean; + /** + * Returns `true` if the `fs.Dirent` object describes a file system + * directory. + * @since v10.10.0 + */ + isDirectory(): boolean; + /** + * Returns `true` if the `fs.Dirent` object describes a block device. + * @since v10.10.0 + */ + isBlockDevice(): boolean; + /** + * Returns `true` if the `fs.Dirent` object describes a character device. + * @since v10.10.0 + */ + isCharacterDevice(): boolean; + /** + * Returns `true` if the `fs.Dirent` object describes a symbolic link. + * @since v10.10.0 + */ + isSymbolicLink(): boolean; + /** + * Returns `true` if the `fs.Dirent` object describes a first-in-first-out + * (FIFO) pipe. + * @since v10.10.0 + */ + isFIFO(): boolean; + /** + * Returns `true` if the `fs.Dirent` object describes a socket. + * @since v10.10.0 + */ + isSocket(): boolean; + /** + * The file name that this `fs.Dirent` object refers to. The type of this + * value is determined by the `options.encoding` passed to {@link readdir} or {@link readdirSync}. + * @since v10.10.0 + */ + name: string; + } + /** + * A class representing a directory stream. + * + * Created by {@link opendir}, {@link opendirSync}, or `fsPromises.opendir()`. + * + * ```js + * import { opendir } from 'fs/promises'; + * + * try { + * const dir = await opendir('./'); + * for await (const dirent of dir) + * console.log(dirent.name); + * } catch (err) { + * console.error(err); + * } + * ``` + * + * When using the async iterator, the `fs.Dir` object will be automatically + * closed after the iterator exits. + * @since v12.12.0 + */ + export class Dir implements AsyncIterable { + /** + * The read-only path of this directory as was provided to {@link opendir},{@link opendirSync}, or `fsPromises.opendir()`. + * @since v12.12.0 + */ + readonly path: string; + /** + * Asynchronously iterates over the directory via `readdir(3)` until all entries have been read. + */ + [Symbol.asyncIterator](): AsyncIterableIterator; + /** + * Asynchronously close the directory's underlying resource handle. + * Subsequent reads will result in errors. + * + * A promise is returned that will be resolved after the resource has been + * closed. + * @since v12.12.0 + */ + close(): Promise; + close(cb: NoParamCallback): void; + /** + * Synchronously close the directory's underlying resource handle. + * Subsequent reads will result in errors. + * @since v12.12.0 + */ + closeSync(): void; + /** + * Asynchronously read the next directory entry via [`readdir(3)`](http://man7.org/linux/man-pages/man3/readdir.3.html) as an `fs.Dirent`. + * + * A promise is returned that will be resolved with an `fs.Dirent`, or `null`if there are no more directory entries to read. + * + * Directory entries returned by this function are in no particular order as + * provided by the operating system's underlying directory mechanisms. + * Entries added or removed while iterating over the directory might not be + * included in the iteration results. + * @since v12.12.0 + * @return containing {fs.Dirent|null} + */ + read(): Promise; + read(cb: (err: NodeJS.ErrnoException | null, dirEnt: Dirent | null) => void): void; + /** + * Synchronously read the next directory entry as an `fs.Dirent`. See the + * POSIX [`readdir(3)`](http://man7.org/linux/man-pages/man3/readdir.3.html) documentation for more detail. + * + * If there are no more directory entries to read, `null` will be returned. + * + * Directory entries returned by this function are in no particular order as + * provided by the operating system's underlying directory mechanisms. + * Entries added or removed while iterating over the directory might not be + * included in the iteration results. + * @since v12.12.0 + */ + readSync(): Dirent | null; + } + /** + * Class: fs.StatWatcher + * @since v14.3.0, v12.20.0 + * Extends `EventEmitter` + * A successful call to {@link watchFile} method will return a new fs.StatWatcher object. + */ + export interface StatWatcher extends EventEmitter { + /** + * When called, requests that the Node.js event loop _not_ exit so long as the `fs.StatWatcher` is active. Calling `watcher.ref()` multiple times will have + * no effect. + * + * By default, all `fs.StatWatcher` objects are "ref'ed", making it normally + * unnecessary to call `watcher.ref()` unless `watcher.unref()` had been + * called previously. + * @since v14.3.0, v12.20.0 + */ + ref(): this; + /** + * When called, the active `fs.StatWatcher` object will not require the Node.js + * event loop to remain active. If there is no other activity keeping the + * event loop running, the process may exit before the `fs.StatWatcher` object's + * callback is invoked. Calling `watcher.unref()` multiple times will have + * no effect. + * @since v14.3.0, v12.20.0 + */ + unref(): this; + } + export interface FSWatcher extends EventEmitter { + /** + * Stop watching for changes on the given `fs.FSWatcher`. Once stopped, the `fs.FSWatcher` object is no longer usable. + * @since v0.5.8 + */ + close(): void; + /** + * events.EventEmitter + * 1. change + * 2. error + */ + addListener(event: string, listener: (...args: any[]) => void): this; + addListener(event: 'change', listener: (eventType: string, filename: string | Buffer) => void): this; + addListener(event: 'error', listener: (error: Error) => void): this; + addListener(event: 'close', listener: () => void): this; + on(event: string, listener: (...args: any[]) => void): this; + on(event: 'change', listener: (eventType: string, filename: string | Buffer) => void): this; + on(event: 'error', listener: (error: Error) => void): this; + on(event: 'close', listener: () => void): this; + once(event: string, listener: (...args: any[]) => void): this; + once(event: 'change', listener: (eventType: string, filename: string | Buffer) => void): this; + once(event: 'error', listener: (error: Error) => void): this; + once(event: 'close', listener: () => void): this; + prependListener(event: string, listener: (...args: any[]) => void): this; + prependListener(event: 'change', listener: (eventType: string, filename: string | Buffer) => void): this; + prependListener(event: 'error', listener: (error: Error) => void): this; + prependListener(event: 'close', listener: () => void): this; + prependOnceListener(event: string, listener: (...args: any[]) => void): this; + prependOnceListener(event: 'change', listener: (eventType: string, filename: string | Buffer) => void): this; + prependOnceListener(event: 'error', listener: (error: Error) => void): this; + prependOnceListener(event: 'close', listener: () => void): this; + } + /** + * Instances of `fs.ReadStream` are created and returned using the {@link createReadStream} function. + * @since v0.1.93 + */ + export class ReadStream extends stream.Readable { + close(callback?: (err?: NodeJS.ErrnoException | null) => void): void; + /** + * The number of bytes that have been read so far. + * @since v6.4.0 + */ + bytesRead: number; + /** + * The path to the file the stream is reading from as specified in the first + * argument to `fs.createReadStream()`. If `path` is passed as a string, then`readStream.path` will be a string. If `path` is passed as a `Buffer`, then`readStream.path` will be a + * `Buffer`. If `fd` is specified, then`readStream.path` will be `undefined`. + * @since v0.1.93 + */ + path: string | Buffer; + /** + * This property is `true` if the underlying file has not been opened yet, + * i.e. before the `'ready'` event is emitted. + * @since v11.2.0, v10.16.0 + */ + pending: boolean; + /** + * events.EventEmitter + * 1. open + * 2. close + * 3. ready + */ + addListener(event: 'close', listener: () => void): this; + addListener(event: 'data', listener: (chunk: Buffer | string) => void): this; + addListener(event: 'end', listener: () => void): this; + addListener(event: 'error', listener: (err: Error) => void): this; + addListener(event: 'open', listener: (fd: number) => void): this; + addListener(event: 'pause', listener: () => void): this; + addListener(event: 'readable', listener: () => void): this; + addListener(event: 'ready', listener: () => void): this; + addListener(event: 'resume', listener: () => void): this; + addListener(event: string | symbol, listener: (...args: any[]) => void): this; + on(event: 'close', listener: () => void): this; + on(event: 'data', listener: (chunk: Buffer | string) => void): this; + on(event: 'end', listener: () => void): this; + on(event: 'error', listener: (err: Error) => void): this; + on(event: 'open', listener: (fd: number) => void): this; + on(event: 'pause', listener: () => void): this; + on(event: 'readable', listener: () => void): this; + on(event: 'ready', listener: () => void): this; + on(event: 'resume', listener: () => void): this; + on(event: string | symbol, listener: (...args: any[]) => void): this; + once(event: 'close', listener: () => void): this; + once(event: 'data', listener: (chunk: Buffer | string) => void): this; + once(event: 'end', listener: () => void): this; + once(event: 'error', listener: (err: Error) => void): this; + once(event: 'open', listener: (fd: number) => void): this; + once(event: 'pause', listener: () => void): this; + once(event: 'readable', listener: () => void): this; + once(event: 'ready', listener: () => void): this; + once(event: 'resume', listener: () => void): this; + once(event: string | symbol, listener: (...args: any[]) => void): this; + prependListener(event: 'close', listener: () => void): this; + prependListener(event: 'data', listener: (chunk: Buffer | string) => void): this; + prependListener(event: 'end', listener: () => void): this; + prependListener(event: 'error', listener: (err: Error) => void): this; + prependListener(event: 'open', listener: (fd: number) => void): this; + prependListener(event: 'pause', listener: () => void): this; + prependListener(event: 'readable', listener: () => void): this; + prependListener(event: 'ready', listener: () => void): this; + prependListener(event: 'resume', listener: () => void): this; + prependListener(event: string | symbol, listener: (...args: any[]) => void): this; + prependOnceListener(event: 'close', listener: () => void): this; + prependOnceListener(event: 'data', listener: (chunk: Buffer | string) => void): this; + prependOnceListener(event: 'end', listener: () => void): this; + prependOnceListener(event: 'error', listener: (err: Error) => void): this; + prependOnceListener(event: 'open', listener: (fd: number) => void): this; + prependOnceListener(event: 'pause', listener: () => void): this; + prependOnceListener(event: 'readable', listener: () => void): this; + prependOnceListener(event: 'ready', listener: () => void): this; + prependOnceListener(event: 'resume', listener: () => void): this; + prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this; + } + /** + * * Extends `stream.Writable` + * + * Instances of `fs.WriteStream` are created and returned using the {@link createWriteStream} function. + * @since v0.1.93 + */ + export class WriteStream extends stream.Writable { + /** + * Closes `writeStream`. Optionally accepts a + * callback that will be executed once the `writeStream`is closed. + * @since v0.9.4 + */ + close(callback?: (err?: NodeJS.ErrnoException | null) => void): void; + /** + * The number of bytes written so far. Does not include data that is still queued + * for writing. + * @since v0.4.7 + */ + bytesWritten: number; + /** + * The path to the file the stream is writing to as specified in the first + * argument to {@link createWriteStream}. If `path` is passed as a string, then`writeStream.path` will be a string. If `path` is passed as a `Buffer`, then`writeStream.path` will be a + * `Buffer`. + * @since v0.1.93 + */ + path: string | Buffer; + /** + * This property is `true` if the underlying file has not been opened yet, + * i.e. before the `'ready'` event is emitted. + * @since v11.2.0 + */ + pending: boolean; + /** + * events.EventEmitter + * 1. open + * 2. close + * 3. ready + */ + addListener(event: 'close', listener: () => void): this; + addListener(event: 'drain', listener: () => void): this; + addListener(event: 'error', listener: (err: Error) => void): this; + addListener(event: 'finish', listener: () => void): this; + addListener(event: 'open', listener: (fd: number) => void): this; + addListener(event: 'pipe', listener: (src: stream.Readable) => void): this; + addListener(event: 'ready', listener: () => void): this; + addListener(event: 'unpipe', listener: (src: stream.Readable) => void): this; + addListener(event: string | symbol, listener: (...args: any[]) => void): this; + on(event: 'close', listener: () => void): this; + on(event: 'drain', listener: () => void): this; + on(event: 'error', listener: (err: Error) => void): this; + on(event: 'finish', listener: () => void): this; + on(event: 'open', listener: (fd: number) => void): this; + on(event: 'pipe', listener: (src: stream.Readable) => void): this; + on(event: 'ready', listener: () => void): this; + on(event: 'unpipe', listener: (src: stream.Readable) => void): this; + on(event: string | symbol, listener: (...args: any[]) => void): this; + once(event: 'close', listener: () => void): this; + once(event: 'drain', listener: () => void): this; + once(event: 'error', listener: (err: Error) => void): this; + once(event: 'finish', listener: () => void): this; + once(event: 'open', listener: (fd: number) => void): this; + once(event: 'pipe', listener: (src: stream.Readable) => void): this; + once(event: 'ready', listener: () => void): this; + once(event: 'unpipe', listener: (src: stream.Readable) => void): this; + once(event: string | symbol, listener: (...args: any[]) => void): this; + prependListener(event: 'close', listener: () => void): this; + prependListener(event: 'drain', listener: () => void): this; + prependListener(event: 'error', listener: (err: Error) => void): this; + prependListener(event: 'finish', listener: () => void): this; + prependListener(event: 'open', listener: (fd: number) => void): this; + prependListener(event: 'pipe', listener: (src: stream.Readable) => void): this; + prependListener(event: 'ready', listener: () => void): this; + prependListener(event: 'unpipe', listener: (src: stream.Readable) => void): this; + prependListener(event: string | symbol, listener: (...args: any[]) => void): this; + prependOnceListener(event: 'close', listener: () => void): this; + prependOnceListener(event: 'drain', listener: () => void): this; + prependOnceListener(event: 'error', listener: (err: Error) => void): this; + prependOnceListener(event: 'finish', listener: () => void): this; + prependOnceListener(event: 'open', listener: (fd: number) => void): this; + prependOnceListener(event: 'pipe', listener: (src: stream.Readable) => void): this; + prependOnceListener(event: 'ready', listener: () => void): this; + prependOnceListener(event: 'unpipe', listener: (src: stream.Readable) => void): this; + prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this; + } + /** + * Asynchronously rename file at `oldPath` to the pathname provided + * as `newPath`. In the case that `newPath` already exists, it will + * be overwritten. If there is a directory at `newPath`, an error will + * be raised instead. No arguments other than a possible exception are + * given to the completion callback. + * + * See also: [`rename(2)`](http://man7.org/linux/man-pages/man2/rename.2.html). + * + * ```js + * import { rename } from 'fs'; + * + * rename('oldFile.txt', 'newFile.txt', (err) => { + * if (err) throw err; + * console.log('Rename complete!'); + * }); + * ``` + * @since v0.0.2 + */ + export function rename(oldPath: PathLike, newPath: PathLike, callback: NoParamCallback): void; + export namespace rename { + /** + * Asynchronous rename(2) - Change the name or location of a file or directory. + * @param oldPath A path to a file. If a URL is provided, it must use the `file:` protocol. + * URL support is _experimental_. + * @param newPath A path to a file. If a URL is provided, it must use the `file:` protocol. + * URL support is _experimental_. + */ + function __promisify__(oldPath: PathLike, newPath: PathLike): Promise; + } + /** + * Renames the file from `oldPath` to `newPath`. Returns `undefined`. + * + * See the POSIX [`rename(2)`](http://man7.org/linux/man-pages/man2/rename.2.html) documentation for more details. + * @since v0.1.21 + */ + export function renameSync(oldPath: PathLike, newPath: PathLike): void; + /** + * Truncates the file. No arguments other than a possible exception are + * given to the completion callback. A file descriptor can also be passed as the + * first argument. In this case, `fs.ftruncate()` is called. + * + * ```js + * import { truncate } from 'fs'; + * // Assuming that 'path/file.txt' is a regular file. + * truncate('path/file.txt', (err) => { + * if (err) throw err; + * console.log('path/file.txt was truncated'); + * }); + * ``` + * + * Passing a file descriptor is deprecated and may result in an error being thrown + * in the future. + * + * See the POSIX [`truncate(2)`](http://man7.org/linux/man-pages/man2/truncate.2.html) documentation for more details. + * @since v0.8.6 + * @param [len=0] + */ + export function truncate(path: PathLike, len: number | undefined | null, callback: NoParamCallback): void; + /** + * Asynchronous truncate(2) - Truncate a file to a specified length. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + */ + export function truncate(path: PathLike, callback: NoParamCallback): void; + export namespace truncate { + /** + * Asynchronous truncate(2) - Truncate a file to a specified length. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param len If not specified, defaults to `0`. + */ + function __promisify__(path: PathLike, len?: number | null): Promise; + } + /** + * Truncates the file. Returns `undefined`. A file descriptor can also be + * passed as the first argument. In this case, `fs.ftruncateSync()` is called. + * + * Passing a file descriptor is deprecated and may result in an error being thrown + * in the future. + * @since v0.8.6 + * @param [len=0] + */ + export function truncateSync(path: PathLike, len?: number | null): void; + /** + * Truncates the file descriptor. No arguments other than a possible exception are + * given to the completion callback. + * + * See the POSIX [`ftruncate(2)`](http://man7.org/linux/man-pages/man2/ftruncate.2.html) documentation for more detail. + * + * If the file referred to by the file descriptor was larger than `len` bytes, only + * the first `len` bytes will be retained in the file. + * + * For example, the following program retains only the first four bytes of the + * file: + * + * ```js + * import { open, close, ftruncate } from 'fs'; + * + * function closeFd(fd) { + * close(fd, (err) => { + * if (err) throw err; + * }); + * } + * + * open('temp.txt', 'r+', (err, fd) => { + * if (err) throw err; + * + * try { + * ftruncate(fd, 4, (err) => { + * closeFd(fd); + * if (err) throw err; + * }); + * } catch (err) { + * closeFd(fd); + * if (err) throw err; + * } + * }); + * ``` + * + * If the file previously was shorter than `len` bytes, it is extended, and the + * extended part is filled with null bytes (`'\0'`): + * + * If `len` is negative then `0` will be used. + * @since v0.8.6 + * @param [len=0] + */ + export function ftruncate(fd: number, len: number | undefined | null, callback: NoParamCallback): void; + /** + * Asynchronous ftruncate(2) - Truncate a file to a specified length. + * @param fd A file descriptor. + */ + export function ftruncate(fd: number, callback: NoParamCallback): void; + export namespace ftruncate { + /** + * Asynchronous ftruncate(2) - Truncate a file to a specified length. + * @param fd A file descriptor. + * @param len If not specified, defaults to `0`. + */ + function __promisify__(fd: number, len?: number | null): Promise; + } + /** + * Truncates the file descriptor. Returns `undefined`. + * + * For detailed information, see the documentation of the asynchronous version of + * this API: {@link ftruncate}. + * @since v0.8.6 + * @param [len=0] + */ + export function ftruncateSync(fd: number, len?: number | null): void; + /** + * Asynchronously changes owner and group of a file. No arguments other than a + * possible exception are given to the completion callback. + * + * See the POSIX [`chown(2)`](http://man7.org/linux/man-pages/man2/chown.2.html) documentation for more detail. + * @since v0.1.97 + */ + export function chown(path: PathLike, uid: number, gid: number, callback: NoParamCallback): void; + export namespace chown { + /** + * Asynchronous chown(2) - Change ownership of a file. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + */ + function __promisify__(path: PathLike, uid: number, gid: number): Promise; + } + /** + * Synchronously changes owner and group of a file. Returns `undefined`. + * This is the synchronous version of {@link chown}. + * + * See the POSIX [`chown(2)`](http://man7.org/linux/man-pages/man2/chown.2.html) documentation for more detail. + * @since v0.1.97 + */ + export function chownSync(path: PathLike, uid: number, gid: number): void; + /** + * Sets the owner of the file. No arguments other than a possible exception are + * given to the completion callback. + * + * See the POSIX [`fchown(2)`](http://man7.org/linux/man-pages/man2/fchown.2.html) documentation for more detail. + * @since v0.4.7 + */ + export function fchown(fd: number, uid: number, gid: number, callback: NoParamCallback): void; + export namespace fchown { + /** + * Asynchronous fchown(2) - Change ownership of a file. + * @param fd A file descriptor. + */ + function __promisify__(fd: number, uid: number, gid: number): Promise; + } + /** + * Sets the owner of the file. Returns `undefined`. + * + * See the POSIX [`fchown(2)`](http://man7.org/linux/man-pages/man2/fchown.2.html) documentation for more detail. + * @since v0.4.7 + * @param uid The file's new owner's user id. + * @param gid The file's new group's group id. + */ + export function fchownSync(fd: number, uid: number, gid: number): void; + /** + * Set the owner of the symbolic link. No arguments other than a possible + * exception are given to the completion callback. + * + * See the POSIX [`lchown(2)`](http://man7.org/linux/man-pages/man2/lchown.2.html) documentation for more detail. + */ + export function lchown(path: PathLike, uid: number, gid: number, callback: NoParamCallback): void; + export namespace lchown { + /** + * Asynchronous lchown(2) - Change ownership of a file. Does not dereference symbolic links. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + */ + function __promisify__(path: PathLike, uid: number, gid: number): Promise; + } + /** + * Set the owner for the path. Returns `undefined`. + * + * See the POSIX [`lchown(2)`](http://man7.org/linux/man-pages/man2/lchown.2.html) documentation for more details. + * @param uid The file's new owner's user id. + * @param gid The file's new group's group id. + */ + export function lchownSync(path: PathLike, uid: number, gid: number): void; + /** + * Changes the access and modification times of a file in the same way as {@link utimes}, with the difference that if the path refers to a symbolic + * link, then the link is not dereferenced: instead, the timestamps of the + * symbolic link itself are changed. + * + * No arguments other than a possible exception are given to the completion + * callback. + * @since v14.5.0, v12.19.0 + */ + export function lutimes(path: PathLike, atime: TimeLike, mtime: TimeLike, callback: NoParamCallback): void; + export namespace lutimes { + /** + * Changes the access and modification times of a file in the same way as `fsPromises.utimes()`, + * with the difference that if the path refers to a symbolic link, then the link is not + * dereferenced: instead, the timestamps of the symbolic link itself are changed. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param atime The last access time. If a string is provided, it will be coerced to number. + * @param mtime The last modified time. If a string is provided, it will be coerced to number. + */ + function __promisify__(path: PathLike, atime: TimeLike, mtime: TimeLike): Promise; + } + /** + * Change the file system timestamps of the symbolic link referenced by `path`. + * Returns `undefined`, or throws an exception when parameters are incorrect or + * the operation fails. This is the synchronous version of {@link lutimes}. + * @since v14.5.0, v12.19.0 + */ + export function lutimesSync(path: PathLike, atime: TimeLike, mtime: TimeLike): void; + /** + * Asynchronously changes the permissions of a file. No arguments other than a + * possible exception are given to the completion callback. + * + * See the POSIX [`chmod(2)`](http://man7.org/linux/man-pages/man2/chmod.2.html) documentation for more detail. + * + * ```js + * import { chmod } from 'fs'; + * + * chmod('my_file.txt', 0o775, (err) => { + * if (err) throw err; + * console.log('The permissions for file "my_file.txt" have been changed!'); + * }); + * ``` + * @since v0.1.30 + */ + export function chmod(path: PathLike, mode: Mode, callback: NoParamCallback): void; + export namespace chmod { + /** + * Asynchronous chmod(2) - Change permissions of a file. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param mode A file mode. If a string is passed, it is parsed as an octal integer. + */ + function __promisify__(path: PathLike, mode: Mode): Promise; + } + /** + * For detailed information, see the documentation of the asynchronous version of + * this API: {@link chmod}. + * + * See the POSIX [`chmod(2)`](http://man7.org/linux/man-pages/man2/chmod.2.html) documentation for more detail. + * @since v0.6.7 + */ + export function chmodSync(path: PathLike, mode: Mode): void; + /** + * Sets the permissions on the file. No arguments other than a possible exception + * are given to the completion callback. + * + * See the POSIX [`fchmod(2)`](http://man7.org/linux/man-pages/man2/fchmod.2.html) documentation for more detail. + * @since v0.4.7 + */ + export function fchmod(fd: number, mode: Mode, callback: NoParamCallback): void; + export namespace fchmod { + /** + * Asynchronous fchmod(2) - Change permissions of a file. + * @param fd A file descriptor. + * @param mode A file mode. If a string is passed, it is parsed as an octal integer. + */ + function __promisify__(fd: number, mode: Mode): Promise; + } + /** + * Sets the permissions on the file. Returns `undefined`. + * + * See the POSIX [`fchmod(2)`](http://man7.org/linux/man-pages/man2/fchmod.2.html) documentation for more detail. + * @since v0.4.7 + */ + export function fchmodSync(fd: number, mode: Mode): void; + /** + * Changes the permissions on a symbolic link. No arguments other than a possible + * exception are given to the completion callback. + * + * This method is only implemented on macOS. + * + * See the POSIX [`lchmod(2)`](https://www.freebsd.org/cgi/man.cgi?query=lchmod&sektion=2) documentation for more detail. + * @deprecated Since v0.4.7 + */ + export function lchmod(path: PathLike, mode: Mode, callback: NoParamCallback): void; + /** @deprecated */ + export namespace lchmod { + /** + * Asynchronous lchmod(2) - Change permissions of a file. Does not dereference symbolic links. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param mode A file mode. If a string is passed, it is parsed as an octal integer. + */ + function __promisify__(path: PathLike, mode: Mode): Promise; + } + /** + * Changes the permissions on a symbolic link. Returns `undefined`. + * + * This method is only implemented on macOS. + * + * See the POSIX [`lchmod(2)`](https://www.freebsd.org/cgi/man.cgi?query=lchmod&sektion=2) documentation for more detail. + * @deprecated Since v0.4.7 + */ + export function lchmodSync(path: PathLike, mode: Mode): void; + /** + * Asynchronous [`stat(2)`](http://man7.org/linux/man-pages/man2/stat.2.html). The callback gets two arguments `(err, stats)` where`stats` is an `fs.Stats` object. + * + * In case of an error, the `err.code` will be one of `Common System Errors`. + * + * Using `fs.stat()` to check for the existence of a file before calling`fs.open()`, `fs.readFile()` or `fs.writeFile()` is not recommended. + * Instead, user code should open/read/write the file directly and handle the + * error raised if the file is not available. + * + * To check if a file exists without manipulating it afterwards, {@link access} is recommended. + * + * For example, given the following directory structure: + * + * ```text + * - txtDir + * -- file.txt + * - app.js + * ``` + * + * The next program will check for the stats of the given paths: + * + * ```js + * import { stat } from 'fs'; + * + * const pathsToCheck = ['./txtDir', './txtDir/file.txt']; + * + * for (let i = 0; i < pathsToCheck.length; i++) { + * stat(pathsToCheck[i], (err, stats) => { + * console.log(stats.isDirectory()); + * console.log(stats); + * }); + * } + * ``` + * + * The resulting output will resemble: + * + * ```console + * true + * Stats { + * dev: 16777220, + * mode: 16877, + * nlink: 3, + * uid: 501, + * gid: 20, + * rdev: 0, + * blksize: 4096, + * ino: 14214262, + * size: 96, + * blocks: 0, + * atimeMs: 1561174653071.963, + * mtimeMs: 1561174614583.3518, + * ctimeMs: 1561174626623.5366, + * birthtimeMs: 1561174126937.2893, + * atime: 2019-06-22T03:37:33.072Z, + * mtime: 2019-06-22T03:36:54.583Z, + * ctime: 2019-06-22T03:37:06.624Z, + * birthtime: 2019-06-22T03:28:46.937Z + * } + * false + * Stats { + * dev: 16777220, + * mode: 33188, + * nlink: 1, + * uid: 501, + * gid: 20, + * rdev: 0, + * blksize: 4096, + * ino: 14214074, + * size: 8, + * blocks: 8, + * atimeMs: 1561174616618.8555, + * mtimeMs: 1561174614584, + * ctimeMs: 1561174614583.8145, + * birthtimeMs: 1561174007710.7478, + * atime: 2019-06-22T03:36:56.619Z, + * mtime: 2019-06-22T03:36:54.584Z, + * ctime: 2019-06-22T03:36:54.584Z, + * birthtime: 2019-06-22T03:26:47.711Z + * } + * ``` + * @since v0.0.2 + */ + export function stat(path: PathLike, callback: (err: NodeJS.ErrnoException | null, stats: Stats) => void): void; + export function stat( + path: PathLike, + options: + | (StatOptions & { + bigint?: false | undefined; + }) + | undefined, + callback: (err: NodeJS.ErrnoException | null, stats: Stats) => void + ): void; + export function stat( + path: PathLike, + options: StatOptions & { + bigint: true; + }, + callback: (err: NodeJS.ErrnoException | null, stats: BigIntStats) => void + ): void; + export function stat(path: PathLike, options: StatOptions | undefined, callback: (err: NodeJS.ErrnoException | null, stats: Stats | BigIntStats) => void): void; + export namespace stat { + /** + * Asynchronous stat(2) - Get file status. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + */ + function __promisify__( + path: PathLike, + options?: StatOptions & { + bigint?: false | undefined; + } + ): Promise; + function __promisify__( + path: PathLike, + options: StatOptions & { + bigint: true; + } + ): Promise; + function __promisify__(path: PathLike, options?: StatOptions): Promise; + } + export interface StatSyncFn extends Function { + (path: PathLike, options?: undefined): Stats; + ( + path: PathLike, + options?: StatSyncOptions & { + bigint?: false | undefined; + throwIfNoEntry: false; + } + ): Stats | undefined; + ( + path: PathLike, + options: StatSyncOptions & { + bigint: true; + throwIfNoEntry: false; + } + ): BigIntStats | undefined; + ( + path: PathLike, + options?: StatSyncOptions & { + bigint?: false | undefined; + } + ): Stats; + ( + path: PathLike, + options: StatSyncOptions & { + bigint: true; + } + ): BigIntStats; + ( + path: PathLike, + options: StatSyncOptions & { + bigint: boolean; + throwIfNoEntry?: false | undefined; + } + ): Stats | BigIntStats; + (path: PathLike, options?: StatSyncOptions): Stats | BigIntStats | undefined; + } + /** + * Synchronous stat(2) - Get file status. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + */ + export const statSync: StatSyncFn; + /** + * Invokes the callback with the `fs.Stats` for the file descriptor. + * + * See the POSIX [`fstat(2)`](http://man7.org/linux/man-pages/man2/fstat.2.html) documentation for more detail. + * @since v0.1.95 + */ + export function fstat(fd: number, callback: (err: NodeJS.ErrnoException | null, stats: Stats) => void): void; + export function fstat( + fd: number, + options: + | (StatOptions & { + bigint?: false | undefined; + }) + | undefined, + callback: (err: NodeJS.ErrnoException | null, stats: Stats) => void + ): void; + export function fstat( + fd: number, + options: StatOptions & { + bigint: true; + }, + callback: (err: NodeJS.ErrnoException | null, stats: BigIntStats) => void + ): void; + export function fstat(fd: number, options: StatOptions | undefined, callback: (err: NodeJS.ErrnoException | null, stats: Stats | BigIntStats) => void): void; + export namespace fstat { + /** + * Asynchronous fstat(2) - Get file status. + * @param fd A file descriptor. + */ + function __promisify__( + fd: number, + options?: StatOptions & { + bigint?: false | undefined; + } + ): Promise; + function __promisify__( + fd: number, + options: StatOptions & { + bigint: true; + } + ): Promise; + function __promisify__(fd: number, options?: StatOptions): Promise; + } + /** + * Retrieves the `fs.Stats` for the file descriptor. + * + * See the POSIX [`fstat(2)`](http://man7.org/linux/man-pages/man2/fstat.2.html) documentation for more detail. + * @since v0.1.95 + */ + export function fstatSync( + fd: number, + options?: StatOptions & { + bigint?: false | undefined; + } + ): Stats; + export function fstatSync( + fd: number, + options: StatOptions & { + bigint: true; + } + ): BigIntStats; + export function fstatSync(fd: number, options?: StatOptions): Stats | BigIntStats; + /** + * Retrieves the `fs.Stats` for the symbolic link referred to by the path. + * The callback gets two arguments `(err, stats)` where `stats` is a `fs.Stats` object. `lstat()` is identical to `stat()`, except that if `path` is a symbolic + * link, then the link itself is stat-ed, not the file that it refers to. + * + * See the POSIX [`lstat(2)`](http://man7.org/linux/man-pages/man2/lstat.2.html) documentation for more details. + * @since v0.1.30 + */ + export function lstat(path: PathLike, callback: (err: NodeJS.ErrnoException | null, stats: Stats) => void): void; + export function lstat( + path: PathLike, + options: + | (StatOptions & { + bigint?: false | undefined; + }) + | undefined, + callback: (err: NodeJS.ErrnoException | null, stats: Stats) => void + ): void; + export function lstat( + path: PathLike, + options: StatOptions & { + bigint: true; + }, + callback: (err: NodeJS.ErrnoException | null, stats: BigIntStats) => void + ): void; + export function lstat(path: PathLike, options: StatOptions | undefined, callback: (err: NodeJS.ErrnoException | null, stats: Stats | BigIntStats) => void): void; + export namespace lstat { + /** + * Asynchronous lstat(2) - Get file status. Does not dereference symbolic links. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + */ + function __promisify__( + path: PathLike, + options?: StatOptions & { + bigint?: false | undefined; + } + ): Promise; + function __promisify__( + path: PathLike, + options: StatOptions & { + bigint: true; + } + ): Promise; + function __promisify__(path: PathLike, options?: StatOptions): Promise; + } + /** + * Synchronous lstat(2) - Get file status. Does not dereference symbolic links. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + */ + export const lstatSync: StatSyncFn; + /** + * Creates a new link from the `existingPath` to the `newPath`. See the POSIX [`link(2)`](http://man7.org/linux/man-pages/man2/link.2.html) documentation for more detail. No arguments other than + * a possible + * exception are given to the completion callback. + * @since v0.1.31 + */ + export function link(existingPath: PathLike, newPath: PathLike, callback: NoParamCallback): void; + export namespace link { + /** + * Asynchronous link(2) - Create a new link (also known as a hard link) to an existing file. + * @param existingPath A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param newPath A path to a file. If a URL is provided, it must use the `file:` protocol. + */ + function __promisify__(existingPath: PathLike, newPath: PathLike): Promise; + } + /** + * Creates a new link from the `existingPath` to the `newPath`. See the POSIX [`link(2)`](http://man7.org/linux/man-pages/man2/link.2.html) documentation for more detail. Returns `undefined`. + * @since v0.1.31 + */ + export function linkSync(existingPath: PathLike, newPath: PathLike): void; + /** + * Creates the link called `path` pointing to `target`. No arguments other than a + * possible exception are given to the completion callback. + * + * See the POSIX [`symlink(2)`](http://man7.org/linux/man-pages/man2/symlink.2.html) documentation for more details. + * + * The `type` argument is only available on Windows and ignored on other platforms. + * It can be set to `'dir'`, `'file'`, or `'junction'`. If the `type` argument is + * not set, Node.js will autodetect `target` type and use `'file'` or `'dir'`. If + * the `target` does not exist, `'file'` will be used. Windows junction points + * require the destination path to be absolute. When using `'junction'`, the`target` argument will automatically be normalized to absolute path. + * + * Relative targets are relative to the link’s parent directory. + * + * ```js + * import { symlink } from 'fs'; + * + * symlink('./mew', './mewtwo', callback); + * ``` + * + * The above example creates a symbolic link `mewtwo` which points to `mew` in the + * same directory: + * + * ```bash + * $ tree . + * . + * ├── mew + * └── mewtwo -> ./mew + * ``` + * @since v0.1.31 + */ + export function symlink(target: PathLike, path: PathLike, type: symlink.Type | undefined | null, callback: NoParamCallback): void; + /** + * Asynchronous symlink(2) - Create a new symbolic link to an existing file. + * @param target A path to an existing file. If a URL is provided, it must use the `file:` protocol. + * @param path A path to the new symlink. If a URL is provided, it must use the `file:` protocol. + */ + export function symlink(target: PathLike, path: PathLike, callback: NoParamCallback): void; + export namespace symlink { + /** + * Asynchronous symlink(2) - Create a new symbolic link to an existing file. + * @param target A path to an existing file. If a URL is provided, it must use the `file:` protocol. + * @param path A path to the new symlink. If a URL is provided, it must use the `file:` protocol. + * @param type May be set to `'dir'`, `'file'`, or `'junction'` (default is `'file'`) and is only available on Windows (ignored on other platforms). + * When using `'junction'`, the `target` argument will automatically be normalized to an absolute path. + */ + function __promisify__(target: PathLike, path: PathLike, type?: string | null): Promise; + type Type = 'dir' | 'file' | 'junction'; + } + /** + * Returns `undefined`. + * + * For detailed information, see the documentation of the asynchronous version of + * this API: {@link symlink}. + * @since v0.1.31 + */ + export function symlinkSync(target: PathLike, path: PathLike, type?: symlink.Type | null): void; + /** + * Reads the contents of the symbolic link referred to by `path`. The callback gets + * two arguments `(err, linkString)`. + * + * See the POSIX [`readlink(2)`](http://man7.org/linux/man-pages/man2/readlink.2.html) documentation for more details. + * + * The optional `options` argument can be a string specifying an encoding, or an + * object with an `encoding` property specifying the character encoding to use for + * the link path passed to the callback. If the `encoding` is set to `'buffer'`, + * the link path returned will be passed as a `Buffer` object. + * @since v0.1.31 + */ + export function readlink(path: PathLike, options: EncodingOption, callback: (err: NodeJS.ErrnoException | null, linkString: string) => void): void; + /** + * Asynchronous readlink(2) - read value of a symbolic link. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + export function readlink(path: PathLike, options: BufferEncodingOption, callback: (err: NodeJS.ErrnoException | null, linkString: Buffer) => void): void; + /** + * Asynchronous readlink(2) - read value of a symbolic link. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + export function readlink(path: PathLike, options: EncodingOption, callback: (err: NodeJS.ErrnoException | null, linkString: string | Buffer) => void): void; + /** + * Asynchronous readlink(2) - read value of a symbolic link. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + */ + export function readlink(path: PathLike, callback: (err: NodeJS.ErrnoException | null, linkString: string) => void): void; + export namespace readlink { + /** + * Asynchronous readlink(2) - read value of a symbolic link. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function __promisify__(path: PathLike, options?: EncodingOption): Promise; + /** + * Asynchronous readlink(2) - read value of a symbolic link. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function __promisify__(path: PathLike, options: BufferEncodingOption): Promise; + /** + * Asynchronous readlink(2) - read value of a symbolic link. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function __promisify__(path: PathLike, options?: EncodingOption): Promise; + } + /** + * Returns the symbolic link's string value. + * + * See the POSIX [`readlink(2)`](http://man7.org/linux/man-pages/man2/readlink.2.html) documentation for more details. + * + * The optional `options` argument can be a string specifying an encoding, or an + * object with an `encoding` property specifying the character encoding to use for + * the link path returned. If the `encoding` is set to `'buffer'`, + * the link path returned will be passed as a `Buffer` object. + * @since v0.1.31 + */ + export function readlinkSync(path: PathLike, options?: EncodingOption): string; + /** + * Synchronous readlink(2) - read value of a symbolic link. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + export function readlinkSync(path: PathLike, options: BufferEncodingOption): Buffer; + /** + * Synchronous readlink(2) - read value of a symbolic link. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + export function readlinkSync(path: PathLike, options?: EncodingOption): string | Buffer; + /** + * Asynchronously computes the canonical pathname by resolving `.`, `..` and + * symbolic links. + * + * A canonical pathname is not necessarily unique. Hard links and bind mounts can + * expose a file system entity through many pathnames. + * + * This function behaves like [`realpath(3)`](http://man7.org/linux/man-pages/man3/realpath.3.html), with some exceptions: + * + * 1. No case conversion is performed on case-insensitive file systems. + * 2. The maximum number of symbolic links is platform-independent and generally + * (much) higher than what the native [`realpath(3)`](http://man7.org/linux/man-pages/man3/realpath.3.html) implementation supports. + * + * The `callback` gets two arguments `(err, resolvedPath)`. May use `process.cwd`to resolve relative paths. + * + * Only paths that can be converted to UTF8 strings are supported. + * + * The optional `options` argument can be a string specifying an encoding, or an + * object with an `encoding` property specifying the character encoding to use for + * the path passed to the callback. If the `encoding` is set to `'buffer'`, + * the path returned will be passed as a `Buffer` object. + * + * If `path` resolves to a socket or a pipe, the function will return a system + * dependent name for that object. + * @since v0.1.31 + */ + export function realpath(path: PathLike, options: EncodingOption, callback: (err: NodeJS.ErrnoException | null, resolvedPath: string) => void): void; + /** + * Asynchronous realpath(3) - return the canonicalized absolute pathname. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + export function realpath(path: PathLike, options: BufferEncodingOption, callback: (err: NodeJS.ErrnoException | null, resolvedPath: Buffer) => void): void; + /** + * Asynchronous realpath(3) - return the canonicalized absolute pathname. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + export function realpath(path: PathLike, options: EncodingOption, callback: (err: NodeJS.ErrnoException | null, resolvedPath: string | Buffer) => void): void; + /** + * Asynchronous realpath(3) - return the canonicalized absolute pathname. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + */ + export function realpath(path: PathLike, callback: (err: NodeJS.ErrnoException | null, resolvedPath: string) => void): void; + export namespace realpath { + /** + * Asynchronous realpath(3) - return the canonicalized absolute pathname. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function __promisify__(path: PathLike, options?: EncodingOption): Promise; + /** + * Asynchronous realpath(3) - return the canonicalized absolute pathname. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function __promisify__(path: PathLike, options: BufferEncodingOption): Promise; + /** + * Asynchronous realpath(3) - return the canonicalized absolute pathname. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function __promisify__(path: PathLike, options?: EncodingOption): Promise; + /** + * Asynchronous [`realpath(3)`](http://man7.org/linux/man-pages/man3/realpath.3.html). + * + * The `callback` gets two arguments `(err, resolvedPath)`. + * + * Only paths that can be converted to UTF8 strings are supported. + * + * The optional `options` argument can be a string specifying an encoding, or an + * object with an `encoding` property specifying the character encoding to use for + * the path passed to the callback. If the `encoding` is set to `'buffer'`, + * the path returned will be passed as a `Buffer` object. + * + * On Linux, when Node.js is linked against musl libc, the procfs file system must + * be mounted on `/proc` in order for this function to work. Glibc does not have + * this restriction. + * @since v9.2.0 + */ + function native(path: PathLike, options: EncodingOption, callback: (err: NodeJS.ErrnoException | null, resolvedPath: string) => void): void; + function native(path: PathLike, options: BufferEncodingOption, callback: (err: NodeJS.ErrnoException | null, resolvedPath: Buffer) => void): void; + function native(path: PathLike, options: EncodingOption, callback: (err: NodeJS.ErrnoException | null, resolvedPath: string | Buffer) => void): void; + function native(path: PathLike, callback: (err: NodeJS.ErrnoException | null, resolvedPath: string) => void): void; + } + /** + * Returns the resolved pathname. + * + * For detailed information, see the documentation of the asynchronous version of + * this API: {@link realpath}. + * @since v0.1.31 + */ + export function realpathSync(path: PathLike, options?: EncodingOption): string; + /** + * Synchronous realpath(3) - return the canonicalized absolute pathname. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + export function realpathSync(path: PathLike, options: BufferEncodingOption): Buffer; + /** + * Synchronous realpath(3) - return the canonicalized absolute pathname. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + export function realpathSync(path: PathLike, options?: EncodingOption): string | Buffer; + export namespace realpathSync { + function native(path: PathLike, options?: EncodingOption): string; + function native(path: PathLike, options: BufferEncodingOption): Buffer; + function native(path: PathLike, options?: EncodingOption): string | Buffer; + } + /** + * Asynchronously removes a file or symbolic link. No arguments other than a + * possible exception are given to the completion callback. + * + * ```js + * import { unlink } from 'fs'; + * // Assuming that 'path/file.txt' is a regular file. + * unlink('path/file.txt', (err) => { + * if (err) throw err; + * console.log('path/file.txt was deleted'); + * }); + * ``` + * + * `fs.unlink()` will not work on a directory, empty or otherwise. To remove a + * directory, use {@link rmdir}. + * + * See the POSIX [`unlink(2)`](http://man7.org/linux/man-pages/man2/unlink.2.html) documentation for more details. + * @since v0.0.2 + */ + export function unlink(path: PathLike, callback: NoParamCallback): void; + export namespace unlink { + /** + * Asynchronous unlink(2) - delete a name and possibly the file it refers to. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + */ + function __promisify__(path: PathLike): Promise; + } + /** + * Synchronous [`unlink(2)`](http://man7.org/linux/man-pages/man2/unlink.2.html). Returns `undefined`. + * @since v0.1.21 + */ + export function unlinkSync(path: PathLike): void; + export interface RmDirOptions { + /** + * If an `EBUSY`, `EMFILE`, `ENFILE`, `ENOTEMPTY`, or + * `EPERM` error is encountered, Node.js will retry the operation with a linear + * backoff wait of `retryDelay` ms longer on each try. This option represents the + * number of retries. This option is ignored if the `recursive` option is not + * `true`. + * @default 0 + */ + maxRetries?: number | undefined; + /** + * @deprecated since v14.14.0 In future versions of Node.js and will trigger a warning + * `fs.rmdir(path, { recursive: true })` will throw if `path` does not exist or is a file. + * Use `fs.rm(path, { recursive: true, force: true })` instead. + * + * If `true`, perform a recursive directory removal. In + * recursive mode, operations are retried on failure. + * @default false + */ + recursive?: boolean | undefined; + /** + * The amount of time in milliseconds to wait between retries. + * This option is ignored if the `recursive` option is not `true`. + * @default 100 + */ + retryDelay?: number | undefined; + } + /** + * Asynchronous [`rmdir(2)`](http://man7.org/linux/man-pages/man2/rmdir.2.html). No arguments other than a possible exception are given + * to the completion callback. + * + * Using `fs.rmdir()` on a file (not a directory) results in an `ENOENT` error on + * Windows and an `ENOTDIR` error on POSIX. + * + * To get a behavior similar to the `rm -rf` Unix command, use {@link rm} with options `{ recursive: true, force: true }`. + * @since v0.0.2 + */ + export function rmdir(path: PathLike, callback: NoParamCallback): void; + export function rmdir(path: PathLike, options: RmDirOptions, callback: NoParamCallback): void; + export namespace rmdir { + /** + * Asynchronous rmdir(2) - delete a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + */ + function __promisify__(path: PathLike, options?: RmDirOptions): Promise; + } + /** + * Synchronous [`rmdir(2)`](http://man7.org/linux/man-pages/man2/rmdir.2.html). Returns `undefined`. + * + * Using `fs.rmdirSync()` on a file (not a directory) results in an `ENOENT` error + * on Windows and an `ENOTDIR` error on POSIX. + * + * To get a behavior similar to the `rm -rf` Unix command, use {@link rmSync} with options `{ recursive: true, force: true }`. + * @since v0.1.21 + */ + export function rmdirSync(path: PathLike, options?: RmDirOptions): void; + export interface RmOptions { + /** + * When `true`, exceptions will be ignored if `path` does not exist. + * @default false + */ + force?: boolean | undefined; + /** + * If an `EBUSY`, `EMFILE`, `ENFILE`, `ENOTEMPTY`, or + * `EPERM` error is encountered, Node.js will retry the operation with a linear + * backoff wait of `retryDelay` ms longer on each try. This option represents the + * number of retries. This option is ignored if the `recursive` option is not + * `true`. + * @default 0 + */ + maxRetries?: number | undefined; + /** + * If `true`, perform a recursive directory removal. In + * recursive mode, operations are retried on failure. + * @default false + */ + recursive?: boolean | undefined; + /** + * The amount of time in milliseconds to wait between retries. + * This option is ignored if the `recursive` option is not `true`. + * @default 100 + */ + retryDelay?: number | undefined; + } + /** + * Asynchronously removes files and directories (modeled on the standard POSIX `rm`utility). No arguments other than a possible exception are given to the + * completion callback. + * @since v14.14.0 + */ + export function rm(path: PathLike, callback: NoParamCallback): void; + export function rm(path: PathLike, options: RmOptions, callback: NoParamCallback): void; + export namespace rm { + /** + * Asynchronously removes files and directories (modeled on the standard POSIX `rm` utility). + */ + function __promisify__(path: PathLike, options?: RmOptions): Promise; + } + /** + * Synchronously removes files and directories (modeled on the standard POSIX `rm`utility). Returns `undefined`. + * @since v14.14.0 + */ + export function rmSync(path: PathLike, options?: RmOptions): void; + export interface MakeDirectoryOptions { + /** + * Indicates whether parent folders should be created. + * If a folder was created, the path to the first created folder will be returned. + * @default false + */ + recursive?: boolean | undefined; + /** + * A file mode. If a string is passed, it is parsed as an octal integer. If not specified + * @default 0o777 + */ + mode?: Mode | undefined; + } + /** + * Asynchronously creates a directory. + * + * The callback is given a possible exception and, if `recursive` is `true`, the + * first directory path created, `(err[, path])`.`path` can still be `undefined` when `recursive` is `true`, if no directory was + * created. + * + * The optional `options` argument can be an integer specifying `mode` (permission + * and sticky bits), or an object with a `mode` property and a `recursive`property indicating whether parent directories should be created. Calling`fs.mkdir()` when `path` is a directory that + * exists results in an error only + * when `recursive` is false. + * + * ```js + * import { mkdir } from 'fs'; + * + * // Creates /tmp/a/apple, regardless of whether `/tmp` and /tmp/a exist. + * mkdir('/tmp/a/apple', { recursive: true }, (err) => { + * if (err) throw err; + * }); + * ``` + * + * On Windows, using `fs.mkdir()` on the root directory even with recursion will + * result in an error: + * + * ```js + * import { mkdir } from 'fs'; + * + * mkdir('/', { recursive: true }, (err) => { + * // => [Error: EPERM: operation not permitted, mkdir 'C:\'] + * }); + * ``` + * + * See the POSIX [`mkdir(2)`](http://man7.org/linux/man-pages/man2/mkdir.2.html) documentation for more details. + * @since v0.1.8 + */ + export function mkdir( + path: PathLike, + options: MakeDirectoryOptions & { + recursive: true; + }, + callback: (err: NodeJS.ErrnoException | null, path?: string) => void + ): void; + /** + * Asynchronous mkdir(2) - create a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options Either the file mode, or an object optionally specifying the file mode and whether parent folders + * should be created. If a string is passed, it is parsed as an octal integer. If not specified, defaults to `0o777`. + */ + export function mkdir( + path: PathLike, + options: + | Mode + | (MakeDirectoryOptions & { + recursive?: false | undefined; + }) + | null + | undefined, + callback: NoParamCallback + ): void; + /** + * Asynchronous mkdir(2) - create a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options Either the file mode, or an object optionally specifying the file mode and whether parent folders + * should be created. If a string is passed, it is parsed as an octal integer. If not specified, defaults to `0o777`. + */ + export function mkdir(path: PathLike, options: Mode | MakeDirectoryOptions | null | undefined, callback: (err: NodeJS.ErrnoException | null, path?: string) => void): void; + /** + * Asynchronous mkdir(2) - create a directory with a mode of `0o777`. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + */ + export function mkdir(path: PathLike, callback: NoParamCallback): void; + export namespace mkdir { + /** + * Asynchronous mkdir(2) - create a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options Either the file mode, or an object optionally specifying the file mode and whether parent folders + * should be created. If a string is passed, it is parsed as an octal integer. If not specified, defaults to `0o777`. + */ + function __promisify__( + path: PathLike, + options: MakeDirectoryOptions & { + recursive: true; + } + ): Promise; + /** + * Asynchronous mkdir(2) - create a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options Either the file mode, or an object optionally specifying the file mode and whether parent folders + * should be created. If a string is passed, it is parsed as an octal integer. If not specified, defaults to `0o777`. + */ + function __promisify__( + path: PathLike, + options?: + | Mode + | (MakeDirectoryOptions & { + recursive?: false | undefined; + }) + | null + ): Promise; + /** + * Asynchronous mkdir(2) - create a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options Either the file mode, or an object optionally specifying the file mode and whether parent folders + * should be created. If a string is passed, it is parsed as an octal integer. If not specified, defaults to `0o777`. + */ + function __promisify__(path: PathLike, options?: Mode | MakeDirectoryOptions | null): Promise; + } + /** + * Synchronously creates a directory. Returns `undefined`, or if `recursive` is`true`, the first directory path created. + * This is the synchronous version of {@link mkdir}. + * + * See the POSIX [`mkdir(2)`](http://man7.org/linux/man-pages/man2/mkdir.2.html) documentation for more details. + * @since v0.1.21 + */ + export function mkdirSync( + path: PathLike, + options: MakeDirectoryOptions & { + recursive: true; + } + ): string | undefined; + /** + * Synchronous mkdir(2) - create a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options Either the file mode, or an object optionally specifying the file mode and whether parent folders + * should be created. If a string is passed, it is parsed as an octal integer. If not specified, defaults to `0o777`. + */ + export function mkdirSync( + path: PathLike, + options?: + | Mode + | (MakeDirectoryOptions & { + recursive?: false | undefined; + }) + | null + ): void; + /** + * Synchronous mkdir(2) - create a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options Either the file mode, or an object optionally specifying the file mode and whether parent folders + * should be created. If a string is passed, it is parsed as an octal integer. If not specified, defaults to `0o777`. + */ + export function mkdirSync(path: PathLike, options?: Mode | MakeDirectoryOptions | null): string | undefined; + /** + * Creates a unique temporary directory. + * + * Generates six random characters to be appended behind a required`prefix` to create a unique temporary directory. Due to platform + * inconsistencies, avoid trailing `X` characters in `prefix`. Some platforms, + * notably the BSDs, can return more than six random characters, and replace + * trailing `X` characters in `prefix` with random characters. + * + * The created directory path is passed as a string to the callback's second + * parameter. + * + * The optional `options` argument can be a string specifying an encoding, or an + * object with an `encoding` property specifying the character encoding to use. + * + * ```js + * import { mkdtemp } from 'fs'; + * + * mkdtemp(path.join(os.tmpdir(), 'foo-'), (err, directory) => { + * if (err) throw err; + * console.log(directory); + * // Prints: /tmp/foo-itXde2 or C:\Users\...\AppData\Local\Temp\foo-itXde2 + * }); + * ``` + * + * The `fs.mkdtemp()` method will append the six randomly selected characters + * directly to the `prefix` string. For instance, given a directory `/tmp`, if the + * intention is to create a temporary directory _within_`/tmp`, the `prefix`must end with a trailing platform-specific path separator + * (`require('path').sep`). + * + * ```js + * import { tmpdir } from 'os'; + * import { mkdtemp } from 'fs'; + * + * // The parent directory for the new temporary directory + * const tmpDir = tmpdir(); + * + * // This method is *INCORRECT*: + * mkdtemp(tmpDir, (err, directory) => { + * if (err) throw err; + * console.log(directory); + * // Will print something similar to `/tmpabc123`. + * // A new temporary directory is created at the file system root + * // rather than *within* the /tmp directory. + * }); + * + * // This method is *CORRECT*: + * import { sep } from 'path'; + * mkdtemp(`${tmpDir}${sep}`, (err, directory) => { + * if (err) throw err; + * console.log(directory); + * // Will print something similar to `/tmp/abc123`. + * // A new temporary directory is created within + * // the /tmp directory. + * }); + * ``` + * @since v5.10.0 + */ + export function mkdtemp(prefix: string, options: EncodingOption, callback: (err: NodeJS.ErrnoException | null, folder: string) => void): void; + /** + * Asynchronously creates a unique temporary directory. + * Generates six random characters to be appended behind a required prefix to create a unique temporary directory. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + export function mkdtemp( + prefix: string, + options: + | 'buffer' + | { + encoding: 'buffer'; + }, + callback: (err: NodeJS.ErrnoException | null, folder: Buffer) => void + ): void; + /** + * Asynchronously creates a unique temporary directory. + * Generates six random characters to be appended behind a required prefix to create a unique temporary directory. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + export function mkdtemp(prefix: string, options: EncodingOption, callback: (err: NodeJS.ErrnoException | null, folder: string | Buffer) => void): void; + /** + * Asynchronously creates a unique temporary directory. + * Generates six random characters to be appended behind a required prefix to create a unique temporary directory. + */ + export function mkdtemp(prefix: string, callback: (err: NodeJS.ErrnoException | null, folder: string) => void): void; + export namespace mkdtemp { + /** + * Asynchronously creates a unique temporary directory. + * Generates six random characters to be appended behind a required prefix to create a unique temporary directory. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function __promisify__(prefix: string, options?: EncodingOption): Promise; + /** + * Asynchronously creates a unique temporary directory. + * Generates six random characters to be appended behind a required prefix to create a unique temporary directory. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function __promisify__(prefix: string, options: BufferEncodingOption): Promise; + /** + * Asynchronously creates a unique temporary directory. + * Generates six random characters to be appended behind a required prefix to create a unique temporary directory. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function __promisify__(prefix: string, options?: EncodingOption): Promise; + } + /** + * Returns the created directory path. + * + * For detailed information, see the documentation of the asynchronous version of + * this API: {@link mkdtemp}. + * + * The optional `options` argument can be a string specifying an encoding, or an + * object with an `encoding` property specifying the character encoding to use. + * @since v5.10.0 + */ + export function mkdtempSync(prefix: string, options?: EncodingOption): string; + /** + * Synchronously creates a unique temporary directory. + * Generates six random characters to be appended behind a required prefix to create a unique temporary directory. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + export function mkdtempSync(prefix: string, options: BufferEncodingOption): Buffer; + /** + * Synchronously creates a unique temporary directory. + * Generates six random characters to be appended behind a required prefix to create a unique temporary directory. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + export function mkdtempSync(prefix: string, options?: EncodingOption): string | Buffer; + /** + * Reads the contents of a directory. The callback gets two arguments `(err, files)`where `files` is an array of the names of the files in the directory excluding`'.'` and `'..'`. + * + * See the POSIX [`readdir(3)`](http://man7.org/linux/man-pages/man3/readdir.3.html) documentation for more details. + * + * The optional `options` argument can be a string specifying an encoding, or an + * object with an `encoding` property specifying the character encoding to use for + * the filenames passed to the callback. If the `encoding` is set to `'buffer'`, + * the filenames returned will be passed as `Buffer` objects. + * + * If `options.withFileTypes` is set to `true`, the `files` array will contain `fs.Dirent` objects. + * @since v0.1.8 + */ + export function readdir( + path: PathLike, + options: + | { + encoding: BufferEncoding | null; + withFileTypes?: false | undefined; + } + | BufferEncoding + | undefined + | null, + callback: (err: NodeJS.ErrnoException | null, files: string[]) => void + ): void; + /** + * Asynchronous readdir(3) - read a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + export function readdir( + path: PathLike, + options: + | { + encoding: 'buffer'; + withFileTypes?: false | undefined; + } + | 'buffer', + callback: (err: NodeJS.ErrnoException | null, files: Buffer[]) => void + ): void; + /** + * Asynchronous readdir(3) - read a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + export function readdir( + path: PathLike, + options: + | (ObjectEncodingOptions & { + withFileTypes?: false | undefined; + }) + | BufferEncoding + | undefined + | null, + callback: (err: NodeJS.ErrnoException | null, files: string[] | Buffer[]) => void + ): void; + /** + * Asynchronous readdir(3) - read a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + */ + export function readdir(path: PathLike, callback: (err: NodeJS.ErrnoException | null, files: string[]) => void): void; + /** + * Asynchronous readdir(3) - read a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options If called with `withFileTypes: true` the result data will be an array of Dirent. + */ + export function readdir( + path: PathLike, + options: ObjectEncodingOptions & { + withFileTypes: true; + }, + callback: (err: NodeJS.ErrnoException | null, files: Dirent[]) => void + ): void; + export namespace readdir { + /** + * Asynchronous readdir(3) - read a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function __promisify__( + path: PathLike, + options?: + | { + encoding: BufferEncoding | null; + withFileTypes?: false | undefined; + } + | BufferEncoding + | null + ): Promise; + /** + * Asynchronous readdir(3) - read a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function __promisify__( + path: PathLike, + options: + | 'buffer' + | { + encoding: 'buffer'; + withFileTypes?: false | undefined; + } + ): Promise; + /** + * Asynchronous readdir(3) - read a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function __promisify__( + path: PathLike, + options?: + | (ObjectEncodingOptions & { + withFileTypes?: false | undefined; + }) + | BufferEncoding + | null + ): Promise; + /** + * Asynchronous readdir(3) - read a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options If called with `withFileTypes: true` the result data will be an array of Dirent + */ + function __promisify__( + path: PathLike, + options: ObjectEncodingOptions & { + withFileTypes: true; + } + ): Promise; + } + /** + * Reads the contents of the directory. + * + * See the POSIX [`readdir(3)`](http://man7.org/linux/man-pages/man3/readdir.3.html) documentation for more details. + * + * The optional `options` argument can be a string specifying an encoding, or an + * object with an `encoding` property specifying the character encoding to use for + * the filenames returned. If the `encoding` is set to `'buffer'`, + * the filenames returned will be passed as `Buffer` objects. + * + * If `options.withFileTypes` is set to `true`, the result will contain `fs.Dirent` objects. + * @since v0.1.21 + */ + export function readdirSync( + path: PathLike, + options?: + | { + encoding: BufferEncoding | null; + withFileTypes?: false | undefined; + } + | BufferEncoding + | null + ): string[]; + /** + * Synchronous readdir(3) - read a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + export function readdirSync( + path: PathLike, + options: + | { + encoding: 'buffer'; + withFileTypes?: false | undefined; + } + | 'buffer' + ): Buffer[]; + /** + * Synchronous readdir(3) - read a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + export function readdirSync( + path: PathLike, + options?: + | (ObjectEncodingOptions & { + withFileTypes?: false | undefined; + }) + | BufferEncoding + | null + ): string[] | Buffer[]; + /** + * Synchronous readdir(3) - read a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options If called with `withFileTypes: true` the result data will be an array of Dirent. + */ + export function readdirSync( + path: PathLike, + options: ObjectEncodingOptions & { + withFileTypes: true; + } + ): Dirent[]; + /** + * Closes the file descriptor. No arguments other than a possible exception are + * given to the completion callback. + * + * Calling `fs.close()` on any file descriptor (`fd`) that is currently in use + * through any other `fs` operation may lead to undefined behavior. + * + * See the POSIX [`close(2)`](http://man7.org/linux/man-pages/man2/close.2.html) documentation for more detail. + * @since v0.0.2 + */ + export function close(fd: number, callback?: NoParamCallback): void; + export namespace close { + /** + * Asynchronous close(2) - close a file descriptor. + * @param fd A file descriptor. + */ + function __promisify__(fd: number): Promise; + } + /** + * Closes the file descriptor. Returns `undefined`. + * + * Calling `fs.closeSync()` on any file descriptor (`fd`) that is currently in use + * through any other `fs` operation may lead to undefined behavior. + * + * See the POSIX [`close(2)`](http://man7.org/linux/man-pages/man2/close.2.html) documentation for more detail. + * @since v0.1.21 + */ + export function closeSync(fd: number): void; + /** + * Asynchronous file open. See the POSIX [`open(2)`](http://man7.org/linux/man-pages/man2/open.2.html) documentation for more details. + * + * `mode` sets the file mode (permission and sticky bits), but only if the file was + * created. On Windows, only the write permission can be manipulated; see {@link chmod}. + * + * The callback gets two arguments `(err, fd)`. + * + * Some characters (`< > : " / \ | ? *`) are reserved under Windows as documented + * by [Naming Files, Paths, and Namespaces](https://docs.microsoft.com/en-us/windows/desktop/FileIO/naming-a-file). Under NTFS, if the filename contains + * a colon, Node.js will open a file system stream, as described by [this MSDN page](https://docs.microsoft.com/en-us/windows/desktop/FileIO/using-streams). + * + * Functions based on `fs.open()` exhibit this behavior as well:`fs.writeFile()`, `fs.readFile()`, etc. + * @since v0.0.2 + * @param [flags='r'] See `support of file system `flags``. + * @param [mode=0o666] + */ + export function open(path: PathLike, flags: OpenMode | undefined, mode: Mode | undefined | null, callback: (err: NodeJS.ErrnoException | null, fd: number) => void): void; + /** + * Asynchronous open(2) - open and possibly create a file. If the file is created, its mode will be `0o666`. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param [flags='r'] See `support of file system `flags``. + */ + export function open(path: PathLike, flags: OpenMode | undefined, callback: (err: NodeJS.ErrnoException | null, fd: number) => void): void; + /** + * Asynchronous open(2) - open and possibly create a file. If the file is created, its mode will be `0o666`. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + */ + export function open(path: PathLike, callback: (err: NodeJS.ErrnoException | null, fd: number) => void): void; + + export namespace open { + /** + * Asynchronous open(2) - open and possibly create a file. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param mode A file mode. If a string is passed, it is parsed as an octal integer. If not supplied, defaults to `0o666`. + */ + function __promisify__(path: PathLike, flags: OpenMode, mode?: Mode | null): Promise; + } + /** + * Returns an integer representing the file descriptor. + * + * For detailed information, see the documentation of the asynchronous version of + * this API: {@link open}. + * @since v0.1.21 + * @param [flags='r'] + * @param [mode=0o666] + */ + export function openSync(path: PathLike, flags: OpenMode, mode?: Mode | null): number; + /** + * Change the file system timestamps of the object referenced by `path`. + * + * The `atime` and `mtime` arguments follow these rules: + * + * * Values can be either numbers representing Unix epoch time in seconds,`Date`s, or a numeric string like `'123456789.0'`. + * * If the value can not be converted to a number, or is `NaN`, `Infinity` or`-Infinity`, an `Error` will be thrown. + * @since v0.4.2 + */ + export function utimes(path: PathLike, atime: TimeLike, mtime: TimeLike, callback: NoParamCallback): void; + export namespace utimes { + /** + * Asynchronously change file timestamps of the file referenced by the supplied path. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param atime The last access time. If a string is provided, it will be coerced to number. + * @param mtime The last modified time. If a string is provided, it will be coerced to number. + */ + function __promisify__(path: PathLike, atime: TimeLike, mtime: TimeLike): Promise; + } + /** + * Returns `undefined`. + * + * For detailed information, see the documentation of the asynchronous version of + * this API: {@link utimes}. + * @since v0.4.2 + */ + export function utimesSync(path: PathLike, atime: TimeLike, mtime: TimeLike): void; + /** + * Change the file system timestamps of the object referenced by the supplied file + * descriptor. See {@link utimes}. + * @since v0.4.2 + */ + export function futimes(fd: number, atime: TimeLike, mtime: TimeLike, callback: NoParamCallback): void; + export namespace futimes { + /** + * Asynchronously change file timestamps of the file referenced by the supplied file descriptor. + * @param fd A file descriptor. + * @param atime The last access time. If a string is provided, it will be coerced to number. + * @param mtime The last modified time. If a string is provided, it will be coerced to number. + */ + function __promisify__(fd: number, atime: TimeLike, mtime: TimeLike): Promise; + } + /** + * Synchronous version of {@link futimes}. Returns `undefined`. + * @since v0.4.2 + */ + export function futimesSync(fd: number, atime: TimeLike, mtime: TimeLike): void; + /** + * Request that all data for the open file descriptor is flushed to the storage + * device. The specific implementation is operating system and device specific. + * Refer to the POSIX [`fsync(2)`](http://man7.org/linux/man-pages/man2/fsync.2.html) documentation for more detail. No arguments other + * than a possible exception are given to the completion callback. + * @since v0.1.96 + */ + export function fsync(fd: number, callback: NoParamCallback): void; + export namespace fsync { + /** + * Asynchronous fsync(2) - synchronize a file's in-core state with the underlying storage device. + * @param fd A file descriptor. + */ + function __promisify__(fd: number): Promise; + } + /** + * Request that all data for the open file descriptor is flushed to the storage + * device. The specific implementation is operating system and device specific. + * Refer to the POSIX [`fsync(2)`](http://man7.org/linux/man-pages/man2/fsync.2.html) documentation for more detail. Returns `undefined`. + * @since v0.1.96 + */ + export function fsyncSync(fd: number): void; + /** + * Write `buffer` to the file specified by `fd`. + * + * `offset` determines the part of the buffer to be written, and `length` is + * an integer specifying the number of bytes to write. + * + * `position` refers to the offset from the beginning of the file where this data + * should be written. If `typeof position !== 'number'`, the data will be written + * at the current position. See [`pwrite(2)`](http://man7.org/linux/man-pages/man2/pwrite.2.html). + * + * The callback will be given three arguments `(err, bytesWritten, buffer)` where`bytesWritten` specifies how many _bytes_ were written from `buffer`. + * + * If this method is invoked as its `util.promisify()` ed version, it returns + * a promise for an `Object` with `bytesWritten` and `buffer` properties. + * + * It is unsafe to use `fs.write()` multiple times on the same file without waiting + * for the callback. For this scenario, {@link createWriteStream} is + * recommended. + * + * On Linux, positional writes don't work when the file is opened in append mode. + * The kernel ignores the position argument and always appends the data to + * the end of the file. + * @since v0.0.2 + */ + export function write( + fd: number, + buffer: TBuffer, + offset: number | undefined | null, + length: number | undefined | null, + position: number | undefined | null, + callback: (err: NodeJS.ErrnoException | null, written: number, buffer: TBuffer) => void + ): void; + /** + * Asynchronously writes `buffer` to the file referenced by the supplied file descriptor. + * @param fd A file descriptor. + * @param offset The part of the buffer to be written. If not supplied, defaults to `0`. + * @param length The number of bytes to write. If not supplied, defaults to `buffer.length - offset`. + */ + export function write( + fd: number, + buffer: TBuffer, + offset: number | undefined | null, + length: number | undefined | null, + callback: (err: NodeJS.ErrnoException | null, written: number, buffer: TBuffer) => void + ): void; + /** + * Asynchronously writes `buffer` to the file referenced by the supplied file descriptor. + * @param fd A file descriptor. + * @param offset The part of the buffer to be written. If not supplied, defaults to `0`. + */ + export function write( + fd: number, + buffer: TBuffer, + offset: number | undefined | null, + callback: (err: NodeJS.ErrnoException | null, written: number, buffer: TBuffer) => void + ): void; + /** + * Asynchronously writes `buffer` to the file referenced by the supplied file descriptor. + * @param fd A file descriptor. + */ + export function write(fd: number, buffer: TBuffer, callback: (err: NodeJS.ErrnoException | null, written: number, buffer: TBuffer) => void): void; + /** + * Asynchronously writes `string` to the file referenced by the supplied file descriptor. + * @param fd A file descriptor. + * @param string A string to write. + * @param position The offset from the beginning of the file where this data should be written. If not supplied, defaults to the current position. + * @param encoding The expected string encoding. + */ + export function write( + fd: number, + string: string, + position: number | undefined | null, + encoding: BufferEncoding | undefined | null, + callback: (err: NodeJS.ErrnoException | null, written: number, str: string) => void + ): void; + /** + * Asynchronously writes `string` to the file referenced by the supplied file descriptor. + * @param fd A file descriptor. + * @param string A string to write. + * @param position The offset from the beginning of the file where this data should be written. If not supplied, defaults to the current position. + */ + export function write(fd: number, string: string, position: number | undefined | null, callback: (err: NodeJS.ErrnoException | null, written: number, str: string) => void): void; + /** + * Asynchronously writes `string` to the file referenced by the supplied file descriptor. + * @param fd A file descriptor. + * @param string A string to write. + */ + export function write(fd: number, string: string, callback: (err: NodeJS.ErrnoException | null, written: number, str: string) => void): void; + export namespace write { + /** + * Asynchronously writes `buffer` to the file referenced by the supplied file descriptor. + * @param fd A file descriptor. + * @param offset The part of the buffer to be written. If not supplied, defaults to `0`. + * @param length The number of bytes to write. If not supplied, defaults to `buffer.length - offset`. + * @param position The offset from the beginning of the file where this data should be written. If not supplied, defaults to the current position. + */ + function __promisify__( + fd: number, + buffer?: TBuffer, + offset?: number, + length?: number, + position?: number | null + ): Promise<{ + bytesWritten: number; + buffer: TBuffer; + }>; + /** + * Asynchronously writes `string` to the file referenced by the supplied file descriptor. + * @param fd A file descriptor. + * @param string A string to write. + * @param position The offset from the beginning of the file where this data should be written. If not supplied, defaults to the current position. + * @param encoding The expected string encoding. + */ + function __promisify__( + fd: number, + string: string, + position?: number | null, + encoding?: BufferEncoding | null + ): Promise<{ + bytesWritten: number; + buffer: string; + }>; + } + /** + * For detailed information, see the documentation of the asynchronous version of + * this API: {@link write}. + * @since v0.1.21 + * @return The number of bytes written. + */ + export function writeSync(fd: number, buffer: NodeJS.ArrayBufferView, offset?: number | null, length?: number | null, position?: number | null): number; + /** + * Synchronously writes `string` to the file referenced by the supplied file descriptor, returning the number of bytes written. + * @param fd A file descriptor. + * @param string A string to write. + * @param position The offset from the beginning of the file where this data should be written. If not supplied, defaults to the current position. + * @param encoding The expected string encoding. + */ + export function writeSync(fd: number, string: string, position?: number | null, encoding?: BufferEncoding | null): number; + export type ReadPosition = number | bigint; + export interface ReadSyncOptions { + /** + * @default 0 + */ + offset?: number | undefined; + /** + * @default `length of buffer` + */ + length?: number | undefined; + /** + * @default null + */ + position?: ReadPosition | null | undefined; + } + export interface ReadAsyncOptions extends ReadSyncOptions { + buffer?: TBuffer; + } + /** + * Read data from the file specified by `fd`. + * + * The callback is given the three arguments, `(err, bytesRead, buffer)`. + * + * If the file is not modified concurrently, the end-of-file is reached when the + * number of bytes read is zero. + * + * If this method is invoked as its `util.promisify()` ed version, it returns + * a promise for an `Object` with `bytesRead` and `buffer` properties. + * @since v0.0.2 + * @param buffer The buffer that the data will be written to. + * @param offset The position in `buffer` to write the data to. + * @param length The number of bytes to read. + * @param position Specifies where to begin reading from in the file. If `position` is `null` or `-1 `, data will be read from the current file position, and the file position will be updated. If + * `position` is an integer, the file position will be unchanged. + */ + export function read( + fd: number, + buffer: TBuffer, + offset: number, + length: number, + position: ReadPosition | null, + callback: (err: NodeJS.ErrnoException | null, bytesRead: number, buffer: TBuffer) => void + ): void; + /** + * Similar to the above `fs.read` function, this version takes an optional `options` object. + * If not otherwise specified in an `options` object, + * `buffer` defaults to `Buffer.alloc(16384)`, + * `offset` defaults to `0`, + * `length` defaults to `buffer.byteLength`, `- offset` as of Node 17.6.0 + * `position` defaults to `null` + * @since v12.17.0, 13.11.0 + */ + export function read( + fd: number, + options: ReadAsyncOptions, + callback: (err: NodeJS.ErrnoException | null, bytesRead: number, buffer: TBuffer) => void + ): void; + export function read(fd: number, callback: (err: NodeJS.ErrnoException | null, bytesRead: number, buffer: NodeJS.ArrayBufferView) => void): void; + export namespace read { + /** + * @param fd A file descriptor. + * @param buffer The buffer that the data will be written to. + * @param offset The offset in the buffer at which to start writing. + * @param length The number of bytes to read. + * @param position The offset from the beginning of the file from which data should be read. If `null`, data will be read from the current position. + */ + function __promisify__( + fd: number, + buffer: TBuffer, + offset: number, + length: number, + position: number | null + ): Promise<{ + bytesRead: number; + buffer: TBuffer; + }>; + function __promisify__( + fd: number, + options: ReadAsyncOptions + ): Promise<{ + bytesRead: number; + buffer: TBuffer; + }>; + function __promisify__(fd: number): Promise<{ + bytesRead: number; + buffer: NodeJS.ArrayBufferView; + }>; + } + /** + * Returns the number of `bytesRead`. + * + * For detailed information, see the documentation of the asynchronous version of + * this API: {@link read}. + * @since v0.1.21 + */ + export function readSync(fd: number, buffer: NodeJS.ArrayBufferView, offset: number, length: number, position: ReadPosition | null): number; + /** + * Similar to the above `fs.readSync` function, this version takes an optional `options` object. + * If no `options` object is specified, it will default with the above values. + */ + export function readSync(fd: number, buffer: NodeJS.ArrayBufferView, opts?: ReadSyncOptions): number; + /** + * Asynchronously reads the entire contents of a file. + * + * ```js + * import { readFile } from 'fs'; + * + * readFile('/etc/passwd', (err, data) => { + * if (err) throw err; + * console.log(data); + * }); + * ``` + * + * The callback is passed two arguments `(err, data)`, where `data` is the + * contents of the file. + * + * If no encoding is specified, then the raw buffer is returned. + * + * If `options` is a string, then it specifies the encoding: + * + * ```js + * import { readFile } from 'fs'; + * + * readFile('/etc/passwd', 'utf8', callback); + * ``` + * + * When the path is a directory, the behavior of `fs.readFile()` and {@link readFileSync} is platform-specific. On macOS, Linux, and Windows, an + * error will be returned. On FreeBSD, a representation of the directory's contents + * will be returned. + * + * ```js + * import { readFile } from 'fs'; + * + * // macOS, Linux, and Windows + * readFile('', (err, data) => { + * // => [Error: EISDIR: illegal operation on a directory, read ] + * }); + * + * // FreeBSD + * readFile('', (err, data) => { + * // => null, + * }); + * ``` + * + * It is possible to abort an ongoing request using an `AbortSignal`. If a + * request is aborted the callback is called with an `AbortError`: + * + * ```js + * import { readFile } from 'fs'; + * + * const controller = new AbortController(); + * const signal = controller.signal; + * readFile(fileInfo[0].name, { signal }, (err, buf) => { + * // ... + * }); + * // When you want to abort the request + * controller.abort(); + * ``` + * + * The `fs.readFile()` function buffers the entire file. To minimize memory costs, + * when possible prefer streaming via `fs.createReadStream()`. + * + * Aborting an ongoing request does not abort individual operating + * system requests but rather the internal buffering `fs.readFile` performs. + * @since v0.1.29 + * @param path filename or file descriptor + */ + export function readFile( + path: PathOrFileDescriptor, + options: + | ({ + encoding?: null | undefined; + flag?: string | undefined; + } & Abortable) + | undefined + | null, + callback: (err: NodeJS.ErrnoException | null, data: Buffer) => void + ): void; + /** + * Asynchronously reads the entire contents of a file. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * If a file descriptor is provided, the underlying file will _not_ be closed automatically. + * @param options Either the encoding for the result, or an object that contains the encoding and an optional flag. + * If a flag is not provided, it defaults to `'r'`. + */ + export function readFile( + path: PathOrFileDescriptor, + options: + | ({ + encoding: BufferEncoding; + flag?: string | undefined; + } & Abortable) + | BufferEncoding, + callback: (err: NodeJS.ErrnoException | null, data: string) => void + ): void; + /** + * Asynchronously reads the entire contents of a file. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * If a file descriptor is provided, the underlying file will _not_ be closed automatically. + * @param options Either the encoding for the result, or an object that contains the encoding and an optional flag. + * If a flag is not provided, it defaults to `'r'`. + */ + export function readFile( + path: PathOrFileDescriptor, + options: + | (ObjectEncodingOptions & { + flag?: string | undefined; + } & Abortable) + | BufferEncoding + | undefined + | null, + callback: (err: NodeJS.ErrnoException | null, data: string | Buffer) => void + ): void; + /** + * Asynchronously reads the entire contents of a file. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * If a file descriptor is provided, the underlying file will _not_ be closed automatically. + */ + export function readFile(path: PathOrFileDescriptor, callback: (err: NodeJS.ErrnoException | null, data: Buffer) => void): void; + export namespace readFile { + /** + * Asynchronously reads the entire contents of a file. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * If a file descriptor is provided, the underlying file will _not_ be closed automatically. + * @param options An object that may contain an optional flag. + * If a flag is not provided, it defaults to `'r'`. + */ + function __promisify__( + path: PathOrFileDescriptor, + options?: { + encoding?: null | undefined; + flag?: string | undefined; + } | null + ): Promise; + /** + * Asynchronously reads the entire contents of a file. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * URL support is _experimental_. + * If a file descriptor is provided, the underlying file will _not_ be closed automatically. + * @param options Either the encoding for the result, or an object that contains the encoding and an optional flag. + * If a flag is not provided, it defaults to `'r'`. + */ + function __promisify__( + path: PathOrFileDescriptor, + options: + | { + encoding: BufferEncoding; + flag?: string | undefined; + } + | BufferEncoding + ): Promise; + /** + * Asynchronously reads the entire contents of a file. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * URL support is _experimental_. + * If a file descriptor is provided, the underlying file will _not_ be closed automatically. + * @param options Either the encoding for the result, or an object that contains the encoding and an optional flag. + * If a flag is not provided, it defaults to `'r'`. + */ + function __promisify__( + path: PathOrFileDescriptor, + options?: + | (ObjectEncodingOptions & { + flag?: string | undefined; + }) + | BufferEncoding + | null + ): Promise; + } + /** + * Returns the contents of the `path`. + * + * For detailed information, see the documentation of the asynchronous version of + * this API: {@link readFile}. + * + * If the `encoding` option is specified then this function returns a + * string. Otherwise it returns a buffer. + * + * Similar to {@link readFile}, when the path is a directory, the behavior of`fs.readFileSync()` is platform-specific. + * + * ```js + * import { readFileSync } from 'fs'; + * + * // macOS, Linux, and Windows + * readFileSync(''); + * // => [Error: EISDIR: illegal operation on a directory, read ] + * + * // FreeBSD + * readFileSync(''); // => + * ``` + * @since v0.1.8 + * @param path filename or file descriptor + */ + export function readFileSync( + path: PathOrFileDescriptor, + options?: { + encoding?: null | undefined; + flag?: string | undefined; + } | null + ): Buffer; + /** + * Synchronously reads the entire contents of a file. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * If a file descriptor is provided, the underlying file will _not_ be closed automatically. + * @param options Either the encoding for the result, or an object that contains the encoding and an optional flag. + * If a flag is not provided, it defaults to `'r'`. + */ + export function readFileSync( + path: PathOrFileDescriptor, + options: + | { + encoding: BufferEncoding; + flag?: string | undefined; + } + | BufferEncoding + ): string; + /** + * Synchronously reads the entire contents of a file. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * If a file descriptor is provided, the underlying file will _not_ be closed automatically. + * @param options Either the encoding for the result, or an object that contains the encoding and an optional flag. + * If a flag is not provided, it defaults to `'r'`. + */ + export function readFileSync( + path: PathOrFileDescriptor, + options?: + | (ObjectEncodingOptions & { + flag?: string | undefined; + }) + | BufferEncoding + | null + ): string | Buffer; + export type WriteFileOptions = + | (ObjectEncodingOptions & + Abortable & { + mode?: Mode | undefined; + flag?: string | undefined; + }) + | BufferEncoding + | null; + /** + * When `file` is a filename, asynchronously writes data to the file, replacing the + * file if it already exists. `data` can be a string or a buffer. + * + * When `file` is a file descriptor, the behavior is similar to calling`fs.write()` directly (which is recommended). See the notes below on using + * a file descriptor. + * + * The `encoding` option is ignored if `data` is a buffer. + * + * The `mode` option only affects the newly created file. See {@link open} for more details. + * + * ```js + * import { writeFile } from 'fs'; + * import { Buffer } from 'buffer'; + * + * const data = new Uint8Array(Buffer.from('Hello Node.js')); + * writeFile('message.txt', data, (err) => { + * if (err) throw err; + * console.log('The file has been saved!'); + * }); + * ``` + * + * If `options` is a string, then it specifies the encoding: + * + * ```js + * import { writeFile } from 'fs'; + * + * writeFile('message.txt', 'Hello Node.js', 'utf8', callback); + * ``` + * + * It is unsafe to use `fs.writeFile()` multiple times on the same file without + * waiting for the callback. For this scenario, {@link createWriteStream} is + * recommended. + * + * Similarly to `fs.readFile` \- `fs.writeFile` is a convenience method that + * performs multiple `write` calls internally to write the buffer passed to it. + * For performance sensitive code consider using {@link createWriteStream}. + * + * It is possible to use an `AbortSignal` to cancel an `fs.writeFile()`. + * Cancelation is "best effort", and some amount of data is likely still + * to be written. + * + * ```js + * import { writeFile } from 'fs'; + * import { Buffer } from 'buffer'; + * + * const controller = new AbortController(); + * const { signal } = controller; + * const data = new Uint8Array(Buffer.from('Hello Node.js')); + * writeFile('message.txt', data, { signal }, (err) => { + * // When a request is aborted - the callback is called with an AbortError + * }); + * // When the request should be aborted + * controller.abort(); + * ``` + * + * Aborting an ongoing request does not abort individual operating + * system requests but rather the internal buffering `fs.writeFile` performs. + * @since v0.1.29 + * @param file filename or file descriptor + */ + export function writeFile(file: PathOrFileDescriptor, data: string | NodeJS.ArrayBufferView, options: WriteFileOptions, callback: NoParamCallback): void; + /** + * Asynchronously writes data to a file, replacing the file if it already exists. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * If a file descriptor is provided, the underlying file will _not_ be closed automatically. + * @param data The data to write. If something other than a Buffer or Uint8Array is provided, the value is coerced to a string. + */ + export function writeFile(path: PathOrFileDescriptor, data: string | NodeJS.ArrayBufferView, callback: NoParamCallback): void; + export namespace writeFile { + /** + * Asynchronously writes data to a file, replacing the file if it already exists. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * URL support is _experimental_. + * If a file descriptor is provided, the underlying file will _not_ be closed automatically. + * @param data The data to write. If something other than a Buffer or Uint8Array is provided, the value is coerced to a string. + * @param options Either the encoding for the file, or an object optionally specifying the encoding, file mode, and flag. + * If `encoding` is not supplied, the default of `'utf8'` is used. + * If `mode` is not supplied, the default of `0o666` is used. + * If `mode` is a string, it is parsed as an octal integer. + * If `flag` is not supplied, the default of `'w'` is used. + */ + function __promisify__(path: PathOrFileDescriptor, data: string | NodeJS.ArrayBufferView, options?: WriteFileOptions): Promise; + } + /** + * Returns `undefined`. + * + * The `mode` option only affects the newly created file. See {@link open} for more details. + * + * For detailed information, see the documentation of the asynchronous version of + * this API: {@link writeFile}. + * @since v0.1.29 + * @param file filename or file descriptor + */ + export function writeFileSync(file: PathOrFileDescriptor, data: string | NodeJS.ArrayBufferView, options?: WriteFileOptions): void; + /** + * Asynchronously append data to a file, creating the file if it does not yet + * exist. `data` can be a string or a `Buffer`. + * + * The `mode` option only affects the newly created file. See {@link open} for more details. + * + * ```js + * import { appendFile } from 'fs'; + * + * appendFile('message.txt', 'data to append', (err) => { + * if (err) throw err; + * console.log('The "data to append" was appended to file!'); + * }); + * ``` + * + * If `options` is a string, then it specifies the encoding: + * + * ```js + * import { appendFile } from 'fs'; + * + * appendFile('message.txt', 'data to append', 'utf8', callback); + * ``` + * + * The `path` may be specified as a numeric file descriptor that has been opened + * for appending (using `fs.open()` or `fs.openSync()`). The file descriptor will + * not be closed automatically. + * + * ```js + * import { open, close, appendFile } from 'fs'; + * + * function closeFd(fd) { + * close(fd, (err) => { + * if (err) throw err; + * }); + * } + * + * open('message.txt', 'a', (err, fd) => { + * if (err) throw err; + * + * try { + * appendFile(fd, 'data to append', 'utf8', (err) => { + * closeFd(fd); + * if (err) throw err; + * }); + * } catch (err) { + * closeFd(fd); + * throw err; + * } + * }); + * ``` + * @since v0.6.7 + * @param path filename or file descriptor + */ + export function appendFile(path: PathOrFileDescriptor, data: string | Uint8Array, options: WriteFileOptions, callback: NoParamCallback): void; + /** + * Asynchronously append data to a file, creating the file if it does not exist. + * @param file A path to a file. If a URL is provided, it must use the `file:` protocol. + * If a file descriptor is provided, the underlying file will _not_ be closed automatically. + * @param data The data to write. If something other than a Buffer or Uint8Array is provided, the value is coerced to a string. + */ + export function appendFile(file: PathOrFileDescriptor, data: string | Uint8Array, callback: NoParamCallback): void; + export namespace appendFile { + /** + * Asynchronously append data to a file, creating the file if it does not exist. + * @param file A path to a file. If a URL is provided, it must use the `file:` protocol. + * URL support is _experimental_. + * If a file descriptor is provided, the underlying file will _not_ be closed automatically. + * @param data The data to write. If something other than a Buffer or Uint8Array is provided, the value is coerced to a string. + * @param options Either the encoding for the file, or an object optionally specifying the encoding, file mode, and flag. + * If `encoding` is not supplied, the default of `'utf8'` is used. + * If `mode` is not supplied, the default of `0o666` is used. + * If `mode` is a string, it is parsed as an octal integer. + * If `flag` is not supplied, the default of `'a'` is used. + */ + function __promisify__(file: PathOrFileDescriptor, data: string | Uint8Array, options?: WriteFileOptions): Promise; + } + /** + * Synchronously append data to a file, creating the file if it does not yet + * exist. `data` can be a string or a `Buffer`. + * + * The `mode` option only affects the newly created file. See {@link open} for more details. + * + * ```js + * import { appendFileSync } from 'fs'; + * + * try { + * appendFileSync('message.txt', 'data to append'); + * console.log('The "data to append" was appended to file!'); + * } catch (err) { + * // Handle the error + * } + * ``` + * + * If `options` is a string, then it specifies the encoding: + * + * ```js + * import { appendFileSync } from 'fs'; + * + * appendFileSync('message.txt', 'data to append', 'utf8'); + * ``` + * + * The `path` may be specified as a numeric file descriptor that has been opened + * for appending (using `fs.open()` or `fs.openSync()`). The file descriptor will + * not be closed automatically. + * + * ```js + * import { openSync, closeSync, appendFileSync } from 'fs'; + * + * let fd; + * + * try { + * fd = openSync('message.txt', 'a'); + * appendFileSync(fd, 'data to append', 'utf8'); + * } catch (err) { + * // Handle the error + * } finally { + * if (fd !== undefined) + * closeSync(fd); + * } + * ``` + * @since v0.6.7 + * @param path filename or file descriptor + */ + export function appendFileSync(path: PathOrFileDescriptor, data: string | Uint8Array, options?: WriteFileOptions): void; + /** + * Watch for changes on `filename`. The callback `listener` will be called each + * time the file is accessed. + * + * The `options` argument may be omitted. If provided, it should be an object. The`options` object may contain a boolean named `persistent` that indicates + * whether the process should continue to run as long as files are being watched. + * The `options` object may specify an `interval` property indicating how often the + * target should be polled in milliseconds. + * + * The `listener` gets two arguments the current stat object and the previous + * stat object: + * + * ```js + * import { watchFile } from 'fs'; + * + * watchFile('message.text', (curr, prev) => { + * console.log(`the current mtime is: ${curr.mtime}`); + * console.log(`the previous mtime was: ${prev.mtime}`); + * }); + * ``` + * + * These stat objects are instances of `fs.Stat`. If the `bigint` option is `true`, + * the numeric values in these objects are specified as `BigInt`s. + * + * To be notified when the file was modified, not just accessed, it is necessary + * to compare `curr.mtimeMs` and `prev.mtimeMs`. + * + * When an `fs.watchFile` operation results in an `ENOENT` error, it + * will invoke the listener once, with all the fields zeroed (or, for dates, the + * Unix Epoch). If the file is created later on, the listener will be called + * again, with the latest stat objects. This is a change in functionality since + * v0.10. + * + * Using {@link watch} is more efficient than `fs.watchFile` and`fs.unwatchFile`. `fs.watch` should be used instead of `fs.watchFile` and`fs.unwatchFile` when possible. + * + * When a file being watched by `fs.watchFile()` disappears and reappears, + * then the contents of `previous` in the second callback event (the file's + * reappearance) will be the same as the contents of `previous` in the first + * callback event (its disappearance). + * + * This happens when: + * + * * the file is deleted, followed by a restore + * * the file is renamed and then renamed a second time back to its original name + * @since v0.1.31 + */ + export interface WatchFileOptions { + bigint?: boolean | undefined; + persistent?: boolean | undefined; + interval?: number | undefined; + } + /** + * Watch for changes on `filename`. The callback `listener` will be called each + * time the file is accessed. + * + * The `options` argument may be omitted. If provided, it should be an object. The`options` object may contain a boolean named `persistent` that indicates + * whether the process should continue to run as long as files are being watched. + * The `options` object may specify an `interval` property indicating how often the + * target should be polled in milliseconds. + * + * The `listener` gets two arguments the current stat object and the previous + * stat object: + * + * ```js + * import { watchFile } from 'fs'; + * + * watchFile('message.text', (curr, prev) => { + * console.log(`the current mtime is: ${curr.mtime}`); + * console.log(`the previous mtime was: ${prev.mtime}`); + * }); + * ``` + * + * These stat objects are instances of `fs.Stat`. If the `bigint` option is `true`, + * the numeric values in these objects are specified as `BigInt`s. + * + * To be notified when the file was modified, not just accessed, it is necessary + * to compare `curr.mtimeMs` and `prev.mtimeMs`. + * + * When an `fs.watchFile` operation results in an `ENOENT` error, it + * will invoke the listener once, with all the fields zeroed (or, for dates, the + * Unix Epoch). If the file is created later on, the listener will be called + * again, with the latest stat objects. This is a change in functionality since + * v0.10. + * + * Using {@link watch} is more efficient than `fs.watchFile` and`fs.unwatchFile`. `fs.watch` should be used instead of `fs.watchFile` and`fs.unwatchFile` when possible. + * + * When a file being watched by `fs.watchFile()` disappears and reappears, + * then the contents of `previous` in the second callback event (the file's + * reappearance) will be the same as the contents of `previous` in the first + * callback event (its disappearance). + * + * This happens when: + * + * * the file is deleted, followed by a restore + * * the file is renamed and then renamed a second time back to its original name + * @since v0.1.31 + */ + export function watchFile( + filename: PathLike, + options: + | (WatchFileOptions & { + bigint?: false | undefined; + }) + | undefined, + listener: (curr: Stats, prev: Stats) => void + ): StatWatcher; + export function watchFile( + filename: PathLike, + options: + | (WatchFileOptions & { + bigint: true; + }) + | undefined, + listener: (curr: BigIntStats, prev: BigIntStats) => void + ): StatWatcher; + /** + * Watch for changes on `filename`. The callback `listener` will be called each time the file is accessed. + * @param filename A path to a file or directory. If a URL is provided, it must use the `file:` protocol. + */ + export function watchFile(filename: PathLike, listener: (curr: Stats, prev: Stats) => void): StatWatcher; + /** + * Stop watching for changes on `filename`. If `listener` is specified, only that + * particular listener is removed. Otherwise, _all_ listeners are removed, + * effectively stopping watching of `filename`. + * + * Calling `fs.unwatchFile()` with a filename that is not being watched is a + * no-op, not an error. + * + * Using {@link watch} is more efficient than `fs.watchFile()` and`fs.unwatchFile()`. `fs.watch()` should be used instead of `fs.watchFile()`and `fs.unwatchFile()` when possible. + * @since v0.1.31 + * @param listener Optional, a listener previously attached using `fs.watchFile()` + */ + export function unwatchFile(filename: PathLike, listener?: (curr: Stats, prev: Stats) => void): void; + export interface WatchOptions extends Abortable { + encoding?: BufferEncoding | 'buffer' | undefined; + persistent?: boolean | undefined; + recursive?: boolean | undefined; + } + export type WatchEventType = 'rename' | 'change'; + export type WatchListener = (event: WatchEventType, filename: T) => void; + /** + * Watch for changes on `filename`, where `filename` is either a file or a + * directory. + * + * The second argument is optional. If `options` is provided as a string, it + * specifies the `encoding`. Otherwise `options` should be passed as an object. + * + * The listener callback gets two arguments `(eventType, filename)`. `eventType`is either `'rename'` or `'change'`, and `filename` is the name of the file + * which triggered the event. + * + * On most platforms, `'rename'` is emitted whenever a filename appears or + * disappears in the directory. + * + * The listener callback is attached to the `'change'` event fired by `fs.FSWatcher`, but it is not the same thing as the `'change'` value of`eventType`. + * + * If a `signal` is passed, aborting the corresponding AbortController will close + * the returned `fs.FSWatcher`. + * @since v0.5.10 + * @param listener + */ + export function watch( + filename: PathLike, + options: + | (WatchOptions & { + encoding: 'buffer'; + }) + | 'buffer', + listener?: WatchListener + ): FSWatcher; + /** + * Watch for changes on `filename`, where `filename` is either a file or a directory, returning an `FSWatcher`. + * @param filename A path to a file or directory. If a URL is provided, it must use the `file:` protocol. + * @param options Either the encoding for the filename provided to the listener, or an object optionally specifying encoding, persistent, and recursive options. + * If `encoding` is not supplied, the default of `'utf8'` is used. + * If `persistent` is not supplied, the default of `true` is used. + * If `recursive` is not supplied, the default of `false` is used. + */ + export function watch(filename: PathLike, options?: WatchOptions | BufferEncoding | null, listener?: WatchListener): FSWatcher; + /** + * Watch for changes on `filename`, where `filename` is either a file or a directory, returning an `FSWatcher`. + * @param filename A path to a file or directory. If a URL is provided, it must use the `file:` protocol. + * @param options Either the encoding for the filename provided to the listener, or an object optionally specifying encoding, persistent, and recursive options. + * If `encoding` is not supplied, the default of `'utf8'` is used. + * If `persistent` is not supplied, the default of `true` is used. + * If `recursive` is not supplied, the default of `false` is used. + */ + export function watch(filename: PathLike, options: WatchOptions | string, listener?: WatchListener): FSWatcher; + /** + * Watch for changes on `filename`, where `filename` is either a file or a directory, returning an `FSWatcher`. + * @param filename A path to a file or directory. If a URL is provided, it must use the `file:` protocol. + */ + export function watch(filename: PathLike, listener?: WatchListener): FSWatcher; + /** + * Test whether or not the given path exists by checking with the file system. + * Then call the `callback` argument with either true or false: + * + * ```js + * import { exists } from 'fs'; + * + * exists('/etc/passwd', (e) => { + * console.log(e ? 'it exists' : 'no passwd!'); + * }); + * ``` + * + * **The parameters for this callback are not consistent with other Node.js** + * **callbacks.** Normally, the first parameter to a Node.js callback is an `err`parameter, optionally followed by other parameters. The `fs.exists()` callback + * has only one boolean parameter. This is one reason `fs.access()` is recommended + * instead of `fs.exists()`. + * + * Using `fs.exists()` to check for the existence of a file before calling`fs.open()`, `fs.readFile()` or `fs.writeFile()` is not recommended. Doing + * so introduces a race condition, since other processes may change the file's + * state between the two calls. Instead, user code should open/read/write the + * file directly and handle the error raised if the file does not exist. + * + * **write (NOT RECOMMENDED)** + * + * ```js + * import { exists, open, close } from 'fs'; + * + * exists('myfile', (e) => { + * if (e) { + * console.error('myfile already exists'); + * } else { + * open('myfile', 'wx', (err, fd) => { + * if (err) throw err; + * + * try { + * writeMyData(fd); + * } finally { + * close(fd, (err) => { + * if (err) throw err; + * }); + * } + * }); + * } + * }); + * ``` + * + * **write (RECOMMENDED)** + * + * ```js + * import { open, close } from 'fs'; + * open('myfile', 'wx', (err, fd) => { + * if (err) { + * if (err.code === 'EEXIST') { + * console.error('myfile already exists'); + * return; + * } + * + * throw err; + * } + * + * try { + * writeMyData(fd); + * } finally { + * close(fd, (err) => { + * if (err) throw err; + * }); + * } + * }); + * ``` + * + * **read (NOT RECOMMENDED)** + * + * ```js + * import { open, close, exists } from 'fs'; + * + * exists('myfile', (e) => { + * if (e) { + * open('myfile', 'r', (err, fd) => { + * if (err) throw err; + * + * try { + * readMyData(fd); + * } finally { + * close(fd, (err) => { + * if (err) throw err; + * }); + * } + * }); + * } else { + * console.error('myfile does not exist'); + * } + * }); + * ``` + * + * **read (RECOMMENDED)** + * + * ```js + * import { open, close } from 'fs'; + * + * open('myfile', 'r', (err, fd) => { + * if (err) { + * if (err.code === 'ENOENT') { + * console.error('myfile does not exist'); + * return; + * } + * + * throw err; + * } + * + * try { + * readMyData(fd); + * } finally { + * close(fd, (err) => { + * if (err) throw err; + * }); + * } + * }); + * ``` + * + * The "not recommended" examples above check for existence and then use the + * file; the "recommended" examples are better because they use the file directly + * and handle the error, if any. + * + * In general, check for the existence of a file only if the file won’t be + * used directly, for example when its existence is a signal from another + * process. + * @since v0.0.2 + * @deprecated Since v1.0.0 - Use {@link stat} or {@link access} instead. + */ + export function exists(path: PathLike, callback: (exists: boolean) => void): void; + /** @deprecated */ + export namespace exists { + /** + * @param path A path to a file or directory. If a URL is provided, it must use the `file:` protocol. + * URL support is _experimental_. + */ + function __promisify__(path: PathLike): Promise; + } + /** + * Returns `true` if the path exists, `false` otherwise. + * + * For detailed information, see the documentation of the asynchronous version of + * this API: {@link exists}. + * + * `fs.exists()` is deprecated, but `fs.existsSync()` is not. The `callback`parameter to `fs.exists()` accepts parameters that are inconsistent with other + * Node.js callbacks. `fs.existsSync()` does not use a callback. + * + * ```js + * import { existsSync } from 'fs'; + * + * if (existsSync('/etc/passwd')) + * console.log('The path exists.'); + * ``` + * @since v0.1.21 + */ + export function existsSync(path: PathLike): boolean; + export namespace constants { + // File Access Constants + /** Constant for fs.access(). File is visible to the calling process. */ + const F_OK: number; + /** Constant for fs.access(). File can be read by the calling process. */ + const R_OK: number; + /** Constant for fs.access(). File can be written by the calling process. */ + const W_OK: number; + /** Constant for fs.access(). File can be executed by the calling process. */ + const X_OK: number; + // File Copy Constants + /** Constant for fs.copyFile. Flag indicating the destination file should not be overwritten if it already exists. */ + const COPYFILE_EXCL: number; + /** + * Constant for fs.copyFile. copy operation will attempt to create a copy-on-write reflink. + * If the underlying platform does not support copy-on-write, then a fallback copy mechanism is used. + */ + const COPYFILE_FICLONE: number; + /** + * Constant for fs.copyFile. Copy operation will attempt to create a copy-on-write reflink. + * If the underlying platform does not support copy-on-write, then the operation will fail with an error. + */ + const COPYFILE_FICLONE_FORCE: number; + // File Open Constants + /** Constant for fs.open(). Flag indicating to open a file for read-only access. */ + const O_RDONLY: number; + /** Constant for fs.open(). Flag indicating to open a file for write-only access. */ + const O_WRONLY: number; + /** Constant for fs.open(). Flag indicating to open a file for read-write access. */ + const O_RDWR: number; + /** Constant for fs.open(). Flag indicating to create the file if it does not already exist. */ + const O_CREAT: number; + /** Constant for fs.open(). Flag indicating that opening a file should fail if the O_CREAT flag is set and the file already exists. */ + const O_EXCL: number; + /** + * Constant for fs.open(). Flag indicating that if path identifies a terminal device, + * opening the path shall not cause that terminal to become the controlling terminal for the process + * (if the process does not already have one). + */ + const O_NOCTTY: number; + /** Constant for fs.open(). Flag indicating that if the file exists and is a regular file, and the file is opened successfully for write access, its length shall be truncated to zero. */ + const O_TRUNC: number; + /** Constant for fs.open(). Flag indicating that data will be appended to the end of the file. */ + const O_APPEND: number; + /** Constant for fs.open(). Flag indicating that the open should fail if the path is not a directory. */ + const O_DIRECTORY: number; + /** + * constant for fs.open(). + * Flag indicating reading accesses to the file system will no longer result in + * an update to the atime information associated with the file. + * This flag is available on Linux operating systems only. + */ + const O_NOATIME: number; + /** Constant for fs.open(). Flag indicating that the open should fail if the path is a symbolic link. */ + const O_NOFOLLOW: number; + /** Constant for fs.open(). Flag indicating that the file is opened for synchronous I/O. */ + const O_SYNC: number; + /** Constant for fs.open(). Flag indicating that the file is opened for synchronous I/O with write operations waiting for data integrity. */ + const O_DSYNC: number; + /** Constant for fs.open(). Flag indicating to open the symbolic link itself rather than the resource it is pointing to. */ + const O_SYMLINK: number; + /** Constant for fs.open(). When set, an attempt will be made to minimize caching effects of file I/O. */ + const O_DIRECT: number; + /** Constant for fs.open(). Flag indicating to open the file in nonblocking mode when possible. */ + const O_NONBLOCK: number; + // File Type Constants + /** Constant for fs.Stats mode property for determining a file's type. Bit mask used to extract the file type code. */ + const S_IFMT: number; + /** Constant for fs.Stats mode property for determining a file's type. File type constant for a regular file. */ + const S_IFREG: number; + /** Constant for fs.Stats mode property for determining a file's type. File type constant for a directory. */ + const S_IFDIR: number; + /** Constant for fs.Stats mode property for determining a file's type. File type constant for a character-oriented device file. */ + const S_IFCHR: number; + /** Constant for fs.Stats mode property for determining a file's type. File type constant for a block-oriented device file. */ + const S_IFBLK: number; + /** Constant for fs.Stats mode property for determining a file's type. File type constant for a FIFO/pipe. */ + const S_IFIFO: number; + /** Constant for fs.Stats mode property for determining a file's type. File type constant for a symbolic link. */ + const S_IFLNK: number; + /** Constant for fs.Stats mode property for determining a file's type. File type constant for a socket. */ + const S_IFSOCK: number; + // File Mode Constants + /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating readable, writable and executable by owner. */ + const S_IRWXU: number; + /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating readable by owner. */ + const S_IRUSR: number; + /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating writable by owner. */ + const S_IWUSR: number; + /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating executable by owner. */ + const S_IXUSR: number; + /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating readable, writable and executable by group. */ + const S_IRWXG: number; + /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating readable by group. */ + const S_IRGRP: number; + /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating writable by group. */ + const S_IWGRP: number; + /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating executable by group. */ + const S_IXGRP: number; + /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating readable, writable and executable by others. */ + const S_IRWXO: number; + /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating readable by others. */ + const S_IROTH: number; + /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating writable by others. */ + const S_IWOTH: number; + /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating executable by others. */ + const S_IXOTH: number; + /** + * When set, a memory file mapping is used to access the file. This flag + * is available on Windows operating systems only. On other operating systems, + * this flag is ignored. + */ + const UV_FS_O_FILEMAP: number; + } + /** + * Tests a user's permissions for the file or directory specified by `path`. + * The `mode` argument is an optional integer that specifies the accessibility + * checks to be performed. `mode` should be either the value `fs.constants.F_OK`or a mask consisting of the bitwise OR of any of `fs.constants.R_OK`,`fs.constants.W_OK`, and `fs.constants.X_OK` + * (e.g.`fs.constants.W_OK | fs.constants.R_OK`). Check `File access constants` for + * possible values of `mode`. + * + * The final argument, `callback`, is a callback function that is invoked with + * a possible error argument. If any of the accessibility checks fail, the error + * argument will be an `Error` object. The following examples check if`package.json` exists, and if it is readable or writable. + * + * ```js + * import { access, constants } from 'fs'; + * + * const file = 'package.json'; + * + * // Check if the file exists in the current directory. + * access(file, constants.F_OK, (err) => { + * console.log(`${file} ${err ? 'does not exist' : 'exists'}`); + * }); + * + * // Check if the file is readable. + * access(file, constants.R_OK, (err) => { + * console.log(`${file} ${err ? 'is not readable' : 'is readable'}`); + * }); + * + * // Check if the file is writable. + * access(file, constants.W_OK, (err) => { + * console.log(`${file} ${err ? 'is not writable' : 'is writable'}`); + * }); + * + * // Check if the file is readable and writable. + * access(file, constants.R_OK | constants.W_OK, (err) => { + * console.log(`${file} ${err ? 'is not' : 'is'} readable and writable`); + * }); + * ``` + * + * Do not use `fs.access()` to check for the accessibility of a file before calling`fs.open()`, `fs.readFile()` or `fs.writeFile()`. Doing + * so introduces a race condition, since other processes may change the file's + * state between the two calls. Instead, user code should open/read/write the + * file directly and handle the error raised if the file is not accessible. + * + * **write (NOT RECOMMENDED)** + * + * ```js + * import { access, open, close } from 'fs'; + * + * access('myfile', (err) => { + * if (!err) { + * console.error('myfile already exists'); + * return; + * } + * + * open('myfile', 'wx', (err, fd) => { + * if (err) throw err; + * + * try { + * writeMyData(fd); + * } finally { + * close(fd, (err) => { + * if (err) throw err; + * }); + * } + * }); + * }); + * ``` + * + * **write (RECOMMENDED)** + * + * ```js + * import { open, close } from 'fs'; + * + * open('myfile', 'wx', (err, fd) => { + * if (err) { + * if (err.code === 'EEXIST') { + * console.error('myfile already exists'); + * return; + * } + * + * throw err; + * } + * + * try { + * writeMyData(fd); + * } finally { + * close(fd, (err) => { + * if (err) throw err; + * }); + * } + * }); + * ``` + * + * **read (NOT RECOMMENDED)** + * + * ```js + * import { access, open, close } from 'fs'; + * access('myfile', (err) => { + * if (err) { + * if (err.code === 'ENOENT') { + * console.error('myfile does not exist'); + * return; + * } + * + * throw err; + * } + * + * open('myfile', 'r', (err, fd) => { + * if (err) throw err; + * + * try { + * readMyData(fd); + * } finally { + * close(fd, (err) => { + * if (err) throw err; + * }); + * } + * }); + * }); + * ``` + * + * **read (RECOMMENDED)** + * + * ```js + * import { open, close } from 'fs'; + * + * open('myfile', 'r', (err, fd) => { + * if (err) { + * if (err.code === 'ENOENT') { + * console.error('myfile does not exist'); + * return; + * } + * + * throw err; + * } + * + * try { + * readMyData(fd); + * } finally { + * close(fd, (err) => { + * if (err) throw err; + * }); + * } + * }); + * ``` + * + * The "not recommended" examples above check for accessibility and then use the + * file; the "recommended" examples are better because they use the file directly + * and handle the error, if any. + * + * In general, check for the accessibility of a file only if the file will not be + * used directly, for example when its accessibility is a signal from another + * process. + * + * On Windows, access-control policies (ACLs) on a directory may limit access to + * a file or directory. The `fs.access()` function, however, does not check the + * ACL and therefore may report that a path is accessible even if the ACL restricts + * the user from reading or writing to it. + * @since v0.11.15 + * @param [mode=fs.constants.F_OK] + */ + export function access(path: PathLike, mode: number | undefined, callback: NoParamCallback): void; + /** + * Asynchronously tests a user's permissions for the file specified by path. + * @param path A path to a file or directory. If a URL is provided, it must use the `file:` protocol. + */ + export function access(path: PathLike, callback: NoParamCallback): void; + export namespace access { + /** + * Asynchronously tests a user's permissions for the file specified by path. + * @param path A path to a file or directory. If a URL is provided, it must use the `file:` protocol. + * URL support is _experimental_. + */ + function __promisify__(path: PathLike, mode?: number): Promise; + } + /** + * Synchronously tests a user's permissions for the file or directory specified + * by `path`. The `mode` argument is an optional integer that specifies the + * accessibility checks to be performed. `mode` should be either the value`fs.constants.F_OK` or a mask consisting of the bitwise OR of any of`fs.constants.R_OK`, `fs.constants.W_OK`, and + * `fs.constants.X_OK` (e.g.`fs.constants.W_OK | fs.constants.R_OK`). Check `File access constants` for + * possible values of `mode`. + * + * If any of the accessibility checks fail, an `Error` will be thrown. Otherwise, + * the method will return `undefined`. + * + * ```js + * import { accessSync, constants } from 'fs'; + * + * try { + * accessSync('etc/passwd', constants.R_OK | constants.W_OK); + * console.log('can read/write'); + * } catch (err) { + * console.error('no access!'); + * } + * ``` + * @since v0.11.15 + * @param [mode=fs.constants.F_OK] + */ + export function accessSync(path: PathLike, mode?: number): void; + interface StreamOptions { + flags?: string | undefined; + encoding?: BufferEncoding | undefined; + fd?: number | promises.FileHandle | undefined; + mode?: number | undefined; + autoClose?: boolean | undefined; + /** + * @default false + */ + emitClose?: boolean | undefined; + start?: number | undefined; + highWaterMark?: number | undefined; + } + interface ReadStreamOptions extends StreamOptions { + end?: number | undefined; + } + /** + * Unlike the 16 kb default `highWaterMark` for a `stream.Readable`, the stream + * returned by this method has a default `highWaterMark` of 64 kb. + * + * `options` can include `start` and `end` values to read a range of bytes from + * the file instead of the entire file. Both `start` and `end` are inclusive and + * start counting at 0, allowed values are in the + * \[0, [`Number.MAX_SAFE_INTEGER`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/MAX_SAFE_INTEGER)\] range. If `fd` is specified and `start` is + * omitted or `undefined`, `fs.createReadStream()` reads sequentially from the + * current file position. The `encoding` can be any one of those accepted by `Buffer`. + * + * If `fd` is specified, `ReadStream` will ignore the `path` argument and will use + * the specified file descriptor. This means that no `'open'` event will be + * emitted. `fd` should be blocking; non-blocking `fd`s should be passed to `net.Socket`. + * + * If `fd` points to a character device that only supports blocking reads + * (such as keyboard or sound card), read operations do not finish until data is + * available. This can prevent the process from exiting and the stream from + * closing naturally. + * + * By default, the stream will emit a `'close'` event after it has been + * destroyed. Set the `emitClose` option to `false` to change this behavior. + * + * By providing the `fs` option, it is possible to override the corresponding `fs`implementations for `open`, `read`, and `close`. When providing the `fs` option, + * an override for `read` is required. If no `fd` is provided, an override for`open` is also required. If `autoClose` is `true`, an override for `close` is + * also required. + * + * ```js + * import { createReadStream } from 'fs'; + * + * // Create a stream from some character device. + * const stream = createReadStream('/dev/input/event0'); + * setTimeout(() => { + * stream.close(); // This may not close the stream. + * // Artificially marking end-of-stream, as if the underlying resource had + * // indicated end-of-file by itself, allows the stream to close. + * // This does not cancel pending read operations, and if there is such an + * // operation, the process may still not be able to exit successfully + * // until it finishes. + * stream.push(null); + * stream.read(0); + * }, 100); + * ``` + * + * If `autoClose` is false, then the file descriptor won't be closed, even if + * there's an error. It is the application's responsibility to close it and make + * sure there's no file descriptor leak. If `autoClose` is set to true (default + * behavior), on `'error'` or `'end'` the file descriptor will be closed + * automatically. + * + * `mode` sets the file mode (permission and sticky bits), but only if the + * file was created. + * + * An example to read the last 10 bytes of a file which is 100 bytes long: + * + * ```js + * import { createReadStream } from 'fs'; + * + * createReadStream('sample.txt', { start: 90, end: 99 }); + * ``` + * + * If `options` is a string, then it specifies the encoding. + * @since v0.1.31 + */ + export function createReadStream(path: PathLike, options?: BufferEncoding | ReadStreamOptions): ReadStream; + /** + * `options` may also include a `start` option to allow writing data at some + * position past the beginning of the file, allowed values are in the + * \[0, [`Number.MAX_SAFE_INTEGER`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/MAX_SAFE_INTEGER)\] range. Modifying a file rather than + * replacing it may require the `flags` option to be set to `r+` rather than the + * default `w`. The `encoding` can be any one of those accepted by `Buffer`. + * + * If `autoClose` is set to true (default behavior) on `'error'` or `'finish'`the file descriptor will be closed automatically. If `autoClose` is false, + * then the file descriptor won't be closed, even if there's an error. + * It is the application's responsibility to close it and make sure there's no + * file descriptor leak. + * + * By default, the stream will emit a `'close'` event after it has been + * destroyed. Set the `emitClose` option to `false` to change this behavior. + * + * By providing the `fs` option it is possible to override the corresponding `fs`implementations for `open`, `write`, `writev` and `close`. Overriding `write()`without `writev()` can reduce + * performance as some optimizations (`_writev()`) + * will be disabled. When providing the `fs` option, overrides for at least one of`write` and `writev` are required. If no `fd` option is supplied, an override + * for `open` is also required. If `autoClose` is `true`, an override for `close`is also required. + * + * Like `fs.ReadStream`, if `fd` is specified, `fs.WriteStream` will ignore the`path` argument and will use the specified file descriptor. This means that no`'open'` event will be + * emitted. `fd` should be blocking; non-blocking `fd`s + * should be passed to `net.Socket`. + * + * If `options` is a string, then it specifies the encoding. + * @since v0.1.31 + */ + export function createWriteStream(path: PathLike, options?: BufferEncoding | StreamOptions): WriteStream; + /** + * Forces all currently queued I/O operations associated with the file to the + * operating system's synchronized I/O completion state. Refer to the POSIX [`fdatasync(2)`](http://man7.org/linux/man-pages/man2/fdatasync.2.html) documentation for details. No arguments other + * than a possible + * exception are given to the completion callback. + * @since v0.1.96 + */ + export function fdatasync(fd: number, callback: NoParamCallback): void; + export namespace fdatasync { + /** + * Asynchronous fdatasync(2) - synchronize a file's in-core state with storage device. + * @param fd A file descriptor. + */ + function __promisify__(fd: number): Promise; + } + /** + * Forces all currently queued I/O operations associated with the file to the + * operating system's synchronized I/O completion state. Refer to the POSIX [`fdatasync(2)`](http://man7.org/linux/man-pages/man2/fdatasync.2.html) documentation for details. Returns `undefined`. + * @since v0.1.96 + */ + export function fdatasyncSync(fd: number): void; + /** + * Asynchronously copies `src` to `dest`. By default, `dest` is overwritten if it + * already exists. No arguments other than a possible exception are given to the + * callback function. Node.js makes no guarantees about the atomicity of the copy + * operation. If an error occurs after the destination file has been opened for + * writing, Node.js will attempt to remove the destination. + * + * `mode` is an optional integer that specifies the behavior + * of the copy operation. It is possible to create a mask consisting of the bitwise + * OR of two or more values (e.g.`fs.constants.COPYFILE_EXCL | fs.constants.COPYFILE_FICLONE`). + * + * * `fs.constants.COPYFILE_EXCL`: The copy operation will fail if `dest` already + * exists. + * * `fs.constants.COPYFILE_FICLONE`: The copy operation will attempt to create a + * copy-on-write reflink. If the platform does not support copy-on-write, then a + * fallback copy mechanism is used. + * * `fs.constants.COPYFILE_FICLONE_FORCE`: The copy operation will attempt to + * create a copy-on-write reflink. If the platform does not support + * copy-on-write, then the operation will fail. + * + * ```js + * import { copyFile, constants } from 'fs'; + * + * function callback(err) { + * if (err) throw err; + * console.log('source.txt was copied to destination.txt'); + * } + * + * // destination.txt will be created or overwritten by default. + * copyFile('source.txt', 'destination.txt', callback); + * + * // By using COPYFILE_EXCL, the operation will fail if destination.txt exists. + * copyFile('source.txt', 'destination.txt', constants.COPYFILE_EXCL, callback); + * ``` + * @since v8.5.0 + * @param src source filename to copy + * @param dest destination filename of the copy operation + * @param [mode=0] modifiers for copy operation. + */ + export function copyFile(src: PathLike, dest: PathLike, callback: NoParamCallback): void; + export function copyFile(src: PathLike, dest: PathLike, mode: number, callback: NoParamCallback): void; + export namespace copyFile { + function __promisify__(src: PathLike, dst: PathLike, mode?: number): Promise; + } + /** + * Synchronously copies `src` to `dest`. By default, `dest` is overwritten if it + * already exists. Returns `undefined`. Node.js makes no guarantees about the + * atomicity of the copy operation. If an error occurs after the destination file + * has been opened for writing, Node.js will attempt to remove the destination. + * + * `mode` is an optional integer that specifies the behavior + * of the copy operation. It is possible to create a mask consisting of the bitwise + * OR of two or more values (e.g.`fs.constants.COPYFILE_EXCL | fs.constants.COPYFILE_FICLONE`). + * + * * `fs.constants.COPYFILE_EXCL`: The copy operation will fail if `dest` already + * exists. + * * `fs.constants.COPYFILE_FICLONE`: The copy operation will attempt to create a + * copy-on-write reflink. If the platform does not support copy-on-write, then a + * fallback copy mechanism is used. + * * `fs.constants.COPYFILE_FICLONE_FORCE`: The copy operation will attempt to + * create a copy-on-write reflink. If the platform does not support + * copy-on-write, then the operation will fail. + * + * ```js + * import { copyFileSync, constants } from 'fs'; + * + * // destination.txt will be created or overwritten by default. + * copyFileSync('source.txt', 'destination.txt'); + * console.log('source.txt was copied to destination.txt'); + * + * // By using COPYFILE_EXCL, the operation will fail if destination.txt exists. + * copyFileSync('source.txt', 'destination.txt', constants.COPYFILE_EXCL); + * ``` + * @since v8.5.0 + * @param src source filename to copy + * @param dest destination filename of the copy operation + * @param [mode=0] modifiers for copy operation. + */ + export function copyFileSync(src: PathLike, dest: PathLike, mode?: number): void; + /** + * Write an array of `ArrayBufferView`s to the file specified by `fd` using`writev()`. + * + * `position` is the offset from the beginning of the file where this data + * should be written. If `typeof position !== 'number'`, the data will be written + * at the current position. + * + * The callback will be given three arguments: `err`, `bytesWritten`, and`buffers`. `bytesWritten` is how many bytes were written from `buffers`. + * + * If this method is `util.promisify()` ed, it returns a promise for an`Object` with `bytesWritten` and `buffers` properties. + * + * It is unsafe to use `fs.writev()` multiple times on the same file without + * waiting for the callback. For this scenario, use {@link createWriteStream}. + * + * On Linux, positional writes don't work when the file is opened in append mode. + * The kernel ignores the position argument and always appends the data to + * the end of the file. + * @since v12.9.0 + */ + export function writev(fd: number, buffers: ReadonlyArray, cb: (err: NodeJS.ErrnoException | null, bytesWritten: number, buffers: NodeJS.ArrayBufferView[]) => void): void; + export function writev( + fd: number, + buffers: ReadonlyArray, + position: number, + cb: (err: NodeJS.ErrnoException | null, bytesWritten: number, buffers: NodeJS.ArrayBufferView[]) => void + ): void; + export interface WriteVResult { + bytesWritten: number; + buffers: NodeJS.ArrayBufferView[]; + } + export namespace writev { + function __promisify__(fd: number, buffers: ReadonlyArray, position?: number): Promise; + } + /** + * For detailed information, see the documentation of the asynchronous version of + * this API: {@link writev}. + * @since v12.9.0 + * @return The number of bytes written. + */ + export function writevSync(fd: number, buffers: ReadonlyArray, position?: number): number; + /** + * Read from a file specified by `fd` and write to an array of `ArrayBufferView`s + * using `readv()`. + * + * `position` is the offset from the beginning of the file from where data + * should be read. If `typeof position !== 'number'`, the data will be read + * from the current position. + * + * The callback will be given three arguments: `err`, `bytesRead`, and`buffers`. `bytesRead` is how many bytes were read from the file. + * + * If this method is invoked as its `util.promisify()` ed version, it returns + * a promise for an `Object` with `bytesRead` and `buffers` properties. + * @since v13.13.0, v12.17.0 + */ + export function readv(fd: number, buffers: ReadonlyArray, cb: (err: NodeJS.ErrnoException | null, bytesRead: number, buffers: NodeJS.ArrayBufferView[]) => void): void; + export function readv( + fd: number, + buffers: ReadonlyArray, + position: number, + cb: (err: NodeJS.ErrnoException | null, bytesRead: number, buffers: NodeJS.ArrayBufferView[]) => void + ): void; + export interface ReadVResult { + bytesRead: number; + buffers: NodeJS.ArrayBufferView[]; + } + export namespace readv { + function __promisify__(fd: number, buffers: ReadonlyArray, position?: number): Promise; + } + /** + * For detailed information, see the documentation of the asynchronous version of + * this API: {@link readv}. + * @since v13.13.0, v12.17.0 + * @return The number of bytes read. + */ + export function readvSync(fd: number, buffers: ReadonlyArray, position?: number): number; + export interface OpenDirOptions { + encoding?: BufferEncoding | undefined; + /** + * Number of directory entries that are buffered + * internally when reading from the directory. Higher values lead to better + * performance but higher memory usage. + * @default 32 + */ + bufferSize?: number | undefined; + } + /** + * Synchronously open a directory. See [`opendir(3)`](http://man7.org/linux/man-pages/man3/opendir.3.html). + * + * Creates an `fs.Dir`, which contains all further functions for reading from + * and cleaning up the directory. + * + * The `encoding` option sets the encoding for the `path` while opening the + * directory and subsequent read operations. + * @since v12.12.0 + */ + export function opendirSync(path: PathLike, options?: OpenDirOptions): Dir; + /** + * Asynchronously open a directory. See the POSIX [`opendir(3)`](http://man7.org/linux/man-pages/man3/opendir.3.html) documentation for + * more details. + * + * Creates an `fs.Dir`, which contains all further functions for reading from + * and cleaning up the directory. + * + * The `encoding` option sets the encoding for the `path` while opening the + * directory and subsequent read operations. + * @since v12.12.0 + */ + export function opendir(path: PathLike, cb: (err: NodeJS.ErrnoException | null, dir: Dir) => void): void; + export function opendir(path: PathLike, options: OpenDirOptions, cb: (err: NodeJS.ErrnoException | null, dir: Dir) => void): void; + export namespace opendir { + function __promisify__(path: PathLike, options?: OpenDirOptions): Promise; + } + export interface BigIntStats extends StatsBase { + atimeNs: bigint; + mtimeNs: bigint; + ctimeNs: bigint; + birthtimeNs: bigint; + } + export interface BigIntOptions { + bigint: true; + } + export interface StatOptions { + bigint?: boolean | undefined; + } + export interface StatSyncOptions extends StatOptions { + throwIfNoEntry?: boolean | undefined; + } + interface CopyOptionsBase { + /** + * Dereference symlinks + * @default false + */ + dereference?: boolean; + /** + * When `force` is `false`, and the destination + * exists, throw an error. + * @default false + */ + errorOnExist?: boolean; + /** + * Overwrite existing file or directory. _The copy + * operation will ignore errors if you set this to false and the destination + * exists. Use the `errorOnExist` option to change this behavior. + * @default true + */ + force?: boolean; + /** + * When `true` timestamps from `src` will + * be preserved. + * @default false + */ + preserveTimestamps?: boolean; + /** + * Copy directories recursively. + * @default false + */ + recursive?: boolean; + /** + * When true, path resolution for symlinks will be skipped + * @default false + */ + verbatimSymlinks?: boolean; + } + export interface CopyOptions extends CopyOptionsBase { + /** + * Function to filter copied files/directories. Return + * `true` to copy the item, `false` to ignore it. + */ + filter?(source: string, destination: string): boolean | Promise; + } + export interface CopySyncOptions extends CopyOptionsBase { + /** + * Function to filter copied files/directories. Return + * `true` to copy the item, `false` to ignore it. + */ + filter?(source: string, destination: string): boolean; + } + /** + * Asynchronously copies the entire directory structure from `src` to `dest`, + * including subdirectories and files. + * + * When copying a directory to another directory, globs are not supported and + * behavior is similar to `cp dir1/ dir2/`. + * @since v16.7.0 + * @experimental + * @param src source path to copy. + * @param dest destination path to copy to. + */ + export function cp(source: string | URL, destination: string | URL, callback: (err: NodeJS.ErrnoException | null) => void): void; + export function cp(source: string | URL, destination: string | URL, opts: CopyOptions, callback: (err: NodeJS.ErrnoException | null) => void): void; + /** + * Synchronously copies the entire directory structure from `src` to `dest`, + * including subdirectories and files. + * + * When copying a directory to another directory, globs are not supported and + * behavior is similar to `cp dir1/ dir2/`. + * @since v16.7.0 + * @experimental + * @param src source path to copy. + * @param dest destination path to copy to. + */ + export function cpSync(source: string | URL, destination: string | URL, opts?: CopySyncOptions): void; +} +declare module 'node:fs' { + export * from 'fs'; +} diff --git a/node_modules/@types/node/ts4.8/fs/promises.d.ts b/node_modules/@types/node/ts4.8/fs/promises.d.ts new file mode 100644 index 000000000..9d0b5f109 --- /dev/null +++ b/node_modules/@types/node/ts4.8/fs/promises.d.ts @@ -0,0 +1,1120 @@ +/** + * The `fs/promises` API provides asynchronous file system methods that return + * promises. + * + * The promise APIs use the underlying Node.js threadpool to perform file + * system operations off the event loop thread. These operations are not + * synchronized or threadsafe. Care must be taken when performing multiple + * concurrent modifications on the same file or data corruption may occur. + * @since v10.0.0 + */ +declare module 'fs/promises' { + import { Abortable } from 'node:events'; + import { Stream } from 'node:stream'; + import { ReadableStream } from 'node:stream/web'; + import { + BigIntStats, + BufferEncodingOption, + constants as fsConstants, + CopyOptions, + Dir, + Dirent, + MakeDirectoryOptions, + Mode, + ObjectEncodingOptions, + OpenDirOptions, + OpenMode, + PathLike, + ReadStream, + ReadVResult, + RmDirOptions, + RmOptions, + StatOptions, + Stats, + TimeLike, + WatchEventType, + WatchOptions, + WriteStream, + WriteVResult, + } from 'node:fs'; + + interface FileChangeInfo { + eventType: WatchEventType; + filename: T; + } + interface FlagAndOpenMode { + mode?: Mode | undefined; + flag?: OpenMode | undefined; + } + interface FileReadResult { + bytesRead: number; + buffer: T; + } + interface FileReadOptions { + /** + * @default `Buffer.alloc(0xffff)` + */ + buffer?: T; + /** + * @default 0 + */ + offset?: number | null; + /** + * @default `buffer.byteLength` + */ + length?: number | null; + position?: number | null; + } + interface CreateReadStreamOptions { + encoding?: BufferEncoding | null | undefined; + autoClose?: boolean | undefined; + emitClose?: boolean | undefined; + start?: number | undefined; + end?: number | undefined; + highWaterMark?: number | undefined; + } + interface CreateWriteStreamOptions { + encoding?: BufferEncoding | null | undefined; + autoClose?: boolean | undefined; + emitClose?: boolean | undefined; + start?: number | undefined; + } + // TODO: Add `EventEmitter` close + interface FileHandle { + /** + * The numeric file descriptor managed by the {FileHandle} object. + * @since v10.0.0 + */ + readonly fd: number; + /** + * Alias of `filehandle.writeFile()`. + * + * When operating on file handles, the mode cannot be changed from what it was set + * to with `fsPromises.open()`. Therefore, this is equivalent to `filehandle.writeFile()`. + * @since v10.0.0 + * @return Fulfills with `undefined` upon success. + */ + appendFile(data: string | Uint8Array, options?: (ObjectEncodingOptions & FlagAndOpenMode) | BufferEncoding | null): Promise; + /** + * Changes the ownership of the file. A wrapper for [`chown(2)`](http://man7.org/linux/man-pages/man2/chown.2.html). + * @since v10.0.0 + * @param uid The file's new owner's user id. + * @param gid The file's new group's group id. + * @return Fulfills with `undefined` upon success. + */ + chown(uid: number, gid: number): Promise; + /** + * Modifies the permissions on the file. See [`chmod(2)`](http://man7.org/linux/man-pages/man2/chmod.2.html). + * @since v10.0.0 + * @param mode the file mode bit mask. + * @return Fulfills with `undefined` upon success. + */ + chmod(mode: Mode): Promise; + /** + * Unlike the 16 kb default `highWaterMark` for a `stream.Readable`, the stream + * returned by this method has a default `highWaterMark` of 64 kb. + * + * `options` can include `start` and `end` values to read a range of bytes from + * the file instead of the entire file. Both `start` and `end` are inclusive and + * start counting at 0, allowed values are in the + * \[0, [`Number.MAX_SAFE_INTEGER`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/MAX_SAFE_INTEGER)\] range. If `start` is + * omitted or `undefined`, `filehandle.createReadStream()` reads sequentially from + * the current file position. The `encoding` can be any one of those accepted by `Buffer`. + * + * If the `FileHandle` points to a character device that only supports blocking + * reads (such as keyboard or sound card), read operations do not finish until data + * is available. This can prevent the process from exiting and the stream from + * closing naturally. + * + * By default, the stream will emit a `'close'` event after it has been + * destroyed. Set the `emitClose` option to `false` to change this behavior. + * + * ```js + * import { open } from 'fs/promises'; + * + * const fd = await open('/dev/input/event0'); + * // Create a stream from some character device. + * const stream = fd.createReadStream(); + * setTimeout(() => { + * stream.close(); // This may not close the stream. + * // Artificially marking end-of-stream, as if the underlying resource had + * // indicated end-of-file by itself, allows the stream to close. + * // This does not cancel pending read operations, and if there is such an + * // operation, the process may still not be able to exit successfully + * // until it finishes. + * stream.push(null); + * stream.read(0); + * }, 100); + * ``` + * + * If `autoClose` is false, then the file descriptor won't be closed, even if + * there's an error. It is the application's responsibility to close it and make + * sure there's no file descriptor leak. If `autoClose` is set to true (default + * behavior), on `'error'` or `'end'` the file descriptor will be closed + * automatically. + * + * An example to read the last 10 bytes of a file which is 100 bytes long: + * + * ```js + * import { open } from 'fs/promises'; + * + * const fd = await open('sample.txt'); + * fd.createReadStream({ start: 90, end: 99 }); + * ``` + * @since v16.11.0 + */ + createReadStream(options?: CreateReadStreamOptions): ReadStream; + /** + * `options` may also include a `start` option to allow writing data at some + * position past the beginning of the file, allowed values are in the + * \[0, [`Number.MAX_SAFE_INTEGER`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/MAX_SAFE_INTEGER)\] range. Modifying a file rather than + * replacing it may require the `flags` `open` option to be set to `r+` rather than + * the default `r`. The `encoding` can be any one of those accepted by `Buffer`. + * + * If `autoClose` is set to true (default behavior) on `'error'` or `'finish'`the file descriptor will be closed automatically. If `autoClose` is false, + * then the file descriptor won't be closed, even if there's an error. + * It is the application's responsibility to close it and make sure there's no + * file descriptor leak. + * + * By default, the stream will emit a `'close'` event after it has been + * destroyed. Set the `emitClose` option to `false` to change this behavior. + * @since v16.11.0 + */ + createWriteStream(options?: CreateWriteStreamOptions): WriteStream; + /** + * Forces all currently queued I/O operations associated with the file to the + * operating system's synchronized I/O completion state. Refer to the POSIX [`fdatasync(2)`](http://man7.org/linux/man-pages/man2/fdatasync.2.html) documentation for details. + * + * Unlike `filehandle.sync` this method does not flush modified metadata. + * @since v10.0.0 + * @return Fulfills with `undefined` upon success. + */ + datasync(): Promise; + /** + * Request that all data for the open file descriptor is flushed to the storage + * device. The specific implementation is operating system and device specific. + * Refer to the POSIX [`fsync(2)`](http://man7.org/linux/man-pages/man2/fsync.2.html) documentation for more detail. + * @since v10.0.0 + * @return Fufills with `undefined` upon success. + */ + sync(): Promise; + /** + * Reads data from the file and stores that in the given buffer. + * + * If the file is not modified concurrently, the end-of-file is reached when the + * number of bytes read is zero. + * @since v10.0.0 + * @param buffer A buffer that will be filled with the file data read. + * @param offset The location in the buffer at which to start filling. + * @param length The number of bytes to read. + * @param position The location where to begin reading data from the file. If `null`, data will be read from the current file position, and the position will be updated. If `position` is an + * integer, the current file position will remain unchanged. + * @return Fulfills upon success with an object with two properties: + */ + read(buffer: T, offset?: number | null, length?: number | null, position?: number | null): Promise>; + read(options?: FileReadOptions): Promise>; + /** + * Returns a `ReadableStream` that may be used to read the files data. + * + * An error will be thrown if this method is called more than once or is called after the `FileHandle` is closed + * or closing. + * + * ```js + * import { open } from 'node:fs/promises'; + * + * const file = await open('./some/file/to/read'); + * + * for await (const chunk of file.readableWebStream()) + * console.log(chunk); + * + * await file.close(); + * ``` + * + * While the `ReadableStream` will read the file to completion, it will not close the `FileHandle` automatically. User code must still call the `fileHandle.close()` method. + * + * @since v17.0.0 + * @experimental + */ + readableWebStream(): ReadableStream; + /** + * Asynchronously reads the entire contents of a file. + * + * If `options` is a string, then it specifies the `encoding`. + * + * The `FileHandle` has to support reading. + * + * If one or more `filehandle.read()` calls are made on a file handle and then a`filehandle.readFile()` call is made, the data will be read from the current + * position till the end of the file. It doesn't always read from the beginning + * of the file. + * @since v10.0.0 + * @return Fulfills upon a successful read with the contents of the file. If no encoding is specified (using `options.encoding`), the data is returned as a {Buffer} object. Otherwise, the + * data will be a string. + */ + readFile( + options?: { + encoding?: null | undefined; + flag?: OpenMode | undefined; + } | null + ): Promise; + /** + * Asynchronously reads the entire contents of a file. The underlying file will _not_ be closed automatically. + * The `FileHandle` must have been opened for reading. + * @param options An object that may contain an optional flag. + * If a flag is not provided, it defaults to `'r'`. + */ + readFile( + options: + | { + encoding: BufferEncoding; + flag?: OpenMode | undefined; + } + | BufferEncoding + ): Promise; + /** + * Asynchronously reads the entire contents of a file. The underlying file will _not_ be closed automatically. + * The `FileHandle` must have been opened for reading. + * @param options An object that may contain an optional flag. + * If a flag is not provided, it defaults to `'r'`. + */ + readFile( + options?: + | (ObjectEncodingOptions & { + flag?: OpenMode | undefined; + }) + | BufferEncoding + | null + ): Promise; + /** + * @since v10.0.0 + * @return Fulfills with an {fs.Stats} for the file. + */ + stat( + opts?: StatOptions & { + bigint?: false | undefined; + } + ): Promise; + stat( + opts: StatOptions & { + bigint: true; + } + ): Promise; + stat(opts?: StatOptions): Promise; + /** + * Truncates the file. + * + * If the file was larger than `len` bytes, only the first `len` bytes will be + * retained in the file. + * + * The following example retains only the first four bytes of the file: + * + * ```js + * import { open } from 'fs/promises'; + * + * let filehandle = null; + * try { + * filehandle = await open('temp.txt', 'r+'); + * await filehandle.truncate(4); + * } finally { + * await filehandle?.close(); + * } + * ``` + * + * If the file previously was shorter than `len` bytes, it is extended, and the + * extended part is filled with null bytes (`'\0'`): + * + * If `len` is negative then `0` will be used. + * @since v10.0.0 + * @param [len=0] + * @return Fulfills with `undefined` upon success. + */ + truncate(len?: number): Promise; + /** + * Change the file system timestamps of the object referenced by the `FileHandle` then resolves the promise with no arguments upon success. + * @since v10.0.0 + */ + utimes(atime: TimeLike, mtime: TimeLike): Promise; + /** + * Asynchronously writes data to a file, replacing the file if it already exists.`data` can be a string, a buffer, an + * [AsyncIterable](https://tc39.github.io/ecma262/#sec-asynciterable-interface) or + * [Iterable](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols#The_iterable_protocol) object. + * The promise is resolved with no arguments upon success. + * + * If `options` is a string, then it specifies the `encoding`. + * + * The `FileHandle` has to support writing. + * + * It is unsafe to use `filehandle.writeFile()` multiple times on the same file + * without waiting for the promise to be resolved (or rejected). + * + * If one or more `filehandle.write()` calls are made on a file handle and then a`filehandle.writeFile()` call is made, the data will be written from the + * current position till the end of the file. It doesn't always write from the + * beginning of the file. + * @since v10.0.0 + */ + writeFile(data: string | Uint8Array, options?: (ObjectEncodingOptions & FlagAndOpenMode & Abortable) | BufferEncoding | null): Promise; + /** + * Write `buffer` to the file. + * + * The promise is resolved with an object containing two properties: + * + * It is unsafe to use `filehandle.write()` multiple times on the same file + * without waiting for the promise to be resolved (or rejected). For this + * scenario, use `filehandle.createWriteStream()`. + * + * On Linux, positional writes do not work when the file is opened in append mode. + * The kernel ignores the position argument and always appends the data to + * the end of the file. + * @since v10.0.0 + * @param [offset=0] The start position from within `buffer` where the data to write begins. + * @param [length=buffer.byteLength - offset] The number of bytes from `buffer` to write. + * @param position The offset from the beginning of the file where the data from `buffer` should be written. If `position` is not a `number`, the data will be written at the current position. + * See the POSIX pwrite(2) documentation for more detail. + */ + write( + buffer: TBuffer, + offset?: number | null, + length?: number | null, + position?: number | null + ): Promise<{ + bytesWritten: number; + buffer: TBuffer; + }>; + write( + data: string, + position?: number | null, + encoding?: BufferEncoding | null + ): Promise<{ + bytesWritten: number; + buffer: string; + }>; + /** + * Write an array of [ArrayBufferView](https://developer.mozilla.org/en-US/docs/Web/API/ArrayBufferView) s to the file. + * + * The promise is resolved with an object containing a two properties: + * + * It is unsafe to call `writev()` multiple times on the same file without waiting + * for the promise to be resolved (or rejected). + * + * On Linux, positional writes don't work when the file is opened in append mode. + * The kernel ignores the position argument and always appends the data to + * the end of the file. + * @since v12.9.0 + * @param position The offset from the beginning of the file where the data from `buffers` should be written. If `position` is not a `number`, the data will be written at the current + * position. + */ + writev(buffers: ReadonlyArray, position?: number): Promise; + /** + * Read from a file and write to an array of [ArrayBufferView](https://developer.mozilla.org/en-US/docs/Web/API/ArrayBufferView) s + * @since v13.13.0, v12.17.0 + * @param position The offset from the beginning of the file where the data should be read from. If `position` is not a `number`, the data will be read from the current position. + * @return Fulfills upon success an object containing two properties: + */ + readv(buffers: ReadonlyArray, position?: number): Promise; + /** + * Closes the file handle after waiting for any pending operation on the handle to + * complete. + * + * ```js + * import { open } from 'fs/promises'; + * + * let filehandle; + * try { + * filehandle = await open('thefile.txt', 'r'); + * } finally { + * await filehandle?.close(); + * } + * ``` + * @since v10.0.0 + * @return Fulfills with `undefined` upon success. + */ + close(): Promise; + } + + const constants: typeof fsConstants; + + /** + * Tests a user's permissions for the file or directory specified by `path`. + * The `mode` argument is an optional integer that specifies the accessibility + * checks to be performed. `mode` should be either the value `fs.constants.F_OK`or a mask consisting of the bitwise OR of any of `fs.constants.R_OK`,`fs.constants.W_OK`, and `fs.constants.X_OK` + * (e.g.`fs.constants.W_OK | fs.constants.R_OK`). Check `File access constants` for + * possible values of `mode`. + * + * If the accessibility check is successful, the promise is resolved with no + * value. If any of the accessibility checks fail, the promise is rejected + * with an [Error](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error) object. The following example checks if the file`/etc/passwd` can be read and + * written by the current process. + * + * ```js + * import { access } from 'fs/promises'; + * import { constants } from 'fs'; + * + * try { + * await access('/etc/passwd', constants.R_OK | constants.W_OK); + * console.log('can access'); + * } catch { + * console.error('cannot access'); + * } + * ``` + * + * Using `fsPromises.access()` to check for the accessibility of a file before + * calling `fsPromises.open()` is not recommended. Doing so introduces a race + * condition, since other processes may change the file's state between the two + * calls. Instead, user code should open/read/write the file directly and handle + * the error raised if the file is not accessible. + * @since v10.0.0 + * @param [mode=fs.constants.F_OK] + * @return Fulfills with `undefined` upon success. + */ + function access(path: PathLike, mode?: number): Promise; + /** + * Asynchronously copies `src` to `dest`. By default, `dest` is overwritten if it + * already exists. + * + * No guarantees are made about the atomicity of the copy operation. If an + * error occurs after the destination file has been opened for writing, an attempt + * will be made to remove the destination. + * + * ```js + * import { constants } from 'fs'; + * import { copyFile } from 'fs/promises'; + * + * try { + * await copyFile('source.txt', 'destination.txt'); + * console.log('source.txt was copied to destination.txt'); + * } catch { + * console.log('The file could not be copied'); + * } + * + * // By using COPYFILE_EXCL, the operation will fail if destination.txt exists. + * try { + * await copyFile('source.txt', 'destination.txt', constants.COPYFILE_EXCL); + * console.log('source.txt was copied to destination.txt'); + * } catch { + * console.log('The file could not be copied'); + * } + * ``` + * @since v10.0.0 + * @param src source filename to copy + * @param dest destination filename of the copy operation + * @param [mode=0] Optional modifiers that specify the behavior of the copy operation. It is possible to create a mask consisting of the bitwise OR of two or more values (e.g. + * `fs.constants.COPYFILE_EXCL | fs.constants.COPYFILE_FICLONE`) + * @return Fulfills with `undefined` upon success. + */ + function copyFile(src: PathLike, dest: PathLike, mode?: number): Promise; + /** + * Opens a `FileHandle`. + * + * Refer to the POSIX [`open(2)`](http://man7.org/linux/man-pages/man2/open.2.html) documentation for more detail. + * + * Some characters (`< > : " / \ | ? *`) are reserved under Windows as documented + * by [Naming Files, Paths, and Namespaces](https://docs.microsoft.com/en-us/windows/desktop/FileIO/naming-a-file). Under NTFS, if the filename contains + * a colon, Node.js will open a file system stream, as described by [this MSDN page](https://docs.microsoft.com/en-us/windows/desktop/FileIO/using-streams). + * @since v10.0.0 + * @param [flags='r'] See `support of file system `flags``. + * @param [mode=0o666] Sets the file mode (permission and sticky bits) if the file is created. + * @return Fulfills with a {FileHandle} object. + */ + function open(path: PathLike, flags?: string | number, mode?: Mode): Promise; + /** + * Renames `oldPath` to `newPath`. + * @since v10.0.0 + * @return Fulfills with `undefined` upon success. + */ + function rename(oldPath: PathLike, newPath: PathLike): Promise; + /** + * Truncates (shortens or extends the length) of the content at `path` to `len`bytes. + * @since v10.0.0 + * @param [len=0] + * @return Fulfills with `undefined` upon success. + */ + function truncate(path: PathLike, len?: number): Promise; + /** + * Removes the directory identified by `path`. + * + * Using `fsPromises.rmdir()` on a file (not a directory) results in the + * promise being rejected with an `ENOENT` error on Windows and an `ENOTDIR`error on POSIX. + * + * To get a behavior similar to the `rm -rf` Unix command, use `fsPromises.rm()` with options `{ recursive: true, force: true }`. + * @since v10.0.0 + * @return Fulfills with `undefined` upon success. + */ + function rmdir(path: PathLike, options?: RmDirOptions): Promise; + /** + * Removes files and directories (modeled on the standard POSIX `rm` utility). + * @since v14.14.0 + * @return Fulfills with `undefined` upon success. + */ + function rm(path: PathLike, options?: RmOptions): Promise; + /** + * Asynchronously creates a directory. + * + * The optional `options` argument can be an integer specifying `mode` (permission + * and sticky bits), or an object with a `mode` property and a `recursive`property indicating whether parent directories should be created. Calling`fsPromises.mkdir()` when `path` is a directory + * that exists results in a + * rejection only when `recursive` is false. + * @since v10.0.0 + * @return Upon success, fulfills with `undefined` if `recursive` is `false`, or the first directory path created if `recursive` is `true`. + */ + function mkdir( + path: PathLike, + options: MakeDirectoryOptions & { + recursive: true; + } + ): Promise; + /** + * Asynchronous mkdir(2) - create a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options Either the file mode, or an object optionally specifying the file mode and whether parent folders + * should be created. If a string is passed, it is parsed as an octal integer. If not specified, defaults to `0o777`. + */ + function mkdir( + path: PathLike, + options?: + | Mode + | (MakeDirectoryOptions & { + recursive?: false | undefined; + }) + | null + ): Promise; + /** + * Asynchronous mkdir(2) - create a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options Either the file mode, or an object optionally specifying the file mode and whether parent folders + * should be created. If a string is passed, it is parsed as an octal integer. If not specified, defaults to `0o777`. + */ + function mkdir(path: PathLike, options?: Mode | MakeDirectoryOptions | null): Promise; + /** + * Reads the contents of a directory. + * + * The optional `options` argument can be a string specifying an encoding, or an + * object with an `encoding` property specifying the character encoding to use for + * the filenames. If the `encoding` is set to `'buffer'`, the filenames returned + * will be passed as `Buffer` objects. + * + * If `options.withFileTypes` is set to `true`, the resolved array will contain `fs.Dirent` objects. + * + * ```js + * import { readdir } from 'fs/promises'; + * + * try { + * const files = await readdir(path); + * for (const file of files) + * console.log(file); + * } catch (err) { + * console.error(err); + * } + * ``` + * @since v10.0.0 + * @return Fulfills with an array of the names of the files in the directory excluding `'.'` and `'..'`. + */ + function readdir( + path: PathLike, + options?: + | (ObjectEncodingOptions & { + withFileTypes?: false | undefined; + }) + | BufferEncoding + | null + ): Promise; + /** + * Asynchronous readdir(3) - read a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function readdir( + path: PathLike, + options: + | { + encoding: 'buffer'; + withFileTypes?: false | undefined; + } + | 'buffer' + ): Promise; + /** + * Asynchronous readdir(3) - read a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function readdir( + path: PathLike, + options?: + | (ObjectEncodingOptions & { + withFileTypes?: false | undefined; + }) + | BufferEncoding + | null + ): Promise; + /** + * Asynchronous readdir(3) - read a directory. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options If called with `withFileTypes: true` the result data will be an array of Dirent. + */ + function readdir( + path: PathLike, + options: ObjectEncodingOptions & { + withFileTypes: true; + } + ): Promise; + /** + * Reads the contents of the symbolic link referred to by `path`. See the POSIX [`readlink(2)`](http://man7.org/linux/man-pages/man2/readlink.2.html) documentation for more detail. The promise is + * resolved with the`linkString` upon success. + * + * The optional `options` argument can be a string specifying an encoding, or an + * object with an `encoding` property specifying the character encoding to use for + * the link path returned. If the `encoding` is set to `'buffer'`, the link path + * returned will be passed as a `Buffer` object. + * @since v10.0.0 + * @return Fulfills with the `linkString` upon success. + */ + function readlink(path: PathLike, options?: ObjectEncodingOptions | BufferEncoding | null): Promise; + /** + * Asynchronous readlink(2) - read value of a symbolic link. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function readlink(path: PathLike, options: BufferEncodingOption): Promise; + /** + * Asynchronous readlink(2) - read value of a symbolic link. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function readlink(path: PathLike, options?: ObjectEncodingOptions | string | null): Promise; + /** + * Creates a symbolic link. + * + * The `type` argument is only used on Windows platforms and can be one of `'dir'`,`'file'`, or `'junction'`. Windows junction points require the destination path + * to be absolute. When using `'junction'`, the `target` argument will + * automatically be normalized to absolute path. + * @since v10.0.0 + * @param [type='file'] + * @return Fulfills with `undefined` upon success. + */ + function symlink(target: PathLike, path: PathLike, type?: string | null): Promise; + /** + * Equivalent to `fsPromises.stat()` unless `path` refers to a symbolic link, + * in which case the link itself is stat-ed, not the file that it refers to. + * Refer to the POSIX [`lstat(2)`](http://man7.org/linux/man-pages/man2/lstat.2.html) document for more detail. + * @since v10.0.0 + * @return Fulfills with the {fs.Stats} object for the given symbolic link `path`. + */ + function lstat( + path: PathLike, + opts?: StatOptions & { + bigint?: false | undefined; + } + ): Promise; + function lstat( + path: PathLike, + opts: StatOptions & { + bigint: true; + } + ): Promise; + function lstat(path: PathLike, opts?: StatOptions): Promise; + /** + * @since v10.0.0 + * @return Fulfills with the {fs.Stats} object for the given `path`. + */ + function stat( + path: PathLike, + opts?: StatOptions & { + bigint?: false | undefined; + } + ): Promise; + function stat( + path: PathLike, + opts: StatOptions & { + bigint: true; + } + ): Promise; + function stat(path: PathLike, opts?: StatOptions): Promise; + /** + * Creates a new link from the `existingPath` to the `newPath`. See the POSIX [`link(2)`](http://man7.org/linux/man-pages/man2/link.2.html) documentation for more detail. + * @since v10.0.0 + * @return Fulfills with `undefined` upon success. + */ + function link(existingPath: PathLike, newPath: PathLike): Promise; + /** + * If `path` refers to a symbolic link, then the link is removed without affecting + * the file or directory to which that link refers. If the `path` refers to a file + * path that is not a symbolic link, the file is deleted. See the POSIX [`unlink(2)`](http://man7.org/linux/man-pages/man2/unlink.2.html) documentation for more detail. + * @since v10.0.0 + * @return Fulfills with `undefined` upon success. + */ + function unlink(path: PathLike): Promise; + /** + * Changes the permissions of a file. + * @since v10.0.0 + * @return Fulfills with `undefined` upon success. + */ + function chmod(path: PathLike, mode: Mode): Promise; + /** + * Changes the permissions on a symbolic link. + * + * This method is only implemented on macOS. + * @deprecated Since v10.0.0 + * @return Fulfills with `undefined` upon success. + */ + function lchmod(path: PathLike, mode: Mode): Promise; + /** + * Changes the ownership on a symbolic link. + * @since v10.0.0 + * @return Fulfills with `undefined` upon success. + */ + function lchown(path: PathLike, uid: number, gid: number): Promise; + /** + * Changes the access and modification times of a file in the same way as `fsPromises.utimes()`, with the difference that if the path refers to a + * symbolic link, then the link is not dereferenced: instead, the timestamps of + * the symbolic link itself are changed. + * @since v14.5.0, v12.19.0 + * @return Fulfills with `undefined` upon success. + */ + function lutimes(path: PathLike, atime: TimeLike, mtime: TimeLike): Promise; + /** + * Changes the ownership of a file. + * @since v10.0.0 + * @return Fulfills with `undefined` upon success. + */ + function chown(path: PathLike, uid: number, gid: number): Promise; + /** + * Change the file system timestamps of the object referenced by `path`. + * + * The `atime` and `mtime` arguments follow these rules: + * + * * Values can be either numbers representing Unix epoch time, `Date`s, or a + * numeric string like `'123456789.0'`. + * * If the value can not be converted to a number, or is `NaN`, `Infinity` or`-Infinity`, an `Error` will be thrown. + * @since v10.0.0 + * @return Fulfills with `undefined` upon success. + */ + function utimes(path: PathLike, atime: TimeLike, mtime: TimeLike): Promise; + /** + * Determines the actual location of `path` using the same semantics as the`fs.realpath.native()` function. + * + * Only paths that can be converted to UTF8 strings are supported. + * + * The optional `options` argument can be a string specifying an encoding, or an + * object with an `encoding` property specifying the character encoding to use for + * the path. If the `encoding` is set to `'buffer'`, the path returned will be + * passed as a `Buffer` object. + * + * On Linux, when Node.js is linked against musl libc, the procfs file system must + * be mounted on `/proc` in order for this function to work. Glibc does not have + * this restriction. + * @since v10.0.0 + * @return Fulfills with the resolved path upon success. + */ + function realpath(path: PathLike, options?: ObjectEncodingOptions | BufferEncoding | null): Promise; + /** + * Asynchronous realpath(3) - return the canonicalized absolute pathname. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function realpath(path: PathLike, options: BufferEncodingOption): Promise; + /** + * Asynchronous realpath(3) - return the canonicalized absolute pathname. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function realpath(path: PathLike, options?: ObjectEncodingOptions | BufferEncoding | null): Promise; + /** + * Creates a unique temporary directory. A unique directory name is generated by + * appending six random characters to the end of the provided `prefix`. Due to + * platform inconsistencies, avoid trailing `X` characters in `prefix`. Some + * platforms, notably the BSDs, can return more than six random characters, and + * replace trailing `X` characters in `prefix` with random characters. + * + * The optional `options` argument can be a string specifying an encoding, or an + * object with an `encoding` property specifying the character encoding to use. + * + * ```js + * import { mkdtemp } from 'fs/promises'; + * + * try { + * await mkdtemp(path.join(os.tmpdir(), 'foo-')); + * } catch (err) { + * console.error(err); + * } + * ``` + * + * The `fsPromises.mkdtemp()` method will append the six randomly selected + * characters directly to the `prefix` string. For instance, given a directory`/tmp`, if the intention is to create a temporary directory _within_`/tmp`, the`prefix` must end with a trailing + * platform-specific path separator + * (`require('path').sep`). + * @since v10.0.0 + * @return Fulfills with a string containing the filesystem path of the newly created temporary directory. + */ + function mkdtemp(prefix: string, options?: ObjectEncodingOptions | BufferEncoding | null): Promise; + /** + * Asynchronously creates a unique temporary directory. + * Generates six random characters to be appended behind a required `prefix` to create a unique temporary directory. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function mkdtemp(prefix: string, options: BufferEncodingOption): Promise; + /** + * Asynchronously creates a unique temporary directory. + * Generates six random characters to be appended behind a required `prefix` to create a unique temporary directory. + * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used. + */ + function mkdtemp(prefix: string, options?: ObjectEncodingOptions | BufferEncoding | null): Promise; + /** + * Asynchronously writes data to a file, replacing the file if it already exists.`data` can be a string, a buffer, an + * [AsyncIterable](https://tc39.github.io/ecma262/#sec-asynciterable-interface) or + * [Iterable](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols#The_iterable_protocol) object. + * + * The `encoding` option is ignored if `data` is a buffer. + * + * If `options` is a string, then it specifies the encoding. + * + * The `mode` option only affects the newly created file. See `fs.open()` for more details. + * + * Any specified `FileHandle` has to support writing. + * + * It is unsafe to use `fsPromises.writeFile()` multiple times on the same file + * without waiting for the promise to be settled. + * + * Similarly to `fsPromises.readFile` \- `fsPromises.writeFile` is a convenience + * method that performs multiple `write` calls internally to write the buffer + * passed to it. For performance sensitive code consider using `fs.createWriteStream()` or `filehandle.createWriteStream()`. + * + * It is possible to use an `AbortSignal` to cancel an `fsPromises.writeFile()`. + * Cancelation is "best effort", and some amount of data is likely still + * to be written. + * + * ```js + * import { writeFile } from 'fs/promises'; + * import { Buffer } from 'buffer'; + * + * try { + * const controller = new AbortController(); + * const { signal } = controller; + * const data = new Uint8Array(Buffer.from('Hello Node.js')); + * const promise = writeFile('message.txt', data, { signal }); + * + * // Abort the request before the promise settles. + * controller.abort(); + * + * await promise; + * } catch (err) { + * // When a request is aborted - err is an AbortError + * console.error(err); + * } + * ``` + * + * Aborting an ongoing request does not abort individual operating + * system requests but rather the internal buffering `fs.writeFile` performs. + * @since v10.0.0 + * @param file filename or `FileHandle` + * @return Fulfills with `undefined` upon success. + */ + function writeFile( + file: PathLike | FileHandle, + data: string | NodeJS.ArrayBufferView | Iterable | AsyncIterable | Stream, + options?: + | (ObjectEncodingOptions & { + mode?: Mode | undefined; + flag?: OpenMode | undefined; + } & Abortable) + | BufferEncoding + | null + ): Promise; + /** + * Asynchronously append data to a file, creating the file if it does not yet + * exist. `data` can be a string or a `Buffer`. + * + * If `options` is a string, then it specifies the `encoding`. + * + * The `mode` option only affects the newly created file. See `fs.open()` for more details. + * + * The `path` may be specified as a `FileHandle` that has been opened + * for appending (using `fsPromises.open()`). + * @since v10.0.0 + * @param path filename or {FileHandle} + * @return Fulfills with `undefined` upon success. + */ + function appendFile(path: PathLike | FileHandle, data: string | Uint8Array, options?: (ObjectEncodingOptions & FlagAndOpenMode) | BufferEncoding | null): Promise; + /** + * Asynchronously reads the entire contents of a file. + * + * If no encoding is specified (using `options.encoding`), the data is returned + * as a `Buffer` object. Otherwise, the data will be a string. + * + * If `options` is a string, then it specifies the encoding. + * + * When the `path` is a directory, the behavior of `fsPromises.readFile()` is + * platform-specific. On macOS, Linux, and Windows, the promise will be rejected + * with an error. On FreeBSD, a representation of the directory's contents will be + * returned. + * + * It is possible to abort an ongoing `readFile` using an `AbortSignal`. If a + * request is aborted the promise returned is rejected with an `AbortError`: + * + * ```js + * import { readFile } from 'fs/promises'; + * + * try { + * const controller = new AbortController(); + * const { signal } = controller; + * const promise = readFile(fileName, { signal }); + * + * // Abort the request before the promise settles. + * controller.abort(); + * + * await promise; + * } catch (err) { + * // When a request is aborted - err is an AbortError + * console.error(err); + * } + * ``` + * + * Aborting an ongoing request does not abort individual operating + * system requests but rather the internal buffering `fs.readFile` performs. + * + * Any specified `FileHandle` has to support reading. + * @since v10.0.0 + * @param path filename or `FileHandle` + * @return Fulfills with the contents of the file. + */ + function readFile( + path: PathLike | FileHandle, + options?: + | ({ + encoding?: null | undefined; + flag?: OpenMode | undefined; + } & Abortable) + | null + ): Promise; + /** + * Asynchronously reads the entire contents of a file. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * If a `FileHandle` is provided, the underlying file will _not_ be closed automatically. + * @param options An object that may contain an optional flag. + * If a flag is not provided, it defaults to `'r'`. + */ + function readFile( + path: PathLike | FileHandle, + options: + | ({ + encoding: BufferEncoding; + flag?: OpenMode | undefined; + } & Abortable) + | BufferEncoding + ): Promise; + /** + * Asynchronously reads the entire contents of a file. + * @param path A path to a file. If a URL is provided, it must use the `file:` protocol. + * If a `FileHandle` is provided, the underlying file will _not_ be closed automatically. + * @param options An object that may contain an optional flag. + * If a flag is not provided, it defaults to `'r'`. + */ + function readFile( + path: PathLike | FileHandle, + options?: + | (ObjectEncodingOptions & + Abortable & { + flag?: OpenMode | undefined; + }) + | BufferEncoding + | null + ): Promise; + /** + * Asynchronously open a directory for iterative scanning. See the POSIX [`opendir(3)`](http://man7.org/linux/man-pages/man3/opendir.3.html) documentation for more detail. + * + * Creates an `fs.Dir`, which contains all further functions for reading from + * and cleaning up the directory. + * + * The `encoding` option sets the encoding for the `path` while opening the + * directory and subsequent read operations. + * + * Example using async iteration: + * + * ```js + * import { opendir } from 'fs/promises'; + * + * try { + * const dir = await opendir('./'); + * for await (const dirent of dir) + * console.log(dirent.name); + * } catch (err) { + * console.error(err); + * } + * ``` + * + * When using the async iterator, the `fs.Dir` object will be automatically + * closed after the iterator exits. + * @since v12.12.0 + * @return Fulfills with an {fs.Dir}. + */ + function opendir(path: PathLike, options?: OpenDirOptions): Promise; + /** + * Returns an async iterator that watches for changes on `filename`, where `filename`is either a file or a directory. + * + * ```js + * const { watch } = require('fs/promises'); + * + * const ac = new AbortController(); + * const { signal } = ac; + * setTimeout(() => ac.abort(), 10000); + * + * (async () => { + * try { + * const watcher = watch(__filename, { signal }); + * for await (const event of watcher) + * console.log(event); + * } catch (err) { + * if (err.name === 'AbortError') + * return; + * throw err; + * } + * })(); + * ``` + * + * On most platforms, `'rename'` is emitted whenever a filename appears or + * disappears in the directory. + * + * All the `caveats` for `fs.watch()` also apply to `fsPromises.watch()`. + * @since v15.9.0, v14.18.0 + * @return of objects with the properties: + */ + function watch( + filename: PathLike, + options: + | (WatchOptions & { + encoding: 'buffer'; + }) + | 'buffer' + ): AsyncIterable>; + /** + * Watch for changes on `filename`, where `filename` is either a file or a directory, returning an `FSWatcher`. + * @param filename A path to a file or directory. If a URL is provided, it must use the `file:` protocol. + * @param options Either the encoding for the filename provided to the listener, or an object optionally specifying encoding, persistent, and recursive options. + * If `encoding` is not supplied, the default of `'utf8'` is used. + * If `persistent` is not supplied, the default of `true` is used. + * If `recursive` is not supplied, the default of `false` is used. + */ + function watch(filename: PathLike, options?: WatchOptions | BufferEncoding): AsyncIterable>; + /** + * Watch for changes on `filename`, where `filename` is either a file or a directory, returning an `FSWatcher`. + * @param filename A path to a file or directory. If a URL is provided, it must use the `file:` protocol. + * @param options Either the encoding for the filename provided to the listener, or an object optionally specifying encoding, persistent, and recursive options. + * If `encoding` is not supplied, the default of `'utf8'` is used. + * If `persistent` is not supplied, the default of `true` is used. + * If `recursive` is not supplied, the default of `false` is used. + */ + function watch(filename: PathLike, options: WatchOptions | string): AsyncIterable> | AsyncIterable>; + /** + * Asynchronously copies the entire directory structure from `src` to `dest`, + * including subdirectories and files. + * + * When copying a directory to another directory, globs are not supported and + * behavior is similar to `cp dir1/ dir2/`. + * @since v16.7.0 + * @experimental + * @param src source path to copy. + * @param dest destination path to copy to. + * @return Fulfills with `undefined` upon success. + */ + function cp(source: string | URL, destination: string | URL, opts?: CopyOptions): Promise; +} +declare module 'node:fs/promises' { + export * from 'fs/promises'; +} diff --git a/node_modules/@types/node/ts4.8/globals.d.ts b/node_modules/@types/node/ts4.8/globals.d.ts new file mode 100644 index 000000000..da499940e --- /dev/null +++ b/node_modules/@types/node/ts4.8/globals.d.ts @@ -0,0 +1,294 @@ +// Declare "static" methods in Error +interface ErrorConstructor { + /** Create .stack property on a target object */ + captureStackTrace(targetObject: object, constructorOpt?: Function): void; + + /** + * Optional override for formatting stack traces + * + * @see https://v8.dev/docs/stack-trace-api#customizing-stack-traces + */ + prepareStackTrace?: ((err: Error, stackTraces: NodeJS.CallSite[]) => any) | undefined; + + stackTraceLimit: number; +} + +/*-----------------------------------------------* + * * + * GLOBAL * + * * + ------------------------------------------------*/ + +// For backwards compability +interface NodeRequire extends NodeJS.Require { } +interface RequireResolve extends NodeJS.RequireResolve { } +interface NodeModule extends NodeJS.Module { } + +declare var process: NodeJS.Process; +declare var console: Console; + +declare var __filename: string; +declare var __dirname: string; + +declare var require: NodeRequire; +declare var module: NodeModule; + +// Same as module.exports +declare var exports: any; + +/** + * Only available if `--expose-gc` is passed to the process. + */ +declare var gc: undefined | (() => void); + +//#region borrowed +// from https://github.com/microsoft/TypeScript/blob/38da7c600c83e7b31193a62495239a0fe478cb67/lib/lib.webworker.d.ts#L633 until moved to separate lib +/** A controller object that allows you to abort one or more DOM requests as and when desired. */ +interface AbortController { + /** + * Returns the AbortSignal object associated with this object. + */ + + readonly signal: AbortSignal; + /** + * Invoking this method will set this object's AbortSignal's aborted flag and signal to any observers that the associated activity is to be aborted. + */ + abort(): void; +} + +/** A signal object that allows you to communicate with a DOM request (such as a Fetch) and abort it if required via an AbortController object. */ +interface AbortSignal { + /** + * Returns true if this AbortSignal's AbortController has signaled to abort, and false otherwise. + */ + readonly aborted: boolean; +} + +declare var AbortController: { + prototype: AbortController; + new(): AbortController; +}; + +declare var AbortSignal: { + prototype: AbortSignal; + new(): AbortSignal; + // TODO: Add abort() static +}; +//#endregion borrowed + +//#region ArrayLike.at() +interface RelativeIndexable { + /** + * Takes an integer value and returns the item at that index, + * allowing for positive and negative integers. + * Negative integers count back from the last item in the array. + */ + at(index: number): T | undefined; +} +interface String extends RelativeIndexable {} +interface Array extends RelativeIndexable {} +interface Int8Array extends RelativeIndexable {} +interface Uint8Array extends RelativeIndexable {} +interface Uint8ClampedArray extends RelativeIndexable {} +interface Int16Array extends RelativeIndexable {} +interface Uint16Array extends RelativeIndexable {} +interface Int32Array extends RelativeIndexable {} +interface Uint32Array extends RelativeIndexable {} +interface Float32Array extends RelativeIndexable {} +interface Float64Array extends RelativeIndexable {} +interface BigInt64Array extends RelativeIndexable {} +interface BigUint64Array extends RelativeIndexable {} +//#endregion ArrayLike.at() end + +/** + * @since v17.0.0 + * + * Creates a deep clone of an object. + */ +declare function structuredClone( + value: T, + transfer?: { transfer: ReadonlyArray }, +): T; + +/*----------------------------------------------* +* * +* GLOBAL INTERFACES * +* * +*-----------------------------------------------*/ +declare namespace NodeJS { + interface CallSite { + /** + * Value of "this" + */ + getThis(): unknown; + + /** + * Type of "this" as a string. + * This is the name of the function stored in the constructor field of + * "this", if available. Otherwise the object's [[Class]] internal + * property. + */ + getTypeName(): string | null; + + /** + * Current function + */ + getFunction(): Function | undefined; + + /** + * Name of the current function, typically its name property. + * If a name property is not available an attempt will be made to try + * to infer a name from the function's context. + */ + getFunctionName(): string | null; + + /** + * Name of the property [of "this" or one of its prototypes] that holds + * the current function + */ + getMethodName(): string | null; + + /** + * Name of the script [if this function was defined in a script] + */ + getFileName(): string | null; + + /** + * Current line number [if this function was defined in a script] + */ + getLineNumber(): number | null; + + /** + * Current column number [if this function was defined in a script] + */ + getColumnNumber(): number | null; + + /** + * A call site object representing the location where eval was called + * [if this function was created using a call to eval] + */ + getEvalOrigin(): string | undefined; + + /** + * Is this a toplevel invocation, that is, is "this" the global object? + */ + isToplevel(): boolean; + + /** + * Does this call take place in code defined by a call to eval? + */ + isEval(): boolean; + + /** + * Is this call in native V8 code? + */ + isNative(): boolean; + + /** + * Is this a constructor call? + */ + isConstructor(): boolean; + } + + interface ErrnoException extends Error { + errno?: number | undefined; + code?: string | undefined; + path?: string | undefined; + syscall?: string | undefined; + } + + interface ReadableStream extends EventEmitter { + readable: boolean; + read(size?: number): string | Buffer; + setEncoding(encoding: BufferEncoding): this; + pause(): this; + resume(): this; + isPaused(): boolean; + pipe(destination: T, options?: { end?: boolean | undefined; }): T; + unpipe(destination?: WritableStream): this; + unshift(chunk: string | Uint8Array, encoding?: BufferEncoding): void; + wrap(oldStream: ReadableStream): this; + [Symbol.asyncIterator](): AsyncIterableIterator; + } + + interface WritableStream extends EventEmitter { + writable: boolean; + write(buffer: Uint8Array | string, cb?: (err?: Error | null) => void): boolean; + write(str: string, encoding?: BufferEncoding, cb?: (err?: Error | null) => void): boolean; + end(cb?: () => void): this; + end(data: string | Uint8Array, cb?: () => void): this; + end(str: string, encoding?: BufferEncoding, cb?: () => void): this; + } + + interface ReadWriteStream extends ReadableStream, WritableStream { } + + interface RefCounted { + ref(): this; + unref(): this; + } + + type TypedArray = + | Uint8Array + | Uint8ClampedArray + | Uint16Array + | Uint32Array + | Int8Array + | Int16Array + | Int32Array + | BigUint64Array + | BigInt64Array + | Float32Array + | Float64Array; + type ArrayBufferView = TypedArray | DataView; + + interface Require { + (id: string): any; + resolve: RequireResolve; + cache: Dict; + /** + * @deprecated + */ + extensions: RequireExtensions; + main: Module | undefined; + } + + interface RequireResolve { + (id: string, options?: { paths?: string[] | undefined; }): string; + paths(request: string): string[] | null; + } + + interface RequireExtensions extends Dict<(m: Module, filename: string) => any> { + '.js': (m: Module, filename: string) => any; + '.json': (m: Module, filename: string) => any; + '.node': (m: Module, filename: string) => any; + } + interface Module { + /** + * `true` if the module is running during the Node.js preload + */ + isPreloading: boolean; + exports: any; + require: Require; + id: string; + filename: string; + loaded: boolean; + /** @deprecated since v14.6.0 Please use `require.main` and `module.children` instead. */ + parent: Module | null | undefined; + children: Module[]; + /** + * @since v11.14.0 + * + * The directory name of the module. This is usually the same as the path.dirname() of the module.id. + */ + path: string; + paths: string[]; + } + + interface Dict { + [key: string]: T | undefined; + } + + interface ReadOnlyDict { + readonly [key: string]: T | undefined; + } +} diff --git a/node_modules/@types/node/ts4.8/globals.global.d.ts b/node_modules/@types/node/ts4.8/globals.global.d.ts new file mode 100644 index 000000000..ef1198c05 --- /dev/null +++ b/node_modules/@types/node/ts4.8/globals.global.d.ts @@ -0,0 +1 @@ +declare var global: typeof globalThis; diff --git a/node_modules/@types/node/ts4.8/http.d.ts b/node_modules/@types/node/ts4.8/http.d.ts new file mode 100644 index 000000000..24bc5e78d --- /dev/null +++ b/node_modules/@types/node/ts4.8/http.d.ts @@ -0,0 +1,1553 @@ +/** + * To use the HTTP server and client one must `require('http')`. + * + * The HTTP interfaces in Node.js are designed to support many features + * of the protocol which have been traditionally difficult to use. + * In particular, large, possibly chunk-encoded, messages. The interface is + * careful to never buffer entire requests or responses, so the + * user is able to stream data. + * + * HTTP message headers are represented by an object like this: + * + * ```js + * { 'content-length': '123', + * 'content-type': 'text/plain', + * 'connection': 'keep-alive', + * 'host': 'example.com', + * 'accept': '*' } + * ``` + * + * Keys are lowercased. Values are not modified. + * + * In order to support the full spectrum of possible HTTP applications, the Node.js + * HTTP API is very low-level. It deals with stream handling and message + * parsing only. It parses a message into headers and body but it does not + * parse the actual headers or the body. + * + * See `message.headers` for details on how duplicate headers are handled. + * + * The raw headers as they were received are retained in the `rawHeaders`property, which is an array of `[key, value, key2, value2, ...]`. For + * example, the previous message header object might have a `rawHeaders`list like the following: + * + * ```js + * [ 'ConTent-Length', '123456', + * 'content-LENGTH', '123', + * 'content-type', 'text/plain', + * 'CONNECTION', 'keep-alive', + * 'Host', 'example.com', + * 'accepT', '*' ] + * ``` + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/http.js) + */ +declare module 'http' { + import * as stream from 'node:stream'; + import { URL } from 'node:url'; + import { TcpSocketConnectOpts, Socket, Server as NetServer, LookupFunction } from 'node:net'; + // incoming headers will never contain number + interface IncomingHttpHeaders extends NodeJS.Dict { + accept?: string | undefined; + 'accept-language'?: string | undefined; + 'accept-patch'?: string | undefined; + 'accept-ranges'?: string | undefined; + 'access-control-allow-credentials'?: string | undefined; + 'access-control-allow-headers'?: string | undefined; + 'access-control-allow-methods'?: string | undefined; + 'access-control-allow-origin'?: string | undefined; + 'access-control-expose-headers'?: string | undefined; + 'access-control-max-age'?: string | undefined; + 'access-control-request-headers'?: string | undefined; + 'access-control-request-method'?: string | undefined; + age?: string | undefined; + allow?: string | undefined; + 'alt-svc'?: string | undefined; + authorization?: string | undefined; + 'cache-control'?: string | undefined; + connection?: string | undefined; + 'content-disposition'?: string | undefined; + 'content-encoding'?: string | undefined; + 'content-language'?: string | undefined; + 'content-length'?: string | undefined; + 'content-location'?: string | undefined; + 'content-range'?: string | undefined; + 'content-type'?: string | undefined; + cookie?: string | undefined; + date?: string | undefined; + etag?: string | undefined; + expect?: string | undefined; + expires?: string | undefined; + forwarded?: string | undefined; + from?: string | undefined; + host?: string | undefined; + 'if-match'?: string | undefined; + 'if-modified-since'?: string | undefined; + 'if-none-match'?: string | undefined; + 'if-unmodified-since'?: string | undefined; + 'last-modified'?: string | undefined; + location?: string | undefined; + origin?: string | undefined; + pragma?: string | undefined; + 'proxy-authenticate'?: string | undefined; + 'proxy-authorization'?: string | undefined; + 'public-key-pins'?: string | undefined; + range?: string | undefined; + referer?: string | undefined; + 'retry-after'?: string | undefined; + 'sec-websocket-accept'?: string | undefined; + 'sec-websocket-extensions'?: string | undefined; + 'sec-websocket-key'?: string | undefined; + 'sec-websocket-protocol'?: string | undefined; + 'sec-websocket-version'?: string | undefined; + 'set-cookie'?: string[] | undefined; + 'strict-transport-security'?: string | undefined; + tk?: string | undefined; + trailer?: string | undefined; + 'transfer-encoding'?: string | undefined; + upgrade?: string | undefined; + 'user-agent'?: string | undefined; + vary?: string | undefined; + via?: string | undefined; + warning?: string | undefined; + 'www-authenticate'?: string | undefined; + } + // outgoing headers allows numbers (as they are converted internally to strings) + type OutgoingHttpHeader = number | string | string[]; + interface OutgoingHttpHeaders extends NodeJS.Dict {} + interface ClientRequestArgs { + signal?: AbortSignal | undefined; + protocol?: string | null | undefined; + host?: string | null | undefined; + hostname?: string | null | undefined; + family?: number | undefined; + port?: number | string | null | undefined; + defaultPort?: number | string | undefined; + localAddress?: string | undefined; + socketPath?: string | undefined; + /** + * @default 8192 + */ + maxHeaderSize?: number | undefined; + method?: string | undefined; + path?: string | null | undefined; + headers?: OutgoingHttpHeaders | undefined; + auth?: string | null | undefined; + agent?: Agent | boolean | undefined; + _defaultAgent?: Agent | undefined; + timeout?: number | undefined; + setHost?: boolean | undefined; + // https://github.com/nodejs/node/blob/master/lib/_http_client.js#L278 + createConnection?: + | ((options: ClientRequestArgs, oncreate: (err: Error, socket: Socket) => void) => Socket) + | undefined; + lookup?: LookupFunction | undefined; + } + interface ServerOptions< + Request extends typeof IncomingMessage = typeof IncomingMessage, + Response extends typeof ServerResponse = typeof ServerResponse, + > { + IncomingMessage?: Request | undefined; + ServerResponse?: Response | undefined; + /** + * Optionally overrides the value of + * `--max-http-header-size` for requests received by this server, i.e. + * the maximum length of request headers in bytes. + * @default 8192 + */ + maxHeaderSize?: number | undefined; + /** + * Use an insecure HTTP parser that accepts invalid HTTP headers when true. + * Using the insecure parser should be avoided. + * See --insecure-http-parser for more information. + * @default false + */ + insecureHTTPParser?: boolean | undefined; + /** + * If set to `true`, it disables the use of Nagle's algorithm immediately after a new incoming connection is received. + * @default false + * @since v16.5.0 + */ + noDelay?: boolean | undefined; + /** + * If set to `true`, it enables keep-alive functionality on the socket immediately after a new incoming connection is received, + * similarly on what is done in `socket.setKeepAlive([enable][, initialDelay])`. + * @default false + * @since v16.5.0 + */ + keepAlive?: boolean | undefined; + /** + * If set to a positive number, it sets the initial delay before the first keepalive probe is sent on an idle socket. + * @default 0 + * @since v16.5.0 + */ + keepAliveInitialDelay?: number | undefined; + } + type RequestListener< + Request extends typeof IncomingMessage = typeof IncomingMessage, + Response extends typeof ServerResponse = typeof ServerResponse, + > = (req: InstanceType, res: InstanceType & { req: InstanceType }) => void; + /** + * @since v0.1.17 + */ + class Server< + Request extends typeof IncomingMessage = typeof IncomingMessage, + Response extends typeof ServerResponse = typeof ServerResponse, + > extends NetServer { + constructor(requestListener?: RequestListener); + constructor(options: ServerOptions, requestListener?: RequestListener); + /** + * Sets the timeout value for sockets, and emits a `'timeout'` event on + * the Server object, passing the socket as an argument, if a timeout + * occurs. + * + * If there is a `'timeout'` event listener on the Server object, then it + * will be called with the timed-out socket as an argument. + * + * By default, the Server does not timeout sockets. However, if a callback + * is assigned to the Server's `'timeout'` event, timeouts must be handled + * explicitly. + * @since v0.9.12 + * @param [msecs=0 (no timeout)] + */ + setTimeout(msecs?: number, callback?: () => void): this; + setTimeout(callback: () => void): this; + /** + * Limits maximum incoming headers count. If set to 0, no limit will be applied. + * @since v0.7.0 + */ + maxHeadersCount: number | null; + /** + * The maximum number of requests socket can handle + * before closing keep alive connection. + * + * A value of `0` will disable the limit. + * + * When the limit is reached it will set the `Connection` header value to `close`, + * but will not actually close the connection, subsequent requests sent + * after the limit is reached will get `503 Service Unavailable` as a response. + * @since v16.10.0 + */ + maxRequestsPerSocket: number | null; + /** + * The number of milliseconds of inactivity before a socket is presumed + * to have timed out. + * + * A value of `0` will disable the timeout behavior on incoming connections. + * + * The socket timeout logic is set up on connection, so changing this + * value only affects new connections to the server, not any existing connections. + * @since v0.9.12 + */ + timeout: number; + /** + * Limit the amount of time the parser will wait to receive the complete HTTP + * headers. + * + * If the timeout expires, the server responds with status 408 without + * forwarding the request to the request listener and then closes the connection. + * + * It must be set to a non-zero value (e.g. 120 seconds) to protect against + * potential Denial-of-Service attacks in case the server is deployed without a + * reverse proxy in front. + * @since v11.3.0, v10.14.0 + */ + headersTimeout: number; + /** + * The number of milliseconds of inactivity a server needs to wait for additional + * incoming data, after it has finished writing the last response, before a socket + * will be destroyed. If the server receives new data before the keep-alive + * timeout has fired, it will reset the regular inactivity timeout, i.e.,`server.timeout`. + * + * A value of `0` will disable the keep-alive timeout behavior on incoming + * connections. + * A value of `0` makes the http server behave similarly to Node.js versions prior + * to 8.0.0, which did not have a keep-alive timeout. + * + * The socket timeout logic is set up on connection, so changing this value only + * affects new connections to the server, not any existing connections. + * @since v8.0.0 + */ + keepAliveTimeout: number; + /** + * Sets the timeout value in milliseconds for receiving the entire request from + * the client. + * + * If the timeout expires, the server responds with status 408 without + * forwarding the request to the request listener and then closes the connection. + * + * It must be set to a non-zero value (e.g. 120 seconds) to protect against + * potential Denial-of-Service attacks in case the server is deployed without a + * reverse proxy in front. + * @since v14.11.0 + */ + requestTimeout: number; + /** + * Closes all connections connected to this server. + * @since v18.2.0 + */ + closeAllConnections(): void; + /** + * Closes all connections connected to this server which are not sending a request or waiting for a response. + * @since v18.2.0 + */ + closeIdleConnections(): void; + addListener(event: string, listener: (...args: any[]) => void): this; + addListener(event: 'close', listener: () => void): this; + addListener(event: 'connection', listener: (socket: Socket) => void): this; + addListener(event: 'error', listener: (err: Error) => void): this; + addListener(event: 'listening', listener: () => void): this; + addListener(event: 'checkContinue', listener: RequestListener): this; + addListener(event: 'checkExpectation', listener: RequestListener): this; + addListener(event: 'clientError', listener: (err: Error, socket: stream.Duplex) => void): this; + addListener( + event: 'connect', + listener: (req: InstanceType, socket: stream.Duplex, head: Buffer) => void, + ): this; + addListener(event: 'request', listener: RequestListener): this; + addListener( + event: 'upgrade', + listener: (req: InstanceType, socket: stream.Duplex, head: Buffer) => void, + ): this; + emit(event: string, ...args: any[]): boolean; + emit(event: 'close'): boolean; + emit(event: 'connection', socket: Socket): boolean; + emit(event: 'error', err: Error): boolean; + emit(event: 'listening'): boolean; + emit( + event: 'checkContinue', + req: InstanceType, + res: InstanceType & { req: InstanceType }, + ): boolean; + emit( + event: 'checkExpectation', + req: InstanceType, + res: InstanceType & { req: InstanceType }, + ): boolean; + emit(event: 'clientError', err: Error, socket: stream.Duplex): boolean; + emit(event: 'connect', req: InstanceType, socket: stream.Duplex, head: Buffer): boolean; + emit( + event: 'request', + req: InstanceType, + res: InstanceType & { req: InstanceType }, + ): boolean; + emit(event: 'upgrade', req: InstanceType, socket: stream.Duplex, head: Buffer): boolean; + on(event: string, listener: (...args: any[]) => void): this; + on(event: 'close', listener: () => void): this; + on(event: 'connection', listener: (socket: Socket) => void): this; + on(event: 'error', listener: (err: Error) => void): this; + on(event: 'listening', listener: () => void): this; + on(event: 'checkContinue', listener: RequestListener): this; + on(event: 'checkExpectation', listener: RequestListener): this; + on(event: 'clientError', listener: (err: Error, socket: stream.Duplex) => void): this; + on(event: 'connect', listener: (req: InstanceType, socket: stream.Duplex, head: Buffer) => void): this; + on(event: 'request', listener: RequestListener): this; + on(event: 'upgrade', listener: (req: InstanceType, socket: stream.Duplex, head: Buffer) => void): this; + once(event: string, listener: (...args: any[]) => void): this; + once(event: 'close', listener: () => void): this; + once(event: 'connection', listener: (socket: Socket) => void): this; + once(event: 'error', listener: (err: Error) => void): this; + once(event: 'listening', listener: () => void): this; + once(event: 'checkContinue', listener: RequestListener): this; + once(event: 'checkExpectation', listener: RequestListener): this; + once(event: 'clientError', listener: (err: Error, socket: stream.Duplex) => void): this; + once( + event: 'connect', + listener: (req: InstanceType, socket: stream.Duplex, head: Buffer) => void, + ): this; + once(event: 'request', listener: RequestListener): this; + once( + event: 'upgrade', + listener: (req: InstanceType, socket: stream.Duplex, head: Buffer) => void, + ): this; + prependListener(event: string, listener: (...args: any[]) => void): this; + prependListener(event: 'close', listener: () => void): this; + prependListener(event: 'connection', listener: (socket: Socket) => void): this; + prependListener(event: 'error', listener: (err: Error) => void): this; + prependListener(event: 'listening', listener: () => void): this; + prependListener(event: 'checkContinue', listener: RequestListener): this; + prependListener(event: 'checkExpectation', listener: RequestListener): this; + prependListener(event: 'clientError', listener: (err: Error, socket: stream.Duplex) => void): this; + prependListener( + event: 'connect', + listener: (req: InstanceType, socket: stream.Duplex, head: Buffer) => void, + ): this; + prependListener(event: 'request', listener: RequestListener): this; + prependListener( + event: 'upgrade', + listener: (req: InstanceType, socket: stream.Duplex, head: Buffer) => void, + ): this; + prependOnceListener(event: string, listener: (...args: any[]) => void): this; + prependOnceListener(event: 'close', listener: () => void): this; + prependOnceListener(event: 'connection', listener: (socket: Socket) => void): this; + prependOnceListener(event: 'error', listener: (err: Error) => void): this; + prependOnceListener(event: 'listening', listener: () => void): this; + prependOnceListener(event: 'checkContinue', listener: RequestListener): this; + prependOnceListener(event: 'checkExpectation', listener: RequestListener): this; + prependOnceListener(event: 'clientError', listener: (err: Error, socket: stream.Duplex) => void): this; + prependOnceListener( + event: 'connect', + listener: (req: InstanceType, socket: stream.Duplex, head: Buffer) => void, + ): this; + prependOnceListener(event: 'request', listener: RequestListener): this; + prependOnceListener( + event: 'upgrade', + listener: (req: InstanceType, socket: stream.Duplex, head: Buffer) => void, + ): this; + } + /** + * This class serves as the parent class of {@link ClientRequest} and {@link ServerResponse}. It is an abstract of outgoing message from + * the perspective of the participants of HTTP transaction. + * @since v0.1.17 + */ + class OutgoingMessage extends stream.Writable { + readonly req: Request; + chunkedEncoding: boolean; + shouldKeepAlive: boolean; + useChunkedEncodingByDefault: boolean; + sendDate: boolean; + /** + * @deprecated Use `writableEnded` instead. + */ + finished: boolean; + /** + * Read-only. `true` if the headers were sent, otherwise `false`. + * @since v0.9.3 + */ + readonly headersSent: boolean; + /** + * Aliases of `outgoingMessage.socket` + * @since v0.3.0 + * @deprecated Since v15.12.0,v14.17.1 - Use `socket` instead. + */ + readonly connection: Socket | null; + /** + * Reference to the underlying socket. Usually, users will not want to access + * this property. + * + * After calling `outgoingMessage.end()`, this property will be nulled. + * @since v0.3.0 + */ + readonly socket: Socket | null; + constructor(); + /** + * Once a socket is associated with the message and is connected,`socket.setTimeout()` will be called with `msecs` as the first parameter. + * @since v0.9.12 + * @param callback Optional function to be called when a timeout occurs. Same as binding to the `timeout` event. + */ + setTimeout(msecs: number, callback?: () => void): this; + /** + * Sets a single header value for the header object. + * @since v0.4.0 + * @param name Header name + * @param value Header value + */ + setHeader(name: string, value: number | string | ReadonlyArray): this; + /** + * Gets the value of HTTP header with the given name. If such a name doesn't + * exist in message, it will be `undefined`. + * @since v0.4.0 + * @param name Name of header + */ + getHeader(name: string): number | string | string[] | undefined; + /** + * Returns a shallow copy of the current outgoing headers. Since a shallow + * copy is used, array values may be mutated without additional calls to + * various header-related HTTP module methods. The keys of the returned + * object are the header names and the values are the respective header + * values. All header names are lowercase. + * + * The object returned by the `outgoingMessage.getHeaders()` method does + * not prototypically inherit from the JavaScript Object. This means that + * typical Object methods such as `obj.toString()`, `obj.hasOwnProperty()`, + * and others are not defined and will not work. + * + * ```js + * outgoingMessage.setHeader('Foo', 'bar'); + * outgoingMessage.setHeader('Set-Cookie', ['foo=bar', 'bar=baz']); + * + * const headers = outgoingMessage.getHeaders(); + * // headers === { foo: 'bar', 'set-cookie': ['foo=bar', 'bar=baz'] } + * ``` + * @since v7.7.0 + */ + getHeaders(): OutgoingHttpHeaders; + /** + * Returns an array of names of headers of the outgoing outgoingMessage. All + * names are lowercase. + * @since v7.7.0 + */ + getHeaderNames(): string[]; + /** + * Returns `true` if the header identified by `name` is currently set in the + * outgoing headers. The header name is case-insensitive. + * + * ```js + * const hasContentType = outgoingMessage.hasHeader('content-type'); + * ``` + * @since v7.7.0 + */ + hasHeader(name: string): boolean; + /** + * Removes a header that is queued for implicit sending. + * + * ```js + * outgoingMessage.removeHeader('Content-Encoding'); + * ``` + * @since v0.4.0 + * @param name Header name + */ + removeHeader(name: string): void; + /** + * Adds HTTP trailers (headers but at the end of the message) to the message. + * + * Trailers are **only** be emitted if the message is chunked encoded. If not, + * the trailer will be silently discarded. + * + * HTTP requires the `Trailer` header to be sent to emit trailers, + * with a list of header fields in its value, e.g. + * + * ```js + * message.writeHead(200, { 'Content-Type': 'text/plain', + * 'Trailer': 'Content-MD5' }); + * message.write(fileData); + * message.addTrailers({ 'Content-MD5': '7895bf4b8828b55ceaf47747b4bca667' }); + * message.end(); + * ``` + * + * Attempting to set a header field name or value that contains invalid characters + * will result in a `TypeError` being thrown. + * @since v0.3.0 + */ + addTrailers(headers: OutgoingHttpHeaders | ReadonlyArray<[string, string]>): void; + /** + * Compulsorily flushes the message headers + * + * For efficiency reason, Node.js normally buffers the message headers + * until `outgoingMessage.end()` is called or the first chunk of message data + * is written. It then tries to pack the headers and data into a single TCP + * packet. + * + * It is usually desired (it saves a TCP round-trip), but not when the first + * data is not sent until possibly much later. `outgoingMessage.flushHeaders()`bypasses the optimization and kickstarts the request. + * @since v1.6.0 + */ + flushHeaders(): void; + } + /** + * This object is created internally by an HTTP server, not by the user. It is + * passed as the second parameter to the `'request'` event. + * @since v0.1.17 + */ + class ServerResponse extends OutgoingMessage { + /** + * When using implicit headers (not calling `response.writeHead()` explicitly), + * this property controls the status code that will be sent to the client when + * the headers get flushed. + * + * ```js + * response.statusCode = 404; + * ``` + * + * After response header was sent to the client, this property indicates the + * status code which was sent out. + * @since v0.4.0 + */ + statusCode: number; + /** + * When using implicit headers (not calling `response.writeHead()` explicitly), + * this property controls the status message that will be sent to the client when + * the headers get flushed. If this is left as `undefined` then the standard + * message for the status code will be used. + * + * ```js + * response.statusMessage = 'Not found'; + * ``` + * + * After response header was sent to the client, this property indicates the + * status message which was sent out. + * @since v0.11.8 + */ + statusMessage: string; + constructor(req: Request); + assignSocket(socket: Socket): void; + detachSocket(socket: Socket): void; + /** + * Sends a HTTP/1.1 100 Continue message to the client, indicating that + * the request body should be sent. See the `'checkContinue'` event on`Server`. + * @since v0.3.0 + */ + writeContinue(callback?: () => void): void; + /** + * Sends a response header to the request. The status code is a 3-digit HTTP + * status code, like `404`. The last argument, `headers`, are the response headers. + * Optionally one can give a human-readable `statusMessage` as the second + * argument. + * + * `headers` may be an `Array` where the keys and values are in the same list. + * It is _not_ a list of tuples. So, the even-numbered offsets are key values, + * and the odd-numbered offsets are the associated values. The array is in the same + * format as `request.rawHeaders`. + * + * Returns a reference to the `ServerResponse`, so that calls can be chained. + * + * ```js + * const body = 'hello world'; + * response + * .writeHead(200, { + * 'Content-Length': Buffer.byteLength(body), + * 'Content-Type': 'text/plain' + * }) + * .end(body); + * ``` + * + * This method must only be called once on a message and it must + * be called before `response.end()` is called. + * + * If `response.write()` or `response.end()` are called before calling + * this, the implicit/mutable headers will be calculated and call this function. + * + * When headers have been set with `response.setHeader()`, they will be merged + * with any headers passed to `response.writeHead()`, with the headers passed + * to `response.writeHead()` given precedence. + * + * If this method is called and `response.setHeader()` has not been called, + * it will directly write the supplied header values onto the network channel + * without caching internally, and the `response.getHeader()` on the header + * will not yield the expected result. If progressive population of headers is + * desired with potential future retrieval and modification, use `response.setHeader()` instead. + * + * ```js + * // Returns content-type = text/plain + * const server = http.createServer((req, res) => { + * res.setHeader('Content-Type', 'text/html'); + * res.setHeader('X-Foo', 'bar'); + * res.writeHead(200, { 'Content-Type': 'text/plain' }); + * res.end('ok'); + * }); + * ``` + * + * `Content-Length` is given in bytes, not characters. Use `Buffer.byteLength()` to determine the length of the body in bytes. Node.js + * does not check whether `Content-Length` and the length of the body which has + * been transmitted are equal or not. + * + * Attempting to set a header field name or value that contains invalid characters + * will result in a `TypeError` being thrown. + * @since v0.1.30 + */ + writeHead( + statusCode: number, + statusMessage?: string, + headers?: OutgoingHttpHeaders | OutgoingHttpHeader[], + ): this; + writeHead(statusCode: number, headers?: OutgoingHttpHeaders | OutgoingHttpHeader[]): this; + /** + * Sends a HTTP/1.1 102 Processing message to the client, indicating that + * the request body should be sent. + * @since v10.0.0 + */ + writeProcessing(): void; + } + interface InformationEvent { + statusCode: number; + statusMessage: string; + httpVersion: string; + httpVersionMajor: number; + httpVersionMinor: number; + headers: IncomingHttpHeaders; + rawHeaders: string[]; + } + /** + * This object is created internally and returned from {@link request}. It + * represents an _in-progress_ request whose header has already been queued. The + * header is still mutable using the `setHeader(name, value)`,`getHeader(name)`, `removeHeader(name)` API. The actual header will + * be sent along with the first data chunk or when calling `request.end()`. + * + * To get the response, add a listener for `'response'` to the request object.`'response'` will be emitted from the request object when the response + * headers have been received. The `'response'` event is executed with one + * argument which is an instance of {@link IncomingMessage}. + * + * During the `'response'` event, one can add listeners to the + * response object; particularly to listen for the `'data'` event. + * + * If no `'response'` handler is added, then the response will be + * entirely discarded. However, if a `'response'` event handler is added, + * then the data from the response object **must** be consumed, either by + * calling `response.read()` whenever there is a `'readable'` event, or + * by adding a `'data'` handler, or by calling the `.resume()` method. + * Until the data is consumed, the `'end'` event will not fire. Also, until + * the data is read it will consume memory that can eventually lead to a + * 'process out of memory' error. + * + * For backward compatibility, `res` will only emit `'error'` if there is an`'error'` listener registered. + * + * Node.js does not check whether Content-Length and the length of the + * body which has been transmitted are equal or not. + * @since v0.1.17 + */ + class ClientRequest extends OutgoingMessage { + /** + * The `request.aborted` property will be `true` if the request has + * been aborted. + * @since v0.11.14 + * @deprecated Since v17.0.0,v16.12.0 - Check `destroyed` instead. + */ + aborted: boolean; + /** + * The request host. + * @since v14.5.0, v12.19.0 + */ + host: string; + /** + * The request protocol. + * @since v14.5.0, v12.19.0 + */ + protocol: string; + /** + * When sending request through a keep-alive enabled agent, the underlying socket + * might be reused. But if server closes connection at unfortunate time, client + * may run into a 'ECONNRESET' error. + * + * ```js + * const http = require('http'); + * + * // Server has a 5 seconds keep-alive timeout by default + * http + * .createServer((req, res) => { + * res.write('hello\n'); + * res.end(); + * }) + * .listen(3000); + * + * setInterval(() => { + * // Adapting a keep-alive agent + * http.get('http://localhost:3000', { agent }, (res) => { + * res.on('data', (data) => { + * // Do nothing + * }); + * }); + * }, 5000); // Sending request on 5s interval so it's easy to hit idle timeout + * ``` + * + * By marking a request whether it reused socket or not, we can do + * automatic error retry base on it. + * + * ```js + * const http = require('http'); + * const agent = new http.Agent({ keepAlive: true }); + * + * function retriableRequest() { + * const req = http + * .get('http://localhost:3000', { agent }, (res) => { + * // ... + * }) + * .on('error', (err) => { + * // Check if retry is needed + * if (req.reusedSocket && err.code === 'ECONNRESET') { + * retriableRequest(); + * } + * }); + * } + * + * retriableRequest(); + * ``` + * @since v13.0.0, v12.16.0 + */ + reusedSocket: boolean; + /** + * Limits maximum response headers count. If set to 0, no limit will be applied. + */ + maxHeadersCount: number; + constructor(url: string | URL | ClientRequestArgs, cb?: (res: IncomingMessage) => void); + /** + * The request method. + * @since v0.1.97 + */ + method: string; + /** + * The request path. + * @since v0.4.0 + */ + path: string; + /** + * Marks the request as aborting. Calling this will cause remaining data + * in the response to be dropped and the socket to be destroyed. + * @since v0.3.8 + * @deprecated Since v14.1.0,v13.14.0 - Use `destroy` instead. + */ + abort(): void; + onSocket(socket: Socket): void; + /** + * Once a socket is assigned to this request and is connected `socket.setTimeout()` will be called. + * @since v0.5.9 + * @param timeout Milliseconds before a request times out. + * @param callback Optional function to be called when a timeout occurs. Same as binding to the `'timeout'` event. + */ + setTimeout(timeout: number, callback?: () => void): this; + /** + * Once a socket is assigned to this request and is connected `socket.setNoDelay()` will be called. + * @since v0.5.9 + */ + setNoDelay(noDelay?: boolean): void; + /** + * Once a socket is assigned to this request and is connected `socket.setKeepAlive()` will be called. + * @since v0.5.9 + */ + setSocketKeepAlive(enable?: boolean, initialDelay?: number): void; + /** + * Returns an array containing the unique names of the current outgoing raw + * headers. Header names are returned with their exact casing being set. + * + * ```js + * request.setHeader('Foo', 'bar'); + * request.setHeader('Set-Cookie', ['foo=bar', 'bar=baz']); + * + * const headerNames = request.getRawHeaderNames(); + * // headerNames === ['Foo', 'Set-Cookie'] + * ``` + * @since v15.13.0, v14.17.0 + */ + getRawHeaderNames(): string[]; + /** + * @deprecated + */ + addListener(event: 'abort', listener: () => void): this; + addListener( + event: 'connect', + listener: (response: IncomingMessage, socket: Socket, head: Buffer) => void, + ): this; + addListener(event: 'continue', listener: () => void): this; + addListener(event: 'information', listener: (info: InformationEvent) => void): this; + addListener(event: 'response', listener: (response: IncomingMessage) => void): this; + addListener(event: 'socket', listener: (socket: Socket) => void): this; + addListener(event: 'timeout', listener: () => void): this; + addListener( + event: 'upgrade', + listener: (response: IncomingMessage, socket: Socket, head: Buffer) => void, + ): this; + addListener(event: 'close', listener: () => void): this; + addListener(event: 'drain', listener: () => void): this; + addListener(event: 'error', listener: (err: Error) => void): this; + addListener(event: 'finish', listener: () => void): this; + addListener(event: 'pipe', listener: (src: stream.Readable) => void): this; + addListener(event: 'unpipe', listener: (src: stream.Readable) => void): this; + addListener(event: string | symbol, listener: (...args: any[]) => void): this; + /** + * @deprecated + */ + on(event: 'abort', listener: () => void): this; + on(event: 'connect', listener: (response: IncomingMessage, socket: Socket, head: Buffer) => void): this; + on(event: 'continue', listener: () => void): this; + on(event: 'information', listener: (info: InformationEvent) => void): this; + on(event: 'response', listener: (response: IncomingMessage) => void): this; + on(event: 'socket', listener: (socket: Socket) => void): this; + on(event: 'timeout', listener: () => void): this; + on(event: 'upgrade', listener: (response: IncomingMessage, socket: Socket, head: Buffer) => void): this; + on(event: 'close', listener: () => void): this; + on(event: 'drain', listener: () => void): this; + on(event: 'error', listener: (err: Error) => void): this; + on(event: 'finish', listener: () => void): this; + on(event: 'pipe', listener: (src: stream.Readable) => void): this; + on(event: 'unpipe', listener: (src: stream.Readable) => void): this; + on(event: string | symbol, listener: (...args: any[]) => void): this; + /** + * @deprecated + */ + once(event: 'abort', listener: () => void): this; + once(event: 'connect', listener: (response: IncomingMessage, socket: Socket, head: Buffer) => void): this; + once(event: 'continue', listener: () => void): this; + once(event: 'information', listener: (info: InformationEvent) => void): this; + once(event: 'response', listener: (response: IncomingMessage) => void): this; + once(event: 'socket', listener: (socket: Socket) => void): this; + once(event: 'timeout', listener: () => void): this; + once(event: 'upgrade', listener: (response: IncomingMessage, socket: Socket, head: Buffer) => void): this; + once(event: 'close', listener: () => void): this; + once(event: 'drain', listener: () => void): this; + once(event: 'error', listener: (err: Error) => void): this; + once(event: 'finish', listener: () => void): this; + once(event: 'pipe', listener: (src: stream.Readable) => void): this; + once(event: 'unpipe', listener: (src: stream.Readable) => void): this; + once(event: string | symbol, listener: (...args: any[]) => void): this; + /** + * @deprecated + */ + prependListener(event: 'abort', listener: () => void): this; + prependListener( + event: 'connect', + listener: (response: IncomingMessage, socket: Socket, head: Buffer) => void, + ): this; + prependListener(event: 'continue', listener: () => void): this; + prependListener(event: 'information', listener: (info: InformationEvent) => void): this; + prependListener(event: 'response', listener: (response: IncomingMessage) => void): this; + prependListener(event: 'socket', listener: (socket: Socket) => void): this; + prependListener(event: 'timeout', listener: () => void): this; + prependListener( + event: 'upgrade', + listener: (response: IncomingMessage, socket: Socket, head: Buffer) => void, + ): this; + prependListener(event: 'close', listener: () => void): this; + prependListener(event: 'drain', listener: () => void): this; + prependListener(event: 'error', listener: (err: Error) => void): this; + prependListener(event: 'finish', listener: () => void): this; + prependListener(event: 'pipe', listener: (src: stream.Readable) => void): this; + prependListener(event: 'unpipe', listener: (src: stream.Readable) => void): this; + prependListener(event: string | symbol, listener: (...args: any[]) => void): this; + /** + * @deprecated + */ + prependOnceListener(event: 'abort', listener: () => void): this; + prependOnceListener( + event: 'connect', + listener: (response: IncomingMessage, socket: Socket, head: Buffer) => void, + ): this; + prependOnceListener(event: 'continue', listener: () => void): this; + prependOnceListener(event: 'information', listener: (info: InformationEvent) => void): this; + prependOnceListener(event: 'response', listener: (response: IncomingMessage) => void): this; + prependOnceListener(event: 'socket', listener: (socket: Socket) => void): this; + prependOnceListener(event: 'timeout', listener: () => void): this; + prependOnceListener( + event: 'upgrade', + listener: (response: IncomingMessage, socket: Socket, head: Buffer) => void, + ): this; + prependOnceListener(event: 'close', listener: () => void): this; + prependOnceListener(event: 'drain', listener: () => void): this; + prependOnceListener(event: 'error', listener: (err: Error) => void): this; + prependOnceListener(event: 'finish', listener: () => void): this; + prependOnceListener(event: 'pipe', listener: (src: stream.Readable) => void): this; + prependOnceListener(event: 'unpipe', listener: (src: stream.Readable) => void): this; + prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this; + } + /** + * An `IncomingMessage` object is created by {@link Server} or {@link ClientRequest} and passed as the first argument to the `'request'` and `'response'` event respectively. It may be used to + * access response + * status, headers and data. + * + * Different from its `socket` value which is a subclass of `stream.Duplex`, the`IncomingMessage` itself extends `stream.Readable` and is created separately to + * parse and emit the incoming HTTP headers and payload, as the underlying socket + * may be reused multiple times in case of keep-alive. + * @since v0.1.17 + */ + class IncomingMessage extends stream.Readable { + constructor(socket: Socket); + /** + * The `message.aborted` property will be `true` if the request has + * been aborted. + * @since v10.1.0 + * @deprecated Since v17.0.0,v16.12.0 - Check `message.destroyed` from stream.Readable. + */ + aborted: boolean; + /** + * In case of server request, the HTTP version sent by the client. In the case of + * client response, the HTTP version of the connected-to server. + * Probably either `'1.1'` or `'1.0'`. + * + * Also `message.httpVersionMajor` is the first integer and`message.httpVersionMinor` is the second. + * @since v0.1.1 + */ + httpVersion: string; + httpVersionMajor: number; + httpVersionMinor: number; + /** + * The `message.complete` property will be `true` if a complete HTTP message has + * been received and successfully parsed. + * + * This property is particularly useful as a means of determining if a client or + * server fully transmitted a message before a connection was terminated: + * + * ```js + * const req = http.request({ + * host: '127.0.0.1', + * port: 8080, + * method: 'POST' + * }, (res) => { + * res.resume(); + * res.on('end', () => { + * if (!res.complete) + * console.error( + * 'The connection was terminated while the message was still being sent'); + * }); + * }); + * ``` + * @since v0.3.0 + */ + complete: boolean; + /** + * Alias for `message.socket`. + * @since v0.1.90 + * @deprecated Since v16.0.0 - Use `socket`. + */ + connection: Socket; + /** + * The `net.Socket` object associated with the connection. + * + * With HTTPS support, use `request.socket.getPeerCertificate()` to obtain the + * client's authentication details. + * + * This property is guaranteed to be an instance of the `net.Socket` class, + * a subclass of `stream.Duplex`, unless the user specified a socket + * type other than `net.Socket` or internally nulled. + * @since v0.3.0 + */ + socket: Socket; + /** + * The request/response headers object. + * + * Key-value pairs of header names and values. Header names are lower-cased. + * + * ```js + * // Prints something like: + * // + * // { 'user-agent': 'curl/7.22.0', + * // host: '127.0.0.1:8000', + * // accept: '*' } + * console.log(request.getHeaders()); + * ``` + * + * Duplicates in raw headers are handled in the following ways, depending on the + * header name: + * + * * Duplicates of `age`, `authorization`, `content-length`, `content-type`,`etag`, `expires`, `from`, `host`, `if-modified-since`, `if-unmodified-since`,`last-modified`, `location`, + * `max-forwards`, `proxy-authorization`, `referer`,`retry-after`, `server`, or `user-agent` are discarded. + * * `set-cookie` is always an array. Duplicates are added to the array. + * * For duplicate `cookie` headers, the values are joined together with '; '. + * * For all other headers, the values are joined together with ', '. + * @since v0.1.5 + */ + headers: IncomingHttpHeaders; + /** + * The raw request/response headers list exactly as they were received. + * + * The keys and values are in the same list. It is _not_ a + * list of tuples. So, the even-numbered offsets are key values, and the + * odd-numbered offsets are the associated values. + * + * Header names are not lowercased, and duplicates are not merged. + * + * ```js + * // Prints something like: + * // + * // [ 'user-agent', + * // 'this is invalid because there can be only one', + * // 'User-Agent', + * // 'curl/7.22.0', + * // 'Host', + * // '127.0.0.1:8000', + * // 'ACCEPT', + * // '*' ] + * console.log(request.rawHeaders); + * ``` + * @since v0.11.6 + */ + rawHeaders: string[]; + /** + * The request/response trailers object. Only populated at the `'end'` event. + * @since v0.3.0 + */ + trailers: NodeJS.Dict; + /** + * The raw request/response trailer keys and values exactly as they were + * received. Only populated at the `'end'` event. + * @since v0.11.6 + */ + rawTrailers: string[]; + /** + * Calls `message.socket.setTimeout(msecs, callback)`. + * @since v0.5.9 + */ + setTimeout(msecs: number, callback?: () => void): this; + /** + * **Only valid for request obtained from {@link Server}.** + * + * The request method as a string. Read only. Examples: `'GET'`, `'DELETE'`. + * @since v0.1.1 + */ + method?: string | undefined; + /** + * **Only valid for request obtained from {@link Server}.** + * + * Request URL string. This contains only the URL that is present in the actual + * HTTP request. Take the following request: + * + * ```http + * GET /status?name=ryan HTTP/1.1 + * Accept: text/plain + * ``` + * + * To parse the URL into its parts: + * + * ```js + * new URL(request.url, `http://${request.getHeaders().host}`); + * ``` + * + * When `request.url` is `'/status?name=ryan'` and`request.getHeaders().host` is `'localhost:3000'`: + * + * ```console + * $ node + * > new URL(request.url, `http://${request.getHeaders().host}`) + * URL { + * href: 'http://localhost:3000/status?name=ryan', + * origin: 'http://localhost:3000', + * protocol: 'http:', + * username: '', + * password: '', + * host: 'localhost:3000', + * hostname: 'localhost', + * port: '3000', + * pathname: '/status', + * search: '?name=ryan', + * searchParams: URLSearchParams { 'name' => 'ryan' }, + * hash: '' + * } + * ``` + * @since v0.1.90 + */ + url?: string | undefined; + /** + * **Only valid for response obtained from {@link ClientRequest}.** + * + * The 3-digit HTTP response status code. E.G. `404`. + * @since v0.1.1 + */ + statusCode?: number | undefined; + /** + * **Only valid for response obtained from {@link ClientRequest}.** + * + * The HTTP response status message (reason phrase). E.G. `OK` or `Internal Server Error`. + * @since v0.11.10 + */ + statusMessage?: string | undefined; + /** + * Calls `destroy()` on the socket that received the `IncomingMessage`. If `error`is provided, an `'error'` event is emitted on the socket and `error` is passed + * as an argument to any listeners on the event. + * @since v0.3.0 + */ + destroy(error?: Error): this; + } + interface AgentOptions extends Partial { + /** + * Keep sockets around in a pool to be used by other requests in the future. Default = false + */ + keepAlive?: boolean | undefined; + /** + * When using HTTP KeepAlive, how often to send TCP KeepAlive packets over sockets being kept alive. Default = 1000. + * Only relevant if keepAlive is set to true. + */ + keepAliveMsecs?: number | undefined; + /** + * Maximum number of sockets to allow per host. Default for Node 0.10 is 5, default for Node 0.12 is Infinity + */ + maxSockets?: number | undefined; + /** + * Maximum number of sockets allowed for all hosts in total. Each request will use a new socket until the maximum is reached. Default: Infinity. + */ + maxTotalSockets?: number | undefined; + /** + * Maximum number of sockets to leave open in a free state. Only relevant if keepAlive is set to true. Default = 256. + */ + maxFreeSockets?: number | undefined; + /** + * Socket timeout in milliseconds. This will set the timeout after the socket is connected. + */ + timeout?: number | undefined; + /** + * Scheduling strategy to apply when picking the next free socket to use. + * @default `lifo` + */ + scheduling?: 'fifo' | 'lifo' | undefined; + } + /** + * An `Agent` is responsible for managing connection persistence + * and reuse for HTTP clients. It maintains a queue of pending requests + * for a given host and port, reusing a single socket connection for each + * until the queue is empty, at which time the socket is either destroyed + * or put into a pool where it is kept to be used again for requests to the + * same host and port. Whether it is destroyed or pooled depends on the`keepAlive` `option`. + * + * Pooled connections have TCP Keep-Alive enabled for them, but servers may + * still close idle connections, in which case they will be removed from the + * pool and a new connection will be made when a new HTTP request is made for + * that host and port. Servers may also refuse to allow multiple requests + * over the same connection, in which case the connection will have to be + * remade for every request and cannot be pooled. The `Agent` will still make + * the requests to that server, but each one will occur over a new connection. + * + * When a connection is closed by the client or the server, it is removed + * from the pool. Any unused sockets in the pool will be unrefed so as not + * to keep the Node.js process running when there are no outstanding requests. + * (see `socket.unref()`). + * + * It is good practice, to `destroy()` an `Agent` instance when it is no + * longer in use, because unused sockets consume OS resources. + * + * Sockets are removed from an agent when the socket emits either + * a `'close'` event or an `'agentRemove'` event. When intending to keep one + * HTTP request open for a long time without keeping it in the agent, something + * like the following may be done: + * + * ```js + * http.get(options, (res) => { + * // Do stuff + * }).on('socket', (socket) => { + * socket.emit('agentRemove'); + * }); + * ``` + * + * An agent may also be used for an individual request. By providing`{agent: false}` as an option to the `http.get()` or `http.request()`functions, a one-time use `Agent` with default options + * will be used + * for the client connection. + * + * `agent:false`: + * + * ```js + * http.get({ + * hostname: 'localhost', + * port: 80, + * path: '/', + * agent: false // Create a new agent just for this one request + * }, (res) => { + * // Do stuff with response + * }); + * ``` + * @since v0.3.4 + */ + class Agent { + /** + * By default set to 256\. For agents with `keepAlive` enabled, this + * sets the maximum number of sockets that will be left open in the free + * state. + * @since v0.11.7 + */ + maxFreeSockets: number; + /** + * By default set to `Infinity`. Determines how many concurrent sockets the agent + * can have open per origin. Origin is the returned value of `agent.getName()`. + * @since v0.3.6 + */ + maxSockets: number; + /** + * By default set to `Infinity`. Determines how many concurrent sockets the agent + * can have open. Unlike `maxSockets`, this parameter applies across all origins. + * @since v14.5.0, v12.19.0 + */ + maxTotalSockets: number; + /** + * An object which contains arrays of sockets currently awaiting use by + * the agent when `keepAlive` is enabled. Do not modify. + * + * Sockets in the `freeSockets` list will be automatically destroyed and + * removed from the array on `'timeout'`. + * @since v0.11.4 + */ + readonly freeSockets: NodeJS.ReadOnlyDict; + /** + * An object which contains arrays of sockets currently in use by the + * agent. Do not modify. + * @since v0.3.6 + */ + readonly sockets: NodeJS.ReadOnlyDict; + /** + * An object which contains queues of requests that have not yet been assigned to + * sockets. Do not modify. + * @since v0.5.9 + */ + readonly requests: NodeJS.ReadOnlyDict; + constructor(opts?: AgentOptions); + /** + * Destroy any sockets that are currently in use by the agent. + * + * It is usually not necessary to do this. However, if using an + * agent with `keepAlive` enabled, then it is best to explicitly shut down + * the agent when it is no longer needed. Otherwise, + * sockets might stay open for quite a long time before the server + * terminates them. + * @since v0.11.4 + */ + destroy(): void; + } + const METHODS: string[]; + const STATUS_CODES: { + [errorCode: number]: string | undefined; + [errorCode: string]: string | undefined; + }; + /** + * Returns a new instance of {@link Server}. + * + * The `requestListener` is a function which is automatically + * added to the `'request'` event. + * @since v0.1.13 + */ + function createServer< + Request extends typeof IncomingMessage = typeof IncomingMessage, + Response extends typeof ServerResponse = typeof ServerResponse, + >(requestListener?: RequestListener): Server; + function createServer< + Request extends typeof IncomingMessage = typeof IncomingMessage, + Response extends typeof ServerResponse = typeof ServerResponse, + >( + options: ServerOptions, + requestListener?: RequestListener, + ): Server; + // although RequestOptions are passed as ClientRequestArgs to ClientRequest directly, + // create interface RequestOptions would make the naming more clear to developers + interface RequestOptions extends ClientRequestArgs {} + /** + * `options` in `socket.connect()` are also supported. + * + * Node.js maintains several connections per server to make HTTP requests. + * This function allows one to transparently issue requests. + * + * `url` can be a string or a `URL` object. If `url` is a + * string, it is automatically parsed with `new URL()`. If it is a `URL` object, it will be automatically converted to an ordinary `options` object. + * + * If both `url` and `options` are specified, the objects are merged, with the`options` properties taking precedence. + * + * The optional `callback` parameter will be added as a one-time listener for + * the `'response'` event. + * + * `http.request()` returns an instance of the {@link ClientRequest} class. The `ClientRequest` instance is a writable stream. If one needs to + * upload a file with a POST request, then write to the `ClientRequest` object. + * + * ```js + * const http = require('http'); + * + * const postData = JSON.stringify({ + * 'msg': 'Hello World!' + * }); + * + * const options = { + * hostname: 'www.google.com', + * port: 80, + * path: '/upload', + * method: 'POST', + * headers: { + * 'Content-Type': 'application/json', + * 'Content-Length': Buffer.byteLength(postData) + * } + * }; + * + * const req = http.request(options, (res) => { + * console.log(`STATUS: ${res.statusCode}`); + * console.log(`HEADERS: ${JSON.stringify(res.headers)}`); + * res.setEncoding('utf8'); + * res.on('data', (chunk) => { + * console.log(`BODY: ${chunk}`); + * }); + * res.on('end', () => { + * console.log('No more data in response.'); + * }); + * }); + * + * req.on('error', (e) => { + * console.error(`problem with request: ${e.message}`); + * }); + * + * // Write data to request body + * req.write(postData); + * req.end(); + * ``` + * + * In the example `req.end()` was called. With `http.request()` one + * must always call `req.end()` to signify the end of the request - + * even if there is no data being written to the request body. + * + * If any error is encountered during the request (be that with DNS resolution, + * TCP level errors, or actual HTTP parse errors) an `'error'` event is emitted + * on the returned request object. As with all `'error'` events, if no listeners + * are registered the error will be thrown. + * + * There are a few special headers that should be noted. + * + * * Sending a 'Connection: keep-alive' will notify Node.js that the connection to + * the server should be persisted until the next request. + * * Sending a 'Content-Length' header will disable the default chunked encoding. + * * Sending an 'Expect' header will immediately send the request headers. + * Usually, when sending 'Expect: 100-continue', both a timeout and a listener + * for the `'continue'` event should be set. See RFC 2616 Section 8.2.3 for more + * information. + * * Sending an Authorization header will override using the `auth` option + * to compute basic authentication. + * + * Example using a `URL` as `options`: + * + * ```js + * const options = new URL('http://abc:xyz@example.com'); + * + * const req = http.request(options, (res) => { + * // ... + * }); + * ``` + * + * In a successful request, the following events will be emitted in the following + * order: + * + * * `'socket'` + * * `'response'` + * * `'data'` any number of times, on the `res` object + * (`'data'` will not be emitted at all if the response body is empty, for + * instance, in most redirects) + * * `'end'` on the `res` object + * * `'close'` + * + * In the case of a connection error, the following events will be emitted: + * + * * `'socket'` + * * `'error'` + * * `'close'` + * + * In the case of a premature connection close before the response is received, + * the following events will be emitted in the following order: + * + * * `'socket'` + * * `'error'` with an error with message `'Error: socket hang up'` and code`'ECONNRESET'` + * * `'close'` + * + * In the case of a premature connection close after the response is received, + * the following events will be emitted in the following order: + * + * * `'socket'` + * * `'response'` + * * `'data'` any number of times, on the `res` object + * * (connection closed here) + * * `'aborted'` on the `res` object + * * `'error'` on the `res` object with an error with message`'Error: aborted'` and code `'ECONNRESET'`. + * * `'close'` + * * `'close'` on the `res` object + * + * If `req.destroy()` is called before a socket is assigned, the following + * events will be emitted in the following order: + * + * * (`req.destroy()` called here) + * * `'error'` with an error with message `'Error: socket hang up'` and code`'ECONNRESET'` + * * `'close'` + * + * If `req.destroy()` is called before the connection succeeds, the following + * events will be emitted in the following order: + * + * * `'socket'` + * * (`req.destroy()` called here) + * * `'error'` with an error with message `'Error: socket hang up'` and code`'ECONNRESET'` + * * `'close'` + * + * If `req.destroy()` is called after the response is received, the following + * events will be emitted in the following order: + * + * * `'socket'` + * * `'response'` + * * `'data'` any number of times, on the `res` object + * * (`req.destroy()` called here) + * * `'aborted'` on the `res` object + * * `'error'` on the `res` object with an error with message`'Error: aborted'` and code `'ECONNRESET'`. + * * `'close'` + * * `'close'` on the `res` object + * + * If `req.abort()` is called before a socket is assigned, the following + * events will be emitted in the following order: + * + * * (`req.abort()` called here) + * * `'abort'` + * * `'close'` + * + * If `req.abort()` is called before the connection succeeds, the following + * events will be emitted in the following order: + * + * * `'socket'` + * * (`req.abort()` called here) + * * `'abort'` + * * `'error'` with an error with message `'Error: socket hang up'` and code`'ECONNRESET'` + * * `'close'` + * + * If `req.abort()` is called after the response is received, the following + * events will be emitted in the following order: + * + * * `'socket'` + * * `'response'` + * * `'data'` any number of times, on the `res` object + * * (`req.abort()` called here) + * * `'abort'` + * * `'aborted'` on the `res` object + * * `'error'` on the `res` object with an error with message`'Error: aborted'` and code `'ECONNRESET'`. + * * `'close'` + * * `'close'` on the `res` object + * + * Setting the `timeout` option or using the `setTimeout()` function will + * not abort the request or do anything besides add a `'timeout'` event. + * + * Passing an `AbortSignal` and then calling `abort` on the corresponding`AbortController` will behave the same way as calling `.destroy()` on the + * request itself. + * @since v0.3.6 + */ + function request(options: RequestOptions | string | URL, callback?: (res: IncomingMessage) => void): ClientRequest; + function request( + url: string | URL, + options: RequestOptions, + callback?: (res: IncomingMessage) => void, + ): ClientRequest; + /** + * Since most requests are GET requests without bodies, Node.js provides this + * convenience method. The only difference between this method and {@link request} is that it sets the method to GET and calls `req.end()`automatically. The callback must take care to consume the + * response + * data for reasons stated in {@link ClientRequest} section. + * + * The `callback` is invoked with a single argument that is an instance of {@link IncomingMessage}. + * + * JSON fetching example: + * + * ```js + * http.get('http://localhost:8000/', (res) => { + * const { statusCode } = res; + * const contentType = res.headers['content-type']; + * + * let error; + * // Any 2xx status code signals a successful response but + * // here we're only checking for 200. + * if (statusCode !== 200) { + * error = new Error('Request Failed.\n' + + * `Status Code: ${statusCode}`); + * } else if (!/^application\/json/.test(contentType)) { + * error = new Error('Invalid content-type.\n' + + * `Expected application/json but received ${contentType}`); + * } + * if (error) { + * console.error(error.message); + * // Consume response data to free up memory + * res.resume(); + * return; + * } + * + * res.setEncoding('utf8'); + * let rawData = ''; + * res.on('data', (chunk) => { rawData += chunk; }); + * res.on('end', () => { + * try { + * const parsedData = JSON.parse(rawData); + * console.log(parsedData); + * } catch (e) { + * console.error(e.message); + * } + * }); + * }).on('error', (e) => { + * console.error(`Got error: ${e.message}`); + * }); + * + * // Create a local server to receive data from + * const server = http.createServer((req, res) => { + * res.writeHead(200, { 'Content-Type': 'application/json' }); + * res.end(JSON.stringify({ + * data: 'Hello World!' + * })); + * }); + * + * server.listen(8000); + * ``` + * @since v0.3.6 + * @param options Accepts the same `options` as {@link request}, with the `method` always set to `GET`. Properties that are inherited from the prototype are ignored. + */ + function get(options: RequestOptions | string | URL, callback?: (res: IncomingMessage) => void): ClientRequest; + function get(url: string | URL, options: RequestOptions, callback?: (res: IncomingMessage) => void): ClientRequest; + let globalAgent: Agent; + /** + * Read-only property specifying the maximum allowed size of HTTP headers in bytes. + * Defaults to 16KB. Configurable using the `--max-http-header-size` CLI option. + */ + const maxHeaderSize: number; +} +declare module 'node:http' { + export * from 'http'; +} diff --git a/node_modules/@types/node/ts4.8/http2.d.ts b/node_modules/@types/node/ts4.8/http2.d.ts new file mode 100644 index 000000000..0f628b9d7 --- /dev/null +++ b/node_modules/@types/node/ts4.8/http2.d.ts @@ -0,0 +1,2106 @@ +/** + * The `http2` module provides an implementation of the [HTTP/2](https://tools.ietf.org/html/rfc7540) protocol. It + * can be accessed using: + * + * ```js + * const http2 = require('http2'); + * ``` + * @since v8.4.0 + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/http2.js) + */ +declare module 'http2' { + import EventEmitter = require('node:events'); + import * as fs from 'node:fs'; + import * as net from 'node:net'; + import * as stream from 'node:stream'; + import * as tls from 'node:tls'; + import * as url from 'node:url'; + import { IncomingHttpHeaders as Http1IncomingHttpHeaders, OutgoingHttpHeaders, IncomingMessage, ServerResponse } from 'node:http'; + export { OutgoingHttpHeaders } from 'node:http'; + export interface IncomingHttpStatusHeader { + ':status'?: number | undefined; + } + export interface IncomingHttpHeaders extends Http1IncomingHttpHeaders { + ':path'?: string | undefined; + ':method'?: string | undefined; + ':authority'?: string | undefined; + ':scheme'?: string | undefined; + } + // Http2Stream + export interface StreamPriorityOptions { + exclusive?: boolean | undefined; + parent?: number | undefined; + weight?: number | undefined; + silent?: boolean | undefined; + } + export interface StreamState { + localWindowSize?: number | undefined; + state?: number | undefined; + localClose?: number | undefined; + remoteClose?: number | undefined; + sumDependencyWeight?: number | undefined; + weight?: number | undefined; + } + export interface ServerStreamResponseOptions { + endStream?: boolean | undefined; + waitForTrailers?: boolean | undefined; + } + export interface StatOptions { + offset: number; + length: number; + } + export interface ServerStreamFileResponseOptions { + statCheck?(stats: fs.Stats, headers: OutgoingHttpHeaders, statOptions: StatOptions): void | boolean; + waitForTrailers?: boolean | undefined; + offset?: number | undefined; + length?: number | undefined; + } + export interface ServerStreamFileResponseOptionsWithError extends ServerStreamFileResponseOptions { + onError?(err: NodeJS.ErrnoException): void; + } + export interface Http2Stream extends stream.Duplex { + /** + * Set to `true` if the `Http2Stream` instance was aborted abnormally. When set, + * the `'aborted'` event will have been emitted. + * @since v8.4.0 + */ + readonly aborted: boolean; + /** + * This property shows the number of characters currently buffered to be written. + * See `net.Socket.bufferSize` for details. + * @since v11.2.0, v10.16.0 + */ + readonly bufferSize: number; + /** + * Set to `true` if the `Http2Stream` instance has been closed. + * @since v9.4.0 + */ + readonly closed: boolean; + /** + * Set to `true` if the `Http2Stream` instance has been destroyed and is no longer + * usable. + * @since v8.4.0 + */ + readonly destroyed: boolean; + /** + * Set to `true` if the `END_STREAM` flag was set in the request or response + * HEADERS frame received, indicating that no additional data should be received + * and the readable side of the `Http2Stream` will be closed. + * @since v10.11.0 + */ + readonly endAfterHeaders: boolean; + /** + * The numeric stream identifier of this `Http2Stream` instance. Set to `undefined`if the stream identifier has not yet been assigned. + * @since v8.4.0 + */ + readonly id?: number | undefined; + /** + * Set to `true` if the `Http2Stream` instance has not yet been assigned a + * numeric stream identifier. + * @since v9.4.0 + */ + readonly pending: boolean; + /** + * Set to the `RST_STREAM` `error code` reported when the `Http2Stream` is + * destroyed after either receiving an `RST_STREAM` frame from the connected peer, + * calling `http2stream.close()`, or `http2stream.destroy()`. Will be`undefined` if the `Http2Stream` has not been closed. + * @since v8.4.0 + */ + readonly rstCode: number; + /** + * An object containing the outbound headers sent for this `Http2Stream`. + * @since v9.5.0 + */ + readonly sentHeaders: OutgoingHttpHeaders; + /** + * An array of objects containing the outbound informational (additional) headers + * sent for this `Http2Stream`. + * @since v9.5.0 + */ + readonly sentInfoHeaders?: OutgoingHttpHeaders[] | undefined; + /** + * An object containing the outbound trailers sent for this `HttpStream`. + * @since v9.5.0 + */ + readonly sentTrailers?: OutgoingHttpHeaders | undefined; + /** + * A reference to the `Http2Session` instance that owns this `Http2Stream`. The + * value will be `undefined` after the `Http2Stream` instance is destroyed. + * @since v8.4.0 + */ + readonly session: Http2Session; + /** + * Provides miscellaneous information about the current state of the`Http2Stream`. + * + * A current state of this `Http2Stream`. + * @since v8.4.0 + */ + readonly state: StreamState; + /** + * Closes the `Http2Stream` instance by sending an `RST_STREAM` frame to the + * connected HTTP/2 peer. + * @since v8.4.0 + * @param [code=http2.constants.NGHTTP2_NO_ERROR] Unsigned 32-bit integer identifying the error code. + * @param callback An optional function registered to listen for the `'close'` event. + */ + close(code?: number, callback?: () => void): void; + /** + * Updates the priority for this `Http2Stream` instance. + * @since v8.4.0 + */ + priority(options: StreamPriorityOptions): void; + /** + * ```js + * const http2 = require('http2'); + * const client = http2.connect('http://example.org:8000'); + * const { NGHTTP2_CANCEL } = http2.constants; + * const req = client.request({ ':path': '/' }); + * + * // Cancel the stream if there's no activity after 5 seconds + * req.setTimeout(5000, () => req.close(NGHTTP2_CANCEL)); + * ``` + * @since v8.4.0 + */ + setTimeout(msecs: number, callback?: () => void): void; + /** + * Sends a trailing `HEADERS` frame to the connected HTTP/2 peer. This method + * will cause the `Http2Stream` to be immediately closed and must only be + * called after the `'wantTrailers'` event has been emitted. When sending a + * request or sending a response, the `options.waitForTrailers` option must be set + * in order to keep the `Http2Stream` open after the final `DATA` frame so that + * trailers can be sent. + * + * ```js + * const http2 = require('http2'); + * const server = http2.createServer(); + * server.on('stream', (stream) => { + * stream.respond(undefined, { waitForTrailers: true }); + * stream.on('wantTrailers', () => { + * stream.sendTrailers({ xyz: 'abc' }); + * }); + * stream.end('Hello World'); + * }); + * ``` + * + * The HTTP/1 specification forbids trailers from containing HTTP/2 pseudo-header + * fields (e.g. `':method'`, `':path'`, etc). + * @since v10.0.0 + */ + sendTrailers(headers: OutgoingHttpHeaders): void; + addListener(event: 'aborted', listener: () => void): this; + addListener(event: 'close', listener: () => void): this; + addListener(event: 'data', listener: (chunk: Buffer | string) => void): this; + addListener(event: 'drain', listener: () => void): this; + addListener(event: 'end', listener: () => void): this; + addListener(event: 'error', listener: (err: Error) => void): this; + addListener(event: 'finish', listener: () => void): this; + addListener(event: 'frameError', listener: (frameType: number, errorCode: number) => void): this; + addListener(event: 'pipe', listener: (src: stream.Readable) => void): this; + addListener(event: 'unpipe', listener: (src: stream.Readable) => void): this; + addListener(event: 'streamClosed', listener: (code: number) => void): this; + addListener(event: 'timeout', listener: () => void): this; + addListener(event: 'trailers', listener: (trailers: IncomingHttpHeaders, flags: number) => void): this; + addListener(event: 'wantTrailers', listener: () => void): this; + addListener(event: string | symbol, listener: (...args: any[]) => void): this; + emit(event: 'aborted'): boolean; + emit(event: 'close'): boolean; + emit(event: 'data', chunk: Buffer | string): boolean; + emit(event: 'drain'): boolean; + emit(event: 'end'): boolean; + emit(event: 'error', err: Error): boolean; + emit(event: 'finish'): boolean; + emit(event: 'frameError', frameType: number, errorCode: number): boolean; + emit(event: 'pipe', src: stream.Readable): boolean; + emit(event: 'unpipe', src: stream.Readable): boolean; + emit(event: 'streamClosed', code: number): boolean; + emit(event: 'timeout'): boolean; + emit(event: 'trailers', trailers: IncomingHttpHeaders, flags: number): boolean; + emit(event: 'wantTrailers'): boolean; + emit(event: string | symbol, ...args: any[]): boolean; + on(event: 'aborted', listener: () => void): this; + on(event: 'close', listener: () => void): this; + on(event: 'data', listener: (chunk: Buffer | string) => void): this; + on(event: 'drain', listener: () => void): this; + on(event: 'end', listener: () => void): this; + on(event: 'error', listener: (err: Error) => void): this; + on(event: 'finish', listener: () => void): this; + on(event: 'frameError', listener: (frameType: number, errorCode: number) => void): this; + on(event: 'pipe', listener: (src: stream.Readable) => void): this; + on(event: 'unpipe', listener: (src: stream.Readable) => void): this; + on(event: 'streamClosed', listener: (code: number) => void): this; + on(event: 'timeout', listener: () => void): this; + on(event: 'trailers', listener: (trailers: IncomingHttpHeaders, flags: number) => void): this; + on(event: 'wantTrailers', listener: () => void): this; + on(event: string | symbol, listener: (...args: any[]) => void): this; + once(event: 'aborted', listener: () => void): this; + once(event: 'close', listener: () => void): this; + once(event: 'data', listener: (chunk: Buffer | string) => void): this; + once(event: 'drain', listener: () => void): this; + once(event: 'end', listener: () => void): this; + once(event: 'error', listener: (err: Error) => void): this; + once(event: 'finish', listener: () => void): this; + once(event: 'frameError', listener: (frameType: number, errorCode: number) => void): this; + once(event: 'pipe', listener: (src: stream.Readable) => void): this; + once(event: 'unpipe', listener: (src: stream.Readable) => void): this; + once(event: 'streamClosed', listener: (code: number) => void): this; + once(event: 'timeout', listener: () => void): this; + once(event: 'trailers', listener: (trailers: IncomingHttpHeaders, flags: number) => void): this; + once(event: 'wantTrailers', listener: () => void): this; + once(event: string | symbol, listener: (...args: any[]) => void): this; + prependListener(event: 'aborted', listener: () => void): this; + prependListener(event: 'close', listener: () => void): this; + prependListener(event: 'data', listener: (chunk: Buffer | string) => void): this; + prependListener(event: 'drain', listener: () => void): this; + prependListener(event: 'end', listener: () => void): this; + prependListener(event: 'error', listener: (err: Error) => void): this; + prependListener(event: 'finish', listener: () => void): this; + prependListener(event: 'frameError', listener: (frameType: number, errorCode: number) => void): this; + prependListener(event: 'pipe', listener: (src: stream.Readable) => void): this; + prependListener(event: 'unpipe', listener: (src: stream.Readable) => void): this; + prependListener(event: 'streamClosed', listener: (code: number) => void): this; + prependListener(event: 'timeout', listener: () => void): this; + prependListener(event: 'trailers', listener: (trailers: IncomingHttpHeaders, flags: number) => void): this; + prependListener(event: 'wantTrailers', listener: () => void): this; + prependListener(event: string | symbol, listener: (...args: any[]) => void): this; + prependOnceListener(event: 'aborted', listener: () => void): this; + prependOnceListener(event: 'close', listener: () => void): this; + prependOnceListener(event: 'data', listener: (chunk: Buffer | string) => void): this; + prependOnceListener(event: 'drain', listener: () => void): this; + prependOnceListener(event: 'end', listener: () => void): this; + prependOnceListener(event: 'error', listener: (err: Error) => void): this; + prependOnceListener(event: 'finish', listener: () => void): this; + prependOnceListener(event: 'frameError', listener: (frameType: number, errorCode: number) => void): this; + prependOnceListener(event: 'pipe', listener: (src: stream.Readable) => void): this; + prependOnceListener(event: 'unpipe', listener: (src: stream.Readable) => void): this; + prependOnceListener(event: 'streamClosed', listener: (code: number) => void): this; + prependOnceListener(event: 'timeout', listener: () => void): this; + prependOnceListener(event: 'trailers', listener: (trailers: IncomingHttpHeaders, flags: number) => void): this; + prependOnceListener(event: 'wantTrailers', listener: () => void): this; + prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this; + } + export interface ClientHttp2Stream extends Http2Stream { + addListener(event: 'continue', listener: () => {}): this; + addListener(event: 'headers', listener: (headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number) => void): this; + addListener(event: 'push', listener: (headers: IncomingHttpHeaders, flags: number) => void): this; + addListener(event: 'response', listener: (headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number) => void): this; + addListener(event: string | symbol, listener: (...args: any[]) => void): this; + emit(event: 'continue'): boolean; + emit(event: 'headers', headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number): boolean; + emit(event: 'push', headers: IncomingHttpHeaders, flags: number): boolean; + emit(event: 'response', headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number): boolean; + emit(event: string | symbol, ...args: any[]): boolean; + on(event: 'continue', listener: () => {}): this; + on(event: 'headers', listener: (headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number) => void): this; + on(event: 'push', listener: (headers: IncomingHttpHeaders, flags: number) => void): this; + on(event: 'response', listener: (headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number) => void): this; + on(event: string | symbol, listener: (...args: any[]) => void): this; + once(event: 'continue', listener: () => {}): this; + once(event: 'headers', listener: (headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number) => void): this; + once(event: 'push', listener: (headers: IncomingHttpHeaders, flags: number) => void): this; + once(event: 'response', listener: (headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number) => void): this; + once(event: string | symbol, listener: (...args: any[]) => void): this; + prependListener(event: 'continue', listener: () => {}): this; + prependListener(event: 'headers', listener: (headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number) => void): this; + prependListener(event: 'push', listener: (headers: IncomingHttpHeaders, flags: number) => void): this; + prependListener(event: 'response', listener: (headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number) => void): this; + prependListener(event: string | symbol, listener: (...args: any[]) => void): this; + prependOnceListener(event: 'continue', listener: () => {}): this; + prependOnceListener(event: 'headers', listener: (headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number) => void): this; + prependOnceListener(event: 'push', listener: (headers: IncomingHttpHeaders, flags: number) => void): this; + prependOnceListener(event: 'response', listener: (headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number) => void): this; + prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this; + } + export interface ServerHttp2Stream extends Http2Stream { + /** + * True if headers were sent, false otherwise (read-only). + * @since v8.4.0 + */ + readonly headersSent: boolean; + /** + * Read-only property mapped to the `SETTINGS_ENABLE_PUSH` flag of the remote + * client's most recent `SETTINGS` frame. Will be `true` if the remote peer + * accepts push streams, `false` otherwise. Settings are the same for every`Http2Stream` in the same `Http2Session`. + * @since v8.4.0 + */ + readonly pushAllowed: boolean; + /** + * Sends an additional informational `HEADERS` frame to the connected HTTP/2 peer. + * @since v8.4.0 + */ + additionalHeaders(headers: OutgoingHttpHeaders): void; + /** + * Initiates a push stream. The callback is invoked with the new `Http2Stream`instance created for the push stream passed as the second argument, or an`Error` passed as the first argument. + * + * ```js + * const http2 = require('http2'); + * const server = http2.createServer(); + * server.on('stream', (stream) => { + * stream.respond({ ':status': 200 }); + * stream.pushStream({ ':path': '/' }, (err, pushStream, headers) => { + * if (err) throw err; + * pushStream.respond({ ':status': 200 }); + * pushStream.end('some pushed data'); + * }); + * stream.end('some data'); + * }); + * ``` + * + * Setting the weight of a push stream is not allowed in the `HEADERS` frame. Pass + * a `weight` value to `http2stream.priority` with the `silent` option set to`true` to enable server-side bandwidth balancing between concurrent streams. + * + * Calling `http2stream.pushStream()` from within a pushed stream is not permitted + * and will throw an error. + * @since v8.4.0 + * @param callback Callback that is called once the push stream has been initiated. + */ + pushStream(headers: OutgoingHttpHeaders, callback?: (err: Error | null, pushStream: ServerHttp2Stream, headers: OutgoingHttpHeaders) => void): void; + pushStream(headers: OutgoingHttpHeaders, options?: StreamPriorityOptions, callback?: (err: Error | null, pushStream: ServerHttp2Stream, headers: OutgoingHttpHeaders) => void): void; + /** + * ```js + * const http2 = require('http2'); + * const server = http2.createServer(); + * server.on('stream', (stream) => { + * stream.respond({ ':status': 200 }); + * stream.end('some data'); + * }); + * ``` + * + * When the `options.waitForTrailers` option is set, the `'wantTrailers'` event + * will be emitted immediately after queuing the last chunk of payload data to be + * sent. The `http2stream.sendTrailers()` method can then be used to sent trailing + * header fields to the peer. + * + * When `options.waitForTrailers` is set, the `Http2Stream` will not automatically + * close when the final `DATA` frame is transmitted. User code must call either`http2stream.sendTrailers()` or `http2stream.close()` to close the`Http2Stream`. + * + * ```js + * const http2 = require('http2'); + * const server = http2.createServer(); + * server.on('stream', (stream) => { + * stream.respond({ ':status': 200 }, { waitForTrailers: true }); + * stream.on('wantTrailers', () => { + * stream.sendTrailers({ ABC: 'some value to send' }); + * }); + * stream.end('some data'); + * }); + * ``` + * @since v8.4.0 + */ + respond(headers?: OutgoingHttpHeaders, options?: ServerStreamResponseOptions): void; + /** + * Initiates a response whose data is read from the given file descriptor. No + * validation is performed on the given file descriptor. If an error occurs while + * attempting to read data using the file descriptor, the `Http2Stream` will be + * closed using an `RST_STREAM` frame using the standard `INTERNAL_ERROR` code. + * + * When used, the `Http2Stream` object's `Duplex` interface will be closed + * automatically. + * + * ```js + * const http2 = require('http2'); + * const fs = require('fs'); + * + * const server = http2.createServer(); + * server.on('stream', (stream) => { + * const fd = fs.openSync('/some/file', 'r'); + * + * const stat = fs.fstatSync(fd); + * const headers = { + * 'content-length': stat.size, + * 'last-modified': stat.mtime.toUTCString(), + * 'content-type': 'text/plain; charset=utf-8' + * }; + * stream.respondWithFD(fd, headers); + * stream.on('close', () => fs.closeSync(fd)); + * }); + * ``` + * + * The optional `options.statCheck` function may be specified to give user code + * an opportunity to set additional content headers based on the `fs.Stat` details + * of the given fd. If the `statCheck` function is provided, the`http2stream.respondWithFD()` method will perform an `fs.fstat()` call to + * collect details on the provided file descriptor. + * + * The `offset` and `length` options may be used to limit the response to a + * specific range subset. This can be used, for instance, to support HTTP Range + * requests. + * + * The file descriptor or `FileHandle` is not closed when the stream is closed, + * so it will need to be closed manually once it is no longer needed. + * Using the same file descriptor concurrently for multiple streams + * is not supported and may result in data loss. Re-using a file descriptor + * after a stream has finished is supported. + * + * When the `options.waitForTrailers` option is set, the `'wantTrailers'` event + * will be emitted immediately after queuing the last chunk of payload data to be + * sent. The `http2stream.sendTrailers()` method can then be used to sent trailing + * header fields to the peer. + * + * When `options.waitForTrailers` is set, the `Http2Stream` will not automatically + * close when the final `DATA` frame is transmitted. User code _must_ call either`http2stream.sendTrailers()` or `http2stream.close()` to close the`Http2Stream`. + * + * ```js + * const http2 = require('http2'); + * const fs = require('fs'); + * + * const server = http2.createServer(); + * server.on('stream', (stream) => { + * const fd = fs.openSync('/some/file', 'r'); + * + * const stat = fs.fstatSync(fd); + * const headers = { + * 'content-length': stat.size, + * 'last-modified': stat.mtime.toUTCString(), + * 'content-type': 'text/plain; charset=utf-8' + * }; + * stream.respondWithFD(fd, headers, { waitForTrailers: true }); + * stream.on('wantTrailers', () => { + * stream.sendTrailers({ ABC: 'some value to send' }); + * }); + * + * stream.on('close', () => fs.closeSync(fd)); + * }); + * ``` + * @since v8.4.0 + * @param fd A readable file descriptor. + */ + respondWithFD(fd: number | fs.promises.FileHandle, headers?: OutgoingHttpHeaders, options?: ServerStreamFileResponseOptions): void; + /** + * Sends a regular file as the response. The `path` must specify a regular file + * or an `'error'` event will be emitted on the `Http2Stream` object. + * + * When used, the `Http2Stream` object's `Duplex` interface will be closed + * automatically. + * + * The optional `options.statCheck` function may be specified to give user code + * an opportunity to set additional content headers based on the `fs.Stat` details + * of the given file: + * + * If an error occurs while attempting to read the file data, the `Http2Stream`will be closed using an `RST_STREAM` frame using the standard `INTERNAL_ERROR`code. If the `onError` callback is + * defined, then it will be called. Otherwise + * the stream will be destroyed. + * + * Example using a file path: + * + * ```js + * const http2 = require('http2'); + * const server = http2.createServer(); + * server.on('stream', (stream) => { + * function statCheck(stat, headers) { + * headers['last-modified'] = stat.mtime.toUTCString(); + * } + * + * function onError(err) { + * // stream.respond() can throw if the stream has been destroyed by + * // the other side. + * try { + * if (err.code === 'ENOENT') { + * stream.respond({ ':status': 404 }); + * } else { + * stream.respond({ ':status': 500 }); + * } + * } catch (err) { + * // Perform actual error handling. + * console.log(err); + * } + * stream.end(); + * } + * + * stream.respondWithFile('/some/file', + * { 'content-type': 'text/plain; charset=utf-8' }, + * { statCheck, onError }); + * }); + * ``` + * + * The `options.statCheck` function may also be used to cancel the send operation + * by returning `false`. For instance, a conditional request may check the stat + * results to determine if the file has been modified to return an appropriate`304` response: + * + * ```js + * const http2 = require('http2'); + * const server = http2.createServer(); + * server.on('stream', (stream) => { + * function statCheck(stat, headers) { + * // Check the stat here... + * stream.respond({ ':status': 304 }); + * return false; // Cancel the send operation + * } + * stream.respondWithFile('/some/file', + * { 'content-type': 'text/plain; charset=utf-8' }, + * { statCheck }); + * }); + * ``` + * + * The `content-length` header field will be automatically set. + * + * The `offset` and `length` options may be used to limit the response to a + * specific range subset. This can be used, for instance, to support HTTP Range + * requests. + * + * The `options.onError` function may also be used to handle all the errors + * that could happen before the delivery of the file is initiated. The + * default behavior is to destroy the stream. + * + * When the `options.waitForTrailers` option is set, the `'wantTrailers'` event + * will be emitted immediately after queuing the last chunk of payload data to be + * sent. The `http2stream.sendTrailers()` method can then be used to sent trailing + * header fields to the peer. + * + * When `options.waitForTrailers` is set, the `Http2Stream` will not automatically + * close when the final `DATA` frame is transmitted. User code must call either`http2stream.sendTrailers()` or `http2stream.close()` to close the`Http2Stream`. + * + * ```js + * const http2 = require('http2'); + * const server = http2.createServer(); + * server.on('stream', (stream) => { + * stream.respondWithFile('/some/file', + * { 'content-type': 'text/plain; charset=utf-8' }, + * { waitForTrailers: true }); + * stream.on('wantTrailers', () => { + * stream.sendTrailers({ ABC: 'some value to send' }); + * }); + * }); + * ``` + * @since v8.4.0 + */ + respondWithFile(path: string, headers?: OutgoingHttpHeaders, options?: ServerStreamFileResponseOptionsWithError): void; + } + // Http2Session + export interface Settings { + headerTableSize?: number | undefined; + enablePush?: boolean | undefined; + initialWindowSize?: number | undefined; + maxFrameSize?: number | undefined; + maxConcurrentStreams?: number | undefined; + maxHeaderListSize?: number | undefined; + enableConnectProtocol?: boolean | undefined; + } + export interface ClientSessionRequestOptions { + endStream?: boolean | undefined; + exclusive?: boolean | undefined; + parent?: number | undefined; + weight?: number | undefined; + waitForTrailers?: boolean | undefined; + signal?: AbortSignal | undefined; + } + export interface SessionState { + effectiveLocalWindowSize?: number | undefined; + effectiveRecvDataLength?: number | undefined; + nextStreamID?: number | undefined; + localWindowSize?: number | undefined; + lastProcStreamID?: number | undefined; + remoteWindowSize?: number | undefined; + outboundQueueSize?: number | undefined; + deflateDynamicTableSize?: number | undefined; + inflateDynamicTableSize?: number | undefined; + } + export interface Http2Session extends EventEmitter { + /** + * Value will be `undefined` if the `Http2Session` is not yet connected to a + * socket, `h2c` if the `Http2Session` is not connected to a `TLSSocket`, or + * will return the value of the connected `TLSSocket`'s own `alpnProtocol`property. + * @since v9.4.0 + */ + readonly alpnProtocol?: string | undefined; + /** + * Will be `true` if this `Http2Session` instance has been closed, otherwise`false`. + * @since v9.4.0 + */ + readonly closed: boolean; + /** + * Will be `true` if this `Http2Session` instance is still connecting, will be set + * to `false` before emitting `connect` event and/or calling the `http2.connect`callback. + * @since v10.0.0 + */ + readonly connecting: boolean; + /** + * Will be `true` if this `Http2Session` instance has been destroyed and must no + * longer be used, otherwise `false`. + * @since v8.4.0 + */ + readonly destroyed: boolean; + /** + * Value is `undefined` if the `Http2Session` session socket has not yet been + * connected, `true` if the `Http2Session` is connected with a `TLSSocket`, + * and `false` if the `Http2Session` is connected to any other kind of socket + * or stream. + * @since v9.4.0 + */ + readonly encrypted?: boolean | undefined; + /** + * A prototype-less object describing the current local settings of this`Http2Session`. The local settings are local to _this_`Http2Session` instance. + * @since v8.4.0 + */ + readonly localSettings: Settings; + /** + * If the `Http2Session` is connected to a `TLSSocket`, the `originSet` property + * will return an `Array` of origins for which the `Http2Session` may be + * considered authoritative. + * + * The `originSet` property is only available when using a secure TLS connection. + * @since v9.4.0 + */ + readonly originSet?: string[] | undefined; + /** + * Indicates whether the `Http2Session` is currently waiting for acknowledgment of + * a sent `SETTINGS` frame. Will be `true` after calling the`http2session.settings()` method. Will be `false` once all sent `SETTINGS`frames have been acknowledged. + * @since v8.4.0 + */ + readonly pendingSettingsAck: boolean; + /** + * A prototype-less object describing the current remote settings of this`Http2Session`. The remote settings are set by the _connected_ HTTP/2 peer. + * @since v8.4.0 + */ + readonly remoteSettings: Settings; + /** + * Returns a `Proxy` object that acts as a `net.Socket` (or `tls.TLSSocket`) but + * limits available methods to ones safe to use with HTTP/2. + * + * `destroy`, `emit`, `end`, `pause`, `read`, `resume`, and `write` will throw + * an error with code `ERR_HTTP2_NO_SOCKET_MANIPULATION`. See `Http2Session and Sockets` for more information. + * + * `setTimeout` method will be called on this `Http2Session`. + * + * All other interactions will be routed directly to the socket. + * @since v8.4.0 + */ + readonly socket: net.Socket | tls.TLSSocket; + /** + * Provides miscellaneous information about the current state of the`Http2Session`. + * + * An object describing the current status of this `Http2Session`. + * @since v8.4.0 + */ + readonly state: SessionState; + /** + * The `http2session.type` will be equal to`http2.constants.NGHTTP2_SESSION_SERVER` if this `Http2Session` instance is a + * server, and `http2.constants.NGHTTP2_SESSION_CLIENT` if the instance is a + * client. + * @since v8.4.0 + */ + readonly type: number; + /** + * Gracefully closes the `Http2Session`, allowing any existing streams to + * complete on their own and preventing new `Http2Stream` instances from being + * created. Once closed, `http2session.destroy()`_might_ be called if there + * are no open `Http2Stream` instances. + * + * If specified, the `callback` function is registered as a handler for the`'close'` event. + * @since v9.4.0 + */ + close(callback?: () => void): void; + /** + * Immediately terminates the `Http2Session` and the associated `net.Socket` or`tls.TLSSocket`. + * + * Once destroyed, the `Http2Session` will emit the `'close'` event. If `error`is not undefined, an `'error'` event will be emitted immediately before the`'close'` event. + * + * If there are any remaining open `Http2Streams` associated with the`Http2Session`, those will also be destroyed. + * @since v8.4.0 + * @param error An `Error` object if the `Http2Session` is being destroyed due to an error. + * @param code The HTTP/2 error code to send in the final `GOAWAY` frame. If unspecified, and `error` is not undefined, the default is `INTERNAL_ERROR`, otherwise defaults to `NO_ERROR`. + */ + destroy(error?: Error, code?: number): void; + /** + * Transmits a `GOAWAY` frame to the connected peer _without_ shutting down the`Http2Session`. + * @since v9.4.0 + * @param code An HTTP/2 error code + * @param lastStreamID The numeric ID of the last processed `Http2Stream` + * @param opaqueData A `TypedArray` or `DataView` instance containing additional data to be carried within the `GOAWAY` frame. + */ + goaway(code?: number, lastStreamID?: number, opaqueData?: NodeJS.ArrayBufferView): void; + /** + * Sends a `PING` frame to the connected HTTP/2 peer. A `callback` function must + * be provided. The method will return `true` if the `PING` was sent, `false`otherwise. + * + * The maximum number of outstanding (unacknowledged) pings is determined by the`maxOutstandingPings` configuration option. The default maximum is 10. + * + * If provided, the `payload` must be a `Buffer`, `TypedArray`, or `DataView`containing 8 bytes of data that will be transmitted with the `PING` and + * returned with the ping acknowledgment. + * + * The callback will be invoked with three arguments: an error argument that will + * be `null` if the `PING` was successfully acknowledged, a `duration` argument + * that reports the number of milliseconds elapsed since the ping was sent and the + * acknowledgment was received, and a `Buffer` containing the 8-byte `PING`payload. + * + * ```js + * session.ping(Buffer.from('abcdefgh'), (err, duration, payload) => { + * if (!err) { + * console.log(`Ping acknowledged in ${duration} milliseconds`); + * console.log(`With payload '${payload.toString()}'`); + * } + * }); + * ``` + * + * If the `payload` argument is not specified, the default payload will be the + * 64-bit timestamp (little endian) marking the start of the `PING` duration. + * @since v8.9.3 + * @param payload Optional ping payload. + */ + ping(callback: (err: Error | null, duration: number, payload: Buffer) => void): boolean; + ping(payload: NodeJS.ArrayBufferView, callback: (err: Error | null, duration: number, payload: Buffer) => void): boolean; + /** + * Calls `ref()` on this `Http2Session`instance's underlying `net.Socket`. + * @since v9.4.0 + */ + ref(): void; + /** + * Sets the local endpoint's window size. + * The `windowSize` is the total window size to set, not + * the delta. + * + * ```js + * const http2 = require('http2'); + * + * const server = http2.createServer(); + * const expectedWindowSize = 2 ** 20; + * server.on('connect', (session) => { + * + * // Set local window size to be 2 ** 20 + * session.setLocalWindowSize(expectedWindowSize); + * }); + * ``` + * @since v15.3.0, v14.18.0 + */ + setLocalWindowSize(windowSize: number): void; + /** + * Used to set a callback function that is called when there is no activity on + * the `Http2Session` after `msecs` milliseconds. The given `callback` is + * registered as a listener on the `'timeout'` event. + * @since v8.4.0 + */ + setTimeout(msecs: number, callback?: () => void): void; + /** + * Updates the current local settings for this `Http2Session` and sends a new`SETTINGS` frame to the connected HTTP/2 peer. + * + * Once called, the `http2session.pendingSettingsAck` property will be `true`while the session is waiting for the remote peer to acknowledge the new + * settings. + * + * The new settings will not become effective until the `SETTINGS` acknowledgment + * is received and the `'localSettings'` event is emitted. It is possible to send + * multiple `SETTINGS` frames while acknowledgment is still pending. + * @since v8.4.0 + * @param callback Callback that is called once the session is connected or right away if the session is already connected. + */ + settings(settings: Settings, callback?: (err: Error | null, settings: Settings, duration: number) => void): void; + /** + * Calls `unref()` on this `Http2Session`instance's underlying `net.Socket`. + * @since v9.4.0 + */ + unref(): void; + addListener(event: 'close', listener: () => void): this; + addListener(event: 'error', listener: (err: Error) => void): this; + addListener(event: 'frameError', listener: (frameType: number, errorCode: number, streamID: number) => void): this; + addListener(event: 'goaway', listener: (errorCode: number, lastStreamID: number, opaqueData: Buffer) => void): this; + addListener(event: 'localSettings', listener: (settings: Settings) => void): this; + addListener(event: 'ping', listener: () => void): this; + addListener(event: 'remoteSettings', listener: (settings: Settings) => void): this; + addListener(event: 'timeout', listener: () => void): this; + addListener(event: string | symbol, listener: (...args: any[]) => void): this; + emit(event: 'close'): boolean; + emit(event: 'error', err: Error): boolean; + emit(event: 'frameError', frameType: number, errorCode: number, streamID: number): boolean; + emit(event: 'goaway', errorCode: number, lastStreamID: number, opaqueData: Buffer): boolean; + emit(event: 'localSettings', settings: Settings): boolean; + emit(event: 'ping'): boolean; + emit(event: 'remoteSettings', settings: Settings): boolean; + emit(event: 'timeout'): boolean; + emit(event: string | symbol, ...args: any[]): boolean; + on(event: 'close', listener: () => void): this; + on(event: 'error', listener: (err: Error) => void): this; + on(event: 'frameError', listener: (frameType: number, errorCode: number, streamID: number) => void): this; + on(event: 'goaway', listener: (errorCode: number, lastStreamID: number, opaqueData: Buffer) => void): this; + on(event: 'localSettings', listener: (settings: Settings) => void): this; + on(event: 'ping', listener: () => void): this; + on(event: 'remoteSettings', listener: (settings: Settings) => void): this; + on(event: 'timeout', listener: () => void): this; + on(event: string | symbol, listener: (...args: any[]) => void): this; + once(event: 'close', listener: () => void): this; + once(event: 'error', listener: (err: Error) => void): this; + once(event: 'frameError', listener: (frameType: number, errorCode: number, streamID: number) => void): this; + once(event: 'goaway', listener: (errorCode: number, lastStreamID: number, opaqueData: Buffer) => void): this; + once(event: 'localSettings', listener: (settings: Settings) => void): this; + once(event: 'ping', listener: () => void): this; + once(event: 'remoteSettings', listener: (settings: Settings) => void): this; + once(event: 'timeout', listener: () => void): this; + once(event: string | symbol, listener: (...args: any[]) => void): this; + prependListener(event: 'close', listener: () => void): this; + prependListener(event: 'error', listener: (err: Error) => void): this; + prependListener(event: 'frameError', listener: (frameType: number, errorCode: number, streamID: number) => void): this; + prependListener(event: 'goaway', listener: (errorCode: number, lastStreamID: number, opaqueData: Buffer) => void): this; + prependListener(event: 'localSettings', listener: (settings: Settings) => void): this; + prependListener(event: 'ping', listener: () => void): this; + prependListener(event: 'remoteSettings', listener: (settings: Settings) => void): this; + prependListener(event: 'timeout', listener: () => void): this; + prependListener(event: string | symbol, listener: (...args: any[]) => void): this; + prependOnceListener(event: 'close', listener: () => void): this; + prependOnceListener(event: 'error', listener: (err: Error) => void): this; + prependOnceListener(event: 'frameError', listener: (frameType: number, errorCode: number, streamID: number) => void): this; + prependOnceListener(event: 'goaway', listener: (errorCode: number, lastStreamID: number, opaqueData: Buffer) => void): this; + prependOnceListener(event: 'localSettings', listener: (settings: Settings) => void): this; + prependOnceListener(event: 'ping', listener: () => void): this; + prependOnceListener(event: 'remoteSettings', listener: (settings: Settings) => void): this; + prependOnceListener(event: 'timeout', listener: () => void): this; + prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this; + } + export interface ClientHttp2Session extends Http2Session { + /** + * For HTTP/2 Client `Http2Session` instances only, the `http2session.request()`creates and returns an `Http2Stream` instance that can be used to send an + * HTTP/2 request to the connected server. + * + * When a `ClientHttp2Session` is first created, the socket may not yet be + * connected. if `clienthttp2session.request()` is called during this time, the + * actual request will be deferred until the socket is ready to go. + * If the `session` is closed before the actual request be executed, an`ERR_HTTP2_GOAWAY_SESSION` is thrown. + * + * This method is only available if `http2session.type` is equal to`http2.constants.NGHTTP2_SESSION_CLIENT`. + * + * ```js + * const http2 = require('http2'); + * const clientSession = http2.connect('https://localhost:1234'); + * const { + * HTTP2_HEADER_PATH, + * HTTP2_HEADER_STATUS + * } = http2.constants; + * + * const req = clientSession.request({ [HTTP2_HEADER_PATH]: '/' }); + * req.on('response', (headers) => { + * console.log(headers[HTTP2_HEADER_STATUS]); + * req.on('data', (chunk) => { // .. }); + * req.on('end', () => { // .. }); + * }); + * ``` + * + * When the `options.waitForTrailers` option is set, the `'wantTrailers'` event + * is emitted immediately after queuing the last chunk of payload data to be sent. + * The `http2stream.sendTrailers()` method can then be called to send trailing + * headers to the peer. + * + * When `options.waitForTrailers` is set, the `Http2Stream` will not automatically + * close when the final `DATA` frame is transmitted. User code must call either`http2stream.sendTrailers()` or `http2stream.close()` to close the`Http2Stream`. + * + * When `options.signal` is set with an `AbortSignal` and then `abort` on the + * corresponding `AbortController` is called, the request will emit an `'error'`event with an `AbortError` error. + * + * The `:method` and `:path` pseudo-headers are not specified within `headers`, + * they respectively default to: + * + * * `:method` \= `'GET'` + * * `:path` \= `/` + * @since v8.4.0 + */ + request(headers?: OutgoingHttpHeaders, options?: ClientSessionRequestOptions): ClientHttp2Stream; + addListener(event: 'altsvc', listener: (alt: string, origin: string, stream: number) => void): this; + addListener(event: 'origin', listener: (origins: string[]) => void): this; + addListener(event: 'connect', listener: (session: ClientHttp2Session, socket: net.Socket | tls.TLSSocket) => void): this; + addListener(event: 'stream', listener: (stream: ClientHttp2Stream, headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number) => void): this; + addListener(event: string | symbol, listener: (...args: any[]) => void): this; + emit(event: 'altsvc', alt: string, origin: string, stream: number): boolean; + emit(event: 'origin', origins: ReadonlyArray): boolean; + emit(event: 'connect', session: ClientHttp2Session, socket: net.Socket | tls.TLSSocket): boolean; + emit(event: 'stream', stream: ClientHttp2Stream, headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number): boolean; + emit(event: string | symbol, ...args: any[]): boolean; + on(event: 'altsvc', listener: (alt: string, origin: string, stream: number) => void): this; + on(event: 'origin', listener: (origins: string[]) => void): this; + on(event: 'connect', listener: (session: ClientHttp2Session, socket: net.Socket | tls.TLSSocket) => void): this; + on(event: 'stream', listener: (stream: ClientHttp2Stream, headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number) => void): this; + on(event: string | symbol, listener: (...args: any[]) => void): this; + once(event: 'altsvc', listener: (alt: string, origin: string, stream: number) => void): this; + once(event: 'origin', listener: (origins: string[]) => void): this; + once(event: 'connect', listener: (session: ClientHttp2Session, socket: net.Socket | tls.TLSSocket) => void): this; + once(event: 'stream', listener: (stream: ClientHttp2Stream, headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number) => void): this; + once(event: string | symbol, listener: (...args: any[]) => void): this; + prependListener(event: 'altsvc', listener: (alt: string, origin: string, stream: number) => void): this; + prependListener(event: 'origin', listener: (origins: string[]) => void): this; + prependListener(event: 'connect', listener: (session: ClientHttp2Session, socket: net.Socket | tls.TLSSocket) => void): this; + prependListener(event: 'stream', listener: (stream: ClientHttp2Stream, headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number) => void): this; + prependListener(event: string | symbol, listener: (...args: any[]) => void): this; + prependOnceListener(event: 'altsvc', listener: (alt: string, origin: string, stream: number) => void): this; + prependOnceListener(event: 'origin', listener: (origins: string[]) => void): this; + prependOnceListener(event: 'connect', listener: (session: ClientHttp2Session, socket: net.Socket | tls.TLSSocket) => void): this; + prependOnceListener(event: 'stream', listener: (stream: ClientHttp2Stream, headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number) => void): this; + prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this; + } + export interface AlternativeServiceOptions { + origin: number | string | url.URL; + } + export interface ServerHttp2Session extends Http2Session { + readonly server: Http2Server | Http2SecureServer; + /** + * Submits an `ALTSVC` frame (as defined by [RFC 7838](https://tools.ietf.org/html/rfc7838)) to the connected client. + * + * ```js + * const http2 = require('http2'); + * + * const server = http2.createServer(); + * server.on('session', (session) => { + * // Set altsvc for origin https://example.org:80 + * session.altsvc('h2=":8000"', 'https://example.org:80'); + * }); + * + * server.on('stream', (stream) => { + * // Set altsvc for a specific stream + * stream.session.altsvc('h2=":8000"', stream.id); + * }); + * ``` + * + * Sending an `ALTSVC` frame with a specific stream ID indicates that the alternate + * service is associated with the origin of the given `Http2Stream`. + * + * The `alt` and origin string _must_ contain only ASCII bytes and are + * strictly interpreted as a sequence of ASCII bytes. The special value `'clear'`may be passed to clear any previously set alternative service for a given + * domain. + * + * When a string is passed for the `originOrStream` argument, it will be parsed as + * a URL and the origin will be derived. For instance, the origin for the + * HTTP URL `'https://example.org/foo/bar'` is the ASCII string`'https://example.org'`. An error will be thrown if either the given string + * cannot be parsed as a URL or if a valid origin cannot be derived. + * + * A `URL` object, or any object with an `origin` property, may be passed as`originOrStream`, in which case the value of the `origin` property will be + * used. The value of the `origin` property _must_ be a properly serialized + * ASCII origin. + * @since v9.4.0 + * @param alt A description of the alternative service configuration as defined by `RFC 7838`. + * @param originOrStream Either a URL string specifying the origin (or an `Object` with an `origin` property) or the numeric identifier of an active `Http2Stream` as given by the + * `http2stream.id` property. + */ + altsvc(alt: string, originOrStream: number | string | url.URL | AlternativeServiceOptions): void; + /** + * Submits an `ORIGIN` frame (as defined by [RFC 8336](https://tools.ietf.org/html/rfc8336)) to the connected client + * to advertise the set of origins for which the server is capable of providing + * authoritative responses. + * + * ```js + * const http2 = require('http2'); + * const options = getSecureOptionsSomehow(); + * const server = http2.createSecureServer(options); + * server.on('stream', (stream) => { + * stream.respond(); + * stream.end('ok'); + * }); + * server.on('session', (session) => { + * session.origin('https://example.com', 'https://example.org'); + * }); + * ``` + * + * When a string is passed as an `origin`, it will be parsed as a URL and the + * origin will be derived. For instance, the origin for the HTTP URL`'https://example.org/foo/bar'` is the ASCII string`'https://example.org'`. An error will be thrown if either the given + * string + * cannot be parsed as a URL or if a valid origin cannot be derived. + * + * A `URL` object, or any object with an `origin` property, may be passed as + * an `origin`, in which case the value of the `origin` property will be + * used. The value of the `origin` property _must_ be a properly serialized + * ASCII origin. + * + * Alternatively, the `origins` option may be used when creating a new HTTP/2 + * server using the `http2.createSecureServer()` method: + * + * ```js + * const http2 = require('http2'); + * const options = getSecureOptionsSomehow(); + * options.origins = ['https://example.com', 'https://example.org']; + * const server = http2.createSecureServer(options); + * server.on('stream', (stream) => { + * stream.respond(); + * stream.end('ok'); + * }); + * ``` + * @since v10.12.0 + * @param origins One or more URL Strings passed as separate arguments. + */ + origin( + ...origins: Array< + | string + | url.URL + | { + origin: string; + } + > + ): void; + addListener(event: 'connect', listener: (session: ServerHttp2Session, socket: net.Socket | tls.TLSSocket) => void): this; + addListener(event: 'stream', listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void): this; + addListener(event: string | symbol, listener: (...args: any[]) => void): this; + emit(event: 'connect', session: ServerHttp2Session, socket: net.Socket | tls.TLSSocket): boolean; + emit(event: 'stream', stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number): boolean; + emit(event: string | symbol, ...args: any[]): boolean; + on(event: 'connect', listener: (session: ServerHttp2Session, socket: net.Socket | tls.TLSSocket) => void): this; + on(event: 'stream', listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void): this; + on(event: string | symbol, listener: (...args: any[]) => void): this; + once(event: 'connect', listener: (session: ServerHttp2Session, socket: net.Socket | tls.TLSSocket) => void): this; + once(event: 'stream', listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void): this; + once(event: string | symbol, listener: (...args: any[]) => void): this; + prependListener(event: 'connect', listener: (session: ServerHttp2Session, socket: net.Socket | tls.TLSSocket) => void): this; + prependListener(event: 'stream', listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void): this; + prependListener(event: string | symbol, listener: (...args: any[]) => void): this; + prependOnceListener(event: 'connect', listener: (session: ServerHttp2Session, socket: net.Socket | tls.TLSSocket) => void): this; + prependOnceListener(event: 'stream', listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void): this; + prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this; + } + // Http2Server + export interface SessionOptions { + maxDeflateDynamicTableSize?: number | undefined; + maxSessionMemory?: number | undefined; + maxHeaderListPairs?: number | undefined; + maxOutstandingPings?: number | undefined; + maxSendHeaderBlockLength?: number | undefined; + paddingStrategy?: number | undefined; + peerMaxConcurrentStreams?: number | undefined; + settings?: Settings | undefined; + /** + * Specifies a timeout in milliseconds that + * a server should wait when an [`'unknownProtocol'`][] is emitted. If the + * socket has not been destroyed by that time the server will destroy it. + * @default 100000 + */ + unknownProtocolTimeout?: number | undefined; + selectPadding?(frameLen: number, maxFrameLen: number): number; + createConnection?(authority: url.URL, option: SessionOptions): stream.Duplex; + } + export interface ClientSessionOptions extends SessionOptions { + maxReservedRemoteStreams?: number | undefined; + createConnection?: ((authority: url.URL, option: SessionOptions) => stream.Duplex) | undefined; + protocol?: 'http:' | 'https:' | undefined; + } + export interface ServerSessionOptions extends SessionOptions { + Http1IncomingMessage?: typeof IncomingMessage | undefined; + Http1ServerResponse?: typeof ServerResponse | undefined; + Http2ServerRequest?: typeof Http2ServerRequest | undefined; + Http2ServerResponse?: typeof Http2ServerResponse | undefined; + } + export interface SecureClientSessionOptions extends ClientSessionOptions, tls.ConnectionOptions {} + export interface SecureServerSessionOptions extends ServerSessionOptions, tls.TlsOptions {} + export interface ServerOptions extends ServerSessionOptions {} + export interface SecureServerOptions extends SecureServerSessionOptions { + allowHTTP1?: boolean | undefined; + origins?: string[] | undefined; + } + interface HTTP2ServerCommon { + setTimeout(msec?: number, callback?: () => void): this; + /** + * Throws ERR_HTTP2_INVALID_SETTING_VALUE for invalid settings values. + * Throws ERR_INVALID_ARG_TYPE for invalid settings argument. + */ + updateSettings(settings: Settings): void; + } + export interface Http2Server extends net.Server, HTTP2ServerCommon { + addListener(event: 'checkContinue', listener: (request: Http2ServerRequest, response: Http2ServerResponse) => void): this; + addListener(event: 'request', listener: (request: Http2ServerRequest, response: Http2ServerResponse) => void): this; + addListener(event: 'session', listener: (session: ServerHttp2Session) => void): this; + addListener(event: 'sessionError', listener: (err: Error) => void): this; + addListener(event: 'stream', listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void): this; + addListener(event: 'timeout', listener: () => void): this; + addListener(event: string | symbol, listener: (...args: any[]) => void): this; + emit(event: 'checkContinue', request: Http2ServerRequest, response: Http2ServerResponse): boolean; + emit(event: 'request', request: Http2ServerRequest, response: Http2ServerResponse): boolean; + emit(event: 'session', session: ServerHttp2Session): boolean; + emit(event: 'sessionError', err: Error): boolean; + emit(event: 'stream', stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number): boolean; + emit(event: 'timeout'): boolean; + emit(event: string | symbol, ...args: any[]): boolean; + on(event: 'checkContinue', listener: (request: Http2ServerRequest, response: Http2ServerResponse) => void): this; + on(event: 'request', listener: (request: Http2ServerRequest, response: Http2ServerResponse) => void): this; + on(event: 'session', listener: (session: ServerHttp2Session) => void): this; + on(event: 'sessionError', listener: (err: Error) => void): this; + on(event: 'stream', listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void): this; + on(event: 'timeout', listener: () => void): this; + on(event: string | symbol, listener: (...args: any[]) => void): this; + once(event: 'checkContinue', listener: (request: Http2ServerRequest, response: Http2ServerResponse) => void): this; + once(event: 'request', listener: (request: Http2ServerRequest, response: Http2ServerResponse) => void): this; + once(event: 'session', listener: (session: ServerHttp2Session) => void): this; + once(event: 'sessionError', listener: (err: Error) => void): this; + once(event: 'stream', listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void): this; + once(event: 'timeout', listener: () => void): this; + once(event: string | symbol, listener: (...args: any[]) => void): this; + prependListener(event: 'checkContinue', listener: (request: Http2ServerRequest, response: Http2ServerResponse) => void): this; + prependListener(event: 'request', listener: (request: Http2ServerRequest, response: Http2ServerResponse) => void): this; + prependListener(event: 'session', listener: (session: ServerHttp2Session) => void): this; + prependListener(event: 'sessionError', listener: (err: Error) => void): this; + prependListener(event: 'stream', listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void): this; + prependListener(event: 'timeout', listener: () => void): this; + prependListener(event: string | symbol, listener: (...args: any[]) => void): this; + prependOnceListener(event: 'checkContinue', listener: (request: Http2ServerRequest, response: Http2ServerResponse) => void): this; + prependOnceListener(event: 'request', listener: (request: Http2ServerRequest, response: Http2ServerResponse) => void): this; + prependOnceListener(event: 'session', listener: (session: ServerHttp2Session) => void): this; + prependOnceListener(event: 'sessionError', listener: (err: Error) => void): this; + prependOnceListener(event: 'stream', listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void): this; + prependOnceListener(event: 'timeout', listener: () => void): this; + prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this; + } + export interface Http2SecureServer extends tls.Server, HTTP2ServerCommon { + addListener(event: 'checkContinue', listener: (request: Http2ServerRequest, response: Http2ServerResponse) => void): this; + addListener(event: 'request', listener: (request: Http2ServerRequest, response: Http2ServerResponse) => void): this; + addListener(event: 'session', listener: (session: ServerHttp2Session) => void): this; + addListener(event: 'sessionError', listener: (err: Error) => void): this; + addListener(event: 'stream', listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void): this; + addListener(event: 'timeout', listener: () => void): this; + addListener(event: 'unknownProtocol', listener: (socket: tls.TLSSocket) => void): this; + addListener(event: string | symbol, listener: (...args: any[]) => void): this; + emit(event: 'checkContinue', request: Http2ServerRequest, response: Http2ServerResponse): boolean; + emit(event: 'request', request: Http2ServerRequest, response: Http2ServerResponse): boolean; + emit(event: 'session', session: ServerHttp2Session): boolean; + emit(event: 'sessionError', err: Error): boolean; + emit(event: 'stream', stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number): boolean; + emit(event: 'timeout'): boolean; + emit(event: 'unknownProtocol', socket: tls.TLSSocket): boolean; + emit(event: string | symbol, ...args: any[]): boolean; + on(event: 'checkContinue', listener: (request: Http2ServerRequest, response: Http2ServerResponse) => void): this; + on(event: 'request', listener: (request: Http2ServerRequest, response: Http2ServerResponse) => void): this; + on(event: 'session', listener: (session: ServerHttp2Session) => void): this; + on(event: 'sessionError', listener: (err: Error) => void): this; + on(event: 'stream', listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void): this; + on(event: 'timeout', listener: () => void): this; + on(event: 'unknownProtocol', listener: (socket: tls.TLSSocket) => void): this; + on(event: string | symbol, listener: (...args: any[]) => void): this; + once(event: 'checkContinue', listener: (request: Http2ServerRequest, response: Http2ServerResponse) => void): this; + once(event: 'request', listener: (request: Http2ServerRequest, response: Http2ServerResponse) => void): this; + once(event: 'session', listener: (session: ServerHttp2Session) => void): this; + once(event: 'sessionError', listener: (err: Error) => void): this; + once(event: 'stream', listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void): this; + once(event: 'timeout', listener: () => void): this; + once(event: 'unknownProtocol', listener: (socket: tls.TLSSocket) => void): this; + once(event: string | symbol, listener: (...args: any[]) => void): this; + prependListener(event: 'checkContinue', listener: (request: Http2ServerRequest, response: Http2ServerResponse) => void): this; + prependListener(event: 'request', listener: (request: Http2ServerRequest, response: Http2ServerResponse) => void): this; + prependListener(event: 'session', listener: (session: ServerHttp2Session) => void): this; + prependListener(event: 'sessionError', listener: (err: Error) => void): this; + prependListener(event: 'stream', listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void): this; + prependListener(event: 'timeout', listener: () => void): this; + prependListener(event: 'unknownProtocol', listener: (socket: tls.TLSSocket) => void): this; + prependListener(event: string | symbol, listener: (...args: any[]) => void): this; + prependOnceListener(event: 'checkContinue', listener: (request: Http2ServerRequest, response: Http2ServerResponse) => void): this; + prependOnceListener(event: 'request', listener: (request: Http2ServerRequest, response: Http2ServerResponse) => void): this; + prependOnceListener(event: 'session', listener: (session: ServerHttp2Session) => void): this; + prependOnceListener(event: 'sessionError', listener: (err: Error) => void): this; + prependOnceListener(event: 'stream', listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void): this; + prependOnceListener(event: 'timeout', listener: () => void): this; + prependOnceListener(event: 'unknownProtocol', listener: (socket: tls.TLSSocket) => void): this; + prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this; + } + /** + * A `Http2ServerRequest` object is created by {@link Server} or {@link SecureServer} and passed as the first argument to the `'request'` event. It may be used to access a request status, + * headers, and + * data. + * @since v8.4.0 + */ + export class Http2ServerRequest extends stream.Readable { + constructor(stream: ServerHttp2Stream, headers: IncomingHttpHeaders, options: stream.ReadableOptions, rawHeaders: ReadonlyArray); + /** + * The `request.aborted` property will be `true` if the request has + * been aborted. + * @since v10.1.0 + */ + readonly aborted: boolean; + /** + * The request authority pseudo header field. Because HTTP/2 allows requests + * to set either `:authority` or `host`, this value is derived from`req.headers[':authority']` if present. Otherwise, it is derived from`req.headers['host']`. + * @since v8.4.0 + */ + readonly authority: string; + /** + * See `request.socket`. + * @since v8.4.0 + * @deprecated Since v13.0.0 - Use `socket`. + */ + readonly connection: net.Socket | tls.TLSSocket; + /** + * The `request.complete` property will be `true` if the request has + * been completed, aborted, or destroyed. + * @since v12.10.0 + */ + readonly complete: boolean; + /** + * The request/response headers object. + * + * Key-value pairs of header names and values. Header names are lower-cased. + * + * ```js + * // Prints something like: + * // + * // { 'user-agent': 'curl/7.22.0', + * // host: '127.0.0.1:8000', + * // accept: '*' } + * console.log(request.headers); + * ``` + * + * See `HTTP/2 Headers Object`. + * + * In HTTP/2, the request path, host name, protocol, and method are represented as + * special headers prefixed with the `:` character (e.g. `':path'`). These special + * headers will be included in the `request.headers` object. Care must be taken not + * to inadvertently modify these special headers or errors may occur. For instance, + * removing all headers from the request will cause errors to occur: + * + * ```js + * removeAllHeaders(request.headers); + * assert(request.url); // Fails because the :path header has been removed + * ``` + * @since v8.4.0 + */ + readonly headers: IncomingHttpHeaders; + /** + * In case of server request, the HTTP version sent by the client. In the case of + * client response, the HTTP version of the connected-to server. Returns`'2.0'`. + * + * Also `message.httpVersionMajor` is the first integer and`message.httpVersionMinor` is the second. + * @since v8.4.0 + */ + readonly httpVersion: string; + readonly httpVersionMinor: number; + readonly httpVersionMajor: number; + /** + * The request method as a string. Read-only. Examples: `'GET'`, `'DELETE'`. + * @since v8.4.0 + */ + readonly method: string; + /** + * The raw request/response headers list exactly as they were received. + * + * The keys and values are in the same list. It is _not_ a + * list of tuples. So, the even-numbered offsets are key values, and the + * odd-numbered offsets are the associated values. + * + * Header names are not lowercased, and duplicates are not merged. + * + * ```js + * // Prints something like: + * // + * // [ 'user-agent', + * // 'this is invalid because there can be only one', + * // 'User-Agent', + * // 'curl/7.22.0', + * // 'Host', + * // '127.0.0.1:8000', + * // 'ACCEPT', + * // '*' ] + * console.log(request.rawHeaders); + * ``` + * @since v8.4.0 + */ + readonly rawHeaders: string[]; + /** + * The raw request/response trailer keys and values exactly as they were + * received. Only populated at the `'end'` event. + * @since v8.4.0 + */ + readonly rawTrailers: string[]; + /** + * The request scheme pseudo header field indicating the scheme + * portion of the target URL. + * @since v8.4.0 + */ + readonly scheme: string; + /** + * Returns a `Proxy` object that acts as a `net.Socket` (or `tls.TLSSocket`) but + * applies getters, setters, and methods based on HTTP/2 logic. + * + * `destroyed`, `readable`, and `writable` properties will be retrieved from and + * set on `request.stream`. + * + * `destroy`, `emit`, `end`, `on` and `once` methods will be called on`request.stream`. + * + * `setTimeout` method will be called on `request.stream.session`. + * + * `pause`, `read`, `resume`, and `write` will throw an error with code`ERR_HTTP2_NO_SOCKET_MANIPULATION`. See `Http2Session and Sockets` for + * more information. + * + * All other interactions will be routed directly to the socket. With TLS support, + * use `request.socket.getPeerCertificate()` to obtain the client's + * authentication details. + * @since v8.4.0 + */ + readonly socket: net.Socket | tls.TLSSocket; + /** + * The `Http2Stream` object backing the request. + * @since v8.4.0 + */ + readonly stream: ServerHttp2Stream; + /** + * The request/response trailers object. Only populated at the `'end'` event. + * @since v8.4.0 + */ + readonly trailers: IncomingHttpHeaders; + /** + * Request URL string. This contains only the URL that is present in the actual + * HTTP request. If the request is: + * + * ```http + * GET /status?name=ryan HTTP/1.1 + * Accept: text/plain + * ``` + * + * Then `request.url` will be: + * + * ```js + * '/status?name=ryan' + * ``` + * + * To parse the url into its parts, `new URL()` can be used: + * + * ```console + * $ node + * > new URL('/status?name=ryan', 'http://example.com') + * URL { + * href: 'http://example.com/status?name=ryan', + * origin: 'http://example.com', + * protocol: 'http:', + * username: '', + * password: '', + * host: 'example.com', + * hostname: 'example.com', + * port: '', + * pathname: '/status', + * search: '?name=ryan', + * searchParams: URLSearchParams { 'name' => 'ryan' }, + * hash: '' + * } + * ``` + * @since v8.4.0 + */ + url: string; + /** + * Sets the `Http2Stream`'s timeout value to `msecs`. If a callback is + * provided, then it is added as a listener on the `'timeout'` event on + * the response object. + * + * If no `'timeout'` listener is added to the request, the response, or + * the server, then `Http2Stream` s are destroyed when they time out. If a + * handler is assigned to the request, the response, or the server's `'timeout'`events, timed out sockets must be handled explicitly. + * @since v8.4.0 + */ + setTimeout(msecs: number, callback?: () => void): void; + read(size?: number): Buffer | string | null; + addListener(event: 'aborted', listener: (hadError: boolean, code: number) => void): this; + addListener(event: 'close', listener: () => void): this; + addListener(event: 'data', listener: (chunk: Buffer | string) => void): this; + addListener(event: 'end', listener: () => void): this; + addListener(event: 'readable', listener: () => void): this; + addListener(event: 'error', listener: (err: Error) => void): this; + addListener(event: string | symbol, listener: (...args: any[]) => void): this; + emit(event: 'aborted', hadError: boolean, code: number): boolean; + emit(event: 'close'): boolean; + emit(event: 'data', chunk: Buffer | string): boolean; + emit(event: 'end'): boolean; + emit(event: 'readable'): boolean; + emit(event: 'error', err: Error): boolean; + emit(event: string | symbol, ...args: any[]): boolean; + on(event: 'aborted', listener: (hadError: boolean, code: number) => void): this; + on(event: 'close', listener: () => void): this; + on(event: 'data', listener: (chunk: Buffer | string) => void): this; + on(event: 'end', listener: () => void): this; + on(event: 'readable', listener: () => void): this; + on(event: 'error', listener: (err: Error) => void): this; + on(event: string | symbol, listener: (...args: any[]) => void): this; + once(event: 'aborted', listener: (hadError: boolean, code: number) => void): this; + once(event: 'close', listener: () => void): this; + once(event: 'data', listener: (chunk: Buffer | string) => void): this; + once(event: 'end', listener: () => void): this; + once(event: 'readable', listener: () => void): this; + once(event: 'error', listener: (err: Error) => void): this; + once(event: string | symbol, listener: (...args: any[]) => void): this; + prependListener(event: 'aborted', listener: (hadError: boolean, code: number) => void): this; + prependListener(event: 'close', listener: () => void): this; + prependListener(event: 'data', listener: (chunk: Buffer | string) => void): this; + prependListener(event: 'end', listener: () => void): this; + prependListener(event: 'readable', listener: () => void): this; + prependListener(event: 'error', listener: (err: Error) => void): this; + prependListener(event: string | symbol, listener: (...args: any[]) => void): this; + prependOnceListener(event: 'aborted', listener: (hadError: boolean, code: number) => void): this; + prependOnceListener(event: 'close', listener: () => void): this; + prependOnceListener(event: 'data', listener: (chunk: Buffer | string) => void): this; + prependOnceListener(event: 'end', listener: () => void): this; + prependOnceListener(event: 'readable', listener: () => void): this; + prependOnceListener(event: 'error', listener: (err: Error) => void): this; + prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this; + } + /** + * This object is created internally by an HTTP server, not by the user. It is + * passed as the second parameter to the `'request'` event. + * @since v8.4.0 + */ + export class Http2ServerResponse extends stream.Writable { + constructor(stream: ServerHttp2Stream); + /** + * See `response.socket`. + * @since v8.4.0 + * @deprecated Since v13.0.0 - Use `socket`. + */ + readonly connection: net.Socket | tls.TLSSocket; + /** + * Boolean value that indicates whether the response has completed. Starts + * as `false`. After `response.end()` executes, the value will be `true`. + * @since v8.4.0 + * @deprecated Since v13.4.0,v12.16.0 - Use `writableEnded`. + */ + readonly finished: boolean; + /** + * True if headers were sent, false otherwise (read-only). + * @since v8.4.0 + */ + readonly headersSent: boolean; + /** + * A reference to the original HTTP2 request object. + * @since v15.7.0 + */ + readonly req: Http2ServerRequest; + /** + * Returns a `Proxy` object that acts as a `net.Socket` (or `tls.TLSSocket`) but + * applies getters, setters, and methods based on HTTP/2 logic. + * + * `destroyed`, `readable`, and `writable` properties will be retrieved from and + * set on `response.stream`. + * + * `destroy`, `emit`, `end`, `on` and `once` methods will be called on`response.stream`. + * + * `setTimeout` method will be called on `response.stream.session`. + * + * `pause`, `read`, `resume`, and `write` will throw an error with code`ERR_HTTP2_NO_SOCKET_MANIPULATION`. See `Http2Session and Sockets` for + * more information. + * + * All other interactions will be routed directly to the socket. + * + * ```js + * const http2 = require('http2'); + * const server = http2.createServer((req, res) => { + * const ip = req.socket.remoteAddress; + * const port = req.socket.remotePort; + * res.end(`Your IP address is ${ip} and your source port is ${port}.`); + * }).listen(3000); + * ``` + * @since v8.4.0 + */ + readonly socket: net.Socket | tls.TLSSocket; + /** + * The `Http2Stream` object backing the response. + * @since v8.4.0 + */ + readonly stream: ServerHttp2Stream; + /** + * When true, the Date header will be automatically generated and sent in + * the response if it is not already present in the headers. Defaults to true. + * + * This should only be disabled for testing; HTTP requires the Date header + * in responses. + * @since v8.4.0 + */ + sendDate: boolean; + /** + * When using implicit headers (not calling `response.writeHead()` explicitly), + * this property controls the status code that will be sent to the client when + * the headers get flushed. + * + * ```js + * response.statusCode = 404; + * ``` + * + * After response header was sent to the client, this property indicates the + * status code which was sent out. + * @since v8.4.0 + */ + statusCode: number; + /** + * Status message is not supported by HTTP/2 (RFC 7540 8.1.2.4). It returns + * an empty string. + * @since v8.4.0 + */ + statusMessage: ''; + /** + * This method adds HTTP trailing headers (a header but at the end of the + * message) to the response. + * + * Attempting to set a header field name or value that contains invalid characters + * will result in a `TypeError` being thrown. + * @since v8.4.0 + */ + addTrailers(trailers: OutgoingHttpHeaders): void; + /** + * This method signals to the server that all of the response headers and body + * have been sent; that server should consider this message complete. + * The method, `response.end()`, MUST be called on each response. + * + * If `data` is specified, it is equivalent to calling `response.write(data, encoding)` followed by `response.end(callback)`. + * + * If `callback` is specified, it will be called when the response stream + * is finished. + * @since v8.4.0 + */ + end(callback?: () => void): this; + end(data: string | Uint8Array, callback?: () => void): this; + end(data: string | Uint8Array, encoding: BufferEncoding, callback?: () => void): this; + /** + * Reads out a header that has already been queued but not sent to the client. + * The name is case-insensitive. + * + * ```js + * const contentType = response.getHeader('content-type'); + * ``` + * @since v8.4.0 + */ + getHeader(name: string): string; + /** + * Returns an array containing the unique names of the current outgoing headers. + * All header names are lowercase. + * + * ```js + * response.setHeader('Foo', 'bar'); + * response.setHeader('Set-Cookie', ['foo=bar', 'bar=baz']); + * + * const headerNames = response.getHeaderNames(); + * // headerNames === ['foo', 'set-cookie'] + * ``` + * @since v8.4.0 + */ + getHeaderNames(): string[]; + /** + * Returns a shallow copy of the current outgoing headers. Since a shallow copy + * is used, array values may be mutated without additional calls to various + * header-related http module methods. The keys of the returned object are the + * header names and the values are the respective header values. All header names + * are lowercase. + * + * The object returned by the `response.getHeaders()` method _does not_prototypically inherit from the JavaScript `Object`. This means that typical`Object` methods such as `obj.toString()`, + * `obj.hasOwnProperty()`, and others + * are not defined and _will not work_. + * + * ```js + * response.setHeader('Foo', 'bar'); + * response.setHeader('Set-Cookie', ['foo=bar', 'bar=baz']); + * + * const headers = response.getHeaders(); + * // headers === { foo: 'bar', 'set-cookie': ['foo=bar', 'bar=baz'] } + * ``` + * @since v8.4.0 + */ + getHeaders(): OutgoingHttpHeaders; + /** + * Returns `true` if the header identified by `name` is currently set in the + * outgoing headers. The header name matching is case-insensitive. + * + * ```js + * const hasContentType = response.hasHeader('content-type'); + * ``` + * @since v8.4.0 + */ + hasHeader(name: string): boolean; + /** + * Removes a header that has been queued for implicit sending. + * + * ```js + * response.removeHeader('Content-Encoding'); + * ``` + * @since v8.4.0 + */ + removeHeader(name: string): void; + /** + * Sets a single header value for implicit headers. If this header already exists + * in the to-be-sent headers, its value will be replaced. Use an array of strings + * here to send multiple headers with the same name. + * + * ```js + * response.setHeader('Content-Type', 'text/html; charset=utf-8'); + * ``` + * + * or + * + * ```js + * response.setHeader('Set-Cookie', ['type=ninja', 'language=javascript']); + * ``` + * + * Attempting to set a header field name or value that contains invalid characters + * will result in a `TypeError` being thrown. + * + * When headers have been set with `response.setHeader()`, they will be merged + * with any headers passed to `response.writeHead()`, with the headers passed + * to `response.writeHead()` given precedence. + * + * ```js + * // Returns content-type = text/plain + * const server = http2.createServer((req, res) => { + * res.setHeader('Content-Type', 'text/html; charset=utf-8'); + * res.setHeader('X-Foo', 'bar'); + * res.writeHead(200, { 'Content-Type': 'text/plain; charset=utf-8' }); + * res.end('ok'); + * }); + * ``` + * @since v8.4.0 + */ + setHeader(name: string, value: number | string | ReadonlyArray): void; + /** + * Sets the `Http2Stream`'s timeout value to `msecs`. If a callback is + * provided, then it is added as a listener on the `'timeout'` event on + * the response object. + * + * If no `'timeout'` listener is added to the request, the response, or + * the server, then `Http2Stream` s are destroyed when they time out. If a + * handler is assigned to the request, the response, or the server's `'timeout'`events, timed out sockets must be handled explicitly. + * @since v8.4.0 + */ + setTimeout(msecs: number, callback?: () => void): void; + /** + * If this method is called and `response.writeHead()` has not been called, + * it will switch to implicit header mode and flush the implicit headers. + * + * This sends a chunk of the response body. This method may + * be called multiple times to provide successive parts of the body. + * + * In the `http` module, the response body is omitted when the + * request is a HEAD request. Similarly, the `204` and `304` responses _must not_ include a message body. + * + * `chunk` can be a string or a buffer. If `chunk` is a string, + * the second parameter specifies how to encode it into a byte stream. + * By default the `encoding` is `'utf8'`. `callback` will be called when this chunk + * of data is flushed. + * + * This is the raw HTTP body and has nothing to do with higher-level multi-part + * body encodings that may be used. + * + * The first time `response.write()` is called, it will send the buffered + * header information and the first chunk of the body to the client. The second + * time `response.write()` is called, Node.js assumes data will be streamed, + * and sends the new data separately. That is, the response is buffered up to the + * first chunk of the body. + * + * Returns `true` if the entire data was flushed successfully to the kernel + * buffer. Returns `false` if all or part of the data was queued in user memory.`'drain'` will be emitted when the buffer is free again. + * @since v8.4.0 + */ + write(chunk: string | Uint8Array, callback?: (err: Error) => void): boolean; + write(chunk: string | Uint8Array, encoding: BufferEncoding, callback?: (err: Error) => void): boolean; + /** + * Sends a status `100 Continue` to the client, indicating that the request body + * should be sent. See the `'checkContinue'` event on `Http2Server` and`Http2SecureServer`. + * @since v8.4.0 + */ + writeContinue(): void; + /** + * Sends a response header to the request. The status code is a 3-digit HTTP + * status code, like `404`. The last argument, `headers`, are the response headers. + * + * Returns a reference to the `Http2ServerResponse`, so that calls can be chained. + * + * For compatibility with `HTTP/1`, a human-readable `statusMessage` may be + * passed as the second argument. However, because the `statusMessage` has no + * meaning within HTTP/2, the argument will have no effect and a process warning + * will be emitted. + * + * ```js + * const body = 'hello world'; + * response.writeHead(200, { + * 'Content-Length': Buffer.byteLength(body), + * 'Content-Type': 'text/plain; charset=utf-8', + * }); + * ``` + * + * `Content-Length` is given in bytes not characters. The`Buffer.byteLength()` API may be used to determine the number of bytes in a + * given encoding. On outbound messages, Node.js does not check if Content-Length + * and the length of the body being transmitted are equal or not. However, when + * receiving messages, Node.js will automatically reject messages when the`Content-Length` does not match the actual payload size. + * + * This method may be called at most one time on a message before `response.end()` is called. + * + * If `response.write()` or `response.end()` are called before calling + * this, the implicit/mutable headers will be calculated and call this function. + * + * When headers have been set with `response.setHeader()`, they will be merged + * with any headers passed to `response.writeHead()`, with the headers passed + * to `response.writeHead()` given precedence. + * + * ```js + * // Returns content-type = text/plain + * const server = http2.createServer((req, res) => { + * res.setHeader('Content-Type', 'text/html; charset=utf-8'); + * res.setHeader('X-Foo', 'bar'); + * res.writeHead(200, { 'Content-Type': 'text/plain; charset=utf-8' }); + * res.end('ok'); + * }); + * ``` + * + * Attempting to set a header field name or value that contains invalid characters + * will result in a `TypeError` being thrown. + * @since v8.4.0 + */ + writeHead(statusCode: number, headers?: OutgoingHttpHeaders): this; + writeHead(statusCode: number, statusMessage: string, headers?: OutgoingHttpHeaders): this; + /** + * Call `http2stream.pushStream()` with the given headers, and wrap the + * given `Http2Stream` on a newly created `Http2ServerResponse` as the callback + * parameter if successful. When `Http2ServerRequest` is closed, the callback is + * called with an error `ERR_HTTP2_INVALID_STREAM`. + * @since v8.4.0 + * @param headers An object describing the headers + * @param callback Called once `http2stream.pushStream()` is finished, or either when the attempt to create the pushed `Http2Stream` has failed or has been rejected, or the state of + * `Http2ServerRequest` is closed prior to calling the `http2stream.pushStream()` method + */ + createPushResponse(headers: OutgoingHttpHeaders, callback: (err: Error | null, res: Http2ServerResponse) => void): void; + addListener(event: 'close', listener: () => void): this; + addListener(event: 'drain', listener: () => void): this; + addListener(event: 'error', listener: (error: Error) => void): this; + addListener(event: 'finish', listener: () => void): this; + addListener(event: 'pipe', listener: (src: stream.Readable) => void): this; + addListener(event: 'unpipe', listener: (src: stream.Readable) => void): this; + addListener(event: string | symbol, listener: (...args: any[]) => void): this; + emit(event: 'close'): boolean; + emit(event: 'drain'): boolean; + emit(event: 'error', error: Error): boolean; + emit(event: 'finish'): boolean; + emit(event: 'pipe', src: stream.Readable): boolean; + emit(event: 'unpipe', src: stream.Readable): boolean; + emit(event: string | symbol, ...args: any[]): boolean; + on(event: 'close', listener: () => void): this; + on(event: 'drain', listener: () => void): this; + on(event: 'error', listener: (error: Error) => void): this; + on(event: 'finish', listener: () => void): this; + on(event: 'pipe', listener: (src: stream.Readable) => void): this; + on(event: 'unpipe', listener: (src: stream.Readable) => void): this; + on(event: string | symbol, listener: (...args: any[]) => void): this; + once(event: 'close', listener: () => void): this; + once(event: 'drain', listener: () => void): this; + once(event: 'error', listener: (error: Error) => void): this; + once(event: 'finish', listener: () => void): this; + once(event: 'pipe', listener: (src: stream.Readable) => void): this; + once(event: 'unpipe', listener: (src: stream.Readable) => void): this; + once(event: string | symbol, listener: (...args: any[]) => void): this; + prependListener(event: 'close', listener: () => void): this; + prependListener(event: 'drain', listener: () => void): this; + prependListener(event: 'error', listener: (error: Error) => void): this; + prependListener(event: 'finish', listener: () => void): this; + prependListener(event: 'pipe', listener: (src: stream.Readable) => void): this; + prependListener(event: 'unpipe', listener: (src: stream.Readable) => void): this; + prependListener(event: string | symbol, listener: (...args: any[]) => void): this; + prependOnceListener(event: 'close', listener: () => void): this; + prependOnceListener(event: 'drain', listener: () => void): this; + prependOnceListener(event: 'error', listener: (error: Error) => void): this; + prependOnceListener(event: 'finish', listener: () => void): this; + prependOnceListener(event: 'pipe', listener: (src: stream.Readable) => void): this; + prependOnceListener(event: 'unpipe', listener: (src: stream.Readable) => void): this; + prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this; + } + export namespace constants { + const NGHTTP2_SESSION_SERVER: number; + const NGHTTP2_SESSION_CLIENT: number; + const NGHTTP2_STREAM_STATE_IDLE: number; + const NGHTTP2_STREAM_STATE_OPEN: number; + const NGHTTP2_STREAM_STATE_RESERVED_LOCAL: number; + const NGHTTP2_STREAM_STATE_RESERVED_REMOTE: number; + const NGHTTP2_STREAM_STATE_HALF_CLOSED_LOCAL: number; + const NGHTTP2_STREAM_STATE_HALF_CLOSED_REMOTE: number; + const NGHTTP2_STREAM_STATE_CLOSED: number; + const NGHTTP2_NO_ERROR: number; + const NGHTTP2_PROTOCOL_ERROR: number; + const NGHTTP2_INTERNAL_ERROR: number; + const NGHTTP2_FLOW_CONTROL_ERROR: number; + const NGHTTP2_SETTINGS_TIMEOUT: number; + const NGHTTP2_STREAM_CLOSED: number; + const NGHTTP2_FRAME_SIZE_ERROR: number; + const NGHTTP2_REFUSED_STREAM: number; + const NGHTTP2_CANCEL: number; + const NGHTTP2_COMPRESSION_ERROR: number; + const NGHTTP2_CONNECT_ERROR: number; + const NGHTTP2_ENHANCE_YOUR_CALM: number; + const NGHTTP2_INADEQUATE_SECURITY: number; + const NGHTTP2_HTTP_1_1_REQUIRED: number; + const NGHTTP2_ERR_FRAME_SIZE_ERROR: number; + const NGHTTP2_FLAG_NONE: number; + const NGHTTP2_FLAG_END_STREAM: number; + const NGHTTP2_FLAG_END_HEADERS: number; + const NGHTTP2_FLAG_ACK: number; + const NGHTTP2_FLAG_PADDED: number; + const NGHTTP2_FLAG_PRIORITY: number; + const DEFAULT_SETTINGS_HEADER_TABLE_SIZE: number; + const DEFAULT_SETTINGS_ENABLE_PUSH: number; + const DEFAULT_SETTINGS_INITIAL_WINDOW_SIZE: number; + const DEFAULT_SETTINGS_MAX_FRAME_SIZE: number; + const MAX_MAX_FRAME_SIZE: number; + const MIN_MAX_FRAME_SIZE: number; + const MAX_INITIAL_WINDOW_SIZE: number; + const NGHTTP2_DEFAULT_WEIGHT: number; + const NGHTTP2_SETTINGS_HEADER_TABLE_SIZE: number; + const NGHTTP2_SETTINGS_ENABLE_PUSH: number; + const NGHTTP2_SETTINGS_MAX_CONCURRENT_STREAMS: number; + const NGHTTP2_SETTINGS_INITIAL_WINDOW_SIZE: number; + const NGHTTP2_SETTINGS_MAX_FRAME_SIZE: number; + const NGHTTP2_SETTINGS_MAX_HEADER_LIST_SIZE: number; + const PADDING_STRATEGY_NONE: number; + const PADDING_STRATEGY_MAX: number; + const PADDING_STRATEGY_CALLBACK: number; + const HTTP2_HEADER_STATUS: string; + const HTTP2_HEADER_METHOD: string; + const HTTP2_HEADER_AUTHORITY: string; + const HTTP2_HEADER_SCHEME: string; + const HTTP2_HEADER_PATH: string; + const HTTP2_HEADER_ACCEPT_CHARSET: string; + const HTTP2_HEADER_ACCEPT_ENCODING: string; + const HTTP2_HEADER_ACCEPT_LANGUAGE: string; + const HTTP2_HEADER_ACCEPT_RANGES: string; + const HTTP2_HEADER_ACCEPT: string; + const HTTP2_HEADER_ACCESS_CONTROL_ALLOW_ORIGIN: string; + const HTTP2_HEADER_AGE: string; + const HTTP2_HEADER_ALLOW: string; + const HTTP2_HEADER_AUTHORIZATION: string; + const HTTP2_HEADER_CACHE_CONTROL: string; + const HTTP2_HEADER_CONNECTION: string; + const HTTP2_HEADER_CONTENT_DISPOSITION: string; + const HTTP2_HEADER_CONTENT_ENCODING: string; + const HTTP2_HEADER_CONTENT_LANGUAGE: string; + const HTTP2_HEADER_CONTENT_LENGTH: string; + const HTTP2_HEADER_CONTENT_LOCATION: string; + const HTTP2_HEADER_CONTENT_MD5: string; + const HTTP2_HEADER_CONTENT_RANGE: string; + const HTTP2_HEADER_CONTENT_TYPE: string; + const HTTP2_HEADER_COOKIE: string; + const HTTP2_HEADER_DATE: string; + const HTTP2_HEADER_ETAG: string; + const HTTP2_HEADER_EXPECT: string; + const HTTP2_HEADER_EXPIRES: string; + const HTTP2_HEADER_FROM: string; + const HTTP2_HEADER_HOST: string; + const HTTP2_HEADER_IF_MATCH: string; + const HTTP2_HEADER_IF_MODIFIED_SINCE: string; + const HTTP2_HEADER_IF_NONE_MATCH: string; + const HTTP2_HEADER_IF_RANGE: string; + const HTTP2_HEADER_IF_UNMODIFIED_SINCE: string; + const HTTP2_HEADER_LAST_MODIFIED: string; + const HTTP2_HEADER_LINK: string; + const HTTP2_HEADER_LOCATION: string; + const HTTP2_HEADER_MAX_FORWARDS: string; + const HTTP2_HEADER_PREFER: string; + const HTTP2_HEADER_PROXY_AUTHENTICATE: string; + const HTTP2_HEADER_PROXY_AUTHORIZATION: string; + const HTTP2_HEADER_RANGE: string; + const HTTP2_HEADER_REFERER: string; + const HTTP2_HEADER_REFRESH: string; + const HTTP2_HEADER_RETRY_AFTER: string; + const HTTP2_HEADER_SERVER: string; + const HTTP2_HEADER_SET_COOKIE: string; + const HTTP2_HEADER_STRICT_TRANSPORT_SECURITY: string; + const HTTP2_HEADER_TRANSFER_ENCODING: string; + const HTTP2_HEADER_TE: string; + const HTTP2_HEADER_UPGRADE: string; + const HTTP2_HEADER_USER_AGENT: string; + const HTTP2_HEADER_VARY: string; + const HTTP2_HEADER_VIA: string; + const HTTP2_HEADER_WWW_AUTHENTICATE: string; + const HTTP2_HEADER_HTTP2_SETTINGS: string; + const HTTP2_HEADER_KEEP_ALIVE: string; + const HTTP2_HEADER_PROXY_CONNECTION: string; + const HTTP2_METHOD_ACL: string; + const HTTP2_METHOD_BASELINE_CONTROL: string; + const HTTP2_METHOD_BIND: string; + const HTTP2_METHOD_CHECKIN: string; + const HTTP2_METHOD_CHECKOUT: string; + const HTTP2_METHOD_CONNECT: string; + const HTTP2_METHOD_COPY: string; + const HTTP2_METHOD_DELETE: string; + const HTTP2_METHOD_GET: string; + const HTTP2_METHOD_HEAD: string; + const HTTP2_METHOD_LABEL: string; + const HTTP2_METHOD_LINK: string; + const HTTP2_METHOD_LOCK: string; + const HTTP2_METHOD_MERGE: string; + const HTTP2_METHOD_MKACTIVITY: string; + const HTTP2_METHOD_MKCALENDAR: string; + const HTTP2_METHOD_MKCOL: string; + const HTTP2_METHOD_MKREDIRECTREF: string; + const HTTP2_METHOD_MKWORKSPACE: string; + const HTTP2_METHOD_MOVE: string; + const HTTP2_METHOD_OPTIONS: string; + const HTTP2_METHOD_ORDERPATCH: string; + const HTTP2_METHOD_PATCH: string; + const HTTP2_METHOD_POST: string; + const HTTP2_METHOD_PRI: string; + const HTTP2_METHOD_PROPFIND: string; + const HTTP2_METHOD_PROPPATCH: string; + const HTTP2_METHOD_PUT: string; + const HTTP2_METHOD_REBIND: string; + const HTTP2_METHOD_REPORT: string; + const HTTP2_METHOD_SEARCH: string; + const HTTP2_METHOD_TRACE: string; + const HTTP2_METHOD_UNBIND: string; + const HTTP2_METHOD_UNCHECKOUT: string; + const HTTP2_METHOD_UNLINK: string; + const HTTP2_METHOD_UNLOCK: string; + const HTTP2_METHOD_UPDATE: string; + const HTTP2_METHOD_UPDATEREDIRECTREF: string; + const HTTP2_METHOD_VERSION_CONTROL: string; + const HTTP_STATUS_CONTINUE: number; + const HTTP_STATUS_SWITCHING_PROTOCOLS: number; + const HTTP_STATUS_PROCESSING: number; + const HTTP_STATUS_OK: number; + const HTTP_STATUS_CREATED: number; + const HTTP_STATUS_ACCEPTED: number; + const HTTP_STATUS_NON_AUTHORITATIVE_INFORMATION: number; + const HTTP_STATUS_NO_CONTENT: number; + const HTTP_STATUS_RESET_CONTENT: number; + const HTTP_STATUS_PARTIAL_CONTENT: number; + const HTTP_STATUS_MULTI_STATUS: number; + const HTTP_STATUS_ALREADY_REPORTED: number; + const HTTP_STATUS_IM_USED: number; + const HTTP_STATUS_MULTIPLE_CHOICES: number; + const HTTP_STATUS_MOVED_PERMANENTLY: number; + const HTTP_STATUS_FOUND: number; + const HTTP_STATUS_SEE_OTHER: number; + const HTTP_STATUS_NOT_MODIFIED: number; + const HTTP_STATUS_USE_PROXY: number; + const HTTP_STATUS_TEMPORARY_REDIRECT: number; + const HTTP_STATUS_PERMANENT_REDIRECT: number; + const HTTP_STATUS_BAD_REQUEST: number; + const HTTP_STATUS_UNAUTHORIZED: number; + const HTTP_STATUS_PAYMENT_REQUIRED: number; + const HTTP_STATUS_FORBIDDEN: number; + const HTTP_STATUS_NOT_FOUND: number; + const HTTP_STATUS_METHOD_NOT_ALLOWED: number; + const HTTP_STATUS_NOT_ACCEPTABLE: number; + const HTTP_STATUS_PROXY_AUTHENTICATION_REQUIRED: number; + const HTTP_STATUS_REQUEST_TIMEOUT: number; + const HTTP_STATUS_CONFLICT: number; + const HTTP_STATUS_GONE: number; + const HTTP_STATUS_LENGTH_REQUIRED: number; + const HTTP_STATUS_PRECONDITION_FAILED: number; + const HTTP_STATUS_PAYLOAD_TOO_LARGE: number; + const HTTP_STATUS_URI_TOO_LONG: number; + const HTTP_STATUS_UNSUPPORTED_MEDIA_TYPE: number; + const HTTP_STATUS_RANGE_NOT_SATISFIABLE: number; + const HTTP_STATUS_EXPECTATION_FAILED: number; + const HTTP_STATUS_TEAPOT: number; + const HTTP_STATUS_MISDIRECTED_REQUEST: number; + const HTTP_STATUS_UNPROCESSABLE_ENTITY: number; + const HTTP_STATUS_LOCKED: number; + const HTTP_STATUS_FAILED_DEPENDENCY: number; + const HTTP_STATUS_UNORDERED_COLLECTION: number; + const HTTP_STATUS_UPGRADE_REQUIRED: number; + const HTTP_STATUS_PRECONDITION_REQUIRED: number; + const HTTP_STATUS_TOO_MANY_REQUESTS: number; + const HTTP_STATUS_REQUEST_HEADER_FIELDS_TOO_LARGE: number; + const HTTP_STATUS_UNAVAILABLE_FOR_LEGAL_REASONS: number; + const HTTP_STATUS_INTERNAL_SERVER_ERROR: number; + const HTTP_STATUS_NOT_IMPLEMENTED: number; + const HTTP_STATUS_BAD_GATEWAY: number; + const HTTP_STATUS_SERVICE_UNAVAILABLE: number; + const HTTP_STATUS_GATEWAY_TIMEOUT: number; + const HTTP_STATUS_HTTP_VERSION_NOT_SUPPORTED: number; + const HTTP_STATUS_VARIANT_ALSO_NEGOTIATES: number; + const HTTP_STATUS_INSUFFICIENT_STORAGE: number; + const HTTP_STATUS_LOOP_DETECTED: number; + const HTTP_STATUS_BANDWIDTH_LIMIT_EXCEEDED: number; + const HTTP_STATUS_NOT_EXTENDED: number; + const HTTP_STATUS_NETWORK_AUTHENTICATION_REQUIRED: number; + } + /** + * This symbol can be set as a property on the HTTP/2 headers object with + * an array value in order to provide a list of headers considered sensitive. + */ + export const sensitiveHeaders: symbol; + /** + * Returns an object containing the default settings for an `Http2Session`instance. This method returns a new object instance every time it is called + * so instances returned may be safely modified for use. + * @since v8.4.0 + */ + export function getDefaultSettings(): Settings; + /** + * Returns a `Buffer` instance containing serialized representation of the given + * HTTP/2 settings as specified in the [HTTP/2](https://tools.ietf.org/html/rfc7540) specification. This is intended + * for use with the `HTTP2-Settings` header field. + * + * ```js + * const http2 = require('http2'); + * + * const packed = http2.getPackedSettings({ enablePush: false }); + * + * console.log(packed.toString('base64')); + * // Prints: AAIAAAAA + * ``` + * @since v8.4.0 + */ + export function getPackedSettings(settings: Settings): Buffer; + /** + * Returns a `HTTP/2 Settings Object` containing the deserialized settings from + * the given `Buffer` as generated by `http2.getPackedSettings()`. + * @since v8.4.0 + * @param buf The packed settings. + */ + export function getUnpackedSettings(buf: Uint8Array): Settings; + /** + * Returns a `net.Server` instance that creates and manages `Http2Session`instances. + * + * Since there are no browsers known that support [unencrypted HTTP/2](https://http2.github.io/faq/#does-http2-require-encryption), the use of {@link createSecureServer} is necessary when + * communicating + * with browser clients. + * + * ```js + * const http2 = require('http2'); + * + * // Create an unencrypted HTTP/2 server. + * // Since there are no browsers known that support + * // unencrypted HTTP/2, the use of `http2.createSecureServer()` + * // is necessary when communicating with browser clients. + * const server = http2.createServer(); + * + * server.on('stream', (stream, headers) => { + * stream.respond({ + * 'content-type': 'text/html; charset=utf-8', + * ':status': 200 + * }); + * stream.end('

Hello World

'); + * }); + * + * server.listen(80); + * ``` + * @since v8.4.0 + * @param onRequestHandler See `Compatibility API` + */ + export function createServer(onRequestHandler?: (request: Http2ServerRequest, response: Http2ServerResponse) => void): Http2Server; + export function createServer(options: ServerOptions, onRequestHandler?: (request: Http2ServerRequest, response: Http2ServerResponse) => void): Http2Server; + /** + * Returns a `tls.Server` instance that creates and manages `Http2Session`instances. + * + * ```js + * const http2 = require('http2'); + * const fs = require('fs'); + * + * const options = { + * key: fs.readFileSync('server-key.pem'), + * cert: fs.readFileSync('server-cert.pem') + * }; + * + * // Create a secure HTTP/2 server + * const server = http2.createSecureServer(options); + * + * server.on('stream', (stream, headers) => { + * stream.respond({ + * 'content-type': 'text/html; charset=utf-8', + * ':status': 200 + * }); + * stream.end('

Hello World

'); + * }); + * + * server.listen(80); + * ``` + * @since v8.4.0 + * @param onRequestHandler See `Compatibility API` + */ + export function createSecureServer(onRequestHandler?: (request: Http2ServerRequest, response: Http2ServerResponse) => void): Http2SecureServer; + export function createSecureServer(options: SecureServerOptions, onRequestHandler?: (request: Http2ServerRequest, response: Http2ServerResponse) => void): Http2SecureServer; + /** + * Returns a `ClientHttp2Session` instance. + * + * ```js + * const http2 = require('http2'); + * const client = http2.connect('https://localhost:1234'); + * + * // Use the client + * + * client.close(); + * ``` + * @since v8.4.0 + * @param authority The remote HTTP/2 server to connect to. This must be in the form of a minimal, valid URL with the `http://` or `https://` prefix, host name, and IP port (if a non-default port + * is used). Userinfo (user ID and password), path, querystring, and fragment details in the URL will be ignored. + * @param listener Will be registered as a one-time listener of the {@link 'connect'} event. + */ + export function connect(authority: string | url.URL, listener: (session: ClientHttp2Session, socket: net.Socket | tls.TLSSocket) => void): ClientHttp2Session; + export function connect( + authority: string | url.URL, + options?: ClientSessionOptions | SecureClientSessionOptions, + listener?: (session: ClientHttp2Session, socket: net.Socket | tls.TLSSocket) => void + ): ClientHttp2Session; +} +declare module 'node:http2' { + export * from 'http2'; +} diff --git a/node_modules/@types/node/ts4.8/https.d.ts b/node_modules/@types/node/ts4.8/https.d.ts new file mode 100644 index 000000000..aae4a9584 --- /dev/null +++ b/node_modules/@types/node/ts4.8/https.d.ts @@ -0,0 +1,541 @@ +/** + * HTTPS is the HTTP protocol over TLS/SSL. In Node.js this is implemented as a + * separate module. + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/https.js) + */ +declare module 'https' { + import { Duplex } from 'node:stream'; + import * as tls from 'node:tls'; + import * as http from 'node:http'; + import { URL } from 'node:url'; + type ServerOptions< + Request extends typeof http.IncomingMessage = typeof http.IncomingMessage, + Response extends typeof http.ServerResponse = typeof http.ServerResponse, + > = tls.SecureContextOptions & tls.TlsOptions & http.ServerOptions; + type RequestOptions = http.RequestOptions & + tls.SecureContextOptions & { + rejectUnauthorized?: boolean | undefined; // Defaults to true + servername?: string | undefined; // SNI TLS Extension + }; + interface AgentOptions extends http.AgentOptions, tls.ConnectionOptions { + rejectUnauthorized?: boolean | undefined; + maxCachedSessions?: number | undefined; + } + /** + * An `Agent` object for HTTPS similar to `http.Agent`. See {@link request} for more information. + * @since v0.4.5 + */ + class Agent extends http.Agent { + constructor(options?: AgentOptions); + options: AgentOptions; + } + interface Server< + Request extends typeof http.IncomingMessage = typeof http.IncomingMessage, + Response extends typeof http.ServerResponse = typeof http.ServerResponse, + > extends http.Server {} + /** + * See `http.Server` for more information. + * @since v0.3.4 + */ + class Server< + Request extends typeof http.IncomingMessage = typeof http.IncomingMessage, + Response extends typeof http.ServerResponse = typeof http.ServerResponse, + > extends tls.Server { + constructor(requestListener?: http.RequestListener); + constructor( + options: ServerOptions, + requestListener?: http.RequestListener, + ); + /** + * Closes all connections connected to this server. + * @since v18.2.0 + */ + closeAllConnections(): void; + /** + * Closes all connections connected to this server which are not sending a request or waiting for a response. + * @since v18.2.0 + */ + closeIdleConnections(): void; + addListener(event: string, listener: (...args: any[]) => void): this; + addListener(event: 'keylog', listener: (line: Buffer, tlsSocket: tls.TLSSocket) => void): this; + addListener( + event: 'newSession', + listener: (sessionId: Buffer, sessionData: Buffer, callback: (err: Error, resp: Buffer) => void) => void, + ): this; + addListener( + event: 'OCSPRequest', + listener: ( + certificate: Buffer, + issuer: Buffer, + callback: (err: Error | null, resp: Buffer) => void, + ) => void, + ): this; + addListener( + event: 'resumeSession', + listener: (sessionId: Buffer, callback: (err: Error, sessionData: Buffer) => void) => void, + ): this; + addListener(event: 'secureConnection', listener: (tlsSocket: tls.TLSSocket) => void): this; + addListener(event: 'tlsClientError', listener: (err: Error, tlsSocket: tls.TLSSocket) => void): this; + addListener(event: 'close', listener: () => void): this; + addListener(event: 'connection', listener: (socket: Duplex) => void): this; + addListener(event: 'error', listener: (err: Error) => void): this; + addListener(event: 'listening', listener: () => void): this; + addListener(event: 'checkContinue', listener: http.RequestListener): this; + addListener(event: 'checkExpectation', listener: http.RequestListener): this; + addListener(event: 'clientError', listener: (err: Error, socket: Duplex) => void): this; + addListener( + event: 'connect', + listener: (req: InstanceType, socket: Duplex, head: Buffer) => void, + ): this; + addListener(event: 'request', listener: http.RequestListener): this; + addListener( + event: 'upgrade', + listener: (req: InstanceType, socket: Duplex, head: Buffer) => void, + ): this; + emit(event: string, ...args: any[]): boolean; + emit(event: 'keylog', line: Buffer, tlsSocket: tls.TLSSocket): boolean; + emit( + event: 'newSession', + sessionId: Buffer, + sessionData: Buffer, + callback: (err: Error, resp: Buffer) => void, + ): boolean; + emit( + event: 'OCSPRequest', + certificate: Buffer, + issuer: Buffer, + callback: (err: Error | null, resp: Buffer) => void, + ): boolean; + emit(event: 'resumeSession', sessionId: Buffer, callback: (err: Error, sessionData: Buffer) => void): boolean; + emit(event: 'secureConnection', tlsSocket: tls.TLSSocket): boolean; + emit(event: 'tlsClientError', err: Error, tlsSocket: tls.TLSSocket): boolean; + emit(event: 'close'): boolean; + emit(event: 'connection', socket: Duplex): boolean; + emit(event: 'error', err: Error): boolean; + emit(event: 'listening'): boolean; + emit( + event: 'checkContinue', + req: InstanceType, + res: InstanceType & { req: InstanceType }, + ): boolean; + emit( + event: 'checkExpectation', + req: InstanceType, + res: InstanceType & { req: InstanceType }, + ): boolean; + emit(event: 'clientError', err: Error, socket: Duplex): boolean; + emit(event: 'connect', req: InstanceType, socket: Duplex, head: Buffer): boolean; + emit( + event: 'request', + req: InstanceType, + res: InstanceType & { req: InstanceType }, + ): boolean; + emit(event: 'upgrade', req: InstanceType, socket: Duplex, head: Buffer): boolean; + on(event: string, listener: (...args: any[]) => void): this; + on(event: 'keylog', listener: (line: Buffer, tlsSocket: tls.TLSSocket) => void): this; + on( + event: 'newSession', + listener: (sessionId: Buffer, sessionData: Buffer, callback: (err: Error, resp: Buffer) => void) => void, + ): this; + on( + event: 'OCSPRequest', + listener: ( + certificate: Buffer, + issuer: Buffer, + callback: (err: Error | null, resp: Buffer) => void, + ) => void, + ): this; + on( + event: 'resumeSession', + listener: (sessionId: Buffer, callback: (err: Error, sessionData: Buffer) => void) => void, + ): this; + on(event: 'secureConnection', listener: (tlsSocket: tls.TLSSocket) => void): this; + on(event: 'tlsClientError', listener: (err: Error, tlsSocket: tls.TLSSocket) => void): this; + on(event: 'close', listener: () => void): this; + on(event: 'connection', listener: (socket: Duplex) => void): this; + on(event: 'error', listener: (err: Error) => void): this; + on(event: 'listening', listener: () => void): this; + on(event: 'checkContinue', listener: http.RequestListener): this; + on(event: 'checkExpectation', listener: http.RequestListener): this; + on(event: 'clientError', listener: (err: Error, socket: Duplex) => void): this; + on(event: 'connect', listener: (req: InstanceType, socket: Duplex, head: Buffer) => void): this; + on(event: 'request', listener: http.RequestListener): this; + on(event: 'upgrade', listener: (req: InstanceType, socket: Duplex, head: Buffer) => void): this; + once(event: string, listener: (...args: any[]) => void): this; + once(event: 'keylog', listener: (line: Buffer, tlsSocket: tls.TLSSocket) => void): this; + once( + event: 'newSession', + listener: (sessionId: Buffer, sessionData: Buffer, callback: (err: Error, resp: Buffer) => void) => void, + ): this; + once( + event: 'OCSPRequest', + listener: ( + certificate: Buffer, + issuer: Buffer, + callback: (err: Error | null, resp: Buffer) => void, + ) => void, + ): this; + once( + event: 'resumeSession', + listener: (sessionId: Buffer, callback: (err: Error, sessionData: Buffer) => void) => void, + ): this; + once(event: 'secureConnection', listener: (tlsSocket: tls.TLSSocket) => void): this; + once(event: 'tlsClientError', listener: (err: Error, tlsSocket: tls.TLSSocket) => void): this; + once(event: 'close', listener: () => void): this; + once(event: 'connection', listener: (socket: Duplex) => void): this; + once(event: 'error', listener: (err: Error) => void): this; + once(event: 'listening', listener: () => void): this; + once(event: 'checkContinue', listener: http.RequestListener): this; + once(event: 'checkExpectation', listener: http.RequestListener): this; + once(event: 'clientError', listener: (err: Error, socket: Duplex) => void): this; + once(event: 'connect', listener: (req: InstanceType, socket: Duplex, head: Buffer) => void): this; + once(event: 'request', listener: http.RequestListener): this; + once(event: 'upgrade', listener: (req: InstanceType, socket: Duplex, head: Buffer) => void): this; + prependListener(event: string, listener: (...args: any[]) => void): this; + prependListener(event: 'keylog', listener: (line: Buffer, tlsSocket: tls.TLSSocket) => void): this; + prependListener( + event: 'newSession', + listener: (sessionId: Buffer, sessionData: Buffer, callback: (err: Error, resp: Buffer) => void) => void, + ): this; + prependListener( + event: 'OCSPRequest', + listener: ( + certificate: Buffer, + issuer: Buffer, + callback: (err: Error | null, resp: Buffer) => void, + ) => void, + ): this; + prependListener( + event: 'resumeSession', + listener: (sessionId: Buffer, callback: (err: Error, sessionData: Buffer) => void) => void, + ): this; + prependListener(event: 'secureConnection', listener: (tlsSocket: tls.TLSSocket) => void): this; + prependListener(event: 'tlsClientError', listener: (err: Error, tlsSocket: tls.TLSSocket) => void): this; + prependListener(event: 'close', listener: () => void): this; + prependListener(event: 'connection', listener: (socket: Duplex) => void): this; + prependListener(event: 'error', listener: (err: Error) => void): this; + prependListener(event: 'listening', listener: () => void): this; + prependListener(event: 'checkContinue', listener: http.RequestListener): this; + prependListener(event: 'checkExpectation', listener: http.RequestListener): this; + prependListener(event: 'clientError', listener: (err: Error, socket: Duplex) => void): this; + prependListener( + event: 'connect', + listener: (req: InstanceType, socket: Duplex, head: Buffer) => void, + ): this; + prependListener(event: 'request', listener: http.RequestListener): this; + prependListener( + event: 'upgrade', + listener: (req: InstanceType, socket: Duplex, head: Buffer) => void, + ): this; + prependOnceListener(event: string, listener: (...args: any[]) => void): this; + prependOnceListener(event: 'keylog', listener: (line: Buffer, tlsSocket: tls.TLSSocket) => void): this; + prependOnceListener( + event: 'newSession', + listener: (sessionId: Buffer, sessionData: Buffer, callback: (err: Error, resp: Buffer) => void) => void, + ): this; + prependOnceListener( + event: 'OCSPRequest', + listener: ( + certificate: Buffer, + issuer: Buffer, + callback: (err: Error | null, resp: Buffer) => void, + ) => void, + ): this; + prependOnceListener( + event: 'resumeSession', + listener: (sessionId: Buffer, callback: (err: Error, sessionData: Buffer) => void) => void, + ): this; + prependOnceListener(event: 'secureConnection', listener: (tlsSocket: tls.TLSSocket) => void): this; + prependOnceListener(event: 'tlsClientError', listener: (err: Error, tlsSocket: tls.TLSSocket) => void): this; + prependOnceListener(event: 'close', listener: () => void): this; + prependOnceListener(event: 'connection', listener: (socket: Duplex) => void): this; + prependOnceListener(event: 'error', listener: (err: Error) => void): this; + prependOnceListener(event: 'listening', listener: () => void): this; + prependOnceListener(event: 'checkContinue', listener: http.RequestListener): this; + prependOnceListener(event: 'checkExpectation', listener: http.RequestListener): this; + prependOnceListener(event: 'clientError', listener: (err: Error, socket: Duplex) => void): this; + prependOnceListener( + event: 'connect', + listener: (req: InstanceType, socket: Duplex, head: Buffer) => void, + ): this; + prependOnceListener(event: 'request', listener: http.RequestListener): this; + prependOnceListener( + event: 'upgrade', + listener: (req: InstanceType, socket: Duplex, head: Buffer) => void, + ): this; + } + /** + * ```js + * // curl -k https://localhost:8000/ + * const https = require('https'); + * const fs = require('fs'); + * + * const options = { + * key: fs.readFileSync('test/fixtures/keys/agent2-key.pem'), + * cert: fs.readFileSync('test/fixtures/keys/agent2-cert.pem') + * }; + * + * https.createServer(options, (req, res) => { + * res.writeHead(200); + * res.end('hello world\n'); + * }).listen(8000); + * ``` + * + * Or + * + * ```js + * const https = require('https'); + * const fs = require('fs'); + * + * const options = { + * pfx: fs.readFileSync('test/fixtures/test_cert.pfx'), + * passphrase: 'sample' + * }; + * + * https.createServer(options, (req, res) => { + * res.writeHead(200); + * res.end('hello world\n'); + * }).listen(8000); + * ``` + * @since v0.3.4 + * @param options Accepts `options` from `createServer`, `createSecureContext` and `createServer`. + * @param requestListener A listener to be added to the `'request'` event. + */ + function createServer< + Request extends typeof http.IncomingMessage = typeof http.IncomingMessage, + Response extends typeof http.ServerResponse = typeof http.ServerResponse, + >(requestListener?: http.RequestListener): Server; + function createServer< + Request extends typeof http.IncomingMessage = typeof http.IncomingMessage, + Response extends typeof http.ServerResponse = typeof http.ServerResponse, + >( + options: ServerOptions, + requestListener?: http.RequestListener, + ): Server; + /** + * Makes a request to a secure web server. + * + * The following additional `options` from `tls.connect()` are also accepted:`ca`, `cert`, `ciphers`, `clientCertEngine`, `crl`, `dhparam`, `ecdhCurve`,`honorCipherOrder`, `key`, `passphrase`, + * `pfx`, `rejectUnauthorized`,`secureOptions`, `secureProtocol`, `servername`, `sessionIdContext`,`highWaterMark`. + * + * `options` can be an object, a string, or a `URL` object. If `options` is a + * string, it is automatically parsed with `new URL()`. If it is a `URL` object, it will be automatically converted to an ordinary `options` object. + * + * `https.request()` returns an instance of the `http.ClientRequest` class. The `ClientRequest` instance is a writable stream. If one needs to + * upload a file with a POST request, then write to the `ClientRequest` object. + * + * ```js + * const https = require('https'); + * + * const options = { + * hostname: 'encrypted.google.com', + * port: 443, + * path: '/', + * method: 'GET' + * }; + * + * const req = https.request(options, (res) => { + * console.log('statusCode:', res.statusCode); + * console.log('headers:', res.headers); + * + * res.on('data', (d) => { + * process.stdout.write(d); + * }); + * }); + * + * req.on('error', (e) => { + * console.error(e); + * }); + * req.end(); + * ``` + * + * Example using options from `tls.connect()`: + * + * ```js + * const options = { + * hostname: 'encrypted.google.com', + * port: 443, + * path: '/', + * method: 'GET', + * key: fs.readFileSync('test/fixtures/keys/agent2-key.pem'), + * cert: fs.readFileSync('test/fixtures/keys/agent2-cert.pem') + * }; + * options.agent = new https.Agent(options); + * + * const req = https.request(options, (res) => { + * // ... + * }); + * ``` + * + * Alternatively, opt out of connection pooling by not using an `Agent`. + * + * ```js + * const options = { + * hostname: 'encrypted.google.com', + * port: 443, + * path: '/', + * method: 'GET', + * key: fs.readFileSync('test/fixtures/keys/agent2-key.pem'), + * cert: fs.readFileSync('test/fixtures/keys/agent2-cert.pem'), + * agent: false + * }; + * + * const req = https.request(options, (res) => { + * // ... + * }); + * ``` + * + * Example using a `URL` as `options`: + * + * ```js + * const options = new URL('https://abc:xyz@example.com'); + * + * const req = https.request(options, (res) => { + * // ... + * }); + * ``` + * + * Example pinning on certificate fingerprint, or the public key (similar to`pin-sha256`): + * + * ```js + * const tls = require('tls'); + * const https = require('https'); + * const crypto = require('crypto'); + * + * function sha256(s) { + * return crypto.createHash('sha256').update(s).digest('base64'); + * } + * const options = { + * hostname: 'github.com', + * port: 443, + * path: '/', + * method: 'GET', + * checkServerIdentity: function(host, cert) { + * // Make sure the certificate is issued to the host we are connected to + * const err = tls.checkServerIdentity(host, cert); + * if (err) { + * return err; + * } + * + * // Pin the public key, similar to HPKP pin-sha25 pinning + * const pubkey256 = 'pL1+qb9HTMRZJmuC/bB/ZI9d302BYrrqiVuRyW+DGrU='; + * if (sha256(cert.pubkey) !== pubkey256) { + * const msg = 'Certificate verification error: ' + + * `The public key of '${cert.subject.CN}' ` + + * 'does not match our pinned fingerprint'; + * return new Error(msg); + * } + * + * // Pin the exact certificate, rather than the pub key + * const cert256 = '25:FE:39:32:D9:63:8C:8A:FC:A1:9A:29:87:' + + * 'D8:3E:4C:1D:98:DB:71:E4:1A:48:03:98:EA:22:6A:BD:8B:93:16'; + * if (cert.fingerprint256 !== cert256) { + * const msg = 'Certificate verification error: ' + + * `The certificate of '${cert.subject.CN}' ` + + * 'does not match our pinned fingerprint'; + * return new Error(msg); + * } + * + * // This loop is informational only. + * // Print the certificate and public key fingerprints of all certs in the + * // chain. Its common to pin the public key of the issuer on the public + * // internet, while pinning the public key of the service in sensitive + * // environments. + * do { + * console.log('Subject Common Name:', cert.subject.CN); + * console.log(' Certificate SHA256 fingerprint:', cert.fingerprint256); + * + * hash = crypto.createHash('sha256'); + * console.log(' Public key ping-sha256:', sha256(cert.pubkey)); + * + * lastprint256 = cert.fingerprint256; + * cert = cert.issuerCertificate; + * } while (cert.fingerprint256 !== lastprint256); + * + * }, + * }; + * + * options.agent = new https.Agent(options); + * const req = https.request(options, (res) => { + * console.log('All OK. Server matched our pinned cert or public key'); + * console.log('statusCode:', res.statusCode); + * // Print the HPKP values + * console.log('headers:', res.headers['public-key-pins']); + * + * res.on('data', (d) => {}); + * }); + * + * req.on('error', (e) => { + * console.error(e.message); + * }); + * req.end(); + * ``` + * + * Outputs for example: + * + * ```text + * Subject Common Name: github.com + * Certificate SHA256 fingerprint: 25:FE:39:32:D9:63:8C:8A:FC:A1:9A:29:87:D8:3E:4C:1D:98:DB:71:E4:1A:48:03:98:EA:22:6A:BD:8B:93:16 + * Public key ping-sha256: pL1+qb9HTMRZJmuC/bB/ZI9d302BYrrqiVuRyW+DGrU= + * Subject Common Name: DigiCert SHA2 Extended Validation Server CA + * Certificate SHA256 fingerprint: 40:3E:06:2A:26:53:05:91:13:28:5B:AF:80:A0:D4:AE:42:2C:84:8C:9F:78:FA:D0:1F:C9:4B:C5:B8:7F:EF:1A + * Public key ping-sha256: RRM1dGqnDFsCJXBTHky16vi1obOlCgFFn/yOhI/y+ho= + * Subject Common Name: DigiCert High Assurance EV Root CA + * Certificate SHA256 fingerprint: 74:31:E5:F4:C3:C1:CE:46:90:77:4F:0B:61:E0:54:40:88:3B:A9:A0:1E:D0:0B:A6:AB:D7:80:6E:D3:B1:18:CF + * Public key ping-sha256: WoiWRyIOVNa9ihaBciRSC7XHjliYS9VwUGOIud4PB18= + * All OK. Server matched our pinned cert or public key + * statusCode: 200 + * headers: max-age=0; pin-sha256="WoiWRyIOVNa9ihaBciRSC7XHjliYS9VwUGOIud4PB18="; pin-sha256="RRM1dGqnDFsCJXBTHky16vi1obOlCgFFn/yOhI/y+ho="; + * pin-sha256="k2v657xBsOVe1PQRwOsHsw3bsGT2VzIqz5K+59sNQws="; pin-sha256="K87oWBWM9UZfyddvDfoxL+8lpNyoUB2ptGtn0fv6G2Q="; pin-sha256="IQBnNBEiFuhj+8x6X8XLgh01V9Ic5/V3IRQLNFFc7v4="; + * pin-sha256="iie1VXtL7HzAMF+/PVPR9xzT80kQxdZeJ+zduCB3uj0="; pin-sha256="LvRiGEjRqfzurezaWuj8Wie2gyHMrW5Q06LspMnox7A="; includeSubDomains + * ``` + * @since v0.3.6 + * @param options Accepts all `options` from `request`, with some differences in default values: + */ + function request( + options: RequestOptions | string | URL, + callback?: (res: http.IncomingMessage) => void, + ): http.ClientRequest; + function request( + url: string | URL, + options: RequestOptions, + callback?: (res: http.IncomingMessage) => void, + ): http.ClientRequest; + /** + * Like `http.get()` but for HTTPS. + * + * `options` can be an object, a string, or a `URL` object. If `options` is a + * string, it is automatically parsed with `new URL()`. If it is a `URL` object, it will be automatically converted to an ordinary `options` object. + * + * ```js + * const https = require('https'); + * + * https.get('https://encrypted.google.com/', (res) => { + * console.log('statusCode:', res.statusCode); + * console.log('headers:', res.headers); + * + * res.on('data', (d) => { + * process.stdout.write(d); + * }); + * + * }).on('error', (e) => { + * console.error(e); + * }); + * ``` + * @since v0.3.6 + * @param options Accepts the same `options` as {@link request}, with the `method` always set to `GET`. + */ + function get( + options: RequestOptions | string | URL, + callback?: (res: http.IncomingMessage) => void, + ): http.ClientRequest; + function get( + url: string | URL, + options: RequestOptions, + callback?: (res: http.IncomingMessage) => void, + ): http.ClientRequest; + let globalAgent: Agent; +} +declare module 'node:https' { + export * from 'https'; +} diff --git a/node_modules/@types/node/ts4.8/index.d.ts b/node_modules/@types/node/ts4.8/index.d.ts new file mode 100644 index 000000000..2faf25e1f --- /dev/null +++ b/node_modules/@types/node/ts4.8/index.d.ts @@ -0,0 +1,87 @@ +/** + * License for programmatically and manually incorporated + * documentation aka. `JSDoc` from https://github.com/nodejs/node/tree/master/doc + * + * Copyright Node.js contributors. All rights reserved. + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to + * deal in the Software without restriction, including without limitation the + * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or + * sell copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS + * IN THE SOFTWARE. + */ + +// NOTE: These definitions support NodeJS and TypeScript 4.8 and earlier. + +// Reference required types from the default lib: +/// +/// +/// +/// + +// Base definitions for all NodeJS modules that are not specific to any version of TypeScript: +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// + +/// diff --git a/node_modules/@types/node/ts4.8/inspector.d.ts b/node_modules/@types/node/ts4.8/inspector.d.ts new file mode 100644 index 000000000..eba0b55d8 --- /dev/null +++ b/node_modules/@types/node/ts4.8/inspector.d.ts @@ -0,0 +1,2741 @@ +// eslint-disable-next-line dt-header +// Type definitions for inspector + +// These definitions are auto-generated. +// Please see https://github.com/DefinitelyTyped/DefinitelyTyped/pull/19330 +// for more information. + +// tslint:disable:max-line-length + +/** + * The `inspector` module provides an API for interacting with the V8 inspector. + * + * It can be accessed using: + * + * ```js + * const inspector = require('inspector'); + * ``` + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/inspector.js) + */ +declare module 'inspector' { + import EventEmitter = require('node:events'); + interface InspectorNotification { + method: string; + params: T; + } + namespace Schema { + /** + * Description of the protocol domain. + */ + interface Domain { + /** + * Domain name. + */ + name: string; + /** + * Domain version. + */ + version: string; + } + interface GetDomainsReturnType { + /** + * List of supported domains. + */ + domains: Domain[]; + } + } + namespace Runtime { + /** + * Unique script identifier. + */ + type ScriptId = string; + /** + * Unique object identifier. + */ + type RemoteObjectId = string; + /** + * Primitive value which cannot be JSON-stringified. + */ + type UnserializableValue = string; + /** + * Mirror object referencing original JavaScript object. + */ + interface RemoteObject { + /** + * Object type. + */ + type: string; + /** + * Object subtype hint. Specified for object type values only. + */ + subtype?: string | undefined; + /** + * Object class (constructor) name. Specified for object type values only. + */ + className?: string | undefined; + /** + * Remote object value in case of primitive values or JSON values (if it was requested). + */ + value?: any; + /** + * Primitive value which can not be JSON-stringified does not have value, but gets this property. + */ + unserializableValue?: UnserializableValue | undefined; + /** + * String representation of the object. + */ + description?: string | undefined; + /** + * Unique object identifier (for non-primitive values). + */ + objectId?: RemoteObjectId | undefined; + /** + * Preview containing abbreviated property values. Specified for object type values only. + * @experimental + */ + preview?: ObjectPreview | undefined; + /** + * @experimental + */ + customPreview?: CustomPreview | undefined; + } + /** + * @experimental + */ + interface CustomPreview { + header: string; + hasBody: boolean; + formatterObjectId: RemoteObjectId; + bindRemoteObjectFunctionId: RemoteObjectId; + configObjectId?: RemoteObjectId | undefined; + } + /** + * Object containing abbreviated remote object value. + * @experimental + */ + interface ObjectPreview { + /** + * Object type. + */ + type: string; + /** + * Object subtype hint. Specified for object type values only. + */ + subtype?: string | undefined; + /** + * String representation of the object. + */ + description?: string | undefined; + /** + * True iff some of the properties or entries of the original object did not fit. + */ + overflow: boolean; + /** + * List of the properties. + */ + properties: PropertyPreview[]; + /** + * List of the entries. Specified for map and set subtype values only. + */ + entries?: EntryPreview[] | undefined; + } + /** + * @experimental + */ + interface PropertyPreview { + /** + * Property name. + */ + name: string; + /** + * Object type. Accessor means that the property itself is an accessor property. + */ + type: string; + /** + * User-friendly property value string. + */ + value?: string | undefined; + /** + * Nested value preview. + */ + valuePreview?: ObjectPreview | undefined; + /** + * Object subtype hint. Specified for object type values only. + */ + subtype?: string | undefined; + } + /** + * @experimental + */ + interface EntryPreview { + /** + * Preview of the key. Specified for map-like collection entries. + */ + key?: ObjectPreview | undefined; + /** + * Preview of the value. + */ + value: ObjectPreview; + } + /** + * Object property descriptor. + */ + interface PropertyDescriptor { + /** + * Property name or symbol description. + */ + name: string; + /** + * The value associated with the property. + */ + value?: RemoteObject | undefined; + /** + * True if the value associated with the property may be changed (data descriptors only). + */ + writable?: boolean | undefined; + /** + * A function which serves as a getter for the property, or undefined if there is no getter (accessor descriptors only). + */ + get?: RemoteObject | undefined; + /** + * A function which serves as a setter for the property, or undefined if there is no setter (accessor descriptors only). + */ + set?: RemoteObject | undefined; + /** + * True if the type of this property descriptor may be changed and if the property may be deleted from the corresponding object. + */ + configurable: boolean; + /** + * True if this property shows up during enumeration of the properties on the corresponding object. + */ + enumerable: boolean; + /** + * True if the result was thrown during the evaluation. + */ + wasThrown?: boolean | undefined; + /** + * True if the property is owned for the object. + */ + isOwn?: boolean | undefined; + /** + * Property symbol object, if the property is of the symbol type. + */ + symbol?: RemoteObject | undefined; + } + /** + * Object internal property descriptor. This property isn't normally visible in JavaScript code. + */ + interface InternalPropertyDescriptor { + /** + * Conventional property name. + */ + name: string; + /** + * The value associated with the property. + */ + value?: RemoteObject | undefined; + } + /** + * Represents function call argument. Either remote object id objectId, primitive value, unserializable primitive value or neither of (for undefined) them should be specified. + */ + interface CallArgument { + /** + * Primitive value or serializable javascript object. + */ + value?: any; + /** + * Primitive value which can not be JSON-stringified. + */ + unserializableValue?: UnserializableValue | undefined; + /** + * Remote object handle. + */ + objectId?: RemoteObjectId | undefined; + } + /** + * Id of an execution context. + */ + type ExecutionContextId = number; + /** + * Description of an isolated world. + */ + interface ExecutionContextDescription { + /** + * Unique id of the execution context. It can be used to specify in which execution context script evaluation should be performed. + */ + id: ExecutionContextId; + /** + * Execution context origin. + */ + origin: string; + /** + * Human readable name describing given context. + */ + name: string; + /** + * Embedder-specific auxiliary data. + */ + auxData?: {} | undefined; + } + /** + * Detailed information about exception (or error) that was thrown during script compilation or execution. + */ + interface ExceptionDetails { + /** + * Exception id. + */ + exceptionId: number; + /** + * Exception text, which should be used together with exception object when available. + */ + text: string; + /** + * Line number of the exception location (0-based). + */ + lineNumber: number; + /** + * Column number of the exception location (0-based). + */ + columnNumber: number; + /** + * Script ID of the exception location. + */ + scriptId?: ScriptId | undefined; + /** + * URL of the exception location, to be used when the script was not reported. + */ + url?: string | undefined; + /** + * JavaScript stack trace if available. + */ + stackTrace?: StackTrace | undefined; + /** + * Exception object if available. + */ + exception?: RemoteObject | undefined; + /** + * Identifier of the context where exception happened. + */ + executionContextId?: ExecutionContextId | undefined; + } + /** + * Number of milliseconds since epoch. + */ + type Timestamp = number; + /** + * Stack entry for runtime errors and assertions. + */ + interface CallFrame { + /** + * JavaScript function name. + */ + functionName: string; + /** + * JavaScript script id. + */ + scriptId: ScriptId; + /** + * JavaScript script name or url. + */ + url: string; + /** + * JavaScript script line number (0-based). + */ + lineNumber: number; + /** + * JavaScript script column number (0-based). + */ + columnNumber: number; + } + /** + * Call frames for assertions or error messages. + */ + interface StackTrace { + /** + * String label of this stack trace. For async traces this may be a name of the function that initiated the async call. + */ + description?: string | undefined; + /** + * JavaScript function name. + */ + callFrames: CallFrame[]; + /** + * Asynchronous JavaScript stack trace that preceded this stack, if available. + */ + parent?: StackTrace | undefined; + /** + * Asynchronous JavaScript stack trace that preceded this stack, if available. + * @experimental + */ + parentId?: StackTraceId | undefined; + } + /** + * Unique identifier of current debugger. + * @experimental + */ + type UniqueDebuggerId = string; + /** + * If debuggerId is set stack trace comes from another debugger and can be resolved there. This allows to track cross-debugger calls. See Runtime.StackTrace and Debugger.paused for usages. + * @experimental + */ + interface StackTraceId { + id: string; + debuggerId?: UniqueDebuggerId | undefined; + } + interface EvaluateParameterType { + /** + * Expression to evaluate. + */ + expression: string; + /** + * Symbolic group name that can be used to release multiple objects. + */ + objectGroup?: string | undefined; + /** + * Determines whether Command Line API should be available during the evaluation. + */ + includeCommandLineAPI?: boolean | undefined; + /** + * In silent mode exceptions thrown during evaluation are not reported and do not pause execution. Overrides setPauseOnException state. + */ + silent?: boolean | undefined; + /** + * Specifies in which execution context to perform evaluation. If the parameter is omitted the evaluation will be performed in the context of the inspected page. + */ + contextId?: ExecutionContextId | undefined; + /** + * Whether the result is expected to be a JSON object that should be sent by value. + */ + returnByValue?: boolean | undefined; + /** + * Whether preview should be generated for the result. + * @experimental + */ + generatePreview?: boolean | undefined; + /** + * Whether execution should be treated as initiated by user in the UI. + */ + userGesture?: boolean | undefined; + /** + * Whether execution should await for resulting value and return once awaited promise is resolved. + */ + awaitPromise?: boolean | undefined; + } + interface AwaitPromiseParameterType { + /** + * Identifier of the promise. + */ + promiseObjectId: RemoteObjectId; + /** + * Whether the result is expected to be a JSON object that should be sent by value. + */ + returnByValue?: boolean | undefined; + /** + * Whether preview should be generated for the result. + */ + generatePreview?: boolean | undefined; + } + interface CallFunctionOnParameterType { + /** + * Declaration of the function to call. + */ + functionDeclaration: string; + /** + * Identifier of the object to call function on. Either objectId or executionContextId should be specified. + */ + objectId?: RemoteObjectId | undefined; + /** + * Call arguments. All call arguments must belong to the same JavaScript world as the target object. + */ + arguments?: CallArgument[] | undefined; + /** + * In silent mode exceptions thrown during evaluation are not reported and do not pause execution. Overrides setPauseOnException state. + */ + silent?: boolean | undefined; + /** + * Whether the result is expected to be a JSON object which should be sent by value. + */ + returnByValue?: boolean | undefined; + /** + * Whether preview should be generated for the result. + * @experimental + */ + generatePreview?: boolean | undefined; + /** + * Whether execution should be treated as initiated by user in the UI. + */ + userGesture?: boolean | undefined; + /** + * Whether execution should await for resulting value and return once awaited promise is resolved. + */ + awaitPromise?: boolean | undefined; + /** + * Specifies execution context which global object will be used to call function on. Either executionContextId or objectId should be specified. + */ + executionContextId?: ExecutionContextId | undefined; + /** + * Symbolic group name that can be used to release multiple objects. If objectGroup is not specified and objectId is, objectGroup will be inherited from object. + */ + objectGroup?: string | undefined; + } + interface GetPropertiesParameterType { + /** + * Identifier of the object to return properties for. + */ + objectId: RemoteObjectId; + /** + * If true, returns properties belonging only to the element itself, not to its prototype chain. + */ + ownProperties?: boolean | undefined; + /** + * If true, returns accessor properties (with getter/setter) only; internal properties are not returned either. + * @experimental + */ + accessorPropertiesOnly?: boolean | undefined; + /** + * Whether preview should be generated for the results. + * @experimental + */ + generatePreview?: boolean | undefined; + } + interface ReleaseObjectParameterType { + /** + * Identifier of the object to release. + */ + objectId: RemoteObjectId; + } + interface ReleaseObjectGroupParameterType { + /** + * Symbolic object group name. + */ + objectGroup: string; + } + interface SetCustomObjectFormatterEnabledParameterType { + enabled: boolean; + } + interface CompileScriptParameterType { + /** + * Expression to compile. + */ + expression: string; + /** + * Source url to be set for the script. + */ + sourceURL: string; + /** + * Specifies whether the compiled script should be persisted. + */ + persistScript: boolean; + /** + * Specifies in which execution context to perform script run. If the parameter is omitted the evaluation will be performed in the context of the inspected page. + */ + executionContextId?: ExecutionContextId | undefined; + } + interface RunScriptParameterType { + /** + * Id of the script to run. + */ + scriptId: ScriptId; + /** + * Specifies in which execution context to perform script run. If the parameter is omitted the evaluation will be performed in the context of the inspected page. + */ + executionContextId?: ExecutionContextId | undefined; + /** + * Symbolic group name that can be used to release multiple objects. + */ + objectGroup?: string | undefined; + /** + * In silent mode exceptions thrown during evaluation are not reported and do not pause execution. Overrides setPauseOnException state. + */ + silent?: boolean | undefined; + /** + * Determines whether Command Line API should be available during the evaluation. + */ + includeCommandLineAPI?: boolean | undefined; + /** + * Whether the result is expected to be a JSON object which should be sent by value. + */ + returnByValue?: boolean | undefined; + /** + * Whether preview should be generated for the result. + */ + generatePreview?: boolean | undefined; + /** + * Whether execution should await for resulting value and return once awaited promise is resolved. + */ + awaitPromise?: boolean | undefined; + } + interface QueryObjectsParameterType { + /** + * Identifier of the prototype to return objects for. + */ + prototypeObjectId: RemoteObjectId; + } + interface GlobalLexicalScopeNamesParameterType { + /** + * Specifies in which execution context to lookup global scope variables. + */ + executionContextId?: ExecutionContextId | undefined; + } + interface EvaluateReturnType { + /** + * Evaluation result. + */ + result: RemoteObject; + /** + * Exception details. + */ + exceptionDetails?: ExceptionDetails | undefined; + } + interface AwaitPromiseReturnType { + /** + * Promise result. Will contain rejected value if promise was rejected. + */ + result: RemoteObject; + /** + * Exception details if stack strace is available. + */ + exceptionDetails?: ExceptionDetails | undefined; + } + interface CallFunctionOnReturnType { + /** + * Call result. + */ + result: RemoteObject; + /** + * Exception details. + */ + exceptionDetails?: ExceptionDetails | undefined; + } + interface GetPropertiesReturnType { + /** + * Object properties. + */ + result: PropertyDescriptor[]; + /** + * Internal object properties (only of the element itself). + */ + internalProperties?: InternalPropertyDescriptor[] | undefined; + /** + * Exception details. + */ + exceptionDetails?: ExceptionDetails | undefined; + } + interface CompileScriptReturnType { + /** + * Id of the script. + */ + scriptId?: ScriptId | undefined; + /** + * Exception details. + */ + exceptionDetails?: ExceptionDetails | undefined; + } + interface RunScriptReturnType { + /** + * Run result. + */ + result: RemoteObject; + /** + * Exception details. + */ + exceptionDetails?: ExceptionDetails | undefined; + } + interface QueryObjectsReturnType { + /** + * Array with objects. + */ + objects: RemoteObject; + } + interface GlobalLexicalScopeNamesReturnType { + names: string[]; + } + interface ExecutionContextCreatedEventDataType { + /** + * A newly created execution context. + */ + context: ExecutionContextDescription; + } + interface ExecutionContextDestroyedEventDataType { + /** + * Id of the destroyed context + */ + executionContextId: ExecutionContextId; + } + interface ExceptionThrownEventDataType { + /** + * Timestamp of the exception. + */ + timestamp: Timestamp; + exceptionDetails: ExceptionDetails; + } + interface ExceptionRevokedEventDataType { + /** + * Reason describing why exception was revoked. + */ + reason: string; + /** + * The id of revoked exception, as reported in exceptionThrown. + */ + exceptionId: number; + } + interface ConsoleAPICalledEventDataType { + /** + * Type of the call. + */ + type: string; + /** + * Call arguments. + */ + args: RemoteObject[]; + /** + * Identifier of the context where the call was made. + */ + executionContextId: ExecutionContextId; + /** + * Call timestamp. + */ + timestamp: Timestamp; + /** + * Stack trace captured when the call was made. + */ + stackTrace?: StackTrace | undefined; + /** + * Console context descriptor for calls on non-default console context (not console.*): 'anonymous#unique-logger-id' for call on unnamed context, 'name#unique-logger-id' for call on named context. + * @experimental + */ + context?: string | undefined; + } + interface InspectRequestedEventDataType { + object: RemoteObject; + hints: {}; + } + } + namespace Debugger { + /** + * Breakpoint identifier. + */ + type BreakpointId = string; + /** + * Call frame identifier. + */ + type CallFrameId = string; + /** + * Location in the source code. + */ + interface Location { + /** + * Script identifier as reported in the Debugger.scriptParsed. + */ + scriptId: Runtime.ScriptId; + /** + * Line number in the script (0-based). + */ + lineNumber: number; + /** + * Column number in the script (0-based). + */ + columnNumber?: number | undefined; + } + /** + * Location in the source code. + * @experimental + */ + interface ScriptPosition { + lineNumber: number; + columnNumber: number; + } + /** + * JavaScript call frame. Array of call frames form the call stack. + */ + interface CallFrame { + /** + * Call frame identifier. This identifier is only valid while the virtual machine is paused. + */ + callFrameId: CallFrameId; + /** + * Name of the JavaScript function called on this call frame. + */ + functionName: string; + /** + * Location in the source code. + */ + functionLocation?: Location | undefined; + /** + * Location in the source code. + */ + location: Location; + /** + * JavaScript script name or url. + */ + url: string; + /** + * Scope chain for this call frame. + */ + scopeChain: Scope[]; + /** + * this object for this call frame. + */ + this: Runtime.RemoteObject; + /** + * The value being returned, if the function is at return point. + */ + returnValue?: Runtime.RemoteObject | undefined; + } + /** + * Scope description. + */ + interface Scope { + /** + * Scope type. + */ + type: string; + /** + * Object representing the scope. For global and with scopes it represents the actual object; for the rest of the scopes, it is artificial transient object enumerating scope variables as its properties. + */ + object: Runtime.RemoteObject; + name?: string | undefined; + /** + * Location in the source code where scope starts + */ + startLocation?: Location | undefined; + /** + * Location in the source code where scope ends + */ + endLocation?: Location | undefined; + } + /** + * Search match for resource. + */ + interface SearchMatch { + /** + * Line number in resource content. + */ + lineNumber: number; + /** + * Line with match content. + */ + lineContent: string; + } + interface BreakLocation { + /** + * Script identifier as reported in the Debugger.scriptParsed. + */ + scriptId: Runtime.ScriptId; + /** + * Line number in the script (0-based). + */ + lineNumber: number; + /** + * Column number in the script (0-based). + */ + columnNumber?: number | undefined; + type?: string | undefined; + } + interface SetBreakpointsActiveParameterType { + /** + * New value for breakpoints active state. + */ + active: boolean; + } + interface SetSkipAllPausesParameterType { + /** + * New value for skip pauses state. + */ + skip: boolean; + } + interface SetBreakpointByUrlParameterType { + /** + * Line number to set breakpoint at. + */ + lineNumber: number; + /** + * URL of the resources to set breakpoint on. + */ + url?: string | undefined; + /** + * Regex pattern for the URLs of the resources to set breakpoints on. Either url or urlRegex must be specified. + */ + urlRegex?: string | undefined; + /** + * Script hash of the resources to set breakpoint on. + */ + scriptHash?: string | undefined; + /** + * Offset in the line to set breakpoint at. + */ + columnNumber?: number | undefined; + /** + * Expression to use as a breakpoint condition. When specified, debugger will only stop on the breakpoint if this expression evaluates to true. + */ + condition?: string | undefined; + } + interface SetBreakpointParameterType { + /** + * Location to set breakpoint in. + */ + location: Location; + /** + * Expression to use as a breakpoint condition. When specified, debugger will only stop on the breakpoint if this expression evaluates to true. + */ + condition?: string | undefined; + } + interface RemoveBreakpointParameterType { + breakpointId: BreakpointId; + } + interface GetPossibleBreakpointsParameterType { + /** + * Start of range to search possible breakpoint locations in. + */ + start: Location; + /** + * End of range to search possible breakpoint locations in (excluding). When not specified, end of scripts is used as end of range. + */ + end?: Location | undefined; + /** + * Only consider locations which are in the same (non-nested) function as start. + */ + restrictToFunction?: boolean | undefined; + } + interface ContinueToLocationParameterType { + /** + * Location to continue to. + */ + location: Location; + targetCallFrames?: string | undefined; + } + interface PauseOnAsyncCallParameterType { + /** + * Debugger will pause when async call with given stack trace is started. + */ + parentStackTraceId: Runtime.StackTraceId; + } + interface StepIntoParameterType { + /** + * Debugger will issue additional Debugger.paused notification if any async task is scheduled before next pause. + * @experimental + */ + breakOnAsyncCall?: boolean | undefined; + } + interface GetStackTraceParameterType { + stackTraceId: Runtime.StackTraceId; + } + interface SearchInContentParameterType { + /** + * Id of the script to search in. + */ + scriptId: Runtime.ScriptId; + /** + * String to search for. + */ + query: string; + /** + * If true, search is case sensitive. + */ + caseSensitive?: boolean | undefined; + /** + * If true, treats string parameter as regex. + */ + isRegex?: boolean | undefined; + } + interface SetScriptSourceParameterType { + /** + * Id of the script to edit. + */ + scriptId: Runtime.ScriptId; + /** + * New content of the script. + */ + scriptSource: string; + /** + * If true the change will not actually be applied. Dry run may be used to get result description without actually modifying the code. + */ + dryRun?: boolean | undefined; + } + interface RestartFrameParameterType { + /** + * Call frame identifier to evaluate on. + */ + callFrameId: CallFrameId; + } + interface GetScriptSourceParameterType { + /** + * Id of the script to get source for. + */ + scriptId: Runtime.ScriptId; + } + interface SetPauseOnExceptionsParameterType { + /** + * Pause on exceptions mode. + */ + state: string; + } + interface EvaluateOnCallFrameParameterType { + /** + * Call frame identifier to evaluate on. + */ + callFrameId: CallFrameId; + /** + * Expression to evaluate. + */ + expression: string; + /** + * String object group name to put result into (allows rapid releasing resulting object handles using releaseObjectGroup). + */ + objectGroup?: string | undefined; + /** + * Specifies whether command line API should be available to the evaluated expression, defaults to false. + */ + includeCommandLineAPI?: boolean | undefined; + /** + * In silent mode exceptions thrown during evaluation are not reported and do not pause execution. Overrides setPauseOnException state. + */ + silent?: boolean | undefined; + /** + * Whether the result is expected to be a JSON object that should be sent by value. + */ + returnByValue?: boolean | undefined; + /** + * Whether preview should be generated for the result. + * @experimental + */ + generatePreview?: boolean | undefined; + /** + * Whether to throw an exception if side effect cannot be ruled out during evaluation. + */ + throwOnSideEffect?: boolean | undefined; + } + interface SetVariableValueParameterType { + /** + * 0-based number of scope as was listed in scope chain. Only 'local', 'closure' and 'catch' scope types are allowed. Other scopes could be manipulated manually. + */ + scopeNumber: number; + /** + * Variable name. + */ + variableName: string; + /** + * New variable value. + */ + newValue: Runtime.CallArgument; + /** + * Id of callframe that holds variable. + */ + callFrameId: CallFrameId; + } + interface SetReturnValueParameterType { + /** + * New return value. + */ + newValue: Runtime.CallArgument; + } + interface SetAsyncCallStackDepthParameterType { + /** + * Maximum depth of async call stacks. Setting to 0 will effectively disable collecting async call stacks (default). + */ + maxDepth: number; + } + interface SetBlackboxPatternsParameterType { + /** + * Array of regexps that will be used to check script url for blackbox state. + */ + patterns: string[]; + } + interface SetBlackboxedRangesParameterType { + /** + * Id of the script. + */ + scriptId: Runtime.ScriptId; + positions: ScriptPosition[]; + } + interface EnableReturnType { + /** + * Unique identifier of the debugger. + * @experimental + */ + debuggerId: Runtime.UniqueDebuggerId; + } + interface SetBreakpointByUrlReturnType { + /** + * Id of the created breakpoint for further reference. + */ + breakpointId: BreakpointId; + /** + * List of the locations this breakpoint resolved into upon addition. + */ + locations: Location[]; + } + interface SetBreakpointReturnType { + /** + * Id of the created breakpoint for further reference. + */ + breakpointId: BreakpointId; + /** + * Location this breakpoint resolved into. + */ + actualLocation: Location; + } + interface GetPossibleBreakpointsReturnType { + /** + * List of the possible breakpoint locations. + */ + locations: BreakLocation[]; + } + interface GetStackTraceReturnType { + stackTrace: Runtime.StackTrace; + } + interface SearchInContentReturnType { + /** + * List of search matches. + */ + result: SearchMatch[]; + } + interface SetScriptSourceReturnType { + /** + * New stack trace in case editing has happened while VM was stopped. + */ + callFrames?: CallFrame[] | undefined; + /** + * Whether current call stack was modified after applying the changes. + */ + stackChanged?: boolean | undefined; + /** + * Async stack trace, if any. + */ + asyncStackTrace?: Runtime.StackTrace | undefined; + /** + * Async stack trace, if any. + * @experimental + */ + asyncStackTraceId?: Runtime.StackTraceId | undefined; + /** + * Exception details if any. + */ + exceptionDetails?: Runtime.ExceptionDetails | undefined; + } + interface RestartFrameReturnType { + /** + * New stack trace. + */ + callFrames: CallFrame[]; + /** + * Async stack trace, if any. + */ + asyncStackTrace?: Runtime.StackTrace | undefined; + /** + * Async stack trace, if any. + * @experimental + */ + asyncStackTraceId?: Runtime.StackTraceId | undefined; + } + interface GetScriptSourceReturnType { + /** + * Script source. + */ + scriptSource: string; + } + interface EvaluateOnCallFrameReturnType { + /** + * Object wrapper for the evaluation result. + */ + result: Runtime.RemoteObject; + /** + * Exception details. + */ + exceptionDetails?: Runtime.ExceptionDetails | undefined; + } + interface ScriptParsedEventDataType { + /** + * Identifier of the script parsed. + */ + scriptId: Runtime.ScriptId; + /** + * URL or name of the script parsed (if any). + */ + url: string; + /** + * Line offset of the script within the resource with given URL (for script tags). + */ + startLine: number; + /** + * Column offset of the script within the resource with given URL. + */ + startColumn: number; + /** + * Last line of the script. + */ + endLine: number; + /** + * Length of the last line of the script. + */ + endColumn: number; + /** + * Specifies script creation context. + */ + executionContextId: Runtime.ExecutionContextId; + /** + * Content hash of the script. + */ + hash: string; + /** + * Embedder-specific auxiliary data. + */ + executionContextAuxData?: {} | undefined; + /** + * True, if this script is generated as a result of the live edit operation. + * @experimental + */ + isLiveEdit?: boolean | undefined; + /** + * URL of source map associated with script (if any). + */ + sourceMapURL?: string | undefined; + /** + * True, if this script has sourceURL. + */ + hasSourceURL?: boolean | undefined; + /** + * True, if this script is ES6 module. + */ + isModule?: boolean | undefined; + /** + * This script length. + */ + length?: number | undefined; + /** + * JavaScript top stack frame of where the script parsed event was triggered if available. + * @experimental + */ + stackTrace?: Runtime.StackTrace | undefined; + } + interface ScriptFailedToParseEventDataType { + /** + * Identifier of the script parsed. + */ + scriptId: Runtime.ScriptId; + /** + * URL or name of the script parsed (if any). + */ + url: string; + /** + * Line offset of the script within the resource with given URL (for script tags). + */ + startLine: number; + /** + * Column offset of the script within the resource with given URL. + */ + startColumn: number; + /** + * Last line of the script. + */ + endLine: number; + /** + * Length of the last line of the script. + */ + endColumn: number; + /** + * Specifies script creation context. + */ + executionContextId: Runtime.ExecutionContextId; + /** + * Content hash of the script. + */ + hash: string; + /** + * Embedder-specific auxiliary data. + */ + executionContextAuxData?: {} | undefined; + /** + * URL of source map associated with script (if any). + */ + sourceMapURL?: string | undefined; + /** + * True, if this script has sourceURL. + */ + hasSourceURL?: boolean | undefined; + /** + * True, if this script is ES6 module. + */ + isModule?: boolean | undefined; + /** + * This script length. + */ + length?: number | undefined; + /** + * JavaScript top stack frame of where the script parsed event was triggered if available. + * @experimental + */ + stackTrace?: Runtime.StackTrace | undefined; + } + interface BreakpointResolvedEventDataType { + /** + * Breakpoint unique identifier. + */ + breakpointId: BreakpointId; + /** + * Actual breakpoint location. + */ + location: Location; + } + interface PausedEventDataType { + /** + * Call stack the virtual machine stopped on. + */ + callFrames: CallFrame[]; + /** + * Pause reason. + */ + reason: string; + /** + * Object containing break-specific auxiliary properties. + */ + data?: {} | undefined; + /** + * Hit breakpoints IDs + */ + hitBreakpoints?: string[] | undefined; + /** + * Async stack trace, if any. + */ + asyncStackTrace?: Runtime.StackTrace | undefined; + /** + * Async stack trace, if any. + * @experimental + */ + asyncStackTraceId?: Runtime.StackTraceId | undefined; + /** + * Just scheduled async call will have this stack trace as parent stack during async execution. This field is available only after Debugger.stepInto call with breakOnAsynCall flag. + * @experimental + */ + asyncCallStackTraceId?: Runtime.StackTraceId | undefined; + } + } + namespace Console { + /** + * Console message. + */ + interface ConsoleMessage { + /** + * Message source. + */ + source: string; + /** + * Message severity. + */ + level: string; + /** + * Message text. + */ + text: string; + /** + * URL of the message origin. + */ + url?: string | undefined; + /** + * Line number in the resource that generated this message (1-based). + */ + line?: number | undefined; + /** + * Column number in the resource that generated this message (1-based). + */ + column?: number | undefined; + } + interface MessageAddedEventDataType { + /** + * Console message that has been added. + */ + message: ConsoleMessage; + } + } + namespace Profiler { + /** + * Profile node. Holds callsite information, execution statistics and child nodes. + */ + interface ProfileNode { + /** + * Unique id of the node. + */ + id: number; + /** + * Function location. + */ + callFrame: Runtime.CallFrame; + /** + * Number of samples where this node was on top of the call stack. + */ + hitCount?: number | undefined; + /** + * Child node ids. + */ + children?: number[] | undefined; + /** + * The reason of being not optimized. The function may be deoptimized or marked as don't optimize. + */ + deoptReason?: string | undefined; + /** + * An array of source position ticks. + */ + positionTicks?: PositionTickInfo[] | undefined; + } + /** + * Profile. + */ + interface Profile { + /** + * The list of profile nodes. First item is the root node. + */ + nodes: ProfileNode[]; + /** + * Profiling start timestamp in microseconds. + */ + startTime: number; + /** + * Profiling end timestamp in microseconds. + */ + endTime: number; + /** + * Ids of samples top nodes. + */ + samples?: number[] | undefined; + /** + * Time intervals between adjacent samples in microseconds. The first delta is relative to the profile startTime. + */ + timeDeltas?: number[] | undefined; + } + /** + * Specifies a number of samples attributed to a certain source position. + */ + interface PositionTickInfo { + /** + * Source line number (1-based). + */ + line: number; + /** + * Number of samples attributed to the source line. + */ + ticks: number; + } + /** + * Coverage data for a source range. + */ + interface CoverageRange { + /** + * JavaScript script source offset for the range start. + */ + startOffset: number; + /** + * JavaScript script source offset for the range end. + */ + endOffset: number; + /** + * Collected execution count of the source range. + */ + count: number; + } + /** + * Coverage data for a JavaScript function. + */ + interface FunctionCoverage { + /** + * JavaScript function name. + */ + functionName: string; + /** + * Source ranges inside the function with coverage data. + */ + ranges: CoverageRange[]; + /** + * Whether coverage data for this function has block granularity. + */ + isBlockCoverage: boolean; + } + /** + * Coverage data for a JavaScript script. + */ + interface ScriptCoverage { + /** + * JavaScript script id. + */ + scriptId: Runtime.ScriptId; + /** + * JavaScript script name or url. + */ + url: string; + /** + * Functions contained in the script that has coverage data. + */ + functions: FunctionCoverage[]; + } + /** + * Describes a type collected during runtime. + * @experimental + */ + interface TypeObject { + /** + * Name of a type collected with type profiling. + */ + name: string; + } + /** + * Source offset and types for a parameter or return value. + * @experimental + */ + interface TypeProfileEntry { + /** + * Source offset of the parameter or end of function for return values. + */ + offset: number; + /** + * The types for this parameter or return value. + */ + types: TypeObject[]; + } + /** + * Type profile data collected during runtime for a JavaScript script. + * @experimental + */ + interface ScriptTypeProfile { + /** + * JavaScript script id. + */ + scriptId: Runtime.ScriptId; + /** + * JavaScript script name or url. + */ + url: string; + /** + * Type profile entries for parameters and return values of the functions in the script. + */ + entries: TypeProfileEntry[]; + } + interface SetSamplingIntervalParameterType { + /** + * New sampling interval in microseconds. + */ + interval: number; + } + interface StartPreciseCoverageParameterType { + /** + * Collect accurate call counts beyond simple 'covered' or 'not covered'. + */ + callCount?: boolean | undefined; + /** + * Collect block-based coverage. + */ + detailed?: boolean | undefined; + } + interface StopReturnType { + /** + * Recorded profile. + */ + profile: Profile; + } + interface TakePreciseCoverageReturnType { + /** + * Coverage data for the current isolate. + */ + result: ScriptCoverage[]; + } + interface GetBestEffortCoverageReturnType { + /** + * Coverage data for the current isolate. + */ + result: ScriptCoverage[]; + } + interface TakeTypeProfileReturnType { + /** + * Type profile for all scripts since startTypeProfile() was turned on. + */ + result: ScriptTypeProfile[]; + } + interface ConsoleProfileStartedEventDataType { + id: string; + /** + * Location of console.profile(). + */ + location: Debugger.Location; + /** + * Profile title passed as an argument to console.profile(). + */ + title?: string | undefined; + } + interface ConsoleProfileFinishedEventDataType { + id: string; + /** + * Location of console.profileEnd(). + */ + location: Debugger.Location; + profile: Profile; + /** + * Profile title passed as an argument to console.profile(). + */ + title?: string | undefined; + } + } + namespace HeapProfiler { + /** + * Heap snapshot object id. + */ + type HeapSnapshotObjectId = string; + /** + * Sampling Heap Profile node. Holds callsite information, allocation statistics and child nodes. + */ + interface SamplingHeapProfileNode { + /** + * Function location. + */ + callFrame: Runtime.CallFrame; + /** + * Allocations size in bytes for the node excluding children. + */ + selfSize: number; + /** + * Child nodes. + */ + children: SamplingHeapProfileNode[]; + } + /** + * Profile. + */ + interface SamplingHeapProfile { + head: SamplingHeapProfileNode; + } + interface StartTrackingHeapObjectsParameterType { + trackAllocations?: boolean | undefined; + } + interface StopTrackingHeapObjectsParameterType { + /** + * If true 'reportHeapSnapshotProgress' events will be generated while snapshot is being taken when the tracking is stopped. + */ + reportProgress?: boolean | undefined; + } + interface TakeHeapSnapshotParameterType { + /** + * If true 'reportHeapSnapshotProgress' events will be generated while snapshot is being taken. + */ + reportProgress?: boolean | undefined; + } + interface GetObjectByHeapObjectIdParameterType { + objectId: HeapSnapshotObjectId; + /** + * Symbolic group name that can be used to release multiple objects. + */ + objectGroup?: string | undefined; + } + interface AddInspectedHeapObjectParameterType { + /** + * Heap snapshot object id to be accessible by means of $x command line API. + */ + heapObjectId: HeapSnapshotObjectId; + } + interface GetHeapObjectIdParameterType { + /** + * Identifier of the object to get heap object id for. + */ + objectId: Runtime.RemoteObjectId; + } + interface StartSamplingParameterType { + /** + * Average sample interval in bytes. Poisson distribution is used for the intervals. The default value is 32768 bytes. + */ + samplingInterval?: number | undefined; + } + interface GetObjectByHeapObjectIdReturnType { + /** + * Evaluation result. + */ + result: Runtime.RemoteObject; + } + interface GetHeapObjectIdReturnType { + /** + * Id of the heap snapshot object corresponding to the passed remote object id. + */ + heapSnapshotObjectId: HeapSnapshotObjectId; + } + interface StopSamplingReturnType { + /** + * Recorded sampling heap profile. + */ + profile: SamplingHeapProfile; + } + interface GetSamplingProfileReturnType { + /** + * Return the sampling profile being collected. + */ + profile: SamplingHeapProfile; + } + interface AddHeapSnapshotChunkEventDataType { + chunk: string; + } + interface ReportHeapSnapshotProgressEventDataType { + done: number; + total: number; + finished?: boolean | undefined; + } + interface LastSeenObjectIdEventDataType { + lastSeenObjectId: number; + timestamp: number; + } + interface HeapStatsUpdateEventDataType { + /** + * An array of triplets. Each triplet describes a fragment. The first integer is the fragment index, the second integer is a total count of objects for the fragment, the third integer is a total size of the objects for the fragment. + */ + statsUpdate: number[]; + } + } + namespace NodeTracing { + interface TraceConfig { + /** + * Controls how the trace buffer stores data. + */ + recordMode?: string | undefined; + /** + * Included category filters. + */ + includedCategories: string[]; + } + interface StartParameterType { + traceConfig: TraceConfig; + } + interface GetCategoriesReturnType { + /** + * A list of supported tracing categories. + */ + categories: string[]; + } + interface DataCollectedEventDataType { + value: Array<{}>; + } + } + namespace NodeWorker { + type WorkerID = string; + /** + * Unique identifier of attached debugging session. + */ + type SessionID = string; + interface WorkerInfo { + workerId: WorkerID; + type: string; + title: string; + url: string; + } + interface SendMessageToWorkerParameterType { + message: string; + /** + * Identifier of the session. + */ + sessionId: SessionID; + } + interface EnableParameterType { + /** + * Whether to new workers should be paused until the frontend sends `Runtime.runIfWaitingForDebugger` + * message to run them. + */ + waitForDebuggerOnStart: boolean; + } + interface DetachParameterType { + sessionId: SessionID; + } + interface AttachedToWorkerEventDataType { + /** + * Identifier assigned to the session used to send/receive messages. + */ + sessionId: SessionID; + workerInfo: WorkerInfo; + waitingForDebugger: boolean; + } + interface DetachedFromWorkerEventDataType { + /** + * Detached session identifier. + */ + sessionId: SessionID; + } + interface ReceivedMessageFromWorkerEventDataType { + /** + * Identifier of a session which sends a message. + */ + sessionId: SessionID; + message: string; + } + } + namespace NodeRuntime { + interface NotifyWhenWaitingForDisconnectParameterType { + enabled: boolean; + } + } + /** + * The `inspector.Session` is used for dispatching messages to the V8 inspector + * back-end and receiving message responses and notifications. + */ + class Session extends EventEmitter { + /** + * Create a new instance of the inspector.Session class. + * The inspector session needs to be connected through session.connect() before the messages can be dispatched to the inspector backend. + */ + constructor(); + /** + * Connects a session to the inspector back-end. + * @since v8.0.0 + */ + connect(): void; + /** + * Immediately close the session. All pending message callbacks will be called + * with an error. `session.connect()` will need to be called to be able to send + * messages again. Reconnected session will lose all inspector state, such as + * enabled agents or configured breakpoints. + * @since v8.0.0 + */ + disconnect(): void; + /** + * Posts a message to the inspector back-end. `callback` will be notified when + * a response is received. `callback` is a function that accepts two optional + * arguments: error and message-specific result. + * + * ```js + * session.post('Runtime.evaluate', { expression: '2 + 2' }, + * (error, { result }) => console.log(result)); + * // Output: { type: 'number', value: 4, description: '4' } + * ``` + * + * The latest version of the V8 inspector protocol is published on the [Chrome DevTools Protocol Viewer](https://chromedevtools.github.io/devtools-protocol/v8/). + * + * Node.js inspector supports all the Chrome DevTools Protocol domains declared + * by V8\. Chrome DevTools Protocol domain provides an interface for interacting + * with one of the runtime agents used to inspect the application state and listen + * to the run-time events. + * + * ## Example usage + * + * Apart from the debugger, various V8 Profilers are available through the DevTools + * protocol. + * @since v8.0.0 + */ + post(method: string, params?: {}, callback?: (err: Error | null, params?: {}) => void): void; + post(method: string, callback?: (err: Error | null, params?: {}) => void): void; + /** + * Returns supported domains. + */ + post(method: 'Schema.getDomains', callback?: (err: Error | null, params: Schema.GetDomainsReturnType) => void): void; + /** + * Evaluates expression on global object. + */ + post(method: 'Runtime.evaluate', params?: Runtime.EvaluateParameterType, callback?: (err: Error | null, params: Runtime.EvaluateReturnType) => void): void; + post(method: 'Runtime.evaluate', callback?: (err: Error | null, params: Runtime.EvaluateReturnType) => void): void; + /** + * Add handler to promise with given promise object id. + */ + post(method: 'Runtime.awaitPromise', params?: Runtime.AwaitPromiseParameterType, callback?: (err: Error | null, params: Runtime.AwaitPromiseReturnType) => void): void; + post(method: 'Runtime.awaitPromise', callback?: (err: Error | null, params: Runtime.AwaitPromiseReturnType) => void): void; + /** + * Calls function with given declaration on the given object. Object group of the result is inherited from the target object. + */ + post(method: 'Runtime.callFunctionOn', params?: Runtime.CallFunctionOnParameterType, callback?: (err: Error | null, params: Runtime.CallFunctionOnReturnType) => void): void; + post(method: 'Runtime.callFunctionOn', callback?: (err: Error | null, params: Runtime.CallFunctionOnReturnType) => void): void; + /** + * Returns properties of a given object. Object group of the result is inherited from the target object. + */ + post(method: 'Runtime.getProperties', params?: Runtime.GetPropertiesParameterType, callback?: (err: Error | null, params: Runtime.GetPropertiesReturnType) => void): void; + post(method: 'Runtime.getProperties', callback?: (err: Error | null, params: Runtime.GetPropertiesReturnType) => void): void; + /** + * Releases remote object with given id. + */ + post(method: 'Runtime.releaseObject', params?: Runtime.ReleaseObjectParameterType, callback?: (err: Error | null) => void): void; + post(method: 'Runtime.releaseObject', callback?: (err: Error | null) => void): void; + /** + * Releases all remote objects that belong to a given group. + */ + post(method: 'Runtime.releaseObjectGroup', params?: Runtime.ReleaseObjectGroupParameterType, callback?: (err: Error | null) => void): void; + post(method: 'Runtime.releaseObjectGroup', callback?: (err: Error | null) => void): void; + /** + * Tells inspected instance to run if it was waiting for debugger to attach. + */ + post(method: 'Runtime.runIfWaitingForDebugger', callback?: (err: Error | null) => void): void; + /** + * Enables reporting of execution contexts creation by means of executionContextCreated event. When the reporting gets enabled the event will be sent immediately for each existing execution context. + */ + post(method: 'Runtime.enable', callback?: (err: Error | null) => void): void; + /** + * Disables reporting of execution contexts creation. + */ + post(method: 'Runtime.disable', callback?: (err: Error | null) => void): void; + /** + * Discards collected exceptions and console API calls. + */ + post(method: 'Runtime.discardConsoleEntries', callback?: (err: Error | null) => void): void; + /** + * @experimental + */ + post(method: 'Runtime.setCustomObjectFormatterEnabled', params?: Runtime.SetCustomObjectFormatterEnabledParameterType, callback?: (err: Error | null) => void): void; + post(method: 'Runtime.setCustomObjectFormatterEnabled', callback?: (err: Error | null) => void): void; + /** + * Compiles expression. + */ + post(method: 'Runtime.compileScript', params?: Runtime.CompileScriptParameterType, callback?: (err: Error | null, params: Runtime.CompileScriptReturnType) => void): void; + post(method: 'Runtime.compileScript', callback?: (err: Error | null, params: Runtime.CompileScriptReturnType) => void): void; + /** + * Runs script with given id in a given context. + */ + post(method: 'Runtime.runScript', params?: Runtime.RunScriptParameterType, callback?: (err: Error | null, params: Runtime.RunScriptReturnType) => void): void; + post(method: 'Runtime.runScript', callback?: (err: Error | null, params: Runtime.RunScriptReturnType) => void): void; + post(method: 'Runtime.queryObjects', params?: Runtime.QueryObjectsParameterType, callback?: (err: Error | null, params: Runtime.QueryObjectsReturnType) => void): void; + post(method: 'Runtime.queryObjects', callback?: (err: Error | null, params: Runtime.QueryObjectsReturnType) => void): void; + /** + * Returns all let, const and class variables from global scope. + */ + post( + method: 'Runtime.globalLexicalScopeNames', + params?: Runtime.GlobalLexicalScopeNamesParameterType, + callback?: (err: Error | null, params: Runtime.GlobalLexicalScopeNamesReturnType) => void + ): void; + post(method: 'Runtime.globalLexicalScopeNames', callback?: (err: Error | null, params: Runtime.GlobalLexicalScopeNamesReturnType) => void): void; + /** + * Enables debugger for the given page. Clients should not assume that the debugging has been enabled until the result for this command is received. + */ + post(method: 'Debugger.enable', callback?: (err: Error | null, params: Debugger.EnableReturnType) => void): void; + /** + * Disables debugger for given page. + */ + post(method: 'Debugger.disable', callback?: (err: Error | null) => void): void; + /** + * Activates / deactivates all breakpoints on the page. + */ + post(method: 'Debugger.setBreakpointsActive', params?: Debugger.SetBreakpointsActiveParameterType, callback?: (err: Error | null) => void): void; + post(method: 'Debugger.setBreakpointsActive', callback?: (err: Error | null) => void): void; + /** + * Makes page not interrupt on any pauses (breakpoint, exception, dom exception etc). + */ + post(method: 'Debugger.setSkipAllPauses', params?: Debugger.SetSkipAllPausesParameterType, callback?: (err: Error | null) => void): void; + post(method: 'Debugger.setSkipAllPauses', callback?: (err: Error | null) => void): void; + /** + * Sets JavaScript breakpoint at given location specified either by URL or URL regex. Once this command is issued, all existing parsed scripts will have breakpoints resolved and returned in locations property. Further matching script parsing will result in subsequent breakpointResolved events issued. This logical breakpoint will survive page reloads. + */ + post(method: 'Debugger.setBreakpointByUrl', params?: Debugger.SetBreakpointByUrlParameterType, callback?: (err: Error | null, params: Debugger.SetBreakpointByUrlReturnType) => void): void; + post(method: 'Debugger.setBreakpointByUrl', callback?: (err: Error | null, params: Debugger.SetBreakpointByUrlReturnType) => void): void; + /** + * Sets JavaScript breakpoint at a given location. + */ + post(method: 'Debugger.setBreakpoint', params?: Debugger.SetBreakpointParameterType, callback?: (err: Error | null, params: Debugger.SetBreakpointReturnType) => void): void; + post(method: 'Debugger.setBreakpoint', callback?: (err: Error | null, params: Debugger.SetBreakpointReturnType) => void): void; + /** + * Removes JavaScript breakpoint. + */ + post(method: 'Debugger.removeBreakpoint', params?: Debugger.RemoveBreakpointParameterType, callback?: (err: Error | null) => void): void; + post(method: 'Debugger.removeBreakpoint', callback?: (err: Error | null) => void): void; + /** + * Returns possible locations for breakpoint. scriptId in start and end range locations should be the same. + */ + post( + method: 'Debugger.getPossibleBreakpoints', + params?: Debugger.GetPossibleBreakpointsParameterType, + callback?: (err: Error | null, params: Debugger.GetPossibleBreakpointsReturnType) => void + ): void; + post(method: 'Debugger.getPossibleBreakpoints', callback?: (err: Error | null, params: Debugger.GetPossibleBreakpointsReturnType) => void): void; + /** + * Continues execution until specific location is reached. + */ + post(method: 'Debugger.continueToLocation', params?: Debugger.ContinueToLocationParameterType, callback?: (err: Error | null) => void): void; + post(method: 'Debugger.continueToLocation', callback?: (err: Error | null) => void): void; + /** + * @experimental + */ + post(method: 'Debugger.pauseOnAsyncCall', params?: Debugger.PauseOnAsyncCallParameterType, callback?: (err: Error | null) => void): void; + post(method: 'Debugger.pauseOnAsyncCall', callback?: (err: Error | null) => void): void; + /** + * Steps over the statement. + */ + post(method: 'Debugger.stepOver', callback?: (err: Error | null) => void): void; + /** + * Steps into the function call. + */ + post(method: 'Debugger.stepInto', params?: Debugger.StepIntoParameterType, callback?: (err: Error | null) => void): void; + post(method: 'Debugger.stepInto', callback?: (err: Error | null) => void): void; + /** + * Steps out of the function call. + */ + post(method: 'Debugger.stepOut', callback?: (err: Error | null) => void): void; + /** + * Stops on the next JavaScript statement. + */ + post(method: 'Debugger.pause', callback?: (err: Error | null) => void): void; + /** + * This method is deprecated - use Debugger.stepInto with breakOnAsyncCall and Debugger.pauseOnAsyncTask instead. Steps into next scheduled async task if any is scheduled before next pause. Returns success when async task is actually scheduled, returns error if no task were scheduled or another scheduleStepIntoAsync was called. + * @experimental + */ + post(method: 'Debugger.scheduleStepIntoAsync', callback?: (err: Error | null) => void): void; + /** + * Resumes JavaScript execution. + */ + post(method: 'Debugger.resume', callback?: (err: Error | null) => void): void; + /** + * Returns stack trace with given stackTraceId. + * @experimental + */ + post(method: 'Debugger.getStackTrace', params?: Debugger.GetStackTraceParameterType, callback?: (err: Error | null, params: Debugger.GetStackTraceReturnType) => void): void; + post(method: 'Debugger.getStackTrace', callback?: (err: Error | null, params: Debugger.GetStackTraceReturnType) => void): void; + /** + * Searches for given string in script content. + */ + post(method: 'Debugger.searchInContent', params?: Debugger.SearchInContentParameterType, callback?: (err: Error | null, params: Debugger.SearchInContentReturnType) => void): void; + post(method: 'Debugger.searchInContent', callback?: (err: Error | null, params: Debugger.SearchInContentReturnType) => void): void; + /** + * Edits JavaScript source live. + */ + post(method: 'Debugger.setScriptSource', params?: Debugger.SetScriptSourceParameterType, callback?: (err: Error | null, params: Debugger.SetScriptSourceReturnType) => void): void; + post(method: 'Debugger.setScriptSource', callback?: (err: Error | null, params: Debugger.SetScriptSourceReturnType) => void): void; + /** + * Restarts particular call frame from the beginning. + */ + post(method: 'Debugger.restartFrame', params?: Debugger.RestartFrameParameterType, callback?: (err: Error | null, params: Debugger.RestartFrameReturnType) => void): void; + post(method: 'Debugger.restartFrame', callback?: (err: Error | null, params: Debugger.RestartFrameReturnType) => void): void; + /** + * Returns source for the script with given id. + */ + post(method: 'Debugger.getScriptSource', params?: Debugger.GetScriptSourceParameterType, callback?: (err: Error | null, params: Debugger.GetScriptSourceReturnType) => void): void; + post(method: 'Debugger.getScriptSource', callback?: (err: Error | null, params: Debugger.GetScriptSourceReturnType) => void): void; + /** + * Defines pause on exceptions state. Can be set to stop on all exceptions, uncaught exceptions or no exceptions. Initial pause on exceptions state is none. + */ + post(method: 'Debugger.setPauseOnExceptions', params?: Debugger.SetPauseOnExceptionsParameterType, callback?: (err: Error | null) => void): void; + post(method: 'Debugger.setPauseOnExceptions', callback?: (err: Error | null) => void): void; + /** + * Evaluates expression on a given call frame. + */ + post(method: 'Debugger.evaluateOnCallFrame', params?: Debugger.EvaluateOnCallFrameParameterType, callback?: (err: Error | null, params: Debugger.EvaluateOnCallFrameReturnType) => void): void; + post(method: 'Debugger.evaluateOnCallFrame', callback?: (err: Error | null, params: Debugger.EvaluateOnCallFrameReturnType) => void): void; + /** + * Changes value of variable in a callframe. Object-based scopes are not supported and must be mutated manually. + */ + post(method: 'Debugger.setVariableValue', params?: Debugger.SetVariableValueParameterType, callback?: (err: Error | null) => void): void; + post(method: 'Debugger.setVariableValue', callback?: (err: Error | null) => void): void; + /** + * Changes return value in top frame. Available only at return break position. + * @experimental + */ + post(method: 'Debugger.setReturnValue', params?: Debugger.SetReturnValueParameterType, callback?: (err: Error | null) => void): void; + post(method: 'Debugger.setReturnValue', callback?: (err: Error | null) => void): void; + /** + * Enables or disables async call stacks tracking. + */ + post(method: 'Debugger.setAsyncCallStackDepth', params?: Debugger.SetAsyncCallStackDepthParameterType, callback?: (err: Error | null) => void): void; + post(method: 'Debugger.setAsyncCallStackDepth', callback?: (err: Error | null) => void): void; + /** + * Replace previous blackbox patterns with passed ones. Forces backend to skip stepping/pausing in scripts with url matching one of the patterns. VM will try to leave blackboxed script by performing 'step in' several times, finally resorting to 'step out' if unsuccessful. + * @experimental + */ + post(method: 'Debugger.setBlackboxPatterns', params?: Debugger.SetBlackboxPatternsParameterType, callback?: (err: Error | null) => void): void; + post(method: 'Debugger.setBlackboxPatterns', callback?: (err: Error | null) => void): void; + /** + * Makes backend skip steps in the script in blackboxed ranges. VM will try leave blacklisted scripts by performing 'step in' several times, finally resorting to 'step out' if unsuccessful. Positions array contains positions where blackbox state is changed. First interval isn't blackboxed. Array should be sorted. + * @experimental + */ + post(method: 'Debugger.setBlackboxedRanges', params?: Debugger.SetBlackboxedRangesParameterType, callback?: (err: Error | null) => void): void; + post(method: 'Debugger.setBlackboxedRanges', callback?: (err: Error | null) => void): void; + /** + * Enables console domain, sends the messages collected so far to the client by means of the messageAdded notification. + */ + post(method: 'Console.enable', callback?: (err: Error | null) => void): void; + /** + * Disables console domain, prevents further console messages from being reported to the client. + */ + post(method: 'Console.disable', callback?: (err: Error | null) => void): void; + /** + * Does nothing. + */ + post(method: 'Console.clearMessages', callback?: (err: Error | null) => void): void; + post(method: 'Profiler.enable', callback?: (err: Error | null) => void): void; + post(method: 'Profiler.disable', callback?: (err: Error | null) => void): void; + /** + * Changes CPU profiler sampling interval. Must be called before CPU profiles recording started. + */ + post(method: 'Profiler.setSamplingInterval', params?: Profiler.SetSamplingIntervalParameterType, callback?: (err: Error | null) => void): void; + post(method: 'Profiler.setSamplingInterval', callback?: (err: Error | null) => void): void; + post(method: 'Profiler.start', callback?: (err: Error | null) => void): void; + post(method: 'Profiler.stop', callback?: (err: Error | null, params: Profiler.StopReturnType) => void): void; + /** + * Enable precise code coverage. Coverage data for JavaScript executed before enabling precise code coverage may be incomplete. Enabling prevents running optimized code and resets execution counters. + */ + post(method: 'Profiler.startPreciseCoverage', params?: Profiler.StartPreciseCoverageParameterType, callback?: (err: Error | null) => void): void; + post(method: 'Profiler.startPreciseCoverage', callback?: (err: Error | null) => void): void; + /** + * Disable precise code coverage. Disabling releases unnecessary execution count records and allows executing optimized code. + */ + post(method: 'Profiler.stopPreciseCoverage', callback?: (err: Error | null) => void): void; + /** + * Collect coverage data for the current isolate, and resets execution counters. Precise code coverage needs to have started. + */ + post(method: 'Profiler.takePreciseCoverage', callback?: (err: Error | null, params: Profiler.TakePreciseCoverageReturnType) => void): void; + /** + * Collect coverage data for the current isolate. The coverage data may be incomplete due to garbage collection. + */ + post(method: 'Profiler.getBestEffortCoverage', callback?: (err: Error | null, params: Profiler.GetBestEffortCoverageReturnType) => void): void; + /** + * Enable type profile. + * @experimental + */ + post(method: 'Profiler.startTypeProfile', callback?: (err: Error | null) => void): void; + /** + * Disable type profile. Disabling releases type profile data collected so far. + * @experimental + */ + post(method: 'Profiler.stopTypeProfile', callback?: (err: Error | null) => void): void; + /** + * Collect type profile. + * @experimental + */ + post(method: 'Profiler.takeTypeProfile', callback?: (err: Error | null, params: Profiler.TakeTypeProfileReturnType) => void): void; + post(method: 'HeapProfiler.enable', callback?: (err: Error | null) => void): void; + post(method: 'HeapProfiler.disable', callback?: (err: Error | null) => void): void; + post(method: 'HeapProfiler.startTrackingHeapObjects', params?: HeapProfiler.StartTrackingHeapObjectsParameterType, callback?: (err: Error | null) => void): void; + post(method: 'HeapProfiler.startTrackingHeapObjects', callback?: (err: Error | null) => void): void; + post(method: 'HeapProfiler.stopTrackingHeapObjects', params?: HeapProfiler.StopTrackingHeapObjectsParameterType, callback?: (err: Error | null) => void): void; + post(method: 'HeapProfiler.stopTrackingHeapObjects', callback?: (err: Error | null) => void): void; + post(method: 'HeapProfiler.takeHeapSnapshot', params?: HeapProfiler.TakeHeapSnapshotParameterType, callback?: (err: Error | null) => void): void; + post(method: 'HeapProfiler.takeHeapSnapshot', callback?: (err: Error | null) => void): void; + post(method: 'HeapProfiler.collectGarbage', callback?: (err: Error | null) => void): void; + post( + method: 'HeapProfiler.getObjectByHeapObjectId', + params?: HeapProfiler.GetObjectByHeapObjectIdParameterType, + callback?: (err: Error | null, params: HeapProfiler.GetObjectByHeapObjectIdReturnType) => void + ): void; + post(method: 'HeapProfiler.getObjectByHeapObjectId', callback?: (err: Error | null, params: HeapProfiler.GetObjectByHeapObjectIdReturnType) => void): void; + /** + * Enables console to refer to the node with given id via $x (see Command Line API for more details $x functions). + */ + post(method: 'HeapProfiler.addInspectedHeapObject', params?: HeapProfiler.AddInspectedHeapObjectParameterType, callback?: (err: Error | null) => void): void; + post(method: 'HeapProfiler.addInspectedHeapObject', callback?: (err: Error | null) => void): void; + post(method: 'HeapProfiler.getHeapObjectId', params?: HeapProfiler.GetHeapObjectIdParameterType, callback?: (err: Error | null, params: HeapProfiler.GetHeapObjectIdReturnType) => void): void; + post(method: 'HeapProfiler.getHeapObjectId', callback?: (err: Error | null, params: HeapProfiler.GetHeapObjectIdReturnType) => void): void; + post(method: 'HeapProfiler.startSampling', params?: HeapProfiler.StartSamplingParameterType, callback?: (err: Error | null) => void): void; + post(method: 'HeapProfiler.startSampling', callback?: (err: Error | null) => void): void; + post(method: 'HeapProfiler.stopSampling', callback?: (err: Error | null, params: HeapProfiler.StopSamplingReturnType) => void): void; + post(method: 'HeapProfiler.getSamplingProfile', callback?: (err: Error | null, params: HeapProfiler.GetSamplingProfileReturnType) => void): void; + /** + * Gets supported tracing categories. + */ + post(method: 'NodeTracing.getCategories', callback?: (err: Error | null, params: NodeTracing.GetCategoriesReturnType) => void): void; + /** + * Start trace events collection. + */ + post(method: 'NodeTracing.start', params?: NodeTracing.StartParameterType, callback?: (err: Error | null) => void): void; + post(method: 'NodeTracing.start', callback?: (err: Error | null) => void): void; + /** + * Stop trace events collection. Remaining collected events will be sent as a sequence of + * dataCollected events followed by tracingComplete event. + */ + post(method: 'NodeTracing.stop', callback?: (err: Error | null) => void): void; + /** + * Sends protocol message over session with given id. + */ + post(method: 'NodeWorker.sendMessageToWorker', params?: NodeWorker.SendMessageToWorkerParameterType, callback?: (err: Error | null) => void): void; + post(method: 'NodeWorker.sendMessageToWorker', callback?: (err: Error | null) => void): void; + /** + * Instructs the inspector to attach to running workers. Will also attach to new workers + * as they start + */ + post(method: 'NodeWorker.enable', params?: NodeWorker.EnableParameterType, callback?: (err: Error | null) => void): void; + post(method: 'NodeWorker.enable', callback?: (err: Error | null) => void): void; + /** + * Detaches from all running workers and disables attaching to new workers as they are started. + */ + post(method: 'NodeWorker.disable', callback?: (err: Error | null) => void): void; + /** + * Detached from the worker with given sessionId. + */ + post(method: 'NodeWorker.detach', params?: NodeWorker.DetachParameterType, callback?: (err: Error | null) => void): void; + post(method: 'NodeWorker.detach', callback?: (err: Error | null) => void): void; + /** + * Enable the `NodeRuntime.waitingForDisconnect`. + */ + post(method: 'NodeRuntime.notifyWhenWaitingForDisconnect', params?: NodeRuntime.NotifyWhenWaitingForDisconnectParameterType, callback?: (err: Error | null) => void): void; + post(method: 'NodeRuntime.notifyWhenWaitingForDisconnect', callback?: (err: Error | null) => void): void; + // Events + addListener(event: string, listener: (...args: any[]) => void): this; + /** + * Emitted when any notification from the V8 Inspector is received. + */ + addListener(event: 'inspectorNotification', listener: (message: InspectorNotification<{}>) => void): this; + /** + * Issued when new execution context is created. + */ + addListener(event: 'Runtime.executionContextCreated', listener: (message: InspectorNotification) => void): this; + /** + * Issued when execution context is destroyed. + */ + addListener(event: 'Runtime.executionContextDestroyed', listener: (message: InspectorNotification) => void): this; + /** + * Issued when all executionContexts were cleared in browser + */ + addListener(event: 'Runtime.executionContextsCleared', listener: () => void): this; + /** + * Issued when exception was thrown and unhandled. + */ + addListener(event: 'Runtime.exceptionThrown', listener: (message: InspectorNotification) => void): this; + /** + * Issued when unhandled exception was revoked. + */ + addListener(event: 'Runtime.exceptionRevoked', listener: (message: InspectorNotification) => void): this; + /** + * Issued when console API was called. + */ + addListener(event: 'Runtime.consoleAPICalled', listener: (message: InspectorNotification) => void): this; + /** + * Issued when object should be inspected (for example, as a result of inspect() command line API call). + */ + addListener(event: 'Runtime.inspectRequested', listener: (message: InspectorNotification) => void): this; + /** + * Fired when virtual machine parses script. This event is also fired for all known and uncollected scripts upon enabling debugger. + */ + addListener(event: 'Debugger.scriptParsed', listener: (message: InspectorNotification) => void): this; + /** + * Fired when virtual machine fails to parse the script. + */ + addListener(event: 'Debugger.scriptFailedToParse', listener: (message: InspectorNotification) => void): this; + /** + * Fired when breakpoint is resolved to an actual script and location. + */ + addListener(event: 'Debugger.breakpointResolved', listener: (message: InspectorNotification) => void): this; + /** + * Fired when the virtual machine stopped on breakpoint or exception or any other stop criteria. + */ + addListener(event: 'Debugger.paused', listener: (message: InspectorNotification) => void): this; + /** + * Fired when the virtual machine resumed execution. + */ + addListener(event: 'Debugger.resumed', listener: () => void): this; + /** + * Issued when new console message is added. + */ + addListener(event: 'Console.messageAdded', listener: (message: InspectorNotification) => void): this; + /** + * Sent when new profile recording is started using console.profile() call. + */ + addListener(event: 'Profiler.consoleProfileStarted', listener: (message: InspectorNotification) => void): this; + addListener(event: 'Profiler.consoleProfileFinished', listener: (message: InspectorNotification) => void): this; + addListener(event: 'HeapProfiler.addHeapSnapshotChunk', listener: (message: InspectorNotification) => void): this; + addListener(event: 'HeapProfiler.resetProfiles', listener: () => void): this; + addListener(event: 'HeapProfiler.reportHeapSnapshotProgress', listener: (message: InspectorNotification) => void): this; + /** + * If heap objects tracking has been started then backend regularly sends a current value for last seen object id and corresponding timestamp. If the were changes in the heap since last event then one or more heapStatsUpdate events will be sent before a new lastSeenObjectId event. + */ + addListener(event: 'HeapProfiler.lastSeenObjectId', listener: (message: InspectorNotification) => void): this; + /** + * If heap objects tracking has been started then backend may send update for one or more fragments + */ + addListener(event: 'HeapProfiler.heapStatsUpdate', listener: (message: InspectorNotification) => void): this; + /** + * Contains an bucket of collected trace events. + */ + addListener(event: 'NodeTracing.dataCollected', listener: (message: InspectorNotification) => void): this; + /** + * Signals that tracing is stopped and there is no trace buffers pending flush, all data were + * delivered via dataCollected events. + */ + addListener(event: 'NodeTracing.tracingComplete', listener: () => void): this; + /** + * Issued when attached to a worker. + */ + addListener(event: 'NodeWorker.attachedToWorker', listener: (message: InspectorNotification) => void): this; + /** + * Issued when detached from the worker. + */ + addListener(event: 'NodeWorker.detachedFromWorker', listener: (message: InspectorNotification) => void): this; + /** + * Notifies about a new protocol message received from the session + * (session ID is provided in attachedToWorker notification). + */ + addListener(event: 'NodeWorker.receivedMessageFromWorker', listener: (message: InspectorNotification) => void): this; + /** + * This event is fired instead of `Runtime.executionContextDestroyed` when + * enabled. + * It is fired when the Node process finished all code execution and is + * waiting for all frontends to disconnect. + */ + addListener(event: 'NodeRuntime.waitingForDisconnect', listener: () => void): this; + emit(event: string | symbol, ...args: any[]): boolean; + emit(event: 'inspectorNotification', message: InspectorNotification<{}>): boolean; + emit(event: 'Runtime.executionContextCreated', message: InspectorNotification): boolean; + emit(event: 'Runtime.executionContextDestroyed', message: InspectorNotification): boolean; + emit(event: 'Runtime.executionContextsCleared'): boolean; + emit(event: 'Runtime.exceptionThrown', message: InspectorNotification): boolean; + emit(event: 'Runtime.exceptionRevoked', message: InspectorNotification): boolean; + emit(event: 'Runtime.consoleAPICalled', message: InspectorNotification): boolean; + emit(event: 'Runtime.inspectRequested', message: InspectorNotification): boolean; + emit(event: 'Debugger.scriptParsed', message: InspectorNotification): boolean; + emit(event: 'Debugger.scriptFailedToParse', message: InspectorNotification): boolean; + emit(event: 'Debugger.breakpointResolved', message: InspectorNotification): boolean; + emit(event: 'Debugger.paused', message: InspectorNotification): boolean; + emit(event: 'Debugger.resumed'): boolean; + emit(event: 'Console.messageAdded', message: InspectorNotification): boolean; + emit(event: 'Profiler.consoleProfileStarted', message: InspectorNotification): boolean; + emit(event: 'Profiler.consoleProfileFinished', message: InspectorNotification): boolean; + emit(event: 'HeapProfiler.addHeapSnapshotChunk', message: InspectorNotification): boolean; + emit(event: 'HeapProfiler.resetProfiles'): boolean; + emit(event: 'HeapProfiler.reportHeapSnapshotProgress', message: InspectorNotification): boolean; + emit(event: 'HeapProfiler.lastSeenObjectId', message: InspectorNotification): boolean; + emit(event: 'HeapProfiler.heapStatsUpdate', message: InspectorNotification): boolean; + emit(event: 'NodeTracing.dataCollected', message: InspectorNotification): boolean; + emit(event: 'NodeTracing.tracingComplete'): boolean; + emit(event: 'NodeWorker.attachedToWorker', message: InspectorNotification): boolean; + emit(event: 'NodeWorker.detachedFromWorker', message: InspectorNotification): boolean; + emit(event: 'NodeWorker.receivedMessageFromWorker', message: InspectorNotification): boolean; + emit(event: 'NodeRuntime.waitingForDisconnect'): boolean; + on(event: string, listener: (...args: any[]) => void): this; + /** + * Emitted when any notification from the V8 Inspector is received. + */ + on(event: 'inspectorNotification', listener: (message: InspectorNotification<{}>) => void): this; + /** + * Issued when new execution context is created. + */ + on(event: 'Runtime.executionContextCreated', listener: (message: InspectorNotification) => void): this; + /** + * Issued when execution context is destroyed. + */ + on(event: 'Runtime.executionContextDestroyed', listener: (message: InspectorNotification) => void): this; + /** + * Issued when all executionContexts were cleared in browser + */ + on(event: 'Runtime.executionContextsCleared', listener: () => void): this; + /** + * Issued when exception was thrown and unhandled. + */ + on(event: 'Runtime.exceptionThrown', listener: (message: InspectorNotification) => void): this; + /** + * Issued when unhandled exception was revoked. + */ + on(event: 'Runtime.exceptionRevoked', listener: (message: InspectorNotification) => void): this; + /** + * Issued when console API was called. + */ + on(event: 'Runtime.consoleAPICalled', listener: (message: InspectorNotification) => void): this; + /** + * Issued when object should be inspected (for example, as a result of inspect() command line API call). + */ + on(event: 'Runtime.inspectRequested', listener: (message: InspectorNotification) => void): this; + /** + * Fired when virtual machine parses script. This event is also fired for all known and uncollected scripts upon enabling debugger. + */ + on(event: 'Debugger.scriptParsed', listener: (message: InspectorNotification) => void): this; + /** + * Fired when virtual machine fails to parse the script. + */ + on(event: 'Debugger.scriptFailedToParse', listener: (message: InspectorNotification) => void): this; + /** + * Fired when breakpoint is resolved to an actual script and location. + */ + on(event: 'Debugger.breakpointResolved', listener: (message: InspectorNotification) => void): this; + /** + * Fired when the virtual machine stopped on breakpoint or exception or any other stop criteria. + */ + on(event: 'Debugger.paused', listener: (message: InspectorNotification) => void): this; + /** + * Fired when the virtual machine resumed execution. + */ + on(event: 'Debugger.resumed', listener: () => void): this; + /** + * Issued when new console message is added. + */ + on(event: 'Console.messageAdded', listener: (message: InspectorNotification) => void): this; + /** + * Sent when new profile recording is started using console.profile() call. + */ + on(event: 'Profiler.consoleProfileStarted', listener: (message: InspectorNotification) => void): this; + on(event: 'Profiler.consoleProfileFinished', listener: (message: InspectorNotification) => void): this; + on(event: 'HeapProfiler.addHeapSnapshotChunk', listener: (message: InspectorNotification) => void): this; + on(event: 'HeapProfiler.resetProfiles', listener: () => void): this; + on(event: 'HeapProfiler.reportHeapSnapshotProgress', listener: (message: InspectorNotification) => void): this; + /** + * If heap objects tracking has been started then backend regularly sends a current value for last seen object id and corresponding timestamp. If the were changes in the heap since last event then one or more heapStatsUpdate events will be sent before a new lastSeenObjectId event. + */ + on(event: 'HeapProfiler.lastSeenObjectId', listener: (message: InspectorNotification) => void): this; + /** + * If heap objects tracking has been started then backend may send update for one or more fragments + */ + on(event: 'HeapProfiler.heapStatsUpdate', listener: (message: InspectorNotification) => void): this; + /** + * Contains an bucket of collected trace events. + */ + on(event: 'NodeTracing.dataCollected', listener: (message: InspectorNotification) => void): this; + /** + * Signals that tracing is stopped and there is no trace buffers pending flush, all data were + * delivered via dataCollected events. + */ + on(event: 'NodeTracing.tracingComplete', listener: () => void): this; + /** + * Issued when attached to a worker. + */ + on(event: 'NodeWorker.attachedToWorker', listener: (message: InspectorNotification) => void): this; + /** + * Issued when detached from the worker. + */ + on(event: 'NodeWorker.detachedFromWorker', listener: (message: InspectorNotification) => void): this; + /** + * Notifies about a new protocol message received from the session + * (session ID is provided in attachedToWorker notification). + */ + on(event: 'NodeWorker.receivedMessageFromWorker', listener: (message: InspectorNotification) => void): this; + /** + * This event is fired instead of `Runtime.executionContextDestroyed` when + * enabled. + * It is fired when the Node process finished all code execution and is + * waiting for all frontends to disconnect. + */ + on(event: 'NodeRuntime.waitingForDisconnect', listener: () => void): this; + once(event: string, listener: (...args: any[]) => void): this; + /** + * Emitted when any notification from the V8 Inspector is received. + */ + once(event: 'inspectorNotification', listener: (message: InspectorNotification<{}>) => void): this; + /** + * Issued when new execution context is created. + */ + once(event: 'Runtime.executionContextCreated', listener: (message: InspectorNotification) => void): this; + /** + * Issued when execution context is destroyed. + */ + once(event: 'Runtime.executionContextDestroyed', listener: (message: InspectorNotification) => void): this; + /** + * Issued when all executionContexts were cleared in browser + */ + once(event: 'Runtime.executionContextsCleared', listener: () => void): this; + /** + * Issued when exception was thrown and unhandled. + */ + once(event: 'Runtime.exceptionThrown', listener: (message: InspectorNotification) => void): this; + /** + * Issued when unhandled exception was revoked. + */ + once(event: 'Runtime.exceptionRevoked', listener: (message: InspectorNotification) => void): this; + /** + * Issued when console API was called. + */ + once(event: 'Runtime.consoleAPICalled', listener: (message: InspectorNotification) => void): this; + /** + * Issued when object should be inspected (for example, as a result of inspect() command line API call). + */ + once(event: 'Runtime.inspectRequested', listener: (message: InspectorNotification) => void): this; + /** + * Fired when virtual machine parses script. This event is also fired for all known and uncollected scripts upon enabling debugger. + */ + once(event: 'Debugger.scriptParsed', listener: (message: InspectorNotification) => void): this; + /** + * Fired when virtual machine fails to parse the script. + */ + once(event: 'Debugger.scriptFailedToParse', listener: (message: InspectorNotification) => void): this; + /** + * Fired when breakpoint is resolved to an actual script and location. + */ + once(event: 'Debugger.breakpointResolved', listener: (message: InspectorNotification) => void): this; + /** + * Fired when the virtual machine stopped on breakpoint or exception or any other stop criteria. + */ + once(event: 'Debugger.paused', listener: (message: InspectorNotification) => void): this; + /** + * Fired when the virtual machine resumed execution. + */ + once(event: 'Debugger.resumed', listener: () => void): this; + /** + * Issued when new console message is added. + */ + once(event: 'Console.messageAdded', listener: (message: InspectorNotification) => void): this; + /** + * Sent when new profile recording is started using console.profile() call. + */ + once(event: 'Profiler.consoleProfileStarted', listener: (message: InspectorNotification) => void): this; + once(event: 'Profiler.consoleProfileFinished', listener: (message: InspectorNotification) => void): this; + once(event: 'HeapProfiler.addHeapSnapshotChunk', listener: (message: InspectorNotification) => void): this; + once(event: 'HeapProfiler.resetProfiles', listener: () => void): this; + once(event: 'HeapProfiler.reportHeapSnapshotProgress', listener: (message: InspectorNotification) => void): this; + /** + * If heap objects tracking has been started then backend regularly sends a current value for last seen object id and corresponding timestamp. If the were changes in the heap since last event then one or more heapStatsUpdate events will be sent before a new lastSeenObjectId event. + */ + once(event: 'HeapProfiler.lastSeenObjectId', listener: (message: InspectorNotification) => void): this; + /** + * If heap objects tracking has been started then backend may send update for one or more fragments + */ + once(event: 'HeapProfiler.heapStatsUpdate', listener: (message: InspectorNotification) => void): this; + /** + * Contains an bucket of collected trace events. + */ + once(event: 'NodeTracing.dataCollected', listener: (message: InspectorNotification) => void): this; + /** + * Signals that tracing is stopped and there is no trace buffers pending flush, all data were + * delivered via dataCollected events. + */ + once(event: 'NodeTracing.tracingComplete', listener: () => void): this; + /** + * Issued when attached to a worker. + */ + once(event: 'NodeWorker.attachedToWorker', listener: (message: InspectorNotification) => void): this; + /** + * Issued when detached from the worker. + */ + once(event: 'NodeWorker.detachedFromWorker', listener: (message: InspectorNotification) => void): this; + /** + * Notifies about a new protocol message received from the session + * (session ID is provided in attachedToWorker notification). + */ + once(event: 'NodeWorker.receivedMessageFromWorker', listener: (message: InspectorNotification) => void): this; + /** + * This event is fired instead of `Runtime.executionContextDestroyed` when + * enabled. + * It is fired when the Node process finished all code execution and is + * waiting for all frontends to disconnect. + */ + once(event: 'NodeRuntime.waitingForDisconnect', listener: () => void): this; + prependListener(event: string, listener: (...args: any[]) => void): this; + /** + * Emitted when any notification from the V8 Inspector is received. + */ + prependListener(event: 'inspectorNotification', listener: (message: InspectorNotification<{}>) => void): this; + /** + * Issued when new execution context is created. + */ + prependListener(event: 'Runtime.executionContextCreated', listener: (message: InspectorNotification) => void): this; + /** + * Issued when execution context is destroyed. + */ + prependListener(event: 'Runtime.executionContextDestroyed', listener: (message: InspectorNotification) => void): this; + /** + * Issued when all executionContexts were cleared in browser + */ + prependListener(event: 'Runtime.executionContextsCleared', listener: () => void): this; + /** + * Issued when exception was thrown and unhandled. + */ + prependListener(event: 'Runtime.exceptionThrown', listener: (message: InspectorNotification) => void): this; + /** + * Issued when unhandled exception was revoked. + */ + prependListener(event: 'Runtime.exceptionRevoked', listener: (message: InspectorNotification) => void): this; + /** + * Issued when console API was called. + */ + prependListener(event: 'Runtime.consoleAPICalled', listener: (message: InspectorNotification) => void): this; + /** + * Issued when object should be inspected (for example, as a result of inspect() command line API call). + */ + prependListener(event: 'Runtime.inspectRequested', listener: (message: InspectorNotification) => void): this; + /** + * Fired when virtual machine parses script. This event is also fired for all known and uncollected scripts upon enabling debugger. + */ + prependListener(event: 'Debugger.scriptParsed', listener: (message: InspectorNotification) => void): this; + /** + * Fired when virtual machine fails to parse the script. + */ + prependListener(event: 'Debugger.scriptFailedToParse', listener: (message: InspectorNotification) => void): this; + /** + * Fired when breakpoint is resolved to an actual script and location. + */ + prependListener(event: 'Debugger.breakpointResolved', listener: (message: InspectorNotification) => void): this; + /** + * Fired when the virtual machine stopped on breakpoint or exception or any other stop criteria. + */ + prependListener(event: 'Debugger.paused', listener: (message: InspectorNotification) => void): this; + /** + * Fired when the virtual machine resumed execution. + */ + prependListener(event: 'Debugger.resumed', listener: () => void): this; + /** + * Issued when new console message is added. + */ + prependListener(event: 'Console.messageAdded', listener: (message: InspectorNotification) => void): this; + /** + * Sent when new profile recording is started using console.profile() call. + */ + prependListener(event: 'Profiler.consoleProfileStarted', listener: (message: InspectorNotification) => void): this; + prependListener(event: 'Profiler.consoleProfileFinished', listener: (message: InspectorNotification) => void): this; + prependListener(event: 'HeapProfiler.addHeapSnapshotChunk', listener: (message: InspectorNotification) => void): this; + prependListener(event: 'HeapProfiler.resetProfiles', listener: () => void): this; + prependListener(event: 'HeapProfiler.reportHeapSnapshotProgress', listener: (message: InspectorNotification) => void): this; + /** + * If heap objects tracking has been started then backend regularly sends a current value for last seen object id and corresponding timestamp. If the were changes in the heap since last event then one or more heapStatsUpdate events will be sent before a new lastSeenObjectId event. + */ + prependListener(event: 'HeapProfiler.lastSeenObjectId', listener: (message: InspectorNotification) => void): this; + /** + * If heap objects tracking has been started then backend may send update for one or more fragments + */ + prependListener(event: 'HeapProfiler.heapStatsUpdate', listener: (message: InspectorNotification) => void): this; + /** + * Contains an bucket of collected trace events. + */ + prependListener(event: 'NodeTracing.dataCollected', listener: (message: InspectorNotification) => void): this; + /** + * Signals that tracing is stopped and there is no trace buffers pending flush, all data were + * delivered via dataCollected events. + */ + prependListener(event: 'NodeTracing.tracingComplete', listener: () => void): this; + /** + * Issued when attached to a worker. + */ + prependListener(event: 'NodeWorker.attachedToWorker', listener: (message: InspectorNotification) => void): this; + /** + * Issued when detached from the worker. + */ + prependListener(event: 'NodeWorker.detachedFromWorker', listener: (message: InspectorNotification) => void): this; + /** + * Notifies about a new protocol message received from the session + * (session ID is provided in attachedToWorker notification). + */ + prependListener(event: 'NodeWorker.receivedMessageFromWorker', listener: (message: InspectorNotification) => void): this; + /** + * This event is fired instead of `Runtime.executionContextDestroyed` when + * enabled. + * It is fired when the Node process finished all code execution and is + * waiting for all frontends to disconnect. + */ + prependListener(event: 'NodeRuntime.waitingForDisconnect', listener: () => void): this; + prependOnceListener(event: string, listener: (...args: any[]) => void): this; + /** + * Emitted when any notification from the V8 Inspector is received. + */ + prependOnceListener(event: 'inspectorNotification', listener: (message: InspectorNotification<{}>) => void): this; + /** + * Issued when new execution context is created. + */ + prependOnceListener(event: 'Runtime.executionContextCreated', listener: (message: InspectorNotification) => void): this; + /** + * Issued when execution context is destroyed. + */ + prependOnceListener(event: 'Runtime.executionContextDestroyed', listener: (message: InspectorNotification) => void): this; + /** + * Issued when all executionContexts were cleared in browser + */ + prependOnceListener(event: 'Runtime.executionContextsCleared', listener: () => void): this; + /** + * Issued when exception was thrown and unhandled. + */ + prependOnceListener(event: 'Runtime.exceptionThrown', listener: (message: InspectorNotification) => void): this; + /** + * Issued when unhandled exception was revoked. + */ + prependOnceListener(event: 'Runtime.exceptionRevoked', listener: (message: InspectorNotification) => void): this; + /** + * Issued when console API was called. + */ + prependOnceListener(event: 'Runtime.consoleAPICalled', listener: (message: InspectorNotification) => void): this; + /** + * Issued when object should be inspected (for example, as a result of inspect() command line API call). + */ + prependOnceListener(event: 'Runtime.inspectRequested', listener: (message: InspectorNotification) => void): this; + /** + * Fired when virtual machine parses script. This event is also fired for all known and uncollected scripts upon enabling debugger. + */ + prependOnceListener(event: 'Debugger.scriptParsed', listener: (message: InspectorNotification) => void): this; + /** + * Fired when virtual machine fails to parse the script. + */ + prependOnceListener(event: 'Debugger.scriptFailedToParse', listener: (message: InspectorNotification) => void): this; + /** + * Fired when breakpoint is resolved to an actual script and location. + */ + prependOnceListener(event: 'Debugger.breakpointResolved', listener: (message: InspectorNotification) => void): this; + /** + * Fired when the virtual machine stopped on breakpoint or exception or any other stop criteria. + */ + prependOnceListener(event: 'Debugger.paused', listener: (message: InspectorNotification) => void): this; + /** + * Fired when the virtual machine resumed execution. + */ + prependOnceListener(event: 'Debugger.resumed', listener: () => void): this; + /** + * Issued when new console message is added. + */ + prependOnceListener(event: 'Console.messageAdded', listener: (message: InspectorNotification) => void): this; + /** + * Sent when new profile recording is started using console.profile() call. + */ + prependOnceListener(event: 'Profiler.consoleProfileStarted', listener: (message: InspectorNotification) => void): this; + prependOnceListener(event: 'Profiler.consoleProfileFinished', listener: (message: InspectorNotification) => void): this; + prependOnceListener(event: 'HeapProfiler.addHeapSnapshotChunk', listener: (message: InspectorNotification) => void): this; + prependOnceListener(event: 'HeapProfiler.resetProfiles', listener: () => void): this; + prependOnceListener(event: 'HeapProfiler.reportHeapSnapshotProgress', listener: (message: InspectorNotification) => void): this; + /** + * If heap objects tracking has been started then backend regularly sends a current value for last seen object id and corresponding timestamp. If the were changes in the heap since last event then one or more heapStatsUpdate events will be sent before a new lastSeenObjectId event. + */ + prependOnceListener(event: 'HeapProfiler.lastSeenObjectId', listener: (message: InspectorNotification) => void): this; + /** + * If heap objects tracking has been started then backend may send update for one or more fragments + */ + prependOnceListener(event: 'HeapProfiler.heapStatsUpdate', listener: (message: InspectorNotification) => void): this; + /** + * Contains an bucket of collected trace events. + */ + prependOnceListener(event: 'NodeTracing.dataCollected', listener: (message: InspectorNotification) => void): this; + /** + * Signals that tracing is stopped and there is no trace buffers pending flush, all data were + * delivered via dataCollected events. + */ + prependOnceListener(event: 'NodeTracing.tracingComplete', listener: () => void): this; + /** + * Issued when attached to a worker. + */ + prependOnceListener(event: 'NodeWorker.attachedToWorker', listener: (message: InspectorNotification) => void): this; + /** + * Issued when detached from the worker. + */ + prependOnceListener(event: 'NodeWorker.detachedFromWorker', listener: (message: InspectorNotification) => void): this; + /** + * Notifies about a new protocol message received from the session + * (session ID is provided in attachedToWorker notification). + */ + prependOnceListener(event: 'NodeWorker.receivedMessageFromWorker', listener: (message: InspectorNotification) => void): this; + /** + * This event is fired instead of `Runtime.executionContextDestroyed` when + * enabled. + * It is fired when the Node process finished all code execution and is + * waiting for all frontends to disconnect. + */ + prependOnceListener(event: 'NodeRuntime.waitingForDisconnect', listener: () => void): this; + } + /** + * Activate inspector on host and port. Equivalent to`node --inspect=[[host:]port]`, but can be done programmatically after node has + * started. + * + * If wait is `true`, will block until a client has connected to the inspect port + * and flow control has been passed to the debugger client. + * + * See the `security warning` regarding the `host`parameter usage. + * @param [port='what was specified on the CLI'] Port to listen on for inspector connections. Optional. + * @param [host='what was specified on the CLI'] Host to listen on for inspector connections. Optional. + * @param [wait=false] Block until a client has connected. Optional. + */ + function open(port?: number, host?: string, wait?: boolean): void; + /** + * Deactivate the inspector. Blocks until there are no active connections. + */ + function close(): void; + /** + * Return the URL of the active inspector, or `undefined` if there is none. + * + * ```console + * $ node --inspect -p 'inspector.url()' + * Debugger listening on ws://127.0.0.1:9229/166e272e-7a30-4d09-97ce-f1c012b43c34 + * For help, see: https://nodejs.org/en/docs/inspector + * ws://127.0.0.1:9229/166e272e-7a30-4d09-97ce-f1c012b43c34 + * + * $ node --inspect=localhost:3000 -p 'inspector.url()' + * Debugger listening on ws://localhost:3000/51cf8d0e-3c36-4c59-8efd-54519839e56a + * For help, see: https://nodejs.org/en/docs/inspector + * ws://localhost:3000/51cf8d0e-3c36-4c59-8efd-54519839e56a + * + * $ node -p 'inspector.url()' + * undefined + * ``` + */ + function url(): string | undefined; + /** + * Blocks until a client (existing or connected later) has sent`Runtime.runIfWaitingForDebugger` command. + * + * An exception will be thrown if there is no active inspector. + * @since v12.7.0 + */ + function waitForDebugger(): void; +} +/** + * The inspector module provides an API for interacting with the V8 inspector. + */ +declare module 'node:inspector' { + import inspector = require('inspector'); + export = inspector; +} diff --git a/node_modules/@types/node/ts4.8/module.d.ts b/node_modules/@types/node/ts4.8/module.d.ts new file mode 100644 index 000000000..d83aec94a --- /dev/null +++ b/node_modules/@types/node/ts4.8/module.d.ts @@ -0,0 +1,114 @@ +/** + * @since v0.3.7 + */ +declare module 'module' { + import { URL } from 'node:url'; + namespace Module { + /** + * The `module.syncBuiltinESMExports()` method updates all the live bindings for + * builtin `ES Modules` to match the properties of the `CommonJS` exports. It + * does not add or remove exported names from the `ES Modules`. + * + * ```js + * const fs = require('fs'); + * const assert = require('assert'); + * const { syncBuiltinESMExports } = require('module'); + * + * fs.readFile = newAPI; + * + * delete fs.readFileSync; + * + * function newAPI() { + * // ... + * } + * + * fs.newAPI = newAPI; + * + * syncBuiltinESMExports(); + * + * import('fs').then((esmFS) => { + * // It syncs the existing readFile property with the new value + * assert.strictEqual(esmFS.readFile, newAPI); + * // readFileSync has been deleted from the required fs + * assert.strictEqual('readFileSync' in fs, false); + * // syncBuiltinESMExports() does not remove readFileSync from esmFS + * assert.strictEqual('readFileSync' in esmFS, true); + * // syncBuiltinESMExports() does not add names + * assert.strictEqual(esmFS.newAPI, undefined); + * }); + * ``` + * @since v12.12.0 + */ + function syncBuiltinESMExports(): void; + /** + * `path` is the resolved path for the file for which a corresponding source map + * should be fetched. + * @since v13.7.0, v12.17.0 + */ + function findSourceMap(path: string, error?: Error): SourceMap; + interface SourceMapPayload { + file: string; + version: number; + sources: string[]; + sourcesContent: string[]; + names: string[]; + mappings: string; + sourceRoot: string; + } + interface SourceMapping { + generatedLine: number; + generatedColumn: number; + originalSource: string; + originalLine: number; + originalColumn: number; + } + /** + * @since v13.7.0, v12.17.0 + */ + class SourceMap { + /** + * Getter for the payload used to construct the `SourceMap` instance. + */ + readonly payload: SourceMapPayload; + constructor(payload: SourceMapPayload); + /** + * Given a line number and column number in the generated source file, returns + * an object representing the position in the original file. The object returned + * consists of the following keys: + */ + findEntry(line: number, column: number): SourceMapping; + } + } + interface Module extends NodeModule {} + class Module { + static runMain(): void; + static wrap(code: string): string; + static createRequire(path: string | URL): NodeRequire; + static builtinModules: string[]; + static Module: typeof Module; + constructor(id: string, parent?: Module); + } + global { + interface ImportMeta { + url: string; + /** + * @experimental + * This feature is only available with the `--experimental-import-meta-resolve` + * command flag enabled. + * + * Provides a module-relative resolution function scoped to each module, returning + * the URL string. + * + * @param specified The module specifier to resolve relative to `parent`. + * @param parent The absolute parent module URL to resolve from. If none + * is specified, the value of `import.meta.url` is used as the default. + */ + resolve?(specified: string, parent?: string | URL): Promise; + } + } + export = Module; +} +declare module 'node:module' { + import module = require('module'); + export = module; +} diff --git a/node_modules/@types/node/ts4.8/net.d.ts b/node_modules/@types/node/ts4.8/net.d.ts new file mode 100644 index 000000000..72cebc825 --- /dev/null +++ b/node_modules/@types/node/ts4.8/net.d.ts @@ -0,0 +1,869 @@ +/** + * > Stability: 2 - Stable + * + * The `net` module provides an asynchronous network API for creating stream-based + * TCP or `IPC` servers ({@link createServer}) and clients + * ({@link createConnection}). + * + * It can be accessed using: + * + * ```js + * const net = require('net'); + * ``` + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/net.js) + */ +declare module 'net' { + import * as stream from 'node:stream'; + import { Abortable, EventEmitter } from 'node:events'; + import * as dns from 'node:dns'; + type LookupFunction = (hostname: string, options: dns.LookupOneOptions, callback: (err: NodeJS.ErrnoException | null, address: string, family: number) => void) => void; + interface AddressInfo { + address: string; + family: string; + port: number; + } + interface SocketConstructorOpts { + fd?: number | undefined; + allowHalfOpen?: boolean | undefined; + readable?: boolean | undefined; + writable?: boolean | undefined; + signal?: AbortSignal; + } + interface OnReadOpts { + buffer: Uint8Array | (() => Uint8Array); + /** + * This function is called for every chunk of incoming data. + * Two arguments are passed to it: the number of bytes written to buffer and a reference to buffer. + * Return false from this function to implicitly pause() the socket. + */ + callback(bytesWritten: number, buf: Uint8Array): boolean; + } + interface ConnectOpts { + /** + * If specified, incoming data is stored in a single buffer and passed to the supplied callback when data arrives on the socket. + * Note: this will cause the streaming functionality to not provide any data, however events like 'error', 'end', and 'close' will + * still be emitted as normal and methods like pause() and resume() will also behave as expected. + */ + onread?: OnReadOpts | undefined; + } + interface TcpSocketConnectOpts extends ConnectOpts { + port: number; + host?: string | undefined; + localAddress?: string | undefined; + localPort?: number | undefined; + hints?: number | undefined; + family?: number | undefined; + lookup?: LookupFunction | undefined; + noDelay?: boolean | undefined; + keepAlive?: boolean | undefined; + keepAliveInitialDelay?: number | undefined; + } + interface IpcSocketConnectOpts extends ConnectOpts { + path: string; + } + type SocketConnectOpts = TcpSocketConnectOpts | IpcSocketConnectOpts; + type SocketReadyState = 'opening' | 'open' | 'readOnly' | 'writeOnly' | 'closed'; + /** + * This class is an abstraction of a TCP socket or a streaming `IPC` endpoint + * (uses named pipes on Windows, and Unix domain sockets otherwise). It is also + * an `EventEmitter`. + * + * A `net.Socket` can be created by the user and used directly to interact with + * a server. For example, it is returned by {@link createConnection}, + * so the user can use it to talk to the server. + * + * It can also be created by Node.js and passed to the user when a connection + * is received. For example, it is passed to the listeners of a `'connection'` event emitted on a {@link Server}, so the user can use + * it to interact with the client. + * @since v0.3.4 + */ + class Socket extends stream.Duplex { + constructor(options?: SocketConstructorOpts); + /** + * Sends data on the socket. The second parameter specifies the encoding in the + * case of a string. It defaults to UTF8 encoding. + * + * Returns `true` if the entire data was flushed successfully to the kernel + * buffer. Returns `false` if all or part of the data was queued in user memory.`'drain'` will be emitted when the buffer is again free. + * + * The optional `callback` parameter will be executed when the data is finally + * written out, which may not be immediately. + * + * See `Writable` stream `write()` method for more + * information. + * @since v0.1.90 + * @param [encoding='utf8'] Only used when data is `string`. + */ + write(buffer: Uint8Array | string, cb?: (err?: Error) => void): boolean; + write(str: Uint8Array | string, encoding?: BufferEncoding, cb?: (err?: Error) => void): boolean; + /** + * Initiate a connection on a given socket. + * + * Possible signatures: + * + * * `socket.connect(options[, connectListener])` + * * `socket.connect(path[, connectListener])` for `IPC` connections. + * * `socket.connect(port[, host][, connectListener])` for TCP connections. + * * Returns: `net.Socket` The socket itself. + * + * This function is asynchronous. When the connection is established, the `'connect'` event will be emitted. If there is a problem connecting, + * instead of a `'connect'` event, an `'error'` event will be emitted with + * the error passed to the `'error'` listener. + * The last parameter `connectListener`, if supplied, will be added as a listener + * for the `'connect'` event **once**. + * + * This function should only be used for reconnecting a socket after`'close'` has been emitted or otherwise it may lead to undefined + * behavior. + */ + connect(options: SocketConnectOpts, connectionListener?: () => void): this; + connect(port: number, host: string, connectionListener?: () => void): this; + connect(port: number, connectionListener?: () => void): this; + connect(path: string, connectionListener?: () => void): this; + /** + * Set the encoding for the socket as a `Readable Stream`. See `readable.setEncoding()` for more information. + * @since v0.1.90 + * @return The socket itself. + */ + setEncoding(encoding?: BufferEncoding): this; + /** + * Pauses the reading of data. That is, `'data'` events will not be emitted. + * Useful to throttle back an upload. + * @return The socket itself. + */ + pause(): this; + /** + * Close the TCP connection by sending an RST packet and destroy the stream. + * If this TCP socket is in connecting status, it will send an RST packet + * and destroy this TCP socket once it is connected. Otherwise, it will call + * `socket.destroy` with an `ERR_SOCKET_CLOSED` Error. If this is not a TCP socket + * (for example, a pipe), calling this method will immediately throw + * an `ERR_INVALID_HANDLE_TYPE` Error. + * @since v18.3.0 + * @return The socket itself. + */ + resetAndDestroy(): this; + /** + * Resumes reading after a call to `socket.pause()`. + * @return The socket itself. + */ + resume(): this; + /** + * Sets the socket to timeout after `timeout` milliseconds of inactivity on + * the socket. By default `net.Socket` do not have a timeout. + * + * When an idle timeout is triggered the socket will receive a `'timeout'` event but the connection will not be severed. The user must manually call `socket.end()` or `socket.destroy()` to + * end the connection. + * + * ```js + * socket.setTimeout(3000); + * socket.on('timeout', () => { + * console.log('socket timeout'); + * socket.end(); + * }); + * ``` + * + * If `timeout` is 0, then the existing idle timeout is disabled. + * + * The optional `callback` parameter will be added as a one-time listener for the `'timeout'` event. + * @since v0.1.90 + * @return The socket itself. + */ + setTimeout(timeout: number, callback?: () => void): this; + /** + * Enable/disable the use of Nagle's algorithm. + * + * When a TCP connection is created, it will have Nagle's algorithm enabled. + * + * Nagle's algorithm delays data before it is sent via the network. It attempts + * to optimize throughput at the expense of latency. + * + * Passing `true` for `noDelay` or not passing an argument will disable Nagle's + * algorithm for the socket. Passing `false` for `noDelay` will enable Nagle's + * algorithm. + * @since v0.1.90 + * @param [noDelay=true] + * @return The socket itself. + */ + setNoDelay(noDelay?: boolean): this; + /** + * Enable/disable keep-alive functionality, and optionally set the initial + * delay before the first keepalive probe is sent on an idle socket. + * + * Set `initialDelay` (in milliseconds) to set the delay between the last + * data packet received and the first keepalive probe. Setting `0` for`initialDelay` will leave the value unchanged from the default + * (or previous) setting. + * + * Enabling the keep-alive functionality will set the following socket options: + * + * * `SO_KEEPALIVE=1` + * * `TCP_KEEPIDLE=initialDelay` + * * `TCP_KEEPCNT=10` + * * `TCP_KEEPINTVL=1` + * @since v0.1.92 + * @param [enable=false] + * @param [initialDelay=0] + * @return The socket itself. + */ + setKeepAlive(enable?: boolean, initialDelay?: number): this; + /** + * Returns the bound `address`, the address `family` name and `port` of the + * socket as reported by the operating system:`{ port: 12346, family: 'IPv4', address: '127.0.0.1' }` + * @since v0.1.90 + */ + address(): AddressInfo | {}; + /** + * Calling `unref()` on a socket will allow the program to exit if this is the only + * active socket in the event system. If the socket is already `unref`ed calling`unref()` again will have no effect. + * @since v0.9.1 + * @return The socket itself. + */ + unref(): this; + /** + * Opposite of `unref()`, calling `ref()` on a previously `unref`ed socket will _not_ let the program exit if it's the only socket left (the default behavior). + * If the socket is `ref`ed calling `ref` again will have no effect. + * @since v0.9.1 + * @return The socket itself. + */ + ref(): this; + /** + * This property shows the number of characters buffered for writing. The buffer + * may contain strings whose length after encoding is not yet known. So this number + * is only an approximation of the number of bytes in the buffer. + * + * `net.Socket` has the property that `socket.write()` always works. This is to + * help users get up and running quickly. The computer cannot always keep up + * with the amount of data that is written to a socket. The network connection + * simply might be too slow. Node.js will internally queue up the data written to a + * socket and send it out over the wire when it is possible. + * + * The consequence of this internal buffering is that memory may grow. + * Users who experience large or growing `bufferSize` should attempt to + * "throttle" the data flows in their program with `socket.pause()` and `socket.resume()`. + * @since v0.3.8 + * @deprecated Since v14.6.0 - Use `writableLength` instead. + */ + readonly bufferSize: number; + /** + * The amount of received bytes. + * @since v0.5.3 + */ + readonly bytesRead: number; + /** + * The amount of bytes sent. + * @since v0.5.3 + */ + readonly bytesWritten: number; + /** + * If `true`,`socket.connect(options[, connectListener])` was + * called and has not yet finished. It will stay `true` until the socket becomes + * connected, then it is set to `false` and the `'connect'` event is emitted. Note + * that the `socket.connect(options[, connectListener])` callback is a listener for the `'connect'` event. + * @since v6.1.0 + */ + readonly connecting: boolean; + /** + * See `writable.destroyed` for further details. + */ + readonly destroyed: boolean; + /** + * The string representation of the local IP address the remote client is + * connecting on. For example, in a server listening on `'0.0.0.0'`, if a client + * connects on `'192.168.1.1'`, the value of `socket.localAddress` would be`'192.168.1.1'`. + * @since v0.9.6 + */ + readonly localAddress?: string; + /** + * The numeric representation of the local port. For example, `80` or `21`. + * @since v0.9.6 + */ + readonly localPort?: number; + /** + * The string representation of the local IP family. `'IPv4'` or `'IPv6'`. + * @since v18.8.0 + */ + readonly localFamily?: string; + /** + * This property represents the state of the connection as a string. + * @see {https://nodejs.org/api/net.html#socketreadystate} + * @since v0.5.0 + */ + readonly readyState: SocketReadyState; + /** + * The string representation of the remote IP address. For example,`'74.125.127.100'` or `'2001:4860:a005::68'`. Value may be `undefined` if + * the socket is destroyed (for example, if the client disconnected). + * @since v0.5.10 + */ + readonly remoteAddress?: string | undefined; + /** + * The string representation of the remote IP family. `'IPv4'` or `'IPv6'`. + * @since v0.11.14 + */ + readonly remoteFamily?: string | undefined; + /** + * The numeric representation of the remote port. For example, `80` or `21`. + * @since v0.5.10 + */ + readonly remotePort?: number | undefined; + /** + * The socket timeout in milliseconds as set by socket.setTimeout(). It is undefined if a timeout has not been set. + * @since v10.7.0 + */ + readonly timeout?: number | undefined; + /** + * Half-closes the socket. i.e., it sends a FIN packet. It is possible the + * server will still send some data. + * + * See `writable.end()` for further details. + * @since v0.1.90 + * @param [encoding='utf8'] Only used when data is `string`. + * @param callback Optional callback for when the socket is finished. + * @return The socket itself. + */ + end(callback?: () => void): this; + end(buffer: Uint8Array | string, callback?: () => void): this; + end(str: Uint8Array | string, encoding?: BufferEncoding, callback?: () => void): this; + /** + * events.EventEmitter + * 1. close + * 2. connect + * 3. data + * 4. drain + * 5. end + * 6. error + * 7. lookup + * 8. ready + * 9. timeout + */ + addListener(event: string, listener: (...args: any[]) => void): this; + addListener(event: 'close', listener: (hadError: boolean) => void): this; + addListener(event: 'connect', listener: () => void): this; + addListener(event: 'data', listener: (data: Buffer) => void): this; + addListener(event: 'drain', listener: () => void): this; + addListener(event: 'end', listener: () => void): this; + addListener(event: 'error', listener: (err: Error) => void): this; + addListener(event: 'lookup', listener: (err: Error, address: string, family: string | number, host: string) => void): this; + addListener(event: 'ready', listener: () => void): this; + addListener(event: 'timeout', listener: () => void): this; + emit(event: string | symbol, ...args: any[]): boolean; + emit(event: 'close', hadError: boolean): boolean; + emit(event: 'connect'): boolean; + emit(event: 'data', data: Buffer): boolean; + emit(event: 'drain'): boolean; + emit(event: 'end'): boolean; + emit(event: 'error', err: Error): boolean; + emit(event: 'lookup', err: Error, address: string, family: string | number, host: string): boolean; + emit(event: 'ready'): boolean; + emit(event: 'timeout'): boolean; + on(event: string, listener: (...args: any[]) => void): this; + on(event: 'close', listener: (hadError: boolean) => void): this; + on(event: 'connect', listener: () => void): this; + on(event: 'data', listener: (data: Buffer) => void): this; + on(event: 'drain', listener: () => void): this; + on(event: 'end', listener: () => void): this; + on(event: 'error', listener: (err: Error) => void): this; + on(event: 'lookup', listener: (err: Error, address: string, family: string | number, host: string) => void): this; + on(event: 'ready', listener: () => void): this; + on(event: 'timeout', listener: () => void): this; + once(event: string, listener: (...args: any[]) => void): this; + once(event: 'close', listener: (hadError: boolean) => void): this; + once(event: 'connect', listener: () => void): this; + once(event: 'data', listener: (data: Buffer) => void): this; + once(event: 'drain', listener: () => void): this; + once(event: 'end', listener: () => void): this; + once(event: 'error', listener: (err: Error) => void): this; + once(event: 'lookup', listener: (err: Error, address: string, family: string | number, host: string) => void): this; + once(event: 'ready', listener: () => void): this; + once(event: 'timeout', listener: () => void): this; + prependListener(event: string, listener: (...args: any[]) => void): this; + prependListener(event: 'close', listener: (hadError: boolean) => void): this; + prependListener(event: 'connect', listener: () => void): this; + prependListener(event: 'data', listener: (data: Buffer) => void): this; + prependListener(event: 'drain', listener: () => void): this; + prependListener(event: 'end', listener: () => void): this; + prependListener(event: 'error', listener: (err: Error) => void): this; + prependListener(event: 'lookup', listener: (err: Error, address: string, family: string | number, host: string) => void): this; + prependListener(event: 'ready', listener: () => void): this; + prependListener(event: 'timeout', listener: () => void): this; + prependOnceListener(event: string, listener: (...args: any[]) => void): this; + prependOnceListener(event: 'close', listener: (hadError: boolean) => void): this; + prependOnceListener(event: 'connect', listener: () => void): this; + prependOnceListener(event: 'data', listener: (data: Buffer) => void): this; + prependOnceListener(event: 'drain', listener: () => void): this; + prependOnceListener(event: 'end', listener: () => void): this; + prependOnceListener(event: 'error', listener: (err: Error) => void): this; + prependOnceListener(event: 'lookup', listener: (err: Error, address: string, family: string | number, host: string) => void): this; + prependOnceListener(event: 'ready', listener: () => void): this; + prependOnceListener(event: 'timeout', listener: () => void): this; + } + interface ListenOptions extends Abortable { + port?: number | undefined; + host?: string | undefined; + backlog?: number | undefined; + path?: string | undefined; + exclusive?: boolean | undefined; + readableAll?: boolean | undefined; + writableAll?: boolean | undefined; + /** + * @default false + */ + ipv6Only?: boolean | undefined; + } + interface ServerOpts { + /** + * Indicates whether half-opened TCP connections are allowed. + * @default false + */ + allowHalfOpen?: boolean | undefined; + /** + * Indicates whether the socket should be paused on incoming connections. + * @default false + */ + pauseOnConnect?: boolean | undefined; + /** + * If set to `true`, it disables the use of Nagle's algorithm immediately after a new incoming connection is received. + * @default false + * @since v16.5.0 + */ + noDelay?: boolean | undefined; + /** + * If set to `true`, it enables keep-alive functionality on the socket immediately after a new incoming connection is received, + * similarly on what is done in `socket.setKeepAlive([enable][, initialDelay])`. + * @default false + * @since v16.5.0 + */ + keepAlive?: boolean | undefined; + /** + * If set to a positive number, it sets the initial delay before the first keepalive probe is sent on an idle socket. + * @default 0 + * @since v16.5.0 + */ + keepAliveInitialDelay?: number | undefined; + } + interface DropArgument { + localAddress?: string; + localPort?: number; + localFamily?: string; + remoteAddress?: string; + remotePort?: number; + remoteFamily?: string; + } + /** + * This class is used to create a TCP or `IPC` server. + * @since v0.1.90 + */ + class Server extends EventEmitter { + constructor(connectionListener?: (socket: Socket) => void); + constructor(options?: ServerOpts, connectionListener?: (socket: Socket) => void); + /** + * Start a server listening for connections. A `net.Server` can be a TCP or + * an `IPC` server depending on what it listens to. + * + * Possible signatures: + * + * * `server.listen(handle[, backlog][, callback])` + * * `server.listen(options[, callback])` + * * `server.listen(path[, backlog][, callback])` for `IPC` servers + * * `server.listen([port[, host[, backlog]]][, callback])` for TCP servers + * + * This function is asynchronous. When the server starts listening, the `'listening'` event will be emitted. The last parameter `callback`will be added as a listener for the `'listening'` + * event. + * + * All `listen()` methods can take a `backlog` parameter to specify the maximum + * length of the queue of pending connections. The actual length will be determined + * by the OS through sysctl settings such as `tcp_max_syn_backlog` and `somaxconn`on Linux. The default value of this parameter is 511 (not 512). + * + * All {@link Socket} are set to `SO_REUSEADDR` (see [`socket(7)`](https://man7.org/linux/man-pages/man7/socket.7.html) for + * details). + * + * The `server.listen()` method can be called again if and only if there was an + * error during the first `server.listen()` call or `server.close()` has been + * called. Otherwise, an `ERR_SERVER_ALREADY_LISTEN` error will be thrown. + * + * One of the most common errors raised when listening is `EADDRINUSE`. + * This happens when another server is already listening on the requested`port`/`path`/`handle`. One way to handle this would be to retry + * after a certain amount of time: + * + * ```js + * server.on('error', (e) => { + * if (e.code === 'EADDRINUSE') { + * console.log('Address in use, retrying...'); + * setTimeout(() => { + * server.close(); + * server.listen(PORT, HOST); + * }, 1000); + * } + * }); + * ``` + */ + listen(port?: number, hostname?: string, backlog?: number, listeningListener?: () => void): this; + listen(port?: number, hostname?: string, listeningListener?: () => void): this; + listen(port?: number, backlog?: number, listeningListener?: () => void): this; + listen(port?: number, listeningListener?: () => void): this; + listen(path: string, backlog?: number, listeningListener?: () => void): this; + listen(path: string, listeningListener?: () => void): this; + listen(options: ListenOptions, listeningListener?: () => void): this; + listen(handle: any, backlog?: number, listeningListener?: () => void): this; + listen(handle: any, listeningListener?: () => void): this; + /** + * Stops the server from accepting new connections and keeps existing + * connections. This function is asynchronous, the server is finally closed + * when all connections are ended and the server emits a `'close'` event. + * The optional `callback` will be called once the `'close'` event occurs. Unlike + * that event, it will be called with an `Error` as its only argument if the server + * was not open when it was closed. + * @since v0.1.90 + * @param callback Called when the server is closed. + */ + close(callback?: (err?: Error) => void): this; + /** + * Returns the bound `address`, the address `family` name, and `port` of the server + * as reported by the operating system if listening on an IP socket + * (useful to find which port was assigned when getting an OS-assigned address):`{ port: 12346, family: 'IPv4', address: '127.0.0.1' }`. + * + * For a server listening on a pipe or Unix domain socket, the name is returned + * as a string. + * + * ```js + * const server = net.createServer((socket) => { + * socket.end('goodbye\n'); + * }).on('error', (err) => { + * // Handle errors here. + * throw err; + * }); + * + * // Grab an arbitrary unused port. + * server.listen(() => { + * console.log('opened server on', server.address()); + * }); + * ``` + * + * `server.address()` returns `null` before the `'listening'` event has been + * emitted or after calling `server.close()`. + * @since v0.1.90 + */ + address(): AddressInfo | string | null; + /** + * Asynchronously get the number of concurrent connections on the server. Works + * when sockets were sent to forks. + * + * Callback should take two arguments `err` and `count`. + * @since v0.9.7 + */ + getConnections(cb: (error: Error | null, count: number) => void): void; + /** + * Opposite of `unref()`, calling `ref()` on a previously `unref`ed server will _not_ let the program exit if it's the only server left (the default behavior). + * If the server is `ref`ed calling `ref()` again will have no effect. + * @since v0.9.1 + */ + ref(): this; + /** + * Calling `unref()` on a server will allow the program to exit if this is the only + * active server in the event system. If the server is already `unref`ed calling`unref()` again will have no effect. + * @since v0.9.1 + */ + unref(): this; + /** + * Set this property to reject connections when the server's connection count gets + * high. + * + * It is not recommended to use this option once a socket has been sent to a child + * with `child_process.fork()`. + * @since v0.2.0 + */ + maxConnections: number; + connections: number; + /** + * Indicates whether or not the server is listening for connections. + * @since v5.7.0 + */ + listening: boolean; + /** + * events.EventEmitter + * 1. close + * 2. connection + * 3. error + * 4. listening + * 5. drop + */ + addListener(event: string, listener: (...args: any[]) => void): this; + addListener(event: 'close', listener: () => void): this; + addListener(event: 'connection', listener: (socket: Socket) => void): this; + addListener(event: 'error', listener: (err: Error) => void): this; + addListener(event: 'listening', listener: () => void): this; + addListener(event: 'drop', listener: (data?: DropArgument) => void): this; + emit(event: string | symbol, ...args: any[]): boolean; + emit(event: 'close'): boolean; + emit(event: 'connection', socket: Socket): boolean; + emit(event: 'error', err: Error): boolean; + emit(event: 'listening'): boolean; + emit(event: 'drop', data?: DropArgument): boolean; + on(event: string, listener: (...args: any[]) => void): this; + on(event: 'close', listener: () => void): this; + on(event: 'connection', listener: (socket: Socket) => void): this; + on(event: 'error', listener: (err: Error) => void): this; + on(event: 'listening', listener: () => void): this; + on(event: 'drop', listener: (data?: DropArgument) => void): this; + once(event: string, listener: (...args: any[]) => void): this; + once(event: 'close', listener: () => void): this; + once(event: 'connection', listener: (socket: Socket) => void): this; + once(event: 'error', listener: (err: Error) => void): this; + once(event: 'listening', listener: () => void): this; + once(event: 'drop', listener: (data?: DropArgument) => void): this; + prependListener(event: string, listener: (...args: any[]) => void): this; + prependListener(event: 'close', listener: () => void): this; + prependListener(event: 'connection', listener: (socket: Socket) => void): this; + prependListener(event: 'error', listener: (err: Error) => void): this; + prependListener(event: 'listening', listener: () => void): this; + prependListener(event: 'drop', listener: (data?: DropArgument) => void): this; + prependOnceListener(event: string, listener: (...args: any[]) => void): this; + prependOnceListener(event: 'close', listener: () => void): this; + prependOnceListener(event: 'connection', listener: (socket: Socket) => void): this; + prependOnceListener(event: 'error', listener: (err: Error) => void): this; + prependOnceListener(event: 'listening', listener: () => void): this; + prependOnceListener(event: 'drop', listener: (data?: DropArgument) => void): this; + } + type IPVersion = 'ipv4' | 'ipv6'; + /** + * The `BlockList` object can be used with some network APIs to specify rules for + * disabling inbound or outbound access to specific IP addresses, IP ranges, or + * IP subnets. + * @since v15.0.0, v14.18.0 + */ + class BlockList { + /** + * Adds a rule to block the given IP address. + * @since v15.0.0, v14.18.0 + * @param address An IPv4 or IPv6 address. + * @param [type='ipv4'] Either `'ipv4'` or `'ipv6'`. + */ + addAddress(address: string, type?: IPVersion): void; + addAddress(address: SocketAddress): void; + /** + * Adds a rule to block a range of IP addresses from `start` (inclusive) to`end` (inclusive). + * @since v15.0.0, v14.18.0 + * @param start The starting IPv4 or IPv6 address in the range. + * @param end The ending IPv4 or IPv6 address in the range. + * @param [type='ipv4'] Either `'ipv4'` or `'ipv6'`. + */ + addRange(start: string, end: string, type?: IPVersion): void; + addRange(start: SocketAddress, end: SocketAddress): void; + /** + * Adds a rule to block a range of IP addresses specified as a subnet mask. + * @since v15.0.0, v14.18.0 + * @param net The network IPv4 or IPv6 address. + * @param prefix The number of CIDR prefix bits. For IPv4, this must be a value between `0` and `32`. For IPv6, this must be between `0` and `128`. + * @param [type='ipv4'] Either `'ipv4'` or `'ipv6'`. + */ + addSubnet(net: SocketAddress, prefix: number): void; + addSubnet(net: string, prefix: number, type?: IPVersion): void; + /** + * Returns `true` if the given IP address matches any of the rules added to the`BlockList`. + * + * ```js + * const blockList = new net.BlockList(); + * blockList.addAddress('123.123.123.123'); + * blockList.addRange('10.0.0.1', '10.0.0.10'); + * blockList.addSubnet('8592:757c:efae:4e45::', 64, 'ipv6'); + * + * console.log(blockList.check('123.123.123.123')); // Prints: true + * console.log(blockList.check('10.0.0.3')); // Prints: true + * console.log(blockList.check('222.111.111.222')); // Prints: false + * + * // IPv6 notation for IPv4 addresses works: + * console.log(blockList.check('::ffff:7b7b:7b7b', 'ipv6')); // Prints: true + * console.log(blockList.check('::ffff:123.123.123.123', 'ipv6')); // Prints: true + * ``` + * @since v15.0.0, v14.18.0 + * @param address The IP address to check + * @param [type='ipv4'] Either `'ipv4'` or `'ipv6'`. + */ + check(address: SocketAddress): boolean; + check(address: string, type?: IPVersion): boolean; + } + interface TcpNetConnectOpts extends TcpSocketConnectOpts, SocketConstructorOpts { + timeout?: number | undefined; + } + interface IpcNetConnectOpts extends IpcSocketConnectOpts, SocketConstructorOpts { + timeout?: number | undefined; + } + type NetConnectOpts = TcpNetConnectOpts | IpcNetConnectOpts; + /** + * Creates a new TCP or `IPC` server. + * + * If `allowHalfOpen` is set to `true`, when the other end of the socket + * signals the end of transmission, the server will only send back the end of + * transmission when `socket.end()` is explicitly called. For example, in the + * context of TCP, when a FIN packed is received, a FIN packed is sent + * back only when `socket.end()` is explicitly called. Until then the + * connection is half-closed (non-readable but still writable). See `'end'` event and [RFC 1122](https://tools.ietf.org/html/rfc1122) (section 4.2.2.13) for more information. + * + * If `pauseOnConnect` is set to `true`, then the socket associated with each + * incoming connection will be paused, and no data will be read from its handle. + * This allows connections to be passed between processes without any data being + * read by the original process. To begin reading data from a paused socket, call `socket.resume()`. + * + * The server can be a TCP server or an `IPC` server, depending on what it `listen()` to. + * + * Here is an example of a TCP echo server which listens for connections + * on port 8124: + * + * ```js + * const net = require('net'); + * const server = net.createServer((c) => { + * // 'connection' listener. + * console.log('client connected'); + * c.on('end', () => { + * console.log('client disconnected'); + * }); + * c.write('hello\r\n'); + * c.pipe(c); + * }); + * server.on('error', (err) => { + * throw err; + * }); + * server.listen(8124, () => { + * console.log('server bound'); + * }); + * ``` + * + * Test this by using `telnet`: + * + * ```console + * $ telnet localhost 8124 + * ``` + * + * To listen on the socket `/tmp/echo.sock`: + * + * ```js + * server.listen('/tmp/echo.sock', () => { + * console.log('server bound'); + * }); + * ``` + * + * Use `nc` to connect to a Unix domain socket server: + * + * ```console + * $ nc -U /tmp/echo.sock + * ``` + * @since v0.5.0 + * @param connectionListener Automatically set as a listener for the {@link 'connection'} event. + */ + function createServer(connectionListener?: (socket: Socket) => void): Server; + function createServer(options?: ServerOpts, connectionListener?: (socket: Socket) => void): Server; + /** + * Aliases to {@link createConnection}. + * + * Possible signatures: + * + * * {@link connect} + * * {@link connect} for `IPC` connections. + * * {@link connect} for TCP connections. + */ + function connect(options: NetConnectOpts, connectionListener?: () => void): Socket; + function connect(port: number, host?: string, connectionListener?: () => void): Socket; + function connect(path: string, connectionListener?: () => void): Socket; + /** + * A factory function, which creates a new {@link Socket}, + * immediately initiates connection with `socket.connect()`, + * then returns the `net.Socket` that starts the connection. + * + * When the connection is established, a `'connect'` event will be emitted + * on the returned socket. The last parameter `connectListener`, if supplied, + * will be added as a listener for the `'connect'` event **once**. + * + * Possible signatures: + * + * * {@link createConnection} + * * {@link createConnection} for `IPC` connections. + * * {@link createConnection} for TCP connections. + * + * The {@link connect} function is an alias to this function. + */ + function createConnection(options: NetConnectOpts, connectionListener?: () => void): Socket; + function createConnection(port: number, host?: string, connectionListener?: () => void): Socket; + function createConnection(path: string, connectionListener?: () => void): Socket; + /** + * Returns `6` if `input` is an IPv6 address. Returns `4` if `input` is an IPv4 + * address in [dot-decimal notation](https://en.wikipedia.org/wiki/Dot-decimal_notation) with no leading zeroes. Otherwise, returns`0`. + * + * ```js + * net.isIP('::1'); // returns 6 + * net.isIP('127.0.0.1'); // returns 4 + * net.isIP('127.000.000.001'); // returns 0 + * net.isIP('127.0.0.1/24'); // returns 0 + * net.isIP('fhqwhgads'); // returns 0 + * ``` + * @since v0.3.0 + */ + function isIP(input: string): number; + /** + * Returns `true` if `input` is an IPv4 address in [dot-decimal notation](https://en.wikipedia.org/wiki/Dot-decimal_notation) with no + * leading zeroes. Otherwise, returns `false`. + * + * ```js + * net.isIPv4('127.0.0.1'); // returns true + * net.isIPv4('127.000.000.001'); // returns false + * net.isIPv4('127.0.0.1/24'); // returns false + * net.isIPv4('fhqwhgads'); // returns false + * ``` + * @since v0.3.0 + */ + function isIPv4(input: string): boolean; + /** + * Returns `true` if `input` is an IPv6 address. Otherwise, returns `false`. + * + * ```js + * net.isIPv6('::1'); // returns true + * net.isIPv6('fhqwhgads'); // returns false + * ``` + * @since v0.3.0 + */ + function isIPv6(input: string): boolean; + interface SocketAddressInitOptions { + /** + * The network address as either an IPv4 or IPv6 string. + * @default 127.0.0.1 + */ + address?: string | undefined; + /** + * @default `'ipv4'` + */ + family?: IPVersion | undefined; + /** + * An IPv6 flow-label used only if `family` is `'ipv6'`. + * @default 0 + */ + flowlabel?: number | undefined; + /** + * An IP port. + * @default 0 + */ + port?: number | undefined; + } + /** + * @since v15.14.0, v14.18.0 + */ + class SocketAddress { + constructor(options: SocketAddressInitOptions); + /** + * @since v15.14.0, v14.18.0 + */ + readonly address: string; + /** + * Either \`'ipv4'\` or \`'ipv6'\`. + * @since v15.14.0, v14.18.0 + */ + readonly family: IPVersion; + /** + * @since v15.14.0, v14.18.0 + */ + readonly port: number; + /** + * @since v15.14.0, v14.18.0 + */ + readonly flowlabel: number; + } +} +declare module 'node:net' { + export * from 'net'; +} diff --git a/node_modules/@types/node/ts4.8/os.d.ts b/node_modules/@types/node/ts4.8/os.d.ts new file mode 100644 index 000000000..3c555992d --- /dev/null +++ b/node_modules/@types/node/ts4.8/os.d.ts @@ -0,0 +1,466 @@ +/** + * The `os` module provides operating system-related utility methods and + * properties. It can be accessed using: + * + * ```js + * const os = require('os'); + * ``` + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/os.js) + */ +declare module 'os' { + interface CpuInfo { + model: string; + speed: number; + times: { + user: number; + nice: number; + sys: number; + idle: number; + irq: number; + }; + } + interface NetworkInterfaceBase { + address: string; + netmask: string; + mac: string; + internal: boolean; + cidr: string | null; + } + interface NetworkInterfaceInfoIPv4 extends NetworkInterfaceBase { + family: 'IPv4'; + scopeid?: undefined; + } + interface NetworkInterfaceInfoIPv6 extends NetworkInterfaceBase { + family: 'IPv6'; + scopeid: number; + } + interface UserInfo { + username: T; + uid: number; + gid: number; + shell: T; + homedir: T; + } + type NetworkInterfaceInfo = NetworkInterfaceInfoIPv4 | NetworkInterfaceInfoIPv6; + /** + * Returns the host name of the operating system as a string. + * @since v0.3.3 + */ + function hostname(): string; + /** + * Returns an array containing the 1, 5, and 15 minute load averages. + * + * The load average is a measure of system activity calculated by the operating + * system and expressed as a fractional number. + * + * The load average is a Unix-specific concept. On Windows, the return value is + * always `[0, 0, 0]`. + * @since v0.3.3 + */ + function loadavg(): number[]; + /** + * Returns the system uptime in number of seconds. + * @since v0.3.3 + */ + function uptime(): number; + /** + * Returns the amount of free system memory in bytes as an integer. + * @since v0.3.3 + */ + function freemem(): number; + /** + * Returns the total amount of system memory in bytes as an integer. + * @since v0.3.3 + */ + function totalmem(): number; + /** + * Returns an array of objects containing information about each logical CPU core. + * + * The properties included on each object include: + * + * ```js + * [ + * { + * model: 'Intel(R) Core(TM) i7 CPU 860 @ 2.80GHz', + * speed: 2926, + * times: { + * user: 252020, + * nice: 0, + * sys: 30340, + * idle: 1070356870, + * irq: 0 + * } + * }, + * { + * model: 'Intel(R) Core(TM) i7 CPU 860 @ 2.80GHz', + * speed: 2926, + * times: { + * user: 306960, + * nice: 0, + * sys: 26980, + * idle: 1071569080, + * irq: 0 + * } + * }, + * { + * model: 'Intel(R) Core(TM) i7 CPU 860 @ 2.80GHz', + * speed: 2926, + * times: { + * user: 248450, + * nice: 0, + * sys: 21750, + * idle: 1070919370, + * irq: 0 + * } + * }, + * { + * model: 'Intel(R) Core(TM) i7 CPU 860 @ 2.80GHz', + * speed: 2926, + * times: { + * user: 256880, + * nice: 0, + * sys: 19430, + * idle: 1070905480, + * irq: 20 + * } + * }, + * ] + * ``` + * + * `nice` values are POSIX-only. On Windows, the `nice` values of all processors + * are always 0. + * @since v0.3.3 + */ + function cpus(): CpuInfo[]; + /** + * Returns the operating system name as returned by [`uname(3)`](https://linux.die.net/man/3/uname). For example, it + * returns `'Linux'` on Linux, `'Darwin'` on macOS, and `'Windows_NT'` on Windows. + * + * See [https://en.wikipedia.org/wiki/Uname#Examples](https://en.wikipedia.org/wiki/Uname#Examples) for additional information + * about the output of running [`uname(3)`](https://linux.die.net/man/3/uname) on various operating systems. + * @since v0.3.3 + */ + function type(): string; + /** + * Returns the operating system as a string. + * + * On POSIX systems, the operating system release is determined by calling [`uname(3)`](https://linux.die.net/man/3/uname). On Windows, `GetVersionExW()` is used. See + * [https://en.wikipedia.org/wiki/Uname#Examples](https://en.wikipedia.org/wiki/Uname#Examples) for more information. + * @since v0.3.3 + */ + function release(): string; + /** + * Returns an object containing network interfaces that have been assigned a + * network address. + * + * Each key on the returned object identifies a network interface. The associated + * value is an array of objects that each describe an assigned network address. + * + * The properties available on the assigned network address object include: + * + * ```js + * { + * lo: [ + * { + * address: '127.0.0.1', + * netmask: '255.0.0.0', + * family: 'IPv4', + * mac: '00:00:00:00:00:00', + * internal: true, + * cidr: '127.0.0.1/8' + * }, + * { + * address: '::1', + * netmask: 'ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff', + * family: 'IPv6', + * mac: '00:00:00:00:00:00', + * scopeid: 0, + * internal: true, + * cidr: '::1/128' + * } + * ], + * eth0: [ + * { + * address: '192.168.1.108', + * netmask: '255.255.255.0', + * family: 'IPv4', + * mac: '01:02:03:0a:0b:0c', + * internal: false, + * cidr: '192.168.1.108/24' + * }, + * { + * address: 'fe80::a00:27ff:fe4e:66a1', + * netmask: 'ffff:ffff:ffff:ffff::', + * family: 'IPv6', + * mac: '01:02:03:0a:0b:0c', + * scopeid: 1, + * internal: false, + * cidr: 'fe80::a00:27ff:fe4e:66a1/64' + * } + * ] + * } + * ``` + * @since v0.6.0 + */ + function networkInterfaces(): NodeJS.Dict; + /** + * Returns the string path of the current user's home directory. + * + * On POSIX, it uses the `$HOME` environment variable if defined. Otherwise it + * uses the [effective UID](https://en.wikipedia.org/wiki/User_identifier#Effective_user_ID) to look up the user's home directory. + * + * On Windows, it uses the `USERPROFILE` environment variable if defined. + * Otherwise it uses the path to the profile directory of the current user. + * @since v2.3.0 + */ + function homedir(): string; + /** + * Returns information about the currently effective user. On POSIX platforms, + * this is typically a subset of the password file. The returned object includes + * the `username`, `uid`, `gid`, `shell`, and `homedir`. On Windows, the `uid` and`gid` fields are `-1`, and `shell` is `null`. + * + * The value of `homedir` returned by `os.userInfo()` is provided by the operating + * system. This differs from the result of `os.homedir()`, which queries + * environment variables for the home directory before falling back to the + * operating system response. + * + * Throws a `SystemError` if a user has no `username` or `homedir`. + * @since v6.0.0 + */ + function userInfo(options: { encoding: 'buffer' }): UserInfo; + function userInfo(options?: { encoding: BufferEncoding }): UserInfo; + type SignalConstants = { + [key in NodeJS.Signals]: number; + }; + namespace constants { + const UV_UDP_REUSEADDR: number; + namespace signals {} + const signals: SignalConstants; + namespace errno { + const E2BIG: number; + const EACCES: number; + const EADDRINUSE: number; + const EADDRNOTAVAIL: number; + const EAFNOSUPPORT: number; + const EAGAIN: number; + const EALREADY: number; + const EBADF: number; + const EBADMSG: number; + const EBUSY: number; + const ECANCELED: number; + const ECHILD: number; + const ECONNABORTED: number; + const ECONNREFUSED: number; + const ECONNRESET: number; + const EDEADLK: number; + const EDESTADDRREQ: number; + const EDOM: number; + const EDQUOT: number; + const EEXIST: number; + const EFAULT: number; + const EFBIG: number; + const EHOSTUNREACH: number; + const EIDRM: number; + const EILSEQ: number; + const EINPROGRESS: number; + const EINTR: number; + const EINVAL: number; + const EIO: number; + const EISCONN: number; + const EISDIR: number; + const ELOOP: number; + const EMFILE: number; + const EMLINK: number; + const EMSGSIZE: number; + const EMULTIHOP: number; + const ENAMETOOLONG: number; + const ENETDOWN: number; + const ENETRESET: number; + const ENETUNREACH: number; + const ENFILE: number; + const ENOBUFS: number; + const ENODATA: number; + const ENODEV: number; + const ENOENT: number; + const ENOEXEC: number; + const ENOLCK: number; + const ENOLINK: number; + const ENOMEM: number; + const ENOMSG: number; + const ENOPROTOOPT: number; + const ENOSPC: number; + const ENOSR: number; + const ENOSTR: number; + const ENOSYS: number; + const ENOTCONN: number; + const ENOTDIR: number; + const ENOTEMPTY: number; + const ENOTSOCK: number; + const ENOTSUP: number; + const ENOTTY: number; + const ENXIO: number; + const EOPNOTSUPP: number; + const EOVERFLOW: number; + const EPERM: number; + const EPIPE: number; + const EPROTO: number; + const EPROTONOSUPPORT: number; + const EPROTOTYPE: number; + const ERANGE: number; + const EROFS: number; + const ESPIPE: number; + const ESRCH: number; + const ESTALE: number; + const ETIME: number; + const ETIMEDOUT: number; + const ETXTBSY: number; + const EWOULDBLOCK: number; + const EXDEV: number; + const WSAEINTR: number; + const WSAEBADF: number; + const WSAEACCES: number; + const WSAEFAULT: number; + const WSAEINVAL: number; + const WSAEMFILE: number; + const WSAEWOULDBLOCK: number; + const WSAEINPROGRESS: number; + const WSAEALREADY: number; + const WSAENOTSOCK: number; + const WSAEDESTADDRREQ: number; + const WSAEMSGSIZE: number; + const WSAEPROTOTYPE: number; + const WSAENOPROTOOPT: number; + const WSAEPROTONOSUPPORT: number; + const WSAESOCKTNOSUPPORT: number; + const WSAEOPNOTSUPP: number; + const WSAEPFNOSUPPORT: number; + const WSAEAFNOSUPPORT: number; + const WSAEADDRINUSE: number; + const WSAEADDRNOTAVAIL: number; + const WSAENETDOWN: number; + const WSAENETUNREACH: number; + const WSAENETRESET: number; + const WSAECONNABORTED: number; + const WSAECONNRESET: number; + const WSAENOBUFS: number; + const WSAEISCONN: number; + const WSAENOTCONN: number; + const WSAESHUTDOWN: number; + const WSAETOOMANYREFS: number; + const WSAETIMEDOUT: number; + const WSAECONNREFUSED: number; + const WSAELOOP: number; + const WSAENAMETOOLONG: number; + const WSAEHOSTDOWN: number; + const WSAEHOSTUNREACH: number; + const WSAENOTEMPTY: number; + const WSAEPROCLIM: number; + const WSAEUSERS: number; + const WSAEDQUOT: number; + const WSAESTALE: number; + const WSAEREMOTE: number; + const WSASYSNOTREADY: number; + const WSAVERNOTSUPPORTED: number; + const WSANOTINITIALISED: number; + const WSAEDISCON: number; + const WSAENOMORE: number; + const WSAECANCELLED: number; + const WSAEINVALIDPROCTABLE: number; + const WSAEINVALIDPROVIDER: number; + const WSAEPROVIDERFAILEDINIT: number; + const WSASYSCALLFAILURE: number; + const WSASERVICE_NOT_FOUND: number; + const WSATYPE_NOT_FOUND: number; + const WSA_E_NO_MORE: number; + const WSA_E_CANCELLED: number; + const WSAEREFUSED: number; + } + namespace priority { + const PRIORITY_LOW: number; + const PRIORITY_BELOW_NORMAL: number; + const PRIORITY_NORMAL: number; + const PRIORITY_ABOVE_NORMAL: number; + const PRIORITY_HIGH: number; + const PRIORITY_HIGHEST: number; + } + } + const devNull: string; + const EOL: string; + /** + * Returns the operating system CPU architecture for which the Node.js binary was + * compiled. Possible values are `'arm'`, `'arm64'`, `'ia32'`, `'mips'`,`'mipsel'`, `'ppc'`, `'ppc64'`, `'s390'`, `'s390x'`, and `'x64'`. + * + * The return value is equivalent to `process.arch`. + * @since v0.5.0 + */ + function arch(): string; + /** + * Returns a string identifying the kernel version. + * + * On POSIX systems, the operating system release is determined by calling [`uname(3)`](https://linux.die.net/man/3/uname). On Windows, `RtlGetVersion()` is used, and if it is not + * available, `GetVersionExW()` will be used. See [https://en.wikipedia.org/wiki/Uname#Examples](https://en.wikipedia.org/wiki/Uname#Examples) for more information. + * @since v13.11.0, v12.17.0 + */ + function version(): string; + /** + * Returns a string identifying the operating system platform for which + * the Node.js binary was compiled. The value is set at compile time. + * Possible values are `'aix'`, `'darwin'`, `'freebsd'`,`'linux'`,`'openbsd'`, `'sunos'`, and `'win32'`. + * + * The return value is equivalent to `process.platform`. + * + * The value `'android'` may also be returned if Node.js is built on the Android + * operating system. [Android support is experimental](https://github.com/nodejs/node/blob/HEAD/BUILDING.md#androidandroid-based-devices-eg-firefox-os). + * @since v0.5.0 + */ + function platform(): NodeJS.Platform; + /** + * Returns the machine type as a string, such as arm, aarch64, mips, mips64, ppc64, ppc64le, s390, s390x, i386, i686, x86_64. + * + * On POSIX systems, the machine type is determined by calling [`uname(3)`](https://linux.die.net/man/3/uname). + * On Windows, `RtlGetVersion()` is used, and if it is not available, `GetVersionExW()` will be used. + * See [https://en.wikipedia.org/wiki/Uname#Examples](https://en.wikipedia.org/wiki/Uname#Examples) for more information. + * @since v18.9.0 + */ + function machine(): string; + /** + * Returns the operating system's default directory for temporary files as a + * string. + * @since v0.9.9 + */ + function tmpdir(): string; + /** + * Returns a string identifying the endianness of the CPU for which the Node.js + * binary was compiled. + * + * Possible values are `'BE'` for big endian and `'LE'` for little endian. + * @since v0.9.4 + */ + function endianness(): 'BE' | 'LE'; + /** + * Returns the scheduling priority for the process specified by `pid`. If `pid` is + * not provided or is `0`, the priority of the current process is returned. + * @since v10.10.0 + * @param [pid=0] The process ID to retrieve scheduling priority for. + */ + function getPriority(pid?: number): number; + /** + * Attempts to set the scheduling priority for the process specified by `pid`. If`pid` is not provided or is `0`, the process ID of the current process is used. + * + * The `priority` input must be an integer between `-20` (high priority) and `19`(low priority). Due to differences between Unix priority levels and Windows + * priority classes, `priority` is mapped to one of six priority constants in`os.constants.priority`. When retrieving a process priority level, this range + * mapping may cause the return value to be slightly different on Windows. To avoid + * confusion, set `priority` to one of the priority constants. + * + * On Windows, setting priority to `PRIORITY_HIGHEST` requires elevated user + * privileges. Otherwise the set priority will be silently reduced to`PRIORITY_HIGH`. + * @since v10.10.0 + * @param [pid=0] The process ID to set scheduling priority for. + * @param priority The scheduling priority to assign to the process. + */ + function setPriority(priority: number): void; + function setPriority(pid: number, priority: number): void; +} +declare module 'node:os' { + export * from 'os'; +} diff --git a/node_modules/@types/node/ts4.8/path.d.ts b/node_modules/@types/node/ts4.8/path.d.ts new file mode 100644 index 000000000..2d643b29b --- /dev/null +++ b/node_modules/@types/node/ts4.8/path.d.ts @@ -0,0 +1,191 @@ +declare module 'path/posix' { + import path = require('path'); + export = path; +} +declare module 'path/win32' { + import path = require('path'); + export = path; +} +/** + * The `path` module provides utilities for working with file and directory paths. + * It can be accessed using: + * + * ```js + * const path = require('path'); + * ``` + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/path.js) + */ +declare module 'path' { + namespace path { + /** + * A parsed path object generated by path.parse() or consumed by path.format(). + */ + interface ParsedPath { + /** + * The root of the path such as '/' or 'c:\' + */ + root: string; + /** + * The full directory path such as '/home/user/dir' or 'c:\path\dir' + */ + dir: string; + /** + * The file name including extension (if any) such as 'index.html' + */ + base: string; + /** + * The file extension (if any) such as '.html' + */ + ext: string; + /** + * The file name without extension (if any) such as 'index' + */ + name: string; + } + interface FormatInputPathObject { + /** + * The root of the path such as '/' or 'c:\' + */ + root?: string | undefined; + /** + * The full directory path such as '/home/user/dir' or 'c:\path\dir' + */ + dir?: string | undefined; + /** + * The file name including extension (if any) such as 'index.html' + */ + base?: string | undefined; + /** + * The file extension (if any) such as '.html' + */ + ext?: string | undefined; + /** + * The file name without extension (if any) such as 'index' + */ + name?: string | undefined; + } + interface PlatformPath { + /** + * Normalize a string path, reducing '..' and '.' parts. + * When multiple slashes are found, they're replaced by a single one; when the path contains a trailing slash, it is preserved. On Windows backslashes are used. + * + * @param path string path to normalize. + * @throws {TypeError} if `path` is not a string. + */ + normalize(path: string): string; + /** + * Join all arguments together and normalize the resulting path. + * + * @param paths paths to join. + * @throws {TypeError} if any of the path segments is not a string. + */ + join(...paths: string[]): string; + /** + * The right-most parameter is considered {to}. Other parameters are considered an array of {from}. + * + * Starting from leftmost {from} parameter, resolves {to} to an absolute path. + * + * If {to} isn't already absolute, {from} arguments are prepended in right to left order, + * until an absolute path is found. If after using all {from} paths still no absolute path is found, + * the current working directory is used as well. The resulting path is normalized, + * and trailing slashes are removed unless the path gets resolved to the root directory. + * + * @param paths A sequence of paths or path segments. + * @throws {TypeError} if any of the arguments is not a string. + */ + resolve(...paths: string[]): string; + /** + * Determines whether {path} is an absolute path. An absolute path will always resolve to the same location, regardless of the working directory. + * + * If the given {path} is a zero-length string, `false` will be returned. + * + * @param path path to test. + * @throws {TypeError} if `path` is not a string. + */ + isAbsolute(path: string): boolean; + /** + * Solve the relative path from {from} to {to} based on the current working directory. + * At times we have two absolute paths, and we need to derive the relative path from one to the other. This is actually the reverse transform of path.resolve. + * + * @throws {TypeError} if either `from` or `to` is not a string. + */ + relative(from: string, to: string): string; + /** + * Return the directory name of a path. Similar to the Unix dirname command. + * + * @param path the path to evaluate. + * @throws {TypeError} if `path` is not a string. + */ + dirname(path: string): string; + /** + * Return the last portion of a path. Similar to the Unix basename command. + * Often used to extract the file name from a fully qualified path. + * + * @param path the path to evaluate. + * @param ext optionally, an extension to remove from the result. + * @throws {TypeError} if `path` is not a string or if `ext` is given and is not a string. + */ + basename(path: string, ext?: string): string; + /** + * Return the extension of the path, from the last '.' to end of string in the last portion of the path. + * If there is no '.' in the last portion of the path or the first character of it is '.', then it returns an empty string. + * + * @param path the path to evaluate. + * @throws {TypeError} if `path` is not a string. + */ + extname(path: string): string; + /** + * The platform-specific file separator. '\\' or '/'. + */ + readonly sep: '\\' | '/'; + /** + * The platform-specific file delimiter. ';' or ':'. + */ + readonly delimiter: ';' | ':'; + /** + * Returns an object from a path string - the opposite of format(). + * + * @param path path to evaluate. + * @throws {TypeError} if `path` is not a string. + */ + parse(path: string): ParsedPath; + /** + * Returns a path string from an object - the opposite of parse(). + * + * @param pathObject path to evaluate. + */ + format(pathObject: FormatInputPathObject): string; + /** + * On Windows systems only, returns an equivalent namespace-prefixed path for the given path. + * If path is not a string, path will be returned without modifications. + * This method is meaningful only on Windows system. + * On POSIX systems, the method is non-operational and always returns path without modifications. + */ + toNamespacedPath(path: string): string; + /** + * Posix specific pathing. + * Same as parent object on posix. + */ + readonly posix: PlatformPath; + /** + * Windows specific pathing. + * Same as parent object on windows + */ + readonly win32: PlatformPath; + } + } + const path: path.PlatformPath; + export = path; +} +declare module 'node:path' { + import path = require('path'); + export = path; +} +declare module 'node:path/posix' { + import path = require('path/posix'); + export = path; +} +declare module 'node:path/win32' { + import path = require('path/win32'); + export = path; +} diff --git a/node_modules/@types/node/ts4.8/perf_hooks.d.ts b/node_modules/@types/node/ts4.8/perf_hooks.d.ts new file mode 100644 index 000000000..cf02a16e7 --- /dev/null +++ b/node_modules/@types/node/ts4.8/perf_hooks.d.ts @@ -0,0 +1,610 @@ +/** + * This module provides an implementation of a subset of the W3C [Web Performance APIs](https://w3c.github.io/perf-timing-primer/) as well as additional APIs for + * Node.js-specific performance measurements. + * + * Node.js supports the following [Web Performance APIs](https://w3c.github.io/perf-timing-primer/): + * + * * [High Resolution Time](https://www.w3.org/TR/hr-time-2) + * * [Performance Timeline](https://w3c.github.io/performance-timeline/) + * * [User Timing](https://www.w3.org/TR/user-timing/) + * + * ```js + * const { PerformanceObserver, performance } = require('perf_hooks'); + * + * const obs = new PerformanceObserver((items) => { + * console.log(items.getEntries()[0].duration); + * performance.clearMarks(); + * }); + * obs.observe({ type: 'measure' }); + * performance.measure('Start to Now'); + * + * performance.mark('A'); + * doSomeLongRunningProcess(() => { + * performance.measure('A to Now', 'A'); + * + * performance.mark('B'); + * performance.measure('A to B', 'A', 'B'); + * }); + * ``` + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/perf_hooks.js) + */ +declare module 'perf_hooks' { + import { AsyncResource } from 'node:async_hooks'; + type EntryType = 'node' | 'mark' | 'measure' | 'gc' | 'function' | 'http2' | 'http'; + interface NodeGCPerformanceDetail { + /** + * When `performanceEntry.entryType` is equal to 'gc', `the performance.kind` property identifies + * the type of garbage collection operation that occurred. + * See perf_hooks.constants for valid values. + */ + readonly kind?: number | undefined; + /** + * When `performanceEntry.entryType` is equal to 'gc', the `performance.flags` + * property contains additional information about garbage collection operation. + * See perf_hooks.constants for valid values. + */ + readonly flags?: number | undefined; + } + /** + * @since v8.5.0 + */ + class PerformanceEntry { + protected constructor(); + /** + * The total number of milliseconds elapsed for this entry. This value will not + * be meaningful for all Performance Entry types. + * @since v8.5.0 + */ + readonly duration: number; + /** + * The name of the performance entry. + * @since v8.5.0 + */ + readonly name: string; + /** + * The high resolution millisecond timestamp marking the starting time of the + * Performance Entry. + * @since v8.5.0 + */ + readonly startTime: number; + /** + * The type of the performance entry. It may be one of: + * + * * `'node'` (Node.js only) + * * `'mark'` (available on the Web) + * * `'measure'` (available on the Web) + * * `'gc'` (Node.js only) + * * `'function'` (Node.js only) + * * `'http2'` (Node.js only) + * * `'http'` (Node.js only) + * @since v8.5.0 + */ + readonly entryType: EntryType; + /** + * Additional detail specific to the `entryType`. + * @since v16.0.0 + */ + readonly detail?: NodeGCPerformanceDetail | unknown | undefined; // TODO: Narrow this based on entry type. + toJSON(): any; + } + class PerformanceMark extends PerformanceEntry { + readonly duration: 0; + readonly entryType: 'mark'; + } + class PerformanceMeasure extends PerformanceEntry { + readonly entryType: 'measure'; + } + /** + * _This property is an extension by Node.js. It is not available in Web browsers._ + * + * Provides timing details for Node.js itself. The constructor of this class + * is not exposed to users. + * @since v8.5.0 + */ + class PerformanceNodeTiming extends PerformanceEntry { + /** + * The high resolution millisecond timestamp at which the Node.js process + * completed bootstrapping. If bootstrapping has not yet finished, the property + * has the value of -1. + * @since v8.5.0 + */ + readonly bootstrapComplete: number; + /** + * The high resolution millisecond timestamp at which the Node.js environment was + * initialized. + * @since v8.5.0 + */ + readonly environment: number; + /** + * The high resolution millisecond timestamp of the amount of time the event loop + * has been idle within the event loop's event provider (e.g. `epoll_wait`). This + * does not take CPU usage into consideration. If the event loop has not yet + * started (e.g., in the first tick of the main script), the property has the + * value of 0. + * @since v14.10.0, v12.19.0 + */ + readonly idleTime: number; + /** + * The high resolution millisecond timestamp at which the Node.js event loop + * exited. If the event loop has not yet exited, the property has the value of -1\. + * It can only have a value of not -1 in a handler of the `'exit'` event. + * @since v8.5.0 + */ + readonly loopExit: number; + /** + * The high resolution millisecond timestamp at which the Node.js event loop + * started. If the event loop has not yet started (e.g., in the first tick of the + * main script), the property has the value of -1. + * @since v8.5.0 + */ + readonly loopStart: number; + /** + * The high resolution millisecond timestamp at which the V8 platform was + * initialized. + * @since v8.5.0 + */ + readonly v8Start: number; + } + interface EventLoopUtilization { + idle: number; + active: number; + utilization: number; + } + /** + * @param util1 The result of a previous call to eventLoopUtilization() + * @param util2 The result of a previous call to eventLoopUtilization() prior to util1 + */ + type EventLoopUtilityFunction = (util1?: EventLoopUtilization, util2?: EventLoopUtilization) => EventLoopUtilization; + interface MarkOptions { + /** + * Additional optional detail to include with the mark. + */ + detail?: unknown | undefined; + /** + * An optional timestamp to be used as the mark time. + * @default `performance.now()`. + */ + startTime?: number | undefined; + } + interface MeasureOptions { + /** + * Additional optional detail to include with the mark. + */ + detail?: unknown | undefined; + /** + * Duration between start and end times. + */ + duration?: number | undefined; + /** + * Timestamp to be used as the end time, or a string identifying a previously recorded mark. + */ + end?: number | string | undefined; + /** + * Timestamp to be used as the start time, or a string identifying a previously recorded mark. + */ + start?: number | string | undefined; + } + interface TimerifyOptions { + /** + * A histogram object created using + * `perf_hooks.createHistogram()` that will record runtime durations in + * nanoseconds. + */ + histogram?: RecordableHistogram | undefined; + } + interface Performance { + /** + * If name is not provided, removes all PerformanceMark objects from the Performance Timeline. + * If name is provided, removes only the named mark. + * @param name + */ + clearMarks(name?: string): void; + /** + * If name is not provided, removes all PerformanceMeasure objects from the Performance Timeline. + * If name is provided, removes only the named measure. + * @param name + * @since v16.7.0 + */ + clearMeasures(name?: string): void; + /** + * Returns a list of `PerformanceEntry` objects in chronological order with respect to `performanceEntry.startTime`. + * If you are only interested in performance entries of certain types or that have certain names, see + * `performance.getEntriesByType()` and `performance.getEntriesByName()`. + * @since v16.7.0 + */ + getEntries(): PerformanceEntry[]; + /** + * Returns a list of `PerformanceEntry` objects in chronological order with respect to `performanceEntry.startTime` + * whose `performanceEntry.name` is equal to `name`, and optionally, whose `performanceEntry.entryType` is equal to `type`. + * @param name + * @param type + * @since v16.7.0 + */ + getEntriesByName(name: string, type?: EntryType): PerformanceEntry[]; + /** + * Returns a list of `PerformanceEntry` objects in chronological order with respect to `performanceEntry.startTime` + * whose `performanceEntry.entryType` is equal to `type`. + * @param type + * @since v16.7.0 + */ + getEntriesByType(type: EntryType): PerformanceEntry[]; + /** + * Creates a new PerformanceMark entry in the Performance Timeline. + * A PerformanceMark is a subclass of PerformanceEntry whose performanceEntry.entryType is always 'mark', + * and whose performanceEntry.duration is always 0. + * Performance marks are used to mark specific significant moments in the Performance Timeline. + * @param name + * @return The PerformanceMark entry that was created + */ + mark(name?: string, options?: MarkOptions): PerformanceMark; + /** + * Creates a new PerformanceMeasure entry in the Performance Timeline. + * A PerformanceMeasure is a subclass of PerformanceEntry whose performanceEntry.entryType is always 'measure', + * and whose performanceEntry.duration measures the number of milliseconds elapsed since startMark and endMark. + * + * The startMark argument may identify any existing PerformanceMark in the the Performance Timeline, or may identify + * any of the timestamp properties provided by the PerformanceNodeTiming class. If the named startMark does not exist, + * then startMark is set to timeOrigin by default. + * + * The endMark argument must identify any existing PerformanceMark in the the Performance Timeline or any of the timestamp + * properties provided by the PerformanceNodeTiming class. If the named endMark does not exist, an error will be thrown. + * @param name + * @param startMark + * @param endMark + * @return The PerformanceMeasure entry that was created + */ + measure(name: string, startMark?: string, endMark?: string): PerformanceMeasure; + measure(name: string, options: MeasureOptions): PerformanceMeasure; + /** + * An instance of the PerformanceNodeTiming class that provides performance metrics for specific Node.js operational milestones. + */ + readonly nodeTiming: PerformanceNodeTiming; + /** + * @return the current high resolution millisecond timestamp + */ + now(): number; + /** + * The timeOrigin specifies the high resolution millisecond timestamp from which all performance metric durations are measured. + */ + readonly timeOrigin: number; + /** + * Wraps a function within a new function that measures the running time of the wrapped function. + * A PerformanceObserver must be subscribed to the 'function' event type in order for the timing details to be accessed. + * @param fn + */ + timerify any>(fn: T, options?: TimerifyOptions): T; + /** + * eventLoopUtilization is similar to CPU utilization except that it is calculated using high precision wall-clock time. + * It represents the percentage of time the event loop has spent outside the event loop's event provider (e.g. epoll_wait). + * No other CPU idle time is taken into consideration. + */ + eventLoopUtilization: EventLoopUtilityFunction; + } + interface PerformanceObserverEntryList { + /** + * Returns a list of `PerformanceEntry` objects in chronological order + * with respect to `performanceEntry.startTime`. + * + * ```js + * const { + * performance, + * PerformanceObserver + * } = require('perf_hooks'); + * + * const obs = new PerformanceObserver((perfObserverList, observer) => { + * console.log(perfObserverList.getEntries()); + * + * * [ + * * PerformanceEntry { + * * name: 'test', + * * entryType: 'mark', + * * startTime: 81.465639, + * * duration: 0 + * * }, + * * PerformanceEntry { + * * name: 'meow', + * * entryType: 'mark', + * * startTime: 81.860064, + * * duration: 0 + * * } + * * ] + * + * + * performance.clearMarks(); + * performance.clearMeasures(); + * observer.disconnect(); + * }); + * obs.observe({ type: 'mark' }); + * + * performance.mark('test'); + * performance.mark('meow'); + * ``` + * @since v8.5.0 + */ + getEntries(): PerformanceEntry[]; + /** + * Returns a list of `PerformanceEntry` objects in chronological order + * with respect to `performanceEntry.startTime` whose `performanceEntry.name` is + * equal to `name`, and optionally, whose `performanceEntry.entryType` is equal to`type`. + * + * ```js + * const { + * performance, + * PerformanceObserver + * } = require('perf_hooks'); + * + * const obs = new PerformanceObserver((perfObserverList, observer) => { + * console.log(perfObserverList.getEntriesByName('meow')); + * + * * [ + * * PerformanceEntry { + * * name: 'meow', + * * entryType: 'mark', + * * startTime: 98.545991, + * * duration: 0 + * * } + * * ] + * + * console.log(perfObserverList.getEntriesByName('nope')); // [] + * + * console.log(perfObserverList.getEntriesByName('test', 'mark')); + * + * * [ + * * PerformanceEntry { + * * name: 'test', + * * entryType: 'mark', + * * startTime: 63.518931, + * * duration: 0 + * * } + * * ] + * + * console.log(perfObserverList.getEntriesByName('test', 'measure')); // [] + * + * performance.clearMarks(); + * performance.clearMeasures(); + * observer.disconnect(); + * }); + * obs.observe({ entryTypes: ['mark', 'measure'] }); + * + * performance.mark('test'); + * performance.mark('meow'); + * ``` + * @since v8.5.0 + */ + getEntriesByName(name: string, type?: EntryType): PerformanceEntry[]; + /** + * Returns a list of `PerformanceEntry` objects in chronological order + * with respect to `performanceEntry.startTime` whose `performanceEntry.entryType`is equal to `type`. + * + * ```js + * const { + * performance, + * PerformanceObserver + * } = require('perf_hooks'); + * + * const obs = new PerformanceObserver((perfObserverList, observer) => { + * console.log(perfObserverList.getEntriesByType('mark')); + * + * * [ + * * PerformanceEntry { + * * name: 'test', + * * entryType: 'mark', + * * startTime: 55.897834, + * * duration: 0 + * * }, + * * PerformanceEntry { + * * name: 'meow', + * * entryType: 'mark', + * * startTime: 56.350146, + * * duration: 0 + * * } + * * ] + * + * performance.clearMarks(); + * performance.clearMeasures(); + * observer.disconnect(); + * }); + * obs.observe({ type: 'mark' }); + * + * performance.mark('test'); + * performance.mark('meow'); + * ``` + * @since v8.5.0 + */ + getEntriesByType(type: EntryType): PerformanceEntry[]; + } + type PerformanceObserverCallback = (list: PerformanceObserverEntryList, observer: PerformanceObserver) => void; + class PerformanceObserver extends AsyncResource { + constructor(callback: PerformanceObserverCallback); + /** + * Disconnects the `PerformanceObserver` instance from all notifications. + * @since v8.5.0 + */ + disconnect(): void; + /** + * Subscribes the `PerformanceObserver` instance to notifications of new `PerformanceEntry` instances identified either by `options.entryTypes`or `options.type`: + * + * ```js + * const { + * performance, + * PerformanceObserver + * } = require('perf_hooks'); + * + * const obs = new PerformanceObserver((list, observer) => { + * // Called once asynchronously. `list` contains three items. + * }); + * obs.observe({ type: 'mark' }); + * + * for (let n = 0; n < 3; n++) + * performance.mark(`test${n}`); + * ``` + * @since v8.5.0 + */ + observe( + options: + | { + entryTypes: ReadonlyArray; + buffered?: boolean | undefined; + } + | { + type: EntryType; + buffered?: boolean | undefined; + } + ): void; + } + namespace constants { + const NODE_PERFORMANCE_GC_MAJOR: number; + const NODE_PERFORMANCE_GC_MINOR: number; + const NODE_PERFORMANCE_GC_INCREMENTAL: number; + const NODE_PERFORMANCE_GC_WEAKCB: number; + const NODE_PERFORMANCE_GC_FLAGS_NO: number; + const NODE_PERFORMANCE_GC_FLAGS_CONSTRUCT_RETAINED: number; + const NODE_PERFORMANCE_GC_FLAGS_FORCED: number; + const NODE_PERFORMANCE_GC_FLAGS_SYNCHRONOUS_PHANTOM_PROCESSING: number; + const NODE_PERFORMANCE_GC_FLAGS_ALL_AVAILABLE_GARBAGE: number; + const NODE_PERFORMANCE_GC_FLAGS_ALL_EXTERNAL_MEMORY: number; + const NODE_PERFORMANCE_GC_FLAGS_SCHEDULE_IDLE: number; + } + const performance: Performance; + interface EventLoopMonitorOptions { + /** + * The sampling rate in milliseconds. + * Must be greater than zero. + * @default 10 + */ + resolution?: number | undefined; + } + interface Histogram { + /** + * Returns a `Map` object detailing the accumulated percentile distribution. + * @since v11.10.0 + */ + readonly percentiles: Map; + /** + * The number of times the event loop delay exceeded the maximum 1 hour event + * loop delay threshold. + * @since v11.10.0 + */ + readonly exceeds: number; + /** + * The minimum recorded event loop delay. + * @since v11.10.0 + */ + readonly min: number; + /** + * The maximum recorded event loop delay. + * @since v11.10.0 + */ + readonly max: number; + /** + * The mean of the recorded event loop delays. + * @since v11.10.0 + */ + readonly mean: number; + /** + * The standard deviation of the recorded event loop delays. + * @since v11.10.0 + */ + readonly stddev: number; + /** + * Resets the collected histogram data. + * @since v11.10.0 + */ + reset(): void; + /** + * Returns the value at the given percentile. + * @since v11.10.0 + * @param percentile A percentile value in the range (0, 100]. + */ + percentile(percentile: number): number; + } + interface IntervalHistogram extends Histogram { + /** + * Enables the update interval timer. Returns `true` if the timer was + * started, `false` if it was already started. + * @since v11.10.0 + */ + enable(): boolean; + /** + * Disables the update interval timer. Returns `true` if the timer was + * stopped, `false` if it was already stopped. + * @since v11.10.0 + */ + disable(): boolean; + } + interface RecordableHistogram extends Histogram { + /** + * @since v15.9.0, v14.18.0 + * @param val The amount to record in the histogram. + */ + record(val: number | bigint): void; + /** + * Calculates the amount of time (in nanoseconds) that has passed since the + * previous call to `recordDelta()` and records that amount in the histogram. + * + * ## Examples + * @since v15.9.0, v14.18.0 + */ + recordDelta(): void; + /** + * Adds the values from other to this histogram. + * @since v17.4.0, v16.14.0 + * @param other Recordable Histogram to combine with + */ + add(other: RecordableHistogram): void; + } + /** + * _This property is an extension by Node.js. It is not available in Web browsers._ + * + * Creates an `IntervalHistogram` object that samples and reports the event loop + * delay over time. The delays will be reported in nanoseconds. + * + * Using a timer to detect approximate event loop delay works because the + * execution of timers is tied specifically to the lifecycle of the libuv + * event loop. That is, a delay in the loop will cause a delay in the execution + * of the timer, and those delays are specifically what this API is intended to + * detect. + * + * ```js + * const { monitorEventLoopDelay } = require('perf_hooks'); + * const h = monitorEventLoopDelay({ resolution: 20 }); + * h.enable(); + * // Do something. + * h.disable(); + * console.log(h.min); + * console.log(h.max); + * console.log(h.mean); + * console.log(h.stddev); + * console.log(h.percentiles); + * console.log(h.percentile(50)); + * console.log(h.percentile(99)); + * ``` + * @since v11.10.0 + */ + function monitorEventLoopDelay(options?: EventLoopMonitorOptions): IntervalHistogram; + interface CreateHistogramOptions { + /** + * The minimum recordable value. Must be an integer value greater than 0. + * @default 1 + */ + min?: number | bigint | undefined; + /** + * The maximum recordable value. Must be an integer value greater than min. + * @default Number.MAX_SAFE_INTEGER + */ + max?: number | bigint | undefined; + /** + * The number of accuracy digits. Must be a number between 1 and 5. + * @default 3 + */ + figures?: number | undefined; + } + /** + * Returns a `RecordableHistogram`. + * @since v15.9.0, v14.18.0 + */ + function createHistogram(options?: CreateHistogramOptions): RecordableHistogram; +} +declare module 'node:perf_hooks' { + export * from 'perf_hooks'; +} diff --git a/node_modules/@types/node/ts4.8/process.d.ts b/node_modules/@types/node/ts4.8/process.d.ts new file mode 100644 index 000000000..12148f911 --- /dev/null +++ b/node_modules/@types/node/ts4.8/process.d.ts @@ -0,0 +1,1482 @@ +declare module 'process' { + import * as tty from 'node:tty'; + import { Worker } from 'node:worker_threads'; + global { + var process: NodeJS.Process; + namespace NodeJS { + // this namespace merge is here because these are specifically used + // as the type for process.stdin, process.stdout, and process.stderr. + // they can't live in tty.d.ts because we need to disambiguate the imported name. + interface ReadStream extends tty.ReadStream {} + interface WriteStream extends tty.WriteStream {} + interface MemoryUsageFn { + /** + * The `process.memoryUsage()` method iterate over each page to gather informations about memory + * usage which can be slow depending on the program memory allocations. + */ + (): MemoryUsage; + /** + * method returns an integer representing the Resident Set Size (RSS) in bytes. + */ + rss(): number; + } + interface MemoryUsage { + rss: number; + heapTotal: number; + heapUsed: number; + external: number; + arrayBuffers: number; + } + interface CpuUsage { + user: number; + system: number; + } + interface ProcessRelease { + name: string; + sourceUrl?: string | undefined; + headersUrl?: string | undefined; + libUrl?: string | undefined; + lts?: string | undefined; + } + interface ProcessVersions extends Dict { + http_parser: string; + node: string; + v8: string; + ares: string; + uv: string; + zlib: string; + modules: string; + openssl: string; + } + type Platform = 'aix' | 'android' | 'darwin' | 'freebsd' | 'haiku' | 'linux' | 'openbsd' | 'sunos' | 'win32' | 'cygwin' | 'netbsd'; + type Architecture = 'arm' | 'arm64' | 'ia32' | 'mips' | 'mipsel' | 'ppc' | 'ppc64' | 's390' | 's390x' | 'x64'; + type Signals = + | 'SIGABRT' + | 'SIGALRM' + | 'SIGBUS' + | 'SIGCHLD' + | 'SIGCONT' + | 'SIGFPE' + | 'SIGHUP' + | 'SIGILL' + | 'SIGINT' + | 'SIGIO' + | 'SIGIOT' + | 'SIGKILL' + | 'SIGPIPE' + | 'SIGPOLL' + | 'SIGPROF' + | 'SIGPWR' + | 'SIGQUIT' + | 'SIGSEGV' + | 'SIGSTKFLT' + | 'SIGSTOP' + | 'SIGSYS' + | 'SIGTERM' + | 'SIGTRAP' + | 'SIGTSTP' + | 'SIGTTIN' + | 'SIGTTOU' + | 'SIGUNUSED' + | 'SIGURG' + | 'SIGUSR1' + | 'SIGUSR2' + | 'SIGVTALRM' + | 'SIGWINCH' + | 'SIGXCPU' + | 'SIGXFSZ' + | 'SIGBREAK' + | 'SIGLOST' + | 'SIGINFO'; + type UncaughtExceptionOrigin = 'uncaughtException' | 'unhandledRejection'; + type MultipleResolveType = 'resolve' | 'reject'; + type BeforeExitListener = (code: number) => void; + type DisconnectListener = () => void; + type ExitListener = (code: number) => void; + type RejectionHandledListener = (promise: Promise) => void; + type UncaughtExceptionListener = (error: Error, origin: UncaughtExceptionOrigin) => void; + /** + * Most of the time the unhandledRejection will be an Error, but this should not be relied upon + * as *anything* can be thrown/rejected, it is therefore unsafe to assume that the value is an Error. + */ + type UnhandledRejectionListener = (reason: unknown, promise: Promise) => void; + type WarningListener = (warning: Error) => void; + type MessageListener = (message: unknown, sendHandle: unknown) => void; + type SignalsListener = (signal: Signals) => void; + type MultipleResolveListener = (type: MultipleResolveType, promise: Promise, value: unknown) => void; + type WorkerListener = (worker: Worker) => void; + interface Socket extends ReadWriteStream { + isTTY?: true | undefined; + } + // Alias for compatibility + interface ProcessEnv extends Dict { + /** + * Can be used to change the default timezone at runtime + */ + TZ?: string; + } + interface HRTime { + (time?: [number, number]): [number, number]; + bigint(): bigint; + } + interface ProcessReport { + /** + * Directory where the report is written. + * working directory of the Node.js process. + * @default '' indicating that reports are written to the current + */ + directory: string; + /** + * Filename where the report is written. + * The default value is the empty string. + * @default '' the output filename will be comprised of a timestamp, + * PID, and sequence number. + */ + filename: string; + /** + * Returns a JSON-formatted diagnostic report for the running process. + * The report's JavaScript stack trace is taken from err, if present. + */ + getReport(err?: Error): string; + /** + * If true, a diagnostic report is generated on fatal errors, + * such as out of memory errors or failed C++ assertions. + * @default false + */ + reportOnFatalError: boolean; + /** + * If true, a diagnostic report is generated when the process + * receives the signal specified by process.report.signal. + * @default false + */ + reportOnSignal: boolean; + /** + * If true, a diagnostic report is generated on uncaught exception. + * @default false + */ + reportOnUncaughtException: boolean; + /** + * The signal used to trigger the creation of a diagnostic report. + * @default 'SIGUSR2' + */ + signal: Signals; + /** + * Writes a diagnostic report to a file. If filename is not provided, the default filename + * includes the date, time, PID, and a sequence number. + * The report's JavaScript stack trace is taken from err, if present. + * + * @param fileName Name of the file where the report is written. + * This should be a relative path, that will be appended to the directory specified in + * `process.report.directory`, or the current working directory of the Node.js process, + * if unspecified. + * @param error A custom error used for reporting the JavaScript stack. + * @return Filename of the generated report. + */ + writeReport(fileName?: string): string; + writeReport(error?: Error): string; + writeReport(fileName?: string, err?: Error): string; + } + interface ResourceUsage { + fsRead: number; + fsWrite: number; + involuntaryContextSwitches: number; + ipcReceived: number; + ipcSent: number; + majorPageFault: number; + maxRSS: number; + minorPageFault: number; + sharedMemorySize: number; + signalsCount: number; + swappedOut: number; + systemCPUTime: number; + unsharedDataSize: number; + unsharedStackSize: number; + userCPUTime: number; + voluntaryContextSwitches: number; + } + interface EmitWarningOptions { + /** + * When `warning` is a `string`, `type` is the name to use for the _type_ of warning being emitted. + * + * @default 'Warning' + */ + type?: string | undefined; + /** + * A unique identifier for the warning instance being emitted. + */ + code?: string | undefined; + /** + * When `warning` is a `string`, `ctor` is an optional function used to limit the generated stack trace. + * + * @default process.emitWarning + */ + ctor?: Function | undefined; + /** + * Additional text to include with the error. + */ + detail?: string | undefined; + } + interface ProcessConfig { + readonly target_defaults: { + readonly cflags: any[]; + readonly default_configuration: string; + readonly defines: string[]; + readonly include_dirs: string[]; + readonly libraries: string[]; + }; + readonly variables: { + readonly clang: number; + readonly host_arch: string; + readonly node_install_npm: boolean; + readonly node_install_waf: boolean; + readonly node_prefix: string; + readonly node_shared_openssl: boolean; + readonly node_shared_v8: boolean; + readonly node_shared_zlib: boolean; + readonly node_use_dtrace: boolean; + readonly node_use_etw: boolean; + readonly node_use_openssl: boolean; + readonly target_arch: string; + readonly v8_no_strict_aliasing: number; + readonly v8_use_snapshot: boolean; + readonly visibility: string; + }; + } + interface Process extends EventEmitter { + /** + * The `process.stdout` property returns a stream connected to`stdout` (fd `1`). It is a `net.Socket` (which is a `Duplex` stream) unless fd `1` refers to a file, in which case it is + * a `Writable` stream. + * + * For example, to copy `process.stdin` to `process.stdout`: + * + * ```js + * import { stdin, stdout } from 'process'; + * + * stdin.pipe(stdout); + * ``` + * + * `process.stdout` differs from other Node.js streams in important ways. See `note on process I/O` for more information. + */ + stdout: WriteStream & { + fd: 1; + }; + /** + * The `process.stderr` property returns a stream connected to`stderr` (fd `2`). It is a `net.Socket` (which is a `Duplex` stream) unless fd `2` refers to a file, in which case it is + * a `Writable` stream. + * + * `process.stderr` differs from other Node.js streams in important ways. See `note on process I/O` for more information. + */ + stderr: WriteStream & { + fd: 2; + }; + /** + * The `process.stdin` property returns a stream connected to`stdin` (fd `0`). It is a `net.Socket` (which is a `Duplex` stream) unless fd `0` refers to a file, in which case it is + * a `Readable` stream. + * + * For details of how to read from `stdin` see `readable.read()`. + * + * As a `Duplex` stream, `process.stdin` can also be used in "old" mode that + * is compatible with scripts written for Node.js prior to v0.10\. + * For more information see `Stream compatibility`. + * + * In "old" streams mode the `stdin` stream is paused by default, so one + * must call `process.stdin.resume()` to read from it. Note also that calling`process.stdin.resume()` itself would switch stream to "old" mode. + */ + stdin: ReadStream & { + fd: 0; + }; + openStdin(): Socket; + /** + * The `process.argv` property returns an array containing the command-line + * arguments passed when the Node.js process was launched. The first element will + * be {@link execPath}. See `process.argv0` if access to the original value + * of `argv[0]` is needed. The second element will be the path to the JavaScript + * file being executed. The remaining elements will be any additional command-line + * arguments. + * + * For example, assuming the following script for `process-args.js`: + * + * ```js + * import { argv } from 'process'; + * + * // print process.argv + * argv.forEach((val, index) => { + * console.log(`${index}: ${val}`); + * }); + * ``` + * + * Launching the Node.js process as: + * + * ```console + * $ node process-args.js one two=three four + * ``` + * + * Would generate the output: + * + * ```text + * 0: /usr/local/bin/node + * 1: /Users/mjr/work/node/process-args.js + * 2: one + * 3: two=three + * 4: four + * ``` + * @since v0.1.27 + */ + argv: string[]; + /** + * The `process.argv0` property stores a read-only copy of the original value of`argv[0]` passed when Node.js starts. + * + * ```console + * $ bash -c 'exec -a customArgv0 ./node' + * > process.argv[0] + * '/Volumes/code/external/node/out/Release/node' + * > process.argv0 + * 'customArgv0' + * ``` + * @since v6.4.0 + */ + argv0: string; + /** + * The `process.execArgv` property returns the set of Node.js-specific command-line + * options passed when the Node.js process was launched. These options do not + * appear in the array returned by the {@link argv} property, and do not + * include the Node.js executable, the name of the script, or any options following + * the script name. These options are useful in order to spawn child processes with + * the same execution environment as the parent. + * + * ```console + * $ node --harmony script.js --version + * ``` + * + * Results in `process.execArgv`: + * + * ```js + * ['--harmony'] + * ``` + * + * And `process.argv`: + * + * ```js + * ['/usr/local/bin/node', 'script.js', '--version'] + * ``` + * + * Refer to `Worker constructor` for the detailed behavior of worker + * threads with this property. + * @since v0.7.7 + */ + execArgv: string[]; + /** + * The `process.execPath` property returns the absolute pathname of the executable + * that started the Node.js process. Symbolic links, if any, are resolved. + * + * ```js + * '/usr/local/bin/node' + * ``` + * @since v0.1.100 + */ + execPath: string; + /** + * The `process.abort()` method causes the Node.js process to exit immediately and + * generate a core file. + * + * This feature is not available in `Worker` threads. + * @since v0.7.0 + */ + abort(): never; + /** + * The `process.chdir()` method changes the current working directory of the + * Node.js process or throws an exception if doing so fails (for instance, if + * the specified `directory` does not exist). + * + * ```js + * import { chdir, cwd } from 'process'; + * + * console.log(`Starting directory: ${cwd()}`); + * try { + * chdir('/tmp'); + * console.log(`New directory: ${cwd()}`); + * } catch (err) { + * console.error(`chdir: ${err}`); + * } + * ``` + * + * This feature is not available in `Worker` threads. + * @since v0.1.17 + */ + chdir(directory: string): void; + /** + * The `process.cwd()` method returns the current working directory of the Node.js + * process. + * + * ```js + * import { cwd } from 'process'; + * + * console.log(`Current directory: ${cwd()}`); + * ``` + * @since v0.1.8 + */ + cwd(): string; + /** + * The port used by the Node.js debugger when enabled. + * + * ```js + * import process from 'process'; + * + * process.debugPort = 5858; + * ``` + * @since v0.7.2 + */ + debugPort: number; + /** + * The `process.emitWarning()` method can be used to emit custom or application + * specific process warnings. These can be listened for by adding a handler to the `'warning'` event. + * + * ```js + * import { emitWarning } from 'process'; + * + * // Emit a warning with a code and additional detail. + * emitWarning('Something happened!', { + * code: 'MY_WARNING', + * detail: 'This is some additional information' + * }); + * // Emits: + * // (node:56338) [MY_WARNING] Warning: Something happened! + * // This is some additional information + * ``` + * + * In this example, an `Error` object is generated internally by`process.emitWarning()` and passed through to the `'warning'` handler. + * + * ```js + * import process from 'process'; + * + * process.on('warning', (warning) => { + * console.warn(warning.name); // 'Warning' + * console.warn(warning.message); // 'Something happened!' + * console.warn(warning.code); // 'MY_WARNING' + * console.warn(warning.stack); // Stack trace + * console.warn(warning.detail); // 'This is some additional information' + * }); + * ``` + * + * If `warning` is passed as an `Error` object, the `options` argument is ignored. + * @since v8.0.0 + * @param warning The warning to emit. + */ + emitWarning(warning: string | Error, ctor?: Function): void; + emitWarning(warning: string | Error, type?: string, ctor?: Function): void; + emitWarning(warning: string | Error, type?: string, code?: string, ctor?: Function): void; + emitWarning(warning: string | Error, options?: EmitWarningOptions): void; + /** + * The `process.env` property returns an object containing the user environment. + * See [`environ(7)`](http://man7.org/linux/man-pages/man7/environ.7.html). + * + * An example of this object looks like: + * + * ```js + * { + * TERM: 'xterm-256color', + * SHELL: '/usr/local/bin/bash', + * USER: 'maciej', + * PATH: '~/.bin/:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin', + * PWD: '/Users/maciej', + * EDITOR: 'vim', + * SHLVL: '1', + * HOME: '/Users/maciej', + * LOGNAME: 'maciej', + * _: '/usr/local/bin/node' + * } + * ``` + * + * It is possible to modify this object, but such modifications will not be + * reflected outside the Node.js process, or (unless explicitly requested) + * to other `Worker` threads. + * In other words, the following example would not work: + * + * ```console + * $ node -e 'process.env.foo = "bar"' && echo $foo + * ``` + * + * While the following will: + * + * ```js + * import { env } from 'process'; + * + * env.foo = 'bar'; + * console.log(env.foo); + * ``` + * + * Assigning a property on `process.env` will implicitly convert the value + * to a string. **This behavior is deprecated.** Future versions of Node.js may + * throw an error when the value is not a string, number, or boolean. + * + * ```js + * import { env } from 'process'; + * + * env.test = null; + * console.log(env.test); + * // => 'null' + * env.test = undefined; + * console.log(env.test); + * // => 'undefined' + * ``` + * + * Use `delete` to delete a property from `process.env`. + * + * ```js + * import { env } from 'process'; + * + * env.TEST = 1; + * delete env.TEST; + * console.log(env.TEST); + * // => undefined + * ``` + * + * On Windows operating systems, environment variables are case-insensitive. + * + * ```js + * import { env } from 'process'; + * + * env.TEST = 1; + * console.log(env.test); + * // => 1 + * ``` + * + * Unless explicitly specified when creating a `Worker` instance, + * each `Worker` thread has its own copy of `process.env`, based on its + * parent thread’s `process.env`, or whatever was specified as the `env` option + * to the `Worker` constructor. Changes to `process.env` will not be visible + * across `Worker` threads, and only the main thread can make changes that + * are visible to the operating system or to native add-ons. + * @since v0.1.27 + */ + env: ProcessEnv; + /** + * The `process.exit()` method instructs Node.js to terminate the process + * synchronously with an exit status of `code`. If `code` is omitted, exit uses + * either the 'success' code `0` or the value of `process.exitCode` if it has been + * set. Node.js will not terminate until all the `'exit'` event listeners are + * called. + * + * To exit with a 'failure' code: + * + * ```js + * import { exit } from 'process'; + * + * exit(1); + * ``` + * + * The shell that executed Node.js should see the exit code as `1`. + * + * Calling `process.exit()` will force the process to exit as quickly as possible + * even if there are still asynchronous operations pending that have not yet + * completed fully, including I/O operations to `process.stdout` and`process.stderr`. + * + * In most situations, it is not actually necessary to call `process.exit()`explicitly. The Node.js process will exit on its own _if there is no additional_ + * _work pending_ in the event loop. The `process.exitCode` property can be set to + * tell the process which exit code to use when the process exits gracefully. + * + * For instance, the following example illustrates a _misuse_ of the`process.exit()` method that could lead to data printed to stdout being + * truncated and lost: + * + * ```js + * import { exit } from 'process'; + * + * // This is an example of what *not* to do: + * if (someConditionNotMet()) { + * printUsageToStdout(); + * exit(1); + * } + * ``` + * + * The reason this is problematic is because writes to `process.stdout` in Node.js + * are sometimes _asynchronous_ and may occur over multiple ticks of the Node.js + * event loop. Calling `process.exit()`, however, forces the process to exit _before_ those additional writes to `stdout` can be performed. + * + * Rather than calling `process.exit()` directly, the code _should_ set the`process.exitCode` and allow the process to exit naturally by avoiding + * scheduling any additional work for the event loop: + * + * ```js + * import process from 'process'; + * + * // How to properly set the exit code while letting + * // the process exit gracefully. + * if (someConditionNotMet()) { + * printUsageToStdout(); + * process.exitCode = 1; + * } + * ``` + * + * If it is necessary to terminate the Node.js process due to an error condition, + * throwing an _uncaught_ error and allowing the process to terminate accordingly + * is safer than calling `process.exit()`. + * + * In `Worker` threads, this function stops the current thread rather + * than the current process. + * @since v0.1.13 + * @param [code=0] The exit code. + */ + exit(code?: number): never; + /** + * A number which will be the process exit code, when the process either + * exits gracefully, or is exited via {@link exit} without specifying + * a code. + * + * Specifying a code to {@link exit} will override any + * previous setting of `process.exitCode`. + * @since v0.11.8 + */ + exitCode?: number | undefined; + /** + * The `process.getgid()` method returns the numerical group identity of the + * process. (See [`getgid(2)`](http://man7.org/linux/man-pages/man2/getgid.2.html).) + * + * ```js + * import process from 'process'; + * + * if (process.getgid) { + * console.log(`Current gid: ${process.getgid()}`); + * } + * ``` + * + * This function is only available on POSIX platforms (i.e. not Windows or + * Android). + * @since v0.1.31 + */ + getgid?: () => number; + /** + * The `process.setgid()` method sets the group identity of the process. (See [`setgid(2)`](http://man7.org/linux/man-pages/man2/setgid.2.html).) The `id` can be passed as either a + * numeric ID or a group name + * string. If a group name is specified, this method blocks while resolving the + * associated numeric ID. + * + * ```js + * import process from 'process'; + * + * if (process.getgid && process.setgid) { + * console.log(`Current gid: ${process.getgid()}`); + * try { + * process.setgid(501); + * console.log(`New gid: ${process.getgid()}`); + * } catch (err) { + * console.log(`Failed to set gid: ${err}`); + * } + * } + * ``` + * + * This function is only available on POSIX platforms (i.e. not Windows or + * Android). + * This feature is not available in `Worker` threads. + * @since v0.1.31 + * @param id The group name or ID + */ + setgid?: (id: number | string) => void; + /** + * The `process.getuid()` method returns the numeric user identity of the process. + * (See [`getuid(2)`](http://man7.org/linux/man-pages/man2/getuid.2.html).) + * + * ```js + * import process from 'process'; + * + * if (process.getuid) { + * console.log(`Current uid: ${process.getuid()}`); + * } + * ``` + * + * This function is only available on POSIX platforms (i.e. not Windows or + * Android). + * @since v0.1.28 + */ + getuid?: () => number; + /** + * The `process.setuid(id)` method sets the user identity of the process. (See [`setuid(2)`](http://man7.org/linux/man-pages/man2/setuid.2.html).) The `id` can be passed as either a + * numeric ID or a username string. + * If a username is specified, the method blocks while resolving the associated + * numeric ID. + * + * ```js + * import process from 'process'; + * + * if (process.getuid && process.setuid) { + * console.log(`Current uid: ${process.getuid()}`); + * try { + * process.setuid(501); + * console.log(`New uid: ${process.getuid()}`); + * } catch (err) { + * console.log(`Failed to set uid: ${err}`); + * } + * } + * ``` + * + * This function is only available on POSIX platforms (i.e. not Windows or + * Android). + * This feature is not available in `Worker` threads. + * @since v0.1.28 + */ + setuid?: (id: number | string) => void; + /** + * The `process.geteuid()` method returns the numerical effective user identity of + * the process. (See [`geteuid(2)`](http://man7.org/linux/man-pages/man2/geteuid.2.html).) + * + * ```js + * import process from 'process'; + * + * if (process.geteuid) { + * console.log(`Current uid: ${process.geteuid()}`); + * } + * ``` + * + * This function is only available on POSIX platforms (i.e. not Windows or + * Android). + * @since v2.0.0 + */ + geteuid?: () => number; + /** + * The `process.seteuid()` method sets the effective user identity of the process. + * (See [`seteuid(2)`](http://man7.org/linux/man-pages/man2/seteuid.2.html).) The `id` can be passed as either a numeric ID or a username + * string. If a username is specified, the method blocks while resolving the + * associated numeric ID. + * + * ```js + * import process from 'process'; + * + * if (process.geteuid && process.seteuid) { + * console.log(`Current uid: ${process.geteuid()}`); + * try { + * process.seteuid(501); + * console.log(`New uid: ${process.geteuid()}`); + * } catch (err) { + * console.log(`Failed to set uid: ${err}`); + * } + * } + * ``` + * + * This function is only available on POSIX platforms (i.e. not Windows or + * Android). + * This feature is not available in `Worker` threads. + * @since v2.0.0 + * @param id A user name or ID + */ + seteuid?: (id: number | string) => void; + /** + * The `process.getegid()` method returns the numerical effective group identity + * of the Node.js process. (See [`getegid(2)`](http://man7.org/linux/man-pages/man2/getegid.2.html).) + * + * ```js + * import process from 'process'; + * + * if (process.getegid) { + * console.log(`Current gid: ${process.getegid()}`); + * } + * ``` + * + * This function is only available on POSIX platforms (i.e. not Windows or + * Android). + * @since v2.0.0 + */ + getegid?: () => number; + /** + * The `process.setegid()` method sets the effective group identity of the process. + * (See [`setegid(2)`](http://man7.org/linux/man-pages/man2/setegid.2.html).) The `id` can be passed as either a numeric ID or a group + * name string. If a group name is specified, this method blocks while resolving + * the associated a numeric ID. + * + * ```js + * import process from 'process'; + * + * if (process.getegid && process.setegid) { + * console.log(`Current gid: ${process.getegid()}`); + * try { + * process.setegid(501); + * console.log(`New gid: ${process.getegid()}`); + * } catch (err) { + * console.log(`Failed to set gid: ${err}`); + * } + * } + * ``` + * + * This function is only available on POSIX platforms (i.e. not Windows or + * Android). + * This feature is not available in `Worker` threads. + * @since v2.0.0 + * @param id A group name or ID + */ + setegid?: (id: number | string) => void; + /** + * The `process.getgroups()` method returns an array with the supplementary group + * IDs. POSIX leaves it unspecified if the effective group ID is included but + * Node.js ensures it always is. + * + * ```js + * import process from 'process'; + * + * if (process.getgroups) { + * console.log(process.getgroups()); // [ 16, 21, 297 ] + * } + * ``` + * + * This function is only available on POSIX platforms (i.e. not Windows or + * Android). + * @since v0.9.4 + */ + getgroups?: () => number[]; + /** + * The `process.setgroups()` method sets the supplementary group IDs for the + * Node.js process. This is a privileged operation that requires the Node.js + * process to have `root` or the `CAP_SETGID` capability. + * + * The `groups` array can contain numeric group IDs, group names, or both. + * + * ```js + * import process from 'process'; + * + * if (process.getgroups && process.setgroups) { + * try { + * process.setgroups([501]); + * console.log(process.getgroups()); // new groups + * } catch (err) { + * console.log(`Failed to set groups: ${err}`); + * } + * } + * ``` + * + * This function is only available on POSIX platforms (i.e. not Windows or + * Android). + * This feature is not available in `Worker` threads. + * @since v0.9.4 + */ + setgroups?: (groups: ReadonlyArray) => void; + /** + * The `process.setUncaughtExceptionCaptureCallback()` function sets a function + * that will be invoked when an uncaught exception occurs, which will receive the + * exception value itself as its first argument. + * + * If such a function is set, the `'uncaughtException'` event will + * not be emitted. If `--abort-on-uncaught-exception` was passed from the + * command line or set through `v8.setFlagsFromString()`, the process will + * not abort. Actions configured to take place on exceptions such as report + * generations will be affected too + * + * To unset the capture function,`process.setUncaughtExceptionCaptureCallback(null)` may be used. Calling this + * method with a non-`null` argument while another capture function is set will + * throw an error. + * + * Using this function is mutually exclusive with using the deprecated `domain` built-in module. + * @since v9.3.0 + */ + setUncaughtExceptionCaptureCallback(cb: ((err: Error) => void) | null): void; + /** + * Indicates whether a callback has been set using {@link setUncaughtExceptionCaptureCallback}. + * @since v9.3.0 + */ + hasUncaughtExceptionCaptureCallback(): boolean; + /** + * The `process.version` property contains the Node.js version string. + * + * ```js + * import { version } from 'process'; + * + * console.log(`Version: ${version}`); + * // Version: v14.8.0 + * ``` + * + * To get the version string without the prepended _v_, use`process.versions.node`. + * @since v0.1.3 + */ + readonly version: string; + /** + * The `process.versions` property returns an object listing the version strings of + * Node.js and its dependencies. `process.versions.modules` indicates the current + * ABI version, which is increased whenever a C++ API changes. Node.js will refuse + * to load modules that were compiled against a different module ABI version. + * + * ```js + * import { versions } from 'process'; + * + * console.log(versions); + * ``` + * + * Will generate an object similar to: + * + * ```console + * { node: '11.13.0', + * v8: '7.0.276.38-node.18', + * uv: '1.27.0', + * zlib: '1.2.11', + * brotli: '1.0.7', + * ares: '1.15.0', + * modules: '67', + * nghttp2: '1.34.0', + * napi: '4', + * llhttp: '1.1.1', + * openssl: '1.1.1b', + * cldr: '34.0', + * icu: '63.1', + * tz: '2018e', + * unicode: '11.0' } + * ``` + * @since v0.2.0 + */ + readonly versions: ProcessVersions; + /** + * The `process.config` property returns an `Object` containing the JavaScript + * representation of the configure options used to compile the current Node.js + * executable. This is the same as the `config.gypi` file that was produced when + * running the `./configure` script. + * + * An example of the possible output looks like: + * + * ```js + * { + * target_defaults: + * { cflags: [], + * default_configuration: 'Release', + * defines: [], + * include_dirs: [], + * libraries: [] }, + * variables: + * { + * host_arch: 'x64', + * napi_build_version: 5, + * node_install_npm: 'true', + * node_prefix: '', + * node_shared_cares: 'false', + * node_shared_http_parser: 'false', + * node_shared_libuv: 'false', + * node_shared_zlib: 'false', + * node_use_dtrace: 'false', + * node_use_openssl: 'true', + * node_shared_openssl: 'false', + * strict_aliasing: 'true', + * target_arch: 'x64', + * v8_use_snapshot: 1 + * } + * } + * ``` + * + * The `process.config` property is **not** read-only and there are existing + * modules in the ecosystem that are known to extend, modify, or entirely replace + * the value of `process.config`. + * + * Modifying the `process.config` property, or any child-property of the`process.config` object has been deprecated. The `process.config` will be made + * read-only in a future release. + * @since v0.7.7 + */ + readonly config: ProcessConfig; + /** + * The `process.kill()` method sends the `signal` to the process identified by`pid`. + * + * Signal names are strings such as `'SIGINT'` or `'SIGHUP'`. See `Signal Events` and [`kill(2)`](http://man7.org/linux/man-pages/man2/kill.2.html) for more information. + * + * This method will throw an error if the target `pid` does not exist. As a special + * case, a signal of `0` can be used to test for the existence of a process. + * Windows platforms will throw an error if the `pid` is used to kill a process + * group. + * + * Even though the name of this function is `process.kill()`, it is really just a + * signal sender, like the `kill` system call. The signal sent may do something + * other than kill the target process. + * + * ```js + * import process, { kill } from 'process'; + * + * process.on('SIGHUP', () => { + * console.log('Got SIGHUP signal.'); + * }); + * + * setTimeout(() => { + * console.log('Exiting.'); + * process.exit(0); + * }, 100); + * + * kill(process.pid, 'SIGHUP'); + * ``` + * + * When `SIGUSR1` is received by a Node.js process, Node.js will start the + * debugger. See `Signal Events`. + * @since v0.0.6 + * @param pid A process ID + * @param [signal='SIGTERM'] The signal to send, either as a string or number. + */ + kill(pid: number, signal?: string | number): true; + /** + * The `process.pid` property returns the PID of the process. + * + * ```js + * import { pid } from 'process'; + * + * console.log(`This process is pid ${pid}`); + * ``` + * @since v0.1.15 + */ + readonly pid: number; + /** + * The `process.ppid` property returns the PID of the parent of the + * current process. + * + * ```js + * import { ppid } from 'process'; + * + * console.log(`The parent process is pid ${ppid}`); + * ``` + * @since v9.2.0, v8.10.0, v6.13.0 + */ + readonly ppid: number; + /** + * The `process.title` property returns the current process title (i.e. returns + * the current value of `ps`). Assigning a new value to `process.title` modifies + * the current value of `ps`. + * + * When a new value is assigned, different platforms will impose different maximum + * length restrictions on the title. Usually such restrictions are quite limited. + * For instance, on Linux and macOS, `process.title` is limited to the size of the + * binary name plus the length of the command-line arguments because setting the`process.title` overwrites the `argv` memory of the process. Node.js v0.8 + * allowed for longer process title strings by also overwriting the `environ`memory but that was potentially insecure and confusing in some (rather obscure) + * cases. + * + * Assigning a value to `process.title` might not result in an accurate label + * within process manager applications such as macOS Activity Monitor or Windows + * Services Manager. + * @since v0.1.104 + */ + title: string; + /** + * The operating system CPU architecture for which the Node.js binary was compiled. + * Possible values are: `'arm'`, `'arm64'`, `'ia32'`, `'mips'`,`'mipsel'`, `'ppc'`,`'ppc64'`, `'s390'`, `'s390x'`, and `'x64'`. + * + * ```js + * import { arch } from 'process'; + * + * console.log(`This processor architecture is ${arch}`); + * ``` + * @since v0.5.0 + */ + readonly arch: Architecture; + /** + * The `process.platform` property returns a string identifying the operating + * system platform for which the Node.js binary was compiled. + * + * Currently possible values are: + * + * * `'aix'` + * * `'darwin'` + * * `'freebsd'` + * * `'linux'` + * * `'openbsd'` + * * `'sunos'` + * * `'win32'` + * + * ```js + * import { platform } from 'process'; + * + * console.log(`This platform is ${platform}`); + * ``` + * + * The value `'android'` may also be returned if the Node.js is built on the + * Android operating system. However, Android support in Node.js [is experimental](https://github.com/nodejs/node/blob/HEAD/BUILDING.md#androidandroid-based-devices-eg-firefox-os). + * @since v0.1.16 + */ + readonly platform: Platform; + /** + * The `process.mainModule` property provides an alternative way of retrieving `require.main`. The difference is that if the main module changes at + * runtime, `require.main` may still refer to the original main module in + * modules that were required before the change occurred. Generally, it's + * safe to assume that the two refer to the same module. + * + * As with `require.main`, `process.mainModule` will be `undefined` if there + * is no entry script. + * @since v0.1.17 + * @deprecated Since v14.0.0 - Use `main` instead. + */ + mainModule?: Module | undefined; + memoryUsage: MemoryUsageFn; + /** + * The `process.cpuUsage()` method returns the user and system CPU time usage of + * the current process, in an object with properties `user` and `system`, whose + * values are microsecond values (millionth of a second). These values measure time + * spent in user and system code respectively, and may end up being greater than + * actual elapsed time if multiple CPU cores are performing work for this process. + * + * The result of a previous call to `process.cpuUsage()` can be passed as the + * argument to the function, to get a diff reading. + * + * ```js + * import { cpuUsage } from 'process'; + * + * const startUsage = cpuUsage(); + * // { user: 38579, system: 6986 } + * + * // spin the CPU for 500 milliseconds + * const now = Date.now(); + * while (Date.now() - now < 500); + * + * console.log(cpuUsage(startUsage)); + * // { user: 514883, system: 11226 } + * ``` + * @since v6.1.0 + * @param previousValue A previous return value from calling `process.cpuUsage()` + */ + cpuUsage(previousValue?: CpuUsage): CpuUsage; + /** + * `process.nextTick()` adds `callback` to the "next tick queue". This queue is + * fully drained after the current operation on the JavaScript stack runs to + * completion and before the event loop is allowed to continue. It's possible to + * create an infinite loop if one were to recursively call `process.nextTick()`. + * See the [Event Loop](https://nodejs.org/en/docs/guides/event-loop-timers-and-nexttick/#process-nexttick) guide for more background. + * + * ```js + * import { nextTick } from 'process'; + * + * console.log('start'); + * nextTick(() => { + * console.log('nextTick callback'); + * }); + * console.log('scheduled'); + * // Output: + * // start + * // scheduled + * // nextTick callback + * ``` + * + * This is important when developing APIs in order to give users the opportunity + * to assign event handlers _after_ an object has been constructed but before any + * I/O has occurred: + * + * ```js + * import { nextTick } from 'process'; + * + * function MyThing(options) { + * this.setupOptions(options); + * + * nextTick(() => { + * this.startDoingStuff(); + * }); + * } + * + * const thing = new MyThing(); + * thing.getReadyForStuff(); + * + * // thing.startDoingStuff() gets called now, not before. + * ``` + * + * It is very important for APIs to be either 100% synchronous or 100% + * asynchronous. Consider this example: + * + * ```js + * // WARNING! DO NOT USE! BAD UNSAFE HAZARD! + * function maybeSync(arg, cb) { + * if (arg) { + * cb(); + * return; + * } + * + * fs.stat('file', cb); + * } + * ``` + * + * This API is hazardous because in the following case: + * + * ```js + * const maybeTrue = Math.random() > 0.5; + * + * maybeSync(maybeTrue, () => { + * foo(); + * }); + * + * bar(); + * ``` + * + * It is not clear whether `foo()` or `bar()` will be called first. + * + * The following approach is much better: + * + * ```js + * import { nextTick } from 'process'; + * + * function definitelyAsync(arg, cb) { + * if (arg) { + * nextTick(cb); + * return; + * } + * + * fs.stat('file', cb); + * } + * ``` + * @since v0.1.26 + * @param args Additional arguments to pass when invoking the `callback` + */ + nextTick(callback: Function, ...args: any[]): void; + /** + * The `process.release` property returns an `Object` containing metadata related + * to the current release, including URLs for the source tarball and headers-only + * tarball. + * + * `process.release` contains the following properties: + * + * ```js + * { + * name: 'node', + * lts: 'Erbium', + * sourceUrl: 'https://nodejs.org/download/release/v12.18.1/node-v12.18.1.tar.gz', + * headersUrl: 'https://nodejs.org/download/release/v12.18.1/node-v12.18.1-headers.tar.gz', + * libUrl: 'https://nodejs.org/download/release/v12.18.1/win-x64/node.lib' + * } + * ``` + * + * In custom builds from non-release versions of the source tree, only the`name` property may be present. The additional properties should not be + * relied upon to exist. + * @since v3.0.0 + */ + readonly release: ProcessRelease; + features: { + inspector: boolean; + debug: boolean; + uv: boolean; + ipv6: boolean; + tls_alpn: boolean; + tls_sni: boolean; + tls_ocsp: boolean; + tls: boolean; + }; + /** + * `process.umask()` returns the Node.js process's file mode creation mask. Child + * processes inherit the mask from the parent process. + * @since v0.1.19 + * @deprecated Calling `process.umask()` with no argument causes the process-wide umask to be written twice. This introduces a race condition between threads, and is a potential * + * security vulnerability. There is no safe, cross-platform alternative API. + */ + umask(): number; + /** + * Can only be set if not in worker thread. + */ + umask(mask: string | number): number; + /** + * The `process.uptime()` method returns the number of seconds the current Node.js + * process has been running. + * + * The return value includes fractions of a second. Use `Math.floor()` to get whole + * seconds. + * @since v0.5.0 + */ + uptime(): number; + hrtime: HRTime; + /** + * If Node.js is spawned with an IPC channel, the `process.send()` method can be + * used to send messages to the parent process. Messages will be received as a `'message'` event on the parent's `ChildProcess` object. + * + * If Node.js was not spawned with an IPC channel, `process.send` will be`undefined`. + * + * The message goes through serialization and parsing. The resulting message might + * not be the same as what is originally sent. + * @since v0.5.9 + * @param options used to parameterize the sending of certain types of handles.`options` supports the following properties: + */ + send?( + message: any, + sendHandle?: any, + options?: { + swallowErrors?: boolean | undefined; + }, + callback?: (error: Error | null) => void + ): boolean; + /** + * If the Node.js process is spawned with an IPC channel (see the `Child Process` and `Cluster` documentation), the `process.disconnect()` method will close the + * IPC channel to the parent process, allowing the child process to exit gracefully + * once there are no other connections keeping it alive. + * + * The effect of calling `process.disconnect()` is the same as calling `ChildProcess.disconnect()` from the parent process. + * + * If the Node.js process was not spawned with an IPC channel,`process.disconnect()` will be `undefined`. + * @since v0.7.2 + */ + disconnect(): void; + /** + * If the Node.js process is spawned with an IPC channel (see the `Child Process` and `Cluster` documentation), the `process.connected` property will return`true` so long as the IPC + * channel is connected and will return `false` after`process.disconnect()` is called. + * + * Once `process.connected` is `false`, it is no longer possible to send messages + * over the IPC channel using `process.send()`. + * @since v0.7.2 + */ + connected: boolean; + /** + * The `process.allowedNodeEnvironmentFlags` property is a special, + * read-only `Set` of flags allowable within the `NODE_OPTIONS` environment variable. + * + * `process.allowedNodeEnvironmentFlags` extends `Set`, but overrides`Set.prototype.has` to recognize several different possible flag + * representations. `process.allowedNodeEnvironmentFlags.has()` will + * return `true` in the following cases: + * + * * Flags may omit leading single (`-`) or double (`--`) dashes; e.g.,`inspect-brk` for `--inspect-brk`, or `r` for `-r`. + * * Flags passed through to V8 (as listed in `--v8-options`) may replace + * one or more _non-leading_ dashes for an underscore, or vice-versa; + * e.g., `--perf_basic_prof`, `--perf-basic-prof`, `--perf_basic-prof`, + * etc. + * * Flags may contain one or more equals (`=`) characters; all + * characters after and including the first equals will be ignored; + * e.g., `--stack-trace-limit=100`. + * * Flags _must_ be allowable within `NODE_OPTIONS`. + * + * When iterating over `process.allowedNodeEnvironmentFlags`, flags will + * appear only _once_; each will begin with one or more dashes. Flags + * passed through to V8 will contain underscores instead of non-leading + * dashes: + * + * ```js + * import { allowedNodeEnvironmentFlags } from 'process'; + * + * allowedNodeEnvironmentFlags.forEach((flag) => { + * // -r + * // --inspect-brk + * // --abort_on_uncaught_exception + * // ... + * }); + * ``` + * + * The methods `add()`, `clear()`, and `delete()` of`process.allowedNodeEnvironmentFlags` do nothing, and will fail + * silently. + * + * If Node.js was compiled _without_ `NODE_OPTIONS` support (shown in {@link config}), `process.allowedNodeEnvironmentFlags` will + * contain what _would have_ been allowable. + * @since v10.10.0 + */ + allowedNodeEnvironmentFlags: ReadonlySet; + /** + * `process.report` is an object whose methods are used to generate diagnostic + * reports for the current process. Additional documentation is available in the `report documentation`. + * @since v11.8.0 + */ + report?: ProcessReport | undefined; + /** + * ```js + * import { resourceUsage } from 'process'; + * + * console.log(resourceUsage()); + * /* + * Will output: + * { + * userCPUTime: 82872, + * systemCPUTime: 4143, + * maxRSS: 33164, + * sharedMemorySize: 0, + * unsharedDataSize: 0, + * unsharedStackSize: 0, + * minorPageFault: 2469, + * majorPageFault: 0, + * swappedOut: 0, + * fsRead: 0, + * fsWrite: 8, + * ipcSent: 0, + * ipcReceived: 0, + * signalsCount: 0, + * voluntaryContextSwitches: 79, + * involuntaryContextSwitches: 1 + * } + * + * ``` + * @since v12.6.0 + * @return the resource usage for the current process. All of these values come from the `uv_getrusage` call which returns a [`uv_rusage_t` struct][uv_rusage_t]. + */ + resourceUsage(): ResourceUsage; + /** + * The `process.traceDeprecation` property indicates whether the`--trace-deprecation` flag is set on the current Node.js process. See the + * documentation for the `'warning' event` and the `emitWarning() method` for more information about this + * flag's behavior. + * @since v0.8.0 + */ + traceDeprecation: boolean; + /* EventEmitter */ + addListener(event: 'beforeExit', listener: BeforeExitListener): this; + addListener(event: 'disconnect', listener: DisconnectListener): this; + addListener(event: 'exit', listener: ExitListener): this; + addListener(event: 'rejectionHandled', listener: RejectionHandledListener): this; + addListener(event: 'uncaughtException', listener: UncaughtExceptionListener): this; + addListener(event: 'uncaughtExceptionMonitor', listener: UncaughtExceptionListener): this; + addListener(event: 'unhandledRejection', listener: UnhandledRejectionListener): this; + addListener(event: 'warning', listener: WarningListener): this; + addListener(event: 'message', listener: MessageListener): this; + addListener(event: Signals, listener: SignalsListener): this; + addListener(event: 'multipleResolves', listener: MultipleResolveListener): this; + addListener(event: 'worker', listener: WorkerListener): this; + emit(event: 'beforeExit', code: number): boolean; + emit(event: 'disconnect'): boolean; + emit(event: 'exit', code: number): boolean; + emit(event: 'rejectionHandled', promise: Promise): boolean; + emit(event: 'uncaughtException', error: Error): boolean; + emit(event: 'uncaughtExceptionMonitor', error: Error): boolean; + emit(event: 'unhandledRejection', reason: unknown, promise: Promise): boolean; + emit(event: 'warning', warning: Error): boolean; + emit(event: 'message', message: unknown, sendHandle: unknown): this; + emit(event: Signals, signal?: Signals): boolean; + emit(event: 'multipleResolves', type: MultipleResolveType, promise: Promise, value: unknown): this; + emit(event: 'worker', listener: WorkerListener): this; + on(event: 'beforeExit', listener: BeforeExitListener): this; + on(event: 'disconnect', listener: DisconnectListener): this; + on(event: 'exit', listener: ExitListener): this; + on(event: 'rejectionHandled', listener: RejectionHandledListener): this; + on(event: 'uncaughtException', listener: UncaughtExceptionListener): this; + on(event: 'uncaughtExceptionMonitor', listener: UncaughtExceptionListener): this; + on(event: 'unhandledRejection', listener: UnhandledRejectionListener): this; + on(event: 'warning', listener: WarningListener): this; + on(event: 'message', listener: MessageListener): this; + on(event: Signals, listener: SignalsListener): this; + on(event: 'multipleResolves', listener: MultipleResolveListener): this; + on(event: 'worker', listener: WorkerListener): this; + on(event: string | symbol, listener: (...args: any[]) => void): this; + once(event: 'beforeExit', listener: BeforeExitListener): this; + once(event: 'disconnect', listener: DisconnectListener): this; + once(event: 'exit', listener: ExitListener): this; + once(event: 'rejectionHandled', listener: RejectionHandledListener): this; + once(event: 'uncaughtException', listener: UncaughtExceptionListener): this; + once(event: 'uncaughtExceptionMonitor', listener: UncaughtExceptionListener): this; + once(event: 'unhandledRejection', listener: UnhandledRejectionListener): this; + once(event: 'warning', listener: WarningListener): this; + once(event: 'message', listener: MessageListener): this; + once(event: Signals, listener: SignalsListener): this; + once(event: 'multipleResolves', listener: MultipleResolveListener): this; + once(event: 'worker', listener: WorkerListener): this; + once(event: string | symbol, listener: (...args: any[]) => void): this; + prependListener(event: 'beforeExit', listener: BeforeExitListener): this; + prependListener(event: 'disconnect', listener: DisconnectListener): this; + prependListener(event: 'exit', listener: ExitListener): this; + prependListener(event: 'rejectionHandled', listener: RejectionHandledListener): this; + prependListener(event: 'uncaughtException', listener: UncaughtExceptionListener): this; + prependListener(event: 'uncaughtExceptionMonitor', listener: UncaughtExceptionListener): this; + prependListener(event: 'unhandledRejection', listener: UnhandledRejectionListener): this; + prependListener(event: 'warning', listener: WarningListener): this; + prependListener(event: 'message', listener: MessageListener): this; + prependListener(event: Signals, listener: SignalsListener): this; + prependListener(event: 'multipleResolves', listener: MultipleResolveListener): this; + prependListener(event: 'worker', listener: WorkerListener): this; + prependOnceListener(event: 'beforeExit', listener: BeforeExitListener): this; + prependOnceListener(event: 'disconnect', listener: DisconnectListener): this; + prependOnceListener(event: 'exit', listener: ExitListener): this; + prependOnceListener(event: 'rejectionHandled', listener: RejectionHandledListener): this; + prependOnceListener(event: 'uncaughtException', listener: UncaughtExceptionListener): this; + prependOnceListener(event: 'uncaughtExceptionMonitor', listener: UncaughtExceptionListener): this; + prependOnceListener(event: 'unhandledRejection', listener: UnhandledRejectionListener): this; + prependOnceListener(event: 'warning', listener: WarningListener): this; + prependOnceListener(event: 'message', listener: MessageListener): this; + prependOnceListener(event: Signals, listener: SignalsListener): this; + prependOnceListener(event: 'multipleResolves', listener: MultipleResolveListener): this; + prependOnceListener(event: 'worker', listener: WorkerListener): this; + listeners(event: 'beforeExit'): BeforeExitListener[]; + listeners(event: 'disconnect'): DisconnectListener[]; + listeners(event: 'exit'): ExitListener[]; + listeners(event: 'rejectionHandled'): RejectionHandledListener[]; + listeners(event: 'uncaughtException'): UncaughtExceptionListener[]; + listeners(event: 'uncaughtExceptionMonitor'): UncaughtExceptionListener[]; + listeners(event: 'unhandledRejection'): UnhandledRejectionListener[]; + listeners(event: 'warning'): WarningListener[]; + listeners(event: 'message'): MessageListener[]; + listeners(event: Signals): SignalsListener[]; + listeners(event: 'multipleResolves'): MultipleResolveListener[]; + listeners(event: 'worker'): WorkerListener[]; + } + } + } + export = process; +} +declare module 'node:process' { + import process = require('process'); + export = process; +} diff --git a/node_modules/@types/node/ts4.8/punycode.d.ts b/node_modules/@types/node/ts4.8/punycode.d.ts new file mode 100644 index 000000000..87ebbb904 --- /dev/null +++ b/node_modules/@types/node/ts4.8/punycode.d.ts @@ -0,0 +1,117 @@ +/** + * **The version of the punycode module bundled in Node.js is being deprecated.**In a future major version of Node.js this module will be removed. Users + * currently depending on the `punycode` module should switch to using the + * userland-provided [Punycode.js](https://github.com/bestiejs/punycode.js) module instead. For punycode-based URL + * encoding, see `url.domainToASCII` or, more generally, the `WHATWG URL API`. + * + * The `punycode` module is a bundled version of the [Punycode.js](https://github.com/bestiejs/punycode.js) module. It + * can be accessed using: + * + * ```js + * const punycode = require('punycode'); + * ``` + * + * [Punycode](https://tools.ietf.org/html/rfc3492) is a character encoding scheme defined by RFC 3492 that is + * primarily intended for use in Internationalized Domain Names. Because host + * names in URLs are limited to ASCII characters only, Domain Names that contain + * non-ASCII characters must be converted into ASCII using the Punycode scheme. + * For instance, the Japanese character that translates into the English word,`'example'` is `'例'`. The Internationalized Domain Name, `'例.com'` (equivalent + * to `'example.com'`) is represented by Punycode as the ASCII string`'xn--fsq.com'`. + * + * The `punycode` module provides a simple implementation of the Punycode standard. + * + * The `punycode` module is a third-party dependency used by Node.js and + * made available to developers as a convenience. Fixes or other modifications to + * the module must be directed to the [Punycode.js](https://github.com/bestiejs/punycode.js) project. + * @deprecated Since v7.0.0 - Deprecated + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/punycode.js) + */ +declare module 'punycode' { + /** + * The `punycode.decode()` method converts a [Punycode](https://tools.ietf.org/html/rfc3492) string of ASCII-only + * characters to the equivalent string of Unicode codepoints. + * + * ```js + * punycode.decode('maana-pta'); // 'mañana' + * punycode.decode('--dqo34k'); // '☃-⌘' + * ``` + * @since v0.5.1 + */ + function decode(string: string): string; + /** + * The `punycode.encode()` method converts a string of Unicode codepoints to a [Punycode](https://tools.ietf.org/html/rfc3492) string of ASCII-only characters. + * + * ```js + * punycode.encode('mañana'); // 'maana-pta' + * punycode.encode('☃-⌘'); // '--dqo34k' + * ``` + * @since v0.5.1 + */ + function encode(string: string): string; + /** + * The `punycode.toUnicode()` method converts a string representing a domain name + * containing [Punycode](https://tools.ietf.org/html/rfc3492) encoded characters into Unicode. Only the [Punycode](https://tools.ietf.org/html/rfc3492) encoded parts of the domain name are be + * converted. + * + * ```js + * // decode domain names + * punycode.toUnicode('xn--maana-pta.com'); // 'mañana.com' + * punycode.toUnicode('xn----dqo34k.com'); // '☃-⌘.com' + * punycode.toUnicode('example.com'); // 'example.com' + * ``` + * @since v0.6.1 + */ + function toUnicode(domain: string): string; + /** + * The `punycode.toASCII()` method converts a Unicode string representing an + * Internationalized Domain Name to [Punycode](https://tools.ietf.org/html/rfc3492). Only the non-ASCII parts of the + * domain name will be converted. Calling `punycode.toASCII()` on a string that + * already only contains ASCII characters will have no effect. + * + * ```js + * // encode domain names + * punycode.toASCII('mañana.com'); // 'xn--maana-pta.com' + * punycode.toASCII('☃-⌘.com'); // 'xn----dqo34k.com' + * punycode.toASCII('example.com'); // 'example.com' + * ``` + * @since v0.6.1 + */ + function toASCII(domain: string): string; + /** + * @deprecated since v7.0.0 + * The version of the punycode module bundled in Node.js is being deprecated. + * In a future major version of Node.js this module will be removed. + * Users currently depending on the punycode module should switch to using + * the userland-provided Punycode.js module instead. + */ + const ucs2: ucs2; + interface ucs2 { + /** + * @deprecated since v7.0.0 + * The version of the punycode module bundled in Node.js is being deprecated. + * In a future major version of Node.js this module will be removed. + * Users currently depending on the punycode module should switch to using + * the userland-provided Punycode.js module instead. + */ + decode(string: string): number[]; + /** + * @deprecated since v7.0.0 + * The version of the punycode module bundled in Node.js is being deprecated. + * In a future major version of Node.js this module will be removed. + * Users currently depending on the punycode module should switch to using + * the userland-provided Punycode.js module instead. + */ + encode(codePoints: ReadonlyArray): string; + } + /** + * @deprecated since v7.0.0 + * The version of the punycode module bundled in Node.js is being deprecated. + * In a future major version of Node.js this module will be removed. + * Users currently depending on the punycode module should switch to using + * the userland-provided Punycode.js module instead. + */ + const version: string; +} +declare module 'node:punycode' { + export * from 'punycode'; +} diff --git a/node_modules/@types/node/ts4.8/querystring.d.ts b/node_modules/@types/node/ts4.8/querystring.d.ts new file mode 100644 index 000000000..e694d8c84 --- /dev/null +++ b/node_modules/@types/node/ts4.8/querystring.d.ts @@ -0,0 +1,131 @@ +/** + * The `querystring` module provides utilities for parsing and formatting URL + * query strings. It can be accessed using: + * + * ```js + * const querystring = require('querystring'); + * ``` + * + * The `querystring` API is considered Legacy. While it is still maintained, + * new code should use the `URLSearchParams` API instead. + * @deprecated Legacy + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/querystring.js) + */ +declare module 'querystring' { + interface StringifyOptions { + encodeURIComponent?: ((str: string) => string) | undefined; + } + interface ParseOptions { + maxKeys?: number | undefined; + decodeURIComponent?: ((str: string) => string) | undefined; + } + interface ParsedUrlQuery extends NodeJS.Dict {} + interface ParsedUrlQueryInput extends NodeJS.Dict | ReadonlyArray | ReadonlyArray | null> {} + /** + * The `querystring.stringify()` method produces a URL query string from a + * given `obj` by iterating through the object's "own properties". + * + * It serializes the following types of values passed in `obj`:[string](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#String_type) | + * [number](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Number_type) | + * [bigint](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt) | + * [boolean](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Boolean_type) | + * [string\[\]](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#String_type) | + * [number\[\]](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Number_type) | + * [bigint\[\]](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt) | + * [boolean\[\]](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Boolean_type) The numeric values must be finite. Any other input values will be coerced to + * empty strings. + * + * ```js + * querystring.stringify({ foo: 'bar', baz: ['qux', 'quux'], corge: '' }); + * // Returns 'foo=bar&baz=qux&baz=quux&corge=' + * + * querystring.stringify({ foo: 'bar', baz: 'qux' }, ';', ':'); + * // Returns 'foo:bar;baz:qux' + * ``` + * + * By default, characters requiring percent-encoding within the query string will + * be encoded as UTF-8\. If an alternative encoding is required, then an alternative`encodeURIComponent` option will need to be specified: + * + * ```js + * // Assuming gbkEncodeURIComponent function already exists, + * + * querystring.stringify({ w: '中文', foo: 'bar' }, null, null, + * { encodeURIComponent: gbkEncodeURIComponent }); + * ``` + * @since v0.1.25 + * @param obj The object to serialize into a URL query string + * @param [sep='&'] The substring used to delimit key and value pairs in the query string. + * @param [eq='='] . The substring used to delimit keys and values in the query string. + */ + function stringify(obj?: ParsedUrlQueryInput, sep?: string, eq?: string, options?: StringifyOptions): string; + /** + * The `querystring.parse()` method parses a URL query string (`str`) into a + * collection of key and value pairs. + * + * For example, the query string `'foo=bar&abc=xyz&abc=123'` is parsed into: + * + * ```js + * { + * foo: 'bar', + * abc: ['xyz', '123'] + * } + * ``` + * + * The object returned by the `querystring.parse()` method _does not_prototypically inherit from the JavaScript `Object`. This means that typical`Object` methods such as `obj.toString()`, + * `obj.hasOwnProperty()`, and others + * are not defined and _will not work_. + * + * By default, percent-encoded characters within the query string will be assumed + * to use UTF-8 encoding. If an alternative character encoding is used, then an + * alternative `decodeURIComponent` option will need to be specified: + * + * ```js + * // Assuming gbkDecodeURIComponent function already exists... + * + * querystring.parse('w=%D6%D0%CE%C4&foo=bar', null, null, + * { decodeURIComponent: gbkDecodeURIComponent }); + * ``` + * @since v0.1.25 + * @param str The URL query string to parse + * @param [sep='&'] The substring used to delimit key and value pairs in the query string. + * @param [eq='='] . The substring used to delimit keys and values in the query string. + */ + function parse(str: string, sep?: string, eq?: string, options?: ParseOptions): ParsedUrlQuery; + /** + * The querystring.encode() function is an alias for querystring.stringify(). + */ + const encode: typeof stringify; + /** + * The querystring.decode() function is an alias for querystring.parse(). + */ + const decode: typeof parse; + /** + * The `querystring.escape()` method performs URL percent-encoding on the given`str` in a manner that is optimized for the specific requirements of URL + * query strings. + * + * The `querystring.escape()` method is used by `querystring.stringify()` and is + * generally not expected to be used directly. It is exported primarily to allow + * application code to provide a replacement percent-encoding implementation if + * necessary by assigning `querystring.escape` to an alternative function. + * @since v0.1.25 + */ + function escape(str: string): string; + /** + * The `querystring.unescape()` method performs decoding of URL percent-encoded + * characters on the given `str`. + * + * The `querystring.unescape()` method is used by `querystring.parse()` and is + * generally not expected to be used directly. It is exported primarily to allow + * application code to provide a replacement decoding implementation if + * necessary by assigning `querystring.unescape` to an alternative function. + * + * By default, the `querystring.unescape()` method will attempt to use the + * JavaScript built-in `decodeURIComponent()` method to decode. If that fails, + * a safer equivalent that does not throw on malformed URLs will be used. + * @since v0.1.25 + */ + function unescape(str: string): string; +} +declare module 'node:querystring' { + export * from 'querystring'; +} diff --git a/node_modules/@types/node/ts4.8/readline.d.ts b/node_modules/@types/node/ts4.8/readline.d.ts new file mode 100644 index 000000000..6ab64acbb --- /dev/null +++ b/node_modules/@types/node/ts4.8/readline.d.ts @@ -0,0 +1,653 @@ +/** + * The `readline` module provides an interface for reading data from a `Readable` stream (such as `process.stdin`) one line at a time. + * + * To use the promise-based APIs: + * + * ```js + * import * as readline from 'node:readline/promises'; + * ``` + * + * To use the callback and sync APIs: + * + * ```js + * import * as readline from 'node:readline'; + * ``` + * + * The following simple example illustrates the basic use of the `readline` module. + * + * ```js + * import * as readline from 'node:readline/promises'; + * import { stdin as input, stdout as output } from 'node:process'; + * + * const rl = readline.createInterface({ input, output }); + * + * const answer = await rl.question('What do you think of Node.js? '); + * + * console.log(`Thank you for your valuable feedback: ${answer}`); + * + * rl.close(); + * ``` + * + * Once this code is invoked, the Node.js application will not terminate until the`readline.Interface` is closed because the interface waits for data to be + * received on the `input` stream. + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/readline.js) + */ +declare module 'readline' { + import { Abortable, EventEmitter } from 'node:events'; + import * as promises from 'node:readline/promises'; + + export { promises }; + export interface Key { + sequence?: string | undefined; + name?: string | undefined; + ctrl?: boolean | undefined; + meta?: boolean | undefined; + shift?: boolean | undefined; + } + /** + * Instances of the `readline.Interface` class are constructed using the`readline.createInterface()` method. Every instance is associated with a + * single `input` `Readable` stream and a single `output` `Writable` stream. + * The `output` stream is used to print prompts for user input that arrives on, + * and is read from, the `input` stream. + * @since v0.1.104 + */ + export class Interface extends EventEmitter { + readonly terminal: boolean; + /** + * The current input data being processed by node. + * + * This can be used when collecting input from a TTY stream to retrieve the + * current value that has been processed thus far, prior to the `line` event + * being emitted. Once the `line` event has been emitted, this property will + * be an empty string. + * + * Be aware that modifying the value during the instance runtime may have + * unintended consequences if `rl.cursor` is not also controlled. + * + * **If not using a TTY stream for input, use the `'line'` event.** + * + * One possible use case would be as follows: + * + * ```js + * const values = ['lorem ipsum', 'dolor sit amet']; + * const rl = readline.createInterface(process.stdin); + * const showResults = debounce(() => { + * console.log( + * '\n', + * values.filter((val) => val.startsWith(rl.line)).join(' ') + * ); + * }, 300); + * process.stdin.on('keypress', (c, k) => { + * showResults(); + * }); + * ``` + * @since v0.1.98 + */ + readonly line: string; + /** + * The cursor position relative to `rl.line`. + * + * This will track where the current cursor lands in the input string, when + * reading input from a TTY stream. The position of cursor determines the + * portion of the input string that will be modified as input is processed, + * as well as the column where the terminal caret will be rendered. + * @since v0.1.98 + */ + readonly cursor: number; + /** + * NOTE: According to the documentation: + * + * > Instances of the `readline.Interface` class are constructed using the + * > `readline.createInterface()` method. + * + * @see https://nodejs.org/dist/latest-v10.x/docs/api/readline.html#readline_class_interface + */ + protected constructor(input: NodeJS.ReadableStream, output?: NodeJS.WritableStream, completer?: Completer | AsyncCompleter, terminal?: boolean); + /** + * NOTE: According to the documentation: + * + * > Instances of the `readline.Interface` class are constructed using the + * > `readline.createInterface()` method. + * + * @see https://nodejs.org/dist/latest-v10.x/docs/api/readline.html#readline_class_interface + */ + protected constructor(options: ReadLineOptions); + /** + * The `rl.getPrompt()` method returns the current prompt used by `rl.prompt()`. + * @since v15.3.0 + * @return the current prompt string + */ + getPrompt(): string; + /** + * The `rl.setPrompt()` method sets the prompt that will be written to `output`whenever `rl.prompt()` is called. + * @since v0.1.98 + */ + setPrompt(prompt: string): void; + /** + * The `rl.prompt()` method writes the `readline.Interface` instances configured`prompt` to a new line in `output` in order to provide a user with a new + * location at which to provide input. + * + * When called, `rl.prompt()` will resume the `input` stream if it has been + * paused. + * + * If the `readline.Interface` was created with `output` set to `null` or`undefined` the prompt is not written. + * @since v0.1.98 + * @param preserveCursor If `true`, prevents the cursor placement from being reset to `0`. + */ + prompt(preserveCursor?: boolean): void; + /** + * The `rl.question()` method displays the `query` by writing it to the `output`, + * waits for user input to be provided on `input`, then invokes the `callback`function passing the provided input as the first argument. + * + * When called, `rl.question()` will resume the `input` stream if it has been + * paused. + * + * If the `readline.Interface` was created with `output` set to `null` or`undefined` the `query` is not written. + * + * The `callback` function passed to `rl.question()` does not follow the typical + * pattern of accepting an `Error` object or `null` as the first argument. + * The `callback` is called with the provided answer as the only argument. + * + * Example usage: + * + * ```js + * rl.question('What is your favorite food? ', (answer) => { + * console.log(`Oh, so your favorite food is ${answer}`); + * }); + * ``` + * + * Using an `AbortController` to cancel a question. + * + * ```js + * const ac = new AbortController(); + * const signal = ac.signal; + * + * rl.question('What is your favorite food? ', { signal }, (answer) => { + * console.log(`Oh, so your favorite food is ${answer}`); + * }); + * + * signal.addEventListener('abort', () => { + * console.log('The food question timed out'); + * }, { once: true }); + * + * setTimeout(() => ac.abort(), 10000); + * ``` + * + * If this method is invoked as it's util.promisify()ed version, it returns a + * Promise that fulfills with the answer. If the question is canceled using + * an `AbortController` it will reject with an `AbortError`. + * + * ```js + * const util = require('util'); + * const question = util.promisify(rl.question).bind(rl); + * + * async function questionExample() { + * try { + * const answer = await question('What is you favorite food? '); + * console.log(`Oh, so your favorite food is ${answer}`); + * } catch (err) { + * console.error('Question rejected', err); + * } + * } + * questionExample(); + * ``` + * @since v0.3.3 + * @param query A statement or query to write to `output`, prepended to the prompt. + * @param callback A callback function that is invoked with the user's input in response to the `query`. + */ + question(query: string, callback: (answer: string) => void): void; + question(query: string, options: Abortable, callback: (answer: string) => void): void; + /** + * The `rl.pause()` method pauses the `input` stream, allowing it to be resumed + * later if necessary. + * + * Calling `rl.pause()` does not immediately pause other events (including`'line'`) from being emitted by the `readline.Interface` instance. + * @since v0.3.4 + */ + pause(): this; + /** + * The `rl.resume()` method resumes the `input` stream if it has been paused. + * @since v0.3.4 + */ + resume(): this; + /** + * The `rl.close()` method closes the `readline.Interface` instance and + * relinquishes control over the `input` and `output` streams. When called, + * the `'close'` event will be emitted. + * + * Calling `rl.close()` does not immediately stop other events (including `'line'`) + * from being emitted by the `readline.Interface` instance. + * @since v0.1.98 + */ + close(): void; + /** + * The `rl.write()` method will write either `data` or a key sequence identified + * by `key` to the `output`. The `key` argument is supported only if `output` is + * a `TTY` text terminal. See `TTY keybindings` for a list of key + * combinations. + * + * If `key` is specified, `data` is ignored. + * + * When called, `rl.write()` will resume the `input` stream if it has been + * paused. + * + * If the `readline.Interface` was created with `output` set to `null` or`undefined` the `data` and `key` are not written. + * + * ```js + * rl.write('Delete this!'); + * // Simulate Ctrl+U to delete the line written previously + * rl.write(null, { ctrl: true, name: 'u' }); + * ``` + * + * The `rl.write()` method will write the data to the `readline` `Interface`'s`input`_as if it were provided by the user_. + * @since v0.1.98 + */ + write(data: string | Buffer, key?: Key): void; + write(data: undefined | null | string | Buffer, key: Key): void; + /** + * Returns the real position of the cursor in relation to the input + * prompt + string. Long input (wrapping) strings, as well as multiple + * line prompts are included in the calculations. + * @since v13.5.0, v12.16.0 + */ + getCursorPos(): CursorPos; + /** + * events.EventEmitter + * 1. close + * 2. line + * 3. pause + * 4. resume + * 5. SIGCONT + * 6. SIGINT + * 7. SIGTSTP + * 8. history + */ + addListener(event: string, listener: (...args: any[]) => void): this; + addListener(event: 'close', listener: () => void): this; + addListener(event: 'line', listener: (input: string) => void): this; + addListener(event: 'pause', listener: () => void): this; + addListener(event: 'resume', listener: () => void): this; + addListener(event: 'SIGCONT', listener: () => void): this; + addListener(event: 'SIGINT', listener: () => void): this; + addListener(event: 'SIGTSTP', listener: () => void): this; + addListener(event: 'history', listener: (history: string[]) => void): this; + emit(event: string | symbol, ...args: any[]): boolean; + emit(event: 'close'): boolean; + emit(event: 'line', input: string): boolean; + emit(event: 'pause'): boolean; + emit(event: 'resume'): boolean; + emit(event: 'SIGCONT'): boolean; + emit(event: 'SIGINT'): boolean; + emit(event: 'SIGTSTP'): boolean; + emit(event: 'history', history: string[]): boolean; + on(event: string, listener: (...args: any[]) => void): this; + on(event: 'close', listener: () => void): this; + on(event: 'line', listener: (input: string) => void): this; + on(event: 'pause', listener: () => void): this; + on(event: 'resume', listener: () => void): this; + on(event: 'SIGCONT', listener: () => void): this; + on(event: 'SIGINT', listener: () => void): this; + on(event: 'SIGTSTP', listener: () => void): this; + on(event: 'history', listener: (history: string[]) => void): this; + once(event: string, listener: (...args: any[]) => void): this; + once(event: 'close', listener: () => void): this; + once(event: 'line', listener: (input: string) => void): this; + once(event: 'pause', listener: () => void): this; + once(event: 'resume', listener: () => void): this; + once(event: 'SIGCONT', listener: () => void): this; + once(event: 'SIGINT', listener: () => void): this; + once(event: 'SIGTSTP', listener: () => void): this; + once(event: 'history', listener: (history: string[]) => void): this; + prependListener(event: string, listener: (...args: any[]) => void): this; + prependListener(event: 'close', listener: () => void): this; + prependListener(event: 'line', listener: (input: string) => void): this; + prependListener(event: 'pause', listener: () => void): this; + prependListener(event: 'resume', listener: () => void): this; + prependListener(event: 'SIGCONT', listener: () => void): this; + prependListener(event: 'SIGINT', listener: () => void): this; + prependListener(event: 'SIGTSTP', listener: () => void): this; + prependListener(event: 'history', listener: (history: string[]) => void): this; + prependOnceListener(event: string, listener: (...args: any[]) => void): this; + prependOnceListener(event: 'close', listener: () => void): this; + prependOnceListener(event: 'line', listener: (input: string) => void): this; + prependOnceListener(event: 'pause', listener: () => void): this; + prependOnceListener(event: 'resume', listener: () => void): this; + prependOnceListener(event: 'SIGCONT', listener: () => void): this; + prependOnceListener(event: 'SIGINT', listener: () => void): this; + prependOnceListener(event: 'SIGTSTP', listener: () => void): this; + prependOnceListener(event: 'history', listener: (history: string[]) => void): this; + [Symbol.asyncIterator](): AsyncIterableIterator; + } + export type ReadLine = Interface; // type forwarded for backwards compatibility + export type Completer = (line: string) => CompleterResult; + export type AsyncCompleter = (line: string, callback: (err?: null | Error, result?: CompleterResult) => void) => void; + export type CompleterResult = [string[], string]; + export interface ReadLineOptions { + input: NodeJS.ReadableStream; + output?: NodeJS.WritableStream | undefined; + completer?: Completer | AsyncCompleter | undefined; + terminal?: boolean | undefined; + /** + * Initial list of history lines. This option makes sense + * only if `terminal` is set to `true` by the user or by an internal `output` + * check, otherwise the history caching mechanism is not initialized at all. + * @default [] + */ + history?: string[] | undefined; + historySize?: number | undefined; + prompt?: string | undefined; + crlfDelay?: number | undefined; + /** + * If `true`, when a new input line added + * to the history list duplicates an older one, this removes the older line + * from the list. + * @default false + */ + removeHistoryDuplicates?: boolean | undefined; + escapeCodeTimeout?: number | undefined; + tabSize?: number | undefined; + } + /** + * The `readline.createInterface()` method creates a new `readline.Interface`instance. + * + * ```js + * const readline = require('readline'); + * const rl = readline.createInterface({ + * input: process.stdin, + * output: process.stdout + * }); + * ``` + * + * Once the `readline.Interface` instance is created, the most common case is to + * listen for the `'line'` event: + * + * ```js + * rl.on('line', (line) => { + * console.log(`Received: ${line}`); + * }); + * ``` + * + * If `terminal` is `true` for this instance then the `output` stream will get + * the best compatibility if it defines an `output.columns` property and emits + * a `'resize'` event on the `output` if or when the columns ever change + * (`process.stdout` does this automatically when it is a TTY). + * + * When creating a `readline.Interface` using `stdin` as input, the program + * will not terminate until it receives `EOF` (Ctrl+D on + * Linux/macOS, Ctrl+Z followed by Return on + * Windows). + * If you want your application to exit without waiting for user input, you can `unref()` the standard input stream: + * + * ```js + * process.stdin.unref(); + * ``` + * @since v0.1.98 + */ + export function createInterface(input: NodeJS.ReadableStream, output?: NodeJS.WritableStream, completer?: Completer | AsyncCompleter, terminal?: boolean): Interface; + export function createInterface(options: ReadLineOptions): Interface; + /** + * The `readline.emitKeypressEvents()` method causes the given `Readable` stream to begin emitting `'keypress'` events corresponding to received input. + * + * Optionally, `interface` specifies a `readline.Interface` instance for which + * autocompletion is disabled when copy-pasted input is detected. + * + * If the `stream` is a `TTY`, then it must be in raw mode. + * + * This is automatically called by any readline instance on its `input` if the`input` is a terminal. Closing the `readline` instance does not stop + * the `input` from emitting `'keypress'` events. + * + * ```js + * readline.emitKeypressEvents(process.stdin); + * if (process.stdin.isTTY) + * process.stdin.setRawMode(true); + * ``` + * + * ## Example: Tiny CLI + * + * The following example illustrates the use of `readline.Interface` class to + * implement a small command-line interface: + * + * ```js + * const readline = require('readline'); + * const rl = readline.createInterface({ + * input: process.stdin, + * output: process.stdout, + * prompt: 'OHAI> ' + * }); + * + * rl.prompt(); + * + * rl.on('line', (line) => { + * switch (line.trim()) { + * case 'hello': + * console.log('world!'); + * break; + * default: + * console.log(`Say what? I might have heard '${line.trim()}'`); + * break; + * } + * rl.prompt(); + * }).on('close', () => { + * console.log('Have a great day!'); + * process.exit(0); + * }); + * ``` + * + * ## Example: Read file stream line-by-Line + * + * A common use case for `readline` is to consume an input file one line at a + * time. The easiest way to do so is leveraging the `fs.ReadStream` API as + * well as a `for await...of` loop: + * + * ```js + * const fs = require('fs'); + * const readline = require('readline'); + * + * async function processLineByLine() { + * const fileStream = fs.createReadStream('input.txt'); + * + * const rl = readline.createInterface({ + * input: fileStream, + * crlfDelay: Infinity + * }); + * // Note: we use the crlfDelay option to recognize all instances of CR LF + * // ('\r\n') in input.txt as a single line break. + * + * for await (const line of rl) { + * // Each line in input.txt will be successively available here as `line`. + * console.log(`Line from file: ${line}`); + * } + * } + * + * processLineByLine(); + * ``` + * + * Alternatively, one could use the `'line'` event: + * + * ```js + * const fs = require('fs'); + * const readline = require('readline'); + * + * const rl = readline.createInterface({ + * input: fs.createReadStream('sample.txt'), + * crlfDelay: Infinity + * }); + * + * rl.on('line', (line) => { + * console.log(`Line from file: ${line}`); + * }); + * ``` + * + * Currently, `for await...of` loop can be a bit slower. If `async` / `await`flow and speed are both essential, a mixed approach can be applied: + * + * ```js + * const { once } = require('events'); + * const { createReadStream } = require('fs'); + * const { createInterface } = require('readline'); + * + * (async function processLineByLine() { + * try { + * const rl = createInterface({ + * input: createReadStream('big-file.txt'), + * crlfDelay: Infinity + * }); + * + * rl.on('line', (line) => { + * // Process the line. + * }); + * + * await once(rl, 'close'); + * + * console.log('File processed.'); + * } catch (err) { + * console.error(err); + * } + * })(); + * ``` + * @since v0.7.7 + */ + export function emitKeypressEvents(stream: NodeJS.ReadableStream, readlineInterface?: Interface): void; + export type Direction = -1 | 0 | 1; + export interface CursorPos { + rows: number; + cols: number; + } + /** + * The `readline.clearLine()` method clears current line of given `TTY` stream + * in a specified direction identified by `dir`. + * @since v0.7.7 + * @param callback Invoked once the operation completes. + * @return `false` if `stream` wishes for the calling code to wait for the `'drain'` event to be emitted before continuing to write additional data; otherwise `true`. + */ + export function clearLine(stream: NodeJS.WritableStream, dir: Direction, callback?: () => void): boolean; + /** + * The `readline.clearScreenDown()` method clears the given `TTY` stream from + * the current position of the cursor down. + * @since v0.7.7 + * @param callback Invoked once the operation completes. + * @return `false` if `stream` wishes for the calling code to wait for the `'drain'` event to be emitted before continuing to write additional data; otherwise `true`. + */ + export function clearScreenDown(stream: NodeJS.WritableStream, callback?: () => void): boolean; + /** + * The `readline.cursorTo()` method moves cursor to the specified position in a + * given `TTY` `stream`. + * @since v0.7.7 + * @param callback Invoked once the operation completes. + * @return `false` if `stream` wishes for the calling code to wait for the `'drain'` event to be emitted before continuing to write additional data; otherwise `true`. + */ + export function cursorTo(stream: NodeJS.WritableStream, x: number, y?: number, callback?: () => void): boolean; + /** + * The `readline.moveCursor()` method moves the cursor _relative_ to its current + * position in a given `TTY` `stream`. + * + * ## Example: Tiny CLI + * + * The following example illustrates the use of `readline.Interface` class to + * implement a small command-line interface: + * + * ```js + * const readline = require('readline'); + * const rl = readline.createInterface({ + * input: process.stdin, + * output: process.stdout, + * prompt: 'OHAI> ' + * }); + * + * rl.prompt(); + * + * rl.on('line', (line) => { + * switch (line.trim()) { + * case 'hello': + * console.log('world!'); + * break; + * default: + * console.log(`Say what? I might have heard '${line.trim()}'`); + * break; + * } + * rl.prompt(); + * }).on('close', () => { + * console.log('Have a great day!'); + * process.exit(0); + * }); + * ``` + * + * ## Example: Read file stream line-by-Line + * + * A common use case for `readline` is to consume an input file one line at a + * time. The easiest way to do so is leveraging the `fs.ReadStream` API as + * well as a `for await...of` loop: + * + * ```js + * const fs = require('fs'); + * const readline = require('readline'); + * + * async function processLineByLine() { + * const fileStream = fs.createReadStream('input.txt'); + * + * const rl = readline.createInterface({ + * input: fileStream, + * crlfDelay: Infinity + * }); + * // Note: we use the crlfDelay option to recognize all instances of CR LF + * // ('\r\n') in input.txt as a single line break. + * + * for await (const line of rl) { + * // Each line in input.txt will be successively available here as `line`. + * console.log(`Line from file: ${line}`); + * } + * } + * + * processLineByLine(); + * ``` + * + * Alternatively, one could use the `'line'` event: + * + * ```js + * const fs = require('fs'); + * const readline = require('readline'); + * + * const rl = readline.createInterface({ + * input: fs.createReadStream('sample.txt'), + * crlfDelay: Infinity + * }); + * + * rl.on('line', (line) => { + * console.log(`Line from file: ${line}`); + * }); + * ``` + * + * Currently, `for await...of` loop can be a bit slower. If `async` / `await`flow and speed are both essential, a mixed approach can be applied: + * + * ```js + * const { once } = require('events'); + * const { createReadStream } = require('fs'); + * const { createInterface } = require('readline'); + * + * (async function processLineByLine() { + * try { + * const rl = createInterface({ + * input: createReadStream('big-file.txt'), + * crlfDelay: Infinity + * }); + * + * rl.on('line', (line) => { + * // Process the line. + * }); + * + * await once(rl, 'close'); + * + * console.log('File processed.'); + * } catch (err) { + * console.error(err); + * } + * })(); + * ``` + * @since v0.7.7 + * @param callback Invoked once the operation completes. + * @return `false` if `stream` wishes for the calling code to wait for the `'drain'` event to be emitted before continuing to write additional data; otherwise `true`. + */ + export function moveCursor(stream: NodeJS.WritableStream, dx: number, dy: number, callback?: () => void): boolean; +} +declare module 'node:readline' { + export * from 'readline'; +} diff --git a/node_modules/@types/node/ts4.8/readline/promises.d.ts b/node_modules/@types/node/ts4.8/readline/promises.d.ts new file mode 100644 index 000000000..8f9f06f0b --- /dev/null +++ b/node_modules/@types/node/ts4.8/readline/promises.d.ts @@ -0,0 +1,143 @@ +/** + * The `readline/promise` module provides an API for reading lines of input from a Readable stream one line at a time. + * + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/readline/promises.js) + * @since v17.0.0 + */ +declare module 'readline/promises' { + import { Interface as _Interface, ReadLineOptions, Completer, AsyncCompleter, Direction } from 'node:readline'; + import { Abortable } from 'node:events'; + + class Interface extends _Interface { + /** + * The rl.question() method displays the query by writing it to the output, waits for user input to be provided on input, + * then invokes the callback function passing the provided input as the first argument. + * + * When called, rl.question() will resume the input stream if it has been paused. + * + * If the readlinePromises.Interface was created with output set to null or undefined the query is not written. + * + * If the question is called after rl.close(), it returns a rejected promise. + * + * Example usage: + * + * ```js + * const answer = await rl.question('What is your favorite food? '); + * console.log(`Oh, so your favorite food is ${answer}`); + * ``` + * + * Using an AbortSignal to cancel a question. + * + * ```js + * const signal = AbortSignal.timeout(10_000); + * + * signal.addEventListener('abort', () => { + * console.log('The food question timed out'); + * }, { once: true }); + * + * const answer = await rl.question('What is your favorite food? ', { signal }); + * console.log(`Oh, so your favorite food is ${answer}`); + * ``` + * + * @since v17.0.0 + * @param query A statement or query to write to output, prepended to the prompt. + */ + question(query: string): Promise; + question(query: string, options: Abortable): Promise; + } + + class Readline { + /** + * @param stream A TTY stream. + */ + constructor(stream: NodeJS.WritableStream, options?: { autoCommit?: boolean }); + /** + * The `rl.clearLine()` method adds to the internal list of pending action an action that clears current line of the associated `stream` in a specified direction identified by `dir`. + * Call `rl.commit()` to see the effect of this method, unless `autoCommit: true` was passed to the constructor. + */ + clearLine(dir: Direction): this; + /** + * The `rl.clearScreenDown()` method adds to the internal list of pending action an action that clears the associated `stream` from the current position of the cursor down. + * Call `rl.commit()` to see the effect of this method, unless `autoCommit: true` was passed to the constructor. + */ + clearScreenDown(): this; + /** + * The `rl.commit()` method sends all the pending actions to the associated `stream` and clears the internal list of pending actions. + */ + commit(): Promise; + /** + * The `rl.cursorTo()` method adds to the internal list of pending action an action that moves cursor to the specified position in the associated `stream`. + * Call `rl.commit()` to see the effect of this method, unless `autoCommit: true` was passed to the constructor. + */ + cursorTo(x: number, y?: number): this; + /** + * The `rl.moveCursor()` method adds to the internal list of pending action an action that moves the cursor relative to its current position in the associated `stream`. + * Call `rl.commit()` to see the effect of this method, unless autoCommit: true was passed to the constructor. + */ + moveCursor(dx: number, dy: number): this; + /** + * The `rl.rollback()` method clears the internal list of pending actions without sending it to the associated `stream`. + */ + rollback(): this; + } + + /** + * The `readlinePromises.createInterface()` method creates a new `readlinePromises.Interface` instance. + * + * ```js + * const readlinePromises = require('node:readline/promises'); + * const rl = readlinePromises.createInterface({ + * input: process.stdin, + * output: process.stdout + * }); + * ``` + * + * Once the `readlinePromises.Interface` instance is created, the most common case is to listen for the `'line'` event: + * + * ```js + * rl.on('line', (line) => { + * console.log(`Received: ${line}`); + * }); + * ``` + * + * If `terminal` is `true` for this instance then the `output` stream will get the best compatibility if it defines an `output.columns` property, + * and emits a `'resize'` event on the `output`, if or when the columns ever change (`process.stdout` does this automatically when it is a TTY). + * + * ## Use of the `completer` function + * + * The `completer` function takes the current line entered by the user as an argument, and returns an `Array` with 2 entries: + * + * - An Array with matching entries for the completion. + * - The substring that was used for the matching. + * + * For instance: `[[substr1, substr2, ...], originalsubstring]`. + * + * ```js + * function completer(line) { + * const completions = '.help .error .exit .quit .q'.split(' '); + * const hits = completions.filter((c) => c.startsWith(line)); + * // Show all completions if none found + * return [hits.length ? hits : completions, line]; + * } + * ``` + * + * The `completer` function can also returns a `Promise`, or be asynchronous: + * + * ```js + * async function completer(linePartial) { + * await someAsyncWork(); + * return [['123'], linePartial]; + * } + * ``` + */ + function createInterface( + input: NodeJS.ReadableStream, + output?: NodeJS.WritableStream, + completer?: Completer | AsyncCompleter, + terminal?: boolean, + ): Interface; + function createInterface(options: ReadLineOptions): Interface; +} +declare module 'node:readline/promises' { + export * from 'readline/promises'; +} diff --git a/node_modules/@types/node/ts4.8/repl.d.ts b/node_modules/@types/node/ts4.8/repl.d.ts new file mode 100644 index 000000000..be42ccc4a --- /dev/null +++ b/node_modules/@types/node/ts4.8/repl.d.ts @@ -0,0 +1,424 @@ +/** + * The `repl` module provides a Read-Eval-Print-Loop (REPL) implementation that + * is available both as a standalone program or includible in other applications. + * It can be accessed using: + * + * ```js + * const repl = require('repl'); + * ``` + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/repl.js) + */ +declare module 'repl' { + import { Interface, Completer, AsyncCompleter } from 'node:readline'; + import { Context } from 'node:vm'; + import { InspectOptions } from 'node:util'; + interface ReplOptions { + /** + * The input prompt to display. + * @default "> " + */ + prompt?: string | undefined; + /** + * The `Readable` stream from which REPL input will be read. + * @default process.stdin + */ + input?: NodeJS.ReadableStream | undefined; + /** + * The `Writable` stream to which REPL output will be written. + * @default process.stdout + */ + output?: NodeJS.WritableStream | undefined; + /** + * If `true`, specifies that the output should be treated as a TTY terminal, and have + * ANSI/VT100 escape codes written to it. + * Default: checking the value of the `isTTY` property on the output stream upon + * instantiation. + */ + terminal?: boolean | undefined; + /** + * The function to be used when evaluating each given line of input. + * Default: an async wrapper for the JavaScript `eval()` function. An `eval` function can + * error with `repl.Recoverable` to indicate the input was incomplete and prompt for + * additional lines. + * + * @see https://nodejs.org/dist/latest-v10.x/docs/api/repl.html#repl_default_evaluation + * @see https://nodejs.org/dist/latest-v10.x/docs/api/repl.html#repl_custom_evaluation_functions + */ + eval?: REPLEval | undefined; + /** + * Defines if the repl prints output previews or not. + * @default `true` Always `false` in case `terminal` is falsy. + */ + preview?: boolean | undefined; + /** + * If `true`, specifies that the default `writer` function should include ANSI color + * styling to REPL output. If a custom `writer` function is provided then this has no + * effect. + * Default: the REPL instance's `terminal` value. + */ + useColors?: boolean | undefined; + /** + * If `true`, specifies that the default evaluation function will use the JavaScript + * `global` as the context as opposed to creating a new separate context for the REPL + * instance. The node CLI REPL sets this value to `true`. + * Default: `false`. + */ + useGlobal?: boolean | undefined; + /** + * If `true`, specifies that the default writer will not output the return value of a + * command if it evaluates to `undefined`. + * Default: `false`. + */ + ignoreUndefined?: boolean | undefined; + /** + * The function to invoke to format the output of each command before writing to `output`. + * Default: a wrapper for `util.inspect`. + * + * @see https://nodejs.org/dist/latest-v10.x/docs/api/repl.html#repl_customizing_repl_output + */ + writer?: REPLWriter | undefined; + /** + * An optional function used for custom Tab auto completion. + * + * @see https://nodejs.org/dist/latest-v11.x/docs/api/readline.html#readline_use_of_the_completer_function + */ + completer?: Completer | AsyncCompleter | undefined; + /** + * A flag that specifies whether the default evaluator executes all JavaScript commands in + * strict mode or default (sloppy) mode. + * Accepted values are: + * - `repl.REPL_MODE_SLOPPY` - evaluates expressions in sloppy mode. + * - `repl.REPL_MODE_STRICT` - evaluates expressions in strict mode. This is equivalent to + * prefacing every repl statement with `'use strict'`. + */ + replMode?: typeof REPL_MODE_SLOPPY | typeof REPL_MODE_STRICT | undefined; + /** + * Stop evaluating the current piece of code when `SIGINT` is received, i.e. `Ctrl+C` is + * pressed. This cannot be used together with a custom `eval` function. + * Default: `false`. + */ + breakEvalOnSigint?: boolean | undefined; + } + type REPLEval = (this: REPLServer, evalCmd: string, context: Context, file: string, cb: (err: Error | null, result: any) => void) => void; + type REPLWriter = (this: REPLServer, obj: any) => string; + /** + * This is the default "writer" value, if none is passed in the REPL options, + * and it can be overridden by custom print functions. + */ + const writer: REPLWriter & { + options: InspectOptions; + }; + type REPLCommandAction = (this: REPLServer, text: string) => void; + interface REPLCommand { + /** + * Help text to be displayed when `.help` is entered. + */ + help?: string | undefined; + /** + * The function to execute, optionally accepting a single string argument. + */ + action: REPLCommandAction; + } + /** + * Instances of `repl.REPLServer` are created using the {@link start} method + * or directly using the JavaScript `new` keyword. + * + * ```js + * const repl = require('repl'); + * + * const options = { useColors: true }; + * + * const firstInstance = repl.start(options); + * const secondInstance = new repl.REPLServer(options); + * ``` + * @since v0.1.91 + */ + class REPLServer extends Interface { + /** + * The `vm.Context` provided to the `eval` function to be used for JavaScript + * evaluation. + */ + readonly context: Context; + /** + * @deprecated since v14.3.0 - Use `input` instead. + */ + readonly inputStream: NodeJS.ReadableStream; + /** + * @deprecated since v14.3.0 - Use `output` instead. + */ + readonly outputStream: NodeJS.WritableStream; + /** + * The `Readable` stream from which REPL input will be read. + */ + readonly input: NodeJS.ReadableStream; + /** + * The `Writable` stream to which REPL output will be written. + */ + readonly output: NodeJS.WritableStream; + /** + * The commands registered via `replServer.defineCommand()`. + */ + readonly commands: NodeJS.ReadOnlyDict; + /** + * A value indicating whether the REPL is currently in "editor mode". + * + * @see https://nodejs.org/dist/latest-v10.x/docs/api/repl.html#repl_commands_and_special_keys + */ + readonly editorMode: boolean; + /** + * A value indicating whether the `_` variable has been assigned. + * + * @see https://nodejs.org/dist/latest-v10.x/docs/api/repl.html#repl_assignment_of_the_underscore_variable + */ + readonly underscoreAssigned: boolean; + /** + * The last evaluation result from the REPL (assigned to the `_` variable inside of the REPL). + * + * @see https://nodejs.org/dist/latest-v10.x/docs/api/repl.html#repl_assignment_of_the_underscore_variable + */ + readonly last: any; + /** + * A value indicating whether the `_error` variable has been assigned. + * + * @since v9.8.0 + * @see https://nodejs.org/dist/latest-v10.x/docs/api/repl.html#repl_assignment_of_the_underscore_variable + */ + readonly underscoreErrAssigned: boolean; + /** + * The last error raised inside the REPL (assigned to the `_error` variable inside of the REPL). + * + * @since v9.8.0 + * @see https://nodejs.org/dist/latest-v10.x/docs/api/repl.html#repl_assignment_of_the_underscore_variable + */ + readonly lastError: any; + /** + * Specified in the REPL options, this is the function to be used when evaluating each + * given line of input. If not specified in the REPL options, this is an async wrapper + * for the JavaScript `eval()` function. + */ + readonly eval: REPLEval; + /** + * Specified in the REPL options, this is a value indicating whether the default + * `writer` function should include ANSI color styling to REPL output. + */ + readonly useColors: boolean; + /** + * Specified in the REPL options, this is a value indicating whether the default `eval` + * function will use the JavaScript `global` as the context as opposed to creating a new + * separate context for the REPL instance. + */ + readonly useGlobal: boolean; + /** + * Specified in the REPL options, this is a value indicating whether the default `writer` + * function should output the result of a command if it evaluates to `undefined`. + */ + readonly ignoreUndefined: boolean; + /** + * Specified in the REPL options, this is the function to invoke to format the output of + * each command before writing to `outputStream`. If not specified in the REPL options, + * this will be a wrapper for `util.inspect`. + */ + readonly writer: REPLWriter; + /** + * Specified in the REPL options, this is the function to use for custom Tab auto-completion. + */ + readonly completer: Completer | AsyncCompleter; + /** + * Specified in the REPL options, this is a flag that specifies whether the default `eval` + * function should execute all JavaScript commands in strict mode or default (sloppy) mode. + * Possible values are: + * - `repl.REPL_MODE_SLOPPY` - evaluates expressions in sloppy mode. + * - `repl.REPL_MODE_STRICT` - evaluates expressions in strict mode. This is equivalent to + * prefacing every repl statement with `'use strict'`. + */ + readonly replMode: typeof REPL_MODE_SLOPPY | typeof REPL_MODE_STRICT; + /** + * NOTE: According to the documentation: + * + * > Instances of `repl.REPLServer` are created using the `repl.start()` method and + * > _should not_ be created directly using the JavaScript `new` keyword. + * + * `REPLServer` cannot be subclassed due to implementation specifics in NodeJS. + * + * @see https://nodejs.org/dist/latest-v10.x/docs/api/repl.html#repl_class_replserver + */ + private constructor(); + /** + * The `replServer.defineCommand()` method is used to add new `.`\-prefixed commands + * to the REPL instance. Such commands are invoked by typing a `.` followed by the`keyword`. The `cmd` is either a `Function` or an `Object` with the following + * properties: + * + * The following example shows two new commands added to the REPL instance: + * + * ```js + * const repl = require('repl'); + * + * const replServer = repl.start({ prompt: '> ' }); + * replServer.defineCommand('sayhello', { + * help: 'Say hello', + * action(name) { + * this.clearBufferedCommand(); + * console.log(`Hello, ${name}!`); + * this.displayPrompt(); + * } + * }); + * replServer.defineCommand('saybye', function saybye() { + * console.log('Goodbye!'); + * this.close(); + * }); + * ``` + * + * The new commands can then be used from within the REPL instance: + * + * ```console + * > .sayhello Node.js User + * Hello, Node.js User! + * > .saybye + * Goodbye! + * ``` + * @since v0.3.0 + * @param keyword The command keyword (_without_ a leading `.` character). + * @param cmd The function to invoke when the command is processed. + */ + defineCommand(keyword: string, cmd: REPLCommandAction | REPLCommand): void; + /** + * The `replServer.displayPrompt()` method readies the REPL instance for input + * from the user, printing the configured `prompt` to a new line in the `output`and resuming the `input` to accept new input. + * + * When multi-line input is being entered, an ellipsis is printed rather than the + * 'prompt'. + * + * When `preserveCursor` is `true`, the cursor placement will not be reset to `0`. + * + * The `replServer.displayPrompt` method is primarily intended to be called from + * within the action function for commands registered using the`replServer.defineCommand()` method. + * @since v0.1.91 + */ + displayPrompt(preserveCursor?: boolean): void; + /** + * The `replServer.clearBufferedCommand()` method clears any command that has been + * buffered but not yet executed. This method is primarily intended to be + * called from within the action function for commands registered using the`replServer.defineCommand()` method. + * @since v9.0.0 + */ + clearBufferedCommand(): void; + /** + * Initializes a history log file for the REPL instance. When executing the + * Node.js binary and using the command-line REPL, a history file is initialized + * by default. However, this is not the case when creating a REPL + * programmatically. Use this method to initialize a history log file when working + * with REPL instances programmatically. + * @since v11.10.0 + * @param historyPath the path to the history file + * @param callback called when history writes are ready or upon error + */ + setupHistory(path: string, callback: (err: Error | null, repl: this) => void): void; + /** + * events.EventEmitter + * 1. close - inherited from `readline.Interface` + * 2. line - inherited from `readline.Interface` + * 3. pause - inherited from `readline.Interface` + * 4. resume - inherited from `readline.Interface` + * 5. SIGCONT - inherited from `readline.Interface` + * 6. SIGINT - inherited from `readline.Interface` + * 7. SIGTSTP - inherited from `readline.Interface` + * 8. exit + * 9. reset + */ + addListener(event: string, listener: (...args: any[]) => void): this; + addListener(event: 'close', listener: () => void): this; + addListener(event: 'line', listener: (input: string) => void): this; + addListener(event: 'pause', listener: () => void): this; + addListener(event: 'resume', listener: () => void): this; + addListener(event: 'SIGCONT', listener: () => void): this; + addListener(event: 'SIGINT', listener: () => void): this; + addListener(event: 'SIGTSTP', listener: () => void): this; + addListener(event: 'exit', listener: () => void): this; + addListener(event: 'reset', listener: (context: Context) => void): this; + emit(event: string | symbol, ...args: any[]): boolean; + emit(event: 'close'): boolean; + emit(event: 'line', input: string): boolean; + emit(event: 'pause'): boolean; + emit(event: 'resume'): boolean; + emit(event: 'SIGCONT'): boolean; + emit(event: 'SIGINT'): boolean; + emit(event: 'SIGTSTP'): boolean; + emit(event: 'exit'): boolean; + emit(event: 'reset', context: Context): boolean; + on(event: string, listener: (...args: any[]) => void): this; + on(event: 'close', listener: () => void): this; + on(event: 'line', listener: (input: string) => void): this; + on(event: 'pause', listener: () => void): this; + on(event: 'resume', listener: () => void): this; + on(event: 'SIGCONT', listener: () => void): this; + on(event: 'SIGINT', listener: () => void): this; + on(event: 'SIGTSTP', listener: () => void): this; + on(event: 'exit', listener: () => void): this; + on(event: 'reset', listener: (context: Context) => void): this; + once(event: string, listener: (...args: any[]) => void): this; + once(event: 'close', listener: () => void): this; + once(event: 'line', listener: (input: string) => void): this; + once(event: 'pause', listener: () => void): this; + once(event: 'resume', listener: () => void): this; + once(event: 'SIGCONT', listener: () => void): this; + once(event: 'SIGINT', listener: () => void): this; + once(event: 'SIGTSTP', listener: () => void): this; + once(event: 'exit', listener: () => void): this; + once(event: 'reset', listener: (context: Context) => void): this; + prependListener(event: string, listener: (...args: any[]) => void): this; + prependListener(event: 'close', listener: () => void): this; + prependListener(event: 'line', listener: (input: string) => void): this; + prependListener(event: 'pause', listener: () => void): this; + prependListener(event: 'resume', listener: () => void): this; + prependListener(event: 'SIGCONT', listener: () => void): this; + prependListener(event: 'SIGINT', listener: () => void): this; + prependListener(event: 'SIGTSTP', listener: () => void): this; + prependListener(event: 'exit', listener: () => void): this; + prependListener(event: 'reset', listener: (context: Context) => void): this; + prependOnceListener(event: string, listener: (...args: any[]) => void): this; + prependOnceListener(event: 'close', listener: () => void): this; + prependOnceListener(event: 'line', listener: (input: string) => void): this; + prependOnceListener(event: 'pause', listener: () => void): this; + prependOnceListener(event: 'resume', listener: () => void): this; + prependOnceListener(event: 'SIGCONT', listener: () => void): this; + prependOnceListener(event: 'SIGINT', listener: () => void): this; + prependOnceListener(event: 'SIGTSTP', listener: () => void): this; + prependOnceListener(event: 'exit', listener: () => void): this; + prependOnceListener(event: 'reset', listener: (context: Context) => void): this; + } + /** + * A flag passed in the REPL options. Evaluates expressions in sloppy mode. + */ + const REPL_MODE_SLOPPY: unique symbol; + /** + * A flag passed in the REPL options. Evaluates expressions in strict mode. + * This is equivalent to prefacing every repl statement with `'use strict'`. + */ + const REPL_MODE_STRICT: unique symbol; + /** + * The `repl.start()` method creates and starts a {@link REPLServer} instance. + * + * If `options` is a string, then it specifies the input prompt: + * + * ```js + * const repl = require('repl'); + * + * // a Unix style prompt + * repl.start('$ '); + * ``` + * @since v0.1.91 + */ + function start(options?: string | ReplOptions): REPLServer; + /** + * Indicates a recoverable error that a `REPLServer` can use to support multi-line input. + * + * @see https://nodejs.org/dist/latest-v10.x/docs/api/repl.html#repl_recoverable_errors + */ + class Recoverable extends SyntaxError { + err: Error; + constructor(err: Error); + } +} +declare module 'node:repl' { + export * from 'repl'; +} diff --git a/node_modules/@types/node/ts4.8/stream.d.ts b/node_modules/@types/node/ts4.8/stream.d.ts new file mode 100644 index 000000000..d478f335c --- /dev/null +++ b/node_modules/@types/node/ts4.8/stream.d.ts @@ -0,0 +1,1339 @@ +/** + * A stream is an abstract interface for working with streaming data in Node.js. + * The `stream` module provides an API for implementing the stream interface. + * + * There are many stream objects provided by Node.js. For instance, a `request to an HTTP server` and `process.stdout` are both stream instances. + * + * Streams can be readable, writable, or both. All streams are instances of `EventEmitter`. + * + * To access the `stream` module: + * + * ```js + * const stream = require('stream'); + * ``` + * + * The `stream` module is useful for creating new types of stream instances. It is + * usually not necessary to use the `stream` module to consume streams. + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/stream.js) + */ +declare module 'stream' { + import { EventEmitter, Abortable } from 'node:events'; + import * as streamPromises from 'node:stream/promises'; + import * as streamConsumers from 'node:stream/consumers'; + import * as streamWeb from 'node:stream/web'; + class internal extends EventEmitter { + pipe( + destination: T, + options?: { + end?: boolean | undefined; + } + ): T; + } + namespace internal { + class Stream extends internal { + constructor(opts?: ReadableOptions); + } + interface StreamOptions extends Abortable { + emitClose?: boolean | undefined; + highWaterMark?: number | undefined; + objectMode?: boolean | undefined; + construct?(this: T, callback: (error?: Error | null) => void): void; + destroy?(this: T, error: Error | null, callback: (error: Error | null) => void): void; + autoDestroy?: boolean | undefined; + } + interface ReadableOptions extends StreamOptions { + encoding?: BufferEncoding | undefined; + read?(this: Readable, size: number): void; + } + /** + * @since v0.9.4 + */ + class Readable extends Stream implements NodeJS.ReadableStream { + /** + * A utility method for creating Readable Streams out of iterators. + */ + static from(iterable: Iterable | AsyncIterable, options?: ReadableOptions): Readable; + /** + * A utility method for creating a `Readable` from a web `ReadableStream`. + * @since v17.0.0 + * @experimental + */ + static fromWeb(readableStream: streamWeb.ReadableStream, options?: Pick): Readable; + /** + * Returns whether the stream has been read from or cancelled. + * @since v16.8.0 + */ + static isDisturbed(stream: Readable | NodeJS.ReadableStream): boolean; + /** + * A utility method for creating a web `ReadableStream` from a `Readable`. + * @since v17.0.0 + * @experimental + */ + static toWeb(streamReadable: Readable): streamWeb.ReadableStream; + /** + * Returns whether the stream was destroyed or errored before emitting `'end'`. + * @since v16.8.0 + * @experimental + */ + readonly readableAborted: boolean; + /** + * Is `true` if it is safe to call `readable.read()`, which means + * the stream has not been destroyed or emitted `'error'` or `'end'`. + * @since v11.4.0 + */ + readable: boolean; + /** + * Returns whether `'data'` has been emitted. + * @since v16.7.0, v14.18.0 + * @experimental + */ + readonly readableDidRead: boolean; + /** + * Getter for the property `encoding` of a given `Readable` stream. The `encoding`property can be set using the `readable.setEncoding()` method. + * @since v12.7.0 + */ + readonly readableEncoding: BufferEncoding | null; + /** + * Becomes `true` when `'end'` event is emitted. + * @since v12.9.0 + */ + readonly readableEnded: boolean; + /** + * This property reflects the current state of a `Readable` stream as described + * in the `Three states` section. + * @since v9.4.0 + */ + readonly readableFlowing: boolean | null; + /** + * Returns the value of `highWaterMark` passed when creating this `Readable`. + * @since v9.3.0 + */ + readonly readableHighWaterMark: number; + /** + * This property contains the number of bytes (or objects) in the queue + * ready to be read. The value provides introspection data regarding + * the status of the `highWaterMark`. + * @since v9.4.0 + */ + readonly readableLength: number; + /** + * Getter for the property `objectMode` of a given `Readable` stream. + * @since v12.3.0 + */ + readonly readableObjectMode: boolean; + /** + * Is `true` after `readable.destroy()` has been called. + * @since v18.0.0 + */ + destroyed: boolean; + /** + * Is true after 'close' has been emitted. + * @since v8.0.0 + */ + readonly closed: boolean; + /** + * Returns error if the stream has been destroyed with an error. + * @since v18.0.0 + */ + readonly errored: Error | null; + constructor(opts?: ReadableOptions); + _construct?(callback: (error?: Error | null) => void): void; + _read(size: number): void; + /** + * The `readable.read()` method reads data out of the internal buffer and + * returns it. If no data is available to be read, `null` is returned. By default, + * the data is returned as a `Buffer` object unless an encoding has been + * specified using the `readable.setEncoding()` method or the stream is operating + * in object mode. + * + * The optional `size` argument specifies a specific number of bytes to read. If`size` bytes are not available to be read, `null` will be returned _unless_the stream has ended, in which + * case all of the data remaining in the internal + * buffer will be returned. + * + * If the `size` argument is not specified, all of the data contained in the + * internal buffer will be returned. + * + * The `size` argument must be less than or equal to 1 GiB. + * + * The `readable.read()` method should only be called on `Readable` streams + * operating in paused mode. In flowing mode, `readable.read()` is called + * automatically until the internal buffer is fully drained. + * + * ```js + * const readable = getReadableStreamSomehow(); + * + * // 'readable' may be triggered multiple times as data is buffered in + * readable.on('readable', () => { + * let chunk; + * console.log('Stream is readable (new data received in buffer)'); + * // Use a loop to make sure we read all currently available data + * while (null !== (chunk = readable.read())) { + * console.log(`Read ${chunk.length} bytes of data...`); + * } + * }); + * + * // 'end' will be triggered once when there is no more data available + * readable.on('end', () => { + * console.log('Reached end of stream.'); + * }); + * ``` + * + * Each call to `readable.read()` returns a chunk of data, or `null`. The chunks + * are not concatenated. A `while` loop is necessary to consume all data + * currently in the buffer. When reading a large file `.read()` may return `null`, + * having consumed all buffered content so far, but there is still more data to + * come not yet buffered. In this case a new `'readable'` event will be emitted + * when there is more data in the buffer. Finally the `'end'` event will be + * emitted when there is no more data to come. + * + * Therefore to read a file's whole contents from a `readable`, it is necessary + * to collect chunks across multiple `'readable'` events: + * + * ```js + * const chunks = []; + * + * readable.on('readable', () => { + * let chunk; + * while (null !== (chunk = readable.read())) { + * chunks.push(chunk); + * } + * }); + * + * readable.on('end', () => { + * const content = chunks.join(''); + * }); + * ``` + * + * A `Readable` stream in object mode will always return a single item from + * a call to `readable.read(size)`, regardless of the value of the`size` argument. + * + * If the `readable.read()` method returns a chunk of data, a `'data'` event will + * also be emitted. + * + * Calling {@link read} after the `'end'` event has + * been emitted will return `null`. No runtime error will be raised. + * @since v0.9.4 + * @param size Optional argument to specify how much data to read. + */ + read(size?: number): any; + /** + * The `readable.setEncoding()` method sets the character encoding for + * data read from the `Readable` stream. + * + * By default, no encoding is assigned and stream data will be returned as`Buffer` objects. Setting an encoding causes the stream data + * to be returned as strings of the specified encoding rather than as `Buffer`objects. For instance, calling `readable.setEncoding('utf8')` will cause the + * output data to be interpreted as UTF-8 data, and passed as strings. Calling`readable.setEncoding('hex')` will cause the data to be encoded in hexadecimal + * string format. + * + * The `Readable` stream will properly handle multi-byte characters delivered + * through the stream that would otherwise become improperly decoded if simply + * pulled from the stream as `Buffer` objects. + * + * ```js + * const readable = getReadableStreamSomehow(); + * readable.setEncoding('utf8'); + * readable.on('data', (chunk) => { + * assert.equal(typeof chunk, 'string'); + * console.log('Got %d characters of string data:', chunk.length); + * }); + * ``` + * @since v0.9.4 + * @param encoding The encoding to use. + */ + setEncoding(encoding: BufferEncoding): this; + /** + * The `readable.pause()` method will cause a stream in flowing mode to stop + * emitting `'data'` events, switching out of flowing mode. Any data that + * becomes available will remain in the internal buffer. + * + * ```js + * const readable = getReadableStreamSomehow(); + * readable.on('data', (chunk) => { + * console.log(`Received ${chunk.length} bytes of data.`); + * readable.pause(); + * console.log('There will be no additional data for 1 second.'); + * setTimeout(() => { + * console.log('Now data will start flowing again.'); + * readable.resume(); + * }, 1000); + * }); + * ``` + * + * The `readable.pause()` method has no effect if there is a `'readable'`event listener. + * @since v0.9.4 + */ + pause(): this; + /** + * The `readable.resume()` method causes an explicitly paused `Readable` stream to + * resume emitting `'data'` events, switching the stream into flowing mode. + * + * The `readable.resume()` method can be used to fully consume the data from a + * stream without actually processing any of that data: + * + * ```js + * getReadableStreamSomehow() + * .resume() + * .on('end', () => { + * console.log('Reached the end, but did not read anything.'); + * }); + * ``` + * + * The `readable.resume()` method has no effect if there is a `'readable'`event listener. + * @since v0.9.4 + */ + resume(): this; + /** + * The `readable.isPaused()` method returns the current operating state of the`Readable`. This is used primarily by the mechanism that underlies the`readable.pipe()` method. In most + * typical cases, there will be no reason to + * use this method directly. + * + * ```js + * const readable = new stream.Readable(); + * + * readable.isPaused(); // === false + * readable.pause(); + * readable.isPaused(); // === true + * readable.resume(); + * readable.isPaused(); // === false + * ``` + * @since v0.11.14 + */ + isPaused(): boolean; + /** + * The `readable.unpipe()` method detaches a `Writable` stream previously attached + * using the {@link pipe} method. + * + * If the `destination` is not specified, then _all_ pipes are detached. + * + * If the `destination` is specified, but no pipe is set up for it, then + * the method does nothing. + * + * ```js + * const fs = require('fs'); + * const readable = getReadableStreamSomehow(); + * const writable = fs.createWriteStream('file.txt'); + * // All the data from readable goes into 'file.txt', + * // but only for the first second. + * readable.pipe(writable); + * setTimeout(() => { + * console.log('Stop writing to file.txt.'); + * readable.unpipe(writable); + * console.log('Manually close the file stream.'); + * writable.end(); + * }, 1000); + * ``` + * @since v0.9.4 + * @param destination Optional specific stream to unpipe + */ + unpipe(destination?: NodeJS.WritableStream): this; + /** + * Passing `chunk` as `null` signals the end of the stream (EOF) and behaves the + * same as `readable.push(null)`, after which no more data can be written. The EOF + * signal is put at the end of the buffer and any buffered data will still be + * flushed. + * + * The `readable.unshift()` method pushes a chunk of data back into the internal + * buffer. This is useful in certain situations where a stream is being consumed by + * code that needs to "un-consume" some amount of data that it has optimistically + * pulled out of the source, so that the data can be passed on to some other party. + * + * The `stream.unshift(chunk)` method cannot be called after the `'end'` event + * has been emitted or a runtime error will be thrown. + * + * Developers using `stream.unshift()` often should consider switching to + * use of a `Transform` stream instead. See the `API for stream implementers` section for more information. + * + * ```js + * // Pull off a header delimited by \n\n. + * // Use unshift() if we get too much. + * // Call the callback with (error, header, stream). + * const { StringDecoder } = require('string_decoder'); + * function parseHeader(stream, callback) { + * stream.on('error', callback); + * stream.on('readable', onReadable); + * const decoder = new StringDecoder('utf8'); + * let header = ''; + * function onReadable() { + * let chunk; + * while (null !== (chunk = stream.read())) { + * const str = decoder.write(chunk); + * if (str.includes('\n\n')) { + * // Found the header boundary. + * const split = str.split(/\n\n/); + * header += split.shift(); + * const remaining = split.join('\n\n'); + * const buf = Buffer.from(remaining, 'utf8'); + * stream.removeListener('error', callback); + * // Remove the 'readable' listener before unshifting. + * stream.removeListener('readable', onReadable); + * if (buf.length) + * stream.unshift(buf); + * // Now the body of the message can be read from the stream. + * callback(null, header, stream); + * return; + * } + * // Still reading the header. + * header += str; + * } + * } + * } + * ``` + * + * Unlike {@link push}, `stream.unshift(chunk)` will not + * end the reading process by resetting the internal reading state of the stream. + * This can cause unexpected results if `readable.unshift()` is called during a + * read (i.e. from within a {@link _read} implementation on a + * custom stream). Following the call to `readable.unshift()` with an immediate {@link push} will reset the reading state appropriately, + * however it is best to simply avoid calling `readable.unshift()` while in the + * process of performing a read. + * @since v0.9.11 + * @param chunk Chunk of data to unshift onto the read queue. For streams not operating in object mode, `chunk` must be a string, `Buffer`, `Uint8Array` or `null`. For object mode + * streams, `chunk` may be any JavaScript value. + * @param encoding Encoding of string chunks. Must be a valid `Buffer` encoding, such as `'utf8'` or `'ascii'`. + */ + unshift(chunk: any, encoding?: BufferEncoding): void; + /** + * Prior to Node.js 0.10, streams did not implement the entire `stream` module API + * as it is currently defined. (See `Compatibility` for more information.) + * + * When using an older Node.js library that emits `'data'` events and has a {@link pause} method that is advisory only, the`readable.wrap()` method can be used to create a `Readable` + * stream that uses + * the old stream as its data source. + * + * It will rarely be necessary to use `readable.wrap()` but the method has been + * provided as a convenience for interacting with older Node.js applications and + * libraries. + * + * ```js + * const { OldReader } = require('./old-api-module.js'); + * const { Readable } = require('stream'); + * const oreader = new OldReader(); + * const myReader = new Readable().wrap(oreader); + * + * myReader.on('readable', () => { + * myReader.read(); // etc. + * }); + * ``` + * @since v0.9.4 + * @param stream An "old style" readable stream + */ + wrap(stream: NodeJS.ReadableStream): this; + push(chunk: any, encoding?: BufferEncoding): boolean; + _destroy(error: Error | null, callback: (error?: Error | null) => void): void; + /** + * Destroy the stream. Optionally emit an `'error'` event, and emit a `'close'`event (unless `emitClose` is set to `false`). After this call, the readable + * stream will release any internal resources and subsequent calls to `push()`will be ignored. + * + * Once `destroy()` has been called any further calls will be a no-op and no + * further errors except from `_destroy()` may be emitted as `'error'`. + * + * Implementors should not override this method, but instead implement `readable._destroy()`. + * @since v8.0.0 + * @param error Error which will be passed as payload in `'error'` event + */ + destroy(error?: Error): this; + /** + * Event emitter + * The defined events on documents including: + * 1. close + * 2. data + * 3. end + * 4. error + * 5. pause + * 6. readable + * 7. resume + */ + addListener(event: 'close', listener: () => void): this; + addListener(event: 'data', listener: (chunk: any) => void): this; + addListener(event: 'end', listener: () => void): this; + addListener(event: 'error', listener: (err: Error) => void): this; + addListener(event: 'pause', listener: () => void): this; + addListener(event: 'readable', listener: () => void): this; + addListener(event: 'resume', listener: () => void): this; + addListener(event: string | symbol, listener: (...args: any[]) => void): this; + emit(event: 'close'): boolean; + emit(event: 'data', chunk: any): boolean; + emit(event: 'end'): boolean; + emit(event: 'error', err: Error): boolean; + emit(event: 'pause'): boolean; + emit(event: 'readable'): boolean; + emit(event: 'resume'): boolean; + emit(event: string | symbol, ...args: any[]): boolean; + on(event: 'close', listener: () => void): this; + on(event: 'data', listener: (chunk: any) => void): this; + on(event: 'end', listener: () => void): this; + on(event: 'error', listener: (err: Error) => void): this; + on(event: 'pause', listener: () => void): this; + on(event: 'readable', listener: () => void): this; + on(event: 'resume', listener: () => void): this; + on(event: string | symbol, listener: (...args: any[]) => void): this; + once(event: 'close', listener: () => void): this; + once(event: 'data', listener: (chunk: any) => void): this; + once(event: 'end', listener: () => void): this; + once(event: 'error', listener: (err: Error) => void): this; + once(event: 'pause', listener: () => void): this; + once(event: 'readable', listener: () => void): this; + once(event: 'resume', listener: () => void): this; + once(event: string | symbol, listener: (...args: any[]) => void): this; + prependListener(event: 'close', listener: () => void): this; + prependListener(event: 'data', listener: (chunk: any) => void): this; + prependListener(event: 'end', listener: () => void): this; + prependListener(event: 'error', listener: (err: Error) => void): this; + prependListener(event: 'pause', listener: () => void): this; + prependListener(event: 'readable', listener: () => void): this; + prependListener(event: 'resume', listener: () => void): this; + prependListener(event: string | symbol, listener: (...args: any[]) => void): this; + prependOnceListener(event: 'close', listener: () => void): this; + prependOnceListener(event: 'data', listener: (chunk: any) => void): this; + prependOnceListener(event: 'end', listener: () => void): this; + prependOnceListener(event: 'error', listener: (err: Error) => void): this; + prependOnceListener(event: 'pause', listener: () => void): this; + prependOnceListener(event: 'readable', listener: () => void): this; + prependOnceListener(event: 'resume', listener: () => void): this; + prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this; + removeListener(event: 'close', listener: () => void): this; + removeListener(event: 'data', listener: (chunk: any) => void): this; + removeListener(event: 'end', listener: () => void): this; + removeListener(event: 'error', listener: (err: Error) => void): this; + removeListener(event: 'pause', listener: () => void): this; + removeListener(event: 'readable', listener: () => void): this; + removeListener(event: 'resume', listener: () => void): this; + removeListener(event: string | symbol, listener: (...args: any[]) => void): this; + [Symbol.asyncIterator](): AsyncIterableIterator; + } + interface WritableOptions extends StreamOptions { + decodeStrings?: boolean | undefined; + defaultEncoding?: BufferEncoding | undefined; + write?(this: Writable, chunk: any, encoding: BufferEncoding, callback: (error?: Error | null) => void): void; + writev?( + this: Writable, + chunks: Array<{ + chunk: any; + encoding: BufferEncoding; + }>, + callback: (error?: Error | null) => void + ): void; + final?(this: Writable, callback: (error?: Error | null) => void): void; + } + /** + * @since v0.9.4 + */ + class Writable extends Stream implements NodeJS.WritableStream { + /** + * A utility method for creating a `Writable` from a web `WritableStream`. + * @since v17.0.0 + * @experimental + */ + static fromWeb(writableStream: streamWeb.WritableStream, options?: Pick): Writable; + /** + * A utility method for creating a web `WritableStream` from a `Writable`. + * @since v17.0.0 + * @experimental + */ + static toWeb(streamWritable: Writable): streamWeb.WritableStream; + /** + * Is `true` if it is safe to call `writable.write()`, which means + * the stream has not been destroyed, errored or ended. + * @since v11.4.0 + */ + readonly writable: boolean; + /** + * Is `true` after `writable.end()` has been called. This property + * does not indicate whether the data has been flushed, for this use `writable.writableFinished` instead. + * @since v12.9.0 + */ + readonly writableEnded: boolean; + /** + * Is set to `true` immediately before the `'finish'` event is emitted. + * @since v12.6.0 + */ + readonly writableFinished: boolean; + /** + * Return the value of `highWaterMark` passed when creating this `Writable`. + * @since v9.3.0 + */ + readonly writableHighWaterMark: number; + /** + * This property contains the number of bytes (or objects) in the queue + * ready to be written. The value provides introspection data regarding + * the status of the `highWaterMark`. + * @since v9.4.0 + */ + readonly writableLength: number; + /** + * Getter for the property `objectMode` of a given `Writable` stream. + * @since v12.3.0 + */ + readonly writableObjectMode: boolean; + /** + * Number of times `writable.uncork()` needs to be + * called in order to fully uncork the stream. + * @since v13.2.0, v12.16.0 + */ + readonly writableCorked: number; + /** + * Is `true` after `writable.destroy()` has been called. + * @since v8.0.0 + */ + destroyed: boolean; + /** + * Is true after 'close' has been emitted. + * @since v8.0.0 + */ + readonly closed: boolean; + /** + * Returns error if the stream has been destroyed with an error. + * @since v18.0.0 + */ + readonly errored: Error | null; + /** + * Is `true` if the stream's buffer has been full and stream will emit 'drain'. + * @since v15.2.0, v14.17.0 + */ + readonly writableNeedDrain: boolean; + constructor(opts?: WritableOptions); + _write(chunk: any, encoding: BufferEncoding, callback: (error?: Error | null) => void): void; + _writev?( + chunks: Array<{ + chunk: any; + encoding: BufferEncoding; + }>, + callback: (error?: Error | null) => void + ): void; + _construct?(callback: (error?: Error | null) => void): void; + _destroy(error: Error | null, callback: (error?: Error | null) => void): void; + _final(callback: (error?: Error | null) => void): void; + /** + * The `writable.write()` method writes some data to the stream, and calls the + * supplied `callback` once the data has been fully handled. If an error + * occurs, the `callback` will be called with the error as its + * first argument. The `callback` is called asynchronously and before `'error'` is + * emitted. + * + * The return value is `true` if the internal buffer is less than the`highWaterMark` configured when the stream was created after admitting `chunk`. + * If `false` is returned, further attempts to write data to the stream should + * stop until the `'drain'` event is emitted. + * + * While a stream is not draining, calls to `write()` will buffer `chunk`, and + * return false. Once all currently buffered chunks are drained (accepted for + * delivery by the operating system), the `'drain'` event will be emitted. + * Once `write()` returns false, do not write more chunks + * until the `'drain'` event is emitted. While calling `write()` on a stream that + * is not draining is allowed, Node.js will buffer all written chunks until + * maximum memory usage occurs, at which point it will abort unconditionally. + * Even before it aborts, high memory usage will cause poor garbage collector + * performance and high RSS (which is not typically released back to the system, + * even after the memory is no longer required). Since TCP sockets may never + * drain if the remote peer does not read the data, writing a socket that is + * not draining may lead to a remotely exploitable vulnerability. + * + * Writing data while the stream is not draining is particularly + * problematic for a `Transform`, because the `Transform` streams are paused + * by default until they are piped or a `'data'` or `'readable'` event handler + * is added. + * + * If the data to be written can be generated or fetched on demand, it is + * recommended to encapsulate the logic into a `Readable` and use {@link pipe}. However, if calling `write()` is preferred, it is + * possible to respect backpressure and avoid memory issues using the `'drain'` event: + * + * ```js + * function write(data, cb) { + * if (!stream.write(data)) { + * stream.once('drain', cb); + * } else { + * process.nextTick(cb); + * } + * } + * + * // Wait for cb to be called before doing any other write. + * write('hello', () => { + * console.log('Write completed, do more writes now.'); + * }); + * ``` + * + * A `Writable` stream in object mode will always ignore the `encoding` argument. + * @since v0.9.4 + * @param chunk Optional data to write. For streams not operating in object mode, `chunk` must be a string, `Buffer` or `Uint8Array`. For object mode streams, `chunk` may be any + * JavaScript value other than `null`. + * @param [encoding='utf8'] The encoding, if `chunk` is a string. + * @param callback Callback for when this chunk of data is flushed. + * @return `false` if the stream wishes for the calling code to wait for the `'drain'` event to be emitted before continuing to write additional data; otherwise `true`. + */ + write(chunk: any, callback?: (error: Error | null | undefined) => void): boolean; + write(chunk: any, encoding: BufferEncoding, callback?: (error: Error | null | undefined) => void): boolean; + /** + * The `writable.setDefaultEncoding()` method sets the default `encoding` for a `Writable` stream. + * @since v0.11.15 + * @param encoding The new default encoding + */ + setDefaultEncoding(encoding: BufferEncoding): this; + /** + * Calling the `writable.end()` method signals that no more data will be written + * to the `Writable`. The optional `chunk` and `encoding` arguments allow one + * final additional chunk of data to be written immediately before closing the + * stream. + * + * Calling the {@link write} method after calling {@link end} will raise an error. + * + * ```js + * // Write 'hello, ' and then end with 'world!'. + * const fs = require('fs'); + * const file = fs.createWriteStream('example.txt'); + * file.write('hello, '); + * file.end('world!'); + * // Writing more now is not allowed! + * ``` + * @since v0.9.4 + * @param chunk Optional data to write. For streams not operating in object mode, `chunk` must be a string, `Buffer` or `Uint8Array`. For object mode streams, `chunk` may be any + * JavaScript value other than `null`. + * @param encoding The encoding if `chunk` is a string + * @param callback Callback for when the stream is finished. + */ + end(cb?: () => void): this; + end(chunk: any, cb?: () => void): this; + end(chunk: any, encoding: BufferEncoding, cb?: () => void): this; + /** + * The `writable.cork()` method forces all written data to be buffered in memory. + * The buffered data will be flushed when either the {@link uncork} or {@link end} methods are called. + * + * The primary intent of `writable.cork()` is to accommodate a situation in which + * several small chunks are written to the stream in rapid succession. Instead of + * immediately forwarding them to the underlying destination, `writable.cork()`buffers all the chunks until `writable.uncork()` is called, which will pass them + * all to `writable._writev()`, if present. This prevents a head-of-line blocking + * situation where data is being buffered while waiting for the first small chunk + * to be processed. However, use of `writable.cork()` without implementing`writable._writev()` may have an adverse effect on throughput. + * + * See also: `writable.uncork()`, `writable._writev()`. + * @since v0.11.2 + */ + cork(): void; + /** + * The `writable.uncork()` method flushes all data buffered since {@link cork} was called. + * + * When using `writable.cork()` and `writable.uncork()` to manage the buffering + * of writes to a stream, defer calls to `writable.uncork()` using`process.nextTick()`. Doing so allows batching of all`writable.write()` calls that occur within a given Node.js event + * loop phase. + * + * ```js + * stream.cork(); + * stream.write('some '); + * stream.write('data '); + * process.nextTick(() => stream.uncork()); + * ``` + * + * If the `writable.cork()` method is called multiple times on a stream, the + * same number of calls to `writable.uncork()` must be called to flush the buffered + * data. + * + * ```js + * stream.cork(); + * stream.write('some '); + * stream.cork(); + * stream.write('data '); + * process.nextTick(() => { + * stream.uncork(); + * // The data will not be flushed until uncork() is called a second time. + * stream.uncork(); + * }); + * ``` + * + * See also: `writable.cork()`. + * @since v0.11.2 + */ + uncork(): void; + /** + * Destroy the stream. Optionally emit an `'error'` event, and emit a `'close'`event (unless `emitClose` is set to `false`). After this call, the writable + * stream has ended and subsequent calls to `write()` or `end()` will result in + * an `ERR_STREAM_DESTROYED` error. + * This is a destructive and immediate way to destroy a stream. Previous calls to`write()` may not have drained, and may trigger an `ERR_STREAM_DESTROYED` error. + * Use `end()` instead of destroy if data should flush before close, or wait for + * the `'drain'` event before destroying the stream. + * + * Once `destroy()` has been called any further calls will be a no-op and no + * further errors except from `_destroy()` may be emitted as `'error'`. + * + * Implementors should not override this method, + * but instead implement `writable._destroy()`. + * @since v8.0.0 + * @param error Optional, an error to emit with `'error'` event. + */ + destroy(error?: Error): this; + /** + * Event emitter + * The defined events on documents including: + * 1. close + * 2. drain + * 3. error + * 4. finish + * 5. pipe + * 6. unpipe + */ + addListener(event: 'close', listener: () => void): this; + addListener(event: 'drain', listener: () => void): this; + addListener(event: 'error', listener: (err: Error) => void): this; + addListener(event: 'finish', listener: () => void): this; + addListener(event: 'pipe', listener: (src: Readable) => void): this; + addListener(event: 'unpipe', listener: (src: Readable) => void): this; + addListener(event: string | symbol, listener: (...args: any[]) => void): this; + emit(event: 'close'): boolean; + emit(event: 'drain'): boolean; + emit(event: 'error', err: Error): boolean; + emit(event: 'finish'): boolean; + emit(event: 'pipe', src: Readable): boolean; + emit(event: 'unpipe', src: Readable): boolean; + emit(event: string | symbol, ...args: any[]): boolean; + on(event: 'close', listener: () => void): this; + on(event: 'drain', listener: () => void): this; + on(event: 'error', listener: (err: Error) => void): this; + on(event: 'finish', listener: () => void): this; + on(event: 'pipe', listener: (src: Readable) => void): this; + on(event: 'unpipe', listener: (src: Readable) => void): this; + on(event: string | symbol, listener: (...args: any[]) => void): this; + once(event: 'close', listener: () => void): this; + once(event: 'drain', listener: () => void): this; + once(event: 'error', listener: (err: Error) => void): this; + once(event: 'finish', listener: () => void): this; + once(event: 'pipe', listener: (src: Readable) => void): this; + once(event: 'unpipe', listener: (src: Readable) => void): this; + once(event: string | symbol, listener: (...args: any[]) => void): this; + prependListener(event: 'close', listener: () => void): this; + prependListener(event: 'drain', listener: () => void): this; + prependListener(event: 'error', listener: (err: Error) => void): this; + prependListener(event: 'finish', listener: () => void): this; + prependListener(event: 'pipe', listener: (src: Readable) => void): this; + prependListener(event: 'unpipe', listener: (src: Readable) => void): this; + prependListener(event: string | symbol, listener: (...args: any[]) => void): this; + prependOnceListener(event: 'close', listener: () => void): this; + prependOnceListener(event: 'drain', listener: () => void): this; + prependOnceListener(event: 'error', listener: (err: Error) => void): this; + prependOnceListener(event: 'finish', listener: () => void): this; + prependOnceListener(event: 'pipe', listener: (src: Readable) => void): this; + prependOnceListener(event: 'unpipe', listener: (src: Readable) => void): this; + prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this; + removeListener(event: 'close', listener: () => void): this; + removeListener(event: 'drain', listener: () => void): this; + removeListener(event: 'error', listener: (err: Error) => void): this; + removeListener(event: 'finish', listener: () => void): this; + removeListener(event: 'pipe', listener: (src: Readable) => void): this; + removeListener(event: 'unpipe', listener: (src: Readable) => void): this; + removeListener(event: string | symbol, listener: (...args: any[]) => void): this; + } + interface DuplexOptions extends ReadableOptions, WritableOptions { + allowHalfOpen?: boolean | undefined; + readableObjectMode?: boolean | undefined; + writableObjectMode?: boolean | undefined; + readableHighWaterMark?: number | undefined; + writableHighWaterMark?: number | undefined; + writableCorked?: number | undefined; + construct?(this: Duplex, callback: (error?: Error | null) => void): void; + read?(this: Duplex, size: number): void; + write?(this: Duplex, chunk: any, encoding: BufferEncoding, callback: (error?: Error | null) => void): void; + writev?( + this: Duplex, + chunks: Array<{ + chunk: any; + encoding: BufferEncoding; + }>, + callback: (error?: Error | null) => void + ): void; + final?(this: Duplex, callback: (error?: Error | null) => void): void; + destroy?(this: Duplex, error: Error | null, callback: (error: Error | null) => void): void; + } + /** + * Duplex streams are streams that implement both the `Readable` and `Writable` interfaces. + * + * Examples of `Duplex` streams include: + * + * * `TCP sockets` + * * `zlib streams` + * * `crypto streams` + * @since v0.9.4 + */ + class Duplex extends Readable implements Writable { + readonly writable: boolean; + readonly writableEnded: boolean; + readonly writableFinished: boolean; + readonly writableHighWaterMark: number; + readonly writableLength: number; + readonly writableObjectMode: boolean; + readonly writableCorked: number; + readonly writableNeedDrain: boolean; + readonly closed: boolean; + readonly errored: Error | null; + /** + * If `false` then the stream will automatically end the writable side when the + * readable side ends. Set initially by the `allowHalfOpen` constructor option, + * which defaults to `false`. + * + * This can be changed manually to change the half-open behavior of an existing`Duplex` stream instance, but must be changed before the `'end'` event is + * emitted. + * @since v0.9.4 + */ + allowHalfOpen: boolean; + constructor(opts?: DuplexOptions); + /** + * A utility method for creating duplex streams. + * + * - `Stream` converts writable stream into writable `Duplex` and readable stream + * to `Duplex`. + * - `Blob` converts into readable `Duplex`. + * - `string` converts into readable `Duplex`. + * - `ArrayBuffer` converts into readable `Duplex`. + * - `AsyncIterable` converts into a readable `Duplex`. Cannot yield `null`. + * - `AsyncGeneratorFunction` converts into a readable/writable transform + * `Duplex`. Must take a source `AsyncIterable` as first parameter. Cannot yield + * `null`. + * - `AsyncFunction` converts into a writable `Duplex`. Must return + * either `null` or `undefined` + * - `Object ({ writable, readable })` converts `readable` and + * `writable` into `Stream` and then combines them into `Duplex` where the + * `Duplex` will write to the `writable` and read from the `readable`. + * - `Promise` converts into readable `Duplex`. Value `null` is ignored. + * + * @since v16.8.0 + */ + static from(src: Stream | Blob | ArrayBuffer | string | Iterable | AsyncIterable | AsyncGeneratorFunction | Promise | Object): Duplex; + _write(chunk: any, encoding: BufferEncoding, callback: (error?: Error | null) => void): void; + _writev?( + chunks: Array<{ + chunk: any; + encoding: BufferEncoding; + }>, + callback: (error?: Error | null) => void + ): void; + _destroy(error: Error | null, callback: (error: Error | null) => void): void; + _final(callback: (error?: Error | null) => void): void; + write(chunk: any, encoding?: BufferEncoding, cb?: (error: Error | null | undefined) => void): boolean; + write(chunk: any, cb?: (error: Error | null | undefined) => void): boolean; + setDefaultEncoding(encoding: BufferEncoding): this; + end(cb?: () => void): this; + end(chunk: any, cb?: () => void): this; + end(chunk: any, encoding?: BufferEncoding, cb?: () => void): this; + cork(): void; + uncork(): void; + } + type TransformCallback = (error?: Error | null, data?: any) => void; + interface TransformOptions extends DuplexOptions { + construct?(this: Transform, callback: (error?: Error | null) => void): void; + read?(this: Transform, size: number): void; + write?(this: Transform, chunk: any, encoding: BufferEncoding, callback: (error?: Error | null) => void): void; + writev?( + this: Transform, + chunks: Array<{ + chunk: any; + encoding: BufferEncoding; + }>, + callback: (error?: Error | null) => void + ): void; + final?(this: Transform, callback: (error?: Error | null) => void): void; + destroy?(this: Transform, error: Error | null, callback: (error: Error | null) => void): void; + transform?(this: Transform, chunk: any, encoding: BufferEncoding, callback: TransformCallback): void; + flush?(this: Transform, callback: TransformCallback): void; + } + /** + * Transform streams are `Duplex` streams where the output is in some way + * related to the input. Like all `Duplex` streams, `Transform` streams + * implement both the `Readable` and `Writable` interfaces. + * + * Examples of `Transform` streams include: + * + * * `zlib streams` + * * `crypto streams` + * @since v0.9.4 + */ + class Transform extends Duplex { + constructor(opts?: TransformOptions); + _transform(chunk: any, encoding: BufferEncoding, callback: TransformCallback): void; + _flush(callback: TransformCallback): void; + } + /** + * The `stream.PassThrough` class is a trivial implementation of a `Transform` stream that simply passes the input bytes across to the output. Its purpose is + * primarily for examples and testing, but there are some use cases where`stream.PassThrough` is useful as a building block for novel sorts of streams. + */ + class PassThrough extends Transform {} + /** + * Attaches an AbortSignal to a readable or writeable stream. This lets code + * control stream destruction using an `AbortController`. + * + * Calling `abort` on the `AbortController` corresponding to the passed`AbortSignal` will behave the same way as calling `.destroy(new AbortError())`on the stream. + * + * ```js + * const fs = require('fs'); + * + * const controller = new AbortController(); + * const read = addAbortSignal( + * controller.signal, + * fs.createReadStream(('object.json')) + * ); + * // Later, abort the operation closing the stream + * controller.abort(); + * ``` + * + * Or using an `AbortSignal` with a readable stream as an async iterable: + * + * ```js + * const controller = new AbortController(); + * setTimeout(() => controller.abort(), 10_000); // set a timeout + * const stream = addAbortSignal( + * controller.signal, + * fs.createReadStream(('object.json')) + * ); + * (async () => { + * try { + * for await (const chunk of stream) { + * await process(chunk); + * } + * } catch (e) { + * if (e.name === 'AbortError') { + * // The operation was cancelled + * } else { + * throw e; + * } + * } + * })(); + * ``` + * @since v15.4.0 + * @param signal A signal representing possible cancellation + * @param stream a stream to attach a signal to + */ + function addAbortSignal(signal: AbortSignal, stream: T): T; + interface FinishedOptions extends Abortable { + error?: boolean | undefined; + readable?: boolean | undefined; + writable?: boolean | undefined; + } + /** + * A function to get notified when a stream is no longer readable, writable + * or has experienced an error or a premature close event. + * + * ```js + * const { finished } = require('stream'); + * + * const rs = fs.createReadStream('archive.tar'); + * + * finished(rs, (err) => { + * if (err) { + * console.error('Stream failed.', err); + * } else { + * console.log('Stream is done reading.'); + * } + * }); + * + * rs.resume(); // Drain the stream. + * ``` + * + * Especially useful in error handling scenarios where a stream is destroyed + * prematurely (like an aborted HTTP request), and will not emit `'end'`or `'finish'`. + * + * The `finished` API provides promise version: + * + * ```js + * const { finished } = require('stream/promises'); + * + * const rs = fs.createReadStream('archive.tar'); + * + * async function run() { + * await finished(rs); + * console.log('Stream is done reading.'); + * } + * + * run().catch(console.error); + * rs.resume(); // Drain the stream. + * ``` + * + * `stream.finished()` leaves dangling event listeners (in particular`'error'`, `'end'`, `'finish'` and `'close'`) after `callback` has been + * invoked. The reason for this is so that unexpected `'error'` events (due to + * incorrect stream implementations) do not cause unexpected crashes. + * If this is unwanted behavior then the returned cleanup function needs to be + * invoked in the callback: + * + * ```js + * const cleanup = finished(rs, (err) => { + * cleanup(); + * // ... + * }); + * ``` + * @since v10.0.0 + * @param stream A readable and/or writable stream. + * @param callback A callback function that takes an optional error argument. + * @return A cleanup function which removes all registered listeners. + */ + function finished(stream: NodeJS.ReadableStream | NodeJS.WritableStream | NodeJS.ReadWriteStream, options: FinishedOptions, callback: (err?: NodeJS.ErrnoException | null) => void): () => void; + function finished(stream: NodeJS.ReadableStream | NodeJS.WritableStream | NodeJS.ReadWriteStream, callback: (err?: NodeJS.ErrnoException | null) => void): () => void; + namespace finished { + function __promisify__(stream: NodeJS.ReadableStream | NodeJS.WritableStream | NodeJS.ReadWriteStream, options?: FinishedOptions): Promise; + } + type PipelineSourceFunction = () => Iterable | AsyncIterable; + type PipelineSource = Iterable | AsyncIterable | NodeJS.ReadableStream | PipelineSourceFunction; + type PipelineTransform, U> = + | NodeJS.ReadWriteStream + | ((source: S extends (...args: any[]) => Iterable | AsyncIterable ? AsyncIterable : S) => AsyncIterable); + type PipelineTransformSource = PipelineSource | PipelineTransform; + type PipelineDestinationIterableFunction = (source: AsyncIterable) => AsyncIterable; + type PipelineDestinationPromiseFunction = (source: AsyncIterable) => Promise

; + type PipelineDestination, P> = S extends PipelineTransformSource + ? NodeJS.WritableStream | PipelineDestinationIterableFunction | PipelineDestinationPromiseFunction + : never; + type PipelineCallback> = S extends PipelineDestinationPromiseFunction + ? (err: NodeJS.ErrnoException | null, value: P) => void + : (err: NodeJS.ErrnoException | null) => void; + type PipelinePromise> = S extends PipelineDestinationPromiseFunction ? Promise

: Promise; + interface PipelineOptions { + signal: AbortSignal; + } + /** + * A module method to pipe between streams and generators forwarding errors and + * properly cleaning up and provide a callback when the pipeline is complete. + * + * ```js + * const { pipeline } = require('stream'); + * const fs = require('fs'); + * const zlib = require('zlib'); + * + * // Use the pipeline API to easily pipe a series of streams + * // together and get notified when the pipeline is fully done. + * + * // A pipeline to gzip a potentially huge tar file efficiently: + * + * pipeline( + * fs.createReadStream('archive.tar'), + * zlib.createGzip(), + * fs.createWriteStream('archive.tar.gz'), + * (err) => { + * if (err) { + * console.error('Pipeline failed.', err); + * } else { + * console.log('Pipeline succeeded.'); + * } + * } + * ); + * ``` + * + * The `pipeline` API provides a promise version, which can also + * receive an options argument as the last parameter with a`signal` `AbortSignal` property. When the signal is aborted,`destroy` will be called on the underlying pipeline, with + * an`AbortError`. + * + * ```js + * const { pipeline } = require('stream/promises'); + * + * async function run() { + * await pipeline( + * fs.createReadStream('archive.tar'), + * zlib.createGzip(), + * fs.createWriteStream('archive.tar.gz') + * ); + * console.log('Pipeline succeeded.'); + * } + * + * run().catch(console.error); + * ``` + * + * To use an `AbortSignal`, pass it inside an options object, + * as the last argument: + * + * ```js + * const { pipeline } = require('stream/promises'); + * + * async function run() { + * const ac = new AbortController(); + * const signal = ac.signal; + * + * setTimeout(() => ac.abort(), 1); + * await pipeline( + * fs.createReadStream('archive.tar'), + * zlib.createGzip(), + * fs.createWriteStream('archive.tar.gz'), + * { signal }, + * ); + * } + * + * run().catch(console.error); // AbortError + * ``` + * + * The `pipeline` API also supports async generators: + * + * ```js + * const { pipeline } = require('stream/promises'); + * const fs = require('fs'); + * + * async function run() { + * await pipeline( + * fs.createReadStream('lowercase.txt'), + * async function* (source, { signal }) { + * source.setEncoding('utf8'); // Work with strings rather than `Buffer`s. + * for await (const chunk of source) { + * yield await processChunk(chunk, { signal }); + * } + * }, + * fs.createWriteStream('uppercase.txt') + * ); + * console.log('Pipeline succeeded.'); + * } + * + * run().catch(console.error); + * ``` + * + * Remember to handle the `signal` argument passed into the async generator. + * Especially in the case where the async generator is the source for the + * pipeline (i.e. first argument) or the pipeline will never complete. + * + * ```js + * const { pipeline } = require('stream/promises'); + * const fs = require('fs'); + * + * async function run() { + * await pipeline( + * async function* ({ signal }) { + * await someLongRunningfn({ signal }); + * yield 'asd'; + * }, + * fs.createWriteStream('uppercase.txt') + * ); + * console.log('Pipeline succeeded.'); + * } + * + * run().catch(console.error); + * ``` + * + * `stream.pipeline()` will call `stream.destroy(err)` on all streams except: + * + * * `Readable` streams which have emitted `'end'` or `'close'`. + * * `Writable` streams which have emitted `'finish'` or `'close'`. + * + * `stream.pipeline()` leaves dangling event listeners on the streams + * after the `callback` has been invoked. In the case of reuse of streams after + * failure, this can cause event listener leaks and swallowed errors. If the last + * stream is readable, dangling event listeners will be removed so that the last + * stream can be consumed later. + * + * `stream.pipeline()` closes all the streams when an error is raised. + * The `IncomingRequest` usage with `pipeline` could lead to an unexpected behavior + * once it would destroy the socket without sending the expected response. + * See the example below: + * + * ```js + * const fs = require('fs'); + * const http = require('http'); + * const { pipeline } = require('stream'); + * + * const server = http.createServer((req, res) => { + * const fileStream = fs.createReadStream('./fileNotExist.txt'); + * pipeline(fileStream, res, (err) => { + * if (err) { + * console.log(err); // No such file + * // this message can't be sent once `pipeline` already destroyed the socket + * return res.end('error!!!'); + * } + * }); + * }); + * ``` + * @since v10.0.0 + * @param callback Called when the pipeline is fully done. + */ + function pipeline, B extends PipelineDestination>( + source: A, + destination: B, + callback?: PipelineCallback + ): B extends NodeJS.WritableStream ? B : NodeJS.WritableStream; + function pipeline, T1 extends PipelineTransform, B extends PipelineDestination>( + source: A, + transform1: T1, + destination: B, + callback?: PipelineCallback + ): B extends NodeJS.WritableStream ? B : NodeJS.WritableStream; + function pipeline, T1 extends PipelineTransform, T2 extends PipelineTransform, B extends PipelineDestination>( + source: A, + transform1: T1, + transform2: T2, + destination: B, + callback?: PipelineCallback + ): B extends NodeJS.WritableStream ? B : NodeJS.WritableStream; + function pipeline< + A extends PipelineSource, + T1 extends PipelineTransform, + T2 extends PipelineTransform, + T3 extends PipelineTransform, + B extends PipelineDestination + >(source: A, transform1: T1, transform2: T2, transform3: T3, destination: B, callback?: PipelineCallback): B extends NodeJS.WritableStream ? B : NodeJS.WritableStream; + function pipeline< + A extends PipelineSource, + T1 extends PipelineTransform, + T2 extends PipelineTransform, + T3 extends PipelineTransform, + T4 extends PipelineTransform, + B extends PipelineDestination + >(source: A, transform1: T1, transform2: T2, transform3: T3, transform4: T4, destination: B, callback?: PipelineCallback): B extends NodeJS.WritableStream ? B : NodeJS.WritableStream; + function pipeline( + streams: ReadonlyArray, + callback?: (err: NodeJS.ErrnoException | null) => void + ): NodeJS.WritableStream; + function pipeline( + stream1: NodeJS.ReadableStream, + stream2: NodeJS.ReadWriteStream | NodeJS.WritableStream, + ...streams: Array void)> + ): NodeJS.WritableStream; + namespace pipeline { + function __promisify__, B extends PipelineDestination>(source: A, destination: B, options?: PipelineOptions): PipelinePromise; + function __promisify__, T1 extends PipelineTransform, B extends PipelineDestination>( + source: A, + transform1: T1, + destination: B, + options?: PipelineOptions + ): PipelinePromise; + function __promisify__, T1 extends PipelineTransform, T2 extends PipelineTransform, B extends PipelineDestination>( + source: A, + transform1: T1, + transform2: T2, + destination: B, + options?: PipelineOptions + ): PipelinePromise; + function __promisify__< + A extends PipelineSource, + T1 extends PipelineTransform, + T2 extends PipelineTransform, + T3 extends PipelineTransform, + B extends PipelineDestination + >(source: A, transform1: T1, transform2: T2, transform3: T3, destination: B, options?: PipelineOptions): PipelinePromise; + function __promisify__< + A extends PipelineSource, + T1 extends PipelineTransform, + T2 extends PipelineTransform, + T3 extends PipelineTransform, + T4 extends PipelineTransform, + B extends PipelineDestination + >(source: A, transform1: T1, transform2: T2, transform3: T3, transform4: T4, destination: B, options?: PipelineOptions): PipelinePromise; + function __promisify__(streams: ReadonlyArray, options?: PipelineOptions): Promise; + function __promisify__( + stream1: NodeJS.ReadableStream, + stream2: NodeJS.ReadWriteStream | NodeJS.WritableStream, + ...streams: Array + ): Promise; + } + interface Pipe { + close(): void; + hasRef(): boolean; + ref(): void; + unref(): void; + } + + /** + * Returns whether the stream has encountered an error. + * @since v17.3.0 + */ + function isErrored(stream: Readable | Writable | NodeJS.ReadableStream | NodeJS.WritableStream): boolean; + + /** + * Returns whether the stream is readable. + * @since v17.4.0 + */ + function isReadable(stream: Readable | NodeJS.ReadableStream): boolean; + + const promises: typeof streamPromises; + const consumers: typeof streamConsumers; + } + export = internal; +} +declare module 'node:stream' { + import stream = require('stream'); + export = stream; +} diff --git a/node_modules/@types/node/ts4.8/stream/consumers.d.ts b/node_modules/@types/node/ts4.8/stream/consumers.d.ts new file mode 100644 index 000000000..ce6c9bb78 --- /dev/null +++ b/node_modules/@types/node/ts4.8/stream/consumers.d.ts @@ -0,0 +1,24 @@ +// Duplicates of interface in lib.dom.ts. +// Duplicated here rather than referencing lib.dom.ts because doing so causes lib.dom.ts to be loaded for "test-all" +// Which in turn causes tests to pass that shouldn't pass. +// +// This interface is not, and should not be, exported. +interface Blob { + readonly size: number; + readonly type: string; + arrayBuffer(): Promise; + slice(start?: number, end?: number, contentType?: string): Blob; + stream(): NodeJS.ReadableStream; + text(): Promise; +} +declare module 'stream/consumers' { + import { Readable } from 'node:stream'; + function buffer(stream: NodeJS.ReadableStream | Readable | AsyncIterator): Promise; + function text(stream: NodeJS.ReadableStream | Readable | AsyncIterator): Promise; + function arrayBuffer(stream: NodeJS.ReadableStream | Readable | AsyncIterator): Promise; + function blob(stream: NodeJS.ReadableStream | Readable | AsyncIterator): Promise; + function json(stream: NodeJS.ReadableStream | Readable | AsyncIterator): Promise; +} +declare module 'node:stream/consumers' { + export * from 'stream/consumers'; +} diff --git a/node_modules/@types/node/ts4.8/stream/promises.d.ts b/node_modules/@types/node/ts4.8/stream/promises.d.ts new file mode 100644 index 000000000..b427073de --- /dev/null +++ b/node_modules/@types/node/ts4.8/stream/promises.d.ts @@ -0,0 +1,42 @@ +declare module 'stream/promises' { + import { FinishedOptions, PipelineSource, PipelineTransform, PipelineDestination, PipelinePromise, PipelineOptions } from 'node:stream'; + function finished(stream: NodeJS.ReadableStream | NodeJS.WritableStream | NodeJS.ReadWriteStream, options?: FinishedOptions): Promise; + function pipeline, B extends PipelineDestination>(source: A, destination: B, options?: PipelineOptions): PipelinePromise; + function pipeline, T1 extends PipelineTransform, B extends PipelineDestination>( + source: A, + transform1: T1, + destination: B, + options?: PipelineOptions + ): PipelinePromise; + function pipeline, T1 extends PipelineTransform, T2 extends PipelineTransform, B extends PipelineDestination>( + source: A, + transform1: T1, + transform2: T2, + destination: B, + options?: PipelineOptions + ): PipelinePromise; + function pipeline< + A extends PipelineSource, + T1 extends PipelineTransform, + T2 extends PipelineTransform, + T3 extends PipelineTransform, + B extends PipelineDestination + >(source: A, transform1: T1, transform2: T2, transform3: T3, destination: B, options?: PipelineOptions): PipelinePromise; + function pipeline< + A extends PipelineSource, + T1 extends PipelineTransform, + T2 extends PipelineTransform, + T3 extends PipelineTransform, + T4 extends PipelineTransform, + B extends PipelineDestination + >(source: A, transform1: T1, transform2: T2, transform3: T3, transform4: T4, destination: B, options?: PipelineOptions): PipelinePromise; + function pipeline(streams: ReadonlyArray, options?: PipelineOptions): Promise; + function pipeline( + stream1: NodeJS.ReadableStream, + stream2: NodeJS.ReadWriteStream | NodeJS.WritableStream, + ...streams: Array + ): Promise; +} +declare module 'node:stream/promises' { + export * from 'stream/promises'; +} diff --git a/node_modules/@types/node/ts4.8/stream/web.d.ts b/node_modules/@types/node/ts4.8/stream/web.d.ts new file mode 100644 index 000000000..f9ef0570d --- /dev/null +++ b/node_modules/@types/node/ts4.8/stream/web.d.ts @@ -0,0 +1,330 @@ +declare module 'stream/web' { + // stub module, pending copy&paste from .d.ts or manual impl + // copy from lib.dom.d.ts + interface ReadableWritablePair { + readable: ReadableStream; + /** + * Provides a convenient, chainable way of piping this readable stream + * through a transform stream (or any other { writable, readable } + * pair). It simply pipes the stream into the writable side of the + * supplied pair, and returns the readable side for further use. + * + * Piping a stream will lock it for the duration of the pipe, preventing + * any other consumer from acquiring a reader. + */ + writable: WritableStream; + } + interface StreamPipeOptions { + preventAbort?: boolean; + preventCancel?: boolean; + /** + * Pipes this readable stream to a given writable stream destination. + * The way in which the piping process behaves under various error + * conditions can be customized with a number of passed options. It + * returns a promise that fulfills when the piping process completes + * successfully, or rejects if any errors were encountered. + * + * Piping a stream will lock it for the duration of the pipe, preventing + * any other consumer from acquiring a reader. + * + * Errors and closures of the source and destination streams propagate + * as follows: + * + * An error in this source readable stream will abort destination, + * unless preventAbort is truthy. The returned promise will be rejected + * with the source's error, or with any error that occurs during + * aborting the destination. + * + * An error in destination will cancel this source readable stream, + * unless preventCancel is truthy. The returned promise will be rejected + * with the destination's error, or with any error that occurs during + * canceling the source. + * + * When this source readable stream closes, destination will be closed, + * unless preventClose is truthy. The returned promise will be fulfilled + * once this process completes, unless an error is encountered while + * closing the destination, in which case it will be rejected with that + * error. + * + * If destination starts out closed or closing, this source readable + * stream will be canceled, unless preventCancel is true. The returned + * promise will be rejected with an error indicating piping to a closed + * stream failed, or with any error that occurs during canceling the + * source. + * + * The signal option can be set to an AbortSignal to allow aborting an + * ongoing pipe operation via the corresponding AbortController. In this + * case, this source readable stream will be canceled, and destination + * aborted, unless the respective options preventCancel or preventAbort + * are set. + */ + preventClose?: boolean; + signal?: AbortSignal; + } + interface ReadableStreamGenericReader { + readonly closed: Promise; + cancel(reason?: any): Promise; + } + interface ReadableStreamDefaultReadValueResult { + done: false; + value: T; + } + interface ReadableStreamDefaultReadDoneResult { + done: true; + value?: undefined; + } + type ReadableStreamController = ReadableStreamDefaultController; + type ReadableStreamDefaultReadResult = ReadableStreamDefaultReadValueResult | ReadableStreamDefaultReadDoneResult; + interface ReadableByteStreamControllerCallback { + (controller: ReadableByteStreamController): void | PromiseLike; + } + interface UnderlyingSinkAbortCallback { + (reason?: any): void | PromiseLike; + } + interface UnderlyingSinkCloseCallback { + (): void | PromiseLike; + } + interface UnderlyingSinkStartCallback { + (controller: WritableStreamDefaultController): any; + } + interface UnderlyingSinkWriteCallback { + (chunk: W, controller: WritableStreamDefaultController): void | PromiseLike; + } + interface UnderlyingSourceCancelCallback { + (reason?: any): void | PromiseLike; + } + interface UnderlyingSourcePullCallback { + (controller: ReadableStreamController): void | PromiseLike; + } + interface UnderlyingSourceStartCallback { + (controller: ReadableStreamController): any; + } + interface TransformerFlushCallback { + (controller: TransformStreamDefaultController): void | PromiseLike; + } + interface TransformerStartCallback { + (controller: TransformStreamDefaultController): any; + } + interface TransformerTransformCallback { + (chunk: I, controller: TransformStreamDefaultController): void | PromiseLike; + } + interface UnderlyingByteSource { + autoAllocateChunkSize?: number; + cancel?: ReadableStreamErrorCallback; + pull?: ReadableByteStreamControllerCallback; + start?: ReadableByteStreamControllerCallback; + type: 'bytes'; + } + interface UnderlyingSource { + cancel?: UnderlyingSourceCancelCallback; + pull?: UnderlyingSourcePullCallback; + start?: UnderlyingSourceStartCallback; + type?: undefined; + } + interface UnderlyingSink { + abort?: UnderlyingSinkAbortCallback; + close?: UnderlyingSinkCloseCallback; + start?: UnderlyingSinkStartCallback; + type?: undefined; + write?: UnderlyingSinkWriteCallback; + } + interface ReadableStreamErrorCallback { + (reason: any): void | PromiseLike; + } + /** This Streams API interface represents a readable stream of byte data. */ + interface ReadableStream { + readonly locked: boolean; + cancel(reason?: any): Promise; + getReader(): ReadableStreamDefaultReader; + pipeThrough(transform: ReadableWritablePair, options?: StreamPipeOptions): ReadableStream; + pipeTo(destination: WritableStream, options?: StreamPipeOptions): Promise; + tee(): [ReadableStream, ReadableStream]; + values(options?: { preventCancel?: boolean }): AsyncIterableIterator; + [Symbol.asyncIterator](): AsyncIterableIterator; + } + const ReadableStream: { + prototype: ReadableStream; + new (underlyingSource: UnderlyingByteSource, strategy?: QueuingStrategy): ReadableStream; + new (underlyingSource?: UnderlyingSource, strategy?: QueuingStrategy): ReadableStream; + }; + interface ReadableStreamDefaultReader extends ReadableStreamGenericReader { + read(): Promise>; + releaseLock(): void; + } + const ReadableStreamDefaultReader: { + prototype: ReadableStreamDefaultReader; + new (stream: ReadableStream): ReadableStreamDefaultReader; + }; + const ReadableStreamBYOBReader: any; + const ReadableStreamBYOBRequest: any; + interface ReadableByteStreamController { + readonly byobRequest: undefined; + readonly desiredSize: number | null; + close(): void; + enqueue(chunk: ArrayBufferView): void; + error(error?: any): void; + } + const ReadableByteStreamController: { + prototype: ReadableByteStreamController; + new (): ReadableByteStreamController; + }; + interface ReadableStreamDefaultController { + readonly desiredSize: number | null; + close(): void; + enqueue(chunk?: R): void; + error(e?: any): void; + } + const ReadableStreamDefaultController: { + prototype: ReadableStreamDefaultController; + new (): ReadableStreamDefaultController; + }; + interface Transformer { + flush?: TransformerFlushCallback; + readableType?: undefined; + start?: TransformerStartCallback; + transform?: TransformerTransformCallback; + writableType?: undefined; + } + interface TransformStream { + readonly readable: ReadableStream; + readonly writable: WritableStream; + } + const TransformStream: { + prototype: TransformStream; + new (transformer?: Transformer, writableStrategy?: QueuingStrategy, readableStrategy?: QueuingStrategy): TransformStream; + }; + interface TransformStreamDefaultController { + readonly desiredSize: number | null; + enqueue(chunk?: O): void; + error(reason?: any): void; + terminate(): void; + } + const TransformStreamDefaultController: { + prototype: TransformStreamDefaultController; + new (): TransformStreamDefaultController; + }; + /** + * This Streams API interface provides a standard abstraction for writing + * streaming data to a destination, known as a sink. This object comes with + * built-in back pressure and queuing. + */ + interface WritableStream { + readonly locked: boolean; + abort(reason?: any): Promise; + close(): Promise; + getWriter(): WritableStreamDefaultWriter; + } + const WritableStream: { + prototype: WritableStream; + new (underlyingSink?: UnderlyingSink, strategy?: QueuingStrategy): WritableStream; + }; + /** + * This Streams API interface is the object returned by + * WritableStream.getWriter() and once created locks the < writer to the + * WritableStream ensuring that no other streams can write to the underlying + * sink. + */ + interface WritableStreamDefaultWriter { + readonly closed: Promise; + readonly desiredSize: number | null; + readonly ready: Promise; + abort(reason?: any): Promise; + close(): Promise; + releaseLock(): void; + write(chunk?: W): Promise; + } + const WritableStreamDefaultWriter: { + prototype: WritableStreamDefaultWriter; + new (stream: WritableStream): WritableStreamDefaultWriter; + }; + /** + * This Streams API interface represents a controller allowing control of a + * WritableStream's state. When constructing a WritableStream, the + * underlying sink is given a corresponding WritableStreamDefaultController + * instance to manipulate. + */ + interface WritableStreamDefaultController { + error(e?: any): void; + } + const WritableStreamDefaultController: { + prototype: WritableStreamDefaultController; + new (): WritableStreamDefaultController; + }; + interface QueuingStrategy { + highWaterMark?: number; + size?: QueuingStrategySize; + } + interface QueuingStrategySize { + (chunk?: T): number; + } + interface QueuingStrategyInit { + /** + * Creates a new ByteLengthQueuingStrategy with the provided high water + * mark. + * + * Note that the provided high water mark will not be validated ahead of + * time. Instead, if it is negative, NaN, or not a number, the resulting + * ByteLengthQueuingStrategy will cause the corresponding stream + * constructor to throw. + */ + highWaterMark: number; + } + /** + * This Streams API interface provides a built-in byte length queuing + * strategy that can be used when constructing streams. + */ + interface ByteLengthQueuingStrategy extends QueuingStrategy { + readonly highWaterMark: number; + readonly size: QueuingStrategySize; + } + const ByteLengthQueuingStrategy: { + prototype: ByteLengthQueuingStrategy; + new (init: QueuingStrategyInit): ByteLengthQueuingStrategy; + }; + /** + * This Streams API interface provides a built-in byte length queuing + * strategy that can be used when constructing streams. + */ + interface CountQueuingStrategy extends QueuingStrategy { + readonly highWaterMark: number; + readonly size: QueuingStrategySize; + } + const CountQueuingStrategy: { + prototype: CountQueuingStrategy; + new (init: QueuingStrategyInit): CountQueuingStrategy; + }; + interface TextEncoderStream { + /** Returns "utf-8". */ + readonly encoding: 'utf-8'; + readonly readable: ReadableStream; + readonly writable: WritableStream; + readonly [Symbol.toStringTag]: string; + } + const TextEncoderStream: { + prototype: TextEncoderStream; + new (): TextEncoderStream; + }; + interface TextDecoderOptions { + fatal?: boolean; + ignoreBOM?: boolean; + } + type BufferSource = ArrayBufferView | ArrayBuffer; + interface TextDecoderStream { + /** Returns encoding's name, lower cased. */ + readonly encoding: string; + /** Returns `true` if error mode is "fatal", and `false` otherwise. */ + readonly fatal: boolean; + /** Returns `true` if ignore BOM flag is set, and `false` otherwise. */ + readonly ignoreBOM: boolean; + readonly readable: ReadableStream; + readonly writable: WritableStream; + readonly [Symbol.toStringTag]: string; + } + const TextDecoderStream: { + prototype: TextDecoderStream; + new (label?: string, options?: TextDecoderOptions): TextDecoderStream; + }; +} +declare module 'node:stream/web' { + export * from 'stream/web'; +} diff --git a/node_modules/@types/node/ts4.8/string_decoder.d.ts b/node_modules/@types/node/ts4.8/string_decoder.d.ts new file mode 100644 index 000000000..a58580411 --- /dev/null +++ b/node_modules/@types/node/ts4.8/string_decoder.d.ts @@ -0,0 +1,67 @@ +/** + * The `string_decoder` module provides an API for decoding `Buffer` objects into + * strings in a manner that preserves encoded multi-byte UTF-8 and UTF-16 + * characters. It can be accessed using: + * + * ```js + * const { StringDecoder } = require('string_decoder'); + * ``` + * + * The following example shows the basic use of the `StringDecoder` class. + * + * ```js + * const { StringDecoder } = require('string_decoder'); + * const decoder = new StringDecoder('utf8'); + * + * const cent = Buffer.from([0xC2, 0xA2]); + * console.log(decoder.write(cent)); + * + * const euro = Buffer.from([0xE2, 0x82, 0xAC]); + * console.log(decoder.write(euro)); + * ``` + * + * When a `Buffer` instance is written to the `StringDecoder` instance, an + * internal buffer is used to ensure that the decoded string does not contain + * any incomplete multibyte characters. These are held in the buffer until the + * next call to `stringDecoder.write()` or until `stringDecoder.end()` is called. + * + * In the following example, the three UTF-8 encoded bytes of the European Euro + * symbol (`€`) are written over three separate operations: + * + * ```js + * const { StringDecoder } = require('string_decoder'); + * const decoder = new StringDecoder('utf8'); + * + * decoder.write(Buffer.from([0xE2])); + * decoder.write(Buffer.from([0x82])); + * console.log(decoder.end(Buffer.from([0xAC]))); + * ``` + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/string_decoder.js) + */ +declare module 'string_decoder' { + class StringDecoder { + constructor(encoding?: BufferEncoding); + /** + * Returns a decoded string, ensuring that any incomplete multibyte characters at + * the end of the `Buffer`, or `TypedArray`, or `DataView` are omitted from the + * returned string and stored in an internal buffer for the next call to`stringDecoder.write()` or `stringDecoder.end()`. + * @since v0.1.99 + * @param buffer A `Buffer`, or `TypedArray`, or `DataView` containing the bytes to decode. + */ + write(buffer: Buffer): string; + /** + * Returns any remaining input stored in the internal buffer as a string. Bytes + * representing incomplete UTF-8 and UTF-16 characters will be replaced with + * substitution characters appropriate for the character encoding. + * + * If the `buffer` argument is provided, one final call to `stringDecoder.write()`is performed before returning the remaining input. + * After `end()` is called, the `stringDecoder` object can be reused for new input. + * @since v0.9.3 + * @param buffer A `Buffer`, or `TypedArray`, or `DataView` containing the bytes to decode. + */ + end(buffer?: Buffer): string; + } +} +declare module 'node:string_decoder' { + export * from 'string_decoder'; +} diff --git a/node_modules/@types/node/ts4.8/test.d.ts b/node_modules/@types/node/ts4.8/test.d.ts new file mode 100644 index 000000000..a9b4eeb5e --- /dev/null +++ b/node_modules/@types/node/ts4.8/test.d.ts @@ -0,0 +1,314 @@ +/** + * The `node:test` module provides a standalone testing module. + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/test.js) + */ +declare module 'node:test' { + /** + * Programmatically start the test runner. + * @since v18.9.0 + * @param options Configuration options for running tests. + * @returns A {@link TapStream} that emits events about the test execution. + */ + function run(options?: RunOptions): TapStream; + + /** + * The `test()` function is the value imported from the test module. Each invocation of this + * function results in the creation of a test point in the TAP output. + * + * The {@link TestContext} object passed to the fn argument can be used to perform actions + * related to the current test. Examples include skipping the test, adding additional TAP + * diagnostic information, or creating subtests. + * + * `test()` returns a {@link Promise} that resolves once the test completes. The return value + * can usually be discarded for top level tests. However, the return value from subtests should + * be used to prevent the parent test from finishing first and cancelling the subtest as shown + * in the following example. + * + * ```js + * test('top level test', async (t) => { + * // The setTimeout() in the following subtest would cause it to outlive its + * // parent test if 'await' is removed on the next line. Once the parent test + * // completes, it will cancel any outstanding subtests. + * await t.test('longer running subtest', async (t) => { + * return new Promise((resolve, reject) => { + * setTimeout(resolve, 1000); + * }); + * }); + * }); + * ``` + * @since v18.0.0 + * @param name The name of the test, which is displayed when reporting test results. + * Default: The `name` property of fn, or `''` if `fn` does not have a name. + * @param options Configuration options for the test + * @param fn The function under test. The first argument to this function is a + * {@link TestContext} object. If the test uses callbacks, the callback function is + * passed as the second argument. Default: A no-op function. + * @returns A {@link Promise} resolved with `undefined` once the test completes. + */ + function test(name?: string, fn?: TestFn): Promise; + function test(name?: string, options?: TestOptions, fn?: TestFn): Promise; + function test(options?: TestOptions, fn?: TestFn): Promise; + function test(fn?: TestFn): Promise; + + /** + * @since v18.6.0 + * @param name The name of the suite, which is displayed when reporting suite results. + * Default: The `name` property of fn, or `''` if `fn` does not have a name. + * @param options Configuration options for the suite + * @param fn The function under suite. Default: A no-op function. + */ + function describe(name?: string, options?: TestOptions, fn?: SuiteFn): void; + function describe(name?: string, fn?: SuiteFn): void; + function describe(options?: TestOptions, fn?: SuiteFn): void; + function describe(fn?: SuiteFn): void; + + /** + * @since v18.6.0 + * @param name The name of the test, which is displayed when reporting test results. + * Default: The `name` property of fn, or `''` if `fn` does not have a name. + * @param options Configuration options for the test + * @param fn The function under test. If the test uses callbacks, the callback function is + * passed as the second argument. Default: A no-op function. + */ + function it(name?: string, options?: TestOptions, fn?: ItFn): void; + function it(name?: string, fn?: ItFn): void; + function it(options?: TestOptions, fn?: ItFn): void; + function it(fn?: ItFn): void; + + /** + * The type of a function under test. The first argument to this function is a + * {@link TestContext} object. If the test uses callbacks, the callback function is passed as + * the second argument. + */ + type TestFn = (t: TestContext, done: (result?: any) => void) => any; + + /** + * The type of a function under Suite. + * If the test uses callbacks, the callback function is passed as an argument + */ + type SuiteFn = (done: (result?: any) => void) => void; + + /** + * The type of a function under test. + * If the test uses callbacks, the callback function is passed as an argument + */ + type ItFn = (done: (result?: any) => void) => any; + + interface RunOptions { + /** + * @default false + */ + concurrency?: number | boolean; + + /** + * An array containing the list of files to run. If unspecified, the test runner execution model will be used. + */ + files?: readonly string[]; + + /** + * Allows aborting an in-progress test. + * @default undefined + */ + signal?: AbortSignal; + + /** + * A number of milliseconds the test will fail after. If unspecified, subtests inherit this + * value from their parent. + * @default Infinity + */ + timeout?: number; + } + + /** + * A successful call of the run() method will return a new TapStream object, streaming a TAP output. + * TapStream will emit events in the order of the tests' definitions. + * @since v18.9.0 + */ + interface TapStream extends NodeJS.ReadableStream { + addListener(event: 'test:diagnostic', listener: (message: string) => void): this; + addListener(event: 'test:fail', listener: (data: TestFail) => void): this; + addListener(event: 'test:pass', listener: (data: TestPass) => void): this; + addListener(event: string, listener: (...args: any[]) => void): this; + emit(event: 'test:diagnostic', message: string): boolean; + emit(event: 'test:fail', data: TestFail): boolean; + emit(event: 'test:pass', data: TestPass): boolean; + emit(event: string | symbol, ...args: any[]): boolean; + on(event: 'test:diagnostic', listener: (message: string) => void): this; + on(event: 'test:fail', listener: (data: TestFail) => void): this; + on(event: 'test:pass', listener: (data: TestPass) => void): this; + on(event: string, listener: (...args: any[]) => void): this; + once(event: 'test:diagnostic', listener: (message: string) => void): this; + once(event: 'test:fail', listener: (data: TestFail) => void): this; + once(event: 'test:pass', listener: (data: TestPass) => void): this; + once(event: string, listener: (...args: any[]) => void): this; + prependListener(event: 'test:diagnostic', listener: (message: string) => void): this; + prependListener(event: 'test:fail', listener: (data: TestFail) => void): this; + prependListener(event: 'test:pass', listener: (data: TestPass) => void): this; + prependListener(event: string, listener: (...args: any[]) => void): this; + prependOnceListener(event: 'test:diagnostic', listener: (message: string) => void): this; + prependOnceListener(event: 'test:fail', listener: (data: TestFail) => void): this; + prependOnceListener(event: 'test:pass', listener: (data: TestPass) => void): this; + prependOnceListener(event: string, listener: (...args: any[]) => void): this; + } + + interface TestFail { + /** + * The test duration. + */ + duration: number; + + /** + * The failure casing test to fail. + */ + error: Error; + + /** + * The test name. + */ + name: string; + + /** + * The ordinal number of the test. + */ + testNumber: number; + + /** + * Present if `context.todo` is called. + */ + todo?: string; + + /** + * Present if `context.skip` is called. + */ + skip?: string; + } + + interface TestPass { + /** + * The test duration. + */ + duration: number; + + /** + * The test name. + */ + name: string; + + /** + * The ordinal number of the test. + */ + testNumber: number; + + /** + * Present if `context.todo` is called. + */ + todo?: string; + + /** + * Present if `context.skip` is called. + */ + skip?: string; + } + + /** + * An instance of `TestContext` is passed to each test function in order to interact with the + * test runner. However, the `TestContext` constructor is not exposed as part of the API. + * @since v18.0.0 + */ + interface TestContext { + /** + * This function is used to write TAP diagnostics to the output. Any diagnostic information is + * included at the end of the test's results. This function does not return a value. + * @param message Message to be displayed as a TAP diagnostic. + * @since v18.0.0 + */ + diagnostic(message: string): void; + + /** + * If `shouldRunOnlyTests` is truthy, the test context will only run tests that have the `only` + * option set. Otherwise, all tests are run. If Node.js was not started with the `--test-only` + * command-line option, this function is a no-op. + * @param shouldRunOnlyTests Whether or not to run `only` tests. + * @since v18.0.0 + */ + runOnly(shouldRunOnlyTests: boolean): void; + + /** + * This function causes the test's output to indicate the test as skipped. If `message` is + * provided, it is included in the TAP output. Calling `skip()` does not terminate execution of + * the test function. This function does not return a value. + * @param message Optional skip message to be displayed in TAP output. + * @since v18.0.0 + */ + skip(message?: string): void; + + /** + * This function adds a `TODO` directive to the test's output. If `message` is provided, it is + * included in the TAP output. Calling `todo()` does not terminate execution of the test + * function. This function does not return a value. + * @param message Optional `TODO` message to be displayed in TAP output. + * @since v18.0.0 + */ + todo(message?: string): void; + + /** + * This function is used to create subtests under the current test. This function behaves in + * the same fashion as the top level {@link test} function. + * @since v18.0.0 + * @param name The name of the test, which is displayed when reporting test results. + * Default: The `name` property of fn, or `''` if `fn` does not have a name. + * @param options Configuration options for the test + * @param fn The function under test. This first argument to this function is a + * {@link TestContext} object. If the test uses callbacks, the callback function is + * passed as the second argument. Default: A no-op function. + * @returns A {@link Promise} resolved with `undefined` once the test completes. + */ + test: typeof test; + } + + interface TestOptions { + /** + * The number of tests that can be run at the same time. If unspecified, subtests inherit this + * value from their parent. + * @default 1 + */ + concurrency?: number; + + /** + * If truthy, and the test context is configured to run `only` tests, then this test will be + * run. Otherwise, the test is skipped. + * @default false + */ + only?: boolean; + + /** + * Allows aborting an in-progress test. + * @since v18.8.0 + */ + signal?: AbortSignal; + + /** + * If truthy, the test is skipped. If a string is provided, that string is displayed in the + * test results as the reason for skipping the test. + * @default false + */ + skip?: boolean | string; + + /** + * A number of milliseconds the test will fail after. If unspecified, subtests inherit this + * value from their parent. + * @default Infinity + * @since v18.7.0 + */ + timeout?: number; + + /** + * If truthy, the test marked as `TODO`. If a string is provided, that string is displayed in + * the test results as the reason why the test is `TODO`. + * @default false + */ + todo?: boolean | string; + } + + export { test as default, run, test, describe, it }; +} diff --git a/node_modules/@types/node/ts4.8/timers.d.ts b/node_modules/@types/node/ts4.8/timers.d.ts new file mode 100644 index 000000000..b26f3ceda --- /dev/null +++ b/node_modules/@types/node/ts4.8/timers.d.ts @@ -0,0 +1,94 @@ +/** + * The `timer` module exposes a global API for scheduling functions to + * be called at some future period of time. Because the timer functions are + * globals, there is no need to call `require('timers')` to use the API. + * + * The timer functions within Node.js implement a similar API as the timers API + * provided by Web Browsers but use a different internal implementation that is + * built around the Node.js [Event Loop](https://nodejs.org/en/docs/guides/event-loop-timers-and-nexttick/#setimmediate-vs-settimeout). + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/timers.js) + */ +declare module 'timers' { + import { Abortable } from 'node:events'; + import { setTimeout as setTimeoutPromise, setImmediate as setImmediatePromise, setInterval as setIntervalPromise } from 'node:timers/promises'; + interface TimerOptions extends Abortable { + /** + * Set to `false` to indicate that the scheduled `Timeout` + * should not require the Node.js event loop to remain active. + * @default true + */ + ref?: boolean | undefined; + } + let setTimeout: typeof global.setTimeout; + let clearTimeout: typeof global.clearTimeout; + let setInterval: typeof global.setInterval; + let clearInterval: typeof global.clearInterval; + let setImmediate: typeof global.setImmediate; + let clearImmediate: typeof global.clearImmediate; + global { + namespace NodeJS { + // compatibility with older typings + interface Timer extends RefCounted { + hasRef(): boolean; + refresh(): this; + [Symbol.toPrimitive](): number; + } + interface Immediate extends RefCounted { + /** + * If true, the `Immediate` object will keep the Node.js event loop active. + * @since v11.0.0 + */ + hasRef(): boolean; + _onImmediate: Function; // to distinguish it from the Timeout class + } + interface Timeout extends Timer { + /** + * If true, the `Timeout` object will keep the Node.js event loop active. + * @since v11.0.0 + */ + hasRef(): boolean; + /** + * Sets the timer's start time to the current time, and reschedules the timer to + * call its callback at the previously specified duration adjusted to the current + * time. This is useful for refreshing a timer without allocating a new + * JavaScript object. + * + * Using this on a timer that has already called its callback will reactivate the + * timer. + * @since v10.2.0 + * @return a reference to `timeout` + */ + refresh(): this; + [Symbol.toPrimitive](): number; + } + } + function setTimeout(callback: (...args: TArgs) => void, ms?: number, ...args: TArgs): NodeJS.Timeout; + // util.promisify no rest args compability + // tslint:disable-next-line void-return + function setTimeout(callback: (args: void) => void, ms?: number): NodeJS.Timeout; + namespace setTimeout { + const __promisify__: typeof setTimeoutPromise; + } + function clearTimeout(timeoutId: NodeJS.Timeout | string | number | undefined): void; + function setInterval(callback: (...args: TArgs) => void, ms?: number, ...args: TArgs): NodeJS.Timer; + // util.promisify no rest args compability + // tslint:disable-next-line void-return + function setInterval(callback: (args: void) => void, ms?: number): NodeJS.Timer; + namespace setInterval { + const __promisify__: typeof setIntervalPromise; + } + function clearInterval(intervalId: NodeJS.Timeout | string | number | undefined): void; + function setImmediate(callback: (...args: TArgs) => void, ...args: TArgs): NodeJS.Immediate; + // util.promisify no rest args compability + // tslint:disable-next-line void-return + function setImmediate(callback: (args: void) => void): NodeJS.Immediate; + namespace setImmediate { + const __promisify__: typeof setImmediatePromise; + } + function clearImmediate(immediateId: NodeJS.Immediate | undefined): void; + function queueMicrotask(callback: () => void): void; + } +} +declare module 'node:timers' { + export * from 'timers'; +} diff --git a/node_modules/@types/node/ts4.8/timers/promises.d.ts b/node_modules/@types/node/ts4.8/timers/promises.d.ts new file mode 100644 index 000000000..fd778880e --- /dev/null +++ b/node_modules/@types/node/ts4.8/timers/promises.d.ts @@ -0,0 +1,68 @@ +/** + * The `timers/promises` API provides an alternative set of timer functions + * that return `Promise` objects. The API is accessible via`require('timers/promises')`. + * + * ```js + * import { + * setTimeout, + * setImmediate, + * setInterval, + * } from 'timers/promises'; + * ``` + * @since v15.0.0 + */ +declare module 'timers/promises' { + import { TimerOptions } from 'node:timers'; + /** + * ```js + * import { + * setTimeout, + * } from 'timers/promises'; + * + * const res = await setTimeout(100, 'result'); + * + * console.log(res); // Prints 'result' + * ``` + * @since v15.0.0 + * @param [delay=1] The number of milliseconds to wait before fulfilling the promise. + * @param value A value with which the promise is fulfilled. + */ + function setTimeout(delay?: number, value?: T, options?: TimerOptions): Promise; + /** + * ```js + * import { + * setImmediate, + * } from 'timers/promises'; + * + * const res = await setImmediate('result'); + * + * console.log(res); // Prints 'result' + * ``` + * @since v15.0.0 + * @param value A value with which the promise is fulfilled. + */ + function setImmediate(value?: T, options?: TimerOptions): Promise; + /** + * Returns an async iterator that generates values in an interval of `delay` ms. + * + * ```js + * import { + * setInterval, + * } from 'timers/promises'; + * + * const interval = 100; + * for await (const startTime of setInterval(interval, Date.now())) { + * const now = Date.now(); + * console.log(now); + * if ((now - startTime) > 1000) + * break; + * } + * console.log(Date.now()); + * ``` + * @since v15.9.0 + */ + function setInterval(delay?: number, value?: T, options?: TimerOptions): AsyncIterable; +} +declare module 'node:timers/promises' { + export * from 'timers/promises'; +} diff --git a/node_modules/@types/node/ts4.8/tls.d.ts b/node_modules/@types/node/ts4.8/tls.d.ts new file mode 100644 index 000000000..2cbc71658 --- /dev/null +++ b/node_modules/@types/node/ts4.8/tls.d.ts @@ -0,0 +1,1028 @@ +/** + * The `tls` module provides an implementation of the Transport Layer Security + * (TLS) and Secure Socket Layer (SSL) protocols that is built on top of OpenSSL. + * The module can be accessed using: + * + * ```js + * const tls = require('tls'); + * ``` + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/tls.js) + */ +declare module 'tls' { + import { X509Certificate } from 'node:crypto'; + import * as net from 'node:net'; + import * as stream from 'stream'; + const CLIENT_RENEG_LIMIT: number; + const CLIENT_RENEG_WINDOW: number; + interface Certificate { + /** + * Country code. + */ + C: string; + /** + * Street. + */ + ST: string; + /** + * Locality. + */ + L: string; + /** + * Organization. + */ + O: string; + /** + * Organizational unit. + */ + OU: string; + /** + * Common name. + */ + CN: string; + } + interface PeerCertificate { + subject: Certificate; + issuer: Certificate; + subjectaltname: string; + infoAccess: NodeJS.Dict; + modulus: string; + exponent: string; + valid_from: string; + valid_to: string; + fingerprint: string; + fingerprint256: string; + ext_key_usage: string[]; + serialNumber: string; + raw: Buffer; + } + interface DetailedPeerCertificate extends PeerCertificate { + issuerCertificate: DetailedPeerCertificate; + } + interface CipherNameAndProtocol { + /** + * The cipher name. + */ + name: string; + /** + * SSL/TLS protocol version. + */ + version: string; + /** + * IETF name for the cipher suite. + */ + standardName: string; + } + interface EphemeralKeyInfo { + /** + * The supported types are 'DH' and 'ECDH'. + */ + type: string; + /** + * The name property is available only when type is 'ECDH'. + */ + name?: string | undefined; + /** + * The size of parameter of an ephemeral key exchange. + */ + size: number; + } + interface KeyObject { + /** + * Private keys in PEM format. + */ + pem: string | Buffer; + /** + * Optional passphrase. + */ + passphrase?: string | undefined; + } + interface PxfObject { + /** + * PFX or PKCS12 encoded private key and certificate chain. + */ + buf: string | Buffer; + /** + * Optional passphrase. + */ + passphrase?: string | undefined; + } + interface TLSSocketOptions extends SecureContextOptions, CommonConnectionOptions { + /** + * If true the TLS socket will be instantiated in server-mode. + * Defaults to false. + */ + isServer?: boolean | undefined; + /** + * An optional net.Server instance. + */ + server?: net.Server | undefined; + /** + * An optional Buffer instance containing a TLS session. + */ + session?: Buffer | undefined; + /** + * If true, specifies that the OCSP status request extension will be + * added to the client hello and an 'OCSPResponse' event will be + * emitted on the socket before establishing a secure communication + */ + requestOCSP?: boolean | undefined; + } + /** + * Performs transparent encryption of written data and all required TLS + * negotiation. + * + * Instances of `tls.TLSSocket` implement the duplex `Stream` interface. + * + * Methods that return TLS connection metadata (e.g.{@link TLSSocket.getPeerCertificate} will only return data while the + * connection is open. + * @since v0.11.4 + */ + class TLSSocket extends net.Socket { + /** + * Construct a new tls.TLSSocket object from an existing TCP socket. + */ + constructor(socket: net.Socket, options?: TLSSocketOptions); + /** + * This property is `true` if the peer certificate was signed by one of the CAs + * specified when creating the `tls.TLSSocket` instance, otherwise `false`. + * @since v0.11.4 + */ + authorized: boolean; + /** + * Returns the reason why the peer's certificate was not been verified. This + * property is set only when `tlsSocket.authorized === false`. + * @since v0.11.4 + */ + authorizationError: Error; + /** + * Always returns `true`. This may be used to distinguish TLS sockets from regular`net.Socket` instances. + * @since v0.11.4 + */ + encrypted: true; + /** + * String containing the selected ALPN protocol. + * Before a handshake has completed, this value is always null. + * When a handshake is completed but not ALPN protocol was selected, tlsSocket.alpnProtocol equals false. + */ + alpnProtocol: string | false | null; + /** + * Returns an object representing the local certificate. The returned object has + * some properties corresponding to the fields of the certificate. + * + * See {@link TLSSocket.getPeerCertificate} for an example of the certificate + * structure. + * + * If there is no local certificate, an empty object will be returned. If the + * socket has been destroyed, `null` will be returned. + * @since v11.2.0 + */ + getCertificate(): PeerCertificate | object | null; + /** + * Returns an object containing information on the negotiated cipher suite. + * + * For example: + * + * ```json + * { + * "name": "AES128-SHA256", + * "standardName": "TLS_RSA_WITH_AES_128_CBC_SHA256", + * "version": "TLSv1.2" + * } + * ``` + * + * See [SSL\_CIPHER\_get\_name](https://www.openssl.org/docs/man1.1.1/man3/SSL_CIPHER_get_name.html) for more information. + * @since v0.11.4 + */ + getCipher(): CipherNameAndProtocol; + /** + * Returns an object representing the type, name, and size of parameter of + * an ephemeral key exchange in `perfect forward secrecy` on a client + * connection. It returns an empty object when the key exchange is not + * ephemeral. As this is only supported on a client socket; `null` is returned + * if called on a server socket. The supported types are `'DH'` and `'ECDH'`. The`name` property is available only when type is `'ECDH'`. + * + * For example: `{ type: 'ECDH', name: 'prime256v1', size: 256 }`. + * @since v5.0.0 + */ + getEphemeralKeyInfo(): EphemeralKeyInfo | object | null; + /** + * As the `Finished` messages are message digests of the complete handshake + * (with a total of 192 bits for TLS 1.0 and more for SSL 3.0), they can + * be used for external authentication procedures when the authentication + * provided by SSL/TLS is not desired or is not enough. + * + * Corresponds to the `SSL_get_finished` routine in OpenSSL and may be used + * to implement the `tls-unique` channel binding from [RFC 5929](https://tools.ietf.org/html/rfc5929). + * @since v9.9.0 + * @return The latest `Finished` message that has been sent to the socket as part of a SSL/TLS handshake, or `undefined` if no `Finished` message has been sent yet. + */ + getFinished(): Buffer | undefined; + /** + * Returns an object representing the peer's certificate. If the peer does not + * provide a certificate, an empty object will be returned. If the socket has been + * destroyed, `null` will be returned. + * + * If the full certificate chain was requested, each certificate will include an`issuerCertificate` property containing an object representing its issuer's + * certificate. + * @since v0.11.4 + * @param detailed Include the full certificate chain if `true`, otherwise include just the peer's certificate. + * @return A certificate object. + */ + getPeerCertificate(detailed: true): DetailedPeerCertificate; + getPeerCertificate(detailed?: false): PeerCertificate; + getPeerCertificate(detailed?: boolean): PeerCertificate | DetailedPeerCertificate; + /** + * As the `Finished` messages are message digests of the complete handshake + * (with a total of 192 bits for TLS 1.0 and more for SSL 3.0), they can + * be used for external authentication procedures when the authentication + * provided by SSL/TLS is not desired or is not enough. + * + * Corresponds to the `SSL_get_peer_finished` routine in OpenSSL and may be used + * to implement the `tls-unique` channel binding from [RFC 5929](https://tools.ietf.org/html/rfc5929). + * @since v9.9.0 + * @return The latest `Finished` message that is expected or has actually been received from the socket as part of a SSL/TLS handshake, or `undefined` if there is no `Finished` message so + * far. + */ + getPeerFinished(): Buffer | undefined; + /** + * Returns a string containing the negotiated SSL/TLS protocol version of the + * current connection. The value `'unknown'` will be returned for connected + * sockets that have not completed the handshaking process. The value `null` will + * be returned for server sockets or disconnected client sockets. + * + * Protocol versions are: + * + * * `'SSLv3'` + * * `'TLSv1'` + * * `'TLSv1.1'` + * * `'TLSv1.2'` + * * `'TLSv1.3'` + * + * See the OpenSSL [`SSL_get_version`](https://www.openssl.org/docs/man1.1.1/man3/SSL_get_version.html) documentation for more information. + * @since v5.7.0 + */ + getProtocol(): string | null; + /** + * Returns the TLS session data or `undefined` if no session was + * negotiated. On the client, the data can be provided to the `session` option of {@link connect} to resume the connection. On the server, it may be useful + * for debugging. + * + * See `Session Resumption` for more information. + * + * Note: `getSession()` works only for TLSv1.2 and below. For TLSv1.3, applications + * must use the `'session'` event (it also works for TLSv1.2 and below). + * @since v0.11.4 + */ + getSession(): Buffer | undefined; + /** + * See [SSL\_get\_shared\_sigalgs](https://www.openssl.org/docs/man1.1.1/man3/SSL_get_shared_sigalgs.html) for more information. + * @since v12.11.0 + * @return List of signature algorithms shared between the server and the client in the order of decreasing preference. + */ + getSharedSigalgs(): string[]; + /** + * For a client, returns the TLS session ticket if one is available, or`undefined`. For a server, always returns `undefined`. + * + * It may be useful for debugging. + * + * See `Session Resumption` for more information. + * @since v0.11.4 + */ + getTLSTicket(): Buffer | undefined; + /** + * See `Session Resumption` for more information. + * @since v0.5.6 + * @return `true` if the session was reused, `false` otherwise. + */ + isSessionReused(): boolean; + /** + * The `tlsSocket.renegotiate()` method initiates a TLS renegotiation process. + * Upon completion, the `callback` function will be passed a single argument + * that is either an `Error` (if the request failed) or `null`. + * + * This method can be used to request a peer's certificate after the secure + * connection has been established. + * + * When running as the server, the socket will be destroyed with an error after`handshakeTimeout` timeout. + * + * For TLSv1.3, renegotiation cannot be initiated, it is not supported by the + * protocol. + * @since v0.11.8 + * @param callback If `renegotiate()` returned `true`, callback is attached once to the `'secure'` event. If `renegotiate()` returned `false`, `callback` will be called in the next tick with + * an error, unless the `tlsSocket` has been destroyed, in which case `callback` will not be called at all. + * @return `true` if renegotiation was initiated, `false` otherwise. + */ + renegotiate( + options: { + rejectUnauthorized?: boolean | undefined; + requestCert?: boolean | undefined; + }, + callback: (err: Error | null) => void + ): undefined | boolean; + /** + * The `tlsSocket.setMaxSendFragment()` method sets the maximum TLS fragment size. + * Returns `true` if setting the limit succeeded; `false` otherwise. + * + * Smaller fragment sizes decrease the buffering latency on the client: larger + * fragments are buffered by the TLS layer until the entire fragment is received + * and its integrity is verified; large fragments can span multiple roundtrips + * and their processing can be delayed due to packet loss or reordering. However, + * smaller fragments add extra TLS framing bytes and CPU overhead, which may + * decrease overall server throughput. + * @since v0.11.11 + * @param [size=16384] The maximum TLS fragment size. The maximum value is `16384`. + */ + setMaxSendFragment(size: number): boolean; + /** + * Disables TLS renegotiation for this `TLSSocket` instance. Once called, attempts + * to renegotiate will trigger an `'error'` event on the `TLSSocket`. + * @since v8.4.0 + */ + disableRenegotiation(): void; + /** + * When enabled, TLS packet trace information is written to `stderr`. This can be + * used to debug TLS connection problems. + * + * The format of the output is identical to the output of`openssl s_client -trace` or `openssl s_server -trace`. While it is produced by + * OpenSSL's `SSL_trace()` function, the format is undocumented, can change + * without notice, and should not be relied on. + * @since v12.2.0 + */ + enableTrace(): void; + /** + * Returns the peer certificate as an `X509Certificate` object. + * + * If there is no peer certificate, or the socket has been destroyed,`undefined` will be returned. + * @since v15.9.0 + */ + getPeerX509Certificate(): X509Certificate | undefined; + /** + * Returns the local certificate as an `X509Certificate` object. + * + * If there is no local certificate, or the socket has been destroyed,`undefined` will be returned. + * @since v15.9.0 + */ + getX509Certificate(): X509Certificate | undefined; + /** + * Keying material is used for validations to prevent different kind of attacks in + * network protocols, for example in the specifications of IEEE 802.1X. + * + * Example + * + * ```js + * const keyingMaterial = tlsSocket.exportKeyingMaterial( + * 128, + * 'client finished'); + * + * /* + * Example return value of keyingMaterial: + * + * + * ``` + * + * See the OpenSSL [`SSL_export_keying_material`](https://www.openssl.org/docs/man1.1.1/man3/SSL_export_keying_material.html) documentation for more + * information. + * @since v13.10.0, v12.17.0 + * @param length number of bytes to retrieve from keying material + * @param label an application specific label, typically this will be a value from the [IANA Exporter Label + * Registry](https://www.iana.org/assignments/tls-parameters/tls-parameters.xhtml#exporter-labels). + * @param context Optionally provide a context. + * @return requested bytes of the keying material + */ + exportKeyingMaterial(length: number, label: string, context: Buffer): Buffer; + addListener(event: string, listener: (...args: any[]) => void): this; + addListener(event: 'OCSPResponse', listener: (response: Buffer) => void): this; + addListener(event: 'secureConnect', listener: () => void): this; + addListener(event: 'session', listener: (session: Buffer) => void): this; + addListener(event: 'keylog', listener: (line: Buffer) => void): this; + emit(event: string | symbol, ...args: any[]): boolean; + emit(event: 'OCSPResponse', response: Buffer): boolean; + emit(event: 'secureConnect'): boolean; + emit(event: 'session', session: Buffer): boolean; + emit(event: 'keylog', line: Buffer): boolean; + on(event: string, listener: (...args: any[]) => void): this; + on(event: 'OCSPResponse', listener: (response: Buffer) => void): this; + on(event: 'secureConnect', listener: () => void): this; + on(event: 'session', listener: (session: Buffer) => void): this; + on(event: 'keylog', listener: (line: Buffer) => void): this; + once(event: string, listener: (...args: any[]) => void): this; + once(event: 'OCSPResponse', listener: (response: Buffer) => void): this; + once(event: 'secureConnect', listener: () => void): this; + once(event: 'session', listener: (session: Buffer) => void): this; + once(event: 'keylog', listener: (line: Buffer) => void): this; + prependListener(event: string, listener: (...args: any[]) => void): this; + prependListener(event: 'OCSPResponse', listener: (response: Buffer) => void): this; + prependListener(event: 'secureConnect', listener: () => void): this; + prependListener(event: 'session', listener: (session: Buffer) => void): this; + prependListener(event: 'keylog', listener: (line: Buffer) => void): this; + prependOnceListener(event: string, listener: (...args: any[]) => void): this; + prependOnceListener(event: 'OCSPResponse', listener: (response: Buffer) => void): this; + prependOnceListener(event: 'secureConnect', listener: () => void): this; + prependOnceListener(event: 'session', listener: (session: Buffer) => void): this; + prependOnceListener(event: 'keylog', listener: (line: Buffer) => void): this; + } + interface CommonConnectionOptions { + /** + * An optional TLS context object from tls.createSecureContext() + */ + secureContext?: SecureContext | undefined; + /** + * When enabled, TLS packet trace information is written to `stderr`. This can be + * used to debug TLS connection problems. + * @default false + */ + enableTrace?: boolean | undefined; + /** + * If true the server will request a certificate from clients that + * connect and attempt to verify that certificate. Defaults to + * false. + */ + requestCert?: boolean | undefined; + /** + * An array of strings or a Buffer naming possible ALPN protocols. + * (Protocols should be ordered by their priority.) + */ + ALPNProtocols?: string[] | Uint8Array[] | Uint8Array | undefined; + /** + * SNICallback(servername, cb) A function that will be + * called if the client supports SNI TLS extension. Two arguments + * will be passed when called: servername and cb. SNICallback should + * invoke cb(null, ctx), where ctx is a SecureContext instance. + * (tls.createSecureContext(...) can be used to get a proper + * SecureContext.) If SNICallback wasn't provided the default callback + * with high-level API will be used (see below). + */ + SNICallback?: ((servername: string, cb: (err: Error | null, ctx?: SecureContext) => void) => void) | undefined; + /** + * If true the server will reject any connection which is not + * authorized with the list of supplied CAs. This option only has an + * effect if requestCert is true. + * @default true + */ + rejectUnauthorized?: boolean | undefined; + } + interface TlsOptions extends SecureContextOptions, CommonConnectionOptions, net.ServerOpts { + /** + * Abort the connection if the SSL/TLS handshake does not finish in the + * specified number of milliseconds. A 'tlsClientError' is emitted on + * the tls.Server object whenever a handshake times out. Default: + * 120000 (120 seconds). + */ + handshakeTimeout?: number | undefined; + /** + * The number of seconds after which a TLS session created by the + * server will no longer be resumable. See Session Resumption for more + * information. Default: 300. + */ + sessionTimeout?: number | undefined; + /** + * 48-bytes of cryptographically strong pseudo-random data. + */ + ticketKeys?: Buffer | undefined; + /** + * + * @param socket + * @param identity identity parameter sent from the client. + * @return pre-shared key that must either be + * a buffer or `null` to stop the negotiation process. Returned PSK must be + * compatible with the selected cipher's digest. + * + * When negotiating TLS-PSK (pre-shared keys), this function is called + * with the identity provided by the client. + * If the return value is `null` the negotiation process will stop and an + * "unknown_psk_identity" alert message will be sent to the other party. + * If the server wishes to hide the fact that the PSK identity was not known, + * the callback must provide some random data as `psk` to make the connection + * fail with "decrypt_error" before negotiation is finished. + * PSK ciphers are disabled by default, and using TLS-PSK thus + * requires explicitly specifying a cipher suite with the `ciphers` option. + * More information can be found in the RFC 4279. + */ + pskCallback?(socket: TLSSocket, identity: string): DataView | NodeJS.TypedArray | null; + /** + * hint to send to a client to help + * with selecting the identity during TLS-PSK negotiation. Will be ignored + * in TLS 1.3. Upon failing to set pskIdentityHint `tlsClientError` will be + * emitted with `ERR_TLS_PSK_SET_IDENTIY_HINT_FAILED` code. + */ + pskIdentityHint?: string | undefined; + } + interface PSKCallbackNegotation { + psk: DataView | NodeJS.TypedArray; + identity: string; + } + interface ConnectionOptions extends SecureContextOptions, CommonConnectionOptions { + host?: string | undefined; + port?: number | undefined; + path?: string | undefined; // Creates unix socket connection to path. If this option is specified, `host` and `port` are ignored. + socket?: stream.Duplex | undefined; // Establish secure connection on a given socket rather than creating a new socket + checkServerIdentity?: typeof checkServerIdentity | undefined; + servername?: string | undefined; // SNI TLS Extension + session?: Buffer | undefined; + minDHSize?: number | undefined; + lookup?: net.LookupFunction | undefined; + timeout?: number | undefined; + /** + * When negotiating TLS-PSK (pre-shared keys), this function is called + * with optional identity `hint` provided by the server or `null` + * in case of TLS 1.3 where `hint` was removed. + * It will be necessary to provide a custom `tls.checkServerIdentity()` + * for the connection as the default one will try to check hostname/IP + * of the server against the certificate but that's not applicable for PSK + * because there won't be a certificate present. + * More information can be found in the RFC 4279. + * + * @param hint message sent from the server to help client + * decide which identity to use during negotiation. + * Always `null` if TLS 1.3 is used. + * @returns Return `null` to stop the negotiation process. `psk` must be + * compatible with the selected cipher's digest. + * `identity` must use UTF-8 encoding. + */ + pskCallback?(hint: string | null): PSKCallbackNegotation | null; + } + /** + * Accepts encrypted connections using TLS or SSL. + * @since v0.3.2 + */ + class Server extends net.Server { + constructor(secureConnectionListener?: (socket: TLSSocket) => void); + constructor(options: TlsOptions, secureConnectionListener?: (socket: TLSSocket) => void); + /** + * The `server.addContext()` method adds a secure context that will be used if + * the client request's SNI name matches the supplied `hostname` (or wildcard). + * + * When there are multiple matching contexts, the most recently added one is + * used. + * @since v0.5.3 + * @param hostname A SNI host name or wildcard (e.g. `'*'`) + * @param context An object containing any of the possible properties from the {@link createSecureContext} `options` arguments (e.g. `key`, `cert`, `ca`, etc). + */ + addContext(hostname: string, context: SecureContextOptions): void; + /** + * Returns the session ticket keys. + * + * See `Session Resumption` for more information. + * @since v3.0.0 + * @return A 48-byte buffer containing the session ticket keys. + */ + getTicketKeys(): Buffer; + /** + * The `server.setSecureContext()` method replaces the secure context of an + * existing server. Existing connections to the server are not interrupted. + * @since v11.0.0 + * @param options An object containing any of the possible properties from the {@link createSecureContext} `options` arguments (e.g. `key`, `cert`, `ca`, etc). + */ + setSecureContext(options: SecureContextOptions): void; + /** + * Sets the session ticket keys. + * + * Changes to the ticket keys are effective only for future server connections. + * Existing or currently pending server connections will use the previous keys. + * + * See `Session Resumption` for more information. + * @since v3.0.0 + * @param keys A 48-byte buffer containing the session ticket keys. + */ + setTicketKeys(keys: Buffer): void; + /** + * events.EventEmitter + * 1. tlsClientError + * 2. newSession + * 3. OCSPRequest + * 4. resumeSession + * 5. secureConnection + * 6. keylog + */ + addListener(event: string, listener: (...args: any[]) => void): this; + addListener(event: 'tlsClientError', listener: (err: Error, tlsSocket: TLSSocket) => void): this; + addListener(event: 'newSession', listener: (sessionId: Buffer, sessionData: Buffer, callback: () => void) => void): this; + addListener(event: 'OCSPRequest', listener: (certificate: Buffer, issuer: Buffer, callback: (err: Error | null, resp: Buffer) => void) => void): this; + addListener(event: 'resumeSession', listener: (sessionId: Buffer, callback: (err: Error | null, sessionData: Buffer | null) => void) => void): this; + addListener(event: 'secureConnection', listener: (tlsSocket: TLSSocket) => void): this; + addListener(event: 'keylog', listener: (line: Buffer, tlsSocket: TLSSocket) => void): this; + emit(event: string | symbol, ...args: any[]): boolean; + emit(event: 'tlsClientError', err: Error, tlsSocket: TLSSocket): boolean; + emit(event: 'newSession', sessionId: Buffer, sessionData: Buffer, callback: () => void): boolean; + emit(event: 'OCSPRequest', certificate: Buffer, issuer: Buffer, callback: (err: Error | null, resp: Buffer) => void): boolean; + emit(event: 'resumeSession', sessionId: Buffer, callback: (err: Error | null, sessionData: Buffer | null) => void): boolean; + emit(event: 'secureConnection', tlsSocket: TLSSocket): boolean; + emit(event: 'keylog', line: Buffer, tlsSocket: TLSSocket): boolean; + on(event: string, listener: (...args: any[]) => void): this; + on(event: 'tlsClientError', listener: (err: Error, tlsSocket: TLSSocket) => void): this; + on(event: 'newSession', listener: (sessionId: Buffer, sessionData: Buffer, callback: () => void) => void): this; + on(event: 'OCSPRequest', listener: (certificate: Buffer, issuer: Buffer, callback: (err: Error | null, resp: Buffer) => void) => void): this; + on(event: 'resumeSession', listener: (sessionId: Buffer, callback: (err: Error | null, sessionData: Buffer | null) => void) => void): this; + on(event: 'secureConnection', listener: (tlsSocket: TLSSocket) => void): this; + on(event: 'keylog', listener: (line: Buffer, tlsSocket: TLSSocket) => void): this; + once(event: string, listener: (...args: any[]) => void): this; + once(event: 'tlsClientError', listener: (err: Error, tlsSocket: TLSSocket) => void): this; + once(event: 'newSession', listener: (sessionId: Buffer, sessionData: Buffer, callback: () => void) => void): this; + once(event: 'OCSPRequest', listener: (certificate: Buffer, issuer: Buffer, callback: (err: Error | null, resp: Buffer) => void) => void): this; + once(event: 'resumeSession', listener: (sessionId: Buffer, callback: (err: Error | null, sessionData: Buffer | null) => void) => void): this; + once(event: 'secureConnection', listener: (tlsSocket: TLSSocket) => void): this; + once(event: 'keylog', listener: (line: Buffer, tlsSocket: TLSSocket) => void): this; + prependListener(event: string, listener: (...args: any[]) => void): this; + prependListener(event: 'tlsClientError', listener: (err: Error, tlsSocket: TLSSocket) => void): this; + prependListener(event: 'newSession', listener: (sessionId: Buffer, sessionData: Buffer, callback: () => void) => void): this; + prependListener(event: 'OCSPRequest', listener: (certificate: Buffer, issuer: Buffer, callback: (err: Error | null, resp: Buffer) => void) => void): this; + prependListener(event: 'resumeSession', listener: (sessionId: Buffer, callback: (err: Error | null, sessionData: Buffer | null) => void) => void): this; + prependListener(event: 'secureConnection', listener: (tlsSocket: TLSSocket) => void): this; + prependListener(event: 'keylog', listener: (line: Buffer, tlsSocket: TLSSocket) => void): this; + prependOnceListener(event: string, listener: (...args: any[]) => void): this; + prependOnceListener(event: 'tlsClientError', listener: (err: Error, tlsSocket: TLSSocket) => void): this; + prependOnceListener(event: 'newSession', listener: (sessionId: Buffer, sessionData: Buffer, callback: () => void) => void): this; + prependOnceListener(event: 'OCSPRequest', listener: (certificate: Buffer, issuer: Buffer, callback: (err: Error | null, resp: Buffer) => void) => void): this; + prependOnceListener(event: 'resumeSession', listener: (sessionId: Buffer, callback: (err: Error | null, sessionData: Buffer | null) => void) => void): this; + prependOnceListener(event: 'secureConnection', listener: (tlsSocket: TLSSocket) => void): this; + prependOnceListener(event: 'keylog', listener: (line: Buffer, tlsSocket: TLSSocket) => void): this; + } + /** + * @deprecated since v0.11.3 Use `tls.TLSSocket` instead. + */ + interface SecurePair { + encrypted: TLSSocket; + cleartext: TLSSocket; + } + type SecureVersion = 'TLSv1.3' | 'TLSv1.2' | 'TLSv1.1' | 'TLSv1'; + interface SecureContextOptions { + /** + * Optionally override the trusted CA certificates. Default is to trust + * the well-known CAs curated by Mozilla. Mozilla's CAs are completely + * replaced when CAs are explicitly specified using this option. + */ + ca?: string | Buffer | Array | undefined; + /** + * Cert chains in PEM format. One cert chain should be provided per + * private key. Each cert chain should consist of the PEM formatted + * certificate for a provided private key, followed by the PEM + * formatted intermediate certificates (if any), in order, and not + * including the root CA (the root CA must be pre-known to the peer, + * see ca). When providing multiple cert chains, they do not have to + * be in the same order as their private keys in key. If the + * intermediate certificates are not provided, the peer will not be + * able to validate the certificate, and the handshake will fail. + */ + cert?: string | Buffer | Array | undefined; + /** + * Colon-separated list of supported signature algorithms. The list + * can contain digest algorithms (SHA256, MD5 etc.), public key + * algorithms (RSA-PSS, ECDSA etc.), combination of both (e.g + * 'RSA+SHA384') or TLS v1.3 scheme names (e.g. rsa_pss_pss_sha512). + */ + sigalgs?: string | undefined; + /** + * Cipher suite specification, replacing the default. For more + * information, see modifying the default cipher suite. Permitted + * ciphers can be obtained via tls.getCiphers(). Cipher names must be + * uppercased in order for OpenSSL to accept them. + */ + ciphers?: string | undefined; + /** + * Name of an OpenSSL engine which can provide the client certificate. + */ + clientCertEngine?: string | undefined; + /** + * PEM formatted CRLs (Certificate Revocation Lists). + */ + crl?: string | Buffer | Array | undefined; + /** + * Diffie Hellman parameters, required for Perfect Forward Secrecy. Use + * openssl dhparam to create the parameters. The key length must be + * greater than or equal to 1024 bits or else an error will be thrown. + * Although 1024 bits is permissible, use 2048 bits or larger for + * stronger security. If omitted or invalid, the parameters are + * silently discarded and DHE ciphers will not be available. + */ + dhparam?: string | Buffer | undefined; + /** + * A string describing a named curve or a colon separated list of curve + * NIDs or names, for example P-521:P-384:P-256, to use for ECDH key + * agreement. Set to auto to select the curve automatically. Use + * crypto.getCurves() to obtain a list of available curve names. On + * recent releases, openssl ecparam -list_curves will also display the + * name and description of each available elliptic curve. Default: + * tls.DEFAULT_ECDH_CURVE. + */ + ecdhCurve?: string | undefined; + /** + * Attempt to use the server's cipher suite preferences instead of the + * client's. When true, causes SSL_OP_CIPHER_SERVER_PREFERENCE to be + * set in secureOptions + */ + honorCipherOrder?: boolean | undefined; + /** + * Private keys in PEM format. PEM allows the option of private keys + * being encrypted. Encrypted keys will be decrypted with + * options.passphrase. Multiple keys using different algorithms can be + * provided either as an array of unencrypted key strings or buffers, + * or an array of objects in the form {pem: [, + * passphrase: ]}. The object form can only occur in an array. + * object.passphrase is optional. Encrypted keys will be decrypted with + * object.passphrase if provided, or options.passphrase if it is not. + */ + key?: string | Buffer | Array | undefined; + /** + * Name of an OpenSSL engine to get private key from. Should be used + * together with privateKeyIdentifier. + */ + privateKeyEngine?: string | undefined; + /** + * Identifier of a private key managed by an OpenSSL engine. Should be + * used together with privateKeyEngine. Should not be set together with + * key, because both options define a private key in different ways. + */ + privateKeyIdentifier?: string | undefined; + /** + * Optionally set the maximum TLS version to allow. One + * of `'TLSv1.3'`, `'TLSv1.2'`, `'TLSv1.1'`, or `'TLSv1'`. Cannot be specified along with the + * `secureProtocol` option, use one or the other. + * **Default:** `'TLSv1.3'`, unless changed using CLI options. Using + * `--tls-max-v1.2` sets the default to `'TLSv1.2'`. Using `--tls-max-v1.3` sets the default to + * `'TLSv1.3'`. If multiple of the options are provided, the highest maximum is used. + */ + maxVersion?: SecureVersion | undefined; + /** + * Optionally set the minimum TLS version to allow. One + * of `'TLSv1.3'`, `'TLSv1.2'`, `'TLSv1.1'`, or `'TLSv1'`. Cannot be specified along with the + * `secureProtocol` option, use one or the other. It is not recommended to use + * less than TLSv1.2, but it may be required for interoperability. + * **Default:** `'TLSv1.2'`, unless changed using CLI options. Using + * `--tls-v1.0` sets the default to `'TLSv1'`. Using `--tls-v1.1` sets the default to + * `'TLSv1.1'`. Using `--tls-min-v1.3` sets the default to + * 'TLSv1.3'. If multiple of the options are provided, the lowest minimum is used. + */ + minVersion?: SecureVersion | undefined; + /** + * Shared passphrase used for a single private key and/or a PFX. + */ + passphrase?: string | undefined; + /** + * PFX or PKCS12 encoded private key and certificate chain. pfx is an + * alternative to providing key and cert individually. PFX is usually + * encrypted, if it is, passphrase will be used to decrypt it. Multiple + * PFX can be provided either as an array of unencrypted PFX buffers, + * or an array of objects in the form {buf: [, + * passphrase: ]}. The object form can only occur in an array. + * object.passphrase is optional. Encrypted PFX will be decrypted with + * object.passphrase if provided, or options.passphrase if it is not. + */ + pfx?: string | Buffer | Array | undefined; + /** + * Optionally affect the OpenSSL protocol behavior, which is not + * usually necessary. This should be used carefully if at all! Value is + * a numeric bitmask of the SSL_OP_* options from OpenSSL Options + */ + secureOptions?: number | undefined; // Value is a numeric bitmask of the `SSL_OP_*` options + /** + * Legacy mechanism to select the TLS protocol version to use, it does + * not support independent control of the minimum and maximum version, + * and does not support limiting the protocol to TLSv1.3. Use + * minVersion and maxVersion instead. The possible values are listed as + * SSL_METHODS, use the function names as strings. For example, use + * 'TLSv1_1_method' to force TLS version 1.1, or 'TLS_method' to allow + * any TLS protocol version up to TLSv1.3. It is not recommended to use + * TLS versions less than 1.2, but it may be required for + * interoperability. Default: none, see minVersion. + */ + secureProtocol?: string | undefined; + /** + * Opaque identifier used by servers to ensure session state is not + * shared between applications. Unused by clients. + */ + sessionIdContext?: string | undefined; + /** + * 48-bytes of cryptographically strong pseudo-random data. + * See Session Resumption for more information. + */ + ticketKeys?: Buffer | undefined; + /** + * The number of seconds after which a TLS session created by the + * server will no longer be resumable. See Session Resumption for more + * information. Default: 300. + */ + sessionTimeout?: number | undefined; + } + interface SecureContext { + context: any; + } + /** + * Verifies the certificate `cert` is issued to `hostname`. + * + * Returns [Error](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error) object, populating it with `reason`, `host`, and `cert` on + * failure. On success, returns [undefined](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Undefined_type). + * + * This function is intended to be used in combination with the`checkServerIdentity` option that can be passed to {@link connect} and as + * such operates on a `certificate object`. For other purposes, consider using `x509.checkHost()` instead. + * + * This function can be overwritten by providing an alternative function as the`options.checkServerIdentity` option that is passed to `tls.connect()`. The + * overwriting function can call `tls.checkServerIdentity()` of course, to augment + * the checks done with additional verification. + * + * This function is only called if the certificate passed all other checks, such as + * being issued by trusted CA (`options.ca`). + * + * Earlier versions of Node.js incorrectly accepted certificates for a given`hostname` if a matching `uniformResourceIdentifier` subject alternative name + * was present (see [CVE-2021-44531](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44531)). Applications that wish to accept`uniformResourceIdentifier` subject alternative names can use + * a custom`options.checkServerIdentity` function that implements the desired behavior. + * @since v0.8.4 + * @param hostname The host name or IP address to verify the certificate against. + * @param cert A `certificate object` representing the peer's certificate. + */ + function checkServerIdentity(hostname: string, cert: PeerCertificate): Error | undefined; + /** + * Creates a new {@link Server}. The `secureConnectionListener`, if provided, is + * automatically set as a listener for the `'secureConnection'` event. + * + * The `ticketKeys` options is automatically shared between `cluster` module + * workers. + * + * The following illustrates a simple echo server: + * + * ```js + * const tls = require('tls'); + * const fs = require('fs'); + * + * const options = { + * key: fs.readFileSync('server-key.pem'), + * cert: fs.readFileSync('server-cert.pem'), + * + * // This is necessary only if using client certificate authentication. + * requestCert: true, + * + * // This is necessary only if the client uses a self-signed certificate. + * ca: [ fs.readFileSync('client-cert.pem') ] + * }; + * + * const server = tls.createServer(options, (socket) => { + * console.log('server connected', + * socket.authorized ? 'authorized' : 'unauthorized'); + * socket.write('welcome!\n'); + * socket.setEncoding('utf8'); + * socket.pipe(socket); + * }); + * server.listen(8000, () => { + * console.log('server bound'); + * }); + * ``` + * + * The server can be tested by connecting to it using the example client from {@link connect}. + * @since v0.3.2 + */ + function createServer(secureConnectionListener?: (socket: TLSSocket) => void): Server; + function createServer(options: TlsOptions, secureConnectionListener?: (socket: TLSSocket) => void): Server; + /** + * The `callback` function, if specified, will be added as a listener for the `'secureConnect'` event. + * + * `tls.connect()` returns a {@link TLSSocket} object. + * + * Unlike the `https` API, `tls.connect()` does not enable the + * SNI (Server Name Indication) extension by default, which may cause some + * servers to return an incorrect certificate or reject the connection + * altogether. To enable SNI, set the `servername` option in addition + * to `host`. + * + * The following illustrates a client for the echo server example from {@link createServer}: + * + * ```js + * // Assumes an echo server that is listening on port 8000. + * const tls = require('tls'); + * const fs = require('fs'); + * + * const options = { + * // Necessary only if the server requires client certificate authentication. + * key: fs.readFileSync('client-key.pem'), + * cert: fs.readFileSync('client-cert.pem'), + * + * // Necessary only if the server uses a self-signed certificate. + * ca: [ fs.readFileSync('server-cert.pem') ], + * + * // Necessary only if the server's cert isn't for "localhost". + * checkServerIdentity: () => { return null; }, + * }; + * + * const socket = tls.connect(8000, options, () => { + * console.log('client connected', + * socket.authorized ? 'authorized' : 'unauthorized'); + * process.stdin.pipe(socket); + * process.stdin.resume(); + * }); + * socket.setEncoding('utf8'); + * socket.on('data', (data) => { + * console.log(data); + * }); + * socket.on('end', () => { + * console.log('server ends connection'); + * }); + * ``` + * @since v0.11.3 + */ + function connect(options: ConnectionOptions, secureConnectListener?: () => void): TLSSocket; + function connect(port: number, host?: string, options?: ConnectionOptions, secureConnectListener?: () => void): TLSSocket; + function connect(port: number, options?: ConnectionOptions, secureConnectListener?: () => void): TLSSocket; + /** + * Creates a new secure pair object with two streams, one of which reads and writes + * the encrypted data and the other of which reads and writes the cleartext data. + * Generally, the encrypted stream is piped to/from an incoming encrypted data + * stream and the cleartext one is used as a replacement for the initial encrypted + * stream. + * + * `tls.createSecurePair()` returns a `tls.SecurePair` object with `cleartext` and`encrypted` stream properties. + * + * Using `cleartext` has the same API as {@link TLSSocket}. + * + * The `tls.createSecurePair()` method is now deprecated in favor of`tls.TLSSocket()`. For example, the code: + * + * ```js + * pair = tls.createSecurePair(// ... ); + * pair.encrypted.pipe(socket); + * socket.pipe(pair.encrypted); + * ``` + * + * can be replaced by: + * + * ```js + * secureSocket = tls.TLSSocket(socket, options); + * ``` + * + * where `secureSocket` has the same API as `pair.cleartext`. + * @since v0.3.2 + * @deprecated Since v0.11.3 - Use {@link TLSSocket} instead. + * @param context A secure context object as returned by `tls.createSecureContext()` + * @param isServer `true` to specify that this TLS connection should be opened as a server. + * @param requestCert `true` to specify whether a server should request a certificate from a connecting client. Only applies when `isServer` is `true`. + * @param rejectUnauthorized If not `false` a server automatically reject clients with invalid certificates. Only applies when `isServer` is `true`. + */ + function createSecurePair(context?: SecureContext, isServer?: boolean, requestCert?: boolean, rejectUnauthorized?: boolean): SecurePair; + /** + * {@link createServer} sets the default value of the `honorCipherOrder` option + * to `true`, other APIs that create secure contexts leave it unset. + * + * {@link createServer} uses a 128 bit truncated SHA1 hash value generated + * from `process.argv` as the default value of the `sessionIdContext` option, other + * APIs that create secure contexts have no default value. + * + * The `tls.createSecureContext()` method creates a `SecureContext` object. It is + * usable as an argument to several `tls` APIs, such as {@link createServer} and `server.addContext()`, but has no public methods. + * + * A key is _required_ for ciphers that use certificates. Either `key` or`pfx` can be used to provide it. + * + * If the `ca` option is not given, then Node.js will default to using [Mozilla's publicly trusted list of + * CAs](https://hg.mozilla.org/mozilla-central/raw-file/tip/security/nss/lib/ckfw/builtins/certdata.txt). + * @since v0.11.13 + */ + function createSecureContext(options?: SecureContextOptions): SecureContext; + /** + * Returns an array with the names of the supported TLS ciphers. The names are + * lower-case for historical reasons, but must be uppercased to be used in + * the `ciphers` option of {@link createSecureContext}. + * + * Not all supported ciphers are enabled by default. See `Modifying the default TLS cipher suite`. + * + * Cipher names that start with `'tls_'` are for TLSv1.3, all the others are for + * TLSv1.2 and below. + * + * ```js + * console.log(tls.getCiphers()); // ['aes128-gcm-sha256', 'aes128-sha', ...] + * ``` + * @since v0.10.2 + */ + function getCiphers(): string[]; + /** + * The default curve name to use for ECDH key agreement in a tls server. + * The default value is 'auto'. See tls.createSecureContext() for further + * information. + */ + let DEFAULT_ECDH_CURVE: string; + /** + * The default value of the maxVersion option of + * tls.createSecureContext(). It can be assigned any of the supported TLS + * protocol versions, 'TLSv1.3', 'TLSv1.2', 'TLSv1.1', or 'TLSv1'. Default: + * 'TLSv1.3', unless changed using CLI options. Using --tls-max-v1.2 sets + * the default to 'TLSv1.2'. Using --tls-max-v1.3 sets the default to + * 'TLSv1.3'. If multiple of the options are provided, the highest maximum + * is used. + */ + let DEFAULT_MAX_VERSION: SecureVersion; + /** + * The default value of the minVersion option of tls.createSecureContext(). + * It can be assigned any of the supported TLS protocol versions, + * 'TLSv1.3', 'TLSv1.2', 'TLSv1.1', or 'TLSv1'. Default: 'TLSv1.2', unless + * changed using CLI options. Using --tls-min-v1.0 sets the default to + * 'TLSv1'. Using --tls-min-v1.1 sets the default to 'TLSv1.1'. Using + * --tls-min-v1.3 sets the default to 'TLSv1.3'. If multiple of the options + * are provided, the lowest minimum is used. + */ + let DEFAULT_MIN_VERSION: SecureVersion; + /** + * An immutable array of strings representing the root certificates (in PEM + * format) used for verifying peer certificates. This is the default value + * of the ca option to tls.createSecureContext(). + */ + const rootCertificates: ReadonlyArray; +} +declare module 'node:tls' { + export * from 'tls'; +} diff --git a/node_modules/@types/node/ts4.8/trace_events.d.ts b/node_modules/@types/node/ts4.8/trace_events.d.ts new file mode 100644 index 000000000..d47aa9311 --- /dev/null +++ b/node_modules/@types/node/ts4.8/trace_events.d.ts @@ -0,0 +1,171 @@ +/** + * The `trace_events` module provides a mechanism to centralize tracing information + * generated by V8, Node.js core, and userspace code. + * + * Tracing can be enabled with the `--trace-event-categories` command-line flag + * or by using the `trace_events` module. The `--trace-event-categories` flag + * accepts a list of comma-separated category names. + * + * The available categories are: + * + * * `node`: An empty placeholder. + * * `node.async_hooks`: Enables capture of detailed `async_hooks` trace data. + * The `async_hooks` events have a unique `asyncId` and a special `triggerId` `triggerAsyncId` property. + * * `node.bootstrap`: Enables capture of Node.js bootstrap milestones. + * * `node.console`: Enables capture of `console.time()` and `console.count()`output. + * * `node.dns.native`: Enables capture of trace data for DNS queries. + * * `node.environment`: Enables capture of Node.js Environment milestones. + * * `node.fs.sync`: Enables capture of trace data for file system sync methods. + * * `node.perf`: Enables capture of `Performance API` measurements. + * * `node.perf.usertiming`: Enables capture of only Performance API User Timing + * measures and marks. + * * `node.perf.timerify`: Enables capture of only Performance API timerify + * measurements. + * * `node.promises.rejections`: Enables capture of trace data tracking the number + * of unhandled Promise rejections and handled-after-rejections. + * * `node.vm.script`: Enables capture of trace data for the `vm` module's`runInNewContext()`, `runInContext()`, and `runInThisContext()` methods. + * * `v8`: The `V8` events are GC, compiling, and execution related. + * + * By default the `node`, `node.async_hooks`, and `v8` categories are enabled. + * + * ```bash + * node --trace-event-categories v8,node,node.async_hooks server.js + * ``` + * + * Prior versions of Node.js required the use of the `--trace-events-enabled`flag to enable trace events. This requirement has been removed. However, the`--trace-events-enabled` flag _may_ still be + * used and will enable the`node`, `node.async_hooks`, and `v8` trace event categories by default. + * + * ```bash + * node --trace-events-enabled + * + * # is equivalent to + * + * node --trace-event-categories v8,node,node.async_hooks + * ``` + * + * Alternatively, trace events may be enabled using the `trace_events` module: + * + * ```js + * const trace_events = require('trace_events'); + * const tracing = trace_events.createTracing({ categories: ['node.perf'] }); + * tracing.enable(); // Enable trace event capture for the 'node.perf' category + * + * // do work + * + * tracing.disable(); // Disable trace event capture for the 'node.perf' category + * ``` + * + * Running Node.js with tracing enabled will produce log files that can be opened + * in the [`chrome://tracing`](https://www.chromium.org/developers/how-tos/trace-event-profiling-tool) tab of Chrome. + * + * The logging file is by default called `node_trace.${rotation}.log`, where`${rotation}` is an incrementing log-rotation id. The filepath pattern can + * be specified with `--trace-event-file-pattern` that accepts a template + * string that supports `${rotation}` and `${pid}`: + * + * ```bash + * node --trace-event-categories v8 --trace-event-file-pattern '${pid}-${rotation}.log' server.js + * ``` + * + * To guarantee that the log file is properly generated after signal events like`SIGINT`, `SIGTERM`, or `SIGBREAK`, make sure to have the appropriate handlers + * in your code, such as: + * + * ```js + * process.on('SIGINT', function onSigint() { + * console.info('Received SIGINT.'); + * process.exit(130); // Or applicable exit code depending on OS and signal + * }); + * ``` + * + * The tracing system uses the same time source + * as the one used by `process.hrtime()`. + * However the trace-event timestamps are expressed in microseconds, + * unlike `process.hrtime()` which returns nanoseconds. + * + * The features from this module are not available in `Worker` threads. + * @experimental + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/trace_events.js) + */ +declare module 'trace_events' { + /** + * The `Tracing` object is used to enable or disable tracing for sets of + * categories. Instances are created using the + * `trace_events.createTracing()` method. + * + * When created, the `Tracing` object is disabled. Calling the + * `tracing.enable()` method adds the categories to the set of enabled trace + * event categories. Calling `tracing.disable()` will remove the categories + * from the set of enabled trace event categories. + */ + interface Tracing { + /** + * A comma-separated list of the trace event categories covered by this + * `Tracing` object. + */ + readonly categories: string; + /** + * Disables this `Tracing` object. + * + * Only trace event categories _not_ covered by other enabled `Tracing` + * objects and _not_ specified by the `--trace-event-categories` flag + * will be disabled. + */ + disable(): void; + /** + * Enables this `Tracing` object for the set of categories covered by + * the `Tracing` object. + */ + enable(): void; + /** + * `true` only if the `Tracing` object has been enabled. + */ + readonly enabled: boolean; + } + interface CreateTracingOptions { + /** + * An array of trace category names. Values included in the array are + * coerced to a string when possible. An error will be thrown if the + * value cannot be coerced. + */ + categories: string[]; + } + /** + * Creates and returns a `Tracing` object for the given set of `categories`. + * + * ```js + * const trace_events = require('trace_events'); + * const categories = ['node.perf', 'node.async_hooks']; + * const tracing = trace_events.createTracing({ categories }); + * tracing.enable(); + * // do stuff + * tracing.disable(); + * ``` + * @since v10.0.0 + * @return . + */ + function createTracing(options: CreateTracingOptions): Tracing; + /** + * Returns a comma-separated list of all currently-enabled trace event + * categories. The current set of enabled trace event categories is determined + * by the _union_ of all currently-enabled `Tracing` objects and any categories + * enabled using the `--trace-event-categories` flag. + * + * Given the file `test.js` below, the command`node --trace-event-categories node.perf test.js` will print`'node.async_hooks,node.perf'` to the console. + * + * ```js + * const trace_events = require('trace_events'); + * const t1 = trace_events.createTracing({ categories: ['node.async_hooks'] }); + * const t2 = trace_events.createTracing({ categories: ['node.perf'] }); + * const t3 = trace_events.createTracing({ categories: ['v8'] }); + * + * t1.enable(); + * t2.enable(); + * + * console.log(trace_events.getEnabledCategories()); + * ``` + * @since v10.0.0 + */ + function getEnabledCategories(): string | undefined; +} +declare module 'node:trace_events' { + export * from 'trace_events'; +} diff --git a/node_modules/@types/node/ts4.8/tty.d.ts b/node_modules/@types/node/ts4.8/tty.d.ts new file mode 100644 index 000000000..6473f8db7 --- /dev/null +++ b/node_modules/@types/node/ts4.8/tty.d.ts @@ -0,0 +1,206 @@ +/** + * The `tty` module provides the `tty.ReadStream` and `tty.WriteStream` classes. + * In most cases, it will not be necessary or possible to use this module directly. + * However, it can be accessed using: + * + * ```js + * const tty = require('tty'); + * ``` + * + * When Node.js detects that it is being run with a text terminal ("TTY") + * attached, `process.stdin` will, by default, be initialized as an instance of`tty.ReadStream` and both `process.stdout` and `process.stderr` will, by + * default, be instances of `tty.WriteStream`. The preferred method of determining + * whether Node.js is being run within a TTY context is to check that the value of + * the `process.stdout.isTTY` property is `true`: + * + * ```console + * $ node -p -e "Boolean(process.stdout.isTTY)" + * true + * $ node -p -e "Boolean(process.stdout.isTTY)" | cat + * false + * ``` + * + * In most cases, there should be little to no reason for an application to + * manually create instances of the `tty.ReadStream` and `tty.WriteStream`classes. + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/tty.js) + */ +declare module 'tty' { + import * as net from 'node:net'; + /** + * The `tty.isatty()` method returns `true` if the given `fd` is associated with + * a TTY and `false` if it is not, including whenever `fd` is not a non-negative + * integer. + * @since v0.5.8 + * @param fd A numeric file descriptor + */ + function isatty(fd: number): boolean; + /** + * Represents the readable side of a TTY. In normal circumstances `process.stdin` will be the only `tty.ReadStream` instance in a Node.js + * process and there should be no reason to create additional instances. + * @since v0.5.8 + */ + class ReadStream extends net.Socket { + constructor(fd: number, options?: net.SocketConstructorOpts); + /** + * A `boolean` that is `true` if the TTY is currently configured to operate as a + * raw device. Defaults to `false`. + * @since v0.7.7 + */ + isRaw: boolean; + /** + * Allows configuration of `tty.ReadStream` so that it operates as a raw device. + * + * When in raw mode, input is always available character-by-character, not + * including modifiers. Additionally, all special processing of characters by the + * terminal is disabled, including echoing input + * characters. Ctrl+C will no longer cause a `SIGINT` when + * in this mode. + * @since v0.7.7 + * @param mode If `true`, configures the `tty.ReadStream` to operate as a raw device. If `false`, configures the `tty.ReadStream` to operate in its default mode. The `readStream.isRaw` + * property will be set to the resulting mode. + * @return The read stream instance. + */ + setRawMode(mode: boolean): this; + /** + * A `boolean` that is always `true` for `tty.ReadStream` instances. + * @since v0.5.8 + */ + isTTY: boolean; + } + /** + * -1 - to the left from cursor + * 0 - the entire line + * 1 - to the right from cursor + */ + type Direction = -1 | 0 | 1; + /** + * Represents the writable side of a TTY. In normal circumstances,`process.stdout` and `process.stderr` will be the only`tty.WriteStream` instances created for a Node.js process and there + * should be no reason to create additional instances. + * @since v0.5.8 + */ + class WriteStream extends net.Socket { + constructor(fd: number); + addListener(event: string, listener: (...args: any[]) => void): this; + addListener(event: 'resize', listener: () => void): this; + emit(event: string | symbol, ...args: any[]): boolean; + emit(event: 'resize'): boolean; + on(event: string, listener: (...args: any[]) => void): this; + on(event: 'resize', listener: () => void): this; + once(event: string, listener: (...args: any[]) => void): this; + once(event: 'resize', listener: () => void): this; + prependListener(event: string, listener: (...args: any[]) => void): this; + prependListener(event: 'resize', listener: () => void): this; + prependOnceListener(event: string, listener: (...args: any[]) => void): this; + prependOnceListener(event: 'resize', listener: () => void): this; + /** + * `writeStream.clearLine()` clears the current line of this `WriteStream` in a + * direction identified by `dir`. + * @since v0.7.7 + * @param callback Invoked once the operation completes. + * @return `false` if the stream wishes for the calling code to wait for the `'drain'` event to be emitted before continuing to write additional data; otherwise `true`. + */ + clearLine(dir: Direction, callback?: () => void): boolean; + /** + * `writeStream.clearScreenDown()` clears this `WriteStream` from the current + * cursor down. + * @since v0.7.7 + * @param callback Invoked once the operation completes. + * @return `false` if the stream wishes for the calling code to wait for the `'drain'` event to be emitted before continuing to write additional data; otherwise `true`. + */ + clearScreenDown(callback?: () => void): boolean; + /** + * `writeStream.cursorTo()` moves this `WriteStream`'s cursor to the specified + * position. + * @since v0.7.7 + * @param callback Invoked once the operation completes. + * @return `false` if the stream wishes for the calling code to wait for the `'drain'` event to be emitted before continuing to write additional data; otherwise `true`. + */ + cursorTo(x: number, y?: number, callback?: () => void): boolean; + cursorTo(x: number, callback: () => void): boolean; + /** + * `writeStream.moveCursor()` moves this `WriteStream`'s cursor _relative_ to its + * current position. + * @since v0.7.7 + * @param callback Invoked once the operation completes. + * @return `false` if the stream wishes for the calling code to wait for the `'drain'` event to be emitted before continuing to write additional data; otherwise `true`. + */ + moveCursor(dx: number, dy: number, callback?: () => void): boolean; + /** + * Returns: + * + * * `1` for 2, + * * `4` for 16, + * * `8` for 256, + * * `24` for 16,777,216 colors supported. + * + * Use this to determine what colors the terminal supports. Due to the nature of + * colors in terminals it is possible to either have false positives or false + * negatives. It depends on process information and the environment variables that + * may lie about what terminal is used. + * It is possible to pass in an `env` object to simulate the usage of a specific + * terminal. This can be useful to check how specific environment settings behave. + * + * To enforce a specific color support, use one of the below environment settings. + * + * * 2 colors: `FORCE_COLOR = 0` (Disables colors) + * * 16 colors: `FORCE_COLOR = 1` + * * 256 colors: `FORCE_COLOR = 2` + * * 16,777,216 colors: `FORCE_COLOR = 3` + * + * Disabling color support is also possible by using the `NO_COLOR` and`NODE_DISABLE_COLORS` environment variables. + * @since v9.9.0 + * @param [env=process.env] An object containing the environment variables to check. This enables simulating the usage of a specific terminal. + */ + getColorDepth(env?: object): number; + /** + * Returns `true` if the `writeStream` supports at least as many colors as provided + * in `count`. Minimum support is 2 (black and white). + * + * This has the same false positives and negatives as described in `writeStream.getColorDepth()`. + * + * ```js + * process.stdout.hasColors(); + * // Returns true or false depending on if `stdout` supports at least 16 colors. + * process.stdout.hasColors(256); + * // Returns true or false depending on if `stdout` supports at least 256 colors. + * process.stdout.hasColors({ TMUX: '1' }); + * // Returns true. + * process.stdout.hasColors(2 ** 24, { TMUX: '1' }); + * // Returns false (the environment setting pretends to support 2 ** 8 colors). + * ``` + * @since v11.13.0, v10.16.0 + * @param [count=16] The number of colors that are requested (minimum 2). + * @param [env=process.env] An object containing the environment variables to check. This enables simulating the usage of a specific terminal. + */ + hasColors(count?: number): boolean; + hasColors(env?: object): boolean; + hasColors(count: number, env?: object): boolean; + /** + * `writeStream.getWindowSize()` returns the size of the TTY + * corresponding to this `WriteStream`. The array is of the type`[numColumns, numRows]` where `numColumns` and `numRows` represent the number + * of columns and rows in the corresponding TTY. + * @since v0.7.7 + */ + getWindowSize(): [number, number]; + /** + * A `number` specifying the number of columns the TTY currently has. This property + * is updated whenever the `'resize'` event is emitted. + * @since v0.7.7 + */ + columns: number; + /** + * A `number` specifying the number of rows the TTY currently has. This property + * is updated whenever the `'resize'` event is emitted. + * @since v0.7.7 + */ + rows: number; + /** + * A `boolean` that is always `true`. + * @since v0.5.8 + */ + isTTY: boolean; + } +} +declare module 'node:tty' { + export * from 'tty'; +} diff --git a/node_modules/@types/node/ts4.8/url.d.ts b/node_modules/@types/node/ts4.8/url.d.ts new file mode 100644 index 000000000..18362c8aa --- /dev/null +++ b/node_modules/@types/node/ts4.8/url.d.ts @@ -0,0 +1,897 @@ +/** + * The `url` module provides utilities for URL resolution and parsing. It can be + * accessed using: + * + * ```js + * import url from 'url'; + * ``` + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/url.js) + */ +declare module 'url' { + import { Blob } from 'node:buffer'; + import { ClientRequestArgs } from 'node:http'; + import { ParsedUrlQuery, ParsedUrlQueryInput } from 'node:querystring'; + // Input to `url.format` + interface UrlObject { + auth?: string | null | undefined; + hash?: string | null | undefined; + host?: string | null | undefined; + hostname?: string | null | undefined; + href?: string | null | undefined; + pathname?: string | null | undefined; + protocol?: string | null | undefined; + search?: string | null | undefined; + slashes?: boolean | null | undefined; + port?: string | number | null | undefined; + query?: string | null | ParsedUrlQueryInput | undefined; + } + // Output of `url.parse` + interface Url { + auth: string | null; + hash: string | null; + host: string | null; + hostname: string | null; + href: string; + path: string | null; + pathname: string | null; + protocol: string | null; + search: string | null; + slashes: boolean | null; + port: string | null; + query: string | null | ParsedUrlQuery; + } + interface UrlWithParsedQuery extends Url { + query: ParsedUrlQuery; + } + interface UrlWithStringQuery extends Url { + query: string | null; + } + /** + * The `url.parse()` method takes a URL string, parses it, and returns a URL + * object. + * + * A `TypeError` is thrown if `urlString` is not a string. + * + * A `URIError` is thrown if the `auth` property is present but cannot be decoded. + * + * Use of the legacy `url.parse()` method is discouraged. Users should + * use the WHATWG `URL` API. Because the `url.parse()` method uses a + * lenient, non-standard algorithm for parsing URL strings, security + * issues can be introduced. Specifically, issues with [host name spoofing](https://hackerone.com/reports/678487) and + * incorrect handling of usernames and passwords have been identified. + * + * Deprecation of this API has been shelved for now primarily due to the the + * inability of the [WHATWG API to parse relative URLs](https://github.com/nodejs/node/issues/12682#issuecomment-1154492373). + * [Discussions are ongoing](https://github.com/whatwg/url/issues/531) for the best way to resolve this. + * + * @since v0.1.25 + * @param urlString The URL string to parse. + * @param [parseQueryString=false] If `true`, the `query` property will always be set to an object returned by the {@link querystring} module's `parse()` method. If `false`, the `query` property + * on the returned URL object will be an unparsed, undecoded string. + * @param [slashesDenoteHost=false] If `true`, the first token after the literal string `//` and preceding the next `/` will be interpreted as the `host`. For instance, given `//foo/bar`, the + * result would be `{host: 'foo', pathname: '/bar'}` rather than `{pathname: '//foo/bar'}`. + */ + function parse(urlString: string): UrlWithStringQuery; + function parse(urlString: string, parseQueryString: false | undefined, slashesDenoteHost?: boolean): UrlWithStringQuery; + function parse(urlString: string, parseQueryString: true, slashesDenoteHost?: boolean): UrlWithParsedQuery; + function parse(urlString: string, parseQueryString: boolean, slashesDenoteHost?: boolean): Url; + /** + * The `url.format()` method returns a formatted URL string derived from`urlObject`. + * + * ```js + * const url = require('url'); + * url.format({ + * protocol: 'https', + * hostname: 'example.com', + * pathname: '/some/path', + * query: { + * page: 1, + * format: 'json' + * } + * }); + * + * // => 'https://example.com/some/path?page=1&format=json' + * ``` + * + * If `urlObject` is not an object or a string, `url.format()` will throw a `TypeError`. + * + * The formatting process operates as follows: + * + * * A new empty string `result` is created. + * * If `urlObject.protocol` is a string, it is appended as-is to `result`. + * * Otherwise, if `urlObject.protocol` is not `undefined` and is not a string, an `Error` is thrown. + * * For all string values of `urlObject.protocol` that _do not end_ with an ASCII + * colon (`:`) character, the literal string `:` will be appended to `result`. + * * If either of the following conditions is true, then the literal string `//`will be appended to `result`: + * * `urlObject.slashes` property is true; + * * `urlObject.protocol` begins with `http`, `https`, `ftp`, `gopher`, or`file`; + * * If the value of the `urlObject.auth` property is truthy, and either`urlObject.host` or `urlObject.hostname` are not `undefined`, the value of`urlObject.auth` will be coerced into a string + * and appended to `result`followed by the literal string `@`. + * * If the `urlObject.host` property is `undefined` then: + * * If the `urlObject.hostname` is a string, it is appended to `result`. + * * Otherwise, if `urlObject.hostname` is not `undefined` and is not a string, + * an `Error` is thrown. + * * If the `urlObject.port` property value is truthy, and `urlObject.hostname`is not `undefined`: + * * The literal string `:` is appended to `result`, and + * * The value of `urlObject.port` is coerced to a string and appended to`result`. + * * Otherwise, if the `urlObject.host` property value is truthy, the value of`urlObject.host` is coerced to a string and appended to `result`. + * * If the `urlObject.pathname` property is a string that is not an empty string: + * * If the `urlObject.pathname`_does not start_ with an ASCII forward slash + * (`/`), then the literal string `'/'` is appended to `result`. + * * The value of `urlObject.pathname` is appended to `result`. + * * Otherwise, if `urlObject.pathname` is not `undefined` and is not a string, an `Error` is thrown. + * * If the `urlObject.search` property is `undefined` and if the `urlObject.query`property is an `Object`, the literal string `?` is appended to `result`followed by the output of calling the + * `querystring` module's `stringify()`method passing the value of `urlObject.query`. + * * Otherwise, if `urlObject.search` is a string: + * * If the value of `urlObject.search`_does not start_ with the ASCII question + * mark (`?`) character, the literal string `?` is appended to `result`. + * * The value of `urlObject.search` is appended to `result`. + * * Otherwise, if `urlObject.search` is not `undefined` and is not a string, an `Error` is thrown. + * * If the `urlObject.hash` property is a string: + * * If the value of `urlObject.hash`_does not start_ with the ASCII hash (`#`) + * character, the literal string `#` is appended to `result`. + * * The value of `urlObject.hash` is appended to `result`. + * * Otherwise, if the `urlObject.hash` property is not `undefined` and is not a + * string, an `Error` is thrown. + * * `result` is returned. + * @since v0.1.25 + * @deprecated Legacy: Use the WHATWG URL API instead. + * @param urlObject A URL object (as returned by `url.parse()` or constructed otherwise). If a string, it is converted to an object by passing it to `url.parse()`. + */ + function format(urlObject: URL, options?: URLFormatOptions): string; + /** + * The `url.format()` method returns a formatted URL string derived from`urlObject`. + * + * ```js + * const url = require('url'); + * url.format({ + * protocol: 'https', + * hostname: 'example.com', + * pathname: '/some/path', + * query: { + * page: 1, + * format: 'json' + * } + * }); + * + * // => 'https://example.com/some/path?page=1&format=json' + * ``` + * + * If `urlObject` is not an object or a string, `url.format()` will throw a `TypeError`. + * + * The formatting process operates as follows: + * + * * A new empty string `result` is created. + * * If `urlObject.protocol` is a string, it is appended as-is to `result`. + * * Otherwise, if `urlObject.protocol` is not `undefined` and is not a string, an `Error` is thrown. + * * For all string values of `urlObject.protocol` that _do not end_ with an ASCII + * colon (`:`) character, the literal string `:` will be appended to `result`. + * * If either of the following conditions is true, then the literal string `//`will be appended to `result`: + * * `urlObject.slashes` property is true; + * * `urlObject.protocol` begins with `http`, `https`, `ftp`, `gopher`, or`file`; + * * If the value of the `urlObject.auth` property is truthy, and either`urlObject.host` or `urlObject.hostname` are not `undefined`, the value of`urlObject.auth` will be coerced into a string + * and appended to `result`followed by the literal string `@`. + * * If the `urlObject.host` property is `undefined` then: + * * If the `urlObject.hostname` is a string, it is appended to `result`. + * * Otherwise, if `urlObject.hostname` is not `undefined` and is not a string, + * an `Error` is thrown. + * * If the `urlObject.port` property value is truthy, and `urlObject.hostname`is not `undefined`: + * * The literal string `:` is appended to `result`, and + * * The value of `urlObject.port` is coerced to a string and appended to`result`. + * * Otherwise, if the `urlObject.host` property value is truthy, the value of`urlObject.host` is coerced to a string and appended to `result`. + * * If the `urlObject.pathname` property is a string that is not an empty string: + * * If the `urlObject.pathname`_does not start_ with an ASCII forward slash + * (`/`), then the literal string `'/'` is appended to `result`. + * * The value of `urlObject.pathname` is appended to `result`. + * * Otherwise, if `urlObject.pathname` is not `undefined` and is not a string, an `Error` is thrown. + * * If the `urlObject.search` property is `undefined` and if the `urlObject.query`property is an `Object`, the literal string `?` is appended to `result`followed by the output of calling the + * `querystring` module's `stringify()`method passing the value of `urlObject.query`. + * * Otherwise, if `urlObject.search` is a string: + * * If the value of `urlObject.search`_does not start_ with the ASCII question + * mark (`?`) character, the literal string `?` is appended to `result`. + * * The value of `urlObject.search` is appended to `result`. + * * Otherwise, if `urlObject.search` is not `undefined` and is not a string, an `Error` is thrown. + * * If the `urlObject.hash` property is a string: + * * If the value of `urlObject.hash`_does not start_ with the ASCII hash (`#`) + * character, the literal string `#` is appended to `result`. + * * The value of `urlObject.hash` is appended to `result`. + * * Otherwise, if the `urlObject.hash` property is not `undefined` and is not a + * string, an `Error` is thrown. + * * `result` is returned. + * @since v0.1.25 + * @deprecated Legacy: Use the WHATWG URL API instead. + * @param urlObject A URL object (as returned by `url.parse()` or constructed otherwise). If a string, it is converted to an object by passing it to `url.parse()`. + */ + function format(urlObject: UrlObject | string): string; + /** + * The `url.resolve()` method resolves a target URL relative to a base URL in a + * manner similar to that of a web browser resolving an anchor tag. + * + * ```js + * const url = require('url'); + * url.resolve('/one/two/three', 'four'); // '/one/two/four' + * url.resolve('http://example.com/', '/one'); // 'http://example.com/one' + * url.resolve('http://example.com/one', '/two'); // 'http://example.com/two' + * ``` + * + * To achieve the same result using the WHATWG URL API: + * + * ```js + * function resolve(from, to) { + * const resolvedUrl = new URL(to, new URL(from, 'resolve://')); + * if (resolvedUrl.protocol === 'resolve:') { + * // `from` is a relative URL. + * const { pathname, search, hash } = resolvedUrl; + * return pathname + search + hash; + * } + * return resolvedUrl.toString(); + * } + * + * resolve('/one/two/three', 'four'); // '/one/two/four' + * resolve('http://example.com/', '/one'); // 'http://example.com/one' + * resolve('http://example.com/one', '/two'); // 'http://example.com/two' + * ``` + * @since v0.1.25 + * @deprecated Legacy: Use the WHATWG URL API instead. + * @param from The base URL to use if `to` is a relative URL. + * @param to The target URL to resolve. + */ + function resolve(from: string, to: string): string; + /** + * Returns the [Punycode](https://tools.ietf.org/html/rfc5891#section-4.4) ASCII serialization of the `domain`. If `domain` is an + * invalid domain, the empty string is returned. + * + * It performs the inverse operation to {@link domainToUnicode}. + * + * This feature is only available if the `node` executable was compiled with `ICU` enabled. If not, the domain names are passed through unchanged. + * + * ```js + * import url from 'url'; + * + * console.log(url.domainToASCII('español.com')); + * // Prints xn--espaol-zwa.com + * console.log(url.domainToASCII('中文.com')); + * // Prints xn--fiq228c.com + * console.log(url.domainToASCII('xn--iñvalid.com')); + * // Prints an empty string + * ``` + * @since v7.4.0, v6.13.0 + */ + function domainToASCII(domain: string): string; + /** + * Returns the Unicode serialization of the `domain`. If `domain` is an invalid + * domain, the empty string is returned. + * + * It performs the inverse operation to {@link domainToASCII}. + * + * This feature is only available if the `node` executable was compiled with `ICU` enabled. If not, the domain names are passed through unchanged. + * + * ```js + * import url from 'url'; + * + * console.log(url.domainToUnicode('xn--espaol-zwa.com')); + * // Prints español.com + * console.log(url.domainToUnicode('xn--fiq228c.com')); + * // Prints 中文.com + * console.log(url.domainToUnicode('xn--iñvalid.com')); + * // Prints an empty string + * ``` + * @since v7.4.0, v6.13.0 + */ + function domainToUnicode(domain: string): string; + /** + * This function ensures the correct decodings of percent-encoded characters as + * well as ensuring a cross-platform valid absolute path string. + * + * ```js + * import { fileURLToPath } from 'url'; + * + * const __filename = fileURLToPath(import.meta.url); + * + * new URL('file:///C:/path/').pathname; // Incorrect: /C:/path/ + * fileURLToPath('file:///C:/path/'); // Correct: C:\path\ (Windows) + * + * new URL('file://nas/foo.txt').pathname; // Incorrect: /foo.txt + * fileURLToPath('file://nas/foo.txt'); // Correct: \\nas\foo.txt (Windows) + * + * new URL('file:///你好.txt').pathname; // Incorrect: /%E4%BD%A0%E5%A5%BD.txt + * fileURLToPath('file:///你好.txt'); // Correct: /你好.txt (POSIX) + * + * new URL('file:///hello world').pathname; // Incorrect: /hello%20world + * fileURLToPath('file:///hello world'); // Correct: /hello world (POSIX) + * ``` + * @since v10.12.0 + * @param url The file URL string or URL object to convert to a path. + * @return The fully-resolved platform-specific Node.js file path. + */ + function fileURLToPath(url: string | URL): string; + /** + * This function ensures that `path` is resolved absolutely, and that the URL + * control characters are correctly encoded when converting into a File URL. + * + * ```js + * import { pathToFileURL } from 'url'; + * + * new URL('/foo#1', 'file:'); // Incorrect: file:///foo#1 + * pathToFileURL('/foo#1'); // Correct: file:///foo%231 (POSIX) + * + * new URL('/some/path%.c', 'file:'); // Incorrect: file:///some/path%.c + * pathToFileURL('/some/path%.c'); // Correct: file:///some/path%25.c (POSIX) + * ``` + * @since v10.12.0 + * @param path The path to convert to a File URL. + * @return The file URL object. + */ + function pathToFileURL(path: string): URL; + /** + * This utility function converts a URL object into an ordinary options object as + * expected by the `http.request()` and `https.request()` APIs. + * + * ```js + * import { urlToHttpOptions } from 'url'; + * const myURL = new URL('https://a:b@測試?abc#foo'); + * + * console.log(urlToHttpOptions(myURL)); + * /* + * { + * protocol: 'https:', + * hostname: 'xn--g6w251d', + * hash: '#foo', + * search: '?abc', + * pathname: '/', + * path: '/?abc', + * href: 'https://a:b@xn--g6w251d/?abc#foo', + * auth: 'a:b' + * } + * + * ``` + * @since v15.7.0, v14.18.0 + * @param url The `WHATWG URL` object to convert to an options object. + * @return Options object + */ + function urlToHttpOptions(url: URL): ClientRequestArgs; + interface URLFormatOptions { + auth?: boolean | undefined; + fragment?: boolean | undefined; + search?: boolean | undefined; + unicode?: boolean | undefined; + } + /** + * Browser-compatible `URL` class, implemented by following the WHATWG URL + * Standard. [Examples of parsed URLs](https://url.spec.whatwg.org/#example-url-parsing) may be found in the Standard itself. + * The `URL` class is also available on the global object. + * + * In accordance with browser conventions, all properties of `URL` objects + * are implemented as getters and setters on the class prototype, rather than as + * data properties on the object itself. Thus, unlike `legacy urlObject` s, + * using the `delete` keyword on any properties of `URL` objects (e.g. `delete myURL.protocol`, `delete myURL.pathname`, etc) has no effect but will still + * return `true`. + * @since v7.0.0, v6.13.0 + */ + class URL { + /** + * Creates a `'blob:nodedata:...'` URL string that represents the given `Blob` object and can be used to retrieve the `Blob` later. + * + * ```js + * const { + * Blob, + * resolveObjectURL, + * } = require('buffer'); + * + * const blob = new Blob(['hello']); + * const id = URL.createObjectURL(blob); + * + * // later... + * + * const otherBlob = resolveObjectURL(id); + * console.log(otherBlob.size); + * ``` + * + * The data stored by the registered `Blob` will be retained in memory until`URL.revokeObjectURL()` is called to remove it. + * + * `Blob` objects are registered within the current thread. If using Worker + * Threads, `Blob` objects registered within one Worker will not be available + * to other workers or the main thread. + * @since v16.7.0 + * @experimental + */ + static createObjectURL(blob: Blob): string; + /** + * Removes the stored `Blob` identified by the given ID. Attempting to revoke a + * ID that isn’t registered will silently fail. + * @since v16.7.0 + * @experimental + * @param id A `'blob:nodedata:...` URL string returned by a prior call to `URL.createObjectURL()`. + */ + static revokeObjectURL(objectUrl: string): void; + constructor(input: string, base?: string | URL); + /** + * Gets and sets the fragment portion of the URL. + * + * ```js + * const myURL = new URL('https://example.org/foo#bar'); + * console.log(myURL.hash); + * // Prints #bar + * + * myURL.hash = 'baz'; + * console.log(myURL.href); + * // Prints https://example.org/foo#baz + * ``` + * + * Invalid URL characters included in the value assigned to the `hash` property + * are `percent-encoded`. The selection of which characters to + * percent-encode may vary somewhat from what the {@link parse} and {@link format} methods would produce. + */ + hash: string; + /** + * Gets and sets the host portion of the URL. + * + * ```js + * const myURL = new URL('https://example.org:81/foo'); + * console.log(myURL.host); + * // Prints example.org:81 + * + * myURL.host = 'example.com:82'; + * console.log(myURL.href); + * // Prints https://example.com:82/foo + * ``` + * + * Invalid host values assigned to the `host` property are ignored. + */ + host: string; + /** + * Gets and sets the host name portion of the URL. The key difference between`url.host` and `url.hostname` is that `url.hostname` does _not_ include the + * port. + * + * ```js + * const myURL = new URL('https://example.org:81/foo'); + * console.log(myURL.hostname); + * // Prints example.org + * + * // Setting the hostname does not change the port + * myURL.hostname = 'example.com:82'; + * console.log(myURL.href); + * // Prints https://example.com:81/foo + * + * // Use myURL.host to change the hostname and port + * myURL.host = 'example.org:82'; + * console.log(myURL.href); + * // Prints https://example.org:82/foo + * ``` + * + * Invalid host name values assigned to the `hostname` property are ignored. + */ + hostname: string; + /** + * Gets and sets the serialized URL. + * + * ```js + * const myURL = new URL('https://example.org/foo'); + * console.log(myURL.href); + * // Prints https://example.org/foo + * + * myURL.href = 'https://example.com/bar'; + * console.log(myURL.href); + * // Prints https://example.com/bar + * ``` + * + * Getting the value of the `href` property is equivalent to calling {@link toString}. + * + * Setting the value of this property to a new value is equivalent to creating a + * new `URL` object using `new URL(value)`. Each of the `URL`object's properties will be modified. + * + * If the value assigned to the `href` property is not a valid URL, a `TypeError`will be thrown. + */ + href: string; + /** + * Gets the read-only serialization of the URL's origin. + * + * ```js + * const myURL = new URL('https://example.org/foo/bar?baz'); + * console.log(myURL.origin); + * // Prints https://example.org + * ``` + * + * ```js + * const idnURL = new URL('https://測試'); + * console.log(idnURL.origin); + * // Prints https://xn--g6w251d + * + * console.log(idnURL.hostname); + * // Prints xn--g6w251d + * ``` + */ + readonly origin: string; + /** + * Gets and sets the password portion of the URL. + * + * ```js + * const myURL = new URL('https://abc:xyz@example.com'); + * console.log(myURL.password); + * // Prints xyz + * + * myURL.password = '123'; + * console.log(myURL.href); + * // Prints https://abc:123@example.com + * ``` + * + * Invalid URL characters included in the value assigned to the `password` property + * are `percent-encoded`. The selection of which characters to + * percent-encode may vary somewhat from what the {@link parse} and {@link format} methods would produce. + */ + password: string; + /** + * Gets and sets the path portion of the URL. + * + * ```js + * const myURL = new URL('https://example.org/abc/xyz?123'); + * console.log(myURL.pathname); + * // Prints /abc/xyz + * + * myURL.pathname = '/abcdef'; + * console.log(myURL.href); + * // Prints https://example.org/abcdef?123 + * ``` + * + * Invalid URL characters included in the value assigned to the `pathname`property are `percent-encoded`. The selection of which characters + * to percent-encode may vary somewhat from what the {@link parse} and {@link format} methods would produce. + */ + pathname: string; + /** + * Gets and sets the port portion of the URL. + * + * The port value may be a number or a string containing a number in the range`0` to `65535` (inclusive). Setting the value to the default port of the`URL` objects given `protocol` will + * result in the `port` value becoming + * the empty string (`''`). + * + * The port value can be an empty string in which case the port depends on + * the protocol/scheme: + * + * + * + * Upon assigning a value to the port, the value will first be converted to a + * string using `.toString()`. + * + * If that string is invalid but it begins with a number, the leading number is + * assigned to `port`. + * If the number lies outside the range denoted above, it is ignored. + * + * ```js + * const myURL = new URL('https://example.org:8888'); + * console.log(myURL.port); + * // Prints 8888 + * + * // Default ports are automatically transformed to the empty string + * // (HTTPS protocol's default port is 443) + * myURL.port = '443'; + * console.log(myURL.port); + * // Prints the empty string + * console.log(myURL.href); + * // Prints https://example.org/ + * + * myURL.port = 1234; + * console.log(myURL.port); + * // Prints 1234 + * console.log(myURL.href); + * // Prints https://example.org:1234/ + * + * // Completely invalid port strings are ignored + * myURL.port = 'abcd'; + * console.log(myURL.port); + * // Prints 1234 + * + * // Leading numbers are treated as a port number + * myURL.port = '5678abcd'; + * console.log(myURL.port); + * // Prints 5678 + * + * // Non-integers are truncated + * myURL.port = 1234.5678; + * console.log(myURL.port); + * // Prints 1234 + * + * // Out-of-range numbers which are not represented in scientific notation + * // will be ignored. + * myURL.port = 1e10; // 10000000000, will be range-checked as described below + * console.log(myURL.port); + * // Prints 1234 + * ``` + * + * Numbers which contain a decimal point, + * such as floating-point numbers or numbers in scientific notation, + * are not an exception to this rule. + * Leading numbers up to the decimal point will be set as the URL's port, + * assuming they are valid: + * + * ```js + * myURL.port = 4.567e21; + * console.log(myURL.port); + * // Prints 4 (because it is the leading number in the string '4.567e21') + * ``` + */ + port: string; + /** + * Gets and sets the protocol portion of the URL. + * + * ```js + * const myURL = new URL('https://example.org'); + * console.log(myURL.protocol); + * // Prints https: + * + * myURL.protocol = 'ftp'; + * console.log(myURL.href); + * // Prints ftp://example.org/ + * ``` + * + * Invalid URL protocol values assigned to the `protocol` property are ignored. + */ + protocol: string; + /** + * Gets and sets the serialized query portion of the URL. + * + * ```js + * const myURL = new URL('https://example.org/abc?123'); + * console.log(myURL.search); + * // Prints ?123 + * + * myURL.search = 'abc=xyz'; + * console.log(myURL.href); + * // Prints https://example.org/abc?abc=xyz + * ``` + * + * Any invalid URL characters appearing in the value assigned the `search`property will be `percent-encoded`. The selection of which + * characters to percent-encode may vary somewhat from what the {@link parse} and {@link format} methods would produce. + */ + search: string; + /** + * Gets the `URLSearchParams` object representing the query parameters of the + * URL. This property is read-only but the `URLSearchParams` object it provides + * can be used to mutate the URL instance; to replace the entirety of query + * parameters of the URL, use the {@link search} setter. See `URLSearchParams` documentation for details. + * + * Use care when using `.searchParams` to modify the `URL` because, + * per the WHATWG specification, the `URLSearchParams` object uses + * different rules to determine which characters to percent-encode. For + * instance, the `URL` object will not percent encode the ASCII tilde (`~`) + * character, while `URLSearchParams` will always encode it: + * + * ```js + * const myUrl = new URL('https://example.org/abc?foo=~bar'); + * + * console.log(myUrl.search); // prints ?foo=~bar + * + * // Modify the URL via searchParams... + * myUrl.searchParams.sort(); + * + * console.log(myUrl.search); // prints ?foo=%7Ebar + * ``` + */ + readonly searchParams: URLSearchParams; + /** + * Gets and sets the username portion of the URL. + * + * ```js + * const myURL = new URL('https://abc:xyz@example.com'); + * console.log(myURL.username); + * // Prints abc + * + * myURL.username = '123'; + * console.log(myURL.href); + * // Prints https://123:xyz@example.com/ + * ``` + * + * Any invalid URL characters appearing in the value assigned the `username`property will be `percent-encoded`. The selection of which + * characters to percent-encode may vary somewhat from what the {@link parse} and {@link format} methods would produce. + */ + username: string; + /** + * The `toString()` method on the `URL` object returns the serialized URL. The + * value returned is equivalent to that of {@link href} and {@link toJSON}. + */ + toString(): string; + /** + * The `toJSON()` method on the `URL` object returns the serialized URL. The + * value returned is equivalent to that of {@link href} and {@link toString}. + * + * This method is automatically called when an `URL` object is serialized + * with [`JSON.stringify()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify). + * + * ```js + * const myURLs = [ + * new URL('https://www.example.com'), + * new URL('https://test.example.org'), + * ]; + * console.log(JSON.stringify(myURLs)); + * // Prints ["https://www.example.com/","https://test.example.org/"] + * ``` + */ + toJSON(): string; + } + /** + * The `URLSearchParams` API provides read and write access to the query of a`URL`. The `URLSearchParams` class can also be used standalone with one of the + * four following constructors. + * The `URLSearchParams` class is also available on the global object. + * + * The WHATWG `URLSearchParams` interface and the `querystring` module have + * similar purpose, but the purpose of the `querystring` module is more + * general, as it allows the customization of delimiter characters (`&` and `=`). + * On the other hand, this API is designed purely for URL query strings. + * + * ```js + * const myURL = new URL('https://example.org/?abc=123'); + * console.log(myURL.searchParams.get('abc')); + * // Prints 123 + * + * myURL.searchParams.append('abc', 'xyz'); + * console.log(myURL.href); + * // Prints https://example.org/?abc=123&abc=xyz + * + * myURL.searchParams.delete('abc'); + * myURL.searchParams.set('a', 'b'); + * console.log(myURL.href); + * // Prints https://example.org/?a=b + * + * const newSearchParams = new URLSearchParams(myURL.searchParams); + * // The above is equivalent to + * // const newSearchParams = new URLSearchParams(myURL.search); + * + * newSearchParams.append('a', 'c'); + * console.log(myURL.href); + * // Prints https://example.org/?a=b + * console.log(newSearchParams.toString()); + * // Prints a=b&a=c + * + * // newSearchParams.toString() is implicitly called + * myURL.search = newSearchParams; + * console.log(myURL.href); + * // Prints https://example.org/?a=b&a=c + * newSearchParams.delete('a'); + * console.log(myURL.href); + * // Prints https://example.org/?a=b&a=c + * ``` + * @since v7.5.0, v6.13.0 + */ + class URLSearchParams implements Iterable<[string, string]> { + constructor(init?: URLSearchParams | string | Record> | Iterable<[string, string]> | ReadonlyArray<[string, string]>); + /** + * Append a new name-value pair to the query string. + */ + append(name: string, value: string): void; + /** + * Remove all name-value pairs whose name is `name`. + */ + delete(name: string): void; + /** + * Returns an ES6 `Iterator` over each of the name-value pairs in the query. + * Each item of the iterator is a JavaScript `Array`. The first item of the `Array`is the `name`, the second item of the `Array` is the `value`. + * + * Alias for `urlSearchParams[@@iterator]()`. + */ + entries(): IterableIterator<[string, string]>; + /** + * Iterates over each name-value pair in the query and invokes the given function. + * + * ```js + * const myURL = new URL('https://example.org/?a=b&c=d'); + * myURL.searchParams.forEach((value, name, searchParams) => { + * console.log(name, value, myURL.searchParams === searchParams); + * }); + * // Prints: + * // a b true + * // c d true + * ``` + * @param fn Invoked for each name-value pair in the query + * @param thisArg To be used as `this` value for when `fn` is called + */ + forEach(callback: (this: TThis, value: string, name: string, searchParams: URLSearchParams) => void, thisArg?: TThis): void; + /** + * Returns the value of the first name-value pair whose name is `name`. If there + * are no such pairs, `null` is returned. + * @return or `null` if there is no name-value pair with the given `name`. + */ + get(name: string): string | null; + /** + * Returns the values of all name-value pairs whose name is `name`. If there are + * no such pairs, an empty array is returned. + */ + getAll(name: string): string[]; + /** + * Returns `true` if there is at least one name-value pair whose name is `name`. + */ + has(name: string): boolean; + /** + * Returns an ES6 `Iterator` over the names of each name-value pair. + * + * ```js + * const params = new URLSearchParams('foo=bar&foo=baz'); + * for (const name of params.keys()) { + * console.log(name); + * } + * // Prints: + * // foo + * // foo + * ``` + */ + keys(): IterableIterator; + /** + * Sets the value in the `URLSearchParams` object associated with `name` to`value`. If there are any pre-existing name-value pairs whose names are `name`, + * set the first such pair's value to `value` and remove all others. If not, + * append the name-value pair to the query string. + * + * ```js + * const params = new URLSearchParams(); + * params.append('foo', 'bar'); + * params.append('foo', 'baz'); + * params.append('abc', 'def'); + * console.log(params.toString()); + * // Prints foo=bar&foo=baz&abc=def + * + * params.set('foo', 'def'); + * params.set('xyz', 'opq'); + * console.log(params.toString()); + * // Prints foo=def&abc=def&xyz=opq + * ``` + */ + set(name: string, value: string): void; + /** + * Sort all existing name-value pairs in-place by their names. Sorting is done + * with a [stable sorting algorithm](https://en.wikipedia.org/wiki/Sorting_algorithm#Stability), so relative order between name-value pairs + * with the same name is preserved. + * + * This method can be used, in particular, to increase cache hits. + * + * ```js + * const params = new URLSearchParams('query[]=abc&type=search&query[]=123'); + * params.sort(); + * console.log(params.toString()); + * // Prints query%5B%5D=abc&query%5B%5D=123&type=search + * ``` + * @since v7.7.0, v6.13.0 + */ + sort(): void; + /** + * Returns the search parameters serialized as a string, with characters + * percent-encoded where necessary. + */ + toString(): string; + /** + * Returns an ES6 `Iterator` over the values of each name-value pair. + */ + values(): IterableIterator; + [Symbol.iterator](): IterableIterator<[string, string]>; + } + import { URL as _URL, URLSearchParams as _URLSearchParams } from 'url'; + global { + interface URLSearchParams extends _URLSearchParams {} + interface URL extends _URL {} + interface Global { + URL: typeof _URL; + URLSearchParams: typeof _URLSearchParams; + } + /** + * `URL` class is a global reference for `require('url').URL` + * https://nodejs.org/api/url.html#the-whatwg-url-api + * @since v10.0.0 + */ + var URL: typeof globalThis extends { + onmessage: any; + URL: infer URL; + } + ? URL + : typeof _URL; + /** + * `URLSearchParams` class is a global reference for `require('url').URLSearchParams` + * https://nodejs.org/api/url.html#class-urlsearchparams + * @since v10.0.0 + */ + var URLSearchParams: typeof globalThis extends { + onmessage: any; + URLSearchParams: infer URLSearchParams; + } + ? URLSearchParams + : typeof _URLSearchParams; + } +} +declare module 'node:url' { + export * from 'url'; +} diff --git a/node_modules/@types/node/ts4.8/util.d.ts b/node_modules/@types/node/ts4.8/util.d.ts new file mode 100644 index 000000000..a08132568 --- /dev/null +++ b/node_modules/@types/node/ts4.8/util.d.ts @@ -0,0 +1,1792 @@ +/** + * The `util` module supports the needs of Node.js internal APIs. Many of the + * utilities are useful for application and module developers as well. To access + * it: + * + * ```js + * const util = require('util'); + * ``` + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/util.js) + */ +declare module 'util' { + import * as types from 'node:util/types'; + export interface InspectOptions { + /** + * If set to `true`, getters are going to be + * inspected as well. If set to `'get'` only getters without setter are going + * to be inspected. If set to `'set'` only getters having a corresponding + * setter are going to be inspected. This might cause side effects depending on + * the getter function. + * @default `false` + */ + getters?: 'get' | 'set' | boolean | undefined; + showHidden?: boolean | undefined; + /** + * @default 2 + */ + depth?: number | null | undefined; + colors?: boolean | undefined; + customInspect?: boolean | undefined; + showProxy?: boolean | undefined; + maxArrayLength?: number | null | undefined; + /** + * Specifies the maximum number of characters to + * include when formatting. Set to `null` or `Infinity` to show all elements. + * Set to `0` or negative to show no characters. + * @default 10000 + */ + maxStringLength?: number | null | undefined; + breakLength?: number | undefined; + /** + * Setting this to `false` causes each object key + * to be displayed on a new line. It will also add new lines to text that is + * longer than `breakLength`. If set to a number, the most `n` inner elements + * are united on a single line as long as all properties fit into + * `breakLength`. Short array elements are also grouped together. Note that no + * text will be reduced below 16 characters, no matter the `breakLength` size. + * For more information, see the example below. + * @default `true` + */ + compact?: boolean | number | undefined; + sorted?: boolean | ((a: string, b: string) => number) | undefined; + } + export type Style = 'special' | 'number' | 'bigint' | 'boolean' | 'undefined' | 'null' | 'string' | 'symbol' | 'date' | 'regexp' | 'module'; + export type CustomInspectFunction = (depth: number, options: InspectOptionsStylized) => string; + export interface InspectOptionsStylized extends InspectOptions { + stylize(text: string, styleType: Style): string; + } + /** + * The `util.format()` method returns a formatted string using the first argument + * as a `printf`\-like format string which can contain zero or more format + * specifiers. Each specifier is replaced with the converted value from the + * corresponding argument. Supported specifiers are: + * + * If a specifier does not have a corresponding argument, it is not replaced: + * + * ```js + * util.format('%s:%s', 'foo'); + * // Returns: 'foo:%s' + * ``` + * + * Values that are not part of the format string are formatted using`util.inspect()` if their type is not `string`. + * + * If there are more arguments passed to the `util.format()` method than the + * number of specifiers, the extra arguments are concatenated to the returned + * string, separated by spaces: + * + * ```js + * util.format('%s:%s', 'foo', 'bar', 'baz'); + * // Returns: 'foo:bar baz' + * ``` + * + * If the first argument does not contain a valid format specifier, `util.format()`returns a string that is the concatenation of all arguments separated by spaces: + * + * ```js + * util.format(1, 2, 3); + * // Returns: '1 2 3' + * ``` + * + * If only one argument is passed to `util.format()`, it is returned as it is + * without any formatting: + * + * ```js + * util.format('%% %s'); + * // Returns: '%% %s' + * ``` + * + * `util.format()` is a synchronous method that is intended as a debugging tool. + * Some input values can have a significant performance overhead that can block the + * event loop. Use this function with care and never in a hot code path. + * @since v0.5.3 + * @param format A `printf`-like format string. + */ + export function format(format?: any, ...param: any[]): string; + /** + * This function is identical to {@link format}, except in that it takes + * an `inspectOptions` argument which specifies options that are passed along to {@link inspect}. + * + * ```js + * util.formatWithOptions({ colors: true }, 'See object %O', { foo: 42 }); + * // Returns 'See object { foo: 42 }', where `42` is colored as a number + * // when printed to a terminal. + * ``` + * @since v10.0.0 + */ + export function formatWithOptions(inspectOptions: InspectOptions, format?: any, ...param: any[]): string; + /** + * Returns the string name for a numeric error code that comes from a Node.js API. + * The mapping between error codes and error names is platform-dependent. + * See `Common System Errors` for the names of common errors. + * + * ```js + * fs.access('file/that/does/not/exist', (err) => { + * const name = util.getSystemErrorName(err.errno); + * console.error(name); // ENOENT + * }); + * ``` + * @since v9.7.0 + */ + export function getSystemErrorName(err: number): string; + /** + * Returns a Map of all system error codes available from the Node.js API. + * The mapping between error codes and error names is platform-dependent. + * See `Common System Errors` for the names of common errors. + * + * ```js + * fs.access('file/that/does/not/exist', (err) => { + * const errorMap = util.getSystemErrorMap(); + * const name = errorMap.get(err.errno); + * console.error(name); // ENOENT + * }); + * ``` + * @since v16.0.0, v14.17.0 + */ + export function getSystemErrorMap(): Map; + /** + * The `util.log()` method prints the given `string` to `stdout` with an included + * timestamp. + * + * ```js + * const util = require('util'); + * + * util.log('Timestamped message.'); + * ``` + * @since v0.3.0 + * @deprecated Since v6.0.0 - Use a third party module instead. + */ + export function log(string: string): void; + /** + * Returns the `string` after replacing any surrogate code points + * (or equivalently, any unpaired surrogate code units) with the + * Unicode "replacement character" U+FFFD. + * @since v16.8.0, v14.18.0 + */ + export function toUSVString(string: string): string; + /** + * The `util.inspect()` method returns a string representation of `object` that is + * intended for debugging. The output of `util.inspect` may change at any time + * and should not be depended upon programmatically. Additional `options` may be + * passed that alter the result.`util.inspect()` will use the constructor's name and/or `@@toStringTag` to make + * an identifiable tag for an inspected value. + * + * ```js + * class Foo { + * get [Symbol.toStringTag]() { + * return 'bar'; + * } + * } + * + * class Bar {} + * + * const baz = Object.create(null, { [Symbol.toStringTag]: { value: 'foo' } }); + * + * util.inspect(new Foo()); // 'Foo [bar] {}' + * util.inspect(new Bar()); // 'Bar {}' + * util.inspect(baz); // '[foo] {}' + * ``` + * + * Circular references point to their anchor by using a reference index: + * + * ```js + * const { inspect } = require('util'); + * + * const obj = {}; + * obj.a = [obj]; + * obj.b = {}; + * obj.b.inner = obj.b; + * obj.b.obj = obj; + * + * console.log(inspect(obj)); + * // { + * // a: [ [Circular *1] ], + * // b: { inner: [Circular *2], obj: [Circular *1] } + * // } + * ``` + * + * The following example inspects all properties of the `util` object: + * + * ```js + * const util = require('util'); + * + * console.log(util.inspect(util, { showHidden: true, depth: null })); + * ``` + * + * The following example highlights the effect of the `compact` option: + * + * ```js + * const util = require('util'); + * + * const o = { + * a: [1, 2, [[ + * 'Lorem ipsum dolor sit amet,\nconsectetur adipiscing elit, sed do ' + + * 'eiusmod \ntempor incididunt ut labore et dolore magna aliqua.', + * 'test', + * 'foo']], 4], + * b: new Map([['za', 1], ['zb', 'test']]) + * }; + * console.log(util.inspect(o, { compact: true, depth: 5, breakLength: 80 })); + * + * // { a: + * // [ 1, + * // 2, + * // [ [ 'Lorem ipsum dolor sit amet,\nconsectetur [...]', // A long line + * // 'test', + * // 'foo' ] ], + * // 4 ], + * // b: Map(2) { 'za' => 1, 'zb' => 'test' } } + * + * // Setting `compact` to false or an integer creates more reader friendly output. + * console.log(util.inspect(o, { compact: false, depth: 5, breakLength: 80 })); + * + * // { + * // a: [ + * // 1, + * // 2, + * // [ + * // [ + * // 'Lorem ipsum dolor sit amet,\n' + + * // 'consectetur adipiscing elit, sed do eiusmod \n' + + * // 'tempor incididunt ut labore et dolore magna aliqua.', + * // 'test', + * // 'foo' + * // ] + * // ], + * // 4 + * // ], + * // b: Map(2) { + * // 'za' => 1, + * // 'zb' => 'test' + * // } + * // } + * + * // Setting `breakLength` to e.g. 150 will print the "Lorem ipsum" text in a + * // single line. + * ``` + * + * The `showHidden` option allows [`WeakMap`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakMap) and + * [`WeakSet`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakSet) entries to be + * inspected. If there are more entries than `maxArrayLength`, there is no + * guarantee which entries are displayed. That means retrieving the same [`WeakSet`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakSet) entries twice may + * result in different output. Furthermore, entries + * with no remaining strong references may be garbage collected at any time. + * + * ```js + * const { inspect } = require('util'); + * + * const obj = { a: 1 }; + * const obj2 = { b: 2 }; + * const weakSet = new WeakSet([obj, obj2]); + * + * console.log(inspect(weakSet, { showHidden: true })); + * // WeakSet { { a: 1 }, { b: 2 } } + * ``` + * + * The `sorted` option ensures that an object's property insertion order does not + * impact the result of `util.inspect()`. + * + * ```js + * const { inspect } = require('util'); + * const assert = require('assert'); + * + * const o1 = { + * b: [2, 3, 1], + * a: '`a` comes before `b`', + * c: new Set([2, 3, 1]) + * }; + * console.log(inspect(o1, { sorted: true })); + * // { a: '`a` comes before `b`', b: [ 2, 3, 1 ], c: Set(3) { 1, 2, 3 } } + * console.log(inspect(o1, { sorted: (a, b) => b.localeCompare(a) })); + * // { c: Set(3) { 3, 2, 1 }, b: [ 2, 3, 1 ], a: '`a` comes before `b`' } + * + * const o2 = { + * c: new Set([2, 1, 3]), + * a: '`a` comes before `b`', + * b: [2, 3, 1] + * }; + * assert.strict.equal( + * inspect(o1, { sorted: true }), + * inspect(o2, { sorted: true }) + * ); + * ``` + * + * The `numericSeparator` option adds an underscore every three digits to all + * numbers. + * + * ```js + * const { inspect } = require('util'); + * + * const thousand = 1_000; + * const million = 1_000_000; + * const bigNumber = 123_456_789n; + * const bigDecimal = 1_234.123_45; + * + * console.log(thousand, million, bigNumber, bigDecimal); + * // 1_000 1_000_000 123_456_789n 1_234.123_45 + * ``` + * + * `util.inspect()` is a synchronous method intended for debugging. Its maximum + * output length is approximately 128 MB. Inputs that result in longer output will + * be truncated. + * @since v0.3.0 + * @param object Any JavaScript primitive or `Object`. + * @return The representation of `object`. + */ + export function inspect(object: any, showHidden?: boolean, depth?: number | null, color?: boolean): string; + export function inspect(object: any, options?: InspectOptions): string; + export namespace inspect { + let colors: NodeJS.Dict<[number, number]>; + let styles: { + [K in Style]: string; + }; + let defaultOptions: InspectOptions; + /** + * Allows changing inspect settings from the repl. + */ + let replDefaults: InspectOptions; + /** + * That can be used to declare custom inspect functions. + */ + const custom: unique symbol; + } + /** + * Alias for [`Array.isArray()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/isArray). + * + * Returns `true` if the given `object` is an `Array`. Otherwise, returns `false`. + * + * ```js + * const util = require('util'); + * + * util.isArray([]); + * // Returns: true + * util.isArray(new Array()); + * // Returns: true + * util.isArray({}); + * // Returns: false + * ``` + * @since v0.6.0 + * @deprecated Since v4.0.0 - Use `isArray` instead. + */ + export function isArray(object: unknown): object is unknown[]; + /** + * Returns `true` if the given `object` is a `RegExp`. Otherwise, returns `false`. + * + * ```js + * const util = require('util'); + * + * util.isRegExp(/some regexp/); + * // Returns: true + * util.isRegExp(new RegExp('another regexp')); + * // Returns: true + * util.isRegExp({}); + * // Returns: false + * ``` + * @since v0.6.0 + * @deprecated Since v4.0.0 - Deprecated + */ + export function isRegExp(object: unknown): object is RegExp; + /** + * Returns `true` if the given `object` is a `Date`. Otherwise, returns `false`. + * + * ```js + * const util = require('util'); + * + * util.isDate(new Date()); + * // Returns: true + * util.isDate(Date()); + * // false (without 'new' returns a String) + * util.isDate({}); + * // Returns: false + * ``` + * @since v0.6.0 + * @deprecated Since v4.0.0 - Use {@link types.isDate} instead. + */ + export function isDate(object: unknown): object is Date; + /** + * Returns `true` if the given `object` is an `Error`. Otherwise, returns`false`. + * + * ```js + * const util = require('util'); + * + * util.isError(new Error()); + * // Returns: true + * util.isError(new TypeError()); + * // Returns: true + * util.isError({ name: 'Error', message: 'an error occurred' }); + * // Returns: false + * ``` + * + * This method relies on `Object.prototype.toString()` behavior. It is + * possible to obtain an incorrect result when the `object` argument manipulates`@@toStringTag`. + * + * ```js + * const util = require('util'); + * const obj = { name: 'Error', message: 'an error occurred' }; + * + * util.isError(obj); + * // Returns: false + * obj[Symbol.toStringTag] = 'Error'; + * util.isError(obj); + * // Returns: true + * ``` + * @since v0.6.0 + * @deprecated Since v4.0.0 - Use {@link types.isNativeError} instead. + */ + export function isError(object: unknown): object is Error; + /** + * Usage of `util.inherits()` is discouraged. Please use the ES6 `class` and`extends` keywords to get language level inheritance support. Also note + * that the two styles are [semantically incompatible](https://github.com/nodejs/node/issues/4179). + * + * Inherit the prototype methods from one [constructor](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/constructor) into another. The + * prototype of `constructor` will be set to a new object created from`superConstructor`. + * + * This mainly adds some input validation on top of`Object.setPrototypeOf(constructor.prototype, superConstructor.prototype)`. + * As an additional convenience, `superConstructor` will be accessible + * through the `constructor.super_` property. + * + * ```js + * const util = require('util'); + * const EventEmitter = require('events'); + * + * function MyStream() { + * EventEmitter.call(this); + * } + * + * util.inherits(MyStream, EventEmitter); + * + * MyStream.prototype.write = function(data) { + * this.emit('data', data); + * }; + * + * const stream = new MyStream(); + * + * console.log(stream instanceof EventEmitter); // true + * console.log(MyStream.super_ === EventEmitter); // true + * + * stream.on('data', (data) => { + * console.log(`Received data: "${data}"`); + * }); + * stream.write('It works!'); // Received data: "It works!" + * ``` + * + * ES6 example using `class` and `extends`: + * + * ```js + * const EventEmitter = require('events'); + * + * class MyStream extends EventEmitter { + * write(data) { + * this.emit('data', data); + * } + * } + * + * const stream = new MyStream(); + * + * stream.on('data', (data) => { + * console.log(`Received data: "${data}"`); + * }); + * stream.write('With ES6'); + * ``` + * @since v0.3.0 + * @deprecated Legacy: Use ES2015 class syntax and `extends` keyword instead. + */ + export function inherits(constructor: unknown, superConstructor: unknown): void; + export type DebugLoggerFunction = (msg: string, ...param: unknown[]) => void; + export interface DebugLogger extends DebugLoggerFunction { + enabled: boolean; + } + /** + * The `util.debuglog()` method is used to create a function that conditionally + * writes debug messages to `stderr` based on the existence of the `NODE_DEBUG`environment variable. If the `section` name appears within the value of that + * environment variable, then the returned function operates similar to `console.error()`. If not, then the returned function is a no-op. + * + * ```js + * const util = require('util'); + * const debuglog = util.debuglog('foo'); + * + * debuglog('hello from foo [%d]', 123); + * ``` + * + * If this program is run with `NODE_DEBUG=foo` in the environment, then + * it will output something like: + * + * ```console + * FOO 3245: hello from foo [123] + * ``` + * + * where `3245` is the process id. If it is not run with that + * environment variable set, then it will not print anything. + * + * The `section` supports wildcard also: + * + * ```js + * const util = require('util'); + * const debuglog = util.debuglog('foo-bar'); + * + * debuglog('hi there, it\'s foo-bar [%d]', 2333); + * ``` + * + * if it is run with `NODE_DEBUG=foo*` in the environment, then it will output + * something like: + * + * ```console + * FOO-BAR 3257: hi there, it's foo-bar [2333] + * ``` + * + * Multiple comma-separated `section` names may be specified in the `NODE_DEBUG`environment variable: `NODE_DEBUG=fs,net,tls`. + * + * The optional `callback` argument can be used to replace the logging function + * with a different function that doesn't have any initialization or + * unnecessary wrapping. + * + * ```js + * const util = require('util'); + * let debuglog = util.debuglog('internals', (debug) => { + * // Replace with a logging function that optimizes out + * // testing if the section is enabled + * debuglog = debug; + * }); + * ``` + * @since v0.11.3 + * @param section A string identifying the portion of the application for which the `debuglog` function is being created. + * @param callback A callback invoked the first time the logging function is called with a function argument that is a more optimized logging function. + * @return The logging function + */ + export function debuglog(section: string, callback?: (fn: DebugLoggerFunction) => void): DebugLogger; + export const debug: typeof debuglog; + /** + * Returns `true` if the given `object` is a `Boolean`. Otherwise, returns `false`. + * + * ```js + * const util = require('util'); + * + * util.isBoolean(1); + * // Returns: false + * util.isBoolean(0); + * // Returns: false + * util.isBoolean(false); + * // Returns: true + * ``` + * @since v0.11.5 + * @deprecated Since v4.0.0 - Use `typeof value === 'boolean'` instead. + */ + export function isBoolean(object: unknown): object is boolean; + /** + * Returns `true` if the given `object` is a `Buffer`. Otherwise, returns `false`. + * + * ```js + * const util = require('util'); + * + * util.isBuffer({ length: 0 }); + * // Returns: false + * util.isBuffer([]); + * // Returns: false + * util.isBuffer(Buffer.from('hello world')); + * // Returns: true + * ``` + * @since v0.11.5 + * @deprecated Since v4.0.0 - Use `isBuffer` instead. + */ + export function isBuffer(object: unknown): object is Buffer; + /** + * Returns `true` if the given `object` is a `Function`. Otherwise, returns`false`. + * + * ```js + * const util = require('util'); + * + * function Foo() {} + * const Bar = () => {}; + * + * util.isFunction({}); + * // Returns: false + * util.isFunction(Foo); + * // Returns: true + * util.isFunction(Bar); + * // Returns: true + * ``` + * @since v0.11.5 + * @deprecated Since v4.0.0 - Use `typeof value === 'function'` instead. + */ + export function isFunction(object: unknown): boolean; + /** + * Returns `true` if the given `object` is strictly `null`. Otherwise, returns`false`. + * + * ```js + * const util = require('util'); + * + * util.isNull(0); + * // Returns: false + * util.isNull(undefined); + * // Returns: false + * util.isNull(null); + * // Returns: true + * ``` + * @since v0.11.5 + * @deprecated Since v4.0.0 - Use `value === null` instead. + */ + export function isNull(object: unknown): object is null; + /** + * Returns `true` if the given `object` is `null` or `undefined`. Otherwise, + * returns `false`. + * + * ```js + * const util = require('util'); + * + * util.isNullOrUndefined(0); + * // Returns: false + * util.isNullOrUndefined(undefined); + * // Returns: true + * util.isNullOrUndefined(null); + * // Returns: true + * ``` + * @since v0.11.5 + * @deprecated Since v4.0.0 - Use `value === undefined || value === null` instead. + */ + export function isNullOrUndefined(object: unknown): object is null | undefined; + /** + * Returns `true` if the given `object` is a `Number`. Otherwise, returns `false`. + * + * ```js + * const util = require('util'); + * + * util.isNumber(false); + * // Returns: false + * util.isNumber(Infinity); + * // Returns: true + * util.isNumber(0); + * // Returns: true + * util.isNumber(NaN); + * // Returns: true + * ``` + * @since v0.11.5 + * @deprecated Since v4.0.0 - Use `typeof value === 'number'` instead. + */ + export function isNumber(object: unknown): object is number; + /** + * Returns `true` if the given `object` is strictly an `Object`**and** not a`Function` (even though functions are objects in JavaScript). + * Otherwise, returns `false`. + * + * ```js + * const util = require('util'); + * + * util.isObject(5); + * // Returns: false + * util.isObject(null); + * // Returns: false + * util.isObject({}); + * // Returns: true + * util.isObject(() => {}); + * // Returns: false + * ``` + * @since v0.11.5 + * @deprecated Since v4.0.0 - Deprecated: Use `value !== null && typeof value === 'object'` instead. + */ + export function isObject(object: unknown): boolean; + /** + * Returns `true` if the given `object` is a primitive type. Otherwise, returns`false`. + * + * ```js + * const util = require('util'); + * + * util.isPrimitive(5); + * // Returns: true + * util.isPrimitive('foo'); + * // Returns: true + * util.isPrimitive(false); + * // Returns: true + * util.isPrimitive(null); + * // Returns: true + * util.isPrimitive(undefined); + * // Returns: true + * util.isPrimitive({}); + * // Returns: false + * util.isPrimitive(() => {}); + * // Returns: false + * util.isPrimitive(/^$/); + * // Returns: false + * util.isPrimitive(new Date()); + * // Returns: false + * ``` + * @since v0.11.5 + * @deprecated Since v4.0.0 - Use `(typeof value !== 'object' && typeof value !== 'function') || value === null` instead. + */ + export function isPrimitive(object: unknown): boolean; + /** + * Returns `true` if the given `object` is a `string`. Otherwise, returns `false`. + * + * ```js + * const util = require('util'); + * + * util.isString(''); + * // Returns: true + * util.isString('foo'); + * // Returns: true + * util.isString(String('foo')); + * // Returns: true + * util.isString(5); + * // Returns: false + * ``` + * @since v0.11.5 + * @deprecated Since v4.0.0 - Use `typeof value === 'string'` instead. + */ + export function isString(object: unknown): object is string; + /** + * Returns `true` if the given `object` is a `Symbol`. Otherwise, returns `false`. + * + * ```js + * const util = require('util'); + * + * util.isSymbol(5); + * // Returns: false + * util.isSymbol('foo'); + * // Returns: false + * util.isSymbol(Symbol('foo')); + * // Returns: true + * ``` + * @since v0.11.5 + * @deprecated Since v4.0.0 - Use `typeof value === 'symbol'` instead. + */ + export function isSymbol(object: unknown): object is symbol; + /** + * Returns `true` if the given `object` is `undefined`. Otherwise, returns `false`. + * + * ```js + * const util = require('util'); + * + * const foo = undefined; + * util.isUndefined(5); + * // Returns: false + * util.isUndefined(foo); + * // Returns: true + * util.isUndefined(null); + * // Returns: false + * ``` + * @since v0.11.5 + * @deprecated Since v4.0.0 - Use `value === undefined` instead. + */ + export function isUndefined(object: unknown): object is undefined; + /** + * The `util.deprecate()` method wraps `fn` (which may be a function or class) in + * such a way that it is marked as deprecated. + * + * ```js + * const util = require('util'); + * + * exports.obsoleteFunction = util.deprecate(() => { + * // Do something here. + * }, 'obsoleteFunction() is deprecated. Use newShinyFunction() instead.'); + * ``` + * + * When called, `util.deprecate()` will return a function that will emit a`DeprecationWarning` using the `'warning'` event. The warning will + * be emitted and printed to `stderr` the first time the returned function is + * called. After the warning is emitted, the wrapped function is called without + * emitting a warning. + * + * If the same optional `code` is supplied in multiple calls to `util.deprecate()`, + * the warning will be emitted only once for that `code`. + * + * ```js + * const util = require('util'); + * + * const fn1 = util.deprecate(someFunction, someMessage, 'DEP0001'); + * const fn2 = util.deprecate(someOtherFunction, someOtherMessage, 'DEP0001'); + * fn1(); // Emits a deprecation warning with code DEP0001 + * fn2(); // Does not emit a deprecation warning because it has the same code + * ``` + * + * If either the `--no-deprecation` or `--no-warnings` command-line flags are + * used, or if the `process.noDeprecation` property is set to `true`_prior_ to + * the first deprecation warning, the `util.deprecate()` method does nothing. + * + * If the `--trace-deprecation` or `--trace-warnings` command-line flags are set, + * or the `process.traceDeprecation` property is set to `true`, a warning and a + * stack trace are printed to `stderr` the first time the deprecated function is + * called. + * + * If the `--throw-deprecation` command-line flag is set, or the`process.throwDeprecation` property is set to `true`, then an exception will be + * thrown when the deprecated function is called. + * + * The `--throw-deprecation` command-line flag and `process.throwDeprecation`property take precedence over `--trace-deprecation` and`process.traceDeprecation`. + * @since v0.8.0 + * @param fn The function that is being deprecated. + * @param msg A warning message to display when the deprecated function is invoked. + * @param code A deprecation code. See the `list of deprecated APIs` for a list of codes. + * @return The deprecated function wrapped to emit a warning. + */ + export function deprecate(fn: T, msg: string, code?: string): T; + /** + * Returns `true` if there is deep strict equality between `val1` and `val2`. + * Otherwise, returns `false`. + * + * See `assert.deepStrictEqual()` for more information about deep strict + * equality. + * @since v9.0.0 + */ + export function isDeepStrictEqual(val1: unknown, val2: unknown): boolean; + /** + * Returns `str` with any ANSI escape codes removed. + * + * ```js + * console.log(util.stripVTControlCharacters('\u001B[4mvalue\u001B[0m')); + * // Prints "value" + * ``` + * @since v16.11.0 + */ + export function stripVTControlCharacters(str: string): string; + /** + * Takes an `async` function (or a function that returns a `Promise`) and returns a + * function following the error-first callback style, i.e. taking + * an `(err, value) => ...` callback as the last argument. In the callback, the + * first argument will be the rejection reason (or `null` if the `Promise`resolved), and the second argument will be the resolved value. + * + * ```js + * const util = require('util'); + * + * async function fn() { + * return 'hello world'; + * } + * const callbackFunction = util.callbackify(fn); + * + * callbackFunction((err, ret) => { + * if (err) throw err; + * console.log(ret); + * }); + * ``` + * + * Will print: + * + * ```text + * hello world + * ``` + * + * The callback is executed asynchronously, and will have a limited stack trace. + * If the callback throws, the process will emit an `'uncaughtException'` event, and if not handled will exit. + * + * Since `null` has a special meaning as the first argument to a callback, if a + * wrapped function rejects a `Promise` with a falsy value as a reason, the value + * is wrapped in an `Error` with the original value stored in a field named`reason`. + * + * ```js + * function fn() { + * return Promise.reject(null); + * } + * const callbackFunction = util.callbackify(fn); + * + * callbackFunction((err, ret) => { + * // When the Promise was rejected with `null` it is wrapped with an Error and + * // the original value is stored in `reason`. + * err && Object.hasOwn(err, 'reason') && err.reason === null; // true + * }); + * ``` + * @since v8.2.0 + * @param original An `async` function + * @return a callback style function + */ + export function callbackify(fn: () => Promise): (callback: (err: NodeJS.ErrnoException) => void) => void; + export function callbackify(fn: () => Promise): (callback: (err: NodeJS.ErrnoException, result: TResult) => void) => void; + export function callbackify(fn: (arg1: T1) => Promise): (arg1: T1, callback: (err: NodeJS.ErrnoException) => void) => void; + export function callbackify(fn: (arg1: T1) => Promise): (arg1: T1, callback: (err: NodeJS.ErrnoException, result: TResult) => void) => void; + export function callbackify(fn: (arg1: T1, arg2: T2) => Promise): (arg1: T1, arg2: T2, callback: (err: NodeJS.ErrnoException) => void) => void; + export function callbackify(fn: (arg1: T1, arg2: T2) => Promise): (arg1: T1, arg2: T2, callback: (err: NodeJS.ErrnoException | null, result: TResult) => void) => void; + export function callbackify(fn: (arg1: T1, arg2: T2, arg3: T3) => Promise): (arg1: T1, arg2: T2, arg3: T3, callback: (err: NodeJS.ErrnoException) => void) => void; + export function callbackify( + fn: (arg1: T1, arg2: T2, arg3: T3) => Promise + ): (arg1: T1, arg2: T2, arg3: T3, callback: (err: NodeJS.ErrnoException | null, result: TResult) => void) => void; + export function callbackify( + fn: (arg1: T1, arg2: T2, arg3: T3, arg4: T4) => Promise + ): (arg1: T1, arg2: T2, arg3: T3, arg4: T4, callback: (err: NodeJS.ErrnoException) => void) => void; + export function callbackify( + fn: (arg1: T1, arg2: T2, arg3: T3, arg4: T4) => Promise + ): (arg1: T1, arg2: T2, arg3: T3, arg4: T4, callback: (err: NodeJS.ErrnoException | null, result: TResult) => void) => void; + export function callbackify( + fn: (arg1: T1, arg2: T2, arg3: T3, arg4: T4, arg5: T5) => Promise + ): (arg1: T1, arg2: T2, arg3: T3, arg4: T4, arg5: T5, callback: (err: NodeJS.ErrnoException) => void) => void; + export function callbackify( + fn: (arg1: T1, arg2: T2, arg3: T3, arg4: T4, arg5: T5) => Promise + ): (arg1: T1, arg2: T2, arg3: T3, arg4: T4, arg5: T5, callback: (err: NodeJS.ErrnoException | null, result: TResult) => void) => void; + export function callbackify( + fn: (arg1: T1, arg2: T2, arg3: T3, arg4: T4, arg5: T5, arg6: T6) => Promise + ): (arg1: T1, arg2: T2, arg3: T3, arg4: T4, arg5: T5, arg6: T6, callback: (err: NodeJS.ErrnoException) => void) => void; + export function callbackify( + fn: (arg1: T1, arg2: T2, arg3: T3, arg4: T4, arg5: T5, arg6: T6) => Promise + ): (arg1: T1, arg2: T2, arg3: T3, arg4: T4, arg5: T5, arg6: T6, callback: (err: NodeJS.ErrnoException | null, result: TResult) => void) => void; + export interface CustomPromisifyLegacy extends Function { + __promisify__: TCustom; + } + export interface CustomPromisifySymbol extends Function { + [promisify.custom]: TCustom; + } + export type CustomPromisify = CustomPromisifySymbol | CustomPromisifyLegacy; + /** + * Takes a function following the common error-first callback style, i.e. taking + * an `(err, value) => ...` callback as the last argument, and returns a version + * that returns promises. + * + * ```js + * const util = require('util'); + * const fs = require('fs'); + * + * const stat = util.promisify(fs.stat); + * stat('.').then((stats) => { + * // Do something with `stats` + * }).catch((error) => { + * // Handle the error. + * }); + * ``` + * + * Or, equivalently using `async function`s: + * + * ```js + * const util = require('util'); + * const fs = require('fs'); + * + * const stat = util.promisify(fs.stat); + * + * async function callStat() { + * const stats = await stat('.'); + * console.log(`This directory is owned by ${stats.uid}`); + * } + * ``` + * + * If there is an `original[util.promisify.custom]` property present, `promisify`will return its value, see `Custom promisified functions`. + * + * `promisify()` assumes that `original` is a function taking a callback as its + * final argument in all cases. If `original` is not a function, `promisify()`will throw an error. If `original` is a function but its last argument is not + * an error-first callback, it will still be passed an error-first + * callback as its last argument. + * + * Using `promisify()` on class methods or other methods that use `this` may not + * work as expected unless handled specially: + * + * ```js + * const util = require('util'); + * + * class Foo { + * constructor() { + * this.a = 42; + * } + * + * bar(callback) { + * callback(null, this.a); + * } + * } + * + * const foo = new Foo(); + * + * const naiveBar = util.promisify(foo.bar); + * // TypeError: Cannot read property 'a' of undefined + * // naiveBar().then(a => console.log(a)); + * + * naiveBar.call(foo).then((a) => console.log(a)); // '42' + * + * const bindBar = naiveBar.bind(foo); + * bindBar().then((a) => console.log(a)); // '42' + * ``` + * @since v8.0.0 + */ + export function promisify(fn: CustomPromisify): TCustom; + export function promisify(fn: (callback: (err: any, result: TResult) => void) => void): () => Promise; + export function promisify(fn: (callback: (err?: any) => void) => void): () => Promise; + export function promisify(fn: (arg1: T1, callback: (err: any, result: TResult) => void) => void): (arg1: T1) => Promise; + export function promisify(fn: (arg1: T1, callback: (err?: any) => void) => void): (arg1: T1) => Promise; + export function promisify(fn: (arg1: T1, arg2: T2, callback: (err: any, result: TResult) => void) => void): (arg1: T1, arg2: T2) => Promise; + export function promisify(fn: (arg1: T1, arg2: T2, callback: (err?: any) => void) => void): (arg1: T1, arg2: T2) => Promise; + export function promisify(fn: (arg1: T1, arg2: T2, arg3: T3, callback: (err: any, result: TResult) => void) => void): (arg1: T1, arg2: T2, arg3: T3) => Promise; + export function promisify(fn: (arg1: T1, arg2: T2, arg3: T3, callback: (err?: any) => void) => void): (arg1: T1, arg2: T2, arg3: T3) => Promise; + export function promisify( + fn: (arg1: T1, arg2: T2, arg3: T3, arg4: T4, callback: (err: any, result: TResult) => void) => void + ): (arg1: T1, arg2: T2, arg3: T3, arg4: T4) => Promise; + export function promisify(fn: (arg1: T1, arg2: T2, arg3: T3, arg4: T4, callback: (err?: any) => void) => void): (arg1: T1, arg2: T2, arg3: T3, arg4: T4) => Promise; + export function promisify( + fn: (arg1: T1, arg2: T2, arg3: T3, arg4: T4, arg5: T5, callback: (err: any, result: TResult) => void) => void + ): (arg1: T1, arg2: T2, arg3: T3, arg4: T4, arg5: T5) => Promise; + export function promisify( + fn: (arg1: T1, arg2: T2, arg3: T3, arg4: T4, arg5: T5, callback: (err?: any) => void) => void + ): (arg1: T1, arg2: T2, arg3: T3, arg4: T4, arg5: T5) => Promise; + export function promisify(fn: Function): Function; + export namespace promisify { + /** + * That can be used to declare custom promisified variants of functions. + */ + const custom: unique symbol; + } + /** + * An implementation of the [WHATWG Encoding Standard](https://encoding.spec.whatwg.org/) `TextDecoder` API. + * + * ```js + * const decoder = new TextDecoder(); + * const u8arr = new Uint8Array([72, 101, 108, 108, 111]); + * console.log(decoder.decode(u8arr)); // Hello + * ``` + * @since v8.3.0 + */ + export class TextDecoder { + /** + * The encoding supported by the `TextDecoder` instance. + */ + readonly encoding: string; + /** + * The value will be `true` if decoding errors result in a `TypeError` being + * thrown. + */ + readonly fatal: boolean; + /** + * The value will be `true` if the decoding result will include the byte order + * mark. + */ + readonly ignoreBOM: boolean; + constructor( + encoding?: string, + options?: { + fatal?: boolean | undefined; + ignoreBOM?: boolean | undefined; + } + ); + /** + * Decodes the `input` and returns a string. If `options.stream` is `true`, any + * incomplete byte sequences occurring at the end of the `input` are buffered + * internally and emitted after the next call to `textDecoder.decode()`. + * + * If `textDecoder.fatal` is `true`, decoding errors that occur will result in a`TypeError` being thrown. + * @param input An `ArrayBuffer`, `DataView` or `TypedArray` instance containing the encoded data. + */ + decode( + input?: NodeJS.ArrayBufferView | ArrayBuffer | null, + options?: { + stream?: boolean | undefined; + } + ): string; + } + export interface EncodeIntoResult { + /** + * The read Unicode code units of input. + */ + read: number; + /** + * The written UTF-8 bytes of output. + */ + written: number; + } + export { types }; + /** + * An implementation of the [WHATWG Encoding Standard](https://encoding.spec.whatwg.org/) `TextEncoder` API. All + * instances of `TextEncoder` only support UTF-8 encoding. + * + * ```js + * const encoder = new TextEncoder(); + * const uint8array = encoder.encode('this is some data'); + * ``` + * + * The `TextEncoder` class is also available on the global object. + * @since v8.3.0 + */ + export class TextEncoder { + /** + * The encoding supported by the `TextEncoder` instance. Always set to `'utf-8'`. + */ + readonly encoding: string; + /** + * UTF-8 encodes the `input` string and returns a `Uint8Array` containing the + * encoded bytes. + * @param [input='an empty string'] The text to encode. + */ + encode(input?: string): Uint8Array; + /** + * UTF-8 encodes the `src` string to the `dest` Uint8Array and returns an object + * containing the read Unicode code units and written UTF-8 bytes. + * + * ```js + * const encoder = new TextEncoder(); + * const src = 'this is some data'; + * const dest = new Uint8Array(10); + * const { read, written } = encoder.encodeInto(src, dest); + * ``` + * @param src The text to encode. + * @param dest The array to hold the encode result. + */ + encodeInto(src: string, dest: Uint8Array): EncodeIntoResult; + } + + /** + * Provides a high-level API for command-line argument parsing. Takes a + * specification for the expected arguments and returns a structured object + * with the parsed values and positionals. + * + * `config` provides arguments for parsing and configures the parser. It + * supports the following properties: + * + * - `args` The array of argument strings. **Default:** `process.argv` with + * `execPath` and `filename` removed. + * - `options` Arguments known to the parser. Keys of `options` are the long + * names of options and values are objects accepting the following properties: + * + * - `type` Type of argument, which must be either `boolean` (for options + * which do not take values) or `string` (for options which do). + * - `multiple` Whether this option can be provided multiple + * times. If `true`, all values will be collected in an array. If + * `false`, values for the option are last-wins. **Default:** `false`. + * - `short` A single character alias for the option. + * + * - `strict`: Whether an error should be thrown when unknown arguments + * are encountered, or when arguments are passed that do not match the + * `type` configured in `options`. **Default:** `true`. + * - `allowPositionals`: Whether this command accepts positional arguments. + * **Default:** `false` if `strict` is `true`, otherwise `true`. + * - `tokens`: Whether tokens {boolean} Return the parsed tokens. This is useful + * for extending the built-in behavior, from adding additional checks through + * to reprocessing the tokens in different ways. + * **Default:** `false`. + * + * @returns The parsed command line arguments: + * + * - `values` A mapping of parsed option names with their string + * or boolean values. + * - `positionals` Positional arguments. + * - `tokens` Detailed parse information (only if `tokens` was specified). + * + */ + export function parseArgs(config: T): ParsedResults; + + interface ParseArgsOptionConfig { + type: 'string' | 'boolean'; + short?: string; + multiple?: boolean; + } + + interface ParseArgsOptionsConfig { + [longOption: string]: ParseArgsOptionConfig; + } + + export interface ParseArgsConfig { + strict?: boolean; + allowPositionals?: boolean; + tokens?: boolean; + options?: ParseArgsOptionsConfig; + args?: string[]; + } + + /* + IfDefaultsTrue and IfDefaultsFalse are helpers to handle default values for missing boolean properties. + TypeScript does not have exact types for objects: https://github.com/microsoft/TypeScript/issues/12936 + This means it is impossible to distinguish between "field X is definitely not present" and "field X may or may not be present". + But we expect users to generally provide their config inline or `as const`, which means TS will always know whether a given field is present. + So this helper treats "not definitely present" (i.e., not `extends boolean`) as being "definitely not present", i.e. it should have its default value. + This is technically incorrect but is a much nicer UX for the common case. + The IfDefaultsTrue version is for things which default to true; the IfDefaultsFalse version is for things which default to false. + */ + type IfDefaultsTrue = T extends true + ? IfTrue + : T extends false + ? IfFalse + : IfTrue; + + // we put the `extends false` condition first here because `undefined` compares like `any` when `strictNullChecks: false` + type IfDefaultsFalse = T extends false + ? IfFalse + : T extends true + ? IfTrue + : IfFalse; + + type ExtractOptionValue = IfDefaultsTrue< + T['strict'], + O['type'] extends 'string' ? string : O['type'] extends 'boolean' ? boolean : string | boolean, + string | boolean + >; + + type ParsedValues = + & IfDefaultsTrue + & (T['options'] extends ParseArgsOptionsConfig + ? { + -readonly [LongOption in keyof T['options']]: IfDefaultsFalse< + T['options'][LongOption]['multiple'], + undefined | Array>, + undefined | ExtractOptionValue + >; + } + : {}); + + type ParsedPositionals = IfDefaultsTrue< + T['strict'], + IfDefaultsFalse, + IfDefaultsTrue + >; + + type PreciseTokenForOptions< + K extends string, + O extends ParseArgsOptionConfig, + > = O['type'] extends 'string' + ? { + kind: 'option'; + index: number; + name: K; + rawName: string; + value: string; + inlineValue: boolean; + } + : O['type'] extends 'boolean' + ? { + kind: 'option'; + index: number; + name: K; + rawName: string; + value: undefined; + inlineValue: undefined; + } + : OptionToken & { name: K }; + + type TokenForOptions< + T extends ParseArgsConfig, + K extends keyof T['options'] = keyof T['options'], + > = K extends unknown + ? T['options'] extends ParseArgsOptionsConfig + ? PreciseTokenForOptions + : OptionToken + : never; + + type ParsedOptionToken = IfDefaultsTrue, OptionToken>; + + type ParsedPositionalToken = IfDefaultsTrue< + T['strict'], + IfDefaultsFalse, + IfDefaultsTrue + >; + + type ParsedTokens = Array< + ParsedOptionToken | ParsedPositionalToken | { kind: 'option-terminator'; index: number } + >; + + type PreciseParsedResults = IfDefaultsFalse< + T['tokens'], + { + values: ParsedValues; + positionals: ParsedPositionals; + tokens: ParsedTokens; + }, + { + values: ParsedValues; + positionals: ParsedPositionals; + } + >; + + type OptionToken = + | { kind: 'option'; index: number; name: string; rawName: string; value: string; inlineValue: boolean } + | { + kind: 'option'; + index: number; + name: string; + rawName: string; + value: undefined; + inlineValue: undefined; + }; + + type Token = + | OptionToken + | { kind: 'positional'; index: number; value: string } + | { kind: 'option-terminator'; index: number }; + + // If ParseArgsConfig extends T, then the user passed config constructed elsewhere. + // So we can't rely on the `"not definitely present" implies "definitely not present"` assumption mentioned above. + type ParsedResults = ParseArgsConfig extends T + ? { + values: { [longOption: string]: undefined | string | boolean | Array }; + positionals: string[]; + tokens?: Token[]; + } + : PreciseParsedResults; +} +declare module 'util/types' { + export * from 'util/types'; +} +declare module 'util/types' { + import { KeyObject, webcrypto } from 'node:crypto'; + /** + * Returns `true` if the value is a built-in [`ArrayBuffer`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer) or + * [`SharedArrayBuffer`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SharedArrayBuffer) instance. + * + * See also `util.types.isArrayBuffer()` and `util.types.isSharedArrayBuffer()`. + * + * ```js + * util.types.isAnyArrayBuffer(new ArrayBuffer()); // Returns true + * util.types.isAnyArrayBuffer(new SharedArrayBuffer()); // Returns true + * ``` + * @since v10.0.0 + */ + function isAnyArrayBuffer(object: unknown): object is ArrayBufferLike; + /** + * Returns `true` if the value is an `arguments` object. + * + * ```js + * function foo() { + * util.types.isArgumentsObject(arguments); // Returns true + * } + * ``` + * @since v10.0.0 + */ + function isArgumentsObject(object: unknown): object is IArguments; + /** + * Returns `true` if the value is a built-in [`ArrayBuffer`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer) instance. + * This does _not_ include [`SharedArrayBuffer`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SharedArrayBuffer) instances. Usually, it is + * desirable to test for both; See `util.types.isAnyArrayBuffer()` for that. + * + * ```js + * util.types.isArrayBuffer(new ArrayBuffer()); // Returns true + * util.types.isArrayBuffer(new SharedArrayBuffer()); // Returns false + * ``` + * @since v10.0.0 + */ + function isArrayBuffer(object: unknown): object is ArrayBuffer; + /** + * Returns `true` if the value is an instance of one of the [`ArrayBuffer`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer) views, such as typed + * array objects or [`DataView`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView). Equivalent to + * [`ArrayBuffer.isView()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer/isView). + * + * ```js + * util.types.isArrayBufferView(new Int8Array()); // true + * util.types.isArrayBufferView(Buffer.from('hello world')); // true + * util.types.isArrayBufferView(new DataView(new ArrayBuffer(16))); // true + * util.types.isArrayBufferView(new ArrayBuffer()); // false + * ``` + * @since v10.0.0 + */ + function isArrayBufferView(object: unknown): object is NodeJS.ArrayBufferView; + /** + * Returns `true` if the value is an [async function](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/async_function). + * This only reports back what the JavaScript engine is seeing; + * in particular, the return value may not match the original source code if + * a transpilation tool was used. + * + * ```js + * util.types.isAsyncFunction(function foo() {}); // Returns false + * util.types.isAsyncFunction(async function foo() {}); // Returns true + * ``` + * @since v10.0.0 + */ + function isAsyncFunction(object: unknown): boolean; + /** + * Returns `true` if the value is a `BigInt64Array` instance. + * + * ```js + * util.types.isBigInt64Array(new BigInt64Array()); // Returns true + * util.types.isBigInt64Array(new BigUint64Array()); // Returns false + * ``` + * @since v10.0.0 + */ + function isBigInt64Array(value: unknown): value is BigInt64Array; + /** + * Returns `true` if the value is a `BigUint64Array` instance. + * + * ```js + * util.types.isBigUint64Array(new BigInt64Array()); // Returns false + * util.types.isBigUint64Array(new BigUint64Array()); // Returns true + * ``` + * @since v10.0.0 + */ + function isBigUint64Array(value: unknown): value is BigUint64Array; + /** + * Returns `true` if the value is a boolean object, e.g. created + * by `new Boolean()`. + * + * ```js + * util.types.isBooleanObject(false); // Returns false + * util.types.isBooleanObject(true); // Returns false + * util.types.isBooleanObject(new Boolean(false)); // Returns true + * util.types.isBooleanObject(new Boolean(true)); // Returns true + * util.types.isBooleanObject(Boolean(false)); // Returns false + * util.types.isBooleanObject(Boolean(true)); // Returns false + * ``` + * @since v10.0.0 + */ + function isBooleanObject(object: unknown): object is Boolean; + /** + * Returns `true` if the value is any boxed primitive object, e.g. created + * by `new Boolean()`, `new String()` or `Object(Symbol())`. + * + * For example: + * + * ```js + * util.types.isBoxedPrimitive(false); // Returns false + * util.types.isBoxedPrimitive(new Boolean(false)); // Returns true + * util.types.isBoxedPrimitive(Symbol('foo')); // Returns false + * util.types.isBoxedPrimitive(Object(Symbol('foo'))); // Returns true + * util.types.isBoxedPrimitive(Object(BigInt(5))); // Returns true + * ``` + * @since v10.11.0 + */ + function isBoxedPrimitive(object: unknown): object is String | Number | BigInt | Boolean | Symbol; + /** + * Returns `true` if the value is a built-in [`DataView`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView) instance. + * + * ```js + * const ab = new ArrayBuffer(20); + * util.types.isDataView(new DataView(ab)); // Returns true + * util.types.isDataView(new Float64Array()); // Returns false + * ``` + * + * See also [`ArrayBuffer.isView()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer/isView). + * @since v10.0.0 + */ + function isDataView(object: unknown): object is DataView; + /** + * Returns `true` if the value is a built-in [`Date`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date) instance. + * + * ```js + * util.types.isDate(new Date()); // Returns true + * ``` + * @since v10.0.0 + */ + function isDate(object: unknown): object is Date; + /** + * Returns `true` if the value is a native `External` value. + * + * A native `External` value is a special type of object that contains a + * raw C++ pointer (`void*`) for access from native code, and has no other + * properties. Such objects are created either by Node.js internals or native + * addons. In JavaScript, they are [frozen](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/freeze) objects with a`null` prototype. + * + * ```c + * #include + * #include + * napi_value result; + * static napi_value MyNapi(napi_env env, napi_callback_info info) { + * int* raw = (int*) malloc(1024); + * napi_status status = napi_create_external(env, (void*) raw, NULL, NULL, &result); + * if (status != napi_ok) { + * napi_throw_error(env, NULL, "napi_create_external failed"); + * return NULL; + * } + * return result; + * } + * ... + * DECLARE_NAPI_PROPERTY("myNapi", MyNapi) + * ... + * ``` + * + * ```js + * const native = require('napi_addon.node'); + * const data = native.myNapi(); + * util.types.isExternal(data); // returns true + * util.types.isExternal(0); // returns false + * util.types.isExternal(new String('foo')); // returns false + * ``` + * + * For further information on `napi_create_external`, refer to `napi_create_external()`. + * @since v10.0.0 + */ + function isExternal(object: unknown): boolean; + /** + * Returns `true` if the value is a built-in [`Float32Array`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Float32Array) instance. + * + * ```js + * util.types.isFloat32Array(new ArrayBuffer()); // Returns false + * util.types.isFloat32Array(new Float32Array()); // Returns true + * util.types.isFloat32Array(new Float64Array()); // Returns false + * ``` + * @since v10.0.0 + */ + function isFloat32Array(object: unknown): object is Float32Array; + /** + * Returns `true` if the value is a built-in [`Float64Array`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Float64Array) instance. + * + * ```js + * util.types.isFloat64Array(new ArrayBuffer()); // Returns false + * util.types.isFloat64Array(new Uint8Array()); // Returns false + * util.types.isFloat64Array(new Float64Array()); // Returns true + * ``` + * @since v10.0.0 + */ + function isFloat64Array(object: unknown): object is Float64Array; + /** + * Returns `true` if the value is a generator function. + * This only reports back what the JavaScript engine is seeing; + * in particular, the return value may not match the original source code if + * a transpilation tool was used. + * + * ```js + * util.types.isGeneratorFunction(function foo() {}); // Returns false + * util.types.isGeneratorFunction(function* foo() {}); // Returns true + * ``` + * @since v10.0.0 + */ + function isGeneratorFunction(object: unknown): object is GeneratorFunction; + /** + * Returns `true` if the value is a generator object as returned from a + * built-in generator function. + * This only reports back what the JavaScript engine is seeing; + * in particular, the return value may not match the original source code if + * a transpilation tool was used. + * + * ```js + * function* foo() {} + * const generator = foo(); + * util.types.isGeneratorObject(generator); // Returns true + * ``` + * @since v10.0.0 + */ + function isGeneratorObject(object: unknown): object is Generator; + /** + * Returns `true` if the value is a built-in [`Int8Array`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Int8Array) instance. + * + * ```js + * util.types.isInt8Array(new ArrayBuffer()); // Returns false + * util.types.isInt8Array(new Int8Array()); // Returns true + * util.types.isInt8Array(new Float64Array()); // Returns false + * ``` + * @since v10.0.0 + */ + function isInt8Array(object: unknown): object is Int8Array; + /** + * Returns `true` if the value is a built-in [`Int16Array`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Int16Array) instance. + * + * ```js + * util.types.isInt16Array(new ArrayBuffer()); // Returns false + * util.types.isInt16Array(new Int16Array()); // Returns true + * util.types.isInt16Array(new Float64Array()); // Returns false + * ``` + * @since v10.0.0 + */ + function isInt16Array(object: unknown): object is Int16Array; + /** + * Returns `true` if the value is a built-in [`Int32Array`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Int32Array) instance. + * + * ```js + * util.types.isInt32Array(new ArrayBuffer()); // Returns false + * util.types.isInt32Array(new Int32Array()); // Returns true + * util.types.isInt32Array(new Float64Array()); // Returns false + * ``` + * @since v10.0.0 + */ + function isInt32Array(object: unknown): object is Int32Array; + /** + * Returns `true` if the value is a built-in [`Map`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map) instance. + * + * ```js + * util.types.isMap(new Map()); // Returns true + * ``` + * @since v10.0.0 + */ + function isMap(object: T | {}): object is T extends ReadonlyMap ? (unknown extends T ? never : ReadonlyMap) : Map; + /** + * Returns `true` if the value is an iterator returned for a built-in [`Map`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map) instance. + * + * ```js + * const map = new Map(); + * util.types.isMapIterator(map.keys()); // Returns true + * util.types.isMapIterator(map.values()); // Returns true + * util.types.isMapIterator(map.entries()); // Returns true + * util.types.isMapIterator(map[Symbol.iterator]()); // Returns true + * ``` + * @since v10.0.0 + */ + function isMapIterator(object: unknown): boolean; + /** + * Returns `true` if the value is an instance of a [Module Namespace Object](https://tc39.github.io/ecma262/#sec-module-namespace-exotic-objects). + * + * ```js + * import * as ns from './a.js'; + * + * util.types.isModuleNamespaceObject(ns); // Returns true + * ``` + * @since v10.0.0 + */ + function isModuleNamespaceObject(value: unknown): boolean; + /** + * Returns `true` if the value is an instance of a built-in `Error` type. + * + * ```js + * util.types.isNativeError(new Error()); // Returns true + * util.types.isNativeError(new TypeError()); // Returns true + * util.types.isNativeError(new RangeError()); // Returns true + * ``` + * @since v10.0.0 + */ + function isNativeError(object: unknown): object is Error; + /** + * Returns `true` if the value is a number object, e.g. created + * by `new Number()`. + * + * ```js + * util.types.isNumberObject(0); // Returns false + * util.types.isNumberObject(new Number(0)); // Returns true + * ``` + * @since v10.0.0 + */ + function isNumberObject(object: unknown): object is Number; + /** + * Returns `true` if the value is a built-in [`Promise`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise). + * + * ```js + * util.types.isPromise(Promise.resolve(42)); // Returns true + * ``` + * @since v10.0.0 + */ + function isPromise(object: unknown): object is Promise; + /** + * Returns `true` if the value is a [`Proxy`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Proxy) instance. + * + * ```js + * const target = {}; + * const proxy = new Proxy(target, {}); + * util.types.isProxy(target); // Returns false + * util.types.isProxy(proxy); // Returns true + * ``` + * @since v10.0.0 + */ + function isProxy(object: unknown): boolean; + /** + * Returns `true` if the value is a regular expression object. + * + * ```js + * util.types.isRegExp(/abc/); // Returns true + * util.types.isRegExp(new RegExp('abc')); // Returns true + * ``` + * @since v10.0.0 + */ + function isRegExp(object: unknown): object is RegExp; + /** + * Returns `true` if the value is a built-in [`Set`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set) instance. + * + * ```js + * util.types.isSet(new Set()); // Returns true + * ``` + * @since v10.0.0 + */ + function isSet(object: T | {}): object is T extends ReadonlySet ? (unknown extends T ? never : ReadonlySet) : Set; + /** + * Returns `true` if the value is an iterator returned for a built-in [`Set`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set) instance. + * + * ```js + * const set = new Set(); + * util.types.isSetIterator(set.keys()); // Returns true + * util.types.isSetIterator(set.values()); // Returns true + * util.types.isSetIterator(set.entries()); // Returns true + * util.types.isSetIterator(set[Symbol.iterator]()); // Returns true + * ``` + * @since v10.0.0 + */ + function isSetIterator(object: unknown): boolean; + /** + * Returns `true` if the value is a built-in [`SharedArrayBuffer`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SharedArrayBuffer) instance. + * This does _not_ include [`ArrayBuffer`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer) instances. Usually, it is + * desirable to test for both; See `util.types.isAnyArrayBuffer()` for that. + * + * ```js + * util.types.isSharedArrayBuffer(new ArrayBuffer()); // Returns false + * util.types.isSharedArrayBuffer(new SharedArrayBuffer()); // Returns true + * ``` + * @since v10.0.0 + */ + function isSharedArrayBuffer(object: unknown): object is SharedArrayBuffer; + /** + * Returns `true` if the value is a string object, e.g. created + * by `new String()`. + * + * ```js + * util.types.isStringObject('foo'); // Returns false + * util.types.isStringObject(new String('foo')); // Returns true + * ``` + * @since v10.0.0 + */ + function isStringObject(object: unknown): object is String; + /** + * Returns `true` if the value is a symbol object, created + * by calling `Object()` on a `Symbol` primitive. + * + * ```js + * const symbol = Symbol('foo'); + * util.types.isSymbolObject(symbol); // Returns false + * util.types.isSymbolObject(Object(symbol)); // Returns true + * ``` + * @since v10.0.0 + */ + function isSymbolObject(object: unknown): object is Symbol; + /** + * Returns `true` if the value is a built-in [`TypedArray`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray) instance. + * + * ```js + * util.types.isTypedArray(new ArrayBuffer()); // Returns false + * util.types.isTypedArray(new Uint8Array()); // Returns true + * util.types.isTypedArray(new Float64Array()); // Returns true + * ``` + * + * See also [`ArrayBuffer.isView()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer/isView). + * @since v10.0.0 + */ + function isTypedArray(object: unknown): object is NodeJS.TypedArray; + /** + * Returns `true` if the value is a built-in [`Uint8Array`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array) instance. + * + * ```js + * util.types.isUint8Array(new ArrayBuffer()); // Returns false + * util.types.isUint8Array(new Uint8Array()); // Returns true + * util.types.isUint8Array(new Float64Array()); // Returns false + * ``` + * @since v10.0.0 + */ + function isUint8Array(object: unknown): object is Uint8Array; + /** + * Returns `true` if the value is a built-in [`Uint8ClampedArray`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8ClampedArray) instance. + * + * ```js + * util.types.isUint8ClampedArray(new ArrayBuffer()); // Returns false + * util.types.isUint8ClampedArray(new Uint8ClampedArray()); // Returns true + * util.types.isUint8ClampedArray(new Float64Array()); // Returns false + * ``` + * @since v10.0.0 + */ + function isUint8ClampedArray(object: unknown): object is Uint8ClampedArray; + /** + * Returns `true` if the value is a built-in [`Uint16Array`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint16Array) instance. + * + * ```js + * util.types.isUint16Array(new ArrayBuffer()); // Returns false + * util.types.isUint16Array(new Uint16Array()); // Returns true + * util.types.isUint16Array(new Float64Array()); // Returns false + * ``` + * @since v10.0.0 + */ + function isUint16Array(object: unknown): object is Uint16Array; + /** + * Returns `true` if the value is a built-in [`Uint32Array`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint32Array) instance. + * + * ```js + * util.types.isUint32Array(new ArrayBuffer()); // Returns false + * util.types.isUint32Array(new Uint32Array()); // Returns true + * util.types.isUint32Array(new Float64Array()); // Returns false + * ``` + * @since v10.0.0 + */ + function isUint32Array(object: unknown): object is Uint32Array; + /** + * Returns `true` if the value is a built-in [`WeakMap`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakMap) instance. + * + * ```js + * util.types.isWeakMap(new WeakMap()); // Returns true + * ``` + * @since v10.0.0 + */ + function isWeakMap(object: unknown): object is WeakMap; + /** + * Returns `true` if the value is a built-in [`WeakSet`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakSet) instance. + * + * ```js + * util.types.isWeakSet(new WeakSet()); // Returns true + * ``` + * @since v10.0.0 + */ + function isWeakSet(object: unknown): object is WeakSet; + /** + * Returns `true` if `value` is a `KeyObject`, `false` otherwise. + * @since v16.2.0 + */ + function isKeyObject(object: unknown): object is KeyObject; + /** + * Returns `true` if `value` is a `CryptoKey`, `false` otherwise. + * @since v16.2.0 + */ + function isCryptoKey(object: unknown): object is webcrypto.CryptoKey; +} +declare module 'node:util' { + export * from 'util'; +} +declare module 'node:util/types' { + export * from 'util/types'; +} diff --git a/node_modules/@types/node/ts4.8/v8.d.ts b/node_modules/@types/node/ts4.8/v8.d.ts new file mode 100644 index 000000000..6685dc253 --- /dev/null +++ b/node_modules/@types/node/ts4.8/v8.d.ts @@ -0,0 +1,396 @@ +/** + * The `v8` module exposes APIs that are specific to the version of [V8](https://developers.google.com/v8/) built into the Node.js binary. It can be accessed using: + * + * ```js + * const v8 = require('v8'); + * ``` + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/v8.js) + */ +declare module 'v8' { + import { Readable } from 'node:stream'; + interface HeapSpaceInfo { + space_name: string; + space_size: number; + space_used_size: number; + space_available_size: number; + physical_space_size: number; + } + // ** Signifies if the --zap_code_space option is enabled or not. 1 == enabled, 0 == disabled. */ + type DoesZapCodeSpaceFlag = 0 | 1; + interface HeapInfo { + total_heap_size: number; + total_heap_size_executable: number; + total_physical_size: number; + total_available_size: number; + used_heap_size: number; + heap_size_limit: number; + malloced_memory: number; + peak_malloced_memory: number; + does_zap_garbage: DoesZapCodeSpaceFlag; + number_of_native_contexts: number; + number_of_detached_contexts: number; + } + interface HeapCodeStatistics { + code_and_metadata_size: number; + bytecode_and_metadata_size: number; + external_script_source_size: number; + } + /** + * Returns an integer representing a version tag derived from the V8 version, + * command-line flags, and detected CPU features. This is useful for determining + * whether a `vm.Script` `cachedData` buffer is compatible with this instance + * of V8. + * + * ```js + * console.log(v8.cachedDataVersionTag()); // 3947234607 + * // The value returned by v8.cachedDataVersionTag() is derived from the V8 + * // version, command-line flags, and detected CPU features. Test that the value + * // does indeed update when flags are toggled. + * v8.setFlagsFromString('--allow_natives_syntax'); + * console.log(v8.cachedDataVersionTag()); // 183726201 + * ``` + * @since v8.0.0 + */ + function cachedDataVersionTag(): number; + /** + * Returns an object with the following properties: + * + * `does_zap_garbage` is a 0/1 boolean, which signifies whether the`--zap_code_space` option is enabled or not. This makes V8 overwrite heap + * garbage with a bit pattern. The RSS footprint (resident set size) gets bigger + * because it continuously touches all heap pages and that makes them less likely + * to get swapped out by the operating system. + * + * `number_of_native_contexts` The value of native\_context is the number of the + * top-level contexts currently active. Increase of this number over time indicates + * a memory leak. + * + * `number_of_detached_contexts` The value of detached\_context is the number + * of contexts that were detached and not yet garbage collected. This number + * being non-zero indicates a potential memory leak. + * + * ```js + * { + * total_heap_size: 7326976, + * total_heap_size_executable: 4194304, + * total_physical_size: 7326976, + * total_available_size: 1152656, + * used_heap_size: 3476208, + * heap_size_limit: 1535115264, + * malloced_memory: 16384, + * peak_malloced_memory: 1127496, + * does_zap_garbage: 0, + * number_of_native_contexts: 1, + * number_of_detached_contexts: 0 + * } + * ``` + * @since v1.0.0 + */ + function getHeapStatistics(): HeapInfo; + /** + * Returns statistics about the V8 heap spaces, i.e. the segments which make up + * the V8 heap. Neither the ordering of heap spaces, nor the availability of a + * heap space can be guaranteed as the statistics are provided via the + * V8[`GetHeapSpaceStatistics`](https://v8docs.nodesource.com/node-13.2/d5/dda/classv8_1_1_isolate.html#ac673576f24fdc7a33378f8f57e1d13a4) function and may change from one V8 version to the + * next. + * + * The value returned is an array of objects containing the following properties: + * + * ```json + * [ + * { + * "space_name": "new_space", + * "space_size": 2063872, + * "space_used_size": 951112, + * "space_available_size": 80824, + * "physical_space_size": 2063872 + * }, + * { + * "space_name": "old_space", + * "space_size": 3090560, + * "space_used_size": 2493792, + * "space_available_size": 0, + * "physical_space_size": 3090560 + * }, + * { + * "space_name": "code_space", + * "space_size": 1260160, + * "space_used_size": 644256, + * "space_available_size": 960, + * "physical_space_size": 1260160 + * }, + * { + * "space_name": "map_space", + * "space_size": 1094160, + * "space_used_size": 201608, + * "space_available_size": 0, + * "physical_space_size": 1094160 + * }, + * { + * "space_name": "large_object_space", + * "space_size": 0, + * "space_used_size": 0, + * "space_available_size": 1490980608, + * "physical_space_size": 0 + * } + * ] + * ``` + * @since v6.0.0 + */ + function getHeapSpaceStatistics(): HeapSpaceInfo[]; + /** + * The `v8.setFlagsFromString()` method can be used to programmatically set + * V8 command-line flags. This method should be used with care. Changing settings + * after the VM has started may result in unpredictable behavior, including + * crashes and data loss; or it may simply do nothing. + * + * The V8 options available for a version of Node.js may be determined by running`node --v8-options`. + * + * Usage: + * + * ```js + * // Print GC events to stdout for one minute. + * const v8 = require('v8'); + * v8.setFlagsFromString('--trace_gc'); + * setTimeout(() => { v8.setFlagsFromString('--notrace_gc'); }, 60e3); + * ``` + * @since v1.0.0 + */ + function setFlagsFromString(flags: string): void; + /** + * Generates a snapshot of the current V8 heap and returns a Readable + * Stream that may be used to read the JSON serialized representation. + * This JSON stream format is intended to be used with tools such as + * Chrome DevTools. The JSON schema is undocumented and specific to the + * V8 engine. Therefore, the schema may change from one version of V8 to the next. + * + * Creating a heap snapshot requires memory about twice the size of the heap at + * the time the snapshot is created. This results in the risk of OOM killers + * terminating the process. + * + * Generating a snapshot is a synchronous operation which blocks the event loop + * for a duration depending on the heap size. + * + * ```js + * // Print heap snapshot to the console + * const v8 = require('v8'); + * const stream = v8.getHeapSnapshot(); + * stream.pipe(process.stdout); + * ``` + * @since v11.13.0 + * @return A Readable Stream containing the V8 heap snapshot + */ + function getHeapSnapshot(): Readable; + /** + * Generates a snapshot of the current V8 heap and writes it to a JSON + * file. This file is intended to be used with tools such as Chrome + * DevTools. The JSON schema is undocumented and specific to the V8 + * engine, and may change from one version of V8 to the next. + * + * A heap snapshot is specific to a single V8 isolate. When using `worker threads`, a heap snapshot generated from the main thread will + * not contain any information about the workers, and vice versa. + * + * Creating a heap snapshot requires memory about twice the size of the heap at + * the time the snapshot is created. This results in the risk of OOM killers + * terminating the process. + * + * Generating a snapshot is a synchronous operation which blocks the event loop + * for a duration depending on the heap size. + * + * ```js + * const { writeHeapSnapshot } = require('v8'); + * const { + * Worker, + * isMainThread, + * parentPort + * } = require('worker_threads'); + * + * if (isMainThread) { + * const worker = new Worker(__filename); + * + * worker.once('message', (filename) => { + * console.log(`worker heapdump: ${filename}`); + * // Now get a heapdump for the main thread. + * console.log(`main thread heapdump: ${writeHeapSnapshot()}`); + * }); + * + * // Tell the worker to create a heapdump. + * worker.postMessage('heapdump'); + * } else { + * parentPort.once('message', (message) => { + * if (message === 'heapdump') { + * // Generate a heapdump for the worker + * // and return the filename to the parent. + * parentPort.postMessage(writeHeapSnapshot()); + * } + * }); + * } + * ``` + * @since v11.13.0 + * @param filename The file path where the V8 heap snapshot is to be saved. If not specified, a file name with the pattern `'Heap-${yyyymmdd}-${hhmmss}-${pid}-${thread_id}.heapsnapshot'` will be + * generated, where `{pid}` will be the PID of the Node.js process, `{thread_id}` will be `0` when `writeHeapSnapshot()` is called from the main Node.js thread or the id of a + * worker thread. + * @return The filename where the snapshot was saved. + */ + function writeHeapSnapshot(filename?: string): string; + /** + * Returns an object with the following properties: + * + * ```js + * { + * code_and_metadata_size: 212208, + * bytecode_and_metadata_size: 161368, + * external_script_source_size: 1410794 + * } + * ``` + * @since v12.8.0 + */ + function getHeapCodeStatistics(): HeapCodeStatistics; + /** + * @since v8.0.0 + */ + class Serializer { + /** + * Writes out a header, which includes the serialization format version. + */ + writeHeader(): void; + /** + * Serializes a JavaScript value and adds the serialized representation to the + * internal buffer. + * + * This throws an error if `value` cannot be serialized. + */ + writeValue(val: any): boolean; + /** + * Returns the stored internal buffer. This serializer should not be used once + * the buffer is released. Calling this method results in undefined behavior + * if a previous write has failed. + */ + releaseBuffer(): Buffer; + /** + * Marks an `ArrayBuffer` as having its contents transferred out of band. + * Pass the corresponding `ArrayBuffer` in the deserializing context to `deserializer.transferArrayBuffer()`. + * @param id A 32-bit unsigned integer. + * @param arrayBuffer An `ArrayBuffer` instance. + */ + transferArrayBuffer(id: number, arrayBuffer: ArrayBuffer): void; + /** + * Write a raw 32-bit unsigned integer. + * For use inside of a custom `serializer._writeHostObject()`. + */ + writeUint32(value: number): void; + /** + * Write a raw 64-bit unsigned integer, split into high and low 32-bit parts. + * For use inside of a custom `serializer._writeHostObject()`. + */ + writeUint64(hi: number, lo: number): void; + /** + * Write a JS `number` value. + * For use inside of a custom `serializer._writeHostObject()`. + */ + writeDouble(value: number): void; + /** + * Write raw bytes into the serializer’s internal buffer. The deserializer + * will require a way to compute the length of the buffer. + * For use inside of a custom `serializer._writeHostObject()`. + */ + writeRawBytes(buffer: NodeJS.TypedArray): void; + } + /** + * A subclass of `Serializer` that serializes `TypedArray`(in particular `Buffer`) and `DataView` objects as host objects, and only + * stores the part of their underlying `ArrayBuffer`s that they are referring to. + * @since v8.0.0 + */ + class DefaultSerializer extends Serializer {} + /** + * @since v8.0.0 + */ + class Deserializer { + constructor(data: NodeJS.TypedArray); + /** + * Reads and validates a header (including the format version). + * May, for example, reject an invalid or unsupported wire format. In that case, + * an `Error` is thrown. + */ + readHeader(): boolean; + /** + * Deserializes a JavaScript value from the buffer and returns it. + */ + readValue(): any; + /** + * Marks an `ArrayBuffer` as having its contents transferred out of band. + * Pass the corresponding `ArrayBuffer` in the serializing context to `serializer.transferArrayBuffer()` (or return the `id` from `serializer._getSharedArrayBufferId()` in the case of + * `SharedArrayBuffer`s). + * @param id A 32-bit unsigned integer. + * @param arrayBuffer An `ArrayBuffer` instance. + */ + transferArrayBuffer(id: number, arrayBuffer: ArrayBuffer): void; + /** + * Reads the underlying wire format version. Likely mostly to be useful to + * legacy code reading old wire format versions. May not be called before`.readHeader()`. + */ + getWireFormatVersion(): number; + /** + * Read a raw 32-bit unsigned integer and return it. + * For use inside of a custom `deserializer._readHostObject()`. + */ + readUint32(): number; + /** + * Read a raw 64-bit unsigned integer and return it as an array `[hi, lo]`with two 32-bit unsigned integer entries. + * For use inside of a custom `deserializer._readHostObject()`. + */ + readUint64(): [number, number]; + /** + * Read a JS `number` value. + * For use inside of a custom `deserializer._readHostObject()`. + */ + readDouble(): number; + /** + * Read raw bytes from the deserializer’s internal buffer. The `length` parameter + * must correspond to the length of the buffer that was passed to `serializer.writeRawBytes()`. + * For use inside of a custom `deserializer._readHostObject()`. + */ + readRawBytes(length: number): Buffer; + } + /** + * A subclass of `Deserializer` corresponding to the format written by `DefaultSerializer`. + * @since v8.0.0 + */ + class DefaultDeserializer extends Deserializer {} + /** + * Uses a `DefaultSerializer` to serialize `value` into a buffer. + * + * `ERR_BUFFER_TOO_LARGE` will be thrown when trying to + * serialize a huge object which requires buffer + * larger than `buffer.constants.MAX_LENGTH`. + * @since v8.0.0 + */ + function serialize(value: any): Buffer; + /** + * Uses a `DefaultDeserializer` with default options to read a JS value + * from a buffer. + * @since v8.0.0 + * @param buffer A buffer returned by {@link serialize}. + */ + function deserialize(buffer: NodeJS.TypedArray): any; + /** + * The `v8.takeCoverage()` method allows the user to write the coverage started by `NODE_V8_COVERAGE` to disk on demand. This method can be invoked multiple + * times during the lifetime of the process. Each time the execution counter will + * be reset and a new coverage report will be written to the directory specified + * by `NODE_V8_COVERAGE`. + * + * When the process is about to exit, one last coverage will still be written to + * disk unless {@link stopCoverage} is invoked before the process exits. + * @since v15.1.0, v14.18.0, v12.22.0 + */ + function takeCoverage(): void; + /** + * The `v8.stopCoverage()` method allows the user to stop the coverage collection + * started by `NODE_V8_COVERAGE`, so that V8 can release the execution count + * records and optimize code. This can be used in conjunction with {@link takeCoverage} if the user wants to collect the coverage on demand. + * @since v15.1.0, v14.18.0, v12.22.0 + */ + function stopCoverage(): void; +} +declare module 'node:v8' { + export * from 'v8'; +} diff --git a/node_modules/@types/node/ts4.8/vm.d.ts b/node_modules/@types/node/ts4.8/vm.d.ts new file mode 100644 index 000000000..c96513a50 --- /dev/null +++ b/node_modules/@types/node/ts4.8/vm.d.ts @@ -0,0 +1,509 @@ +/** + * The `vm` module enables compiling and running code within V8 Virtual + * Machine contexts. + * + * **The `vm` module is not a security** + * **mechanism. Do not use it to run untrusted code.** + * + * JavaScript code can be compiled and run immediately or + * compiled, saved, and run later. + * + * A common use case is to run the code in a different V8 Context. This means + * invoked code has a different global object than the invoking code. + * + * One can provide the context by `contextifying` an + * object. The invoked code treats any property in the context like a + * global variable. Any changes to global variables caused by the invoked + * code are reflected in the context object. + * + * ```js + * const vm = require('vm'); + * + * const x = 1; + * + * const context = { x: 2 }; + * vm.createContext(context); // Contextify the object. + * + * const code = 'x += 40; var y = 17;'; + * // `x` and `y` are global variables in the context. + * // Initially, x has the value 2 because that is the value of context.x. + * vm.runInContext(code, context); + * + * console.log(context.x); // 42 + * console.log(context.y); // 17 + * + * console.log(x); // 1; y is not defined. + * ``` + * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/vm.js) + */ +declare module 'vm' { + interface Context extends NodeJS.Dict {} + interface BaseOptions { + /** + * Specifies the filename used in stack traces produced by this script. + * Default: `''`. + */ + filename?: string | undefined; + /** + * Specifies the line number offset that is displayed in stack traces produced by this script. + * Default: `0`. + */ + lineOffset?: number | undefined; + /** + * Specifies the column number offset that is displayed in stack traces produced by this script. + * @default 0 + */ + columnOffset?: number | undefined; + } + interface ScriptOptions extends BaseOptions { + displayErrors?: boolean | undefined; + timeout?: number | undefined; + cachedData?: Buffer | undefined; + /** @deprecated in favor of `script.createCachedData()` */ + produceCachedData?: boolean | undefined; + } + interface RunningScriptOptions extends BaseOptions { + /** + * When `true`, if an `Error` occurs while compiling the `code`, the line of code causing the error is attached to the stack trace. + * Default: `true`. + */ + displayErrors?: boolean | undefined; + /** + * Specifies the number of milliseconds to execute code before terminating execution. + * If execution is terminated, an `Error` will be thrown. This value must be a strictly positive integer. + */ + timeout?: number | undefined; + /** + * If `true`, the execution will be terminated when `SIGINT` (Ctrl+C) is received. + * Existing handlers for the event that have been attached via `process.on('SIGINT')` will be disabled during script execution, but will continue to work after that. + * If execution is terminated, an `Error` will be thrown. + * Default: `false`. + */ + breakOnSigint?: boolean | undefined; + /** + * If set to `afterEvaluate`, microtasks will be run immediately after the script has run. + */ + microtaskMode?: 'afterEvaluate' | undefined; + } + interface CompileFunctionOptions extends BaseOptions { + /** + * Provides an optional data with V8's code cache data for the supplied source. + */ + cachedData?: Buffer | undefined; + /** + * Specifies whether to produce new cache data. + * Default: `false`, + */ + produceCachedData?: boolean | undefined; + /** + * The sandbox/context in which the said function should be compiled in. + */ + parsingContext?: Context | undefined; + /** + * An array containing a collection of context extensions (objects wrapping the current scope) to be applied while compiling + */ + contextExtensions?: Object[] | undefined; + } + interface CreateContextOptions { + /** + * Human-readable name of the newly created context. + * @default 'VM Context i' Where i is an ascending numerical index of the created context. + */ + name?: string | undefined; + /** + * Corresponds to the newly created context for display purposes. + * The origin should be formatted like a `URL`, but with only the scheme, host, and port (if necessary), + * like the value of the `url.origin` property of a URL object. + * Most notably, this string should omit the trailing slash, as that denotes a path. + * @default '' + */ + origin?: string | undefined; + codeGeneration?: + | { + /** + * If set to false any calls to eval or function constructors (Function, GeneratorFunction, etc) + * will throw an EvalError. + * @default true + */ + strings?: boolean | undefined; + /** + * If set to false any attempt to compile a WebAssembly module will throw a WebAssembly.CompileError. + * @default true + */ + wasm?: boolean | undefined; + } + | undefined; + /** + * If set to `afterEvaluate`, microtasks will be run immediately after the script has run. + */ + microtaskMode?: 'afterEvaluate' | undefined; + } + type MeasureMemoryMode = 'summary' | 'detailed'; + interface MeasureMemoryOptions { + /** + * @default 'summary' + */ + mode?: MeasureMemoryMode | undefined; + context?: Context | undefined; + } + interface MemoryMeasurement { + total: { + jsMemoryEstimate: number; + jsMemoryRange: [number, number]; + }; + } + /** + * Instances of the `vm.Script` class contain precompiled scripts that can be + * executed in specific contexts. + * @since v0.3.1 + */ + class Script { + constructor(code: string, options?: ScriptOptions); + /** + * Runs the compiled code contained by the `vm.Script` object within the given`contextifiedObject` and returns the result. Running code does not have access + * to local scope. + * + * The following example compiles code that increments a global variable, sets + * the value of another global variable, then execute the code multiple times. + * The globals are contained in the `context` object. + * + * ```js + * const vm = require('vm'); + * + * const context = { + * animal: 'cat', + * count: 2 + * }; + * + * const script = new vm.Script('count += 1; name = "kitty";'); + * + * vm.createContext(context); + * for (let i = 0; i < 10; ++i) { + * script.runInContext(context); + * } + * + * console.log(context); + * // Prints: { animal: 'cat', count: 12, name: 'kitty' } + * ``` + * + * Using the `timeout` or `breakOnSigint` options will result in new event loops + * and corresponding threads being started, which have a non-zero performance + * overhead. + * @since v0.3.1 + * @param contextifiedObject A `contextified` object as returned by the `vm.createContext()` method. + * @return the result of the very last statement executed in the script. + */ + runInContext(contextifiedObject: Context, options?: RunningScriptOptions): any; + /** + * First contextifies the given `contextObject`, runs the compiled code contained + * by the `vm.Script` object within the created context, and returns the result. + * Running code does not have access to local scope. + * + * The following example compiles code that sets a global variable, then executes + * the code multiple times in different contexts. The globals are set on and + * contained within each individual `context`. + * + * ```js + * const vm = require('vm'); + * + * const script = new vm.Script('globalVar = "set"'); + * + * const contexts = [{}, {}, {}]; + * contexts.forEach((context) => { + * script.runInNewContext(context); + * }); + * + * console.log(contexts); + * // Prints: [{ globalVar: 'set' }, { globalVar: 'set' }, { globalVar: 'set' }] + * ``` + * @since v0.3.1 + * @param contextObject An object that will be `contextified`. If `undefined`, a new object will be created. + * @return the result of the very last statement executed in the script. + */ + runInNewContext(contextObject?: Context, options?: RunningScriptOptions): any; + /** + * Runs the compiled code contained by the `vm.Script` within the context of the + * current `global` object. Running code does not have access to local scope, but _does_ have access to the current `global` object. + * + * The following example compiles code that increments a `global` variable then + * executes that code multiple times: + * + * ```js + * const vm = require('vm'); + * + * global.globalVar = 0; + * + * const script = new vm.Script('globalVar += 1', { filename: 'myfile.vm' }); + * + * for (let i = 0; i < 1000; ++i) { + * script.runInThisContext(); + * } + * + * console.log(globalVar); + * + * // 1000 + * ``` + * @since v0.3.1 + * @return the result of the very last statement executed in the script. + */ + runInThisContext(options?: RunningScriptOptions): any; + /** + * Creates a code cache that can be used with the `Script` constructor's`cachedData` option. Returns a `Buffer`. This method may be called at any + * time and any number of times. + * + * ```js + * const script = new vm.Script(` + * function add(a, b) { + * return a + b; + * } + * + * const x = add(1, 2); + * `); + * + * const cacheWithoutX = script.createCachedData(); + * + * script.runInThisContext(); + * + * const cacheWithX = script.createCachedData(); + * ``` + * @since v10.6.0 + */ + createCachedData(): Buffer; + /** @deprecated in favor of `script.createCachedData()` */ + cachedDataProduced?: boolean | undefined; + cachedDataRejected?: boolean | undefined; + cachedData?: Buffer | undefined; + } + /** + * If given a `contextObject`, the `vm.createContext()` method will `prepare + * that object` so that it can be used in calls to {@link runInContext} or `script.runInContext()`. Inside such scripts, + * the `contextObject` will be the global object, retaining all of its existing + * properties but also having the built-in objects and functions any standard [global object](https://es5.github.io/#x15.1) has. Outside of scripts run by the vm module, global variables + * will remain unchanged. + * + * ```js + * const vm = require('vm'); + * + * global.globalVar = 3; + * + * const context = { globalVar: 1 }; + * vm.createContext(context); + * + * vm.runInContext('globalVar *= 2;', context); + * + * console.log(context); + * // Prints: { globalVar: 2 } + * + * console.log(global.globalVar); + * // Prints: 3 + * ``` + * + * If `contextObject` is omitted (or passed explicitly as `undefined`), a new, + * empty `contextified` object will be returned. + * + * The `vm.createContext()` method is primarily useful for creating a single + * context that can be used to run multiple scripts. For instance, if emulating a + * web browser, the method can be used to create a single context representing a + * window's global object, then run all `` + +[Get supported base64-js with the Tidelift Subscription](https://tidelift.com/subscription/pkg/npm-base64-js?utm_source=npm-base64-js&utm_medium=referral&utm_campaign=readme) + +## methods + +`base64js` has three exposed functions, `byteLength`, `toByteArray` and `fromByteArray`, which both take a single argument. + +* `byteLength` - Takes a base64 string and returns length of byte array +* `toByteArray` - Takes a base64 string and returns a byte array +* `fromByteArray` - Takes a byte array and returns a base64 string + +## license + +MIT diff --git a/node_modules/base64-js/base64js.min.js b/node_modules/base64-js/base64js.min.js new file mode 100644 index 000000000..908ac83fd --- /dev/null +++ b/node_modules/base64-js/base64js.min.js @@ -0,0 +1 @@ +(function(a){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=a();else if("function"==typeof define&&define.amd)define([],a);else{var b;b="undefined"==typeof window?"undefined"==typeof global?"undefined"==typeof self?this:self:global:window,b.base64js=a()}})(function(){return function(){function b(d,e,g){function a(j,i){if(!e[j]){if(!d[j]){var f="function"==typeof require&&require;if(!i&&f)return f(j,!0);if(h)return h(j,!0);var c=new Error("Cannot find module '"+j+"'");throw c.code="MODULE_NOT_FOUND",c}var k=e[j]={exports:{}};d[j][0].call(k.exports,function(b){var c=d[j][1][b];return a(c||b)},k,k.exports,b,d,e,g)}return e[j].exports}for(var h="function"==typeof require&&require,c=0;c>16,j[k++]=255&b>>8,j[k++]=255&b;return 2===h&&(b=l[a.charCodeAt(c)]<<2|l[a.charCodeAt(c+1)]>>4,j[k++]=255&b),1===h&&(b=l[a.charCodeAt(c)]<<10|l[a.charCodeAt(c+1)]<<4|l[a.charCodeAt(c+2)]>>2,j[k++]=255&b>>8,j[k++]=255&b),j}function g(a){return k[63&a>>18]+k[63&a>>12]+k[63&a>>6]+k[63&a]}function h(a,b,c){for(var d,e=[],f=b;fj?j:g+f));return 1===d?(b=a[c-1],e.push(k[b>>2]+k[63&b<<4]+"==")):2===d&&(b=(a[c-2]<<8)+a[c-1],e.push(k[b>>10]+k[63&b>>4]+k[63&b<<2]+"=")),e.join("")}c.byteLength=function(a){var b=d(a),c=b[0],e=b[1];return 3*(c+e)/4-e},c.toByteArray=f,c.fromByteArray=j;for(var k=[],l=[],m="undefined"==typeof Uint8Array?Array:Uint8Array,n="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",o=0,p=n.length;o 0) { + throw new Error('Invalid string. Length must be a multiple of 4') + } + + // Trim off extra bytes after placeholder bytes are found + // See: https://github.com/beatgammit/base64-js/issues/42 + var validLen = b64.indexOf('=') + if (validLen === -1) validLen = len + + var placeHoldersLen = validLen === len + ? 0 + : 4 - (validLen % 4) + + return [validLen, placeHoldersLen] +} + +// base64 is 4/3 + up to two characters of the original data +function byteLength (b64) { + var lens = getLens(b64) + var validLen = lens[0] + var placeHoldersLen = lens[1] + return ((validLen + placeHoldersLen) * 3 / 4) - placeHoldersLen +} + +function _byteLength (b64, validLen, placeHoldersLen) { + return ((validLen + placeHoldersLen) * 3 / 4) - placeHoldersLen +} + +function toByteArray (b64) { + var tmp + var lens = getLens(b64) + var validLen = lens[0] + var placeHoldersLen = lens[1] + + var arr = new Arr(_byteLength(b64, validLen, placeHoldersLen)) + + var curByte = 0 + + // if there are placeholders, only get up to the last complete 4 chars + var len = placeHoldersLen > 0 + ? validLen - 4 + : validLen + + var i + for (i = 0; i < len; i += 4) { + tmp = + (revLookup[b64.charCodeAt(i)] << 18) | + (revLookup[b64.charCodeAt(i + 1)] << 12) | + (revLookup[b64.charCodeAt(i + 2)] << 6) | + revLookup[b64.charCodeAt(i + 3)] + arr[curByte++] = (tmp >> 16) & 0xFF + arr[curByte++] = (tmp >> 8) & 0xFF + arr[curByte++] = tmp & 0xFF + } + + if (placeHoldersLen === 2) { + tmp = + (revLookup[b64.charCodeAt(i)] << 2) | + (revLookup[b64.charCodeAt(i + 1)] >> 4) + arr[curByte++] = tmp & 0xFF + } + + if (placeHoldersLen === 1) { + tmp = + (revLookup[b64.charCodeAt(i)] << 10) | + (revLookup[b64.charCodeAt(i + 1)] << 4) | + (revLookup[b64.charCodeAt(i + 2)] >> 2) + arr[curByte++] = (tmp >> 8) & 0xFF + arr[curByte++] = tmp & 0xFF + } + + return arr +} + +function tripletToBase64 (num) { + return lookup[num >> 18 & 0x3F] + + lookup[num >> 12 & 0x3F] + + lookup[num >> 6 & 0x3F] + + lookup[num & 0x3F] +} + +function encodeChunk (uint8, start, end) { + var tmp + var output = [] + for (var i = start; i < end; i += 3) { + tmp = + ((uint8[i] << 16) & 0xFF0000) + + ((uint8[i + 1] << 8) & 0xFF00) + + (uint8[i + 2] & 0xFF) + output.push(tripletToBase64(tmp)) + } + return output.join('') +} + +function fromByteArray (uint8) { + var tmp + var len = uint8.length + var extraBytes = len % 3 // if we have 1 byte left, pad 2 bytes + var parts = [] + var maxChunkLength = 16383 // must be multiple of 3 + + // go through the array every three bytes, we'll deal with trailing stuff later + for (var i = 0, len2 = len - extraBytes; i < len2; i += maxChunkLength) { + parts.push(encodeChunk(uint8, i, (i + maxChunkLength) > len2 ? len2 : (i + maxChunkLength))) + } + + // pad the end with zeros, but make sure to not forget the extra bytes + if (extraBytes === 1) { + tmp = uint8[len - 1] + parts.push( + lookup[tmp >> 2] + + lookup[(tmp << 4) & 0x3F] + + '==' + ) + } else if (extraBytes === 2) { + tmp = (uint8[len - 2] << 8) + uint8[len - 1] + parts.push( + lookup[tmp >> 10] + + lookup[(tmp >> 4) & 0x3F] + + lookup[(tmp << 2) & 0x3F] + + '=' + ) + } + + return parts.join('') +} diff --git a/node_modules/base64-js/package.json b/node_modules/base64-js/package.json new file mode 100644 index 000000000..c3972e39f --- /dev/null +++ b/node_modules/base64-js/package.json @@ -0,0 +1,47 @@ +{ + "name": "base64-js", + "description": "Base64 encoding/decoding in pure JS", + "version": "1.5.1", + "author": "T. Jameson Little ", + "typings": "index.d.ts", + "bugs": { + "url": "https://github.com/beatgammit/base64-js/issues" + }, + "devDependencies": { + "babel-minify": "^0.5.1", + "benchmark": "^2.1.4", + "browserify": "^16.3.0", + "standard": "*", + "tape": "4.x" + }, + "homepage": "https://github.com/beatgammit/base64-js", + "keywords": [ + "base64" + ], + "license": "MIT", + "main": "index.js", + "repository": { + "type": "git", + "url": "git://github.com/beatgammit/base64-js.git" + }, + "scripts": { + "build": "browserify -s base64js -r ./ | minify > base64js.min.js", + "lint": "standard", + "test": "npm run lint && npm run unit", + "unit": "tape test/*.js" + }, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] +} diff --git a/node_modules/body-parser/HISTORY.md b/node_modules/body-parser/HISTORY.md new file mode 100644 index 000000000..e114f6af2 --- /dev/null +++ b/node_modules/body-parser/HISTORY.md @@ -0,0 +1,651 @@ +1.20.0 / 2022-04-02 +=================== + + * Fix error message for json parse whitespace in `strict` + * Fix internal error when inflated body exceeds limit + * Prevent loss of async hooks context + * Prevent hanging when request already read + * deps: depd@2.0.0 + - Replace internal `eval` usage with `Function` constructor + - Use instance methods on `process` to check for listeners + * deps: http-errors@2.0.0 + - deps: depd@2.0.0 + - deps: statuses@2.0.1 + * deps: on-finished@2.4.1 + * deps: qs@6.10.3 + * deps: raw-body@2.5.1 + - deps: http-errors@2.0.0 + +1.19.2 / 2022-02-15 +=================== + + * deps: bytes@3.1.2 + * deps: qs@6.9.7 + * Fix handling of `__proto__` keys + * deps: raw-body@2.4.3 + - deps: bytes@3.1.2 + +1.19.1 / 2021-12-10 +=================== + + * deps: bytes@3.1.1 + * deps: http-errors@1.8.1 + - deps: inherits@2.0.4 + - deps: toidentifier@1.0.1 + - deps: setprototypeof@1.2.0 + * deps: qs@6.9.6 + * deps: raw-body@2.4.2 + - deps: bytes@3.1.1 + - deps: http-errors@1.8.1 + * deps: safe-buffer@5.2.1 + * deps: type-is@~1.6.18 + +1.19.0 / 2019-04-25 +=================== + + * deps: bytes@3.1.0 + - Add petabyte (`pb`) support + * deps: http-errors@1.7.2 + - Set constructor name when possible + - deps: setprototypeof@1.1.1 + - deps: statuses@'>= 1.5.0 < 2' + * deps: iconv-lite@0.4.24 + - Added encoding MIK + * deps: qs@6.7.0 + - Fix parsing array brackets after index + * deps: raw-body@2.4.0 + - deps: bytes@3.1.0 + - deps: http-errors@1.7.2 + - deps: iconv-lite@0.4.24 + * deps: type-is@~1.6.17 + - deps: mime-types@~2.1.24 + - perf: prevent internal `throw` on invalid type + +1.18.3 / 2018-05-14 +=================== + + * Fix stack trace for strict json parse error + * deps: depd@~1.1.2 + - perf: remove argument reassignment + * deps: http-errors@~1.6.3 + - deps: depd@~1.1.2 + - deps: setprototypeof@1.1.0 + - deps: statuses@'>= 1.3.1 < 2' + * deps: iconv-lite@0.4.23 + - Fix loading encoding with year appended + - Fix deprecation warnings on Node.js 10+ + * deps: qs@6.5.2 + * deps: raw-body@2.3.3 + - deps: http-errors@1.6.3 + - deps: iconv-lite@0.4.23 + * deps: type-is@~1.6.16 + - deps: mime-types@~2.1.18 + +1.18.2 / 2017-09-22 +=================== + + * deps: debug@2.6.9 + * perf: remove argument reassignment + +1.18.1 / 2017-09-12 +=================== + + * deps: content-type@~1.0.4 + - perf: remove argument reassignment + - perf: skip parameter parsing when no parameters + * deps: iconv-lite@0.4.19 + - Fix ISO-8859-1 regression + - Update Windows-1255 + * deps: qs@6.5.1 + - Fix parsing & compacting very deep objects + * deps: raw-body@2.3.2 + - deps: iconv-lite@0.4.19 + +1.18.0 / 2017-09-08 +=================== + + * Fix JSON strict violation error to match native parse error + * Include the `body` property on verify errors + * Include the `type` property on all generated errors + * Use `http-errors` to set status code on errors + * deps: bytes@3.0.0 + * deps: debug@2.6.8 + * deps: depd@~1.1.1 + - Remove unnecessary `Buffer` loading + * deps: http-errors@~1.6.2 + - deps: depd@1.1.1 + * deps: iconv-lite@0.4.18 + - Add support for React Native + - Add a warning if not loaded as utf-8 + - Fix CESU-8 decoding in Node.js 8 + - Improve speed of ISO-8859-1 encoding + * deps: qs@6.5.0 + * deps: raw-body@2.3.1 + - Use `http-errors` for standard emitted errors + - deps: bytes@3.0.0 + - deps: iconv-lite@0.4.18 + - perf: skip buffer decoding on overage chunk + * perf: prevent internal `throw` when missing charset + +1.17.2 / 2017-05-17 +=================== + + * deps: debug@2.6.7 + - Fix `DEBUG_MAX_ARRAY_LENGTH` + - deps: ms@2.0.0 + * deps: type-is@~1.6.15 + - deps: mime-types@~2.1.15 + +1.17.1 / 2017-03-06 +=================== + + * deps: qs@6.4.0 + - Fix regression parsing keys starting with `[` + +1.17.0 / 2017-03-01 +=================== + + * deps: http-errors@~1.6.1 + - Make `message` property enumerable for `HttpError`s + - deps: setprototypeof@1.0.3 + * deps: qs@6.3.1 + - Fix compacting nested arrays + +1.16.1 / 2017-02-10 +=================== + + * deps: debug@2.6.1 + - Fix deprecation messages in WebStorm and other editors + - Undeprecate `DEBUG_FD` set to `1` or `2` + +1.16.0 / 2017-01-17 +=================== + + * deps: debug@2.6.0 + - Allow colors in workers + - Deprecated `DEBUG_FD` environment variable + - Fix error when running under React Native + - Use same color for same namespace + - deps: ms@0.7.2 + * deps: http-errors@~1.5.1 + - deps: inherits@2.0.3 + - deps: setprototypeof@1.0.2 + - deps: statuses@'>= 1.3.1 < 2' + * deps: iconv-lite@0.4.15 + - Added encoding MS-31J + - Added encoding MS-932 + - Added encoding MS-936 + - Added encoding MS-949 + - Added encoding MS-950 + - Fix GBK/GB18030 handling of Euro character + * deps: qs@6.2.1 + - Fix array parsing from skipping empty values + * deps: raw-body@~2.2.0 + - deps: iconv-lite@0.4.15 + * deps: type-is@~1.6.14 + - deps: mime-types@~2.1.13 + +1.15.2 / 2016-06-19 +=================== + + * deps: bytes@2.4.0 + * deps: content-type@~1.0.2 + - perf: enable strict mode + * deps: http-errors@~1.5.0 + - Use `setprototypeof` module to replace `__proto__` setting + - deps: statuses@'>= 1.3.0 < 2' + - perf: enable strict mode + * deps: qs@6.2.0 + * deps: raw-body@~2.1.7 + - deps: bytes@2.4.0 + - perf: remove double-cleanup on happy path + * deps: type-is@~1.6.13 + - deps: mime-types@~2.1.11 + +1.15.1 / 2016-05-05 +=================== + + * deps: bytes@2.3.0 + - Drop partial bytes on all parsed units + - Fix parsing byte string that looks like hex + * deps: raw-body@~2.1.6 + - deps: bytes@2.3.0 + * deps: type-is@~1.6.12 + - deps: mime-types@~2.1.10 + +1.15.0 / 2016-02-10 +=================== + + * deps: http-errors@~1.4.0 + - Add `HttpError` export, for `err instanceof createError.HttpError` + - deps: inherits@2.0.1 + - deps: statuses@'>= 1.2.1 < 2' + * deps: qs@6.1.0 + * deps: type-is@~1.6.11 + - deps: mime-types@~2.1.9 + +1.14.2 / 2015-12-16 +=================== + + * deps: bytes@2.2.0 + * deps: iconv-lite@0.4.13 + * deps: qs@5.2.0 + * deps: raw-body@~2.1.5 + - deps: bytes@2.2.0 + - deps: iconv-lite@0.4.13 + * deps: type-is@~1.6.10 + - deps: mime-types@~2.1.8 + +1.14.1 / 2015-09-27 +=================== + + * Fix issue where invalid charset results in 400 when `verify` used + * deps: iconv-lite@0.4.12 + - Fix CESU-8 decoding in Node.js 4.x + * deps: raw-body@~2.1.4 + - Fix masking critical errors from `iconv-lite` + - deps: iconv-lite@0.4.12 + * deps: type-is@~1.6.9 + - deps: mime-types@~2.1.7 + +1.14.0 / 2015-09-16 +=================== + + * Fix JSON strict parse error to match syntax errors + * Provide static `require` analysis in `urlencoded` parser + * deps: depd@~1.1.0 + - Support web browser loading + * deps: qs@5.1.0 + * deps: raw-body@~2.1.3 + - Fix sync callback when attaching data listener causes sync read + * deps: type-is@~1.6.8 + - Fix type error when given invalid type to match against + - deps: mime-types@~2.1.6 + +1.13.3 / 2015-07-31 +=================== + + * deps: type-is@~1.6.6 + - deps: mime-types@~2.1.4 + +1.13.2 / 2015-07-05 +=================== + + * deps: iconv-lite@0.4.11 + * deps: qs@4.0.0 + - Fix dropping parameters like `hasOwnProperty` + - Fix user-visible incompatibilities from 3.1.0 + - Fix various parsing edge cases + * deps: raw-body@~2.1.2 + - Fix error stack traces to skip `makeError` + - deps: iconv-lite@0.4.11 + * deps: type-is@~1.6.4 + - deps: mime-types@~2.1.2 + - perf: enable strict mode + - perf: remove argument reassignment + +1.13.1 / 2015-06-16 +=================== + + * deps: qs@2.4.2 + - Downgraded from 3.1.0 because of user-visible incompatibilities + +1.13.0 / 2015-06-14 +=================== + + * Add `statusCode` property on `Error`s, in addition to `status` + * Change `type` default to `application/json` for JSON parser + * Change `type` default to `application/x-www-form-urlencoded` for urlencoded parser + * Provide static `require` analysis + * Use the `http-errors` module to generate errors + * deps: bytes@2.1.0 + - Slight optimizations + * deps: iconv-lite@0.4.10 + - The encoding UTF-16 without BOM now defaults to UTF-16LE when detection fails + - Leading BOM is now removed when decoding + * deps: on-finished@~2.3.0 + - Add defined behavior for HTTP `CONNECT` requests + - Add defined behavior for HTTP `Upgrade` requests + - deps: ee-first@1.1.1 + * deps: qs@3.1.0 + - Fix dropping parameters like `hasOwnProperty` + - Fix various parsing edge cases + - Parsed object now has `null` prototype + * deps: raw-body@~2.1.1 + - Use `unpipe` module for unpiping requests + - deps: iconv-lite@0.4.10 + * deps: type-is@~1.6.3 + - deps: mime-types@~2.1.1 + - perf: reduce try block size + - perf: remove bitwise operations + * perf: enable strict mode + * perf: remove argument reassignment + * perf: remove delete call + +1.12.4 / 2015-05-10 +=================== + + * deps: debug@~2.2.0 + * deps: qs@2.4.2 + - Fix allowing parameters like `constructor` + * deps: on-finished@~2.2.1 + * deps: raw-body@~2.0.1 + - Fix a false-positive when unpiping in Node.js 0.8 + - deps: bytes@2.0.1 + * deps: type-is@~1.6.2 + - deps: mime-types@~2.0.11 + +1.12.3 / 2015-04-15 +=================== + + * Slight efficiency improvement when not debugging + * deps: depd@~1.0.1 + * deps: iconv-lite@0.4.8 + - Add encoding alias UNICODE-1-1-UTF-7 + * deps: raw-body@1.3.4 + - Fix hanging callback if request aborts during read + - deps: iconv-lite@0.4.8 + +1.12.2 / 2015-03-16 +=================== + + * deps: qs@2.4.1 + - Fix error when parameter `hasOwnProperty` is present + +1.12.1 / 2015-03-15 +=================== + + * deps: debug@~2.1.3 + - Fix high intensity foreground color for bold + - deps: ms@0.7.0 + * deps: type-is@~1.6.1 + - deps: mime-types@~2.0.10 + +1.12.0 / 2015-02-13 +=================== + + * add `debug` messages + * accept a function for the `type` option + * use `content-type` to parse `Content-Type` headers + * deps: iconv-lite@0.4.7 + - Gracefully support enumerables on `Object.prototype` + * deps: raw-body@1.3.3 + - deps: iconv-lite@0.4.7 + * deps: type-is@~1.6.0 + - fix argument reassignment + - fix false-positives in `hasBody` `Transfer-Encoding` check + - support wildcard for both type and subtype (`*/*`) + - deps: mime-types@~2.0.9 + +1.11.0 / 2015-01-30 +=================== + + * make internal `extended: true` depth limit infinity + * deps: type-is@~1.5.6 + - deps: mime-types@~2.0.8 + +1.10.2 / 2015-01-20 +=================== + + * deps: iconv-lite@0.4.6 + - Fix rare aliases of single-byte encodings + * deps: raw-body@1.3.2 + - deps: iconv-lite@0.4.6 + +1.10.1 / 2015-01-01 +=================== + + * deps: on-finished@~2.2.0 + * deps: type-is@~1.5.5 + - deps: mime-types@~2.0.7 + +1.10.0 / 2014-12-02 +=================== + + * make internal `extended: true` array limit dynamic + +1.9.3 / 2014-11-21 +================== + + * deps: iconv-lite@0.4.5 + - Fix Windows-31J and X-SJIS encoding support + * deps: qs@2.3.3 + - Fix `arrayLimit` behavior + * deps: raw-body@1.3.1 + - deps: iconv-lite@0.4.5 + * deps: type-is@~1.5.3 + - deps: mime-types@~2.0.3 + +1.9.2 / 2014-10-27 +================== + + * deps: qs@2.3.2 + - Fix parsing of mixed objects and values + +1.9.1 / 2014-10-22 +================== + + * deps: on-finished@~2.1.1 + - Fix handling of pipelined requests + * deps: qs@2.3.0 + - Fix parsing of mixed implicit and explicit arrays + * deps: type-is@~1.5.2 + - deps: mime-types@~2.0.2 + +1.9.0 / 2014-09-24 +================== + + * include the charset in "unsupported charset" error message + * include the encoding in "unsupported content encoding" error message + * deps: depd@~1.0.0 + +1.8.4 / 2014-09-23 +================== + + * fix content encoding to be case-insensitive + +1.8.3 / 2014-09-19 +================== + + * deps: qs@2.2.4 + - Fix issue with object keys starting with numbers truncated + +1.8.2 / 2014-09-15 +================== + + * deps: depd@0.4.5 + +1.8.1 / 2014-09-07 +================== + + * deps: media-typer@0.3.0 + * deps: type-is@~1.5.1 + +1.8.0 / 2014-09-05 +================== + + * make empty-body-handling consistent between chunked requests + - empty `json` produces `{}` + - empty `raw` produces `new Buffer(0)` + - empty `text` produces `''` + - empty `urlencoded` produces `{}` + * deps: qs@2.2.3 + - Fix issue where first empty value in array is discarded + * deps: type-is@~1.5.0 + - fix `hasbody` to be true for `content-length: 0` + +1.7.0 / 2014-09-01 +================== + + * add `parameterLimit` option to `urlencoded` parser + * change `urlencoded` extended array limit to 100 + * respond with 413 when over `parameterLimit` in `urlencoded` + +1.6.7 / 2014-08-29 +================== + + * deps: qs@2.2.2 + - Remove unnecessary cloning + +1.6.6 / 2014-08-27 +================== + + * deps: qs@2.2.0 + - Array parsing fix + - Performance improvements + +1.6.5 / 2014-08-16 +================== + + * deps: on-finished@2.1.0 + +1.6.4 / 2014-08-14 +================== + + * deps: qs@1.2.2 + +1.6.3 / 2014-08-10 +================== + + * deps: qs@1.2.1 + +1.6.2 / 2014-08-07 +================== + + * deps: qs@1.2.0 + - Fix parsing array of objects + +1.6.1 / 2014-08-06 +================== + + * deps: qs@1.1.0 + - Accept urlencoded square brackets + - Accept empty values in implicit array notation + +1.6.0 / 2014-08-05 +================== + + * deps: qs@1.0.2 + - Complete rewrite + - Limits array length to 20 + - Limits object depth to 5 + - Limits parameters to 1,000 + +1.5.2 / 2014-07-27 +================== + + * deps: depd@0.4.4 + - Work-around v8 generating empty stack traces + +1.5.1 / 2014-07-26 +================== + + * deps: depd@0.4.3 + - Fix exception when global `Error.stackTraceLimit` is too low + +1.5.0 / 2014-07-20 +================== + + * deps: depd@0.4.2 + - Add `TRACE_DEPRECATION` environment variable + - Remove non-standard grey color from color output + - Support `--no-deprecation` argument + - Support `--trace-deprecation` argument + * deps: iconv-lite@0.4.4 + - Added encoding UTF-7 + * deps: raw-body@1.3.0 + - deps: iconv-lite@0.4.4 + - Added encoding UTF-7 + - Fix `Cannot switch to old mode now` error on Node.js 0.10+ + * deps: type-is@~1.3.2 + +1.4.3 / 2014-06-19 +================== + + * deps: type-is@1.3.1 + - fix global variable leak + +1.4.2 / 2014-06-19 +================== + + * deps: type-is@1.3.0 + - improve type parsing + +1.4.1 / 2014-06-19 +================== + + * fix urlencoded extended deprecation message + +1.4.0 / 2014-06-19 +================== + + * add `text` parser + * add `raw` parser + * check accepted charset in content-type (accepts utf-8) + * check accepted encoding in content-encoding (accepts identity) + * deprecate `bodyParser()` middleware; use `.json()` and `.urlencoded()` as needed + * deprecate `urlencoded()` without provided `extended` option + * lazy-load urlencoded parsers + * parsers split into files for reduced mem usage + * support gzip and deflate bodies + - set `inflate: false` to turn off + * deps: raw-body@1.2.2 + - Support all encodings from `iconv-lite` + +1.3.1 / 2014-06-11 +================== + + * deps: type-is@1.2.1 + - Switch dependency from mime to mime-types@1.0.0 + +1.3.0 / 2014-05-31 +================== + + * add `extended` option to urlencoded parser + +1.2.2 / 2014-05-27 +================== + + * deps: raw-body@1.1.6 + - assert stream encoding on node.js 0.8 + - assert stream encoding on node.js < 0.10.6 + - deps: bytes@1 + +1.2.1 / 2014-05-26 +================== + + * invoke `next(err)` after request fully read + - prevents hung responses and socket hang ups + +1.2.0 / 2014-05-11 +================== + + * add `verify` option + * deps: type-is@1.2.0 + - support suffix matching + +1.1.2 / 2014-05-11 +================== + + * improve json parser speed + +1.1.1 / 2014-05-11 +================== + + * fix repeated limit parsing with every request + +1.1.0 / 2014-05-10 +================== + + * add `type` option + * deps: pin for safety and consistency + +1.0.2 / 2014-04-14 +================== + + * use `type-is` module + +1.0.1 / 2014-03-20 +================== + + * lower default limits to 100kb diff --git a/node_modules/body-parser/LICENSE b/node_modules/body-parser/LICENSE new file mode 100644 index 000000000..386b7b694 --- /dev/null +++ b/node_modules/body-parser/LICENSE @@ -0,0 +1,23 @@ +(The MIT License) + +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2014-2015 Douglas Christopher Wilson + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +'Software'), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/node_modules/body-parser/README.md b/node_modules/body-parser/README.md new file mode 100644 index 000000000..1149aff57 --- /dev/null +++ b/node_modules/body-parser/README.md @@ -0,0 +1,464 @@ +# body-parser + +[![NPM Version][npm-image]][npm-url] +[![NPM Downloads][downloads-image]][downloads-url] +[![Build Status][github-actions-ci-image]][github-actions-ci-url] +[![Test Coverage][coveralls-image]][coveralls-url] + +Node.js body parsing middleware. + +Parse incoming request bodies in a middleware before your handlers, available +under the `req.body` property. + +**Note** As `req.body`'s shape is based on user-controlled input, all +properties and values in this object are untrusted and should be validated +before trusting. For example, `req.body.foo.toString()` may fail in multiple +ways, for example the `foo` property may not be there or may not be a string, +and `toString` may not be a function and instead a string or other user input. + +[Learn about the anatomy of an HTTP transaction in Node.js](https://nodejs.org/en/docs/guides/anatomy-of-an-http-transaction/). + +_This does not handle multipart bodies_, due to their complex and typically +large nature. For multipart bodies, you may be interested in the following +modules: + + * [busboy](https://www.npmjs.org/package/busboy#readme) and + [connect-busboy](https://www.npmjs.org/package/connect-busboy#readme) + * [multiparty](https://www.npmjs.org/package/multiparty#readme) and + [connect-multiparty](https://www.npmjs.org/package/connect-multiparty#readme) + * [formidable](https://www.npmjs.org/package/formidable#readme) + * [multer](https://www.npmjs.org/package/multer#readme) + +This module provides the following parsers: + + * [JSON body parser](#bodyparserjsonoptions) + * [Raw body parser](#bodyparserrawoptions) + * [Text body parser](#bodyparsertextoptions) + * [URL-encoded form body parser](#bodyparserurlencodedoptions) + +Other body parsers you might be interested in: + +- [body](https://www.npmjs.org/package/body#readme) +- [co-body](https://www.npmjs.org/package/co-body#readme) + +## Installation + +```sh +$ npm install body-parser +``` + +## API + +```js +var bodyParser = require('body-parser') +``` + +The `bodyParser` object exposes various factories to create middlewares. All +middlewares will populate the `req.body` property with the parsed body when +the `Content-Type` request header matches the `type` option, or an empty +object (`{}`) if there was no body to parse, the `Content-Type` was not matched, +or an error occurred. + +The various errors returned by this module are described in the +[errors section](#errors). + +### bodyParser.json([options]) + +Returns middleware that only parses `json` and only looks at requests where +the `Content-Type` header matches the `type` option. This parser accepts any +Unicode encoding of the body and supports automatic inflation of `gzip` and +`deflate` encodings. + +A new `body` object containing the parsed data is populated on the `request` +object after the middleware (i.e. `req.body`). + +#### Options + +The `json` function takes an optional `options` object that may contain any of +the following keys: + +##### inflate + +When set to `true`, then deflated (compressed) bodies will be inflated; when +`false`, deflated bodies are rejected. Defaults to `true`. + +##### limit + +Controls the maximum request body size. If this is a number, then the value +specifies the number of bytes; if it is a string, the value is passed to the +[bytes](https://www.npmjs.com/package/bytes) library for parsing. Defaults +to `'100kb'`. + +##### reviver + +The `reviver` option is passed directly to `JSON.parse` as the second +argument. You can find more information on this argument +[in the MDN documentation about JSON.parse](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/parse#Example.3A_Using_the_reviver_parameter). + +##### strict + +When set to `true`, will only accept arrays and objects; when `false` will +accept anything `JSON.parse` accepts. Defaults to `true`. + +##### type + +The `type` option is used to determine what media type the middleware will +parse. This option can be a string, array of strings, or a function. If not a +function, `type` option is passed directly to the +[type-is](https://www.npmjs.org/package/type-is#readme) library and this can +be an extension name (like `json`), a mime type (like `application/json`), or +a mime type with a wildcard (like `*/*` or `*/json`). If a function, the `type` +option is called as `fn(req)` and the request is parsed if it returns a truthy +value. Defaults to `application/json`. + +##### verify + +The `verify` option, if supplied, is called as `verify(req, res, buf, encoding)`, +where `buf` is a `Buffer` of the raw request body and `encoding` is the +encoding of the request. The parsing can be aborted by throwing an error. + +### bodyParser.raw([options]) + +Returns middleware that parses all bodies as a `Buffer` and only looks at +requests where the `Content-Type` header matches the `type` option. This +parser supports automatic inflation of `gzip` and `deflate` encodings. + +A new `body` object containing the parsed data is populated on the `request` +object after the middleware (i.e. `req.body`). This will be a `Buffer` object +of the body. + +#### Options + +The `raw` function takes an optional `options` object that may contain any of +the following keys: + +##### inflate + +When set to `true`, then deflated (compressed) bodies will be inflated; when +`false`, deflated bodies are rejected. Defaults to `true`. + +##### limit + +Controls the maximum request body size. If this is a number, then the value +specifies the number of bytes; if it is a string, the value is passed to the +[bytes](https://www.npmjs.com/package/bytes) library for parsing. Defaults +to `'100kb'`. + +##### type + +The `type` option is used to determine what media type the middleware will +parse. This option can be a string, array of strings, or a function. +If not a function, `type` option is passed directly to the +[type-is](https://www.npmjs.org/package/type-is#readme) library and this +can be an extension name (like `bin`), a mime type (like +`application/octet-stream`), or a mime type with a wildcard (like `*/*` or +`application/*`). If a function, the `type` option is called as `fn(req)` +and the request is parsed if it returns a truthy value. Defaults to +`application/octet-stream`. + +##### verify + +The `verify` option, if supplied, is called as `verify(req, res, buf, encoding)`, +where `buf` is a `Buffer` of the raw request body and `encoding` is the +encoding of the request. The parsing can be aborted by throwing an error. + +### bodyParser.text([options]) + +Returns middleware that parses all bodies as a string and only looks at +requests where the `Content-Type` header matches the `type` option. This +parser supports automatic inflation of `gzip` and `deflate` encodings. + +A new `body` string containing the parsed data is populated on the `request` +object after the middleware (i.e. `req.body`). This will be a string of the +body. + +#### Options + +The `text` function takes an optional `options` object that may contain any of +the following keys: + +##### defaultCharset + +Specify the default character set for the text content if the charset is not +specified in the `Content-Type` header of the request. Defaults to `utf-8`. + +##### inflate + +When set to `true`, then deflated (compressed) bodies will be inflated; when +`false`, deflated bodies are rejected. Defaults to `true`. + +##### limit + +Controls the maximum request body size. If this is a number, then the value +specifies the number of bytes; if it is a string, the value is passed to the +[bytes](https://www.npmjs.com/package/bytes) library for parsing. Defaults +to `'100kb'`. + +##### type + +The `type` option is used to determine what media type the middleware will +parse. This option can be a string, array of strings, or a function. If not +a function, `type` option is passed directly to the +[type-is](https://www.npmjs.org/package/type-is#readme) library and this can +be an extension name (like `txt`), a mime type (like `text/plain`), or a mime +type with a wildcard (like `*/*` or `text/*`). If a function, the `type` +option is called as `fn(req)` and the request is parsed if it returns a +truthy value. Defaults to `text/plain`. + +##### verify + +The `verify` option, if supplied, is called as `verify(req, res, buf, encoding)`, +where `buf` is a `Buffer` of the raw request body and `encoding` is the +encoding of the request. The parsing can be aborted by throwing an error. + +### bodyParser.urlencoded([options]) + +Returns middleware that only parses `urlencoded` bodies and only looks at +requests where the `Content-Type` header matches the `type` option. This +parser accepts only UTF-8 encoding of the body and supports automatic +inflation of `gzip` and `deflate` encodings. + +A new `body` object containing the parsed data is populated on the `request` +object after the middleware (i.e. `req.body`). This object will contain +key-value pairs, where the value can be a string or array (when `extended` is +`false`), or any type (when `extended` is `true`). + +#### Options + +The `urlencoded` function takes an optional `options` object that may contain +any of the following keys: + +##### extended + +The `extended` option allows to choose between parsing the URL-encoded data +with the `querystring` library (when `false`) or the `qs` library (when +`true`). The "extended" syntax allows for rich objects and arrays to be +encoded into the URL-encoded format, allowing for a JSON-like experience +with URL-encoded. For more information, please +[see the qs library](https://www.npmjs.org/package/qs#readme). + +Defaults to `true`, but using the default has been deprecated. Please +research into the difference between `qs` and `querystring` and choose the +appropriate setting. + +##### inflate + +When set to `true`, then deflated (compressed) bodies will be inflated; when +`false`, deflated bodies are rejected. Defaults to `true`. + +##### limit + +Controls the maximum request body size. If this is a number, then the value +specifies the number of bytes; if it is a string, the value is passed to the +[bytes](https://www.npmjs.com/package/bytes) library for parsing. Defaults +to `'100kb'`. + +##### parameterLimit + +The `parameterLimit` option controls the maximum number of parameters that +are allowed in the URL-encoded data. If a request contains more parameters +than this value, a 413 will be returned to the client. Defaults to `1000`. + +##### type + +The `type` option is used to determine what media type the middleware will +parse. This option can be a string, array of strings, or a function. If not +a function, `type` option is passed directly to the +[type-is](https://www.npmjs.org/package/type-is#readme) library and this can +be an extension name (like `urlencoded`), a mime type (like +`application/x-www-form-urlencoded`), or a mime type with a wildcard (like +`*/x-www-form-urlencoded`). If a function, the `type` option is called as +`fn(req)` and the request is parsed if it returns a truthy value. Defaults +to `application/x-www-form-urlencoded`. + +##### verify + +The `verify` option, if supplied, is called as `verify(req, res, buf, encoding)`, +where `buf` is a `Buffer` of the raw request body and `encoding` is the +encoding of the request. The parsing can be aborted by throwing an error. + +## Errors + +The middlewares provided by this module create errors using the +[`http-errors` module](https://www.npmjs.com/package/http-errors). The errors +will typically have a `status`/`statusCode` property that contains the suggested +HTTP response code, an `expose` property to determine if the `message` property +should be displayed to the client, a `type` property to determine the type of +error without matching against the `message`, and a `body` property containing +the read body, if available. + +The following are the common errors created, though any error can come through +for various reasons. + +### content encoding unsupported + +This error will occur when the request had a `Content-Encoding` header that +contained an encoding but the "inflation" option was set to `false`. The +`status` property is set to `415`, the `type` property is set to +`'encoding.unsupported'`, and the `charset` property will be set to the +encoding that is unsupported. + +### entity parse failed + +This error will occur when the request contained an entity that could not be +parsed by the middleware. The `status` property is set to `400`, the `type` +property is set to `'entity.parse.failed'`, and the `body` property is set to +the entity value that failed parsing. + +### entity verify failed + +This error will occur when the request contained an entity that could not be +failed verification by the defined `verify` option. The `status` property is +set to `403`, the `type` property is set to `'entity.verify.failed'`, and the +`body` property is set to the entity value that failed verification. + +### request aborted + +This error will occur when the request is aborted by the client before reading +the body has finished. The `received` property will be set to the number of +bytes received before the request was aborted and the `expected` property is +set to the number of expected bytes. The `status` property is set to `400` +and `type` property is set to `'request.aborted'`. + +### request entity too large + +This error will occur when the request body's size is larger than the "limit" +option. The `limit` property will be set to the byte limit and the `length` +property will be set to the request body's length. The `status` property is +set to `413` and the `type` property is set to `'entity.too.large'`. + +### request size did not match content length + +This error will occur when the request's length did not match the length from +the `Content-Length` header. This typically occurs when the request is malformed, +typically when the `Content-Length` header was calculated based on characters +instead of bytes. The `status` property is set to `400` and the `type` property +is set to `'request.size.invalid'`. + +### stream encoding should not be set + +This error will occur when something called the `req.setEncoding` method prior +to this middleware. This module operates directly on bytes only and you cannot +call `req.setEncoding` when using this module. The `status` property is set to +`500` and the `type` property is set to `'stream.encoding.set'`. + +### stream is not readable + +This error will occur when the request is no longer readable when this middleware +attempts to read it. This typically means something other than a middleware from +this module read the reqest body already and the middleware was also configured to +read the same request. The `status` property is set to `500` and the `type` +property is set to `'stream.not.readable'`. + +### too many parameters + +This error will occur when the content of the request exceeds the configured +`parameterLimit` for the `urlencoded` parser. The `status` property is set to +`413` and the `type` property is set to `'parameters.too.many'`. + +### unsupported charset "BOGUS" + +This error will occur when the request had a charset parameter in the +`Content-Type` header, but the `iconv-lite` module does not support it OR the +parser does not support it. The charset is contained in the message as well +as in the `charset` property. The `status` property is set to `415`, the +`type` property is set to `'charset.unsupported'`, and the `charset` property +is set to the charset that is unsupported. + +### unsupported content encoding "bogus" + +This error will occur when the request had a `Content-Encoding` header that +contained an unsupported encoding. The encoding is contained in the message +as well as in the `encoding` property. The `status` property is set to `415`, +the `type` property is set to `'encoding.unsupported'`, and the `encoding` +property is set to the encoding that is unsupported. + +## Examples + +### Express/Connect top-level generic + +This example demonstrates adding a generic JSON and URL-encoded parser as a +top-level middleware, which will parse the bodies of all incoming requests. +This is the simplest setup. + +```js +var express = require('express') +var bodyParser = require('body-parser') + +var app = express() + +// parse application/x-www-form-urlencoded +app.use(bodyParser.urlencoded({ extended: false })) + +// parse application/json +app.use(bodyParser.json()) + +app.use(function (req, res) { + res.setHeader('Content-Type', 'text/plain') + res.write('you posted:\n') + res.end(JSON.stringify(req.body, null, 2)) +}) +``` + +### Express route-specific + +This example demonstrates adding body parsers specifically to the routes that +need them. In general, this is the most recommended way to use body-parser with +Express. + +```js +var express = require('express') +var bodyParser = require('body-parser') + +var app = express() + +// create application/json parser +var jsonParser = bodyParser.json() + +// create application/x-www-form-urlencoded parser +var urlencodedParser = bodyParser.urlencoded({ extended: false }) + +// POST /login gets urlencoded bodies +app.post('/login', urlencodedParser, function (req, res) { + res.send('welcome, ' + req.body.username) +}) + +// POST /api/users gets JSON bodies +app.post('/api/users', jsonParser, function (req, res) { + // create user in req.body +}) +``` + +### Change accepted type for parsers + +All the parsers accept a `type` option which allows you to change the +`Content-Type` that the middleware will parse. + +```js +var express = require('express') +var bodyParser = require('body-parser') + +var app = express() + +// parse various different custom JSON types as JSON +app.use(bodyParser.json({ type: 'application/*+json' })) + +// parse some custom thing into a Buffer +app.use(bodyParser.raw({ type: 'application/vnd.custom-type' })) + +// parse an HTML body into a string +app.use(bodyParser.text({ type: 'text/html' })) +``` + +## License + +[MIT](LICENSE) + +[npm-image]: https://img.shields.io/npm/v/body-parser.svg +[npm-url]: https://npmjs.org/package/body-parser +[coveralls-image]: https://img.shields.io/coveralls/expressjs/body-parser/master.svg +[coveralls-url]: https://coveralls.io/r/expressjs/body-parser?branch=master +[downloads-image]: https://img.shields.io/npm/dm/body-parser.svg +[downloads-url]: https://npmjs.org/package/body-parser +[github-actions-ci-image]: https://img.shields.io/github/workflow/status/expressjs/body-parser/ci/master?label=ci +[github-actions-ci-url]: https://github.com/expressjs/body-parser/actions/workflows/ci.yml diff --git a/node_modules/body-parser/SECURITY.md b/node_modules/body-parser/SECURITY.md new file mode 100644 index 000000000..9694d4296 --- /dev/null +++ b/node_modules/body-parser/SECURITY.md @@ -0,0 +1,25 @@ +# Security Policies and Procedures + +## Reporting a Bug + +The Express team and community take all security bugs seriously. Thank you +for improving the security of Express. We appreciate your efforts and +responsible disclosure and will make every effort to acknowledge your +contributions. + +Report security bugs by emailing the current owner(s) of `body-parser`. This +information can be found in the npm registry using the command +`npm owner ls body-parser`. +If unsure or unable to get the information from the above, open an issue +in the [project issue tracker](https://github.com/expressjs/body-parser/issues) +asking for the current contact information. + +To ensure the timely response to your report, please ensure that the entirety +of the report is contained within the email body and not solely behind a web +link or an attachment. + +At least one owner will acknowledge your email within 48 hours, and will send a +more detailed response within 48 hours indicating the next steps in handling +your report. After the initial reply to your report, the owners will +endeavor to keep you informed of the progress towards a fix and full +announcement, and may ask for additional information or guidance. diff --git a/node_modules/body-parser/index.js b/node_modules/body-parser/index.js new file mode 100644 index 000000000..93c3a1fff --- /dev/null +++ b/node_modules/body-parser/index.js @@ -0,0 +1,157 @@ +/*! + * body-parser + * Copyright(c) 2014-2015 Douglas Christopher Wilson + * MIT Licensed + */ + +'use strict' + +/** + * Module dependencies. + * @private + */ + +var deprecate = require('depd')('body-parser') + +/** + * Cache of loaded parsers. + * @private + */ + +var parsers = Object.create(null) + +/** + * @typedef Parsers + * @type {function} + * @property {function} json + * @property {function} raw + * @property {function} text + * @property {function} urlencoded + */ + +/** + * Module exports. + * @type {Parsers} + */ + +exports = module.exports = deprecate.function(bodyParser, + 'bodyParser: use individual json/urlencoded middlewares') + +/** + * JSON parser. + * @public + */ + +Object.defineProperty(exports, 'json', { + configurable: true, + enumerable: true, + get: createParserGetter('json') +}) + +/** + * Raw parser. + * @public + */ + +Object.defineProperty(exports, 'raw', { + configurable: true, + enumerable: true, + get: createParserGetter('raw') +}) + +/** + * Text parser. + * @public + */ + +Object.defineProperty(exports, 'text', { + configurable: true, + enumerable: true, + get: createParserGetter('text') +}) + +/** + * URL-encoded parser. + * @public + */ + +Object.defineProperty(exports, 'urlencoded', { + configurable: true, + enumerable: true, + get: createParserGetter('urlencoded') +}) + +/** + * Create a middleware to parse json and urlencoded bodies. + * + * @param {object} [options] + * @return {function} + * @deprecated + * @public + */ + +function bodyParser (options) { + var opts = {} + + // exclude type option + if (options) { + for (var prop in options) { + if (prop !== 'type') { + opts[prop] = options[prop] + } + } + } + + var _urlencoded = exports.urlencoded(opts) + var _json = exports.json(opts) + + return function bodyParser (req, res, next) { + _json(req, res, function (err) { + if (err) return next(err) + _urlencoded(req, res, next) + }) + } +} + +/** + * Create a getter for loading a parser. + * @private + */ + +function createParserGetter (name) { + return function get () { + return loadParser(name) + } +} + +/** + * Load a parser module. + * @private + */ + +function loadParser (parserName) { + var parser = parsers[parserName] + + if (parser !== undefined) { + return parser + } + + // this uses a switch for static require analysis + switch (parserName) { + case 'json': + parser = require('./lib/types/json') + break + case 'raw': + parser = require('./lib/types/raw') + break + case 'text': + parser = require('./lib/types/text') + break + case 'urlencoded': + parser = require('./lib/types/urlencoded') + break + } + + // store to prevent invoking require() + return (parsers[parserName] = parser) +} diff --git a/node_modules/body-parser/lib/read.js b/node_modules/body-parser/lib/read.js new file mode 100644 index 000000000..fce6283f5 --- /dev/null +++ b/node_modules/body-parser/lib/read.js @@ -0,0 +1,205 @@ +/*! + * body-parser + * Copyright(c) 2014-2015 Douglas Christopher Wilson + * MIT Licensed + */ + +'use strict' + +/** + * Module dependencies. + * @private + */ + +var createError = require('http-errors') +var destroy = require('destroy') +var getBody = require('raw-body') +var iconv = require('iconv-lite') +var onFinished = require('on-finished') +var unpipe = require('unpipe') +var zlib = require('zlib') + +/** + * Module exports. + */ + +module.exports = read + +/** + * Read a request into a buffer and parse. + * + * @param {object} req + * @param {object} res + * @param {function} next + * @param {function} parse + * @param {function} debug + * @param {object} options + * @private + */ + +function read (req, res, next, parse, debug, options) { + var length + var opts = options + var stream + + // flag as parsed + req._body = true + + // read options + var encoding = opts.encoding !== null + ? opts.encoding + : null + var verify = opts.verify + + try { + // get the content stream + stream = contentstream(req, debug, opts.inflate) + length = stream.length + stream.length = undefined + } catch (err) { + return next(err) + } + + // set raw-body options + opts.length = length + opts.encoding = verify + ? null + : encoding + + // assert charset is supported + if (opts.encoding === null && encoding !== null && !iconv.encodingExists(encoding)) { + return next(createError(415, 'unsupported charset "' + encoding.toUpperCase() + '"', { + charset: encoding.toLowerCase(), + type: 'charset.unsupported' + })) + } + + // read body + debug('read body') + getBody(stream, opts, function (error, body) { + if (error) { + var _error + + if (error.type === 'encoding.unsupported') { + // echo back charset + _error = createError(415, 'unsupported charset "' + encoding.toUpperCase() + '"', { + charset: encoding.toLowerCase(), + type: 'charset.unsupported' + }) + } else { + // set status code on error + _error = createError(400, error) + } + + // unpipe from stream and destroy + if (stream !== req) { + unpipe(req) + destroy(stream, true) + } + + // read off entire request + dump(req, function onfinished () { + next(createError(400, _error)) + }) + return + } + + // verify + if (verify) { + try { + debug('verify body') + verify(req, res, body, encoding) + } catch (err) { + next(createError(403, err, { + body: body, + type: err.type || 'entity.verify.failed' + })) + return + } + } + + // parse + var str = body + try { + debug('parse body') + str = typeof body !== 'string' && encoding !== null + ? iconv.decode(body, encoding) + : body + req.body = parse(str) + } catch (err) { + next(createError(400, err, { + body: str, + type: err.type || 'entity.parse.failed' + })) + return + } + + next() + }) +} + +/** + * Get the content stream of the request. + * + * @param {object} req + * @param {function} debug + * @param {boolean} [inflate=true] + * @return {object} + * @api private + */ + +function contentstream (req, debug, inflate) { + var encoding = (req.headers['content-encoding'] || 'identity').toLowerCase() + var length = req.headers['content-length'] + var stream + + debug('content-encoding "%s"', encoding) + + if (inflate === false && encoding !== 'identity') { + throw createError(415, 'content encoding unsupported', { + encoding: encoding, + type: 'encoding.unsupported' + }) + } + + switch (encoding) { + case 'deflate': + stream = zlib.createInflate() + debug('inflate body') + req.pipe(stream) + break + case 'gzip': + stream = zlib.createGunzip() + debug('gunzip body') + req.pipe(stream) + break + case 'identity': + stream = req + stream.length = length + break + default: + throw createError(415, 'unsupported content encoding "' + encoding + '"', { + encoding: encoding, + type: 'encoding.unsupported' + }) + } + + return stream +} + +/** + * Dump the contents of a request. + * + * @param {object} req + * @param {function} callback + * @api private + */ + +function dump (req, callback) { + if (onFinished.isFinished(req)) { + callback(null) + } else { + onFinished(req, callback) + req.resume() + } +} diff --git a/node_modules/body-parser/lib/types/json.js b/node_modules/body-parser/lib/types/json.js new file mode 100644 index 000000000..c2745be3a --- /dev/null +++ b/node_modules/body-parser/lib/types/json.js @@ -0,0 +1,236 @@ +/*! + * body-parser + * Copyright(c) 2014 Jonathan Ong + * Copyright(c) 2014-2015 Douglas Christopher Wilson + * MIT Licensed + */ + +'use strict' + +/** + * Module dependencies. + * @private + */ + +var bytes = require('bytes') +var contentType = require('content-type') +var createError = require('http-errors') +var debug = require('debug')('body-parser:json') +var read = require('../read') +var typeis = require('type-is') + +/** + * Module exports. + */ + +module.exports = json + +/** + * RegExp to match the first non-space in a string. + * + * Allowed whitespace is defined in RFC 7159: + * + * ws = *( + * %x20 / ; Space + * %x09 / ; Horizontal tab + * %x0A / ; Line feed or New line + * %x0D ) ; Carriage return + */ + +var FIRST_CHAR_REGEXP = /^[\x20\x09\x0a\x0d]*([^\x20\x09\x0a\x0d])/ // eslint-disable-line no-control-regex + +/** + * Create a middleware to parse JSON bodies. + * + * @param {object} [options] + * @return {function} + * @public + */ + +function json (options) { + var opts = options || {} + + var limit = typeof opts.limit !== 'number' + ? bytes.parse(opts.limit || '100kb') + : opts.limit + var inflate = opts.inflate !== false + var reviver = opts.reviver + var strict = opts.strict !== false + var type = opts.type || 'application/json' + var verify = opts.verify || false + + if (verify !== false && typeof verify !== 'function') { + throw new TypeError('option verify must be function') + } + + // create the appropriate type checking function + var shouldParse = typeof type !== 'function' + ? typeChecker(type) + : type + + function parse (body) { + if (body.length === 0) { + // special-case empty json body, as it's a common client-side mistake + // TODO: maybe make this configurable or part of "strict" option + return {} + } + + if (strict) { + var first = firstchar(body) + + if (first !== '{' && first !== '[') { + debug('strict violation') + throw createStrictSyntaxError(body, first) + } + } + + try { + debug('parse json') + return JSON.parse(body, reviver) + } catch (e) { + throw normalizeJsonSyntaxError(e, { + message: e.message, + stack: e.stack + }) + } + } + + return function jsonParser (req, res, next) { + if (req._body) { + debug('body already parsed') + next() + return + } + + req.body = req.body || {} + + // skip requests without bodies + if (!typeis.hasBody(req)) { + debug('skip empty body') + next() + return + } + + debug('content-type %j', req.headers['content-type']) + + // determine if request should be parsed + if (!shouldParse(req)) { + debug('skip parsing') + next() + return + } + + // assert charset per RFC 7159 sec 8.1 + var charset = getCharset(req) || 'utf-8' + if (charset.slice(0, 4) !== 'utf-') { + debug('invalid charset') + next(createError(415, 'unsupported charset "' + charset.toUpperCase() + '"', { + charset: charset, + type: 'charset.unsupported' + })) + return + } + + // read + read(req, res, next, parse, debug, { + encoding: charset, + inflate: inflate, + limit: limit, + verify: verify + }) + } +} + +/** + * Create strict violation syntax error matching native error. + * + * @param {string} str + * @param {string} char + * @return {Error} + * @private + */ + +function createStrictSyntaxError (str, char) { + var index = str.indexOf(char) + var partial = index !== -1 + ? str.substring(0, index) + '#' + : '' + + try { + JSON.parse(partial); /* istanbul ignore next */ throw new SyntaxError('strict violation') + } catch (e) { + return normalizeJsonSyntaxError(e, { + message: e.message.replace('#', char), + stack: e.stack + }) + } +} + +/** + * Get the first non-whitespace character in a string. + * + * @param {string} str + * @return {function} + * @private + */ + +function firstchar (str) { + var match = FIRST_CHAR_REGEXP.exec(str) + + return match + ? match[1] + : undefined +} + +/** + * Get the charset of a request. + * + * @param {object} req + * @api private + */ + +function getCharset (req) { + try { + return (contentType.parse(req).parameters.charset || '').toLowerCase() + } catch (e) { + return undefined + } +} + +/** + * Normalize a SyntaxError for JSON.parse. + * + * @param {SyntaxError} error + * @param {object} obj + * @return {SyntaxError} + */ + +function normalizeJsonSyntaxError (error, obj) { + var keys = Object.getOwnPropertyNames(error) + + for (var i = 0; i < keys.length; i++) { + var key = keys[i] + if (key !== 'stack' && key !== 'message') { + delete error[key] + } + } + + // replace stack before message for Node.js 0.10 and below + error.stack = obj.stack.replace(error.message, obj.message) + error.message = obj.message + + return error +} + +/** + * Get the simple type checker. + * + * @param {string} type + * @return {function} + */ + +function typeChecker (type) { + return function checkType (req) { + return Boolean(typeis(req, type)) + } +} diff --git a/node_modules/body-parser/lib/types/raw.js b/node_modules/body-parser/lib/types/raw.js new file mode 100644 index 000000000..f5d1b6747 --- /dev/null +++ b/node_modules/body-parser/lib/types/raw.js @@ -0,0 +1,101 @@ +/*! + * body-parser + * Copyright(c) 2014-2015 Douglas Christopher Wilson + * MIT Licensed + */ + +'use strict' + +/** + * Module dependencies. + */ + +var bytes = require('bytes') +var debug = require('debug')('body-parser:raw') +var read = require('../read') +var typeis = require('type-is') + +/** + * Module exports. + */ + +module.exports = raw + +/** + * Create a middleware to parse raw bodies. + * + * @param {object} [options] + * @return {function} + * @api public + */ + +function raw (options) { + var opts = options || {} + + var inflate = opts.inflate !== false + var limit = typeof opts.limit !== 'number' + ? bytes.parse(opts.limit || '100kb') + : opts.limit + var type = opts.type || 'application/octet-stream' + var verify = opts.verify || false + + if (verify !== false && typeof verify !== 'function') { + throw new TypeError('option verify must be function') + } + + // create the appropriate type checking function + var shouldParse = typeof type !== 'function' + ? typeChecker(type) + : type + + function parse (buf) { + return buf + } + + return function rawParser (req, res, next) { + if (req._body) { + debug('body already parsed') + next() + return + } + + req.body = req.body || {} + + // skip requests without bodies + if (!typeis.hasBody(req)) { + debug('skip empty body') + next() + return + } + + debug('content-type %j', req.headers['content-type']) + + // determine if request should be parsed + if (!shouldParse(req)) { + debug('skip parsing') + next() + return + } + + // read + read(req, res, next, parse, debug, { + encoding: null, + inflate: inflate, + limit: limit, + verify: verify + }) + } +} + +/** + * Get the simple type checker. + * + * @param {string} type + * @return {function} + */ + +function typeChecker (type) { + return function checkType (req) { + return Boolean(typeis(req, type)) + } +} diff --git a/node_modules/body-parser/lib/types/text.js b/node_modules/body-parser/lib/types/text.js new file mode 100644 index 000000000..083a00908 --- /dev/null +++ b/node_modules/body-parser/lib/types/text.js @@ -0,0 +1,121 @@ +/*! + * body-parser + * Copyright(c) 2014-2015 Douglas Christopher Wilson + * MIT Licensed + */ + +'use strict' + +/** + * Module dependencies. + */ + +var bytes = require('bytes') +var contentType = require('content-type') +var debug = require('debug')('body-parser:text') +var read = require('../read') +var typeis = require('type-is') + +/** + * Module exports. + */ + +module.exports = text + +/** + * Create a middleware to parse text bodies. + * + * @param {object} [options] + * @return {function} + * @api public + */ + +function text (options) { + var opts = options || {} + + var defaultCharset = opts.defaultCharset || 'utf-8' + var inflate = opts.inflate !== false + var limit = typeof opts.limit !== 'number' + ? bytes.parse(opts.limit || '100kb') + : opts.limit + var type = opts.type || 'text/plain' + var verify = opts.verify || false + + if (verify !== false && typeof verify !== 'function') { + throw new TypeError('option verify must be function') + } + + // create the appropriate type checking function + var shouldParse = typeof type !== 'function' + ? typeChecker(type) + : type + + function parse (buf) { + return buf + } + + return function textParser (req, res, next) { + if (req._body) { + debug('body already parsed') + next() + return + } + + req.body = req.body || {} + + // skip requests without bodies + if (!typeis.hasBody(req)) { + debug('skip empty body') + next() + return + } + + debug('content-type %j', req.headers['content-type']) + + // determine if request should be parsed + if (!shouldParse(req)) { + debug('skip parsing') + next() + return + } + + // get charset + var charset = getCharset(req) || defaultCharset + + // read + read(req, res, next, parse, debug, { + encoding: charset, + inflate: inflate, + limit: limit, + verify: verify + }) + } +} + +/** + * Get the charset of a request. + * + * @param {object} req + * @api private + */ + +function getCharset (req) { + try { + return (contentType.parse(req).parameters.charset || '').toLowerCase() + } catch (e) { + return undefined + } +} + +/** + * Get the simple type checker. + * + * @param {string} type + * @return {function} + */ + +function typeChecker (type) { + return function checkType (req) { + return Boolean(typeis(req, type)) + } +} diff --git a/node_modules/body-parser/lib/types/urlencoded.js b/node_modules/body-parser/lib/types/urlencoded.js new file mode 100644 index 000000000..b2ca8f16d --- /dev/null +++ b/node_modules/body-parser/lib/types/urlencoded.js @@ -0,0 +1,284 @@ +/*! + * body-parser + * Copyright(c) 2014 Jonathan Ong + * Copyright(c) 2014-2015 Douglas Christopher Wilson + * MIT Licensed + */ + +'use strict' + +/** + * Module dependencies. + * @private + */ + +var bytes = require('bytes') +var contentType = require('content-type') +var createError = require('http-errors') +var debug = require('debug')('body-parser:urlencoded') +var deprecate = require('depd')('body-parser') +var read = require('../read') +var typeis = require('type-is') + +/** + * Module exports. + */ + +module.exports = urlencoded + +/** + * Cache of parser modules. + */ + +var parsers = Object.create(null) + +/** + * Create a middleware to parse urlencoded bodies. + * + * @param {object} [options] + * @return {function} + * @public + */ + +function urlencoded (options) { + var opts = options || {} + + // notice because option default will flip in next major + if (opts.extended === undefined) { + deprecate('undefined extended: provide extended option') + } + + var extended = opts.extended !== false + var inflate = opts.inflate !== false + var limit = typeof opts.limit !== 'number' + ? bytes.parse(opts.limit || '100kb') + : opts.limit + var type = opts.type || 'application/x-www-form-urlencoded' + var verify = opts.verify || false + + if (verify !== false && typeof verify !== 'function') { + throw new TypeError('option verify must be function') + } + + // create the appropriate query parser + var queryparse = extended + ? extendedparser(opts) + : simpleparser(opts) + + // create the appropriate type checking function + var shouldParse = typeof type !== 'function' + ? typeChecker(type) + : type + + function parse (body) { + return body.length + ? queryparse(body) + : {} + } + + return function urlencodedParser (req, res, next) { + if (req._body) { + debug('body already parsed') + next() + return + } + + req.body = req.body || {} + + // skip requests without bodies + if (!typeis.hasBody(req)) { + debug('skip empty body') + next() + return + } + + debug('content-type %j', req.headers['content-type']) + + // determine if request should be parsed + if (!shouldParse(req)) { + debug('skip parsing') + next() + return + } + + // assert charset + var charset = getCharset(req) || 'utf-8' + if (charset !== 'utf-8') { + debug('invalid charset') + next(createError(415, 'unsupported charset "' + charset.toUpperCase() + '"', { + charset: charset, + type: 'charset.unsupported' + })) + return + } + + // read + read(req, res, next, parse, debug, { + debug: debug, + encoding: charset, + inflate: inflate, + limit: limit, + verify: verify + }) + } +} + +/** + * Get the extended query parser. + * + * @param {object} options + */ + +function extendedparser (options) { + var parameterLimit = options.parameterLimit !== undefined + ? options.parameterLimit + : 1000 + var parse = parser('qs') + + if (isNaN(parameterLimit) || parameterLimit < 1) { + throw new TypeError('option parameterLimit must be a positive number') + } + + if (isFinite(parameterLimit)) { + parameterLimit = parameterLimit | 0 + } + + return function queryparse (body) { + var paramCount = parameterCount(body, parameterLimit) + + if (paramCount === undefined) { + debug('too many parameters') + throw createError(413, 'too many parameters', { + type: 'parameters.too.many' + }) + } + + var arrayLimit = Math.max(100, paramCount) + + debug('parse extended urlencoding') + return parse(body, { + allowPrototypes: true, + arrayLimit: arrayLimit, + depth: Infinity, + parameterLimit: parameterLimit + }) + } +} + +/** + * Get the charset of a request. + * + * @param {object} req + * @api private + */ + +function getCharset (req) { + try { + return (contentType.parse(req).parameters.charset || '').toLowerCase() + } catch (e) { + return undefined + } +} + +/** + * Count the number of parameters, stopping once limit reached + * + * @param {string} body + * @param {number} limit + * @api private + */ + +function parameterCount (body, limit) { + var count = 0 + var index = 0 + + while ((index = body.indexOf('&', index)) !== -1) { + count++ + index++ + + if (count === limit) { + return undefined + } + } + + return count +} + +/** + * Get parser for module name dynamically. + * + * @param {string} name + * @return {function} + * @api private + */ + +function parser (name) { + var mod = parsers[name] + + if (mod !== undefined) { + return mod.parse + } + + // this uses a switch for static require analysis + switch (name) { + case 'qs': + mod = require('qs') + break + case 'querystring': + mod = require('querystring') + break + } + + // store to prevent invoking require() + parsers[name] = mod + + return mod.parse +} + +/** + * Get the simple query parser. + * + * @param {object} options + */ + +function simpleparser (options) { + var parameterLimit = options.parameterLimit !== undefined + ? options.parameterLimit + : 1000 + var parse = parser('querystring') + + if (isNaN(parameterLimit) || parameterLimit < 1) { + throw new TypeError('option parameterLimit must be a positive number') + } + + if (isFinite(parameterLimit)) { + parameterLimit = parameterLimit | 0 + } + + return function queryparse (body) { + var paramCount = parameterCount(body, parameterLimit) + + if (paramCount === undefined) { + debug('too many parameters') + throw createError(413, 'too many parameters', { + type: 'parameters.too.many' + }) + } + + debug('parse urlencoding') + return parse(body, undefined, undefined, { maxKeys: parameterLimit }) + } +} + +/** + * Get the simple type checker. + * + * @param {string} type + * @return {function} + */ + +function typeChecker (type) { + return function checkType (req) { + return Boolean(typeis(req, type)) + } +} diff --git a/node_modules/body-parser/package.json b/node_modules/body-parser/package.json new file mode 100644 index 000000000..9a03357f9 --- /dev/null +++ b/node_modules/body-parser/package.json @@ -0,0 +1,56 @@ +{ + "name": "body-parser", + "description": "Node.js body parsing middleware", + "version": "1.20.0", + "contributors": [ + "Douglas Christopher Wilson ", + "Jonathan Ong (http://jongleberry.com)" + ], + "license": "MIT", + "repository": "expressjs/body-parser", + "dependencies": { + "bytes": "3.1.2", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.10.3", + "raw-body": "2.5.1", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + }, + "devDependencies": { + "eslint": "7.32.0", + "eslint-config-standard": "14.1.1", + "eslint-plugin-import": "2.25.4", + "eslint-plugin-markdown": "2.2.1", + "eslint-plugin-node": "11.1.0", + "eslint-plugin-promise": "5.2.0", + "eslint-plugin-standard": "4.1.0", + "methods": "1.1.2", + "mocha": "9.2.2", + "nyc": "15.1.0", + "safe-buffer": "5.2.1", + "supertest": "6.2.2" + }, + "files": [ + "lib/", + "LICENSE", + "HISTORY.md", + "SECURITY.md", + "index.js" + ], + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + }, + "scripts": { + "lint": "eslint .", + "test": "mocha --require test/support/env --reporter spec --check-leaks --bail test/", + "test-ci": "nyc --reporter=lcov --reporter=text npm test", + "test-cov": "nyc --reporter=html --reporter=text npm test" + } +} diff --git a/node_modules/bson/LICENSE.md b/node_modules/bson/LICENSE.md new file mode 100644 index 000000000..261eeb9e9 --- /dev/null +++ b/node_modules/bson/LICENSE.md @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/node_modules/bson/README.md b/node_modules/bson/README.md new file mode 100644 index 000000000..cd7242fdf --- /dev/null +++ b/node_modules/bson/README.md @@ -0,0 +1,376 @@ +# BSON parser + +BSON is short for "Binary JSON," and is the binary-encoded serialization of JSON-like documents. You can learn more about it in [the specification](http://bsonspec.org). + +This browser version of the BSON parser is compiled using [rollup](https://rollupjs.org/) and the current version is pre-compiled in the `dist` directory. + +This is the default BSON parser, however, there is a C++ Node.js addon version as well that does not support the browser. It can be found at [mongod-js/bson-ext](https://github.com/mongodb-js/bson-ext). + +### Table of Contents +- [Usage](#usage) +- [Bugs/Feature Requests](#bugs--feature-requests) +- [Installation](#installation) +- [Documentation](#documentation) +- [FAQ](#faq) + +## Bugs / Feature Requests + +Think you've found a bug? Want to see a new feature in `bson`? Please open a case in our issue management tool, JIRA: + +1. Create an account and login: [jira.mongodb.org](https://jira.mongodb.org) +2. Navigate to the NODE project: [jira.mongodb.org/browse/NODE](https://jira.mongodb.org/browse/NODE) +3. Click **Create Issue** - Please provide as much information as possible about the issue and how to reproduce it. + +Bug reports in JIRA for all driver projects (i.e. NODE, PYTHON, CSHARP, JAVA) and the Core Server (i.e. SERVER) project are **public**. + +## Usage + +To build a new version perform the following operations: + +``` +npm install +npm run build +``` + +### Node (no bundling) +A simple example of how to use BSON in `Node.js`: + +```js +const BSON = require('bson'); +const Long = BSON.Long; + +// Serialize a document +const doc = { long: Long.fromNumber(100) }; +const data = BSON.serialize(doc); +console.log('data:', data); + +// Deserialize the resulting Buffer +const doc_2 = BSON.deserialize(data); +console.log('doc_2:', doc_2); +``` + +### Browser (no bundling) + +If you are not using a bundler like webpack, you can include `dist/bson.bundle.js` using a script tag. It includes polyfills for built-in node types like `Buffer`. + +```html + + + +``` + +### Using webpack + +If using webpack, you can use your normal import/require syntax of your project to pull in the `bson` library. + +ES6 Example: + +```js +import { Long, serialize, deserialize } from 'bson'; + +// Serialize a document +const doc = { long: Long.fromNumber(100) }; +const data = serialize(doc); +console.log('data:', data); + +// De serialize it again +const doc_2 = deserialize(data); +console.log('doc_2:', doc_2); +``` + +ES5 Example: + +```js +const BSON = require('bson'); +const Long = BSON.Long; + +// Serialize a document +const doc = { long: Long.fromNumber(100) }; +const data = BSON.serialize(doc); +console.log('data:', data); + +// Deserialize the resulting Buffer +const doc_2 = BSON.deserialize(data); +console.log('doc_2:', doc_2); +``` + +Depending on your settings, webpack will under the hood resolve to one of the following: + +- `dist/bson.browser.esm.js` If your project is in the browser and using ES6 modules (Default for `webworker` and `web` targets) +- `dist/bson.browser.umd.js` If your project is in the browser and not using ES6 modules +- `dist/bson.esm.js` If your project is in Node.js and using ES6 modules (Default for `node` targets) +- `lib/bson.js` (the normal include path) If your project is in Node.js and not using ES6 modules + +For more information, see [this page on webpack's `resolve.mainFields`](https://webpack.js.org/configuration/resolve/#resolvemainfields) and [the `package.json` for this project](./package.json#L52) + +### Usage with Angular + +Starting with Angular 6, Angular CLI removed the shim for `global` and other node built-in variables (original comment [here](https://github.com/angular/angular-cli/issues/9827#issuecomment-386154063)). If you are using BSON with Angular, you may need to add the following shim to your `polyfills.ts` file: + +```js +// In polyfills.ts +(window as any).global = window; +``` + +- [Original Comment by Angular CLI](https://github.com/angular/angular-cli/issues/9827#issuecomment-386154063) +- [Original Source for Solution](https://stackoverflow.com/a/50488337/4930088) + +## Installation + +`npm install bson` + +## Documentation + +### Objects + +
+
EJSON : object
+
+
+ +### Functions + +
+
setInternalBufferSize(size)
+

Sets the size of the internal serialization buffer.

+
+
serialize(object)Buffer
+

Serialize a Javascript object.

+
+
serializeWithBufferAndIndex(object, buffer)Number
+

Serialize a Javascript object using a predefined Buffer and index into the buffer, useful when pre-allocating the space for serialization.

+
+
deserialize(buffer)Object
+

Deserialize data as BSON.

+
+
calculateObjectSize(object)Number
+

Calculate the bson size for a passed in Javascript object.

+
+
deserializeStream(data, startIndex, numberOfDocuments, documents, docStartIndex, [options])Number
+

Deserialize stream data as BSON documents.

+
+
+ + + +### EJSON + +* [EJSON](#EJSON) + + * [.parse(text, [options])](#EJSON.parse) + + * [.stringify(value, [replacer], [space], [options])](#EJSON.stringify) + + * [.serialize(bson, [options])](#EJSON.serialize) + + * [.deserialize(ejson, [options])](#EJSON.deserialize) + + + + +#### *EJSON*.parse(text, [options]) + +| Param | Type | Default | Description | +| --- | --- | --- | --- | +| text | string | | | +| [options] | object | | Optional settings | +| [options.relaxed] | boolean | true | Attempt to return native JS types where possible, rather than BSON types (if true) | + +Parse an Extended JSON string, constructing the JavaScript value or object described by that +string. + +**Example** +```js +const { EJSON } = require('bson'); +const text = '{ "int32": { "$numberInt": "10" } }'; + +// prints { int32: { [String: '10'] _bsontype: 'Int32', value: '10' } } +console.log(EJSON.parse(text, { relaxed: false })); + +// prints { int32: 10 } +console.log(EJSON.parse(text)); +``` + + +#### *EJSON*.stringify(value, [replacer], [space], [options]) + +| Param | Type | Default | Description | +| --- | --- | --- | --- | +| value | object | | The value to convert to extended JSON | +| [replacer] | function \| array | | A function that alters the behavior of the stringification process, or an array of String and Number objects that serve as a whitelist for selecting/filtering the properties of the value object to be included in the JSON string. If this value is null or not provided, all properties of the object are included in the resulting JSON string | +| [space] | string \| number | | A String or Number object that's used to insert white space into the output JSON string for readability purposes. | +| [options] | object | | Optional settings | +| [options.relaxed] | boolean | true | Enabled Extended JSON's `relaxed` mode | +| [options.legacy] | boolean | true | Output in Extended JSON v1 | + +Converts a BSON document to an Extended JSON string, optionally replacing values if a replacer +function is specified or optionally including only the specified properties if a replacer array +is specified. + +**Example** +```js +const { EJSON } = require('bson'); +const Int32 = require('mongodb').Int32; +const doc = { int32: new Int32(10) }; + +// prints '{"int32":{"$numberInt":"10"}}' +console.log(EJSON.stringify(doc, { relaxed: false })); + +// prints '{"int32":10}' +console.log(EJSON.stringify(doc)); +``` + + +#### *EJSON*.serialize(bson, [options]) + +| Param | Type | Description | +| --- | --- | --- | +| bson | object | The object to serialize | +| [options] | object | Optional settings passed to the `stringify` function | + +Serializes an object to an Extended JSON string, and reparse it as a JavaScript object. + + + +#### *EJSON*.deserialize(ejson, [options]) + +| Param | Type | Description | +| --- | --- | --- | +| ejson | object | The Extended JSON object to deserialize | +| [options] | object | Optional settings passed to the parse method | + +Deserializes an Extended JSON object into a plain JavaScript object with native/BSON types + + + +### setInternalBufferSize(size) + +| Param | Type | Description | +| --- | --- | --- | +| size | number | The desired size for the internal serialization buffer | + +Sets the size of the internal serialization buffer. + + + +### serialize(object) + +| Param | Type | Default | Description | +| --- | --- | --- | --- | +| object | Object | | the Javascript object to serialize. | +| [options.checkKeys] | Boolean | | the serializer will check if keys are valid. | +| [options.serializeFunctions] | Boolean | false | serialize the javascript functions **(default:false)**. | +| [options.ignoreUndefined] | Boolean | true | ignore undefined fields **(default:true)**. | + +Serialize a Javascript object. + +**Returns**: Buffer - returns the Buffer object containing the serialized object. + + +### serializeWithBufferAndIndex(object, buffer) + +| Param | Type | Default | Description | +| --- | --- | --- | --- | +| object | Object | | the Javascript object to serialize. | +| buffer | Buffer | | the Buffer you pre-allocated to store the serialized BSON object. | +| [options.checkKeys] | Boolean | | the serializer will check if keys are valid. | +| [options.serializeFunctions] | Boolean | false | serialize the javascript functions **(default:false)**. | +| [options.ignoreUndefined] | Boolean | true | ignore undefined fields **(default:true)**. | +| [options.index] | Number | | the index in the buffer where we wish to start serializing into. | + +Serialize a Javascript object using a predefined Buffer and index into the buffer, useful when pre-allocating the space for serialization. + +**Returns**: Number - returns the index pointing to the last written byte in the buffer. + + +### deserialize(buffer) + +| Param | Type | Default | Description | +| --- | --- | --- | --- | +| buffer | Buffer | | the buffer containing the serialized set of BSON documents. | +| [options.evalFunctions] | Object | false | evaluate functions in the BSON document scoped to the object deserialized. | +| [options.cacheFunctions] | Object | false | cache evaluated functions for reuse. | +| [options.promoteLongs] | Object | true | when deserializing a Long will fit it into a Number if it's smaller than 53 bits | +| [options.promoteBuffers] | Object | false | when deserializing a Binary will return it as a node.js Buffer instance. | +| [options.promoteValues] | Object | false | when deserializing will promote BSON values to their Node.js closest equivalent types. | +| [options.fieldsAsRaw] | Object | | allow to specify if there what fields we wish to return as unserialized raw buffer. | +| [options.bsonRegExp] | Object | false | return BSON regular expressions as BSONRegExp instances. | +| [options.allowObjectSmallerThanBufferSize] | boolean | false | allows the buffer to be larger than the parsed BSON object | + +Deserialize data as BSON. + +**Returns**: Object - returns the deserialized Javascript Object. + + +### calculateObjectSize(object) + +| Param | Type | Default | Description | +| --- | --- | --- | --- | +| object | Object | | the Javascript object to calculate the BSON byte size for. | +| [options.serializeFunctions] | Boolean | false | serialize the javascript functions **(default:false)**. | +| [options.ignoreUndefined] | Boolean | true | ignore undefined fields **(default:true)**. | + +Calculate the bson size for a passed in Javascript object. + +**Returns**: Number - returns the number of bytes the BSON object will take up. + + +### deserializeStream(data, startIndex, numberOfDocuments, documents, docStartIndex, [options]) + +| Param | Type | Default | Description | +| --- | --- | --- | --- | +| data | Buffer | | the buffer containing the serialized set of BSON documents. | +| startIndex | Number | | the start index in the data Buffer where the deserialization is to start. | +| numberOfDocuments | Number | | number of documents to deserialize. | +| documents | Array | | an array where to store the deserialized documents. | +| docStartIndex | Number | | the index in the documents array from where to start inserting documents. | +| [options] | Object | | additional options used for the deserialization. | +| [options.evalFunctions] | Object | false | evaluate functions in the BSON document scoped to the object deserialized. | +| [options.cacheFunctions] | Object | false | cache evaluated functions for reuse. | +| [options.promoteLongs] | Object | true | when deserializing a Long will fit it into a Number if it's smaller than 53 bits | +| [options.promoteBuffers] | Object | false | when deserializing a Binary will return it as a node.js Buffer instance. | +| [options.promoteValues] | Object | false | when deserializing will promote BSON values to their Node.js closest equivalent types. | +| [options.fieldsAsRaw] | Object | | allow to specify if there what fields we wish to return as unserialized raw buffer. | +| [options.bsonRegExp] | Object | false | return BSON regular expressions as BSONRegExp instances. | + +Deserialize stream data as BSON documents. + +**Returns**: Number - returns the next index in the buffer after deserialization **x** numbers of documents. + +## FAQ + +#### Why does `undefined` get converted to `null`? + +The `undefined` BSON type has been [deprecated for many years](http://bsonspec.org/spec.html), so this library has dropped support for it. Use the `ignoreUndefined` option (for example, from the [driver](http://mongodb.github.io/node-mongodb-native/2.2/api/MongoClient.html#connect) ) to instead remove `undefined` keys. + +#### How do I add custom serialization logic? + +This library looks for `toBSON()` functions on every path, and calls the `toBSON()` function to get the value to serialize. + +```javascript +const BSON = require('bson'); + +class CustomSerialize { + toBSON() { + return 42; + } +} + +const obj = { answer: new CustomSerialize() }; +// "{ answer: 42 }" +console.log(BSON.deserialize(BSON.serialize(obj))); +``` diff --git a/node_modules/bson/bower.json b/node_modules/bson/bower.json new file mode 100644 index 000000000..74aa6eaab --- /dev/null +++ b/node_modules/bson/bower.json @@ -0,0 +1,26 @@ +{ + "name": "bson", + "description": "A bson parser for node.js and the browser", + "keywords": [ + "mongodb", + "bson", + "parser" + ], + "author": "Christian Amor Kvalheim ", + "main": "./dist/bson.js", + "license": "Apache-2.0", + "moduleType": [ + "globals", + "node" + ], + "ignore": [ + "**/.*", + "alternate_parsers", + "benchmarks", + "bower_components", + "node_modules", + "test", + "tools" + ], + "version": "4.7.0" +} diff --git a/node_modules/bson/bson.d.ts b/node_modules/bson/bson.d.ts new file mode 100644 index 000000000..5a5cf19ff --- /dev/null +++ b/node_modules/bson/bson.d.ts @@ -0,0 +1,1228 @@ +import { Buffer } from 'buffer'; + +/** + * A class representation of the BSON Binary type. + * @public + * @category BSONType + */ +export declare class Binary { + _bsontype: 'Binary'; + /* Excluded from this release type: BSON_BINARY_SUBTYPE_DEFAULT */ + /** Initial buffer default size */ + static readonly BUFFER_SIZE = 256; + /** Default BSON type */ + static readonly SUBTYPE_DEFAULT = 0; + /** Function BSON type */ + static readonly SUBTYPE_FUNCTION = 1; + /** Byte Array BSON type */ + static readonly SUBTYPE_BYTE_ARRAY = 2; + /** Deprecated UUID BSON type @deprecated Please use SUBTYPE_UUID */ + static readonly SUBTYPE_UUID_OLD = 3; + /** UUID BSON type */ + static readonly SUBTYPE_UUID = 4; + /** MD5 BSON type */ + static readonly SUBTYPE_MD5 = 5; + /** Encrypted BSON type */ + static readonly SUBTYPE_ENCRYPTED = 6; + /** Column BSON type */ + static readonly SUBTYPE_COLUMN = 7; + /** User BSON type */ + static readonly SUBTYPE_USER_DEFINED = 128; + buffer: Buffer; + sub_type: number; + position: number; + /** + * Create a new Binary instance. + * + * This constructor can accept a string as its first argument. In this case, + * this string will be encoded using ISO-8859-1, **not** using UTF-8. + * This is almost certainly not what you want. Use `new Binary(Buffer.from(string))` + * instead to convert the string to a Buffer using UTF-8 first. + * + * @param buffer - a buffer object containing the binary data. + * @param subType - the option binary type. + */ + constructor(buffer?: string | BinarySequence, subType?: number); + /** + * Updates this binary with byte_value. + * + * @param byteValue - a single byte we wish to write. + */ + put(byteValue: string | number | Uint8Array | Buffer | number[]): void; + /** + * Writes a buffer or string to the binary. + * + * @param sequence - a string or buffer to be written to the Binary BSON object. + * @param offset - specify the binary of where to write the content. + */ + write(sequence: string | BinarySequence, offset: number): void; + /** + * Reads **length** bytes starting at **position**. + * + * @param position - read from the given position in the Binary. + * @param length - the number of bytes to read. + */ + read(position: number, length: number): BinarySequence; + /** + * Returns the value of this binary as a string. + * @param asRaw - Will skip converting to a string + * @remarks + * This is handy when calling this function conditionally for some key value pairs and not others + */ + value(asRaw?: boolean): string | BinarySequence; + /** the length of the binary sequence */ + length(): number; + toJSON(): string; + toString(format?: string): string; + /* Excluded from this release type: toExtendedJSON */ + toUUID(): UUID; + /* Excluded from this release type: fromExtendedJSON */ + inspect(): string; +} + +/** @public */ +export declare interface BinaryExtended { + $binary: { + subType: string; + base64: string; + }; +} + +/** @public */ +export declare interface BinaryExtendedLegacy { + $type: string; + $binary: string; +} + +/** @public */ +export declare type BinarySequence = Uint8Array | Buffer | number[]; + +/** + * BSON default export + * @deprecated Please use named exports + * @privateRemarks + * We want to someday deprecate the default export, + * so none of the new TS types are being exported on the default + * @public + */ +declare const BSON: { + Binary: typeof Binary; + Code: typeof Code; + DBRef: typeof DBRef; + Decimal128: typeof Decimal128; + Double: typeof Double; + Int32: typeof Int32; + Long: typeof Long; + UUID: typeof UUID; + Map: MapConstructor; + MaxKey: typeof MaxKey; + MinKey: typeof MinKey; + ObjectId: typeof ObjectId; + ObjectID: typeof ObjectId; + BSONRegExp: typeof BSONRegExp; + BSONSymbol: typeof BSONSymbol; + Timestamp: typeof Timestamp; + EJSON: typeof EJSON; + setInternalBufferSize: typeof setInternalBufferSize; + serialize: typeof serialize; + serializeWithBufferAndIndex: typeof serializeWithBufferAndIndex; + deserialize: typeof deserialize; + calculateObjectSize: typeof calculateObjectSize; + deserializeStream: typeof deserializeStream; + BSONError: typeof BSONError; + BSONTypeError: typeof BSONTypeError; +}; +export default BSON; + +/* Excluded from this release type: BSON_BINARY_SUBTYPE_BYTE_ARRAY */ + +/* Excluded from this release type: BSON_BINARY_SUBTYPE_COLUMN */ + +/* Excluded from this release type: BSON_BINARY_SUBTYPE_DEFAULT */ + +/* Excluded from this release type: BSON_BINARY_SUBTYPE_ENCRYPTED */ + +/* Excluded from this release type: BSON_BINARY_SUBTYPE_FUNCTION */ + +/* Excluded from this release type: BSON_BINARY_SUBTYPE_MD5 */ + +/* Excluded from this release type: BSON_BINARY_SUBTYPE_USER_DEFINED */ + +/* Excluded from this release type: BSON_BINARY_SUBTYPE_UUID */ + +/* Excluded from this release type: BSON_BINARY_SUBTYPE_UUID_NEW */ + +/* Excluded from this release type: BSON_DATA_ARRAY */ + +/* Excluded from this release type: BSON_DATA_BINARY */ + +/* Excluded from this release type: BSON_DATA_BOOLEAN */ + +/* Excluded from this release type: BSON_DATA_CODE */ + +/* Excluded from this release type: BSON_DATA_CODE_W_SCOPE */ + +/* Excluded from this release type: BSON_DATA_DATE */ + +/* Excluded from this release type: BSON_DATA_DBPOINTER */ + +/* Excluded from this release type: BSON_DATA_DECIMAL128 */ + +/* Excluded from this release type: BSON_DATA_INT */ + +/* Excluded from this release type: BSON_DATA_LONG */ + +/* Excluded from this release type: BSON_DATA_MAX_KEY */ + +/* Excluded from this release type: BSON_DATA_MIN_KEY */ + +/* Excluded from this release type: BSON_DATA_NULL */ + +/* Excluded from this release type: BSON_DATA_NUMBER */ + +/* Excluded from this release type: BSON_DATA_OBJECT */ + +/* Excluded from this release type: BSON_DATA_OID */ + +/* Excluded from this release type: BSON_DATA_REGEXP */ + +/* Excluded from this release type: BSON_DATA_STRING */ + +/* Excluded from this release type: BSON_DATA_SYMBOL */ + +/* Excluded from this release type: BSON_DATA_TIMESTAMP */ + +/* Excluded from this release type: BSON_DATA_UNDEFINED */ + +/* Excluded from this release type: BSON_INT32_MAX */ + +/* Excluded from this release type: BSON_INT32_MIN */ + +/* Excluded from this release type: BSON_INT64_MAX */ + +/* Excluded from this release type: BSON_INT64_MIN */ + +/** @public */ +export declare class BSONError extends Error { + constructor(message: string); + get name(): string; +} + +/** + * A class representation of the BSON RegExp type. + * @public + * @category BSONType + */ +export declare class BSONRegExp { + _bsontype: 'BSONRegExp'; + pattern: string; + options: string; + /** + * @param pattern - The regular expression pattern to match + * @param options - The regular expression options + */ + constructor(pattern: string, options?: string); + static parseOptions(options?: string): string; + /* Excluded from this release type: toExtendedJSON */ + /* Excluded from this release type: fromExtendedJSON */ +} + +/** @public */ +export declare interface BSONRegExpExtended { + $regularExpression: { + pattern: string; + options: string; + }; +} + +/** @public */ +export declare interface BSONRegExpExtendedLegacy { + $regex: string | BSONRegExp; + $options: string; +} + +/** + * A class representation of the BSON Symbol type. + * @public + * @category BSONType + */ +export declare class BSONSymbol { + _bsontype: 'Symbol'; + value: string; + /** + * @param value - the string representing the symbol. + */ + constructor(value: string); + /** Access the wrapped string value. */ + valueOf(): string; + toString(): string; + /* Excluded from this release type: inspect */ + toJSON(): string; + /* Excluded from this release type: toExtendedJSON */ + /* Excluded from this release type: fromExtendedJSON */ +} + +/** @public */ +export declare interface BSONSymbolExtended { + $symbol: string; +} + +/** @public */ +export declare class BSONTypeError extends TypeError { + constructor(message: string); + get name(): string; +} + +/** + * Calculate the bson size for a passed in Javascript object. + * + * @param object - the Javascript object to calculate the BSON byte size for + * @returns size of BSON object in bytes + * @public + */ +export declare function calculateObjectSize(object: Document, options?: CalculateObjectSizeOptions): number; + +/** @public */ +export declare type CalculateObjectSizeOptions = Pick; + +/** + * A class representation of the BSON Code type. + * @public + * @category BSONType + */ +export declare class Code { + _bsontype: 'Code'; + code: string | Function; + scope?: Document; + /** + * @param code - a string or function. + * @param scope - an optional scope for the function. + */ + constructor(code: string | Function, scope?: Document); + toJSON(): { + code: string | Function; + scope?: Document; + }; + /* Excluded from this release type: toExtendedJSON */ + /* Excluded from this release type: fromExtendedJSON */ + inspect(): string; +} + +/** @public */ +export declare interface CodeExtended { + $code: string | Function; + $scope?: Document; +} + +/** + * A class representation of the BSON DBRef type. + * @public + * @category BSONType + */ +export declare class DBRef { + _bsontype: 'DBRef'; + collection: string; + oid: ObjectId; + db?: string; + fields: Document; + /** + * @param collection - the collection name. + * @param oid - the reference ObjectId. + * @param db - optional db name, if omitted the reference is local to the current db. + */ + constructor(collection: string, oid: ObjectId, db?: string, fields?: Document); + /* Excluded from this release type: namespace */ + /* Excluded from this release type: namespace */ + toJSON(): DBRefLike & Document; + /* Excluded from this release type: toExtendedJSON */ + /* Excluded from this release type: fromExtendedJSON */ + inspect(): string; +} + +/** @public */ +export declare interface DBRefLike { + $ref: string; + $id: ObjectId; + $db?: string; +} + +/** + * A class representation of the BSON Decimal128 type. + * @public + * @category BSONType + */ +export declare class Decimal128 { + _bsontype: 'Decimal128'; + readonly bytes: Buffer; + /** + * @param bytes - a buffer containing the raw Decimal128 bytes in little endian order, + * or a string representation as returned by .toString() + */ + constructor(bytes: Buffer | string); + /** + * Create a Decimal128 instance from a string representation + * + * @param representation - a numeric string representation. + */ + static fromString(representation: string): Decimal128; + /** Create a string representation of the raw Decimal128 value */ + toString(): string; + toJSON(): Decimal128Extended; + /* Excluded from this release type: toExtendedJSON */ + /* Excluded from this release type: fromExtendedJSON */ + inspect(): string; +} + +/** @public */ +export declare interface Decimal128Extended { + $numberDecimal: string; +} + +/** + * Deserialize data as BSON. + * + * @param buffer - the buffer containing the serialized set of BSON documents. + * @returns returns the deserialized Javascript Object. + * @public + */ +export declare function deserialize(buffer: Buffer | ArrayBufferView | ArrayBuffer, options?: DeserializeOptions): Document; + +/** @public */ +export declare interface DeserializeOptions { + /** evaluate functions in the BSON document scoped to the object deserialized. */ + evalFunctions?: boolean; + /** cache evaluated functions for reuse. */ + cacheFunctions?: boolean; + /** + * use a crc32 code for caching, otherwise use the string of the function. + * @deprecated this option to use the crc32 function never worked as intended + * due to the fact that the crc32 function itself was never implemented. + * */ + cacheFunctionsCrc32?: boolean; + /** when deserializing a Long will fit it into a Number if it's smaller than 53 bits */ + promoteLongs?: boolean; + /** when deserializing a Binary will return it as a node.js Buffer instance. */ + promoteBuffers?: boolean; + /** when deserializing will promote BSON values to their Node.js closest equivalent types. */ + promoteValues?: boolean; + /** allow to specify if there what fields we wish to return as unserialized raw buffer. */ + fieldsAsRaw?: Document; + /** return BSON regular expressions as BSONRegExp instances. */ + bsonRegExp?: boolean; + /** allows the buffer to be larger than the parsed BSON object */ + allowObjectSmallerThanBufferSize?: boolean; + /** Offset into buffer to begin reading document from */ + index?: number; + raw?: boolean; + /** Allows for opt-out utf-8 validation for all keys or + * specified keys. Must be all true or all false. + * + * @example + * ```js + * // disables validation on all keys + * validation: { utf8: false } + * + * // enables validation only on specified keys a, b, and c + * validation: { utf8: { a: true, b: true, c: true } } + * + * // disables validation only on specified keys a, b + * validation: { utf8: { a: false, b: false } } + * ``` + */ + validation?: { + utf8: boolean | Record | Record; + }; +} + +/** + * Deserialize stream data as BSON documents. + * + * @param data - the buffer containing the serialized set of BSON documents. + * @param startIndex - the start index in the data Buffer where the deserialization is to start. + * @param numberOfDocuments - number of documents to deserialize. + * @param documents - an array where to store the deserialized documents. + * @param docStartIndex - the index in the documents array from where to start inserting documents. + * @param options - additional options used for the deserialization. + * @returns next index in the buffer after deserialization **x** numbers of documents. + * @public + */ +export declare function deserializeStream(data: Buffer | ArrayBufferView | ArrayBuffer, startIndex: number, numberOfDocuments: number, documents: Document[], docStartIndex: number, options: DeserializeOptions): number; + +/** @public */ +export declare interface Document { + [key: string]: any; +} + +/** + * A class representation of the BSON Double type. + * @public + * @category BSONType + */ +export declare class Double { + _bsontype: 'Double'; + value: number; + /** + * Create a Double type + * + * @param value - the number we want to represent as a double. + */ + constructor(value: number); + /** + * Access the number value. + * + * @returns returns the wrapped double number. + */ + valueOf(): number; + toJSON(): number; + toString(radix?: number): string; + /* Excluded from this release type: toExtendedJSON */ + /* Excluded from this release type: fromExtendedJSON */ + inspect(): string; +} + +/** @public */ +export declare interface DoubleExtended { + $numberDouble: string; +} + +/** + * EJSON parse / stringify API + * @public + */ +export declare namespace EJSON { + export interface Options { + /** Output using the Extended JSON v1 spec */ + legacy?: boolean; + /** Enable Extended JSON's `relaxed` mode, which attempts to return native JS types where possible, rather than BSON types */ + relaxed?: boolean; + /** + * Disable Extended JSON's `relaxed` mode, which attempts to return BSON types where possible, rather than native JS types + * @deprecated Please use the relaxed property instead + */ + strict?: boolean; + } + /** + * Parse an Extended JSON string, constructing the JavaScript value or object described by that + * string. + * + * @example + * ```js + * const { EJSON } = require('bson'); + * const text = '{ "int32": { "$numberInt": "10" } }'; + * + * // prints { int32: { [String: '10'] _bsontype: 'Int32', value: '10' } } + * console.log(EJSON.parse(text, { relaxed: false })); + * + * // prints { int32: 10 } + * console.log(EJSON.parse(text)); + * ``` + */ + export function parse(text: string, options?: EJSON.Options): SerializableTypes; + export type JSONPrimitive = string | number | boolean | null; + export type SerializableTypes = Document | Array | JSONPrimitive; + /** + * Converts a BSON document to an Extended JSON string, optionally replacing values if a replacer + * function is specified or optionally including only the specified properties if a replacer array + * is specified. + * + * @param value - The value to convert to extended JSON + * @param replacer - A function that alters the behavior of the stringification process, or an array of String and Number objects that serve as a whitelist for selecting/filtering the properties of the value object to be included in the JSON string. If this value is null or not provided, all properties of the object are included in the resulting JSON string + * @param space - A String or Number object that's used to insert white space into the output JSON string for readability purposes. + * @param options - Optional settings + * + * @example + * ```js + * const { EJSON } = require('bson'); + * const Int32 = require('mongodb').Int32; + * const doc = { int32: new Int32(10) }; + * + * // prints '{"int32":{"$numberInt":"10"}}' + * console.log(EJSON.stringify(doc, { relaxed: false })); + * + * // prints '{"int32":10}' + * console.log(EJSON.stringify(doc)); + * ``` + */ + export function stringify(value: SerializableTypes, replacer?: (number | string)[] | ((this: any, key: string, value: any) => any) | EJSON.Options, space?: string | number, options?: EJSON.Options): string; + /** + * Serializes an object to an Extended JSON string, and reparse it as a JavaScript object. + * + * @param value - The object to serialize + * @param options - Optional settings passed to the `stringify` function + */ + export function serialize(value: SerializableTypes, options?: EJSON.Options): Document; + /** + * Deserializes an Extended JSON object into a plain JavaScript object with native/BSON types + * + * @param ejson - The Extended JSON object to deserialize + * @param options - Optional settings passed to the parse method + */ + export function deserialize(ejson: Document, options?: EJSON.Options): SerializableTypes; +} + +/** @public */ +export declare type EJSONOptions = EJSON.Options; + +/** + * A class representation of a BSON Int32 type. + * @public + * @category BSONType + */ +export declare class Int32 { + _bsontype: 'Int32'; + value: number; + /** + * Create an Int32 type + * + * @param value - the number we want to represent as an int32. + */ + constructor(value: number | string); + /** + * Access the number value. + * + * @returns returns the wrapped int32 number. + */ + valueOf(): number; + toString(radix?: number): string; + toJSON(): number; + /* Excluded from this release type: toExtendedJSON */ + /* Excluded from this release type: fromExtendedJSON */ + inspect(): string; +} + +/** @public */ +export declare interface Int32Extended { + $numberInt: string; +} + +declare const kId: unique symbol; + +/** + * A class representing a 64-bit integer + * @public + * @category BSONType + * @remarks + * The internal representation of a long is the two given signed, 32-bit values. + * We use 32-bit pieces because these are the size of integers on which + * Javascript performs bit-operations. For operations like addition and + * multiplication, we split each number into 16 bit pieces, which can easily be + * multiplied within Javascript's floating-point representation without overflow + * or change in sign. + * In the algorithms below, we frequently reduce the negative case to the + * positive case by negating the input(s) and then post-processing the result. + * Note that we must ALWAYS check specially whether those values are MIN_VALUE + * (-2^63) because -MIN_VALUE == MIN_VALUE (since 2^63 cannot be represented as + * a positive number, it overflows back into a negative). Not handling this + * case would often result in infinite recursion. + * Common constant values ZERO, ONE, NEG_ONE, etc. are found as static properties on this class. + */ +export declare class Long { + _bsontype: 'Long'; + /** An indicator used to reliably determine if an object is a Long or not. */ + __isLong__: true; + /** + * The high 32 bits as a signed value. + */ + high: number; + /** + * The low 32 bits as a signed value. + */ + low: number; + /** + * Whether unsigned or not. + */ + unsigned: boolean; + /** + * Constructs a 64 bit two's-complement integer, given its low and high 32 bit values as *signed* integers. + * See the from* functions below for more convenient ways of constructing Longs. + * + * Acceptable signatures are: + * - Long(low, high, unsigned?) + * - Long(bigint, unsigned?) + * - Long(string, unsigned?) + * + * @param low - The low (signed) 32 bits of the long + * @param high - The high (signed) 32 bits of the long + * @param unsigned - Whether unsigned or not, defaults to signed + */ + constructor(low?: number | bigint | string, high?: number | boolean, unsigned?: boolean); + static TWO_PWR_24: Long; + /** Maximum unsigned value. */ + static MAX_UNSIGNED_VALUE: Long; + /** Signed zero */ + static ZERO: Long; + /** Unsigned zero. */ + static UZERO: Long; + /** Signed one. */ + static ONE: Long; + /** Unsigned one. */ + static UONE: Long; + /** Signed negative one. */ + static NEG_ONE: Long; + /** Maximum signed value. */ + static MAX_VALUE: Long; + /** Minimum signed value. */ + static MIN_VALUE: Long; + /** + * Returns a Long representing the 64 bit integer that comes by concatenating the given low and high bits. + * Each is assumed to use 32 bits. + * @param lowBits - The low 32 bits + * @param highBits - The high 32 bits + * @param unsigned - Whether unsigned or not, defaults to signed + * @returns The corresponding Long value + */ + static fromBits(lowBits: number, highBits: number, unsigned?: boolean): Long; + /** + * Returns a Long representing the given 32 bit integer value. + * @param value - The 32 bit integer in question + * @param unsigned - Whether unsigned or not, defaults to signed + * @returns The corresponding Long value + */ + static fromInt(value: number, unsigned?: boolean): Long; + /** + * Returns a Long representing the given value, provided that it is a finite number. Otherwise, zero is returned. + * @param value - The number in question + * @param unsigned - Whether unsigned or not, defaults to signed + * @returns The corresponding Long value + */ + static fromNumber(value: number, unsigned?: boolean): Long; + /** + * Returns a Long representing the given value, provided that it is a finite number. Otherwise, zero is returned. + * @param value - The number in question + * @param unsigned - Whether unsigned or not, defaults to signed + * @returns The corresponding Long value + */ + static fromBigInt(value: bigint, unsigned?: boolean): Long; + /** + * Returns a Long representation of the given string, written using the specified radix. + * @param str - The textual representation of the Long + * @param unsigned - Whether unsigned or not, defaults to signed + * @param radix - The radix in which the text is written (2-36), defaults to 10 + * @returns The corresponding Long value + */ + static fromString(str: string, unsigned?: boolean, radix?: number): Long; + /** + * Creates a Long from its byte representation. + * @param bytes - Byte representation + * @param unsigned - Whether unsigned or not, defaults to signed + * @param le - Whether little or big endian, defaults to big endian + * @returns The corresponding Long value + */ + static fromBytes(bytes: number[], unsigned?: boolean, le?: boolean): Long; + /** + * Creates a Long from its little endian byte representation. + * @param bytes - Little endian byte representation + * @param unsigned - Whether unsigned or not, defaults to signed + * @returns The corresponding Long value + */ + static fromBytesLE(bytes: number[], unsigned?: boolean): Long; + /** + * Creates a Long from its big endian byte representation. + * @param bytes - Big endian byte representation + * @param unsigned - Whether unsigned or not, defaults to signed + * @returns The corresponding Long value + */ + static fromBytesBE(bytes: number[], unsigned?: boolean): Long; + /** + * Tests if the specified object is a Long. + */ + static isLong(value: unknown): value is Long; + /** + * Converts the specified value to a Long. + * @param unsigned - Whether unsigned or not, defaults to signed + */ + static fromValue(val: number | string | { + low: number; + high: number; + unsigned?: boolean; + }, unsigned?: boolean): Long; + /** Returns the sum of this and the specified Long. */ + add(addend: string | number | Long | Timestamp): Long; + /** + * Returns the sum of this and the specified Long. + * @returns Sum + */ + and(other: string | number | Long | Timestamp): Long; + /** + * Compares this Long's value with the specified's. + * @returns 0 if they are the same, 1 if the this is greater and -1 if the given one is greater + */ + compare(other: string | number | Long | Timestamp): 0 | 1 | -1; + /** This is an alias of {@link Long.compare} */ + comp(other: string | number | Long | Timestamp): 0 | 1 | -1; + /** + * Returns this Long divided by the specified. The result is signed if this Long is signed or unsigned if this Long is unsigned. + * @returns Quotient + */ + divide(divisor: string | number | Long | Timestamp): Long; + /**This is an alias of {@link Long.divide} */ + div(divisor: string | number | Long | Timestamp): Long; + /** + * Tests if this Long's value equals the specified's. + * @param other - Other value + */ + equals(other: string | number | Long | Timestamp): boolean; + /** This is an alias of {@link Long.equals} */ + eq(other: string | number | Long | Timestamp): boolean; + /** Gets the high 32 bits as a signed integer. */ + getHighBits(): number; + /** Gets the high 32 bits as an unsigned integer. */ + getHighBitsUnsigned(): number; + /** Gets the low 32 bits as a signed integer. */ + getLowBits(): number; + /** Gets the low 32 bits as an unsigned integer. */ + getLowBitsUnsigned(): number; + /** Gets the number of bits needed to represent the absolute value of this Long. */ + getNumBitsAbs(): number; + /** Tests if this Long's value is greater than the specified's. */ + greaterThan(other: string | number | Long | Timestamp): boolean; + /** This is an alias of {@link Long.greaterThan} */ + gt(other: string | number | Long | Timestamp): boolean; + /** Tests if this Long's value is greater than or equal the specified's. */ + greaterThanOrEqual(other: string | number | Long | Timestamp): boolean; + /** This is an alias of {@link Long.greaterThanOrEqual} */ + gte(other: string | number | Long | Timestamp): boolean; + /** This is an alias of {@link Long.greaterThanOrEqual} */ + ge(other: string | number | Long | Timestamp): boolean; + /** Tests if this Long's value is even. */ + isEven(): boolean; + /** Tests if this Long's value is negative. */ + isNegative(): boolean; + /** Tests if this Long's value is odd. */ + isOdd(): boolean; + /** Tests if this Long's value is positive. */ + isPositive(): boolean; + /** Tests if this Long's value equals zero. */ + isZero(): boolean; + /** Tests if this Long's value is less than the specified's. */ + lessThan(other: string | number | Long | Timestamp): boolean; + /** This is an alias of {@link Long#lessThan}. */ + lt(other: string | number | Long | Timestamp): boolean; + /** Tests if this Long's value is less than or equal the specified's. */ + lessThanOrEqual(other: string | number | Long | Timestamp): boolean; + /** This is an alias of {@link Long.lessThanOrEqual} */ + lte(other: string | number | Long | Timestamp): boolean; + /** Returns this Long modulo the specified. */ + modulo(divisor: string | number | Long | Timestamp): Long; + /** This is an alias of {@link Long.modulo} */ + mod(divisor: string | number | Long | Timestamp): Long; + /** This is an alias of {@link Long.modulo} */ + rem(divisor: string | number | Long | Timestamp): Long; + /** + * Returns the product of this and the specified Long. + * @param multiplier - Multiplier + * @returns Product + */ + multiply(multiplier: string | number | Long | Timestamp): Long; + /** This is an alias of {@link Long.multiply} */ + mul(multiplier: string | number | Long | Timestamp): Long; + /** Returns the Negation of this Long's value. */ + negate(): Long; + /** This is an alias of {@link Long.negate} */ + neg(): Long; + /** Returns the bitwise NOT of this Long. */ + not(): Long; + /** Tests if this Long's value differs from the specified's. */ + notEquals(other: string | number | Long | Timestamp): boolean; + /** This is an alias of {@link Long.notEquals} */ + neq(other: string | number | Long | Timestamp): boolean; + /** This is an alias of {@link Long.notEquals} */ + ne(other: string | number | Long | Timestamp): boolean; + /** + * Returns the bitwise OR of this Long and the specified. + */ + or(other: number | string | Long): Long; + /** + * Returns this Long with bits shifted to the left by the given amount. + * @param numBits - Number of bits + * @returns Shifted Long + */ + shiftLeft(numBits: number | Long): Long; + /** This is an alias of {@link Long.shiftLeft} */ + shl(numBits: number | Long): Long; + /** + * Returns this Long with bits arithmetically shifted to the right by the given amount. + * @param numBits - Number of bits + * @returns Shifted Long + */ + shiftRight(numBits: number | Long): Long; + /** This is an alias of {@link Long.shiftRight} */ + shr(numBits: number | Long): Long; + /** + * Returns this Long with bits logically shifted to the right by the given amount. + * @param numBits - Number of bits + * @returns Shifted Long + */ + shiftRightUnsigned(numBits: Long | number): Long; + /** This is an alias of {@link Long.shiftRightUnsigned} */ + shr_u(numBits: number | Long): Long; + /** This is an alias of {@link Long.shiftRightUnsigned} */ + shru(numBits: number | Long): Long; + /** + * Returns the difference of this and the specified Long. + * @param subtrahend - Subtrahend + * @returns Difference + */ + subtract(subtrahend: string | number | Long | Timestamp): Long; + /** This is an alias of {@link Long.subtract} */ + sub(subtrahend: string | number | Long | Timestamp): Long; + /** Converts the Long to a 32 bit integer, assuming it is a 32 bit integer. */ + toInt(): number; + /** Converts the Long to a the nearest floating-point representation of this value (double, 53 bit mantissa). */ + toNumber(): number; + /** Converts the Long to a BigInt (arbitrary precision). */ + toBigInt(): bigint; + /** + * Converts this Long to its byte representation. + * @param le - Whether little or big endian, defaults to big endian + * @returns Byte representation + */ + toBytes(le?: boolean): number[]; + /** + * Converts this Long to its little endian byte representation. + * @returns Little endian byte representation + */ + toBytesLE(): number[]; + /** + * Converts this Long to its big endian byte representation. + * @returns Big endian byte representation + */ + toBytesBE(): number[]; + /** + * Converts this Long to signed. + */ + toSigned(): Long; + /** + * Converts the Long to a string written in the specified radix. + * @param radix - Radix (2-36), defaults to 10 + * @throws RangeError If `radix` is out of range + */ + toString(radix?: number): string; + /** Converts this Long to unsigned. */ + toUnsigned(): Long; + /** Returns the bitwise XOR of this Long and the given one. */ + xor(other: Long | number | string): Long; + /** This is an alias of {@link Long.isZero} */ + eqz(): boolean; + /** This is an alias of {@link Long.lessThanOrEqual} */ + le(other: string | number | Long | Timestamp): boolean; + toExtendedJSON(options?: EJSONOptions): number | LongExtended; + static fromExtendedJSON(doc: { + $numberLong: string; + }, options?: EJSONOptions): number | Long; + inspect(): string; +} + +/** @public */ +export declare interface LongExtended { + $numberLong: string; +} + +/** @public */ +export declare type LongWithoutOverrides = new (low: unknown, high?: number, unsigned?: boolean) => { + [P in Exclude]: Long[P]; +}; + +/** @public */ +export declare const LongWithoutOverridesClass: LongWithoutOverrides; + +/** @public */ +declare let Map_2: MapConstructor; +export { Map_2 as Map } + +/** + * A class representation of the BSON MaxKey type. + * @public + * @category BSONType + */ +export declare class MaxKey { + _bsontype: 'MaxKey'; + constructor(); + /* Excluded from this release type: toExtendedJSON */ + /* Excluded from this release type: fromExtendedJSON */ + inspect(): string; +} + +/** @public */ +export declare interface MaxKeyExtended { + $maxKey: 1; +} + +/** + * A class representation of the BSON MinKey type. + * @public + * @category BSONType + */ +export declare class MinKey { + _bsontype: 'MinKey'; + constructor(); + /* Excluded from this release type: toExtendedJSON */ + /* Excluded from this release type: fromExtendedJSON */ + inspect(): string; +} + +/** @public */ +export declare interface MinKeyExtended { + $minKey: 1; +} + +/** + * A class representation of the BSON ObjectId type. + * @public + * @category BSONType + */ +declare class ObjectId { + _bsontype: 'ObjectID'; + /* Excluded from this release type: index */ + static cacheHexString: boolean; + /* Excluded from this release type: [kId] */ + /* Excluded from this release type: __id */ + /** + * Create an ObjectId type + * + * @param inputId - Can be a 24 character hex string, 12 byte binary Buffer, or a number. + */ + constructor(inputId?: string | number | ObjectId | ObjectIdLike | Buffer | Uint8Array); + /** + * The ObjectId bytes + * @readonly + */ + get id(): Buffer; + set id(value: Buffer); + /** + * The generation time of this ObjectId instance + * @deprecated Please use getTimestamp / createFromTime which returns an int32 epoch + */ + get generationTime(): number; + set generationTime(value: number); + /** Returns the ObjectId id as a 24 character hex string representation */ + toHexString(): string; + /* Excluded from this release type: getInc */ + /** + * Generate a 12 byte id buffer used in ObjectId's + * + * @param time - pass in a second based timestamp. + */ + static generate(time?: number): Buffer; + /** + * Converts the id into a 24 character hex string for printing + * + * @param format - The Buffer toString format parameter. + */ + toString(format?: string): string; + /** Converts to its JSON the 24 character hex string representation. */ + toJSON(): string; + /** + * Compares the equality of this ObjectId with `otherID`. + * + * @param otherId - ObjectId instance to compare against. + */ + equals(otherId: string | ObjectId | ObjectIdLike): boolean; + /** Returns the generation date (accurate up to the second) that this ID was generated. */ + getTimestamp(): Date; + /* Excluded from this release type: createPk */ + /** + * Creates an ObjectId from a second based number, with the rest of the ObjectId zeroed out. Used for comparisons or sorting the ObjectId. + * + * @param time - an integer number representing a number of seconds. + */ + static createFromTime(time: number): ObjectId; + /** + * Creates an ObjectId from a hex string representation of an ObjectId. + * + * @param hexString - create a ObjectId from a passed in 24 character hexstring. + */ + static createFromHexString(hexString: string): ObjectId; + /** + * Checks if a value is a valid bson ObjectId + * + * @param id - ObjectId instance to validate. + */ + static isValid(id: string | number | ObjectId | ObjectIdLike | Buffer | Uint8Array): boolean; + /* Excluded from this release type: toExtendedJSON */ + /* Excluded from this release type: fromExtendedJSON */ + inspect(): string; +} +export { ObjectId as ObjectID } +export { ObjectId } + +/** @public */ +export declare interface ObjectIdExtended { + $oid: string; +} + +/** @public */ +export declare interface ObjectIdLike { + id: string | Buffer; + __id?: string; + toHexString(): string; +} + +/** + * Serialize a Javascript object. + * + * @param object - the Javascript object to serialize. + * @returns Buffer object containing the serialized object. + * @public + */ +export declare function serialize(object: Document, options?: SerializeOptions): Buffer; + +/** @public */ +export declare interface SerializeOptions { + /** the serializer will check if keys are valid. */ + checkKeys?: boolean; + /** serialize the javascript functions **(default:false)**. */ + serializeFunctions?: boolean; + /** serialize will not emit undefined fields **(default:true)** */ + ignoreUndefined?: boolean; + /* Excluded from this release type: minInternalBufferSize */ + /** the index in the buffer where we wish to start serializing into */ + index?: number; +} + +/** + * Serialize a Javascript object using a predefined Buffer and index into the buffer, + * useful when pre-allocating the space for serialization. + * + * @param object - the Javascript object to serialize. + * @param finalBuffer - the Buffer you pre-allocated to store the serialized BSON object. + * @returns the index pointing to the last written byte in the buffer. + * @public + */ +export declare function serializeWithBufferAndIndex(object: Document, finalBuffer: Buffer, options?: SerializeOptions): number; + +/** + * Sets the size of the internal serialization buffer. + * + * @param size - The desired size for the internal serialization buffer + * @public + */ +export declare function setInternalBufferSize(size: number): void; + +/** + * @public + * @category BSONType + * */ +export declare class Timestamp extends LongWithoutOverridesClass { + _bsontype: 'Timestamp'; + static readonly MAX_VALUE: Long; + /** + * @param low - A 64-bit Long representing the Timestamp. + */ + constructor(long: Long); + /** + * @param value - A pair of two values indicating timestamp and increment. + */ + constructor(value: { + t: number; + i: number; + }); + /** + * @param low - the low (signed) 32 bits of the Timestamp. + * @param high - the high (signed) 32 bits of the Timestamp. + * @deprecated Please use `Timestamp({ t: high, i: low })` or `Timestamp(Long(low, high))` instead. + */ + constructor(low: number, high: number); + toJSON(): { + $timestamp: string; + }; + /** Returns a Timestamp represented by the given (32-bit) integer value. */ + static fromInt(value: number): Timestamp; + /** Returns a Timestamp representing the given number value, provided that it is a finite number. Otherwise, zero is returned. */ + static fromNumber(value: number): Timestamp; + /** + * Returns a Timestamp for the given high and low bits. Each is assumed to use 32 bits. + * + * @param lowBits - the low 32-bits. + * @param highBits - the high 32-bits. + */ + static fromBits(lowBits: number, highBits: number): Timestamp; + /** + * Returns a Timestamp from the given string, optionally using the given radix. + * + * @param str - the textual representation of the Timestamp. + * @param optRadix - the radix in which the text is written. + */ + static fromString(str: string, optRadix: number): Timestamp; + /* Excluded from this release type: toExtendedJSON */ + /* Excluded from this release type: fromExtendedJSON */ + inspect(): string; +} + +/** @public */ +export declare interface TimestampExtended { + $timestamp: { + t: number; + i: number; + }; +} + +/** @public */ +export declare type TimestampOverrides = '_bsontype' | 'toExtendedJSON' | 'fromExtendedJSON' | 'inspect'; + +/** + * A class representation of the BSON UUID type. + * @public + */ +export declare class UUID extends Binary { + static cacheHexString: boolean; + /* Excluded from this release type: __id */ + /** + * Create an UUID type + * + * @param input - Can be a 32 or 36 character hex string (dashes excluded/included) or a 16 byte binary Buffer. + */ + constructor(input?: string | Buffer | UUID); + /** + * The UUID bytes + * @readonly + */ + get id(): Buffer; + set id(value: Buffer); + /** + * Returns the UUID id as a 32 or 36 character hex string representation, excluding/including dashes (defaults to 36 character dash separated) + * @param includeDashes - should the string exclude dash-separators. + * */ + toHexString(includeDashes?: boolean): string; + /** + * Converts the id into a 36 character (dashes included) hex string, unless a encoding is specified. + */ + toString(encoding?: string): string; + /** + * Converts the id into its JSON string representation. + * A 36 character (dashes included) hex string in the format: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx + */ + toJSON(): string; + /** + * Compares the equality of this UUID with `otherID`. + * + * @param otherId - UUID instance to compare against. + */ + equals(otherId: string | Buffer | UUID): boolean; + /** + * Creates a Binary instance from the current UUID. + */ + toBinary(): Binary; + /** + * Generates a populated buffer containing a v4 uuid + */ + static generate(): Buffer; + /** + * Checks if a value is a valid bson UUID + * @param input - UUID, string or Buffer to validate. + */ + static isValid(input: string | Buffer | UUID): boolean; + /** + * Creates an UUID from a hex string representation of an UUID. + * @param hexString - 32 or 36 character hex string (dashes excluded/included). + */ + static createFromHexString(hexString: string): UUID; + inspect(): string; +} + +/** @public */ +export declare type UUIDExtended = { + $uuid: string; +}; + +export { } diff --git a/node_modules/bson/dist/bson.browser.esm.js b/node_modules/bson/dist/bson.browser.esm.js new file mode 100644 index 000000000..6e80645e5 --- /dev/null +++ b/node_modules/bson/dist/bson.browser.esm.js @@ -0,0 +1,7470 @@ +function createCommonjsModule(fn, module) { + return module = { exports: {} }, fn(module, module.exports), module.exports; +} + +var byteLength_1 = byteLength; +var toByteArray_1 = toByteArray; +var fromByteArray_1 = fromByteArray; +var lookup = []; +var revLookup = []; +var Arr = typeof Uint8Array !== 'undefined' ? Uint8Array : Array; +var code = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'; + +for (var i = 0, len = code.length; i < len; ++i) { + lookup[i] = code[i]; + revLookup[code.charCodeAt(i)] = i; +} // Support decoding URL-safe base64 strings, as Node.js does. +// See: https://en.wikipedia.org/wiki/Base64#URL_applications + + +revLookup['-'.charCodeAt(0)] = 62; +revLookup['_'.charCodeAt(0)] = 63; + +function getLens(b64) { + var len = b64.length; + + if (len % 4 > 0) { + throw new Error('Invalid string. Length must be a multiple of 4'); + } // Trim off extra bytes after placeholder bytes are found + // See: https://github.com/beatgammit/base64-js/issues/42 + + + var validLen = b64.indexOf('='); + if (validLen === -1) validLen = len; + var placeHoldersLen = validLen === len ? 0 : 4 - validLen % 4; + return [validLen, placeHoldersLen]; +} // base64 is 4/3 + up to two characters of the original data + + +function byteLength(b64) { + var lens = getLens(b64); + var validLen = lens[0]; + var placeHoldersLen = lens[1]; + return (validLen + placeHoldersLen) * 3 / 4 - placeHoldersLen; +} + +function _byteLength(b64, validLen, placeHoldersLen) { + return (validLen + placeHoldersLen) * 3 / 4 - placeHoldersLen; +} + +function toByteArray(b64) { + var tmp; + var lens = getLens(b64); + var validLen = lens[0]; + var placeHoldersLen = lens[1]; + var arr = new Arr(_byteLength(b64, validLen, placeHoldersLen)); + var curByte = 0; // if there are placeholders, only get up to the last complete 4 chars + + var len = placeHoldersLen > 0 ? validLen - 4 : validLen; + var i; + + for (i = 0; i < len; i += 4) { + tmp = revLookup[b64.charCodeAt(i)] << 18 | revLookup[b64.charCodeAt(i + 1)] << 12 | revLookup[b64.charCodeAt(i + 2)] << 6 | revLookup[b64.charCodeAt(i + 3)]; + arr[curByte++] = tmp >> 16 & 0xFF; + arr[curByte++] = tmp >> 8 & 0xFF; + arr[curByte++] = tmp & 0xFF; + } + + if (placeHoldersLen === 2) { + tmp = revLookup[b64.charCodeAt(i)] << 2 | revLookup[b64.charCodeAt(i + 1)] >> 4; + arr[curByte++] = tmp & 0xFF; + } + + if (placeHoldersLen === 1) { + tmp = revLookup[b64.charCodeAt(i)] << 10 | revLookup[b64.charCodeAt(i + 1)] << 4 | revLookup[b64.charCodeAt(i + 2)] >> 2; + arr[curByte++] = tmp >> 8 & 0xFF; + arr[curByte++] = tmp & 0xFF; + } + + return arr; +} + +function tripletToBase64(num) { + return lookup[num >> 18 & 0x3F] + lookup[num >> 12 & 0x3F] + lookup[num >> 6 & 0x3F] + lookup[num & 0x3F]; +} + +function encodeChunk(uint8, start, end) { + var tmp; + var output = []; + + for (var i = start; i < end; i += 3) { + tmp = (uint8[i] << 16 & 0xFF0000) + (uint8[i + 1] << 8 & 0xFF00) + (uint8[i + 2] & 0xFF); + output.push(tripletToBase64(tmp)); + } + + return output.join(''); +} + +function fromByteArray(uint8) { + var tmp; + var len = uint8.length; + var extraBytes = len % 3; // if we have 1 byte left, pad 2 bytes + + var parts = []; + var maxChunkLength = 16383; // must be multiple of 3 + // go through the array every three bytes, we'll deal with trailing stuff later + + for (var i = 0, len2 = len - extraBytes; i < len2; i += maxChunkLength) { + parts.push(encodeChunk(uint8, i, i + maxChunkLength > len2 ? len2 : i + maxChunkLength)); + } // pad the end with zeros, but make sure to not forget the extra bytes + + + if (extraBytes === 1) { + tmp = uint8[len - 1]; + parts.push(lookup[tmp >> 2] + lookup[tmp << 4 & 0x3F] + '=='); + } else if (extraBytes === 2) { + tmp = (uint8[len - 2] << 8) + uint8[len - 1]; + parts.push(lookup[tmp >> 10] + lookup[tmp >> 4 & 0x3F] + lookup[tmp << 2 & 0x3F] + '='); + } + + return parts.join(''); +} + +var base64Js = { + byteLength: byteLength_1, + toByteArray: toByteArray_1, + fromByteArray: fromByteArray_1 +}; + +/*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh */ +var read = function read(buffer, offset, isLE, mLen, nBytes) { + var e, m; + var eLen = nBytes * 8 - mLen - 1; + var eMax = (1 << eLen) - 1; + var eBias = eMax >> 1; + var nBits = -7; + var i = isLE ? nBytes - 1 : 0; + var d = isLE ? -1 : 1; + var s = buffer[offset + i]; + i += d; + e = s & (1 << -nBits) - 1; + s >>= -nBits; + nBits += eLen; + + for (; nBits > 0; e = e * 256 + buffer[offset + i], i += d, nBits -= 8) {} + + m = e & (1 << -nBits) - 1; + e >>= -nBits; + nBits += mLen; + + for (; nBits > 0; m = m * 256 + buffer[offset + i], i += d, nBits -= 8) {} + + if (e === 0) { + e = 1 - eBias; + } else if (e === eMax) { + return m ? NaN : (s ? -1 : 1) * Infinity; + } else { + m = m + Math.pow(2, mLen); + e = e - eBias; + } + + return (s ? -1 : 1) * m * Math.pow(2, e - mLen); +}; + +var write = function write(buffer, value, offset, isLE, mLen, nBytes) { + var e, m, c; + var eLen = nBytes * 8 - mLen - 1; + var eMax = (1 << eLen) - 1; + var eBias = eMax >> 1; + var rt = mLen === 23 ? Math.pow(2, -24) - Math.pow(2, -77) : 0; + var i = isLE ? 0 : nBytes - 1; + var d = isLE ? 1 : -1; + var s = value < 0 || value === 0 && 1 / value < 0 ? 1 : 0; + value = Math.abs(value); + + if (isNaN(value) || value === Infinity) { + m = isNaN(value) ? 1 : 0; + e = eMax; + } else { + e = Math.floor(Math.log(value) / Math.LN2); + + if (value * (c = Math.pow(2, -e)) < 1) { + e--; + c *= 2; + } + + if (e + eBias >= 1) { + value += rt / c; + } else { + value += rt * Math.pow(2, 1 - eBias); + } + + if (value * c >= 2) { + e++; + c /= 2; + } + + if (e + eBias >= eMax) { + m = 0; + e = eMax; + } else if (e + eBias >= 1) { + m = (value * c - 1) * Math.pow(2, mLen); + e = e + eBias; + } else { + m = value * Math.pow(2, eBias - 1) * Math.pow(2, mLen); + e = 0; + } + } + + for (; mLen >= 8; buffer[offset + i] = m & 0xff, i += d, m /= 256, mLen -= 8) {} + + e = e << mLen | m; + eLen += mLen; + + for (; eLen > 0; buffer[offset + i] = e & 0xff, i += d, e /= 256, eLen -= 8) {} + + buffer[offset + i - d] |= s * 128; +}; + +var ieee754 = { + read: read, + write: write +}; + +var buffer$1 = createCommonjsModule(function (module, exports) { + + var customInspectSymbol = typeof Symbol === 'function' && typeof Symbol['for'] === 'function' ? // eslint-disable-line dot-notation + Symbol['for']('nodejs.util.inspect.custom') // eslint-disable-line dot-notation + : null; + exports.Buffer = Buffer; + exports.SlowBuffer = SlowBuffer; + exports.INSPECT_MAX_BYTES = 50; + var K_MAX_LENGTH = 0x7fffffff; + exports.kMaxLength = K_MAX_LENGTH; + /** + * If `Buffer.TYPED_ARRAY_SUPPORT`: + * === true Use Uint8Array implementation (fastest) + * === false Print warning and recommend using `buffer` v4.x which has an Object + * implementation (most compatible, even IE6) + * + * Browsers that support typed arrays are IE 10+, Firefox 4+, Chrome 7+, Safari 5.1+, + * Opera 11.6+, iOS 4.2+. + * + * We report that the browser does not support typed arrays if the are not subclassable + * using __proto__. Firefox 4-29 lacks support for adding new properties to `Uint8Array` + * (See: https://bugzilla.mozilla.org/show_bug.cgi?id=695438). IE 10 lacks support + * for __proto__ and has a buggy typed array implementation. + */ + + Buffer.TYPED_ARRAY_SUPPORT = typedArraySupport(); + + if (!Buffer.TYPED_ARRAY_SUPPORT && typeof console !== 'undefined' && typeof console.error === 'function') { + console.error('This browser lacks typed array (Uint8Array) support which is required by ' + '`buffer` v5.x. Use `buffer` v4.x if you require old browser support.'); + } + + function typedArraySupport() { + // Can typed array instances can be augmented? + try { + var arr = new Uint8Array(1); + var proto = { + foo: function foo() { + return 42; + } + }; + Object.setPrototypeOf(proto, Uint8Array.prototype); + Object.setPrototypeOf(arr, proto); + return arr.foo() === 42; + } catch (e) { + return false; + } + } + + Object.defineProperty(Buffer.prototype, 'parent', { + enumerable: true, + get: function get() { + if (!Buffer.isBuffer(this)) return undefined; + return this.buffer; + } + }); + Object.defineProperty(Buffer.prototype, 'offset', { + enumerable: true, + get: function get() { + if (!Buffer.isBuffer(this)) return undefined; + return this.byteOffset; + } + }); + + function createBuffer(length) { + if (length > K_MAX_LENGTH) { + throw new RangeError('The value "' + length + '" is invalid for option "size"'); + } // Return an augmented `Uint8Array` instance + + + var buf = new Uint8Array(length); + Object.setPrototypeOf(buf, Buffer.prototype); + return buf; + } + /** + * The Buffer constructor returns instances of `Uint8Array` that have their + * prototype changed to `Buffer.prototype`. Furthermore, `Buffer` is a subclass of + * `Uint8Array`, so the returned instances will have all the node `Buffer` methods + * and the `Uint8Array` methods. Square bracket notation works as expected -- it + * returns a single octet. + * + * The `Uint8Array` prototype remains unmodified. + */ + + + function Buffer(arg, encodingOrOffset, length) { + // Common case. + if (typeof arg === 'number') { + if (typeof encodingOrOffset === 'string') { + throw new TypeError('The "string" argument must be of type string. Received type number'); + } + + return allocUnsafe(arg); + } + + return from(arg, encodingOrOffset, length); + } + + Buffer.poolSize = 8192; // not used by this implementation + + function from(value, encodingOrOffset, length) { + if (typeof value === 'string') { + return fromString(value, encodingOrOffset); + } + + if (ArrayBuffer.isView(value)) { + return fromArrayView(value); + } + + if (value == null) { + throw new TypeError('The first argument must be one of type string, Buffer, ArrayBuffer, Array, ' + 'or Array-like Object. Received type ' + babelHelpers["typeof"](value)); + } + + if (isInstance(value, ArrayBuffer) || value && isInstance(value.buffer, ArrayBuffer)) { + return fromArrayBuffer(value, encodingOrOffset, length); + } + + if (typeof SharedArrayBuffer !== 'undefined' && (isInstance(value, SharedArrayBuffer) || value && isInstance(value.buffer, SharedArrayBuffer))) { + return fromArrayBuffer(value, encodingOrOffset, length); + } + + if (typeof value === 'number') { + throw new TypeError('The "value" argument must not be of type number. Received type number'); + } + + var valueOf = value.valueOf && value.valueOf(); + + if (valueOf != null && valueOf !== value) { + return Buffer.from(valueOf, encodingOrOffset, length); + } + + var b = fromObject(value); + if (b) return b; + + if (typeof Symbol !== 'undefined' && Symbol.toPrimitive != null && typeof value[Symbol.toPrimitive] === 'function') { + return Buffer.from(value[Symbol.toPrimitive]('string'), encodingOrOffset, length); + } + + throw new TypeError('The first argument must be one of type string, Buffer, ArrayBuffer, Array, ' + 'or Array-like Object. Received type ' + babelHelpers["typeof"](value)); + } + /** + * Functionally equivalent to Buffer(arg, encoding) but throws a TypeError + * if value is a number. + * Buffer.from(str[, encoding]) + * Buffer.from(array) + * Buffer.from(buffer) + * Buffer.from(arrayBuffer[, byteOffset[, length]]) + **/ + + + Buffer.from = function (value, encodingOrOffset, length) { + return from(value, encodingOrOffset, length); + }; // Note: Change prototype *after* Buffer.from is defined to workaround Chrome bug: + // https://github.com/feross/buffer/pull/148 + + + Object.setPrototypeOf(Buffer.prototype, Uint8Array.prototype); + Object.setPrototypeOf(Buffer, Uint8Array); + + function assertSize(size) { + if (typeof size !== 'number') { + throw new TypeError('"size" argument must be of type number'); + } else if (size < 0) { + throw new RangeError('The value "' + size + '" is invalid for option "size"'); + } + } + + function alloc(size, fill, encoding) { + assertSize(size); + + if (size <= 0) { + return createBuffer(size); + } + + if (fill !== undefined) { + // Only pay attention to encoding if it's a string. This + // prevents accidentally sending in a number that would + // be interpreted as a start offset. + return typeof encoding === 'string' ? createBuffer(size).fill(fill, encoding) : createBuffer(size).fill(fill); + } + + return createBuffer(size); + } + /** + * Creates a new filled Buffer instance. + * alloc(size[, fill[, encoding]]) + **/ + + + Buffer.alloc = function (size, fill, encoding) { + return alloc(size, fill, encoding); + }; + + function allocUnsafe(size) { + assertSize(size); + return createBuffer(size < 0 ? 0 : checked(size) | 0); + } + /** + * Equivalent to Buffer(num), by default creates a non-zero-filled Buffer instance. + * */ + + + Buffer.allocUnsafe = function (size) { + return allocUnsafe(size); + }; + /** + * Equivalent to SlowBuffer(num), by default creates a non-zero-filled Buffer instance. + */ + + + Buffer.allocUnsafeSlow = function (size) { + return allocUnsafe(size); + }; + + function fromString(string, encoding) { + if (typeof encoding !== 'string' || encoding === '') { + encoding = 'utf8'; + } + + if (!Buffer.isEncoding(encoding)) { + throw new TypeError('Unknown encoding: ' + encoding); + } + + var length = byteLength(string, encoding) | 0; + var buf = createBuffer(length); + var actual = buf.write(string, encoding); + + if (actual !== length) { + // Writing a hex string, for example, that contains invalid characters will + // cause everything after the first invalid character to be ignored. (e.g. + // 'abxxcd' will be treated as 'ab') + buf = buf.slice(0, actual); + } + + return buf; + } + + function fromArrayLike(array) { + var length = array.length < 0 ? 0 : checked(array.length) | 0; + var buf = createBuffer(length); + + for (var i = 0; i < length; i += 1) { + buf[i] = array[i] & 255; + } + + return buf; + } + + function fromArrayView(arrayView) { + if (isInstance(arrayView, Uint8Array)) { + var copy = new Uint8Array(arrayView); + return fromArrayBuffer(copy.buffer, copy.byteOffset, copy.byteLength); + } + + return fromArrayLike(arrayView); + } + + function fromArrayBuffer(array, byteOffset, length) { + if (byteOffset < 0 || array.byteLength < byteOffset) { + throw new RangeError('"offset" is outside of buffer bounds'); + } + + if (array.byteLength < byteOffset + (length || 0)) { + throw new RangeError('"length" is outside of buffer bounds'); + } + + var buf; + + if (byteOffset === undefined && length === undefined) { + buf = new Uint8Array(array); + } else if (length === undefined) { + buf = new Uint8Array(array, byteOffset); + } else { + buf = new Uint8Array(array, byteOffset, length); + } // Return an augmented `Uint8Array` instance + + + Object.setPrototypeOf(buf, Buffer.prototype); + return buf; + } + + function fromObject(obj) { + if (Buffer.isBuffer(obj)) { + var len = checked(obj.length) | 0; + var buf = createBuffer(len); + + if (buf.length === 0) { + return buf; + } + + obj.copy(buf, 0, 0, len); + return buf; + } + + if (obj.length !== undefined) { + if (typeof obj.length !== 'number' || numberIsNaN(obj.length)) { + return createBuffer(0); + } + + return fromArrayLike(obj); + } + + if (obj.type === 'Buffer' && Array.isArray(obj.data)) { + return fromArrayLike(obj.data); + } + } + + function checked(length) { + // Note: cannot use `length < K_MAX_LENGTH` here because that fails when + // length is NaN (which is otherwise coerced to zero.) + if (length >= K_MAX_LENGTH) { + throw new RangeError('Attempt to allocate Buffer larger than maximum ' + 'size: 0x' + K_MAX_LENGTH.toString(16) + ' bytes'); + } + + return length | 0; + } + + function SlowBuffer(length) { + if (+length != length) { + // eslint-disable-line eqeqeq + length = 0; + } + + return Buffer.alloc(+length); + } + + Buffer.isBuffer = function isBuffer(b) { + return b != null && b._isBuffer === true && b !== Buffer.prototype; // so Buffer.isBuffer(Buffer.prototype) will be false + }; + + Buffer.compare = function compare(a, b) { + if (isInstance(a, Uint8Array)) a = Buffer.from(a, a.offset, a.byteLength); + if (isInstance(b, Uint8Array)) b = Buffer.from(b, b.offset, b.byteLength); + + if (!Buffer.isBuffer(a) || !Buffer.isBuffer(b)) { + throw new TypeError('The "buf1", "buf2" arguments must be one of type Buffer or Uint8Array'); + } + + if (a === b) return 0; + var x = a.length; + var y = b.length; + + for (var i = 0, len = Math.min(x, y); i < len; ++i) { + if (a[i] !== b[i]) { + x = a[i]; + y = b[i]; + break; + } + } + + if (x < y) return -1; + if (y < x) return 1; + return 0; + }; + + Buffer.isEncoding = function isEncoding(encoding) { + switch (String(encoding).toLowerCase()) { + case 'hex': + case 'utf8': + case 'utf-8': + case 'ascii': + case 'latin1': + case 'binary': + case 'base64': + case 'ucs2': + case 'ucs-2': + case 'utf16le': + case 'utf-16le': + return true; + + default: + return false; + } + }; + + Buffer.concat = function concat(list, length) { + if (!Array.isArray(list)) { + throw new TypeError('"list" argument must be an Array of Buffers'); + } + + if (list.length === 0) { + return Buffer.alloc(0); + } + + var i; + + if (length === undefined) { + length = 0; + + for (i = 0; i < list.length; ++i) { + length += list[i].length; + } + } + + var buffer = Buffer.allocUnsafe(length); + var pos = 0; + + for (i = 0; i < list.length; ++i) { + var buf = list[i]; + + if (isInstance(buf, Uint8Array)) { + if (pos + buf.length > buffer.length) { + Buffer.from(buf).copy(buffer, pos); + } else { + Uint8Array.prototype.set.call(buffer, buf, pos); + } + } else if (!Buffer.isBuffer(buf)) { + throw new TypeError('"list" argument must be an Array of Buffers'); + } else { + buf.copy(buffer, pos); + } + + pos += buf.length; + } + + return buffer; + }; + + function byteLength(string, encoding) { + if (Buffer.isBuffer(string)) { + return string.length; + } + + if (ArrayBuffer.isView(string) || isInstance(string, ArrayBuffer)) { + return string.byteLength; + } + + if (typeof string !== 'string') { + throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. ' + 'Received type ' + babelHelpers["typeof"](string)); + } + + var len = string.length; + var mustMatch = arguments.length > 2 && arguments[2] === true; + if (!mustMatch && len === 0) return 0; // Use a for loop to avoid recursion + + var loweredCase = false; + + for (;;) { + switch (encoding) { + case 'ascii': + case 'latin1': + case 'binary': + return len; + + case 'utf8': + case 'utf-8': + return utf8ToBytes(string).length; + + case 'ucs2': + case 'ucs-2': + case 'utf16le': + case 'utf-16le': + return len * 2; + + case 'hex': + return len >>> 1; + + case 'base64': + return base64ToBytes(string).length; + + default: + if (loweredCase) { + return mustMatch ? -1 : utf8ToBytes(string).length; // assume utf8 + } + + encoding = ('' + encoding).toLowerCase(); + loweredCase = true; + } + } + } + + Buffer.byteLength = byteLength; + + function slowToString(encoding, start, end) { + var loweredCase = false; // No need to verify that "this.length <= MAX_UINT32" since it's a read-only + // property of a typed array. + // This behaves neither like String nor Uint8Array in that we set start/end + // to their upper/lower bounds if the value passed is out of range. + // undefined is handled specially as per ECMA-262 6th Edition, + // Section 13.3.3.7 Runtime Semantics: KeyedBindingInitialization. + + if (start === undefined || start < 0) { + start = 0; + } // Return early if start > this.length. Done here to prevent potential uint32 + // coercion fail below. + + + if (start > this.length) { + return ''; + } + + if (end === undefined || end > this.length) { + end = this.length; + } + + if (end <= 0) { + return ''; + } // Force coercion to uint32. This will also coerce falsey/NaN values to 0. + + + end >>>= 0; + start >>>= 0; + + if (end <= start) { + return ''; + } + + if (!encoding) encoding = 'utf8'; + + while (true) { + switch (encoding) { + case 'hex': + return hexSlice(this, start, end); + + case 'utf8': + case 'utf-8': + return utf8Slice(this, start, end); + + case 'ascii': + return asciiSlice(this, start, end); + + case 'latin1': + case 'binary': + return latin1Slice(this, start, end); + + case 'base64': + return base64Slice(this, start, end); + + case 'ucs2': + case 'ucs-2': + case 'utf16le': + case 'utf-16le': + return utf16leSlice(this, start, end); + + default: + if (loweredCase) throw new TypeError('Unknown encoding: ' + encoding); + encoding = (encoding + '').toLowerCase(); + loweredCase = true; + } + } + } // This property is used by `Buffer.isBuffer` (and the `is-buffer` npm package) + // to detect a Buffer instance. It's not possible to use `instanceof Buffer` + // reliably in a browserify context because there could be multiple different + // copies of the 'buffer' package in use. This method works even for Buffer + // instances that were created from another copy of the `buffer` package. + // See: https://github.com/feross/buffer/issues/154 + + + Buffer.prototype._isBuffer = true; + + function swap(b, n, m) { + var i = b[n]; + b[n] = b[m]; + b[m] = i; + } + + Buffer.prototype.swap16 = function swap16() { + var len = this.length; + + if (len % 2 !== 0) { + throw new RangeError('Buffer size must be a multiple of 16-bits'); + } + + for (var i = 0; i < len; i += 2) { + swap(this, i, i + 1); + } + + return this; + }; + + Buffer.prototype.swap32 = function swap32() { + var len = this.length; + + if (len % 4 !== 0) { + throw new RangeError('Buffer size must be a multiple of 32-bits'); + } + + for (var i = 0; i < len; i += 4) { + swap(this, i, i + 3); + swap(this, i + 1, i + 2); + } + + return this; + }; + + Buffer.prototype.swap64 = function swap64() { + var len = this.length; + + if (len % 8 !== 0) { + throw new RangeError('Buffer size must be a multiple of 64-bits'); + } + + for (var i = 0; i < len; i += 8) { + swap(this, i, i + 7); + swap(this, i + 1, i + 6); + swap(this, i + 2, i + 5); + swap(this, i + 3, i + 4); + } + + return this; + }; + + Buffer.prototype.toString = function toString() { + var length = this.length; + if (length === 0) return ''; + if (arguments.length === 0) return utf8Slice(this, 0, length); + return slowToString.apply(this, arguments); + }; + + Buffer.prototype.toLocaleString = Buffer.prototype.toString; + + Buffer.prototype.equals = function equals(b) { + if (!Buffer.isBuffer(b)) throw new TypeError('Argument must be a Buffer'); + if (this === b) return true; + return Buffer.compare(this, b) === 0; + }; + + Buffer.prototype.inspect = function inspect() { + var str = ''; + var max = exports.INSPECT_MAX_BYTES; + str = this.toString('hex', 0, max).replace(/(.{2})/g, '$1 ').trim(); + if (this.length > max) str += ' ... '; + return ''; + }; + + if (customInspectSymbol) { + Buffer.prototype[customInspectSymbol] = Buffer.prototype.inspect; + } + + Buffer.prototype.compare = function compare(target, start, end, thisStart, thisEnd) { + if (isInstance(target, Uint8Array)) { + target = Buffer.from(target, target.offset, target.byteLength); + } + + if (!Buffer.isBuffer(target)) { + throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. ' + 'Received type ' + babelHelpers["typeof"](target)); + } + + if (start === undefined) { + start = 0; + } + + if (end === undefined) { + end = target ? target.length : 0; + } + + if (thisStart === undefined) { + thisStart = 0; + } + + if (thisEnd === undefined) { + thisEnd = this.length; + } + + if (start < 0 || end > target.length || thisStart < 0 || thisEnd > this.length) { + throw new RangeError('out of range index'); + } + + if (thisStart >= thisEnd && start >= end) { + return 0; + } + + if (thisStart >= thisEnd) { + return -1; + } + + if (start >= end) { + return 1; + } + + start >>>= 0; + end >>>= 0; + thisStart >>>= 0; + thisEnd >>>= 0; + if (this === target) return 0; + var x = thisEnd - thisStart; + var y = end - start; + var len = Math.min(x, y); + var thisCopy = this.slice(thisStart, thisEnd); + var targetCopy = target.slice(start, end); + + for (var i = 0; i < len; ++i) { + if (thisCopy[i] !== targetCopy[i]) { + x = thisCopy[i]; + y = targetCopy[i]; + break; + } + } + + if (x < y) return -1; + if (y < x) return 1; + return 0; + }; // Finds either the first index of `val` in `buffer` at offset >= `byteOffset`, + // OR the last index of `val` in `buffer` at offset <= `byteOffset`. + // + // Arguments: + // - buffer - a Buffer to search + // - val - a string, Buffer, or number + // - byteOffset - an index into `buffer`; will be clamped to an int32 + // - encoding - an optional encoding, relevant is val is a string + // - dir - true for indexOf, false for lastIndexOf + + + function bidirectionalIndexOf(buffer, val, byteOffset, encoding, dir) { + // Empty buffer means no match + if (buffer.length === 0) return -1; // Normalize byteOffset + + if (typeof byteOffset === 'string') { + encoding = byteOffset; + byteOffset = 0; + } else if (byteOffset > 0x7fffffff) { + byteOffset = 0x7fffffff; + } else if (byteOffset < -0x80000000) { + byteOffset = -0x80000000; + } + + byteOffset = +byteOffset; // Coerce to Number. + + if (numberIsNaN(byteOffset)) { + // byteOffset: it it's undefined, null, NaN, "foo", etc, search whole buffer + byteOffset = dir ? 0 : buffer.length - 1; + } // Normalize byteOffset: negative offsets start from the end of the buffer + + + if (byteOffset < 0) byteOffset = buffer.length + byteOffset; + + if (byteOffset >= buffer.length) { + if (dir) return -1;else byteOffset = buffer.length - 1; + } else if (byteOffset < 0) { + if (dir) byteOffset = 0;else return -1; + } // Normalize val + + + if (typeof val === 'string') { + val = Buffer.from(val, encoding); + } // Finally, search either indexOf (if dir is true) or lastIndexOf + + + if (Buffer.isBuffer(val)) { + // Special case: looking for empty string/buffer always fails + if (val.length === 0) { + return -1; + } + + return arrayIndexOf(buffer, val, byteOffset, encoding, dir); + } else if (typeof val === 'number') { + val = val & 0xFF; // Search for a byte value [0-255] + + if (typeof Uint8Array.prototype.indexOf === 'function') { + if (dir) { + return Uint8Array.prototype.indexOf.call(buffer, val, byteOffset); + } else { + return Uint8Array.prototype.lastIndexOf.call(buffer, val, byteOffset); + } + } + + return arrayIndexOf(buffer, [val], byteOffset, encoding, dir); + } + + throw new TypeError('val must be string, number or Buffer'); + } + + function arrayIndexOf(arr, val, byteOffset, encoding, dir) { + var indexSize = 1; + var arrLength = arr.length; + var valLength = val.length; + + if (encoding !== undefined) { + encoding = String(encoding).toLowerCase(); + + if (encoding === 'ucs2' || encoding === 'ucs-2' || encoding === 'utf16le' || encoding === 'utf-16le') { + if (arr.length < 2 || val.length < 2) { + return -1; + } + + indexSize = 2; + arrLength /= 2; + valLength /= 2; + byteOffset /= 2; + } + } + + function read(buf, i) { + if (indexSize === 1) { + return buf[i]; + } else { + return buf.readUInt16BE(i * indexSize); + } + } + + var i; + + if (dir) { + var foundIndex = -1; + + for (i = byteOffset; i < arrLength; i++) { + if (read(arr, i) === read(val, foundIndex === -1 ? 0 : i - foundIndex)) { + if (foundIndex === -1) foundIndex = i; + if (i - foundIndex + 1 === valLength) return foundIndex * indexSize; + } else { + if (foundIndex !== -1) i -= i - foundIndex; + foundIndex = -1; + } + } + } else { + if (byteOffset + valLength > arrLength) byteOffset = arrLength - valLength; + + for (i = byteOffset; i >= 0; i--) { + var found = true; + + for (var j = 0; j < valLength; j++) { + if (read(arr, i + j) !== read(val, j)) { + found = false; + break; + } + } + + if (found) return i; + } + } + + return -1; + } + + Buffer.prototype.includes = function includes(val, byteOffset, encoding) { + return this.indexOf(val, byteOffset, encoding) !== -1; + }; + + Buffer.prototype.indexOf = function indexOf(val, byteOffset, encoding) { + return bidirectionalIndexOf(this, val, byteOffset, encoding, true); + }; + + Buffer.prototype.lastIndexOf = function lastIndexOf(val, byteOffset, encoding) { + return bidirectionalIndexOf(this, val, byteOffset, encoding, false); + }; + + function hexWrite(buf, string, offset, length) { + offset = Number(offset) || 0; + var remaining = buf.length - offset; + + if (!length) { + length = remaining; + } else { + length = Number(length); + + if (length > remaining) { + length = remaining; + } + } + + var strLen = string.length; + + if (length > strLen / 2) { + length = strLen / 2; + } + + for (var i = 0; i < length; ++i) { + var parsed = parseInt(string.substr(i * 2, 2), 16); + if (numberIsNaN(parsed)) return i; + buf[offset + i] = parsed; + } + + return i; + } + + function utf8Write(buf, string, offset, length) { + return blitBuffer(utf8ToBytes(string, buf.length - offset), buf, offset, length); + } + + function asciiWrite(buf, string, offset, length) { + return blitBuffer(asciiToBytes(string), buf, offset, length); + } + + function base64Write(buf, string, offset, length) { + return blitBuffer(base64ToBytes(string), buf, offset, length); + } + + function ucs2Write(buf, string, offset, length) { + return blitBuffer(utf16leToBytes(string, buf.length - offset), buf, offset, length); + } + + Buffer.prototype.write = function write(string, offset, length, encoding) { + // Buffer#write(string) + if (offset === undefined) { + encoding = 'utf8'; + length = this.length; + offset = 0; // Buffer#write(string, encoding) + } else if (length === undefined && typeof offset === 'string') { + encoding = offset; + length = this.length; + offset = 0; // Buffer#write(string, offset[, length][, encoding]) + } else if (isFinite(offset)) { + offset = offset >>> 0; + + if (isFinite(length)) { + length = length >>> 0; + if (encoding === undefined) encoding = 'utf8'; + } else { + encoding = length; + length = undefined; + } + } else { + throw new Error('Buffer.write(string, encoding, offset[, length]) is no longer supported'); + } + + var remaining = this.length - offset; + if (length === undefined || length > remaining) length = remaining; + + if (string.length > 0 && (length < 0 || offset < 0) || offset > this.length) { + throw new RangeError('Attempt to write outside buffer bounds'); + } + + if (!encoding) encoding = 'utf8'; + var loweredCase = false; + + for (;;) { + switch (encoding) { + case 'hex': + return hexWrite(this, string, offset, length); + + case 'utf8': + case 'utf-8': + return utf8Write(this, string, offset, length); + + case 'ascii': + case 'latin1': + case 'binary': + return asciiWrite(this, string, offset, length); + + case 'base64': + // Warning: maxLength not taken into account in base64Write + return base64Write(this, string, offset, length); + + case 'ucs2': + case 'ucs-2': + case 'utf16le': + case 'utf-16le': + return ucs2Write(this, string, offset, length); + + default: + if (loweredCase) throw new TypeError('Unknown encoding: ' + encoding); + encoding = ('' + encoding).toLowerCase(); + loweredCase = true; + } + } + }; + + Buffer.prototype.toJSON = function toJSON() { + return { + type: 'Buffer', + data: Array.prototype.slice.call(this._arr || this, 0) + }; + }; + + function base64Slice(buf, start, end) { + if (start === 0 && end === buf.length) { + return base64Js.fromByteArray(buf); + } else { + return base64Js.fromByteArray(buf.slice(start, end)); + } + } + + function utf8Slice(buf, start, end) { + end = Math.min(buf.length, end); + var res = []; + var i = start; + + while (i < end) { + var firstByte = buf[i]; + var codePoint = null; + var bytesPerSequence = firstByte > 0xEF ? 4 : firstByte > 0xDF ? 3 : firstByte > 0xBF ? 2 : 1; + + if (i + bytesPerSequence <= end) { + var secondByte, thirdByte, fourthByte, tempCodePoint; + + switch (bytesPerSequence) { + case 1: + if (firstByte < 0x80) { + codePoint = firstByte; + } + + break; + + case 2: + secondByte = buf[i + 1]; + + if ((secondByte & 0xC0) === 0x80) { + tempCodePoint = (firstByte & 0x1F) << 0x6 | secondByte & 0x3F; + + if (tempCodePoint > 0x7F) { + codePoint = tempCodePoint; + } + } + + break; + + case 3: + secondByte = buf[i + 1]; + thirdByte = buf[i + 2]; + + if ((secondByte & 0xC0) === 0x80 && (thirdByte & 0xC0) === 0x80) { + tempCodePoint = (firstByte & 0xF) << 0xC | (secondByte & 0x3F) << 0x6 | thirdByte & 0x3F; + + if (tempCodePoint > 0x7FF && (tempCodePoint < 0xD800 || tempCodePoint > 0xDFFF)) { + codePoint = tempCodePoint; + } + } + + break; + + case 4: + secondByte = buf[i + 1]; + thirdByte = buf[i + 2]; + fourthByte = buf[i + 3]; + + if ((secondByte & 0xC0) === 0x80 && (thirdByte & 0xC0) === 0x80 && (fourthByte & 0xC0) === 0x80) { + tempCodePoint = (firstByte & 0xF) << 0x12 | (secondByte & 0x3F) << 0xC | (thirdByte & 0x3F) << 0x6 | fourthByte & 0x3F; + + if (tempCodePoint > 0xFFFF && tempCodePoint < 0x110000) { + codePoint = tempCodePoint; + } + } + + } + } + + if (codePoint === null) { + // we did not generate a valid codePoint so insert a + // replacement char (U+FFFD) and advance only 1 byte + codePoint = 0xFFFD; + bytesPerSequence = 1; + } else if (codePoint > 0xFFFF) { + // encode to utf16 (surrogate pair dance) + codePoint -= 0x10000; + res.push(codePoint >>> 10 & 0x3FF | 0xD800); + codePoint = 0xDC00 | codePoint & 0x3FF; + } + + res.push(codePoint); + i += bytesPerSequence; + } + + return decodeCodePointsArray(res); + } // Based on http://stackoverflow.com/a/22747272/680742, the browser with + // the lowest limit is Chrome, with 0x10000 args. + // We go 1 magnitude less, for safety + + + var MAX_ARGUMENTS_LENGTH = 0x1000; + + function decodeCodePointsArray(codePoints) { + var len = codePoints.length; + + if (len <= MAX_ARGUMENTS_LENGTH) { + return String.fromCharCode.apply(String, codePoints); // avoid extra slice() + } // Decode in chunks to avoid "call stack size exceeded". + + + var res = ''; + var i = 0; + + while (i < len) { + res += String.fromCharCode.apply(String, codePoints.slice(i, i += MAX_ARGUMENTS_LENGTH)); + } + + return res; + } + + function asciiSlice(buf, start, end) { + var ret = ''; + end = Math.min(buf.length, end); + + for (var i = start; i < end; ++i) { + ret += String.fromCharCode(buf[i] & 0x7F); + } + + return ret; + } + + function latin1Slice(buf, start, end) { + var ret = ''; + end = Math.min(buf.length, end); + + for (var i = start; i < end; ++i) { + ret += String.fromCharCode(buf[i]); + } + + return ret; + } + + function hexSlice(buf, start, end) { + var len = buf.length; + if (!start || start < 0) start = 0; + if (!end || end < 0 || end > len) end = len; + var out = ''; + + for (var i = start; i < end; ++i) { + out += hexSliceLookupTable[buf[i]]; + } + + return out; + } + + function utf16leSlice(buf, start, end) { + var bytes = buf.slice(start, end); + var res = ''; // If bytes.length is odd, the last 8 bits must be ignored (same as node.js) + + for (var i = 0; i < bytes.length - 1; i += 2) { + res += String.fromCharCode(bytes[i] + bytes[i + 1] * 256); + } + + return res; + } + + Buffer.prototype.slice = function slice(start, end) { + var len = this.length; + start = ~~start; + end = end === undefined ? len : ~~end; + + if (start < 0) { + start += len; + if (start < 0) start = 0; + } else if (start > len) { + start = len; + } + + if (end < 0) { + end += len; + if (end < 0) end = 0; + } else if (end > len) { + end = len; + } + + if (end < start) end = start; + var newBuf = this.subarray(start, end); // Return an augmented `Uint8Array` instance + + Object.setPrototypeOf(newBuf, Buffer.prototype); + return newBuf; + }; + /* + * Need to make sure that buffer isn't trying to write out of bounds. + */ + + + function checkOffset(offset, ext, length) { + if (offset % 1 !== 0 || offset < 0) throw new RangeError('offset is not uint'); + if (offset + ext > length) throw new RangeError('Trying to access beyond buffer length'); + } + + Buffer.prototype.readUintLE = Buffer.prototype.readUIntLE = function readUIntLE(offset, byteLength, noAssert) { + offset = offset >>> 0; + byteLength = byteLength >>> 0; + if (!noAssert) checkOffset(offset, byteLength, this.length); + var val = this[offset]; + var mul = 1; + var i = 0; + + while (++i < byteLength && (mul *= 0x100)) { + val += this[offset + i] * mul; + } + + return val; + }; + + Buffer.prototype.readUintBE = Buffer.prototype.readUIntBE = function readUIntBE(offset, byteLength, noAssert) { + offset = offset >>> 0; + byteLength = byteLength >>> 0; + + if (!noAssert) { + checkOffset(offset, byteLength, this.length); + } + + var val = this[offset + --byteLength]; + var mul = 1; + + while (byteLength > 0 && (mul *= 0x100)) { + val += this[offset + --byteLength] * mul; + } + + return val; + }; + + Buffer.prototype.readUint8 = Buffer.prototype.readUInt8 = function readUInt8(offset, noAssert) { + offset = offset >>> 0; + if (!noAssert) checkOffset(offset, 1, this.length); + return this[offset]; + }; + + Buffer.prototype.readUint16LE = Buffer.prototype.readUInt16LE = function readUInt16LE(offset, noAssert) { + offset = offset >>> 0; + if (!noAssert) checkOffset(offset, 2, this.length); + return this[offset] | this[offset + 1] << 8; + }; + + Buffer.prototype.readUint16BE = Buffer.prototype.readUInt16BE = function readUInt16BE(offset, noAssert) { + offset = offset >>> 0; + if (!noAssert) checkOffset(offset, 2, this.length); + return this[offset] << 8 | this[offset + 1]; + }; + + Buffer.prototype.readUint32LE = Buffer.prototype.readUInt32LE = function readUInt32LE(offset, noAssert) { + offset = offset >>> 0; + if (!noAssert) checkOffset(offset, 4, this.length); + return (this[offset] | this[offset + 1] << 8 | this[offset + 2] << 16) + this[offset + 3] * 0x1000000; + }; + + Buffer.prototype.readUint32BE = Buffer.prototype.readUInt32BE = function readUInt32BE(offset, noAssert) { + offset = offset >>> 0; + if (!noAssert) checkOffset(offset, 4, this.length); + return this[offset] * 0x1000000 + (this[offset + 1] << 16 | this[offset + 2] << 8 | this[offset + 3]); + }; + + Buffer.prototype.readIntLE = function readIntLE(offset, byteLength, noAssert) { + offset = offset >>> 0; + byteLength = byteLength >>> 0; + if (!noAssert) checkOffset(offset, byteLength, this.length); + var val = this[offset]; + var mul = 1; + var i = 0; + + while (++i < byteLength && (mul *= 0x100)) { + val += this[offset + i] * mul; + } + + mul *= 0x80; + if (val >= mul) val -= Math.pow(2, 8 * byteLength); + return val; + }; + + Buffer.prototype.readIntBE = function readIntBE(offset, byteLength, noAssert) { + offset = offset >>> 0; + byteLength = byteLength >>> 0; + if (!noAssert) checkOffset(offset, byteLength, this.length); + var i = byteLength; + var mul = 1; + var val = this[offset + --i]; + + while (i > 0 && (mul *= 0x100)) { + val += this[offset + --i] * mul; + } + + mul *= 0x80; + if (val >= mul) val -= Math.pow(2, 8 * byteLength); + return val; + }; + + Buffer.prototype.readInt8 = function readInt8(offset, noAssert) { + offset = offset >>> 0; + if (!noAssert) checkOffset(offset, 1, this.length); + if (!(this[offset] & 0x80)) return this[offset]; + return (0xff - this[offset] + 1) * -1; + }; + + Buffer.prototype.readInt16LE = function readInt16LE(offset, noAssert) { + offset = offset >>> 0; + if (!noAssert) checkOffset(offset, 2, this.length); + var val = this[offset] | this[offset + 1] << 8; + return val & 0x8000 ? val | 0xFFFF0000 : val; + }; + + Buffer.prototype.readInt16BE = function readInt16BE(offset, noAssert) { + offset = offset >>> 0; + if (!noAssert) checkOffset(offset, 2, this.length); + var val = this[offset + 1] | this[offset] << 8; + return val & 0x8000 ? val | 0xFFFF0000 : val; + }; + + Buffer.prototype.readInt32LE = function readInt32LE(offset, noAssert) { + offset = offset >>> 0; + if (!noAssert) checkOffset(offset, 4, this.length); + return this[offset] | this[offset + 1] << 8 | this[offset + 2] << 16 | this[offset + 3] << 24; + }; + + Buffer.prototype.readInt32BE = function readInt32BE(offset, noAssert) { + offset = offset >>> 0; + if (!noAssert) checkOffset(offset, 4, this.length); + return this[offset] << 24 | this[offset + 1] << 16 | this[offset + 2] << 8 | this[offset + 3]; + }; + + Buffer.prototype.readFloatLE = function readFloatLE(offset, noAssert) { + offset = offset >>> 0; + if (!noAssert) checkOffset(offset, 4, this.length); + return ieee754.read(this, offset, true, 23, 4); + }; + + Buffer.prototype.readFloatBE = function readFloatBE(offset, noAssert) { + offset = offset >>> 0; + if (!noAssert) checkOffset(offset, 4, this.length); + return ieee754.read(this, offset, false, 23, 4); + }; + + Buffer.prototype.readDoubleLE = function readDoubleLE(offset, noAssert) { + offset = offset >>> 0; + if (!noAssert) checkOffset(offset, 8, this.length); + return ieee754.read(this, offset, true, 52, 8); + }; + + Buffer.prototype.readDoubleBE = function readDoubleBE(offset, noAssert) { + offset = offset >>> 0; + if (!noAssert) checkOffset(offset, 8, this.length); + return ieee754.read(this, offset, false, 52, 8); + }; + + function checkInt(buf, value, offset, ext, max, min) { + if (!Buffer.isBuffer(buf)) throw new TypeError('"buffer" argument must be a Buffer instance'); + if (value > max || value < min) throw new RangeError('"value" argument is out of bounds'); + if (offset + ext > buf.length) throw new RangeError('Index out of range'); + } + + Buffer.prototype.writeUintLE = Buffer.prototype.writeUIntLE = function writeUIntLE(value, offset, byteLength, noAssert) { + value = +value; + offset = offset >>> 0; + byteLength = byteLength >>> 0; + + if (!noAssert) { + var maxBytes = Math.pow(2, 8 * byteLength) - 1; + checkInt(this, value, offset, byteLength, maxBytes, 0); + } + + var mul = 1; + var i = 0; + this[offset] = value & 0xFF; + + while (++i < byteLength && (mul *= 0x100)) { + this[offset + i] = value / mul & 0xFF; + } + + return offset + byteLength; + }; + + Buffer.prototype.writeUintBE = Buffer.prototype.writeUIntBE = function writeUIntBE(value, offset, byteLength, noAssert) { + value = +value; + offset = offset >>> 0; + byteLength = byteLength >>> 0; + + if (!noAssert) { + var maxBytes = Math.pow(2, 8 * byteLength) - 1; + checkInt(this, value, offset, byteLength, maxBytes, 0); + } + + var i = byteLength - 1; + var mul = 1; + this[offset + i] = value & 0xFF; + + while (--i >= 0 && (mul *= 0x100)) { + this[offset + i] = value / mul & 0xFF; + } + + return offset + byteLength; + }; + + Buffer.prototype.writeUint8 = Buffer.prototype.writeUInt8 = function writeUInt8(value, offset, noAssert) { + value = +value; + offset = offset >>> 0; + if (!noAssert) checkInt(this, value, offset, 1, 0xff, 0); + this[offset] = value & 0xff; + return offset + 1; + }; + + Buffer.prototype.writeUint16LE = Buffer.prototype.writeUInt16LE = function writeUInt16LE(value, offset, noAssert) { + value = +value; + offset = offset >>> 0; + if (!noAssert) checkInt(this, value, offset, 2, 0xffff, 0); + this[offset] = value & 0xff; + this[offset + 1] = value >>> 8; + return offset + 2; + }; + + Buffer.prototype.writeUint16BE = Buffer.prototype.writeUInt16BE = function writeUInt16BE(value, offset, noAssert) { + value = +value; + offset = offset >>> 0; + if (!noAssert) checkInt(this, value, offset, 2, 0xffff, 0); + this[offset] = value >>> 8; + this[offset + 1] = value & 0xff; + return offset + 2; + }; + + Buffer.prototype.writeUint32LE = Buffer.prototype.writeUInt32LE = function writeUInt32LE(value, offset, noAssert) { + value = +value; + offset = offset >>> 0; + if (!noAssert) checkInt(this, value, offset, 4, 0xffffffff, 0); + this[offset + 3] = value >>> 24; + this[offset + 2] = value >>> 16; + this[offset + 1] = value >>> 8; + this[offset] = value & 0xff; + return offset + 4; + }; + + Buffer.prototype.writeUint32BE = Buffer.prototype.writeUInt32BE = function writeUInt32BE(value, offset, noAssert) { + value = +value; + offset = offset >>> 0; + if (!noAssert) checkInt(this, value, offset, 4, 0xffffffff, 0); + this[offset] = value >>> 24; + this[offset + 1] = value >>> 16; + this[offset + 2] = value >>> 8; + this[offset + 3] = value & 0xff; + return offset + 4; + }; + + Buffer.prototype.writeIntLE = function writeIntLE(value, offset, byteLength, noAssert) { + value = +value; + offset = offset >>> 0; + + if (!noAssert) { + var limit = Math.pow(2, 8 * byteLength - 1); + checkInt(this, value, offset, byteLength, limit - 1, -limit); + } + + var i = 0; + var mul = 1; + var sub = 0; + this[offset] = value & 0xFF; + + while (++i < byteLength && (mul *= 0x100)) { + if (value < 0 && sub === 0 && this[offset + i - 1] !== 0) { + sub = 1; + } + + this[offset + i] = (value / mul >> 0) - sub & 0xFF; + } + + return offset + byteLength; + }; + + Buffer.prototype.writeIntBE = function writeIntBE(value, offset, byteLength, noAssert) { + value = +value; + offset = offset >>> 0; + + if (!noAssert) { + var limit = Math.pow(2, 8 * byteLength - 1); + checkInt(this, value, offset, byteLength, limit - 1, -limit); + } + + var i = byteLength - 1; + var mul = 1; + var sub = 0; + this[offset + i] = value & 0xFF; + + while (--i >= 0 && (mul *= 0x100)) { + if (value < 0 && sub === 0 && this[offset + i + 1] !== 0) { + sub = 1; + } + + this[offset + i] = (value / mul >> 0) - sub & 0xFF; + } + + return offset + byteLength; + }; + + Buffer.prototype.writeInt8 = function writeInt8(value, offset, noAssert) { + value = +value; + offset = offset >>> 0; + if (!noAssert) checkInt(this, value, offset, 1, 0x7f, -0x80); + if (value < 0) value = 0xff + value + 1; + this[offset] = value & 0xff; + return offset + 1; + }; + + Buffer.prototype.writeInt16LE = function writeInt16LE(value, offset, noAssert) { + value = +value; + offset = offset >>> 0; + if (!noAssert) checkInt(this, value, offset, 2, 0x7fff, -0x8000); + this[offset] = value & 0xff; + this[offset + 1] = value >>> 8; + return offset + 2; + }; + + Buffer.prototype.writeInt16BE = function writeInt16BE(value, offset, noAssert) { + value = +value; + offset = offset >>> 0; + if (!noAssert) checkInt(this, value, offset, 2, 0x7fff, -0x8000); + this[offset] = value >>> 8; + this[offset + 1] = value & 0xff; + return offset + 2; + }; + + Buffer.prototype.writeInt32LE = function writeInt32LE(value, offset, noAssert) { + value = +value; + offset = offset >>> 0; + if (!noAssert) checkInt(this, value, offset, 4, 0x7fffffff, -0x80000000); + this[offset] = value & 0xff; + this[offset + 1] = value >>> 8; + this[offset + 2] = value >>> 16; + this[offset + 3] = value >>> 24; + return offset + 4; + }; + + Buffer.prototype.writeInt32BE = function writeInt32BE(value, offset, noAssert) { + value = +value; + offset = offset >>> 0; + if (!noAssert) checkInt(this, value, offset, 4, 0x7fffffff, -0x80000000); + if (value < 0) value = 0xffffffff + value + 1; + this[offset] = value >>> 24; + this[offset + 1] = value >>> 16; + this[offset + 2] = value >>> 8; + this[offset + 3] = value & 0xff; + return offset + 4; + }; + + function checkIEEE754(buf, value, offset, ext, max, min) { + if (offset + ext > buf.length) throw new RangeError('Index out of range'); + if (offset < 0) throw new RangeError('Index out of range'); + } + + function writeFloat(buf, value, offset, littleEndian, noAssert) { + value = +value; + offset = offset >>> 0; + + if (!noAssert) { + checkIEEE754(buf, value, offset, 4); + } + + ieee754.write(buf, value, offset, littleEndian, 23, 4); + return offset + 4; + } + + Buffer.prototype.writeFloatLE = function writeFloatLE(value, offset, noAssert) { + return writeFloat(this, value, offset, true, noAssert); + }; + + Buffer.prototype.writeFloatBE = function writeFloatBE(value, offset, noAssert) { + return writeFloat(this, value, offset, false, noAssert); + }; + + function writeDouble(buf, value, offset, littleEndian, noAssert) { + value = +value; + offset = offset >>> 0; + + if (!noAssert) { + checkIEEE754(buf, value, offset, 8); + } + + ieee754.write(buf, value, offset, littleEndian, 52, 8); + return offset + 8; + } + + Buffer.prototype.writeDoubleLE = function writeDoubleLE(value, offset, noAssert) { + return writeDouble(this, value, offset, true, noAssert); + }; + + Buffer.prototype.writeDoubleBE = function writeDoubleBE(value, offset, noAssert) { + return writeDouble(this, value, offset, false, noAssert); + }; // copy(targetBuffer, targetStart=0, sourceStart=0, sourceEnd=buffer.length) + + + Buffer.prototype.copy = function copy(target, targetStart, start, end) { + if (!Buffer.isBuffer(target)) throw new TypeError('argument should be a Buffer'); + if (!start) start = 0; + if (!end && end !== 0) end = this.length; + if (targetStart >= target.length) targetStart = target.length; + if (!targetStart) targetStart = 0; + if (end > 0 && end < start) end = start; // Copy 0 bytes; we're done + + if (end === start) return 0; + if (target.length === 0 || this.length === 0) return 0; // Fatal error conditions + + if (targetStart < 0) { + throw new RangeError('targetStart out of bounds'); + } + + if (start < 0 || start >= this.length) throw new RangeError('Index out of range'); + if (end < 0) throw new RangeError('sourceEnd out of bounds'); // Are we oob? + + if (end > this.length) end = this.length; + + if (target.length - targetStart < end - start) { + end = target.length - targetStart + start; + } + + var len = end - start; + + if (this === target && typeof Uint8Array.prototype.copyWithin === 'function') { + // Use built-in when available, missing from IE11 + this.copyWithin(targetStart, start, end); + } else { + Uint8Array.prototype.set.call(target, this.subarray(start, end), targetStart); + } + + return len; + }; // Usage: + // buffer.fill(number[, offset[, end]]) + // buffer.fill(buffer[, offset[, end]]) + // buffer.fill(string[, offset[, end]][, encoding]) + + + Buffer.prototype.fill = function fill(val, start, end, encoding) { + // Handle string cases: + if (typeof val === 'string') { + if (typeof start === 'string') { + encoding = start; + start = 0; + end = this.length; + } else if (typeof end === 'string') { + encoding = end; + end = this.length; + } + + if (encoding !== undefined && typeof encoding !== 'string') { + throw new TypeError('encoding must be a string'); + } + + if (typeof encoding === 'string' && !Buffer.isEncoding(encoding)) { + throw new TypeError('Unknown encoding: ' + encoding); + } + + if (val.length === 1) { + var code = val.charCodeAt(0); + + if (encoding === 'utf8' && code < 128 || encoding === 'latin1') { + // Fast path: If `val` fits into a single byte, use that numeric value. + val = code; + } + } + } else if (typeof val === 'number') { + val = val & 255; + } else if (typeof val === 'boolean') { + val = Number(val); + } // Invalid ranges are not set to a default, so can range check early. + + + if (start < 0 || this.length < start || this.length < end) { + throw new RangeError('Out of range index'); + } + + if (end <= start) { + return this; + } + + start = start >>> 0; + end = end === undefined ? this.length : end >>> 0; + if (!val) val = 0; + var i; + + if (typeof val === 'number') { + for (i = start; i < end; ++i) { + this[i] = val; + } + } else { + var bytes = Buffer.isBuffer(val) ? val : Buffer.from(val, encoding); + var len = bytes.length; + + if (len === 0) { + throw new TypeError('The value "' + val + '" is invalid for argument "value"'); + } + + for (i = 0; i < end - start; ++i) { + this[i + start] = bytes[i % len]; + } + } + + return this; + }; // HELPER FUNCTIONS + // ================ + + + var INVALID_BASE64_RE = /[^+/0-9A-Za-z-_]/g; + + function base64clean(str) { + // Node takes equal signs as end of the Base64 encoding + str = str.split('=')[0]; // Node strips out invalid characters like \n and \t from the string, base64-js does not + + str = str.trim().replace(INVALID_BASE64_RE, ''); // Node converts strings with length < 2 to '' + + if (str.length < 2) return ''; // Node allows for non-padded base64 strings (missing trailing ===), base64-js does not + + while (str.length % 4 !== 0) { + str = str + '='; + } + + return str; + } + + function utf8ToBytes(string, units) { + units = units || Infinity; + var codePoint; + var length = string.length; + var leadSurrogate = null; + var bytes = []; + + for (var i = 0; i < length; ++i) { + codePoint = string.charCodeAt(i); // is surrogate component + + if (codePoint > 0xD7FF && codePoint < 0xE000) { + // last char was a lead + if (!leadSurrogate) { + // no lead yet + if (codePoint > 0xDBFF) { + // unexpected trail + if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD); + continue; + } else if (i + 1 === length) { + // unpaired lead + if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD); + continue; + } // valid lead + + + leadSurrogate = codePoint; + continue; + } // 2 leads in a row + + + if (codePoint < 0xDC00) { + if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD); + leadSurrogate = codePoint; + continue; + } // valid surrogate pair + + + codePoint = (leadSurrogate - 0xD800 << 10 | codePoint - 0xDC00) + 0x10000; + } else if (leadSurrogate) { + // valid bmp char, but last char was a lead + if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD); + } + + leadSurrogate = null; // encode utf8 + + if (codePoint < 0x80) { + if ((units -= 1) < 0) break; + bytes.push(codePoint); + } else if (codePoint < 0x800) { + if ((units -= 2) < 0) break; + bytes.push(codePoint >> 0x6 | 0xC0, codePoint & 0x3F | 0x80); + } else if (codePoint < 0x10000) { + if ((units -= 3) < 0) break; + bytes.push(codePoint >> 0xC | 0xE0, codePoint >> 0x6 & 0x3F | 0x80, codePoint & 0x3F | 0x80); + } else if (codePoint < 0x110000) { + if ((units -= 4) < 0) break; + bytes.push(codePoint >> 0x12 | 0xF0, codePoint >> 0xC & 0x3F | 0x80, codePoint >> 0x6 & 0x3F | 0x80, codePoint & 0x3F | 0x80); + } else { + throw new Error('Invalid code point'); + } + } + + return bytes; + } + + function asciiToBytes(str) { + var byteArray = []; + + for (var i = 0; i < str.length; ++i) { + // Node's code seems to be doing this and not & 0x7F.. + byteArray.push(str.charCodeAt(i) & 0xFF); + } + + return byteArray; + } + + function utf16leToBytes(str, units) { + var c, hi, lo; + var byteArray = []; + + for (var i = 0; i < str.length; ++i) { + if ((units -= 2) < 0) break; + c = str.charCodeAt(i); + hi = c >> 8; + lo = c % 256; + byteArray.push(lo); + byteArray.push(hi); + } + + return byteArray; + } + + function base64ToBytes(str) { + return base64Js.toByteArray(base64clean(str)); + } + + function blitBuffer(src, dst, offset, length) { + for (var i = 0; i < length; ++i) { + if (i + offset >= dst.length || i >= src.length) break; + dst[i + offset] = src[i]; + } + + return i; + } // ArrayBuffer or Uint8Array objects from other contexts (i.e. iframes) do not pass + // the `instanceof` check but they should be treated as of that type. + // See: https://github.com/feross/buffer/issues/166 + + + function isInstance(obj, type) { + return obj instanceof type || obj != null && obj.constructor != null && obj.constructor.name != null && obj.constructor.name === type.name; + } + + function numberIsNaN(obj) { + // For IE11 support + return obj !== obj; // eslint-disable-line no-self-compare + } // Create lookup table for `toString('hex')` + // See: https://github.com/feross/buffer/issues/219 + + + var hexSliceLookupTable = function () { + var alphabet = '0123456789abcdef'; + var table = new Array(256); + + for (var i = 0; i < 16; ++i) { + var i16 = i * 16; + + for (var j = 0; j < 16; ++j) { + table[i16 + j] = alphabet[i] + alphabet[j]; + } + } + + return table; + }(); +}); +var buffer_1 = buffer$1.Buffer; +buffer$1.SlowBuffer; +buffer$1.INSPECT_MAX_BYTES; +buffer$1.kMaxLength; + +/*! ***************************************************************************** +Copyright (c) Microsoft Corporation. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH +REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY +AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, +INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM +LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR +OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THIS SOFTWARE. +***************************************************************************** */ + +/* global Reflect, Promise */ +var _extendStatics = function extendStatics(d, b) { + _extendStatics = Object.setPrototypeOf || { + __proto__: [] + } instanceof Array && function (d, b) { + d.__proto__ = b; + } || function (d, b) { + for (var p in b) { + if (b.hasOwnProperty(p)) d[p] = b[p]; + } + }; + + return _extendStatics(d, b); +}; + +function __extends(d, b) { + _extendStatics(d, b); + + function __() { + this.constructor = d; + } + + d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); +} + +var _assign = function __assign() { + _assign = Object.assign || function __assign(t) { + for (var s, i = 1, n = arguments.length; i < n; i++) { + s = arguments[i]; + + for (var p in s) { + if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p]; + } + } + + return t; + }; + + return _assign.apply(this, arguments); +}; + +/** @public */ +var BSONError = /** @class */ (function (_super) { + __extends(BSONError, _super); + function BSONError(message) { + var _this = _super.call(this, message) || this; + Object.setPrototypeOf(_this, BSONError.prototype); + return _this; + } + Object.defineProperty(BSONError.prototype, "name", { + get: function () { + return 'BSONError'; + }, + enumerable: false, + configurable: true + }); + return BSONError; +}(Error)); +/** @public */ +var BSONTypeError = /** @class */ (function (_super) { + __extends(BSONTypeError, _super); + function BSONTypeError(message) { + var _this = _super.call(this, message) || this; + Object.setPrototypeOf(_this, BSONTypeError.prototype); + return _this; + } + Object.defineProperty(BSONTypeError.prototype, "name", { + get: function () { + return 'BSONTypeError'; + }, + enumerable: false, + configurable: true + }); + return BSONTypeError; +}(TypeError)); + +function checkForMath(potentialGlobal) { + // eslint-disable-next-line eqeqeq + return potentialGlobal && potentialGlobal.Math == Math && potentialGlobal; +} +// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028 +function getGlobal() { + return (checkForMath(typeof globalThis === 'object' && globalThis) || + checkForMath(typeof window === 'object' && window) || + checkForMath(typeof self === 'object' && self) || + checkForMath(typeof global === 'object' && global) || + // eslint-disable-next-line @typescript-eslint/no-implied-eval + Function('return this')()); +} + +/** + * Normalizes our expected stringified form of a function across versions of node + * @param fn - The function to stringify + */ +function normalizedFunctionString(fn) { + return fn.toString().replace('function(', 'function ('); +} +function isReactNative() { + var g = getGlobal(); + return typeof g.navigator === 'object' && g.navigator.product === 'ReactNative'; +} +var insecureRandomBytes = function insecureRandomBytes(size) { + var insecureWarning = isReactNative() + ? 'BSON: For React Native please polyfill crypto.getRandomValues, e.g. using: https://www.npmjs.com/package/react-native-get-random-values.' + : 'BSON: No cryptographic implementation for random bytes present, falling back to a less secure implementation.'; + console.warn(insecureWarning); + var result = buffer_1.alloc(size); + for (var i = 0; i < size; ++i) + result[i] = Math.floor(Math.random() * 256); + return result; +}; +var detectRandomBytes = function () { + { + if (typeof window !== 'undefined') { + // browser crypto implementation(s) + var target_1 = window.crypto || window.msCrypto; // allow for IE11 + if (target_1 && target_1.getRandomValues) { + return function (size) { return target_1.getRandomValues(buffer_1.alloc(size)); }; + } + } + if (typeof global !== 'undefined' && global.crypto && global.crypto.getRandomValues) { + // allow for RN packages such as https://www.npmjs.com/package/react-native-get-random-values to populate global + return function (size) { return global.crypto.getRandomValues(buffer_1.alloc(size)); }; + } + return insecureRandomBytes; + } +}; +var randomBytes = detectRandomBytes(); +function isAnyArrayBuffer(value) { + return ['[object ArrayBuffer]', '[object SharedArrayBuffer]'].includes(Object.prototype.toString.call(value)); +} +function isUint8Array(value) { + return Object.prototype.toString.call(value) === '[object Uint8Array]'; +} +function isBigInt64Array(value) { + return Object.prototype.toString.call(value) === '[object BigInt64Array]'; +} +function isBigUInt64Array(value) { + return Object.prototype.toString.call(value) === '[object BigUint64Array]'; +} +function isRegExp(d) { + return Object.prototype.toString.call(d) === '[object RegExp]'; +} +function isMap(d) { + return Object.prototype.toString.call(d) === '[object Map]'; +} +// To ensure that 0.4 of node works correctly +function isDate(d) { + return isObjectLike(d) && Object.prototype.toString.call(d) === '[object Date]'; +} +/** + * @internal + * this is to solve the `'someKey' in x` problem where x is unknown. + * https://github.com/typescript-eslint/typescript-eslint/issues/1071#issuecomment-541955753 + */ +function isObjectLike(candidate) { + return typeof candidate === 'object' && candidate !== null; +} +function deprecate(fn, message) { + var warned = false; + function deprecated() { + var args = []; + for (var _i = 0; _i < arguments.length; _i++) { + args[_i] = arguments[_i]; + } + if (!warned) { + console.warn(message); + warned = true; + } + return fn.apply(this, args); + } + return deprecated; +} + +/** + * Makes sure that, if a Uint8Array is passed in, it is wrapped in a Buffer. + * + * @param potentialBuffer - The potential buffer + * @returns Buffer the input if potentialBuffer is a buffer, or a buffer that + * wraps a passed in Uint8Array + * @throws BSONTypeError If anything other than a Buffer or Uint8Array is passed in + */ +function ensureBuffer(potentialBuffer) { + if (ArrayBuffer.isView(potentialBuffer)) { + return buffer_1.from(potentialBuffer.buffer, potentialBuffer.byteOffset, potentialBuffer.byteLength); + } + if (isAnyArrayBuffer(potentialBuffer)) { + return buffer_1.from(potentialBuffer); + } + throw new BSONTypeError('Must use either Buffer or TypedArray'); +} + +// Validation regex for v4 uuid (validates with or without dashes) +var VALIDATION_REGEX = /^(?:[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|[0-9a-f]{12}4[0-9a-f]{3}[89ab][0-9a-f]{15})$/i; +var uuidValidateString = function (str) { + return typeof str === 'string' && VALIDATION_REGEX.test(str); +}; +var uuidHexStringToBuffer = function (hexString) { + if (!uuidValidateString(hexString)) { + throw new BSONTypeError('UUID string representations must be a 32 or 36 character hex string (dashes excluded/included). Format: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" or "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx".'); + } + var sanitizedHexString = hexString.replace(/-/g, ''); + return buffer_1.from(sanitizedHexString, 'hex'); +}; +var bufferToUuidHexString = function (buffer, includeDashes) { + if (includeDashes === void 0) { includeDashes = true; } + return includeDashes + ? buffer.toString('hex', 0, 4) + + '-' + + buffer.toString('hex', 4, 6) + + '-' + + buffer.toString('hex', 6, 8) + + '-' + + buffer.toString('hex', 8, 10) + + '-' + + buffer.toString('hex', 10, 16) + : buffer.toString('hex'); +}; + +/** @internal */ +var BSON_INT32_MAX$1 = 0x7fffffff; +/** @internal */ +var BSON_INT32_MIN$1 = -0x80000000; +/** @internal */ +var BSON_INT64_MAX$1 = Math.pow(2, 63) - 1; +/** @internal */ +var BSON_INT64_MIN$1 = -Math.pow(2, 63); +/** + * Any integer up to 2^53 can be precisely represented by a double. + * @internal + */ +var JS_INT_MAX = Math.pow(2, 53); +/** + * Any integer down to -2^53 can be precisely represented by a double. + * @internal + */ +var JS_INT_MIN = -Math.pow(2, 53); +/** Number BSON Type @internal */ +var BSON_DATA_NUMBER = 1; +/** String BSON Type @internal */ +var BSON_DATA_STRING = 2; +/** Object BSON Type @internal */ +var BSON_DATA_OBJECT = 3; +/** Array BSON Type @internal */ +var BSON_DATA_ARRAY = 4; +/** Binary BSON Type @internal */ +var BSON_DATA_BINARY = 5; +/** Binary BSON Type @internal */ +var BSON_DATA_UNDEFINED = 6; +/** ObjectId BSON Type @internal */ +var BSON_DATA_OID = 7; +/** Boolean BSON Type @internal */ +var BSON_DATA_BOOLEAN = 8; +/** Date BSON Type @internal */ +var BSON_DATA_DATE = 9; +/** null BSON Type @internal */ +var BSON_DATA_NULL = 10; +/** RegExp BSON Type @internal */ +var BSON_DATA_REGEXP = 11; +/** Code BSON Type @internal */ +var BSON_DATA_DBPOINTER = 12; +/** Code BSON Type @internal */ +var BSON_DATA_CODE = 13; +/** Symbol BSON Type @internal */ +var BSON_DATA_SYMBOL = 14; +/** Code with Scope BSON Type @internal */ +var BSON_DATA_CODE_W_SCOPE = 15; +/** 32 bit Integer BSON Type @internal */ +var BSON_DATA_INT = 16; +/** Timestamp BSON Type @internal */ +var BSON_DATA_TIMESTAMP = 17; +/** Long BSON Type @internal */ +var BSON_DATA_LONG = 18; +/** Decimal128 BSON Type @internal */ +var BSON_DATA_DECIMAL128 = 19; +/** MinKey BSON Type @internal */ +var BSON_DATA_MIN_KEY = 0xff; +/** MaxKey BSON Type @internal */ +var BSON_DATA_MAX_KEY = 0x7f; +/** Binary Default Type @internal */ +var BSON_BINARY_SUBTYPE_DEFAULT = 0; +/** Binary Function Type @internal */ +var BSON_BINARY_SUBTYPE_FUNCTION = 1; +/** Binary Byte Array Type @internal */ +var BSON_BINARY_SUBTYPE_BYTE_ARRAY = 2; +/** Binary Deprecated UUID Type @deprecated Please use BSON_BINARY_SUBTYPE_UUID_NEW @internal */ +var BSON_BINARY_SUBTYPE_UUID = 3; +/** Binary UUID Type @internal */ +var BSON_BINARY_SUBTYPE_UUID_NEW = 4; +/** Binary MD5 Type @internal */ +var BSON_BINARY_SUBTYPE_MD5 = 5; +/** Encrypted BSON type @internal */ +var BSON_BINARY_SUBTYPE_ENCRYPTED = 6; +/** Column BSON type @internal */ +var BSON_BINARY_SUBTYPE_COLUMN = 7; +/** Binary User Defined Type @internal */ +var BSON_BINARY_SUBTYPE_USER_DEFINED = 128; + +/** + * A class representation of the BSON Binary type. + * @public + * @category BSONType + */ +var Binary = /** @class */ (function () { + /** + * Create a new Binary instance. + * + * This constructor can accept a string as its first argument. In this case, + * this string will be encoded using ISO-8859-1, **not** using UTF-8. + * This is almost certainly not what you want. Use `new Binary(Buffer.from(string))` + * instead to convert the string to a Buffer using UTF-8 first. + * + * @param buffer - a buffer object containing the binary data. + * @param subType - the option binary type. + */ + function Binary(buffer, subType) { + if (!(this instanceof Binary)) + return new Binary(buffer, subType); + if (!(buffer == null) && + !(typeof buffer === 'string') && + !ArrayBuffer.isView(buffer) && + !(buffer instanceof ArrayBuffer) && + !Array.isArray(buffer)) { + throw new BSONTypeError('Binary can only be constructed from string, Buffer, TypedArray, or Array'); + } + this.sub_type = subType !== null && subType !== void 0 ? subType : Binary.BSON_BINARY_SUBTYPE_DEFAULT; + if (buffer == null) { + // create an empty binary buffer + this.buffer = buffer_1.alloc(Binary.BUFFER_SIZE); + this.position = 0; + } + else { + if (typeof buffer === 'string') { + // string + this.buffer = buffer_1.from(buffer, 'binary'); + } + else if (Array.isArray(buffer)) { + // number[] + this.buffer = buffer_1.from(buffer); + } + else { + // Buffer | TypedArray | ArrayBuffer + this.buffer = ensureBuffer(buffer); + } + this.position = this.buffer.byteLength; + } + } + /** + * Updates this binary with byte_value. + * + * @param byteValue - a single byte we wish to write. + */ + Binary.prototype.put = function (byteValue) { + // If it's a string and a has more than one character throw an error + if (typeof byteValue === 'string' && byteValue.length !== 1) { + throw new BSONTypeError('only accepts single character String'); + } + else if (typeof byteValue !== 'number' && byteValue.length !== 1) + throw new BSONTypeError('only accepts single character Uint8Array or Array'); + // Decode the byte value once + var decodedByte; + if (typeof byteValue === 'string') { + decodedByte = byteValue.charCodeAt(0); + } + else if (typeof byteValue === 'number') { + decodedByte = byteValue; + } + else { + decodedByte = byteValue[0]; + } + if (decodedByte < 0 || decodedByte > 255) { + throw new BSONTypeError('only accepts number in a valid unsigned byte range 0-255'); + } + if (this.buffer.length > this.position) { + this.buffer[this.position++] = decodedByte; + } + else { + var buffer = buffer_1.alloc(Binary.BUFFER_SIZE + this.buffer.length); + // Combine the two buffers together + this.buffer.copy(buffer, 0, 0, this.buffer.length); + this.buffer = buffer; + this.buffer[this.position++] = decodedByte; + } + }; + /** + * Writes a buffer or string to the binary. + * + * @param sequence - a string or buffer to be written to the Binary BSON object. + * @param offset - specify the binary of where to write the content. + */ + Binary.prototype.write = function (sequence, offset) { + offset = typeof offset === 'number' ? offset : this.position; + // If the buffer is to small let's extend the buffer + if (this.buffer.length < offset + sequence.length) { + var buffer = buffer_1.alloc(this.buffer.length + sequence.length); + this.buffer.copy(buffer, 0, 0, this.buffer.length); + // Assign the new buffer + this.buffer = buffer; + } + if (ArrayBuffer.isView(sequence)) { + this.buffer.set(ensureBuffer(sequence), offset); + this.position = + offset + sequence.byteLength > this.position ? offset + sequence.length : this.position; + } + else if (typeof sequence === 'string') { + this.buffer.write(sequence, offset, sequence.length, 'binary'); + this.position = + offset + sequence.length > this.position ? offset + sequence.length : this.position; + } + }; + /** + * Reads **length** bytes starting at **position**. + * + * @param position - read from the given position in the Binary. + * @param length - the number of bytes to read. + */ + Binary.prototype.read = function (position, length) { + length = length && length > 0 ? length : this.position; + // Let's return the data based on the type we have + return this.buffer.slice(position, position + length); + }; + /** + * Returns the value of this binary as a string. + * @param asRaw - Will skip converting to a string + * @remarks + * This is handy when calling this function conditionally for some key value pairs and not others + */ + Binary.prototype.value = function (asRaw) { + asRaw = !!asRaw; + // Optimize to serialize for the situation where the data == size of buffer + if (asRaw && this.buffer.length === this.position) { + return this.buffer; + } + // If it's a node.js buffer object + if (asRaw) { + return this.buffer.slice(0, this.position); + } + return this.buffer.toString('binary', 0, this.position); + }; + /** the length of the binary sequence */ + Binary.prototype.length = function () { + return this.position; + }; + Binary.prototype.toJSON = function () { + return this.buffer.toString('base64'); + }; + Binary.prototype.toString = function (format) { + return this.buffer.toString(format); + }; + /** @internal */ + Binary.prototype.toExtendedJSON = function (options) { + options = options || {}; + var base64String = this.buffer.toString('base64'); + var subType = Number(this.sub_type).toString(16); + if (options.legacy) { + return { + $binary: base64String, + $type: subType.length === 1 ? '0' + subType : subType + }; + } + return { + $binary: { + base64: base64String, + subType: subType.length === 1 ? '0' + subType : subType + } + }; + }; + Binary.prototype.toUUID = function () { + if (this.sub_type === Binary.SUBTYPE_UUID) { + return new UUID(this.buffer.slice(0, this.position)); + } + throw new BSONError("Binary sub_type \"".concat(this.sub_type, "\" is not supported for converting to UUID. Only \"").concat(Binary.SUBTYPE_UUID, "\" is currently supported.")); + }; + /** @internal */ + Binary.fromExtendedJSON = function (doc, options) { + options = options || {}; + var data; + var type; + if ('$binary' in doc) { + if (options.legacy && typeof doc.$binary === 'string' && '$type' in doc) { + type = doc.$type ? parseInt(doc.$type, 16) : 0; + data = buffer_1.from(doc.$binary, 'base64'); + } + else { + if (typeof doc.$binary !== 'string') { + type = doc.$binary.subType ? parseInt(doc.$binary.subType, 16) : 0; + data = buffer_1.from(doc.$binary.base64, 'base64'); + } + } + } + else if ('$uuid' in doc) { + type = 4; + data = uuidHexStringToBuffer(doc.$uuid); + } + if (!data) { + throw new BSONTypeError("Unexpected Binary Extended JSON format ".concat(JSON.stringify(doc))); + } + return type === BSON_BINARY_SUBTYPE_UUID_NEW ? new UUID(data) : new Binary(data, type); + }; + /** @internal */ + Binary.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () { + return this.inspect(); + }; + Binary.prototype.inspect = function () { + var asBuffer = this.value(true); + return "new Binary(Buffer.from(\"".concat(asBuffer.toString('hex'), "\", \"hex\"), ").concat(this.sub_type, ")"); + }; + /** + * Binary default subtype + * @internal + */ + Binary.BSON_BINARY_SUBTYPE_DEFAULT = 0; + /** Initial buffer default size */ + Binary.BUFFER_SIZE = 256; + /** Default BSON type */ + Binary.SUBTYPE_DEFAULT = 0; + /** Function BSON type */ + Binary.SUBTYPE_FUNCTION = 1; + /** Byte Array BSON type */ + Binary.SUBTYPE_BYTE_ARRAY = 2; + /** Deprecated UUID BSON type @deprecated Please use SUBTYPE_UUID */ + Binary.SUBTYPE_UUID_OLD = 3; + /** UUID BSON type */ + Binary.SUBTYPE_UUID = 4; + /** MD5 BSON type */ + Binary.SUBTYPE_MD5 = 5; + /** Encrypted BSON type */ + Binary.SUBTYPE_ENCRYPTED = 6; + /** Column BSON type */ + Binary.SUBTYPE_COLUMN = 7; + /** User BSON type */ + Binary.SUBTYPE_USER_DEFINED = 128; + return Binary; +}()); +Object.defineProperty(Binary.prototype, '_bsontype', { value: 'Binary' }); +var UUID_BYTE_LENGTH = 16; +/** + * A class representation of the BSON UUID type. + * @public + */ +var UUID = /** @class */ (function (_super) { + __extends(UUID, _super); + /** + * Create an UUID type + * + * @param input - Can be a 32 or 36 character hex string (dashes excluded/included) or a 16 byte binary Buffer. + */ + function UUID(input) { + var _this = this; + var bytes; + var hexStr; + if (input == null) { + bytes = UUID.generate(); + } + else if (input instanceof UUID) { + bytes = buffer_1.from(input.buffer); + hexStr = input.__id; + } + else if (ArrayBuffer.isView(input) && input.byteLength === UUID_BYTE_LENGTH) { + bytes = ensureBuffer(input); + } + else if (typeof input === 'string') { + bytes = uuidHexStringToBuffer(input); + } + else { + throw new BSONTypeError('Argument passed in UUID constructor must be a UUID, a 16 byte Buffer or a 32/36 character hex string (dashes excluded/included, format: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx).'); + } + _this = _super.call(this, bytes, BSON_BINARY_SUBTYPE_UUID_NEW) || this; + _this.__id = hexStr; + return _this; + } + Object.defineProperty(UUID.prototype, "id", { + /** + * The UUID bytes + * @readonly + */ + get: function () { + return this.buffer; + }, + set: function (value) { + this.buffer = value; + if (UUID.cacheHexString) { + this.__id = bufferToUuidHexString(value); + } + }, + enumerable: false, + configurable: true + }); + /** + * Returns the UUID id as a 32 or 36 character hex string representation, excluding/including dashes (defaults to 36 character dash separated) + * @param includeDashes - should the string exclude dash-separators. + * */ + UUID.prototype.toHexString = function (includeDashes) { + if (includeDashes === void 0) { includeDashes = true; } + if (UUID.cacheHexString && this.__id) { + return this.__id; + } + var uuidHexString = bufferToUuidHexString(this.id, includeDashes); + if (UUID.cacheHexString) { + this.__id = uuidHexString; + } + return uuidHexString; + }; + /** + * Converts the id into a 36 character (dashes included) hex string, unless a encoding is specified. + */ + UUID.prototype.toString = function (encoding) { + return encoding ? this.id.toString(encoding) : this.toHexString(); + }; + /** + * Converts the id into its JSON string representation. + * A 36 character (dashes included) hex string in the format: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx + */ + UUID.prototype.toJSON = function () { + return this.toHexString(); + }; + /** + * Compares the equality of this UUID with `otherID`. + * + * @param otherId - UUID instance to compare against. + */ + UUID.prototype.equals = function (otherId) { + if (!otherId) { + return false; + } + if (otherId instanceof UUID) { + return otherId.id.equals(this.id); + } + try { + return new UUID(otherId).id.equals(this.id); + } + catch (_a) { + return false; + } + }; + /** + * Creates a Binary instance from the current UUID. + */ + UUID.prototype.toBinary = function () { + return new Binary(this.id, Binary.SUBTYPE_UUID); + }; + /** + * Generates a populated buffer containing a v4 uuid + */ + UUID.generate = function () { + var bytes = randomBytes(UUID_BYTE_LENGTH); + // Per 4.4, set bits for version and `clock_seq_hi_and_reserved` + // Kindly borrowed from https://github.com/uuidjs/uuid/blob/master/src/v4.js + bytes[6] = (bytes[6] & 0x0f) | 0x40; + bytes[8] = (bytes[8] & 0x3f) | 0x80; + return buffer_1.from(bytes); + }; + /** + * Checks if a value is a valid bson UUID + * @param input - UUID, string or Buffer to validate. + */ + UUID.isValid = function (input) { + if (!input) { + return false; + } + if (input instanceof UUID) { + return true; + } + if (typeof input === 'string') { + return uuidValidateString(input); + } + if (isUint8Array(input)) { + // check for length & uuid version (https://tools.ietf.org/html/rfc4122#section-4.1.3) + if (input.length !== UUID_BYTE_LENGTH) { + return false; + } + return (input[6] & 0xf0) === 0x40 && (input[8] & 0x80) === 0x80; + } + return false; + }; + /** + * Creates an UUID from a hex string representation of an UUID. + * @param hexString - 32 or 36 character hex string (dashes excluded/included). + */ + UUID.createFromHexString = function (hexString) { + var buffer = uuidHexStringToBuffer(hexString); + return new UUID(buffer); + }; + /** + * Converts to a string representation of this Id. + * + * @returns return the 36 character hex string representation. + * @internal + */ + UUID.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () { + return this.inspect(); + }; + UUID.prototype.inspect = function () { + return "new UUID(\"".concat(this.toHexString(), "\")"); + }; + return UUID; +}(Binary)); + +/** + * A class representation of the BSON Code type. + * @public + * @category BSONType + */ +var Code = /** @class */ (function () { + /** + * @param code - a string or function. + * @param scope - an optional scope for the function. + */ + function Code(code, scope) { + if (!(this instanceof Code)) + return new Code(code, scope); + this.code = code; + this.scope = scope; + } + Code.prototype.toJSON = function () { + return { code: this.code, scope: this.scope }; + }; + /** @internal */ + Code.prototype.toExtendedJSON = function () { + if (this.scope) { + return { $code: this.code, $scope: this.scope }; + } + return { $code: this.code }; + }; + /** @internal */ + Code.fromExtendedJSON = function (doc) { + return new Code(doc.$code, doc.$scope); + }; + /** @internal */ + Code.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () { + return this.inspect(); + }; + Code.prototype.inspect = function () { + var codeJson = this.toJSON(); + return "new Code(\"".concat(String(codeJson.code), "\"").concat(codeJson.scope ? ", ".concat(JSON.stringify(codeJson.scope)) : '', ")"); + }; + return Code; +}()); +Object.defineProperty(Code.prototype, '_bsontype', { value: 'Code' }); + +/** @internal */ +function isDBRefLike(value) { + return (isObjectLike(value) && + value.$id != null && + typeof value.$ref === 'string' && + (value.$db == null || typeof value.$db === 'string')); +} +/** + * A class representation of the BSON DBRef type. + * @public + * @category BSONType + */ +var DBRef = /** @class */ (function () { + /** + * @param collection - the collection name. + * @param oid - the reference ObjectId. + * @param db - optional db name, if omitted the reference is local to the current db. + */ + function DBRef(collection, oid, db, fields) { + if (!(this instanceof DBRef)) + return new DBRef(collection, oid, db, fields); + // check if namespace has been provided + var parts = collection.split('.'); + if (parts.length === 2) { + db = parts.shift(); + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + collection = parts.shift(); + } + this.collection = collection; + this.oid = oid; + this.db = db; + this.fields = fields || {}; + } + Object.defineProperty(DBRef.prototype, "namespace", { + // Property provided for compatibility with the 1.x parser + // the 1.x parser used a "namespace" property, while 4.x uses "collection" + /** @internal */ + get: function () { + return this.collection; + }, + set: function (value) { + this.collection = value; + }, + enumerable: false, + configurable: true + }); + DBRef.prototype.toJSON = function () { + var o = Object.assign({ + $ref: this.collection, + $id: this.oid + }, this.fields); + if (this.db != null) + o.$db = this.db; + return o; + }; + /** @internal */ + DBRef.prototype.toExtendedJSON = function (options) { + options = options || {}; + var o = { + $ref: this.collection, + $id: this.oid + }; + if (options.legacy) { + return o; + } + if (this.db) + o.$db = this.db; + o = Object.assign(o, this.fields); + return o; + }; + /** @internal */ + DBRef.fromExtendedJSON = function (doc) { + var copy = Object.assign({}, doc); + delete copy.$ref; + delete copy.$id; + delete copy.$db; + return new DBRef(doc.$ref, doc.$id, doc.$db, copy); + }; + /** @internal */ + DBRef.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () { + return this.inspect(); + }; + DBRef.prototype.inspect = function () { + // NOTE: if OID is an ObjectId class it will just print the oid string. + var oid = this.oid === undefined || this.oid.toString === undefined ? this.oid : this.oid.toString(); + return "new DBRef(\"".concat(this.namespace, "\", new ObjectId(\"").concat(String(oid), "\")").concat(this.db ? ", \"".concat(this.db, "\"") : '', ")"); + }; + return DBRef; +}()); +Object.defineProperty(DBRef.prototype, '_bsontype', { value: 'DBRef' }); + +/** + * wasm optimizations, to do native i64 multiplication and divide + */ +var wasm = undefined; +try { + wasm = new WebAssembly.Instance(new WebAssembly.Module( + // prettier-ignore + new Uint8Array([0, 97, 115, 109, 1, 0, 0, 0, 1, 13, 2, 96, 0, 1, 127, 96, 4, 127, 127, 127, 127, 1, 127, 3, 7, 6, 0, 1, 1, 1, 1, 1, 6, 6, 1, 127, 1, 65, 0, 11, 7, 50, 6, 3, 109, 117, 108, 0, 1, 5, 100, 105, 118, 95, 115, 0, 2, 5, 100, 105, 118, 95, 117, 0, 3, 5, 114, 101, 109, 95, 115, 0, 4, 5, 114, 101, 109, 95, 117, 0, 5, 8, 103, 101, 116, 95, 104, 105, 103, 104, 0, 0, 10, 191, 1, 6, 4, 0, 35, 0, 11, 36, 1, 1, 126, 32, 0, 173, 32, 1, 173, 66, 32, 134, 132, 32, 2, 173, 32, 3, 173, 66, 32, 134, 132, 126, 34, 4, 66, 32, 135, 167, 36, 0, 32, 4, 167, 11, 36, 1, 1, 126, 32, 0, 173, 32, 1, 173, 66, 32, 134, 132, 32, 2, 173, 32, 3, 173, 66, 32, 134, 132, 127, 34, 4, 66, 32, 135, 167, 36, 0, 32, 4, 167, 11, 36, 1, 1, 126, 32, 0, 173, 32, 1, 173, 66, 32, 134, 132, 32, 2, 173, 32, 3, 173, 66, 32, 134, 132, 128, 34, 4, 66, 32, 135, 167, 36, 0, 32, 4, 167, 11, 36, 1, 1, 126, 32, 0, 173, 32, 1, 173, 66, 32, 134, 132, 32, 2, 173, 32, 3, 173, 66, 32, 134, 132, 129, 34, 4, 66, 32, 135, 167, 36, 0, 32, 4, 167, 11, 36, 1, 1, 126, 32, 0, 173, 32, 1, 173, 66, 32, 134, 132, 32, 2, 173, 32, 3, 173, 66, 32, 134, 132, 130, 34, 4, 66, 32, 135, 167, 36, 0, 32, 4, 167, 11])), {}).exports; +} +catch (_a) { + // no wasm support +} +var TWO_PWR_16_DBL = 1 << 16; +var TWO_PWR_24_DBL = 1 << 24; +var TWO_PWR_32_DBL = TWO_PWR_16_DBL * TWO_PWR_16_DBL; +var TWO_PWR_64_DBL = TWO_PWR_32_DBL * TWO_PWR_32_DBL; +var TWO_PWR_63_DBL = TWO_PWR_64_DBL / 2; +/** A cache of the Long representations of small integer values. */ +var INT_CACHE = {}; +/** A cache of the Long representations of small unsigned integer values. */ +var UINT_CACHE = {}; +/** + * A class representing a 64-bit integer + * @public + * @category BSONType + * @remarks + * The internal representation of a long is the two given signed, 32-bit values. + * We use 32-bit pieces because these are the size of integers on which + * Javascript performs bit-operations. For operations like addition and + * multiplication, we split each number into 16 bit pieces, which can easily be + * multiplied within Javascript's floating-point representation without overflow + * or change in sign. + * In the algorithms below, we frequently reduce the negative case to the + * positive case by negating the input(s) and then post-processing the result. + * Note that we must ALWAYS check specially whether those values are MIN_VALUE + * (-2^63) because -MIN_VALUE == MIN_VALUE (since 2^63 cannot be represented as + * a positive number, it overflows back into a negative). Not handling this + * case would often result in infinite recursion. + * Common constant values ZERO, ONE, NEG_ONE, etc. are found as static properties on this class. + */ +var Long = /** @class */ (function () { + /** + * Constructs a 64 bit two's-complement integer, given its low and high 32 bit values as *signed* integers. + * See the from* functions below for more convenient ways of constructing Longs. + * + * Acceptable signatures are: + * - Long(low, high, unsigned?) + * - Long(bigint, unsigned?) + * - Long(string, unsigned?) + * + * @param low - The low (signed) 32 bits of the long + * @param high - The high (signed) 32 bits of the long + * @param unsigned - Whether unsigned or not, defaults to signed + */ + function Long(low, high, unsigned) { + if (low === void 0) { low = 0; } + if (!(this instanceof Long)) + return new Long(low, high, unsigned); + if (typeof low === 'bigint') { + Object.assign(this, Long.fromBigInt(low, !!high)); + } + else if (typeof low === 'string') { + Object.assign(this, Long.fromString(low, !!high)); + } + else { + this.low = low | 0; + this.high = high | 0; + this.unsigned = !!unsigned; + } + Object.defineProperty(this, '__isLong__', { + value: true, + configurable: false, + writable: false, + enumerable: false + }); + } + /** + * Returns a Long representing the 64 bit integer that comes by concatenating the given low and high bits. + * Each is assumed to use 32 bits. + * @param lowBits - The low 32 bits + * @param highBits - The high 32 bits + * @param unsigned - Whether unsigned or not, defaults to signed + * @returns The corresponding Long value + */ + Long.fromBits = function (lowBits, highBits, unsigned) { + return new Long(lowBits, highBits, unsigned); + }; + /** + * Returns a Long representing the given 32 bit integer value. + * @param value - The 32 bit integer in question + * @param unsigned - Whether unsigned or not, defaults to signed + * @returns The corresponding Long value + */ + Long.fromInt = function (value, unsigned) { + var obj, cachedObj, cache; + if (unsigned) { + value >>>= 0; + if ((cache = 0 <= value && value < 256)) { + cachedObj = UINT_CACHE[value]; + if (cachedObj) + return cachedObj; + } + obj = Long.fromBits(value, (value | 0) < 0 ? -1 : 0, true); + if (cache) + UINT_CACHE[value] = obj; + return obj; + } + else { + value |= 0; + if ((cache = -128 <= value && value < 128)) { + cachedObj = INT_CACHE[value]; + if (cachedObj) + return cachedObj; + } + obj = Long.fromBits(value, value < 0 ? -1 : 0, false); + if (cache) + INT_CACHE[value] = obj; + return obj; + } + }; + /** + * Returns a Long representing the given value, provided that it is a finite number. Otherwise, zero is returned. + * @param value - The number in question + * @param unsigned - Whether unsigned or not, defaults to signed + * @returns The corresponding Long value + */ + Long.fromNumber = function (value, unsigned) { + if (isNaN(value)) + return unsigned ? Long.UZERO : Long.ZERO; + if (unsigned) { + if (value < 0) + return Long.UZERO; + if (value >= TWO_PWR_64_DBL) + return Long.MAX_UNSIGNED_VALUE; + } + else { + if (value <= -TWO_PWR_63_DBL) + return Long.MIN_VALUE; + if (value + 1 >= TWO_PWR_63_DBL) + return Long.MAX_VALUE; + } + if (value < 0) + return Long.fromNumber(-value, unsigned).neg(); + return Long.fromBits(value % TWO_PWR_32_DBL | 0, (value / TWO_PWR_32_DBL) | 0, unsigned); + }; + /** + * Returns a Long representing the given value, provided that it is a finite number. Otherwise, zero is returned. + * @param value - The number in question + * @param unsigned - Whether unsigned or not, defaults to signed + * @returns The corresponding Long value + */ + Long.fromBigInt = function (value, unsigned) { + return Long.fromString(value.toString(), unsigned); + }; + /** + * Returns a Long representation of the given string, written using the specified radix. + * @param str - The textual representation of the Long + * @param unsigned - Whether unsigned or not, defaults to signed + * @param radix - The radix in which the text is written (2-36), defaults to 10 + * @returns The corresponding Long value + */ + Long.fromString = function (str, unsigned, radix) { + if (str.length === 0) + throw Error('empty string'); + if (str === 'NaN' || str === 'Infinity' || str === '+Infinity' || str === '-Infinity') + return Long.ZERO; + if (typeof unsigned === 'number') { + // For goog.math.long compatibility + (radix = unsigned), (unsigned = false); + } + else { + unsigned = !!unsigned; + } + radix = radix || 10; + if (radix < 2 || 36 < radix) + throw RangeError('radix'); + var p; + if ((p = str.indexOf('-')) > 0) + throw Error('interior hyphen'); + else if (p === 0) { + return Long.fromString(str.substring(1), unsigned, radix).neg(); + } + // Do several (8) digits each time through the loop, so as to + // minimize the calls to the very expensive emulated div. + var radixToPower = Long.fromNumber(Math.pow(radix, 8)); + var result = Long.ZERO; + for (var i = 0; i < str.length; i += 8) { + var size = Math.min(8, str.length - i), value = parseInt(str.substring(i, i + size), radix); + if (size < 8) { + var power = Long.fromNumber(Math.pow(radix, size)); + result = result.mul(power).add(Long.fromNumber(value)); + } + else { + result = result.mul(radixToPower); + result = result.add(Long.fromNumber(value)); + } + } + result.unsigned = unsigned; + return result; + }; + /** + * Creates a Long from its byte representation. + * @param bytes - Byte representation + * @param unsigned - Whether unsigned or not, defaults to signed + * @param le - Whether little or big endian, defaults to big endian + * @returns The corresponding Long value + */ + Long.fromBytes = function (bytes, unsigned, le) { + return le ? Long.fromBytesLE(bytes, unsigned) : Long.fromBytesBE(bytes, unsigned); + }; + /** + * Creates a Long from its little endian byte representation. + * @param bytes - Little endian byte representation + * @param unsigned - Whether unsigned or not, defaults to signed + * @returns The corresponding Long value + */ + Long.fromBytesLE = function (bytes, unsigned) { + return new Long(bytes[0] | (bytes[1] << 8) | (bytes[2] << 16) | (bytes[3] << 24), bytes[4] | (bytes[5] << 8) | (bytes[6] << 16) | (bytes[7] << 24), unsigned); + }; + /** + * Creates a Long from its big endian byte representation. + * @param bytes - Big endian byte representation + * @param unsigned - Whether unsigned or not, defaults to signed + * @returns The corresponding Long value + */ + Long.fromBytesBE = function (bytes, unsigned) { + return new Long((bytes[4] << 24) | (bytes[5] << 16) | (bytes[6] << 8) | bytes[7], (bytes[0] << 24) | (bytes[1] << 16) | (bytes[2] << 8) | bytes[3], unsigned); + }; + /** + * Tests if the specified object is a Long. + */ + Long.isLong = function (value) { + return isObjectLike(value) && value['__isLong__'] === true; + }; + /** + * Converts the specified value to a Long. + * @param unsigned - Whether unsigned or not, defaults to signed + */ + Long.fromValue = function (val, unsigned) { + if (typeof val === 'number') + return Long.fromNumber(val, unsigned); + if (typeof val === 'string') + return Long.fromString(val, unsigned); + // Throws for non-objects, converts non-instanceof Long: + return Long.fromBits(val.low, val.high, typeof unsigned === 'boolean' ? unsigned : val.unsigned); + }; + /** Returns the sum of this and the specified Long. */ + Long.prototype.add = function (addend) { + if (!Long.isLong(addend)) + addend = Long.fromValue(addend); + // Divide each number into 4 chunks of 16 bits, and then sum the chunks. + var a48 = this.high >>> 16; + var a32 = this.high & 0xffff; + var a16 = this.low >>> 16; + var a00 = this.low & 0xffff; + var b48 = addend.high >>> 16; + var b32 = addend.high & 0xffff; + var b16 = addend.low >>> 16; + var b00 = addend.low & 0xffff; + var c48 = 0, c32 = 0, c16 = 0, c00 = 0; + c00 += a00 + b00; + c16 += c00 >>> 16; + c00 &= 0xffff; + c16 += a16 + b16; + c32 += c16 >>> 16; + c16 &= 0xffff; + c32 += a32 + b32; + c48 += c32 >>> 16; + c32 &= 0xffff; + c48 += a48 + b48; + c48 &= 0xffff; + return Long.fromBits((c16 << 16) | c00, (c48 << 16) | c32, this.unsigned); + }; + /** + * Returns the sum of this and the specified Long. + * @returns Sum + */ + Long.prototype.and = function (other) { + if (!Long.isLong(other)) + other = Long.fromValue(other); + return Long.fromBits(this.low & other.low, this.high & other.high, this.unsigned); + }; + /** + * Compares this Long's value with the specified's. + * @returns 0 if they are the same, 1 if the this is greater and -1 if the given one is greater + */ + Long.prototype.compare = function (other) { + if (!Long.isLong(other)) + other = Long.fromValue(other); + if (this.eq(other)) + return 0; + var thisNeg = this.isNegative(), otherNeg = other.isNegative(); + if (thisNeg && !otherNeg) + return -1; + if (!thisNeg && otherNeg) + return 1; + // At this point the sign bits are the same + if (!this.unsigned) + return this.sub(other).isNegative() ? -1 : 1; + // Both are positive if at least one is unsigned + return other.high >>> 0 > this.high >>> 0 || + (other.high === this.high && other.low >>> 0 > this.low >>> 0) + ? -1 + : 1; + }; + /** This is an alias of {@link Long.compare} */ + Long.prototype.comp = function (other) { + return this.compare(other); + }; + /** + * Returns this Long divided by the specified. The result is signed if this Long is signed or unsigned if this Long is unsigned. + * @returns Quotient + */ + Long.prototype.divide = function (divisor) { + if (!Long.isLong(divisor)) + divisor = Long.fromValue(divisor); + if (divisor.isZero()) + throw Error('division by zero'); + // use wasm support if present + if (wasm) { + // guard against signed division overflow: the largest + // negative number / -1 would be 1 larger than the largest + // positive number, due to two's complement. + if (!this.unsigned && + this.high === -0x80000000 && + divisor.low === -1 && + divisor.high === -1) { + // be consistent with non-wasm code path + return this; + } + var low = (this.unsigned ? wasm.div_u : wasm.div_s)(this.low, this.high, divisor.low, divisor.high); + return Long.fromBits(low, wasm.get_high(), this.unsigned); + } + if (this.isZero()) + return this.unsigned ? Long.UZERO : Long.ZERO; + var approx, rem, res; + if (!this.unsigned) { + // This section is only relevant for signed longs and is derived from the + // closure library as a whole. + if (this.eq(Long.MIN_VALUE)) { + if (divisor.eq(Long.ONE) || divisor.eq(Long.NEG_ONE)) + return Long.MIN_VALUE; + // recall that -MIN_VALUE == MIN_VALUE + else if (divisor.eq(Long.MIN_VALUE)) + return Long.ONE; + else { + // At this point, we have |other| >= 2, so |this/other| < |MIN_VALUE|. + var halfThis = this.shr(1); + approx = halfThis.div(divisor).shl(1); + if (approx.eq(Long.ZERO)) { + return divisor.isNegative() ? Long.ONE : Long.NEG_ONE; + } + else { + rem = this.sub(divisor.mul(approx)); + res = approx.add(rem.div(divisor)); + return res; + } + } + } + else if (divisor.eq(Long.MIN_VALUE)) + return this.unsigned ? Long.UZERO : Long.ZERO; + if (this.isNegative()) { + if (divisor.isNegative()) + return this.neg().div(divisor.neg()); + return this.neg().div(divisor).neg(); + } + else if (divisor.isNegative()) + return this.div(divisor.neg()).neg(); + res = Long.ZERO; + } + else { + // The algorithm below has not been made for unsigned longs. It's therefore + // required to take special care of the MSB prior to running it. + if (!divisor.unsigned) + divisor = divisor.toUnsigned(); + if (divisor.gt(this)) + return Long.UZERO; + if (divisor.gt(this.shru(1))) + // 15 >>> 1 = 7 ; with divisor = 8 ; true + return Long.UONE; + res = Long.UZERO; + } + // Repeat the following until the remainder is less than other: find a + // floating-point that approximates remainder / other *from below*, add this + // into the result, and subtract it from the remainder. It is critical that + // the approximate value is less than or equal to the real value so that the + // remainder never becomes negative. + // eslint-disable-next-line @typescript-eslint/no-this-alias + rem = this; + while (rem.gte(divisor)) { + // Approximate the result of division. This may be a little greater or + // smaller than the actual value. + approx = Math.max(1, Math.floor(rem.toNumber() / divisor.toNumber())); + // We will tweak the approximate result by changing it in the 48-th digit or + // the smallest non-fractional digit, whichever is larger. + var log2 = Math.ceil(Math.log(approx) / Math.LN2); + var delta = log2 <= 48 ? 1 : Math.pow(2, log2 - 48); + // Decrease the approximation until it is smaller than the remainder. Note + // that if it is too large, the product overflows and is negative. + var approxRes = Long.fromNumber(approx); + var approxRem = approxRes.mul(divisor); + while (approxRem.isNegative() || approxRem.gt(rem)) { + approx -= delta; + approxRes = Long.fromNumber(approx, this.unsigned); + approxRem = approxRes.mul(divisor); + } + // We know the answer can't be zero... and actually, zero would cause + // infinite recursion since we would make no progress. + if (approxRes.isZero()) + approxRes = Long.ONE; + res = res.add(approxRes); + rem = rem.sub(approxRem); + } + return res; + }; + /**This is an alias of {@link Long.divide} */ + Long.prototype.div = function (divisor) { + return this.divide(divisor); + }; + /** + * Tests if this Long's value equals the specified's. + * @param other - Other value + */ + Long.prototype.equals = function (other) { + if (!Long.isLong(other)) + other = Long.fromValue(other); + if (this.unsigned !== other.unsigned && this.high >>> 31 === 1 && other.high >>> 31 === 1) + return false; + return this.high === other.high && this.low === other.low; + }; + /** This is an alias of {@link Long.equals} */ + Long.prototype.eq = function (other) { + return this.equals(other); + }; + /** Gets the high 32 bits as a signed integer. */ + Long.prototype.getHighBits = function () { + return this.high; + }; + /** Gets the high 32 bits as an unsigned integer. */ + Long.prototype.getHighBitsUnsigned = function () { + return this.high >>> 0; + }; + /** Gets the low 32 bits as a signed integer. */ + Long.prototype.getLowBits = function () { + return this.low; + }; + /** Gets the low 32 bits as an unsigned integer. */ + Long.prototype.getLowBitsUnsigned = function () { + return this.low >>> 0; + }; + /** Gets the number of bits needed to represent the absolute value of this Long. */ + Long.prototype.getNumBitsAbs = function () { + if (this.isNegative()) { + // Unsigned Longs are never negative + return this.eq(Long.MIN_VALUE) ? 64 : this.neg().getNumBitsAbs(); + } + var val = this.high !== 0 ? this.high : this.low; + var bit; + for (bit = 31; bit > 0; bit--) + if ((val & (1 << bit)) !== 0) + break; + return this.high !== 0 ? bit + 33 : bit + 1; + }; + /** Tests if this Long's value is greater than the specified's. */ + Long.prototype.greaterThan = function (other) { + return this.comp(other) > 0; + }; + /** This is an alias of {@link Long.greaterThan} */ + Long.prototype.gt = function (other) { + return this.greaterThan(other); + }; + /** Tests if this Long's value is greater than or equal the specified's. */ + Long.prototype.greaterThanOrEqual = function (other) { + return this.comp(other) >= 0; + }; + /** This is an alias of {@link Long.greaterThanOrEqual} */ + Long.prototype.gte = function (other) { + return this.greaterThanOrEqual(other); + }; + /** This is an alias of {@link Long.greaterThanOrEqual} */ + Long.prototype.ge = function (other) { + return this.greaterThanOrEqual(other); + }; + /** Tests if this Long's value is even. */ + Long.prototype.isEven = function () { + return (this.low & 1) === 0; + }; + /** Tests if this Long's value is negative. */ + Long.prototype.isNegative = function () { + return !this.unsigned && this.high < 0; + }; + /** Tests if this Long's value is odd. */ + Long.prototype.isOdd = function () { + return (this.low & 1) === 1; + }; + /** Tests if this Long's value is positive. */ + Long.prototype.isPositive = function () { + return this.unsigned || this.high >= 0; + }; + /** Tests if this Long's value equals zero. */ + Long.prototype.isZero = function () { + return this.high === 0 && this.low === 0; + }; + /** Tests if this Long's value is less than the specified's. */ + Long.prototype.lessThan = function (other) { + return this.comp(other) < 0; + }; + /** This is an alias of {@link Long#lessThan}. */ + Long.prototype.lt = function (other) { + return this.lessThan(other); + }; + /** Tests if this Long's value is less than or equal the specified's. */ + Long.prototype.lessThanOrEqual = function (other) { + return this.comp(other) <= 0; + }; + /** This is an alias of {@link Long.lessThanOrEqual} */ + Long.prototype.lte = function (other) { + return this.lessThanOrEqual(other); + }; + /** Returns this Long modulo the specified. */ + Long.prototype.modulo = function (divisor) { + if (!Long.isLong(divisor)) + divisor = Long.fromValue(divisor); + // use wasm support if present + if (wasm) { + var low = (this.unsigned ? wasm.rem_u : wasm.rem_s)(this.low, this.high, divisor.low, divisor.high); + return Long.fromBits(low, wasm.get_high(), this.unsigned); + } + return this.sub(this.div(divisor).mul(divisor)); + }; + /** This is an alias of {@link Long.modulo} */ + Long.prototype.mod = function (divisor) { + return this.modulo(divisor); + }; + /** This is an alias of {@link Long.modulo} */ + Long.prototype.rem = function (divisor) { + return this.modulo(divisor); + }; + /** + * Returns the product of this and the specified Long. + * @param multiplier - Multiplier + * @returns Product + */ + Long.prototype.multiply = function (multiplier) { + if (this.isZero()) + return Long.ZERO; + if (!Long.isLong(multiplier)) + multiplier = Long.fromValue(multiplier); + // use wasm support if present + if (wasm) { + var low = wasm.mul(this.low, this.high, multiplier.low, multiplier.high); + return Long.fromBits(low, wasm.get_high(), this.unsigned); + } + if (multiplier.isZero()) + return Long.ZERO; + if (this.eq(Long.MIN_VALUE)) + return multiplier.isOdd() ? Long.MIN_VALUE : Long.ZERO; + if (multiplier.eq(Long.MIN_VALUE)) + return this.isOdd() ? Long.MIN_VALUE : Long.ZERO; + if (this.isNegative()) { + if (multiplier.isNegative()) + return this.neg().mul(multiplier.neg()); + else + return this.neg().mul(multiplier).neg(); + } + else if (multiplier.isNegative()) + return this.mul(multiplier.neg()).neg(); + // If both longs are small, use float multiplication + if (this.lt(Long.TWO_PWR_24) && multiplier.lt(Long.TWO_PWR_24)) + return Long.fromNumber(this.toNumber() * multiplier.toNumber(), this.unsigned); + // Divide each long into 4 chunks of 16 bits, and then add up 4x4 products. + // We can skip products that would overflow. + var a48 = this.high >>> 16; + var a32 = this.high & 0xffff; + var a16 = this.low >>> 16; + var a00 = this.low & 0xffff; + var b48 = multiplier.high >>> 16; + var b32 = multiplier.high & 0xffff; + var b16 = multiplier.low >>> 16; + var b00 = multiplier.low & 0xffff; + var c48 = 0, c32 = 0, c16 = 0, c00 = 0; + c00 += a00 * b00; + c16 += c00 >>> 16; + c00 &= 0xffff; + c16 += a16 * b00; + c32 += c16 >>> 16; + c16 &= 0xffff; + c16 += a00 * b16; + c32 += c16 >>> 16; + c16 &= 0xffff; + c32 += a32 * b00; + c48 += c32 >>> 16; + c32 &= 0xffff; + c32 += a16 * b16; + c48 += c32 >>> 16; + c32 &= 0xffff; + c32 += a00 * b32; + c48 += c32 >>> 16; + c32 &= 0xffff; + c48 += a48 * b00 + a32 * b16 + a16 * b32 + a00 * b48; + c48 &= 0xffff; + return Long.fromBits((c16 << 16) | c00, (c48 << 16) | c32, this.unsigned); + }; + /** This is an alias of {@link Long.multiply} */ + Long.prototype.mul = function (multiplier) { + return this.multiply(multiplier); + }; + /** Returns the Negation of this Long's value. */ + Long.prototype.negate = function () { + if (!this.unsigned && this.eq(Long.MIN_VALUE)) + return Long.MIN_VALUE; + return this.not().add(Long.ONE); + }; + /** This is an alias of {@link Long.negate} */ + Long.prototype.neg = function () { + return this.negate(); + }; + /** Returns the bitwise NOT of this Long. */ + Long.prototype.not = function () { + return Long.fromBits(~this.low, ~this.high, this.unsigned); + }; + /** Tests if this Long's value differs from the specified's. */ + Long.prototype.notEquals = function (other) { + return !this.equals(other); + }; + /** This is an alias of {@link Long.notEquals} */ + Long.prototype.neq = function (other) { + return this.notEquals(other); + }; + /** This is an alias of {@link Long.notEquals} */ + Long.prototype.ne = function (other) { + return this.notEquals(other); + }; + /** + * Returns the bitwise OR of this Long and the specified. + */ + Long.prototype.or = function (other) { + if (!Long.isLong(other)) + other = Long.fromValue(other); + return Long.fromBits(this.low | other.low, this.high | other.high, this.unsigned); + }; + /** + * Returns this Long with bits shifted to the left by the given amount. + * @param numBits - Number of bits + * @returns Shifted Long + */ + Long.prototype.shiftLeft = function (numBits) { + if (Long.isLong(numBits)) + numBits = numBits.toInt(); + if ((numBits &= 63) === 0) + return this; + else if (numBits < 32) + return Long.fromBits(this.low << numBits, (this.high << numBits) | (this.low >>> (32 - numBits)), this.unsigned); + else + return Long.fromBits(0, this.low << (numBits - 32), this.unsigned); + }; + /** This is an alias of {@link Long.shiftLeft} */ + Long.prototype.shl = function (numBits) { + return this.shiftLeft(numBits); + }; + /** + * Returns this Long with bits arithmetically shifted to the right by the given amount. + * @param numBits - Number of bits + * @returns Shifted Long + */ + Long.prototype.shiftRight = function (numBits) { + if (Long.isLong(numBits)) + numBits = numBits.toInt(); + if ((numBits &= 63) === 0) + return this; + else if (numBits < 32) + return Long.fromBits((this.low >>> numBits) | (this.high << (32 - numBits)), this.high >> numBits, this.unsigned); + else + return Long.fromBits(this.high >> (numBits - 32), this.high >= 0 ? 0 : -1, this.unsigned); + }; + /** This is an alias of {@link Long.shiftRight} */ + Long.prototype.shr = function (numBits) { + return this.shiftRight(numBits); + }; + /** + * Returns this Long with bits logically shifted to the right by the given amount. + * @param numBits - Number of bits + * @returns Shifted Long + */ + Long.prototype.shiftRightUnsigned = function (numBits) { + if (Long.isLong(numBits)) + numBits = numBits.toInt(); + numBits &= 63; + if (numBits === 0) + return this; + else { + var high = this.high; + if (numBits < 32) { + var low = this.low; + return Long.fromBits((low >>> numBits) | (high << (32 - numBits)), high >>> numBits, this.unsigned); + } + else if (numBits === 32) + return Long.fromBits(high, 0, this.unsigned); + else + return Long.fromBits(high >>> (numBits - 32), 0, this.unsigned); + } + }; + /** This is an alias of {@link Long.shiftRightUnsigned} */ + Long.prototype.shr_u = function (numBits) { + return this.shiftRightUnsigned(numBits); + }; + /** This is an alias of {@link Long.shiftRightUnsigned} */ + Long.prototype.shru = function (numBits) { + return this.shiftRightUnsigned(numBits); + }; + /** + * Returns the difference of this and the specified Long. + * @param subtrahend - Subtrahend + * @returns Difference + */ + Long.prototype.subtract = function (subtrahend) { + if (!Long.isLong(subtrahend)) + subtrahend = Long.fromValue(subtrahend); + return this.add(subtrahend.neg()); + }; + /** This is an alias of {@link Long.subtract} */ + Long.prototype.sub = function (subtrahend) { + return this.subtract(subtrahend); + }; + /** Converts the Long to a 32 bit integer, assuming it is a 32 bit integer. */ + Long.prototype.toInt = function () { + return this.unsigned ? this.low >>> 0 : this.low; + }; + /** Converts the Long to a the nearest floating-point representation of this value (double, 53 bit mantissa). */ + Long.prototype.toNumber = function () { + if (this.unsigned) + return (this.high >>> 0) * TWO_PWR_32_DBL + (this.low >>> 0); + return this.high * TWO_PWR_32_DBL + (this.low >>> 0); + }; + /** Converts the Long to a BigInt (arbitrary precision). */ + Long.prototype.toBigInt = function () { + return BigInt(this.toString()); + }; + /** + * Converts this Long to its byte representation. + * @param le - Whether little or big endian, defaults to big endian + * @returns Byte representation + */ + Long.prototype.toBytes = function (le) { + return le ? this.toBytesLE() : this.toBytesBE(); + }; + /** + * Converts this Long to its little endian byte representation. + * @returns Little endian byte representation + */ + Long.prototype.toBytesLE = function () { + var hi = this.high, lo = this.low; + return [ + lo & 0xff, + (lo >>> 8) & 0xff, + (lo >>> 16) & 0xff, + lo >>> 24, + hi & 0xff, + (hi >>> 8) & 0xff, + (hi >>> 16) & 0xff, + hi >>> 24 + ]; + }; + /** + * Converts this Long to its big endian byte representation. + * @returns Big endian byte representation + */ + Long.prototype.toBytesBE = function () { + var hi = this.high, lo = this.low; + return [ + hi >>> 24, + (hi >>> 16) & 0xff, + (hi >>> 8) & 0xff, + hi & 0xff, + lo >>> 24, + (lo >>> 16) & 0xff, + (lo >>> 8) & 0xff, + lo & 0xff + ]; + }; + /** + * Converts this Long to signed. + */ + Long.prototype.toSigned = function () { + if (!this.unsigned) + return this; + return Long.fromBits(this.low, this.high, false); + }; + /** + * Converts the Long to a string written in the specified radix. + * @param radix - Radix (2-36), defaults to 10 + * @throws RangeError If `radix` is out of range + */ + Long.prototype.toString = function (radix) { + radix = radix || 10; + if (radix < 2 || 36 < radix) + throw RangeError('radix'); + if (this.isZero()) + return '0'; + if (this.isNegative()) { + // Unsigned Longs are never negative + if (this.eq(Long.MIN_VALUE)) { + // We need to change the Long value before it can be negated, so we remove + // the bottom-most digit in this base and then recurse to do the rest. + var radixLong = Long.fromNumber(radix), div = this.div(radixLong), rem1 = div.mul(radixLong).sub(this); + return div.toString(radix) + rem1.toInt().toString(radix); + } + else + return '-' + this.neg().toString(radix); + } + // Do several (6) digits each time through the loop, so as to + // minimize the calls to the very expensive emulated div. + var radixToPower = Long.fromNumber(Math.pow(radix, 6), this.unsigned); + // eslint-disable-next-line @typescript-eslint/no-this-alias + var rem = this; + var result = ''; + // eslint-disable-next-line no-constant-condition + while (true) { + var remDiv = rem.div(radixToPower); + var intval = rem.sub(remDiv.mul(radixToPower)).toInt() >>> 0; + var digits = intval.toString(radix); + rem = remDiv; + if (rem.isZero()) { + return digits + result; + } + else { + while (digits.length < 6) + digits = '0' + digits; + result = '' + digits + result; + } + } + }; + /** Converts this Long to unsigned. */ + Long.prototype.toUnsigned = function () { + if (this.unsigned) + return this; + return Long.fromBits(this.low, this.high, true); + }; + /** Returns the bitwise XOR of this Long and the given one. */ + Long.prototype.xor = function (other) { + if (!Long.isLong(other)) + other = Long.fromValue(other); + return Long.fromBits(this.low ^ other.low, this.high ^ other.high, this.unsigned); + }; + /** This is an alias of {@link Long.isZero} */ + Long.prototype.eqz = function () { + return this.isZero(); + }; + /** This is an alias of {@link Long.lessThanOrEqual} */ + Long.prototype.le = function (other) { + return this.lessThanOrEqual(other); + }; + /* + **************************************************************** + * BSON SPECIFIC ADDITIONS * + **************************************************************** + */ + Long.prototype.toExtendedJSON = function (options) { + if (options && options.relaxed) + return this.toNumber(); + return { $numberLong: this.toString() }; + }; + Long.fromExtendedJSON = function (doc, options) { + var result = Long.fromString(doc.$numberLong); + return options && options.relaxed ? result.toNumber() : result; + }; + /** @internal */ + Long.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () { + return this.inspect(); + }; + Long.prototype.inspect = function () { + return "new Long(\"".concat(this.toString(), "\"").concat(this.unsigned ? ', true' : '', ")"); + }; + Long.TWO_PWR_24 = Long.fromInt(TWO_PWR_24_DBL); + /** Maximum unsigned value. */ + Long.MAX_UNSIGNED_VALUE = Long.fromBits(0xffffffff | 0, 0xffffffff | 0, true); + /** Signed zero */ + Long.ZERO = Long.fromInt(0); + /** Unsigned zero. */ + Long.UZERO = Long.fromInt(0, true); + /** Signed one. */ + Long.ONE = Long.fromInt(1); + /** Unsigned one. */ + Long.UONE = Long.fromInt(1, true); + /** Signed negative one. */ + Long.NEG_ONE = Long.fromInt(-1); + /** Maximum signed value. */ + Long.MAX_VALUE = Long.fromBits(0xffffffff | 0, 0x7fffffff | 0, false); + /** Minimum signed value. */ + Long.MIN_VALUE = Long.fromBits(0, 0x80000000 | 0, false); + return Long; +}()); +Object.defineProperty(Long.prototype, '__isLong__', { value: true }); +Object.defineProperty(Long.prototype, '_bsontype', { value: 'Long' }); + +var PARSE_STRING_REGEXP = /^(\+|-)?(\d+|(\d*\.\d*))?(E|e)?([-+])?(\d+)?$/; +var PARSE_INF_REGEXP = /^(\+|-)?(Infinity|inf)$/i; +var PARSE_NAN_REGEXP = /^(\+|-)?NaN$/i; +var EXPONENT_MAX = 6111; +var EXPONENT_MIN = -6176; +var EXPONENT_BIAS = 6176; +var MAX_DIGITS = 34; +// Nan value bits as 32 bit values (due to lack of longs) +var NAN_BUFFER = [ + 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 +].reverse(); +// Infinity value bits 32 bit values (due to lack of longs) +var INF_NEGATIVE_BUFFER = [ + 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 +].reverse(); +var INF_POSITIVE_BUFFER = [ + 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 +].reverse(); +var EXPONENT_REGEX = /^([-+])?(\d+)?$/; +// Extract least significant 5 bits +var COMBINATION_MASK = 0x1f; +// Extract least significant 14 bits +var EXPONENT_MASK = 0x3fff; +// Value of combination field for Inf +var COMBINATION_INFINITY = 30; +// Value of combination field for NaN +var COMBINATION_NAN = 31; +// Detect if the value is a digit +function isDigit(value) { + return !isNaN(parseInt(value, 10)); +} +// Divide two uint128 values +function divideu128(value) { + var DIVISOR = Long.fromNumber(1000 * 1000 * 1000); + var _rem = Long.fromNumber(0); + if (!value.parts[0] && !value.parts[1] && !value.parts[2] && !value.parts[3]) { + return { quotient: value, rem: _rem }; + } + for (var i = 0; i <= 3; i++) { + // Adjust remainder to match value of next dividend + _rem = _rem.shiftLeft(32); + // Add the divided to _rem + _rem = _rem.add(new Long(value.parts[i], 0)); + value.parts[i] = _rem.div(DIVISOR).low; + _rem = _rem.modulo(DIVISOR); + } + return { quotient: value, rem: _rem }; +} +// Multiply two Long values and return the 128 bit value +function multiply64x2(left, right) { + if (!left && !right) { + return { high: Long.fromNumber(0), low: Long.fromNumber(0) }; + } + var leftHigh = left.shiftRightUnsigned(32); + var leftLow = new Long(left.getLowBits(), 0); + var rightHigh = right.shiftRightUnsigned(32); + var rightLow = new Long(right.getLowBits(), 0); + var productHigh = leftHigh.multiply(rightHigh); + var productMid = leftHigh.multiply(rightLow); + var productMid2 = leftLow.multiply(rightHigh); + var productLow = leftLow.multiply(rightLow); + productHigh = productHigh.add(productMid.shiftRightUnsigned(32)); + productMid = new Long(productMid.getLowBits(), 0) + .add(productMid2) + .add(productLow.shiftRightUnsigned(32)); + productHigh = productHigh.add(productMid.shiftRightUnsigned(32)); + productLow = productMid.shiftLeft(32).add(new Long(productLow.getLowBits(), 0)); + // Return the 128 bit result + return { high: productHigh, low: productLow }; +} +function lessThan(left, right) { + // Make values unsigned + var uhleft = left.high >>> 0; + var uhright = right.high >>> 0; + // Compare high bits first + if (uhleft < uhright) { + return true; + } + else if (uhleft === uhright) { + var ulleft = left.low >>> 0; + var ulright = right.low >>> 0; + if (ulleft < ulright) + return true; + } + return false; +} +function invalidErr(string, message) { + throw new BSONTypeError("\"".concat(string, "\" is not a valid Decimal128 string - ").concat(message)); +} +/** + * A class representation of the BSON Decimal128 type. + * @public + * @category BSONType + */ +var Decimal128 = /** @class */ (function () { + /** + * @param bytes - a buffer containing the raw Decimal128 bytes in little endian order, + * or a string representation as returned by .toString() + */ + function Decimal128(bytes) { + if (!(this instanceof Decimal128)) + return new Decimal128(bytes); + if (typeof bytes === 'string') { + this.bytes = Decimal128.fromString(bytes).bytes; + } + else if (isUint8Array(bytes)) { + if (bytes.byteLength !== 16) { + throw new BSONTypeError('Decimal128 must take a Buffer of 16 bytes'); + } + this.bytes = bytes; + } + else { + throw new BSONTypeError('Decimal128 must take a Buffer or string'); + } + } + /** + * Create a Decimal128 instance from a string representation + * + * @param representation - a numeric string representation. + */ + Decimal128.fromString = function (representation) { + // Parse state tracking + var isNegative = false; + var sawRadix = false; + var foundNonZero = false; + // Total number of significant digits (no leading or trailing zero) + var significantDigits = 0; + // Total number of significand digits read + var nDigitsRead = 0; + // Total number of digits (no leading zeros) + var nDigits = 0; + // The number of the digits after radix + var radixPosition = 0; + // The index of the first non-zero in *str* + var firstNonZero = 0; + // Digits Array + var digits = [0]; + // The number of digits in digits + var nDigitsStored = 0; + // Insertion pointer for digits + var digitsInsert = 0; + // The index of the first non-zero digit + var firstDigit = 0; + // The index of the last digit + var lastDigit = 0; + // Exponent + var exponent = 0; + // loop index over array + var i = 0; + // The high 17 digits of the significand + var significandHigh = new Long(0, 0); + // The low 17 digits of the significand + var significandLow = new Long(0, 0); + // The biased exponent + var biasedExponent = 0; + // Read index + var index = 0; + // Naively prevent against REDOS attacks. + // TODO: implementing a custom parsing for this, or refactoring the regex would yield + // further gains. + if (representation.length >= 7000) { + throw new BSONTypeError('' + representation + ' not a valid Decimal128 string'); + } + // Results + var stringMatch = representation.match(PARSE_STRING_REGEXP); + var infMatch = representation.match(PARSE_INF_REGEXP); + var nanMatch = representation.match(PARSE_NAN_REGEXP); + // Validate the string + if ((!stringMatch && !infMatch && !nanMatch) || representation.length === 0) { + throw new BSONTypeError('' + representation + ' not a valid Decimal128 string'); + } + if (stringMatch) { + // full_match = stringMatch[0] + // sign = stringMatch[1] + var unsignedNumber = stringMatch[2]; + // stringMatch[3] is undefined if a whole number (ex "1", 12") + // but defined if a number w/ decimal in it (ex "1.0, 12.2") + var e = stringMatch[4]; + var expSign = stringMatch[5]; + var expNumber = stringMatch[6]; + // they provided e, but didn't give an exponent number. for ex "1e" + if (e && expNumber === undefined) + invalidErr(representation, 'missing exponent power'); + // they provided e, but didn't give a number before it. for ex "e1" + if (e && unsignedNumber === undefined) + invalidErr(representation, 'missing exponent base'); + if (e === undefined && (expSign || expNumber)) { + invalidErr(representation, 'missing e before exponent'); + } + } + // Get the negative or positive sign + if (representation[index] === '+' || representation[index] === '-') { + isNegative = representation[index++] === '-'; + } + // Check if user passed Infinity or NaN + if (!isDigit(representation[index]) && representation[index] !== '.') { + if (representation[index] === 'i' || representation[index] === 'I') { + return new Decimal128(buffer_1.from(isNegative ? INF_NEGATIVE_BUFFER : INF_POSITIVE_BUFFER)); + } + else if (representation[index] === 'N') { + return new Decimal128(buffer_1.from(NAN_BUFFER)); + } + } + // Read all the digits + while (isDigit(representation[index]) || representation[index] === '.') { + if (representation[index] === '.') { + if (sawRadix) + invalidErr(representation, 'contains multiple periods'); + sawRadix = true; + index = index + 1; + continue; + } + if (nDigitsStored < 34) { + if (representation[index] !== '0' || foundNonZero) { + if (!foundNonZero) { + firstNonZero = nDigitsRead; + } + foundNonZero = true; + // Only store 34 digits + digits[digitsInsert++] = parseInt(representation[index], 10); + nDigitsStored = nDigitsStored + 1; + } + } + if (foundNonZero) + nDigits = nDigits + 1; + if (sawRadix) + radixPosition = radixPosition + 1; + nDigitsRead = nDigitsRead + 1; + index = index + 1; + } + if (sawRadix && !nDigitsRead) + throw new BSONTypeError('' + representation + ' not a valid Decimal128 string'); + // Read exponent if exists + if (representation[index] === 'e' || representation[index] === 'E') { + // Read exponent digits + var match = representation.substr(++index).match(EXPONENT_REGEX); + // No digits read + if (!match || !match[2]) + return new Decimal128(buffer_1.from(NAN_BUFFER)); + // Get exponent + exponent = parseInt(match[0], 10); + // Adjust the index + index = index + match[0].length; + } + // Return not a number + if (representation[index]) + return new Decimal128(buffer_1.from(NAN_BUFFER)); + // Done reading input + // Find first non-zero digit in digits + firstDigit = 0; + if (!nDigitsStored) { + firstDigit = 0; + lastDigit = 0; + digits[0] = 0; + nDigits = 1; + nDigitsStored = 1; + significantDigits = 0; + } + else { + lastDigit = nDigitsStored - 1; + significantDigits = nDigits; + if (significantDigits !== 1) { + while (digits[firstNonZero + significantDigits - 1] === 0) { + significantDigits = significantDigits - 1; + } + } + } + // Normalization of exponent + // Correct exponent based on radix position, and shift significand as needed + // to represent user input + // Overflow prevention + if (exponent <= radixPosition && radixPosition - exponent > 1 << 14) { + exponent = EXPONENT_MIN; + } + else { + exponent = exponent - radixPosition; + } + // Attempt to normalize the exponent + while (exponent > EXPONENT_MAX) { + // Shift exponent to significand and decrease + lastDigit = lastDigit + 1; + if (lastDigit - firstDigit > MAX_DIGITS) { + // Check if we have a zero then just hard clamp, otherwise fail + var digitsString = digits.join(''); + if (digitsString.match(/^0+$/)) { + exponent = EXPONENT_MAX; + break; + } + invalidErr(representation, 'overflow'); + } + exponent = exponent - 1; + } + while (exponent < EXPONENT_MIN || nDigitsStored < nDigits) { + // Shift last digit. can only do this if < significant digits than # stored. + if (lastDigit === 0 && significantDigits < nDigitsStored) { + exponent = EXPONENT_MIN; + significantDigits = 0; + break; + } + if (nDigitsStored < nDigits) { + // adjust to match digits not stored + nDigits = nDigits - 1; + } + else { + // adjust to round + lastDigit = lastDigit - 1; + } + if (exponent < EXPONENT_MAX) { + exponent = exponent + 1; + } + else { + // Check if we have a zero then just hard clamp, otherwise fail + var digitsString = digits.join(''); + if (digitsString.match(/^0+$/)) { + exponent = EXPONENT_MAX; + break; + } + invalidErr(representation, 'overflow'); + } + } + // Round + // We've normalized the exponent, but might still need to round. + if (lastDigit - firstDigit + 1 < significantDigits) { + var endOfString = nDigitsRead; + // If we have seen a radix point, 'string' is 1 longer than we have + // documented with ndigits_read, so inc the position of the first nonzero + // digit and the position that digits are read to. + if (sawRadix) { + firstNonZero = firstNonZero + 1; + endOfString = endOfString + 1; + } + // if negative, we need to increment again to account for - sign at start. + if (isNegative) { + firstNonZero = firstNonZero + 1; + endOfString = endOfString + 1; + } + var roundDigit = parseInt(representation[firstNonZero + lastDigit + 1], 10); + var roundBit = 0; + if (roundDigit >= 5) { + roundBit = 1; + if (roundDigit === 5) { + roundBit = digits[lastDigit] % 2 === 1 ? 1 : 0; + for (i = firstNonZero + lastDigit + 2; i < endOfString; i++) { + if (parseInt(representation[i], 10)) { + roundBit = 1; + break; + } + } + } + } + if (roundBit) { + var dIdx = lastDigit; + for (; dIdx >= 0; dIdx--) { + if (++digits[dIdx] > 9) { + digits[dIdx] = 0; + // overflowed most significant digit + if (dIdx === 0) { + if (exponent < EXPONENT_MAX) { + exponent = exponent + 1; + digits[dIdx] = 1; + } + else { + return new Decimal128(buffer_1.from(isNegative ? INF_NEGATIVE_BUFFER : INF_POSITIVE_BUFFER)); + } + } + } + } + } + } + // Encode significand + // The high 17 digits of the significand + significandHigh = Long.fromNumber(0); + // The low 17 digits of the significand + significandLow = Long.fromNumber(0); + // read a zero + if (significantDigits === 0) { + significandHigh = Long.fromNumber(0); + significandLow = Long.fromNumber(0); + } + else if (lastDigit - firstDigit < 17) { + var dIdx = firstDigit; + significandLow = Long.fromNumber(digits[dIdx++]); + significandHigh = new Long(0, 0); + for (; dIdx <= lastDigit; dIdx++) { + significandLow = significandLow.multiply(Long.fromNumber(10)); + significandLow = significandLow.add(Long.fromNumber(digits[dIdx])); + } + } + else { + var dIdx = firstDigit; + significandHigh = Long.fromNumber(digits[dIdx++]); + for (; dIdx <= lastDigit - 17; dIdx++) { + significandHigh = significandHigh.multiply(Long.fromNumber(10)); + significandHigh = significandHigh.add(Long.fromNumber(digits[dIdx])); + } + significandLow = Long.fromNumber(digits[dIdx++]); + for (; dIdx <= lastDigit; dIdx++) { + significandLow = significandLow.multiply(Long.fromNumber(10)); + significandLow = significandLow.add(Long.fromNumber(digits[dIdx])); + } + } + var significand = multiply64x2(significandHigh, Long.fromString('100000000000000000')); + significand.low = significand.low.add(significandLow); + if (lessThan(significand.low, significandLow)) { + significand.high = significand.high.add(Long.fromNumber(1)); + } + // Biased exponent + biasedExponent = exponent + EXPONENT_BIAS; + var dec = { low: Long.fromNumber(0), high: Long.fromNumber(0) }; + // Encode combination, exponent, and significand. + if (significand.high.shiftRightUnsigned(49).and(Long.fromNumber(1)).equals(Long.fromNumber(1))) { + // Encode '11' into bits 1 to 3 + dec.high = dec.high.or(Long.fromNumber(0x3).shiftLeft(61)); + dec.high = dec.high.or(Long.fromNumber(biasedExponent).and(Long.fromNumber(0x3fff).shiftLeft(47))); + dec.high = dec.high.or(significand.high.and(Long.fromNumber(0x7fffffffffff))); + } + else { + dec.high = dec.high.or(Long.fromNumber(biasedExponent & 0x3fff).shiftLeft(49)); + dec.high = dec.high.or(significand.high.and(Long.fromNumber(0x1ffffffffffff))); + } + dec.low = significand.low; + // Encode sign + if (isNegative) { + dec.high = dec.high.or(Long.fromString('9223372036854775808')); + } + // Encode into a buffer + var buffer = buffer_1.alloc(16); + index = 0; + // Encode the low 64 bits of the decimal + // Encode low bits + buffer[index++] = dec.low.low & 0xff; + buffer[index++] = (dec.low.low >> 8) & 0xff; + buffer[index++] = (dec.low.low >> 16) & 0xff; + buffer[index++] = (dec.low.low >> 24) & 0xff; + // Encode high bits + buffer[index++] = dec.low.high & 0xff; + buffer[index++] = (dec.low.high >> 8) & 0xff; + buffer[index++] = (dec.low.high >> 16) & 0xff; + buffer[index++] = (dec.low.high >> 24) & 0xff; + // Encode the high 64 bits of the decimal + // Encode low bits + buffer[index++] = dec.high.low & 0xff; + buffer[index++] = (dec.high.low >> 8) & 0xff; + buffer[index++] = (dec.high.low >> 16) & 0xff; + buffer[index++] = (dec.high.low >> 24) & 0xff; + // Encode high bits + buffer[index++] = dec.high.high & 0xff; + buffer[index++] = (dec.high.high >> 8) & 0xff; + buffer[index++] = (dec.high.high >> 16) & 0xff; + buffer[index++] = (dec.high.high >> 24) & 0xff; + // Return the new Decimal128 + return new Decimal128(buffer); + }; + /** Create a string representation of the raw Decimal128 value */ + Decimal128.prototype.toString = function () { + // Note: bits in this routine are referred to starting at 0, + // from the sign bit, towards the coefficient. + // decoded biased exponent (14 bits) + var biased_exponent; + // the number of significand digits + var significand_digits = 0; + // the base-10 digits in the significand + var significand = new Array(36); + for (var i = 0; i < significand.length; i++) + significand[i] = 0; + // read pointer into significand + var index = 0; + // true if the number is zero + var is_zero = false; + // the most significant significand bits (50-46) + var significand_msb; + // temporary storage for significand decoding + var significand128 = { parts: [0, 0, 0, 0] }; + // indexing variables + var j, k; + // Output string + var string = []; + // Unpack index + index = 0; + // Buffer reference + var buffer = this.bytes; + // Unpack the low 64bits into a long + // bits 96 - 127 + var low = buffer[index++] | (buffer[index++] << 8) | (buffer[index++] << 16) | (buffer[index++] << 24); + // bits 64 - 95 + var midl = buffer[index++] | (buffer[index++] << 8) | (buffer[index++] << 16) | (buffer[index++] << 24); + // Unpack the high 64bits into a long + // bits 32 - 63 + var midh = buffer[index++] | (buffer[index++] << 8) | (buffer[index++] << 16) | (buffer[index++] << 24); + // bits 0 - 31 + var high = buffer[index++] | (buffer[index++] << 8) | (buffer[index++] << 16) | (buffer[index++] << 24); + // Unpack index + index = 0; + // Create the state of the decimal + var dec = { + low: new Long(low, midl), + high: new Long(midh, high) + }; + if (dec.high.lessThan(Long.ZERO)) { + string.push('-'); + } + // Decode combination field and exponent + // bits 1 - 5 + var combination = (high >> 26) & COMBINATION_MASK; + if (combination >> 3 === 3) { + // Check for 'special' values + if (combination === COMBINATION_INFINITY) { + return string.join('') + 'Infinity'; + } + else if (combination === COMBINATION_NAN) { + return 'NaN'; + } + else { + biased_exponent = (high >> 15) & EXPONENT_MASK; + significand_msb = 0x08 + ((high >> 14) & 0x01); + } + } + else { + significand_msb = (high >> 14) & 0x07; + biased_exponent = (high >> 17) & EXPONENT_MASK; + } + // unbiased exponent + var exponent = biased_exponent - EXPONENT_BIAS; + // Create string of significand digits + // Convert the 114-bit binary number represented by + // (significand_high, significand_low) to at most 34 decimal + // digits through modulo and division. + significand128.parts[0] = (high & 0x3fff) + ((significand_msb & 0xf) << 14); + significand128.parts[1] = midh; + significand128.parts[2] = midl; + significand128.parts[3] = low; + if (significand128.parts[0] === 0 && + significand128.parts[1] === 0 && + significand128.parts[2] === 0 && + significand128.parts[3] === 0) { + is_zero = true; + } + else { + for (k = 3; k >= 0; k--) { + var least_digits = 0; + // Perform the divide + var result = divideu128(significand128); + significand128 = result.quotient; + least_digits = result.rem.low; + // We now have the 9 least significant digits (in base 2). + // Convert and output to string. + if (!least_digits) + continue; + for (j = 8; j >= 0; j--) { + // significand[k * 9 + j] = Math.round(least_digits % 10); + significand[k * 9 + j] = least_digits % 10; + // least_digits = Math.round(least_digits / 10); + least_digits = Math.floor(least_digits / 10); + } + } + } + // Output format options: + // Scientific - [-]d.dddE(+/-)dd or [-]dE(+/-)dd + // Regular - ddd.ddd + if (is_zero) { + significand_digits = 1; + significand[index] = 0; + } + else { + significand_digits = 36; + while (!significand[index]) { + significand_digits = significand_digits - 1; + index = index + 1; + } + } + // the exponent if scientific notation is used + var scientific_exponent = significand_digits - 1 + exponent; + // The scientific exponent checks are dictated by the string conversion + // specification and are somewhat arbitrary cutoffs. + // + // We must check exponent > 0, because if this is the case, the number + // has trailing zeros. However, we *cannot* output these trailing zeros, + // because doing so would change the precision of the value, and would + // change stored data if the string converted number is round tripped. + if (scientific_exponent >= 34 || scientific_exponent <= -7 || exponent > 0) { + // Scientific format + // if there are too many significant digits, we should just be treating numbers + // as + or - 0 and using the non-scientific exponent (this is for the "invalid + // representation should be treated as 0/-0" spec cases in decimal128-1.json) + if (significand_digits > 34) { + string.push("".concat(0)); + if (exponent > 0) + string.push("E+".concat(exponent)); + else if (exponent < 0) + string.push("E".concat(exponent)); + return string.join(''); + } + string.push("".concat(significand[index++])); + significand_digits = significand_digits - 1; + if (significand_digits) { + string.push('.'); + } + for (var i = 0; i < significand_digits; i++) { + string.push("".concat(significand[index++])); + } + // Exponent + string.push('E'); + if (scientific_exponent > 0) { + string.push("+".concat(scientific_exponent)); + } + else { + string.push("".concat(scientific_exponent)); + } + } + else { + // Regular format with no decimal place + if (exponent >= 0) { + for (var i = 0; i < significand_digits; i++) { + string.push("".concat(significand[index++])); + } + } + else { + var radix_position = significand_digits + exponent; + // non-zero digits before radix + if (radix_position > 0) { + for (var i = 0; i < radix_position; i++) { + string.push("".concat(significand[index++])); + } + } + else { + string.push('0'); + } + string.push('.'); + // add leading zeros after radix + while (radix_position++ < 0) { + string.push('0'); + } + for (var i = 0; i < significand_digits - Math.max(radix_position - 1, 0); i++) { + string.push("".concat(significand[index++])); + } + } + } + return string.join(''); + }; + Decimal128.prototype.toJSON = function () { + return { $numberDecimal: this.toString() }; + }; + /** @internal */ + Decimal128.prototype.toExtendedJSON = function () { + return { $numberDecimal: this.toString() }; + }; + /** @internal */ + Decimal128.fromExtendedJSON = function (doc) { + return Decimal128.fromString(doc.$numberDecimal); + }; + /** @internal */ + Decimal128.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () { + return this.inspect(); + }; + Decimal128.prototype.inspect = function () { + return "new Decimal128(\"".concat(this.toString(), "\")"); + }; + return Decimal128; +}()); +Object.defineProperty(Decimal128.prototype, '_bsontype', { value: 'Decimal128' }); + +/** + * A class representation of the BSON Double type. + * @public + * @category BSONType + */ +var Double = /** @class */ (function () { + /** + * Create a Double type + * + * @param value - the number we want to represent as a double. + */ + function Double(value) { + if (!(this instanceof Double)) + return new Double(value); + if (value instanceof Number) { + value = value.valueOf(); + } + this.value = +value; + } + /** + * Access the number value. + * + * @returns returns the wrapped double number. + */ + Double.prototype.valueOf = function () { + return this.value; + }; + Double.prototype.toJSON = function () { + return this.value; + }; + Double.prototype.toString = function (radix) { + return this.value.toString(radix); + }; + /** @internal */ + Double.prototype.toExtendedJSON = function (options) { + if (options && (options.legacy || (options.relaxed && isFinite(this.value)))) { + return this.value; + } + // NOTE: JavaScript has +0 and -0, apparently to model limit calculations. If a user + // explicitly provided `-0` then we need to ensure the sign makes it into the output + if (Object.is(Math.sign(this.value), -0)) { + return { $numberDouble: "-".concat(this.value.toFixed(1)) }; + } + var $numberDouble; + if (Number.isInteger(this.value)) { + $numberDouble = this.value.toFixed(1); + if ($numberDouble.length >= 13) { + $numberDouble = this.value.toExponential(13).toUpperCase(); + } + } + else { + $numberDouble = this.value.toString(); + } + return { $numberDouble: $numberDouble }; + }; + /** @internal */ + Double.fromExtendedJSON = function (doc, options) { + var doubleValue = parseFloat(doc.$numberDouble); + return options && options.relaxed ? doubleValue : new Double(doubleValue); + }; + /** @internal */ + Double.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () { + return this.inspect(); + }; + Double.prototype.inspect = function () { + var eJSON = this.toExtendedJSON(); + return "new Double(".concat(eJSON.$numberDouble, ")"); + }; + return Double; +}()); +Object.defineProperty(Double.prototype, '_bsontype', { value: 'Double' }); + +/** + * A class representation of a BSON Int32 type. + * @public + * @category BSONType + */ +var Int32 = /** @class */ (function () { + /** + * Create an Int32 type + * + * @param value - the number we want to represent as an int32. + */ + function Int32(value) { + if (!(this instanceof Int32)) + return new Int32(value); + if (value instanceof Number) { + value = value.valueOf(); + } + this.value = +value | 0; + } + /** + * Access the number value. + * + * @returns returns the wrapped int32 number. + */ + Int32.prototype.valueOf = function () { + return this.value; + }; + Int32.prototype.toString = function (radix) { + return this.value.toString(radix); + }; + Int32.prototype.toJSON = function () { + return this.value; + }; + /** @internal */ + Int32.prototype.toExtendedJSON = function (options) { + if (options && (options.relaxed || options.legacy)) + return this.value; + return { $numberInt: this.value.toString() }; + }; + /** @internal */ + Int32.fromExtendedJSON = function (doc, options) { + return options && options.relaxed ? parseInt(doc.$numberInt, 10) : new Int32(doc.$numberInt); + }; + /** @internal */ + Int32.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () { + return this.inspect(); + }; + Int32.prototype.inspect = function () { + return "new Int32(".concat(this.valueOf(), ")"); + }; + return Int32; +}()); +Object.defineProperty(Int32.prototype, '_bsontype', { value: 'Int32' }); + +/** + * A class representation of the BSON MaxKey type. + * @public + * @category BSONType + */ +var MaxKey = /** @class */ (function () { + function MaxKey() { + if (!(this instanceof MaxKey)) + return new MaxKey(); + } + /** @internal */ + MaxKey.prototype.toExtendedJSON = function () { + return { $maxKey: 1 }; + }; + /** @internal */ + MaxKey.fromExtendedJSON = function () { + return new MaxKey(); + }; + /** @internal */ + MaxKey.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () { + return this.inspect(); + }; + MaxKey.prototype.inspect = function () { + return 'new MaxKey()'; + }; + return MaxKey; +}()); +Object.defineProperty(MaxKey.prototype, '_bsontype', { value: 'MaxKey' }); + +/** + * A class representation of the BSON MinKey type. + * @public + * @category BSONType + */ +var MinKey = /** @class */ (function () { + function MinKey() { + if (!(this instanceof MinKey)) + return new MinKey(); + } + /** @internal */ + MinKey.prototype.toExtendedJSON = function () { + return { $minKey: 1 }; + }; + /** @internal */ + MinKey.fromExtendedJSON = function () { + return new MinKey(); + }; + /** @internal */ + MinKey.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () { + return this.inspect(); + }; + MinKey.prototype.inspect = function () { + return 'new MinKey()'; + }; + return MinKey; +}()); +Object.defineProperty(MinKey.prototype, '_bsontype', { value: 'MinKey' }); + +// Regular expression that checks for hex value +var checkForHexRegExp = new RegExp('^[0-9a-fA-F]{24}$'); +// Unique sequence for the current process (initialized on first use) +var PROCESS_UNIQUE = null; +var kId = Symbol('id'); +/** + * A class representation of the BSON ObjectId type. + * @public + * @category BSONType + */ +var ObjectId = /** @class */ (function () { + /** + * Create an ObjectId type + * + * @param inputId - Can be a 24 character hex string, 12 byte binary Buffer, or a number. + */ + function ObjectId(inputId) { + if (!(this instanceof ObjectId)) + return new ObjectId(inputId); + // workingId is set based on type of input and whether valid id exists for the input + var workingId; + if (typeof inputId === 'object' && inputId && 'id' in inputId) { + if (typeof inputId.id !== 'string' && !ArrayBuffer.isView(inputId.id)) { + throw new BSONTypeError('Argument passed in must have an id that is of type string or Buffer'); + } + if ('toHexString' in inputId && typeof inputId.toHexString === 'function') { + workingId = buffer_1.from(inputId.toHexString(), 'hex'); + } + else { + workingId = inputId.id; + } + } + else { + workingId = inputId; + } + // the following cases use workingId to construct an ObjectId + if (workingId == null || typeof workingId === 'number') { + // The most common use case (blank id, new objectId instance) + // Generate a new id + this[kId] = ObjectId.generate(typeof workingId === 'number' ? workingId : undefined); + } + else if (ArrayBuffer.isView(workingId) && workingId.byteLength === 12) { + // If intstanceof matches we can escape calling ensure buffer in Node.js environments + this[kId] = workingId instanceof buffer_1 ? workingId : ensureBuffer(workingId); + } + else if (typeof workingId === 'string') { + if (workingId.length === 12) { + var bytes = buffer_1.from(workingId); + if (bytes.byteLength === 12) { + this[kId] = bytes; + } + else { + throw new BSONTypeError('Argument passed in must be a string of 12 bytes'); + } + } + else if (workingId.length === 24 && checkForHexRegExp.test(workingId)) { + this[kId] = buffer_1.from(workingId, 'hex'); + } + else { + throw new BSONTypeError('Argument passed in must be a string of 12 bytes or a string of 24 hex characters or an integer'); + } + } + else { + throw new BSONTypeError('Argument passed in does not match the accepted types'); + } + // If we are caching the hex string + if (ObjectId.cacheHexString) { + this.__id = this.id.toString('hex'); + } + } + Object.defineProperty(ObjectId.prototype, "id", { + /** + * The ObjectId bytes + * @readonly + */ + get: function () { + return this[kId]; + }, + set: function (value) { + this[kId] = value; + if (ObjectId.cacheHexString) { + this.__id = value.toString('hex'); + } + }, + enumerable: false, + configurable: true + }); + Object.defineProperty(ObjectId.prototype, "generationTime", { + /** + * The generation time of this ObjectId instance + * @deprecated Please use getTimestamp / createFromTime which returns an int32 epoch + */ + get: function () { + return this.id.readInt32BE(0); + }, + set: function (value) { + // Encode time into first 4 bytes + this.id.writeUInt32BE(value, 0); + }, + enumerable: false, + configurable: true + }); + /** Returns the ObjectId id as a 24 character hex string representation */ + ObjectId.prototype.toHexString = function () { + if (ObjectId.cacheHexString && this.__id) { + return this.__id; + } + var hexString = this.id.toString('hex'); + if (ObjectId.cacheHexString && !this.__id) { + this.__id = hexString; + } + return hexString; + }; + /** + * Update the ObjectId index + * @privateRemarks + * Used in generating new ObjectId's on the driver + * @internal + */ + ObjectId.getInc = function () { + return (ObjectId.index = (ObjectId.index + 1) % 0xffffff); + }; + /** + * Generate a 12 byte id buffer used in ObjectId's + * + * @param time - pass in a second based timestamp. + */ + ObjectId.generate = function (time) { + if ('number' !== typeof time) { + time = Math.floor(Date.now() / 1000); + } + var inc = ObjectId.getInc(); + var buffer = buffer_1.alloc(12); + // 4-byte timestamp + buffer.writeUInt32BE(time, 0); + // set PROCESS_UNIQUE if yet not initialized + if (PROCESS_UNIQUE === null) { + PROCESS_UNIQUE = randomBytes(5); + } + // 5-byte process unique + buffer[4] = PROCESS_UNIQUE[0]; + buffer[5] = PROCESS_UNIQUE[1]; + buffer[6] = PROCESS_UNIQUE[2]; + buffer[7] = PROCESS_UNIQUE[3]; + buffer[8] = PROCESS_UNIQUE[4]; + // 3-byte counter + buffer[11] = inc & 0xff; + buffer[10] = (inc >> 8) & 0xff; + buffer[9] = (inc >> 16) & 0xff; + return buffer; + }; + /** + * Converts the id into a 24 character hex string for printing + * + * @param format - The Buffer toString format parameter. + */ + ObjectId.prototype.toString = function (format) { + // Is the id a buffer then use the buffer toString method to return the format + if (format) + return this.id.toString(format); + return this.toHexString(); + }; + /** Converts to its JSON the 24 character hex string representation. */ + ObjectId.prototype.toJSON = function () { + return this.toHexString(); + }; + /** + * Compares the equality of this ObjectId with `otherID`. + * + * @param otherId - ObjectId instance to compare against. + */ + ObjectId.prototype.equals = function (otherId) { + if (otherId === undefined || otherId === null) { + return false; + } + if (otherId instanceof ObjectId) { + return this[kId][11] === otherId[kId][11] && this[kId].equals(otherId[kId]); + } + if (typeof otherId === 'string' && + ObjectId.isValid(otherId) && + otherId.length === 12 && + isUint8Array(this.id)) { + return otherId === buffer_1.prototype.toString.call(this.id, 'latin1'); + } + if (typeof otherId === 'string' && ObjectId.isValid(otherId) && otherId.length === 24) { + return otherId.toLowerCase() === this.toHexString(); + } + if (typeof otherId === 'string' && ObjectId.isValid(otherId) && otherId.length === 12) { + return buffer_1.from(otherId).equals(this.id); + } + if (typeof otherId === 'object' && + 'toHexString' in otherId && + typeof otherId.toHexString === 'function') { + var otherIdString = otherId.toHexString(); + var thisIdString = this.toHexString().toLowerCase(); + return typeof otherIdString === 'string' && otherIdString.toLowerCase() === thisIdString; + } + return false; + }; + /** Returns the generation date (accurate up to the second) that this ID was generated. */ + ObjectId.prototype.getTimestamp = function () { + var timestamp = new Date(); + var time = this.id.readUInt32BE(0); + timestamp.setTime(Math.floor(time) * 1000); + return timestamp; + }; + /** @internal */ + ObjectId.createPk = function () { + return new ObjectId(); + }; + /** + * Creates an ObjectId from a second based number, with the rest of the ObjectId zeroed out. Used for comparisons or sorting the ObjectId. + * + * @param time - an integer number representing a number of seconds. + */ + ObjectId.createFromTime = function (time) { + var buffer = buffer_1.from([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]); + // Encode time into first 4 bytes + buffer.writeUInt32BE(time, 0); + // Return the new objectId + return new ObjectId(buffer); + }; + /** + * Creates an ObjectId from a hex string representation of an ObjectId. + * + * @param hexString - create a ObjectId from a passed in 24 character hexstring. + */ + ObjectId.createFromHexString = function (hexString) { + // Throw an error if it's not a valid setup + if (typeof hexString === 'undefined' || (hexString != null && hexString.length !== 24)) { + throw new BSONTypeError('Argument passed in must be a single String of 12 bytes or a string of 24 hex characters'); + } + return new ObjectId(buffer_1.from(hexString, 'hex')); + }; + /** + * Checks if a value is a valid bson ObjectId + * + * @param id - ObjectId instance to validate. + */ + ObjectId.isValid = function (id) { + if (id == null) + return false; + try { + new ObjectId(id); + return true; + } + catch (_a) { + return false; + } + }; + /** @internal */ + ObjectId.prototype.toExtendedJSON = function () { + if (this.toHexString) + return { $oid: this.toHexString() }; + return { $oid: this.toString('hex') }; + }; + /** @internal */ + ObjectId.fromExtendedJSON = function (doc) { + return new ObjectId(doc.$oid); + }; + /** + * Converts to a string representation of this Id. + * + * @returns return the 24 character hex string representation. + * @internal + */ + ObjectId.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () { + return this.inspect(); + }; + ObjectId.prototype.inspect = function () { + return "new ObjectId(\"".concat(this.toHexString(), "\")"); + }; + /** @internal */ + ObjectId.index = Math.floor(Math.random() * 0xffffff); + return ObjectId; +}()); +// Deprecated methods +Object.defineProperty(ObjectId.prototype, 'generate', { + value: deprecate(function (time) { return ObjectId.generate(time); }, 'Please use the static `ObjectId.generate(time)` instead') +}); +Object.defineProperty(ObjectId.prototype, 'getInc', { + value: deprecate(function () { return ObjectId.getInc(); }, 'Please use the static `ObjectId.getInc()` instead') +}); +Object.defineProperty(ObjectId.prototype, 'get_inc', { + value: deprecate(function () { return ObjectId.getInc(); }, 'Please use the static `ObjectId.getInc()` instead') +}); +Object.defineProperty(ObjectId, 'get_inc', { + value: deprecate(function () { return ObjectId.getInc(); }, 'Please use the static `ObjectId.getInc()` instead') +}); +Object.defineProperty(ObjectId.prototype, '_bsontype', { value: 'ObjectID' }); + +function alphabetize(str) { + return str.split('').sort().join(''); +} +/** + * A class representation of the BSON RegExp type. + * @public + * @category BSONType + */ +var BSONRegExp = /** @class */ (function () { + /** + * @param pattern - The regular expression pattern to match + * @param options - The regular expression options + */ + function BSONRegExp(pattern, options) { + if (!(this instanceof BSONRegExp)) + return new BSONRegExp(pattern, options); + this.pattern = pattern; + this.options = alphabetize(options !== null && options !== void 0 ? options : ''); + if (this.pattern.indexOf('\x00') !== -1) { + throw new BSONError("BSON Regex patterns cannot contain null bytes, found: ".concat(JSON.stringify(this.pattern))); + } + if (this.options.indexOf('\x00') !== -1) { + throw new BSONError("BSON Regex options cannot contain null bytes, found: ".concat(JSON.stringify(this.options))); + } + // Validate options + for (var i = 0; i < this.options.length; i++) { + if (!(this.options[i] === 'i' || + this.options[i] === 'm' || + this.options[i] === 'x' || + this.options[i] === 'l' || + this.options[i] === 's' || + this.options[i] === 'u')) { + throw new BSONError("The regular expression option [".concat(this.options[i], "] is not supported")); + } + } + } + BSONRegExp.parseOptions = function (options) { + return options ? options.split('').sort().join('') : ''; + }; + /** @internal */ + BSONRegExp.prototype.toExtendedJSON = function (options) { + options = options || {}; + if (options.legacy) { + return { $regex: this.pattern, $options: this.options }; + } + return { $regularExpression: { pattern: this.pattern, options: this.options } }; + }; + /** @internal */ + BSONRegExp.fromExtendedJSON = function (doc) { + if ('$regex' in doc) { + if (typeof doc.$regex !== 'string') { + // This is for $regex query operators that have extended json values. + if (doc.$regex._bsontype === 'BSONRegExp') { + return doc; + } + } + else { + return new BSONRegExp(doc.$regex, BSONRegExp.parseOptions(doc.$options)); + } + } + if ('$regularExpression' in doc) { + return new BSONRegExp(doc.$regularExpression.pattern, BSONRegExp.parseOptions(doc.$regularExpression.options)); + } + throw new BSONTypeError("Unexpected BSONRegExp EJSON object form: ".concat(JSON.stringify(doc))); + }; + return BSONRegExp; +}()); +Object.defineProperty(BSONRegExp.prototype, '_bsontype', { value: 'BSONRegExp' }); + +/** + * A class representation of the BSON Symbol type. + * @public + * @category BSONType + */ +var BSONSymbol = /** @class */ (function () { + /** + * @param value - the string representing the symbol. + */ + function BSONSymbol(value) { + if (!(this instanceof BSONSymbol)) + return new BSONSymbol(value); + this.value = value; + } + /** Access the wrapped string value. */ + BSONSymbol.prototype.valueOf = function () { + return this.value; + }; + BSONSymbol.prototype.toString = function () { + return this.value; + }; + /** @internal */ + BSONSymbol.prototype.inspect = function () { + return "new BSONSymbol(\"".concat(this.value, "\")"); + }; + BSONSymbol.prototype.toJSON = function () { + return this.value; + }; + /** @internal */ + BSONSymbol.prototype.toExtendedJSON = function () { + return { $symbol: this.value }; + }; + /** @internal */ + BSONSymbol.fromExtendedJSON = function (doc) { + return new BSONSymbol(doc.$symbol); + }; + /** @internal */ + BSONSymbol.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () { + return this.inspect(); + }; + return BSONSymbol; +}()); +Object.defineProperty(BSONSymbol.prototype, '_bsontype', { value: 'Symbol' }); + +/** @public */ +var LongWithoutOverridesClass = Long; +/** + * @public + * @category BSONType + * */ +var Timestamp = /** @class */ (function (_super) { + __extends(Timestamp, _super); + function Timestamp(low, high) { + var _this = this; + // eslint-disable-next-line @typescript-eslint/ban-ts-comment + // @ts-expect-error + if (!(_this instanceof Timestamp)) + return new Timestamp(low, high); + if (Long.isLong(low)) { + _this = _super.call(this, low.low, low.high, true) || this; + } + else if (isObjectLike(low) && typeof low.t !== 'undefined' && typeof low.i !== 'undefined') { + _this = _super.call(this, low.i, low.t, true) || this; + } + else { + _this = _super.call(this, low, high, true) || this; + } + Object.defineProperty(_this, '_bsontype', { + value: 'Timestamp', + writable: false, + configurable: false, + enumerable: false + }); + return _this; + } + Timestamp.prototype.toJSON = function () { + return { + $timestamp: this.toString() + }; + }; + /** Returns a Timestamp represented by the given (32-bit) integer value. */ + Timestamp.fromInt = function (value) { + return new Timestamp(Long.fromInt(value, true)); + }; + /** Returns a Timestamp representing the given number value, provided that it is a finite number. Otherwise, zero is returned. */ + Timestamp.fromNumber = function (value) { + return new Timestamp(Long.fromNumber(value, true)); + }; + /** + * Returns a Timestamp for the given high and low bits. Each is assumed to use 32 bits. + * + * @param lowBits - the low 32-bits. + * @param highBits - the high 32-bits. + */ + Timestamp.fromBits = function (lowBits, highBits) { + return new Timestamp(lowBits, highBits); + }; + /** + * Returns a Timestamp from the given string, optionally using the given radix. + * + * @param str - the textual representation of the Timestamp. + * @param optRadix - the radix in which the text is written. + */ + Timestamp.fromString = function (str, optRadix) { + return new Timestamp(Long.fromString(str, true, optRadix)); + }; + /** @internal */ + Timestamp.prototype.toExtendedJSON = function () { + return { $timestamp: { t: this.high >>> 0, i: this.low >>> 0 } }; + }; + /** @internal */ + Timestamp.fromExtendedJSON = function (doc) { + return new Timestamp(doc.$timestamp); + }; + /** @internal */ + Timestamp.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () { + return this.inspect(); + }; + Timestamp.prototype.inspect = function () { + return "new Timestamp({ t: ".concat(this.getHighBits(), ", i: ").concat(this.getLowBits(), " })"); + }; + Timestamp.MAX_VALUE = Long.MAX_UNSIGNED_VALUE; + return Timestamp; +}(LongWithoutOverridesClass)); + +function isBSONType(value) { + return (isObjectLike(value) && Reflect.has(value, '_bsontype') && typeof value._bsontype === 'string'); +} +// INT32 boundaries +var BSON_INT32_MAX = 0x7fffffff; +var BSON_INT32_MIN = -0x80000000; +// INT64 boundaries +// const BSON_INT64_MAX = 0x7fffffffffffffff; // TODO(NODE-4377): This number cannot be precisely represented in JS +var BSON_INT64_MAX = 0x8000000000000000; +var BSON_INT64_MIN = -0x8000000000000000; +// all the types where we don't need to do any special processing and can just pass the EJSON +//straight to type.fromExtendedJSON +var keysToCodecs = { + $oid: ObjectId, + $binary: Binary, + $uuid: Binary, + $symbol: BSONSymbol, + $numberInt: Int32, + $numberDecimal: Decimal128, + $numberDouble: Double, + $numberLong: Long, + $minKey: MinKey, + $maxKey: MaxKey, + $regex: BSONRegExp, + $regularExpression: BSONRegExp, + $timestamp: Timestamp +}; +// eslint-disable-next-line @typescript-eslint/no-explicit-any +function deserializeValue(value, options) { + if (options === void 0) { options = {}; } + if (typeof value === 'number') { + if (options.relaxed || options.legacy) { + return value; + } + // if it's an integer, should interpret as smallest BSON integer + // that can represent it exactly. (if out of range, interpret as double.) + if (Math.floor(value) === value) { + if (value >= BSON_INT32_MIN && value <= BSON_INT32_MAX) + return new Int32(value); + if (value >= BSON_INT64_MIN && value <= BSON_INT64_MAX) + return Long.fromNumber(value); + } + // If the number is a non-integer or out of integer range, should interpret as BSON Double. + return new Double(value); + } + // from here on out we're looking for bson types, so bail if its not an object + if (value == null || typeof value !== 'object') + return value; + // upgrade deprecated undefined to null + if (value.$undefined) + return null; + var keys = Object.keys(value).filter(function (k) { return k.startsWith('$') && value[k] != null; }); + for (var i = 0; i < keys.length; i++) { + var c = keysToCodecs[keys[i]]; + if (c) + return c.fromExtendedJSON(value, options); + } + if (value.$date != null) { + var d = value.$date; + var date = new Date(); + if (options.legacy) { + if (typeof d === 'number') + date.setTime(d); + else if (typeof d === 'string') + date.setTime(Date.parse(d)); + } + else { + if (typeof d === 'string') + date.setTime(Date.parse(d)); + else if (Long.isLong(d)) + date.setTime(d.toNumber()); + else if (typeof d === 'number' && options.relaxed) + date.setTime(d); + } + return date; + } + if (value.$code != null) { + var copy = Object.assign({}, value); + if (value.$scope) { + copy.$scope = deserializeValue(value.$scope); + } + return Code.fromExtendedJSON(value); + } + if (isDBRefLike(value) || value.$dbPointer) { + var v = value.$ref ? value : value.$dbPointer; + // we run into this in a "degenerate EJSON" case (with $id and $ref order flipped) + // because of the order JSON.parse goes through the document + if (v instanceof DBRef) + return v; + var dollarKeys = Object.keys(v).filter(function (k) { return k.startsWith('$'); }); + var valid_1 = true; + dollarKeys.forEach(function (k) { + if (['$ref', '$id', '$db'].indexOf(k) === -1) + valid_1 = false; + }); + // only make DBRef if $ keys are all valid + if (valid_1) + return DBRef.fromExtendedJSON(v); + } + return value; +} +// eslint-disable-next-line @typescript-eslint/no-explicit-any +function serializeArray(array, options) { + return array.map(function (v, index) { + options.seenObjects.push({ propertyName: "index ".concat(index), obj: null }); + try { + return serializeValue(v, options); + } + finally { + options.seenObjects.pop(); + } + }); +} +function getISOString(date) { + var isoStr = date.toISOString(); + // we should only show milliseconds in timestamp if they're non-zero + return date.getUTCMilliseconds() !== 0 ? isoStr : isoStr.slice(0, -5) + 'Z'; +} +// eslint-disable-next-line @typescript-eslint/no-explicit-any +function serializeValue(value, options) { + if ((typeof value === 'object' || typeof value === 'function') && value !== null) { + var index = options.seenObjects.findIndex(function (entry) { return entry.obj === value; }); + if (index !== -1) { + var props = options.seenObjects.map(function (entry) { return entry.propertyName; }); + var leadingPart = props + .slice(0, index) + .map(function (prop) { return "".concat(prop, " -> "); }) + .join(''); + var alreadySeen = props[index]; + var circularPart = ' -> ' + + props + .slice(index + 1, props.length - 1) + .map(function (prop) { return "".concat(prop, " -> "); }) + .join(''); + var current = props[props.length - 1]; + var leadingSpace = ' '.repeat(leadingPart.length + alreadySeen.length / 2); + var dashes = '-'.repeat(circularPart.length + (alreadySeen.length + current.length) / 2 - 1); + throw new BSONTypeError('Converting circular structure to EJSON:\n' + + " ".concat(leadingPart).concat(alreadySeen).concat(circularPart).concat(current, "\n") + + " ".concat(leadingSpace, "\\").concat(dashes, "/")); + } + options.seenObjects[options.seenObjects.length - 1].obj = value; + } + if (Array.isArray(value)) + return serializeArray(value, options); + if (value === undefined) + return null; + if (value instanceof Date || isDate(value)) { + var dateNum = value.getTime(), + // is it in year range 1970-9999? + inRange = dateNum > -1 && dateNum < 253402318800000; + if (options.legacy) { + return options.relaxed && inRange + ? { $date: value.getTime() } + : { $date: getISOString(value) }; + } + return options.relaxed && inRange + ? { $date: getISOString(value) } + : { $date: { $numberLong: value.getTime().toString() } }; + } + if (typeof value === 'number' && (!options.relaxed || !isFinite(value))) { + // it's an integer + if (Math.floor(value) === value) { + var int32Range = value >= BSON_INT32_MIN && value <= BSON_INT32_MAX, int64Range = value >= BSON_INT64_MIN && value <= BSON_INT64_MAX; + // interpret as being of the smallest BSON integer type that can represent the number exactly + if (int32Range) + return { $numberInt: value.toString() }; + if (int64Range) + return { $numberLong: value.toString() }; + } + return { $numberDouble: value.toString() }; + } + if (value instanceof RegExp || isRegExp(value)) { + var flags = value.flags; + if (flags === undefined) { + var match = value.toString().match(/[gimuy]*$/); + if (match) { + flags = match[0]; + } + } + var rx = new BSONRegExp(value.source, flags); + return rx.toExtendedJSON(options); + } + if (value != null && typeof value === 'object') + return serializeDocument(value, options); + return value; +} +var BSON_TYPE_MAPPINGS = { + Binary: function (o) { return new Binary(o.value(), o.sub_type); }, + Code: function (o) { return new Code(o.code, o.scope); }, + DBRef: function (o) { return new DBRef(o.collection || o.namespace, o.oid, o.db, o.fields); }, + Decimal128: function (o) { return new Decimal128(o.bytes); }, + Double: function (o) { return new Double(o.value); }, + Int32: function (o) { return new Int32(o.value); }, + Long: function (o) { + return Long.fromBits( + // underscore variants for 1.x backwards compatibility + o.low != null ? o.low : o.low_, o.low != null ? o.high : o.high_, o.low != null ? o.unsigned : o.unsigned_); + }, + MaxKey: function () { return new MaxKey(); }, + MinKey: function () { return new MinKey(); }, + ObjectID: function (o) { return new ObjectId(o); }, + ObjectId: function (o) { return new ObjectId(o); }, + BSONRegExp: function (o) { return new BSONRegExp(o.pattern, o.options); }, + Symbol: function (o) { return new BSONSymbol(o.value); }, + Timestamp: function (o) { return Timestamp.fromBits(o.low, o.high); } +}; +// eslint-disable-next-line @typescript-eslint/no-explicit-any +function serializeDocument(doc, options) { + if (doc == null || typeof doc !== 'object') + throw new BSONError('not an object instance'); + var bsontype = doc._bsontype; + if (typeof bsontype === 'undefined') { + // It's a regular object. Recursively serialize its property values. + var _doc = {}; + for (var name in doc) { + options.seenObjects.push({ propertyName: name, obj: null }); + try { + var value = serializeValue(doc[name], options); + if (name === '__proto__') { + Object.defineProperty(_doc, name, { + value: value, + writable: true, + enumerable: true, + configurable: true + }); + } + else { + _doc[name] = value; + } + } + finally { + options.seenObjects.pop(); + } + } + return _doc; + } + else if (isBSONType(doc)) { + // the "document" is really just a BSON type object + // eslint-disable-next-line @typescript-eslint/no-explicit-any + var outDoc = doc; + if (typeof outDoc.toExtendedJSON !== 'function') { + // There's no EJSON serialization function on the object. It's probably an + // object created by a previous version of this library (or another library) + // that's duck-typing objects to look like they were generated by this library). + // Copy the object into this library's version of that type. + var mapper = BSON_TYPE_MAPPINGS[doc._bsontype]; + if (!mapper) { + throw new BSONTypeError('Unrecognized or invalid _bsontype: ' + doc._bsontype); + } + outDoc = mapper(outDoc); + } + // Two BSON types may have nested objects that may need to be serialized too + if (bsontype === 'Code' && outDoc.scope) { + outDoc = new Code(outDoc.code, serializeValue(outDoc.scope, options)); + } + else if (bsontype === 'DBRef' && outDoc.oid) { + outDoc = new DBRef(serializeValue(outDoc.collection, options), serializeValue(outDoc.oid, options), serializeValue(outDoc.db, options), serializeValue(outDoc.fields, options)); + } + return outDoc.toExtendedJSON(options); + } + else { + throw new BSONError('_bsontype must be a string, but was: ' + typeof bsontype); + } +} +/** + * EJSON parse / stringify API + * @public + */ +// the namespace here is used to emulate `export * as EJSON from '...'` +// which as of now (sept 2020) api-extractor does not support +// eslint-disable-next-line @typescript-eslint/no-namespace +var EJSON; +(function (EJSON) { + /** + * Parse an Extended JSON string, constructing the JavaScript value or object described by that + * string. + * + * @example + * ```js + * const { EJSON } = require('bson'); + * const text = '{ "int32": { "$numberInt": "10" } }'; + * + * // prints { int32: { [String: '10'] _bsontype: 'Int32', value: '10' } } + * console.log(EJSON.parse(text, { relaxed: false })); + * + * // prints { int32: 10 } + * console.log(EJSON.parse(text)); + * ``` + */ + function parse(text, options) { + var finalOptions = Object.assign({}, { relaxed: true, legacy: false }, options); + // relaxed implies not strict + if (typeof finalOptions.relaxed === 'boolean') + finalOptions.strict = !finalOptions.relaxed; + if (typeof finalOptions.strict === 'boolean') + finalOptions.relaxed = !finalOptions.strict; + return JSON.parse(text, function (key, value) { + if (key.indexOf('\x00') !== -1) { + throw new BSONError("BSON Document field names cannot contain null bytes, found: ".concat(JSON.stringify(key))); + } + return deserializeValue(value, finalOptions); + }); + } + EJSON.parse = parse; + /** + * Converts a BSON document to an Extended JSON string, optionally replacing values if a replacer + * function is specified or optionally including only the specified properties if a replacer array + * is specified. + * + * @param value - The value to convert to extended JSON + * @param replacer - A function that alters the behavior of the stringification process, or an array of String and Number objects that serve as a whitelist for selecting/filtering the properties of the value object to be included in the JSON string. If this value is null or not provided, all properties of the object are included in the resulting JSON string + * @param space - A String or Number object that's used to insert white space into the output JSON string for readability purposes. + * @param options - Optional settings + * + * @example + * ```js + * const { EJSON } = require('bson'); + * const Int32 = require('mongodb').Int32; + * const doc = { int32: new Int32(10) }; + * + * // prints '{"int32":{"$numberInt":"10"}}' + * console.log(EJSON.stringify(doc, { relaxed: false })); + * + * // prints '{"int32":10}' + * console.log(EJSON.stringify(doc)); + * ``` + */ + function stringify(value, + // eslint-disable-next-line @typescript-eslint/no-explicit-any + replacer, space, options) { + if (space != null && typeof space === 'object') { + options = space; + space = 0; + } + if (replacer != null && typeof replacer === 'object' && !Array.isArray(replacer)) { + options = replacer; + replacer = undefined; + space = 0; + } + var serializeOptions = Object.assign({ relaxed: true, legacy: false }, options, { + seenObjects: [{ propertyName: '(root)', obj: null }] + }); + var doc = serializeValue(value, serializeOptions); + return JSON.stringify(doc, replacer, space); + } + EJSON.stringify = stringify; + /** + * Serializes an object to an Extended JSON string, and reparse it as a JavaScript object. + * + * @param value - The object to serialize + * @param options - Optional settings passed to the `stringify` function + */ + function serialize(value, options) { + options = options || {}; + return JSON.parse(stringify(value, options)); + } + EJSON.serialize = serialize; + /** + * Deserializes an Extended JSON object into a plain JavaScript object with native/BSON types + * + * @param ejson - The Extended JSON object to deserialize + * @param options - Optional settings passed to the parse method + */ + function deserialize(ejson, options) { + options = options || {}; + return parse(JSON.stringify(ejson), options); + } + EJSON.deserialize = deserialize; +})(EJSON || (EJSON = {})); + +/* eslint-disable @typescript-eslint/no-explicit-any */ +/** @public */ +var bsonMap; +var bsonGlobal = getGlobal(); +if (bsonGlobal.Map) { + bsonMap = bsonGlobal.Map; +} +else { + // We will return a polyfill + bsonMap = /** @class */ (function () { + function Map(array) { + if (array === void 0) { array = []; } + this._keys = []; + this._values = {}; + for (var i = 0; i < array.length; i++) { + if (array[i] == null) + continue; // skip null and undefined + var entry = array[i]; + var key = entry[0]; + var value = entry[1]; + // Add the key to the list of keys in order + this._keys.push(key); + // Add the key and value to the values dictionary with a point + // to the location in the ordered keys list + this._values[key] = { v: value, i: this._keys.length - 1 }; + } + } + Map.prototype.clear = function () { + this._keys = []; + this._values = {}; + }; + Map.prototype.delete = function (key) { + var value = this._values[key]; + if (value == null) + return false; + // Delete entry + delete this._values[key]; + // Remove the key from the ordered keys list + this._keys.splice(value.i, 1); + return true; + }; + Map.prototype.entries = function () { + var _this = this; + var index = 0; + return { + next: function () { + var key = _this._keys[index++]; + return { + value: key !== undefined ? [key, _this._values[key].v] : undefined, + done: key !== undefined ? false : true + }; + } + }; + }; + Map.prototype.forEach = function (callback, self) { + self = self || this; + for (var i = 0; i < this._keys.length; i++) { + var key = this._keys[i]; + // Call the forEach callback + callback.call(self, this._values[key].v, key, self); + } + }; + Map.prototype.get = function (key) { + return this._values[key] ? this._values[key].v : undefined; + }; + Map.prototype.has = function (key) { + return this._values[key] != null; + }; + Map.prototype.keys = function () { + var _this = this; + var index = 0; + return { + next: function () { + var key = _this._keys[index++]; + return { + value: key !== undefined ? key : undefined, + done: key !== undefined ? false : true + }; + } + }; + }; + Map.prototype.set = function (key, value) { + if (this._values[key]) { + this._values[key].v = value; + return this; + } + // Add the key to the list of keys in order + this._keys.push(key); + // Add the key and value to the values dictionary with a point + // to the location in the ordered keys list + this._values[key] = { v: value, i: this._keys.length - 1 }; + return this; + }; + Map.prototype.values = function () { + var _this = this; + var index = 0; + return { + next: function () { + var key = _this._keys[index++]; + return { + value: key !== undefined ? _this._values[key].v : undefined, + done: key !== undefined ? false : true + }; + } + }; + }; + Object.defineProperty(Map.prototype, "size", { + get: function () { + return this._keys.length; + }, + enumerable: false, + configurable: true + }); + return Map; + }()); +} + +function calculateObjectSize$1(object, serializeFunctions, ignoreUndefined) { + var totalLength = 4 + 1; + if (Array.isArray(object)) { + for (var i = 0; i < object.length; i++) { + totalLength += calculateElement(i.toString(), object[i], serializeFunctions, true, ignoreUndefined); + } + } + else { + // If we have toBSON defined, override the current object + if (typeof (object === null || object === void 0 ? void 0 : object.toBSON) === 'function') { + object = object.toBSON(); + } + // Calculate size + for (var key in object) { + totalLength += calculateElement(key, object[key], serializeFunctions, false, ignoreUndefined); + } + } + return totalLength; +} +/** @internal */ +function calculateElement(name, +// eslint-disable-next-line @typescript-eslint/no-explicit-any +value, serializeFunctions, isArray, ignoreUndefined) { + if (serializeFunctions === void 0) { serializeFunctions = false; } + if (isArray === void 0) { isArray = false; } + if (ignoreUndefined === void 0) { ignoreUndefined = false; } + // If we have toBSON defined, override the current object + if (typeof (value === null || value === void 0 ? void 0 : value.toBSON) === 'function') { + value = value.toBSON(); + } + switch (typeof value) { + case 'string': + return 1 + buffer_1.byteLength(name, 'utf8') + 1 + 4 + buffer_1.byteLength(value, 'utf8') + 1; + case 'number': + if (Math.floor(value) === value && + value >= JS_INT_MIN && + value <= JS_INT_MAX) { + if (value >= BSON_INT32_MIN$1 && value <= BSON_INT32_MAX$1) { + // 32 bit + return (name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + (4 + 1); + } + else { + return (name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + (8 + 1); + } + } + else { + // 64 bit + return (name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + (8 + 1); + } + case 'undefined': + if (isArray || !ignoreUndefined) + return (name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + 1; + return 0; + case 'boolean': + return (name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + (1 + 1); + case 'object': + if (value == null || value['_bsontype'] === 'MinKey' || value['_bsontype'] === 'MaxKey') { + return (name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + 1; + } + else if (value['_bsontype'] === 'ObjectId' || value['_bsontype'] === 'ObjectID') { + return (name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + (12 + 1); + } + else if (value instanceof Date || isDate(value)) { + return (name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + (8 + 1); + } + else if (ArrayBuffer.isView(value) || + value instanceof ArrayBuffer || + isAnyArrayBuffer(value)) { + return ((name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + (1 + 4 + 1) + value.byteLength); + } + else if (value['_bsontype'] === 'Long' || + value['_bsontype'] === 'Double' || + value['_bsontype'] === 'Timestamp') { + return (name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + (8 + 1); + } + else if (value['_bsontype'] === 'Decimal128') { + return (name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + (16 + 1); + } + else if (value['_bsontype'] === 'Code') { + // Calculate size depending on the availability of a scope + if (value.scope != null && Object.keys(value.scope).length > 0) { + return ((name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + + 1 + + 4 + + 4 + + buffer_1.byteLength(value.code.toString(), 'utf8') + + 1 + + calculateObjectSize$1(value.scope, serializeFunctions, ignoreUndefined)); + } + else { + return ((name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + + 1 + + 4 + + buffer_1.byteLength(value.code.toString(), 'utf8') + + 1); + } + } + else if (value['_bsontype'] === 'Binary') { + var binary = value; + // Check what kind of subtype we have + if (binary.sub_type === Binary.SUBTYPE_BYTE_ARRAY) { + return ((name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + + (binary.position + 1 + 4 + 1 + 4)); + } + else { + return ((name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + (binary.position + 1 + 4 + 1)); + } + } + else if (value['_bsontype'] === 'Symbol') { + return ((name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + + buffer_1.byteLength(value.value, 'utf8') + + 4 + + 1 + + 1); + } + else if (value['_bsontype'] === 'DBRef') { + // Set up correct object for serialization + var ordered_values = Object.assign({ + $ref: value.collection, + $id: value.oid + }, value.fields); + // Add db reference if it exists + if (value.db != null) { + ordered_values['$db'] = value.db; + } + return ((name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + + 1 + + calculateObjectSize$1(ordered_values, serializeFunctions, ignoreUndefined)); + } + else if (value instanceof RegExp || isRegExp(value)) { + return ((name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + + 1 + + buffer_1.byteLength(value.source, 'utf8') + + 1 + + (value.global ? 1 : 0) + + (value.ignoreCase ? 1 : 0) + + (value.multiline ? 1 : 0) + + 1); + } + else if (value['_bsontype'] === 'BSONRegExp') { + return ((name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + + 1 + + buffer_1.byteLength(value.pattern, 'utf8') + + 1 + + buffer_1.byteLength(value.options, 'utf8') + + 1); + } + else { + return ((name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + + calculateObjectSize$1(value, serializeFunctions, ignoreUndefined) + + 1); + } + case 'function': + // WTF for 0.4.X where typeof /someregexp/ === 'function' + if (value instanceof RegExp || isRegExp(value) || String.call(value) === '[object RegExp]') { + return ((name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + + 1 + + buffer_1.byteLength(value.source, 'utf8') + + 1 + + (value.global ? 1 : 0) + + (value.ignoreCase ? 1 : 0) + + (value.multiline ? 1 : 0) + + 1); + } + else { + if (serializeFunctions && value.scope != null && Object.keys(value.scope).length > 0) { + return ((name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + + 1 + + 4 + + 4 + + buffer_1.byteLength(normalizedFunctionString(value), 'utf8') + + 1 + + calculateObjectSize$1(value.scope, serializeFunctions, ignoreUndefined)); + } + else if (serializeFunctions) { + return ((name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + + 1 + + 4 + + buffer_1.byteLength(normalizedFunctionString(value), 'utf8') + + 1); + } + } + } + return 0; +} + +var FIRST_BIT = 0x80; +var FIRST_TWO_BITS = 0xc0; +var FIRST_THREE_BITS = 0xe0; +var FIRST_FOUR_BITS = 0xf0; +var FIRST_FIVE_BITS = 0xf8; +var TWO_BIT_CHAR = 0xc0; +var THREE_BIT_CHAR = 0xe0; +var FOUR_BIT_CHAR = 0xf0; +var CONTINUING_CHAR = 0x80; +/** + * Determines if the passed in bytes are valid utf8 + * @param bytes - An array of 8-bit bytes. Must be indexable and have length property + * @param start - The index to start validating + * @param end - The index to end validating + */ +function validateUtf8(bytes, start, end) { + var continuation = 0; + for (var i = start; i < end; i += 1) { + var byte = bytes[i]; + if (continuation) { + if ((byte & FIRST_TWO_BITS) !== CONTINUING_CHAR) { + return false; + } + continuation -= 1; + } + else if (byte & FIRST_BIT) { + if ((byte & FIRST_THREE_BITS) === TWO_BIT_CHAR) { + continuation = 1; + } + else if ((byte & FIRST_FOUR_BITS) === THREE_BIT_CHAR) { + continuation = 2; + } + else if ((byte & FIRST_FIVE_BITS) === FOUR_BIT_CHAR) { + continuation = 3; + } + else { + return false; + } + } + } + return !continuation; +} + +// Internal long versions +var JS_INT_MAX_LONG = Long.fromNumber(JS_INT_MAX); +var JS_INT_MIN_LONG = Long.fromNumber(JS_INT_MIN); +var functionCache = {}; +function deserialize$1(buffer, options, isArray) { + options = options == null ? {} : options; + var index = options && options.index ? options.index : 0; + // Read the document size + var size = buffer[index] | + (buffer[index + 1] << 8) | + (buffer[index + 2] << 16) | + (buffer[index + 3] << 24); + if (size < 5) { + throw new BSONError("bson size must be >= 5, is ".concat(size)); + } + if (options.allowObjectSmallerThanBufferSize && buffer.length < size) { + throw new BSONError("buffer length ".concat(buffer.length, " must be >= bson size ").concat(size)); + } + if (!options.allowObjectSmallerThanBufferSize && buffer.length !== size) { + throw new BSONError("buffer length ".concat(buffer.length, " must === bson size ").concat(size)); + } + if (size + index > buffer.byteLength) { + throw new BSONError("(bson size ".concat(size, " + options.index ").concat(index, " must be <= buffer length ").concat(buffer.byteLength, ")")); + } + // Illegal end value + if (buffer[index + size - 1] !== 0) { + throw new BSONError("One object, sized correctly, with a spot for an EOO, but the EOO isn't 0x00"); + } + // Start deserializtion + return deserializeObject(buffer, index, options, isArray); +} +var allowedDBRefKeys = /^\$ref$|^\$id$|^\$db$/; +function deserializeObject(buffer, index, options, isArray) { + if (isArray === void 0) { isArray = false; } + var evalFunctions = options['evalFunctions'] == null ? false : options['evalFunctions']; + var cacheFunctions = options['cacheFunctions'] == null ? false : options['cacheFunctions']; + var fieldsAsRaw = options['fieldsAsRaw'] == null ? null : options['fieldsAsRaw']; + // Return raw bson buffer instead of parsing it + var raw = options['raw'] == null ? false : options['raw']; + // Return BSONRegExp objects instead of native regular expressions + var bsonRegExp = typeof options['bsonRegExp'] === 'boolean' ? options['bsonRegExp'] : false; + // Controls the promotion of values vs wrapper classes + var promoteBuffers = options['promoteBuffers'] == null ? false : options['promoteBuffers']; + var promoteLongs = options['promoteLongs'] == null ? true : options['promoteLongs']; + var promoteValues = options['promoteValues'] == null ? true : options['promoteValues']; + // Ensures default validation option if none given + var validation = options.validation == null ? { utf8: true } : options.validation; + // Shows if global utf-8 validation is enabled or disabled + var globalUTFValidation = true; + // Reflects utf-8 validation setting regardless of global or specific key validation + var validationSetting; + // Set of keys either to enable or disable validation on + var utf8KeysSet = new Set(); + // Check for boolean uniformity and empty validation option + var utf8ValidatedKeys = validation.utf8; + if (typeof utf8ValidatedKeys === 'boolean') { + validationSetting = utf8ValidatedKeys; + } + else { + globalUTFValidation = false; + var utf8ValidationValues = Object.keys(utf8ValidatedKeys).map(function (key) { + return utf8ValidatedKeys[key]; + }); + if (utf8ValidationValues.length === 0) { + throw new BSONError('UTF-8 validation setting cannot be empty'); + } + if (typeof utf8ValidationValues[0] !== 'boolean') { + throw new BSONError('Invalid UTF-8 validation option, must specify boolean values'); + } + validationSetting = utf8ValidationValues[0]; + // Ensures boolean uniformity in utf-8 validation (all true or all false) + if (!utf8ValidationValues.every(function (item) { return item === validationSetting; })) { + throw new BSONError('Invalid UTF-8 validation option - keys must be all true or all false'); + } + } + // Add keys to set that will either be validated or not based on validationSetting + if (!globalUTFValidation) { + for (var _i = 0, _a = Object.keys(utf8ValidatedKeys); _i < _a.length; _i++) { + var key = _a[_i]; + utf8KeysSet.add(key); + } + } + // Set the start index + var startIndex = index; + // Validate that we have at least 4 bytes of buffer + if (buffer.length < 5) + throw new BSONError('corrupt bson message < 5 bytes long'); + // Read the document size + var size = buffer[index++] | (buffer[index++] << 8) | (buffer[index++] << 16) | (buffer[index++] << 24); + // Ensure buffer is valid size + if (size < 5 || size > buffer.length) + throw new BSONError('corrupt bson message'); + // Create holding object + var object = isArray ? [] : {}; + // Used for arrays to skip having to perform utf8 decoding + var arrayIndex = 0; + var done = false; + var isPossibleDBRef = isArray ? false : null; + // While we have more left data left keep parsing + var dataview = new DataView(buffer.buffer, buffer.byteOffset, buffer.byteLength); + while (!done) { + // Read the type + var elementType = buffer[index++]; + // If we get a zero it's the last byte, exit + if (elementType === 0) + break; + // Get the start search index + var i = index; + // Locate the end of the c string + while (buffer[i] !== 0x00 && i < buffer.length) { + i++; + } + // If are at the end of the buffer there is a problem with the document + if (i >= buffer.byteLength) + throw new BSONError('Bad BSON Document: illegal CString'); + // Represents the key + var name = isArray ? arrayIndex++ : buffer.toString('utf8', index, i); + // shouldValidateKey is true if the key should be validated, false otherwise + var shouldValidateKey = true; + if (globalUTFValidation || utf8KeysSet.has(name)) { + shouldValidateKey = validationSetting; + } + else { + shouldValidateKey = !validationSetting; + } + if (isPossibleDBRef !== false && name[0] === '$') { + isPossibleDBRef = allowedDBRefKeys.test(name); + } + var value = void 0; + index = i + 1; + if (elementType === BSON_DATA_STRING) { + var stringSize = buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + if (stringSize <= 0 || + stringSize > buffer.length - index || + buffer[index + stringSize - 1] !== 0) { + throw new BSONError('bad string length in bson'); + } + value = getValidatedString(buffer, index, index + stringSize - 1, shouldValidateKey); + index = index + stringSize; + } + else if (elementType === BSON_DATA_OID) { + var oid = buffer_1.alloc(12); + buffer.copy(oid, 0, index, index + 12); + value = new ObjectId(oid); + index = index + 12; + } + else if (elementType === BSON_DATA_INT && promoteValues === false) { + value = new Int32(buffer[index++] | (buffer[index++] << 8) | (buffer[index++] << 16) | (buffer[index++] << 24)); + } + else if (elementType === BSON_DATA_INT) { + value = + buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + } + else if (elementType === BSON_DATA_NUMBER && promoteValues === false) { + value = new Double(dataview.getFloat64(index, true)); + index = index + 8; + } + else if (elementType === BSON_DATA_NUMBER) { + value = dataview.getFloat64(index, true); + index = index + 8; + } + else if (elementType === BSON_DATA_DATE) { + var lowBits = buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + var highBits = buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + value = new Date(new Long(lowBits, highBits).toNumber()); + } + else if (elementType === BSON_DATA_BOOLEAN) { + if (buffer[index] !== 0 && buffer[index] !== 1) + throw new BSONError('illegal boolean type value'); + value = buffer[index++] === 1; + } + else if (elementType === BSON_DATA_OBJECT) { + var _index = index; + var objectSize = buffer[index] | + (buffer[index + 1] << 8) | + (buffer[index + 2] << 16) | + (buffer[index + 3] << 24); + if (objectSize <= 0 || objectSize > buffer.length - index) + throw new BSONError('bad embedded document length in bson'); + // We have a raw value + if (raw) { + value = buffer.slice(index, index + objectSize); + } + else { + var objectOptions = options; + if (!globalUTFValidation) { + objectOptions = _assign(_assign({}, options), { validation: { utf8: shouldValidateKey } }); + } + value = deserializeObject(buffer, _index, objectOptions, false); + } + index = index + objectSize; + } + else if (elementType === BSON_DATA_ARRAY) { + var _index = index; + var objectSize = buffer[index] | + (buffer[index + 1] << 8) | + (buffer[index + 2] << 16) | + (buffer[index + 3] << 24); + var arrayOptions = options; + // Stop index + var stopIndex = index + objectSize; + // All elements of array to be returned as raw bson + if (fieldsAsRaw && fieldsAsRaw[name]) { + arrayOptions = {}; + for (var n in options) { + arrayOptions[n] = options[n]; + } + arrayOptions['raw'] = true; + } + if (!globalUTFValidation) { + arrayOptions = _assign(_assign({}, arrayOptions), { validation: { utf8: shouldValidateKey } }); + } + value = deserializeObject(buffer, _index, arrayOptions, true); + index = index + objectSize; + if (buffer[index - 1] !== 0) + throw new BSONError('invalid array terminator byte'); + if (index !== stopIndex) + throw new BSONError('corrupted array bson'); + } + else if (elementType === BSON_DATA_UNDEFINED) { + value = undefined; + } + else if (elementType === BSON_DATA_NULL) { + value = null; + } + else if (elementType === BSON_DATA_LONG) { + // Unpack the low and high bits + var lowBits = buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + var highBits = buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + var long = new Long(lowBits, highBits); + // Promote the long if possible + if (promoteLongs && promoteValues === true) { + value = + long.lessThanOrEqual(JS_INT_MAX_LONG) && long.greaterThanOrEqual(JS_INT_MIN_LONG) + ? long.toNumber() + : long; + } + else { + value = long; + } + } + else if (elementType === BSON_DATA_DECIMAL128) { + // Buffer to contain the decimal bytes + var bytes = buffer_1.alloc(16); + // Copy the next 16 bytes into the bytes buffer + buffer.copy(bytes, 0, index, index + 16); + // Update index + index = index + 16; + // Assign the new Decimal128 value + var decimal128 = new Decimal128(bytes); + // If we have an alternative mapper use that + if ('toObject' in decimal128 && typeof decimal128.toObject === 'function') { + value = decimal128.toObject(); + } + else { + value = decimal128; + } + } + else if (elementType === BSON_DATA_BINARY) { + var binarySize = buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + var totalBinarySize = binarySize; + var subType = buffer[index++]; + // Did we have a negative binary size, throw + if (binarySize < 0) + throw new BSONError('Negative binary type element size found'); + // Is the length longer than the document + if (binarySize > buffer.byteLength) + throw new BSONError('Binary type size larger than document size'); + // Decode as raw Buffer object if options specifies it + if (buffer['slice'] != null) { + // If we have subtype 2 skip the 4 bytes for the size + if (subType === Binary.SUBTYPE_BYTE_ARRAY) { + binarySize = + buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + if (binarySize < 0) + throw new BSONError('Negative binary type element size found for subtype 0x02'); + if (binarySize > totalBinarySize - 4) + throw new BSONError('Binary type with subtype 0x02 contains too long binary size'); + if (binarySize < totalBinarySize - 4) + throw new BSONError('Binary type with subtype 0x02 contains too short binary size'); + } + if (promoteBuffers && promoteValues) { + value = buffer.slice(index, index + binarySize); + } + else { + value = new Binary(buffer.slice(index, index + binarySize), subType); + if (subType === BSON_BINARY_SUBTYPE_UUID_NEW) { + value = value.toUUID(); + } + } + } + else { + var _buffer = buffer_1.alloc(binarySize); + // If we have subtype 2 skip the 4 bytes for the size + if (subType === Binary.SUBTYPE_BYTE_ARRAY) { + binarySize = + buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + if (binarySize < 0) + throw new BSONError('Negative binary type element size found for subtype 0x02'); + if (binarySize > totalBinarySize - 4) + throw new BSONError('Binary type with subtype 0x02 contains too long binary size'); + if (binarySize < totalBinarySize - 4) + throw new BSONError('Binary type with subtype 0x02 contains too short binary size'); + } + // Copy the data + for (i = 0; i < binarySize; i++) { + _buffer[i] = buffer[index + i]; + } + if (promoteBuffers && promoteValues) { + value = _buffer; + } + else if (subType === BSON_BINARY_SUBTYPE_UUID_NEW) { + value = new Binary(buffer.slice(index, index + binarySize), subType).toUUID(); + } + else { + value = new Binary(buffer.slice(index, index + binarySize), subType); + } + } + // Update the index + index = index + binarySize; + } + else if (elementType === BSON_DATA_REGEXP && bsonRegExp === false) { + // Get the start search index + i = index; + // Locate the end of the c string + while (buffer[i] !== 0x00 && i < buffer.length) { + i++; + } + // If are at the end of the buffer there is a problem with the document + if (i >= buffer.length) + throw new BSONError('Bad BSON Document: illegal CString'); + // Return the C string + var source = buffer.toString('utf8', index, i); + // Create the regexp + index = i + 1; + // Get the start search index + i = index; + // Locate the end of the c string + while (buffer[i] !== 0x00 && i < buffer.length) { + i++; + } + // If are at the end of the buffer there is a problem with the document + if (i >= buffer.length) + throw new BSONError('Bad BSON Document: illegal CString'); + // Return the C string + var regExpOptions = buffer.toString('utf8', index, i); + index = i + 1; + // For each option add the corresponding one for javascript + var optionsArray = new Array(regExpOptions.length); + // Parse options + for (i = 0; i < regExpOptions.length; i++) { + switch (regExpOptions[i]) { + case 'm': + optionsArray[i] = 'm'; + break; + case 's': + optionsArray[i] = 'g'; + break; + case 'i': + optionsArray[i] = 'i'; + break; + } + } + value = new RegExp(source, optionsArray.join('')); + } + else if (elementType === BSON_DATA_REGEXP && bsonRegExp === true) { + // Get the start search index + i = index; + // Locate the end of the c string + while (buffer[i] !== 0x00 && i < buffer.length) { + i++; + } + // If are at the end of the buffer there is a problem with the document + if (i >= buffer.length) + throw new BSONError('Bad BSON Document: illegal CString'); + // Return the C string + var source = buffer.toString('utf8', index, i); + index = i + 1; + // Get the start search index + i = index; + // Locate the end of the c string + while (buffer[i] !== 0x00 && i < buffer.length) { + i++; + } + // If are at the end of the buffer there is a problem with the document + if (i >= buffer.length) + throw new BSONError('Bad BSON Document: illegal CString'); + // Return the C string + var regExpOptions = buffer.toString('utf8', index, i); + index = i + 1; + // Set the object + value = new BSONRegExp(source, regExpOptions); + } + else if (elementType === BSON_DATA_SYMBOL) { + var stringSize = buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + if (stringSize <= 0 || + stringSize > buffer.length - index || + buffer[index + stringSize - 1] !== 0) { + throw new BSONError('bad string length in bson'); + } + var symbol = getValidatedString(buffer, index, index + stringSize - 1, shouldValidateKey); + value = promoteValues ? symbol : new BSONSymbol(symbol); + index = index + stringSize; + } + else if (elementType === BSON_DATA_TIMESTAMP) { + var lowBits = buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + var highBits = buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + value = new Timestamp(lowBits, highBits); + } + else if (elementType === BSON_DATA_MIN_KEY) { + value = new MinKey(); + } + else if (elementType === BSON_DATA_MAX_KEY) { + value = new MaxKey(); + } + else if (elementType === BSON_DATA_CODE) { + var stringSize = buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + if (stringSize <= 0 || + stringSize > buffer.length - index || + buffer[index + stringSize - 1] !== 0) { + throw new BSONError('bad string length in bson'); + } + var functionString = getValidatedString(buffer, index, index + stringSize - 1, shouldValidateKey); + // If we are evaluating the functions + if (evalFunctions) { + // If we have cache enabled let's look for the md5 of the function in the cache + if (cacheFunctions) { + // Got to do this to avoid V8 deoptimizing the call due to finding eval + value = isolateEval(functionString, functionCache, object); + } + else { + value = isolateEval(functionString); + } + } + else { + value = new Code(functionString); + } + // Update parse index position + index = index + stringSize; + } + else if (elementType === BSON_DATA_CODE_W_SCOPE) { + var totalSize = buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + // Element cannot be shorter than totalSize + stringSize + documentSize + terminator + if (totalSize < 4 + 4 + 4 + 1) { + throw new BSONError('code_w_scope total size shorter minimum expected length'); + } + // Get the code string size + var stringSize = buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + // Check if we have a valid string + if (stringSize <= 0 || + stringSize > buffer.length - index || + buffer[index + stringSize - 1] !== 0) { + throw new BSONError('bad string length in bson'); + } + // Javascript function + var functionString = getValidatedString(buffer, index, index + stringSize - 1, shouldValidateKey); + // Update parse index position + index = index + stringSize; + // Parse the element + var _index = index; + // Decode the size of the object document + var objectSize = buffer[index] | + (buffer[index + 1] << 8) | + (buffer[index + 2] << 16) | + (buffer[index + 3] << 24); + // Decode the scope object + var scopeObject = deserializeObject(buffer, _index, options, false); + // Adjust the index + index = index + objectSize; + // Check if field length is too short + if (totalSize < 4 + 4 + objectSize + stringSize) { + throw new BSONError('code_w_scope total size is too short, truncating scope'); + } + // Check if totalSize field is too long + if (totalSize > 4 + 4 + objectSize + stringSize) { + throw new BSONError('code_w_scope total size is too long, clips outer document'); + } + // If we are evaluating the functions + if (evalFunctions) { + // If we have cache enabled let's look for the md5 of the function in the cache + if (cacheFunctions) { + // Got to do this to avoid V8 deoptimizing the call due to finding eval + value = isolateEval(functionString, functionCache, object); + } + else { + value = isolateEval(functionString); + } + value.scope = scopeObject; + } + else { + value = new Code(functionString, scopeObject); + } + } + else if (elementType === BSON_DATA_DBPOINTER) { + // Get the code string size + var stringSize = buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + // Check if we have a valid string + if (stringSize <= 0 || + stringSize > buffer.length - index || + buffer[index + stringSize - 1] !== 0) + throw new BSONError('bad string length in bson'); + // Namespace + if (validation != null && validation.utf8) { + if (!validateUtf8(buffer, index, index + stringSize - 1)) { + throw new BSONError('Invalid UTF-8 string in BSON document'); + } + } + var namespace = buffer.toString('utf8', index, index + stringSize - 1); + // Update parse index position + index = index + stringSize; + // Read the oid + var oidBuffer = buffer_1.alloc(12); + buffer.copy(oidBuffer, 0, index, index + 12); + var oid = new ObjectId(oidBuffer); + // Update the index + index = index + 12; + // Upgrade to DBRef type + value = new DBRef(namespace, oid); + } + else { + throw new BSONError("Detected unknown BSON type ".concat(elementType.toString(16), " for fieldname \"").concat(name, "\"")); + } + if (name === '__proto__') { + Object.defineProperty(object, name, { + value: value, + writable: true, + enumerable: true, + configurable: true + }); + } + else { + object[name] = value; + } + } + // Check if the deserialization was against a valid array/object + if (size !== index - startIndex) { + if (isArray) + throw new BSONError('corrupt array bson'); + throw new BSONError('corrupt object bson'); + } + // if we did not find "$ref", "$id", "$db", or found an extraneous $key, don't make a DBRef + if (!isPossibleDBRef) + return object; + if (isDBRefLike(object)) { + var copy = Object.assign({}, object); + delete copy.$ref; + delete copy.$id; + delete copy.$db; + return new DBRef(object.$ref, object.$id, object.$db, copy); + } + return object; +} +/** + * Ensure eval is isolated, store the result in functionCache. + * + * @internal + */ +function isolateEval(functionString, functionCache, object) { + // eslint-disable-next-line @typescript-eslint/no-implied-eval + if (!functionCache) + return new Function(functionString); + // Check for cache hit, eval if missing and return cached function + if (functionCache[functionString] == null) { + // eslint-disable-next-line @typescript-eslint/no-implied-eval + functionCache[functionString] = new Function(functionString); + } + // Set the object + return functionCache[functionString].bind(object); +} +function getValidatedString(buffer, start, end, shouldValidateUtf8) { + var value = buffer.toString('utf8', start, end); + // if utf8 validation is on, do the check + if (shouldValidateUtf8) { + for (var i = 0; i < value.length; i++) { + if (value.charCodeAt(i) === 0xfffd) { + if (!validateUtf8(buffer, start, end)) { + throw new BSONError('Invalid UTF-8 string in BSON document'); + } + break; + } + } + } + return value; +} + +var regexp = /\x00/; // eslint-disable-line no-control-regex +var ignoreKeys = new Set(['$db', '$ref', '$id', '$clusterTime']); +/* + * isArray indicates if we are writing to a BSON array (type 0x04) + * which forces the "key" which really an array index as a string to be written as ascii + * This will catch any errors in index as a string generation + */ +function serializeString(buffer, key, value, index, isArray) { + // Encode String type + buffer[index++] = BSON_DATA_STRING; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes + 1; + buffer[index - 1] = 0; + // Write the string + var size = buffer.write(value, index + 4, undefined, 'utf8'); + // Write the size of the string to buffer + buffer[index + 3] = ((size + 1) >> 24) & 0xff; + buffer[index + 2] = ((size + 1) >> 16) & 0xff; + buffer[index + 1] = ((size + 1) >> 8) & 0xff; + buffer[index] = (size + 1) & 0xff; + // Update index + index = index + 4 + size; + // Write zero + buffer[index++] = 0; + return index; +} +var SPACE_FOR_FLOAT64 = new Uint8Array(8); +var DV_FOR_FLOAT64 = new DataView(SPACE_FOR_FLOAT64.buffer, SPACE_FOR_FLOAT64.byteOffset, SPACE_FOR_FLOAT64.byteLength); +function serializeNumber(buffer, key, value, index, isArray) { + // We have an integer value + // TODO(NODE-2529): Add support for big int + if (Number.isInteger(value) && + value >= BSON_INT32_MIN$1 && + value <= BSON_INT32_MAX$1) { + // If the value fits in 32 bits encode as int32 + // Set int type 32 bits or less + buffer[index++] = BSON_DATA_INT; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Write the int value + buffer[index++] = value & 0xff; + buffer[index++] = (value >> 8) & 0xff; + buffer[index++] = (value >> 16) & 0xff; + buffer[index++] = (value >> 24) & 0xff; + } + else { + // Encode as double + buffer[index++] = BSON_DATA_NUMBER; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Write float + DV_FOR_FLOAT64.setFloat64(0, value, true); + buffer.set(SPACE_FOR_FLOAT64, index); + // Adjust index + index = index + 8; + } + return index; +} +function serializeNull(buffer, key, _, index, isArray) { + // Set long type + buffer[index++] = BSON_DATA_NULL; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + return index; +} +function serializeBoolean(buffer, key, value, index, isArray) { + // Write the type + buffer[index++] = BSON_DATA_BOOLEAN; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Encode the boolean value + buffer[index++] = value ? 1 : 0; + return index; +} +function serializeDate(buffer, key, value, index, isArray) { + // Write the type + buffer[index++] = BSON_DATA_DATE; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Write the date + var dateInMilis = Long.fromNumber(value.getTime()); + var lowBits = dateInMilis.getLowBits(); + var highBits = dateInMilis.getHighBits(); + // Encode low bits + buffer[index++] = lowBits & 0xff; + buffer[index++] = (lowBits >> 8) & 0xff; + buffer[index++] = (lowBits >> 16) & 0xff; + buffer[index++] = (lowBits >> 24) & 0xff; + // Encode high bits + buffer[index++] = highBits & 0xff; + buffer[index++] = (highBits >> 8) & 0xff; + buffer[index++] = (highBits >> 16) & 0xff; + buffer[index++] = (highBits >> 24) & 0xff; + return index; +} +function serializeRegExp(buffer, key, value, index, isArray) { + // Write the type + buffer[index++] = BSON_DATA_REGEXP; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + if (value.source && value.source.match(regexp) != null) { + throw Error('value ' + value.source + ' must not contain null bytes'); + } + // Adjust the index + index = index + buffer.write(value.source, index, undefined, 'utf8'); + // Write zero + buffer[index++] = 0x00; + // Write the parameters + if (value.ignoreCase) + buffer[index++] = 0x69; // i + if (value.global) + buffer[index++] = 0x73; // s + if (value.multiline) + buffer[index++] = 0x6d; // m + // Add ending zero + buffer[index++] = 0x00; + return index; +} +function serializeBSONRegExp(buffer, key, value, index, isArray) { + // Write the type + buffer[index++] = BSON_DATA_REGEXP; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Check the pattern for 0 bytes + if (value.pattern.match(regexp) != null) { + // The BSON spec doesn't allow keys with null bytes because keys are + // null-terminated. + throw Error('pattern ' + value.pattern + ' must not contain null bytes'); + } + // Adjust the index + index = index + buffer.write(value.pattern, index, undefined, 'utf8'); + // Write zero + buffer[index++] = 0x00; + // Write the options + index = index + buffer.write(value.options.split('').sort().join(''), index, undefined, 'utf8'); + // Add ending zero + buffer[index++] = 0x00; + return index; +} +function serializeMinMax(buffer, key, value, index, isArray) { + // Write the type of either min or max key + if (value === null) { + buffer[index++] = BSON_DATA_NULL; + } + else if (value._bsontype === 'MinKey') { + buffer[index++] = BSON_DATA_MIN_KEY; + } + else { + buffer[index++] = BSON_DATA_MAX_KEY; + } + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + return index; +} +function serializeObjectId(buffer, key, value, index, isArray) { + // Write the type + buffer[index++] = BSON_DATA_OID; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Write the objectId into the shared buffer + if (typeof value.id === 'string') { + buffer.write(value.id, index, undefined, 'binary'); + } + else if (isUint8Array(value.id)) { + // Use the standard JS methods here because buffer.copy() is buggy with the + // browser polyfill + buffer.set(value.id.subarray(0, 12), index); + } + else { + throw new BSONTypeError('object [' + JSON.stringify(value) + '] is not a valid ObjectId'); + } + // Adjust index + return index + 12; +} +function serializeBuffer(buffer, key, value, index, isArray) { + // Write the type + buffer[index++] = BSON_DATA_BINARY; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Get size of the buffer (current write point) + var size = value.length; + // Write the size of the string to buffer + buffer[index++] = size & 0xff; + buffer[index++] = (size >> 8) & 0xff; + buffer[index++] = (size >> 16) & 0xff; + buffer[index++] = (size >> 24) & 0xff; + // Write the default subtype + buffer[index++] = BSON_BINARY_SUBTYPE_DEFAULT; + // Copy the content form the binary field to the buffer + buffer.set(ensureBuffer(value), index); + // Adjust the index + index = index + size; + return index; +} +function serializeObject(buffer, key, value, index, checkKeys, depth, serializeFunctions, ignoreUndefined, isArray, path) { + if (checkKeys === void 0) { checkKeys = false; } + if (depth === void 0) { depth = 0; } + if (serializeFunctions === void 0) { serializeFunctions = false; } + if (ignoreUndefined === void 0) { ignoreUndefined = true; } + if (isArray === void 0) { isArray = false; } + if (path === void 0) { path = []; } + for (var i = 0; i < path.length; i++) { + if (path[i] === value) + throw new BSONError('cyclic dependency detected'); + } + // Push value to stack + path.push(value); + // Write the type + buffer[index++] = Array.isArray(value) ? BSON_DATA_ARRAY : BSON_DATA_OBJECT; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + var endIndex = serializeInto(buffer, value, checkKeys, index, depth + 1, serializeFunctions, ignoreUndefined, path); + // Pop stack + path.pop(); + return endIndex; +} +function serializeDecimal128(buffer, key, value, index, isArray) { + buffer[index++] = BSON_DATA_DECIMAL128; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Write the data from the value + // Prefer the standard JS methods because their typechecking is not buggy, + // unlike the `buffer` polyfill's. + buffer.set(value.bytes.subarray(0, 16), index); + return index + 16; +} +function serializeLong(buffer, key, value, index, isArray) { + // Write the type + buffer[index++] = + value._bsontype === 'Long' ? BSON_DATA_LONG : BSON_DATA_TIMESTAMP; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Write the date + var lowBits = value.getLowBits(); + var highBits = value.getHighBits(); + // Encode low bits + buffer[index++] = lowBits & 0xff; + buffer[index++] = (lowBits >> 8) & 0xff; + buffer[index++] = (lowBits >> 16) & 0xff; + buffer[index++] = (lowBits >> 24) & 0xff; + // Encode high bits + buffer[index++] = highBits & 0xff; + buffer[index++] = (highBits >> 8) & 0xff; + buffer[index++] = (highBits >> 16) & 0xff; + buffer[index++] = (highBits >> 24) & 0xff; + return index; +} +function serializeInt32(buffer, key, value, index, isArray) { + value = value.valueOf(); + // Set int type 32 bits or less + buffer[index++] = BSON_DATA_INT; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Write the int value + buffer[index++] = value & 0xff; + buffer[index++] = (value >> 8) & 0xff; + buffer[index++] = (value >> 16) & 0xff; + buffer[index++] = (value >> 24) & 0xff; + return index; +} +function serializeDouble(buffer, key, value, index, isArray) { + // Encode as double + buffer[index++] = BSON_DATA_NUMBER; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Write float + DV_FOR_FLOAT64.setFloat64(0, value.value, true); + buffer.set(SPACE_FOR_FLOAT64, index); + // Adjust index + index = index + 8; + return index; +} +function serializeFunction(buffer, key, value, index, _checkKeys, _depth, isArray) { + buffer[index++] = BSON_DATA_CODE; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Function string + var functionString = normalizedFunctionString(value); + // Write the string + var size = buffer.write(functionString, index + 4, undefined, 'utf8') + 1; + // Write the size of the string to buffer + buffer[index] = size & 0xff; + buffer[index + 1] = (size >> 8) & 0xff; + buffer[index + 2] = (size >> 16) & 0xff; + buffer[index + 3] = (size >> 24) & 0xff; + // Update index + index = index + 4 + size - 1; + // Write zero + buffer[index++] = 0; + return index; +} +function serializeCode(buffer, key, value, index, checkKeys, depth, serializeFunctions, ignoreUndefined, isArray) { + if (checkKeys === void 0) { checkKeys = false; } + if (depth === void 0) { depth = 0; } + if (serializeFunctions === void 0) { serializeFunctions = false; } + if (ignoreUndefined === void 0) { ignoreUndefined = true; } + if (isArray === void 0) { isArray = false; } + if (value.scope && typeof value.scope === 'object') { + // Write the type + buffer[index++] = BSON_DATA_CODE_W_SCOPE; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Starting index + var startIndex = index; + // Serialize the function + // Get the function string + var functionString = typeof value.code === 'string' ? value.code : value.code.toString(); + // Index adjustment + index = index + 4; + // Write string into buffer + var codeSize = buffer.write(functionString, index + 4, undefined, 'utf8') + 1; + // Write the size of the string to buffer + buffer[index] = codeSize & 0xff; + buffer[index + 1] = (codeSize >> 8) & 0xff; + buffer[index + 2] = (codeSize >> 16) & 0xff; + buffer[index + 3] = (codeSize >> 24) & 0xff; + // Write end 0 + buffer[index + 4 + codeSize - 1] = 0; + // Write the + index = index + codeSize + 4; + // + // Serialize the scope value + var endIndex = serializeInto(buffer, value.scope, checkKeys, index, depth + 1, serializeFunctions, ignoreUndefined); + index = endIndex - 1; + // Writ the total + var totalSize = endIndex - startIndex; + // Write the total size of the object + buffer[startIndex++] = totalSize & 0xff; + buffer[startIndex++] = (totalSize >> 8) & 0xff; + buffer[startIndex++] = (totalSize >> 16) & 0xff; + buffer[startIndex++] = (totalSize >> 24) & 0xff; + // Write trailing zero + buffer[index++] = 0; + } + else { + buffer[index++] = BSON_DATA_CODE; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Function string + var functionString = value.code.toString(); + // Write the string + var size = buffer.write(functionString, index + 4, undefined, 'utf8') + 1; + // Write the size of the string to buffer + buffer[index] = size & 0xff; + buffer[index + 1] = (size >> 8) & 0xff; + buffer[index + 2] = (size >> 16) & 0xff; + buffer[index + 3] = (size >> 24) & 0xff; + // Update index + index = index + 4 + size - 1; + // Write zero + buffer[index++] = 0; + } + return index; +} +function serializeBinary(buffer, key, value, index, isArray) { + // Write the type + buffer[index++] = BSON_DATA_BINARY; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Extract the buffer + var data = value.value(true); + // Calculate size + var size = value.position; + // Add the deprecated 02 type 4 bytes of size to total + if (value.sub_type === Binary.SUBTYPE_BYTE_ARRAY) + size = size + 4; + // Write the size of the string to buffer + buffer[index++] = size & 0xff; + buffer[index++] = (size >> 8) & 0xff; + buffer[index++] = (size >> 16) & 0xff; + buffer[index++] = (size >> 24) & 0xff; + // Write the subtype to the buffer + buffer[index++] = value.sub_type; + // If we have binary type 2 the 4 first bytes are the size + if (value.sub_type === Binary.SUBTYPE_BYTE_ARRAY) { + size = size - 4; + buffer[index++] = size & 0xff; + buffer[index++] = (size >> 8) & 0xff; + buffer[index++] = (size >> 16) & 0xff; + buffer[index++] = (size >> 24) & 0xff; + } + // Write the data to the object + buffer.set(data, index); + // Adjust the index + index = index + value.position; + return index; +} +function serializeSymbol(buffer, key, value, index, isArray) { + // Write the type + buffer[index++] = BSON_DATA_SYMBOL; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Write the string + var size = buffer.write(value.value, index + 4, undefined, 'utf8') + 1; + // Write the size of the string to buffer + buffer[index] = size & 0xff; + buffer[index + 1] = (size >> 8) & 0xff; + buffer[index + 2] = (size >> 16) & 0xff; + buffer[index + 3] = (size >> 24) & 0xff; + // Update index + index = index + 4 + size - 1; + // Write zero + buffer[index++] = 0x00; + return index; +} +function serializeDBRef(buffer, key, value, index, depth, serializeFunctions, isArray) { + // Write the type + buffer[index++] = BSON_DATA_OBJECT; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + var startIndex = index; + var output = { + $ref: value.collection || value.namespace, + $id: value.oid + }; + if (value.db != null) { + output.$db = value.db; + } + output = Object.assign(output, value.fields); + var endIndex = serializeInto(buffer, output, false, index, depth + 1, serializeFunctions); + // Calculate object size + var size = endIndex - startIndex; + // Write the size + buffer[startIndex++] = size & 0xff; + buffer[startIndex++] = (size >> 8) & 0xff; + buffer[startIndex++] = (size >> 16) & 0xff; + buffer[startIndex++] = (size >> 24) & 0xff; + // Set index + return endIndex; +} +function serializeInto(buffer, object, checkKeys, startingIndex, depth, serializeFunctions, ignoreUndefined, path) { + if (checkKeys === void 0) { checkKeys = false; } + if (startingIndex === void 0) { startingIndex = 0; } + if (depth === void 0) { depth = 0; } + if (serializeFunctions === void 0) { serializeFunctions = false; } + if (ignoreUndefined === void 0) { ignoreUndefined = true; } + if (path === void 0) { path = []; } + startingIndex = startingIndex || 0; + path = path || []; + // Push the object to the path + path.push(object); + // Start place to serialize into + var index = startingIndex + 4; + // Special case isArray + if (Array.isArray(object)) { + // Get object keys + for (var i = 0; i < object.length; i++) { + var key = "".concat(i); + var value = object[i]; + // Is there an override value + if (typeof (value === null || value === void 0 ? void 0 : value.toBSON) === 'function') { + value = value.toBSON(); + } + if (typeof value === 'string') { + index = serializeString(buffer, key, value, index, true); + } + else if (typeof value === 'number') { + index = serializeNumber(buffer, key, value, index, true); + } + else if (typeof value === 'bigint') { + throw new BSONTypeError('Unsupported type BigInt, please use Decimal128'); + } + else if (typeof value === 'boolean') { + index = serializeBoolean(buffer, key, value, index, true); + } + else if (value instanceof Date || isDate(value)) { + index = serializeDate(buffer, key, value, index, true); + } + else if (value === undefined) { + index = serializeNull(buffer, key, value, index, true); + } + else if (value === null) { + index = serializeNull(buffer, key, value, index, true); + } + else if (value['_bsontype'] === 'ObjectId' || value['_bsontype'] === 'ObjectID') { + index = serializeObjectId(buffer, key, value, index, true); + } + else if (isUint8Array(value)) { + index = serializeBuffer(buffer, key, value, index, true); + } + else if (value instanceof RegExp || isRegExp(value)) { + index = serializeRegExp(buffer, key, value, index, true); + } + else if (typeof value === 'object' && value['_bsontype'] == null) { + index = serializeObject(buffer, key, value, index, checkKeys, depth, serializeFunctions, ignoreUndefined, true, path); + } + else if (typeof value === 'object' && + isBSONType(value) && + value._bsontype === 'Decimal128') { + index = serializeDecimal128(buffer, key, value, index, true); + } + else if (value['_bsontype'] === 'Long' || value['_bsontype'] === 'Timestamp') { + index = serializeLong(buffer, key, value, index, true); + } + else if (value['_bsontype'] === 'Double') { + index = serializeDouble(buffer, key, value, index, true); + } + else if (typeof value === 'function' && serializeFunctions) { + index = serializeFunction(buffer, key, value, index, checkKeys, depth, true); + } + else if (value['_bsontype'] === 'Code') { + index = serializeCode(buffer, key, value, index, checkKeys, depth, serializeFunctions, ignoreUndefined, true); + } + else if (value['_bsontype'] === 'Binary') { + index = serializeBinary(buffer, key, value, index, true); + } + else if (value['_bsontype'] === 'Symbol') { + index = serializeSymbol(buffer, key, value, index, true); + } + else if (value['_bsontype'] === 'DBRef') { + index = serializeDBRef(buffer, key, value, index, depth, serializeFunctions, true); + } + else if (value['_bsontype'] === 'BSONRegExp') { + index = serializeBSONRegExp(buffer, key, value, index, true); + } + else if (value['_bsontype'] === 'Int32') { + index = serializeInt32(buffer, key, value, index, true); + } + else if (value['_bsontype'] === 'MinKey' || value['_bsontype'] === 'MaxKey') { + index = serializeMinMax(buffer, key, value, index, true); + } + else if (typeof value['_bsontype'] !== 'undefined') { + throw new BSONTypeError("Unrecognized or invalid _bsontype: ".concat(String(value['_bsontype']))); + } + } + } + else if (object instanceof bsonMap || isMap(object)) { + var iterator = object.entries(); + var done = false; + while (!done) { + // Unpack the next entry + var entry = iterator.next(); + done = !!entry.done; + // Are we done, then skip and terminate + if (done) + continue; + // Get the entry values + var key = entry.value[0]; + var value = entry.value[1]; + // Check the type of the value + var type = typeof value; + // Check the key and throw error if it's illegal + if (typeof key === 'string' && !ignoreKeys.has(key)) { + if (key.match(regexp) != null) { + // The BSON spec doesn't allow keys with null bytes because keys are + // null-terminated. + throw Error('key ' + key + ' must not contain null bytes'); + } + if (checkKeys) { + if ('$' === key[0]) { + throw Error('key ' + key + " must not start with '$'"); + } + else if (~key.indexOf('.')) { + throw Error('key ' + key + " must not contain '.'"); + } + } + } + if (type === 'string') { + index = serializeString(buffer, key, value, index); + } + else if (type === 'number') { + index = serializeNumber(buffer, key, value, index); + } + else if (type === 'bigint' || isBigInt64Array(value) || isBigUInt64Array(value)) { + throw new BSONTypeError('Unsupported type BigInt, please use Decimal128'); + } + else if (type === 'boolean') { + index = serializeBoolean(buffer, key, value, index); + } + else if (value instanceof Date || isDate(value)) { + index = serializeDate(buffer, key, value, index); + } + else if (value === null || (value === undefined && ignoreUndefined === false)) { + index = serializeNull(buffer, key, value, index); + } + else if (value['_bsontype'] === 'ObjectId' || value['_bsontype'] === 'ObjectID') { + index = serializeObjectId(buffer, key, value, index); + } + else if (isUint8Array(value)) { + index = serializeBuffer(buffer, key, value, index); + } + else if (value instanceof RegExp || isRegExp(value)) { + index = serializeRegExp(buffer, key, value, index); + } + else if (type === 'object' && value['_bsontype'] == null) { + index = serializeObject(buffer, key, value, index, checkKeys, depth, serializeFunctions, ignoreUndefined, false, path); + } + else if (type === 'object' && value['_bsontype'] === 'Decimal128') { + index = serializeDecimal128(buffer, key, value, index); + } + else if (value['_bsontype'] === 'Long' || value['_bsontype'] === 'Timestamp') { + index = serializeLong(buffer, key, value, index); + } + else if (value['_bsontype'] === 'Double') { + index = serializeDouble(buffer, key, value, index); + } + else if (value['_bsontype'] === 'Code') { + index = serializeCode(buffer, key, value, index, checkKeys, depth, serializeFunctions, ignoreUndefined); + } + else if (typeof value === 'function' && serializeFunctions) { + index = serializeFunction(buffer, key, value, index, checkKeys, depth, serializeFunctions); + } + else if (value['_bsontype'] === 'Binary') { + index = serializeBinary(buffer, key, value, index); + } + else if (value['_bsontype'] === 'Symbol') { + index = serializeSymbol(buffer, key, value, index); + } + else if (value['_bsontype'] === 'DBRef') { + index = serializeDBRef(buffer, key, value, index, depth, serializeFunctions); + } + else if (value['_bsontype'] === 'BSONRegExp') { + index = serializeBSONRegExp(buffer, key, value, index); + } + else if (value['_bsontype'] === 'Int32') { + index = serializeInt32(buffer, key, value, index); + } + else if (value['_bsontype'] === 'MinKey' || value['_bsontype'] === 'MaxKey') { + index = serializeMinMax(buffer, key, value, index); + } + else if (typeof value['_bsontype'] !== 'undefined') { + throw new BSONTypeError("Unrecognized or invalid _bsontype: ".concat(String(value['_bsontype']))); + } + } + } + else { + if (typeof (object === null || object === void 0 ? void 0 : object.toBSON) === 'function') { + // Provided a custom serialization method + object = object.toBSON(); + if (object != null && typeof object !== 'object') { + throw new BSONTypeError('toBSON function did not return an object'); + } + } + // Iterate over all the keys + for (var key in object) { + var value = object[key]; + // Is there an override value + if (typeof (value === null || value === void 0 ? void 0 : value.toBSON) === 'function') { + value = value.toBSON(); + } + // Check the type of the value + var type = typeof value; + // Check the key and throw error if it's illegal + if (typeof key === 'string' && !ignoreKeys.has(key)) { + if (key.match(regexp) != null) { + // The BSON spec doesn't allow keys with null bytes because keys are + // null-terminated. + throw Error('key ' + key + ' must not contain null bytes'); + } + if (checkKeys) { + if ('$' === key[0]) { + throw Error('key ' + key + " must not start with '$'"); + } + else if (~key.indexOf('.')) { + throw Error('key ' + key + " must not contain '.'"); + } + } + } + if (type === 'string') { + index = serializeString(buffer, key, value, index); + } + else if (type === 'number') { + index = serializeNumber(buffer, key, value, index); + } + else if (type === 'bigint') { + throw new BSONTypeError('Unsupported type BigInt, please use Decimal128'); + } + else if (type === 'boolean') { + index = serializeBoolean(buffer, key, value, index); + } + else if (value instanceof Date || isDate(value)) { + index = serializeDate(buffer, key, value, index); + } + else if (value === undefined) { + if (ignoreUndefined === false) + index = serializeNull(buffer, key, value, index); + } + else if (value === null) { + index = serializeNull(buffer, key, value, index); + } + else if (value['_bsontype'] === 'ObjectId' || value['_bsontype'] === 'ObjectID') { + index = serializeObjectId(buffer, key, value, index); + } + else if (isUint8Array(value)) { + index = serializeBuffer(buffer, key, value, index); + } + else if (value instanceof RegExp || isRegExp(value)) { + index = serializeRegExp(buffer, key, value, index); + } + else if (type === 'object' && value['_bsontype'] == null) { + index = serializeObject(buffer, key, value, index, checkKeys, depth, serializeFunctions, ignoreUndefined, false, path); + } + else if (type === 'object' && value['_bsontype'] === 'Decimal128') { + index = serializeDecimal128(buffer, key, value, index); + } + else if (value['_bsontype'] === 'Long' || value['_bsontype'] === 'Timestamp') { + index = serializeLong(buffer, key, value, index); + } + else if (value['_bsontype'] === 'Double') { + index = serializeDouble(buffer, key, value, index); + } + else if (value['_bsontype'] === 'Code') { + index = serializeCode(buffer, key, value, index, checkKeys, depth, serializeFunctions, ignoreUndefined); + } + else if (typeof value === 'function' && serializeFunctions) { + index = serializeFunction(buffer, key, value, index, checkKeys, depth, serializeFunctions); + } + else if (value['_bsontype'] === 'Binary') { + index = serializeBinary(buffer, key, value, index); + } + else if (value['_bsontype'] === 'Symbol') { + index = serializeSymbol(buffer, key, value, index); + } + else if (value['_bsontype'] === 'DBRef') { + index = serializeDBRef(buffer, key, value, index, depth, serializeFunctions); + } + else if (value['_bsontype'] === 'BSONRegExp') { + index = serializeBSONRegExp(buffer, key, value, index); + } + else if (value['_bsontype'] === 'Int32') { + index = serializeInt32(buffer, key, value, index); + } + else if (value['_bsontype'] === 'MinKey' || value['_bsontype'] === 'MaxKey') { + index = serializeMinMax(buffer, key, value, index); + } + else if (typeof value['_bsontype'] !== 'undefined') { + throw new BSONTypeError("Unrecognized or invalid _bsontype: ".concat(String(value['_bsontype']))); + } + } + } + // Remove the path + path.pop(); + // Final padding byte for object + buffer[index++] = 0x00; + // Final size + var size = index - startingIndex; + // Write the size of the object + buffer[startingIndex++] = size & 0xff; + buffer[startingIndex++] = (size >> 8) & 0xff; + buffer[startingIndex++] = (size >> 16) & 0xff; + buffer[startingIndex++] = (size >> 24) & 0xff; + return index; +} + +/** @internal */ +// Default Max Size +var MAXSIZE = 1024 * 1024 * 17; +// Current Internal Temporary Serialization Buffer +var buffer = buffer_1.alloc(MAXSIZE); +/** + * Sets the size of the internal serialization buffer. + * + * @param size - The desired size for the internal serialization buffer + * @public + */ +function setInternalBufferSize(size) { + // Resize the internal serialization buffer if needed + if (buffer.length < size) { + buffer = buffer_1.alloc(size); + } +} +/** + * Serialize a Javascript object. + * + * @param object - the Javascript object to serialize. + * @returns Buffer object containing the serialized object. + * @public + */ +function serialize(object, options) { + if (options === void 0) { options = {}; } + // Unpack the options + var checkKeys = typeof options.checkKeys === 'boolean' ? options.checkKeys : false; + var serializeFunctions = typeof options.serializeFunctions === 'boolean' ? options.serializeFunctions : false; + var ignoreUndefined = typeof options.ignoreUndefined === 'boolean' ? options.ignoreUndefined : true; + var minInternalBufferSize = typeof options.minInternalBufferSize === 'number' ? options.minInternalBufferSize : MAXSIZE; + // Resize the internal serialization buffer if needed + if (buffer.length < minInternalBufferSize) { + buffer = buffer_1.alloc(minInternalBufferSize); + } + // Attempt to serialize + var serializationIndex = serializeInto(buffer, object, checkKeys, 0, 0, serializeFunctions, ignoreUndefined, []); + // Create the final buffer + var finishedBuffer = buffer_1.alloc(serializationIndex); + // Copy into the finished buffer + buffer.copy(finishedBuffer, 0, 0, finishedBuffer.length); + // Return the buffer + return finishedBuffer; +} +/** + * Serialize a Javascript object using a predefined Buffer and index into the buffer, + * useful when pre-allocating the space for serialization. + * + * @param object - the Javascript object to serialize. + * @param finalBuffer - the Buffer you pre-allocated to store the serialized BSON object. + * @returns the index pointing to the last written byte in the buffer. + * @public + */ +function serializeWithBufferAndIndex(object, finalBuffer, options) { + if (options === void 0) { options = {}; } + // Unpack the options + var checkKeys = typeof options.checkKeys === 'boolean' ? options.checkKeys : false; + var serializeFunctions = typeof options.serializeFunctions === 'boolean' ? options.serializeFunctions : false; + var ignoreUndefined = typeof options.ignoreUndefined === 'boolean' ? options.ignoreUndefined : true; + var startIndex = typeof options.index === 'number' ? options.index : 0; + // Attempt to serialize + var serializationIndex = serializeInto(buffer, object, checkKeys, 0, 0, serializeFunctions, ignoreUndefined); + buffer.copy(finalBuffer, startIndex, 0, serializationIndex); + // Return the index + return startIndex + serializationIndex - 1; +} +/** + * Deserialize data as BSON. + * + * @param buffer - the buffer containing the serialized set of BSON documents. + * @returns returns the deserialized Javascript Object. + * @public + */ +function deserialize(buffer, options) { + if (options === void 0) { options = {}; } + return deserialize$1(buffer instanceof buffer_1 ? buffer : ensureBuffer(buffer), options); +} +/** + * Calculate the bson size for a passed in Javascript object. + * + * @param object - the Javascript object to calculate the BSON byte size for + * @returns size of BSON object in bytes + * @public + */ +function calculateObjectSize(object, options) { + if (options === void 0) { options = {}; } + options = options || {}; + var serializeFunctions = typeof options.serializeFunctions === 'boolean' ? options.serializeFunctions : false; + var ignoreUndefined = typeof options.ignoreUndefined === 'boolean' ? options.ignoreUndefined : true; + return calculateObjectSize$1(object, serializeFunctions, ignoreUndefined); +} +/** + * Deserialize stream data as BSON documents. + * + * @param data - the buffer containing the serialized set of BSON documents. + * @param startIndex - the start index in the data Buffer where the deserialization is to start. + * @param numberOfDocuments - number of documents to deserialize. + * @param documents - an array where to store the deserialized documents. + * @param docStartIndex - the index in the documents array from where to start inserting documents. + * @param options - additional options used for the deserialization. + * @returns next index in the buffer after deserialization **x** numbers of documents. + * @public + */ +function deserializeStream(data, startIndex, numberOfDocuments, documents, docStartIndex, options) { + var internalOptions = Object.assign({ allowObjectSmallerThanBufferSize: true, index: 0 }, options); + var bufferData = ensureBuffer(data); + var index = startIndex; + // Loop over all documents + for (var i = 0; i < numberOfDocuments; i++) { + // Find size of the document + var size = bufferData[index] | + (bufferData[index + 1] << 8) | + (bufferData[index + 2] << 16) | + (bufferData[index + 3] << 24); + // Update options with index + internalOptions.index = index; + // Parse the document at this point + documents[docStartIndex + i] = deserialize$1(bufferData, internalOptions); + // Adjust index by the document size + index = index + size; + } + // Return object containing end index of parsing and list of documents + return index; +} +/** + * BSON default export + * @deprecated Please use named exports + * @privateRemarks + * We want to someday deprecate the default export, + * so none of the new TS types are being exported on the default + * @public + */ +var BSON = { + Binary: Binary, + Code: Code, + DBRef: DBRef, + Decimal128: Decimal128, + Double: Double, + Int32: Int32, + Long: Long, + UUID: UUID, + Map: bsonMap, + MaxKey: MaxKey, + MinKey: MinKey, + ObjectId: ObjectId, + ObjectID: ObjectId, + BSONRegExp: BSONRegExp, + BSONSymbol: BSONSymbol, + Timestamp: Timestamp, + EJSON: EJSON, + setInternalBufferSize: setInternalBufferSize, + serialize: serialize, + serializeWithBufferAndIndex: serializeWithBufferAndIndex, + deserialize: deserialize, + calculateObjectSize: calculateObjectSize, + deserializeStream: deserializeStream, + BSONError: BSONError, + BSONTypeError: BSONTypeError +}; + +export default BSON; +export { BSONError, BSONRegExp, BSONSymbol, BSONTypeError, BSON_BINARY_SUBTYPE_BYTE_ARRAY, BSON_BINARY_SUBTYPE_COLUMN, BSON_BINARY_SUBTYPE_DEFAULT, BSON_BINARY_SUBTYPE_ENCRYPTED, BSON_BINARY_SUBTYPE_FUNCTION, BSON_BINARY_SUBTYPE_MD5, BSON_BINARY_SUBTYPE_USER_DEFINED, BSON_BINARY_SUBTYPE_UUID, BSON_BINARY_SUBTYPE_UUID_NEW, BSON_DATA_ARRAY, BSON_DATA_BINARY, BSON_DATA_BOOLEAN, BSON_DATA_CODE, BSON_DATA_CODE_W_SCOPE, BSON_DATA_DATE, BSON_DATA_DBPOINTER, BSON_DATA_DECIMAL128, BSON_DATA_INT, BSON_DATA_LONG, BSON_DATA_MAX_KEY, BSON_DATA_MIN_KEY, BSON_DATA_NULL, BSON_DATA_NUMBER, BSON_DATA_OBJECT, BSON_DATA_OID, BSON_DATA_REGEXP, BSON_DATA_STRING, BSON_DATA_SYMBOL, BSON_DATA_TIMESTAMP, BSON_DATA_UNDEFINED, BSON_INT32_MAX$1 as BSON_INT32_MAX, BSON_INT32_MIN$1 as BSON_INT32_MIN, BSON_INT64_MAX$1 as BSON_INT64_MAX, BSON_INT64_MIN$1 as BSON_INT64_MIN, Binary, Code, DBRef, Decimal128, Double, EJSON, Int32, Long, LongWithoutOverridesClass, bsonMap as Map, MaxKey, MinKey, ObjectId as ObjectID, ObjectId, Timestamp, UUID, calculateObjectSize, deserialize, deserializeStream, serialize, serializeWithBufferAndIndex, setInternalBufferSize }; +//# sourceMappingURL=bson.browser.esm.js.map diff --git a/node_modules/bson/dist/bson.browser.esm.js.map b/node_modules/bson/dist/bson.browser.esm.js.map new file mode 100644 index 000000000..779cc8cc0 --- /dev/null +++ b/node_modules/bson/dist/bson.browser.esm.js.map @@ -0,0 +1 @@ +{"version":3,"file":"bson.browser.esm.js","sources":["../node_modules/base64-js/index.js","../node_modules/ieee754/index.js","../node_modules/buffer/index.js","../node_modules/tslib/tslib.es6.js","../src/error.ts","../src/utils/global.ts","../src/parser/utils.ts","../src/ensure_buffer.ts","../src/uuid_utils.ts","../src/constants.ts","../src/binary.ts","../src/code.ts","../src/db_ref.ts","../src/long.ts","../src/decimal128.ts","../src/double.ts","../src/int_32.ts","../src/max_key.ts","../src/min_key.ts","../src/objectid.ts","../src/regexp.ts","../src/symbol.ts","../src/timestamp.ts","../src/extended_json.ts","../src/map.ts","../src/parser/calculate_size.ts","../src/validate_utf8.ts","../src/parser/deserializer.ts","../src/parser/serializer.ts","../src/bson.ts"],"sourcesContent":["'use strict'\n\nexports.byteLength = byteLength\nexports.toByteArray = toByteArray\nexports.fromByteArray = fromByteArray\n\nvar lookup = []\nvar revLookup = []\nvar Arr = typeof Uint8Array !== 'undefined' ? Uint8Array : Array\n\nvar code = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'\nfor (var i = 0, len = code.length; i < len; ++i) {\n lookup[i] = code[i]\n revLookup[code.charCodeAt(i)] = i\n}\n\n// Support decoding URL-safe base64 strings, as Node.js does.\n// See: https://en.wikipedia.org/wiki/Base64#URL_applications\nrevLookup['-'.charCodeAt(0)] = 62\nrevLookup['_'.charCodeAt(0)] = 63\n\nfunction getLens (b64) {\n var len = b64.length\n\n if (len % 4 > 0) {\n throw new Error('Invalid string. Length must be a multiple of 4')\n }\n\n // Trim off extra bytes after placeholder bytes are found\n // See: https://github.com/beatgammit/base64-js/issues/42\n var validLen = b64.indexOf('=')\n if (validLen === -1) validLen = len\n\n var placeHoldersLen = validLen === len\n ? 0\n : 4 - (validLen % 4)\n\n return [validLen, placeHoldersLen]\n}\n\n// base64 is 4/3 + up to two characters of the original data\nfunction byteLength (b64) {\n var lens = getLens(b64)\n var validLen = lens[0]\n var placeHoldersLen = lens[1]\n return ((validLen + placeHoldersLen) * 3 / 4) - placeHoldersLen\n}\n\nfunction _byteLength (b64, validLen, placeHoldersLen) {\n return ((validLen + placeHoldersLen) * 3 / 4) - placeHoldersLen\n}\n\nfunction toByteArray (b64) {\n var tmp\n var lens = getLens(b64)\n var validLen = lens[0]\n var placeHoldersLen = lens[1]\n\n var arr = new Arr(_byteLength(b64, validLen, placeHoldersLen))\n\n var curByte = 0\n\n // if there are placeholders, only get up to the last complete 4 chars\n var len = placeHoldersLen > 0\n ? validLen - 4\n : validLen\n\n var i\n for (i = 0; i < len; i += 4) {\n tmp =\n (revLookup[b64.charCodeAt(i)] << 18) |\n (revLookup[b64.charCodeAt(i + 1)] << 12) |\n (revLookup[b64.charCodeAt(i + 2)] << 6) |\n revLookup[b64.charCodeAt(i + 3)]\n arr[curByte++] = (tmp >> 16) & 0xFF\n arr[curByte++] = (tmp >> 8) & 0xFF\n arr[curByte++] = tmp & 0xFF\n }\n\n if (placeHoldersLen === 2) {\n tmp =\n (revLookup[b64.charCodeAt(i)] << 2) |\n (revLookup[b64.charCodeAt(i + 1)] >> 4)\n arr[curByte++] = tmp & 0xFF\n }\n\n if (placeHoldersLen === 1) {\n tmp =\n (revLookup[b64.charCodeAt(i)] << 10) |\n (revLookup[b64.charCodeAt(i + 1)] << 4) |\n (revLookup[b64.charCodeAt(i + 2)] >> 2)\n arr[curByte++] = (tmp >> 8) & 0xFF\n arr[curByte++] = tmp & 0xFF\n }\n\n return arr\n}\n\nfunction tripletToBase64 (num) {\n return lookup[num >> 18 & 0x3F] +\n lookup[num >> 12 & 0x3F] +\n lookup[num >> 6 & 0x3F] +\n lookup[num & 0x3F]\n}\n\nfunction encodeChunk (uint8, start, end) {\n var tmp\n var output = []\n for (var i = start; i < end; i += 3) {\n tmp =\n ((uint8[i] << 16) & 0xFF0000) +\n ((uint8[i + 1] << 8) & 0xFF00) +\n (uint8[i + 2] & 0xFF)\n output.push(tripletToBase64(tmp))\n }\n return output.join('')\n}\n\nfunction fromByteArray (uint8) {\n var tmp\n var len = uint8.length\n var extraBytes = len % 3 // if we have 1 byte left, pad 2 bytes\n var parts = []\n var maxChunkLength = 16383 // must be multiple of 3\n\n // go through the array every three bytes, we'll deal with trailing stuff later\n for (var i = 0, len2 = len - extraBytes; i < len2; i += maxChunkLength) {\n parts.push(encodeChunk(uint8, i, (i + maxChunkLength) > len2 ? len2 : (i + maxChunkLength)))\n }\n\n // pad the end with zeros, but make sure to not forget the extra bytes\n if (extraBytes === 1) {\n tmp = uint8[len - 1]\n parts.push(\n lookup[tmp >> 2] +\n lookup[(tmp << 4) & 0x3F] +\n '=='\n )\n } else if (extraBytes === 2) {\n tmp = (uint8[len - 2] << 8) + uint8[len - 1]\n parts.push(\n lookup[tmp >> 10] +\n lookup[(tmp >> 4) & 0x3F] +\n lookup[(tmp << 2) & 0x3F] +\n '='\n )\n }\n\n return parts.join('')\n}\n","/*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh */\nexports.read = function (buffer, offset, isLE, mLen, nBytes) {\n var e, m\n var eLen = (nBytes * 8) - mLen - 1\n var eMax = (1 << eLen) - 1\n var eBias = eMax >> 1\n var nBits = -7\n var i = isLE ? (nBytes - 1) : 0\n var d = isLE ? -1 : 1\n var s = buffer[offset + i]\n\n i += d\n\n e = s & ((1 << (-nBits)) - 1)\n s >>= (-nBits)\n nBits += eLen\n for (; nBits > 0; e = (e * 256) + buffer[offset + i], i += d, nBits -= 8) {}\n\n m = e & ((1 << (-nBits)) - 1)\n e >>= (-nBits)\n nBits += mLen\n for (; nBits > 0; m = (m * 256) + buffer[offset + i], i += d, nBits -= 8) {}\n\n if (e === 0) {\n e = 1 - eBias\n } else if (e === eMax) {\n return m ? NaN : ((s ? -1 : 1) * Infinity)\n } else {\n m = m + Math.pow(2, mLen)\n e = e - eBias\n }\n return (s ? -1 : 1) * m * Math.pow(2, e - mLen)\n}\n\nexports.write = function (buffer, value, offset, isLE, mLen, nBytes) {\n var e, m, c\n var eLen = (nBytes * 8) - mLen - 1\n var eMax = (1 << eLen) - 1\n var eBias = eMax >> 1\n var rt = (mLen === 23 ? Math.pow(2, -24) - Math.pow(2, -77) : 0)\n var i = isLE ? 0 : (nBytes - 1)\n var d = isLE ? 1 : -1\n var s = value < 0 || (value === 0 && 1 / value < 0) ? 1 : 0\n\n value = Math.abs(value)\n\n if (isNaN(value) || value === Infinity) {\n m = isNaN(value) ? 1 : 0\n e = eMax\n } else {\n e = Math.floor(Math.log(value) / Math.LN2)\n if (value * (c = Math.pow(2, -e)) < 1) {\n e--\n c *= 2\n }\n if (e + eBias >= 1) {\n value += rt / c\n } else {\n value += rt * Math.pow(2, 1 - eBias)\n }\n if (value * c >= 2) {\n e++\n c /= 2\n }\n\n if (e + eBias >= eMax) {\n m = 0\n e = eMax\n } else if (e + eBias >= 1) {\n m = ((value * c) - 1) * Math.pow(2, mLen)\n e = e + eBias\n } else {\n m = value * Math.pow(2, eBias - 1) * Math.pow(2, mLen)\n e = 0\n }\n }\n\n for (; mLen >= 8; buffer[offset + i] = m & 0xff, i += d, m /= 256, mLen -= 8) {}\n\n e = (e << mLen) | m\n eLen += mLen\n for (; eLen > 0; buffer[offset + i] = e & 0xff, i += d, e /= 256, eLen -= 8) {}\n\n buffer[offset + i - d] |= s * 128\n}\n","/*!\n * The buffer module from node.js, for the browser.\n *\n * @author Feross Aboukhadijeh \n * @license MIT\n */\n/* eslint-disable no-proto */\n\n'use strict'\n\nvar base64 = require('base64-js')\nvar ieee754 = require('ieee754')\nvar customInspectSymbol =\n (typeof Symbol === 'function' && typeof Symbol['for'] === 'function') // eslint-disable-line dot-notation\n ? Symbol['for']('nodejs.util.inspect.custom') // eslint-disable-line dot-notation\n : null\n\nexports.Buffer = Buffer\nexports.SlowBuffer = SlowBuffer\nexports.INSPECT_MAX_BYTES = 50\n\nvar K_MAX_LENGTH = 0x7fffffff\nexports.kMaxLength = K_MAX_LENGTH\n\n/**\n * If `Buffer.TYPED_ARRAY_SUPPORT`:\n * === true Use Uint8Array implementation (fastest)\n * === false Print warning and recommend using `buffer` v4.x which has an Object\n * implementation (most compatible, even IE6)\n *\n * Browsers that support typed arrays are IE 10+, Firefox 4+, Chrome 7+, Safari 5.1+,\n * Opera 11.6+, iOS 4.2+.\n *\n * We report that the browser does not support typed arrays if the are not subclassable\n * using __proto__. Firefox 4-29 lacks support for adding new properties to `Uint8Array`\n * (See: https://bugzilla.mozilla.org/show_bug.cgi?id=695438). IE 10 lacks support\n * for __proto__ and has a buggy typed array implementation.\n */\nBuffer.TYPED_ARRAY_SUPPORT = typedArraySupport()\n\nif (!Buffer.TYPED_ARRAY_SUPPORT && typeof console !== 'undefined' &&\n typeof console.error === 'function') {\n console.error(\n 'This browser lacks typed array (Uint8Array) support which is required by ' +\n '`buffer` v5.x. Use `buffer` v4.x if you require old browser support.'\n )\n}\n\nfunction typedArraySupport () {\n // Can typed array instances can be augmented?\n try {\n var arr = new Uint8Array(1)\n var proto = { foo: function () { return 42 } }\n Object.setPrototypeOf(proto, Uint8Array.prototype)\n Object.setPrototypeOf(arr, proto)\n return arr.foo() === 42\n } catch (e) {\n return false\n }\n}\n\nObject.defineProperty(Buffer.prototype, 'parent', {\n enumerable: true,\n get: function () {\n if (!Buffer.isBuffer(this)) return undefined\n return this.buffer\n }\n})\n\nObject.defineProperty(Buffer.prototype, 'offset', {\n enumerable: true,\n get: function () {\n if (!Buffer.isBuffer(this)) return undefined\n return this.byteOffset\n }\n})\n\nfunction createBuffer (length) {\n if (length > K_MAX_LENGTH) {\n throw new RangeError('The value \"' + length + '\" is invalid for option \"size\"')\n }\n // Return an augmented `Uint8Array` instance\n var buf = new Uint8Array(length)\n Object.setPrototypeOf(buf, Buffer.prototype)\n return buf\n}\n\n/**\n * The Buffer constructor returns instances of `Uint8Array` that have their\n * prototype changed to `Buffer.prototype`. Furthermore, `Buffer` is a subclass of\n * `Uint8Array`, so the returned instances will have all the node `Buffer` methods\n * and the `Uint8Array` methods. Square bracket notation works as expected -- it\n * returns a single octet.\n *\n * The `Uint8Array` prototype remains unmodified.\n */\n\nfunction Buffer (arg, encodingOrOffset, length) {\n // Common case.\n if (typeof arg === 'number') {\n if (typeof encodingOrOffset === 'string') {\n throw new TypeError(\n 'The \"string\" argument must be of type string. Received type number'\n )\n }\n return allocUnsafe(arg)\n }\n return from(arg, encodingOrOffset, length)\n}\n\nBuffer.poolSize = 8192 // not used by this implementation\n\nfunction from (value, encodingOrOffset, length) {\n if (typeof value === 'string') {\n return fromString(value, encodingOrOffset)\n }\n\n if (ArrayBuffer.isView(value)) {\n return fromArrayView(value)\n }\n\n if (value == null) {\n throw new TypeError(\n 'The first argument must be one of type string, Buffer, ArrayBuffer, Array, ' +\n 'or Array-like Object. Received type ' + (typeof value)\n )\n }\n\n if (isInstance(value, ArrayBuffer) ||\n (value && isInstance(value.buffer, ArrayBuffer))) {\n return fromArrayBuffer(value, encodingOrOffset, length)\n }\n\n if (typeof SharedArrayBuffer !== 'undefined' &&\n (isInstance(value, SharedArrayBuffer) ||\n (value && isInstance(value.buffer, SharedArrayBuffer)))) {\n return fromArrayBuffer(value, encodingOrOffset, length)\n }\n\n if (typeof value === 'number') {\n throw new TypeError(\n 'The \"value\" argument must not be of type number. Received type number'\n )\n }\n\n var valueOf = value.valueOf && value.valueOf()\n if (valueOf != null && valueOf !== value) {\n return Buffer.from(valueOf, encodingOrOffset, length)\n }\n\n var b = fromObject(value)\n if (b) return b\n\n if (typeof Symbol !== 'undefined' && Symbol.toPrimitive != null &&\n typeof value[Symbol.toPrimitive] === 'function') {\n return Buffer.from(\n value[Symbol.toPrimitive]('string'), encodingOrOffset, length\n )\n }\n\n throw new TypeError(\n 'The first argument must be one of type string, Buffer, ArrayBuffer, Array, ' +\n 'or Array-like Object. Received type ' + (typeof value)\n )\n}\n\n/**\n * Functionally equivalent to Buffer(arg, encoding) but throws a TypeError\n * if value is a number.\n * Buffer.from(str[, encoding])\n * Buffer.from(array)\n * Buffer.from(buffer)\n * Buffer.from(arrayBuffer[, byteOffset[, length]])\n **/\nBuffer.from = function (value, encodingOrOffset, length) {\n return from(value, encodingOrOffset, length)\n}\n\n// Note: Change prototype *after* Buffer.from is defined to workaround Chrome bug:\n// https://github.com/feross/buffer/pull/148\nObject.setPrototypeOf(Buffer.prototype, Uint8Array.prototype)\nObject.setPrototypeOf(Buffer, Uint8Array)\n\nfunction assertSize (size) {\n if (typeof size !== 'number') {\n throw new TypeError('\"size\" argument must be of type number')\n } else if (size < 0) {\n throw new RangeError('The value \"' + size + '\" is invalid for option \"size\"')\n }\n}\n\nfunction alloc (size, fill, encoding) {\n assertSize(size)\n if (size <= 0) {\n return createBuffer(size)\n }\n if (fill !== undefined) {\n // Only pay attention to encoding if it's a string. This\n // prevents accidentally sending in a number that would\n // be interpreted as a start offset.\n return typeof encoding === 'string'\n ? createBuffer(size).fill(fill, encoding)\n : createBuffer(size).fill(fill)\n }\n return createBuffer(size)\n}\n\n/**\n * Creates a new filled Buffer instance.\n * alloc(size[, fill[, encoding]])\n **/\nBuffer.alloc = function (size, fill, encoding) {\n return alloc(size, fill, encoding)\n}\n\nfunction allocUnsafe (size) {\n assertSize(size)\n return createBuffer(size < 0 ? 0 : checked(size) | 0)\n}\n\n/**\n * Equivalent to Buffer(num), by default creates a non-zero-filled Buffer instance.\n * */\nBuffer.allocUnsafe = function (size) {\n return allocUnsafe(size)\n}\n/**\n * Equivalent to SlowBuffer(num), by default creates a non-zero-filled Buffer instance.\n */\nBuffer.allocUnsafeSlow = function (size) {\n return allocUnsafe(size)\n}\n\nfunction fromString (string, encoding) {\n if (typeof encoding !== 'string' || encoding === '') {\n encoding = 'utf8'\n }\n\n if (!Buffer.isEncoding(encoding)) {\n throw new TypeError('Unknown encoding: ' + encoding)\n }\n\n var length = byteLength(string, encoding) | 0\n var buf = createBuffer(length)\n\n var actual = buf.write(string, encoding)\n\n if (actual !== length) {\n // Writing a hex string, for example, that contains invalid characters will\n // cause everything after the first invalid character to be ignored. (e.g.\n // 'abxxcd' will be treated as 'ab')\n buf = buf.slice(0, actual)\n }\n\n return buf\n}\n\nfunction fromArrayLike (array) {\n var length = array.length < 0 ? 0 : checked(array.length) | 0\n var buf = createBuffer(length)\n for (var i = 0; i < length; i += 1) {\n buf[i] = array[i] & 255\n }\n return buf\n}\n\nfunction fromArrayView (arrayView) {\n if (isInstance(arrayView, Uint8Array)) {\n var copy = new Uint8Array(arrayView)\n return fromArrayBuffer(copy.buffer, copy.byteOffset, copy.byteLength)\n }\n return fromArrayLike(arrayView)\n}\n\nfunction fromArrayBuffer (array, byteOffset, length) {\n if (byteOffset < 0 || array.byteLength < byteOffset) {\n throw new RangeError('\"offset\" is outside of buffer bounds')\n }\n\n if (array.byteLength < byteOffset + (length || 0)) {\n throw new RangeError('\"length\" is outside of buffer bounds')\n }\n\n var buf\n if (byteOffset === undefined && length === undefined) {\n buf = new Uint8Array(array)\n } else if (length === undefined) {\n buf = new Uint8Array(array, byteOffset)\n } else {\n buf = new Uint8Array(array, byteOffset, length)\n }\n\n // Return an augmented `Uint8Array` instance\n Object.setPrototypeOf(buf, Buffer.prototype)\n\n return buf\n}\n\nfunction fromObject (obj) {\n if (Buffer.isBuffer(obj)) {\n var len = checked(obj.length) | 0\n var buf = createBuffer(len)\n\n if (buf.length === 0) {\n return buf\n }\n\n obj.copy(buf, 0, 0, len)\n return buf\n }\n\n if (obj.length !== undefined) {\n if (typeof obj.length !== 'number' || numberIsNaN(obj.length)) {\n return createBuffer(0)\n }\n return fromArrayLike(obj)\n }\n\n if (obj.type === 'Buffer' && Array.isArray(obj.data)) {\n return fromArrayLike(obj.data)\n }\n}\n\nfunction checked (length) {\n // Note: cannot use `length < K_MAX_LENGTH` here because that fails when\n // length is NaN (which is otherwise coerced to zero.)\n if (length >= K_MAX_LENGTH) {\n throw new RangeError('Attempt to allocate Buffer larger than maximum ' +\n 'size: 0x' + K_MAX_LENGTH.toString(16) + ' bytes')\n }\n return length | 0\n}\n\nfunction SlowBuffer (length) {\n if (+length != length) { // eslint-disable-line eqeqeq\n length = 0\n }\n return Buffer.alloc(+length)\n}\n\nBuffer.isBuffer = function isBuffer (b) {\n return b != null && b._isBuffer === true &&\n b !== Buffer.prototype // so Buffer.isBuffer(Buffer.prototype) will be false\n}\n\nBuffer.compare = function compare (a, b) {\n if (isInstance(a, Uint8Array)) a = Buffer.from(a, a.offset, a.byteLength)\n if (isInstance(b, Uint8Array)) b = Buffer.from(b, b.offset, b.byteLength)\n if (!Buffer.isBuffer(a) || !Buffer.isBuffer(b)) {\n throw new TypeError(\n 'The \"buf1\", \"buf2\" arguments must be one of type Buffer or Uint8Array'\n )\n }\n\n if (a === b) return 0\n\n var x = a.length\n var y = b.length\n\n for (var i = 0, len = Math.min(x, y); i < len; ++i) {\n if (a[i] !== b[i]) {\n x = a[i]\n y = b[i]\n break\n }\n }\n\n if (x < y) return -1\n if (y < x) return 1\n return 0\n}\n\nBuffer.isEncoding = function isEncoding (encoding) {\n switch (String(encoding).toLowerCase()) {\n case 'hex':\n case 'utf8':\n case 'utf-8':\n case 'ascii':\n case 'latin1':\n case 'binary':\n case 'base64':\n case 'ucs2':\n case 'ucs-2':\n case 'utf16le':\n case 'utf-16le':\n return true\n default:\n return false\n }\n}\n\nBuffer.concat = function concat (list, length) {\n if (!Array.isArray(list)) {\n throw new TypeError('\"list\" argument must be an Array of Buffers')\n }\n\n if (list.length === 0) {\n return Buffer.alloc(0)\n }\n\n var i\n if (length === undefined) {\n length = 0\n for (i = 0; i < list.length; ++i) {\n length += list[i].length\n }\n }\n\n var buffer = Buffer.allocUnsafe(length)\n var pos = 0\n for (i = 0; i < list.length; ++i) {\n var buf = list[i]\n if (isInstance(buf, Uint8Array)) {\n if (pos + buf.length > buffer.length) {\n Buffer.from(buf).copy(buffer, pos)\n } else {\n Uint8Array.prototype.set.call(\n buffer,\n buf,\n pos\n )\n }\n } else if (!Buffer.isBuffer(buf)) {\n throw new TypeError('\"list\" argument must be an Array of Buffers')\n } else {\n buf.copy(buffer, pos)\n }\n pos += buf.length\n }\n return buffer\n}\n\nfunction byteLength (string, encoding) {\n if (Buffer.isBuffer(string)) {\n return string.length\n }\n if (ArrayBuffer.isView(string) || isInstance(string, ArrayBuffer)) {\n return string.byteLength\n }\n if (typeof string !== 'string') {\n throw new TypeError(\n 'The \"string\" argument must be one of type string, Buffer, or ArrayBuffer. ' +\n 'Received type ' + typeof string\n )\n }\n\n var len = string.length\n var mustMatch = (arguments.length > 2 && arguments[2] === true)\n if (!mustMatch && len === 0) return 0\n\n // Use a for loop to avoid recursion\n var loweredCase = false\n for (;;) {\n switch (encoding) {\n case 'ascii':\n case 'latin1':\n case 'binary':\n return len\n case 'utf8':\n case 'utf-8':\n return utf8ToBytes(string).length\n case 'ucs2':\n case 'ucs-2':\n case 'utf16le':\n case 'utf-16le':\n return len * 2\n case 'hex':\n return len >>> 1\n case 'base64':\n return base64ToBytes(string).length\n default:\n if (loweredCase) {\n return mustMatch ? -1 : utf8ToBytes(string).length // assume utf8\n }\n encoding = ('' + encoding).toLowerCase()\n loweredCase = true\n }\n }\n}\nBuffer.byteLength = byteLength\n\nfunction slowToString (encoding, start, end) {\n var loweredCase = false\n\n // No need to verify that \"this.length <= MAX_UINT32\" since it's a read-only\n // property of a typed array.\n\n // This behaves neither like String nor Uint8Array in that we set start/end\n // to their upper/lower bounds if the value passed is out of range.\n // undefined is handled specially as per ECMA-262 6th Edition,\n // Section 13.3.3.7 Runtime Semantics: KeyedBindingInitialization.\n if (start === undefined || start < 0) {\n start = 0\n }\n // Return early if start > this.length. Done here to prevent potential uint32\n // coercion fail below.\n if (start > this.length) {\n return ''\n }\n\n if (end === undefined || end > this.length) {\n end = this.length\n }\n\n if (end <= 0) {\n return ''\n }\n\n // Force coercion to uint32. This will also coerce falsey/NaN values to 0.\n end >>>= 0\n start >>>= 0\n\n if (end <= start) {\n return ''\n }\n\n if (!encoding) encoding = 'utf8'\n\n while (true) {\n switch (encoding) {\n case 'hex':\n return hexSlice(this, start, end)\n\n case 'utf8':\n case 'utf-8':\n return utf8Slice(this, start, end)\n\n case 'ascii':\n return asciiSlice(this, start, end)\n\n case 'latin1':\n case 'binary':\n return latin1Slice(this, start, end)\n\n case 'base64':\n return base64Slice(this, start, end)\n\n case 'ucs2':\n case 'ucs-2':\n case 'utf16le':\n case 'utf-16le':\n return utf16leSlice(this, start, end)\n\n default:\n if (loweredCase) throw new TypeError('Unknown encoding: ' + encoding)\n encoding = (encoding + '').toLowerCase()\n loweredCase = true\n }\n }\n}\n\n// This property is used by `Buffer.isBuffer` (and the `is-buffer` npm package)\n// to detect a Buffer instance. It's not possible to use `instanceof Buffer`\n// reliably in a browserify context because there could be multiple different\n// copies of the 'buffer' package in use. This method works even for Buffer\n// instances that were created from another copy of the `buffer` package.\n// See: https://github.com/feross/buffer/issues/154\nBuffer.prototype._isBuffer = true\n\nfunction swap (b, n, m) {\n var i = b[n]\n b[n] = b[m]\n b[m] = i\n}\n\nBuffer.prototype.swap16 = function swap16 () {\n var len = this.length\n if (len % 2 !== 0) {\n throw new RangeError('Buffer size must be a multiple of 16-bits')\n }\n for (var i = 0; i < len; i += 2) {\n swap(this, i, i + 1)\n }\n return this\n}\n\nBuffer.prototype.swap32 = function swap32 () {\n var len = this.length\n if (len % 4 !== 0) {\n throw new RangeError('Buffer size must be a multiple of 32-bits')\n }\n for (var i = 0; i < len; i += 4) {\n swap(this, i, i + 3)\n swap(this, i + 1, i + 2)\n }\n return this\n}\n\nBuffer.prototype.swap64 = function swap64 () {\n var len = this.length\n if (len % 8 !== 0) {\n throw new RangeError('Buffer size must be a multiple of 64-bits')\n }\n for (var i = 0; i < len; i += 8) {\n swap(this, i, i + 7)\n swap(this, i + 1, i + 6)\n swap(this, i + 2, i + 5)\n swap(this, i + 3, i + 4)\n }\n return this\n}\n\nBuffer.prototype.toString = function toString () {\n var length = this.length\n if (length === 0) return ''\n if (arguments.length === 0) return utf8Slice(this, 0, length)\n return slowToString.apply(this, arguments)\n}\n\nBuffer.prototype.toLocaleString = Buffer.prototype.toString\n\nBuffer.prototype.equals = function equals (b) {\n if (!Buffer.isBuffer(b)) throw new TypeError('Argument must be a Buffer')\n if (this === b) return true\n return Buffer.compare(this, b) === 0\n}\n\nBuffer.prototype.inspect = function inspect () {\n var str = ''\n var max = exports.INSPECT_MAX_BYTES\n str = this.toString('hex', 0, max).replace(/(.{2})/g, '$1 ').trim()\n if (this.length > max) str += ' ... '\n return ''\n}\nif (customInspectSymbol) {\n Buffer.prototype[customInspectSymbol] = Buffer.prototype.inspect\n}\n\nBuffer.prototype.compare = function compare (target, start, end, thisStart, thisEnd) {\n if (isInstance(target, Uint8Array)) {\n target = Buffer.from(target, target.offset, target.byteLength)\n }\n if (!Buffer.isBuffer(target)) {\n throw new TypeError(\n 'The \"target\" argument must be one of type Buffer or Uint8Array. ' +\n 'Received type ' + (typeof target)\n )\n }\n\n if (start === undefined) {\n start = 0\n }\n if (end === undefined) {\n end = target ? target.length : 0\n }\n if (thisStart === undefined) {\n thisStart = 0\n }\n if (thisEnd === undefined) {\n thisEnd = this.length\n }\n\n if (start < 0 || end > target.length || thisStart < 0 || thisEnd > this.length) {\n throw new RangeError('out of range index')\n }\n\n if (thisStart >= thisEnd && start >= end) {\n return 0\n }\n if (thisStart >= thisEnd) {\n return -1\n }\n if (start >= end) {\n return 1\n }\n\n start >>>= 0\n end >>>= 0\n thisStart >>>= 0\n thisEnd >>>= 0\n\n if (this === target) return 0\n\n var x = thisEnd - thisStart\n var y = end - start\n var len = Math.min(x, y)\n\n var thisCopy = this.slice(thisStart, thisEnd)\n var targetCopy = target.slice(start, end)\n\n for (var i = 0; i < len; ++i) {\n if (thisCopy[i] !== targetCopy[i]) {\n x = thisCopy[i]\n y = targetCopy[i]\n break\n }\n }\n\n if (x < y) return -1\n if (y < x) return 1\n return 0\n}\n\n// Finds either the first index of `val` in `buffer` at offset >= `byteOffset`,\n// OR the last index of `val` in `buffer` at offset <= `byteOffset`.\n//\n// Arguments:\n// - buffer - a Buffer to search\n// - val - a string, Buffer, or number\n// - byteOffset - an index into `buffer`; will be clamped to an int32\n// - encoding - an optional encoding, relevant is val is a string\n// - dir - true for indexOf, false for lastIndexOf\nfunction bidirectionalIndexOf (buffer, val, byteOffset, encoding, dir) {\n // Empty buffer means no match\n if (buffer.length === 0) return -1\n\n // Normalize byteOffset\n if (typeof byteOffset === 'string') {\n encoding = byteOffset\n byteOffset = 0\n } else if (byteOffset > 0x7fffffff) {\n byteOffset = 0x7fffffff\n } else if (byteOffset < -0x80000000) {\n byteOffset = -0x80000000\n }\n byteOffset = +byteOffset // Coerce to Number.\n if (numberIsNaN(byteOffset)) {\n // byteOffset: it it's undefined, null, NaN, \"foo\", etc, search whole buffer\n byteOffset = dir ? 0 : (buffer.length - 1)\n }\n\n // Normalize byteOffset: negative offsets start from the end of the buffer\n if (byteOffset < 0) byteOffset = buffer.length + byteOffset\n if (byteOffset >= buffer.length) {\n if (dir) return -1\n else byteOffset = buffer.length - 1\n } else if (byteOffset < 0) {\n if (dir) byteOffset = 0\n else return -1\n }\n\n // Normalize val\n if (typeof val === 'string') {\n val = Buffer.from(val, encoding)\n }\n\n // Finally, search either indexOf (if dir is true) or lastIndexOf\n if (Buffer.isBuffer(val)) {\n // Special case: looking for empty string/buffer always fails\n if (val.length === 0) {\n return -1\n }\n return arrayIndexOf(buffer, val, byteOffset, encoding, dir)\n } else if (typeof val === 'number') {\n val = val & 0xFF // Search for a byte value [0-255]\n if (typeof Uint8Array.prototype.indexOf === 'function') {\n if (dir) {\n return Uint8Array.prototype.indexOf.call(buffer, val, byteOffset)\n } else {\n return Uint8Array.prototype.lastIndexOf.call(buffer, val, byteOffset)\n }\n }\n return arrayIndexOf(buffer, [val], byteOffset, encoding, dir)\n }\n\n throw new TypeError('val must be string, number or Buffer')\n}\n\nfunction arrayIndexOf (arr, val, byteOffset, encoding, dir) {\n var indexSize = 1\n var arrLength = arr.length\n var valLength = val.length\n\n if (encoding !== undefined) {\n encoding = String(encoding).toLowerCase()\n if (encoding === 'ucs2' || encoding === 'ucs-2' ||\n encoding === 'utf16le' || encoding === 'utf-16le') {\n if (arr.length < 2 || val.length < 2) {\n return -1\n }\n indexSize = 2\n arrLength /= 2\n valLength /= 2\n byteOffset /= 2\n }\n }\n\n function read (buf, i) {\n if (indexSize === 1) {\n return buf[i]\n } else {\n return buf.readUInt16BE(i * indexSize)\n }\n }\n\n var i\n if (dir) {\n var foundIndex = -1\n for (i = byteOffset; i < arrLength; i++) {\n if (read(arr, i) === read(val, foundIndex === -1 ? 0 : i - foundIndex)) {\n if (foundIndex === -1) foundIndex = i\n if (i - foundIndex + 1 === valLength) return foundIndex * indexSize\n } else {\n if (foundIndex !== -1) i -= i - foundIndex\n foundIndex = -1\n }\n }\n } else {\n if (byteOffset + valLength > arrLength) byteOffset = arrLength - valLength\n for (i = byteOffset; i >= 0; i--) {\n var found = true\n for (var j = 0; j < valLength; j++) {\n if (read(arr, i + j) !== read(val, j)) {\n found = false\n break\n }\n }\n if (found) return i\n }\n }\n\n return -1\n}\n\nBuffer.prototype.includes = function includes (val, byteOffset, encoding) {\n return this.indexOf(val, byteOffset, encoding) !== -1\n}\n\nBuffer.prototype.indexOf = function indexOf (val, byteOffset, encoding) {\n return bidirectionalIndexOf(this, val, byteOffset, encoding, true)\n}\n\nBuffer.prototype.lastIndexOf = function lastIndexOf (val, byteOffset, encoding) {\n return bidirectionalIndexOf(this, val, byteOffset, encoding, false)\n}\n\nfunction hexWrite (buf, string, offset, length) {\n offset = Number(offset) || 0\n var remaining = buf.length - offset\n if (!length) {\n length = remaining\n } else {\n length = Number(length)\n if (length > remaining) {\n length = remaining\n }\n }\n\n var strLen = string.length\n\n if (length > strLen / 2) {\n length = strLen / 2\n }\n for (var i = 0; i < length; ++i) {\n var parsed = parseInt(string.substr(i * 2, 2), 16)\n if (numberIsNaN(parsed)) return i\n buf[offset + i] = parsed\n }\n return i\n}\n\nfunction utf8Write (buf, string, offset, length) {\n return blitBuffer(utf8ToBytes(string, buf.length - offset), buf, offset, length)\n}\n\nfunction asciiWrite (buf, string, offset, length) {\n return blitBuffer(asciiToBytes(string), buf, offset, length)\n}\n\nfunction base64Write (buf, string, offset, length) {\n return blitBuffer(base64ToBytes(string), buf, offset, length)\n}\n\nfunction ucs2Write (buf, string, offset, length) {\n return blitBuffer(utf16leToBytes(string, buf.length - offset), buf, offset, length)\n}\n\nBuffer.prototype.write = function write (string, offset, length, encoding) {\n // Buffer#write(string)\n if (offset === undefined) {\n encoding = 'utf8'\n length = this.length\n offset = 0\n // Buffer#write(string, encoding)\n } else if (length === undefined && typeof offset === 'string') {\n encoding = offset\n length = this.length\n offset = 0\n // Buffer#write(string, offset[, length][, encoding])\n } else if (isFinite(offset)) {\n offset = offset >>> 0\n if (isFinite(length)) {\n length = length >>> 0\n if (encoding === undefined) encoding = 'utf8'\n } else {\n encoding = length\n length = undefined\n }\n } else {\n throw new Error(\n 'Buffer.write(string, encoding, offset[, length]) is no longer supported'\n )\n }\n\n var remaining = this.length - offset\n if (length === undefined || length > remaining) length = remaining\n\n if ((string.length > 0 && (length < 0 || offset < 0)) || offset > this.length) {\n throw new RangeError('Attempt to write outside buffer bounds')\n }\n\n if (!encoding) encoding = 'utf8'\n\n var loweredCase = false\n for (;;) {\n switch (encoding) {\n case 'hex':\n return hexWrite(this, string, offset, length)\n\n case 'utf8':\n case 'utf-8':\n return utf8Write(this, string, offset, length)\n\n case 'ascii':\n case 'latin1':\n case 'binary':\n return asciiWrite(this, string, offset, length)\n\n case 'base64':\n // Warning: maxLength not taken into account in base64Write\n return base64Write(this, string, offset, length)\n\n case 'ucs2':\n case 'ucs-2':\n case 'utf16le':\n case 'utf-16le':\n return ucs2Write(this, string, offset, length)\n\n default:\n if (loweredCase) throw new TypeError('Unknown encoding: ' + encoding)\n encoding = ('' + encoding).toLowerCase()\n loweredCase = true\n }\n }\n}\n\nBuffer.prototype.toJSON = function toJSON () {\n return {\n type: 'Buffer',\n data: Array.prototype.slice.call(this._arr || this, 0)\n }\n}\n\nfunction base64Slice (buf, start, end) {\n if (start === 0 && end === buf.length) {\n return base64.fromByteArray(buf)\n } else {\n return base64.fromByteArray(buf.slice(start, end))\n }\n}\n\nfunction utf8Slice (buf, start, end) {\n end = Math.min(buf.length, end)\n var res = []\n\n var i = start\n while (i < end) {\n var firstByte = buf[i]\n var codePoint = null\n var bytesPerSequence = (firstByte > 0xEF)\n ? 4\n : (firstByte > 0xDF)\n ? 3\n : (firstByte > 0xBF)\n ? 2\n : 1\n\n if (i + bytesPerSequence <= end) {\n var secondByte, thirdByte, fourthByte, tempCodePoint\n\n switch (bytesPerSequence) {\n case 1:\n if (firstByte < 0x80) {\n codePoint = firstByte\n }\n break\n case 2:\n secondByte = buf[i + 1]\n if ((secondByte & 0xC0) === 0x80) {\n tempCodePoint = (firstByte & 0x1F) << 0x6 | (secondByte & 0x3F)\n if (tempCodePoint > 0x7F) {\n codePoint = tempCodePoint\n }\n }\n break\n case 3:\n secondByte = buf[i + 1]\n thirdByte = buf[i + 2]\n if ((secondByte & 0xC0) === 0x80 && (thirdByte & 0xC0) === 0x80) {\n tempCodePoint = (firstByte & 0xF) << 0xC | (secondByte & 0x3F) << 0x6 | (thirdByte & 0x3F)\n if (tempCodePoint > 0x7FF && (tempCodePoint < 0xD800 || tempCodePoint > 0xDFFF)) {\n codePoint = tempCodePoint\n }\n }\n break\n case 4:\n secondByte = buf[i + 1]\n thirdByte = buf[i + 2]\n fourthByte = buf[i + 3]\n if ((secondByte & 0xC0) === 0x80 && (thirdByte & 0xC0) === 0x80 && (fourthByte & 0xC0) === 0x80) {\n tempCodePoint = (firstByte & 0xF) << 0x12 | (secondByte & 0x3F) << 0xC | (thirdByte & 0x3F) << 0x6 | (fourthByte & 0x3F)\n if (tempCodePoint > 0xFFFF && tempCodePoint < 0x110000) {\n codePoint = tempCodePoint\n }\n }\n }\n }\n\n if (codePoint === null) {\n // we did not generate a valid codePoint so insert a\n // replacement char (U+FFFD) and advance only 1 byte\n codePoint = 0xFFFD\n bytesPerSequence = 1\n } else if (codePoint > 0xFFFF) {\n // encode to utf16 (surrogate pair dance)\n codePoint -= 0x10000\n res.push(codePoint >>> 10 & 0x3FF | 0xD800)\n codePoint = 0xDC00 | codePoint & 0x3FF\n }\n\n res.push(codePoint)\n i += bytesPerSequence\n }\n\n return decodeCodePointsArray(res)\n}\n\n// Based on http://stackoverflow.com/a/22747272/680742, the browser with\n// the lowest limit is Chrome, with 0x10000 args.\n// We go 1 magnitude less, for safety\nvar MAX_ARGUMENTS_LENGTH = 0x1000\n\nfunction decodeCodePointsArray (codePoints) {\n var len = codePoints.length\n if (len <= MAX_ARGUMENTS_LENGTH) {\n return String.fromCharCode.apply(String, codePoints) // avoid extra slice()\n }\n\n // Decode in chunks to avoid \"call stack size exceeded\".\n var res = ''\n var i = 0\n while (i < len) {\n res += String.fromCharCode.apply(\n String,\n codePoints.slice(i, i += MAX_ARGUMENTS_LENGTH)\n )\n }\n return res\n}\n\nfunction asciiSlice (buf, start, end) {\n var ret = ''\n end = Math.min(buf.length, end)\n\n for (var i = start; i < end; ++i) {\n ret += String.fromCharCode(buf[i] & 0x7F)\n }\n return ret\n}\n\nfunction latin1Slice (buf, start, end) {\n var ret = ''\n end = Math.min(buf.length, end)\n\n for (var i = start; i < end; ++i) {\n ret += String.fromCharCode(buf[i])\n }\n return ret\n}\n\nfunction hexSlice (buf, start, end) {\n var len = buf.length\n\n if (!start || start < 0) start = 0\n if (!end || end < 0 || end > len) end = len\n\n var out = ''\n for (var i = start; i < end; ++i) {\n out += hexSliceLookupTable[buf[i]]\n }\n return out\n}\n\nfunction utf16leSlice (buf, start, end) {\n var bytes = buf.slice(start, end)\n var res = ''\n // If bytes.length is odd, the last 8 bits must be ignored (same as node.js)\n for (var i = 0; i < bytes.length - 1; i += 2) {\n res += String.fromCharCode(bytes[i] + (bytes[i + 1] * 256))\n }\n return res\n}\n\nBuffer.prototype.slice = function slice (start, end) {\n var len = this.length\n start = ~~start\n end = end === undefined ? len : ~~end\n\n if (start < 0) {\n start += len\n if (start < 0) start = 0\n } else if (start > len) {\n start = len\n }\n\n if (end < 0) {\n end += len\n if (end < 0) end = 0\n } else if (end > len) {\n end = len\n }\n\n if (end < start) end = start\n\n var newBuf = this.subarray(start, end)\n // Return an augmented `Uint8Array` instance\n Object.setPrototypeOf(newBuf, Buffer.prototype)\n\n return newBuf\n}\n\n/*\n * Need to make sure that buffer isn't trying to write out of bounds.\n */\nfunction checkOffset (offset, ext, length) {\n if ((offset % 1) !== 0 || offset < 0) throw new RangeError('offset is not uint')\n if (offset + ext > length) throw new RangeError('Trying to access beyond buffer length')\n}\n\nBuffer.prototype.readUintLE =\nBuffer.prototype.readUIntLE = function readUIntLE (offset, byteLength, noAssert) {\n offset = offset >>> 0\n byteLength = byteLength >>> 0\n if (!noAssert) checkOffset(offset, byteLength, this.length)\n\n var val = this[offset]\n var mul = 1\n var i = 0\n while (++i < byteLength && (mul *= 0x100)) {\n val += this[offset + i] * mul\n }\n\n return val\n}\n\nBuffer.prototype.readUintBE =\nBuffer.prototype.readUIntBE = function readUIntBE (offset, byteLength, noAssert) {\n offset = offset >>> 0\n byteLength = byteLength >>> 0\n if (!noAssert) {\n checkOffset(offset, byteLength, this.length)\n }\n\n var val = this[offset + --byteLength]\n var mul = 1\n while (byteLength > 0 && (mul *= 0x100)) {\n val += this[offset + --byteLength] * mul\n }\n\n return val\n}\n\nBuffer.prototype.readUint8 =\nBuffer.prototype.readUInt8 = function readUInt8 (offset, noAssert) {\n offset = offset >>> 0\n if (!noAssert) checkOffset(offset, 1, this.length)\n return this[offset]\n}\n\nBuffer.prototype.readUint16LE =\nBuffer.prototype.readUInt16LE = function readUInt16LE (offset, noAssert) {\n offset = offset >>> 0\n if (!noAssert) checkOffset(offset, 2, this.length)\n return this[offset] | (this[offset + 1] << 8)\n}\n\nBuffer.prototype.readUint16BE =\nBuffer.prototype.readUInt16BE = function readUInt16BE (offset, noAssert) {\n offset = offset >>> 0\n if (!noAssert) checkOffset(offset, 2, this.length)\n return (this[offset] << 8) | this[offset + 1]\n}\n\nBuffer.prototype.readUint32LE =\nBuffer.prototype.readUInt32LE = function readUInt32LE (offset, noAssert) {\n offset = offset >>> 0\n if (!noAssert) checkOffset(offset, 4, this.length)\n\n return ((this[offset]) |\n (this[offset + 1] << 8) |\n (this[offset + 2] << 16)) +\n (this[offset + 3] * 0x1000000)\n}\n\nBuffer.prototype.readUint32BE =\nBuffer.prototype.readUInt32BE = function readUInt32BE (offset, noAssert) {\n offset = offset >>> 0\n if (!noAssert) checkOffset(offset, 4, this.length)\n\n return (this[offset] * 0x1000000) +\n ((this[offset + 1] << 16) |\n (this[offset + 2] << 8) |\n this[offset + 3])\n}\n\nBuffer.prototype.readIntLE = function readIntLE (offset, byteLength, noAssert) {\n offset = offset >>> 0\n byteLength = byteLength >>> 0\n if (!noAssert) checkOffset(offset, byteLength, this.length)\n\n var val = this[offset]\n var mul = 1\n var i = 0\n while (++i < byteLength && (mul *= 0x100)) {\n val += this[offset + i] * mul\n }\n mul *= 0x80\n\n if (val >= mul) val -= Math.pow(2, 8 * byteLength)\n\n return val\n}\n\nBuffer.prototype.readIntBE = function readIntBE (offset, byteLength, noAssert) {\n offset = offset >>> 0\n byteLength = byteLength >>> 0\n if (!noAssert) checkOffset(offset, byteLength, this.length)\n\n var i = byteLength\n var mul = 1\n var val = this[offset + --i]\n while (i > 0 && (mul *= 0x100)) {\n val += this[offset + --i] * mul\n }\n mul *= 0x80\n\n if (val >= mul) val -= Math.pow(2, 8 * byteLength)\n\n return val\n}\n\nBuffer.prototype.readInt8 = function readInt8 (offset, noAssert) {\n offset = offset >>> 0\n if (!noAssert) checkOffset(offset, 1, this.length)\n if (!(this[offset] & 0x80)) return (this[offset])\n return ((0xff - this[offset] + 1) * -1)\n}\n\nBuffer.prototype.readInt16LE = function readInt16LE (offset, noAssert) {\n offset = offset >>> 0\n if (!noAssert) checkOffset(offset, 2, this.length)\n var val = this[offset] | (this[offset + 1] << 8)\n return (val & 0x8000) ? val | 0xFFFF0000 : val\n}\n\nBuffer.prototype.readInt16BE = function readInt16BE (offset, noAssert) {\n offset = offset >>> 0\n if (!noAssert) checkOffset(offset, 2, this.length)\n var val = this[offset + 1] | (this[offset] << 8)\n return (val & 0x8000) ? val | 0xFFFF0000 : val\n}\n\nBuffer.prototype.readInt32LE = function readInt32LE (offset, noAssert) {\n offset = offset >>> 0\n if (!noAssert) checkOffset(offset, 4, this.length)\n\n return (this[offset]) |\n (this[offset + 1] << 8) |\n (this[offset + 2] << 16) |\n (this[offset + 3] << 24)\n}\n\nBuffer.prototype.readInt32BE = function readInt32BE (offset, noAssert) {\n offset = offset >>> 0\n if (!noAssert) checkOffset(offset, 4, this.length)\n\n return (this[offset] << 24) |\n (this[offset + 1] << 16) |\n (this[offset + 2] << 8) |\n (this[offset + 3])\n}\n\nBuffer.prototype.readFloatLE = function readFloatLE (offset, noAssert) {\n offset = offset >>> 0\n if (!noAssert) checkOffset(offset, 4, this.length)\n return ieee754.read(this, offset, true, 23, 4)\n}\n\nBuffer.prototype.readFloatBE = function readFloatBE (offset, noAssert) {\n offset = offset >>> 0\n if (!noAssert) checkOffset(offset, 4, this.length)\n return ieee754.read(this, offset, false, 23, 4)\n}\n\nBuffer.prototype.readDoubleLE = function readDoubleLE (offset, noAssert) {\n offset = offset >>> 0\n if (!noAssert) checkOffset(offset, 8, this.length)\n return ieee754.read(this, offset, true, 52, 8)\n}\n\nBuffer.prototype.readDoubleBE = function readDoubleBE (offset, noAssert) {\n offset = offset >>> 0\n if (!noAssert) checkOffset(offset, 8, this.length)\n return ieee754.read(this, offset, false, 52, 8)\n}\n\nfunction checkInt (buf, value, offset, ext, max, min) {\n if (!Buffer.isBuffer(buf)) throw new TypeError('\"buffer\" argument must be a Buffer instance')\n if (value > max || value < min) throw new RangeError('\"value\" argument is out of bounds')\n if (offset + ext > buf.length) throw new RangeError('Index out of range')\n}\n\nBuffer.prototype.writeUintLE =\nBuffer.prototype.writeUIntLE = function writeUIntLE (value, offset, byteLength, noAssert) {\n value = +value\n offset = offset >>> 0\n byteLength = byteLength >>> 0\n if (!noAssert) {\n var maxBytes = Math.pow(2, 8 * byteLength) - 1\n checkInt(this, value, offset, byteLength, maxBytes, 0)\n }\n\n var mul = 1\n var i = 0\n this[offset] = value & 0xFF\n while (++i < byteLength && (mul *= 0x100)) {\n this[offset + i] = (value / mul) & 0xFF\n }\n\n return offset + byteLength\n}\n\nBuffer.prototype.writeUintBE =\nBuffer.prototype.writeUIntBE = function writeUIntBE (value, offset, byteLength, noAssert) {\n value = +value\n offset = offset >>> 0\n byteLength = byteLength >>> 0\n if (!noAssert) {\n var maxBytes = Math.pow(2, 8 * byteLength) - 1\n checkInt(this, value, offset, byteLength, maxBytes, 0)\n }\n\n var i = byteLength - 1\n var mul = 1\n this[offset + i] = value & 0xFF\n while (--i >= 0 && (mul *= 0x100)) {\n this[offset + i] = (value / mul) & 0xFF\n }\n\n return offset + byteLength\n}\n\nBuffer.prototype.writeUint8 =\nBuffer.prototype.writeUInt8 = function writeUInt8 (value, offset, noAssert) {\n value = +value\n offset = offset >>> 0\n if (!noAssert) checkInt(this, value, offset, 1, 0xff, 0)\n this[offset] = (value & 0xff)\n return offset + 1\n}\n\nBuffer.prototype.writeUint16LE =\nBuffer.prototype.writeUInt16LE = function writeUInt16LE (value, offset, noAssert) {\n value = +value\n offset = offset >>> 0\n if (!noAssert) checkInt(this, value, offset, 2, 0xffff, 0)\n this[offset] = (value & 0xff)\n this[offset + 1] = (value >>> 8)\n return offset + 2\n}\n\nBuffer.prototype.writeUint16BE =\nBuffer.prototype.writeUInt16BE = function writeUInt16BE (value, offset, noAssert) {\n value = +value\n offset = offset >>> 0\n if (!noAssert) checkInt(this, value, offset, 2, 0xffff, 0)\n this[offset] = (value >>> 8)\n this[offset + 1] = (value & 0xff)\n return offset + 2\n}\n\nBuffer.prototype.writeUint32LE =\nBuffer.prototype.writeUInt32LE = function writeUInt32LE (value, offset, noAssert) {\n value = +value\n offset = offset >>> 0\n if (!noAssert) checkInt(this, value, offset, 4, 0xffffffff, 0)\n this[offset + 3] = (value >>> 24)\n this[offset + 2] = (value >>> 16)\n this[offset + 1] = (value >>> 8)\n this[offset] = (value & 0xff)\n return offset + 4\n}\n\nBuffer.prototype.writeUint32BE =\nBuffer.prototype.writeUInt32BE = function writeUInt32BE (value, offset, noAssert) {\n value = +value\n offset = offset >>> 0\n if (!noAssert) checkInt(this, value, offset, 4, 0xffffffff, 0)\n this[offset] = (value >>> 24)\n this[offset + 1] = (value >>> 16)\n this[offset + 2] = (value >>> 8)\n this[offset + 3] = (value & 0xff)\n return offset + 4\n}\n\nBuffer.prototype.writeIntLE = function writeIntLE (value, offset, byteLength, noAssert) {\n value = +value\n offset = offset >>> 0\n if (!noAssert) {\n var limit = Math.pow(2, (8 * byteLength) - 1)\n\n checkInt(this, value, offset, byteLength, limit - 1, -limit)\n }\n\n var i = 0\n var mul = 1\n var sub = 0\n this[offset] = value & 0xFF\n while (++i < byteLength && (mul *= 0x100)) {\n if (value < 0 && sub === 0 && this[offset + i - 1] !== 0) {\n sub = 1\n }\n this[offset + i] = ((value / mul) >> 0) - sub & 0xFF\n }\n\n return offset + byteLength\n}\n\nBuffer.prototype.writeIntBE = function writeIntBE (value, offset, byteLength, noAssert) {\n value = +value\n offset = offset >>> 0\n if (!noAssert) {\n var limit = Math.pow(2, (8 * byteLength) - 1)\n\n checkInt(this, value, offset, byteLength, limit - 1, -limit)\n }\n\n var i = byteLength - 1\n var mul = 1\n var sub = 0\n this[offset + i] = value & 0xFF\n while (--i >= 0 && (mul *= 0x100)) {\n if (value < 0 && sub === 0 && this[offset + i + 1] !== 0) {\n sub = 1\n }\n this[offset + i] = ((value / mul) >> 0) - sub & 0xFF\n }\n\n return offset + byteLength\n}\n\nBuffer.prototype.writeInt8 = function writeInt8 (value, offset, noAssert) {\n value = +value\n offset = offset >>> 0\n if (!noAssert) checkInt(this, value, offset, 1, 0x7f, -0x80)\n if (value < 0) value = 0xff + value + 1\n this[offset] = (value & 0xff)\n return offset + 1\n}\n\nBuffer.prototype.writeInt16LE = function writeInt16LE (value, offset, noAssert) {\n value = +value\n offset = offset >>> 0\n if (!noAssert) checkInt(this, value, offset, 2, 0x7fff, -0x8000)\n this[offset] = (value & 0xff)\n this[offset + 1] = (value >>> 8)\n return offset + 2\n}\n\nBuffer.prototype.writeInt16BE = function writeInt16BE (value, offset, noAssert) {\n value = +value\n offset = offset >>> 0\n if (!noAssert) checkInt(this, value, offset, 2, 0x7fff, -0x8000)\n this[offset] = (value >>> 8)\n this[offset + 1] = (value & 0xff)\n return offset + 2\n}\n\nBuffer.prototype.writeInt32LE = function writeInt32LE (value, offset, noAssert) {\n value = +value\n offset = offset >>> 0\n if (!noAssert) checkInt(this, value, offset, 4, 0x7fffffff, -0x80000000)\n this[offset] = (value & 0xff)\n this[offset + 1] = (value >>> 8)\n this[offset + 2] = (value >>> 16)\n this[offset + 3] = (value >>> 24)\n return offset + 4\n}\n\nBuffer.prototype.writeInt32BE = function writeInt32BE (value, offset, noAssert) {\n value = +value\n offset = offset >>> 0\n if (!noAssert) checkInt(this, value, offset, 4, 0x7fffffff, -0x80000000)\n if (value < 0) value = 0xffffffff + value + 1\n this[offset] = (value >>> 24)\n this[offset + 1] = (value >>> 16)\n this[offset + 2] = (value >>> 8)\n this[offset + 3] = (value & 0xff)\n return offset + 4\n}\n\nfunction checkIEEE754 (buf, value, offset, ext, max, min) {\n if (offset + ext > buf.length) throw new RangeError('Index out of range')\n if (offset < 0) throw new RangeError('Index out of range')\n}\n\nfunction writeFloat (buf, value, offset, littleEndian, noAssert) {\n value = +value\n offset = offset >>> 0\n if (!noAssert) {\n checkIEEE754(buf, value, offset, 4, 3.4028234663852886e+38, -3.4028234663852886e+38)\n }\n ieee754.write(buf, value, offset, littleEndian, 23, 4)\n return offset + 4\n}\n\nBuffer.prototype.writeFloatLE = function writeFloatLE (value, offset, noAssert) {\n return writeFloat(this, value, offset, true, noAssert)\n}\n\nBuffer.prototype.writeFloatBE = function writeFloatBE (value, offset, noAssert) {\n return writeFloat(this, value, offset, false, noAssert)\n}\n\nfunction writeDouble (buf, value, offset, littleEndian, noAssert) {\n value = +value\n offset = offset >>> 0\n if (!noAssert) {\n checkIEEE754(buf, value, offset, 8, 1.7976931348623157E+308, -1.7976931348623157E+308)\n }\n ieee754.write(buf, value, offset, littleEndian, 52, 8)\n return offset + 8\n}\n\nBuffer.prototype.writeDoubleLE = function writeDoubleLE (value, offset, noAssert) {\n return writeDouble(this, value, offset, true, noAssert)\n}\n\nBuffer.prototype.writeDoubleBE = function writeDoubleBE (value, offset, noAssert) {\n return writeDouble(this, value, offset, false, noAssert)\n}\n\n// copy(targetBuffer, targetStart=0, sourceStart=0, sourceEnd=buffer.length)\nBuffer.prototype.copy = function copy (target, targetStart, start, end) {\n if (!Buffer.isBuffer(target)) throw new TypeError('argument should be a Buffer')\n if (!start) start = 0\n if (!end && end !== 0) end = this.length\n if (targetStart >= target.length) targetStart = target.length\n if (!targetStart) targetStart = 0\n if (end > 0 && end < start) end = start\n\n // Copy 0 bytes; we're done\n if (end === start) return 0\n if (target.length === 0 || this.length === 0) return 0\n\n // Fatal error conditions\n if (targetStart < 0) {\n throw new RangeError('targetStart out of bounds')\n }\n if (start < 0 || start >= this.length) throw new RangeError('Index out of range')\n if (end < 0) throw new RangeError('sourceEnd out of bounds')\n\n // Are we oob?\n if (end > this.length) end = this.length\n if (target.length - targetStart < end - start) {\n end = target.length - targetStart + start\n }\n\n var len = end - start\n\n if (this === target && typeof Uint8Array.prototype.copyWithin === 'function') {\n // Use built-in when available, missing from IE11\n this.copyWithin(targetStart, start, end)\n } else {\n Uint8Array.prototype.set.call(\n target,\n this.subarray(start, end),\n targetStart\n )\n }\n\n return len\n}\n\n// Usage:\n// buffer.fill(number[, offset[, end]])\n// buffer.fill(buffer[, offset[, end]])\n// buffer.fill(string[, offset[, end]][, encoding])\nBuffer.prototype.fill = function fill (val, start, end, encoding) {\n // Handle string cases:\n if (typeof val === 'string') {\n if (typeof start === 'string') {\n encoding = start\n start = 0\n end = this.length\n } else if (typeof end === 'string') {\n encoding = end\n end = this.length\n }\n if (encoding !== undefined && typeof encoding !== 'string') {\n throw new TypeError('encoding must be a string')\n }\n if (typeof encoding === 'string' && !Buffer.isEncoding(encoding)) {\n throw new TypeError('Unknown encoding: ' + encoding)\n }\n if (val.length === 1) {\n var code = val.charCodeAt(0)\n if ((encoding === 'utf8' && code < 128) ||\n encoding === 'latin1') {\n // Fast path: If `val` fits into a single byte, use that numeric value.\n val = code\n }\n }\n } else if (typeof val === 'number') {\n val = val & 255\n } else if (typeof val === 'boolean') {\n val = Number(val)\n }\n\n // Invalid ranges are not set to a default, so can range check early.\n if (start < 0 || this.length < start || this.length < end) {\n throw new RangeError('Out of range index')\n }\n\n if (end <= start) {\n return this\n }\n\n start = start >>> 0\n end = end === undefined ? this.length : end >>> 0\n\n if (!val) val = 0\n\n var i\n if (typeof val === 'number') {\n for (i = start; i < end; ++i) {\n this[i] = val\n }\n } else {\n var bytes = Buffer.isBuffer(val)\n ? val\n : Buffer.from(val, encoding)\n var len = bytes.length\n if (len === 0) {\n throw new TypeError('The value \"' + val +\n '\" is invalid for argument \"value\"')\n }\n for (i = 0; i < end - start; ++i) {\n this[i + start] = bytes[i % len]\n }\n }\n\n return this\n}\n\n// HELPER FUNCTIONS\n// ================\n\nvar INVALID_BASE64_RE = /[^+/0-9A-Za-z-_]/g\n\nfunction base64clean (str) {\n // Node takes equal signs as end of the Base64 encoding\n str = str.split('=')[0]\n // Node strips out invalid characters like \\n and \\t from the string, base64-js does not\n str = str.trim().replace(INVALID_BASE64_RE, '')\n // Node converts strings with length < 2 to ''\n if (str.length < 2) return ''\n // Node allows for non-padded base64 strings (missing trailing ===), base64-js does not\n while (str.length % 4 !== 0) {\n str = str + '='\n }\n return str\n}\n\nfunction utf8ToBytes (string, units) {\n units = units || Infinity\n var codePoint\n var length = string.length\n var leadSurrogate = null\n var bytes = []\n\n for (var i = 0; i < length; ++i) {\n codePoint = string.charCodeAt(i)\n\n // is surrogate component\n if (codePoint > 0xD7FF && codePoint < 0xE000) {\n // last char was a lead\n if (!leadSurrogate) {\n // no lead yet\n if (codePoint > 0xDBFF) {\n // unexpected trail\n if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD)\n continue\n } else if (i + 1 === length) {\n // unpaired lead\n if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD)\n continue\n }\n\n // valid lead\n leadSurrogate = codePoint\n\n continue\n }\n\n // 2 leads in a row\n if (codePoint < 0xDC00) {\n if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD)\n leadSurrogate = codePoint\n continue\n }\n\n // valid surrogate pair\n codePoint = (leadSurrogate - 0xD800 << 10 | codePoint - 0xDC00) + 0x10000\n } else if (leadSurrogate) {\n // valid bmp char, but last char was a lead\n if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD)\n }\n\n leadSurrogate = null\n\n // encode utf8\n if (codePoint < 0x80) {\n if ((units -= 1) < 0) break\n bytes.push(codePoint)\n } else if (codePoint < 0x800) {\n if ((units -= 2) < 0) break\n bytes.push(\n codePoint >> 0x6 | 0xC0,\n codePoint & 0x3F | 0x80\n )\n } else if (codePoint < 0x10000) {\n if ((units -= 3) < 0) break\n bytes.push(\n codePoint >> 0xC | 0xE0,\n codePoint >> 0x6 & 0x3F | 0x80,\n codePoint & 0x3F | 0x80\n )\n } else if (codePoint < 0x110000) {\n if ((units -= 4) < 0) break\n bytes.push(\n codePoint >> 0x12 | 0xF0,\n codePoint >> 0xC & 0x3F | 0x80,\n codePoint >> 0x6 & 0x3F | 0x80,\n codePoint & 0x3F | 0x80\n )\n } else {\n throw new Error('Invalid code point')\n }\n }\n\n return bytes\n}\n\nfunction asciiToBytes (str) {\n var byteArray = []\n for (var i = 0; i < str.length; ++i) {\n // Node's code seems to be doing this and not & 0x7F..\n byteArray.push(str.charCodeAt(i) & 0xFF)\n }\n return byteArray\n}\n\nfunction utf16leToBytes (str, units) {\n var c, hi, lo\n var byteArray = []\n for (var i = 0; i < str.length; ++i) {\n if ((units -= 2) < 0) break\n\n c = str.charCodeAt(i)\n hi = c >> 8\n lo = c % 256\n byteArray.push(lo)\n byteArray.push(hi)\n }\n\n return byteArray\n}\n\nfunction base64ToBytes (str) {\n return base64.toByteArray(base64clean(str))\n}\n\nfunction blitBuffer (src, dst, offset, length) {\n for (var i = 0; i < length; ++i) {\n if ((i + offset >= dst.length) || (i >= src.length)) break\n dst[i + offset] = src[i]\n }\n return i\n}\n\n// ArrayBuffer or Uint8Array objects from other contexts (i.e. iframes) do not pass\n// the `instanceof` check but they should be treated as of that type.\n// See: https://github.com/feross/buffer/issues/166\nfunction isInstance (obj, type) {\n return obj instanceof type ||\n (obj != null && obj.constructor != null && obj.constructor.name != null &&\n obj.constructor.name === type.name)\n}\nfunction numberIsNaN (obj) {\n // For IE11 support\n return obj !== obj // eslint-disable-line no-self-compare\n}\n\n// Create lookup table for `toString('hex')`\n// See: https://github.com/feross/buffer/issues/219\nvar hexSliceLookupTable = (function () {\n var alphabet = '0123456789abcdef'\n var table = new Array(256)\n for (var i = 0; i < 16; ++i) {\n var i16 = i * 16\n for (var j = 0; j < 16; ++j) {\n table[i16 + j] = alphabet[i] + alphabet[j]\n }\n }\n return table\n})()\n","/*! *****************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nexport function __extends(d, b) {\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nexport var __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nexport function __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nexport function __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nexport function __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nexport function __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nexport function __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nexport function __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (_) try {\r\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nexport function __createBinding(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n}\r\n\r\nexport function __exportStar(m, exports) {\r\n for (var p in m) if (p !== \"default\" && !exports.hasOwnProperty(p)) exports[p] = m[p];\r\n}\r\n\r\nexport function __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nexport function __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\nexport function __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\nexport function __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n};\r\n\r\nexport function __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nexport function __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nexport function __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === \"return\" } : f ? f(v) : v; } : f; }\r\n}\r\n\r\nexport function __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n return m ? m.call(o) : (o = typeof __values === \"function\" ? __values(o) : o[Symbol.iterator](), i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i);\r\n function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nexport function __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nexport function __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];\r\n result.default = mod;\r\n return result;\r\n}\r\n\r\nexport function __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nexport function __classPrivateFieldGet(receiver, privateMap) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to get private field on non-instance\");\r\n }\r\n return privateMap.get(receiver);\r\n}\r\n\r\nexport function __classPrivateFieldSet(receiver, privateMap, value) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to set private field on non-instance\");\r\n }\r\n privateMap.set(receiver, value);\r\n return value;\r\n}\r\n",null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"names":["byteLength","toByteArray","fromByteArray","lookup","revLookup","Arr","Uint8Array","Array","code","i","len","length","charCodeAt","getLens","b64","Error","validLen","indexOf","placeHoldersLen","lens","_byteLength","tmp","arr","curByte","tripletToBase64","num","encodeChunk","uint8","start","end","output","push","join","extraBytes","parts","maxChunkLength","len2","buffer","offset","isLE","mLen","nBytes","e","m","eLen","eMax","eBias","nBits","d","s","NaN","Infinity","Math","pow","value","c","rt","abs","isNaN","floor","log","LN2","customInspectSymbol","Symbol","exports","Buffer","SlowBuffer","K_MAX_LENGTH","TYPED_ARRAY_SUPPORT","typedArraySupport","console","error","proto","foo","Object","setPrototypeOf","prototype","defineProperty","enumerable","get","isBuffer","undefined","byteOffset","createBuffer","RangeError","buf","arg","encodingOrOffset","TypeError","allocUnsafe","from","poolSize","fromString","ArrayBuffer","isView","fromArrayView","isInstance","fromArrayBuffer","SharedArrayBuffer","valueOf","b","fromObject","toPrimitive","assertSize","size","alloc","fill","encoding","checked","allocUnsafeSlow","string","isEncoding","actual","write","slice","fromArrayLike","array","arrayView","copy","obj","numberIsNaN","type","isArray","data","toString","_isBuffer","compare","a","x","y","min","String","toLowerCase","concat","list","pos","set","call","mustMatch","arguments","loweredCase","utf8ToBytes","base64ToBytes","slowToString","hexSlice","utf8Slice","asciiSlice","latin1Slice","base64Slice","utf16leSlice","swap","n","swap16","swap32","swap64","apply","toLocaleString","equals","inspect","str","max","INSPECT_MAX_BYTES","replace","trim","target","thisStart","thisEnd","thisCopy","targetCopy","bidirectionalIndexOf","val","dir","arrayIndexOf","lastIndexOf","indexSize","arrLength","valLength","read","readUInt16BE","foundIndex","found","j","includes","hexWrite","Number","remaining","strLen","parsed","parseInt","substr","utf8Write","blitBuffer","asciiWrite","asciiToBytes","base64Write","ucs2Write","utf16leToBytes","isFinite","toJSON","_arr","base64","res","firstByte","codePoint","bytesPerSequence","secondByte","thirdByte","fourthByte","tempCodePoint","decodeCodePointsArray","MAX_ARGUMENTS_LENGTH","codePoints","fromCharCode","ret","out","hexSliceLookupTable","bytes","newBuf","subarray","checkOffset","ext","readUintLE","readUIntLE","noAssert","mul","readUintBE","readUIntBE","readUint8","readUInt8","readUint16LE","readUInt16LE","readUint16BE","readUint32LE","readUInt32LE","readUint32BE","readUInt32BE","readIntLE","readIntBE","readInt8","readInt16LE","readInt16BE","readInt32LE","readInt32BE","readFloatLE","ieee754","readFloatBE","readDoubleLE","readDoubleBE","checkInt","writeUintLE","writeUIntLE","maxBytes","writeUintBE","writeUIntBE","writeUint8","writeUInt8","writeUint16LE","writeUInt16LE","writeUint16BE","writeUInt16BE","writeUint32LE","writeUInt32LE","writeUint32BE","writeUInt32BE","writeIntLE","limit","sub","writeIntBE","writeInt8","writeInt16LE","writeInt16BE","writeInt32LE","writeInt32BE","checkIEEE754","writeFloat","littleEndian","writeFloatLE","writeFloatBE","writeDouble","writeDoubleLE","writeDoubleBE","targetStart","copyWithin","INVALID_BASE64_RE","base64clean","split","units","leadSurrogate","byteArray","hi","lo","src","dst","constructor","name","alphabet","table","i16","extendStatics","__proto__","p","hasOwnProperty","__extends","__","create","__assign","assign","t","BSON_INT32_MAX","BSON_INT32_MIN","BSON_INT64_MAX","BSON_INT64_MIN","calculateObjectSize","constants.JS_INT_MIN","constants.JS_INT_MAX","constants.BSON_INT32_MIN","constants.BSON_INT32_MAX","deserialize","constants.BSON_DATA_STRING","constants.BSON_DATA_OID","constants.BSON_DATA_INT","constants.BSON_DATA_NUMBER","constants.BSON_DATA_DATE","constants.BSON_DATA_BOOLEAN","constants.BSON_DATA_OBJECT","constants.BSON_DATA_ARRAY","constants.BSON_DATA_UNDEFINED","constants.BSON_DATA_NULL","constants.BSON_DATA_LONG","constants.BSON_DATA_DECIMAL128","constants.BSON_DATA_BINARY","constants.BSON_BINARY_SUBTYPE_UUID_NEW","constants.BSON_DATA_REGEXP","constants.BSON_DATA_SYMBOL","constants.BSON_DATA_TIMESTAMP","constants.BSON_DATA_MIN_KEY","constants.BSON_DATA_MAX_KEY","constants.BSON_DATA_CODE","constants.BSON_DATA_CODE_W_SCOPE","constants.BSON_DATA_DBPOINTER","constants.BSON_BINARY_SUBTYPE_DEFAULT","Map","internalSerialize","internalDeserialize","internalCalculateObjectSize"],"mappings":"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AC,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC,EAAE,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,EA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"} \ No newline at end of file diff --git a/node_modules/bson/dist/bson.browser.umd.js b/node_modules/bson/dist/bson.browser.umd.js new file mode 100644 index 000000000..c8b27f833 --- /dev/null +++ b/node_modules/bson/dist/bson.browser.umd.js @@ -0,0 +1,7537 @@ +(function (global, factory) { + typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) : + typeof define === 'function' && define.amd ? define(['exports'], factory) : + (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.BSON = {})); +}(this, (function (exports) { 'use strict'; + + function createCommonjsModule(fn, module) { + return module = { exports: {} }, fn(module, module.exports), module.exports; + } + + var byteLength_1 = byteLength; + var toByteArray_1 = toByteArray; + var fromByteArray_1 = fromByteArray; + var lookup = []; + var revLookup = []; + var Arr = typeof Uint8Array !== 'undefined' ? Uint8Array : Array; + var code = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'; + + for (var i = 0, len = code.length; i < len; ++i) { + lookup[i] = code[i]; + revLookup[code.charCodeAt(i)] = i; + } // Support decoding URL-safe base64 strings, as Node.js does. + // See: https://en.wikipedia.org/wiki/Base64#URL_applications + + + revLookup['-'.charCodeAt(0)] = 62; + revLookup['_'.charCodeAt(0)] = 63; + + function getLens(b64) { + var len = b64.length; + + if (len % 4 > 0) { + throw new Error('Invalid string. Length must be a multiple of 4'); + } // Trim off extra bytes after placeholder bytes are found + // See: https://github.com/beatgammit/base64-js/issues/42 + + + var validLen = b64.indexOf('='); + if (validLen === -1) validLen = len; + var placeHoldersLen = validLen === len ? 0 : 4 - validLen % 4; + return [validLen, placeHoldersLen]; + } // base64 is 4/3 + up to two characters of the original data + + + function byteLength(b64) { + var lens = getLens(b64); + var validLen = lens[0]; + var placeHoldersLen = lens[1]; + return (validLen + placeHoldersLen) * 3 / 4 - placeHoldersLen; + } + + function _byteLength(b64, validLen, placeHoldersLen) { + return (validLen + placeHoldersLen) * 3 / 4 - placeHoldersLen; + } + + function toByteArray(b64) { + var tmp; + var lens = getLens(b64); + var validLen = lens[0]; + var placeHoldersLen = lens[1]; + var arr = new Arr(_byteLength(b64, validLen, placeHoldersLen)); + var curByte = 0; // if there are placeholders, only get up to the last complete 4 chars + + var len = placeHoldersLen > 0 ? validLen - 4 : validLen; + var i; + + for (i = 0; i < len; i += 4) { + tmp = revLookup[b64.charCodeAt(i)] << 18 | revLookup[b64.charCodeAt(i + 1)] << 12 | revLookup[b64.charCodeAt(i + 2)] << 6 | revLookup[b64.charCodeAt(i + 3)]; + arr[curByte++] = tmp >> 16 & 0xFF; + arr[curByte++] = tmp >> 8 & 0xFF; + arr[curByte++] = tmp & 0xFF; + } + + if (placeHoldersLen === 2) { + tmp = revLookup[b64.charCodeAt(i)] << 2 | revLookup[b64.charCodeAt(i + 1)] >> 4; + arr[curByte++] = tmp & 0xFF; + } + + if (placeHoldersLen === 1) { + tmp = revLookup[b64.charCodeAt(i)] << 10 | revLookup[b64.charCodeAt(i + 1)] << 4 | revLookup[b64.charCodeAt(i + 2)] >> 2; + arr[curByte++] = tmp >> 8 & 0xFF; + arr[curByte++] = tmp & 0xFF; + } + + return arr; + } + + function tripletToBase64(num) { + return lookup[num >> 18 & 0x3F] + lookup[num >> 12 & 0x3F] + lookup[num >> 6 & 0x3F] + lookup[num & 0x3F]; + } + + function encodeChunk(uint8, start, end) { + var tmp; + var output = []; + + for (var i = start; i < end; i += 3) { + tmp = (uint8[i] << 16 & 0xFF0000) + (uint8[i + 1] << 8 & 0xFF00) + (uint8[i + 2] & 0xFF); + output.push(tripletToBase64(tmp)); + } + + return output.join(''); + } + + function fromByteArray(uint8) { + var tmp; + var len = uint8.length; + var extraBytes = len % 3; // if we have 1 byte left, pad 2 bytes + + var parts = []; + var maxChunkLength = 16383; // must be multiple of 3 + // go through the array every three bytes, we'll deal with trailing stuff later + + for (var i = 0, len2 = len - extraBytes; i < len2; i += maxChunkLength) { + parts.push(encodeChunk(uint8, i, i + maxChunkLength > len2 ? len2 : i + maxChunkLength)); + } // pad the end with zeros, but make sure to not forget the extra bytes + + + if (extraBytes === 1) { + tmp = uint8[len - 1]; + parts.push(lookup[tmp >> 2] + lookup[tmp << 4 & 0x3F] + '=='); + } else if (extraBytes === 2) { + tmp = (uint8[len - 2] << 8) + uint8[len - 1]; + parts.push(lookup[tmp >> 10] + lookup[tmp >> 4 & 0x3F] + lookup[tmp << 2 & 0x3F] + '='); + } + + return parts.join(''); + } + + var base64Js = { + byteLength: byteLength_1, + toByteArray: toByteArray_1, + fromByteArray: fromByteArray_1 + }; + + /*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh */ + var read = function read(buffer, offset, isLE, mLen, nBytes) { + var e, m; + var eLen = nBytes * 8 - mLen - 1; + var eMax = (1 << eLen) - 1; + var eBias = eMax >> 1; + var nBits = -7; + var i = isLE ? nBytes - 1 : 0; + var d = isLE ? -1 : 1; + var s = buffer[offset + i]; + i += d; + e = s & (1 << -nBits) - 1; + s >>= -nBits; + nBits += eLen; + + for (; nBits > 0; e = e * 256 + buffer[offset + i], i += d, nBits -= 8) {} + + m = e & (1 << -nBits) - 1; + e >>= -nBits; + nBits += mLen; + + for (; nBits > 0; m = m * 256 + buffer[offset + i], i += d, nBits -= 8) {} + + if (e === 0) { + e = 1 - eBias; + } else if (e === eMax) { + return m ? NaN : (s ? -1 : 1) * Infinity; + } else { + m = m + Math.pow(2, mLen); + e = e - eBias; + } + + return (s ? -1 : 1) * m * Math.pow(2, e - mLen); + }; + + var write = function write(buffer, value, offset, isLE, mLen, nBytes) { + var e, m, c; + var eLen = nBytes * 8 - mLen - 1; + var eMax = (1 << eLen) - 1; + var eBias = eMax >> 1; + var rt = mLen === 23 ? Math.pow(2, -24) - Math.pow(2, -77) : 0; + var i = isLE ? 0 : nBytes - 1; + var d = isLE ? 1 : -1; + var s = value < 0 || value === 0 && 1 / value < 0 ? 1 : 0; + value = Math.abs(value); + + if (isNaN(value) || value === Infinity) { + m = isNaN(value) ? 1 : 0; + e = eMax; + } else { + e = Math.floor(Math.log(value) / Math.LN2); + + if (value * (c = Math.pow(2, -e)) < 1) { + e--; + c *= 2; + } + + if (e + eBias >= 1) { + value += rt / c; + } else { + value += rt * Math.pow(2, 1 - eBias); + } + + if (value * c >= 2) { + e++; + c /= 2; + } + + if (e + eBias >= eMax) { + m = 0; + e = eMax; + } else if (e + eBias >= 1) { + m = (value * c - 1) * Math.pow(2, mLen); + e = e + eBias; + } else { + m = value * Math.pow(2, eBias - 1) * Math.pow(2, mLen); + e = 0; + } + } + + for (; mLen >= 8; buffer[offset + i] = m & 0xff, i += d, m /= 256, mLen -= 8) {} + + e = e << mLen | m; + eLen += mLen; + + for (; eLen > 0; buffer[offset + i] = e & 0xff, i += d, e /= 256, eLen -= 8) {} + + buffer[offset + i - d] |= s * 128; + }; + + var ieee754 = { + read: read, + write: write + }; + + var buffer$1 = createCommonjsModule(function (module, exports) { + + var customInspectSymbol = typeof Symbol === 'function' && typeof Symbol['for'] === 'function' ? // eslint-disable-line dot-notation + Symbol['for']('nodejs.util.inspect.custom') // eslint-disable-line dot-notation + : null; + exports.Buffer = Buffer; + exports.SlowBuffer = SlowBuffer; + exports.INSPECT_MAX_BYTES = 50; + var K_MAX_LENGTH = 0x7fffffff; + exports.kMaxLength = K_MAX_LENGTH; + /** + * If `Buffer.TYPED_ARRAY_SUPPORT`: + * === true Use Uint8Array implementation (fastest) + * === false Print warning and recommend using `buffer` v4.x which has an Object + * implementation (most compatible, even IE6) + * + * Browsers that support typed arrays are IE 10+, Firefox 4+, Chrome 7+, Safari 5.1+, + * Opera 11.6+, iOS 4.2+. + * + * We report that the browser does not support typed arrays if the are not subclassable + * using __proto__. Firefox 4-29 lacks support for adding new properties to `Uint8Array` + * (See: https://bugzilla.mozilla.org/show_bug.cgi?id=695438). IE 10 lacks support + * for __proto__ and has a buggy typed array implementation. + */ + + Buffer.TYPED_ARRAY_SUPPORT = typedArraySupport(); + + if (!Buffer.TYPED_ARRAY_SUPPORT && typeof console !== 'undefined' && typeof console.error === 'function') { + console.error('This browser lacks typed array (Uint8Array) support which is required by ' + '`buffer` v5.x. Use `buffer` v4.x if you require old browser support.'); + } + + function typedArraySupport() { + // Can typed array instances can be augmented? + try { + var arr = new Uint8Array(1); + var proto = { + foo: function foo() { + return 42; + } + }; + Object.setPrototypeOf(proto, Uint8Array.prototype); + Object.setPrototypeOf(arr, proto); + return arr.foo() === 42; + } catch (e) { + return false; + } + } + + Object.defineProperty(Buffer.prototype, 'parent', { + enumerable: true, + get: function get() { + if (!Buffer.isBuffer(this)) return undefined; + return this.buffer; + } + }); + Object.defineProperty(Buffer.prototype, 'offset', { + enumerable: true, + get: function get() { + if (!Buffer.isBuffer(this)) return undefined; + return this.byteOffset; + } + }); + + function createBuffer(length) { + if (length > K_MAX_LENGTH) { + throw new RangeError('The value "' + length + '" is invalid for option "size"'); + } // Return an augmented `Uint8Array` instance + + + var buf = new Uint8Array(length); + Object.setPrototypeOf(buf, Buffer.prototype); + return buf; + } + /** + * The Buffer constructor returns instances of `Uint8Array` that have their + * prototype changed to `Buffer.prototype`. Furthermore, `Buffer` is a subclass of + * `Uint8Array`, so the returned instances will have all the node `Buffer` methods + * and the `Uint8Array` methods. Square bracket notation works as expected -- it + * returns a single octet. + * + * The `Uint8Array` prototype remains unmodified. + */ + + + function Buffer(arg, encodingOrOffset, length) { + // Common case. + if (typeof arg === 'number') { + if (typeof encodingOrOffset === 'string') { + throw new TypeError('The "string" argument must be of type string. Received type number'); + } + + return allocUnsafe(arg); + } + + return from(arg, encodingOrOffset, length); + } + + Buffer.poolSize = 8192; // not used by this implementation + + function from(value, encodingOrOffset, length) { + if (typeof value === 'string') { + return fromString(value, encodingOrOffset); + } + + if (ArrayBuffer.isView(value)) { + return fromArrayView(value); + } + + if (value == null) { + throw new TypeError('The first argument must be one of type string, Buffer, ArrayBuffer, Array, ' + 'or Array-like Object. Received type ' + babelHelpers["typeof"](value)); + } + + if (isInstance(value, ArrayBuffer) || value && isInstance(value.buffer, ArrayBuffer)) { + return fromArrayBuffer(value, encodingOrOffset, length); + } + + if (typeof SharedArrayBuffer !== 'undefined' && (isInstance(value, SharedArrayBuffer) || value && isInstance(value.buffer, SharedArrayBuffer))) { + return fromArrayBuffer(value, encodingOrOffset, length); + } + + if (typeof value === 'number') { + throw new TypeError('The "value" argument must not be of type number. Received type number'); + } + + var valueOf = value.valueOf && value.valueOf(); + + if (valueOf != null && valueOf !== value) { + return Buffer.from(valueOf, encodingOrOffset, length); + } + + var b = fromObject(value); + if (b) return b; + + if (typeof Symbol !== 'undefined' && Symbol.toPrimitive != null && typeof value[Symbol.toPrimitive] === 'function') { + return Buffer.from(value[Symbol.toPrimitive]('string'), encodingOrOffset, length); + } + + throw new TypeError('The first argument must be one of type string, Buffer, ArrayBuffer, Array, ' + 'or Array-like Object. Received type ' + babelHelpers["typeof"](value)); + } + /** + * Functionally equivalent to Buffer(arg, encoding) but throws a TypeError + * if value is a number. + * Buffer.from(str[, encoding]) + * Buffer.from(array) + * Buffer.from(buffer) + * Buffer.from(arrayBuffer[, byteOffset[, length]]) + **/ + + + Buffer.from = function (value, encodingOrOffset, length) { + return from(value, encodingOrOffset, length); + }; // Note: Change prototype *after* Buffer.from is defined to workaround Chrome bug: + // https://github.com/feross/buffer/pull/148 + + + Object.setPrototypeOf(Buffer.prototype, Uint8Array.prototype); + Object.setPrototypeOf(Buffer, Uint8Array); + + function assertSize(size) { + if (typeof size !== 'number') { + throw new TypeError('"size" argument must be of type number'); + } else if (size < 0) { + throw new RangeError('The value "' + size + '" is invalid for option "size"'); + } + } + + function alloc(size, fill, encoding) { + assertSize(size); + + if (size <= 0) { + return createBuffer(size); + } + + if (fill !== undefined) { + // Only pay attention to encoding if it's a string. This + // prevents accidentally sending in a number that would + // be interpreted as a start offset. + return typeof encoding === 'string' ? createBuffer(size).fill(fill, encoding) : createBuffer(size).fill(fill); + } + + return createBuffer(size); + } + /** + * Creates a new filled Buffer instance. + * alloc(size[, fill[, encoding]]) + **/ + + + Buffer.alloc = function (size, fill, encoding) { + return alloc(size, fill, encoding); + }; + + function allocUnsafe(size) { + assertSize(size); + return createBuffer(size < 0 ? 0 : checked(size) | 0); + } + /** + * Equivalent to Buffer(num), by default creates a non-zero-filled Buffer instance. + * */ + + + Buffer.allocUnsafe = function (size) { + return allocUnsafe(size); + }; + /** + * Equivalent to SlowBuffer(num), by default creates a non-zero-filled Buffer instance. + */ + + + Buffer.allocUnsafeSlow = function (size) { + return allocUnsafe(size); + }; + + function fromString(string, encoding) { + if (typeof encoding !== 'string' || encoding === '') { + encoding = 'utf8'; + } + + if (!Buffer.isEncoding(encoding)) { + throw new TypeError('Unknown encoding: ' + encoding); + } + + var length = byteLength(string, encoding) | 0; + var buf = createBuffer(length); + var actual = buf.write(string, encoding); + + if (actual !== length) { + // Writing a hex string, for example, that contains invalid characters will + // cause everything after the first invalid character to be ignored. (e.g. + // 'abxxcd' will be treated as 'ab') + buf = buf.slice(0, actual); + } + + return buf; + } + + function fromArrayLike(array) { + var length = array.length < 0 ? 0 : checked(array.length) | 0; + var buf = createBuffer(length); + + for (var i = 0; i < length; i += 1) { + buf[i] = array[i] & 255; + } + + return buf; + } + + function fromArrayView(arrayView) { + if (isInstance(arrayView, Uint8Array)) { + var copy = new Uint8Array(arrayView); + return fromArrayBuffer(copy.buffer, copy.byteOffset, copy.byteLength); + } + + return fromArrayLike(arrayView); + } + + function fromArrayBuffer(array, byteOffset, length) { + if (byteOffset < 0 || array.byteLength < byteOffset) { + throw new RangeError('"offset" is outside of buffer bounds'); + } + + if (array.byteLength < byteOffset + (length || 0)) { + throw new RangeError('"length" is outside of buffer bounds'); + } + + var buf; + + if (byteOffset === undefined && length === undefined) { + buf = new Uint8Array(array); + } else if (length === undefined) { + buf = new Uint8Array(array, byteOffset); + } else { + buf = new Uint8Array(array, byteOffset, length); + } // Return an augmented `Uint8Array` instance + + + Object.setPrototypeOf(buf, Buffer.prototype); + return buf; + } + + function fromObject(obj) { + if (Buffer.isBuffer(obj)) { + var len = checked(obj.length) | 0; + var buf = createBuffer(len); + + if (buf.length === 0) { + return buf; + } + + obj.copy(buf, 0, 0, len); + return buf; + } + + if (obj.length !== undefined) { + if (typeof obj.length !== 'number' || numberIsNaN(obj.length)) { + return createBuffer(0); + } + + return fromArrayLike(obj); + } + + if (obj.type === 'Buffer' && Array.isArray(obj.data)) { + return fromArrayLike(obj.data); + } + } + + function checked(length) { + // Note: cannot use `length < K_MAX_LENGTH` here because that fails when + // length is NaN (which is otherwise coerced to zero.) + if (length >= K_MAX_LENGTH) { + throw new RangeError('Attempt to allocate Buffer larger than maximum ' + 'size: 0x' + K_MAX_LENGTH.toString(16) + ' bytes'); + } + + return length | 0; + } + + function SlowBuffer(length) { + if (+length != length) { + // eslint-disable-line eqeqeq + length = 0; + } + + return Buffer.alloc(+length); + } + + Buffer.isBuffer = function isBuffer(b) { + return b != null && b._isBuffer === true && b !== Buffer.prototype; // so Buffer.isBuffer(Buffer.prototype) will be false + }; + + Buffer.compare = function compare(a, b) { + if (isInstance(a, Uint8Array)) a = Buffer.from(a, a.offset, a.byteLength); + if (isInstance(b, Uint8Array)) b = Buffer.from(b, b.offset, b.byteLength); + + if (!Buffer.isBuffer(a) || !Buffer.isBuffer(b)) { + throw new TypeError('The "buf1", "buf2" arguments must be one of type Buffer or Uint8Array'); + } + + if (a === b) return 0; + var x = a.length; + var y = b.length; + + for (var i = 0, len = Math.min(x, y); i < len; ++i) { + if (a[i] !== b[i]) { + x = a[i]; + y = b[i]; + break; + } + } + + if (x < y) return -1; + if (y < x) return 1; + return 0; + }; + + Buffer.isEncoding = function isEncoding(encoding) { + switch (String(encoding).toLowerCase()) { + case 'hex': + case 'utf8': + case 'utf-8': + case 'ascii': + case 'latin1': + case 'binary': + case 'base64': + case 'ucs2': + case 'ucs-2': + case 'utf16le': + case 'utf-16le': + return true; + + default: + return false; + } + }; + + Buffer.concat = function concat(list, length) { + if (!Array.isArray(list)) { + throw new TypeError('"list" argument must be an Array of Buffers'); + } + + if (list.length === 0) { + return Buffer.alloc(0); + } + + var i; + + if (length === undefined) { + length = 0; + + for (i = 0; i < list.length; ++i) { + length += list[i].length; + } + } + + var buffer = Buffer.allocUnsafe(length); + var pos = 0; + + for (i = 0; i < list.length; ++i) { + var buf = list[i]; + + if (isInstance(buf, Uint8Array)) { + if (pos + buf.length > buffer.length) { + Buffer.from(buf).copy(buffer, pos); + } else { + Uint8Array.prototype.set.call(buffer, buf, pos); + } + } else if (!Buffer.isBuffer(buf)) { + throw new TypeError('"list" argument must be an Array of Buffers'); + } else { + buf.copy(buffer, pos); + } + + pos += buf.length; + } + + return buffer; + }; + + function byteLength(string, encoding) { + if (Buffer.isBuffer(string)) { + return string.length; + } + + if (ArrayBuffer.isView(string) || isInstance(string, ArrayBuffer)) { + return string.byteLength; + } + + if (typeof string !== 'string') { + throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. ' + 'Received type ' + babelHelpers["typeof"](string)); + } + + var len = string.length; + var mustMatch = arguments.length > 2 && arguments[2] === true; + if (!mustMatch && len === 0) return 0; // Use a for loop to avoid recursion + + var loweredCase = false; + + for (;;) { + switch (encoding) { + case 'ascii': + case 'latin1': + case 'binary': + return len; + + case 'utf8': + case 'utf-8': + return utf8ToBytes(string).length; + + case 'ucs2': + case 'ucs-2': + case 'utf16le': + case 'utf-16le': + return len * 2; + + case 'hex': + return len >>> 1; + + case 'base64': + return base64ToBytes(string).length; + + default: + if (loweredCase) { + return mustMatch ? -1 : utf8ToBytes(string).length; // assume utf8 + } + + encoding = ('' + encoding).toLowerCase(); + loweredCase = true; + } + } + } + + Buffer.byteLength = byteLength; + + function slowToString(encoding, start, end) { + var loweredCase = false; // No need to verify that "this.length <= MAX_UINT32" since it's a read-only + // property of a typed array. + // This behaves neither like String nor Uint8Array in that we set start/end + // to their upper/lower bounds if the value passed is out of range. + // undefined is handled specially as per ECMA-262 6th Edition, + // Section 13.3.3.7 Runtime Semantics: KeyedBindingInitialization. + + if (start === undefined || start < 0) { + start = 0; + } // Return early if start > this.length. Done here to prevent potential uint32 + // coercion fail below. + + + if (start > this.length) { + return ''; + } + + if (end === undefined || end > this.length) { + end = this.length; + } + + if (end <= 0) { + return ''; + } // Force coercion to uint32. This will also coerce falsey/NaN values to 0. + + + end >>>= 0; + start >>>= 0; + + if (end <= start) { + return ''; + } + + if (!encoding) encoding = 'utf8'; + + while (true) { + switch (encoding) { + case 'hex': + return hexSlice(this, start, end); + + case 'utf8': + case 'utf-8': + return utf8Slice(this, start, end); + + case 'ascii': + return asciiSlice(this, start, end); + + case 'latin1': + case 'binary': + return latin1Slice(this, start, end); + + case 'base64': + return base64Slice(this, start, end); + + case 'ucs2': + case 'ucs-2': + case 'utf16le': + case 'utf-16le': + return utf16leSlice(this, start, end); + + default: + if (loweredCase) throw new TypeError('Unknown encoding: ' + encoding); + encoding = (encoding + '').toLowerCase(); + loweredCase = true; + } + } + } // This property is used by `Buffer.isBuffer` (and the `is-buffer` npm package) + // to detect a Buffer instance. It's not possible to use `instanceof Buffer` + // reliably in a browserify context because there could be multiple different + // copies of the 'buffer' package in use. This method works even for Buffer + // instances that were created from another copy of the `buffer` package. + // See: https://github.com/feross/buffer/issues/154 + + + Buffer.prototype._isBuffer = true; + + function swap(b, n, m) { + var i = b[n]; + b[n] = b[m]; + b[m] = i; + } + + Buffer.prototype.swap16 = function swap16() { + var len = this.length; + + if (len % 2 !== 0) { + throw new RangeError('Buffer size must be a multiple of 16-bits'); + } + + for (var i = 0; i < len; i += 2) { + swap(this, i, i + 1); + } + + return this; + }; + + Buffer.prototype.swap32 = function swap32() { + var len = this.length; + + if (len % 4 !== 0) { + throw new RangeError('Buffer size must be a multiple of 32-bits'); + } + + for (var i = 0; i < len; i += 4) { + swap(this, i, i + 3); + swap(this, i + 1, i + 2); + } + + return this; + }; + + Buffer.prototype.swap64 = function swap64() { + var len = this.length; + + if (len % 8 !== 0) { + throw new RangeError('Buffer size must be a multiple of 64-bits'); + } + + for (var i = 0; i < len; i += 8) { + swap(this, i, i + 7); + swap(this, i + 1, i + 6); + swap(this, i + 2, i + 5); + swap(this, i + 3, i + 4); + } + + return this; + }; + + Buffer.prototype.toString = function toString() { + var length = this.length; + if (length === 0) return ''; + if (arguments.length === 0) return utf8Slice(this, 0, length); + return slowToString.apply(this, arguments); + }; + + Buffer.prototype.toLocaleString = Buffer.prototype.toString; + + Buffer.prototype.equals = function equals(b) { + if (!Buffer.isBuffer(b)) throw new TypeError('Argument must be a Buffer'); + if (this === b) return true; + return Buffer.compare(this, b) === 0; + }; + + Buffer.prototype.inspect = function inspect() { + var str = ''; + var max = exports.INSPECT_MAX_BYTES; + str = this.toString('hex', 0, max).replace(/(.{2})/g, '$1 ').trim(); + if (this.length > max) str += ' ... '; + return ''; + }; + + if (customInspectSymbol) { + Buffer.prototype[customInspectSymbol] = Buffer.prototype.inspect; + } + + Buffer.prototype.compare = function compare(target, start, end, thisStart, thisEnd) { + if (isInstance(target, Uint8Array)) { + target = Buffer.from(target, target.offset, target.byteLength); + } + + if (!Buffer.isBuffer(target)) { + throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. ' + 'Received type ' + babelHelpers["typeof"](target)); + } + + if (start === undefined) { + start = 0; + } + + if (end === undefined) { + end = target ? target.length : 0; + } + + if (thisStart === undefined) { + thisStart = 0; + } + + if (thisEnd === undefined) { + thisEnd = this.length; + } + + if (start < 0 || end > target.length || thisStart < 0 || thisEnd > this.length) { + throw new RangeError('out of range index'); + } + + if (thisStart >= thisEnd && start >= end) { + return 0; + } + + if (thisStart >= thisEnd) { + return -1; + } + + if (start >= end) { + return 1; + } + + start >>>= 0; + end >>>= 0; + thisStart >>>= 0; + thisEnd >>>= 0; + if (this === target) return 0; + var x = thisEnd - thisStart; + var y = end - start; + var len = Math.min(x, y); + var thisCopy = this.slice(thisStart, thisEnd); + var targetCopy = target.slice(start, end); + + for (var i = 0; i < len; ++i) { + if (thisCopy[i] !== targetCopy[i]) { + x = thisCopy[i]; + y = targetCopy[i]; + break; + } + } + + if (x < y) return -1; + if (y < x) return 1; + return 0; + }; // Finds either the first index of `val` in `buffer` at offset >= `byteOffset`, + // OR the last index of `val` in `buffer` at offset <= `byteOffset`. + // + // Arguments: + // - buffer - a Buffer to search + // - val - a string, Buffer, or number + // - byteOffset - an index into `buffer`; will be clamped to an int32 + // - encoding - an optional encoding, relevant is val is a string + // - dir - true for indexOf, false for lastIndexOf + + + function bidirectionalIndexOf(buffer, val, byteOffset, encoding, dir) { + // Empty buffer means no match + if (buffer.length === 0) return -1; // Normalize byteOffset + + if (typeof byteOffset === 'string') { + encoding = byteOffset; + byteOffset = 0; + } else if (byteOffset > 0x7fffffff) { + byteOffset = 0x7fffffff; + } else if (byteOffset < -0x80000000) { + byteOffset = -0x80000000; + } + + byteOffset = +byteOffset; // Coerce to Number. + + if (numberIsNaN(byteOffset)) { + // byteOffset: it it's undefined, null, NaN, "foo", etc, search whole buffer + byteOffset = dir ? 0 : buffer.length - 1; + } // Normalize byteOffset: negative offsets start from the end of the buffer + + + if (byteOffset < 0) byteOffset = buffer.length + byteOffset; + + if (byteOffset >= buffer.length) { + if (dir) return -1;else byteOffset = buffer.length - 1; + } else if (byteOffset < 0) { + if (dir) byteOffset = 0;else return -1; + } // Normalize val + + + if (typeof val === 'string') { + val = Buffer.from(val, encoding); + } // Finally, search either indexOf (if dir is true) or lastIndexOf + + + if (Buffer.isBuffer(val)) { + // Special case: looking for empty string/buffer always fails + if (val.length === 0) { + return -1; + } + + return arrayIndexOf(buffer, val, byteOffset, encoding, dir); + } else if (typeof val === 'number') { + val = val & 0xFF; // Search for a byte value [0-255] + + if (typeof Uint8Array.prototype.indexOf === 'function') { + if (dir) { + return Uint8Array.prototype.indexOf.call(buffer, val, byteOffset); + } else { + return Uint8Array.prototype.lastIndexOf.call(buffer, val, byteOffset); + } + } + + return arrayIndexOf(buffer, [val], byteOffset, encoding, dir); + } + + throw new TypeError('val must be string, number or Buffer'); + } + + function arrayIndexOf(arr, val, byteOffset, encoding, dir) { + var indexSize = 1; + var arrLength = arr.length; + var valLength = val.length; + + if (encoding !== undefined) { + encoding = String(encoding).toLowerCase(); + + if (encoding === 'ucs2' || encoding === 'ucs-2' || encoding === 'utf16le' || encoding === 'utf-16le') { + if (arr.length < 2 || val.length < 2) { + return -1; + } + + indexSize = 2; + arrLength /= 2; + valLength /= 2; + byteOffset /= 2; + } + } + + function read(buf, i) { + if (indexSize === 1) { + return buf[i]; + } else { + return buf.readUInt16BE(i * indexSize); + } + } + + var i; + + if (dir) { + var foundIndex = -1; + + for (i = byteOffset; i < arrLength; i++) { + if (read(arr, i) === read(val, foundIndex === -1 ? 0 : i - foundIndex)) { + if (foundIndex === -1) foundIndex = i; + if (i - foundIndex + 1 === valLength) return foundIndex * indexSize; + } else { + if (foundIndex !== -1) i -= i - foundIndex; + foundIndex = -1; + } + } + } else { + if (byteOffset + valLength > arrLength) byteOffset = arrLength - valLength; + + for (i = byteOffset; i >= 0; i--) { + var found = true; + + for (var j = 0; j < valLength; j++) { + if (read(arr, i + j) !== read(val, j)) { + found = false; + break; + } + } + + if (found) return i; + } + } + + return -1; + } + + Buffer.prototype.includes = function includes(val, byteOffset, encoding) { + return this.indexOf(val, byteOffset, encoding) !== -1; + }; + + Buffer.prototype.indexOf = function indexOf(val, byteOffset, encoding) { + return bidirectionalIndexOf(this, val, byteOffset, encoding, true); + }; + + Buffer.prototype.lastIndexOf = function lastIndexOf(val, byteOffset, encoding) { + return bidirectionalIndexOf(this, val, byteOffset, encoding, false); + }; + + function hexWrite(buf, string, offset, length) { + offset = Number(offset) || 0; + var remaining = buf.length - offset; + + if (!length) { + length = remaining; + } else { + length = Number(length); + + if (length > remaining) { + length = remaining; + } + } + + var strLen = string.length; + + if (length > strLen / 2) { + length = strLen / 2; + } + + for (var i = 0; i < length; ++i) { + var parsed = parseInt(string.substr(i * 2, 2), 16); + if (numberIsNaN(parsed)) return i; + buf[offset + i] = parsed; + } + + return i; + } + + function utf8Write(buf, string, offset, length) { + return blitBuffer(utf8ToBytes(string, buf.length - offset), buf, offset, length); + } + + function asciiWrite(buf, string, offset, length) { + return blitBuffer(asciiToBytes(string), buf, offset, length); + } + + function base64Write(buf, string, offset, length) { + return blitBuffer(base64ToBytes(string), buf, offset, length); + } + + function ucs2Write(buf, string, offset, length) { + return blitBuffer(utf16leToBytes(string, buf.length - offset), buf, offset, length); + } + + Buffer.prototype.write = function write(string, offset, length, encoding) { + // Buffer#write(string) + if (offset === undefined) { + encoding = 'utf8'; + length = this.length; + offset = 0; // Buffer#write(string, encoding) + } else if (length === undefined && typeof offset === 'string') { + encoding = offset; + length = this.length; + offset = 0; // Buffer#write(string, offset[, length][, encoding]) + } else if (isFinite(offset)) { + offset = offset >>> 0; + + if (isFinite(length)) { + length = length >>> 0; + if (encoding === undefined) encoding = 'utf8'; + } else { + encoding = length; + length = undefined; + } + } else { + throw new Error('Buffer.write(string, encoding, offset[, length]) is no longer supported'); + } + + var remaining = this.length - offset; + if (length === undefined || length > remaining) length = remaining; + + if (string.length > 0 && (length < 0 || offset < 0) || offset > this.length) { + throw new RangeError('Attempt to write outside buffer bounds'); + } + + if (!encoding) encoding = 'utf8'; + var loweredCase = false; + + for (;;) { + switch (encoding) { + case 'hex': + return hexWrite(this, string, offset, length); + + case 'utf8': + case 'utf-8': + return utf8Write(this, string, offset, length); + + case 'ascii': + case 'latin1': + case 'binary': + return asciiWrite(this, string, offset, length); + + case 'base64': + // Warning: maxLength not taken into account in base64Write + return base64Write(this, string, offset, length); + + case 'ucs2': + case 'ucs-2': + case 'utf16le': + case 'utf-16le': + return ucs2Write(this, string, offset, length); + + default: + if (loweredCase) throw new TypeError('Unknown encoding: ' + encoding); + encoding = ('' + encoding).toLowerCase(); + loweredCase = true; + } + } + }; + + Buffer.prototype.toJSON = function toJSON() { + return { + type: 'Buffer', + data: Array.prototype.slice.call(this._arr || this, 0) + }; + }; + + function base64Slice(buf, start, end) { + if (start === 0 && end === buf.length) { + return base64Js.fromByteArray(buf); + } else { + return base64Js.fromByteArray(buf.slice(start, end)); + } + } + + function utf8Slice(buf, start, end) { + end = Math.min(buf.length, end); + var res = []; + var i = start; + + while (i < end) { + var firstByte = buf[i]; + var codePoint = null; + var bytesPerSequence = firstByte > 0xEF ? 4 : firstByte > 0xDF ? 3 : firstByte > 0xBF ? 2 : 1; + + if (i + bytesPerSequence <= end) { + var secondByte, thirdByte, fourthByte, tempCodePoint; + + switch (bytesPerSequence) { + case 1: + if (firstByte < 0x80) { + codePoint = firstByte; + } + + break; + + case 2: + secondByte = buf[i + 1]; + + if ((secondByte & 0xC0) === 0x80) { + tempCodePoint = (firstByte & 0x1F) << 0x6 | secondByte & 0x3F; + + if (tempCodePoint > 0x7F) { + codePoint = tempCodePoint; + } + } + + break; + + case 3: + secondByte = buf[i + 1]; + thirdByte = buf[i + 2]; + + if ((secondByte & 0xC0) === 0x80 && (thirdByte & 0xC0) === 0x80) { + tempCodePoint = (firstByte & 0xF) << 0xC | (secondByte & 0x3F) << 0x6 | thirdByte & 0x3F; + + if (tempCodePoint > 0x7FF && (tempCodePoint < 0xD800 || tempCodePoint > 0xDFFF)) { + codePoint = tempCodePoint; + } + } + + break; + + case 4: + secondByte = buf[i + 1]; + thirdByte = buf[i + 2]; + fourthByte = buf[i + 3]; + + if ((secondByte & 0xC0) === 0x80 && (thirdByte & 0xC0) === 0x80 && (fourthByte & 0xC0) === 0x80) { + tempCodePoint = (firstByte & 0xF) << 0x12 | (secondByte & 0x3F) << 0xC | (thirdByte & 0x3F) << 0x6 | fourthByte & 0x3F; + + if (tempCodePoint > 0xFFFF && tempCodePoint < 0x110000) { + codePoint = tempCodePoint; + } + } + + } + } + + if (codePoint === null) { + // we did not generate a valid codePoint so insert a + // replacement char (U+FFFD) and advance only 1 byte + codePoint = 0xFFFD; + bytesPerSequence = 1; + } else if (codePoint > 0xFFFF) { + // encode to utf16 (surrogate pair dance) + codePoint -= 0x10000; + res.push(codePoint >>> 10 & 0x3FF | 0xD800); + codePoint = 0xDC00 | codePoint & 0x3FF; + } + + res.push(codePoint); + i += bytesPerSequence; + } + + return decodeCodePointsArray(res); + } // Based on http://stackoverflow.com/a/22747272/680742, the browser with + // the lowest limit is Chrome, with 0x10000 args. + // We go 1 magnitude less, for safety + + + var MAX_ARGUMENTS_LENGTH = 0x1000; + + function decodeCodePointsArray(codePoints) { + var len = codePoints.length; + + if (len <= MAX_ARGUMENTS_LENGTH) { + return String.fromCharCode.apply(String, codePoints); // avoid extra slice() + } // Decode in chunks to avoid "call stack size exceeded". + + + var res = ''; + var i = 0; + + while (i < len) { + res += String.fromCharCode.apply(String, codePoints.slice(i, i += MAX_ARGUMENTS_LENGTH)); + } + + return res; + } + + function asciiSlice(buf, start, end) { + var ret = ''; + end = Math.min(buf.length, end); + + for (var i = start; i < end; ++i) { + ret += String.fromCharCode(buf[i] & 0x7F); + } + + return ret; + } + + function latin1Slice(buf, start, end) { + var ret = ''; + end = Math.min(buf.length, end); + + for (var i = start; i < end; ++i) { + ret += String.fromCharCode(buf[i]); + } + + return ret; + } + + function hexSlice(buf, start, end) { + var len = buf.length; + if (!start || start < 0) start = 0; + if (!end || end < 0 || end > len) end = len; + var out = ''; + + for (var i = start; i < end; ++i) { + out += hexSliceLookupTable[buf[i]]; + } + + return out; + } + + function utf16leSlice(buf, start, end) { + var bytes = buf.slice(start, end); + var res = ''; // If bytes.length is odd, the last 8 bits must be ignored (same as node.js) + + for (var i = 0; i < bytes.length - 1; i += 2) { + res += String.fromCharCode(bytes[i] + bytes[i + 1] * 256); + } + + return res; + } + + Buffer.prototype.slice = function slice(start, end) { + var len = this.length; + start = ~~start; + end = end === undefined ? len : ~~end; + + if (start < 0) { + start += len; + if (start < 0) start = 0; + } else if (start > len) { + start = len; + } + + if (end < 0) { + end += len; + if (end < 0) end = 0; + } else if (end > len) { + end = len; + } + + if (end < start) end = start; + var newBuf = this.subarray(start, end); // Return an augmented `Uint8Array` instance + + Object.setPrototypeOf(newBuf, Buffer.prototype); + return newBuf; + }; + /* + * Need to make sure that buffer isn't trying to write out of bounds. + */ + + + function checkOffset(offset, ext, length) { + if (offset % 1 !== 0 || offset < 0) throw new RangeError('offset is not uint'); + if (offset + ext > length) throw new RangeError('Trying to access beyond buffer length'); + } + + Buffer.prototype.readUintLE = Buffer.prototype.readUIntLE = function readUIntLE(offset, byteLength, noAssert) { + offset = offset >>> 0; + byteLength = byteLength >>> 0; + if (!noAssert) checkOffset(offset, byteLength, this.length); + var val = this[offset]; + var mul = 1; + var i = 0; + + while (++i < byteLength && (mul *= 0x100)) { + val += this[offset + i] * mul; + } + + return val; + }; + + Buffer.prototype.readUintBE = Buffer.prototype.readUIntBE = function readUIntBE(offset, byteLength, noAssert) { + offset = offset >>> 0; + byteLength = byteLength >>> 0; + + if (!noAssert) { + checkOffset(offset, byteLength, this.length); + } + + var val = this[offset + --byteLength]; + var mul = 1; + + while (byteLength > 0 && (mul *= 0x100)) { + val += this[offset + --byteLength] * mul; + } + + return val; + }; + + Buffer.prototype.readUint8 = Buffer.prototype.readUInt8 = function readUInt8(offset, noAssert) { + offset = offset >>> 0; + if (!noAssert) checkOffset(offset, 1, this.length); + return this[offset]; + }; + + Buffer.prototype.readUint16LE = Buffer.prototype.readUInt16LE = function readUInt16LE(offset, noAssert) { + offset = offset >>> 0; + if (!noAssert) checkOffset(offset, 2, this.length); + return this[offset] | this[offset + 1] << 8; + }; + + Buffer.prototype.readUint16BE = Buffer.prototype.readUInt16BE = function readUInt16BE(offset, noAssert) { + offset = offset >>> 0; + if (!noAssert) checkOffset(offset, 2, this.length); + return this[offset] << 8 | this[offset + 1]; + }; + + Buffer.prototype.readUint32LE = Buffer.prototype.readUInt32LE = function readUInt32LE(offset, noAssert) { + offset = offset >>> 0; + if (!noAssert) checkOffset(offset, 4, this.length); + return (this[offset] | this[offset + 1] << 8 | this[offset + 2] << 16) + this[offset + 3] * 0x1000000; + }; + + Buffer.prototype.readUint32BE = Buffer.prototype.readUInt32BE = function readUInt32BE(offset, noAssert) { + offset = offset >>> 0; + if (!noAssert) checkOffset(offset, 4, this.length); + return this[offset] * 0x1000000 + (this[offset + 1] << 16 | this[offset + 2] << 8 | this[offset + 3]); + }; + + Buffer.prototype.readIntLE = function readIntLE(offset, byteLength, noAssert) { + offset = offset >>> 0; + byteLength = byteLength >>> 0; + if (!noAssert) checkOffset(offset, byteLength, this.length); + var val = this[offset]; + var mul = 1; + var i = 0; + + while (++i < byteLength && (mul *= 0x100)) { + val += this[offset + i] * mul; + } + + mul *= 0x80; + if (val >= mul) val -= Math.pow(2, 8 * byteLength); + return val; + }; + + Buffer.prototype.readIntBE = function readIntBE(offset, byteLength, noAssert) { + offset = offset >>> 0; + byteLength = byteLength >>> 0; + if (!noAssert) checkOffset(offset, byteLength, this.length); + var i = byteLength; + var mul = 1; + var val = this[offset + --i]; + + while (i > 0 && (mul *= 0x100)) { + val += this[offset + --i] * mul; + } + + mul *= 0x80; + if (val >= mul) val -= Math.pow(2, 8 * byteLength); + return val; + }; + + Buffer.prototype.readInt8 = function readInt8(offset, noAssert) { + offset = offset >>> 0; + if (!noAssert) checkOffset(offset, 1, this.length); + if (!(this[offset] & 0x80)) return this[offset]; + return (0xff - this[offset] + 1) * -1; + }; + + Buffer.prototype.readInt16LE = function readInt16LE(offset, noAssert) { + offset = offset >>> 0; + if (!noAssert) checkOffset(offset, 2, this.length); + var val = this[offset] | this[offset + 1] << 8; + return val & 0x8000 ? val | 0xFFFF0000 : val; + }; + + Buffer.prototype.readInt16BE = function readInt16BE(offset, noAssert) { + offset = offset >>> 0; + if (!noAssert) checkOffset(offset, 2, this.length); + var val = this[offset + 1] | this[offset] << 8; + return val & 0x8000 ? val | 0xFFFF0000 : val; + }; + + Buffer.prototype.readInt32LE = function readInt32LE(offset, noAssert) { + offset = offset >>> 0; + if (!noAssert) checkOffset(offset, 4, this.length); + return this[offset] | this[offset + 1] << 8 | this[offset + 2] << 16 | this[offset + 3] << 24; + }; + + Buffer.prototype.readInt32BE = function readInt32BE(offset, noAssert) { + offset = offset >>> 0; + if (!noAssert) checkOffset(offset, 4, this.length); + return this[offset] << 24 | this[offset + 1] << 16 | this[offset + 2] << 8 | this[offset + 3]; + }; + + Buffer.prototype.readFloatLE = function readFloatLE(offset, noAssert) { + offset = offset >>> 0; + if (!noAssert) checkOffset(offset, 4, this.length); + return ieee754.read(this, offset, true, 23, 4); + }; + + Buffer.prototype.readFloatBE = function readFloatBE(offset, noAssert) { + offset = offset >>> 0; + if (!noAssert) checkOffset(offset, 4, this.length); + return ieee754.read(this, offset, false, 23, 4); + }; + + Buffer.prototype.readDoubleLE = function readDoubleLE(offset, noAssert) { + offset = offset >>> 0; + if (!noAssert) checkOffset(offset, 8, this.length); + return ieee754.read(this, offset, true, 52, 8); + }; + + Buffer.prototype.readDoubleBE = function readDoubleBE(offset, noAssert) { + offset = offset >>> 0; + if (!noAssert) checkOffset(offset, 8, this.length); + return ieee754.read(this, offset, false, 52, 8); + }; + + function checkInt(buf, value, offset, ext, max, min) { + if (!Buffer.isBuffer(buf)) throw new TypeError('"buffer" argument must be a Buffer instance'); + if (value > max || value < min) throw new RangeError('"value" argument is out of bounds'); + if (offset + ext > buf.length) throw new RangeError('Index out of range'); + } + + Buffer.prototype.writeUintLE = Buffer.prototype.writeUIntLE = function writeUIntLE(value, offset, byteLength, noAssert) { + value = +value; + offset = offset >>> 0; + byteLength = byteLength >>> 0; + + if (!noAssert) { + var maxBytes = Math.pow(2, 8 * byteLength) - 1; + checkInt(this, value, offset, byteLength, maxBytes, 0); + } + + var mul = 1; + var i = 0; + this[offset] = value & 0xFF; + + while (++i < byteLength && (mul *= 0x100)) { + this[offset + i] = value / mul & 0xFF; + } + + return offset + byteLength; + }; + + Buffer.prototype.writeUintBE = Buffer.prototype.writeUIntBE = function writeUIntBE(value, offset, byteLength, noAssert) { + value = +value; + offset = offset >>> 0; + byteLength = byteLength >>> 0; + + if (!noAssert) { + var maxBytes = Math.pow(2, 8 * byteLength) - 1; + checkInt(this, value, offset, byteLength, maxBytes, 0); + } + + var i = byteLength - 1; + var mul = 1; + this[offset + i] = value & 0xFF; + + while (--i >= 0 && (mul *= 0x100)) { + this[offset + i] = value / mul & 0xFF; + } + + return offset + byteLength; + }; + + Buffer.prototype.writeUint8 = Buffer.prototype.writeUInt8 = function writeUInt8(value, offset, noAssert) { + value = +value; + offset = offset >>> 0; + if (!noAssert) checkInt(this, value, offset, 1, 0xff, 0); + this[offset] = value & 0xff; + return offset + 1; + }; + + Buffer.prototype.writeUint16LE = Buffer.prototype.writeUInt16LE = function writeUInt16LE(value, offset, noAssert) { + value = +value; + offset = offset >>> 0; + if (!noAssert) checkInt(this, value, offset, 2, 0xffff, 0); + this[offset] = value & 0xff; + this[offset + 1] = value >>> 8; + return offset + 2; + }; + + Buffer.prototype.writeUint16BE = Buffer.prototype.writeUInt16BE = function writeUInt16BE(value, offset, noAssert) { + value = +value; + offset = offset >>> 0; + if (!noAssert) checkInt(this, value, offset, 2, 0xffff, 0); + this[offset] = value >>> 8; + this[offset + 1] = value & 0xff; + return offset + 2; + }; + + Buffer.prototype.writeUint32LE = Buffer.prototype.writeUInt32LE = function writeUInt32LE(value, offset, noAssert) { + value = +value; + offset = offset >>> 0; + if (!noAssert) checkInt(this, value, offset, 4, 0xffffffff, 0); + this[offset + 3] = value >>> 24; + this[offset + 2] = value >>> 16; + this[offset + 1] = value >>> 8; + this[offset] = value & 0xff; + return offset + 4; + }; + + Buffer.prototype.writeUint32BE = Buffer.prototype.writeUInt32BE = function writeUInt32BE(value, offset, noAssert) { + value = +value; + offset = offset >>> 0; + if (!noAssert) checkInt(this, value, offset, 4, 0xffffffff, 0); + this[offset] = value >>> 24; + this[offset + 1] = value >>> 16; + this[offset + 2] = value >>> 8; + this[offset + 3] = value & 0xff; + return offset + 4; + }; + + Buffer.prototype.writeIntLE = function writeIntLE(value, offset, byteLength, noAssert) { + value = +value; + offset = offset >>> 0; + + if (!noAssert) { + var limit = Math.pow(2, 8 * byteLength - 1); + checkInt(this, value, offset, byteLength, limit - 1, -limit); + } + + var i = 0; + var mul = 1; + var sub = 0; + this[offset] = value & 0xFF; + + while (++i < byteLength && (mul *= 0x100)) { + if (value < 0 && sub === 0 && this[offset + i - 1] !== 0) { + sub = 1; + } + + this[offset + i] = (value / mul >> 0) - sub & 0xFF; + } + + return offset + byteLength; + }; + + Buffer.prototype.writeIntBE = function writeIntBE(value, offset, byteLength, noAssert) { + value = +value; + offset = offset >>> 0; + + if (!noAssert) { + var limit = Math.pow(2, 8 * byteLength - 1); + checkInt(this, value, offset, byteLength, limit - 1, -limit); + } + + var i = byteLength - 1; + var mul = 1; + var sub = 0; + this[offset + i] = value & 0xFF; + + while (--i >= 0 && (mul *= 0x100)) { + if (value < 0 && sub === 0 && this[offset + i + 1] !== 0) { + sub = 1; + } + + this[offset + i] = (value / mul >> 0) - sub & 0xFF; + } + + return offset + byteLength; + }; + + Buffer.prototype.writeInt8 = function writeInt8(value, offset, noAssert) { + value = +value; + offset = offset >>> 0; + if (!noAssert) checkInt(this, value, offset, 1, 0x7f, -0x80); + if (value < 0) value = 0xff + value + 1; + this[offset] = value & 0xff; + return offset + 1; + }; + + Buffer.prototype.writeInt16LE = function writeInt16LE(value, offset, noAssert) { + value = +value; + offset = offset >>> 0; + if (!noAssert) checkInt(this, value, offset, 2, 0x7fff, -0x8000); + this[offset] = value & 0xff; + this[offset + 1] = value >>> 8; + return offset + 2; + }; + + Buffer.prototype.writeInt16BE = function writeInt16BE(value, offset, noAssert) { + value = +value; + offset = offset >>> 0; + if (!noAssert) checkInt(this, value, offset, 2, 0x7fff, -0x8000); + this[offset] = value >>> 8; + this[offset + 1] = value & 0xff; + return offset + 2; + }; + + Buffer.prototype.writeInt32LE = function writeInt32LE(value, offset, noAssert) { + value = +value; + offset = offset >>> 0; + if (!noAssert) checkInt(this, value, offset, 4, 0x7fffffff, -0x80000000); + this[offset] = value & 0xff; + this[offset + 1] = value >>> 8; + this[offset + 2] = value >>> 16; + this[offset + 3] = value >>> 24; + return offset + 4; + }; + + Buffer.prototype.writeInt32BE = function writeInt32BE(value, offset, noAssert) { + value = +value; + offset = offset >>> 0; + if (!noAssert) checkInt(this, value, offset, 4, 0x7fffffff, -0x80000000); + if (value < 0) value = 0xffffffff + value + 1; + this[offset] = value >>> 24; + this[offset + 1] = value >>> 16; + this[offset + 2] = value >>> 8; + this[offset + 3] = value & 0xff; + return offset + 4; + }; + + function checkIEEE754(buf, value, offset, ext, max, min) { + if (offset + ext > buf.length) throw new RangeError('Index out of range'); + if (offset < 0) throw new RangeError('Index out of range'); + } + + function writeFloat(buf, value, offset, littleEndian, noAssert) { + value = +value; + offset = offset >>> 0; + + if (!noAssert) { + checkIEEE754(buf, value, offset, 4); + } + + ieee754.write(buf, value, offset, littleEndian, 23, 4); + return offset + 4; + } + + Buffer.prototype.writeFloatLE = function writeFloatLE(value, offset, noAssert) { + return writeFloat(this, value, offset, true, noAssert); + }; + + Buffer.prototype.writeFloatBE = function writeFloatBE(value, offset, noAssert) { + return writeFloat(this, value, offset, false, noAssert); + }; + + function writeDouble(buf, value, offset, littleEndian, noAssert) { + value = +value; + offset = offset >>> 0; + + if (!noAssert) { + checkIEEE754(buf, value, offset, 8); + } + + ieee754.write(buf, value, offset, littleEndian, 52, 8); + return offset + 8; + } + + Buffer.prototype.writeDoubleLE = function writeDoubleLE(value, offset, noAssert) { + return writeDouble(this, value, offset, true, noAssert); + }; + + Buffer.prototype.writeDoubleBE = function writeDoubleBE(value, offset, noAssert) { + return writeDouble(this, value, offset, false, noAssert); + }; // copy(targetBuffer, targetStart=0, sourceStart=0, sourceEnd=buffer.length) + + + Buffer.prototype.copy = function copy(target, targetStart, start, end) { + if (!Buffer.isBuffer(target)) throw new TypeError('argument should be a Buffer'); + if (!start) start = 0; + if (!end && end !== 0) end = this.length; + if (targetStart >= target.length) targetStart = target.length; + if (!targetStart) targetStart = 0; + if (end > 0 && end < start) end = start; // Copy 0 bytes; we're done + + if (end === start) return 0; + if (target.length === 0 || this.length === 0) return 0; // Fatal error conditions + + if (targetStart < 0) { + throw new RangeError('targetStart out of bounds'); + } + + if (start < 0 || start >= this.length) throw new RangeError('Index out of range'); + if (end < 0) throw new RangeError('sourceEnd out of bounds'); // Are we oob? + + if (end > this.length) end = this.length; + + if (target.length - targetStart < end - start) { + end = target.length - targetStart + start; + } + + var len = end - start; + + if (this === target && typeof Uint8Array.prototype.copyWithin === 'function') { + // Use built-in when available, missing from IE11 + this.copyWithin(targetStart, start, end); + } else { + Uint8Array.prototype.set.call(target, this.subarray(start, end), targetStart); + } + + return len; + }; // Usage: + // buffer.fill(number[, offset[, end]]) + // buffer.fill(buffer[, offset[, end]]) + // buffer.fill(string[, offset[, end]][, encoding]) + + + Buffer.prototype.fill = function fill(val, start, end, encoding) { + // Handle string cases: + if (typeof val === 'string') { + if (typeof start === 'string') { + encoding = start; + start = 0; + end = this.length; + } else if (typeof end === 'string') { + encoding = end; + end = this.length; + } + + if (encoding !== undefined && typeof encoding !== 'string') { + throw new TypeError('encoding must be a string'); + } + + if (typeof encoding === 'string' && !Buffer.isEncoding(encoding)) { + throw new TypeError('Unknown encoding: ' + encoding); + } + + if (val.length === 1) { + var code = val.charCodeAt(0); + + if (encoding === 'utf8' && code < 128 || encoding === 'latin1') { + // Fast path: If `val` fits into a single byte, use that numeric value. + val = code; + } + } + } else if (typeof val === 'number') { + val = val & 255; + } else if (typeof val === 'boolean') { + val = Number(val); + } // Invalid ranges are not set to a default, so can range check early. + + + if (start < 0 || this.length < start || this.length < end) { + throw new RangeError('Out of range index'); + } + + if (end <= start) { + return this; + } + + start = start >>> 0; + end = end === undefined ? this.length : end >>> 0; + if (!val) val = 0; + var i; + + if (typeof val === 'number') { + for (i = start; i < end; ++i) { + this[i] = val; + } + } else { + var bytes = Buffer.isBuffer(val) ? val : Buffer.from(val, encoding); + var len = bytes.length; + + if (len === 0) { + throw new TypeError('The value "' + val + '" is invalid for argument "value"'); + } + + for (i = 0; i < end - start; ++i) { + this[i + start] = bytes[i % len]; + } + } + + return this; + }; // HELPER FUNCTIONS + // ================ + + + var INVALID_BASE64_RE = /[^+/0-9A-Za-z-_]/g; + + function base64clean(str) { + // Node takes equal signs as end of the Base64 encoding + str = str.split('=')[0]; // Node strips out invalid characters like \n and \t from the string, base64-js does not + + str = str.trim().replace(INVALID_BASE64_RE, ''); // Node converts strings with length < 2 to '' + + if (str.length < 2) return ''; // Node allows for non-padded base64 strings (missing trailing ===), base64-js does not + + while (str.length % 4 !== 0) { + str = str + '='; + } + + return str; + } + + function utf8ToBytes(string, units) { + units = units || Infinity; + var codePoint; + var length = string.length; + var leadSurrogate = null; + var bytes = []; + + for (var i = 0; i < length; ++i) { + codePoint = string.charCodeAt(i); // is surrogate component + + if (codePoint > 0xD7FF && codePoint < 0xE000) { + // last char was a lead + if (!leadSurrogate) { + // no lead yet + if (codePoint > 0xDBFF) { + // unexpected trail + if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD); + continue; + } else if (i + 1 === length) { + // unpaired lead + if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD); + continue; + } // valid lead + + + leadSurrogate = codePoint; + continue; + } // 2 leads in a row + + + if (codePoint < 0xDC00) { + if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD); + leadSurrogate = codePoint; + continue; + } // valid surrogate pair + + + codePoint = (leadSurrogate - 0xD800 << 10 | codePoint - 0xDC00) + 0x10000; + } else if (leadSurrogate) { + // valid bmp char, but last char was a lead + if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD); + } + + leadSurrogate = null; // encode utf8 + + if (codePoint < 0x80) { + if ((units -= 1) < 0) break; + bytes.push(codePoint); + } else if (codePoint < 0x800) { + if ((units -= 2) < 0) break; + bytes.push(codePoint >> 0x6 | 0xC0, codePoint & 0x3F | 0x80); + } else if (codePoint < 0x10000) { + if ((units -= 3) < 0) break; + bytes.push(codePoint >> 0xC | 0xE0, codePoint >> 0x6 & 0x3F | 0x80, codePoint & 0x3F | 0x80); + } else if (codePoint < 0x110000) { + if ((units -= 4) < 0) break; + bytes.push(codePoint >> 0x12 | 0xF0, codePoint >> 0xC & 0x3F | 0x80, codePoint >> 0x6 & 0x3F | 0x80, codePoint & 0x3F | 0x80); + } else { + throw new Error('Invalid code point'); + } + } + + return bytes; + } + + function asciiToBytes(str) { + var byteArray = []; + + for (var i = 0; i < str.length; ++i) { + // Node's code seems to be doing this and not & 0x7F.. + byteArray.push(str.charCodeAt(i) & 0xFF); + } + + return byteArray; + } + + function utf16leToBytes(str, units) { + var c, hi, lo; + var byteArray = []; + + for (var i = 0; i < str.length; ++i) { + if ((units -= 2) < 0) break; + c = str.charCodeAt(i); + hi = c >> 8; + lo = c % 256; + byteArray.push(lo); + byteArray.push(hi); + } + + return byteArray; + } + + function base64ToBytes(str) { + return base64Js.toByteArray(base64clean(str)); + } + + function blitBuffer(src, dst, offset, length) { + for (var i = 0; i < length; ++i) { + if (i + offset >= dst.length || i >= src.length) break; + dst[i + offset] = src[i]; + } + + return i; + } // ArrayBuffer or Uint8Array objects from other contexts (i.e. iframes) do not pass + // the `instanceof` check but they should be treated as of that type. + // See: https://github.com/feross/buffer/issues/166 + + + function isInstance(obj, type) { + return obj instanceof type || obj != null && obj.constructor != null && obj.constructor.name != null && obj.constructor.name === type.name; + } + + function numberIsNaN(obj) { + // For IE11 support + return obj !== obj; // eslint-disable-line no-self-compare + } // Create lookup table for `toString('hex')` + // See: https://github.com/feross/buffer/issues/219 + + + var hexSliceLookupTable = function () { + var alphabet = '0123456789abcdef'; + var table = new Array(256); + + for (var i = 0; i < 16; ++i) { + var i16 = i * 16; + + for (var j = 0; j < 16; ++j) { + table[i16 + j] = alphabet[i] + alphabet[j]; + } + } + + return table; + }(); + }); + var buffer_1 = buffer$1.Buffer; + buffer$1.SlowBuffer; + buffer$1.INSPECT_MAX_BYTES; + buffer$1.kMaxLength; + + /*! ***************************************************************************** + Copyright (c) Microsoft Corporation. + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH + REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, + INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR + OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + PERFORMANCE OF THIS SOFTWARE. + ***************************************************************************** */ + + /* global Reflect, Promise */ + var _extendStatics = function extendStatics(d, b) { + _extendStatics = Object.setPrototypeOf || { + __proto__: [] + } instanceof Array && function (d, b) { + d.__proto__ = b; + } || function (d, b) { + for (var p in b) { + if (b.hasOwnProperty(p)) d[p] = b[p]; + } + }; + + return _extendStatics(d, b); + }; + + function __extends(d, b) { + _extendStatics(d, b); + + function __() { + this.constructor = d; + } + + d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); + } + + var _assign = function __assign() { + _assign = Object.assign || function __assign(t) { + for (var s, i = 1, n = arguments.length; i < n; i++) { + s = arguments[i]; + + for (var p in s) { + if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p]; + } + } + + return t; + }; + + return _assign.apply(this, arguments); + }; + + /** @public */ + var BSONError = /** @class */ (function (_super) { + __extends(BSONError, _super); + function BSONError(message) { + var _this = _super.call(this, message) || this; + Object.setPrototypeOf(_this, BSONError.prototype); + return _this; + } + Object.defineProperty(BSONError.prototype, "name", { + get: function () { + return 'BSONError'; + }, + enumerable: false, + configurable: true + }); + return BSONError; + }(Error)); + /** @public */ + var BSONTypeError = /** @class */ (function (_super) { + __extends(BSONTypeError, _super); + function BSONTypeError(message) { + var _this = _super.call(this, message) || this; + Object.setPrototypeOf(_this, BSONTypeError.prototype); + return _this; + } + Object.defineProperty(BSONTypeError.prototype, "name", { + get: function () { + return 'BSONTypeError'; + }, + enumerable: false, + configurable: true + }); + return BSONTypeError; + }(TypeError)); + + function checkForMath(potentialGlobal) { + // eslint-disable-next-line eqeqeq + return potentialGlobal && potentialGlobal.Math == Math && potentialGlobal; + } + // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028 + function getGlobal() { + return (checkForMath(typeof globalThis === 'object' && globalThis) || + checkForMath(typeof window === 'object' && window) || + checkForMath(typeof self === 'object' && self) || + checkForMath(typeof global === 'object' && global) || + // eslint-disable-next-line @typescript-eslint/no-implied-eval + Function('return this')()); + } + + /** + * Normalizes our expected stringified form of a function across versions of node + * @param fn - The function to stringify + */ + function normalizedFunctionString(fn) { + return fn.toString().replace('function(', 'function ('); + } + function isReactNative() { + var g = getGlobal(); + return typeof g.navigator === 'object' && g.navigator.product === 'ReactNative'; + } + var insecureRandomBytes = function insecureRandomBytes(size) { + var insecureWarning = isReactNative() + ? 'BSON: For React Native please polyfill crypto.getRandomValues, e.g. using: https://www.npmjs.com/package/react-native-get-random-values.' + : 'BSON: No cryptographic implementation for random bytes present, falling back to a less secure implementation.'; + console.warn(insecureWarning); + var result = buffer_1.alloc(size); + for (var i = 0; i < size; ++i) + result[i] = Math.floor(Math.random() * 256); + return result; + }; + var detectRandomBytes = function () { + { + if (typeof window !== 'undefined') { + // browser crypto implementation(s) + var target_1 = window.crypto || window.msCrypto; // allow for IE11 + if (target_1 && target_1.getRandomValues) { + return function (size) { return target_1.getRandomValues(buffer_1.alloc(size)); }; + } + } + if (typeof global !== 'undefined' && global.crypto && global.crypto.getRandomValues) { + // allow for RN packages such as https://www.npmjs.com/package/react-native-get-random-values to populate global + return function (size) { return global.crypto.getRandomValues(buffer_1.alloc(size)); }; + } + return insecureRandomBytes; + } + }; + var randomBytes = detectRandomBytes(); + function isAnyArrayBuffer(value) { + return ['[object ArrayBuffer]', '[object SharedArrayBuffer]'].includes(Object.prototype.toString.call(value)); + } + function isUint8Array(value) { + return Object.prototype.toString.call(value) === '[object Uint8Array]'; + } + function isBigInt64Array(value) { + return Object.prototype.toString.call(value) === '[object BigInt64Array]'; + } + function isBigUInt64Array(value) { + return Object.prototype.toString.call(value) === '[object BigUint64Array]'; + } + function isRegExp(d) { + return Object.prototype.toString.call(d) === '[object RegExp]'; + } + function isMap(d) { + return Object.prototype.toString.call(d) === '[object Map]'; + } + // To ensure that 0.4 of node works correctly + function isDate(d) { + return isObjectLike(d) && Object.prototype.toString.call(d) === '[object Date]'; + } + /** + * @internal + * this is to solve the `'someKey' in x` problem where x is unknown. + * https://github.com/typescript-eslint/typescript-eslint/issues/1071#issuecomment-541955753 + */ + function isObjectLike(candidate) { + return typeof candidate === 'object' && candidate !== null; + } + function deprecate(fn, message) { + var warned = false; + function deprecated() { + var args = []; + for (var _i = 0; _i < arguments.length; _i++) { + args[_i] = arguments[_i]; + } + if (!warned) { + console.warn(message); + warned = true; + } + return fn.apply(this, args); + } + return deprecated; + } + + /** + * Makes sure that, if a Uint8Array is passed in, it is wrapped in a Buffer. + * + * @param potentialBuffer - The potential buffer + * @returns Buffer the input if potentialBuffer is a buffer, or a buffer that + * wraps a passed in Uint8Array + * @throws BSONTypeError If anything other than a Buffer or Uint8Array is passed in + */ + function ensureBuffer(potentialBuffer) { + if (ArrayBuffer.isView(potentialBuffer)) { + return buffer_1.from(potentialBuffer.buffer, potentialBuffer.byteOffset, potentialBuffer.byteLength); + } + if (isAnyArrayBuffer(potentialBuffer)) { + return buffer_1.from(potentialBuffer); + } + throw new BSONTypeError('Must use either Buffer or TypedArray'); + } + + // Validation regex for v4 uuid (validates with or without dashes) + var VALIDATION_REGEX = /^(?:[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|[0-9a-f]{12}4[0-9a-f]{3}[89ab][0-9a-f]{15})$/i; + var uuidValidateString = function (str) { + return typeof str === 'string' && VALIDATION_REGEX.test(str); + }; + var uuidHexStringToBuffer = function (hexString) { + if (!uuidValidateString(hexString)) { + throw new BSONTypeError('UUID string representations must be a 32 or 36 character hex string (dashes excluded/included). Format: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" or "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx".'); + } + var sanitizedHexString = hexString.replace(/-/g, ''); + return buffer_1.from(sanitizedHexString, 'hex'); + }; + var bufferToUuidHexString = function (buffer, includeDashes) { + if (includeDashes === void 0) { includeDashes = true; } + return includeDashes + ? buffer.toString('hex', 0, 4) + + '-' + + buffer.toString('hex', 4, 6) + + '-' + + buffer.toString('hex', 6, 8) + + '-' + + buffer.toString('hex', 8, 10) + + '-' + + buffer.toString('hex', 10, 16) + : buffer.toString('hex'); + }; + + /** @internal */ + var BSON_INT32_MAX$1 = 0x7fffffff; + /** @internal */ + var BSON_INT32_MIN$1 = -0x80000000; + /** @internal */ + var BSON_INT64_MAX$1 = Math.pow(2, 63) - 1; + /** @internal */ + var BSON_INT64_MIN$1 = -Math.pow(2, 63); + /** + * Any integer up to 2^53 can be precisely represented by a double. + * @internal + */ + var JS_INT_MAX = Math.pow(2, 53); + /** + * Any integer down to -2^53 can be precisely represented by a double. + * @internal + */ + var JS_INT_MIN = -Math.pow(2, 53); + /** Number BSON Type @internal */ + var BSON_DATA_NUMBER = 1; + /** String BSON Type @internal */ + var BSON_DATA_STRING = 2; + /** Object BSON Type @internal */ + var BSON_DATA_OBJECT = 3; + /** Array BSON Type @internal */ + var BSON_DATA_ARRAY = 4; + /** Binary BSON Type @internal */ + var BSON_DATA_BINARY = 5; + /** Binary BSON Type @internal */ + var BSON_DATA_UNDEFINED = 6; + /** ObjectId BSON Type @internal */ + var BSON_DATA_OID = 7; + /** Boolean BSON Type @internal */ + var BSON_DATA_BOOLEAN = 8; + /** Date BSON Type @internal */ + var BSON_DATA_DATE = 9; + /** null BSON Type @internal */ + var BSON_DATA_NULL = 10; + /** RegExp BSON Type @internal */ + var BSON_DATA_REGEXP = 11; + /** Code BSON Type @internal */ + var BSON_DATA_DBPOINTER = 12; + /** Code BSON Type @internal */ + var BSON_DATA_CODE = 13; + /** Symbol BSON Type @internal */ + var BSON_DATA_SYMBOL = 14; + /** Code with Scope BSON Type @internal */ + var BSON_DATA_CODE_W_SCOPE = 15; + /** 32 bit Integer BSON Type @internal */ + var BSON_DATA_INT = 16; + /** Timestamp BSON Type @internal */ + var BSON_DATA_TIMESTAMP = 17; + /** Long BSON Type @internal */ + var BSON_DATA_LONG = 18; + /** Decimal128 BSON Type @internal */ + var BSON_DATA_DECIMAL128 = 19; + /** MinKey BSON Type @internal */ + var BSON_DATA_MIN_KEY = 0xff; + /** MaxKey BSON Type @internal */ + var BSON_DATA_MAX_KEY = 0x7f; + /** Binary Default Type @internal */ + var BSON_BINARY_SUBTYPE_DEFAULT = 0; + /** Binary Function Type @internal */ + var BSON_BINARY_SUBTYPE_FUNCTION = 1; + /** Binary Byte Array Type @internal */ + var BSON_BINARY_SUBTYPE_BYTE_ARRAY = 2; + /** Binary Deprecated UUID Type @deprecated Please use BSON_BINARY_SUBTYPE_UUID_NEW @internal */ + var BSON_BINARY_SUBTYPE_UUID = 3; + /** Binary UUID Type @internal */ + var BSON_BINARY_SUBTYPE_UUID_NEW = 4; + /** Binary MD5 Type @internal */ + var BSON_BINARY_SUBTYPE_MD5 = 5; + /** Encrypted BSON type @internal */ + var BSON_BINARY_SUBTYPE_ENCRYPTED = 6; + /** Column BSON type @internal */ + var BSON_BINARY_SUBTYPE_COLUMN = 7; + /** Binary User Defined Type @internal */ + var BSON_BINARY_SUBTYPE_USER_DEFINED = 128; + + /** + * A class representation of the BSON Binary type. + * @public + * @category BSONType + */ + var Binary = /** @class */ (function () { + /** + * Create a new Binary instance. + * + * This constructor can accept a string as its first argument. In this case, + * this string will be encoded using ISO-8859-1, **not** using UTF-8. + * This is almost certainly not what you want. Use `new Binary(Buffer.from(string))` + * instead to convert the string to a Buffer using UTF-8 first. + * + * @param buffer - a buffer object containing the binary data. + * @param subType - the option binary type. + */ + function Binary(buffer, subType) { + if (!(this instanceof Binary)) + return new Binary(buffer, subType); + if (!(buffer == null) && + !(typeof buffer === 'string') && + !ArrayBuffer.isView(buffer) && + !(buffer instanceof ArrayBuffer) && + !Array.isArray(buffer)) { + throw new BSONTypeError('Binary can only be constructed from string, Buffer, TypedArray, or Array'); + } + this.sub_type = subType !== null && subType !== void 0 ? subType : Binary.BSON_BINARY_SUBTYPE_DEFAULT; + if (buffer == null) { + // create an empty binary buffer + this.buffer = buffer_1.alloc(Binary.BUFFER_SIZE); + this.position = 0; + } + else { + if (typeof buffer === 'string') { + // string + this.buffer = buffer_1.from(buffer, 'binary'); + } + else if (Array.isArray(buffer)) { + // number[] + this.buffer = buffer_1.from(buffer); + } + else { + // Buffer | TypedArray | ArrayBuffer + this.buffer = ensureBuffer(buffer); + } + this.position = this.buffer.byteLength; + } + } + /** + * Updates this binary with byte_value. + * + * @param byteValue - a single byte we wish to write. + */ + Binary.prototype.put = function (byteValue) { + // If it's a string and a has more than one character throw an error + if (typeof byteValue === 'string' && byteValue.length !== 1) { + throw new BSONTypeError('only accepts single character String'); + } + else if (typeof byteValue !== 'number' && byteValue.length !== 1) + throw new BSONTypeError('only accepts single character Uint8Array or Array'); + // Decode the byte value once + var decodedByte; + if (typeof byteValue === 'string') { + decodedByte = byteValue.charCodeAt(0); + } + else if (typeof byteValue === 'number') { + decodedByte = byteValue; + } + else { + decodedByte = byteValue[0]; + } + if (decodedByte < 0 || decodedByte > 255) { + throw new BSONTypeError('only accepts number in a valid unsigned byte range 0-255'); + } + if (this.buffer.length > this.position) { + this.buffer[this.position++] = decodedByte; + } + else { + var buffer = buffer_1.alloc(Binary.BUFFER_SIZE + this.buffer.length); + // Combine the two buffers together + this.buffer.copy(buffer, 0, 0, this.buffer.length); + this.buffer = buffer; + this.buffer[this.position++] = decodedByte; + } + }; + /** + * Writes a buffer or string to the binary. + * + * @param sequence - a string or buffer to be written to the Binary BSON object. + * @param offset - specify the binary of where to write the content. + */ + Binary.prototype.write = function (sequence, offset) { + offset = typeof offset === 'number' ? offset : this.position; + // If the buffer is to small let's extend the buffer + if (this.buffer.length < offset + sequence.length) { + var buffer = buffer_1.alloc(this.buffer.length + sequence.length); + this.buffer.copy(buffer, 0, 0, this.buffer.length); + // Assign the new buffer + this.buffer = buffer; + } + if (ArrayBuffer.isView(sequence)) { + this.buffer.set(ensureBuffer(sequence), offset); + this.position = + offset + sequence.byteLength > this.position ? offset + sequence.length : this.position; + } + else if (typeof sequence === 'string') { + this.buffer.write(sequence, offset, sequence.length, 'binary'); + this.position = + offset + sequence.length > this.position ? offset + sequence.length : this.position; + } + }; + /** + * Reads **length** bytes starting at **position**. + * + * @param position - read from the given position in the Binary. + * @param length - the number of bytes to read. + */ + Binary.prototype.read = function (position, length) { + length = length && length > 0 ? length : this.position; + // Let's return the data based on the type we have + return this.buffer.slice(position, position + length); + }; + /** + * Returns the value of this binary as a string. + * @param asRaw - Will skip converting to a string + * @remarks + * This is handy when calling this function conditionally for some key value pairs and not others + */ + Binary.prototype.value = function (asRaw) { + asRaw = !!asRaw; + // Optimize to serialize for the situation where the data == size of buffer + if (asRaw && this.buffer.length === this.position) { + return this.buffer; + } + // If it's a node.js buffer object + if (asRaw) { + return this.buffer.slice(0, this.position); + } + return this.buffer.toString('binary', 0, this.position); + }; + /** the length of the binary sequence */ + Binary.prototype.length = function () { + return this.position; + }; + Binary.prototype.toJSON = function () { + return this.buffer.toString('base64'); + }; + Binary.prototype.toString = function (format) { + return this.buffer.toString(format); + }; + /** @internal */ + Binary.prototype.toExtendedJSON = function (options) { + options = options || {}; + var base64String = this.buffer.toString('base64'); + var subType = Number(this.sub_type).toString(16); + if (options.legacy) { + return { + $binary: base64String, + $type: subType.length === 1 ? '0' + subType : subType + }; + } + return { + $binary: { + base64: base64String, + subType: subType.length === 1 ? '0' + subType : subType + } + }; + }; + Binary.prototype.toUUID = function () { + if (this.sub_type === Binary.SUBTYPE_UUID) { + return new UUID(this.buffer.slice(0, this.position)); + } + throw new BSONError("Binary sub_type \"".concat(this.sub_type, "\" is not supported for converting to UUID. Only \"").concat(Binary.SUBTYPE_UUID, "\" is currently supported.")); + }; + /** @internal */ + Binary.fromExtendedJSON = function (doc, options) { + options = options || {}; + var data; + var type; + if ('$binary' in doc) { + if (options.legacy && typeof doc.$binary === 'string' && '$type' in doc) { + type = doc.$type ? parseInt(doc.$type, 16) : 0; + data = buffer_1.from(doc.$binary, 'base64'); + } + else { + if (typeof doc.$binary !== 'string') { + type = doc.$binary.subType ? parseInt(doc.$binary.subType, 16) : 0; + data = buffer_1.from(doc.$binary.base64, 'base64'); + } + } + } + else if ('$uuid' in doc) { + type = 4; + data = uuidHexStringToBuffer(doc.$uuid); + } + if (!data) { + throw new BSONTypeError("Unexpected Binary Extended JSON format ".concat(JSON.stringify(doc))); + } + return type === BSON_BINARY_SUBTYPE_UUID_NEW ? new UUID(data) : new Binary(data, type); + }; + /** @internal */ + Binary.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () { + return this.inspect(); + }; + Binary.prototype.inspect = function () { + var asBuffer = this.value(true); + return "new Binary(Buffer.from(\"".concat(asBuffer.toString('hex'), "\", \"hex\"), ").concat(this.sub_type, ")"); + }; + /** + * Binary default subtype + * @internal + */ + Binary.BSON_BINARY_SUBTYPE_DEFAULT = 0; + /** Initial buffer default size */ + Binary.BUFFER_SIZE = 256; + /** Default BSON type */ + Binary.SUBTYPE_DEFAULT = 0; + /** Function BSON type */ + Binary.SUBTYPE_FUNCTION = 1; + /** Byte Array BSON type */ + Binary.SUBTYPE_BYTE_ARRAY = 2; + /** Deprecated UUID BSON type @deprecated Please use SUBTYPE_UUID */ + Binary.SUBTYPE_UUID_OLD = 3; + /** UUID BSON type */ + Binary.SUBTYPE_UUID = 4; + /** MD5 BSON type */ + Binary.SUBTYPE_MD5 = 5; + /** Encrypted BSON type */ + Binary.SUBTYPE_ENCRYPTED = 6; + /** Column BSON type */ + Binary.SUBTYPE_COLUMN = 7; + /** User BSON type */ + Binary.SUBTYPE_USER_DEFINED = 128; + return Binary; + }()); + Object.defineProperty(Binary.prototype, '_bsontype', { value: 'Binary' }); + var UUID_BYTE_LENGTH = 16; + /** + * A class representation of the BSON UUID type. + * @public + */ + var UUID = /** @class */ (function (_super) { + __extends(UUID, _super); + /** + * Create an UUID type + * + * @param input - Can be a 32 or 36 character hex string (dashes excluded/included) or a 16 byte binary Buffer. + */ + function UUID(input) { + var _this = this; + var bytes; + var hexStr; + if (input == null) { + bytes = UUID.generate(); + } + else if (input instanceof UUID) { + bytes = buffer_1.from(input.buffer); + hexStr = input.__id; + } + else if (ArrayBuffer.isView(input) && input.byteLength === UUID_BYTE_LENGTH) { + bytes = ensureBuffer(input); + } + else if (typeof input === 'string') { + bytes = uuidHexStringToBuffer(input); + } + else { + throw new BSONTypeError('Argument passed in UUID constructor must be a UUID, a 16 byte Buffer or a 32/36 character hex string (dashes excluded/included, format: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx).'); + } + _this = _super.call(this, bytes, BSON_BINARY_SUBTYPE_UUID_NEW) || this; + _this.__id = hexStr; + return _this; + } + Object.defineProperty(UUID.prototype, "id", { + /** + * The UUID bytes + * @readonly + */ + get: function () { + return this.buffer; + }, + set: function (value) { + this.buffer = value; + if (UUID.cacheHexString) { + this.__id = bufferToUuidHexString(value); + } + }, + enumerable: false, + configurable: true + }); + /** + * Returns the UUID id as a 32 or 36 character hex string representation, excluding/including dashes (defaults to 36 character dash separated) + * @param includeDashes - should the string exclude dash-separators. + * */ + UUID.prototype.toHexString = function (includeDashes) { + if (includeDashes === void 0) { includeDashes = true; } + if (UUID.cacheHexString && this.__id) { + return this.__id; + } + var uuidHexString = bufferToUuidHexString(this.id, includeDashes); + if (UUID.cacheHexString) { + this.__id = uuidHexString; + } + return uuidHexString; + }; + /** + * Converts the id into a 36 character (dashes included) hex string, unless a encoding is specified. + */ + UUID.prototype.toString = function (encoding) { + return encoding ? this.id.toString(encoding) : this.toHexString(); + }; + /** + * Converts the id into its JSON string representation. + * A 36 character (dashes included) hex string in the format: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx + */ + UUID.prototype.toJSON = function () { + return this.toHexString(); + }; + /** + * Compares the equality of this UUID with `otherID`. + * + * @param otherId - UUID instance to compare against. + */ + UUID.prototype.equals = function (otherId) { + if (!otherId) { + return false; + } + if (otherId instanceof UUID) { + return otherId.id.equals(this.id); + } + try { + return new UUID(otherId).id.equals(this.id); + } + catch (_a) { + return false; + } + }; + /** + * Creates a Binary instance from the current UUID. + */ + UUID.prototype.toBinary = function () { + return new Binary(this.id, Binary.SUBTYPE_UUID); + }; + /** + * Generates a populated buffer containing a v4 uuid + */ + UUID.generate = function () { + var bytes = randomBytes(UUID_BYTE_LENGTH); + // Per 4.4, set bits for version and `clock_seq_hi_and_reserved` + // Kindly borrowed from https://github.com/uuidjs/uuid/blob/master/src/v4.js + bytes[6] = (bytes[6] & 0x0f) | 0x40; + bytes[8] = (bytes[8] & 0x3f) | 0x80; + return buffer_1.from(bytes); + }; + /** + * Checks if a value is a valid bson UUID + * @param input - UUID, string or Buffer to validate. + */ + UUID.isValid = function (input) { + if (!input) { + return false; + } + if (input instanceof UUID) { + return true; + } + if (typeof input === 'string') { + return uuidValidateString(input); + } + if (isUint8Array(input)) { + // check for length & uuid version (https://tools.ietf.org/html/rfc4122#section-4.1.3) + if (input.length !== UUID_BYTE_LENGTH) { + return false; + } + return (input[6] & 0xf0) === 0x40 && (input[8] & 0x80) === 0x80; + } + return false; + }; + /** + * Creates an UUID from a hex string representation of an UUID. + * @param hexString - 32 or 36 character hex string (dashes excluded/included). + */ + UUID.createFromHexString = function (hexString) { + var buffer = uuidHexStringToBuffer(hexString); + return new UUID(buffer); + }; + /** + * Converts to a string representation of this Id. + * + * @returns return the 36 character hex string representation. + * @internal + */ + UUID.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () { + return this.inspect(); + }; + UUID.prototype.inspect = function () { + return "new UUID(\"".concat(this.toHexString(), "\")"); + }; + return UUID; + }(Binary)); + + /** + * A class representation of the BSON Code type. + * @public + * @category BSONType + */ + var Code = /** @class */ (function () { + /** + * @param code - a string or function. + * @param scope - an optional scope for the function. + */ + function Code(code, scope) { + if (!(this instanceof Code)) + return new Code(code, scope); + this.code = code; + this.scope = scope; + } + Code.prototype.toJSON = function () { + return { code: this.code, scope: this.scope }; + }; + /** @internal */ + Code.prototype.toExtendedJSON = function () { + if (this.scope) { + return { $code: this.code, $scope: this.scope }; + } + return { $code: this.code }; + }; + /** @internal */ + Code.fromExtendedJSON = function (doc) { + return new Code(doc.$code, doc.$scope); + }; + /** @internal */ + Code.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () { + return this.inspect(); + }; + Code.prototype.inspect = function () { + var codeJson = this.toJSON(); + return "new Code(\"".concat(String(codeJson.code), "\"").concat(codeJson.scope ? ", ".concat(JSON.stringify(codeJson.scope)) : '', ")"); + }; + return Code; + }()); + Object.defineProperty(Code.prototype, '_bsontype', { value: 'Code' }); + + /** @internal */ + function isDBRefLike(value) { + return (isObjectLike(value) && + value.$id != null && + typeof value.$ref === 'string' && + (value.$db == null || typeof value.$db === 'string')); + } + /** + * A class representation of the BSON DBRef type. + * @public + * @category BSONType + */ + var DBRef = /** @class */ (function () { + /** + * @param collection - the collection name. + * @param oid - the reference ObjectId. + * @param db - optional db name, if omitted the reference is local to the current db. + */ + function DBRef(collection, oid, db, fields) { + if (!(this instanceof DBRef)) + return new DBRef(collection, oid, db, fields); + // check if namespace has been provided + var parts = collection.split('.'); + if (parts.length === 2) { + db = parts.shift(); + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + collection = parts.shift(); + } + this.collection = collection; + this.oid = oid; + this.db = db; + this.fields = fields || {}; + } + Object.defineProperty(DBRef.prototype, "namespace", { + // Property provided for compatibility with the 1.x parser + // the 1.x parser used a "namespace" property, while 4.x uses "collection" + /** @internal */ + get: function () { + return this.collection; + }, + set: function (value) { + this.collection = value; + }, + enumerable: false, + configurable: true + }); + DBRef.prototype.toJSON = function () { + var o = Object.assign({ + $ref: this.collection, + $id: this.oid + }, this.fields); + if (this.db != null) + o.$db = this.db; + return o; + }; + /** @internal */ + DBRef.prototype.toExtendedJSON = function (options) { + options = options || {}; + var o = { + $ref: this.collection, + $id: this.oid + }; + if (options.legacy) { + return o; + } + if (this.db) + o.$db = this.db; + o = Object.assign(o, this.fields); + return o; + }; + /** @internal */ + DBRef.fromExtendedJSON = function (doc) { + var copy = Object.assign({}, doc); + delete copy.$ref; + delete copy.$id; + delete copy.$db; + return new DBRef(doc.$ref, doc.$id, doc.$db, copy); + }; + /** @internal */ + DBRef.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () { + return this.inspect(); + }; + DBRef.prototype.inspect = function () { + // NOTE: if OID is an ObjectId class it will just print the oid string. + var oid = this.oid === undefined || this.oid.toString === undefined ? this.oid : this.oid.toString(); + return "new DBRef(\"".concat(this.namespace, "\", new ObjectId(\"").concat(String(oid), "\")").concat(this.db ? ", \"".concat(this.db, "\"") : '', ")"); + }; + return DBRef; + }()); + Object.defineProperty(DBRef.prototype, '_bsontype', { value: 'DBRef' }); + + /** + * wasm optimizations, to do native i64 multiplication and divide + */ + var wasm = undefined; + try { + wasm = new WebAssembly.Instance(new WebAssembly.Module( + // prettier-ignore + new Uint8Array([0, 97, 115, 109, 1, 0, 0, 0, 1, 13, 2, 96, 0, 1, 127, 96, 4, 127, 127, 127, 127, 1, 127, 3, 7, 6, 0, 1, 1, 1, 1, 1, 6, 6, 1, 127, 1, 65, 0, 11, 7, 50, 6, 3, 109, 117, 108, 0, 1, 5, 100, 105, 118, 95, 115, 0, 2, 5, 100, 105, 118, 95, 117, 0, 3, 5, 114, 101, 109, 95, 115, 0, 4, 5, 114, 101, 109, 95, 117, 0, 5, 8, 103, 101, 116, 95, 104, 105, 103, 104, 0, 0, 10, 191, 1, 6, 4, 0, 35, 0, 11, 36, 1, 1, 126, 32, 0, 173, 32, 1, 173, 66, 32, 134, 132, 32, 2, 173, 32, 3, 173, 66, 32, 134, 132, 126, 34, 4, 66, 32, 135, 167, 36, 0, 32, 4, 167, 11, 36, 1, 1, 126, 32, 0, 173, 32, 1, 173, 66, 32, 134, 132, 32, 2, 173, 32, 3, 173, 66, 32, 134, 132, 127, 34, 4, 66, 32, 135, 167, 36, 0, 32, 4, 167, 11, 36, 1, 1, 126, 32, 0, 173, 32, 1, 173, 66, 32, 134, 132, 32, 2, 173, 32, 3, 173, 66, 32, 134, 132, 128, 34, 4, 66, 32, 135, 167, 36, 0, 32, 4, 167, 11, 36, 1, 1, 126, 32, 0, 173, 32, 1, 173, 66, 32, 134, 132, 32, 2, 173, 32, 3, 173, 66, 32, 134, 132, 129, 34, 4, 66, 32, 135, 167, 36, 0, 32, 4, 167, 11, 36, 1, 1, 126, 32, 0, 173, 32, 1, 173, 66, 32, 134, 132, 32, 2, 173, 32, 3, 173, 66, 32, 134, 132, 130, 34, 4, 66, 32, 135, 167, 36, 0, 32, 4, 167, 11])), {}).exports; + } + catch (_a) { + // no wasm support + } + var TWO_PWR_16_DBL = 1 << 16; + var TWO_PWR_24_DBL = 1 << 24; + var TWO_PWR_32_DBL = TWO_PWR_16_DBL * TWO_PWR_16_DBL; + var TWO_PWR_64_DBL = TWO_PWR_32_DBL * TWO_PWR_32_DBL; + var TWO_PWR_63_DBL = TWO_PWR_64_DBL / 2; + /** A cache of the Long representations of small integer values. */ + var INT_CACHE = {}; + /** A cache of the Long representations of small unsigned integer values. */ + var UINT_CACHE = {}; + /** + * A class representing a 64-bit integer + * @public + * @category BSONType + * @remarks + * The internal representation of a long is the two given signed, 32-bit values. + * We use 32-bit pieces because these are the size of integers on which + * Javascript performs bit-operations. For operations like addition and + * multiplication, we split each number into 16 bit pieces, which can easily be + * multiplied within Javascript's floating-point representation without overflow + * or change in sign. + * In the algorithms below, we frequently reduce the negative case to the + * positive case by negating the input(s) and then post-processing the result. + * Note that we must ALWAYS check specially whether those values are MIN_VALUE + * (-2^63) because -MIN_VALUE == MIN_VALUE (since 2^63 cannot be represented as + * a positive number, it overflows back into a negative). Not handling this + * case would often result in infinite recursion. + * Common constant values ZERO, ONE, NEG_ONE, etc. are found as static properties on this class. + */ + var Long = /** @class */ (function () { + /** + * Constructs a 64 bit two's-complement integer, given its low and high 32 bit values as *signed* integers. + * See the from* functions below for more convenient ways of constructing Longs. + * + * Acceptable signatures are: + * - Long(low, high, unsigned?) + * - Long(bigint, unsigned?) + * - Long(string, unsigned?) + * + * @param low - The low (signed) 32 bits of the long + * @param high - The high (signed) 32 bits of the long + * @param unsigned - Whether unsigned or not, defaults to signed + */ + function Long(low, high, unsigned) { + if (low === void 0) { low = 0; } + if (!(this instanceof Long)) + return new Long(low, high, unsigned); + if (typeof low === 'bigint') { + Object.assign(this, Long.fromBigInt(low, !!high)); + } + else if (typeof low === 'string') { + Object.assign(this, Long.fromString(low, !!high)); + } + else { + this.low = low | 0; + this.high = high | 0; + this.unsigned = !!unsigned; + } + Object.defineProperty(this, '__isLong__', { + value: true, + configurable: false, + writable: false, + enumerable: false + }); + } + /** + * Returns a Long representing the 64 bit integer that comes by concatenating the given low and high bits. + * Each is assumed to use 32 bits. + * @param lowBits - The low 32 bits + * @param highBits - The high 32 bits + * @param unsigned - Whether unsigned or not, defaults to signed + * @returns The corresponding Long value + */ + Long.fromBits = function (lowBits, highBits, unsigned) { + return new Long(lowBits, highBits, unsigned); + }; + /** + * Returns a Long representing the given 32 bit integer value. + * @param value - The 32 bit integer in question + * @param unsigned - Whether unsigned or not, defaults to signed + * @returns The corresponding Long value + */ + Long.fromInt = function (value, unsigned) { + var obj, cachedObj, cache; + if (unsigned) { + value >>>= 0; + if ((cache = 0 <= value && value < 256)) { + cachedObj = UINT_CACHE[value]; + if (cachedObj) + return cachedObj; + } + obj = Long.fromBits(value, (value | 0) < 0 ? -1 : 0, true); + if (cache) + UINT_CACHE[value] = obj; + return obj; + } + else { + value |= 0; + if ((cache = -128 <= value && value < 128)) { + cachedObj = INT_CACHE[value]; + if (cachedObj) + return cachedObj; + } + obj = Long.fromBits(value, value < 0 ? -1 : 0, false); + if (cache) + INT_CACHE[value] = obj; + return obj; + } + }; + /** + * Returns a Long representing the given value, provided that it is a finite number. Otherwise, zero is returned. + * @param value - The number in question + * @param unsigned - Whether unsigned or not, defaults to signed + * @returns The corresponding Long value + */ + Long.fromNumber = function (value, unsigned) { + if (isNaN(value)) + return unsigned ? Long.UZERO : Long.ZERO; + if (unsigned) { + if (value < 0) + return Long.UZERO; + if (value >= TWO_PWR_64_DBL) + return Long.MAX_UNSIGNED_VALUE; + } + else { + if (value <= -TWO_PWR_63_DBL) + return Long.MIN_VALUE; + if (value + 1 >= TWO_PWR_63_DBL) + return Long.MAX_VALUE; + } + if (value < 0) + return Long.fromNumber(-value, unsigned).neg(); + return Long.fromBits(value % TWO_PWR_32_DBL | 0, (value / TWO_PWR_32_DBL) | 0, unsigned); + }; + /** + * Returns a Long representing the given value, provided that it is a finite number. Otherwise, zero is returned. + * @param value - The number in question + * @param unsigned - Whether unsigned or not, defaults to signed + * @returns The corresponding Long value + */ + Long.fromBigInt = function (value, unsigned) { + return Long.fromString(value.toString(), unsigned); + }; + /** + * Returns a Long representation of the given string, written using the specified radix. + * @param str - The textual representation of the Long + * @param unsigned - Whether unsigned or not, defaults to signed + * @param radix - The radix in which the text is written (2-36), defaults to 10 + * @returns The corresponding Long value + */ + Long.fromString = function (str, unsigned, radix) { + if (str.length === 0) + throw Error('empty string'); + if (str === 'NaN' || str === 'Infinity' || str === '+Infinity' || str === '-Infinity') + return Long.ZERO; + if (typeof unsigned === 'number') { + // For goog.math.long compatibility + (radix = unsigned), (unsigned = false); + } + else { + unsigned = !!unsigned; + } + radix = radix || 10; + if (radix < 2 || 36 < radix) + throw RangeError('radix'); + var p; + if ((p = str.indexOf('-')) > 0) + throw Error('interior hyphen'); + else if (p === 0) { + return Long.fromString(str.substring(1), unsigned, radix).neg(); + } + // Do several (8) digits each time through the loop, so as to + // minimize the calls to the very expensive emulated div. + var radixToPower = Long.fromNumber(Math.pow(radix, 8)); + var result = Long.ZERO; + for (var i = 0; i < str.length; i += 8) { + var size = Math.min(8, str.length - i), value = parseInt(str.substring(i, i + size), radix); + if (size < 8) { + var power = Long.fromNumber(Math.pow(radix, size)); + result = result.mul(power).add(Long.fromNumber(value)); + } + else { + result = result.mul(radixToPower); + result = result.add(Long.fromNumber(value)); + } + } + result.unsigned = unsigned; + return result; + }; + /** + * Creates a Long from its byte representation. + * @param bytes - Byte representation + * @param unsigned - Whether unsigned or not, defaults to signed + * @param le - Whether little or big endian, defaults to big endian + * @returns The corresponding Long value + */ + Long.fromBytes = function (bytes, unsigned, le) { + return le ? Long.fromBytesLE(bytes, unsigned) : Long.fromBytesBE(bytes, unsigned); + }; + /** + * Creates a Long from its little endian byte representation. + * @param bytes - Little endian byte representation + * @param unsigned - Whether unsigned or not, defaults to signed + * @returns The corresponding Long value + */ + Long.fromBytesLE = function (bytes, unsigned) { + return new Long(bytes[0] | (bytes[1] << 8) | (bytes[2] << 16) | (bytes[3] << 24), bytes[4] | (bytes[5] << 8) | (bytes[6] << 16) | (bytes[7] << 24), unsigned); + }; + /** + * Creates a Long from its big endian byte representation. + * @param bytes - Big endian byte representation + * @param unsigned - Whether unsigned or not, defaults to signed + * @returns The corresponding Long value + */ + Long.fromBytesBE = function (bytes, unsigned) { + return new Long((bytes[4] << 24) | (bytes[5] << 16) | (bytes[6] << 8) | bytes[7], (bytes[0] << 24) | (bytes[1] << 16) | (bytes[2] << 8) | bytes[3], unsigned); + }; + /** + * Tests if the specified object is a Long. + */ + Long.isLong = function (value) { + return isObjectLike(value) && value['__isLong__'] === true; + }; + /** + * Converts the specified value to a Long. + * @param unsigned - Whether unsigned or not, defaults to signed + */ + Long.fromValue = function (val, unsigned) { + if (typeof val === 'number') + return Long.fromNumber(val, unsigned); + if (typeof val === 'string') + return Long.fromString(val, unsigned); + // Throws for non-objects, converts non-instanceof Long: + return Long.fromBits(val.low, val.high, typeof unsigned === 'boolean' ? unsigned : val.unsigned); + }; + /** Returns the sum of this and the specified Long. */ + Long.prototype.add = function (addend) { + if (!Long.isLong(addend)) + addend = Long.fromValue(addend); + // Divide each number into 4 chunks of 16 bits, and then sum the chunks. + var a48 = this.high >>> 16; + var a32 = this.high & 0xffff; + var a16 = this.low >>> 16; + var a00 = this.low & 0xffff; + var b48 = addend.high >>> 16; + var b32 = addend.high & 0xffff; + var b16 = addend.low >>> 16; + var b00 = addend.low & 0xffff; + var c48 = 0, c32 = 0, c16 = 0, c00 = 0; + c00 += a00 + b00; + c16 += c00 >>> 16; + c00 &= 0xffff; + c16 += a16 + b16; + c32 += c16 >>> 16; + c16 &= 0xffff; + c32 += a32 + b32; + c48 += c32 >>> 16; + c32 &= 0xffff; + c48 += a48 + b48; + c48 &= 0xffff; + return Long.fromBits((c16 << 16) | c00, (c48 << 16) | c32, this.unsigned); + }; + /** + * Returns the sum of this and the specified Long. + * @returns Sum + */ + Long.prototype.and = function (other) { + if (!Long.isLong(other)) + other = Long.fromValue(other); + return Long.fromBits(this.low & other.low, this.high & other.high, this.unsigned); + }; + /** + * Compares this Long's value with the specified's. + * @returns 0 if they are the same, 1 if the this is greater and -1 if the given one is greater + */ + Long.prototype.compare = function (other) { + if (!Long.isLong(other)) + other = Long.fromValue(other); + if (this.eq(other)) + return 0; + var thisNeg = this.isNegative(), otherNeg = other.isNegative(); + if (thisNeg && !otherNeg) + return -1; + if (!thisNeg && otherNeg) + return 1; + // At this point the sign bits are the same + if (!this.unsigned) + return this.sub(other).isNegative() ? -1 : 1; + // Both are positive if at least one is unsigned + return other.high >>> 0 > this.high >>> 0 || + (other.high === this.high && other.low >>> 0 > this.low >>> 0) + ? -1 + : 1; + }; + /** This is an alias of {@link Long.compare} */ + Long.prototype.comp = function (other) { + return this.compare(other); + }; + /** + * Returns this Long divided by the specified. The result is signed if this Long is signed or unsigned if this Long is unsigned. + * @returns Quotient + */ + Long.prototype.divide = function (divisor) { + if (!Long.isLong(divisor)) + divisor = Long.fromValue(divisor); + if (divisor.isZero()) + throw Error('division by zero'); + // use wasm support if present + if (wasm) { + // guard against signed division overflow: the largest + // negative number / -1 would be 1 larger than the largest + // positive number, due to two's complement. + if (!this.unsigned && + this.high === -0x80000000 && + divisor.low === -1 && + divisor.high === -1) { + // be consistent with non-wasm code path + return this; + } + var low = (this.unsigned ? wasm.div_u : wasm.div_s)(this.low, this.high, divisor.low, divisor.high); + return Long.fromBits(low, wasm.get_high(), this.unsigned); + } + if (this.isZero()) + return this.unsigned ? Long.UZERO : Long.ZERO; + var approx, rem, res; + if (!this.unsigned) { + // This section is only relevant for signed longs and is derived from the + // closure library as a whole. + if (this.eq(Long.MIN_VALUE)) { + if (divisor.eq(Long.ONE) || divisor.eq(Long.NEG_ONE)) + return Long.MIN_VALUE; + // recall that -MIN_VALUE == MIN_VALUE + else if (divisor.eq(Long.MIN_VALUE)) + return Long.ONE; + else { + // At this point, we have |other| >= 2, so |this/other| < |MIN_VALUE|. + var halfThis = this.shr(1); + approx = halfThis.div(divisor).shl(1); + if (approx.eq(Long.ZERO)) { + return divisor.isNegative() ? Long.ONE : Long.NEG_ONE; + } + else { + rem = this.sub(divisor.mul(approx)); + res = approx.add(rem.div(divisor)); + return res; + } + } + } + else if (divisor.eq(Long.MIN_VALUE)) + return this.unsigned ? Long.UZERO : Long.ZERO; + if (this.isNegative()) { + if (divisor.isNegative()) + return this.neg().div(divisor.neg()); + return this.neg().div(divisor).neg(); + } + else if (divisor.isNegative()) + return this.div(divisor.neg()).neg(); + res = Long.ZERO; + } + else { + // The algorithm below has not been made for unsigned longs. It's therefore + // required to take special care of the MSB prior to running it. + if (!divisor.unsigned) + divisor = divisor.toUnsigned(); + if (divisor.gt(this)) + return Long.UZERO; + if (divisor.gt(this.shru(1))) + // 15 >>> 1 = 7 ; with divisor = 8 ; true + return Long.UONE; + res = Long.UZERO; + } + // Repeat the following until the remainder is less than other: find a + // floating-point that approximates remainder / other *from below*, add this + // into the result, and subtract it from the remainder. It is critical that + // the approximate value is less than or equal to the real value so that the + // remainder never becomes negative. + // eslint-disable-next-line @typescript-eslint/no-this-alias + rem = this; + while (rem.gte(divisor)) { + // Approximate the result of division. This may be a little greater or + // smaller than the actual value. + approx = Math.max(1, Math.floor(rem.toNumber() / divisor.toNumber())); + // We will tweak the approximate result by changing it in the 48-th digit or + // the smallest non-fractional digit, whichever is larger. + var log2 = Math.ceil(Math.log(approx) / Math.LN2); + var delta = log2 <= 48 ? 1 : Math.pow(2, log2 - 48); + // Decrease the approximation until it is smaller than the remainder. Note + // that if it is too large, the product overflows and is negative. + var approxRes = Long.fromNumber(approx); + var approxRem = approxRes.mul(divisor); + while (approxRem.isNegative() || approxRem.gt(rem)) { + approx -= delta; + approxRes = Long.fromNumber(approx, this.unsigned); + approxRem = approxRes.mul(divisor); + } + // We know the answer can't be zero... and actually, zero would cause + // infinite recursion since we would make no progress. + if (approxRes.isZero()) + approxRes = Long.ONE; + res = res.add(approxRes); + rem = rem.sub(approxRem); + } + return res; + }; + /**This is an alias of {@link Long.divide} */ + Long.prototype.div = function (divisor) { + return this.divide(divisor); + }; + /** + * Tests if this Long's value equals the specified's. + * @param other - Other value + */ + Long.prototype.equals = function (other) { + if (!Long.isLong(other)) + other = Long.fromValue(other); + if (this.unsigned !== other.unsigned && this.high >>> 31 === 1 && other.high >>> 31 === 1) + return false; + return this.high === other.high && this.low === other.low; + }; + /** This is an alias of {@link Long.equals} */ + Long.prototype.eq = function (other) { + return this.equals(other); + }; + /** Gets the high 32 bits as a signed integer. */ + Long.prototype.getHighBits = function () { + return this.high; + }; + /** Gets the high 32 bits as an unsigned integer. */ + Long.prototype.getHighBitsUnsigned = function () { + return this.high >>> 0; + }; + /** Gets the low 32 bits as a signed integer. */ + Long.prototype.getLowBits = function () { + return this.low; + }; + /** Gets the low 32 bits as an unsigned integer. */ + Long.prototype.getLowBitsUnsigned = function () { + return this.low >>> 0; + }; + /** Gets the number of bits needed to represent the absolute value of this Long. */ + Long.prototype.getNumBitsAbs = function () { + if (this.isNegative()) { + // Unsigned Longs are never negative + return this.eq(Long.MIN_VALUE) ? 64 : this.neg().getNumBitsAbs(); + } + var val = this.high !== 0 ? this.high : this.low; + var bit; + for (bit = 31; bit > 0; bit--) + if ((val & (1 << bit)) !== 0) + break; + return this.high !== 0 ? bit + 33 : bit + 1; + }; + /** Tests if this Long's value is greater than the specified's. */ + Long.prototype.greaterThan = function (other) { + return this.comp(other) > 0; + }; + /** This is an alias of {@link Long.greaterThan} */ + Long.prototype.gt = function (other) { + return this.greaterThan(other); + }; + /** Tests if this Long's value is greater than or equal the specified's. */ + Long.prototype.greaterThanOrEqual = function (other) { + return this.comp(other) >= 0; + }; + /** This is an alias of {@link Long.greaterThanOrEqual} */ + Long.prototype.gte = function (other) { + return this.greaterThanOrEqual(other); + }; + /** This is an alias of {@link Long.greaterThanOrEqual} */ + Long.prototype.ge = function (other) { + return this.greaterThanOrEqual(other); + }; + /** Tests if this Long's value is even. */ + Long.prototype.isEven = function () { + return (this.low & 1) === 0; + }; + /** Tests if this Long's value is negative. */ + Long.prototype.isNegative = function () { + return !this.unsigned && this.high < 0; + }; + /** Tests if this Long's value is odd. */ + Long.prototype.isOdd = function () { + return (this.low & 1) === 1; + }; + /** Tests if this Long's value is positive. */ + Long.prototype.isPositive = function () { + return this.unsigned || this.high >= 0; + }; + /** Tests if this Long's value equals zero. */ + Long.prototype.isZero = function () { + return this.high === 0 && this.low === 0; + }; + /** Tests if this Long's value is less than the specified's. */ + Long.prototype.lessThan = function (other) { + return this.comp(other) < 0; + }; + /** This is an alias of {@link Long#lessThan}. */ + Long.prototype.lt = function (other) { + return this.lessThan(other); + }; + /** Tests if this Long's value is less than or equal the specified's. */ + Long.prototype.lessThanOrEqual = function (other) { + return this.comp(other) <= 0; + }; + /** This is an alias of {@link Long.lessThanOrEqual} */ + Long.prototype.lte = function (other) { + return this.lessThanOrEqual(other); + }; + /** Returns this Long modulo the specified. */ + Long.prototype.modulo = function (divisor) { + if (!Long.isLong(divisor)) + divisor = Long.fromValue(divisor); + // use wasm support if present + if (wasm) { + var low = (this.unsigned ? wasm.rem_u : wasm.rem_s)(this.low, this.high, divisor.low, divisor.high); + return Long.fromBits(low, wasm.get_high(), this.unsigned); + } + return this.sub(this.div(divisor).mul(divisor)); + }; + /** This is an alias of {@link Long.modulo} */ + Long.prototype.mod = function (divisor) { + return this.modulo(divisor); + }; + /** This is an alias of {@link Long.modulo} */ + Long.prototype.rem = function (divisor) { + return this.modulo(divisor); + }; + /** + * Returns the product of this and the specified Long. + * @param multiplier - Multiplier + * @returns Product + */ + Long.prototype.multiply = function (multiplier) { + if (this.isZero()) + return Long.ZERO; + if (!Long.isLong(multiplier)) + multiplier = Long.fromValue(multiplier); + // use wasm support if present + if (wasm) { + var low = wasm.mul(this.low, this.high, multiplier.low, multiplier.high); + return Long.fromBits(low, wasm.get_high(), this.unsigned); + } + if (multiplier.isZero()) + return Long.ZERO; + if (this.eq(Long.MIN_VALUE)) + return multiplier.isOdd() ? Long.MIN_VALUE : Long.ZERO; + if (multiplier.eq(Long.MIN_VALUE)) + return this.isOdd() ? Long.MIN_VALUE : Long.ZERO; + if (this.isNegative()) { + if (multiplier.isNegative()) + return this.neg().mul(multiplier.neg()); + else + return this.neg().mul(multiplier).neg(); + } + else if (multiplier.isNegative()) + return this.mul(multiplier.neg()).neg(); + // If both longs are small, use float multiplication + if (this.lt(Long.TWO_PWR_24) && multiplier.lt(Long.TWO_PWR_24)) + return Long.fromNumber(this.toNumber() * multiplier.toNumber(), this.unsigned); + // Divide each long into 4 chunks of 16 bits, and then add up 4x4 products. + // We can skip products that would overflow. + var a48 = this.high >>> 16; + var a32 = this.high & 0xffff; + var a16 = this.low >>> 16; + var a00 = this.low & 0xffff; + var b48 = multiplier.high >>> 16; + var b32 = multiplier.high & 0xffff; + var b16 = multiplier.low >>> 16; + var b00 = multiplier.low & 0xffff; + var c48 = 0, c32 = 0, c16 = 0, c00 = 0; + c00 += a00 * b00; + c16 += c00 >>> 16; + c00 &= 0xffff; + c16 += a16 * b00; + c32 += c16 >>> 16; + c16 &= 0xffff; + c16 += a00 * b16; + c32 += c16 >>> 16; + c16 &= 0xffff; + c32 += a32 * b00; + c48 += c32 >>> 16; + c32 &= 0xffff; + c32 += a16 * b16; + c48 += c32 >>> 16; + c32 &= 0xffff; + c32 += a00 * b32; + c48 += c32 >>> 16; + c32 &= 0xffff; + c48 += a48 * b00 + a32 * b16 + a16 * b32 + a00 * b48; + c48 &= 0xffff; + return Long.fromBits((c16 << 16) | c00, (c48 << 16) | c32, this.unsigned); + }; + /** This is an alias of {@link Long.multiply} */ + Long.prototype.mul = function (multiplier) { + return this.multiply(multiplier); + }; + /** Returns the Negation of this Long's value. */ + Long.prototype.negate = function () { + if (!this.unsigned && this.eq(Long.MIN_VALUE)) + return Long.MIN_VALUE; + return this.not().add(Long.ONE); + }; + /** This is an alias of {@link Long.negate} */ + Long.prototype.neg = function () { + return this.negate(); + }; + /** Returns the bitwise NOT of this Long. */ + Long.prototype.not = function () { + return Long.fromBits(~this.low, ~this.high, this.unsigned); + }; + /** Tests if this Long's value differs from the specified's. */ + Long.prototype.notEquals = function (other) { + return !this.equals(other); + }; + /** This is an alias of {@link Long.notEquals} */ + Long.prototype.neq = function (other) { + return this.notEquals(other); + }; + /** This is an alias of {@link Long.notEquals} */ + Long.prototype.ne = function (other) { + return this.notEquals(other); + }; + /** + * Returns the bitwise OR of this Long and the specified. + */ + Long.prototype.or = function (other) { + if (!Long.isLong(other)) + other = Long.fromValue(other); + return Long.fromBits(this.low | other.low, this.high | other.high, this.unsigned); + }; + /** + * Returns this Long with bits shifted to the left by the given amount. + * @param numBits - Number of bits + * @returns Shifted Long + */ + Long.prototype.shiftLeft = function (numBits) { + if (Long.isLong(numBits)) + numBits = numBits.toInt(); + if ((numBits &= 63) === 0) + return this; + else if (numBits < 32) + return Long.fromBits(this.low << numBits, (this.high << numBits) | (this.low >>> (32 - numBits)), this.unsigned); + else + return Long.fromBits(0, this.low << (numBits - 32), this.unsigned); + }; + /** This is an alias of {@link Long.shiftLeft} */ + Long.prototype.shl = function (numBits) { + return this.shiftLeft(numBits); + }; + /** + * Returns this Long with bits arithmetically shifted to the right by the given amount. + * @param numBits - Number of bits + * @returns Shifted Long + */ + Long.prototype.shiftRight = function (numBits) { + if (Long.isLong(numBits)) + numBits = numBits.toInt(); + if ((numBits &= 63) === 0) + return this; + else if (numBits < 32) + return Long.fromBits((this.low >>> numBits) | (this.high << (32 - numBits)), this.high >> numBits, this.unsigned); + else + return Long.fromBits(this.high >> (numBits - 32), this.high >= 0 ? 0 : -1, this.unsigned); + }; + /** This is an alias of {@link Long.shiftRight} */ + Long.prototype.shr = function (numBits) { + return this.shiftRight(numBits); + }; + /** + * Returns this Long with bits logically shifted to the right by the given amount. + * @param numBits - Number of bits + * @returns Shifted Long + */ + Long.prototype.shiftRightUnsigned = function (numBits) { + if (Long.isLong(numBits)) + numBits = numBits.toInt(); + numBits &= 63; + if (numBits === 0) + return this; + else { + var high = this.high; + if (numBits < 32) { + var low = this.low; + return Long.fromBits((low >>> numBits) | (high << (32 - numBits)), high >>> numBits, this.unsigned); + } + else if (numBits === 32) + return Long.fromBits(high, 0, this.unsigned); + else + return Long.fromBits(high >>> (numBits - 32), 0, this.unsigned); + } + }; + /** This is an alias of {@link Long.shiftRightUnsigned} */ + Long.prototype.shr_u = function (numBits) { + return this.shiftRightUnsigned(numBits); + }; + /** This is an alias of {@link Long.shiftRightUnsigned} */ + Long.prototype.shru = function (numBits) { + return this.shiftRightUnsigned(numBits); + }; + /** + * Returns the difference of this and the specified Long. + * @param subtrahend - Subtrahend + * @returns Difference + */ + Long.prototype.subtract = function (subtrahend) { + if (!Long.isLong(subtrahend)) + subtrahend = Long.fromValue(subtrahend); + return this.add(subtrahend.neg()); + }; + /** This is an alias of {@link Long.subtract} */ + Long.prototype.sub = function (subtrahend) { + return this.subtract(subtrahend); + }; + /** Converts the Long to a 32 bit integer, assuming it is a 32 bit integer. */ + Long.prototype.toInt = function () { + return this.unsigned ? this.low >>> 0 : this.low; + }; + /** Converts the Long to a the nearest floating-point representation of this value (double, 53 bit mantissa). */ + Long.prototype.toNumber = function () { + if (this.unsigned) + return (this.high >>> 0) * TWO_PWR_32_DBL + (this.low >>> 0); + return this.high * TWO_PWR_32_DBL + (this.low >>> 0); + }; + /** Converts the Long to a BigInt (arbitrary precision). */ + Long.prototype.toBigInt = function () { + return BigInt(this.toString()); + }; + /** + * Converts this Long to its byte representation. + * @param le - Whether little or big endian, defaults to big endian + * @returns Byte representation + */ + Long.prototype.toBytes = function (le) { + return le ? this.toBytesLE() : this.toBytesBE(); + }; + /** + * Converts this Long to its little endian byte representation. + * @returns Little endian byte representation + */ + Long.prototype.toBytesLE = function () { + var hi = this.high, lo = this.low; + return [ + lo & 0xff, + (lo >>> 8) & 0xff, + (lo >>> 16) & 0xff, + lo >>> 24, + hi & 0xff, + (hi >>> 8) & 0xff, + (hi >>> 16) & 0xff, + hi >>> 24 + ]; + }; + /** + * Converts this Long to its big endian byte representation. + * @returns Big endian byte representation + */ + Long.prototype.toBytesBE = function () { + var hi = this.high, lo = this.low; + return [ + hi >>> 24, + (hi >>> 16) & 0xff, + (hi >>> 8) & 0xff, + hi & 0xff, + lo >>> 24, + (lo >>> 16) & 0xff, + (lo >>> 8) & 0xff, + lo & 0xff + ]; + }; + /** + * Converts this Long to signed. + */ + Long.prototype.toSigned = function () { + if (!this.unsigned) + return this; + return Long.fromBits(this.low, this.high, false); + }; + /** + * Converts the Long to a string written in the specified radix. + * @param radix - Radix (2-36), defaults to 10 + * @throws RangeError If `radix` is out of range + */ + Long.prototype.toString = function (radix) { + radix = radix || 10; + if (radix < 2 || 36 < radix) + throw RangeError('radix'); + if (this.isZero()) + return '0'; + if (this.isNegative()) { + // Unsigned Longs are never negative + if (this.eq(Long.MIN_VALUE)) { + // We need to change the Long value before it can be negated, so we remove + // the bottom-most digit in this base and then recurse to do the rest. + var radixLong = Long.fromNumber(radix), div = this.div(radixLong), rem1 = div.mul(radixLong).sub(this); + return div.toString(radix) + rem1.toInt().toString(radix); + } + else + return '-' + this.neg().toString(radix); + } + // Do several (6) digits each time through the loop, so as to + // minimize the calls to the very expensive emulated div. + var radixToPower = Long.fromNumber(Math.pow(radix, 6), this.unsigned); + // eslint-disable-next-line @typescript-eslint/no-this-alias + var rem = this; + var result = ''; + // eslint-disable-next-line no-constant-condition + while (true) { + var remDiv = rem.div(radixToPower); + var intval = rem.sub(remDiv.mul(radixToPower)).toInt() >>> 0; + var digits = intval.toString(radix); + rem = remDiv; + if (rem.isZero()) { + return digits + result; + } + else { + while (digits.length < 6) + digits = '0' + digits; + result = '' + digits + result; + } + } + }; + /** Converts this Long to unsigned. */ + Long.prototype.toUnsigned = function () { + if (this.unsigned) + return this; + return Long.fromBits(this.low, this.high, true); + }; + /** Returns the bitwise XOR of this Long and the given one. */ + Long.prototype.xor = function (other) { + if (!Long.isLong(other)) + other = Long.fromValue(other); + return Long.fromBits(this.low ^ other.low, this.high ^ other.high, this.unsigned); + }; + /** This is an alias of {@link Long.isZero} */ + Long.prototype.eqz = function () { + return this.isZero(); + }; + /** This is an alias of {@link Long.lessThanOrEqual} */ + Long.prototype.le = function (other) { + return this.lessThanOrEqual(other); + }; + /* + **************************************************************** + * BSON SPECIFIC ADDITIONS * + **************************************************************** + */ + Long.prototype.toExtendedJSON = function (options) { + if (options && options.relaxed) + return this.toNumber(); + return { $numberLong: this.toString() }; + }; + Long.fromExtendedJSON = function (doc, options) { + var result = Long.fromString(doc.$numberLong); + return options && options.relaxed ? result.toNumber() : result; + }; + /** @internal */ + Long.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () { + return this.inspect(); + }; + Long.prototype.inspect = function () { + return "new Long(\"".concat(this.toString(), "\"").concat(this.unsigned ? ', true' : '', ")"); + }; + Long.TWO_PWR_24 = Long.fromInt(TWO_PWR_24_DBL); + /** Maximum unsigned value. */ + Long.MAX_UNSIGNED_VALUE = Long.fromBits(0xffffffff | 0, 0xffffffff | 0, true); + /** Signed zero */ + Long.ZERO = Long.fromInt(0); + /** Unsigned zero. */ + Long.UZERO = Long.fromInt(0, true); + /** Signed one. */ + Long.ONE = Long.fromInt(1); + /** Unsigned one. */ + Long.UONE = Long.fromInt(1, true); + /** Signed negative one. */ + Long.NEG_ONE = Long.fromInt(-1); + /** Maximum signed value. */ + Long.MAX_VALUE = Long.fromBits(0xffffffff | 0, 0x7fffffff | 0, false); + /** Minimum signed value. */ + Long.MIN_VALUE = Long.fromBits(0, 0x80000000 | 0, false); + return Long; + }()); + Object.defineProperty(Long.prototype, '__isLong__', { value: true }); + Object.defineProperty(Long.prototype, '_bsontype', { value: 'Long' }); + + var PARSE_STRING_REGEXP = /^(\+|-)?(\d+|(\d*\.\d*))?(E|e)?([-+])?(\d+)?$/; + var PARSE_INF_REGEXP = /^(\+|-)?(Infinity|inf)$/i; + var PARSE_NAN_REGEXP = /^(\+|-)?NaN$/i; + var EXPONENT_MAX = 6111; + var EXPONENT_MIN = -6176; + var EXPONENT_BIAS = 6176; + var MAX_DIGITS = 34; + // Nan value bits as 32 bit values (due to lack of longs) + var NAN_BUFFER = [ + 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 + ].reverse(); + // Infinity value bits 32 bit values (due to lack of longs) + var INF_NEGATIVE_BUFFER = [ + 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 + ].reverse(); + var INF_POSITIVE_BUFFER = [ + 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 + ].reverse(); + var EXPONENT_REGEX = /^([-+])?(\d+)?$/; + // Extract least significant 5 bits + var COMBINATION_MASK = 0x1f; + // Extract least significant 14 bits + var EXPONENT_MASK = 0x3fff; + // Value of combination field for Inf + var COMBINATION_INFINITY = 30; + // Value of combination field for NaN + var COMBINATION_NAN = 31; + // Detect if the value is a digit + function isDigit(value) { + return !isNaN(parseInt(value, 10)); + } + // Divide two uint128 values + function divideu128(value) { + var DIVISOR = Long.fromNumber(1000 * 1000 * 1000); + var _rem = Long.fromNumber(0); + if (!value.parts[0] && !value.parts[1] && !value.parts[2] && !value.parts[3]) { + return { quotient: value, rem: _rem }; + } + for (var i = 0; i <= 3; i++) { + // Adjust remainder to match value of next dividend + _rem = _rem.shiftLeft(32); + // Add the divided to _rem + _rem = _rem.add(new Long(value.parts[i], 0)); + value.parts[i] = _rem.div(DIVISOR).low; + _rem = _rem.modulo(DIVISOR); + } + return { quotient: value, rem: _rem }; + } + // Multiply two Long values and return the 128 bit value + function multiply64x2(left, right) { + if (!left && !right) { + return { high: Long.fromNumber(0), low: Long.fromNumber(0) }; + } + var leftHigh = left.shiftRightUnsigned(32); + var leftLow = new Long(left.getLowBits(), 0); + var rightHigh = right.shiftRightUnsigned(32); + var rightLow = new Long(right.getLowBits(), 0); + var productHigh = leftHigh.multiply(rightHigh); + var productMid = leftHigh.multiply(rightLow); + var productMid2 = leftLow.multiply(rightHigh); + var productLow = leftLow.multiply(rightLow); + productHigh = productHigh.add(productMid.shiftRightUnsigned(32)); + productMid = new Long(productMid.getLowBits(), 0) + .add(productMid2) + .add(productLow.shiftRightUnsigned(32)); + productHigh = productHigh.add(productMid.shiftRightUnsigned(32)); + productLow = productMid.shiftLeft(32).add(new Long(productLow.getLowBits(), 0)); + // Return the 128 bit result + return { high: productHigh, low: productLow }; + } + function lessThan(left, right) { + // Make values unsigned + var uhleft = left.high >>> 0; + var uhright = right.high >>> 0; + // Compare high bits first + if (uhleft < uhright) { + return true; + } + else if (uhleft === uhright) { + var ulleft = left.low >>> 0; + var ulright = right.low >>> 0; + if (ulleft < ulright) + return true; + } + return false; + } + function invalidErr(string, message) { + throw new BSONTypeError("\"".concat(string, "\" is not a valid Decimal128 string - ").concat(message)); + } + /** + * A class representation of the BSON Decimal128 type. + * @public + * @category BSONType + */ + var Decimal128 = /** @class */ (function () { + /** + * @param bytes - a buffer containing the raw Decimal128 bytes in little endian order, + * or a string representation as returned by .toString() + */ + function Decimal128(bytes) { + if (!(this instanceof Decimal128)) + return new Decimal128(bytes); + if (typeof bytes === 'string') { + this.bytes = Decimal128.fromString(bytes).bytes; + } + else if (isUint8Array(bytes)) { + if (bytes.byteLength !== 16) { + throw new BSONTypeError('Decimal128 must take a Buffer of 16 bytes'); + } + this.bytes = bytes; + } + else { + throw new BSONTypeError('Decimal128 must take a Buffer or string'); + } + } + /** + * Create a Decimal128 instance from a string representation + * + * @param representation - a numeric string representation. + */ + Decimal128.fromString = function (representation) { + // Parse state tracking + var isNegative = false; + var sawRadix = false; + var foundNonZero = false; + // Total number of significant digits (no leading or trailing zero) + var significantDigits = 0; + // Total number of significand digits read + var nDigitsRead = 0; + // Total number of digits (no leading zeros) + var nDigits = 0; + // The number of the digits after radix + var radixPosition = 0; + // The index of the first non-zero in *str* + var firstNonZero = 0; + // Digits Array + var digits = [0]; + // The number of digits in digits + var nDigitsStored = 0; + // Insertion pointer for digits + var digitsInsert = 0; + // The index of the first non-zero digit + var firstDigit = 0; + // The index of the last digit + var lastDigit = 0; + // Exponent + var exponent = 0; + // loop index over array + var i = 0; + // The high 17 digits of the significand + var significandHigh = new Long(0, 0); + // The low 17 digits of the significand + var significandLow = new Long(0, 0); + // The biased exponent + var biasedExponent = 0; + // Read index + var index = 0; + // Naively prevent against REDOS attacks. + // TODO: implementing a custom parsing for this, or refactoring the regex would yield + // further gains. + if (representation.length >= 7000) { + throw new BSONTypeError('' + representation + ' not a valid Decimal128 string'); + } + // Results + var stringMatch = representation.match(PARSE_STRING_REGEXP); + var infMatch = representation.match(PARSE_INF_REGEXP); + var nanMatch = representation.match(PARSE_NAN_REGEXP); + // Validate the string + if ((!stringMatch && !infMatch && !nanMatch) || representation.length === 0) { + throw new BSONTypeError('' + representation + ' not a valid Decimal128 string'); + } + if (stringMatch) { + // full_match = stringMatch[0] + // sign = stringMatch[1] + var unsignedNumber = stringMatch[2]; + // stringMatch[3] is undefined if a whole number (ex "1", 12") + // but defined if a number w/ decimal in it (ex "1.0, 12.2") + var e = stringMatch[4]; + var expSign = stringMatch[5]; + var expNumber = stringMatch[6]; + // they provided e, but didn't give an exponent number. for ex "1e" + if (e && expNumber === undefined) + invalidErr(representation, 'missing exponent power'); + // they provided e, but didn't give a number before it. for ex "e1" + if (e && unsignedNumber === undefined) + invalidErr(representation, 'missing exponent base'); + if (e === undefined && (expSign || expNumber)) { + invalidErr(representation, 'missing e before exponent'); + } + } + // Get the negative or positive sign + if (representation[index] === '+' || representation[index] === '-') { + isNegative = representation[index++] === '-'; + } + // Check if user passed Infinity or NaN + if (!isDigit(representation[index]) && representation[index] !== '.') { + if (representation[index] === 'i' || representation[index] === 'I') { + return new Decimal128(buffer_1.from(isNegative ? INF_NEGATIVE_BUFFER : INF_POSITIVE_BUFFER)); + } + else if (representation[index] === 'N') { + return new Decimal128(buffer_1.from(NAN_BUFFER)); + } + } + // Read all the digits + while (isDigit(representation[index]) || representation[index] === '.') { + if (representation[index] === '.') { + if (sawRadix) + invalidErr(representation, 'contains multiple periods'); + sawRadix = true; + index = index + 1; + continue; + } + if (nDigitsStored < 34) { + if (representation[index] !== '0' || foundNonZero) { + if (!foundNonZero) { + firstNonZero = nDigitsRead; + } + foundNonZero = true; + // Only store 34 digits + digits[digitsInsert++] = parseInt(representation[index], 10); + nDigitsStored = nDigitsStored + 1; + } + } + if (foundNonZero) + nDigits = nDigits + 1; + if (sawRadix) + radixPosition = radixPosition + 1; + nDigitsRead = nDigitsRead + 1; + index = index + 1; + } + if (sawRadix && !nDigitsRead) + throw new BSONTypeError('' + representation + ' not a valid Decimal128 string'); + // Read exponent if exists + if (representation[index] === 'e' || representation[index] === 'E') { + // Read exponent digits + var match = representation.substr(++index).match(EXPONENT_REGEX); + // No digits read + if (!match || !match[2]) + return new Decimal128(buffer_1.from(NAN_BUFFER)); + // Get exponent + exponent = parseInt(match[0], 10); + // Adjust the index + index = index + match[0].length; + } + // Return not a number + if (representation[index]) + return new Decimal128(buffer_1.from(NAN_BUFFER)); + // Done reading input + // Find first non-zero digit in digits + firstDigit = 0; + if (!nDigitsStored) { + firstDigit = 0; + lastDigit = 0; + digits[0] = 0; + nDigits = 1; + nDigitsStored = 1; + significantDigits = 0; + } + else { + lastDigit = nDigitsStored - 1; + significantDigits = nDigits; + if (significantDigits !== 1) { + while (digits[firstNonZero + significantDigits - 1] === 0) { + significantDigits = significantDigits - 1; + } + } + } + // Normalization of exponent + // Correct exponent based on radix position, and shift significand as needed + // to represent user input + // Overflow prevention + if (exponent <= radixPosition && radixPosition - exponent > 1 << 14) { + exponent = EXPONENT_MIN; + } + else { + exponent = exponent - radixPosition; + } + // Attempt to normalize the exponent + while (exponent > EXPONENT_MAX) { + // Shift exponent to significand and decrease + lastDigit = lastDigit + 1; + if (lastDigit - firstDigit > MAX_DIGITS) { + // Check if we have a zero then just hard clamp, otherwise fail + var digitsString = digits.join(''); + if (digitsString.match(/^0+$/)) { + exponent = EXPONENT_MAX; + break; + } + invalidErr(representation, 'overflow'); + } + exponent = exponent - 1; + } + while (exponent < EXPONENT_MIN || nDigitsStored < nDigits) { + // Shift last digit. can only do this if < significant digits than # stored. + if (lastDigit === 0 && significantDigits < nDigitsStored) { + exponent = EXPONENT_MIN; + significantDigits = 0; + break; + } + if (nDigitsStored < nDigits) { + // adjust to match digits not stored + nDigits = nDigits - 1; + } + else { + // adjust to round + lastDigit = lastDigit - 1; + } + if (exponent < EXPONENT_MAX) { + exponent = exponent + 1; + } + else { + // Check if we have a zero then just hard clamp, otherwise fail + var digitsString = digits.join(''); + if (digitsString.match(/^0+$/)) { + exponent = EXPONENT_MAX; + break; + } + invalidErr(representation, 'overflow'); + } + } + // Round + // We've normalized the exponent, but might still need to round. + if (lastDigit - firstDigit + 1 < significantDigits) { + var endOfString = nDigitsRead; + // If we have seen a radix point, 'string' is 1 longer than we have + // documented with ndigits_read, so inc the position of the first nonzero + // digit and the position that digits are read to. + if (sawRadix) { + firstNonZero = firstNonZero + 1; + endOfString = endOfString + 1; + } + // if negative, we need to increment again to account for - sign at start. + if (isNegative) { + firstNonZero = firstNonZero + 1; + endOfString = endOfString + 1; + } + var roundDigit = parseInt(representation[firstNonZero + lastDigit + 1], 10); + var roundBit = 0; + if (roundDigit >= 5) { + roundBit = 1; + if (roundDigit === 5) { + roundBit = digits[lastDigit] % 2 === 1 ? 1 : 0; + for (i = firstNonZero + lastDigit + 2; i < endOfString; i++) { + if (parseInt(representation[i], 10)) { + roundBit = 1; + break; + } + } + } + } + if (roundBit) { + var dIdx = lastDigit; + for (; dIdx >= 0; dIdx--) { + if (++digits[dIdx] > 9) { + digits[dIdx] = 0; + // overflowed most significant digit + if (dIdx === 0) { + if (exponent < EXPONENT_MAX) { + exponent = exponent + 1; + digits[dIdx] = 1; + } + else { + return new Decimal128(buffer_1.from(isNegative ? INF_NEGATIVE_BUFFER : INF_POSITIVE_BUFFER)); + } + } + } + } + } + } + // Encode significand + // The high 17 digits of the significand + significandHigh = Long.fromNumber(0); + // The low 17 digits of the significand + significandLow = Long.fromNumber(0); + // read a zero + if (significantDigits === 0) { + significandHigh = Long.fromNumber(0); + significandLow = Long.fromNumber(0); + } + else if (lastDigit - firstDigit < 17) { + var dIdx = firstDigit; + significandLow = Long.fromNumber(digits[dIdx++]); + significandHigh = new Long(0, 0); + for (; dIdx <= lastDigit; dIdx++) { + significandLow = significandLow.multiply(Long.fromNumber(10)); + significandLow = significandLow.add(Long.fromNumber(digits[dIdx])); + } + } + else { + var dIdx = firstDigit; + significandHigh = Long.fromNumber(digits[dIdx++]); + for (; dIdx <= lastDigit - 17; dIdx++) { + significandHigh = significandHigh.multiply(Long.fromNumber(10)); + significandHigh = significandHigh.add(Long.fromNumber(digits[dIdx])); + } + significandLow = Long.fromNumber(digits[dIdx++]); + for (; dIdx <= lastDigit; dIdx++) { + significandLow = significandLow.multiply(Long.fromNumber(10)); + significandLow = significandLow.add(Long.fromNumber(digits[dIdx])); + } + } + var significand = multiply64x2(significandHigh, Long.fromString('100000000000000000')); + significand.low = significand.low.add(significandLow); + if (lessThan(significand.low, significandLow)) { + significand.high = significand.high.add(Long.fromNumber(1)); + } + // Biased exponent + biasedExponent = exponent + EXPONENT_BIAS; + var dec = { low: Long.fromNumber(0), high: Long.fromNumber(0) }; + // Encode combination, exponent, and significand. + if (significand.high.shiftRightUnsigned(49).and(Long.fromNumber(1)).equals(Long.fromNumber(1))) { + // Encode '11' into bits 1 to 3 + dec.high = dec.high.or(Long.fromNumber(0x3).shiftLeft(61)); + dec.high = dec.high.or(Long.fromNumber(biasedExponent).and(Long.fromNumber(0x3fff).shiftLeft(47))); + dec.high = dec.high.or(significand.high.and(Long.fromNumber(0x7fffffffffff))); + } + else { + dec.high = dec.high.or(Long.fromNumber(biasedExponent & 0x3fff).shiftLeft(49)); + dec.high = dec.high.or(significand.high.and(Long.fromNumber(0x1ffffffffffff))); + } + dec.low = significand.low; + // Encode sign + if (isNegative) { + dec.high = dec.high.or(Long.fromString('9223372036854775808')); + } + // Encode into a buffer + var buffer = buffer_1.alloc(16); + index = 0; + // Encode the low 64 bits of the decimal + // Encode low bits + buffer[index++] = dec.low.low & 0xff; + buffer[index++] = (dec.low.low >> 8) & 0xff; + buffer[index++] = (dec.low.low >> 16) & 0xff; + buffer[index++] = (dec.low.low >> 24) & 0xff; + // Encode high bits + buffer[index++] = dec.low.high & 0xff; + buffer[index++] = (dec.low.high >> 8) & 0xff; + buffer[index++] = (dec.low.high >> 16) & 0xff; + buffer[index++] = (dec.low.high >> 24) & 0xff; + // Encode the high 64 bits of the decimal + // Encode low bits + buffer[index++] = dec.high.low & 0xff; + buffer[index++] = (dec.high.low >> 8) & 0xff; + buffer[index++] = (dec.high.low >> 16) & 0xff; + buffer[index++] = (dec.high.low >> 24) & 0xff; + // Encode high bits + buffer[index++] = dec.high.high & 0xff; + buffer[index++] = (dec.high.high >> 8) & 0xff; + buffer[index++] = (dec.high.high >> 16) & 0xff; + buffer[index++] = (dec.high.high >> 24) & 0xff; + // Return the new Decimal128 + return new Decimal128(buffer); + }; + /** Create a string representation of the raw Decimal128 value */ + Decimal128.prototype.toString = function () { + // Note: bits in this routine are referred to starting at 0, + // from the sign bit, towards the coefficient. + // decoded biased exponent (14 bits) + var biased_exponent; + // the number of significand digits + var significand_digits = 0; + // the base-10 digits in the significand + var significand = new Array(36); + for (var i = 0; i < significand.length; i++) + significand[i] = 0; + // read pointer into significand + var index = 0; + // true if the number is zero + var is_zero = false; + // the most significant significand bits (50-46) + var significand_msb; + // temporary storage for significand decoding + var significand128 = { parts: [0, 0, 0, 0] }; + // indexing variables + var j, k; + // Output string + var string = []; + // Unpack index + index = 0; + // Buffer reference + var buffer = this.bytes; + // Unpack the low 64bits into a long + // bits 96 - 127 + var low = buffer[index++] | (buffer[index++] << 8) | (buffer[index++] << 16) | (buffer[index++] << 24); + // bits 64 - 95 + var midl = buffer[index++] | (buffer[index++] << 8) | (buffer[index++] << 16) | (buffer[index++] << 24); + // Unpack the high 64bits into a long + // bits 32 - 63 + var midh = buffer[index++] | (buffer[index++] << 8) | (buffer[index++] << 16) | (buffer[index++] << 24); + // bits 0 - 31 + var high = buffer[index++] | (buffer[index++] << 8) | (buffer[index++] << 16) | (buffer[index++] << 24); + // Unpack index + index = 0; + // Create the state of the decimal + var dec = { + low: new Long(low, midl), + high: new Long(midh, high) + }; + if (dec.high.lessThan(Long.ZERO)) { + string.push('-'); + } + // Decode combination field and exponent + // bits 1 - 5 + var combination = (high >> 26) & COMBINATION_MASK; + if (combination >> 3 === 3) { + // Check for 'special' values + if (combination === COMBINATION_INFINITY) { + return string.join('') + 'Infinity'; + } + else if (combination === COMBINATION_NAN) { + return 'NaN'; + } + else { + biased_exponent = (high >> 15) & EXPONENT_MASK; + significand_msb = 0x08 + ((high >> 14) & 0x01); + } + } + else { + significand_msb = (high >> 14) & 0x07; + biased_exponent = (high >> 17) & EXPONENT_MASK; + } + // unbiased exponent + var exponent = biased_exponent - EXPONENT_BIAS; + // Create string of significand digits + // Convert the 114-bit binary number represented by + // (significand_high, significand_low) to at most 34 decimal + // digits through modulo and division. + significand128.parts[0] = (high & 0x3fff) + ((significand_msb & 0xf) << 14); + significand128.parts[1] = midh; + significand128.parts[2] = midl; + significand128.parts[3] = low; + if (significand128.parts[0] === 0 && + significand128.parts[1] === 0 && + significand128.parts[2] === 0 && + significand128.parts[3] === 0) { + is_zero = true; + } + else { + for (k = 3; k >= 0; k--) { + var least_digits = 0; + // Perform the divide + var result = divideu128(significand128); + significand128 = result.quotient; + least_digits = result.rem.low; + // We now have the 9 least significant digits (in base 2). + // Convert and output to string. + if (!least_digits) + continue; + for (j = 8; j >= 0; j--) { + // significand[k * 9 + j] = Math.round(least_digits % 10); + significand[k * 9 + j] = least_digits % 10; + // least_digits = Math.round(least_digits / 10); + least_digits = Math.floor(least_digits / 10); + } + } + } + // Output format options: + // Scientific - [-]d.dddE(+/-)dd or [-]dE(+/-)dd + // Regular - ddd.ddd + if (is_zero) { + significand_digits = 1; + significand[index] = 0; + } + else { + significand_digits = 36; + while (!significand[index]) { + significand_digits = significand_digits - 1; + index = index + 1; + } + } + // the exponent if scientific notation is used + var scientific_exponent = significand_digits - 1 + exponent; + // The scientific exponent checks are dictated by the string conversion + // specification and are somewhat arbitrary cutoffs. + // + // We must check exponent > 0, because if this is the case, the number + // has trailing zeros. However, we *cannot* output these trailing zeros, + // because doing so would change the precision of the value, and would + // change stored data if the string converted number is round tripped. + if (scientific_exponent >= 34 || scientific_exponent <= -7 || exponent > 0) { + // Scientific format + // if there are too many significant digits, we should just be treating numbers + // as + or - 0 and using the non-scientific exponent (this is for the "invalid + // representation should be treated as 0/-0" spec cases in decimal128-1.json) + if (significand_digits > 34) { + string.push("".concat(0)); + if (exponent > 0) + string.push("E+".concat(exponent)); + else if (exponent < 0) + string.push("E".concat(exponent)); + return string.join(''); + } + string.push("".concat(significand[index++])); + significand_digits = significand_digits - 1; + if (significand_digits) { + string.push('.'); + } + for (var i = 0; i < significand_digits; i++) { + string.push("".concat(significand[index++])); + } + // Exponent + string.push('E'); + if (scientific_exponent > 0) { + string.push("+".concat(scientific_exponent)); + } + else { + string.push("".concat(scientific_exponent)); + } + } + else { + // Regular format with no decimal place + if (exponent >= 0) { + for (var i = 0; i < significand_digits; i++) { + string.push("".concat(significand[index++])); + } + } + else { + var radix_position = significand_digits + exponent; + // non-zero digits before radix + if (radix_position > 0) { + for (var i = 0; i < radix_position; i++) { + string.push("".concat(significand[index++])); + } + } + else { + string.push('0'); + } + string.push('.'); + // add leading zeros after radix + while (radix_position++ < 0) { + string.push('0'); + } + for (var i = 0; i < significand_digits - Math.max(radix_position - 1, 0); i++) { + string.push("".concat(significand[index++])); + } + } + } + return string.join(''); + }; + Decimal128.prototype.toJSON = function () { + return { $numberDecimal: this.toString() }; + }; + /** @internal */ + Decimal128.prototype.toExtendedJSON = function () { + return { $numberDecimal: this.toString() }; + }; + /** @internal */ + Decimal128.fromExtendedJSON = function (doc) { + return Decimal128.fromString(doc.$numberDecimal); + }; + /** @internal */ + Decimal128.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () { + return this.inspect(); + }; + Decimal128.prototype.inspect = function () { + return "new Decimal128(\"".concat(this.toString(), "\")"); + }; + return Decimal128; + }()); + Object.defineProperty(Decimal128.prototype, '_bsontype', { value: 'Decimal128' }); + + /** + * A class representation of the BSON Double type. + * @public + * @category BSONType + */ + var Double = /** @class */ (function () { + /** + * Create a Double type + * + * @param value - the number we want to represent as a double. + */ + function Double(value) { + if (!(this instanceof Double)) + return new Double(value); + if (value instanceof Number) { + value = value.valueOf(); + } + this.value = +value; + } + /** + * Access the number value. + * + * @returns returns the wrapped double number. + */ + Double.prototype.valueOf = function () { + return this.value; + }; + Double.prototype.toJSON = function () { + return this.value; + }; + Double.prototype.toString = function (radix) { + return this.value.toString(radix); + }; + /** @internal */ + Double.prototype.toExtendedJSON = function (options) { + if (options && (options.legacy || (options.relaxed && isFinite(this.value)))) { + return this.value; + } + // NOTE: JavaScript has +0 and -0, apparently to model limit calculations. If a user + // explicitly provided `-0` then we need to ensure the sign makes it into the output + if (Object.is(Math.sign(this.value), -0)) { + return { $numberDouble: "-".concat(this.value.toFixed(1)) }; + } + var $numberDouble; + if (Number.isInteger(this.value)) { + $numberDouble = this.value.toFixed(1); + if ($numberDouble.length >= 13) { + $numberDouble = this.value.toExponential(13).toUpperCase(); + } + } + else { + $numberDouble = this.value.toString(); + } + return { $numberDouble: $numberDouble }; + }; + /** @internal */ + Double.fromExtendedJSON = function (doc, options) { + var doubleValue = parseFloat(doc.$numberDouble); + return options && options.relaxed ? doubleValue : new Double(doubleValue); + }; + /** @internal */ + Double.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () { + return this.inspect(); + }; + Double.prototype.inspect = function () { + var eJSON = this.toExtendedJSON(); + return "new Double(".concat(eJSON.$numberDouble, ")"); + }; + return Double; + }()); + Object.defineProperty(Double.prototype, '_bsontype', { value: 'Double' }); + + /** + * A class representation of a BSON Int32 type. + * @public + * @category BSONType + */ + var Int32 = /** @class */ (function () { + /** + * Create an Int32 type + * + * @param value - the number we want to represent as an int32. + */ + function Int32(value) { + if (!(this instanceof Int32)) + return new Int32(value); + if (value instanceof Number) { + value = value.valueOf(); + } + this.value = +value | 0; + } + /** + * Access the number value. + * + * @returns returns the wrapped int32 number. + */ + Int32.prototype.valueOf = function () { + return this.value; + }; + Int32.prototype.toString = function (radix) { + return this.value.toString(radix); + }; + Int32.prototype.toJSON = function () { + return this.value; + }; + /** @internal */ + Int32.prototype.toExtendedJSON = function (options) { + if (options && (options.relaxed || options.legacy)) + return this.value; + return { $numberInt: this.value.toString() }; + }; + /** @internal */ + Int32.fromExtendedJSON = function (doc, options) { + return options && options.relaxed ? parseInt(doc.$numberInt, 10) : new Int32(doc.$numberInt); + }; + /** @internal */ + Int32.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () { + return this.inspect(); + }; + Int32.prototype.inspect = function () { + return "new Int32(".concat(this.valueOf(), ")"); + }; + return Int32; + }()); + Object.defineProperty(Int32.prototype, '_bsontype', { value: 'Int32' }); + + /** + * A class representation of the BSON MaxKey type. + * @public + * @category BSONType + */ + var MaxKey = /** @class */ (function () { + function MaxKey() { + if (!(this instanceof MaxKey)) + return new MaxKey(); + } + /** @internal */ + MaxKey.prototype.toExtendedJSON = function () { + return { $maxKey: 1 }; + }; + /** @internal */ + MaxKey.fromExtendedJSON = function () { + return new MaxKey(); + }; + /** @internal */ + MaxKey.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () { + return this.inspect(); + }; + MaxKey.prototype.inspect = function () { + return 'new MaxKey()'; + }; + return MaxKey; + }()); + Object.defineProperty(MaxKey.prototype, '_bsontype', { value: 'MaxKey' }); + + /** + * A class representation of the BSON MinKey type. + * @public + * @category BSONType + */ + var MinKey = /** @class */ (function () { + function MinKey() { + if (!(this instanceof MinKey)) + return new MinKey(); + } + /** @internal */ + MinKey.prototype.toExtendedJSON = function () { + return { $minKey: 1 }; + }; + /** @internal */ + MinKey.fromExtendedJSON = function () { + return new MinKey(); + }; + /** @internal */ + MinKey.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () { + return this.inspect(); + }; + MinKey.prototype.inspect = function () { + return 'new MinKey()'; + }; + return MinKey; + }()); + Object.defineProperty(MinKey.prototype, '_bsontype', { value: 'MinKey' }); + + // Regular expression that checks for hex value + var checkForHexRegExp = new RegExp('^[0-9a-fA-F]{24}$'); + // Unique sequence for the current process (initialized on first use) + var PROCESS_UNIQUE = null; + var kId = Symbol('id'); + /** + * A class representation of the BSON ObjectId type. + * @public + * @category BSONType + */ + var ObjectId = /** @class */ (function () { + /** + * Create an ObjectId type + * + * @param inputId - Can be a 24 character hex string, 12 byte binary Buffer, or a number. + */ + function ObjectId(inputId) { + if (!(this instanceof ObjectId)) + return new ObjectId(inputId); + // workingId is set based on type of input and whether valid id exists for the input + var workingId; + if (typeof inputId === 'object' && inputId && 'id' in inputId) { + if (typeof inputId.id !== 'string' && !ArrayBuffer.isView(inputId.id)) { + throw new BSONTypeError('Argument passed in must have an id that is of type string or Buffer'); + } + if ('toHexString' in inputId && typeof inputId.toHexString === 'function') { + workingId = buffer_1.from(inputId.toHexString(), 'hex'); + } + else { + workingId = inputId.id; + } + } + else { + workingId = inputId; + } + // the following cases use workingId to construct an ObjectId + if (workingId == null || typeof workingId === 'number') { + // The most common use case (blank id, new objectId instance) + // Generate a new id + this[kId] = ObjectId.generate(typeof workingId === 'number' ? workingId : undefined); + } + else if (ArrayBuffer.isView(workingId) && workingId.byteLength === 12) { + // If intstanceof matches we can escape calling ensure buffer in Node.js environments + this[kId] = workingId instanceof buffer_1 ? workingId : ensureBuffer(workingId); + } + else if (typeof workingId === 'string') { + if (workingId.length === 12) { + var bytes = buffer_1.from(workingId); + if (bytes.byteLength === 12) { + this[kId] = bytes; + } + else { + throw new BSONTypeError('Argument passed in must be a string of 12 bytes'); + } + } + else if (workingId.length === 24 && checkForHexRegExp.test(workingId)) { + this[kId] = buffer_1.from(workingId, 'hex'); + } + else { + throw new BSONTypeError('Argument passed in must be a string of 12 bytes or a string of 24 hex characters or an integer'); + } + } + else { + throw new BSONTypeError('Argument passed in does not match the accepted types'); + } + // If we are caching the hex string + if (ObjectId.cacheHexString) { + this.__id = this.id.toString('hex'); + } + } + Object.defineProperty(ObjectId.prototype, "id", { + /** + * The ObjectId bytes + * @readonly + */ + get: function () { + return this[kId]; + }, + set: function (value) { + this[kId] = value; + if (ObjectId.cacheHexString) { + this.__id = value.toString('hex'); + } + }, + enumerable: false, + configurable: true + }); + Object.defineProperty(ObjectId.prototype, "generationTime", { + /** + * The generation time of this ObjectId instance + * @deprecated Please use getTimestamp / createFromTime which returns an int32 epoch + */ + get: function () { + return this.id.readInt32BE(0); + }, + set: function (value) { + // Encode time into first 4 bytes + this.id.writeUInt32BE(value, 0); + }, + enumerable: false, + configurable: true + }); + /** Returns the ObjectId id as a 24 character hex string representation */ + ObjectId.prototype.toHexString = function () { + if (ObjectId.cacheHexString && this.__id) { + return this.__id; + } + var hexString = this.id.toString('hex'); + if (ObjectId.cacheHexString && !this.__id) { + this.__id = hexString; + } + return hexString; + }; + /** + * Update the ObjectId index + * @privateRemarks + * Used in generating new ObjectId's on the driver + * @internal + */ + ObjectId.getInc = function () { + return (ObjectId.index = (ObjectId.index + 1) % 0xffffff); + }; + /** + * Generate a 12 byte id buffer used in ObjectId's + * + * @param time - pass in a second based timestamp. + */ + ObjectId.generate = function (time) { + if ('number' !== typeof time) { + time = Math.floor(Date.now() / 1000); + } + var inc = ObjectId.getInc(); + var buffer = buffer_1.alloc(12); + // 4-byte timestamp + buffer.writeUInt32BE(time, 0); + // set PROCESS_UNIQUE if yet not initialized + if (PROCESS_UNIQUE === null) { + PROCESS_UNIQUE = randomBytes(5); + } + // 5-byte process unique + buffer[4] = PROCESS_UNIQUE[0]; + buffer[5] = PROCESS_UNIQUE[1]; + buffer[6] = PROCESS_UNIQUE[2]; + buffer[7] = PROCESS_UNIQUE[3]; + buffer[8] = PROCESS_UNIQUE[4]; + // 3-byte counter + buffer[11] = inc & 0xff; + buffer[10] = (inc >> 8) & 0xff; + buffer[9] = (inc >> 16) & 0xff; + return buffer; + }; + /** + * Converts the id into a 24 character hex string for printing + * + * @param format - The Buffer toString format parameter. + */ + ObjectId.prototype.toString = function (format) { + // Is the id a buffer then use the buffer toString method to return the format + if (format) + return this.id.toString(format); + return this.toHexString(); + }; + /** Converts to its JSON the 24 character hex string representation. */ + ObjectId.prototype.toJSON = function () { + return this.toHexString(); + }; + /** + * Compares the equality of this ObjectId with `otherID`. + * + * @param otherId - ObjectId instance to compare against. + */ + ObjectId.prototype.equals = function (otherId) { + if (otherId === undefined || otherId === null) { + return false; + } + if (otherId instanceof ObjectId) { + return this[kId][11] === otherId[kId][11] && this[kId].equals(otherId[kId]); + } + if (typeof otherId === 'string' && + ObjectId.isValid(otherId) && + otherId.length === 12 && + isUint8Array(this.id)) { + return otherId === buffer_1.prototype.toString.call(this.id, 'latin1'); + } + if (typeof otherId === 'string' && ObjectId.isValid(otherId) && otherId.length === 24) { + return otherId.toLowerCase() === this.toHexString(); + } + if (typeof otherId === 'string' && ObjectId.isValid(otherId) && otherId.length === 12) { + return buffer_1.from(otherId).equals(this.id); + } + if (typeof otherId === 'object' && + 'toHexString' in otherId && + typeof otherId.toHexString === 'function') { + var otherIdString = otherId.toHexString(); + var thisIdString = this.toHexString().toLowerCase(); + return typeof otherIdString === 'string' && otherIdString.toLowerCase() === thisIdString; + } + return false; + }; + /** Returns the generation date (accurate up to the second) that this ID was generated. */ + ObjectId.prototype.getTimestamp = function () { + var timestamp = new Date(); + var time = this.id.readUInt32BE(0); + timestamp.setTime(Math.floor(time) * 1000); + return timestamp; + }; + /** @internal */ + ObjectId.createPk = function () { + return new ObjectId(); + }; + /** + * Creates an ObjectId from a second based number, with the rest of the ObjectId zeroed out. Used for comparisons or sorting the ObjectId. + * + * @param time - an integer number representing a number of seconds. + */ + ObjectId.createFromTime = function (time) { + var buffer = buffer_1.from([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]); + // Encode time into first 4 bytes + buffer.writeUInt32BE(time, 0); + // Return the new objectId + return new ObjectId(buffer); + }; + /** + * Creates an ObjectId from a hex string representation of an ObjectId. + * + * @param hexString - create a ObjectId from a passed in 24 character hexstring. + */ + ObjectId.createFromHexString = function (hexString) { + // Throw an error if it's not a valid setup + if (typeof hexString === 'undefined' || (hexString != null && hexString.length !== 24)) { + throw new BSONTypeError('Argument passed in must be a single String of 12 bytes or a string of 24 hex characters'); + } + return new ObjectId(buffer_1.from(hexString, 'hex')); + }; + /** + * Checks if a value is a valid bson ObjectId + * + * @param id - ObjectId instance to validate. + */ + ObjectId.isValid = function (id) { + if (id == null) + return false; + try { + new ObjectId(id); + return true; + } + catch (_a) { + return false; + } + }; + /** @internal */ + ObjectId.prototype.toExtendedJSON = function () { + if (this.toHexString) + return { $oid: this.toHexString() }; + return { $oid: this.toString('hex') }; + }; + /** @internal */ + ObjectId.fromExtendedJSON = function (doc) { + return new ObjectId(doc.$oid); + }; + /** + * Converts to a string representation of this Id. + * + * @returns return the 24 character hex string representation. + * @internal + */ + ObjectId.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () { + return this.inspect(); + }; + ObjectId.prototype.inspect = function () { + return "new ObjectId(\"".concat(this.toHexString(), "\")"); + }; + /** @internal */ + ObjectId.index = Math.floor(Math.random() * 0xffffff); + return ObjectId; + }()); + // Deprecated methods + Object.defineProperty(ObjectId.prototype, 'generate', { + value: deprecate(function (time) { return ObjectId.generate(time); }, 'Please use the static `ObjectId.generate(time)` instead') + }); + Object.defineProperty(ObjectId.prototype, 'getInc', { + value: deprecate(function () { return ObjectId.getInc(); }, 'Please use the static `ObjectId.getInc()` instead') + }); + Object.defineProperty(ObjectId.prototype, 'get_inc', { + value: deprecate(function () { return ObjectId.getInc(); }, 'Please use the static `ObjectId.getInc()` instead') + }); + Object.defineProperty(ObjectId, 'get_inc', { + value: deprecate(function () { return ObjectId.getInc(); }, 'Please use the static `ObjectId.getInc()` instead') + }); + Object.defineProperty(ObjectId.prototype, '_bsontype', { value: 'ObjectID' }); + + function alphabetize(str) { + return str.split('').sort().join(''); + } + /** + * A class representation of the BSON RegExp type. + * @public + * @category BSONType + */ + var BSONRegExp = /** @class */ (function () { + /** + * @param pattern - The regular expression pattern to match + * @param options - The regular expression options + */ + function BSONRegExp(pattern, options) { + if (!(this instanceof BSONRegExp)) + return new BSONRegExp(pattern, options); + this.pattern = pattern; + this.options = alphabetize(options !== null && options !== void 0 ? options : ''); + if (this.pattern.indexOf('\x00') !== -1) { + throw new BSONError("BSON Regex patterns cannot contain null bytes, found: ".concat(JSON.stringify(this.pattern))); + } + if (this.options.indexOf('\x00') !== -1) { + throw new BSONError("BSON Regex options cannot contain null bytes, found: ".concat(JSON.stringify(this.options))); + } + // Validate options + for (var i = 0; i < this.options.length; i++) { + if (!(this.options[i] === 'i' || + this.options[i] === 'm' || + this.options[i] === 'x' || + this.options[i] === 'l' || + this.options[i] === 's' || + this.options[i] === 'u')) { + throw new BSONError("The regular expression option [".concat(this.options[i], "] is not supported")); + } + } + } + BSONRegExp.parseOptions = function (options) { + return options ? options.split('').sort().join('') : ''; + }; + /** @internal */ + BSONRegExp.prototype.toExtendedJSON = function (options) { + options = options || {}; + if (options.legacy) { + return { $regex: this.pattern, $options: this.options }; + } + return { $regularExpression: { pattern: this.pattern, options: this.options } }; + }; + /** @internal */ + BSONRegExp.fromExtendedJSON = function (doc) { + if ('$regex' in doc) { + if (typeof doc.$regex !== 'string') { + // This is for $regex query operators that have extended json values. + if (doc.$regex._bsontype === 'BSONRegExp') { + return doc; + } + } + else { + return new BSONRegExp(doc.$regex, BSONRegExp.parseOptions(doc.$options)); + } + } + if ('$regularExpression' in doc) { + return new BSONRegExp(doc.$regularExpression.pattern, BSONRegExp.parseOptions(doc.$regularExpression.options)); + } + throw new BSONTypeError("Unexpected BSONRegExp EJSON object form: ".concat(JSON.stringify(doc))); + }; + return BSONRegExp; + }()); + Object.defineProperty(BSONRegExp.prototype, '_bsontype', { value: 'BSONRegExp' }); + + /** + * A class representation of the BSON Symbol type. + * @public + * @category BSONType + */ + var BSONSymbol = /** @class */ (function () { + /** + * @param value - the string representing the symbol. + */ + function BSONSymbol(value) { + if (!(this instanceof BSONSymbol)) + return new BSONSymbol(value); + this.value = value; + } + /** Access the wrapped string value. */ + BSONSymbol.prototype.valueOf = function () { + return this.value; + }; + BSONSymbol.prototype.toString = function () { + return this.value; + }; + /** @internal */ + BSONSymbol.prototype.inspect = function () { + return "new BSONSymbol(\"".concat(this.value, "\")"); + }; + BSONSymbol.prototype.toJSON = function () { + return this.value; + }; + /** @internal */ + BSONSymbol.prototype.toExtendedJSON = function () { + return { $symbol: this.value }; + }; + /** @internal */ + BSONSymbol.fromExtendedJSON = function (doc) { + return new BSONSymbol(doc.$symbol); + }; + /** @internal */ + BSONSymbol.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () { + return this.inspect(); + }; + return BSONSymbol; + }()); + Object.defineProperty(BSONSymbol.prototype, '_bsontype', { value: 'Symbol' }); + + /** @public */ + var LongWithoutOverridesClass = Long; + /** + * @public + * @category BSONType + * */ + var Timestamp = /** @class */ (function (_super) { + __extends(Timestamp, _super); + function Timestamp(low, high) { + var _this = this; + // eslint-disable-next-line @typescript-eslint/ban-ts-comment + // @ts-expect-error + if (!(_this instanceof Timestamp)) + return new Timestamp(low, high); + if (Long.isLong(low)) { + _this = _super.call(this, low.low, low.high, true) || this; + } + else if (isObjectLike(low) && typeof low.t !== 'undefined' && typeof low.i !== 'undefined') { + _this = _super.call(this, low.i, low.t, true) || this; + } + else { + _this = _super.call(this, low, high, true) || this; + } + Object.defineProperty(_this, '_bsontype', { + value: 'Timestamp', + writable: false, + configurable: false, + enumerable: false + }); + return _this; + } + Timestamp.prototype.toJSON = function () { + return { + $timestamp: this.toString() + }; + }; + /** Returns a Timestamp represented by the given (32-bit) integer value. */ + Timestamp.fromInt = function (value) { + return new Timestamp(Long.fromInt(value, true)); + }; + /** Returns a Timestamp representing the given number value, provided that it is a finite number. Otherwise, zero is returned. */ + Timestamp.fromNumber = function (value) { + return new Timestamp(Long.fromNumber(value, true)); + }; + /** + * Returns a Timestamp for the given high and low bits. Each is assumed to use 32 bits. + * + * @param lowBits - the low 32-bits. + * @param highBits - the high 32-bits. + */ + Timestamp.fromBits = function (lowBits, highBits) { + return new Timestamp(lowBits, highBits); + }; + /** + * Returns a Timestamp from the given string, optionally using the given radix. + * + * @param str - the textual representation of the Timestamp. + * @param optRadix - the radix in which the text is written. + */ + Timestamp.fromString = function (str, optRadix) { + return new Timestamp(Long.fromString(str, true, optRadix)); + }; + /** @internal */ + Timestamp.prototype.toExtendedJSON = function () { + return { $timestamp: { t: this.high >>> 0, i: this.low >>> 0 } }; + }; + /** @internal */ + Timestamp.fromExtendedJSON = function (doc) { + return new Timestamp(doc.$timestamp); + }; + /** @internal */ + Timestamp.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () { + return this.inspect(); + }; + Timestamp.prototype.inspect = function () { + return "new Timestamp({ t: ".concat(this.getHighBits(), ", i: ").concat(this.getLowBits(), " })"); + }; + Timestamp.MAX_VALUE = Long.MAX_UNSIGNED_VALUE; + return Timestamp; + }(LongWithoutOverridesClass)); + + function isBSONType(value) { + return (isObjectLike(value) && Reflect.has(value, '_bsontype') && typeof value._bsontype === 'string'); + } + // INT32 boundaries + var BSON_INT32_MAX = 0x7fffffff; + var BSON_INT32_MIN = -0x80000000; + // INT64 boundaries + // const BSON_INT64_MAX = 0x7fffffffffffffff; // TODO(NODE-4377): This number cannot be precisely represented in JS + var BSON_INT64_MAX = 0x8000000000000000; + var BSON_INT64_MIN = -0x8000000000000000; + // all the types where we don't need to do any special processing and can just pass the EJSON + //straight to type.fromExtendedJSON + var keysToCodecs = { + $oid: ObjectId, + $binary: Binary, + $uuid: Binary, + $symbol: BSONSymbol, + $numberInt: Int32, + $numberDecimal: Decimal128, + $numberDouble: Double, + $numberLong: Long, + $minKey: MinKey, + $maxKey: MaxKey, + $regex: BSONRegExp, + $regularExpression: BSONRegExp, + $timestamp: Timestamp + }; + // eslint-disable-next-line @typescript-eslint/no-explicit-any + function deserializeValue(value, options) { + if (options === void 0) { options = {}; } + if (typeof value === 'number') { + if (options.relaxed || options.legacy) { + return value; + } + // if it's an integer, should interpret as smallest BSON integer + // that can represent it exactly. (if out of range, interpret as double.) + if (Math.floor(value) === value) { + if (value >= BSON_INT32_MIN && value <= BSON_INT32_MAX) + return new Int32(value); + if (value >= BSON_INT64_MIN && value <= BSON_INT64_MAX) + return Long.fromNumber(value); + } + // If the number is a non-integer or out of integer range, should interpret as BSON Double. + return new Double(value); + } + // from here on out we're looking for bson types, so bail if its not an object + if (value == null || typeof value !== 'object') + return value; + // upgrade deprecated undefined to null + if (value.$undefined) + return null; + var keys = Object.keys(value).filter(function (k) { return k.startsWith('$') && value[k] != null; }); + for (var i = 0; i < keys.length; i++) { + var c = keysToCodecs[keys[i]]; + if (c) + return c.fromExtendedJSON(value, options); + } + if (value.$date != null) { + var d = value.$date; + var date = new Date(); + if (options.legacy) { + if (typeof d === 'number') + date.setTime(d); + else if (typeof d === 'string') + date.setTime(Date.parse(d)); + } + else { + if (typeof d === 'string') + date.setTime(Date.parse(d)); + else if (Long.isLong(d)) + date.setTime(d.toNumber()); + else if (typeof d === 'number' && options.relaxed) + date.setTime(d); + } + return date; + } + if (value.$code != null) { + var copy = Object.assign({}, value); + if (value.$scope) { + copy.$scope = deserializeValue(value.$scope); + } + return Code.fromExtendedJSON(value); + } + if (isDBRefLike(value) || value.$dbPointer) { + var v = value.$ref ? value : value.$dbPointer; + // we run into this in a "degenerate EJSON" case (with $id and $ref order flipped) + // because of the order JSON.parse goes through the document + if (v instanceof DBRef) + return v; + var dollarKeys = Object.keys(v).filter(function (k) { return k.startsWith('$'); }); + var valid_1 = true; + dollarKeys.forEach(function (k) { + if (['$ref', '$id', '$db'].indexOf(k) === -1) + valid_1 = false; + }); + // only make DBRef if $ keys are all valid + if (valid_1) + return DBRef.fromExtendedJSON(v); + } + return value; + } + // eslint-disable-next-line @typescript-eslint/no-explicit-any + function serializeArray(array, options) { + return array.map(function (v, index) { + options.seenObjects.push({ propertyName: "index ".concat(index), obj: null }); + try { + return serializeValue(v, options); + } + finally { + options.seenObjects.pop(); + } + }); + } + function getISOString(date) { + var isoStr = date.toISOString(); + // we should only show milliseconds in timestamp if they're non-zero + return date.getUTCMilliseconds() !== 0 ? isoStr : isoStr.slice(0, -5) + 'Z'; + } + // eslint-disable-next-line @typescript-eslint/no-explicit-any + function serializeValue(value, options) { + if ((typeof value === 'object' || typeof value === 'function') && value !== null) { + var index = options.seenObjects.findIndex(function (entry) { return entry.obj === value; }); + if (index !== -1) { + var props = options.seenObjects.map(function (entry) { return entry.propertyName; }); + var leadingPart = props + .slice(0, index) + .map(function (prop) { return "".concat(prop, " -> "); }) + .join(''); + var alreadySeen = props[index]; + var circularPart = ' -> ' + + props + .slice(index + 1, props.length - 1) + .map(function (prop) { return "".concat(prop, " -> "); }) + .join(''); + var current = props[props.length - 1]; + var leadingSpace = ' '.repeat(leadingPart.length + alreadySeen.length / 2); + var dashes = '-'.repeat(circularPart.length + (alreadySeen.length + current.length) / 2 - 1); + throw new BSONTypeError('Converting circular structure to EJSON:\n' + + " ".concat(leadingPart).concat(alreadySeen).concat(circularPart).concat(current, "\n") + + " ".concat(leadingSpace, "\\").concat(dashes, "/")); + } + options.seenObjects[options.seenObjects.length - 1].obj = value; + } + if (Array.isArray(value)) + return serializeArray(value, options); + if (value === undefined) + return null; + if (value instanceof Date || isDate(value)) { + var dateNum = value.getTime(), + // is it in year range 1970-9999? + inRange = dateNum > -1 && dateNum < 253402318800000; + if (options.legacy) { + return options.relaxed && inRange + ? { $date: value.getTime() } + : { $date: getISOString(value) }; + } + return options.relaxed && inRange + ? { $date: getISOString(value) } + : { $date: { $numberLong: value.getTime().toString() } }; + } + if (typeof value === 'number' && (!options.relaxed || !isFinite(value))) { + // it's an integer + if (Math.floor(value) === value) { + var int32Range = value >= BSON_INT32_MIN && value <= BSON_INT32_MAX, int64Range = value >= BSON_INT64_MIN && value <= BSON_INT64_MAX; + // interpret as being of the smallest BSON integer type that can represent the number exactly + if (int32Range) + return { $numberInt: value.toString() }; + if (int64Range) + return { $numberLong: value.toString() }; + } + return { $numberDouble: value.toString() }; + } + if (value instanceof RegExp || isRegExp(value)) { + var flags = value.flags; + if (flags === undefined) { + var match = value.toString().match(/[gimuy]*$/); + if (match) { + flags = match[0]; + } + } + var rx = new BSONRegExp(value.source, flags); + return rx.toExtendedJSON(options); + } + if (value != null && typeof value === 'object') + return serializeDocument(value, options); + return value; + } + var BSON_TYPE_MAPPINGS = { + Binary: function (o) { return new Binary(o.value(), o.sub_type); }, + Code: function (o) { return new Code(o.code, o.scope); }, + DBRef: function (o) { return new DBRef(o.collection || o.namespace, o.oid, o.db, o.fields); }, + Decimal128: function (o) { return new Decimal128(o.bytes); }, + Double: function (o) { return new Double(o.value); }, + Int32: function (o) { return new Int32(o.value); }, + Long: function (o) { + return Long.fromBits( + // underscore variants for 1.x backwards compatibility + o.low != null ? o.low : o.low_, o.low != null ? o.high : o.high_, o.low != null ? o.unsigned : o.unsigned_); + }, + MaxKey: function () { return new MaxKey(); }, + MinKey: function () { return new MinKey(); }, + ObjectID: function (o) { return new ObjectId(o); }, + ObjectId: function (o) { return new ObjectId(o); }, + BSONRegExp: function (o) { return new BSONRegExp(o.pattern, o.options); }, + Symbol: function (o) { return new BSONSymbol(o.value); }, + Timestamp: function (o) { return Timestamp.fromBits(o.low, o.high); } + }; + // eslint-disable-next-line @typescript-eslint/no-explicit-any + function serializeDocument(doc, options) { + if (doc == null || typeof doc !== 'object') + throw new BSONError('not an object instance'); + var bsontype = doc._bsontype; + if (typeof bsontype === 'undefined') { + // It's a regular object. Recursively serialize its property values. + var _doc = {}; + for (var name in doc) { + options.seenObjects.push({ propertyName: name, obj: null }); + try { + var value = serializeValue(doc[name], options); + if (name === '__proto__') { + Object.defineProperty(_doc, name, { + value: value, + writable: true, + enumerable: true, + configurable: true + }); + } + else { + _doc[name] = value; + } + } + finally { + options.seenObjects.pop(); + } + } + return _doc; + } + else if (isBSONType(doc)) { + // the "document" is really just a BSON type object + // eslint-disable-next-line @typescript-eslint/no-explicit-any + var outDoc = doc; + if (typeof outDoc.toExtendedJSON !== 'function') { + // There's no EJSON serialization function on the object. It's probably an + // object created by a previous version of this library (or another library) + // that's duck-typing objects to look like they were generated by this library). + // Copy the object into this library's version of that type. + var mapper = BSON_TYPE_MAPPINGS[doc._bsontype]; + if (!mapper) { + throw new BSONTypeError('Unrecognized or invalid _bsontype: ' + doc._bsontype); + } + outDoc = mapper(outDoc); + } + // Two BSON types may have nested objects that may need to be serialized too + if (bsontype === 'Code' && outDoc.scope) { + outDoc = new Code(outDoc.code, serializeValue(outDoc.scope, options)); + } + else if (bsontype === 'DBRef' && outDoc.oid) { + outDoc = new DBRef(serializeValue(outDoc.collection, options), serializeValue(outDoc.oid, options), serializeValue(outDoc.db, options), serializeValue(outDoc.fields, options)); + } + return outDoc.toExtendedJSON(options); + } + else { + throw new BSONError('_bsontype must be a string, but was: ' + typeof bsontype); + } + } + /** + * EJSON parse / stringify API + * @public + */ + // the namespace here is used to emulate `export * as EJSON from '...'` + // which as of now (sept 2020) api-extractor does not support + // eslint-disable-next-line @typescript-eslint/no-namespace + exports.EJSON = void 0; + (function (EJSON) { + /** + * Parse an Extended JSON string, constructing the JavaScript value or object described by that + * string. + * + * @example + * ```js + * const { EJSON } = require('bson'); + * const text = '{ "int32": { "$numberInt": "10" } }'; + * + * // prints { int32: { [String: '10'] _bsontype: 'Int32', value: '10' } } + * console.log(EJSON.parse(text, { relaxed: false })); + * + * // prints { int32: 10 } + * console.log(EJSON.parse(text)); + * ``` + */ + function parse(text, options) { + var finalOptions = Object.assign({}, { relaxed: true, legacy: false }, options); + // relaxed implies not strict + if (typeof finalOptions.relaxed === 'boolean') + finalOptions.strict = !finalOptions.relaxed; + if (typeof finalOptions.strict === 'boolean') + finalOptions.relaxed = !finalOptions.strict; + return JSON.parse(text, function (key, value) { + if (key.indexOf('\x00') !== -1) { + throw new BSONError("BSON Document field names cannot contain null bytes, found: ".concat(JSON.stringify(key))); + } + return deserializeValue(value, finalOptions); + }); + } + EJSON.parse = parse; + /** + * Converts a BSON document to an Extended JSON string, optionally replacing values if a replacer + * function is specified or optionally including only the specified properties if a replacer array + * is specified. + * + * @param value - The value to convert to extended JSON + * @param replacer - A function that alters the behavior of the stringification process, or an array of String and Number objects that serve as a whitelist for selecting/filtering the properties of the value object to be included in the JSON string. If this value is null or not provided, all properties of the object are included in the resulting JSON string + * @param space - A String or Number object that's used to insert white space into the output JSON string for readability purposes. + * @param options - Optional settings + * + * @example + * ```js + * const { EJSON } = require('bson'); + * const Int32 = require('mongodb').Int32; + * const doc = { int32: new Int32(10) }; + * + * // prints '{"int32":{"$numberInt":"10"}}' + * console.log(EJSON.stringify(doc, { relaxed: false })); + * + * // prints '{"int32":10}' + * console.log(EJSON.stringify(doc)); + * ``` + */ + function stringify(value, + // eslint-disable-next-line @typescript-eslint/no-explicit-any + replacer, space, options) { + if (space != null && typeof space === 'object') { + options = space; + space = 0; + } + if (replacer != null && typeof replacer === 'object' && !Array.isArray(replacer)) { + options = replacer; + replacer = undefined; + space = 0; + } + var serializeOptions = Object.assign({ relaxed: true, legacy: false }, options, { + seenObjects: [{ propertyName: '(root)', obj: null }] + }); + var doc = serializeValue(value, serializeOptions); + return JSON.stringify(doc, replacer, space); + } + EJSON.stringify = stringify; + /** + * Serializes an object to an Extended JSON string, and reparse it as a JavaScript object. + * + * @param value - The object to serialize + * @param options - Optional settings passed to the `stringify` function + */ + function serialize(value, options) { + options = options || {}; + return JSON.parse(stringify(value, options)); + } + EJSON.serialize = serialize; + /** + * Deserializes an Extended JSON object into a plain JavaScript object with native/BSON types + * + * @param ejson - The Extended JSON object to deserialize + * @param options - Optional settings passed to the parse method + */ + function deserialize(ejson, options) { + options = options || {}; + return parse(JSON.stringify(ejson), options); + } + EJSON.deserialize = deserialize; + })(exports.EJSON || (exports.EJSON = {})); + + /* eslint-disable @typescript-eslint/no-explicit-any */ + /** @public */ + exports.Map = void 0; + var bsonGlobal = getGlobal(); + if (bsonGlobal.Map) { + exports.Map = bsonGlobal.Map; + } + else { + // We will return a polyfill + exports.Map = /** @class */ (function () { + function Map(array) { + if (array === void 0) { array = []; } + this._keys = []; + this._values = {}; + for (var i = 0; i < array.length; i++) { + if (array[i] == null) + continue; // skip null and undefined + var entry = array[i]; + var key = entry[0]; + var value = entry[1]; + // Add the key to the list of keys in order + this._keys.push(key); + // Add the key and value to the values dictionary with a point + // to the location in the ordered keys list + this._values[key] = { v: value, i: this._keys.length - 1 }; + } + } + Map.prototype.clear = function () { + this._keys = []; + this._values = {}; + }; + Map.prototype.delete = function (key) { + var value = this._values[key]; + if (value == null) + return false; + // Delete entry + delete this._values[key]; + // Remove the key from the ordered keys list + this._keys.splice(value.i, 1); + return true; + }; + Map.prototype.entries = function () { + var _this = this; + var index = 0; + return { + next: function () { + var key = _this._keys[index++]; + return { + value: key !== undefined ? [key, _this._values[key].v] : undefined, + done: key !== undefined ? false : true + }; + } + }; + }; + Map.prototype.forEach = function (callback, self) { + self = self || this; + for (var i = 0; i < this._keys.length; i++) { + var key = this._keys[i]; + // Call the forEach callback + callback.call(self, this._values[key].v, key, self); + } + }; + Map.prototype.get = function (key) { + return this._values[key] ? this._values[key].v : undefined; + }; + Map.prototype.has = function (key) { + return this._values[key] != null; + }; + Map.prototype.keys = function () { + var _this = this; + var index = 0; + return { + next: function () { + var key = _this._keys[index++]; + return { + value: key !== undefined ? key : undefined, + done: key !== undefined ? false : true + }; + } + }; + }; + Map.prototype.set = function (key, value) { + if (this._values[key]) { + this._values[key].v = value; + return this; + } + // Add the key to the list of keys in order + this._keys.push(key); + // Add the key and value to the values dictionary with a point + // to the location in the ordered keys list + this._values[key] = { v: value, i: this._keys.length - 1 }; + return this; + }; + Map.prototype.values = function () { + var _this = this; + var index = 0; + return { + next: function () { + var key = _this._keys[index++]; + return { + value: key !== undefined ? _this._values[key].v : undefined, + done: key !== undefined ? false : true + }; + } + }; + }; + Object.defineProperty(Map.prototype, "size", { + get: function () { + return this._keys.length; + }, + enumerable: false, + configurable: true + }); + return Map; + }()); + } + + function calculateObjectSize$1(object, serializeFunctions, ignoreUndefined) { + var totalLength = 4 + 1; + if (Array.isArray(object)) { + for (var i = 0; i < object.length; i++) { + totalLength += calculateElement(i.toString(), object[i], serializeFunctions, true, ignoreUndefined); + } + } + else { + // If we have toBSON defined, override the current object + if (typeof (object === null || object === void 0 ? void 0 : object.toBSON) === 'function') { + object = object.toBSON(); + } + // Calculate size + for (var key in object) { + totalLength += calculateElement(key, object[key], serializeFunctions, false, ignoreUndefined); + } + } + return totalLength; + } + /** @internal */ + function calculateElement(name, + // eslint-disable-next-line @typescript-eslint/no-explicit-any + value, serializeFunctions, isArray, ignoreUndefined) { + if (serializeFunctions === void 0) { serializeFunctions = false; } + if (isArray === void 0) { isArray = false; } + if (ignoreUndefined === void 0) { ignoreUndefined = false; } + // If we have toBSON defined, override the current object + if (typeof (value === null || value === void 0 ? void 0 : value.toBSON) === 'function') { + value = value.toBSON(); + } + switch (typeof value) { + case 'string': + return 1 + buffer_1.byteLength(name, 'utf8') + 1 + 4 + buffer_1.byteLength(value, 'utf8') + 1; + case 'number': + if (Math.floor(value) === value && + value >= JS_INT_MIN && + value <= JS_INT_MAX) { + if (value >= BSON_INT32_MIN$1 && value <= BSON_INT32_MAX$1) { + // 32 bit + return (name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + (4 + 1); + } + else { + return (name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + (8 + 1); + } + } + else { + // 64 bit + return (name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + (8 + 1); + } + case 'undefined': + if (isArray || !ignoreUndefined) + return (name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + 1; + return 0; + case 'boolean': + return (name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + (1 + 1); + case 'object': + if (value == null || value['_bsontype'] === 'MinKey' || value['_bsontype'] === 'MaxKey') { + return (name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + 1; + } + else if (value['_bsontype'] === 'ObjectId' || value['_bsontype'] === 'ObjectID') { + return (name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + (12 + 1); + } + else if (value instanceof Date || isDate(value)) { + return (name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + (8 + 1); + } + else if (ArrayBuffer.isView(value) || + value instanceof ArrayBuffer || + isAnyArrayBuffer(value)) { + return ((name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + (1 + 4 + 1) + value.byteLength); + } + else if (value['_bsontype'] === 'Long' || + value['_bsontype'] === 'Double' || + value['_bsontype'] === 'Timestamp') { + return (name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + (8 + 1); + } + else if (value['_bsontype'] === 'Decimal128') { + return (name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + (16 + 1); + } + else if (value['_bsontype'] === 'Code') { + // Calculate size depending on the availability of a scope + if (value.scope != null && Object.keys(value.scope).length > 0) { + return ((name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + + 1 + + 4 + + 4 + + buffer_1.byteLength(value.code.toString(), 'utf8') + + 1 + + calculateObjectSize$1(value.scope, serializeFunctions, ignoreUndefined)); + } + else { + return ((name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + + 1 + + 4 + + buffer_1.byteLength(value.code.toString(), 'utf8') + + 1); + } + } + else if (value['_bsontype'] === 'Binary') { + var binary = value; + // Check what kind of subtype we have + if (binary.sub_type === Binary.SUBTYPE_BYTE_ARRAY) { + return ((name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + + (binary.position + 1 + 4 + 1 + 4)); + } + else { + return ((name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + (binary.position + 1 + 4 + 1)); + } + } + else if (value['_bsontype'] === 'Symbol') { + return ((name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + + buffer_1.byteLength(value.value, 'utf8') + + 4 + + 1 + + 1); + } + else if (value['_bsontype'] === 'DBRef') { + // Set up correct object for serialization + var ordered_values = Object.assign({ + $ref: value.collection, + $id: value.oid + }, value.fields); + // Add db reference if it exists + if (value.db != null) { + ordered_values['$db'] = value.db; + } + return ((name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + + 1 + + calculateObjectSize$1(ordered_values, serializeFunctions, ignoreUndefined)); + } + else if (value instanceof RegExp || isRegExp(value)) { + return ((name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + + 1 + + buffer_1.byteLength(value.source, 'utf8') + + 1 + + (value.global ? 1 : 0) + + (value.ignoreCase ? 1 : 0) + + (value.multiline ? 1 : 0) + + 1); + } + else if (value['_bsontype'] === 'BSONRegExp') { + return ((name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + + 1 + + buffer_1.byteLength(value.pattern, 'utf8') + + 1 + + buffer_1.byteLength(value.options, 'utf8') + + 1); + } + else { + return ((name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + + calculateObjectSize$1(value, serializeFunctions, ignoreUndefined) + + 1); + } + case 'function': + // WTF for 0.4.X where typeof /someregexp/ === 'function' + if (value instanceof RegExp || isRegExp(value) || String.call(value) === '[object RegExp]') { + return ((name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + + 1 + + buffer_1.byteLength(value.source, 'utf8') + + 1 + + (value.global ? 1 : 0) + + (value.ignoreCase ? 1 : 0) + + (value.multiline ? 1 : 0) + + 1); + } + else { + if (serializeFunctions && value.scope != null && Object.keys(value.scope).length > 0) { + return ((name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + + 1 + + 4 + + 4 + + buffer_1.byteLength(normalizedFunctionString(value), 'utf8') + + 1 + + calculateObjectSize$1(value.scope, serializeFunctions, ignoreUndefined)); + } + else if (serializeFunctions) { + return ((name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + + 1 + + 4 + + buffer_1.byteLength(normalizedFunctionString(value), 'utf8') + + 1); + } + } + } + return 0; + } + + var FIRST_BIT = 0x80; + var FIRST_TWO_BITS = 0xc0; + var FIRST_THREE_BITS = 0xe0; + var FIRST_FOUR_BITS = 0xf0; + var FIRST_FIVE_BITS = 0xf8; + var TWO_BIT_CHAR = 0xc0; + var THREE_BIT_CHAR = 0xe0; + var FOUR_BIT_CHAR = 0xf0; + var CONTINUING_CHAR = 0x80; + /** + * Determines if the passed in bytes are valid utf8 + * @param bytes - An array of 8-bit bytes. Must be indexable and have length property + * @param start - The index to start validating + * @param end - The index to end validating + */ + function validateUtf8(bytes, start, end) { + var continuation = 0; + for (var i = start; i < end; i += 1) { + var byte = bytes[i]; + if (continuation) { + if ((byte & FIRST_TWO_BITS) !== CONTINUING_CHAR) { + return false; + } + continuation -= 1; + } + else if (byte & FIRST_BIT) { + if ((byte & FIRST_THREE_BITS) === TWO_BIT_CHAR) { + continuation = 1; + } + else if ((byte & FIRST_FOUR_BITS) === THREE_BIT_CHAR) { + continuation = 2; + } + else if ((byte & FIRST_FIVE_BITS) === FOUR_BIT_CHAR) { + continuation = 3; + } + else { + return false; + } + } + } + return !continuation; + } + + // Internal long versions + var JS_INT_MAX_LONG = Long.fromNumber(JS_INT_MAX); + var JS_INT_MIN_LONG = Long.fromNumber(JS_INT_MIN); + var functionCache = {}; + function deserialize$1(buffer, options, isArray) { + options = options == null ? {} : options; + var index = options && options.index ? options.index : 0; + // Read the document size + var size = buffer[index] | + (buffer[index + 1] << 8) | + (buffer[index + 2] << 16) | + (buffer[index + 3] << 24); + if (size < 5) { + throw new BSONError("bson size must be >= 5, is ".concat(size)); + } + if (options.allowObjectSmallerThanBufferSize && buffer.length < size) { + throw new BSONError("buffer length ".concat(buffer.length, " must be >= bson size ").concat(size)); + } + if (!options.allowObjectSmallerThanBufferSize && buffer.length !== size) { + throw new BSONError("buffer length ".concat(buffer.length, " must === bson size ").concat(size)); + } + if (size + index > buffer.byteLength) { + throw new BSONError("(bson size ".concat(size, " + options.index ").concat(index, " must be <= buffer length ").concat(buffer.byteLength, ")")); + } + // Illegal end value + if (buffer[index + size - 1] !== 0) { + throw new BSONError("One object, sized correctly, with a spot for an EOO, but the EOO isn't 0x00"); + } + // Start deserializtion + return deserializeObject(buffer, index, options, isArray); + } + var allowedDBRefKeys = /^\$ref$|^\$id$|^\$db$/; + function deserializeObject(buffer, index, options, isArray) { + if (isArray === void 0) { isArray = false; } + var evalFunctions = options['evalFunctions'] == null ? false : options['evalFunctions']; + var cacheFunctions = options['cacheFunctions'] == null ? false : options['cacheFunctions']; + var fieldsAsRaw = options['fieldsAsRaw'] == null ? null : options['fieldsAsRaw']; + // Return raw bson buffer instead of parsing it + var raw = options['raw'] == null ? false : options['raw']; + // Return BSONRegExp objects instead of native regular expressions + var bsonRegExp = typeof options['bsonRegExp'] === 'boolean' ? options['bsonRegExp'] : false; + // Controls the promotion of values vs wrapper classes + var promoteBuffers = options['promoteBuffers'] == null ? false : options['promoteBuffers']; + var promoteLongs = options['promoteLongs'] == null ? true : options['promoteLongs']; + var promoteValues = options['promoteValues'] == null ? true : options['promoteValues']; + // Ensures default validation option if none given + var validation = options.validation == null ? { utf8: true } : options.validation; + // Shows if global utf-8 validation is enabled or disabled + var globalUTFValidation = true; + // Reflects utf-8 validation setting regardless of global or specific key validation + var validationSetting; + // Set of keys either to enable or disable validation on + var utf8KeysSet = new Set(); + // Check for boolean uniformity and empty validation option + var utf8ValidatedKeys = validation.utf8; + if (typeof utf8ValidatedKeys === 'boolean') { + validationSetting = utf8ValidatedKeys; + } + else { + globalUTFValidation = false; + var utf8ValidationValues = Object.keys(utf8ValidatedKeys).map(function (key) { + return utf8ValidatedKeys[key]; + }); + if (utf8ValidationValues.length === 0) { + throw new BSONError('UTF-8 validation setting cannot be empty'); + } + if (typeof utf8ValidationValues[0] !== 'boolean') { + throw new BSONError('Invalid UTF-8 validation option, must specify boolean values'); + } + validationSetting = utf8ValidationValues[0]; + // Ensures boolean uniformity in utf-8 validation (all true or all false) + if (!utf8ValidationValues.every(function (item) { return item === validationSetting; })) { + throw new BSONError('Invalid UTF-8 validation option - keys must be all true or all false'); + } + } + // Add keys to set that will either be validated or not based on validationSetting + if (!globalUTFValidation) { + for (var _i = 0, _a = Object.keys(utf8ValidatedKeys); _i < _a.length; _i++) { + var key = _a[_i]; + utf8KeysSet.add(key); + } + } + // Set the start index + var startIndex = index; + // Validate that we have at least 4 bytes of buffer + if (buffer.length < 5) + throw new BSONError('corrupt bson message < 5 bytes long'); + // Read the document size + var size = buffer[index++] | (buffer[index++] << 8) | (buffer[index++] << 16) | (buffer[index++] << 24); + // Ensure buffer is valid size + if (size < 5 || size > buffer.length) + throw new BSONError('corrupt bson message'); + // Create holding object + var object = isArray ? [] : {}; + // Used for arrays to skip having to perform utf8 decoding + var arrayIndex = 0; + var done = false; + var isPossibleDBRef = isArray ? false : null; + // While we have more left data left keep parsing + var dataview = new DataView(buffer.buffer, buffer.byteOffset, buffer.byteLength); + while (!done) { + // Read the type + var elementType = buffer[index++]; + // If we get a zero it's the last byte, exit + if (elementType === 0) + break; + // Get the start search index + var i = index; + // Locate the end of the c string + while (buffer[i] !== 0x00 && i < buffer.length) { + i++; + } + // If are at the end of the buffer there is a problem with the document + if (i >= buffer.byteLength) + throw new BSONError('Bad BSON Document: illegal CString'); + // Represents the key + var name = isArray ? arrayIndex++ : buffer.toString('utf8', index, i); + // shouldValidateKey is true if the key should be validated, false otherwise + var shouldValidateKey = true; + if (globalUTFValidation || utf8KeysSet.has(name)) { + shouldValidateKey = validationSetting; + } + else { + shouldValidateKey = !validationSetting; + } + if (isPossibleDBRef !== false && name[0] === '$') { + isPossibleDBRef = allowedDBRefKeys.test(name); + } + var value = void 0; + index = i + 1; + if (elementType === BSON_DATA_STRING) { + var stringSize = buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + if (stringSize <= 0 || + stringSize > buffer.length - index || + buffer[index + stringSize - 1] !== 0) { + throw new BSONError('bad string length in bson'); + } + value = getValidatedString(buffer, index, index + stringSize - 1, shouldValidateKey); + index = index + stringSize; + } + else if (elementType === BSON_DATA_OID) { + var oid = buffer_1.alloc(12); + buffer.copy(oid, 0, index, index + 12); + value = new ObjectId(oid); + index = index + 12; + } + else if (elementType === BSON_DATA_INT && promoteValues === false) { + value = new Int32(buffer[index++] | (buffer[index++] << 8) | (buffer[index++] << 16) | (buffer[index++] << 24)); + } + else if (elementType === BSON_DATA_INT) { + value = + buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + } + else if (elementType === BSON_DATA_NUMBER && promoteValues === false) { + value = new Double(dataview.getFloat64(index, true)); + index = index + 8; + } + else if (elementType === BSON_DATA_NUMBER) { + value = dataview.getFloat64(index, true); + index = index + 8; + } + else if (elementType === BSON_DATA_DATE) { + var lowBits = buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + var highBits = buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + value = new Date(new Long(lowBits, highBits).toNumber()); + } + else if (elementType === BSON_DATA_BOOLEAN) { + if (buffer[index] !== 0 && buffer[index] !== 1) + throw new BSONError('illegal boolean type value'); + value = buffer[index++] === 1; + } + else if (elementType === BSON_DATA_OBJECT) { + var _index = index; + var objectSize = buffer[index] | + (buffer[index + 1] << 8) | + (buffer[index + 2] << 16) | + (buffer[index + 3] << 24); + if (objectSize <= 0 || objectSize > buffer.length - index) + throw new BSONError('bad embedded document length in bson'); + // We have a raw value + if (raw) { + value = buffer.slice(index, index + objectSize); + } + else { + var objectOptions = options; + if (!globalUTFValidation) { + objectOptions = _assign(_assign({}, options), { validation: { utf8: shouldValidateKey } }); + } + value = deserializeObject(buffer, _index, objectOptions, false); + } + index = index + objectSize; + } + else if (elementType === BSON_DATA_ARRAY) { + var _index = index; + var objectSize = buffer[index] | + (buffer[index + 1] << 8) | + (buffer[index + 2] << 16) | + (buffer[index + 3] << 24); + var arrayOptions = options; + // Stop index + var stopIndex = index + objectSize; + // All elements of array to be returned as raw bson + if (fieldsAsRaw && fieldsAsRaw[name]) { + arrayOptions = {}; + for (var n in options) { + arrayOptions[n] = options[n]; + } + arrayOptions['raw'] = true; + } + if (!globalUTFValidation) { + arrayOptions = _assign(_assign({}, arrayOptions), { validation: { utf8: shouldValidateKey } }); + } + value = deserializeObject(buffer, _index, arrayOptions, true); + index = index + objectSize; + if (buffer[index - 1] !== 0) + throw new BSONError('invalid array terminator byte'); + if (index !== stopIndex) + throw new BSONError('corrupted array bson'); + } + else if (elementType === BSON_DATA_UNDEFINED) { + value = undefined; + } + else if (elementType === BSON_DATA_NULL) { + value = null; + } + else if (elementType === BSON_DATA_LONG) { + // Unpack the low and high bits + var lowBits = buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + var highBits = buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + var long = new Long(lowBits, highBits); + // Promote the long if possible + if (promoteLongs && promoteValues === true) { + value = + long.lessThanOrEqual(JS_INT_MAX_LONG) && long.greaterThanOrEqual(JS_INT_MIN_LONG) + ? long.toNumber() + : long; + } + else { + value = long; + } + } + else if (elementType === BSON_DATA_DECIMAL128) { + // Buffer to contain the decimal bytes + var bytes = buffer_1.alloc(16); + // Copy the next 16 bytes into the bytes buffer + buffer.copy(bytes, 0, index, index + 16); + // Update index + index = index + 16; + // Assign the new Decimal128 value + var decimal128 = new Decimal128(bytes); + // If we have an alternative mapper use that + if ('toObject' in decimal128 && typeof decimal128.toObject === 'function') { + value = decimal128.toObject(); + } + else { + value = decimal128; + } + } + else if (elementType === BSON_DATA_BINARY) { + var binarySize = buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + var totalBinarySize = binarySize; + var subType = buffer[index++]; + // Did we have a negative binary size, throw + if (binarySize < 0) + throw new BSONError('Negative binary type element size found'); + // Is the length longer than the document + if (binarySize > buffer.byteLength) + throw new BSONError('Binary type size larger than document size'); + // Decode as raw Buffer object if options specifies it + if (buffer['slice'] != null) { + // If we have subtype 2 skip the 4 bytes for the size + if (subType === Binary.SUBTYPE_BYTE_ARRAY) { + binarySize = + buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + if (binarySize < 0) + throw new BSONError('Negative binary type element size found for subtype 0x02'); + if (binarySize > totalBinarySize - 4) + throw new BSONError('Binary type with subtype 0x02 contains too long binary size'); + if (binarySize < totalBinarySize - 4) + throw new BSONError('Binary type with subtype 0x02 contains too short binary size'); + } + if (promoteBuffers && promoteValues) { + value = buffer.slice(index, index + binarySize); + } + else { + value = new Binary(buffer.slice(index, index + binarySize), subType); + if (subType === BSON_BINARY_SUBTYPE_UUID_NEW) { + value = value.toUUID(); + } + } + } + else { + var _buffer = buffer_1.alloc(binarySize); + // If we have subtype 2 skip the 4 bytes for the size + if (subType === Binary.SUBTYPE_BYTE_ARRAY) { + binarySize = + buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + if (binarySize < 0) + throw new BSONError('Negative binary type element size found for subtype 0x02'); + if (binarySize > totalBinarySize - 4) + throw new BSONError('Binary type with subtype 0x02 contains too long binary size'); + if (binarySize < totalBinarySize - 4) + throw new BSONError('Binary type with subtype 0x02 contains too short binary size'); + } + // Copy the data + for (i = 0; i < binarySize; i++) { + _buffer[i] = buffer[index + i]; + } + if (promoteBuffers && promoteValues) { + value = _buffer; + } + else if (subType === BSON_BINARY_SUBTYPE_UUID_NEW) { + value = new Binary(buffer.slice(index, index + binarySize), subType).toUUID(); + } + else { + value = new Binary(buffer.slice(index, index + binarySize), subType); + } + } + // Update the index + index = index + binarySize; + } + else if (elementType === BSON_DATA_REGEXP && bsonRegExp === false) { + // Get the start search index + i = index; + // Locate the end of the c string + while (buffer[i] !== 0x00 && i < buffer.length) { + i++; + } + // If are at the end of the buffer there is a problem with the document + if (i >= buffer.length) + throw new BSONError('Bad BSON Document: illegal CString'); + // Return the C string + var source = buffer.toString('utf8', index, i); + // Create the regexp + index = i + 1; + // Get the start search index + i = index; + // Locate the end of the c string + while (buffer[i] !== 0x00 && i < buffer.length) { + i++; + } + // If are at the end of the buffer there is a problem with the document + if (i >= buffer.length) + throw new BSONError('Bad BSON Document: illegal CString'); + // Return the C string + var regExpOptions = buffer.toString('utf8', index, i); + index = i + 1; + // For each option add the corresponding one for javascript + var optionsArray = new Array(regExpOptions.length); + // Parse options + for (i = 0; i < regExpOptions.length; i++) { + switch (regExpOptions[i]) { + case 'm': + optionsArray[i] = 'm'; + break; + case 's': + optionsArray[i] = 'g'; + break; + case 'i': + optionsArray[i] = 'i'; + break; + } + } + value = new RegExp(source, optionsArray.join('')); + } + else if (elementType === BSON_DATA_REGEXP && bsonRegExp === true) { + // Get the start search index + i = index; + // Locate the end of the c string + while (buffer[i] !== 0x00 && i < buffer.length) { + i++; + } + // If are at the end of the buffer there is a problem with the document + if (i >= buffer.length) + throw new BSONError('Bad BSON Document: illegal CString'); + // Return the C string + var source = buffer.toString('utf8', index, i); + index = i + 1; + // Get the start search index + i = index; + // Locate the end of the c string + while (buffer[i] !== 0x00 && i < buffer.length) { + i++; + } + // If are at the end of the buffer there is a problem with the document + if (i >= buffer.length) + throw new BSONError('Bad BSON Document: illegal CString'); + // Return the C string + var regExpOptions = buffer.toString('utf8', index, i); + index = i + 1; + // Set the object + value = new BSONRegExp(source, regExpOptions); + } + else if (elementType === BSON_DATA_SYMBOL) { + var stringSize = buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + if (stringSize <= 0 || + stringSize > buffer.length - index || + buffer[index + stringSize - 1] !== 0) { + throw new BSONError('bad string length in bson'); + } + var symbol = getValidatedString(buffer, index, index + stringSize - 1, shouldValidateKey); + value = promoteValues ? symbol : new BSONSymbol(symbol); + index = index + stringSize; + } + else if (elementType === BSON_DATA_TIMESTAMP) { + var lowBits = buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + var highBits = buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + value = new Timestamp(lowBits, highBits); + } + else if (elementType === BSON_DATA_MIN_KEY) { + value = new MinKey(); + } + else if (elementType === BSON_DATA_MAX_KEY) { + value = new MaxKey(); + } + else if (elementType === BSON_DATA_CODE) { + var stringSize = buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + if (stringSize <= 0 || + stringSize > buffer.length - index || + buffer[index + stringSize - 1] !== 0) { + throw new BSONError('bad string length in bson'); + } + var functionString = getValidatedString(buffer, index, index + stringSize - 1, shouldValidateKey); + // If we are evaluating the functions + if (evalFunctions) { + // If we have cache enabled let's look for the md5 of the function in the cache + if (cacheFunctions) { + // Got to do this to avoid V8 deoptimizing the call due to finding eval + value = isolateEval(functionString, functionCache, object); + } + else { + value = isolateEval(functionString); + } + } + else { + value = new Code(functionString); + } + // Update parse index position + index = index + stringSize; + } + else if (elementType === BSON_DATA_CODE_W_SCOPE) { + var totalSize = buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + // Element cannot be shorter than totalSize + stringSize + documentSize + terminator + if (totalSize < 4 + 4 + 4 + 1) { + throw new BSONError('code_w_scope total size shorter minimum expected length'); + } + // Get the code string size + var stringSize = buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + // Check if we have a valid string + if (stringSize <= 0 || + stringSize > buffer.length - index || + buffer[index + stringSize - 1] !== 0) { + throw new BSONError('bad string length in bson'); + } + // Javascript function + var functionString = getValidatedString(buffer, index, index + stringSize - 1, shouldValidateKey); + // Update parse index position + index = index + stringSize; + // Parse the element + var _index = index; + // Decode the size of the object document + var objectSize = buffer[index] | + (buffer[index + 1] << 8) | + (buffer[index + 2] << 16) | + (buffer[index + 3] << 24); + // Decode the scope object + var scopeObject = deserializeObject(buffer, _index, options, false); + // Adjust the index + index = index + objectSize; + // Check if field length is too short + if (totalSize < 4 + 4 + objectSize + stringSize) { + throw new BSONError('code_w_scope total size is too short, truncating scope'); + } + // Check if totalSize field is too long + if (totalSize > 4 + 4 + objectSize + stringSize) { + throw new BSONError('code_w_scope total size is too long, clips outer document'); + } + // If we are evaluating the functions + if (evalFunctions) { + // If we have cache enabled let's look for the md5 of the function in the cache + if (cacheFunctions) { + // Got to do this to avoid V8 deoptimizing the call due to finding eval + value = isolateEval(functionString, functionCache, object); + } + else { + value = isolateEval(functionString); + } + value.scope = scopeObject; + } + else { + value = new Code(functionString, scopeObject); + } + } + else if (elementType === BSON_DATA_DBPOINTER) { + // Get the code string size + var stringSize = buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + // Check if we have a valid string + if (stringSize <= 0 || + stringSize > buffer.length - index || + buffer[index + stringSize - 1] !== 0) + throw new BSONError('bad string length in bson'); + // Namespace + if (validation != null && validation.utf8) { + if (!validateUtf8(buffer, index, index + stringSize - 1)) { + throw new BSONError('Invalid UTF-8 string in BSON document'); + } + } + var namespace = buffer.toString('utf8', index, index + stringSize - 1); + // Update parse index position + index = index + stringSize; + // Read the oid + var oidBuffer = buffer_1.alloc(12); + buffer.copy(oidBuffer, 0, index, index + 12); + var oid = new ObjectId(oidBuffer); + // Update the index + index = index + 12; + // Upgrade to DBRef type + value = new DBRef(namespace, oid); + } + else { + throw new BSONError("Detected unknown BSON type ".concat(elementType.toString(16), " for fieldname \"").concat(name, "\"")); + } + if (name === '__proto__') { + Object.defineProperty(object, name, { + value: value, + writable: true, + enumerable: true, + configurable: true + }); + } + else { + object[name] = value; + } + } + // Check if the deserialization was against a valid array/object + if (size !== index - startIndex) { + if (isArray) + throw new BSONError('corrupt array bson'); + throw new BSONError('corrupt object bson'); + } + // if we did not find "$ref", "$id", "$db", or found an extraneous $key, don't make a DBRef + if (!isPossibleDBRef) + return object; + if (isDBRefLike(object)) { + var copy = Object.assign({}, object); + delete copy.$ref; + delete copy.$id; + delete copy.$db; + return new DBRef(object.$ref, object.$id, object.$db, copy); + } + return object; + } + /** + * Ensure eval is isolated, store the result in functionCache. + * + * @internal + */ + function isolateEval(functionString, functionCache, object) { + // eslint-disable-next-line @typescript-eslint/no-implied-eval + if (!functionCache) + return new Function(functionString); + // Check for cache hit, eval if missing and return cached function + if (functionCache[functionString] == null) { + // eslint-disable-next-line @typescript-eslint/no-implied-eval + functionCache[functionString] = new Function(functionString); + } + // Set the object + return functionCache[functionString].bind(object); + } + function getValidatedString(buffer, start, end, shouldValidateUtf8) { + var value = buffer.toString('utf8', start, end); + // if utf8 validation is on, do the check + if (shouldValidateUtf8) { + for (var i = 0; i < value.length; i++) { + if (value.charCodeAt(i) === 0xfffd) { + if (!validateUtf8(buffer, start, end)) { + throw new BSONError('Invalid UTF-8 string in BSON document'); + } + break; + } + } + } + return value; + } + + var regexp = /\x00/; // eslint-disable-line no-control-regex + var ignoreKeys = new Set(['$db', '$ref', '$id', '$clusterTime']); + /* + * isArray indicates if we are writing to a BSON array (type 0x04) + * which forces the "key" which really an array index as a string to be written as ascii + * This will catch any errors in index as a string generation + */ + function serializeString(buffer, key, value, index, isArray) { + // Encode String type + buffer[index++] = BSON_DATA_STRING; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes + 1; + buffer[index - 1] = 0; + // Write the string + var size = buffer.write(value, index + 4, undefined, 'utf8'); + // Write the size of the string to buffer + buffer[index + 3] = ((size + 1) >> 24) & 0xff; + buffer[index + 2] = ((size + 1) >> 16) & 0xff; + buffer[index + 1] = ((size + 1) >> 8) & 0xff; + buffer[index] = (size + 1) & 0xff; + // Update index + index = index + 4 + size; + // Write zero + buffer[index++] = 0; + return index; + } + var SPACE_FOR_FLOAT64 = new Uint8Array(8); + var DV_FOR_FLOAT64 = new DataView(SPACE_FOR_FLOAT64.buffer, SPACE_FOR_FLOAT64.byteOffset, SPACE_FOR_FLOAT64.byteLength); + function serializeNumber(buffer, key, value, index, isArray) { + // We have an integer value + // TODO(NODE-2529): Add support for big int + if (Number.isInteger(value) && + value >= BSON_INT32_MIN$1 && + value <= BSON_INT32_MAX$1) { + // If the value fits in 32 bits encode as int32 + // Set int type 32 bits or less + buffer[index++] = BSON_DATA_INT; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Write the int value + buffer[index++] = value & 0xff; + buffer[index++] = (value >> 8) & 0xff; + buffer[index++] = (value >> 16) & 0xff; + buffer[index++] = (value >> 24) & 0xff; + } + else { + // Encode as double + buffer[index++] = BSON_DATA_NUMBER; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Write float + DV_FOR_FLOAT64.setFloat64(0, value, true); + buffer.set(SPACE_FOR_FLOAT64, index); + // Adjust index + index = index + 8; + } + return index; + } + function serializeNull(buffer, key, _, index, isArray) { + // Set long type + buffer[index++] = BSON_DATA_NULL; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + return index; + } + function serializeBoolean(buffer, key, value, index, isArray) { + // Write the type + buffer[index++] = BSON_DATA_BOOLEAN; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Encode the boolean value + buffer[index++] = value ? 1 : 0; + return index; + } + function serializeDate(buffer, key, value, index, isArray) { + // Write the type + buffer[index++] = BSON_DATA_DATE; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Write the date + var dateInMilis = Long.fromNumber(value.getTime()); + var lowBits = dateInMilis.getLowBits(); + var highBits = dateInMilis.getHighBits(); + // Encode low bits + buffer[index++] = lowBits & 0xff; + buffer[index++] = (lowBits >> 8) & 0xff; + buffer[index++] = (lowBits >> 16) & 0xff; + buffer[index++] = (lowBits >> 24) & 0xff; + // Encode high bits + buffer[index++] = highBits & 0xff; + buffer[index++] = (highBits >> 8) & 0xff; + buffer[index++] = (highBits >> 16) & 0xff; + buffer[index++] = (highBits >> 24) & 0xff; + return index; + } + function serializeRegExp(buffer, key, value, index, isArray) { + // Write the type + buffer[index++] = BSON_DATA_REGEXP; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + if (value.source && value.source.match(regexp) != null) { + throw Error('value ' + value.source + ' must not contain null bytes'); + } + // Adjust the index + index = index + buffer.write(value.source, index, undefined, 'utf8'); + // Write zero + buffer[index++] = 0x00; + // Write the parameters + if (value.ignoreCase) + buffer[index++] = 0x69; // i + if (value.global) + buffer[index++] = 0x73; // s + if (value.multiline) + buffer[index++] = 0x6d; // m + // Add ending zero + buffer[index++] = 0x00; + return index; + } + function serializeBSONRegExp(buffer, key, value, index, isArray) { + // Write the type + buffer[index++] = BSON_DATA_REGEXP; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Check the pattern for 0 bytes + if (value.pattern.match(regexp) != null) { + // The BSON spec doesn't allow keys with null bytes because keys are + // null-terminated. + throw Error('pattern ' + value.pattern + ' must not contain null bytes'); + } + // Adjust the index + index = index + buffer.write(value.pattern, index, undefined, 'utf8'); + // Write zero + buffer[index++] = 0x00; + // Write the options + index = index + buffer.write(value.options.split('').sort().join(''), index, undefined, 'utf8'); + // Add ending zero + buffer[index++] = 0x00; + return index; + } + function serializeMinMax(buffer, key, value, index, isArray) { + // Write the type of either min or max key + if (value === null) { + buffer[index++] = BSON_DATA_NULL; + } + else if (value._bsontype === 'MinKey') { + buffer[index++] = BSON_DATA_MIN_KEY; + } + else { + buffer[index++] = BSON_DATA_MAX_KEY; + } + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + return index; + } + function serializeObjectId(buffer, key, value, index, isArray) { + // Write the type + buffer[index++] = BSON_DATA_OID; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Write the objectId into the shared buffer + if (typeof value.id === 'string') { + buffer.write(value.id, index, undefined, 'binary'); + } + else if (isUint8Array(value.id)) { + // Use the standard JS methods here because buffer.copy() is buggy with the + // browser polyfill + buffer.set(value.id.subarray(0, 12), index); + } + else { + throw new BSONTypeError('object [' + JSON.stringify(value) + '] is not a valid ObjectId'); + } + // Adjust index + return index + 12; + } + function serializeBuffer(buffer, key, value, index, isArray) { + // Write the type + buffer[index++] = BSON_DATA_BINARY; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Get size of the buffer (current write point) + var size = value.length; + // Write the size of the string to buffer + buffer[index++] = size & 0xff; + buffer[index++] = (size >> 8) & 0xff; + buffer[index++] = (size >> 16) & 0xff; + buffer[index++] = (size >> 24) & 0xff; + // Write the default subtype + buffer[index++] = BSON_BINARY_SUBTYPE_DEFAULT; + // Copy the content form the binary field to the buffer + buffer.set(ensureBuffer(value), index); + // Adjust the index + index = index + size; + return index; + } + function serializeObject(buffer, key, value, index, checkKeys, depth, serializeFunctions, ignoreUndefined, isArray, path) { + if (checkKeys === void 0) { checkKeys = false; } + if (depth === void 0) { depth = 0; } + if (serializeFunctions === void 0) { serializeFunctions = false; } + if (ignoreUndefined === void 0) { ignoreUndefined = true; } + if (isArray === void 0) { isArray = false; } + if (path === void 0) { path = []; } + for (var i = 0; i < path.length; i++) { + if (path[i] === value) + throw new BSONError('cyclic dependency detected'); + } + // Push value to stack + path.push(value); + // Write the type + buffer[index++] = Array.isArray(value) ? BSON_DATA_ARRAY : BSON_DATA_OBJECT; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + var endIndex = serializeInto(buffer, value, checkKeys, index, depth + 1, serializeFunctions, ignoreUndefined, path); + // Pop stack + path.pop(); + return endIndex; + } + function serializeDecimal128(buffer, key, value, index, isArray) { + buffer[index++] = BSON_DATA_DECIMAL128; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Write the data from the value + // Prefer the standard JS methods because their typechecking is not buggy, + // unlike the `buffer` polyfill's. + buffer.set(value.bytes.subarray(0, 16), index); + return index + 16; + } + function serializeLong(buffer, key, value, index, isArray) { + // Write the type + buffer[index++] = + value._bsontype === 'Long' ? BSON_DATA_LONG : BSON_DATA_TIMESTAMP; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Write the date + var lowBits = value.getLowBits(); + var highBits = value.getHighBits(); + // Encode low bits + buffer[index++] = lowBits & 0xff; + buffer[index++] = (lowBits >> 8) & 0xff; + buffer[index++] = (lowBits >> 16) & 0xff; + buffer[index++] = (lowBits >> 24) & 0xff; + // Encode high bits + buffer[index++] = highBits & 0xff; + buffer[index++] = (highBits >> 8) & 0xff; + buffer[index++] = (highBits >> 16) & 0xff; + buffer[index++] = (highBits >> 24) & 0xff; + return index; + } + function serializeInt32(buffer, key, value, index, isArray) { + value = value.valueOf(); + // Set int type 32 bits or less + buffer[index++] = BSON_DATA_INT; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Write the int value + buffer[index++] = value & 0xff; + buffer[index++] = (value >> 8) & 0xff; + buffer[index++] = (value >> 16) & 0xff; + buffer[index++] = (value >> 24) & 0xff; + return index; + } + function serializeDouble(buffer, key, value, index, isArray) { + // Encode as double + buffer[index++] = BSON_DATA_NUMBER; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Write float + DV_FOR_FLOAT64.setFloat64(0, value.value, true); + buffer.set(SPACE_FOR_FLOAT64, index); + // Adjust index + index = index + 8; + return index; + } + function serializeFunction(buffer, key, value, index, _checkKeys, _depth, isArray) { + buffer[index++] = BSON_DATA_CODE; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Function string + var functionString = normalizedFunctionString(value); + // Write the string + var size = buffer.write(functionString, index + 4, undefined, 'utf8') + 1; + // Write the size of the string to buffer + buffer[index] = size & 0xff; + buffer[index + 1] = (size >> 8) & 0xff; + buffer[index + 2] = (size >> 16) & 0xff; + buffer[index + 3] = (size >> 24) & 0xff; + // Update index + index = index + 4 + size - 1; + // Write zero + buffer[index++] = 0; + return index; + } + function serializeCode(buffer, key, value, index, checkKeys, depth, serializeFunctions, ignoreUndefined, isArray) { + if (checkKeys === void 0) { checkKeys = false; } + if (depth === void 0) { depth = 0; } + if (serializeFunctions === void 0) { serializeFunctions = false; } + if (ignoreUndefined === void 0) { ignoreUndefined = true; } + if (isArray === void 0) { isArray = false; } + if (value.scope && typeof value.scope === 'object') { + // Write the type + buffer[index++] = BSON_DATA_CODE_W_SCOPE; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Starting index + var startIndex = index; + // Serialize the function + // Get the function string + var functionString = typeof value.code === 'string' ? value.code : value.code.toString(); + // Index adjustment + index = index + 4; + // Write string into buffer + var codeSize = buffer.write(functionString, index + 4, undefined, 'utf8') + 1; + // Write the size of the string to buffer + buffer[index] = codeSize & 0xff; + buffer[index + 1] = (codeSize >> 8) & 0xff; + buffer[index + 2] = (codeSize >> 16) & 0xff; + buffer[index + 3] = (codeSize >> 24) & 0xff; + // Write end 0 + buffer[index + 4 + codeSize - 1] = 0; + // Write the + index = index + codeSize + 4; + // + // Serialize the scope value + var endIndex = serializeInto(buffer, value.scope, checkKeys, index, depth + 1, serializeFunctions, ignoreUndefined); + index = endIndex - 1; + // Writ the total + var totalSize = endIndex - startIndex; + // Write the total size of the object + buffer[startIndex++] = totalSize & 0xff; + buffer[startIndex++] = (totalSize >> 8) & 0xff; + buffer[startIndex++] = (totalSize >> 16) & 0xff; + buffer[startIndex++] = (totalSize >> 24) & 0xff; + // Write trailing zero + buffer[index++] = 0; + } + else { + buffer[index++] = BSON_DATA_CODE; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Function string + var functionString = value.code.toString(); + // Write the string + var size = buffer.write(functionString, index + 4, undefined, 'utf8') + 1; + // Write the size of the string to buffer + buffer[index] = size & 0xff; + buffer[index + 1] = (size >> 8) & 0xff; + buffer[index + 2] = (size >> 16) & 0xff; + buffer[index + 3] = (size >> 24) & 0xff; + // Update index + index = index + 4 + size - 1; + // Write zero + buffer[index++] = 0; + } + return index; + } + function serializeBinary(buffer, key, value, index, isArray) { + // Write the type + buffer[index++] = BSON_DATA_BINARY; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Extract the buffer + var data = value.value(true); + // Calculate size + var size = value.position; + // Add the deprecated 02 type 4 bytes of size to total + if (value.sub_type === Binary.SUBTYPE_BYTE_ARRAY) + size = size + 4; + // Write the size of the string to buffer + buffer[index++] = size & 0xff; + buffer[index++] = (size >> 8) & 0xff; + buffer[index++] = (size >> 16) & 0xff; + buffer[index++] = (size >> 24) & 0xff; + // Write the subtype to the buffer + buffer[index++] = value.sub_type; + // If we have binary type 2 the 4 first bytes are the size + if (value.sub_type === Binary.SUBTYPE_BYTE_ARRAY) { + size = size - 4; + buffer[index++] = size & 0xff; + buffer[index++] = (size >> 8) & 0xff; + buffer[index++] = (size >> 16) & 0xff; + buffer[index++] = (size >> 24) & 0xff; + } + // Write the data to the object + buffer.set(data, index); + // Adjust the index + index = index + value.position; + return index; + } + function serializeSymbol(buffer, key, value, index, isArray) { + // Write the type + buffer[index++] = BSON_DATA_SYMBOL; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Write the string + var size = buffer.write(value.value, index + 4, undefined, 'utf8') + 1; + // Write the size of the string to buffer + buffer[index] = size & 0xff; + buffer[index + 1] = (size >> 8) & 0xff; + buffer[index + 2] = (size >> 16) & 0xff; + buffer[index + 3] = (size >> 24) & 0xff; + // Update index + index = index + 4 + size - 1; + // Write zero + buffer[index++] = 0x00; + return index; + } + function serializeDBRef(buffer, key, value, index, depth, serializeFunctions, isArray) { + // Write the type + buffer[index++] = BSON_DATA_OBJECT; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + var startIndex = index; + var output = { + $ref: value.collection || value.namespace, + $id: value.oid + }; + if (value.db != null) { + output.$db = value.db; + } + output = Object.assign(output, value.fields); + var endIndex = serializeInto(buffer, output, false, index, depth + 1, serializeFunctions); + // Calculate object size + var size = endIndex - startIndex; + // Write the size + buffer[startIndex++] = size & 0xff; + buffer[startIndex++] = (size >> 8) & 0xff; + buffer[startIndex++] = (size >> 16) & 0xff; + buffer[startIndex++] = (size >> 24) & 0xff; + // Set index + return endIndex; + } + function serializeInto(buffer, object, checkKeys, startingIndex, depth, serializeFunctions, ignoreUndefined, path) { + if (checkKeys === void 0) { checkKeys = false; } + if (startingIndex === void 0) { startingIndex = 0; } + if (depth === void 0) { depth = 0; } + if (serializeFunctions === void 0) { serializeFunctions = false; } + if (ignoreUndefined === void 0) { ignoreUndefined = true; } + if (path === void 0) { path = []; } + startingIndex = startingIndex || 0; + path = path || []; + // Push the object to the path + path.push(object); + // Start place to serialize into + var index = startingIndex + 4; + // Special case isArray + if (Array.isArray(object)) { + // Get object keys + for (var i = 0; i < object.length; i++) { + var key = "".concat(i); + var value = object[i]; + // Is there an override value + if (typeof (value === null || value === void 0 ? void 0 : value.toBSON) === 'function') { + value = value.toBSON(); + } + if (typeof value === 'string') { + index = serializeString(buffer, key, value, index, true); + } + else if (typeof value === 'number') { + index = serializeNumber(buffer, key, value, index, true); + } + else if (typeof value === 'bigint') { + throw new BSONTypeError('Unsupported type BigInt, please use Decimal128'); + } + else if (typeof value === 'boolean') { + index = serializeBoolean(buffer, key, value, index, true); + } + else if (value instanceof Date || isDate(value)) { + index = serializeDate(buffer, key, value, index, true); + } + else if (value === undefined) { + index = serializeNull(buffer, key, value, index, true); + } + else if (value === null) { + index = serializeNull(buffer, key, value, index, true); + } + else if (value['_bsontype'] === 'ObjectId' || value['_bsontype'] === 'ObjectID') { + index = serializeObjectId(buffer, key, value, index, true); + } + else if (isUint8Array(value)) { + index = serializeBuffer(buffer, key, value, index, true); + } + else if (value instanceof RegExp || isRegExp(value)) { + index = serializeRegExp(buffer, key, value, index, true); + } + else if (typeof value === 'object' && value['_bsontype'] == null) { + index = serializeObject(buffer, key, value, index, checkKeys, depth, serializeFunctions, ignoreUndefined, true, path); + } + else if (typeof value === 'object' && + isBSONType(value) && + value._bsontype === 'Decimal128') { + index = serializeDecimal128(buffer, key, value, index, true); + } + else if (value['_bsontype'] === 'Long' || value['_bsontype'] === 'Timestamp') { + index = serializeLong(buffer, key, value, index, true); + } + else if (value['_bsontype'] === 'Double') { + index = serializeDouble(buffer, key, value, index, true); + } + else if (typeof value === 'function' && serializeFunctions) { + index = serializeFunction(buffer, key, value, index, checkKeys, depth, true); + } + else if (value['_bsontype'] === 'Code') { + index = serializeCode(buffer, key, value, index, checkKeys, depth, serializeFunctions, ignoreUndefined, true); + } + else if (value['_bsontype'] === 'Binary') { + index = serializeBinary(buffer, key, value, index, true); + } + else if (value['_bsontype'] === 'Symbol') { + index = serializeSymbol(buffer, key, value, index, true); + } + else if (value['_bsontype'] === 'DBRef') { + index = serializeDBRef(buffer, key, value, index, depth, serializeFunctions, true); + } + else if (value['_bsontype'] === 'BSONRegExp') { + index = serializeBSONRegExp(buffer, key, value, index, true); + } + else if (value['_bsontype'] === 'Int32') { + index = serializeInt32(buffer, key, value, index, true); + } + else if (value['_bsontype'] === 'MinKey' || value['_bsontype'] === 'MaxKey') { + index = serializeMinMax(buffer, key, value, index, true); + } + else if (typeof value['_bsontype'] !== 'undefined') { + throw new BSONTypeError("Unrecognized or invalid _bsontype: ".concat(String(value['_bsontype']))); + } + } + } + else if (object instanceof exports.Map || isMap(object)) { + var iterator = object.entries(); + var done = false; + while (!done) { + // Unpack the next entry + var entry = iterator.next(); + done = !!entry.done; + // Are we done, then skip and terminate + if (done) + continue; + // Get the entry values + var key = entry.value[0]; + var value = entry.value[1]; + // Check the type of the value + var type = typeof value; + // Check the key and throw error if it's illegal + if (typeof key === 'string' && !ignoreKeys.has(key)) { + if (key.match(regexp) != null) { + // The BSON spec doesn't allow keys with null bytes because keys are + // null-terminated. + throw Error('key ' + key + ' must not contain null bytes'); + } + if (checkKeys) { + if ('$' === key[0]) { + throw Error('key ' + key + " must not start with '$'"); + } + else if (~key.indexOf('.')) { + throw Error('key ' + key + " must not contain '.'"); + } + } + } + if (type === 'string') { + index = serializeString(buffer, key, value, index); + } + else if (type === 'number') { + index = serializeNumber(buffer, key, value, index); + } + else if (type === 'bigint' || isBigInt64Array(value) || isBigUInt64Array(value)) { + throw new BSONTypeError('Unsupported type BigInt, please use Decimal128'); + } + else if (type === 'boolean') { + index = serializeBoolean(buffer, key, value, index); + } + else if (value instanceof Date || isDate(value)) { + index = serializeDate(buffer, key, value, index); + } + else if (value === null || (value === undefined && ignoreUndefined === false)) { + index = serializeNull(buffer, key, value, index); + } + else if (value['_bsontype'] === 'ObjectId' || value['_bsontype'] === 'ObjectID') { + index = serializeObjectId(buffer, key, value, index); + } + else if (isUint8Array(value)) { + index = serializeBuffer(buffer, key, value, index); + } + else if (value instanceof RegExp || isRegExp(value)) { + index = serializeRegExp(buffer, key, value, index); + } + else if (type === 'object' && value['_bsontype'] == null) { + index = serializeObject(buffer, key, value, index, checkKeys, depth, serializeFunctions, ignoreUndefined, false, path); + } + else if (type === 'object' && value['_bsontype'] === 'Decimal128') { + index = serializeDecimal128(buffer, key, value, index); + } + else if (value['_bsontype'] === 'Long' || value['_bsontype'] === 'Timestamp') { + index = serializeLong(buffer, key, value, index); + } + else if (value['_bsontype'] === 'Double') { + index = serializeDouble(buffer, key, value, index); + } + else if (value['_bsontype'] === 'Code') { + index = serializeCode(buffer, key, value, index, checkKeys, depth, serializeFunctions, ignoreUndefined); + } + else if (typeof value === 'function' && serializeFunctions) { + index = serializeFunction(buffer, key, value, index, checkKeys, depth, serializeFunctions); + } + else if (value['_bsontype'] === 'Binary') { + index = serializeBinary(buffer, key, value, index); + } + else if (value['_bsontype'] === 'Symbol') { + index = serializeSymbol(buffer, key, value, index); + } + else if (value['_bsontype'] === 'DBRef') { + index = serializeDBRef(buffer, key, value, index, depth, serializeFunctions); + } + else if (value['_bsontype'] === 'BSONRegExp') { + index = serializeBSONRegExp(buffer, key, value, index); + } + else if (value['_bsontype'] === 'Int32') { + index = serializeInt32(buffer, key, value, index); + } + else if (value['_bsontype'] === 'MinKey' || value['_bsontype'] === 'MaxKey') { + index = serializeMinMax(buffer, key, value, index); + } + else if (typeof value['_bsontype'] !== 'undefined') { + throw new BSONTypeError("Unrecognized or invalid _bsontype: ".concat(String(value['_bsontype']))); + } + } + } + else { + if (typeof (object === null || object === void 0 ? void 0 : object.toBSON) === 'function') { + // Provided a custom serialization method + object = object.toBSON(); + if (object != null && typeof object !== 'object') { + throw new BSONTypeError('toBSON function did not return an object'); + } + } + // Iterate over all the keys + for (var key in object) { + var value = object[key]; + // Is there an override value + if (typeof (value === null || value === void 0 ? void 0 : value.toBSON) === 'function') { + value = value.toBSON(); + } + // Check the type of the value + var type = typeof value; + // Check the key and throw error if it's illegal + if (typeof key === 'string' && !ignoreKeys.has(key)) { + if (key.match(regexp) != null) { + // The BSON spec doesn't allow keys with null bytes because keys are + // null-terminated. + throw Error('key ' + key + ' must not contain null bytes'); + } + if (checkKeys) { + if ('$' === key[0]) { + throw Error('key ' + key + " must not start with '$'"); + } + else if (~key.indexOf('.')) { + throw Error('key ' + key + " must not contain '.'"); + } + } + } + if (type === 'string') { + index = serializeString(buffer, key, value, index); + } + else if (type === 'number') { + index = serializeNumber(buffer, key, value, index); + } + else if (type === 'bigint') { + throw new BSONTypeError('Unsupported type BigInt, please use Decimal128'); + } + else if (type === 'boolean') { + index = serializeBoolean(buffer, key, value, index); + } + else if (value instanceof Date || isDate(value)) { + index = serializeDate(buffer, key, value, index); + } + else if (value === undefined) { + if (ignoreUndefined === false) + index = serializeNull(buffer, key, value, index); + } + else if (value === null) { + index = serializeNull(buffer, key, value, index); + } + else if (value['_bsontype'] === 'ObjectId' || value['_bsontype'] === 'ObjectID') { + index = serializeObjectId(buffer, key, value, index); + } + else if (isUint8Array(value)) { + index = serializeBuffer(buffer, key, value, index); + } + else if (value instanceof RegExp || isRegExp(value)) { + index = serializeRegExp(buffer, key, value, index); + } + else if (type === 'object' && value['_bsontype'] == null) { + index = serializeObject(buffer, key, value, index, checkKeys, depth, serializeFunctions, ignoreUndefined, false, path); + } + else if (type === 'object' && value['_bsontype'] === 'Decimal128') { + index = serializeDecimal128(buffer, key, value, index); + } + else if (value['_bsontype'] === 'Long' || value['_bsontype'] === 'Timestamp') { + index = serializeLong(buffer, key, value, index); + } + else if (value['_bsontype'] === 'Double') { + index = serializeDouble(buffer, key, value, index); + } + else if (value['_bsontype'] === 'Code') { + index = serializeCode(buffer, key, value, index, checkKeys, depth, serializeFunctions, ignoreUndefined); + } + else if (typeof value === 'function' && serializeFunctions) { + index = serializeFunction(buffer, key, value, index, checkKeys, depth, serializeFunctions); + } + else if (value['_bsontype'] === 'Binary') { + index = serializeBinary(buffer, key, value, index); + } + else if (value['_bsontype'] === 'Symbol') { + index = serializeSymbol(buffer, key, value, index); + } + else if (value['_bsontype'] === 'DBRef') { + index = serializeDBRef(buffer, key, value, index, depth, serializeFunctions); + } + else if (value['_bsontype'] === 'BSONRegExp') { + index = serializeBSONRegExp(buffer, key, value, index); + } + else if (value['_bsontype'] === 'Int32') { + index = serializeInt32(buffer, key, value, index); + } + else if (value['_bsontype'] === 'MinKey' || value['_bsontype'] === 'MaxKey') { + index = serializeMinMax(buffer, key, value, index); + } + else if (typeof value['_bsontype'] !== 'undefined') { + throw new BSONTypeError("Unrecognized or invalid _bsontype: ".concat(String(value['_bsontype']))); + } + } + } + // Remove the path + path.pop(); + // Final padding byte for object + buffer[index++] = 0x00; + // Final size + var size = index - startingIndex; + // Write the size of the object + buffer[startingIndex++] = size & 0xff; + buffer[startingIndex++] = (size >> 8) & 0xff; + buffer[startingIndex++] = (size >> 16) & 0xff; + buffer[startingIndex++] = (size >> 24) & 0xff; + return index; + } + + /** @internal */ + // Default Max Size + var MAXSIZE = 1024 * 1024 * 17; + // Current Internal Temporary Serialization Buffer + var buffer = buffer_1.alloc(MAXSIZE); + /** + * Sets the size of the internal serialization buffer. + * + * @param size - The desired size for the internal serialization buffer + * @public + */ + function setInternalBufferSize(size) { + // Resize the internal serialization buffer if needed + if (buffer.length < size) { + buffer = buffer_1.alloc(size); + } + } + /** + * Serialize a Javascript object. + * + * @param object - the Javascript object to serialize. + * @returns Buffer object containing the serialized object. + * @public + */ + function serialize(object, options) { + if (options === void 0) { options = {}; } + // Unpack the options + var checkKeys = typeof options.checkKeys === 'boolean' ? options.checkKeys : false; + var serializeFunctions = typeof options.serializeFunctions === 'boolean' ? options.serializeFunctions : false; + var ignoreUndefined = typeof options.ignoreUndefined === 'boolean' ? options.ignoreUndefined : true; + var minInternalBufferSize = typeof options.minInternalBufferSize === 'number' ? options.minInternalBufferSize : MAXSIZE; + // Resize the internal serialization buffer if needed + if (buffer.length < minInternalBufferSize) { + buffer = buffer_1.alloc(minInternalBufferSize); + } + // Attempt to serialize + var serializationIndex = serializeInto(buffer, object, checkKeys, 0, 0, serializeFunctions, ignoreUndefined, []); + // Create the final buffer + var finishedBuffer = buffer_1.alloc(serializationIndex); + // Copy into the finished buffer + buffer.copy(finishedBuffer, 0, 0, finishedBuffer.length); + // Return the buffer + return finishedBuffer; + } + /** + * Serialize a Javascript object using a predefined Buffer and index into the buffer, + * useful when pre-allocating the space for serialization. + * + * @param object - the Javascript object to serialize. + * @param finalBuffer - the Buffer you pre-allocated to store the serialized BSON object. + * @returns the index pointing to the last written byte in the buffer. + * @public + */ + function serializeWithBufferAndIndex(object, finalBuffer, options) { + if (options === void 0) { options = {}; } + // Unpack the options + var checkKeys = typeof options.checkKeys === 'boolean' ? options.checkKeys : false; + var serializeFunctions = typeof options.serializeFunctions === 'boolean' ? options.serializeFunctions : false; + var ignoreUndefined = typeof options.ignoreUndefined === 'boolean' ? options.ignoreUndefined : true; + var startIndex = typeof options.index === 'number' ? options.index : 0; + // Attempt to serialize + var serializationIndex = serializeInto(buffer, object, checkKeys, 0, 0, serializeFunctions, ignoreUndefined); + buffer.copy(finalBuffer, startIndex, 0, serializationIndex); + // Return the index + return startIndex + serializationIndex - 1; + } + /** + * Deserialize data as BSON. + * + * @param buffer - the buffer containing the serialized set of BSON documents. + * @returns returns the deserialized Javascript Object. + * @public + */ + function deserialize(buffer, options) { + if (options === void 0) { options = {}; } + return deserialize$1(buffer instanceof buffer_1 ? buffer : ensureBuffer(buffer), options); + } + /** + * Calculate the bson size for a passed in Javascript object. + * + * @param object - the Javascript object to calculate the BSON byte size for + * @returns size of BSON object in bytes + * @public + */ + function calculateObjectSize(object, options) { + if (options === void 0) { options = {}; } + options = options || {}; + var serializeFunctions = typeof options.serializeFunctions === 'boolean' ? options.serializeFunctions : false; + var ignoreUndefined = typeof options.ignoreUndefined === 'boolean' ? options.ignoreUndefined : true; + return calculateObjectSize$1(object, serializeFunctions, ignoreUndefined); + } + /** + * Deserialize stream data as BSON documents. + * + * @param data - the buffer containing the serialized set of BSON documents. + * @param startIndex - the start index in the data Buffer where the deserialization is to start. + * @param numberOfDocuments - number of documents to deserialize. + * @param documents - an array where to store the deserialized documents. + * @param docStartIndex - the index in the documents array from where to start inserting documents. + * @param options - additional options used for the deserialization. + * @returns next index in the buffer after deserialization **x** numbers of documents. + * @public + */ + function deserializeStream(data, startIndex, numberOfDocuments, documents, docStartIndex, options) { + var internalOptions = Object.assign({ allowObjectSmallerThanBufferSize: true, index: 0 }, options); + var bufferData = ensureBuffer(data); + var index = startIndex; + // Loop over all documents + for (var i = 0; i < numberOfDocuments; i++) { + // Find size of the document + var size = bufferData[index] | + (bufferData[index + 1] << 8) | + (bufferData[index + 2] << 16) | + (bufferData[index + 3] << 24); + // Update options with index + internalOptions.index = index; + // Parse the document at this point + documents[docStartIndex + i] = deserialize$1(bufferData, internalOptions); + // Adjust index by the document size + index = index + size; + } + // Return object containing end index of parsing and list of documents + return index; + } + /** + * BSON default export + * @deprecated Please use named exports + * @privateRemarks + * We want to someday deprecate the default export, + * so none of the new TS types are being exported on the default + * @public + */ + var BSON = { + Binary: Binary, + Code: Code, + DBRef: DBRef, + Decimal128: Decimal128, + Double: Double, + Int32: Int32, + Long: Long, + UUID: UUID, + Map: exports.Map, + MaxKey: MaxKey, + MinKey: MinKey, + ObjectId: ObjectId, + ObjectID: ObjectId, + BSONRegExp: BSONRegExp, + BSONSymbol: BSONSymbol, + Timestamp: Timestamp, + EJSON: exports.EJSON, + setInternalBufferSize: setInternalBufferSize, + serialize: serialize, + serializeWithBufferAndIndex: serializeWithBufferAndIndex, + deserialize: deserialize, + calculateObjectSize: calculateObjectSize, + deserializeStream: deserializeStream, + BSONError: BSONError, + BSONTypeError: BSONTypeError + }; + + exports.BSONError = BSONError; + exports.BSONRegExp = BSONRegExp; + exports.BSONSymbol = BSONSymbol; + exports.BSONTypeError = BSONTypeError; + exports.BSON_BINARY_SUBTYPE_BYTE_ARRAY = BSON_BINARY_SUBTYPE_BYTE_ARRAY; + exports.BSON_BINARY_SUBTYPE_COLUMN = BSON_BINARY_SUBTYPE_COLUMN; + exports.BSON_BINARY_SUBTYPE_DEFAULT = BSON_BINARY_SUBTYPE_DEFAULT; + exports.BSON_BINARY_SUBTYPE_ENCRYPTED = BSON_BINARY_SUBTYPE_ENCRYPTED; + exports.BSON_BINARY_SUBTYPE_FUNCTION = BSON_BINARY_SUBTYPE_FUNCTION; + exports.BSON_BINARY_SUBTYPE_MD5 = BSON_BINARY_SUBTYPE_MD5; + exports.BSON_BINARY_SUBTYPE_USER_DEFINED = BSON_BINARY_SUBTYPE_USER_DEFINED; + exports.BSON_BINARY_SUBTYPE_UUID = BSON_BINARY_SUBTYPE_UUID; + exports.BSON_BINARY_SUBTYPE_UUID_NEW = BSON_BINARY_SUBTYPE_UUID_NEW; + exports.BSON_DATA_ARRAY = BSON_DATA_ARRAY; + exports.BSON_DATA_BINARY = BSON_DATA_BINARY; + exports.BSON_DATA_BOOLEAN = BSON_DATA_BOOLEAN; + exports.BSON_DATA_CODE = BSON_DATA_CODE; + exports.BSON_DATA_CODE_W_SCOPE = BSON_DATA_CODE_W_SCOPE; + exports.BSON_DATA_DATE = BSON_DATA_DATE; + exports.BSON_DATA_DBPOINTER = BSON_DATA_DBPOINTER; + exports.BSON_DATA_DECIMAL128 = BSON_DATA_DECIMAL128; + exports.BSON_DATA_INT = BSON_DATA_INT; + exports.BSON_DATA_LONG = BSON_DATA_LONG; + exports.BSON_DATA_MAX_KEY = BSON_DATA_MAX_KEY; + exports.BSON_DATA_MIN_KEY = BSON_DATA_MIN_KEY; + exports.BSON_DATA_NULL = BSON_DATA_NULL; + exports.BSON_DATA_NUMBER = BSON_DATA_NUMBER; + exports.BSON_DATA_OBJECT = BSON_DATA_OBJECT; + exports.BSON_DATA_OID = BSON_DATA_OID; + exports.BSON_DATA_REGEXP = BSON_DATA_REGEXP; + exports.BSON_DATA_STRING = BSON_DATA_STRING; + exports.BSON_DATA_SYMBOL = BSON_DATA_SYMBOL; + exports.BSON_DATA_TIMESTAMP = BSON_DATA_TIMESTAMP; + exports.BSON_DATA_UNDEFINED = BSON_DATA_UNDEFINED; + exports.BSON_INT32_MAX = BSON_INT32_MAX$1; + exports.BSON_INT32_MIN = BSON_INT32_MIN$1; + exports.BSON_INT64_MAX = BSON_INT64_MAX$1; + exports.BSON_INT64_MIN = BSON_INT64_MIN$1; + exports.Binary = Binary; + exports.Code = Code; + exports.DBRef = DBRef; + exports.Decimal128 = Decimal128; + exports.Double = Double; + exports.Int32 = Int32; + exports.Long = Long; + exports.LongWithoutOverridesClass = LongWithoutOverridesClass; + exports.MaxKey = MaxKey; + exports.MinKey = MinKey; + exports.ObjectID = ObjectId; + exports.ObjectId = ObjectId; + exports.Timestamp = Timestamp; + exports.UUID = UUID; + exports.calculateObjectSize = calculateObjectSize; + exports.default = BSON; + exports.deserialize = deserialize; + exports.deserializeStream = deserializeStream; + exports.serialize = serialize; + exports.serializeWithBufferAndIndex = serializeWithBufferAndIndex; + exports.setInternalBufferSize = setInternalBufferSize; + + Object.defineProperty(exports, '__esModule', { value: true }); + +}))); +//# sourceMappingURL=bson.browser.umd.js.map diff --git a/node_modules/bson/dist/bson.browser.umd.js.map b/node_modules/bson/dist/bson.browser.umd.js.map new file mode 100644 index 000000000..33c8431b3 --- /dev/null +++ b/node_modules/bson/dist/bson.browser.umd.js.map @@ -0,0 +1 @@ +{"version":3,"file":"bson.browser.umd.js","sources":["../node_modules/base64-js/index.js","../node_modules/ieee754/index.js","../node_modules/buffer/index.js","../node_modules/tslib/tslib.es6.js","../src/error.ts","../src/utils/global.ts","../src/parser/utils.ts","../src/ensure_buffer.ts","../src/uuid_utils.ts","../src/constants.ts","../src/binary.ts","../src/code.ts","../src/db_ref.ts","../src/long.ts","../src/decimal128.ts","../src/double.ts","../src/int_32.ts","../src/max_key.ts","../src/min_key.ts","../src/objectid.ts","../src/regexp.ts","../src/symbol.ts","../src/timestamp.ts","../src/extended_json.ts","../src/map.ts","../src/parser/calculate_size.ts","../src/validate_utf8.ts","../src/parser/deserializer.ts","../src/parser/serializer.ts","../src/bson.ts"],"sourcesContent":["'use strict'\n\nexports.byteLength = byteLength\nexports.toByteArray = toByteArray\nexports.fromByteArray = fromByteArray\n\nvar lookup = []\nvar revLookup = []\nvar Arr = typeof Uint8Array !== 'undefined' ? Uint8Array : Array\n\nvar code = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'\nfor (var i = 0, len = code.length; i < len; ++i) {\n lookup[i] = code[i]\n revLookup[code.charCodeAt(i)] = i\n}\n\n// Support decoding URL-safe base64 strings, as Node.js does.\n// See: https://en.wikipedia.org/wiki/Base64#URL_applications\nrevLookup['-'.charCodeAt(0)] = 62\nrevLookup['_'.charCodeAt(0)] = 63\n\nfunction getLens (b64) {\n var len = b64.length\n\n if (len % 4 > 0) {\n throw new Error('Invalid string. Length must be a multiple of 4')\n }\n\n // Trim off extra bytes after placeholder bytes are found\n // See: https://github.com/beatgammit/base64-js/issues/42\n var validLen = b64.indexOf('=')\n if (validLen === -1) validLen = len\n\n var placeHoldersLen = validLen === len\n ? 0\n : 4 - (validLen % 4)\n\n return [validLen, placeHoldersLen]\n}\n\n// base64 is 4/3 + up to two characters of the original data\nfunction byteLength (b64) {\n var lens = getLens(b64)\n var validLen = lens[0]\n var placeHoldersLen = lens[1]\n return ((validLen + placeHoldersLen) * 3 / 4) - placeHoldersLen\n}\n\nfunction _byteLength (b64, validLen, placeHoldersLen) {\n return ((validLen + placeHoldersLen) * 3 / 4) - placeHoldersLen\n}\n\nfunction toByteArray (b64) {\n var tmp\n var lens = getLens(b64)\n var validLen = lens[0]\n var placeHoldersLen = lens[1]\n\n var arr = new Arr(_byteLength(b64, validLen, placeHoldersLen))\n\n var curByte = 0\n\n // if there are placeholders, only get up to the last complete 4 chars\n var len = placeHoldersLen > 0\n ? validLen - 4\n : validLen\n\n var i\n for (i = 0; i < len; i += 4) {\n tmp =\n (revLookup[b64.charCodeAt(i)] << 18) |\n (revLookup[b64.charCodeAt(i + 1)] << 12) |\n (revLookup[b64.charCodeAt(i + 2)] << 6) |\n revLookup[b64.charCodeAt(i + 3)]\n arr[curByte++] = (tmp >> 16) & 0xFF\n arr[curByte++] = (tmp >> 8) & 0xFF\n arr[curByte++] = tmp & 0xFF\n }\n\n if (placeHoldersLen === 2) {\n tmp =\n (revLookup[b64.charCodeAt(i)] << 2) |\n (revLookup[b64.charCodeAt(i + 1)] >> 4)\n arr[curByte++] = tmp & 0xFF\n }\n\n if (placeHoldersLen === 1) {\n tmp =\n (revLookup[b64.charCodeAt(i)] << 10) |\n (revLookup[b64.charCodeAt(i + 1)] << 4) |\n (revLookup[b64.charCodeAt(i + 2)] >> 2)\n arr[curByte++] = (tmp >> 8) & 0xFF\n arr[curByte++] = tmp & 0xFF\n }\n\n return arr\n}\n\nfunction tripletToBase64 (num) {\n return lookup[num >> 18 & 0x3F] +\n lookup[num >> 12 & 0x3F] +\n lookup[num >> 6 & 0x3F] +\n lookup[num & 0x3F]\n}\n\nfunction encodeChunk (uint8, start, end) {\n var tmp\n var output = []\n for (var i = start; i < end; i += 3) {\n tmp =\n ((uint8[i] << 16) & 0xFF0000) +\n ((uint8[i + 1] << 8) & 0xFF00) +\n (uint8[i + 2] & 0xFF)\n output.push(tripletToBase64(tmp))\n }\n return output.join('')\n}\n\nfunction fromByteArray (uint8) {\n var tmp\n var len = uint8.length\n var extraBytes = len % 3 // if we have 1 byte left, pad 2 bytes\n var parts = []\n var maxChunkLength = 16383 // must be multiple of 3\n\n // go through the array every three bytes, we'll deal with trailing stuff later\n for (var i = 0, len2 = len - extraBytes; i < len2; i += maxChunkLength) {\n parts.push(encodeChunk(uint8, i, (i + maxChunkLength) > len2 ? len2 : (i + maxChunkLength)))\n }\n\n // pad the end with zeros, but make sure to not forget the extra bytes\n if (extraBytes === 1) {\n tmp = uint8[len - 1]\n parts.push(\n lookup[tmp >> 2] +\n lookup[(tmp << 4) & 0x3F] +\n '=='\n )\n } else if (extraBytes === 2) {\n tmp = (uint8[len - 2] << 8) + uint8[len - 1]\n parts.push(\n lookup[tmp >> 10] +\n lookup[(tmp >> 4) & 0x3F] +\n lookup[(tmp << 2) & 0x3F] +\n '='\n )\n }\n\n return parts.join('')\n}\n","/*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh */\nexports.read = function (buffer, offset, isLE, mLen, nBytes) {\n var e, m\n var eLen = (nBytes * 8) - mLen - 1\n var eMax = (1 << eLen) - 1\n var eBias = eMax >> 1\n var nBits = -7\n var i = isLE ? (nBytes - 1) : 0\n var d = isLE ? -1 : 1\n var s = buffer[offset + i]\n\n i += d\n\n e = s & ((1 << (-nBits)) - 1)\n s >>= (-nBits)\n nBits += eLen\n for (; nBits > 0; e = (e * 256) + buffer[offset + i], i += d, nBits -= 8) {}\n\n m = e & ((1 << (-nBits)) - 1)\n e >>= (-nBits)\n nBits += mLen\n for (; nBits > 0; m = (m * 256) + buffer[offset + i], i += d, nBits -= 8) {}\n\n if (e === 0) {\n e = 1 - eBias\n } else if (e === eMax) {\n return m ? NaN : ((s ? -1 : 1) * Infinity)\n } else {\n m = m + Math.pow(2, mLen)\n e = e - eBias\n }\n return (s ? -1 : 1) * m * Math.pow(2, e - mLen)\n}\n\nexports.write = function (buffer, value, offset, isLE, mLen, nBytes) {\n var e, m, c\n var eLen = (nBytes * 8) - mLen - 1\n var eMax = (1 << eLen) - 1\n var eBias = eMax >> 1\n var rt = (mLen === 23 ? Math.pow(2, -24) - Math.pow(2, -77) : 0)\n var i = isLE ? 0 : (nBytes - 1)\n var d = isLE ? 1 : -1\n var s = value < 0 || (value === 0 && 1 / value < 0) ? 1 : 0\n\n value = Math.abs(value)\n\n if (isNaN(value) || value === Infinity) {\n m = isNaN(value) ? 1 : 0\n e = eMax\n } else {\n e = Math.floor(Math.log(value) / Math.LN2)\n if (value * (c = Math.pow(2, -e)) < 1) {\n e--\n c *= 2\n }\n if (e + eBias >= 1) {\n value += rt / c\n } else {\n value += rt * Math.pow(2, 1 - eBias)\n }\n if (value * c >= 2) {\n e++\n c /= 2\n }\n\n if (e + eBias >= eMax) {\n m = 0\n e = eMax\n } else if (e + eBias >= 1) {\n m = ((value * c) - 1) * Math.pow(2, mLen)\n e = e + eBias\n } else {\n m = value * Math.pow(2, eBias - 1) * Math.pow(2, mLen)\n e = 0\n }\n }\n\n for (; mLen >= 8; buffer[offset + i] = m & 0xff, i += d, m /= 256, mLen -= 8) {}\n\n e = (e << mLen) | m\n eLen += mLen\n for (; eLen > 0; buffer[offset + i] = e & 0xff, i += d, e /= 256, eLen -= 8) {}\n\n buffer[offset + i - d] |= s * 128\n}\n","/*!\n * The buffer module from node.js, for the browser.\n *\n * @author Feross Aboukhadijeh \n * @license MIT\n */\n/* eslint-disable no-proto */\n\n'use strict'\n\nvar base64 = require('base64-js')\nvar ieee754 = require('ieee754')\nvar customInspectSymbol =\n (typeof Symbol === 'function' && typeof Symbol['for'] === 'function') // eslint-disable-line dot-notation\n ? Symbol['for']('nodejs.util.inspect.custom') // eslint-disable-line dot-notation\n : null\n\nexports.Buffer = Buffer\nexports.SlowBuffer = SlowBuffer\nexports.INSPECT_MAX_BYTES = 50\n\nvar K_MAX_LENGTH = 0x7fffffff\nexports.kMaxLength = K_MAX_LENGTH\n\n/**\n * If `Buffer.TYPED_ARRAY_SUPPORT`:\n * === true Use Uint8Array implementation (fastest)\n * === false Print warning and recommend using `buffer` v4.x which has an Object\n * implementation (most compatible, even IE6)\n *\n * Browsers that support typed arrays are IE 10+, Firefox 4+, Chrome 7+, Safari 5.1+,\n * Opera 11.6+, iOS 4.2+.\n *\n * We report that the browser does not support typed arrays if the are not subclassable\n * using __proto__. Firefox 4-29 lacks support for adding new properties to `Uint8Array`\n * (See: https://bugzilla.mozilla.org/show_bug.cgi?id=695438). IE 10 lacks support\n * for __proto__ and has a buggy typed array implementation.\n */\nBuffer.TYPED_ARRAY_SUPPORT = typedArraySupport()\n\nif (!Buffer.TYPED_ARRAY_SUPPORT && typeof console !== 'undefined' &&\n typeof console.error === 'function') {\n console.error(\n 'This browser lacks typed array (Uint8Array) support which is required by ' +\n '`buffer` v5.x. Use `buffer` v4.x if you require old browser support.'\n )\n}\n\nfunction typedArraySupport () {\n // Can typed array instances can be augmented?\n try {\n var arr = new Uint8Array(1)\n var proto = { foo: function () { return 42 } }\n Object.setPrototypeOf(proto, Uint8Array.prototype)\n Object.setPrototypeOf(arr, proto)\n return arr.foo() === 42\n } catch (e) {\n return false\n }\n}\n\nObject.defineProperty(Buffer.prototype, 'parent', {\n enumerable: true,\n get: function () {\n if (!Buffer.isBuffer(this)) return undefined\n return this.buffer\n }\n})\n\nObject.defineProperty(Buffer.prototype, 'offset', {\n enumerable: true,\n get: function () {\n if (!Buffer.isBuffer(this)) return undefined\n return this.byteOffset\n }\n})\n\nfunction createBuffer (length) {\n if (length > K_MAX_LENGTH) {\n throw new RangeError('The value \"' + length + '\" is invalid for option \"size\"')\n }\n // Return an augmented `Uint8Array` instance\n var buf = new Uint8Array(length)\n Object.setPrototypeOf(buf, Buffer.prototype)\n return buf\n}\n\n/**\n * The Buffer constructor returns instances of `Uint8Array` that have their\n * prototype changed to `Buffer.prototype`. Furthermore, `Buffer` is a subclass of\n * `Uint8Array`, so the returned instances will have all the node `Buffer` methods\n * and the `Uint8Array` methods. Square bracket notation works as expected -- it\n * returns a single octet.\n *\n * The `Uint8Array` prototype remains unmodified.\n */\n\nfunction Buffer (arg, encodingOrOffset, length) {\n // Common case.\n if (typeof arg === 'number') {\n if (typeof encodingOrOffset === 'string') {\n throw new TypeError(\n 'The \"string\" argument must be of type string. Received type number'\n )\n }\n return allocUnsafe(arg)\n }\n return from(arg, encodingOrOffset, length)\n}\n\nBuffer.poolSize = 8192 // not used by this implementation\n\nfunction from (value, encodingOrOffset, length) {\n if (typeof value === 'string') {\n return fromString(value, encodingOrOffset)\n }\n\n if (ArrayBuffer.isView(value)) {\n return fromArrayView(value)\n }\n\n if (value == null) {\n throw new TypeError(\n 'The first argument must be one of type string, Buffer, ArrayBuffer, Array, ' +\n 'or Array-like Object. Received type ' + (typeof value)\n )\n }\n\n if (isInstance(value, ArrayBuffer) ||\n (value && isInstance(value.buffer, ArrayBuffer))) {\n return fromArrayBuffer(value, encodingOrOffset, length)\n }\n\n if (typeof SharedArrayBuffer !== 'undefined' &&\n (isInstance(value, SharedArrayBuffer) ||\n (value && isInstance(value.buffer, SharedArrayBuffer)))) {\n return fromArrayBuffer(value, encodingOrOffset, length)\n }\n\n if (typeof value === 'number') {\n throw new TypeError(\n 'The \"value\" argument must not be of type number. Received type number'\n )\n }\n\n var valueOf = value.valueOf && value.valueOf()\n if (valueOf != null && valueOf !== value) {\n return Buffer.from(valueOf, encodingOrOffset, length)\n }\n\n var b = fromObject(value)\n if (b) return b\n\n if (typeof Symbol !== 'undefined' && Symbol.toPrimitive != null &&\n typeof value[Symbol.toPrimitive] === 'function') {\n return Buffer.from(\n value[Symbol.toPrimitive]('string'), encodingOrOffset, length\n )\n }\n\n throw new TypeError(\n 'The first argument must be one of type string, Buffer, ArrayBuffer, Array, ' +\n 'or Array-like Object. Received type ' + (typeof value)\n )\n}\n\n/**\n * Functionally equivalent to Buffer(arg, encoding) but throws a TypeError\n * if value is a number.\n * Buffer.from(str[, encoding])\n * Buffer.from(array)\n * Buffer.from(buffer)\n * Buffer.from(arrayBuffer[, byteOffset[, length]])\n **/\nBuffer.from = function (value, encodingOrOffset, length) {\n return from(value, encodingOrOffset, length)\n}\n\n// Note: Change prototype *after* Buffer.from is defined to workaround Chrome bug:\n// https://github.com/feross/buffer/pull/148\nObject.setPrototypeOf(Buffer.prototype, Uint8Array.prototype)\nObject.setPrototypeOf(Buffer, Uint8Array)\n\nfunction assertSize (size) {\n if (typeof size !== 'number') {\n throw new TypeError('\"size\" argument must be of type number')\n } else if (size < 0) {\n throw new RangeError('The value \"' + size + '\" is invalid for option \"size\"')\n }\n}\n\nfunction alloc (size, fill, encoding) {\n assertSize(size)\n if (size <= 0) {\n return createBuffer(size)\n }\n if (fill !== undefined) {\n // Only pay attention to encoding if it's a string. This\n // prevents accidentally sending in a number that would\n // be interpreted as a start offset.\n return typeof encoding === 'string'\n ? createBuffer(size).fill(fill, encoding)\n : createBuffer(size).fill(fill)\n }\n return createBuffer(size)\n}\n\n/**\n * Creates a new filled Buffer instance.\n * alloc(size[, fill[, encoding]])\n **/\nBuffer.alloc = function (size, fill, encoding) {\n return alloc(size, fill, encoding)\n}\n\nfunction allocUnsafe (size) {\n assertSize(size)\n return createBuffer(size < 0 ? 0 : checked(size) | 0)\n}\n\n/**\n * Equivalent to Buffer(num), by default creates a non-zero-filled Buffer instance.\n * */\nBuffer.allocUnsafe = function (size) {\n return allocUnsafe(size)\n}\n/**\n * Equivalent to SlowBuffer(num), by default creates a non-zero-filled Buffer instance.\n */\nBuffer.allocUnsafeSlow = function (size) {\n return allocUnsafe(size)\n}\n\nfunction fromString (string, encoding) {\n if (typeof encoding !== 'string' || encoding === '') {\n encoding = 'utf8'\n }\n\n if (!Buffer.isEncoding(encoding)) {\n throw new TypeError('Unknown encoding: ' + encoding)\n }\n\n var length = byteLength(string, encoding) | 0\n var buf = createBuffer(length)\n\n var actual = buf.write(string, encoding)\n\n if (actual !== length) {\n // Writing a hex string, for example, that contains invalid characters will\n // cause everything after the first invalid character to be ignored. (e.g.\n // 'abxxcd' will be treated as 'ab')\n buf = buf.slice(0, actual)\n }\n\n return buf\n}\n\nfunction fromArrayLike (array) {\n var length = array.length < 0 ? 0 : checked(array.length) | 0\n var buf = createBuffer(length)\n for (var i = 0; i < length; i += 1) {\n buf[i] = array[i] & 255\n }\n return buf\n}\n\nfunction fromArrayView (arrayView) {\n if (isInstance(arrayView, Uint8Array)) {\n var copy = new Uint8Array(arrayView)\n return fromArrayBuffer(copy.buffer, copy.byteOffset, copy.byteLength)\n }\n return fromArrayLike(arrayView)\n}\n\nfunction fromArrayBuffer (array, byteOffset, length) {\n if (byteOffset < 0 || array.byteLength < byteOffset) {\n throw new RangeError('\"offset\" is outside of buffer bounds')\n }\n\n if (array.byteLength < byteOffset + (length || 0)) {\n throw new RangeError('\"length\" is outside of buffer bounds')\n }\n\n var buf\n if (byteOffset === undefined && length === undefined) {\n buf = new Uint8Array(array)\n } else if (length === undefined) {\n buf = new Uint8Array(array, byteOffset)\n } else {\n buf = new Uint8Array(array, byteOffset, length)\n }\n\n // Return an augmented `Uint8Array` instance\n Object.setPrototypeOf(buf, Buffer.prototype)\n\n return buf\n}\n\nfunction fromObject (obj) {\n if (Buffer.isBuffer(obj)) {\n var len = checked(obj.length) | 0\n var buf = createBuffer(len)\n\n if (buf.length === 0) {\n return buf\n }\n\n obj.copy(buf, 0, 0, len)\n return buf\n }\n\n if (obj.length !== undefined) {\n if (typeof obj.length !== 'number' || numberIsNaN(obj.length)) {\n return createBuffer(0)\n }\n return fromArrayLike(obj)\n }\n\n if (obj.type === 'Buffer' && Array.isArray(obj.data)) {\n return fromArrayLike(obj.data)\n }\n}\n\nfunction checked (length) {\n // Note: cannot use `length < K_MAX_LENGTH` here because that fails when\n // length is NaN (which is otherwise coerced to zero.)\n if (length >= K_MAX_LENGTH) {\n throw new RangeError('Attempt to allocate Buffer larger than maximum ' +\n 'size: 0x' + K_MAX_LENGTH.toString(16) + ' bytes')\n }\n return length | 0\n}\n\nfunction SlowBuffer (length) {\n if (+length != length) { // eslint-disable-line eqeqeq\n length = 0\n }\n return Buffer.alloc(+length)\n}\n\nBuffer.isBuffer = function isBuffer (b) {\n return b != null && b._isBuffer === true &&\n b !== Buffer.prototype // so Buffer.isBuffer(Buffer.prototype) will be false\n}\n\nBuffer.compare = function compare (a, b) {\n if (isInstance(a, Uint8Array)) a = Buffer.from(a, a.offset, a.byteLength)\n if (isInstance(b, Uint8Array)) b = Buffer.from(b, b.offset, b.byteLength)\n if (!Buffer.isBuffer(a) || !Buffer.isBuffer(b)) {\n throw new TypeError(\n 'The \"buf1\", \"buf2\" arguments must be one of type Buffer or Uint8Array'\n )\n }\n\n if (a === b) return 0\n\n var x = a.length\n var y = b.length\n\n for (var i = 0, len = Math.min(x, y); i < len; ++i) {\n if (a[i] !== b[i]) {\n x = a[i]\n y = b[i]\n break\n }\n }\n\n if (x < y) return -1\n if (y < x) return 1\n return 0\n}\n\nBuffer.isEncoding = function isEncoding (encoding) {\n switch (String(encoding).toLowerCase()) {\n case 'hex':\n case 'utf8':\n case 'utf-8':\n case 'ascii':\n case 'latin1':\n case 'binary':\n case 'base64':\n case 'ucs2':\n case 'ucs-2':\n case 'utf16le':\n case 'utf-16le':\n return true\n default:\n return false\n }\n}\n\nBuffer.concat = function concat (list, length) {\n if (!Array.isArray(list)) {\n throw new TypeError('\"list\" argument must be an Array of Buffers')\n }\n\n if (list.length === 0) {\n return Buffer.alloc(0)\n }\n\n var i\n if (length === undefined) {\n length = 0\n for (i = 0; i < list.length; ++i) {\n length += list[i].length\n }\n }\n\n var buffer = Buffer.allocUnsafe(length)\n var pos = 0\n for (i = 0; i < list.length; ++i) {\n var buf = list[i]\n if (isInstance(buf, Uint8Array)) {\n if (pos + buf.length > buffer.length) {\n Buffer.from(buf).copy(buffer, pos)\n } else {\n Uint8Array.prototype.set.call(\n buffer,\n buf,\n pos\n )\n }\n } else if (!Buffer.isBuffer(buf)) {\n throw new TypeError('\"list\" argument must be an Array of Buffers')\n } else {\n buf.copy(buffer, pos)\n }\n pos += buf.length\n }\n return buffer\n}\n\nfunction byteLength (string, encoding) {\n if (Buffer.isBuffer(string)) {\n return string.length\n }\n if (ArrayBuffer.isView(string) || isInstance(string, ArrayBuffer)) {\n return string.byteLength\n }\n if (typeof string !== 'string') {\n throw new TypeError(\n 'The \"string\" argument must be one of type string, Buffer, or ArrayBuffer. ' +\n 'Received type ' + typeof string\n )\n }\n\n var len = string.length\n var mustMatch = (arguments.length > 2 && arguments[2] === true)\n if (!mustMatch && len === 0) return 0\n\n // Use a for loop to avoid recursion\n var loweredCase = false\n for (;;) {\n switch (encoding) {\n case 'ascii':\n case 'latin1':\n case 'binary':\n return len\n case 'utf8':\n case 'utf-8':\n return utf8ToBytes(string).length\n case 'ucs2':\n case 'ucs-2':\n case 'utf16le':\n case 'utf-16le':\n return len * 2\n case 'hex':\n return len >>> 1\n case 'base64':\n return base64ToBytes(string).length\n default:\n if (loweredCase) {\n return mustMatch ? -1 : utf8ToBytes(string).length // assume utf8\n }\n encoding = ('' + encoding).toLowerCase()\n loweredCase = true\n }\n }\n}\nBuffer.byteLength = byteLength\n\nfunction slowToString (encoding, start, end) {\n var loweredCase = false\n\n // No need to verify that \"this.length <= MAX_UINT32\" since it's a read-only\n // property of a typed array.\n\n // This behaves neither like String nor Uint8Array in that we set start/end\n // to their upper/lower bounds if the value passed is out of range.\n // undefined is handled specially as per ECMA-262 6th Edition,\n // Section 13.3.3.7 Runtime Semantics: KeyedBindingInitialization.\n if (start === undefined || start < 0) {\n start = 0\n }\n // Return early if start > this.length. Done here to prevent potential uint32\n // coercion fail below.\n if (start > this.length) {\n return ''\n }\n\n if (end === undefined || end > this.length) {\n end = this.length\n }\n\n if (end <= 0) {\n return ''\n }\n\n // Force coercion to uint32. This will also coerce falsey/NaN values to 0.\n end >>>= 0\n start >>>= 0\n\n if (end <= start) {\n return ''\n }\n\n if (!encoding) encoding = 'utf8'\n\n while (true) {\n switch (encoding) {\n case 'hex':\n return hexSlice(this, start, end)\n\n case 'utf8':\n case 'utf-8':\n return utf8Slice(this, start, end)\n\n case 'ascii':\n return asciiSlice(this, start, end)\n\n case 'latin1':\n case 'binary':\n return latin1Slice(this, start, end)\n\n case 'base64':\n return base64Slice(this, start, end)\n\n case 'ucs2':\n case 'ucs-2':\n case 'utf16le':\n case 'utf-16le':\n return utf16leSlice(this, start, end)\n\n default:\n if (loweredCase) throw new TypeError('Unknown encoding: ' + encoding)\n encoding = (encoding + '').toLowerCase()\n loweredCase = true\n }\n }\n}\n\n// This property is used by `Buffer.isBuffer` (and the `is-buffer` npm package)\n// to detect a Buffer instance. It's not possible to use `instanceof Buffer`\n// reliably in a browserify context because there could be multiple different\n// copies of the 'buffer' package in use. This method works even for Buffer\n// instances that were created from another copy of the `buffer` package.\n// See: https://github.com/feross/buffer/issues/154\nBuffer.prototype._isBuffer = true\n\nfunction swap (b, n, m) {\n var i = b[n]\n b[n] = b[m]\n b[m] = i\n}\n\nBuffer.prototype.swap16 = function swap16 () {\n var len = this.length\n if (len % 2 !== 0) {\n throw new RangeError('Buffer size must be a multiple of 16-bits')\n }\n for (var i = 0; i < len; i += 2) {\n swap(this, i, i + 1)\n }\n return this\n}\n\nBuffer.prototype.swap32 = function swap32 () {\n var len = this.length\n if (len % 4 !== 0) {\n throw new RangeError('Buffer size must be a multiple of 32-bits')\n }\n for (var i = 0; i < len; i += 4) {\n swap(this, i, i + 3)\n swap(this, i + 1, i + 2)\n }\n return this\n}\n\nBuffer.prototype.swap64 = function swap64 () {\n var len = this.length\n if (len % 8 !== 0) {\n throw new RangeError('Buffer size must be a multiple of 64-bits')\n }\n for (var i = 0; i < len; i += 8) {\n swap(this, i, i + 7)\n swap(this, i + 1, i + 6)\n swap(this, i + 2, i + 5)\n swap(this, i + 3, i + 4)\n }\n return this\n}\n\nBuffer.prototype.toString = function toString () {\n var length = this.length\n if (length === 0) return ''\n if (arguments.length === 0) return utf8Slice(this, 0, length)\n return slowToString.apply(this, arguments)\n}\n\nBuffer.prototype.toLocaleString = Buffer.prototype.toString\n\nBuffer.prototype.equals = function equals (b) {\n if (!Buffer.isBuffer(b)) throw new TypeError('Argument must be a Buffer')\n if (this === b) return true\n return Buffer.compare(this, b) === 0\n}\n\nBuffer.prototype.inspect = function inspect () {\n var str = ''\n var max = exports.INSPECT_MAX_BYTES\n str = this.toString('hex', 0, max).replace(/(.{2})/g, '$1 ').trim()\n if (this.length > max) str += ' ... '\n return ''\n}\nif (customInspectSymbol) {\n Buffer.prototype[customInspectSymbol] = Buffer.prototype.inspect\n}\n\nBuffer.prototype.compare = function compare (target, start, end, thisStart, thisEnd) {\n if (isInstance(target, Uint8Array)) {\n target = Buffer.from(target, target.offset, target.byteLength)\n }\n if (!Buffer.isBuffer(target)) {\n throw new TypeError(\n 'The \"target\" argument must be one of type Buffer or Uint8Array. ' +\n 'Received type ' + (typeof target)\n )\n }\n\n if (start === undefined) {\n start = 0\n }\n if (end === undefined) {\n end = target ? target.length : 0\n }\n if (thisStart === undefined) {\n thisStart = 0\n }\n if (thisEnd === undefined) {\n thisEnd = this.length\n }\n\n if (start < 0 || end > target.length || thisStart < 0 || thisEnd > this.length) {\n throw new RangeError('out of range index')\n }\n\n if (thisStart >= thisEnd && start >= end) {\n return 0\n }\n if (thisStart >= thisEnd) {\n return -1\n }\n if (start >= end) {\n return 1\n }\n\n start >>>= 0\n end >>>= 0\n thisStart >>>= 0\n thisEnd >>>= 0\n\n if (this === target) return 0\n\n var x = thisEnd - thisStart\n var y = end - start\n var len = Math.min(x, y)\n\n var thisCopy = this.slice(thisStart, thisEnd)\n var targetCopy = target.slice(start, end)\n\n for (var i = 0; i < len; ++i) {\n if (thisCopy[i] !== targetCopy[i]) {\n x = thisCopy[i]\n y = targetCopy[i]\n break\n }\n }\n\n if (x < y) return -1\n if (y < x) return 1\n return 0\n}\n\n// Finds either the first index of `val` in `buffer` at offset >= `byteOffset`,\n// OR the last index of `val` in `buffer` at offset <= `byteOffset`.\n//\n// Arguments:\n// - buffer - a Buffer to search\n// - val - a string, Buffer, or number\n// - byteOffset - an index into `buffer`; will be clamped to an int32\n// - encoding - an optional encoding, relevant is val is a string\n// - dir - true for indexOf, false for lastIndexOf\nfunction bidirectionalIndexOf (buffer, val, byteOffset, encoding, dir) {\n // Empty buffer means no match\n if (buffer.length === 0) return -1\n\n // Normalize byteOffset\n if (typeof byteOffset === 'string') {\n encoding = byteOffset\n byteOffset = 0\n } else if (byteOffset > 0x7fffffff) {\n byteOffset = 0x7fffffff\n } else if (byteOffset < -0x80000000) {\n byteOffset = -0x80000000\n }\n byteOffset = +byteOffset // Coerce to Number.\n if (numberIsNaN(byteOffset)) {\n // byteOffset: it it's undefined, null, NaN, \"foo\", etc, search whole buffer\n byteOffset = dir ? 0 : (buffer.length - 1)\n }\n\n // Normalize byteOffset: negative offsets start from the end of the buffer\n if (byteOffset < 0) byteOffset = buffer.length + byteOffset\n if (byteOffset >= buffer.length) {\n if (dir) return -1\n else byteOffset = buffer.length - 1\n } else if (byteOffset < 0) {\n if (dir) byteOffset = 0\n else return -1\n }\n\n // Normalize val\n if (typeof val === 'string') {\n val = Buffer.from(val, encoding)\n }\n\n // Finally, search either indexOf (if dir is true) or lastIndexOf\n if (Buffer.isBuffer(val)) {\n // Special case: looking for empty string/buffer always fails\n if (val.length === 0) {\n return -1\n }\n return arrayIndexOf(buffer, val, byteOffset, encoding, dir)\n } else if (typeof val === 'number') {\n val = val & 0xFF // Search for a byte value [0-255]\n if (typeof Uint8Array.prototype.indexOf === 'function') {\n if (dir) {\n return Uint8Array.prototype.indexOf.call(buffer, val, byteOffset)\n } else {\n return Uint8Array.prototype.lastIndexOf.call(buffer, val, byteOffset)\n }\n }\n return arrayIndexOf(buffer, [val], byteOffset, encoding, dir)\n }\n\n throw new TypeError('val must be string, number or Buffer')\n}\n\nfunction arrayIndexOf (arr, val, byteOffset, encoding, dir) {\n var indexSize = 1\n var arrLength = arr.length\n var valLength = val.length\n\n if (encoding !== undefined) {\n encoding = String(encoding).toLowerCase()\n if (encoding === 'ucs2' || encoding === 'ucs-2' ||\n encoding === 'utf16le' || encoding === 'utf-16le') {\n if (arr.length < 2 || val.length < 2) {\n return -1\n }\n indexSize = 2\n arrLength /= 2\n valLength /= 2\n byteOffset /= 2\n }\n }\n\n function read (buf, i) {\n if (indexSize === 1) {\n return buf[i]\n } else {\n return buf.readUInt16BE(i * indexSize)\n }\n }\n\n var i\n if (dir) {\n var foundIndex = -1\n for (i = byteOffset; i < arrLength; i++) {\n if (read(arr, i) === read(val, foundIndex === -1 ? 0 : i - foundIndex)) {\n if (foundIndex === -1) foundIndex = i\n if (i - foundIndex + 1 === valLength) return foundIndex * indexSize\n } else {\n if (foundIndex !== -1) i -= i - foundIndex\n foundIndex = -1\n }\n }\n } else {\n if (byteOffset + valLength > arrLength) byteOffset = arrLength - valLength\n for (i = byteOffset; i >= 0; i--) {\n var found = true\n for (var j = 0; j < valLength; j++) {\n if (read(arr, i + j) !== read(val, j)) {\n found = false\n break\n }\n }\n if (found) return i\n }\n }\n\n return -1\n}\n\nBuffer.prototype.includes = function includes (val, byteOffset, encoding) {\n return this.indexOf(val, byteOffset, encoding) !== -1\n}\n\nBuffer.prototype.indexOf = function indexOf (val, byteOffset, encoding) {\n return bidirectionalIndexOf(this, val, byteOffset, encoding, true)\n}\n\nBuffer.prototype.lastIndexOf = function lastIndexOf (val, byteOffset, encoding) {\n return bidirectionalIndexOf(this, val, byteOffset, encoding, false)\n}\n\nfunction hexWrite (buf, string, offset, length) {\n offset = Number(offset) || 0\n var remaining = buf.length - offset\n if (!length) {\n length = remaining\n } else {\n length = Number(length)\n if (length > remaining) {\n length = remaining\n }\n }\n\n var strLen = string.length\n\n if (length > strLen / 2) {\n length = strLen / 2\n }\n for (var i = 0; i < length; ++i) {\n var parsed = parseInt(string.substr(i * 2, 2), 16)\n if (numberIsNaN(parsed)) return i\n buf[offset + i] = parsed\n }\n return i\n}\n\nfunction utf8Write (buf, string, offset, length) {\n return blitBuffer(utf8ToBytes(string, buf.length - offset), buf, offset, length)\n}\n\nfunction asciiWrite (buf, string, offset, length) {\n return blitBuffer(asciiToBytes(string), buf, offset, length)\n}\n\nfunction base64Write (buf, string, offset, length) {\n return blitBuffer(base64ToBytes(string), buf, offset, length)\n}\n\nfunction ucs2Write (buf, string, offset, length) {\n return blitBuffer(utf16leToBytes(string, buf.length - offset), buf, offset, length)\n}\n\nBuffer.prototype.write = function write (string, offset, length, encoding) {\n // Buffer#write(string)\n if (offset === undefined) {\n encoding = 'utf8'\n length = this.length\n offset = 0\n // Buffer#write(string, encoding)\n } else if (length === undefined && typeof offset === 'string') {\n encoding = offset\n length = this.length\n offset = 0\n // Buffer#write(string, offset[, length][, encoding])\n } else if (isFinite(offset)) {\n offset = offset >>> 0\n if (isFinite(length)) {\n length = length >>> 0\n if (encoding === undefined) encoding = 'utf8'\n } else {\n encoding = length\n length = undefined\n }\n } else {\n throw new Error(\n 'Buffer.write(string, encoding, offset[, length]) is no longer supported'\n )\n }\n\n var remaining = this.length - offset\n if (length === undefined || length > remaining) length = remaining\n\n if ((string.length > 0 && (length < 0 || offset < 0)) || offset > this.length) {\n throw new RangeError('Attempt to write outside buffer bounds')\n }\n\n if (!encoding) encoding = 'utf8'\n\n var loweredCase = false\n for (;;) {\n switch (encoding) {\n case 'hex':\n return hexWrite(this, string, offset, length)\n\n case 'utf8':\n case 'utf-8':\n return utf8Write(this, string, offset, length)\n\n case 'ascii':\n case 'latin1':\n case 'binary':\n return asciiWrite(this, string, offset, length)\n\n case 'base64':\n // Warning: maxLength not taken into account in base64Write\n return base64Write(this, string, offset, length)\n\n case 'ucs2':\n case 'ucs-2':\n case 'utf16le':\n case 'utf-16le':\n return ucs2Write(this, string, offset, length)\n\n default:\n if (loweredCase) throw new TypeError('Unknown encoding: ' + encoding)\n encoding = ('' + encoding).toLowerCase()\n loweredCase = true\n }\n }\n}\n\nBuffer.prototype.toJSON = function toJSON () {\n return {\n type: 'Buffer',\n data: Array.prototype.slice.call(this._arr || this, 0)\n }\n}\n\nfunction base64Slice (buf, start, end) {\n if (start === 0 && end === buf.length) {\n return base64.fromByteArray(buf)\n } else {\n return base64.fromByteArray(buf.slice(start, end))\n }\n}\n\nfunction utf8Slice (buf, start, end) {\n end = Math.min(buf.length, end)\n var res = []\n\n var i = start\n while (i < end) {\n var firstByte = buf[i]\n var codePoint = null\n var bytesPerSequence = (firstByte > 0xEF)\n ? 4\n : (firstByte > 0xDF)\n ? 3\n : (firstByte > 0xBF)\n ? 2\n : 1\n\n if (i + bytesPerSequence <= end) {\n var secondByte, thirdByte, fourthByte, tempCodePoint\n\n switch (bytesPerSequence) {\n case 1:\n if (firstByte < 0x80) {\n codePoint = firstByte\n }\n break\n case 2:\n secondByte = buf[i + 1]\n if ((secondByte & 0xC0) === 0x80) {\n tempCodePoint = (firstByte & 0x1F) << 0x6 | (secondByte & 0x3F)\n if (tempCodePoint > 0x7F) {\n codePoint = tempCodePoint\n }\n }\n break\n case 3:\n secondByte = buf[i + 1]\n thirdByte = buf[i + 2]\n if ((secondByte & 0xC0) === 0x80 && (thirdByte & 0xC0) === 0x80) {\n tempCodePoint = (firstByte & 0xF) << 0xC | (secondByte & 0x3F) << 0x6 | (thirdByte & 0x3F)\n if (tempCodePoint > 0x7FF && (tempCodePoint < 0xD800 || tempCodePoint > 0xDFFF)) {\n codePoint = tempCodePoint\n }\n }\n break\n case 4:\n secondByte = buf[i + 1]\n thirdByte = buf[i + 2]\n fourthByte = buf[i + 3]\n if ((secondByte & 0xC0) === 0x80 && (thirdByte & 0xC0) === 0x80 && (fourthByte & 0xC0) === 0x80) {\n tempCodePoint = (firstByte & 0xF) << 0x12 | (secondByte & 0x3F) << 0xC | (thirdByte & 0x3F) << 0x6 | (fourthByte & 0x3F)\n if (tempCodePoint > 0xFFFF && tempCodePoint < 0x110000) {\n codePoint = tempCodePoint\n }\n }\n }\n }\n\n if (codePoint === null) {\n // we did not generate a valid codePoint so insert a\n // replacement char (U+FFFD) and advance only 1 byte\n codePoint = 0xFFFD\n bytesPerSequence = 1\n } else if (codePoint > 0xFFFF) {\n // encode to utf16 (surrogate pair dance)\n codePoint -= 0x10000\n res.push(codePoint >>> 10 & 0x3FF | 0xD800)\n codePoint = 0xDC00 | codePoint & 0x3FF\n }\n\n res.push(codePoint)\n i += bytesPerSequence\n }\n\n return decodeCodePointsArray(res)\n}\n\n// Based on http://stackoverflow.com/a/22747272/680742, the browser with\n// the lowest limit is Chrome, with 0x10000 args.\n// We go 1 magnitude less, for safety\nvar MAX_ARGUMENTS_LENGTH = 0x1000\n\nfunction decodeCodePointsArray (codePoints) {\n var len = codePoints.length\n if (len <= MAX_ARGUMENTS_LENGTH) {\n return String.fromCharCode.apply(String, codePoints) // avoid extra slice()\n }\n\n // Decode in chunks to avoid \"call stack size exceeded\".\n var res = ''\n var i = 0\n while (i < len) {\n res += String.fromCharCode.apply(\n String,\n codePoints.slice(i, i += MAX_ARGUMENTS_LENGTH)\n )\n }\n return res\n}\n\nfunction asciiSlice (buf, start, end) {\n var ret = ''\n end = Math.min(buf.length, end)\n\n for (var i = start; i < end; ++i) {\n ret += String.fromCharCode(buf[i] & 0x7F)\n }\n return ret\n}\n\nfunction latin1Slice (buf, start, end) {\n var ret = ''\n end = Math.min(buf.length, end)\n\n for (var i = start; i < end; ++i) {\n ret += String.fromCharCode(buf[i])\n }\n return ret\n}\n\nfunction hexSlice (buf, start, end) {\n var len = buf.length\n\n if (!start || start < 0) start = 0\n if (!end || end < 0 || end > len) end = len\n\n var out = ''\n for (var i = start; i < end; ++i) {\n out += hexSliceLookupTable[buf[i]]\n }\n return out\n}\n\nfunction utf16leSlice (buf, start, end) {\n var bytes = buf.slice(start, end)\n var res = ''\n // If bytes.length is odd, the last 8 bits must be ignored (same as node.js)\n for (var i = 0; i < bytes.length - 1; i += 2) {\n res += String.fromCharCode(bytes[i] + (bytes[i + 1] * 256))\n }\n return res\n}\n\nBuffer.prototype.slice = function slice (start, end) {\n var len = this.length\n start = ~~start\n end = end === undefined ? len : ~~end\n\n if (start < 0) {\n start += len\n if (start < 0) start = 0\n } else if (start > len) {\n start = len\n }\n\n if (end < 0) {\n end += len\n if (end < 0) end = 0\n } else if (end > len) {\n end = len\n }\n\n if (end < start) end = start\n\n var newBuf = this.subarray(start, end)\n // Return an augmented `Uint8Array` instance\n Object.setPrototypeOf(newBuf, Buffer.prototype)\n\n return newBuf\n}\n\n/*\n * Need to make sure that buffer isn't trying to write out of bounds.\n */\nfunction checkOffset (offset, ext, length) {\n if ((offset % 1) !== 0 || offset < 0) throw new RangeError('offset is not uint')\n if (offset + ext > length) throw new RangeError('Trying to access beyond buffer length')\n}\n\nBuffer.prototype.readUintLE =\nBuffer.prototype.readUIntLE = function readUIntLE (offset, byteLength, noAssert) {\n offset = offset >>> 0\n byteLength = byteLength >>> 0\n if (!noAssert) checkOffset(offset, byteLength, this.length)\n\n var val = this[offset]\n var mul = 1\n var i = 0\n while (++i < byteLength && (mul *= 0x100)) {\n val += this[offset + i] * mul\n }\n\n return val\n}\n\nBuffer.prototype.readUintBE =\nBuffer.prototype.readUIntBE = function readUIntBE (offset, byteLength, noAssert) {\n offset = offset >>> 0\n byteLength = byteLength >>> 0\n if (!noAssert) {\n checkOffset(offset, byteLength, this.length)\n }\n\n var val = this[offset + --byteLength]\n var mul = 1\n while (byteLength > 0 && (mul *= 0x100)) {\n val += this[offset + --byteLength] * mul\n }\n\n return val\n}\n\nBuffer.prototype.readUint8 =\nBuffer.prototype.readUInt8 = function readUInt8 (offset, noAssert) {\n offset = offset >>> 0\n if (!noAssert) checkOffset(offset, 1, this.length)\n return this[offset]\n}\n\nBuffer.prototype.readUint16LE =\nBuffer.prototype.readUInt16LE = function readUInt16LE (offset, noAssert) {\n offset = offset >>> 0\n if (!noAssert) checkOffset(offset, 2, this.length)\n return this[offset] | (this[offset + 1] << 8)\n}\n\nBuffer.prototype.readUint16BE =\nBuffer.prototype.readUInt16BE = function readUInt16BE (offset, noAssert) {\n offset = offset >>> 0\n if (!noAssert) checkOffset(offset, 2, this.length)\n return (this[offset] << 8) | this[offset + 1]\n}\n\nBuffer.prototype.readUint32LE =\nBuffer.prototype.readUInt32LE = function readUInt32LE (offset, noAssert) {\n offset = offset >>> 0\n if (!noAssert) checkOffset(offset, 4, this.length)\n\n return ((this[offset]) |\n (this[offset + 1] << 8) |\n (this[offset + 2] << 16)) +\n (this[offset + 3] * 0x1000000)\n}\n\nBuffer.prototype.readUint32BE =\nBuffer.prototype.readUInt32BE = function readUInt32BE (offset, noAssert) {\n offset = offset >>> 0\n if (!noAssert) checkOffset(offset, 4, this.length)\n\n return (this[offset] * 0x1000000) +\n ((this[offset + 1] << 16) |\n (this[offset + 2] << 8) |\n this[offset + 3])\n}\n\nBuffer.prototype.readIntLE = function readIntLE (offset, byteLength, noAssert) {\n offset = offset >>> 0\n byteLength = byteLength >>> 0\n if (!noAssert) checkOffset(offset, byteLength, this.length)\n\n var val = this[offset]\n var mul = 1\n var i = 0\n while (++i < byteLength && (mul *= 0x100)) {\n val += this[offset + i] * mul\n }\n mul *= 0x80\n\n if (val >= mul) val -= Math.pow(2, 8 * byteLength)\n\n return val\n}\n\nBuffer.prototype.readIntBE = function readIntBE (offset, byteLength, noAssert) {\n offset = offset >>> 0\n byteLength = byteLength >>> 0\n if (!noAssert) checkOffset(offset, byteLength, this.length)\n\n var i = byteLength\n var mul = 1\n var val = this[offset + --i]\n while (i > 0 && (mul *= 0x100)) {\n val += this[offset + --i] * mul\n }\n mul *= 0x80\n\n if (val >= mul) val -= Math.pow(2, 8 * byteLength)\n\n return val\n}\n\nBuffer.prototype.readInt8 = function readInt8 (offset, noAssert) {\n offset = offset >>> 0\n if (!noAssert) checkOffset(offset, 1, this.length)\n if (!(this[offset] & 0x80)) return (this[offset])\n return ((0xff - this[offset] + 1) * -1)\n}\n\nBuffer.prototype.readInt16LE = function readInt16LE (offset, noAssert) {\n offset = offset >>> 0\n if (!noAssert) checkOffset(offset, 2, this.length)\n var val = this[offset] | (this[offset + 1] << 8)\n return (val & 0x8000) ? val | 0xFFFF0000 : val\n}\n\nBuffer.prototype.readInt16BE = function readInt16BE (offset, noAssert) {\n offset = offset >>> 0\n if (!noAssert) checkOffset(offset, 2, this.length)\n var val = this[offset + 1] | (this[offset] << 8)\n return (val & 0x8000) ? val | 0xFFFF0000 : val\n}\n\nBuffer.prototype.readInt32LE = function readInt32LE (offset, noAssert) {\n offset = offset >>> 0\n if (!noAssert) checkOffset(offset, 4, this.length)\n\n return (this[offset]) |\n (this[offset + 1] << 8) |\n (this[offset + 2] << 16) |\n (this[offset + 3] << 24)\n}\n\nBuffer.prototype.readInt32BE = function readInt32BE (offset, noAssert) {\n offset = offset >>> 0\n if (!noAssert) checkOffset(offset, 4, this.length)\n\n return (this[offset] << 24) |\n (this[offset + 1] << 16) |\n (this[offset + 2] << 8) |\n (this[offset + 3])\n}\n\nBuffer.prototype.readFloatLE = function readFloatLE (offset, noAssert) {\n offset = offset >>> 0\n if (!noAssert) checkOffset(offset, 4, this.length)\n return ieee754.read(this, offset, true, 23, 4)\n}\n\nBuffer.prototype.readFloatBE = function readFloatBE (offset, noAssert) {\n offset = offset >>> 0\n if (!noAssert) checkOffset(offset, 4, this.length)\n return ieee754.read(this, offset, false, 23, 4)\n}\n\nBuffer.prototype.readDoubleLE = function readDoubleLE (offset, noAssert) {\n offset = offset >>> 0\n if (!noAssert) checkOffset(offset, 8, this.length)\n return ieee754.read(this, offset, true, 52, 8)\n}\n\nBuffer.prototype.readDoubleBE = function readDoubleBE (offset, noAssert) {\n offset = offset >>> 0\n if (!noAssert) checkOffset(offset, 8, this.length)\n return ieee754.read(this, offset, false, 52, 8)\n}\n\nfunction checkInt (buf, value, offset, ext, max, min) {\n if (!Buffer.isBuffer(buf)) throw new TypeError('\"buffer\" argument must be a Buffer instance')\n if (value > max || value < min) throw new RangeError('\"value\" argument is out of bounds')\n if (offset + ext > buf.length) throw new RangeError('Index out of range')\n}\n\nBuffer.prototype.writeUintLE =\nBuffer.prototype.writeUIntLE = function writeUIntLE (value, offset, byteLength, noAssert) {\n value = +value\n offset = offset >>> 0\n byteLength = byteLength >>> 0\n if (!noAssert) {\n var maxBytes = Math.pow(2, 8 * byteLength) - 1\n checkInt(this, value, offset, byteLength, maxBytes, 0)\n }\n\n var mul = 1\n var i = 0\n this[offset] = value & 0xFF\n while (++i < byteLength && (mul *= 0x100)) {\n this[offset + i] = (value / mul) & 0xFF\n }\n\n return offset + byteLength\n}\n\nBuffer.prototype.writeUintBE =\nBuffer.prototype.writeUIntBE = function writeUIntBE (value, offset, byteLength, noAssert) {\n value = +value\n offset = offset >>> 0\n byteLength = byteLength >>> 0\n if (!noAssert) {\n var maxBytes = Math.pow(2, 8 * byteLength) - 1\n checkInt(this, value, offset, byteLength, maxBytes, 0)\n }\n\n var i = byteLength - 1\n var mul = 1\n this[offset + i] = value & 0xFF\n while (--i >= 0 && (mul *= 0x100)) {\n this[offset + i] = (value / mul) & 0xFF\n }\n\n return offset + byteLength\n}\n\nBuffer.prototype.writeUint8 =\nBuffer.prototype.writeUInt8 = function writeUInt8 (value, offset, noAssert) {\n value = +value\n offset = offset >>> 0\n if (!noAssert) checkInt(this, value, offset, 1, 0xff, 0)\n this[offset] = (value & 0xff)\n return offset + 1\n}\n\nBuffer.prototype.writeUint16LE =\nBuffer.prototype.writeUInt16LE = function writeUInt16LE (value, offset, noAssert) {\n value = +value\n offset = offset >>> 0\n if (!noAssert) checkInt(this, value, offset, 2, 0xffff, 0)\n this[offset] = (value & 0xff)\n this[offset + 1] = (value >>> 8)\n return offset + 2\n}\n\nBuffer.prototype.writeUint16BE =\nBuffer.prototype.writeUInt16BE = function writeUInt16BE (value, offset, noAssert) {\n value = +value\n offset = offset >>> 0\n if (!noAssert) checkInt(this, value, offset, 2, 0xffff, 0)\n this[offset] = (value >>> 8)\n this[offset + 1] = (value & 0xff)\n return offset + 2\n}\n\nBuffer.prototype.writeUint32LE =\nBuffer.prototype.writeUInt32LE = function writeUInt32LE (value, offset, noAssert) {\n value = +value\n offset = offset >>> 0\n if (!noAssert) checkInt(this, value, offset, 4, 0xffffffff, 0)\n this[offset + 3] = (value >>> 24)\n this[offset + 2] = (value >>> 16)\n this[offset + 1] = (value >>> 8)\n this[offset] = (value & 0xff)\n return offset + 4\n}\n\nBuffer.prototype.writeUint32BE =\nBuffer.prototype.writeUInt32BE = function writeUInt32BE (value, offset, noAssert) {\n value = +value\n offset = offset >>> 0\n if (!noAssert) checkInt(this, value, offset, 4, 0xffffffff, 0)\n this[offset] = (value >>> 24)\n this[offset + 1] = (value >>> 16)\n this[offset + 2] = (value >>> 8)\n this[offset + 3] = (value & 0xff)\n return offset + 4\n}\n\nBuffer.prototype.writeIntLE = function writeIntLE (value, offset, byteLength, noAssert) {\n value = +value\n offset = offset >>> 0\n if (!noAssert) {\n var limit = Math.pow(2, (8 * byteLength) - 1)\n\n checkInt(this, value, offset, byteLength, limit - 1, -limit)\n }\n\n var i = 0\n var mul = 1\n var sub = 0\n this[offset] = value & 0xFF\n while (++i < byteLength && (mul *= 0x100)) {\n if (value < 0 && sub === 0 && this[offset + i - 1] !== 0) {\n sub = 1\n }\n this[offset + i] = ((value / mul) >> 0) - sub & 0xFF\n }\n\n return offset + byteLength\n}\n\nBuffer.prototype.writeIntBE = function writeIntBE (value, offset, byteLength, noAssert) {\n value = +value\n offset = offset >>> 0\n if (!noAssert) {\n var limit = Math.pow(2, (8 * byteLength) - 1)\n\n checkInt(this, value, offset, byteLength, limit - 1, -limit)\n }\n\n var i = byteLength - 1\n var mul = 1\n var sub = 0\n this[offset + i] = value & 0xFF\n while (--i >= 0 && (mul *= 0x100)) {\n if (value < 0 && sub === 0 && this[offset + i + 1] !== 0) {\n sub = 1\n }\n this[offset + i] = ((value / mul) >> 0) - sub & 0xFF\n }\n\n return offset + byteLength\n}\n\nBuffer.prototype.writeInt8 = function writeInt8 (value, offset, noAssert) {\n value = +value\n offset = offset >>> 0\n if (!noAssert) checkInt(this, value, offset, 1, 0x7f, -0x80)\n if (value < 0) value = 0xff + value + 1\n this[offset] = (value & 0xff)\n return offset + 1\n}\n\nBuffer.prototype.writeInt16LE = function writeInt16LE (value, offset, noAssert) {\n value = +value\n offset = offset >>> 0\n if (!noAssert) checkInt(this, value, offset, 2, 0x7fff, -0x8000)\n this[offset] = (value & 0xff)\n this[offset + 1] = (value >>> 8)\n return offset + 2\n}\n\nBuffer.prototype.writeInt16BE = function writeInt16BE (value, offset, noAssert) {\n value = +value\n offset = offset >>> 0\n if (!noAssert) checkInt(this, value, offset, 2, 0x7fff, -0x8000)\n this[offset] = (value >>> 8)\n this[offset + 1] = (value & 0xff)\n return offset + 2\n}\n\nBuffer.prototype.writeInt32LE = function writeInt32LE (value, offset, noAssert) {\n value = +value\n offset = offset >>> 0\n if (!noAssert) checkInt(this, value, offset, 4, 0x7fffffff, -0x80000000)\n this[offset] = (value & 0xff)\n this[offset + 1] = (value >>> 8)\n this[offset + 2] = (value >>> 16)\n this[offset + 3] = (value >>> 24)\n return offset + 4\n}\n\nBuffer.prototype.writeInt32BE = function writeInt32BE (value, offset, noAssert) {\n value = +value\n offset = offset >>> 0\n if (!noAssert) checkInt(this, value, offset, 4, 0x7fffffff, -0x80000000)\n if (value < 0) value = 0xffffffff + value + 1\n this[offset] = (value >>> 24)\n this[offset + 1] = (value >>> 16)\n this[offset + 2] = (value >>> 8)\n this[offset + 3] = (value & 0xff)\n return offset + 4\n}\n\nfunction checkIEEE754 (buf, value, offset, ext, max, min) {\n if (offset + ext > buf.length) throw new RangeError('Index out of range')\n if (offset < 0) throw new RangeError('Index out of range')\n}\n\nfunction writeFloat (buf, value, offset, littleEndian, noAssert) {\n value = +value\n offset = offset >>> 0\n if (!noAssert) {\n checkIEEE754(buf, value, offset, 4, 3.4028234663852886e+38, -3.4028234663852886e+38)\n }\n ieee754.write(buf, value, offset, littleEndian, 23, 4)\n return offset + 4\n}\n\nBuffer.prototype.writeFloatLE = function writeFloatLE (value, offset, noAssert) {\n return writeFloat(this, value, offset, true, noAssert)\n}\n\nBuffer.prototype.writeFloatBE = function writeFloatBE (value, offset, noAssert) {\n return writeFloat(this, value, offset, false, noAssert)\n}\n\nfunction writeDouble (buf, value, offset, littleEndian, noAssert) {\n value = +value\n offset = offset >>> 0\n if (!noAssert) {\n checkIEEE754(buf, value, offset, 8, 1.7976931348623157E+308, -1.7976931348623157E+308)\n }\n ieee754.write(buf, value, offset, littleEndian, 52, 8)\n return offset + 8\n}\n\nBuffer.prototype.writeDoubleLE = function writeDoubleLE (value, offset, noAssert) {\n return writeDouble(this, value, offset, true, noAssert)\n}\n\nBuffer.prototype.writeDoubleBE = function writeDoubleBE (value, offset, noAssert) {\n return writeDouble(this, value, offset, false, noAssert)\n}\n\n// copy(targetBuffer, targetStart=0, sourceStart=0, sourceEnd=buffer.length)\nBuffer.prototype.copy = function copy (target, targetStart, start, end) {\n if (!Buffer.isBuffer(target)) throw new TypeError('argument should be a Buffer')\n if (!start) start = 0\n if (!end && end !== 0) end = this.length\n if (targetStart >= target.length) targetStart = target.length\n if (!targetStart) targetStart = 0\n if (end > 0 && end < start) end = start\n\n // Copy 0 bytes; we're done\n if (end === start) return 0\n if (target.length === 0 || this.length === 0) return 0\n\n // Fatal error conditions\n if (targetStart < 0) {\n throw new RangeError('targetStart out of bounds')\n }\n if (start < 0 || start >= this.length) throw new RangeError('Index out of range')\n if (end < 0) throw new RangeError('sourceEnd out of bounds')\n\n // Are we oob?\n if (end > this.length) end = this.length\n if (target.length - targetStart < end - start) {\n end = target.length - targetStart + start\n }\n\n var len = end - start\n\n if (this === target && typeof Uint8Array.prototype.copyWithin === 'function') {\n // Use built-in when available, missing from IE11\n this.copyWithin(targetStart, start, end)\n } else {\n Uint8Array.prototype.set.call(\n target,\n this.subarray(start, end),\n targetStart\n )\n }\n\n return len\n}\n\n// Usage:\n// buffer.fill(number[, offset[, end]])\n// buffer.fill(buffer[, offset[, end]])\n// buffer.fill(string[, offset[, end]][, encoding])\nBuffer.prototype.fill = function fill (val, start, end, encoding) {\n // Handle string cases:\n if (typeof val === 'string') {\n if (typeof start === 'string') {\n encoding = start\n start = 0\n end = this.length\n } else if (typeof end === 'string') {\n encoding = end\n end = this.length\n }\n if (encoding !== undefined && typeof encoding !== 'string') {\n throw new TypeError('encoding must be a string')\n }\n if (typeof encoding === 'string' && !Buffer.isEncoding(encoding)) {\n throw new TypeError('Unknown encoding: ' + encoding)\n }\n if (val.length === 1) {\n var code = val.charCodeAt(0)\n if ((encoding === 'utf8' && code < 128) ||\n encoding === 'latin1') {\n // Fast path: If `val` fits into a single byte, use that numeric value.\n val = code\n }\n }\n } else if (typeof val === 'number') {\n val = val & 255\n } else if (typeof val === 'boolean') {\n val = Number(val)\n }\n\n // Invalid ranges are not set to a default, so can range check early.\n if (start < 0 || this.length < start || this.length < end) {\n throw new RangeError('Out of range index')\n }\n\n if (end <= start) {\n return this\n }\n\n start = start >>> 0\n end = end === undefined ? this.length : end >>> 0\n\n if (!val) val = 0\n\n var i\n if (typeof val === 'number') {\n for (i = start; i < end; ++i) {\n this[i] = val\n }\n } else {\n var bytes = Buffer.isBuffer(val)\n ? val\n : Buffer.from(val, encoding)\n var len = bytes.length\n if (len === 0) {\n throw new TypeError('The value \"' + val +\n '\" is invalid for argument \"value\"')\n }\n for (i = 0; i < end - start; ++i) {\n this[i + start] = bytes[i % len]\n }\n }\n\n return this\n}\n\n// HELPER FUNCTIONS\n// ================\n\nvar INVALID_BASE64_RE = /[^+/0-9A-Za-z-_]/g\n\nfunction base64clean (str) {\n // Node takes equal signs as end of the Base64 encoding\n str = str.split('=')[0]\n // Node strips out invalid characters like \\n and \\t from the string, base64-js does not\n str = str.trim().replace(INVALID_BASE64_RE, '')\n // Node converts strings with length < 2 to ''\n if (str.length < 2) return ''\n // Node allows for non-padded base64 strings (missing trailing ===), base64-js does not\n while (str.length % 4 !== 0) {\n str = str + '='\n }\n return str\n}\n\nfunction utf8ToBytes (string, units) {\n units = units || Infinity\n var codePoint\n var length = string.length\n var leadSurrogate = null\n var bytes = []\n\n for (var i = 0; i < length; ++i) {\n codePoint = string.charCodeAt(i)\n\n // is surrogate component\n if (codePoint > 0xD7FF && codePoint < 0xE000) {\n // last char was a lead\n if (!leadSurrogate) {\n // no lead yet\n if (codePoint > 0xDBFF) {\n // unexpected trail\n if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD)\n continue\n } else if (i + 1 === length) {\n // unpaired lead\n if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD)\n continue\n }\n\n // valid lead\n leadSurrogate = codePoint\n\n continue\n }\n\n // 2 leads in a row\n if (codePoint < 0xDC00) {\n if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD)\n leadSurrogate = codePoint\n continue\n }\n\n // valid surrogate pair\n codePoint = (leadSurrogate - 0xD800 << 10 | codePoint - 0xDC00) + 0x10000\n } else if (leadSurrogate) {\n // valid bmp char, but last char was a lead\n if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD)\n }\n\n leadSurrogate = null\n\n // encode utf8\n if (codePoint < 0x80) {\n if ((units -= 1) < 0) break\n bytes.push(codePoint)\n } else if (codePoint < 0x800) {\n if ((units -= 2) < 0) break\n bytes.push(\n codePoint >> 0x6 | 0xC0,\n codePoint & 0x3F | 0x80\n )\n } else if (codePoint < 0x10000) {\n if ((units -= 3) < 0) break\n bytes.push(\n codePoint >> 0xC | 0xE0,\n codePoint >> 0x6 & 0x3F | 0x80,\n codePoint & 0x3F | 0x80\n )\n } else if (codePoint < 0x110000) {\n if ((units -= 4) < 0) break\n bytes.push(\n codePoint >> 0x12 | 0xF0,\n codePoint >> 0xC & 0x3F | 0x80,\n codePoint >> 0x6 & 0x3F | 0x80,\n codePoint & 0x3F | 0x80\n )\n } else {\n throw new Error('Invalid code point')\n }\n }\n\n return bytes\n}\n\nfunction asciiToBytes (str) {\n var byteArray = []\n for (var i = 0; i < str.length; ++i) {\n // Node's code seems to be doing this and not & 0x7F..\n byteArray.push(str.charCodeAt(i) & 0xFF)\n }\n return byteArray\n}\n\nfunction utf16leToBytes (str, units) {\n var c, hi, lo\n var byteArray = []\n for (var i = 0; i < str.length; ++i) {\n if ((units -= 2) < 0) break\n\n c = str.charCodeAt(i)\n hi = c >> 8\n lo = c % 256\n byteArray.push(lo)\n byteArray.push(hi)\n }\n\n return byteArray\n}\n\nfunction base64ToBytes (str) {\n return base64.toByteArray(base64clean(str))\n}\n\nfunction blitBuffer (src, dst, offset, length) {\n for (var i = 0; i < length; ++i) {\n if ((i + offset >= dst.length) || (i >= src.length)) break\n dst[i + offset] = src[i]\n }\n return i\n}\n\n// ArrayBuffer or Uint8Array objects from other contexts (i.e. iframes) do not pass\n// the `instanceof` check but they should be treated as of that type.\n// See: https://github.com/feross/buffer/issues/166\nfunction isInstance (obj, type) {\n return obj instanceof type ||\n (obj != null && obj.constructor != null && obj.constructor.name != null &&\n obj.constructor.name === type.name)\n}\nfunction numberIsNaN (obj) {\n // For IE11 support\n return obj !== obj // eslint-disable-line no-self-compare\n}\n\n// Create lookup table for `toString('hex')`\n// See: https://github.com/feross/buffer/issues/219\nvar hexSliceLookupTable = (function () {\n var alphabet = '0123456789abcdef'\n var table = new Array(256)\n for (var i = 0; i < 16; ++i) {\n var i16 = i * 16\n for (var j = 0; j < 16; ++j) {\n table[i16 + j] = alphabet[i] + alphabet[j]\n }\n }\n return table\n})()\n","/*! *****************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nexport function __extends(d, b) {\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nexport var __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nexport function __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nexport function __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nexport function __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nexport function __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nexport function __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nexport function __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (_) try {\r\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nexport function __createBinding(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n}\r\n\r\nexport function __exportStar(m, exports) {\r\n for (var p in m) if (p !== \"default\" && !exports.hasOwnProperty(p)) exports[p] = m[p];\r\n}\r\n\r\nexport function __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nexport function __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\nexport function __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\nexport function __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n};\r\n\r\nexport function __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nexport function __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nexport function __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === \"return\" } : f ? f(v) : v; } : f; }\r\n}\r\n\r\nexport function __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n return m ? m.call(o) : (o = typeof __values === \"function\" ? __values(o) : o[Symbol.iterator](), i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i);\r\n function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nexport function __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nexport function __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];\r\n result.default = mod;\r\n return result;\r\n}\r\n\r\nexport function __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nexport function __classPrivateFieldGet(receiver, privateMap) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to get private field on non-instance\");\r\n }\r\n return privateMap.get(receiver);\r\n}\r\n\r\nexport function __classPrivateFieldSet(receiver, privateMap, value) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to set private field on non-instance\");\r\n }\r\n privateMap.set(receiver, value);\r\n return value;\r\n}\r\n",null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"names":["byteLength","toByteArray","fromByteArray","lookup","revLookup","Arr","Uint8Array","Array","code","i","len","length","charCodeAt","getLens","b64","Error","validLen","indexOf","placeHoldersLen","lens","_byteLength","tmp","arr","curByte","tripletToBase64","num","encodeChunk","uint8","start","end","output","push","join","extraBytes","parts","maxChunkLength","len2","buffer","offset","isLE","mLen","nBytes","e","m","eLen","eMax","eBias","nBits","d","s","NaN","Infinity","Math","pow","value","c","rt","abs","isNaN","floor","log","LN2","customInspectSymbol","Symbol","exports","Buffer","SlowBuffer","K_MAX_LENGTH","TYPED_ARRAY_SUPPORT","typedArraySupport","console","error","proto","foo","Object","setPrototypeOf","prototype","defineProperty","enumerable","get","isBuffer","undefined","byteOffset","createBuffer","RangeError","buf","arg","encodingOrOffset","TypeError","allocUnsafe","from","poolSize","fromString","ArrayBuffer","isView","fromArrayView","isInstance","fromArrayBuffer","SharedArrayBuffer","valueOf","b","fromObject","toPrimitive","assertSize","size","alloc","fill","encoding","checked","allocUnsafeSlow","string","isEncoding","actual","write","slice","fromArrayLike","array","arrayView","copy","obj","numberIsNaN","type","isArray","data","toString","_isBuffer","compare","a","x","y","min","String","toLowerCase","concat","list","pos","set","call","mustMatch","arguments","loweredCase","utf8ToBytes","base64ToBytes","slowToString","hexSlice","utf8Slice","asciiSlice","latin1Slice","base64Slice","utf16leSlice","swap","n","swap16","swap32","swap64","apply","toLocaleString","equals","inspect","str","max","INSPECT_MAX_BYTES","replace","trim","target","thisStart","thisEnd","thisCopy","targetCopy","bidirectionalIndexOf","val","dir","arrayIndexOf","lastIndexOf","indexSize","arrLength","valLength","read","readUInt16BE","foundIndex","found","j","includes","hexWrite","Number","remaining","strLen","parsed","parseInt","substr","utf8Write","blitBuffer","asciiWrite","asciiToBytes","base64Write","ucs2Write","utf16leToBytes","isFinite","toJSON","_arr","base64","res","firstByte","codePoint","bytesPerSequence","secondByte","thirdByte","fourthByte","tempCodePoint","decodeCodePointsArray","MAX_ARGUMENTS_LENGTH","codePoints","fromCharCode","ret","out","hexSliceLookupTable","bytes","newBuf","subarray","checkOffset","ext","readUintLE","readUIntLE","noAssert","mul","readUintBE","readUIntBE","readUint8","readUInt8","readUint16LE","readUInt16LE","readUint16BE","readUint32LE","readUInt32LE","readUint32BE","readUInt32BE","readIntLE","readIntBE","readInt8","readInt16LE","readInt16BE","readInt32LE","readInt32BE","readFloatLE","ieee754","readFloatBE","readDoubleLE","readDoubleBE","checkInt","writeUintLE","writeUIntLE","maxBytes","writeUintBE","writeUIntBE","writeUint8","writeUInt8","writeUint16LE","writeUInt16LE","writeUint16BE","writeUInt16BE","writeUint32LE","writeUInt32LE","writeUint32BE","writeUInt32BE","writeIntLE","limit","sub","writeIntBE","writeInt8","writeInt16LE","writeInt16BE","writeInt32LE","writeInt32BE","checkIEEE754","writeFloat","littleEndian","writeFloatLE","writeFloatBE","writeDouble","writeDoubleLE","writeDoubleBE","targetStart","copyWithin","INVALID_BASE64_RE","base64clean","split","units","leadSurrogate","byteArray","hi","lo","src","dst","constructor","name","alphabet","table","i16","extendStatics","__proto__","p","hasOwnProperty","__extends","__","create","__assign","assign","t","BSON_INT32_MAX","BSON_INT32_MIN","BSON_INT64_MAX","BSON_INT64_MIN","EJSON","bsonMap","calculateObjectSize","constants.JS_INT_MIN","constants.JS_INT_MAX","constants.BSON_INT32_MIN","constants.BSON_INT32_MAX","deserialize","constants.BSON_DATA_STRING","constants.BSON_DATA_OID","constants.BSON_DATA_INT","constants.BSON_DATA_NUMBER","constants.BSON_DATA_DATE","constants.BSON_DATA_BOOLEAN","constants.BSON_DATA_OBJECT","constants.BSON_DATA_ARRAY","constants.BSON_DATA_UNDEFINED","constants.BSON_DATA_NULL","constants.BSON_DATA_LONG","constants.BSON_DATA_DECIMAL128","constants.BSON_DATA_BINARY","constants.BSON_BINARY_SUBTYPE_UUID_NEW","constants.BSON_DATA_REGEXP","constants.BSON_DATA_SYMBOL","constants.BSON_DATA_TIMESTAMP","constants.BSON_DATA_MIN_KEY","constants.BSON_DATA_MAX_KEY","constants.BSON_DATA_CODE","constants.BSON_DATA_CODE_W_SCOPE","constants.BSON_DATA_DBPOINTER","constants.BSON_BINARY_SUBTYPE_DEFAULT","Map","internalSerialize","internalDeserialize","internalCalculateObjectSize"],"mappings":"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AAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC,EAAE,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,CAC/oC,EACD,EAAE,CACH,CAAC,OAAqC,CAAC;EACzC;CAAC,WAAM;;EAEP;CAED,IAAM,cAAc,GAAG,CAAC,IAAI,EAAE,CAAC;CAC/B,IAAM,cAAc,GAAG,CAAC,IAAI,EAAE,CAAC;CAC/B,IAAM,cAAc,GAAG,cAAc,GAAG,cAAc,CAAC;CACvD,IAAM,cAAc,GAAG,cAAc,GAAG,cAAc,CAAC;CACvD,IAAM,cAAc,GAAG,cAAc,GAAG,CAAC,CAAC;CAE1C;CACA,IAAM,SAAS,GAA4B,EAAE,CAAC;CAE9C;CACA,IAAM,UAAU,GAA4B,EAAE,CAAC;CAO/C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KAqDE,cAAY,GAAiC,EAAE,IAAuB,EAAE,QAAkB;SAA9E,oBAAA,EAAA,OAAiC;SAC3C,IAAI,EAAE,IAAI,YAAY,IAAI,CAAC;aAAE,OAAO,IAAI,IAAI,CAAC,GAAG,EAAE,IAAI,EAAE,QAAQ,CAAC,CAAC;SAElE,IAAI,OAAO,GAAG,KAAK,QAAQ,EAAE;aAC3B,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,IAAI,CAAC,UAAU,CAAC,GAAG,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC;UACnD;cAAM,IAAI,OAAO,GAAG,KAAK,QAAQ,EAAE;aAClC,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,IAAI,CAAC,UAAU,CAAC,GAAG,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC;UACnD;cAAM;aACL,IAAI,CAAC,GAAG,GAAG,GAAG,GAAG,CAAC,CAAC;aACnB,IAAI,CAAC,IAAI,GAAI,IAAe,GAAG,CAAC,CAAC;aACjC,IAAI,CAAC,QAAQ,GAAG,CAAC,CAAC,QAAQ,CAAC;UAC5B;SAED,MAAM,CAAC,cAAc,CAAC,IAAI,EAAE,YAAY,EAAE;aACxC,KAAK,EAAE,IAAI;aACX,YAAY,EAAE,KAAK;aACnB,QAAQ,EAAE,KAAK;aACf,UAAU,EAAE,KAAK;UAClB,CAAC,CAAC;MACJ;;;;;;;;;KA6BM,aAAQ,GAAf,UAAgB,OAAe,EAAE,QAAgB,EAAE,QAAkB;SACnE,OAAO,IAAI,IAAI,CAAC,OAAO,EAAE,QAAQ,EAAE,QAAQ,CAAC,CAAC;MAC9C;;;;;;;KAQM,YAAO,GAAd,UAAe,KAAa,EAAE,QAAkB;SAC9C,IAAI,GAAG,EAAE,SAAS,EAAE,KAAK,CAAC;SAC1B,IAAI,QAAQ,EAAE;aACZ,KAAK,MAAM,CAAC,CAAC;aACb,KAAK,KAAK,GAAG,CAAC,IAAI,KAAK,IAAI,KAAK,GAAG,GAAG,GAAG;iBACvC,SAAS,GAAG,UAAU,CAAC,KAAK,CAAC,CAAC;iBAC9B,IAAI,SAAS;qBAAE,OAAO,SAAS,CAAC;cACjC;aACD,GAAG,GAAG,IAAI,CAAC,QAAQ,CAAC,KAAK,EAAE,CAAC,KAAK,GAAG,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,EAAE,IAAI,CAAC,CAAC;aAC3D,IAAI,KAAK;iBAAE,UAAU,CAAC,KAAK,CAAC,GAAG,GAAG,CAAC;aACnC,OAAO,GAAG,CAAC;UACZ;cAAM;aACL,KAAK,IAAI,CAAC,CAAC;aACX,KAAK,KAAK,GAAG,CAAC,GAAG,IAAI,KAAK,IAAI,KAAK,GAAG,GAAG,GAAG;iBAC1C,SAAS,GAAG,SAAS,CAAC,KAAK,CAAC,CAAC;iBAC7B,IAAI,SAAS;qBAAE,OAAO,SAAS,CAAC;cACjC;aACD,GAAG,GAAG,IAAI,CAAC,QAAQ,CAAC,KAAK,EAAE,KAAK,GAAG,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,EAAE,KAAK,CAAC,CAAC;aACtD,IAAI,KAAK;iBAAE,SAAS,CAAC,KAAK,CAAC,GAAG,GAAG,CAAC;aAClC,OAAO,GAAG,CAAC;UACZ;MACF;;;;;;;KAQM,eAAU,GAAjB,UAAkB,KAAa,EAAE,QAAkB;SACjD,IAAI,KAAK,CAAC,KAAK,CAAC;aAAE,OAAO,QAAQ,GAAG,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,IAAI,CAAC;SAC3D,IAAI,QAAQ,EAAE;aACZ,IAAI,KAAK,GAAG,CAAC;iBAAE,OAAO,IAAI,CAAC,KAAK,CAAC;aACjC,IAAI,KAAK,IAAI,cAAc;iBAAE,OAAO,IAAI,CAAC,kBAAkB,CAAC;UAC7D;cAAM;aACL,IAAI,KAAK,IAAI,CAAC,cAAc;iBAAE,OAAO,IAAI,CAAC,SAAS,CAAC;aACpD,IAAI,KAAK,GAAG,CAAC,IAAI,cAAc;iBAAE,OAAO,IAAI,CAAC,SAAS,CAAC;UACxD;SACD,IAAI,KAAK,GAAG,CAAC;aAAE,OAAO,IAAI,CAAC,UAAU,CAAC,CAAC,KAAK,EAAE,QAAQ,CAAC,CAAC,GAAG,EAAE,CAAC;SAC9D,OAAO,IAAI,CAAC,QAAQ,CAAC,KAAK,GAAG,cAAc,GAAG,CAAC,EAAE,CAAC,KAAK,GAAG,cAAc,IAAI,CAAC,EAAE,QAAQ,CAAC,CAAC;MAC1F;;;;;;;KAQM,eAAU,GAAjB,UAAkB,KAAa,EAAE,QAAkB;SACjD,OAAO,IAAI,CAAC,UAAU,CAAC,KAAK,CAAC,QAAQ,EAAE,EAAE,QAAQ,CAAC,CAAC;MACpD;;;;;;;;KASM,eAAU,GAAjB,UAAkB,GAAW,EAAE,QAAkB,EAAE,KAAc;SAC/D,IAAI,GAAG,CAAC,MAAM,KAAK,CAAC;aAAE,MAAM,KAAK,CAAC,cAAc,CAAC,CAAC;SAClD,IAAI,GAAG,KAAK,KAAK,IAAI,GAAG,KAAK,UAAU,IAAI,GAAG,KAAK,WAAW,IAAI,GAAG,KAAK,WAAW;aACnF,OAAO,IAAI,CAAC,IAAI,CAAC;SACnB,IAAI,OAAO,QAAQ,KAAK,QAAQ,EAAE;;aAEhC,CAAC,KAAK,GAAG,QAAQ,IAAI,QAAQ,GAAG,KAAK,CAAC,CAAC;UACxC;cAAM;aACL,QAAQ,GAAG,CAAC,CAAC,QAAQ,CAAC;UACvB;SACD,KAAK,GAAG,KAAK,IAAI,EAAE,CAAC;SACpB,IAAI,KAAK,GAAG,CAAC,IAAI,EAAE,GAAG,KAAK;aAAE,MAAM,UAAU,CAAC,OAAO,CAAC,CAAC;SAEvD,IAAI,CAAC,CAAC;SACN,IAAI,CAAC,CAAC,GAAG,GAAG,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,CAAC;aAAE,MAAM,KAAK,CAAC,iBAAiB,CAAC,CAAC;cAC1D,IAAI,CAAC,KAAK,CAAC,EAAE;aAChB,OAAO,IAAI,CAAC,UAAU,CAAC,GAAG,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,QAAQ,EAAE,KAAK,CAAC,CAAC,GAAG,EAAE,CAAC;UACjE;;;SAID,IAAM,YAAY,GAAG,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,GAAG,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC,CAAC;SAEzD,IAAI,MAAM,GAAG,IAAI,CAAC,IAAI,CAAC;SACvB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,GAAG,CAAC,MAAM,EAAE,CAAC,IAAI,CAAC,EAAE;aACtC,IAAM,IAAI,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE,GAAG,CAAC,MAAM,GAAG,CAAC,CAAC,EACtC,KAAK,GAAG,QAAQ,CAAC,GAAG,CAAC,SAAS,CAAC,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,EAAE,KAAK,CAAC,CAAC;aACtD,IAAI,IAAI,GAAG,CAAC,EAAE;iBACZ,IAAM,KAAK,GAAG,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,GAAG,CAAC,KAAK,EAAE,IAAI,CAAC,CAAC,CAAC;iBACrD,MAAM,GAAG,MAAM,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,UAAU,CAAC,KAAK,CAAC,CAAC,CAAC;cACxD;kBAAM;iBACL,MAAM,GAAG,MAAM,CAAC,GAAG,CAAC,YAAY,CAAC,CAAC;iBAClC,MAAM,GAAG,MAAM,CAAC,GAAG,CAAC,IAAI,CAAC,UAAU,CAAC,KAAK,CAAC,CAAC,CAAC;cAC7C;UACF;SACD,MAAM,CAAC,QAAQ,GAAG,QAAQ,CAAC;SAC3B,OAAO,MAAM,CAAC;MACf;;;;;;;;KASM,cAAS,GAAhB,UAAiB,KAAe,EAAE,QAAkB,EAAE,EAAY;SAChE,OAAO,EAAE,GAAG,IAAI,CAAC,WAAW,CAAC,KAAK,EAAE,QAAQ,CAAC,GAAG,IAAI,CAAC,WAAW,CAAC,KAAK,EAAE,QAAQ,CAAC,CAAC;MACnF;;;;;;;KAQM,gBAAW,GAAlB,UAAmB,KAAe,EAAE,QAAkB;SACpD,OAAO,IAAI,IAAI,CACb,KAAK,CAAC,CAAC,CAAC,IAAI,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,IAAI,KAAK,CAAC,CAAC,CAAC,IAAI,EAAE,CAAC,IAAI,KAAK,CAAC,CAAC,CAAC,IAAI,EAAE,CAAC,EAChE,KAAK,CAAC,CAAC,CAAC,IAAI,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,IAAI,KAAK,CAAC,CAAC,CAAC,IAAI,EAAE,CAAC,IAAI,KAAK,CAAC,CAAC,CAAC,IAAI,EAAE,CAAC,EAChE,QAAQ,CACT,CAAC;MACH;;;;;;;KAQM,gBAAW,GAAlB,UAAmB,KAAe,EAAE,QAAkB;SACpD,OAAO,IAAI,IAAI,CACb,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,EAAE,KAAK,KAAK,CAAC,CAAC,CAAC,IAAI,EAAE,CAAC,IAAI,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,EAChE,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,EAAE,KAAK,KAAK,CAAC,CAAC,CAAC,IAAI,EAAE,CAAC,IAAI,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,EAChE,QAAQ,CACT,CAAC;MACH;;;;KAKM,WAAM,GAAb,UAAc,KAAc;SAC1B,OAAO,YAAY,CAAC,KAAK,CAAC,IAAI,KAAK,CAAC,YAAY,CAAC,KAAK,IAAI,CAAC;MAC5D;;;;;KAMM,cAAS,GAAhB,UACE,GAAwE,EACxE,QAAkB;SAElB,IAAI,OAAO,GAAG,KAAK,QAAQ;aAAE,OAAO,IAAI,CAAC,UAAU,CAAC,GAAG,EAAE,QAAQ,CAAC,CAAC;SACnE,IAAI,OAAO,GAAG,KAAK,QAAQ;aAAE,OAAO,IAAI,CAAC,UAAU,CAAC,GAAG,EAAE,QAAQ,CAAC,CAAC;;SAEnE,OAAO,IAAI,CAAC,QAAQ,CAClB,GAAG,CAAC,GAAG,EACP,GAAG,CAAC,IAAI,EACR,OAAO,QAAQ,KAAK,SAAS,GAAG,QAAQ,GAAG,GAAG,CAAC,QAAQ,CACxD,CAAC;MACH;;KAGD,kBAAG,GAAH,UAAI,MAA0C;SAC5C,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC;aAAE,MAAM,GAAG,IAAI,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC;;SAI1D,IAAM,GAAG,GAAG,IAAI,CAAC,IAAI,KAAK,EAAE,CAAC;SAC7B,IAAM,GAAG,GAAG,IAAI,CAAC,IAAI,GAAG,MAAM,CAAC;SAC/B,IAAM,GAAG,GAAG,IAAI,CAAC,GAAG,KAAK,EAAE,CAAC;SAC5B,IAAM,GAAG,GAAG,IAAI,CAAC,GAAG,GAAG,MAAM,CAAC;SAE9B,IAAM,GAAG,GAAG,MAAM,CAAC,IAAI,KAAK,EAAE,CAAC;SAC/B,IAAM,GAAG,GAAG,MAAM,CAAC,IAAI,GAAG,MAAM,CAAC;SACjC,IAAM,GAAG,GAAG,MAAM,CAAC,GAAG,KAAK,EAAE,CAAC;SAC9B,IAAM,GAAG,GAAG,MAAM,CAAC,GAAG,GAAG,MAAM,CAAC;SAEhC,IAAI,GAAG,GAAG,CAAC,EACT,GAAG,GAAG,CAAC,EACP,GAAG,GAAG,CAAC,EACP,GAAG,GAAG,CAAC,CAAC;SACV,GAAG,IAAI,GAAG,GAAG,GAAG,CAAC;SACjB,GAAG,IAAI,GAAG,KAAK,EAAE,CAAC;SAClB,GAAG,IAAI,MAAM,CAAC;SACd,GAAG,IAAI,GAAG,GAAG,GAAG,CAAC;SACjB,GAAG,IAAI,GAAG,KAAK,EAAE,CAAC;SAClB,GAAG,IAAI,MAAM,CAAC;SACd,GAAG,IAAI,GAAG,GAAG,GAAG,CAAC;SACjB,GAAG,IAAI,GAAG,KAAK,EAAE,CAAC;SAClB,GAAG,IAAI,MAAM,CAAC;SACd,GAAG,IAAI,GAAG,GAAG,GAAG,CAAC;SACjB,GAAG,IAAI,MAAM,CAAC;SACd,OAAO,IAAI,CAAC,QAAQ,CAAC,CAAC,GAAG,IAAI,EAAE,IAAI,GAAG,EAAE,CAAC,GAAG,IAAI,EAAE,IAAI,GAAG,EAAE,IAAI,CAAC,QAAQ,CAAC,CAAC;MAC3E;;;;;KAMD,kBAAG,GAAH,UAAI,KAAyC;SAC3C,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC;aAAE,KAAK,GAAG,IAAI,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC;SACvD,OAAO,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,GAAG,GAAG,KAAK,CAAC,GAAG,EAAE,IAAI,CAAC,IAAI,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,QAAQ,CAAC,CAAC;MACnF;;;;;KAMD,sBAAO,GAAP,UAAQ,KAAyC;SAC/C,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC;aAAE,KAAK,GAAG,IAAI,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC;SACvD,IAAI,IAAI,CAAC,EAAE,CAAC,KAAK,CAAC;aAAE,OAAO,CAAC,CAAC;SAC7B,IAAM,OAAO,GAAG,IAAI,CAAC,UAAU,EAAE,EAC/B,QAAQ,GAAG,KAAK,CAAC,UAAU,EAAE,CAAC;SAChC,IAAI,OAAO,IAAI,CAAC,QAAQ;aAAE,OAAO,CAAC,CAAC,CAAC;SACpC,IAAI,CAAC,OAAO,IAAI,QAAQ;aAAE,OAAO,CAAC,CAAC;;SAEnC,IAAI,CAAC,IAAI,CAAC,QAAQ;aAAE,OAAO,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,UAAU,EAAE,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC;;SAEjE,OAAO,KAAK,CAAC,IAAI,KAAK,CAAC,GAAG,IAAI,CAAC,IAAI,KAAK,CAAC;cACtC,KAAK,CAAC,IAAI,KAAK,IAAI,CAAC,IAAI,IAAI,KAAK,CAAC,GAAG,KAAK,CAAC,GAAG,IAAI,CAAC,GAAG,KAAK,CAAC,CAAC;eAC5D,CAAC,CAAC;eACF,CAAC,CAAC;MACP;;KAGD,mBAAI,GAAJ,UAAK,KAAyC;SAC5C,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC;MAC5B;;;;;KAMD,qBAAM,GAAN,UAAO,OAA2C;SAChD,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC;aAAE,OAAO,GAAG,IAAI,CAAC,SAAS,CAAC,OAAO,CAAC,CAAC;SAC7D,IAAI,OAAO,CAAC,MAAM,EAAE;aAAE,MAAM,KAAK,CAAC,kBAAkB,CAAC,CAAC;;SAGtD,IAAI,IAAI,EAAE;;;;aAIR,IACE,CAAC,IAAI,CAAC,QAAQ;iBACd,IAAI,CAAC,IAAI,KAAK,CAAC,UAAU;iBACzB,OAAO,CAAC,GAAG,KAAK,CAAC,CAAC;iBAClB,OAAO,CAAC,IAAI,KAAK,CAAC,CAAC,EACnB;;iBAEA,OAAO,IAAI,CAAC;cACb;aACD,IAAM,GAAG,GAAG,CAAC,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,EAClD,IAAI,CAAC,GAAG,EACR,IAAI,CAAC,IAAI,EACT,OAAO,CAAC,GAAG,EACX,OAAO,CAAC,IAAI,CACb,CAAC;aACF,OAAO,IAAI,CAAC,QAAQ,CAAC,GAAG,EAAE,IAAI,CAAC,QAAQ,EAAE,EAAE,IAAI,CAAC,QAAQ,CAAC,CAAC;UAC3D;SAED,IAAI,IAAI,CAAC,MAAM,EAAE;aAAE,OAAO,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,IAAI,CAAC;SACjE,IAAI,MAAM,EAAE,GAAG,EAAE,GAAG,CAAC;SACrB,IAAI,CAAC,IAAI,CAAC,QAAQ,EAAE;;;aAGlB,IAAI,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC,SAAS,CAAC,EAAE;iBAC3B,IAAI,OAAO,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG,CAAC,IAAI,OAAO,CAAC,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC;qBAAE,OAAO,IAAI,CAAC,SAAS,CAAC;;sBAEvE,IAAI,OAAO,CAAC,EAAE,CAAC,IAAI,CAAC,SAAS,CAAC;qBAAE,OAAO,IAAI,CAAC,GAAG,CAAC;sBAChD;;qBAEH,IAAM,QAAQ,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;qBAC7B,MAAM,GAAG,QAAQ,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;qBACtC,IAAI,MAAM,CAAC,EAAE,CAAC,IAAI,CAAC,IAAI,CAAC,EAAE;yBACxB,OAAO,OAAO,CAAC,UAAU,EAAE,GAAG,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,OAAO,CAAC;sBACvD;0BAAM;yBACL,GAAG,GAAG,IAAI,CAAC,GAAG,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,CAAC;yBACpC,GAAG,GAAG,MAAM,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC,CAAC;yBACnC,OAAO,GAAG,CAAC;sBACZ;kBACF;cACF;kBAAM,IAAI,OAAO,CAAC,EAAE,CAAC,IAAI,CAAC,SAAS,CAAC;iBAAE,OAAO,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,IAAI,CAAC;aACrF,IAAI,IAAI,CAAC,UAAU,EAAE,EAAE;iBACrB,IAAI,OAAO,CAAC,UAAU,EAAE;qBAAE,OAAO,IAAI,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC;iBAC/D,OAAO,IAAI,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC,GAAG,EAAE,CAAC;cACtC;kBAAM,IAAI,OAAO,CAAC,UAAU,EAAE;iBAAE,OAAO,IAAI,CAAC,GAAG,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC,GAAG,EAAE,CAAC;aACtE,GAAG,GAAG,IAAI,CAAC,IAAI,CAAC;UACjB;cAAM;;;aAGL,IAAI,CAAC,OAAO,CAAC,QAAQ;iBAAE,OAAO,GAAG,OAAO,CAAC,UAAU,EAAE,CAAC;aACtD,IAAI,OAAO,CAAC,EAAE,CAAC,IAAI,CAAC;iBAAE,OAAO,IAAI,CAAC,KAAK,CAAC;aACxC,IAAI,OAAO,CAAC,EAAE,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;;iBAE1B,OAAO,IAAI,CAAC,IAAI,CAAC;aACnB,GAAG,GAAG,IAAI,CAAC,KAAK,CAAC;UAClB;;;;;;;SAQD,GAAG,GAAG,IAAI,CAAC;SACX,OAAO,GAAG,CAAC,GAAG,CAAC,OAAO,CAAC,EAAE;;;aAGvB,MAAM,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,QAAQ,EAAE,GAAG,OAAO,CAAC,QAAQ,EAAE,CAAC,CAAC,CAAC;;;aAItE,IAAM,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC;aACpD,IAAM,KAAK,GAAG,IAAI,IAAI,EAAE,GAAG,CAAC,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE,IAAI,GAAG,EAAE,CAAC,CAAC;;;aAGtD,IAAI,SAAS,GAAG,IAAI,CAAC,UAAU,CAAC,MAAM,CAAC,CAAC;aACxC,IAAI,SAAS,GAAG,SAAS,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC;aACvC,OAAO,SAAS,CAAC,UAAU,EAAE,IAAI,SAAS,CAAC,EAAE,CAAC,GAAG,CAAC,EAAE;iBAClD,MAAM,IAAI,KAAK,CAAC;iBAChB,SAAS,GAAG,IAAI,CAAC,UAAU,CAAC,MAAM,EAAE,IAAI,CAAC,QAAQ,CAAC,CAAC;iBACnD,SAAS,GAAG,SAAS,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC;cACpC;;;aAID,IAAI,SAAS,CAAC,MAAM,EAAE;iBAAE,SAAS,GAAG,IAAI,CAAC,GAAG,CAAC;aAE7C,GAAG,GAAG,GAAG,CAAC,GAAG,CAAC,SAAS,CAAC,CAAC;aACzB,GAAG,GAAG,GAAG,CAAC,GAAG,CAAC,SAAS,CAAC,CAAC;UAC1B;SACD,OAAO,GAAG,CAAC;MACZ;;KAGD,kBAAG,GAAH,UAAI,OAA2C;SAC7C,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;MAC7B;;;;;KAMD,qBAAM,GAAN,UAAO,KAAyC;SAC9C,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC;aAAE,KAAK,GAAG,IAAI,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC;SACvD,IAAI,IAAI,CAAC,QAAQ,KAAK,KAAK,CAAC,QAAQ,IAAI,IAAI,CAAC,IAAI,KAAK,EAAE,KAAK,CAAC,IAAI,KAAK,CAAC,IAAI,KAAK,EAAE,KAAK,CAAC;aACvF,OAAO,KAAK,CAAC;SACf,OAAO,IAAI,CAAC,IAAI,KAAK,KAAK,CAAC,IAAI,IAAI,IAAI,CAAC,GAAG,KAAK,KAAK,CAAC,GAAG,CAAC;MAC3D;;KAGD,iBAAE,GAAF,UAAG,KAAyC;SAC1C,OAAO,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;MAC3B;;KAGD,0BAAW,GAAX;SACE,OAAO,IAAI,CAAC,IAAI,CAAC;MAClB;;KAGD,kCAAmB,GAAnB;SACE,OAAO,IAAI,CAAC,IAAI,KAAK,CAAC,CAAC;MACxB;;KAGD,yBAAU,GAAV;SACE,OAAO,IAAI,CAAC,GAAG,CAAC;MACjB;;KAGD,iCAAkB,GAAlB;SACE,OAAO,IAAI,CAAC,GAAG,KAAK,CAAC,CAAC;MACvB;;KAGD,4BAAa,GAAb;SACE,IAAI,IAAI,CAAC,UAAU,EAAE,EAAE;;aAErB,OAAO,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC,SAAS,CAAC,GAAG,EAAE,GAAG,IAAI,CAAC,GAAG,EAAE,CAAC,aAAa,EAAE,CAAC;UAClE;SACD,IAAM,GAAG,GAAG,IAAI,CAAC,IAAI,KAAK,CAAC,GAAG,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,GAAG,CAAC;SACnD,IAAI,GAAW,CAAC;SAChB,KAAK,GAAG,GAAG,EAAE,EAAE,GAAG,GAAG,CAAC,EAAE,GAAG,EAAE;aAAE,IAAI,CAAC,GAAG,IAAI,CAAC,IAAI,GAAG,CAAC,MAAM,CAAC;iBAAE,MAAM;SACnE,OAAO,IAAI,CAAC,IAAI,KAAK,CAAC,GAAG,GAAG,GAAG,EAAE,GAAG,GAAG,GAAG,CAAC,CAAC;MAC7C;;KAGD,0BAAW,GAAX,UAAY,KAAyC;SACnD,OAAO,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;MAC7B;;KAGD,iBAAE,GAAF,UAAG,KAAyC;SAC1C,OAAO,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC;MAChC;;KAGD,iCAAkB,GAAlB,UAAmB,KAAyC;SAC1D,OAAO,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;MAC9B;;KAGD,kBAAG,GAAH,UAAI,KAAyC;SAC3C,OAAO,IAAI,CAAC,kBAAkB,CAAC,KAAK,CAAC,CAAC;MACvC;;KAED,iBAAE,GAAF,UAAG,KAAyC;SAC1C,OAAO,IAAI,CAAC,kBAAkB,CAAC,KAAK,CAAC,CAAC;MACvC;;KAGD,qBAAM,GAAN;SACE,OAAO,CAAC,IAAI,CAAC,GAAG,GAAG,CAAC,MAAM,CAAC,CAAC;MAC7B;;KAGD,yBAAU,GAAV;SACE,OAAO,CAAC,IAAI,CAAC,QAAQ,IAAI,IAAI,CAAC,IAAI,GAAG,CAAC,CAAC;MACxC;;KAGD,oBAAK,GAAL;SACE,OAAO,CAAC,IAAI,CAAC,GAAG,GAAG,CAAC,MAAM,CAAC,CAAC;MAC7B;;KAGD,yBAAU,GAAV;SACE,OAAO,IAAI,CAAC,QAAQ,IAAI,IAAI,CAAC,IAAI,IAAI,CAAC,CAAC;MACxC;;KAGD,qBAAM,GAAN;SACE,OAAO,IAAI,CAAC,IAAI,KAAK,CAAC,IAAI,IAAI,CAAC,GAAG,KAAK,CAAC,CAAC;MAC1C;;KAGD,uBAAQ,GAAR,UAAS,KAAyC;SAChD,OAAO,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;MAC7B;;KAGD,iBAAE,GAAF,UAAG,KAAyC;SAC1C,OAAO,IAAI,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC;MAC7B;;KAGD,8BAAe,GAAf,UAAgB,KAAyC;SACvD,OAAO,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;MAC9B;;KAGD,kBAAG,GAAH,UAAI,KAAyC;SAC3C,OAAO,IAAI,CAAC,eAAe,CAAC,KAAK,CAAC,CAAC;MACpC;;KAGD,qBAAM,GAAN,UAAO,OAA2C;SAChD,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC;aAAE,OAAO,GAAG,IAAI,CAAC,SAAS,CAAC,OAAO,CAAC,CAAC;;SAG7D,IAAI,IAAI,EAAE;aACR,IAAM,GAAG,GAAG,CAAC,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,EAClD,IAAI,CAAC,GAAG,EACR,IAAI,CAAC,IAAI,EACT,OAAO,CAAC,GAAG,EACX,OAAO,CAAC,IAAI,CACb,CAAC;aACF,OAAO,IAAI,CAAC,QAAQ,CAAC,GAAG,EAAE,IAAI,CAAC,QAAQ,EAAE,EAAE,IAAI,CAAC,QAAQ,CAAC,CAAC;UAC3D;SAED,OAAO,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC,CAAC;MACjD;;KAGD,kBAAG,GAAH,UAAI,OAA2C;SAC7C,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;MAC7B;;KAED,kBAAG,GAAH,UAAI,OAA2C;SAC7C,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;MAC7B;;;;;;KAOD,uBAAQ,GAAR,UAAS,UAA8C;SACrD,IAAI,IAAI,CAAC,MAAM,EAAE;aAAE,OAAO,IAAI,CAAC,IAAI,CAAC;SACpC,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,UAAU,CAAC;aAAE,UAAU,GAAG,IAAI,CAAC,SAAS,CAAC,UAAU,CAAC,CAAC;;SAGtE,IAAI,IAAI,EAAE;aACR,IAAM,GAAG,GAAG,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,GAAG,EAAE,IAAI,CAAC,IAAI,EAAE,UAAU,CAAC,GAAG,EAAE,UAAU,CAAC,IAAI,CAAC,CAAC;aAC3E,OAAO,IAAI,CAAC,QAAQ,CAAC,GAAG,EAAE,IAAI,CAAC,QAAQ,EAAE,EAAE,IAAI,CAAC,QAAQ,CAAC,CAAC;UAC3D;SAED,IAAI,UAAU,CAAC,MAAM,EAAE;aAAE,OAAO,IAAI,CAAC,IAAI,CAAC;SAC1C,IAAI,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC,SAAS,CAAC;aAAE,OAAO,UAAU,CAAC,KAAK,EAAE,GAAG,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC,IAAI,CAAC;SACpF,IAAI,UAAU,CAAC,EAAE,CAAC,IAAI,CAAC,SAAS,CAAC;aAAE,OAAO,IAAI,CAAC,KAAK,EAAE,GAAG,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC,IAAI,CAAC;SAEpF,IAAI,IAAI,CAAC,UAAU,EAAE,EAAE;aACrB,IAAI,UAAU,CAAC,UAAU,EAAE;iBAAE,OAAO,IAAI,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,UAAU,CAAC,GAAG,EAAE,CAAC,CAAC;;iBAChE,OAAO,IAAI,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC,GAAG,EAAE,CAAC;UAC9C;cAAM,IAAI,UAAU,CAAC,UAAU,EAAE;aAAE,OAAO,IAAI,CAAC,GAAG,CAAC,UAAU,CAAC,GAAG,EAAE,CAAC,CAAC,GAAG,EAAE,CAAC;;SAG5E,IAAI,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC,UAAU,CAAC,IAAI,UAAU,CAAC,EAAE,CAAC,IAAI,CAAC,UAAU,CAAC;aAC5D,OAAO,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,QAAQ,EAAE,GAAG,UAAU,CAAC,QAAQ,EAAE,EAAE,IAAI,CAAC,QAAQ,CAAC,CAAC;;;SAKjF,IAAM,GAAG,GAAG,IAAI,CAAC,IAAI,KAAK,EAAE,CAAC;SAC7B,IAAM,GAAG,GAAG,IAAI,CAAC,IAAI,GAAG,MAAM,CAAC;SAC/B,IAAM,GAAG,GAAG,IAAI,CAAC,GAAG,KAAK,EAAE,CAAC;SAC5B,IAAM,GAAG,GAAG,IAAI,CAAC,GAAG,GAAG,MAAM,CAAC;SAE9B,IAAM,GAAG,GAAG,UAAU,CAAC,IAAI,KAAK,EAAE,CAAC;SACnC,IAAM,GAAG,GAAG,UAAU,CAAC,IAAI,GAAG,MAAM,CAAC;SACrC,IAAM,GAAG,GAAG,UAAU,CAAC,GAAG,KAAK,EAAE,CAAC;SAClC,IAAM,GAAG,GAAG,UAAU,CAAC,GAAG,GAAG,MAAM,CAAC;SAEpC,IAAI,GAAG,GAAG,CAAC,EACT,GAAG,GAAG,CAAC,EACP,GAAG,GAAG,CAAC,EACP,GAAG,GAAG,CAAC,CAAC;SACV,GAAG,IAAI,GAAG,GAAG,GAAG,CAAC;SACjB,GAAG,IAAI,GAAG,KAAK,EAAE,CAAC;SAClB,GAAG,IAAI,MAAM,CAAC;SACd,GAAG,IAAI,GAAG,GAAG,GAAG,CAAC;SACjB,GAAG,IAAI,GAAG,KAAK,EAAE,CAAC;SAClB,GAAG,IAAI,MAAM,CAAC;SACd,GAAG,IAAI,GAAG,GAAG,GAAG,CAAC;SACjB,GAAG,IAAI,GAAG,KAAK,EAAE,CAAC;SAClB,GAAG,IAAI,MAAM,CAAC;SACd,GAAG,IAAI,GAAG,GAAG,GAAG,CAAC;SACjB,GAAG,IAAI,GAAG,KAAK,EAAE,CAAC;SAClB,GAAG,IAAI,MAAM,CAAC;SACd,GAAG,IAAI,GAAG,GAAG,GAAG,CAAC;SACjB,GAAG,IAAI,GAAG,KAAK,EAAE,CAAC;SAClB,GAAG,IAAI,MAAM,CAAC;SACd,GAAG,IAAI,GAAG,GAAG,GAAG,CAAC;SACjB,GAAG,IAAI,GAAG,KAAK,EAAE,CAAC;SAClB,GAAG,IAAI,MAAM,CAAC;SACd,GAAG,IAAI,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,CAAC;SACrD,GAAG,IAAI,MAAM,CAAC;SACd,OAAO,IAAI,CAAC,QAAQ,CAAC,CAAC,GAAG,IAAI,EAAE,IAAI,GAAG,EAAE,CAAC,GAAG,IAAI,EAAE,IAAI,GAAG,EAAE,IAAI,CAAC,QAAQ,CAAC,CAAC;MAC3E;;KAGD,kBAAG,GAAH,UAAI,UAA8C;SAChD,OAAO,IAAI,CAAC,QAAQ,CAAC,UAAU,CAAC,CAAC;MAClC;;KAGD,qBAAM,GAAN;SACE,IAAI,CAAC,IAAI,CAAC,QAAQ,IAAI,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC,SAAS,CAAC;aAAE,OAAO,IAAI,CAAC,SAAS,CAAC;SACrE,OAAO,IAAI,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;MACjC;;KAGD,kBAAG,GAAH;SACE,OAAO,IAAI,CAAC,MAAM,EAAE,CAAC;MACtB;;KAGD,kBAAG,GAAH;SACE,OAAO,IAAI,CAAC,QAAQ,CAAC,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,QAAQ,CAAC,CAAC;MAC5D;;KAGD,wBAAS,GAAT,UAAU,KAAyC;SACjD,OAAO,CAAC,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;MAC5B;;KAGD,kBAAG,GAAH,UAAI,KAAyC;SAC3C,OAAO,IAAI,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC;MAC9B;;KAED,iBAAE,GAAF,UAAG,KAAyC;SAC1C,OAAO,IAAI,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC;MAC9B;;;;KAKD,iBAAE,GAAF,UAAG,KAA6B;SAC9B,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC;aAAE,KAAK,GAAG,IAAI,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC;SACvD,OAAO,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,GAAG,GAAG,KAAK,CAAC,GAAG,EAAE,IAAI,CAAC,IAAI,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,QAAQ,CAAC,CAAC;MACnF;;;;;;KAOD,wBAAS,GAAT,UAAU,OAAsB;SAC9B,IAAI,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC;aAAE,OAAO,GAAG,OAAO,CAAC,KAAK,EAAE,CAAC;SACpD,IAAI,CAAC,OAAO,IAAI,EAAE,MAAM,CAAC;aAAE,OAAO,IAAI,CAAC;cAClC,IAAI,OAAO,GAAG,EAAE;aACnB,OAAO,IAAI,CAAC,QAAQ,CAClB,IAAI,CAAC,GAAG,IAAI,OAAO,EACnB,CAAC,IAAI,CAAC,IAAI,IAAI,OAAO,KAAK,IAAI,CAAC,GAAG,MAAM,EAAE,GAAG,OAAO,CAAC,CAAC,EACtD,IAAI,CAAC,QAAQ,CACd,CAAC;;aACC,OAAO,IAAI,CAAC,QAAQ,CAAC,CAAC,EAAE,IAAI,CAAC,GAAG,KAAK,OAAO,GAAG,EAAE,CAAC,EAAE,IAAI,CAAC,QAAQ,CAAC,CAAC;MACzE;;KAGD,kBAAG,GAAH,UAAI,OAAsB;SACxB,OAAO,IAAI,CAAC,SAAS,CAAC,OAAO,CAAC,CAAC;MAChC;;;;;;KAOD,yBAAU,GAAV,UAAW,OAAsB;SAC/B,IAAI,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC;aAAE,OAAO,GAAG,OAAO,CAAC,KAAK,EAAE,CAAC;SACpD,IAAI,CAAC,OAAO,IAAI,EAAE,MAAM,CAAC;aAAE,OAAO,IAAI,CAAC;cAClC,IAAI,OAAO,GAAG,EAAE;aACnB,OAAO,IAAI,CAAC,QAAQ,CAClB,CAAC,IAAI,CAAC,GAAG,KAAK,OAAO,KAAK,IAAI,CAAC,IAAI,KAAK,EAAE,GAAG,OAAO,CAAC,CAAC,EACtD,IAAI,CAAC,IAAI,IAAI,OAAO,EACpB,IAAI,CAAC,QAAQ,CACd,CAAC;;aACC,OAAO,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,KAAK,OAAO,GAAG,EAAE,CAAC,EAAE,IAAI,CAAC,IAAI,IAAI,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,EAAE,IAAI,CAAC,QAAQ,CAAC,CAAC;MAChG;;KAGD,kBAAG,GAAH,UAAI,OAAsB;SACxB,OAAO,IAAI,CAAC,UAAU,CAAC,OAAO,CAAC,CAAC;MACjC;;;;;;KAOD,iCAAkB,GAAlB,UAAmB,OAAsB;SACvC,IAAI,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC;aAAE,OAAO,GAAG,OAAO,CAAC,KAAK,EAAE,CAAC;SACpD,OAAO,IAAI,EAAE,CAAC;SACd,IAAI,OAAO,KAAK,CAAC;aAAE,OAAO,IAAI,CAAC;cAC1B;aACH,IAAM,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;aACvB,IAAI,OAAO,GAAG,EAAE,EAAE;iBAChB,IAAM,GAAG,GAAG,IAAI,CAAC,GAAG,CAAC;iBACrB,OAAO,IAAI,CAAC,QAAQ,CAClB,CAAC,GAAG,KAAK,OAAO,KAAK,IAAI,KAAK,EAAE,GAAG,OAAO,CAAC,CAAC,EAC5C,IAAI,KAAK,OAAO,EAChB,IAAI,CAAC,QAAQ,CACd,CAAC;cACH;kBAAM,IAAI,OAAO,KAAK,EAAE;iBAAE,OAAO,IAAI,CAAC,QAAQ,CAAC,IAAI,EAAE,CAAC,EAAE,IAAI,CAAC,QAAQ,CAAC,CAAC;;iBACnE,OAAO,IAAI,CAAC,QAAQ,CAAC,IAAI,MAAM,OAAO,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,IAAI,CAAC,QAAQ,CAAC,CAAC;UACtE;MACF;;KAGD,oBAAK,GAAL,UAAM,OAAsB;SAC1B,OAAO,IAAI,CAAC,kBAAkB,CAAC,OAAO,CAAC,CAAC;MACzC;;KAED,mBAAI,GAAJ,UAAK,OAAsB;SACzB,OAAO,IAAI,CAAC,kBAAkB,CAAC,OAAO,CAAC,CAAC;MACzC;;;;;;KAOD,uBAAQ,GAAR,UAAS,UAA8C;SACrD,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,UAAU,CAAC;aAAE,UAAU,GAAG,IAAI,CAAC,SAAS,CAAC,UAAU,CAAC,CAAC;SACtE,OAAO,IAAI,CAAC,GAAG,CAAC,UAAU,CAAC,GAAG,EAAE,CAAC,CAAC;MACnC;;KAGD,kBAAG,GAAH,UAAI,UAA8C;SAChD,OAAO,IAAI,CAAC,QAAQ,CAAC,UAAU,CAAC,CAAC;MAClC;;KAGD,oBAAK,GAAL;SACE,OAAO,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC,GAAG,KAAK,CAAC,GAAG,IAAI,CAAC,GAAG,CAAC;MAClD;;KAGD,uBAAQ,GAAR;SACE,IAAI,IAAI,CAAC,QAAQ;aAAE,OAAO,CAAC,IAAI,CAAC,IAAI,KAAK,CAAC,IAAI,cAAc,IAAI,IAAI,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC;SAChF,OAAO,IAAI,CAAC,IAAI,GAAG,cAAc,IAAI,IAAI,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC;MACtD;;KAGD,uBAAQ,GAAR;SACE,OAAO,MAAM,CAAC,IAAI,CAAC,QAAQ,EAAE,CAAC,CAAC;MAChC;;;;;;KAOD,sBAAO,GAAP,UAAQ,EAAY;SAClB,OAAO,EAAE,GAAG,IAAI,CAAC,SAAS,EAAE,GAAG,IAAI,CAAC,SAAS,EAAE,CAAC;MACjD;;;;;KAMD,wBAAS,GAAT;SACE,IAAM,EAAE,GAAG,IAAI,CAAC,IAAI,EAClB,EAAE,GAAG,IAAI,CAAC,GAAG,CAAC;SAChB,OAAO;aACL,EAAE,GAAG,IAAI;aACT,CAAC,EAAE,KAAK,CAAC,IAAI,IAAI;aACjB,CAAC,EAAE,KAAK,EAAE,IAAI,IAAI;aAClB,EAAE,KAAK,EAAE;aACT,EAAE,GAAG,IAAI;aACT,CAAC,EAAE,KAAK,CAAC,IAAI,IAAI;aACjB,CAAC,EAAE,KAAK,EAAE,IAAI,IAAI;aAClB,EAAE,KAAK,EAAE;UACV,CAAC;MACH;;;;;KAMD,wBAAS,GAAT;SACE,IAAM,EAAE,GAAG,IAAI,CAAC,IAAI,EAClB,EAAE,GAAG,IAAI,CAAC,GAAG,CAAC;SAChB,OAAO;aACL,EAAE,KAAK,EAAE;aACT,CAAC,EAAE,KAAK,EAAE,IAAI,IAAI;aAClB,CAAC,EAAE,KAAK,CAAC,IAAI,IAAI;aACjB,EAAE,GAAG,IAAI;aACT,EAAE,KAAK,EAAE;aACT,CAAC,EAAE,KAAK,EAAE,IAAI,IAAI;aAClB,CAAC,EAAE,KAAK,CAAC,IAAI,IAAI;aACjB,EAAE,GAAG,IAAI;UACV,CAAC;MACH;;;;KAKD,uBAAQ,GAAR;SACE,IAAI,CAAC,IAAI,CAAC,QAAQ;aAAE,OAAO,IAAI,CAAC;SAChC,OAAO,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,GAAG,EAAE,IAAI,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;MAClD;;;;;;KAOD,uBAAQ,GAAR,UAAS,KAAc;SACrB,KAAK,GAAG,KAAK,IAAI,EAAE,CAAC;SACpB,IAAI,KAAK,GAAG,CAAC,IAAI,EAAE,GAAG,KAAK;aAAE,MAAM,UAAU,CAAC,OAAO,CAAC,CAAC;SACvD,IAAI,IAAI,CAAC,MAAM,EAAE;aAAE,OAAO,GAAG,CAAC;SAC9B,IAAI,IAAI,CAAC,UAAU,EAAE,EAAE;;aAErB,IAAI,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC,SAAS,CAAC,EAAE;;;iBAG3B,IAAM,SAAS,GAAG,IAAI,CAAC,UAAU,CAAC,KAAK,CAAC,EACtC,GAAG,GAAG,IAAI,CAAC,GAAG,CAAC,SAAS,CAAC,EACzB,IAAI,GAAG,GAAG,CAAC,GAAG,CAAC,SAAS,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC;iBACtC,OAAO,GAAG,CAAC,QAAQ,CAAC,KAAK,CAAC,GAAG,IAAI,CAAC,KAAK,EAAE,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC;cAC3D;;iBAAM,OAAO,GAAG,GAAG,IAAI,CAAC,GAAG,EAAE,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC;UAChD;;;SAID,IAAM,YAAY,GAAG,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,GAAG,CAAC,KAAK,EAAE,CAAC,CAAC,EAAE,IAAI,CAAC,QAAQ,CAAC,CAAC;;SAExE,IAAI,GAAG,GAAS,IAAI,CAAC;SACrB,IAAI,MAAM,GAAG,EAAE,CAAC;;SAEhB,OAAO,IAAI,EAAE;aACX,IAAM,MAAM,GAAG,GAAG,CAAC,GAAG,CAAC,YAAY,CAAC,CAAC;aACrC,IAAM,MAAM,GAAG,GAAG,CAAC,GAAG,CAAC,MAAM,CAAC,GAAG,CAAC,YAAY,CAAC,CAAC,CAAC,KAAK,EAAE,KAAK,CAAC,CAAC;aAC/D,IAAI,MAAM,GAAG,MAAM,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC;aACpC,GAAG,GAAG,MAAM,CAAC;aACb,IAAI,GAAG,CAAC,MAAM,EAAE,EAAE;iBAChB,OAAO,MAAM,GAAG,MAAM,CAAC;cACxB;kBAAM;iBACL,OAAO,MAAM,CAAC,MAAM,GAAG,CAAC;qBAAE,MAAM,GAAG,GAAG,GAAG,MAAM,CAAC;iBAChD,MAAM,GAAG,EAAE,GAAG,MAAM,GAAG,MAAM,CAAC;cAC/B;UACF;MACF;;KAGD,yBAAU,GAAV;SACE,IAAI,IAAI,CAAC,QAAQ;aAAE,OAAO,IAAI,CAAC;SAC/B,OAAO,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,GAAG,EAAE,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;MACjD;;KAGD,kBAAG,GAAH,UAAI,KAA6B;SAC/B,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC;aAAE,KAAK,GAAG,IAAI,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC;SACvD,OAAO,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,GAAG,GAAG,KAAK,CAAC,GAAG,EAAE,IAAI,CAAC,IAAI,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,QAAQ,CAAC,CAAC;MACnF;;KAGD,kBAAG,GAAH;SACE,OAAO,IAAI,CAAC,MAAM,EAAE,CAAC;MACtB;;KAGD,iBAAE,GAAF,UAAG,KAAyC;SAC1C,OAAO,IAAI,CAAC,eAAe,CAAC,KAAK,CAAC,CAAC;MACpC;;;;;;KAOD,6BAAc,GAAd,UAAe,OAAsB;SACnC,IAAI,OAAO,IAAI,OAAO,CAAC,OAAO;aAAE,OAAO,IAAI,CAAC,QAAQ,EAAE,CAAC;SACvD,OAAO,EAAE,WAAW,EAAE,IAAI,CAAC,QAAQ,EAAE,EAAE,CAAC;MACzC;KACM,qBAAgB,GAAvB,UAAwB,GAA4B,EAAE,OAAsB;SAC1E,IAAM,MAAM,GAAG,IAAI,CAAC,UAAU,CAAC,GAAG,CAAC,WAAW,CAAC,CAAC;SAChD,OAAO,OAAO,IAAI,OAAO,CAAC,OAAO,GAAG,MAAM,CAAC,QAAQ,EAAE,GAAG,MAAM,CAAC;MAChE;;KAGD,eAAC,MAAM,CAAC,GAAG,CAAC,4BAA4B,CAAC,CAAC,GAA1C;SACE,OAAO,IAAI,CAAC,OAAO,EAAE,CAAC;MACvB;KAED,sBAAO,GAAP;SACE,OAAO,qBAAa,IAAI,CAAC,QAAQ,EAAE,eAAI,IAAI,CAAC,QAAQ,GAAG,QAAQ,GAAG,EAAE,MAAG,CAAC;MACzE;KA/2BM,eAAU,GAAG,IAAI,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC;;KAG1C,uBAAkB,GAAG,IAAI,CAAC,QAAQ,CAAC,UAAU,GAAG,CAAC,EAAE,UAAU,GAAG,CAAC,EAAE,IAAI,CAAC,CAAC;;KAEzE,SAAI,GAAG,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;;KAEvB,UAAK,GAAG,IAAI,CAAC,OAAO,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC;;KAE9B,QAAG,GAAG,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;;KAEtB,SAAI,GAAG,IAAI,CAAC,OAAO,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC;;KAE7B,YAAO,GAAG,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC;;KAE3B,cAAS,GAAG,IAAI,CAAC,QAAQ,CAAC,UAAU,GAAG,CAAC,EAAE,UAAU,GAAG,CAAC,EAAE,KAAK,CAAC,CAAC;;KAEjE,cAAS,GAAG,IAAI,CAAC,QAAQ,CAAC,CAAC,EAAE,UAAU,GAAG,CAAC,EAAE,KAAK,CAAC,CAAC;KA+1B7D,WAAC;EAv6BD,IAu6BC;CAED,MAAM,CAAC,cAAc,CAAC,IAAI,CAAC,SAAS,EAAE,YAAY,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC,CAAC;CACrE,MAAM,CAAC,cAAc,CAAC,IAAI,CAAC,SAAS,EAAE,WAAW,EAAE,EAAE,KAAK,EAAE,MAAM,EAAE,CAAC;;CC1gCrE,IAAM,mBAAmB,GAAG,+CAA+C,CAAC;CAC5E,IAAM,gBAAgB,GAAG,0BAA0B,CAAC;CACpD,IAAM,gBAAgB,GAAG,eAAe,CAAC;CAEzC,IAAM,YAAY,GAAG,IAAI,CAAC;CAC1B,IAAM,YAAY,GAAG,CAAC,IAAI,CAAC;CAC3B,IAAM,aAAa,GAAG,IAAI,CAAC;CAC3B,IAAM,UAAU,GAAG,EAAE,CAAC;CAEtB;CACA,IAAM,UAAU,GAAG;KACjB,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI;EAC/F,CAAC,OAAO,EAAE,CAAC;CACZ;CACA,IAAM,mBAAmB,GAAG;KAC1B,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI;EAC/F,CAAC,OAAO,EAAE,CAAC;CACZ,IAAM,mBAAmB,GAAG;KAC1B,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI;EAC/F,CAAC,OAAO,EAAE,CAAC;CAEZ,IAAM,cAAc,GAAG,iBAAiB,CAAC;CAEzC;CACA,IAAM,gBAAgB,GAAG,IAAI,CAAC;CAC9B;CACA,IAAM,aAAa,GAAG,MAAM,CAAC;CAC7B;CACA,IAAM,oBAAoB,GAAG,EAAE,CAAC;CAChC;CACA,IAAM,eAAe,GAAG,EAAE,CAAC;CAE3B;CACA,SAAS,OAAO,CAAC,KAAa;KAC5B,OAAO,CAAC,KAAK,CAAC,QAAQ,CAAC,KAAK,EAAE,EAAE,CAAC,CAAC,CAAC;CACrC,CAAC;CAED;CACA,SAAS,UAAU,CAAC,KAAkD;KACpE,IAAM,OAAO,GAAG,IAAI,CAAC,UAAU,CAAC,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC,CAAC;KACpD,IAAI,IAAI,GAAG,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC;KAE9B,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE;SAC5E,OAAO,EAAE,QAAQ,EAAE,KAAK,EAAE,GAAG,EAAE,IAAI,EAAE,CAAC;MACvC;KAED,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE,CAAC,EAAE,EAAE;;SAE3B,IAAI,GAAG,IAAI,CAAC,SAAS,CAAC,EAAE,CAAC,CAAC;;SAE1B,IAAI,GAAG,IAAI,CAAC,GAAG,CAAC,IAAI,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;SAC7C,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC,GAAG,CAAC;SACvC,IAAI,GAAG,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;MAC7B;KAED,OAAO,EAAE,QAAQ,EAAE,KAAK,EAAE,GAAG,EAAE,IAAI,EAAE,CAAC;CACxC,CAAC;CAED;CACA,SAAS,YAAY,CAAC,IAAU,EAAE,KAAW;KAC3C,IAAI,CAAC,IAAI,IAAI,CAAC,KAAK,EAAE;SACnB,OAAO,EAAE,IAAI,EAAE,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,EAAE,GAAG,EAAE,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,EAAE,CAAC;MAC9D;KAED,IAAM,QAAQ,GAAG,IAAI,CAAC,kBAAkB,CAAC,EAAE,CAAC,CAAC;KAC7C,IAAM,OAAO,GAAG,IAAI,IAAI,CAAC,IAAI,CAAC,UAAU,EAAE,EAAE,CAAC,CAAC,CAAC;KAC/C,IAAM,SAAS,GAAG,KAAK,CAAC,kBAAkB,CAAC,EAAE,CAAC,CAAC;KAC/C,IAAM,QAAQ,GAAG,IAAI,IAAI,CAAC,KAAK,CAAC,UAAU,EAAE,EAAE,CAAC,CAAC,CAAC;KAEjD,IAAI,WAAW,GAAG,QAAQ,CAAC,QAAQ,CAAC,SAAS,CAAC,CAAC;KAC/C,IAAI,UAAU,GAAG,QAAQ,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC;KAC7C,IAAM,WAAW,GAAG,OAAO,CAAC,QAAQ,CAAC,SAAS,CAAC,CAAC;KAChD,IAAI,UAAU,GAAG,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC;KAE5C,WAAW,GAAG,WAAW,CAAC,GAAG,CAAC,UAAU,CAAC,kBAAkB,CAAC,EAAE,CAAC,CAAC,CAAC;KACjE,UAAU,GAAG,IAAI,IAAI,CAAC,UAAU,CAAC,UAAU,EAAE,EAAE,CAAC,CAAC;UAC9C,GAAG,CAAC,WAAW,CAAC;UAChB,GAAG,CAAC,UAAU,CAAC,kBAAkB,CAAC,EAAE,CAAC,CAAC,CAAC;KAE1C,WAAW,GAAG,WAAW,CAAC,GAAG,CAAC,UAAU,CAAC,kBAAkB,CAAC,EAAE,CAAC,CAAC,CAAC;KACjE,UAAU,GAAG,UAAU,CAAC,SAAS,CAAC,EAAE,CAAC,CAAC,GAAG,CAAC,IAAI,IAAI,CAAC,UAAU,CAAC,UAAU,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC;;KAGhF,OAAO,EAAE,IAAI,EAAE,WAAW,EAAE,GAAG,EAAE,UAAU,EAAE,CAAC;CAChD,CAAC;CAED,SAAS,QAAQ,CAAC,IAAU,EAAE,KAAW;;KAEvC,IAAM,MAAM,GAAG,IAAI,CAAC,IAAI,KAAK,CAAC,CAAC;KAC/B,IAAM,OAAO,GAAG,KAAK,CAAC,IAAI,KAAK,CAAC,CAAC;;KAGjC,IAAI,MAAM,GAAG,OAAO,EAAE;SACpB,OAAO,IAAI,CAAC;MACb;UAAM,IAAI,MAAM,KAAK,OAAO,EAAE;SAC7B,IAAM,MAAM,GAAG,IAAI,CAAC,GAAG,KAAK,CAAC,CAAC;SAC9B,IAAM,OAAO,GAAG,KAAK,CAAC,GAAG,KAAK,CAAC,CAAC;SAChC,IAAI,MAAM,GAAG,OAAO;aAAE,OAAO,IAAI,CAAC;MACnC;KAED,OAAO,KAAK,CAAC;CACf,CAAC;CAED,SAAS,UAAU,CAAC,MAAc,EAAE,OAAe;KACjD,MAAM,IAAI,aAAa,CAAC,YAAI,MAAM,mDAAwC,OAAO,CAAE,CAAC,CAAC;CACvF,CAAC;CAOD;;;;;;;;;;KAcE,oBAAY,KAAsB;SAChC,IAAI,EAAE,IAAI,YAAY,UAAU,CAAC;aAAE,OAAO,IAAI,UAAU,CAAC,KAAK,CAAC,CAAC;SAEhE,IAAI,OAAO,KAAK,KAAK,QAAQ,EAAE;aAC7B,IAAI,CAAC,KAAK,GAAG,UAAU,CAAC,UAAU,CAAC,KAAK,CAAC,CAAC,KAAK,CAAC;UACjD;cAAM,IAAI,YAAY,CAAC,KAAK,CAAC,EAAE;aAC9B,IAAI,KAAK,CAAC,UAAU,KAAK,EAAE,EAAE;iBAC3B,MAAM,IAAI,aAAa,CAAC,2CAA2C,CAAC,CAAC;cACtE;aACD,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;UACpB;cAAM;aACL,MAAM,IAAI,aAAa,CAAC,yCAAyC,CAAC,CAAC;UACpE;MACF;;;;;;KAOM,qBAAU,GAAjB,UAAkB,cAAsB;;SAEtC,IAAI,UAAU,GAAG,KAAK,CAAC;SACvB,IAAI,QAAQ,GAAG,KAAK,CAAC;SACrB,IAAI,YAAY,GAAG,KAAK,CAAC;;SAGzB,IAAI,iBAAiB,GAAG,CAAC,CAAC;;SAE1B,IAAI,WAAW,GAAG,CAAC,CAAC;;SAEpB,IAAI,OAAO,GAAG,CAAC,CAAC;;SAEhB,IAAI,aAAa,GAAG,CAAC,CAAC;;SAEtB,IAAI,YAAY,GAAG,CAAC,CAAC;;SAGrB,IAAM,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC;;SAEnB,IAAI,aAAa,GAAG,CAAC,CAAC;;SAEtB,IAAI,YAAY,GAAG,CAAC,CAAC;;SAErB,IAAI,UAAU,GAAG,CAAC,CAAC;;SAEnB,IAAI,SAAS,GAAG,CAAC,CAAC;;SAGlB,IAAI,QAAQ,GAAG,CAAC,CAAC;;SAEjB,IAAI,CAAC,GAAG,CAAC,CAAC;;SAEV,IAAI,eAAe,GAAG,IAAI,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;;SAErC,IAAI,cAAc,GAAG,IAAI,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;;SAEpC,IAAI,cAAc,GAAG,CAAC,CAAC;;SAGvB,IAAI,KAAK,GAAG,CAAC,CAAC;;;;SAKd,IAAI,cAAc,CAAC,MAAM,IAAI,IAAI,EAAE;aACjC,MAAM,IAAI,aAAa,CAAC,EAAE,GAAG,cAAc,GAAG,gCAAgC,CAAC,CAAC;UACjF;;SAGD,IAAM,WAAW,GAAG,cAAc,CAAC,KAAK,CAAC,mBAAmB,CAAC,CAAC;SAC9D,IAAM,QAAQ,GAAG,cAAc,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAAC;SACxD,IAAM,QAAQ,GAAG,cAAc,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAAC;;SAGxD,IAAI,CAAC,CAAC,WAAW,IAAI,CAAC,QAAQ,IAAI,CAAC,QAAQ,KAAK,cAAc,CAAC,MAAM,KAAK,CAAC,EAAE;aAC3E,MAAM,IAAI,aAAa,CAAC,EAAE,GAAG,cAAc,GAAG,gCAAgC,CAAC,CAAC;UACjF;SAED,IAAI,WAAW,EAAE;;;aAIf,IAAM,cAAc,GAAG,WAAW,CAAC,CAAC,CAAC,CAAC;;;aAItC,IAAM,CAAC,GAAG,WAAW,CAAC,CAAC,CAAC,CAAC;aACzB,IAAM,OAAO,GAAG,WAAW,CAAC,CAAC,CAAC,CAAC;aAC/B,IAAM,SAAS,GAAG,WAAW,CAAC,CAAC,CAAC,CAAC;;aAGjC,IAAI,CAAC,IAAI,SAAS,KAAK,SAAS;iBAAE,UAAU,CAAC,cAAc,EAAE,wBAAwB,CAAC,CAAC;;aAGvF,IAAI,CAAC,IAAI,cAAc,KAAK,SAAS;iBAAE,UAAU,CAAC,cAAc,EAAE,uBAAuB,CAAC,CAAC;aAE3F,IAAI,CAAC,KAAK,SAAS,KAAK,OAAO,IAAI,SAAS,CAAC,EAAE;iBAC7C,UAAU,CAAC,cAAc,EAAE,2BAA2B,CAAC,CAAC;cACzD;UACF;;SAGD,IAAI,cAAc,CAAC,KAAK,CAAC,KAAK,GAAG,IAAI,cAAc,CAAC,KAAK,CAAC,KAAK,GAAG,EAAE;aAClE,UAAU,GAAG,cAAc,CAAC,KAAK,EAAE,CAAC,KAAK,GAAG,CAAC;UAC9C;;SAGD,IAAI,CAAC,OAAO,CAAC,cAAc,CAAC,KAAK,CAAC,CAAC,IAAI,cAAc,CAAC,KAAK,CAAC,KAAK,GAAG,EAAE;aACpE,IAAI,cAAc,CAAC,KAAK,CAAC,KAAK,GAAG,IAAI,cAAc,CAAC,KAAK,CAAC,KAAK,GAAG,EAAE;iBAClE,OAAO,IAAI,UAAU,CAACA,QAAM,CAAC,IAAI,CAAC,UAAU,GAAG,mBAAmB,GAAG,mBAAmB,CAAC,CAAC,CAAC;cAC5F;kBAAM,IAAI,cAAc,CAAC,KAAK,CAAC,KAAK,GAAG,EAAE;iBACxC,OAAO,IAAI,UAAU,CAACA,QAAM,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC;cAChD;UACF;;SAGD,OAAO,OAAO,CAAC,cAAc,CAAC,KAAK,CAAC,CAAC,IAAI,cAAc,CAAC,KAAK,CAAC,KAAK,GAAG,EAAE;aACtE,IAAI,cAAc,CAAC,KAAK,CAAC,KAAK,GAAG,EAAE;iBACjC,IAAI,QAAQ;qBAAE,UAAU,CAAC,cAAc,EAAE,2BAA2B,CAAC,CAAC;iBAEtE,QAAQ,GAAG,IAAI,CAAC;iBAChB,KAAK,GAAG,KAAK,GAAG,CAAC,CAAC;iBAClB,SAAS;cACV;aAED,IAAI,aAAa,GAAG,EAAE,EAAE;iBACtB,IAAI,cAAc,CAAC,KAAK,CAAC,KAAK,GAAG,IAAI,YAAY,EAAE;qBACjD,IAAI,CAAC,YAAY,EAAE;yBACjB,YAAY,GAAG,WAAW,CAAC;sBAC5B;qBAED,YAAY,GAAG,IAAI,CAAC;;qBAGpB,MAAM,CAAC,YAAY,EAAE,CAAC,GAAG,QAAQ,CAAC,cAAc,CAAC,KAAK,CAAC,EAAE,EAAE,CAAC,CAAC;qBAC7D,aAAa,GAAG,aAAa,GAAG,CAAC,CAAC;kBACnC;cACF;aAED,IAAI,YAAY;iBAAE,OAAO,GAAG,OAAO,GAAG,CAAC,CAAC;aACxC,IAAI,QAAQ;iBAAE,aAAa,GAAG,aAAa,GAAG,CAAC,CAAC;aAEhD,WAAW,GAAG,WAAW,GAAG,CAAC,CAAC;aAC9B,KAAK,GAAG,KAAK,GAAG,CAAC,CAAC;UACnB;SAED,IAAI,QAAQ,IAAI,CAAC,WAAW;aAC1B,MAAM,IAAI,aAAa,CAAC,EAAE,GAAG,cAAc,GAAG,gCAAgC,CAAC,CAAC;;SAGlF,IAAI,cAAc,CAAC,KAAK,CAAC,KAAK,GAAG,IAAI,cAAc,CAAC,KAAK,CAAC,KAAK,GAAG,EAAE;;aAElE,IAAM,KAAK,GAAG,cAAc,CAAC,MAAM,CAAC,EAAE,KAAK,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC;;aAGnE,IAAI,CAAC,KAAK,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC;iBAAE,OAAO,IAAI,UAAU,CAACA,QAAM,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC;;aAGxE,QAAQ,GAAG,QAAQ,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC;;aAGlC,KAAK,GAAG,KAAK,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC;UACjC;;SAGD,IAAI,cAAc,CAAC,KAAK,CAAC;aAAE,OAAO,IAAI,UAAU,CAACA,QAAM,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC;;;SAI1E,UAAU,GAAG,CAAC,CAAC;SAEf,IAAI,CAAC,aAAa,EAAE;aAClB,UAAU,GAAG,CAAC,CAAC;aACf,SAAS,GAAG,CAAC,CAAC;aACd,MAAM,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;aACd,OAAO,GAAG,CAAC,CAAC;aACZ,aAAa,GAAG,CAAC,CAAC;aAClB,iBAAiB,GAAG,CAAC,CAAC;UACvB;cAAM;aACL,SAAS,GAAG,aAAa,GAAG,CAAC,CAAC;aAC9B,iBAAiB,GAAG,OAAO,CAAC;aAC5B,IAAI,iBAAiB,KAAK,CAAC,EAAE;iBAC3B,OAAO,MAAM,CAAC,YAAY,GAAG,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,EAAE;qBACzD,iBAAiB,GAAG,iBAAiB,GAAG,CAAC,CAAC;kBAC3C;cACF;UACF;;;;;SAOD,IAAI,QAAQ,IAAI,aAAa,IAAI,aAAa,GAAG,QAAQ,GAAG,CAAC,IAAI,EAAE,EAAE;aACnE,QAAQ,GAAG,YAAY,CAAC;UACzB;cAAM;aACL,QAAQ,GAAG,QAAQ,GAAG,aAAa,CAAC;UACrC;;SAGD,OAAO,QAAQ,GAAG,YAAY,EAAE;;aAE9B,SAAS,GAAG,SAAS,GAAG,CAAC,CAAC;aAE1B,IAAI,SAAS,GAAG,UAAU,GAAG,UAAU,EAAE;;iBAEvC,IAAM,YAAY,GAAG,MAAM,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;iBACrC,IAAI,YAAY,CAAC,KAAK,CAAC,MAAM,CAAC,EAAE;qBAC9B,QAAQ,GAAG,YAAY,CAAC;qBACxB,MAAM;kBACP;iBAED,UAAU,CAAC,cAAc,EAAE,UAAU,CAAC,CAAC;cACxC;aACD,QAAQ,GAAG,QAAQ,GAAG,CAAC,CAAC;UACzB;SAED,OAAO,QAAQ,GAAG,YAAY,IAAI,aAAa,GAAG,OAAO,EAAE;;aAEzD,IAAI,SAAS,KAAK,CAAC,IAAI,iBAAiB,GAAG,aAAa,EAAE;iBACxD,QAAQ,GAAG,YAAY,CAAC;iBACxB,iBAAiB,GAAG,CAAC,CAAC;iBACtB,MAAM;cACP;aAED,IAAI,aAAa,GAAG,OAAO,EAAE;;iBAE3B,OAAO,GAAG,OAAO,GAAG,CAAC,CAAC;cACvB;kBAAM;;iBAEL,SAAS,GAAG,SAAS,GAAG,CAAC,CAAC;cAC3B;aAED,IAAI,QAAQ,GAAG,YAAY,EAAE;iBAC3B,QAAQ,GAAG,QAAQ,GAAG,CAAC,CAAC;cACzB;kBAAM;;iBAEL,IAAM,YAAY,GAAG,MAAM,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;iBACrC,IAAI,YAAY,CAAC,KAAK,CAAC,MAAM,CAAC,EAAE;qBAC9B,QAAQ,GAAG,YAAY,CAAC;qBACxB,MAAM;kBACP;iBACD,UAAU,CAAC,cAAc,EAAE,UAAU,CAAC,CAAC;cACxC;UACF;;;SAID,IAAI,SAAS,GAAG,UAAU,GAAG,CAAC,GAAG,iBAAiB,EAAE;aAClD,IAAI,WAAW,GAAG,WAAW,CAAC;;;;aAK9B,IAAI,QAAQ,EAAE;iBACZ,YAAY,GAAG,YAAY,GAAG,CAAC,CAAC;iBAChC,WAAW,GAAG,WAAW,GAAG,CAAC,CAAC;cAC/B;;aAED,IAAI,UAAU,EAAE;iBACd,YAAY,GAAG,YAAY,GAAG,CAAC,CAAC;iBAChC,WAAW,GAAG,WAAW,GAAG,CAAC,CAAC;cAC/B;aAED,IAAM,UAAU,GAAG,QAAQ,CAAC,cAAc,CAAC,YAAY,GAAG,SAAS,GAAG,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC;aAC9E,IAAI,QAAQ,GAAG,CAAC,CAAC;aAEjB,IAAI,UAAU,IAAI,CAAC,EAAE;iBACnB,QAAQ,GAAG,CAAC,CAAC;iBACb,IAAI,UAAU,KAAK,CAAC,EAAE;qBACpB,QAAQ,GAAG,MAAM,CAAC,SAAS,CAAC,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;qBAC/C,KAAK,CAAC,GAAG,YAAY,GAAG,SAAS,GAAG,CAAC,EAAE,CAAC,GAAG,WAAW,EAAE,CAAC,EAAE,EAAE;yBAC3D,IAAI,QAAQ,CAAC,cAAc,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,EAAE;6BACnC,QAAQ,GAAG,CAAC,CAAC;6BACb,MAAM;0BACP;sBACF;kBACF;cACF;aAED,IAAI,QAAQ,EAAE;iBACZ,IAAI,IAAI,GAAG,SAAS,CAAC;iBAErB,OAAO,IAAI,IAAI,CAAC,EAAE,IAAI,EAAE,EAAE;qBACxB,IAAI,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE;yBACtB,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;;yBAGjB,IAAI,IAAI,KAAK,CAAC,EAAE;6BACd,IAAI,QAAQ,GAAG,YAAY,EAAE;iCAC3B,QAAQ,GAAG,QAAQ,GAAG,CAAC,CAAC;iCACxB,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;8BAClB;kCAAM;iCACL,OAAO,IAAI,UAAU,CACnBA,QAAM,CAAC,IAAI,CAAC,UAAU,GAAG,mBAAmB,GAAG,mBAAmB,CAAC,CACpE,CAAC;8BACH;0BACF;sBACF;kBACF;cACF;UACF;;;SAID,eAAe,GAAG,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC;;SAErC,cAAc,GAAG,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC;;SAGpC,IAAI,iBAAiB,KAAK,CAAC,EAAE;aAC3B,eAAe,GAAG,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC;aACrC,cAAc,GAAG,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC;UACrC;cAAM,IAAI,SAAS,GAAG,UAAU,GAAG,EAAE,EAAE;aACtC,IAAI,IAAI,GAAG,UAAU,CAAC;aACtB,cAAc,GAAG,IAAI,CAAC,UAAU,CAAC,MAAM,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC;aACjD,eAAe,GAAG,IAAI,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;aAEjC,OAAO,IAAI,IAAI,SAAS,EAAE,IAAI,EAAE,EAAE;iBAChC,cAAc,GAAG,cAAc,CAAC,QAAQ,CAAC,IAAI,CAAC,UAAU,CAAC,EAAE,CAAC,CAAC,CAAC;iBAC9D,cAAc,GAAG,cAAc,CAAC,GAAG,CAAC,IAAI,CAAC,UAAU,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;cACpE;UACF;cAAM;aACL,IAAI,IAAI,GAAG,UAAU,CAAC;aACtB,eAAe,GAAG,IAAI,CAAC,UAAU,CAAC,MAAM,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC;aAElD,OAAO,IAAI,IAAI,SAAS,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE;iBACrC,eAAe,GAAG,eAAe,CAAC,QAAQ,CAAC,IAAI,CAAC,UAAU,CAAC,EAAE,CAAC,CAAC,CAAC;iBAChE,eAAe,GAAG,eAAe,CAAC,GAAG,CAAC,IAAI,CAAC,UAAU,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;cACtE;aAED,cAAc,GAAG,IAAI,CAAC,UAAU,CAAC,MAAM,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC;aAEjD,OAAO,IAAI,IAAI,SAAS,EAAE,IAAI,EAAE,EAAE;iBAChC,cAAc,GAAG,cAAc,CAAC,QAAQ,CAAC,IAAI,CAAC,UAAU,CAAC,EAAE,CAAC,CAAC,CAAC;iBAC9D,cAAc,GAAG,cAAc,CAAC,GAAG,CAAC,IAAI,CAAC,UAAU,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;cACpE;UACF;SAED,IAAM,WAAW,GAAG,YAAY,CAAC,eAAe,EAAE,IAAI,CAAC,UAAU,CAAC,oBAAoB,CAAC,CAAC,CAAC;SACzF,WAAW,CAAC,GAAG,GAAG,WAAW,CAAC,GAAG,CAAC,GAAG,CAAC,cAAc,CAAC,CAAC;SAEtD,IAAI,QAAQ,CAAC,WAAW,CAAC,GAAG,EAAE,cAAc,CAAC,EAAE;aAC7C,WAAW,CAAC,IAAI,GAAG,WAAW,CAAC,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC;UAC7D;;SAGD,cAAc,GAAG,QAAQ,GAAG,aAAa,CAAC;SAC1C,IAAM,GAAG,GAAG,EAAE,GAAG,EAAE,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,EAAE,IAAI,EAAE,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,EAAE,CAAC;;SAGlE,IACE,WAAW,CAAC,IAAI,CAAC,kBAAkB,CAAC,EAAE,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,EAC1F;;aAEA,GAAG,CAAC,IAAI,GAAG,GAAG,CAAC,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,SAAS,CAAC,EAAE,CAAC,CAAC,CAAC;aAC3D,GAAG,CAAC,IAAI,GAAG,GAAG,CAAC,IAAI,CAAC,EAAE,CACpB,IAAI,CAAC,UAAU,CAAC,cAAc,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,UAAU,CAAC,MAAM,CAAC,CAAC,SAAS,CAAC,EAAE,CAAC,CAAC,CAC3E,CAAC;aACF,GAAG,CAAC,IAAI,GAAG,GAAG,CAAC,IAAI,CAAC,EAAE,CAAC,WAAW,CAAC,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,UAAU,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC;UAC/E;cAAM;aACL,GAAG,CAAC,IAAI,GAAG,GAAG,CAAC,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC,UAAU,CAAC,cAAc,GAAG,MAAM,CAAC,CAAC,SAAS,CAAC,EAAE,CAAC,CAAC,CAAC;aAC/E,GAAG,CAAC,IAAI,GAAG,GAAG,CAAC,IAAI,CAAC,EAAE,CAAC,WAAW,CAAC,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,UAAU,CAAC,eAAe,CAAC,CAAC,CAAC,CAAC;UAChF;SAED,GAAG,CAAC,GAAG,GAAG,WAAW,CAAC,GAAG,CAAC;;SAG1B,IAAI,UAAU,EAAE;aACd,GAAG,CAAC,IAAI,GAAG,GAAG,CAAC,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC,UAAU,CAAC,qBAAqB,CAAC,CAAC,CAAC;UAChE;;SAGD,IAAM,MAAM,GAAGA,QAAM,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC;SAChC,KAAK,GAAG,CAAC,CAAC;;;SAIV,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,GAAG,CAAC,GAAG,CAAC,GAAG,GAAG,IAAI,CAAC;SACrC,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC,IAAI,IAAI,CAAC;SAC5C,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,IAAI,EAAE,IAAI,IAAI,CAAC;SAC7C,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,IAAI,EAAE,IAAI,IAAI,CAAC;;SAE7C,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,GAAG,CAAC,GAAG,CAAC,IAAI,GAAG,IAAI,CAAC;SACtC,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,IAAI,IAAI,CAAC,IAAI,IAAI,CAAC;SAC7C,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,IAAI,IAAI,EAAE,IAAI,IAAI,CAAC;SAC9C,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,IAAI,IAAI,EAAE,IAAI,IAAI,CAAC;;;SAI9C,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,GAAG,CAAC,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC;SACtC,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC,IAAI,IAAI,CAAC;SAC7C,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,IAAI,CAAC,GAAG,IAAI,EAAE,IAAI,IAAI,CAAC;SAC9C,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,IAAI,CAAC,GAAG,IAAI,EAAE,IAAI,IAAI,CAAC;;SAE9C,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,GAAG,CAAC,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;SACvC,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,IAAI,CAAC,IAAI,IAAI,CAAC,IAAI,IAAI,CAAC;SAC9C,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,IAAI,CAAC,IAAI,IAAI,EAAE,IAAI,IAAI,CAAC;SAC/C,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,IAAI,CAAC,IAAI,IAAI,EAAE,IAAI,IAAI,CAAC;;SAG/C,OAAO,IAAI,UAAU,CAAC,MAAM,CAAC,CAAC;MAC/B;;KAGD,6BAAQ,GAAR;;;;SAKE,IAAI,eAAe,CAAC;;SAEpB,IAAI,kBAAkB,GAAG,CAAC,CAAC;;SAE3B,IAAM,WAAW,GAAG,IAAI,KAAK,CAAS,EAAE,CAAC,CAAC;SAC1C,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,WAAW,CAAC,MAAM,EAAE,CAAC,EAAE;aAAE,WAAW,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;;SAEhE,IAAI,KAAK,GAAG,CAAC,CAAC;;SAGd,IAAI,OAAO,GAAG,KAAK,CAAC;;SAGpB,IAAI,eAAe,CAAC;;SAEpB,IAAI,cAAc,GAAgD,EAAE,KAAK,EAAE,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC;;SAE1F,IAAI,CAAC,EAAE,CAAC,CAAC;;SAGT,IAAM,MAAM,GAAa,EAAE,CAAC;;SAG5B,KAAK,GAAG,CAAC,CAAC;;SAGV,IAAM,MAAM,GAAG,IAAI,CAAC,KAAK,CAAC;;;SAI1B,IAAM,GAAG,GACP,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,CAAC,CAAC,IAAI,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,EAAE,CAAC,IAAI,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,EAAE,CAAC,CAAC;;SAE/F,IAAM,IAAI,GACR,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,CAAC,CAAC,IAAI,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,EAAE,CAAC,IAAI,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,EAAE,CAAC,CAAC;;;SAI/F,IAAM,IAAI,GACR,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,CAAC,CAAC,IAAI,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,EAAE,CAAC,IAAI,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,EAAE,CAAC,CAAC;;SAE/F,IAAM,IAAI,GACR,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,CAAC,CAAC,IAAI,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,EAAE,CAAC,IAAI,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,EAAE,CAAC,CAAC;;SAG/F,KAAK,GAAG,CAAC,CAAC;;SAGV,IAAM,GAAG,GAAG;aACV,GAAG,EAAE,IAAI,IAAI,CAAC,GAAG,EAAE,IAAI,CAAC;aACxB,IAAI,EAAE,IAAI,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC;UAC3B,CAAC;SAEF,IAAI,GAAG,CAAC,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,EAAE;aAChC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;UAClB;;;SAID,IAAM,WAAW,GAAG,CAAC,IAAI,IAAI,EAAE,IAAI,gBAAgB,CAAC;SAEpD,IAAI,WAAW,IAAI,CAAC,KAAK,CAAC,EAAE;;aAE1B,IAAI,WAAW,KAAK,oBAAoB,EAAE;iBACxC,OAAO,MAAM,CAAC,IAAI,CAAC,EAAE,CAAC,GAAG,UAAU,CAAC;cACrC;kBAAM,IAAI,WAAW,KAAK,eAAe,EAAE;iBAC1C,OAAO,KAAK,CAAC;cACd;kBAAM;iBACL,eAAe,GAAG,CAAC,IAAI,IAAI,EAAE,IAAI,aAAa,CAAC;iBAC/C,eAAe,GAAG,IAAI,IAAI,CAAC,IAAI,IAAI,EAAE,IAAI,IAAI,CAAC,CAAC;cAChD;UACF;cAAM;aACL,eAAe,GAAG,CAAC,IAAI,IAAI,EAAE,IAAI,IAAI,CAAC;aACtC,eAAe,GAAG,CAAC,IAAI,IAAI,EAAE,IAAI,aAAa,CAAC;UAChD;;SAGD,IAAM,QAAQ,GAAG,eAAe,GAAG,aAAa,CAAC;;;;;SAOjD,cAAc,CAAC,KAAK,CAAC,CAAC,CAAC,GAAG,CAAC,IAAI,GAAG,MAAM,KAAK,CAAC,eAAe,GAAG,GAAG,KAAK,EAAE,CAAC,CAAC;SAC5E,cAAc,CAAC,KAAK,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC;SAC/B,cAAc,CAAC,KAAK,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC;SAC/B,cAAc,CAAC,KAAK,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC;SAE9B,IACE,cAAc,CAAC,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC;aAC7B,cAAc,CAAC,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC;aAC7B,cAAc,CAAC,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC;aAC7B,cAAc,CAAC,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,EAC7B;aACA,OAAO,GAAG,IAAI,CAAC;UAChB;cAAM;aACL,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE,CAAC,EAAE,EAAE;iBACvB,IAAI,YAAY,GAAG,CAAC,CAAC;;iBAErB,IAAM,MAAM,GAAG,UAAU,CAAC,cAAc,CAAC,CAAC;iBAC1C,cAAc,GAAG,MAAM,CAAC,QAAQ,CAAC;iBACjC,YAAY,GAAG,MAAM,CAAC,GAAG,CAAC,GAAG,CAAC;;;iBAI9B,IAAI,CAAC,YAAY;qBAAE,SAAS;iBAE5B,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE,CAAC,EAAE,EAAE;;qBAEvB,WAAW,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,GAAG,YAAY,GAAG,EAAE,CAAC;;qBAE3C,YAAY,GAAG,IAAI,CAAC,KAAK,CAAC,YAAY,GAAG,EAAE,CAAC,CAAC;kBAC9C;cACF;UACF;;;;SAMD,IAAI,OAAO,EAAE;aACX,kBAAkB,GAAG,CAAC,CAAC;aACvB,WAAW,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;UACxB;cAAM;aACL,kBAAkB,GAAG,EAAE,CAAC;aACxB,OAAO,CAAC,WAAW,CAAC,KAAK,CAAC,EAAE;iBAC1B,kBAAkB,GAAG,kBAAkB,GAAG,CAAC,CAAC;iBAC5C,KAAK,GAAG,KAAK,GAAG,CAAC,CAAC;cACnB;UACF;;SAGD,IAAM,mBAAmB,GAAG,kBAAkB,GAAG,CAAC,GAAG,QAAQ,CAAC;;;;;;;;SAS9D,IAAI,mBAAmB,IAAI,EAAE,IAAI,mBAAmB,IAAI,CAAC,CAAC,IAAI,QAAQ,GAAG,CAAC,EAAE;;;;;aAM1E,IAAI,kBAAkB,GAAG,EAAE,EAAE;iBAC3B,MAAM,CAAC,IAAI,CAAC,UAAG,CAAC,CAAE,CAAC,CAAC;iBACpB,IAAI,QAAQ,GAAG,CAAC;qBAAE,MAAM,CAAC,IAAI,CAAC,YAAK,QAAQ,CAAE,CAAC,CAAC;sBAC1C,IAAI,QAAQ,GAAG,CAAC;qBAAE,MAAM,CAAC,IAAI,CAAC,WAAI,QAAQ,CAAE,CAAC,CAAC;iBACnD,OAAO,MAAM,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;cACxB;aAED,MAAM,CAAC,IAAI,CAAC,UAAG,WAAW,CAAC,KAAK,EAAE,CAAC,CAAE,CAAC,CAAC;aACvC,kBAAkB,GAAG,kBAAkB,GAAG,CAAC,CAAC;aAE5C,IAAI,kBAAkB,EAAE;iBACtB,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;cAClB;aAED,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,kBAAkB,EAAE,CAAC,EAAE,EAAE;iBAC3C,MAAM,CAAC,IAAI,CAAC,UAAG,WAAW,CAAC,KAAK,EAAE,CAAC,CAAE,CAAC,CAAC;cACxC;;aAGD,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;aACjB,IAAI,mBAAmB,GAAG,CAAC,EAAE;iBAC3B,MAAM,CAAC,IAAI,CAAC,WAAI,mBAAmB,CAAE,CAAC,CAAC;cACxC;kBAAM;iBACL,MAAM,CAAC,IAAI,CAAC,UAAG,mBAAmB,CAAE,CAAC,CAAC;cACvC;UACF;cAAM;;aAEL,IAAI,QAAQ,IAAI,CAAC,EAAE;iBACjB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,kBAAkB,EAAE,CAAC,EAAE,EAAE;qBAC3C,MAAM,CAAC,IAAI,CAAC,UAAG,WAAW,CAAC,KAAK,EAAE,CAAC,CAAE,CAAC,CAAC;kBACxC;cACF;kBAAM;iBACL,IAAI,cAAc,GAAG,kBAAkB,GAAG,QAAQ,CAAC;;iBAGnD,IAAI,cAAc,GAAG,CAAC,EAAE;qBACtB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,cAAc,EAAE,CAAC,EAAE,EAAE;yBACvC,MAAM,CAAC,IAAI,CAAC,UAAG,WAAW,CAAC,KAAK,EAAE,CAAC,CAAE,CAAC,CAAC;sBACxC;kBACF;sBAAM;qBACL,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;kBAClB;iBAED,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;;iBAEjB,OAAO,cAAc,EAAE,GAAG,CAAC,EAAE;qBAC3B,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;kBAClB;iBAED,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,kBAAkB,GAAG,IAAI,CAAC,GAAG,CAAC,cAAc,GAAG,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE;qBAC7E,MAAM,CAAC,IAAI,CAAC,UAAG,WAAW,CAAC,KAAK,EAAE,CAAC,CAAE,CAAC,CAAC;kBACxC;cACF;UACF;SAED,OAAO,MAAM,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;MACxB;KAED,2BAAM,GAAN;SACE,OAAO,EAAE,cAAc,EAAE,IAAI,CAAC,QAAQ,EAAE,EAAE,CAAC;MAC5C;;KAGD,mCAAc,GAAd;SACE,OAAO,EAAE,cAAc,EAAE,IAAI,CAAC,QAAQ,EAAE,EAAE,CAAC;MAC5C;;KAGM,2BAAgB,GAAvB,UAAwB,GAAuB;SAC7C,OAAO,UAAU,CAAC,UAAU,CAAC,GAAG,CAAC,cAAc,CAAC,CAAC;MAClD;;KAGD,qBAAC,MAAM,CAAC,GAAG,CAAC,4BAA4B,CAAC,CAAC,GAA1C;SACE,OAAO,IAAI,CAAC,OAAO,EAAE,CAAC;MACvB;KAED,4BAAO,GAAP;SACE,OAAO,2BAAmB,IAAI,CAAC,QAAQ,EAAE,QAAI,CAAC;MAC/C;KACH,iBAAC;CAAD,CAAC,IAAA;CAED,MAAM,CAAC,cAAc,CAAC,UAAU,CAAC,SAAS,EAAE,WAAW,EAAE,EAAE,KAAK,EAAE,YAAY,EAAE,CAAC;;CC7vBjF;;;;;;;;;;;KAcE,gBAAY,KAAa;SACvB,IAAI,EAAE,IAAI,YAAY,MAAM,CAAC;aAAE,OAAO,IAAI,MAAM,CAAC,KAAK,CAAC,CAAC;SAExD,IAAK,KAAiB,YAAY,MAAM,EAAE;aACxC,KAAK,GAAG,KAAK,CAAC,OAAO,EAAE,CAAC;UACzB;SAED,IAAI,CAAC,KAAK,GAAG,CAAC,KAAK,CAAC;MACrB;;;;;;KAOD,wBAAO,GAAP;SACE,OAAO,IAAI,CAAC,KAAK,CAAC;MACnB;KAED,uBAAM,GAAN;SACE,OAAO,IAAI,CAAC,KAAK,CAAC;MACnB;KAED,yBAAQ,GAAR,UAAS,KAAc;SACrB,OAAO,IAAI,CAAC,KAAK,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC;MACnC;;KAGD,+BAAc,GAAd,UAAe,OAAsB;SACnC,IAAI,OAAO,KAAK,OAAO,CAAC,MAAM,KAAK,OAAO,CAAC,OAAO,IAAI,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE;aAC5E,OAAO,IAAI,CAAC,KAAK,CAAC;UACnB;;;SAID,IAAI,MAAM,CAAC,EAAE,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE;aACxC,OAAO,EAAE,aAAa,EAAE,WAAI,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,CAAE,EAAE,CAAC;UACvD;SAED,IAAI,aAAqB,CAAC;SAC1B,IAAI,MAAM,CAAC,SAAS,CAAC,IAAI,CAAC,KAAK,CAAC,EAAE;aAChC,aAAa,GAAG,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;aACtC,IAAI,aAAa,CAAC,MAAM,IAAI,EAAE,EAAE;iBAC9B,aAAa,GAAG,IAAI,CAAC,KAAK,CAAC,aAAa,CAAC,EAAE,CAAC,CAAC,WAAW,EAAE,CAAC;cAC5D;UACF;cAAM;aACL,aAAa,GAAG,IAAI,CAAC,KAAK,CAAC,QAAQ,EAAE,CAAC;UACvC;SAED,OAAO,EAAE,aAAa,eAAA,EAAE,CAAC;MAC1B;;KAGM,uBAAgB,GAAvB,UAAwB,GAAmB,EAAE,OAAsB;SACjE,IAAM,WAAW,GAAG,UAAU,CAAC,GAAG,CAAC,aAAa,CAAC,CAAC;SAClD,OAAO,OAAO,IAAI,OAAO,CAAC,OAAO,GAAG,WAAW,GAAG,IAAI,MAAM,CAAC,WAAW,CAAC,CAAC;MAC3E;;KAGD,iBAAC,MAAM,CAAC,GAAG,CAAC,4BAA4B,CAAC,CAAC,GAA1C;SACE,OAAO,IAAI,CAAC,OAAO,EAAE,CAAC;MACvB;KAED,wBAAO,GAAP;SACE,IAAM,KAAK,GAAG,IAAI,CAAC,cAAc,EAAoB,CAAC;SACtD,OAAO,qBAAc,KAAK,CAAC,aAAa,MAAG,CAAC;MAC7C;KACH,aAAC;CAAD,CAAC,IAAA;CAED,MAAM,CAAC,cAAc,CAAC,MAAM,CAAC,SAAS,EAAE,WAAW,EAAE,EAAE,KAAK,EAAE,QAAQ,EAAE,CAAC;;CCnFzE;;;;;;;;;;;KAcE,eAAY,KAAsB;SAChC,IAAI,EAAE,IAAI,YAAY,KAAK,CAAC;aAAE,OAAO,IAAI,KAAK,CAAC,KAAK,CAAC,CAAC;SAEtD,IAAK,KAAiB,YAAY,MAAM,EAAE;aACxC,KAAK,GAAG,KAAK,CAAC,OAAO,EAAE,CAAC;UACzB;SAED,IAAI,CAAC,KAAK,GAAG,CAAC,KAAK,GAAG,CAAC,CAAC;MACzB;;;;;;KAOD,uBAAO,GAAP;SACE,OAAO,IAAI,CAAC,KAAK,CAAC;MACnB;KAED,wBAAQ,GAAR,UAAS,KAAc;SACrB,OAAO,IAAI,CAAC,KAAK,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC;MACnC;KAED,sBAAM,GAAN;SACE,OAAO,IAAI,CAAC,KAAK,CAAC;MACnB;;KAGD,8BAAc,GAAd,UAAe,OAAsB;SACnC,IAAI,OAAO,KAAK,OAAO,CAAC,OAAO,IAAI,OAAO,CAAC,MAAM,CAAC;aAAE,OAAO,IAAI,CAAC,KAAK,CAAC;SACtE,OAAO,EAAE,UAAU,EAAE,IAAI,CAAC,KAAK,CAAC,QAAQ,EAAE,EAAE,CAAC;MAC9C;;KAGM,sBAAgB,GAAvB,UAAwB,GAAkB,EAAE,OAAsB;SAChE,OAAO,OAAO,IAAI,OAAO,CAAC,OAAO,GAAG,QAAQ,CAAC,GAAG,CAAC,UAAU,EAAE,EAAE,CAAC,GAAG,IAAI,KAAK,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC;MAC9F;;KAGD,gBAAC,MAAM,CAAC,GAAG,CAAC,4BAA4B,CAAC,CAAC,GAA1C;SACE,OAAO,IAAI,CAAC,OAAO,EAAE,CAAC;MACvB;KAED,uBAAO,GAAP;SACE,OAAO,oBAAa,IAAI,CAAC,OAAO,EAAE,MAAG,CAAC;MACvC;KACH,YAAC;CAAD,CAAC,IAAA;CAED,MAAM,CAAC,cAAc,CAAC,KAAK,CAAC,SAAS,EAAE,WAAW,EAAE,EAAE,KAAK,EAAE,OAAO,EAAE,CAAC;;CChEvE;;;;;;KAQE;SACE,IAAI,EAAE,IAAI,YAAY,MAAM,CAAC;aAAE,OAAO,IAAI,MAAM,EAAE,CAAC;MACpD;;KAGD,+BAAc,GAAd;SACE,OAAO,EAAE,OAAO,EAAE,CAAC,EAAE,CAAC;MACvB;;KAGM,uBAAgB,GAAvB;SACE,OAAO,IAAI,MAAM,EAAE,CAAC;MACrB;;KAGD,iBAAC,MAAM,CAAC,GAAG,CAAC,4BAA4B,CAAC,CAAC,GAA1C;SACE,OAAO,IAAI,CAAC,OAAO,EAAE,CAAC;MACvB;KAED,wBAAO,GAAP;SACE,OAAO,cAAc,CAAC;MACvB;KACH,aAAC;CAAD,CAAC,IAAA;CAED,MAAM,CAAC,cAAc,CAAC,MAAM,CAAC,SAAS,EAAE,WAAW,EAAE,EAAE,KAAK,EAAE,QAAQ,EAAE,CAAC;;CChCzE;;;;;;KAQE;SACE,IAAI,EAAE,IAAI,YAAY,MAAM,CAAC;aAAE,OAAO,IAAI,MAAM,EAAE,CAAC;MACpD;;KAGD,+BAAc,GAAd;SACE,OAAO,EAAE,OAAO,EAAE,CAAC,EAAE,CAAC;MACvB;;KAGM,uBAAgB,GAAvB;SACE,OAAO,IAAI,MAAM,EAAE,CAAC;MACrB;;KAGD,iBAAC,MAAM,CAAC,GAAG,CAAC,4BAA4B,CAAC,CAAC,GAA1C;SACE,OAAO,IAAI,CAAC,OAAO,EAAE,CAAC;MACvB;KAED,wBAAO,GAAP;SACE,OAAO,cAAc,CAAC;MACvB;KACH,aAAC;CAAD,CAAC,IAAA;CAED,MAAM,CAAC,cAAc,CAAC,MAAM,CAAC,SAAS,EAAE,WAAW,EAAE,EAAE,KAAK,EAAE,QAAQ,EAAE,CAAC;;CChCzE;CACA,IAAM,iBAAiB,GAAG,IAAI,MAAM,CAAC,mBAAmB,CAAC,CAAC;CAE1D;CACA,IAAI,cAAc,GAAsB,IAAI,CAAC;CAc7C,IAAM,GAAG,GAAG,MAAM,CAAC,IAAI,CAAC,CAAC;CAEzB;;;;;;;;;;;KAuBE,kBAAY,OAAyE;SACnF,IAAI,EAAE,IAAI,YAAY,QAAQ,CAAC;aAAE,OAAO,IAAI,QAAQ,CAAC,OAAO,CAAC,CAAC;;SAG9D,IAAI,SAAS,CAAC;SACd,IAAI,OAAO,OAAO,KAAK,QAAQ,IAAI,OAAO,IAAI,IAAI,IAAI,OAAO,EAAE;aAC7D,IAAI,OAAO,OAAO,CAAC,EAAE,KAAK,QAAQ,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,OAAO,CAAC,EAAE,CAAC,EAAE;iBACrE,MAAM,IAAI,aAAa,CACrB,qEAAqE,CACtE,CAAC;cACH;aACD,IAAI,aAAa,IAAI,OAAO,IAAI,OAAO,OAAO,CAAC,WAAW,KAAK,UAAU,EAAE;iBACzE,SAAS,GAAGA,QAAM,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,EAAE,EAAE,KAAK,CAAC,CAAC;cACvD;kBAAM;iBACL,SAAS,GAAG,OAAO,CAAC,EAAE,CAAC;cACxB;UACF;cAAM;aACL,SAAS,GAAG,OAAO,CAAC;UACrB;;SAGD,IAAI,SAAS,IAAI,IAAI,IAAI,OAAO,SAAS,KAAK,QAAQ,EAAE;;;aAGtD,IAAI,CAAC,GAAG,CAAC,GAAG,QAAQ,CAAC,QAAQ,CAAC,OAAO,SAAS,KAAK,QAAQ,GAAG,SAAS,GAAG,SAAS,CAAC,CAAC;UACtF;cAAM,IAAI,WAAW,CAAC,MAAM,CAAC,SAAS,CAAC,IAAI,SAAS,CAAC,UAAU,KAAK,EAAE,EAAE;;aAEvE,IAAI,CAAC,GAAG,CAAC,GAAG,SAAS,YAAYA,QAAM,GAAG,SAAS,GAAG,YAAY,CAAC,SAAS,CAAC,CAAC;UAC/E;cAAM,IAAI,OAAO,SAAS,KAAK,QAAQ,EAAE;aACxC,IAAI,SAAS,CAAC,MAAM,KAAK,EAAE,EAAE;iBAC3B,IAAM,KAAK,GAAGA,QAAM,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;iBACrC,IAAI,KAAK,CAAC,UAAU,KAAK,EAAE,EAAE;qBAC3B,IAAI,CAAC,GAAG,CAAC,GAAG,KAAK,CAAC;kBACnB;sBAAM;qBACL,MAAM,IAAI,aAAa,CAAC,iDAAiD,CAAC,CAAC;kBAC5E;cACF;kBAAM,IAAI,SAAS,CAAC,MAAM,KAAK,EAAE,IAAI,iBAAiB,CAAC,IAAI,CAAC,SAAS,CAAC,EAAE;iBACvE,IAAI,CAAC,GAAG,CAAC,GAAGA,QAAM,CAAC,IAAI,CAAC,SAAS,EAAE,KAAK,CAAC,CAAC;cAC3C;kBAAM;iBACL,MAAM,IAAI,aAAa,CACrB,gGAAgG,CACjG,CAAC;cACH;UACF;cAAM;aACL,MAAM,IAAI,aAAa,CAAC,sDAAsD,CAAC,CAAC;UACjF;;SAED,IAAI,QAAQ,CAAC,cAAc,EAAE;aAC3B,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,EAAE,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC;UACrC;MACF;KAMD,sBAAI,wBAAE;;;;;cAAN;aACE,OAAO,IAAI,CAAC,GAAG,CAAC,CAAC;UAClB;cAED,UAAO,KAAa;aAClB,IAAI,CAAC,GAAG,CAAC,GAAG,KAAK,CAAC;aAClB,IAAI,QAAQ,CAAC,cAAc,EAAE;iBAC3B,IAAI,CAAC,IAAI,GAAG,KAAK,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC;cACnC;UACF;;;QAPA;KAaD,sBAAI,oCAAc;;;;;cAAlB;aACE,OAAO,IAAI,CAAC,EAAE,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC;UAC/B;cAED,UAAmB,KAAa;;aAE9B,IAAI,CAAC,EAAE,CAAC,aAAa,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC;UACjC;;;QALA;;KAQD,8BAAW,GAAX;SACE,IAAI,QAAQ,CAAC,cAAc,IAAI,IAAI,CAAC,IAAI,EAAE;aACxC,OAAO,IAAI,CAAC,IAAI,CAAC;UAClB;SAED,IAAM,SAAS,GAAG,IAAI,CAAC,EAAE,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC;SAE1C,IAAI,QAAQ,CAAC,cAAc,IAAI,CAAC,IAAI,CAAC,IAAI,EAAE;aACzC,IAAI,CAAC,IAAI,GAAG,SAAS,CAAC;UACvB;SAED,OAAO,SAAS,CAAC;MAClB;;;;;;;KAQM,eAAM,GAAb;SACE,QAAQ,QAAQ,CAAC,KAAK,GAAG,CAAC,QAAQ,CAAC,KAAK,GAAG,CAAC,IAAI,QAAQ,EAAE;MAC3D;;;;;;KAOM,iBAAQ,GAAf,UAAgB,IAAa;SAC3B,IAAI,QAAQ,KAAK,OAAO,IAAI,EAAE;aAC5B,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,GAAG,EAAE,GAAG,IAAI,CAAC,CAAC;UACtC;SAED,IAAM,GAAG,GAAG,QAAQ,CAAC,MAAM,EAAE,CAAC;SAC9B,IAAM,MAAM,GAAGA,QAAM,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC;;SAGhC,MAAM,CAAC,aAAa,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC;;SAG9B,IAAI,cAAc,KAAK,IAAI,EAAE;aAC3B,cAAc,GAAG,WAAW,CAAC,CAAC,CAAC,CAAC;UACjC;;SAGD,MAAM,CAAC,CAAC,CAAC,GAAG,cAAc,CAAC,CAAC,CAAC,CAAC;SAC9B,MAAM,CAAC,CAAC,CAAC,GAAG,cAAc,CAAC,CAAC,CAAC,CAAC;SAC9B,MAAM,CAAC,CAAC,CAAC,GAAG,cAAc,CAAC,CAAC,CAAC,CAAC;SAC9B,MAAM,CAAC,CAAC,CAAC,GAAG,cAAc,CAAC,CAAC,CAAC,CAAC;SAC9B,MAAM,CAAC,CAAC,CAAC,GAAG,cAAc,CAAC,CAAC,CAAC,CAAC;;SAG9B,MAAM,CAAC,EAAE,CAAC,GAAG,GAAG,GAAG,IAAI,CAAC;SACxB,MAAM,CAAC,EAAE,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC,IAAI,IAAI,CAAC;SAC/B,MAAM,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,IAAI,EAAE,IAAI,IAAI,CAAC;SAE/B,OAAO,MAAM,CAAC;MACf;;;;;;KAOD,2BAAQ,GAAR,UAAS,MAAe;;SAEtB,IAAI,MAAM;aAAE,OAAO,IAAI,CAAC,EAAE,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC;SAC5C,OAAO,IAAI,CAAC,WAAW,EAAE,CAAC;MAC3B;;KAGD,yBAAM,GAAN;SACE,OAAO,IAAI,CAAC,WAAW,EAAE,CAAC;MAC3B;;;;;;KAOD,yBAAM,GAAN,UAAO,OAAyC;SAC9C,IAAI,OAAO,KAAK,SAAS,IAAI,OAAO,KAAK,IAAI,EAAE;aAC7C,OAAO,KAAK,CAAC;UACd;SAED,IAAI,OAAO,YAAY,QAAQ,EAAE;aAC/B,OAAO,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,KAAK,OAAO,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,IAAI,IAAI,CAAC,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC;UAC7E;SAED,IACE,OAAO,OAAO,KAAK,QAAQ;aAC3B,QAAQ,CAAC,OAAO,CAAC,OAAO,CAAC;aACzB,OAAO,CAAC,MAAM,KAAK,EAAE;aACrB,YAAY,CAAC,IAAI,CAAC,EAAE,CAAC,EACrB;aACA,OAAO,OAAO,KAAKA,QAAM,CAAC,SAAS,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,EAAE,EAAE,QAAQ,CAAC,CAAC;UACtE;SAED,IAAI,OAAO,OAAO,KAAK,QAAQ,IAAI,QAAQ,CAAC,OAAO,CAAC,OAAO,CAAC,IAAI,OAAO,CAAC,MAAM,KAAK,EAAE,EAAE;aACrF,OAAO,OAAO,CAAC,WAAW,EAAE,KAAK,IAAI,CAAC,WAAW,EAAE,CAAC;UACrD;SAED,IAAI,OAAO,OAAO,KAAK,QAAQ,IAAI,QAAQ,CAAC,OAAO,CAAC,OAAO,CAAC,IAAI,OAAO,CAAC,MAAM,KAAK,EAAE,EAAE;aACrF,OAAOA,QAAM,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;UAC7C;SAED,IACE,OAAO,OAAO,KAAK,QAAQ;aAC3B,aAAa,IAAI,OAAO;aACxB,OAAO,OAAO,CAAC,WAAW,KAAK,UAAU,EACzC;aACA,IAAM,aAAa,GAAG,OAAO,CAAC,WAAW,EAAE,CAAC;aAC5C,IAAM,YAAY,GAAG,IAAI,CAAC,WAAW,EAAE,CAAC,WAAW,EAAE,CAAC;aACtD,OAAO,OAAO,aAAa,KAAK,QAAQ,IAAI,aAAa,CAAC,WAAW,EAAE,KAAK,YAAY,CAAC;UAC1F;SAED,OAAO,KAAK,CAAC;MACd;;KAGD,+BAAY,GAAZ;SACE,IAAM,SAAS,GAAG,IAAI,IAAI,EAAE,CAAC;SAC7B,IAAM,IAAI,GAAG,IAAI,CAAC,EAAE,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC;SACrC,SAAS,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC,CAAC;SAC3C,OAAO,SAAS,CAAC;MAClB;;KAGM,iBAAQ,GAAf;SACE,OAAO,IAAI,QAAQ,EAAE,CAAC;MACvB;;;;;;KAOM,uBAAc,GAArB,UAAsB,IAAY;SAChC,IAAM,MAAM,GAAGA,QAAM,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;;SAEjE,MAAM,CAAC,aAAa,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC;;SAE9B,OAAO,IAAI,QAAQ,CAAC,MAAM,CAAC,CAAC;MAC7B;;;;;;KAOM,4BAAmB,GAA1B,UAA2B,SAAiB;;SAE1C,IAAI,OAAO,SAAS,KAAK,WAAW,KAAK,SAAS,IAAI,IAAI,IAAI,SAAS,CAAC,MAAM,KAAK,EAAE,CAAC,EAAE;aACtF,MAAM,IAAI,aAAa,CACrB,yFAAyF,CAC1F,CAAC;UACH;SAED,OAAO,IAAI,QAAQ,CAACA,QAAM,CAAC,IAAI,CAAC,SAAS,EAAE,KAAK,CAAC,CAAC,CAAC;MACpD;;;;;;KAOM,gBAAO,GAAd,UAAe,EAAmE;SAChF,IAAI,EAAE,IAAI,IAAI;aAAE,OAAO,KAAK,CAAC;SAE7B,IAAI;aACF,IAAI,QAAQ,CAAC,EAAE,CAAC,CAAC;aACjB,OAAO,IAAI,CAAC;UACb;SAAC,WAAM;aACN,OAAO,KAAK,CAAC;UACd;MACF;;KAGD,iCAAc,GAAd;SACE,IAAI,IAAI,CAAC,WAAW;aAAE,OAAO,EAAE,IAAI,EAAE,IAAI,CAAC,WAAW,EAAE,EAAE,CAAC;SAC1D,OAAO,EAAE,IAAI,EAAE,IAAI,CAAC,QAAQ,CAAC,KAAK,CAAC,EAAE,CAAC;MACvC;;KAGM,yBAAgB,GAAvB,UAAwB,GAAqB;SAC3C,OAAO,IAAI,QAAQ,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC;MAC/B;;;;;;;KAQD,mBAAC,MAAM,CAAC,GAAG,CAAC,4BAA4B,CAAC,CAAC,GAA1C;SACE,OAAO,IAAI,CAAC,OAAO,EAAE,CAAC;MACvB;KAED,0BAAO,GAAP;SACE,OAAO,yBAAiB,IAAI,CAAC,WAAW,EAAE,QAAI,CAAC;MAChD;;KAxSM,cAAK,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,MAAM,EAAE,GAAG,QAAQ,CAAC,CAAC;KAyStD,eAAC;EA7SD,IA6SC;CAED;CACA,MAAM,CAAC,cAAc,CAAC,QAAQ,CAAC,SAAS,EAAE,UAAU,EAAE;KACpD,KAAK,EAAE,SAAS,CACd,UAAC,IAAY,IAAK,OAAA,QAAQ,CAAC,QAAQ,CAAC,IAAI,CAAC,GAAA,EACzC,yDAAyD,CAC1D;EACF,CAAC,CAAC;CAEH,MAAM,CAAC,cAAc,CAAC,QAAQ,CAAC,SAAS,EAAE,QAAQ,EAAE;KAClD,KAAK,EAAE,SAAS,CAAC,cAAM,OAAA,QAAQ,CAAC,MAAM,EAAE,GAAA,EAAE,mDAAmD,CAAC;EAC/F,CAAC,CAAC;CAEH,MAAM,CAAC,cAAc,CAAC,QAAQ,CAAC,SAAS,EAAE,SAAS,EAAE;KACnD,KAAK,EAAE,SAAS,CAAC,cAAM,OAAA,QAAQ,CAAC,MAAM,EAAE,GAAA,EAAE,mDAAmD,CAAC;EAC/F,CAAC,CAAC;CAEH,MAAM,CAAC,cAAc,CAAC,QAAQ,EAAE,SAAS,EAAE;KACzC,KAAK,EAAE,SAAS,CAAC,cAAM,OAAA,QAAQ,CAAC,MAAM,EAAE,GAAA,EAAE,mDAAmD,CAAC;EAC/F,CAAC,CAAC;CAEH,MAAM,CAAC,cAAc,CAAC,QAAQ,CAAC,SAAS,EAAE,WAAW,EAAE,EAAE,KAAK,EAAE,UAAU,EAAE,CAAC;;CC9V7E,SAAS,WAAW,CAAC,GAAW;KAC9B,OAAO,GAAG,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;CACvC,CAAC;CAgBD;;;;;;;;;;KAcE,oBAAY,OAAe,EAAE,OAAgB;SAC3C,IAAI,EAAE,IAAI,YAAY,UAAU,CAAC;aAAE,OAAO,IAAI,UAAU,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC;SAE3E,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;SACvB,IAAI,CAAC,OAAO,GAAG,WAAW,CAAC,OAAO,aAAP,OAAO,cAAP,OAAO,GAAI,EAAE,CAAC,CAAC;SAE1C,IAAI,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,EAAE;aACvC,MAAM,IAAI,SAAS,CACjB,gEAAyD,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,OAAO,CAAC,CAAE,CACxF,CAAC;UACH;SACD,IAAI,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,EAAE;aACvC,MAAM,IAAI,SAAS,CACjB,+DAAwD,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,OAAO,CAAC,CAAE,CACvF,CAAC;UACH;;SAGD,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;aAC5C,IACE,EACE,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,KAAK,GAAG;iBACvB,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,KAAK,GAAG;iBACvB,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,KAAK,GAAG;iBACvB,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,KAAK,GAAG;iBACvB,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,KAAK,GAAG;iBACvB,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,KAAK,GAAG,CACxB,EACD;iBACA,MAAM,IAAI,SAAS,CAAC,yCAAkC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,uBAAoB,CAAC,CAAC;cAC5F;UACF;MACF;KAEM,uBAAY,GAAnB,UAAoB,OAAgB;SAClC,OAAO,OAAO,GAAG,OAAO,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC,IAAI,CAAC,EAAE,CAAC,GAAG,EAAE,CAAC;MACzD;;KAGD,mCAAc,GAAd,UAAe,OAAsB;SACnC,OAAO,GAAG,OAAO,IAAI,EAAE,CAAC;SACxB,IAAI,OAAO,CAAC,MAAM,EAAE;aAClB,OAAO,EAAE,MAAM,EAAE,IAAI,CAAC,OAAO,EAAE,QAAQ,EAAE,IAAI,CAAC,OAAO,EAAE,CAAC;UACzD;SACD,OAAO,EAAE,kBAAkB,EAAE,EAAE,OAAO,EAAE,IAAI,CAAC,OAAO,EAAE,OAAO,EAAE,IAAI,CAAC,OAAO,EAAE,EAAE,CAAC;MACjF;;KAGM,2BAAgB,GAAvB,UAAwB,GAAkD;SACxE,IAAI,QAAQ,IAAI,GAAG,EAAE;aACnB,IAAI,OAAO,GAAG,CAAC,MAAM,KAAK,QAAQ,EAAE;;iBAElC,IAAI,GAAG,CAAC,MAAM,CAAC,SAAS,KAAK,YAAY,EAAE;qBACzC,OAAO,GAA4B,CAAC;kBACrC;cACF;kBAAM;iBACL,OAAO,IAAI,UAAU,CAAC,GAAG,CAAC,MAAM,EAAE,UAAU,CAAC,YAAY,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC,CAAC;cAC1E;UACF;SACD,IAAI,oBAAoB,IAAI,GAAG,EAAE;aAC/B,OAAO,IAAI,UAAU,CACnB,GAAG,CAAC,kBAAkB,CAAC,OAAO,EAC9B,UAAU,CAAC,YAAY,CAAC,GAAG,CAAC,kBAAkB,CAAC,OAAO,CAAC,CACxD,CAAC;UACH;SACD,MAAM,IAAI,aAAa,CAAC,mDAA4C,IAAI,CAAC,SAAS,CAAC,GAAG,CAAC,CAAE,CAAC,CAAC;MAC5F;KACH,iBAAC;CAAD,CAAC,IAAA;CAED,MAAM,CAAC,cAAc,CAAC,UAAU,CAAC,SAAS,EAAE,WAAW,EAAE,EAAE,KAAK,EAAE,YAAY,EAAE,CAAC;;CCnGjF;;;;;;;;;KAYE,oBAAY,KAAa;SACvB,IAAI,EAAE,IAAI,YAAY,UAAU,CAAC;aAAE,OAAO,IAAI,UAAU,CAAC,KAAK,CAAC,CAAC;SAEhE,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;MACpB;;KAGD,4BAAO,GAAP;SACE,OAAO,IAAI,CAAC,KAAK,CAAC;MACnB;KAED,6BAAQ,GAAR;SACE,OAAO,IAAI,CAAC,KAAK,CAAC;MACnB;;KAGD,4BAAO,GAAP;SACE,OAAO,2BAAmB,IAAI,CAAC,KAAK,QAAI,CAAC;MAC1C;KAED,2BAAM,GAAN;SACE,OAAO,IAAI,CAAC,KAAK,CAAC;MACnB;;KAGD,mCAAc,GAAd;SACE,OAAO,EAAE,OAAO,EAAE,IAAI,CAAC,KAAK,EAAE,CAAC;MAChC;;KAGM,2BAAgB,GAAvB,UAAwB,GAAuB;SAC7C,OAAO,IAAI,UAAU,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC;MACpC;;KAGD,qBAAC,MAAM,CAAC,GAAG,CAAC,4BAA4B,CAAC,CAAC,GAA1C;SACE,OAAO,IAAI,CAAC,OAAO,EAAE,CAAC;MACvB;KACH,iBAAC;CAAD,CAAC,IAAA;CAED,MAAM,CAAC,cAAc,CAAC,UAAU,CAAC,SAAS,EAAE,WAAW,EAAE,EAAE,KAAK,EAAE,QAAQ,EAAE,CAAC;;CChD7E;KACa,yBAAyB,GACpC,KAAwC;CAU1C;;;;;KAI+B,6BAAyB;KAmBtD,mBAAY,GAA6C,EAAE,IAAa;SAAxE,iBAkBC;;;SAfC,IAAI,EAAE,KAAI,YAAY,SAAS,CAAC;aAAE,OAAO,IAAI,SAAS,CAAC,GAAG,EAAE,IAAI,CAAC,CAAC;SAElE,IAAI,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE;aACpB,QAAA,kBAAM,GAAG,CAAC,GAAG,EAAE,GAAG,CAAC,IAAI,EAAE,IAAI,CAAC,SAAC;UAChC;cAAM,IAAI,YAAY,CAAC,GAAG,CAAC,IAAI,OAAO,GAAG,CAAC,CAAC,KAAK,WAAW,IAAI,OAAO,GAAG,CAAC,CAAC,KAAK,WAAW,EAAE;aAC5F,QAAA,kBAAM,GAAG,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC,EAAE,IAAI,CAAC,SAAC;UAC3B;cAAM;aACL,QAAA,kBAAM,GAAG,EAAE,IAAI,EAAE,IAAI,CAAC,SAAC;UACxB;SACD,MAAM,CAAC,cAAc,CAAC,KAAI,EAAE,WAAW,EAAE;aACvC,KAAK,EAAE,WAAW;aAClB,QAAQ,EAAE,KAAK;aACf,YAAY,EAAE,KAAK;aACnB,UAAU,EAAE,KAAK;UAClB,CAAC,CAAC;;MACJ;KAED,0BAAM,GAAN;SACE,OAAO;aACL,UAAU,EAAE,IAAI,CAAC,QAAQ,EAAE;UAC5B,CAAC;MACH;;KAGM,iBAAO,GAAd,UAAe,KAAa;SAC1B,OAAO,IAAI,SAAS,CAAC,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE,IAAI,CAAC,CAAC,CAAC;MACjD;;KAGM,oBAAU,GAAjB,UAAkB,KAAa;SAC7B,OAAO,IAAI,SAAS,CAAC,IAAI,CAAC,UAAU,CAAC,KAAK,EAAE,IAAI,CAAC,CAAC,CAAC;MACpD;;;;;;;KAQM,kBAAQ,GAAf,UAAgB,OAAe,EAAE,QAAgB;SAC/C,OAAO,IAAI,SAAS,CAAC,OAAO,EAAE,QAAQ,CAAC,CAAC;MACzC;;;;;;;KAQM,oBAAU,GAAjB,UAAkB,GAAW,EAAE,QAAgB;SAC7C,OAAO,IAAI,SAAS,CAAC,IAAI,CAAC,UAAU,CAAC,GAAG,EAAE,IAAI,EAAE,QAAQ,CAAC,CAAC,CAAC;MAC5D;;KAGD,kCAAc,GAAd;SACE,OAAO,EAAE,UAAU,EAAE,EAAE,CAAC,EAAE,IAAI,CAAC,IAAI,KAAK,CAAC,EAAE,CAAC,EAAE,IAAI,CAAC,GAAG,KAAK,CAAC,EAAE,EAAE,CAAC;MAClE;;KAGM,0BAAgB,GAAvB,UAAwB,GAAsB;SAC5C,OAAO,IAAI,SAAS,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC;MACtC;;KAGD,oBAAC,MAAM,CAAC,GAAG,CAAC,4BAA4B,CAAC,CAAC,GAA1C;SACE,OAAO,IAAI,CAAC,OAAO,EAAE,CAAC;MACvB;KAED,2BAAO,GAAP;SACE,OAAO,6BAAsB,IAAI,CAAC,WAAW,EAAE,kBAAQ,IAAI,CAAC,UAAU,EAAE,QAAK,CAAC;MAC/E;KAzFe,mBAAS,GAAG,IAAI,CAAC,kBAAkB,CAAC;KA0FtD,gBAAC;EAAA,CA7F8B,yBAAyB;;UCWxC,UAAU,CAAC,KAAc;KACvC,QACE,YAAY,CAAC,KAAK,CAAC,IAAI,OAAO,CAAC,GAAG,CAAC,KAAK,EAAE,WAAW,CAAC,IAAI,OAAO,KAAK,CAAC,SAAS,KAAK,QAAQ,EAC7F;CACJ,CAAC;CAED;CACA,IAAM,cAAc,GAAG,UAAU,CAAC;CAClC,IAAM,cAAc,GAAG,CAAC,UAAU,CAAC;CACnC;CACA;CACA,IAAM,cAAc,GAAG,kBAAkB,CAAC;CAC1C,IAAM,cAAc,GAAG,CAAC,kBAAkB,CAAC;CAE3C;CACA;CACA,IAAM,YAAY,GAAG;KACnB,IAAI,EAAE,QAAQ;KACd,OAAO,EAAE,MAAM;KACf,KAAK,EAAE,MAAM;KACb,OAAO,EAAE,UAAU;KACnB,UAAU,EAAE,KAAK;KACjB,cAAc,EAAE,UAAU;KAC1B,aAAa,EAAE,MAAM;KACrB,WAAW,EAAE,IAAI;KACjB,OAAO,EAAE,MAAM;KACf,OAAO,EAAE,MAAM;KACf,MAAM,EAAE,UAAU;KAClB,kBAAkB,EAAE,UAAU;KAC9B,UAAU,EAAE,SAAS;EACb,CAAC;CAEX;CACA,SAAS,gBAAgB,CAAC,KAAU,EAAE,OAA2B;KAA3B,wBAAA,EAAA,YAA2B;KAC/D,IAAI,OAAO,KAAK,KAAK,QAAQ,EAAE;SAC7B,IAAI,OAAO,CAAC,OAAO,IAAI,OAAO,CAAC,MAAM,EAAE;aACrC,OAAO,KAAK,CAAC;UACd;;;SAID,IAAI,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,KAAK,EAAE;aAC/B,IAAI,KAAK,IAAI,cAAc,IAAI,KAAK,IAAI,cAAc;iBAAE,OAAO,IAAI,KAAK,CAAC,KAAK,CAAC,CAAC;aAChF,IAAI,KAAK,IAAI,cAAc,IAAI,KAAK,IAAI,cAAc;iBAAE,OAAO,IAAI,CAAC,UAAU,CAAC,KAAK,CAAC,CAAC;UACvF;;SAGD,OAAO,IAAI,MAAM,CAAC,KAAK,CAAC,CAAC;MAC1B;;KAGD,IAAI,KAAK,IAAI,IAAI,IAAI,OAAO,KAAK,KAAK,QAAQ;SAAE,OAAO,KAAK,CAAC;;KAG7D,IAAI,KAAK,CAAC,UAAU;SAAE,OAAO,IAAI,CAAC;KAElC,IAAM,IAAI,GAAG,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,MAAM,CACpC,UAAA,CAAC,IAAI,OAAA,CAAC,CAAC,UAAU,CAAC,GAAG,CAAC,IAAI,KAAK,CAAC,CAAC,CAAC,IAAI,IAAI,GAAA,CACV,CAAC;KACnC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;SACpC,IAAM,CAAC,GAAG,YAAY,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC;SAChC,IAAI,CAAC;aAAE,OAAO,CAAC,CAAC,gBAAgB,CAAC,KAAK,EAAE,OAAO,CAAC,CAAC;MAClD;KAED,IAAI,KAAK,CAAC,KAAK,IAAI,IAAI,EAAE;SACvB,IAAM,CAAC,GAAG,KAAK,CAAC,KAAK,CAAC;SACtB,IAAM,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;SAExB,IAAI,OAAO,CAAC,MAAM,EAAE;aAClB,IAAI,OAAO,CAAC,KAAK,QAAQ;iBAAE,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;kBACtC,IAAI,OAAO,CAAC,KAAK,QAAQ;iBAAE,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC;UAC7D;cAAM;aACL,IAAI,OAAO,CAAC,KAAK,QAAQ;iBAAE,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC;kBAClD,IAAI,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC;iBAAE,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,QAAQ,EAAE,CAAC,CAAC;kBAC/C,IAAI,OAAO,CAAC,KAAK,QAAQ,IAAI,OAAO,CAAC,OAAO;iBAAE,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;UACpE;SACD,OAAO,IAAI,CAAC;MACb;KAED,IAAI,KAAK,CAAC,KAAK,IAAI,IAAI,EAAE;SACvB,IAAM,IAAI,GAAG,MAAM,CAAC,MAAM,CAAC,EAAE,EAAE,KAAK,CAAC,CAAC;SACtC,IAAI,KAAK,CAAC,MAAM,EAAE;aAChB,IAAI,CAAC,MAAM,GAAG,gBAAgB,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;UAC9C;SAED,OAAO,IAAI,CAAC,gBAAgB,CAAC,KAAK,CAAC,CAAC;MACrC;KAED,IAAI,WAAW,CAAC,KAAK,CAAC,IAAI,KAAK,CAAC,UAAU,EAAE;SAC1C,IAAM,CAAC,GAAG,KAAK,CAAC,IAAI,GAAG,KAAK,GAAG,KAAK,CAAC,UAAU,CAAC;;;SAIhD,IAAI,CAAC,YAAY,KAAK;aAAE,OAAO,CAAC,CAAC;SAEjC,IAAM,UAAU,GAAG,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,UAAA,CAAC,IAAI,OAAA,CAAC,CAAC,UAAU,CAAC,GAAG,CAAC,GAAA,CAAC,CAAC;SACjE,IAAI,OAAK,GAAG,IAAI,CAAC;SACjB,UAAU,CAAC,OAAO,CAAC,UAAA,CAAC;aAClB,IAAI,CAAC,MAAM,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC;iBAAE,OAAK,GAAG,KAAK,CAAC;UAC7D,CAAC,CAAC;;SAGH,IAAI,OAAK;aAAE,OAAO,KAAK,CAAC,gBAAgB,CAAC,CAAC,CAAC,CAAC;MAC7C;KAED,OAAO,KAAK,CAAC;CACf,CAAC;CAMD;CACA,SAAS,cAAc,CAAC,KAAY,EAAE,OAA8B;KAClE,OAAO,KAAK,CAAC,GAAG,CAAC,UAAC,CAAU,EAAE,KAAa;SACzC,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,EAAE,YAAY,EAAE,gBAAS,KAAK,CAAE,EAAE,GAAG,EAAE,IAAI,EAAE,CAAC,CAAC;SACxE,IAAI;aACF,OAAO,cAAc,CAAC,CAAC,EAAE,OAAO,CAAC,CAAC;UACnC;iBAAS;aACR,OAAO,CAAC,WAAW,CAAC,GAAG,EAAE,CAAC;UAC3B;MACF,CAAC,CAAC;CACL,CAAC;CAED,SAAS,YAAY,CAAC,IAAU;KAC9B,IAAM,MAAM,GAAG,IAAI,CAAC,WAAW,EAAE,CAAC;;KAElC,OAAO,IAAI,CAAC,kBAAkB,EAAE,KAAK,CAAC,GAAG,MAAM,GAAG,MAAM,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC;CAC9E,CAAC;CAED;CACA,SAAS,cAAc,CAAC,KAAU,EAAE,OAA8B;KAChE,IAAI,CAAC,OAAO,KAAK,KAAK,QAAQ,IAAI,OAAO,KAAK,KAAK,UAAU,KAAK,KAAK,KAAK,IAAI,EAAE;SAChF,IAAM,KAAK,GAAG,OAAO,CAAC,WAAW,CAAC,SAAS,CAAC,UAAA,KAAK,IAAI,OAAA,KAAK,CAAC,GAAG,KAAK,KAAK,GAAA,CAAC,CAAC;SAC1E,IAAI,KAAK,KAAK,CAAC,CAAC,EAAE;aAChB,IAAM,KAAK,GAAG,OAAO,CAAC,WAAW,CAAC,GAAG,CAAC,UAAA,KAAK,IAAI,OAAA,KAAK,CAAC,YAAY,GAAA,CAAC,CAAC;aACnE,IAAM,WAAW,GAAG,KAAK;kBACtB,KAAK,CAAC,CAAC,EAAE,KAAK,CAAC;kBACf,GAAG,CAAC,UAAA,IAAI,IAAI,OAAA,UAAG,IAAI,SAAM,GAAA,CAAC;kBAC1B,IAAI,CAAC,EAAE,CAAC,CAAC;aACZ,IAAM,WAAW,GAAG,KAAK,CAAC,KAAK,CAAC,CAAC;aACjC,IAAM,YAAY,GAChB,MAAM;iBACN,KAAK;sBACF,KAAK,CAAC,KAAK,GAAG,CAAC,EAAE,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC;sBAClC,GAAG,CAAC,UAAA,IAAI,IAAI,OAAA,UAAG,IAAI,SAAM,GAAA,CAAC;sBAC1B,IAAI,CAAC,EAAE,CAAC,CAAC;aACd,IAAM,OAAO,GAAG,KAAK,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;aACxC,IAAM,YAAY,GAAG,GAAG,CAAC,MAAM,CAAC,WAAW,CAAC,MAAM,GAAG,WAAW,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;aAC7E,IAAM,MAAM,GAAG,GAAG,CAAC,MAAM,CACvB,YAAY,CAAC,MAAM,GAAG,CAAC,WAAW,CAAC,MAAM,GAAG,OAAO,CAAC,MAAM,IAAI,CAAC,GAAG,CAAC,CACpE,CAAC;aAEF,MAAM,IAAI,aAAa,CACrB,2CAA2C;iBACzC,cAAO,WAAW,SAAG,WAAW,SAAG,YAAY,SAAG,OAAO,OAAI;iBAC7D,cAAO,YAAY,eAAK,MAAM,MAAG,CACpC,CAAC;UACH;SACD,OAAO,CAAC,WAAW,CAAC,OAAO,CAAC,WAAW,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,GAAG,GAAG,KAAK,CAAC;MACjE;KAED,IAAI,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC;SAAE,OAAO,cAAc,CAAC,KAAK,EAAE,OAAO,CAAC,CAAC;KAEhE,IAAI,KAAK,KAAK,SAAS;SAAE,OAAO,IAAI,CAAC;KAErC,IAAI,KAAK,YAAY,IAAI,IAAI,MAAM,CAAC,KAAK,CAAC,EAAE;SAC1C,IAAM,OAAO,GAAG,KAAK,CAAC,OAAO,EAAE;;SAE7B,OAAO,GAAG,OAAO,GAAG,CAAC,CAAC,IAAI,OAAO,GAAG,eAAe,CAAC;SAEtD,IAAI,OAAO,CAAC,MAAM,EAAE;aAClB,OAAO,OAAO,CAAC,OAAO,IAAI,OAAO;mBAC7B,EAAE,KAAK,EAAE,KAAK,CAAC,OAAO,EAAE,EAAE;mBAC1B,EAAE,KAAK,EAAE,YAAY,CAAC,KAAK,CAAC,EAAE,CAAC;UACpC;SACD,OAAO,OAAO,CAAC,OAAO,IAAI,OAAO;eAC7B,EAAE,KAAK,EAAE,YAAY,CAAC,KAAK,CAAC,EAAE;eAC9B,EAAE,KAAK,EAAE,EAAE,WAAW,EAAE,KAAK,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE,EAAE,EAAE,CAAC;MAC5D;KAED,IAAI,OAAO,KAAK,KAAK,QAAQ,KAAK,CAAC,OAAO,CAAC,OAAO,IAAI,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC,EAAE;;SAEvE,IAAI,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,KAAK,EAAE;aAC/B,IAAM,UAAU,GAAG,KAAK,IAAI,cAAc,IAAI,KAAK,IAAI,cAAc,EACnE,UAAU,GAAG,KAAK,IAAI,cAAc,IAAI,KAAK,IAAI,cAAc,CAAC;;aAGlE,IAAI,UAAU;iBAAE,OAAO,EAAE,UAAU,EAAE,KAAK,CAAC,QAAQ,EAAE,EAAE,CAAC;aACxD,IAAI,UAAU;iBAAE,OAAO,EAAE,WAAW,EAAE,KAAK,CAAC,QAAQ,EAAE,EAAE,CAAC;UAC1D;SACD,OAAO,EAAE,aAAa,EAAE,KAAK,CAAC,QAAQ,EAAE,EAAE,CAAC;MAC5C;KAED,IAAI,KAAK,YAAY,MAAM,IAAI,QAAQ,CAAC,KAAK,CAAC,EAAE;SAC9C,IAAI,KAAK,GAAG,KAAK,CAAC,KAAK,CAAC;SACxB,IAAI,KAAK,KAAK,SAAS,EAAE;aACvB,IAAM,KAAK,GAAG,KAAK,CAAC,QAAQ,EAAE,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC;aAClD,IAAI,KAAK,EAAE;iBACT,KAAK,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;cAClB;UACF;SAED,IAAM,EAAE,GAAG,IAAI,UAAU,CAAC,KAAK,CAAC,MAAM,EAAE,KAAK,CAAC,CAAC;SAC/C,OAAO,EAAE,CAAC,cAAc,CAAC,OAAO,CAAC,CAAC;MACnC;KAED,IAAI,KAAK,IAAI,IAAI,IAAI,OAAO,KAAK,KAAK,QAAQ;SAAE,OAAO,iBAAiB,CAAC,KAAK,EAAE,OAAO,CAAC,CAAC;KACzF,OAAO,KAAK,CAAC;CACf,CAAC;CAED,IAAM,kBAAkB,GAAG;KACzB,MAAM,EAAE,UAAC,CAAS,IAAK,OAAA,IAAI,MAAM,CAAC,CAAC,CAAC,KAAK,EAAE,EAAE,CAAC,CAAC,QAAQ,CAAC,GAAA;KACxD,IAAI,EAAE,UAAC,CAAO,IAAK,OAAA,IAAI,IAAI,CAAC,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC,KAAK,CAAC,GAAA;KAC5C,KAAK,EAAE,UAAC,CAAQ,IAAK,OAAA,IAAI,KAAK,CAAC,CAAC,CAAC,UAAU,IAAI,CAAC,CAAC,SAAS,EAAE,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,MAAM,CAAC,GAAA;KAClF,UAAU,EAAE,UAAC,CAAa,IAAK,OAAA,IAAI,UAAU,CAAC,CAAC,CAAC,KAAK,CAAC,GAAA;KACtD,MAAM,EAAE,UAAC,CAAS,IAAK,OAAA,IAAI,MAAM,CAAC,CAAC,CAAC,KAAK,CAAC,GAAA;KAC1C,KAAK,EAAE,UAAC,CAAQ,IAAK,OAAA,IAAI,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,GAAA;KACvC,IAAI,EAAE,UACJ,CAIC;SAED,OAAA,IAAI,CAAC,QAAQ;;SAEX,CAAC,CAAC,GAAG,IAAI,IAAI,GAAG,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC,IAAI,EAC9B,CAAC,CAAC,GAAG,IAAI,IAAI,GAAG,CAAC,CAAC,IAAI,GAAG,CAAC,CAAC,KAAK,EAChC,CAAC,CAAC,GAAG,IAAI,IAAI,GAAG,CAAC,CAAC,QAAQ,GAAG,CAAC,CAAC,SAAS,CACzC;MAAA;KACH,MAAM,EAAE,cAAM,OAAA,IAAI,MAAM,EAAE,GAAA;KAC1B,MAAM,EAAE,cAAM,OAAA,IAAI,MAAM,EAAE,GAAA;KAC1B,QAAQ,EAAE,UAAC,CAAW,IAAK,OAAA,IAAI,QAAQ,CAAC,CAAC,CAAC,GAAA;KAC1C,QAAQ,EAAE,UAAC,CAAW,IAAK,OAAA,IAAI,QAAQ,CAAC,CAAC,CAAC,GAAA;KAC1C,UAAU,EAAE,UAAC,CAAa,IAAK,OAAA,IAAI,UAAU,CAAC,CAAC,CAAC,OAAO,EAAE,CAAC,CAAC,OAAO,CAAC,GAAA;KACnE,MAAM,EAAE,UAAC,CAAa,IAAK,OAAA,IAAI,UAAU,CAAC,CAAC,CAAC,KAAK,CAAC,GAAA;KAClD,SAAS,EAAE,UAAC,CAAY,IAAK,OAAA,SAAS,CAAC,QAAQ,CAAC,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,IAAI,CAAC,GAAA;EACtD,CAAC;CAEX;CACA,SAAS,iBAAiB,CAAC,GAAQ,EAAE,OAA8B;KACjE,IAAI,GAAG,IAAI,IAAI,IAAI,OAAO,GAAG,KAAK,QAAQ;SAAE,MAAM,IAAI,SAAS,CAAC,wBAAwB,CAAC,CAAC;KAE1F,IAAM,QAAQ,GAA0B,GAAG,CAAC,SAAS,CAAC;KACtD,IAAI,OAAO,QAAQ,KAAK,WAAW,EAAE;;SAEnC,IAAM,IAAI,GAAa,EAAE,CAAC;SAC1B,KAAK,IAAM,IAAI,IAAI,GAAG,EAAE;aACtB,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,EAAE,YAAY,EAAE,IAAI,EAAE,GAAG,EAAE,IAAI,EAAE,CAAC,CAAC;aAC5D,IAAI;iBACF,IAAM,KAAK,GAAG,cAAc,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE,OAAO,CAAC,CAAC;iBACjD,IAAI,IAAI,KAAK,WAAW,EAAE;qBACxB,MAAM,CAAC,cAAc,CAAC,IAAI,EAAE,IAAI,EAAE;yBAChC,KAAK,OAAA;yBACL,QAAQ,EAAE,IAAI;yBACd,UAAU,EAAE,IAAI;yBAChB,YAAY,EAAE,IAAI;sBACnB,CAAC,CAAC;kBACJ;sBAAM;qBACL,IAAI,CAAC,IAAI,CAAC,GAAG,KAAK,CAAC;kBACpB;cACF;qBAAS;iBACR,OAAO,CAAC,WAAW,CAAC,GAAG,EAAE,CAAC;cAC3B;UACF;SACD,OAAO,IAAI,CAAC;MACb;UAAM,IAAI,UAAU,CAAC,GAAG,CAAC,EAAE;;;SAG1B,IAAI,MAAM,GAAQ,GAAG,CAAC;SACtB,IAAI,OAAO,MAAM,CAAC,cAAc,KAAK,UAAU,EAAE;;;;;aAK/C,IAAM,MAAM,GAAG,kBAAkB,CAAC,GAAG,CAAC,SAAS,CAAC,CAAC;aACjD,IAAI,CAAC,MAAM,EAAE;iBACX,MAAM,IAAI,aAAa,CAAC,qCAAqC,GAAG,GAAG,CAAC,SAAS,CAAC,CAAC;cAChF;aACD,MAAM,GAAG,MAAM,CAAC,MAAM,CAAC,CAAC;UACzB;;SAGD,IAAI,QAAQ,KAAK,MAAM,IAAI,MAAM,CAAC,KAAK,EAAE;aACvC,MAAM,GAAG,IAAI,IAAI,CAAC,MAAM,CAAC,IAAI,EAAE,cAAc,CAAC,MAAM,CAAC,KAAK,EAAE,OAAO,CAAC,CAAC,CAAC;UACvE;cAAM,IAAI,QAAQ,KAAK,OAAO,IAAI,MAAM,CAAC,GAAG,EAAE;aAC7C,MAAM,GAAG,IAAI,KAAK,CAChB,cAAc,CAAC,MAAM,CAAC,UAAU,EAAE,OAAO,CAAC,EAC1C,cAAc,CAAC,MAAM,CAAC,GAAG,EAAE,OAAO,CAAC,EACnC,cAAc,CAAC,MAAM,CAAC,EAAE,EAAE,OAAO,CAAC,EAClC,cAAc,CAAC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CACvC,CAAC;UACH;SAED,OAAO,MAAM,CAAC,cAAc,CAAC,OAAO,CAAC,CAAC;MACvC;UAAM;SACL,MAAM,IAAI,SAAS,CAAC,uCAAuC,GAAG,OAAO,QAAQ,CAAC,CAAC;MAChF;CACH,CAAC;CAED;;;;CAIA;CACA;CACA;AACiBuP,wBAqHhB;CArHD,WAAiB,KAAK;;;;;;;;;;;;;;;;;KA6BpB,SAAgB,KAAK,CAAC,IAAY,EAAE,OAAuB;SACzD,IAAM,YAAY,GAAG,MAAM,CAAC,MAAM,CAAC,EAAE,EAAE,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,EAAE,OAAO,CAAC,CAAC;;SAGlF,IAAI,OAAO,YAAY,CAAC,OAAO,KAAK,SAAS;aAAE,YAAY,CAAC,MAAM,GAAG,CAAC,YAAY,CAAC,OAAO,CAAC;SAC3F,IAAI,OAAO,YAAY,CAAC,MAAM,KAAK,SAAS;aAAE,YAAY,CAAC,OAAO,GAAG,CAAC,YAAY,CAAC,MAAM,CAAC;SAE1F,OAAO,IAAI,CAAC,KAAK,CAAC,IAAI,EAAE,UAAC,GAAG,EAAE,KAAK;aACjC,IAAI,GAAG,CAAC,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,EAAE;iBAC9B,MAAM,IAAI,SAAS,CACjB,sEAA+D,IAAI,CAAC,SAAS,CAAC,GAAG,CAAC,CAAE,CACrF,CAAC;cACH;aACD,OAAO,gBAAgB,CAAC,KAAK,EAAE,YAAY,CAAC,CAAC;UAC9C,CAAC,CAAC;MACJ;KAfe,WAAK,QAepB,CAAA;;;;;;;;;;;;;;;;;;;;;;;;KA4BD,SAAgB,SAAS,CACvB,KAAwB;;KAExB,QAA8F,EAC9F,KAAuB,EACvB,OAAuB;SAEvB,IAAI,KAAK,IAAI,IAAI,IAAI,OAAO,KAAK,KAAK,QAAQ,EAAE;aAC9C,OAAO,GAAG,KAAK,CAAC;aAChB,KAAK,GAAG,CAAC,CAAC;UACX;SACD,IAAI,QAAQ,IAAI,IAAI,IAAI,OAAO,QAAQ,KAAK,QAAQ,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,QAAQ,CAAC,EAAE;aAChF,OAAO,GAAG,QAAQ,CAAC;aACnB,QAAQ,GAAG,SAAS,CAAC;aACrB,KAAK,GAAG,CAAC,CAAC;UACX;SACD,IAAM,gBAAgB,GAAG,MAAM,CAAC,MAAM,CAAC,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,EAAE,OAAO,EAAE;aAChF,WAAW,EAAE,CAAC,EAAE,YAAY,EAAE,QAAQ,EAAE,GAAG,EAAE,IAAI,EAAE,CAAC;UACrD,CAAC,CAAC;SAEH,IAAM,GAAG,GAAG,cAAc,CAAC,KAAK,EAAE,gBAAgB,CAAC,CAAC;SACpD,OAAO,IAAI,CAAC,SAAS,CAAC,GAAG,EAAE,QAA4C,EAAE,KAAK,CAAC,CAAC;MACjF;KAtBe,eAAS,YAsBxB,CAAA;;;;;;;KAQD,SAAgB,SAAS,CAAC,KAAwB,EAAE,OAAuB;SACzE,OAAO,GAAG,OAAO,IAAI,EAAE,CAAC;SACxB,OAAO,IAAI,CAAC,KAAK,CAAC,SAAS,CAAC,KAAK,EAAE,OAAO,CAAC,CAAC,CAAC;MAC9C;KAHe,eAAS,YAGxB,CAAA;;;;;;;KAQD,SAAgB,WAAW,CAAC,KAAe,EAAE,OAAuB;SAClE,OAAO,GAAG,OAAO,IAAI,EAAE,CAAC;SACxB,OAAO,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,KAAK,CAAC,EAAE,OAAO,CAAC,CAAC;MAC9C;KAHe,iBAAW,cAG1B,CAAA;CACH,CAAC,EArHgBA,aAAK,KAALA,aAAK;;CCxVtB;CAKA;AACIC,sBAAwB;CAE5B,IAAM,UAAU,GAAG,SAAS,EAA4B,CAAC;CACzD,IAAI,UAAU,CAAC,GAAG,EAAE;KAClBA,WAAO,GAAG,UAAU,CAAC,GAAG,CAAC;EAC1B;MAAM;;KAELA,WAAO;SAGL,aAAY,KAA2B;aAA3B,sBAAA,EAAA,UAA2B;aACrC,IAAI,CAAC,KAAK,GAAG,EAAE,CAAC;aAChB,IAAI,CAAC,OAAO,GAAG,EAAE,CAAC;aAElB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,KAAK,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;iBACrC,IAAI,KAAK,CAAC,CAAC,CAAC,IAAI,IAAI;qBAAE,SAAS;iBAC/B,IAAM,KAAK,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;iBACvB,IAAM,GAAG,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;iBACrB,IAAM,KAAK,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;;iBAEvB,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;;;iBAGrB,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,GAAG,EAAE,CAAC,EAAE,KAAK,EAAE,CAAC,EAAE,IAAI,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;cAC5D;UACF;SACD,mBAAK,GAAL;aACE,IAAI,CAAC,KAAK,GAAG,EAAE,CAAC;aAChB,IAAI,CAAC,OAAO,GAAG,EAAE,CAAC;UACnB;SACD,oBAAM,GAAN,UAAO,GAAW;aAChB,IAAM,KAAK,GAAG,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC;aAChC,IAAI,KAAK,IAAI,IAAI;iBAAE,OAAO,KAAK,CAAC;;aAEhC,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC;;aAEzB,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;aAC9B,OAAO,IAAI,CAAC;UACb;SACD,qBAAO,GAAP;aAAA,iBAYC;aAXC,IAAI,KAAK,GAAG,CAAC,CAAC;aAEd,OAAO;iBACL,IAAI,EAAE;qBACJ,IAAM,GAAG,GAAG,KAAI,CAAC,KAAK,CAAC,KAAK,EAAE,CAAC,CAAC;qBAChC,OAAO;yBACL,KAAK,EAAE,GAAG,KAAK,SAAS,GAAG,CAAC,GAAG,EAAE,KAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,SAAS;yBACjE,IAAI,EAAE,GAAG,KAAK,SAAS,GAAG,KAAK,GAAG,IAAI;sBACvC,CAAC;kBACH;cACF,CAAC;UACH;SACD,qBAAO,GAAP,UAAQ,QAAmE,EAAE,IAAW;aACtF,IAAI,GAAG,IAAI,IAAI,IAAI,CAAC;aAEpB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;iBAC1C,IAAM,GAAG,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;;iBAE1B,QAAQ,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,GAAG,EAAE,IAAI,CAAC,CAAC;cACrD;UACF;SACD,iBAAG,GAAH,UAAI,GAAW;aACb,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,SAAS,CAAC;UAC5D;SACD,iBAAG,GAAH,UAAI,GAAW;aACb,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,IAAI,CAAC;UAClC;SACD,kBAAI,GAAJ;aAAA,iBAYC;aAXC,IAAI,KAAK,GAAG,CAAC,CAAC;aAEd,OAAO;iBACL,IAAI,EAAE;qBACJ,IAAM,GAAG,GAAG,KAAI,CAAC,KAAK,CAAC,KAAK,EAAE,CAAC,CAAC;qBAChC,OAAO;yBACL,KAAK,EAAE,GAAG,KAAK,SAAS,GAAG,GAAG,GAAG,SAAS;yBAC1C,IAAI,EAAE,GAAG,KAAK,SAAS,GAAG,KAAK,GAAG,IAAI;sBACvC,CAAC;kBACH;cACF,CAAC;UACH;SACD,iBAAG,GAAH,UAAI,GAAW,EAAE,KAAU;aACzB,IAAI,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,EAAE;iBACrB,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,KAAK,CAAC;iBAC5B,OAAO,IAAI,CAAC;cACb;;aAGD,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;;;aAGrB,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,GAAG,EAAE,CAAC,EAAE,KAAK,EAAE,CAAC,EAAE,IAAI,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;aAC3D,OAAO,IAAI,CAAC;UACb;SACD,oBAAM,GAAN;aAAA,iBAYC;aAXC,IAAI,KAAK,GAAG,CAAC,CAAC;aAEd,OAAO;iBACL,IAAI,EAAE;qBACJ,IAAM,GAAG,GAAG,KAAI,CAAC,KAAK,CAAC,KAAK,EAAE,CAAC,CAAC;qBAChC,OAAO;yBACL,KAAK,EAAE,GAAG,KAAK,SAAS,GAAG,KAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,SAAS;yBAC1D,IAAI,EAAE,GAAG,KAAK,SAAS,GAAG,KAAK,GAAG,IAAI;sBACvC,CAAC;kBACH;cACF,CAAC;UACH;SACD,sBAAI,qBAAI;kBAAR;iBACE,OAAO,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC;cAC1B;;;YAAA;SACH,UAAC;MAtGS,GAsGoB,CAAC;;;UC7GjBC,qBAAmB,CACjC,MAAgB,EAChB,kBAA4B,EAC5B,eAAyB;KAEzB,IAAI,WAAW,GAAG,CAAC,GAAG,CAAC,CAAC;KAExB,IAAI,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,EAAE;SACzB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;aACtC,WAAW,IAAI,gBAAgB,CAC7B,CAAC,CAAC,QAAQ,EAAE,EACZ,MAAM,CAAC,CAAC,CAAC,EACT,kBAAkB,EAClB,IAAI,EACJ,eAAe,CAChB,CAAC;UACH;MACF;UAAM;;SAGL,IAAI,QAAO,MAAM,aAAN,MAAM,uBAAN,MAAM,CAAE,MAAM,CAAA,KAAK,UAAU,EAAE;aACxC,MAAM,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC;UAC1B;;SAGD,KAAK,IAAM,GAAG,IAAI,MAAM,EAAE;aACxB,WAAW,IAAI,gBAAgB,CAAC,GAAG,EAAE,MAAM,CAAC,GAAG,CAAC,EAAE,kBAAkB,EAAE,KAAK,EAAE,eAAe,CAAC,CAAC;UAC/F;MACF;KAED,OAAO,WAAW,CAAC;CACrB,CAAC;CAED;CACA,SAAS,gBAAgB,CACvB,IAAY;CACZ;CACA,KAAU,EACV,kBAA0B,EAC1B,OAAe,EACf,eAAuB;KAFvB,mCAAA,EAAA,0BAA0B;KAC1B,wBAAA,EAAA,eAAe;KACf,gCAAA,EAAA,uBAAuB;;KAGvB,IAAI,QAAO,KAAK,aAAL,KAAK,uBAAL,KAAK,CAAE,MAAM,CAAA,KAAK,UAAU,EAAE;SACvC,KAAK,GAAG,KAAK,CAAC,MAAM,EAAE,CAAC;MACxB;KAED,QAAQ,OAAO,KAAK;SAClB,KAAK,QAAQ;aACX,OAAO,CAAC,GAAGzP,QAAM,CAAC,UAAU,CAAC,IAAI,EAAE,MAAM,CAAC,GAAG,CAAC,GAAG,CAAC,GAAGA,QAAM,CAAC,UAAU,CAAC,KAAK,EAAE,MAAM,CAAC,GAAG,CAAC,CAAC;SAC5F,KAAK,QAAQ;aACX,IACE,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,KAAK;iBAC3B,KAAK,IAAI0P,UAAoB;iBAC7B,KAAK,IAAIC,UAAoB,EAC7B;iBACA,IAAI,KAAK,IAAIC,gBAAwB,IAAI,KAAK,IAAIC,gBAAwB,EAAE;;qBAE1E,OAAO,CAAC,IAAI,IAAI,IAAI,GAAG7P,QAAM,CAAC,UAAU,CAAC,IAAI,EAAE,MAAM,CAAC,GAAG,CAAC,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC;kBAC3E;sBAAM;qBACL,OAAO,CAAC,IAAI,IAAI,IAAI,GAAGA,QAAM,CAAC,UAAU,CAAC,IAAI,EAAE,MAAM,CAAC,GAAG,CAAC,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC;kBAC3E;cACF;kBAAM;;iBAEL,OAAO,CAAC,IAAI,IAAI,IAAI,GAAGA,QAAM,CAAC,UAAU,CAAC,IAAI,EAAE,MAAM,CAAC,GAAG,CAAC,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC;cAC3E;SACH,KAAK,WAAW;aACd,IAAI,OAAO,IAAI,CAAC,eAAe;iBAC7B,OAAO,CAAC,IAAI,IAAI,IAAI,GAAGA,QAAM,CAAC,UAAU,CAAC,IAAI,EAAE,MAAM,CAAC,GAAG,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC;aACtE,OAAO,CAAC,CAAC;SACX,KAAK,SAAS;aACZ,OAAO,CAAC,IAAI,IAAI,IAAI,GAAGA,QAAM,CAAC,UAAU,CAAC,IAAI,EAAE,MAAM,CAAC,GAAG,CAAC,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC;SAC5E,KAAK,QAAQ;aACX,IAAI,KAAK,IAAI,IAAI,IAAI,KAAK,CAAC,WAAW,CAAC,KAAK,QAAQ,IAAI,KAAK,CAAC,WAAW,CAAC,KAAK,QAAQ,EAAE;iBACvF,OAAO,CAAC,IAAI,IAAI,IAAI,GAAGA,QAAM,CAAC,UAAU,CAAC,IAAI,EAAE,MAAM,CAAC,GAAG,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC;cACrE;kBAAM,IAAI,KAAK,CAAC,WAAW,CAAC,KAAK,UAAU,IAAI,KAAK,CAAC,WAAW,CAAC,KAAK,UAAU,EAAE;iBACjF,OAAO,CAAC,IAAI,IAAI,IAAI,GAAGA,QAAM,CAAC,UAAU,CAAC,IAAI,EAAE,MAAM,CAAC,GAAG,CAAC,GAAG,CAAC,KAAK,EAAE,GAAG,CAAC,CAAC,CAAC;cAC5E;kBAAM,IAAI,KAAK,YAAY,IAAI,IAAI,MAAM,CAAC,KAAK,CAAC,EAAE;iBACjD,OAAO,CAAC,IAAI,IAAI,IAAI,GAAGA,QAAM,CAAC,UAAU,CAAC,IAAI,EAAE,MAAM,CAAC,GAAG,CAAC,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC;cAC3E;kBAAM,IACL,WAAW,CAAC,MAAM,CAAC,KAAK,CAAC;iBACzB,KAAK,YAAY,WAAW;iBAC5B,gBAAgB,CAAC,KAAK,CAAC,EACvB;iBACA,QACE,CAAC,IAAI,IAAI,IAAI,GAAGA,QAAM,CAAC,UAAU,CAAC,IAAI,EAAE,MAAM,CAAC,GAAG,CAAC,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,GAAG,KAAK,CAAC,UAAU,EACzF;cACH;kBAAM,IACL,KAAK,CAAC,WAAW,CAAC,KAAK,MAAM;iBAC7B,KAAK,CAAC,WAAW,CAAC,KAAK,QAAQ;iBAC/B,KAAK,CAAC,WAAW,CAAC,KAAK,WAAW,EAClC;iBACA,OAAO,CAAC,IAAI,IAAI,IAAI,GAAGA,QAAM,CAAC,UAAU,CAAC,IAAI,EAAE,MAAM,CAAC,GAAG,CAAC,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC;cAC3E;kBAAM,IAAI,KAAK,CAAC,WAAW,CAAC,KAAK,YAAY,EAAE;iBAC9C,OAAO,CAAC,IAAI,IAAI,IAAI,GAAGA,QAAM,CAAC,UAAU,CAAC,IAAI,EAAE,MAAM,CAAC,GAAG,CAAC,GAAG,CAAC,KAAK,EAAE,GAAG,CAAC,CAAC,CAAC;cAC5E;kBAAM,IAAI,KAAK,CAAC,WAAW,CAAC,KAAK,MAAM,EAAE;;iBAExC,IAAI,KAAK,CAAC,KAAK,IAAI,IAAI,IAAI,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,MAAM,GAAG,CAAC,EAAE;qBAC9D,QACE,CAAC,IAAI,IAAI,IAAI,GAAGA,QAAM,CAAC,UAAU,CAAC,IAAI,EAAE,MAAM,CAAC,GAAG,CAAC,GAAG,CAAC;yBACvD,CAAC;yBACD,CAAC;yBACD,CAAC;yBACDA,QAAM,CAAC,UAAU,CAAC,KAAK,CAAC,IAAI,CAAC,QAAQ,EAAE,EAAE,MAAM,CAAC;yBAChD,CAAC;yBACDyP,qBAAmB,CAAC,KAAK,CAAC,KAAK,EAAE,kBAAkB,EAAE,eAAe,CAAC,EACrE;kBACH;sBAAM;qBACL,QACE,CAAC,IAAI,IAAI,IAAI,GAAGzP,QAAM,CAAC,UAAU,CAAC,IAAI,EAAE,MAAM,CAAC,GAAG,CAAC,GAAG,CAAC;yBACvD,CAAC;yBACD,CAAC;yBACDA,QAAM,CAAC,UAAU,CAAC,KAAK,CAAC,IAAI,CAAC,QAAQ,EAAE,EAAE,MAAM,CAAC;yBAChD,CAAC,EACD;kBACH;cACF;kBAAM,IAAI,KAAK,CAAC,WAAW,CAAC,KAAK,QAAQ,EAAE;iBAC1C,IAAM,MAAM,GAAW,KAAK,CAAC;;iBAE7B,IAAI,MAAM,CAAC,QAAQ,KAAK,MAAM,CAAC,kBAAkB,EAAE;qBACjD,QACE,CAAC,IAAI,IAAI,IAAI,GAAGA,QAAM,CAAC,UAAU,CAAC,IAAI,EAAE,MAAM,CAAC,GAAG,CAAC,GAAG,CAAC;0BACtD,MAAM,CAAC,QAAQ,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,EACjC;kBACH;sBAAM;qBACL,QACE,CAAC,IAAI,IAAI,IAAI,GAAGA,QAAM,CAAC,UAAU,CAAC,IAAI,EAAE,MAAM,CAAC,GAAG,CAAC,GAAG,CAAC,KAAK,MAAM,CAAC,QAAQ,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,EACxF;kBACH;cACF;kBAAM,IAAI,KAAK,CAAC,WAAW,CAAC,KAAK,QAAQ,EAAE;iBAC1C,QACE,CAAC,IAAI,IAAI,IAAI,GAAGA,QAAM,CAAC,UAAU,CAAC,IAAI,EAAE,MAAM,CAAC,GAAG,CAAC,GAAG,CAAC;qBACvDA,QAAM,CAAC,UAAU,CAAC,KAAK,CAAC,KAAK,EAAE,MAAM,CAAC;qBACtC,CAAC;qBACD,CAAC;qBACD,CAAC,EACD;cACH;kBAAM,IAAI,KAAK,CAAC,WAAW,CAAC,KAAK,OAAO,EAAE;;iBAEzC,IAAM,cAAc,GAAG,MAAM,CAAC,MAAM,CAClC;qBACE,IAAI,EAAE,KAAK,CAAC,UAAU;qBACtB,GAAG,EAAE,KAAK,CAAC,GAAG;kBACf,EACD,KAAK,CAAC,MAAM,CACb,CAAC;;iBAGF,IAAI,KAAK,CAAC,EAAE,IAAI,IAAI,EAAE;qBACpB,cAAc,CAAC,KAAK,CAAC,GAAG,KAAK,CAAC,EAAE,CAAC;kBAClC;iBAED,QACE,CAAC,IAAI,IAAI,IAAI,GAAGA,QAAM,CAAC,UAAU,CAAC,IAAI,EAAE,MAAM,CAAC,GAAG,CAAC,GAAG,CAAC;qBACvD,CAAC;qBACDyP,qBAAmB,CAAC,cAAc,EAAE,kBAAkB,EAAE,eAAe,CAAC,EACxE;cACH;kBAAM,IAAI,KAAK,YAAY,MAAM,IAAI,QAAQ,CAAC,KAAK,CAAC,EAAE;iBACrD,QACE,CAAC,IAAI,IAAI,IAAI,GAAGzP,QAAM,CAAC,UAAU,CAAC,IAAI,EAAE,MAAM,CAAC,GAAG,CAAC,GAAG,CAAC;qBACvD,CAAC;qBACDA,QAAM,CAAC,UAAU,CAAC,KAAK,CAAC,MAAM,EAAE,MAAM,CAAC;qBACvC,CAAC;sBACA,KAAK,CAAC,MAAM,GAAG,CAAC,GAAG,CAAC,CAAC;sBACrB,KAAK,CAAC,UAAU,GAAG,CAAC,GAAG,CAAC,CAAC;sBACzB,KAAK,CAAC,SAAS,GAAG,CAAC,GAAG,CAAC,CAAC;qBACzB,CAAC,EACD;cACH;kBAAM,IAAI,KAAK,CAAC,WAAW,CAAC,KAAK,YAAY,EAAE;iBAC9C,QACE,CAAC,IAAI,IAAI,IAAI,GAAGA,QAAM,CAAC,UAAU,CAAC,IAAI,EAAE,MAAM,CAAC,GAAG,CAAC,GAAG,CAAC;qBACvD,CAAC;qBACDA,QAAM,CAAC,UAAU,CAAC,KAAK,CAAC,OAAO,EAAE,MAAM,CAAC;qBACxC,CAAC;qBACDA,QAAM,CAAC,UAAU,CAAC,KAAK,CAAC,OAAO,EAAE,MAAM,CAAC;qBACxC,CAAC,EACD;cACH;kBAAM;iBACL,QACE,CAAC,IAAI,IAAI,IAAI,GAAGA,QAAM,CAAC,UAAU,CAAC,IAAI,EAAE,MAAM,CAAC,GAAG,CAAC,GAAG,CAAC;qBACvDyP,qBAAmB,CAAC,KAAK,EAAE,kBAAkB,EAAE,eAAe,CAAC;qBAC/D,CAAC,EACD;cACH;SACH,KAAK,UAAU;;aAEb,IAAI,KAAK,YAAY,MAAM,IAAI,QAAQ,CAAC,KAAK,CAAC,IAAI,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,KAAK,iBAAiB,EAAE;iBAC1F,QACE,CAAC,IAAI,IAAI,IAAI,GAAGzP,QAAM,CAAC,UAAU,CAAC,IAAI,EAAE,MAAM,CAAC,GAAG,CAAC,GAAG,CAAC;qBACvD,CAAC;qBACDA,QAAM,CAAC,UAAU,CAAC,KAAK,CAAC,MAAM,EAAE,MAAM,CAAC;qBACvC,CAAC;sBACA,KAAK,CAAC,MAAM,GAAG,CAAC,GAAG,CAAC,CAAC;sBACrB,KAAK,CAAC,UAAU,GAAG,CAAC,GAAG,CAAC,CAAC;sBACzB,KAAK,CAAC,SAAS,GAAG,CAAC,GAAG,CAAC,CAAC;qBACzB,CAAC,EACD;cACH;kBAAM;iBACL,IAAI,kBAAkB,IAAI,KAAK,CAAC,KAAK,IAAI,IAAI,IAAI,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,MAAM,GAAG,CAAC,EAAE;qBACpF,QACE,CAAC,IAAI,IAAI,IAAI,GAAGA,QAAM,CAAC,UAAU,CAAC,IAAI,EAAE,MAAM,CAAC,GAAG,CAAC,GAAG,CAAC;yBACvD,CAAC;yBACD,CAAC;yBACD,CAAC;yBACDA,QAAM,CAAC,UAAU,CAAC,wBAAwB,CAAC,KAAK,CAAC,EAAE,MAAM,CAAC;yBAC1D,CAAC;yBACDyP,qBAAmB,CAAC,KAAK,CAAC,KAAK,EAAE,kBAAkB,EAAE,eAAe,CAAC,EACrE;kBACH;sBAAM,IAAI,kBAAkB,EAAE;qBAC7B,QACE,CAAC,IAAI,IAAI,IAAI,GAAGzP,QAAM,CAAC,UAAU,CAAC,IAAI,EAAE,MAAM,CAAC,GAAG,CAAC,GAAG,CAAC;yBACvD,CAAC;yBACD,CAAC;yBACDA,QAAM,CAAC,UAAU,CAAC,wBAAwB,CAAC,KAAK,CAAC,EAAE,MAAM,CAAC;yBAC1D,CAAC,EACD;kBACH;cACF;MACJ;KAED,OAAO,CAAC,CAAC;CACX;;CCnOA,IAAM,SAAS,GAAG,IAAI,CAAC;CACvB,IAAM,cAAc,GAAG,IAAI,CAAC;CAC5B,IAAM,gBAAgB,GAAG,IAAI,CAAC;CAC9B,IAAM,eAAe,GAAG,IAAI,CAAC;CAC7B,IAAM,eAAe,GAAG,IAAI,CAAC;CAE7B,IAAM,YAAY,GAAG,IAAI,CAAC;CAC1B,IAAM,cAAc,GAAG,IAAI,CAAC;CAC5B,IAAM,aAAa,GAAG,IAAI,CAAC;CAC3B,IAAM,eAAe,GAAG,IAAI,CAAC;CAE7B;;;;;;UAMgB,YAAY,CAC1B,KAAkC,EAClC,KAAa,EACb,GAAW;KAEX,IAAI,YAAY,GAAG,CAAC,CAAC;KAErB,KAAK,IAAI,CAAC,GAAG,KAAK,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,IAAI,CAAC,EAAE;SACnC,IAAM,IAAI,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;SAEtB,IAAI,YAAY,EAAE;aAChB,IAAI,CAAC,IAAI,GAAG,cAAc,MAAM,eAAe,EAAE;iBAC/C,OAAO,KAAK,CAAC;cACd;aACD,YAAY,IAAI,CAAC,CAAC;UACnB;cAAM,IAAI,IAAI,GAAG,SAAS,EAAE;aAC3B,IAAI,CAAC,IAAI,GAAG,gBAAgB,MAAM,YAAY,EAAE;iBAC9C,YAAY,GAAG,CAAC,CAAC;cAClB;kBAAM,IAAI,CAAC,IAAI,GAAG,eAAe,MAAM,cAAc,EAAE;iBACtD,YAAY,GAAG,CAAC,CAAC;cAClB;kBAAM,IAAI,CAAC,IAAI,GAAG,eAAe,MAAM,aAAa,EAAE;iBACrD,YAAY,GAAG,CAAC,CAAC;cAClB;kBAAM;iBACL,OAAO,KAAK,CAAC;cACd;UACF;MACF;KAED,OAAO,CAAC,YAAY,CAAC;CACvB;;CCmBA;CACA,IAAM,eAAe,GAAG,IAAI,CAAC,UAAU,CAAC2P,UAAoB,CAAC,CAAC;CAC9D,IAAM,eAAe,GAAG,IAAI,CAAC,UAAU,CAACD,UAAoB,CAAC,CAAC;CAE9D,IAAM,aAAa,GAAiC,EAAE,CAAC;UAEvCI,aAAW,CACzB,MAAc,EACd,OAA2B,EAC3B,OAAiB;KAEjB,OAAO,GAAG,OAAO,IAAI,IAAI,GAAG,EAAE,GAAG,OAAO,CAAC;KACzC,IAAM,KAAK,GAAG,OAAO,IAAI,OAAO,CAAC,KAAK,GAAG,OAAO,CAAC,KAAK,GAAG,CAAC,CAAC;;KAE3D,IAAM,IAAI,GACR,MAAM,CAAC,KAAK,CAAC;UACZ,MAAM,CAAC,KAAK,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC;UACvB,MAAM,CAAC,KAAK,GAAG,CAAC,CAAC,IAAI,EAAE,CAAC;UACxB,MAAM,CAAC,KAAK,GAAG,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC;KAE5B,IAAI,IAAI,GAAG,CAAC,EAAE;SACZ,MAAM,IAAI,SAAS,CAAC,qCAA8B,IAAI,CAAE,CAAC,CAAC;MAC3D;KAED,IAAI,OAAO,CAAC,gCAAgC,IAAI,MAAM,CAAC,MAAM,GAAG,IAAI,EAAE;SACpE,MAAM,IAAI,SAAS,CAAC,wBAAiB,MAAM,CAAC,MAAM,mCAAyB,IAAI,CAAE,CAAC,CAAC;MACpF;KAED,IAAI,CAAC,OAAO,CAAC,gCAAgC,IAAI,MAAM,CAAC,MAAM,KAAK,IAAI,EAAE;SACvE,MAAM,IAAI,SAAS,CAAC,wBAAiB,MAAM,CAAC,MAAM,iCAAuB,IAAI,CAAE,CAAC,CAAC;MAClF;KAED,IAAI,IAAI,GAAG,KAAK,GAAG,MAAM,CAAC,UAAU,EAAE;SACpC,MAAM,IAAI,SAAS,CACjB,qBAAc,IAAI,8BAAoB,KAAK,uCAA6B,MAAM,CAAC,UAAU,MAAG,CAC7F,CAAC;MACH;;KAGD,IAAI,MAAM,CAAC,KAAK,GAAG,IAAI,GAAG,CAAC,CAAC,KAAK,CAAC,EAAE;SAClC,MAAM,IAAI,SAAS,CACjB,6EAA6E,CAC9E,CAAC;MACH;;KAGD,OAAO,iBAAiB,CAAC,MAAM,EAAE,KAAK,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC;CAC5D,CAAC;CAED,IAAM,gBAAgB,GAAG,uBAAuB,CAAC;CAEjD,SAAS,iBAAiB,CACxB,MAAc,EACd,KAAa,EACb,OAA2B,EAC3B,OAAe;KAAf,wBAAA,EAAA,eAAe;KAEf,IAAM,aAAa,GAAG,OAAO,CAAC,eAAe,CAAC,IAAI,IAAI,GAAG,KAAK,GAAG,OAAO,CAAC,eAAe,CAAC,CAAC;KAC1F,IAAM,cAAc,GAAG,OAAO,CAAC,gBAAgB,CAAC,IAAI,IAAI,GAAG,KAAK,GAAG,OAAO,CAAC,gBAAgB,CAAC,CAAC;KAE7F,IAAM,WAAW,GAAG,OAAO,CAAC,aAAa,CAAC,IAAI,IAAI,GAAG,IAAI,GAAG,OAAO,CAAC,aAAa,CAAC,CAAC;;KAGnF,IAAM,GAAG,GAAG,OAAO,CAAC,KAAK,CAAC,IAAI,IAAI,GAAG,KAAK,GAAG,OAAO,CAAC,KAAK,CAAC,CAAC;;KAG5D,IAAM,UAAU,GAAG,OAAO,OAAO,CAAC,YAAY,CAAC,KAAK,SAAS,GAAG,OAAO,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC;;KAG9F,IAAM,cAAc,GAAG,OAAO,CAAC,gBAAgB,CAAC,IAAI,IAAI,GAAG,KAAK,GAAG,OAAO,CAAC,gBAAgB,CAAC,CAAC;KAC7F,IAAM,YAAY,GAAG,OAAO,CAAC,cAAc,CAAC,IAAI,IAAI,GAAG,IAAI,GAAG,OAAO,CAAC,cAAc,CAAC,CAAC;KACtF,IAAM,aAAa,GAAG,OAAO,CAAC,eAAe,CAAC,IAAI,IAAI,GAAG,IAAI,GAAG,OAAO,CAAC,eAAe,CAAC,CAAC;;KAGzF,IAAM,UAAU,GAAG,OAAO,CAAC,UAAU,IAAI,IAAI,GAAG,EAAE,IAAI,EAAE,IAAI,EAAE,GAAG,OAAO,CAAC,UAAU,CAAC;;KAGpF,IAAI,mBAAmB,GAAG,IAAI,CAAC;;KAE/B,IAAI,iBAA0B,CAAC;;KAE/B,IAAM,WAAW,GAAG,IAAI,GAAG,EAAE,CAAC;;KAG9B,IAAM,iBAAiB,GAAG,UAAU,CAAC,IAAI,CAAC;KAC1C,IAAI,OAAO,iBAAiB,KAAK,SAAS,EAAE;SAC1C,iBAAiB,GAAG,iBAAiB,CAAC;MACvC;UAAM;SACL,mBAAmB,GAAG,KAAK,CAAC;SAC5B,IAAM,oBAAoB,GAAG,MAAM,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC,GAAG,CAAC,UAAU,GAAG;aAC3E,OAAO,iBAAiB,CAAC,GAAG,CAAC,CAAC;UAC/B,CAAC,CAAC;SACH,IAAI,oBAAoB,CAAC,MAAM,KAAK,CAAC,EAAE;aACrC,MAAM,IAAI,SAAS,CAAC,0CAA0C,CAAC,CAAC;UACjE;SACD,IAAI,OAAO,oBAAoB,CAAC,CAAC,CAAC,KAAK,SAAS,EAAE;aAChD,MAAM,IAAI,SAAS,CAAC,8DAA8D,CAAC,CAAC;UACrF;SACD,iBAAiB,GAAG,oBAAoB,CAAC,CAAC,CAAC,CAAC;;SAE5C,IAAI,CAAC,oBAAoB,CAAC,KAAK,CAAC,UAAA,IAAI,IAAI,OAAA,IAAI,KAAK,iBAAiB,GAAA,CAAC,EAAE;aACnE,MAAM,IAAI,SAAS,CAAC,sEAAsE,CAAC,CAAC;UAC7F;MACF;;KAGD,IAAI,CAAC,mBAAmB,EAAE;SACxB,KAAkB,UAA8B,EAA9B,KAAA,MAAM,CAAC,IAAI,CAAC,iBAAiB,CAAC,EAA9B,cAA8B,EAA9B,IAA8B,EAAE;aAA7C,IAAM,GAAG,SAAA;aACZ,WAAW,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;UACtB;MACF;;KAGD,IAAM,UAAU,GAAG,KAAK,CAAC;;KAGzB,IAAI,MAAM,CAAC,MAAM,GAAG,CAAC;SAAE,MAAM,IAAI,SAAS,CAAC,qCAAqC,CAAC,CAAC;;KAGlF,IAAM,IAAI,GACR,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,CAAC,CAAC,IAAI,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,EAAE,CAAC,IAAI,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,EAAE,CAAC,CAAC;;KAG/F,IAAI,IAAI,GAAG,CAAC,IAAI,IAAI,GAAG,MAAM,CAAC,MAAM;SAAE,MAAM,IAAI,SAAS,CAAC,sBAAsB,CAAC,CAAC;;KAGlF,IAAM,MAAM,GAAa,OAAO,GAAG,EAAE,GAAG,EAAE,CAAC;;KAE3C,IAAI,UAAU,GAAG,CAAC,CAAC;KACnB,IAAM,IAAI,GAAG,KAAK,CAAC;KAEnB,IAAI,eAAe,GAAG,OAAO,GAAG,KAAK,GAAG,IAAI,CAAC;;KAG7C,IAAM,QAAQ,GAAG,IAAI,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,UAAU,EAAE,MAAM,CAAC,UAAU,CAAC,CAAC;KACnF,OAAO,CAAC,IAAI,EAAE;;SAEZ,IAAM,WAAW,GAAG,MAAM,CAAC,KAAK,EAAE,CAAC,CAAC;;SAGpC,IAAI,WAAW,KAAK,CAAC;aAAE,MAAM;;SAG7B,IAAI,CAAC,GAAG,KAAK,CAAC;;SAEd,OAAO,MAAM,CAAC,CAAC,CAAC,KAAK,IAAI,IAAI,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE;aAC9C,CAAC,EAAE,CAAC;UACL;;SAGD,IAAI,CAAC,IAAI,MAAM,CAAC,UAAU;aAAE,MAAM,IAAI,SAAS,CAAC,oCAAoC,CAAC,CAAC;;SAGtF,IAAM,IAAI,GAAG,OAAO,GAAG,UAAU,EAAE,GAAG,MAAM,CAAC,QAAQ,CAAC,MAAM,EAAE,KAAK,EAAE,CAAC,CAAC,CAAC;;SAGxE,IAAI,iBAAiB,GAAG,IAAI,CAAC;SAC7B,IAAI,mBAAmB,IAAI,WAAW,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;aAChD,iBAAiB,GAAG,iBAAiB,CAAC;UACvC;cAAM;aACL,iBAAiB,GAAG,CAAC,iBAAiB,CAAC;UACxC;SAED,IAAI,eAAe,KAAK,KAAK,IAAK,IAAe,CAAC,CAAC,CAAC,KAAK,GAAG,EAAE;aAC5D,eAAe,GAAG,gBAAgB,CAAC,IAAI,CAAC,IAAc,CAAC,CAAC;UACzD;SACD,IAAI,KAAK,SAAA,CAAC;SAEV,KAAK,GAAG,CAAC,GAAG,CAAC,CAAC;SAEd,IAAI,WAAW,KAAKC,gBAA0B,EAAE;aAC9C,IAAM,UAAU,GACd,MAAM,CAAC,KAAK,EAAE,CAAC;kBACd,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,CAAC,CAAC;kBACrB,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,EAAE,CAAC;kBACtB,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,EAAE,CAAC,CAAC;aAC1B,IACE,UAAU,IAAI,CAAC;iBACf,UAAU,GAAG,MAAM,CAAC,MAAM,GAAG,KAAK;iBAClC,MAAM,CAAC,KAAK,GAAG,UAAU,GAAG,CAAC,CAAC,KAAK,CAAC,EACpC;iBACA,MAAM,IAAI,SAAS,CAAC,2BAA2B,CAAC,CAAC;cAClD;aACD,KAAK,GAAG,kBAAkB,CAAC,MAAM,EAAE,KAAK,EAAE,KAAK,GAAG,UAAU,GAAG,CAAC,EAAE,iBAAiB,CAAC,CAAC;aACrF,KAAK,GAAG,KAAK,GAAG,UAAU,CAAC;UAC5B;cAAM,IAAI,WAAW,KAAKC,aAAuB,EAAE;aAClD,IAAM,GAAG,GAAGhQ,QAAM,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC;aAC7B,MAAM,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,EAAE,KAAK,EAAE,KAAK,GAAG,EAAE,CAAC,CAAC;aACvC,KAAK,GAAG,IAAI,QAAQ,CAAC,GAAG,CAAC,CAAC;aAC1B,KAAK,GAAG,KAAK,GAAG,EAAE,CAAC;UACpB;cAAM,IAAI,WAAW,KAAKiQ,aAAuB,IAAI,aAAa,KAAK,KAAK,EAAE;aAC7E,KAAK,GAAG,IAAI,KAAK,CACf,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,CAAC,CAAC,IAAI,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,EAAE,CAAC,IAAI,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,EAAE,CAAC,CAC7F,CAAC;UACH;cAAM,IAAI,WAAW,KAAKA,aAAuB,EAAE;aAClD,KAAK;iBACH,MAAM,CAAC,KAAK,EAAE,CAAC;sBACd,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,CAAC,CAAC;sBACrB,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,EAAE,CAAC;sBACtB,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,EAAE,CAAC,CAAC;UAC3B;cAAM,IAAI,WAAW,KAAKC,gBAA0B,IAAI,aAAa,KAAK,KAAK,EAAE;aAChF,KAAK,GAAG,IAAI,MAAM,CAAC,QAAQ,CAAC,UAAU,CAAC,KAAK,EAAE,IAAI,CAAC,CAAC,CAAC;aACrD,KAAK,GAAG,KAAK,GAAG,CAAC,CAAC;UACnB;cAAM,IAAI,WAAW,KAAKA,gBAA0B,EAAE;aACrD,KAAK,GAAG,QAAQ,CAAC,UAAU,CAAC,KAAK,EAAE,IAAI,CAAC,CAAC;aACzC,KAAK,GAAG,KAAK,GAAG,CAAC,CAAC;UACnB;cAAM,IAAI,WAAW,KAAKC,cAAwB,EAAE;aACnD,IAAM,OAAO,GACX,MAAM,CAAC,KAAK,EAAE,CAAC;kBACd,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,CAAC,CAAC;kBACrB,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,EAAE,CAAC;kBACtB,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,EAAE,CAAC,CAAC;aAC1B,IAAM,QAAQ,GACZ,MAAM,CAAC,KAAK,EAAE,CAAC;kBACd,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,CAAC,CAAC;kBACrB,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,EAAE,CAAC;kBACtB,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,EAAE,CAAC,CAAC;aAC1B,KAAK,GAAG,IAAI,IAAI,CAAC,IAAI,IAAI,CAAC,OAAO,EAAE,QAAQ,CAAC,CAAC,QAAQ,EAAE,CAAC,CAAC;UAC1D;cAAM,IAAI,WAAW,KAAKC,iBAA2B,EAAE;aACtD,IAAI,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,IAAI,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC;iBAC5C,MAAM,IAAI,SAAS,CAAC,4BAA4B,CAAC,CAAC;aACpD,KAAK,GAAG,MAAM,CAAC,KAAK,EAAE,CAAC,KAAK,CAAC,CAAC;UAC/B;cAAM,IAAI,WAAW,KAAKC,gBAA0B,EAAE;aACrD,IAAM,MAAM,GAAG,KAAK,CAAC;aACrB,IAAM,UAAU,GACd,MAAM,CAAC,KAAK,CAAC;kBACZ,MAAM,CAAC,KAAK,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC;kBACvB,MAAM,CAAC,KAAK,GAAG,CAAC,CAAC,IAAI,EAAE,CAAC;kBACxB,MAAM,CAAC,KAAK,GAAG,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC;aAC5B,IAAI,UAAU,IAAI,CAAC,IAAI,UAAU,GAAG,MAAM,CAAC,MAAM,GAAG,KAAK;iBACvD,MAAM,IAAI,SAAS,CAAC,sCAAsC,CAAC,CAAC;;aAG9D,IAAI,GAAG,EAAE;iBACP,KAAK,GAAG,MAAM,CAAC,KAAK,CAAC,KAAK,EAAE,KAAK,GAAG,UAAU,CAAC,CAAC;cACjD;kBAAM;iBACL,IAAI,aAAa,GAAG,OAAO,CAAC;iBAC5B,IAAI,CAAC,mBAAmB,EAAE;qBACxB,aAAa,uBAAQ,OAAO,KAAE,UAAU,EAAE,EAAE,IAAI,EAAE,iBAAiB,EAAE,GAAE,CAAC;kBACzE;iBACD,KAAK,GAAG,iBAAiB,CAAC,MAAM,EAAE,MAAM,EAAE,aAAa,EAAE,KAAK,CAAC,CAAC;cACjE;aAED,KAAK,GAAG,KAAK,GAAG,UAAU,CAAC;UAC5B;cAAM,IAAI,WAAW,KAAKC,eAAyB,EAAE;aACpD,IAAM,MAAM,GAAG,KAAK,CAAC;aACrB,IAAM,UAAU,GACd,MAAM,CAAC,KAAK,CAAC;kBACZ,MAAM,CAAC,KAAK,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC;kBACvB,MAAM,CAAC,KAAK,GAAG,CAAC,CAAC,IAAI,EAAE,CAAC;kBACxB,MAAM,CAAC,KAAK,GAAG,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC;aAC5B,IAAI,YAAY,GAAG,OAAO,CAAC;;aAG3B,IAAM,SAAS,GAAG,KAAK,GAAG,UAAU,CAAC;;aAGrC,IAAI,WAAW,IAAI,WAAW,CAAC,IAAI,CAAC,EAAE;iBACpC,YAAY,GAAG,EAAE,CAAC;iBAClB,KAAK,IAAM,CAAC,IAAI,OAAO,EAAE;qBAErB,YAGD,CAAC,CAAC,CAAC,GAAG,OAAO,CAAC,CAA6B,CAAC,CAAC;kBAC/C;iBACD,YAAY,CAAC,KAAK,CAAC,GAAG,IAAI,CAAC;cAC5B;aACD,IAAI,CAAC,mBAAmB,EAAE;iBACxB,YAAY,uBAAQ,YAAY,KAAE,UAAU,EAAE,EAAE,IAAI,EAAE,iBAAiB,EAAE,GAAE,CAAC;cAC7E;aACD,KAAK,GAAG,iBAAiB,CAAC,MAAM,EAAE,MAAM,EAAE,YAAY,EAAE,IAAI,CAAC,CAAC;aAC9D,KAAK,GAAG,KAAK,GAAG,UAAU,CAAC;aAE3B,IAAI,MAAM,CAAC,KAAK,GAAG,CAAC,CAAC,KAAK,CAAC;iBAAE,MAAM,IAAI,SAAS,CAAC,+BAA+B,CAAC,CAAC;aAClF,IAAI,KAAK,KAAK,SAAS;iBAAE,MAAM,IAAI,SAAS,CAAC,sBAAsB,CAAC,CAAC;UACtE;cAAM,IAAI,WAAW,KAAKC,mBAA6B,EAAE;aACxD,KAAK,GAAG,SAAS,CAAC;UACnB;cAAM,IAAI,WAAW,KAAKC,cAAwB,EAAE;aACnD,KAAK,GAAG,IAAI,CAAC;UACd;cAAM,IAAI,WAAW,KAAKC,cAAwB,EAAE;;aAEnD,IAAM,OAAO,GACX,MAAM,CAAC,KAAK,EAAE,CAAC;kBACd,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,CAAC,CAAC;kBACrB,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,EAAE,CAAC;kBACtB,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,EAAE,CAAC,CAAC;aAC1B,IAAM,QAAQ,GACZ,MAAM,CAAC,KAAK,EAAE,CAAC;kBACd,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,CAAC,CAAC;kBACrB,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,EAAE,CAAC;kBACtB,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,EAAE,CAAC,CAAC;aAC1B,IAAM,IAAI,GAAG,IAAI,IAAI,CAAC,OAAO,EAAE,QAAQ,CAAC,CAAC;;aAEzC,IAAI,YAAY,IAAI,aAAa,KAAK,IAAI,EAAE;iBAC1C,KAAK;qBACH,IAAI,CAAC,eAAe,CAAC,eAAe,CAAC,IAAI,IAAI,CAAC,kBAAkB,CAAC,eAAe,CAAC;2BAC7E,IAAI,CAAC,QAAQ,EAAE;2BACf,IAAI,CAAC;cACZ;kBAAM;iBACL,KAAK,GAAG,IAAI,CAAC;cACd;UACF;cAAM,IAAI,WAAW,KAAKC,oBAA8B,EAAE;;aAEzD,IAAM,KAAK,GAAG1Q,QAAM,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC;;aAE/B,MAAM,CAAC,IAAI,CAAC,KAAK,EAAE,CAAC,EAAE,KAAK,EAAE,KAAK,GAAG,EAAE,CAAC,CAAC;;aAEzC,KAAK,GAAG,KAAK,GAAG,EAAE,CAAC;;aAEnB,IAAM,UAAU,GAAG,IAAI,UAAU,CAAC,KAAK,CAAyC,CAAC;;aAEjF,IAAI,UAAU,IAAI,UAAU,IAAI,OAAO,UAAU,CAAC,QAAQ,KAAK,UAAU,EAAE;iBACzE,KAAK,GAAG,UAAU,CAAC,QAAQ,EAAE,CAAC;cAC/B;kBAAM;iBACL,KAAK,GAAG,UAAU,CAAC;cACpB;UACF;cAAM,IAAI,WAAW,KAAK2Q,gBAA0B,EAAE;aACrD,IAAI,UAAU,GACZ,MAAM,CAAC,KAAK,EAAE,CAAC;kBACd,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,CAAC,CAAC;kBACrB,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,EAAE,CAAC;kBACtB,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,EAAE,CAAC,CAAC;aAC1B,IAAM,eAAe,GAAG,UAAU,CAAC;aACnC,IAAM,OAAO,GAAG,MAAM,CAAC,KAAK,EAAE,CAAC,CAAC;;aAGhC,IAAI,UAAU,GAAG,CAAC;iBAAE,MAAM,IAAI,SAAS,CAAC,yCAAyC,CAAC,CAAC;;aAGnF,IAAI,UAAU,GAAG,MAAM,CAAC,UAAU;iBAChC,MAAM,IAAI,SAAS,CAAC,4CAA4C,CAAC,CAAC;;aAGpE,IAAI,MAAM,CAAC,OAAO,CAAC,IAAI,IAAI,EAAE;;iBAE3B,IAAI,OAAO,KAAK,MAAM,CAAC,kBAAkB,EAAE;qBACzC,UAAU;yBACR,MAAM,CAAC,KAAK,EAAE,CAAC;8BACd,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,CAAC,CAAC;8BACrB,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,EAAE,CAAC;8BACtB,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,EAAE,CAAC,CAAC;qBAC1B,IAAI,UAAU,GAAG,CAAC;yBAChB,MAAM,IAAI,SAAS,CAAC,0DAA0D,CAAC,CAAC;qBAClF,IAAI,UAAU,GAAG,eAAe,GAAG,CAAC;yBAClC,MAAM,IAAI,SAAS,CAAC,6DAA6D,CAAC,CAAC;qBACrF,IAAI,UAAU,GAAG,eAAe,GAAG,CAAC;yBAClC,MAAM,IAAI,SAAS,CAAC,8DAA8D,CAAC,CAAC;kBACvF;iBAED,IAAI,cAAc,IAAI,aAAa,EAAE;qBACnC,KAAK,GAAG,MAAM,CAAC,KAAK,CAAC,KAAK,EAAE,KAAK,GAAG,UAAU,CAAC,CAAC;kBACjD;sBAAM;qBACL,KAAK,GAAG,IAAI,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,KAAK,EAAE,KAAK,GAAG,UAAU,CAAC,EAAE,OAAO,CAAC,CAAC;qBACrE,IAAI,OAAO,KAAKC,4BAAsC,EAAE;yBACtD,KAAK,GAAG,KAAK,CAAC,MAAM,EAAE,CAAC;sBACxB;kBACF;cACF;kBAAM;iBACL,IAAM,OAAO,GAAG5Q,QAAM,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC;;iBAEzC,IAAI,OAAO,KAAK,MAAM,CAAC,kBAAkB,EAAE;qBACzC,UAAU;yBACR,MAAM,CAAC,KAAK,EAAE,CAAC;8BACd,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,CAAC,CAAC;8BACrB,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,EAAE,CAAC;8BACtB,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,EAAE,CAAC,CAAC;qBAC1B,IAAI,UAAU,GAAG,CAAC;yBAChB,MAAM,IAAI,SAAS,CAAC,0DAA0D,CAAC,CAAC;qBAClF,IAAI,UAAU,GAAG,eAAe,GAAG,CAAC;yBAClC,MAAM,IAAI,SAAS,CAAC,6DAA6D,CAAC,CAAC;qBACrF,IAAI,UAAU,GAAG,eAAe,GAAG,CAAC;yBAClC,MAAM,IAAI,SAAS,CAAC,8DAA8D,CAAC,CAAC;kBACvF;;iBAGD,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,UAAU,EAAE,CAAC,EAAE,EAAE;qBAC/B,OAAO,CAAC,CAAC,CAAC,GAAG,MAAM,CAAC,KAAK,GAAG,CAAC,CAAC,CAAC;kBAChC;iBAED,IAAI,cAAc,IAAI,aAAa,EAAE;qBACnC,KAAK,GAAG,OAAO,CAAC;kBACjB;sBAAM,IAAI,OAAO,KAAK4Q,4BAAsC,EAAE;qBAC7D,KAAK,GAAG,IAAI,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,KAAK,EAAE,KAAK,GAAG,UAAU,CAAC,EAAE,OAAO,CAAC,CAAC,MAAM,EAAE,CAAC;kBAC/E;sBAAM;qBACL,KAAK,GAAG,IAAI,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,KAAK,EAAE,KAAK,GAAG,UAAU,CAAC,EAAE,OAAO,CAAC,CAAC;kBACtE;cACF;;aAGD,KAAK,GAAG,KAAK,GAAG,UAAU,CAAC;UAC5B;cAAM,IAAI,WAAW,KAAKC,gBAA0B,IAAI,UAAU,KAAK,KAAK,EAAE;;aAE7E,CAAC,GAAG,KAAK,CAAC;;aAEV,OAAO,MAAM,CAAC,CAAC,CAAC,KAAK,IAAI,IAAI,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE;iBAC9C,CAAC,EAAE,CAAC;cACL;;aAED,IAAI,CAAC,IAAI,MAAM,CAAC,MAAM;iBAAE,MAAM,IAAI,SAAS,CAAC,oCAAoC,CAAC,CAAC;;aAElF,IAAM,MAAM,GAAG,MAAM,CAAC,QAAQ,CAAC,MAAM,EAAE,KAAK,EAAE,CAAC,CAAC,CAAC;;aAEjD,KAAK,GAAG,CAAC,GAAG,CAAC,CAAC;;aAGd,CAAC,GAAG,KAAK,CAAC;;aAEV,OAAO,MAAM,CAAC,CAAC,CAAC,KAAK,IAAI,IAAI,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE;iBAC9C,CAAC,EAAE,CAAC;cACL;;aAED,IAAI,CAAC,IAAI,MAAM,CAAC,MAAM;iBAAE,MAAM,IAAI,SAAS,CAAC,oCAAoC,CAAC,CAAC;;aAElF,IAAM,aAAa,GAAG,MAAM,CAAC,QAAQ,CAAC,MAAM,EAAE,KAAK,EAAE,CAAC,CAAC,CAAC;aACxD,KAAK,GAAG,CAAC,GAAG,CAAC,CAAC;;aAGd,IAAM,YAAY,GAAG,IAAI,KAAK,CAAC,aAAa,CAAC,MAAM,CAAC,CAAC;;aAGrD,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,aAAa,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;iBACzC,QAAQ,aAAa,CAAC,CAAC,CAAC;qBACtB,KAAK,GAAG;yBACN,YAAY,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC;yBACtB,MAAM;qBACR,KAAK,GAAG;yBACN,YAAY,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC;yBACtB,MAAM;qBACR,KAAK,GAAG;yBACN,YAAY,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC;yBACtB,MAAM;kBACT;cACF;aAED,KAAK,GAAG,IAAI,MAAM,CAAC,MAAM,EAAE,YAAY,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,CAAC;UACnD;cAAM,IAAI,WAAW,KAAKA,gBAA0B,IAAI,UAAU,KAAK,IAAI,EAAE;;aAE5E,CAAC,GAAG,KAAK,CAAC;;aAEV,OAAO,MAAM,CAAC,CAAC,CAAC,KAAK,IAAI,IAAI,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE;iBAC9C,CAAC,EAAE,CAAC;cACL;;aAED,IAAI,CAAC,IAAI,MAAM,CAAC,MAAM;iBAAE,MAAM,IAAI,SAAS,CAAC,oCAAoC,CAAC,CAAC;;aAElF,IAAM,MAAM,GAAG,MAAM,CAAC,QAAQ,CAAC,MAAM,EAAE,KAAK,EAAE,CAAC,CAAC,CAAC;aACjD,KAAK,GAAG,CAAC,GAAG,CAAC,CAAC;;aAGd,CAAC,GAAG,KAAK,CAAC;;aAEV,OAAO,MAAM,CAAC,CAAC,CAAC,KAAK,IAAI,IAAI,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE;iBAC9C,CAAC,EAAE,CAAC;cACL;;aAED,IAAI,CAAC,IAAI,MAAM,CAAC,MAAM;iBAAE,MAAM,IAAI,SAAS,CAAC,oCAAoC,CAAC,CAAC;;aAElF,IAAM,aAAa,GAAG,MAAM,CAAC,QAAQ,CAAC,MAAM,EAAE,KAAK,EAAE,CAAC,CAAC,CAAC;aACxD,KAAK,GAAG,CAAC,GAAG,CAAC,CAAC;;aAGd,KAAK,GAAG,IAAI,UAAU,CAAC,MAAM,EAAE,aAAa,CAAC,CAAC;UAC/C;cAAM,IAAI,WAAW,KAAKC,gBAA0B,EAAE;aACrD,IAAM,UAAU,GACd,MAAM,CAAC,KAAK,EAAE,CAAC;kBACd,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,CAAC,CAAC;kBACrB,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,EAAE,CAAC;kBACtB,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,EAAE,CAAC,CAAC;aAC1B,IACE,UAAU,IAAI,CAAC;iBACf,UAAU,GAAG,MAAM,CAAC,MAAM,GAAG,KAAK;iBAClC,MAAM,CAAC,KAAK,GAAG,UAAU,GAAG,CAAC,CAAC,KAAK,CAAC,EACpC;iBACA,MAAM,IAAI,SAAS,CAAC,2BAA2B,CAAC,CAAC;cAClD;aACD,IAAM,MAAM,GAAG,kBAAkB,CAAC,MAAM,EAAE,KAAK,EAAE,KAAK,GAAG,UAAU,GAAG,CAAC,EAAE,iBAAiB,CAAC,CAAC;aAC5F,KAAK,GAAG,aAAa,GAAG,MAAM,GAAG,IAAI,UAAU,CAAC,MAAM,CAAC,CAAC;aACxD,KAAK,GAAG,KAAK,GAAG,UAAU,CAAC;UAC5B;cAAM,IAAI,WAAW,KAAKC,mBAA6B,EAAE;aACxD,IAAM,OAAO,GACX,MAAM,CAAC,KAAK,EAAE,CAAC;kBACd,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,CAAC,CAAC;kBACrB,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,EAAE,CAAC;kBACtB,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,EAAE,CAAC,CAAC;aAC1B,IAAM,QAAQ,GACZ,MAAM,CAAC,KAAK,EAAE,CAAC;kBACd,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,CAAC,CAAC;kBACrB,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,EAAE,CAAC;kBACtB,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,EAAE,CAAC,CAAC;aAE1B,KAAK,GAAG,IAAI,SAAS,CAAC,OAAO,EAAE,QAAQ,CAAC,CAAC;UAC1C;cAAM,IAAI,WAAW,KAAKC,iBAA2B,EAAE;aACtD,KAAK,GAAG,IAAI,MAAM,EAAE,CAAC;UACtB;cAAM,IAAI,WAAW,KAAKC,iBAA2B,EAAE;aACtD,KAAK,GAAG,IAAI,MAAM,EAAE,CAAC;UACtB;cAAM,IAAI,WAAW,KAAKC,cAAwB,EAAE;aACnD,IAAM,UAAU,GACd,MAAM,CAAC,KAAK,EAAE,CAAC;kBACd,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,CAAC,CAAC;kBACrB,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,EAAE,CAAC;kBACtB,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,EAAE,CAAC,CAAC;aAC1B,IACE,UAAU,IAAI,CAAC;iBACf,UAAU,GAAG,MAAM,CAAC,MAAM,GAAG,KAAK;iBAClC,MAAM,CAAC,KAAK,GAAG,UAAU,GAAG,CAAC,CAAC,KAAK,CAAC,EACpC;iBACA,MAAM,IAAI,SAAS,CAAC,2BAA2B,CAAC,CAAC;cAClD;aACD,IAAM,cAAc,GAAG,kBAAkB,CACvC,MAAM,EACN,KAAK,EACL,KAAK,GAAG,UAAU,GAAG,CAAC,EACtB,iBAAiB,CAClB,CAAC;;aAGF,IAAI,aAAa,EAAE;;iBAEjB,IAAI,cAAc,EAAE;;qBAElB,KAAK,GAAG,WAAW,CAAC,cAAc,EAAE,aAAa,EAAE,MAAM,CAAC,CAAC;kBAC5D;sBAAM;qBACL,KAAK,GAAG,WAAW,CAAC,cAAc,CAAC,CAAC;kBACrC;cACF;kBAAM;iBACL,KAAK,GAAG,IAAI,IAAI,CAAC,cAAc,CAAC,CAAC;cAClC;;aAGD,KAAK,GAAG,KAAK,GAAG,UAAU,CAAC;UAC5B;cAAM,IAAI,WAAW,KAAKC,sBAAgC,EAAE;aAC3D,IAAM,SAAS,GACb,MAAM,CAAC,KAAK,EAAE,CAAC;kBACd,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,CAAC,CAAC;kBACrB,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,EAAE,CAAC;kBACtB,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,EAAE,CAAC,CAAC;;aAG1B,IAAI,SAAS,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,EAAE;iBAC7B,MAAM,IAAI,SAAS,CAAC,yDAAyD,CAAC,CAAC;cAChF;;aAGD,IAAM,UAAU,GACd,MAAM,CAAC,KAAK,EAAE,CAAC;kBACd,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,CAAC,CAAC;kBACrB,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,EAAE,CAAC;kBACtB,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,EAAE,CAAC,CAAC;;aAE1B,IACE,UAAU,IAAI,CAAC;iBACf,UAAU,GAAG,MAAM,CAAC,MAAM,GAAG,KAAK;iBAClC,MAAM,CAAC,KAAK,GAAG,UAAU,GAAG,CAAC,CAAC,KAAK,CAAC,EACpC;iBACA,MAAM,IAAI,SAAS,CAAC,2BAA2B,CAAC,CAAC;cAClD;;aAGD,IAAM,cAAc,GAAG,kBAAkB,CACvC,MAAM,EACN,KAAK,EACL,KAAK,GAAG,UAAU,GAAG,CAAC,EACtB,iBAAiB,CAClB,CAAC;;aAEF,KAAK,GAAG,KAAK,GAAG,UAAU,CAAC;;aAE3B,IAAM,MAAM,GAAG,KAAK,CAAC;;aAErB,IAAM,UAAU,GACd,MAAM,CAAC,KAAK,CAAC;kBACZ,MAAM,CAAC,KAAK,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC;kBACvB,MAAM,CAAC,KAAK,GAAG,CAAC,CAAC,IAAI,EAAE,CAAC;kBACxB,MAAM,CAAC,KAAK,GAAG,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC;;aAE5B,IAAM,WAAW,GAAG,iBAAiB,CAAC,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,KAAK,CAAC,CAAC;;aAEtE,KAAK,GAAG,KAAK,GAAG,UAAU,CAAC;;aAG3B,IAAI,SAAS,GAAG,CAAC,GAAG,CAAC,GAAG,UAAU,GAAG,UAAU,EAAE;iBAC/C,MAAM,IAAI,SAAS,CAAC,wDAAwD,CAAC,CAAC;cAC/E;;aAGD,IAAI,SAAS,GAAG,CAAC,GAAG,CAAC,GAAG,UAAU,GAAG,UAAU,EAAE;iBAC/C,MAAM,IAAI,SAAS,CAAC,2DAA2D,CAAC,CAAC;cAClF;;aAGD,IAAI,aAAa,EAAE;;iBAEjB,IAAI,cAAc,EAAE;;qBAElB,KAAK,GAAG,WAAW,CAAC,cAAc,EAAE,aAAa,EAAE,MAAM,CAAC,CAAC;kBAC5D;sBAAM;qBACL,KAAK,GAAG,WAAW,CAAC,cAAc,CAAC,CAAC;kBACrC;iBAED,KAAK,CAAC,KAAK,GAAG,WAAW,CAAC;cAC3B;kBAAM;iBACL,KAAK,GAAG,IAAI,IAAI,CAAC,cAAc,EAAE,WAAW,CAAC,CAAC;cAC/C;UACF;cAAM,IAAI,WAAW,KAAKC,mBAA6B,EAAE;;aAExD,IAAM,UAAU,GACd,MAAM,CAAC,KAAK,EAAE,CAAC;kBACd,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,CAAC,CAAC;kBACrB,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,EAAE,CAAC;kBACtB,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,EAAE,CAAC,CAAC;;aAE1B,IACE,UAAU,IAAI,CAAC;iBACf,UAAU,GAAG,MAAM,CAAC,MAAM,GAAG,KAAK;iBAClC,MAAM,CAAC,KAAK,GAAG,UAAU,GAAG,CAAC,CAAC,KAAK,CAAC;iBAEpC,MAAM,IAAI,SAAS,CAAC,2BAA2B,CAAC,CAAC;;aAEnD,IAAI,UAAU,IAAI,IAAI,IAAI,UAAU,CAAC,IAAI,EAAE;iBACzC,IAAI,CAAC,YAAY,CAAC,MAAM,EAAE,KAAK,EAAE,KAAK,GAAG,UAAU,GAAG,CAAC,CAAC,EAAE;qBACxD,MAAM,IAAI,SAAS,CAAC,uCAAuC,CAAC,CAAC;kBAC9D;cACF;aACD,IAAM,SAAS,GAAG,MAAM,CAAC,QAAQ,CAAC,MAAM,EAAE,KAAK,EAAE,KAAK,GAAG,UAAU,GAAG,CAAC,CAAC,CAAC;;aAEzE,KAAK,GAAG,KAAK,GAAG,UAAU,CAAC;;aAG3B,IAAM,SAAS,GAAGpR,QAAM,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC;aACnC,MAAM,CAAC,IAAI,CAAC,SAAS,EAAE,CAAC,EAAE,KAAK,EAAE,KAAK,GAAG,EAAE,CAAC,CAAC;aAC7C,IAAM,GAAG,GAAG,IAAI,QAAQ,CAAC,SAAS,CAAC,CAAC;;aAGpC,KAAK,GAAG,KAAK,GAAG,EAAE,CAAC;;aAGnB,KAAK,GAAG,IAAI,KAAK,CAAC,SAAS,EAAE,GAAG,CAAC,CAAC;UACnC;cAAM;aACL,MAAM,IAAI,SAAS,CACjB,qCAA8B,WAAW,CAAC,QAAQ,CAAC,EAAE,CAAC,8BAAmB,IAAI,OAAG,CACjF,CAAC;UACH;SACD,IAAI,IAAI,KAAK,WAAW,EAAE;aACxB,MAAM,CAAC,cAAc,CAAC,MAAM,EAAE,IAAI,EAAE;iBAClC,KAAK,OAAA;iBACL,QAAQ,EAAE,IAAI;iBACd,UAAU,EAAE,IAAI;iBAChB,YAAY,EAAE,IAAI;cACnB,CAAC,CAAC;UACJ;cAAM;aACL,MAAM,CAAC,IAAI,CAAC,GAAG,KAAK,CAAC;UACtB;MACF;;KAGD,IAAI,IAAI,KAAK,KAAK,GAAG,UAAU,EAAE;SAC/B,IAAI,OAAO;aAAE,MAAM,IAAI,SAAS,CAAC,oBAAoB,CAAC,CAAC;SACvD,MAAM,IAAI,SAAS,CAAC,qBAAqB,CAAC,CAAC;MAC5C;;KAGD,IAAI,CAAC,eAAe;SAAE,OAAO,MAAM,CAAC;KAEpC,IAAI,WAAW,CAAC,MAAM,CAAC,EAAE;SACvB,IAAM,IAAI,GAAG,MAAM,CAAC,MAAM,CAAC,EAAE,EAAE,MAAM,CAAuB,CAAC;SAC7D,OAAO,IAAI,CAAC,IAAI,CAAC;SACjB,OAAO,IAAI,CAAC,GAAG,CAAC;SAChB,OAAO,IAAI,CAAC,GAAG,CAAC;SAChB,OAAO,IAAI,KAAK,CAAC,MAAM,CAAC,IAAI,EAAE,MAAM,CAAC,GAAG,EAAE,MAAM,CAAC,GAAG,EAAE,IAAI,CAAC,CAAC;MAC7D;KAED,OAAO,MAAM,CAAC;CAChB,CAAC;CAED;;;;;CAKA,SAAS,WAAW,CAClB,cAAsB,EACtB,aAA4C,EAC5C,MAAiB;;KAGjB,IAAI,CAAC,aAAa;SAAE,OAAO,IAAI,QAAQ,CAAC,cAAc,CAAC,CAAC;;KAExD,IAAI,aAAa,CAAC,cAAc,CAAC,IAAI,IAAI,EAAE;;SAEzC,aAAa,CAAC,cAAc,CAAC,GAAG,IAAI,QAAQ,CAAC,cAAc,CAAC,CAAC;MAC9D;;KAGD,OAAO,aAAa,CAAC,cAAc,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;CACpD,CAAC;CAED,SAAS,kBAAkB,CACzB,MAAc,EACd,KAAa,EACb,GAAW,EACX,kBAA2B;KAE3B,IAAM,KAAK,GAAG,MAAM,CAAC,QAAQ,CAAC,MAAM,EAAE,KAAK,EAAE,GAAG,CAAC,CAAC;;KAElD,IAAI,kBAAkB,EAAE;SACtB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,KAAK,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;aACrC,IAAI,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,KAAK,MAAM,EAAE;iBAClC,IAAI,CAAC,YAAY,CAAC,MAAM,EAAE,KAAK,EAAE,GAAG,CAAC,EAAE;qBACrC,MAAM,IAAI,SAAS,CAAC,uCAAuC,CAAC,CAAC;kBAC9D;iBACD,MAAM;cACP;UACF;MACF;KACD,OAAO,KAAK,CAAC;CACf;;CCpuBA,IAAM,MAAM,GAAG,MAAM,CAAC;CACtB,IAAM,UAAU,GAAG,IAAI,GAAG,CAAC,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,cAAc,CAAC,CAAC,CAAC;CAEnE;;;;;CAMA,SAAS,eAAe,CACtB,MAAc,EACd,GAAW,EACX,KAAa,EACb,KAAa,EACb,OAAiB;;KAGjB,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG+P,gBAA0B,CAAC;;KAE7C,IAAM,oBAAoB,GAAG,CAAC,OAAO;WACjC,MAAM,CAAC,KAAK,CAAC,GAAG,EAAE,KAAK,EAAE,SAAS,EAAE,MAAM,CAAC;WAC3C,MAAM,CAAC,KAAK,CAAC,GAAG,EAAE,KAAK,EAAE,SAAS,EAAE,OAAO,CAAC,CAAC;;KAEjD,KAAK,GAAG,KAAK,GAAG,oBAAoB,GAAG,CAAC,CAAC;KACzC,MAAM,CAAC,KAAK,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC;;KAEtB,IAAM,IAAI,GAAG,MAAM,CAAC,KAAK,CAAC,KAAK,EAAE,KAAK,GAAG,CAAC,EAAE,SAAS,EAAE,MAAM,CAAC,CAAC;;KAE/D,MAAM,CAAC,KAAK,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,IAAI,GAAG,CAAC,KAAK,EAAE,IAAI,IAAI,CAAC;KAC9C,MAAM,CAAC,KAAK,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,IAAI,GAAG,CAAC,KAAK,EAAE,IAAI,IAAI,CAAC;KAC9C,MAAM,CAAC,KAAK,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,IAAI,GAAG,CAAC,KAAK,CAAC,IAAI,IAAI,CAAC;KAC7C,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,GAAG,CAAC,IAAI,IAAI,CAAC;;KAElC,KAAK,GAAG,KAAK,GAAG,CAAC,GAAG,IAAI,CAAC;;KAEzB,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,CAAC;KACpB,OAAO,KAAK,CAAC;CACf,CAAC;CAED,IAAM,iBAAiB,GAAG,IAAI,UAAU,CAAC,CAAC,CAAC,CAAC;CAC5C,IAAM,cAAc,GAAG,IAAI,QAAQ,CACjC,iBAAiB,CAAC,MAAM,EACxB,iBAAiB,CAAC,UAAU,EAC5B,iBAAiB,CAAC,UAAU,CAC7B,CAAC;CACF,SAAS,eAAe,CACtB,MAAc,EACd,GAAW,EACX,KAAa,EACb,KAAa,EACb,OAAiB;;;KAIjB,IACE,MAAM,CAAC,SAAS,CAAC,KAAK,CAAC;SACvB,KAAK,IAAIH,gBAAwB;SACjC,KAAK,IAAIC,gBAAwB,EACjC;;;SAGA,MAAM,CAAC,KAAK,EAAE,CAAC,GAAGI,aAAuB,CAAC;;SAE1C,IAAM,oBAAoB,GAAG,CAAC,OAAO;eACjC,MAAM,CAAC,KAAK,CAAC,GAAG,EAAE,KAAK,EAAE,SAAS,EAAE,MAAM,CAAC;eAC3C,MAAM,CAAC,KAAK,CAAC,GAAG,EAAE,KAAK,EAAE,SAAS,EAAE,OAAO,CAAC,CAAC;;SAEjD,KAAK,GAAG,KAAK,GAAG,oBAAoB,CAAC;SACrC,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,CAAC;;SAEpB,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,KAAK,GAAG,IAAI,CAAC;SAC/B,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,KAAK,IAAI,CAAC,IAAI,IAAI,CAAC;SACtC,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,KAAK,IAAI,EAAE,IAAI,IAAI,CAAC;SACvC,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,KAAK,IAAI,EAAE,IAAI,IAAI,CAAC;MACxC;UAAM;;SAEL,MAAM,CAAC,KAAK,EAAE,CAAC,GAAGC,gBAA0B,CAAC;;SAE7C,IAAM,oBAAoB,GAAG,CAAC,OAAO;eACjC,MAAM,CAAC,KAAK,CAAC,GAAG,EAAE,KAAK,EAAE,SAAS,EAAE,MAAM,CAAC;eAC3C,MAAM,CAAC,KAAK,CAAC,GAAG,EAAE,KAAK,EAAE,SAAS,EAAE,OAAO,CAAC,CAAC;;SAEjD,KAAK,GAAG,KAAK,GAAG,oBAAoB,CAAC;SACrC,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,CAAC;;SAEpB,cAAc,CAAC,UAAU,CAAC,CAAC,EAAE,KAAK,EAAE,IAAI,CAAC,CAAC;SAC1C,MAAM,CAAC,GAAG,CAAC,iBAAiB,EAAE,KAAK,CAAC,CAAC;;SAErC,KAAK,GAAG,KAAK,GAAG,CAAC,CAAC;MACnB;KAED,OAAO,KAAK,CAAC;CACf,CAAC;CAED,SAAS,aAAa,CAAC,MAAc,EAAE,GAAW,EAAE,CAAU,EAAE,KAAa,EAAE,OAAiB;;KAE9F,MAAM,CAAC,KAAK,EAAE,CAAC,GAAGM,cAAwB,CAAC;;KAG3C,IAAM,oBAAoB,GAAG,CAAC,OAAO;WACjC,MAAM,CAAC,KAAK,CAAC,GAAG,EAAE,KAAK,EAAE,SAAS,EAAE,MAAM,CAAC;WAC3C,MAAM,CAAC,KAAK,CAAC,GAAG,EAAE,KAAK,EAAE,SAAS,EAAE,OAAO,CAAC,CAAC;;KAGjD,KAAK,GAAG,KAAK,GAAG,oBAAoB,CAAC;KACrC,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,CAAC;KACpB,OAAO,KAAK,CAAC;CACf,CAAC;CAED,SAAS,gBAAgB,CACvB,MAAc,EACd,GAAW,EACX,KAAc,EACd,KAAa,EACb,OAAiB;;KAGjB,MAAM,CAAC,KAAK,EAAE,CAAC,GAAGJ,iBAA2B,CAAC;;KAE9C,IAAM,oBAAoB,GAAG,CAAC,OAAO;WACjC,MAAM,CAAC,KAAK,CAAC,GAAG,EAAE,KAAK,EAAE,SAAS,EAAE,MAAM,CAAC;WAC3C,MAAM,CAAC,KAAK,CAAC,GAAG,EAAE,KAAK,EAAE,SAAS,EAAE,OAAO,CAAC,CAAC;;KAEjD,KAAK,GAAG,KAAK,GAAG,oBAAoB,CAAC;KACrC,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,CAAC;;KAEpB,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,KAAK,GAAG,CAAC,GAAG,CAAC,CAAC;KAChC,OAAO,KAAK,CAAC;CACf,CAAC;CAED,SAAS,aAAa,CAAC,MAAc,EAAE,GAAW,EAAE,KAAW,EAAE,KAAa,EAAE,OAAiB;;KAE/F,MAAM,CAAC,KAAK,EAAE,CAAC,GAAGD,cAAwB,CAAC;;KAE3C,IAAM,oBAAoB,GAAG,CAAC,OAAO;WACjC,MAAM,CAAC,KAAK,CAAC,GAAG,EAAE,KAAK,EAAE,SAAS,EAAE,MAAM,CAAC;WAC3C,MAAM,CAAC,KAAK,CAAC,GAAG,EAAE,KAAK,EAAE,SAAS,EAAE,OAAO,CAAC,CAAC;;KAEjD,KAAK,GAAG,KAAK,GAAG,oBAAoB,CAAC;KACrC,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,CAAC;;KAGpB,IAAM,WAAW,GAAG,IAAI,CAAC,UAAU,CAAC,KAAK,CAAC,OAAO,EAAE,CAAC,CAAC;KACrD,IAAM,OAAO,GAAG,WAAW,CAAC,UAAU,EAAE,CAAC;KACzC,IAAM,QAAQ,GAAG,WAAW,CAAC,WAAW,EAAE,CAAC;;KAE3C,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,OAAO,GAAG,IAAI,CAAC;KACjC,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,OAAO,IAAI,CAAC,IAAI,IAAI,CAAC;KACxC,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,OAAO,IAAI,EAAE,IAAI,IAAI,CAAC;KACzC,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,OAAO,IAAI,EAAE,IAAI,IAAI,CAAC;;KAEzC,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,QAAQ,GAAG,IAAI,CAAC;KAClC,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,QAAQ,IAAI,CAAC,IAAI,IAAI,CAAC;KACzC,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,QAAQ,IAAI,EAAE,IAAI,IAAI,CAAC;KAC1C,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,QAAQ,IAAI,EAAE,IAAI,IAAI,CAAC;KAC1C,OAAO,KAAK,CAAC;CACf,CAAC;CAED,SAAS,eAAe,CACtB,MAAc,EACd,GAAW,EACX,KAAa,EACb,KAAa,EACb,OAAiB;;KAGjB,MAAM,CAAC,KAAK,EAAE,CAAC,GAAGU,gBAA0B,CAAC;;KAE7C,IAAM,oBAAoB,GAAG,CAAC,OAAO;WACjC,MAAM,CAAC,KAAK,CAAC,GAAG,EAAE,KAAK,EAAE,SAAS,EAAE,MAAM,CAAC;WAC3C,MAAM,CAAC,KAAK,CAAC,GAAG,EAAE,KAAK,EAAE,SAAS,EAAE,OAAO,CAAC,CAAC;;KAGjD,KAAK,GAAG,KAAK,GAAG,oBAAoB,CAAC;KACrC,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,CAAC;KACpB,IAAI,KAAK,CAAC,MAAM,IAAI,KAAK,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,IAAI,IAAI,EAAE;SACtD,MAAM,KAAK,CAAC,QAAQ,GAAG,KAAK,CAAC,MAAM,GAAG,8BAA8B,CAAC,CAAC;MACvE;;KAED,KAAK,GAAG,KAAK,GAAG,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,MAAM,EAAE,KAAK,EAAE,SAAS,EAAE,MAAM,CAAC,CAAC;;KAErE,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,IAAI,CAAC;;KAEvB,IAAI,KAAK,CAAC,UAAU;SAAE,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,IAAI,CAAC;KAC7C,IAAI,KAAK,CAAC,MAAM;SAAE,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,IAAI,CAAC;KACzC,IAAI,KAAK,CAAC,SAAS;SAAE,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,IAAI,CAAC;;KAG5C,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,IAAI,CAAC;KACvB,OAAO,KAAK,CAAC;CACf,CAAC;CAED,SAAS,mBAAmB,CAC1B,MAAc,EACd,GAAW,EACX,KAAiB,EACjB,KAAa,EACb,OAAiB;;KAGjB,MAAM,CAAC,KAAK,EAAE,CAAC,GAAGA,gBAA0B,CAAC;;KAE7C,IAAM,oBAAoB,GAAG,CAAC,OAAO;WACjC,MAAM,CAAC,KAAK,CAAC,GAAG,EAAE,KAAK,EAAE,SAAS,EAAE,MAAM,CAAC;WAC3C,MAAM,CAAC,KAAK,CAAC,GAAG,EAAE,KAAK,EAAE,SAAS,EAAE,OAAO,CAAC,CAAC;;KAEjD,KAAK,GAAG,KAAK,GAAG,oBAAoB,CAAC;KACrC,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,CAAC;;KAGpB,IAAI,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,MAAM,CAAC,IAAI,IAAI,EAAE;;;SAGvC,MAAM,KAAK,CAAC,UAAU,GAAG,KAAK,CAAC,OAAO,GAAG,8BAA8B,CAAC,CAAC;MAC1E;;KAGD,KAAK,GAAG,KAAK,GAAG,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,OAAO,EAAE,KAAK,EAAE,SAAS,EAAE,MAAM,CAAC,CAAC;;KAEtE,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,IAAI,CAAC;;KAEvB,KAAK,GAAG,KAAK,GAAG,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC,IAAI,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,SAAS,EAAE,MAAM,CAAC,CAAC;;KAEhG,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,IAAI,CAAC;KACvB,OAAO,KAAK,CAAC;CACf,CAAC;CAED,SAAS,eAAe,CACtB,MAAc,EACd,GAAW,EACX,KAAsB,EACtB,KAAa,EACb,OAAiB;;KAGjB,IAAI,KAAK,KAAK,IAAI,EAAE;SAClB,MAAM,CAAC,KAAK,EAAE,CAAC,GAAGL,cAAwB,CAAC;MAC5C;UAAM,IAAI,KAAK,CAAC,SAAS,KAAK,QAAQ,EAAE;SACvC,MAAM,CAAC,KAAK,EAAE,CAAC,GAAGQ,iBAA2B,CAAC;MAC/C;UAAM;SACL,MAAM,CAAC,KAAK,EAAE,CAAC,GAAGC,iBAA2B,CAAC;MAC/C;;KAGD,IAAM,oBAAoB,GAAG,CAAC,OAAO;WACjC,MAAM,CAAC,KAAK,CAAC,GAAG,EAAE,KAAK,EAAE,SAAS,EAAE,MAAM,CAAC;WAC3C,MAAM,CAAC,KAAK,CAAC,GAAG,EAAE,KAAK,EAAE,SAAS,EAAE,OAAO,CAAC,CAAC;;KAEjD,KAAK,GAAG,KAAK,GAAG,oBAAoB,CAAC;KACrC,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,CAAC;KACpB,OAAO,KAAK,CAAC;CACf,CAAC;CAED,SAAS,iBAAiB,CACxB,MAAc,EACd,GAAW,EACX,KAAe,EACf,KAAa,EACb,OAAiB;;KAGjB,MAAM,CAAC,KAAK,EAAE,CAAC,GAAGjB,aAAuB,CAAC;;KAE1C,IAAM,oBAAoB,GAAG,CAAC,OAAO;WACjC,MAAM,CAAC,KAAK,CAAC,GAAG,EAAE,KAAK,EAAE,SAAS,EAAE,MAAM,CAAC;WAC3C,MAAM,CAAC,KAAK,CAAC,GAAG,EAAE,KAAK,EAAE,SAAS,EAAE,OAAO,CAAC,CAAC;;KAGjD,KAAK,GAAG,KAAK,GAAG,oBAAoB,CAAC;KACrC,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,CAAC;;KAGpB,IAAI,OAAO,KAAK,CAAC,EAAE,KAAK,QAAQ,EAAE;SAChC,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,EAAE,EAAE,KAAK,EAAE,SAAS,EAAE,QAAQ,CAAC,CAAC;MACpD;UAAM,IAAI,YAAY,CAAC,KAAK,CAAC,EAAE,CAAC,EAAE;;;SAGjC,MAAM,CAAC,GAAG,CAAC,KAAK,CAAC,EAAE,CAAC,QAAQ,CAAC,CAAC,EAAE,EAAE,CAAC,EAAE,KAAK,CAAC,CAAC;MAC7C;UAAM;SACL,MAAM,IAAI,aAAa,CAAC,UAAU,GAAG,IAAI,CAAC,SAAS,CAAC,KAAK,CAAC,GAAG,2BAA2B,CAAC,CAAC;MAC3F;;KAGD,OAAO,KAAK,GAAG,EAAE,CAAC;CACpB,CAAC;CAED,SAAS,eAAe,CACtB,MAAc,EACd,GAAW,EACX,KAA0B,EAC1B,KAAa,EACb,OAAiB;;KAGjB,MAAM,CAAC,KAAK,EAAE,CAAC,GAAGW,gBAA0B,CAAC;;KAE7C,IAAM,oBAAoB,GAAG,CAAC,OAAO;WACjC,MAAM,CAAC,KAAK,CAAC,GAAG,EAAE,KAAK,EAAE,SAAS,EAAE,MAAM,CAAC;WAC3C,MAAM,CAAC,KAAK,CAAC,GAAG,EAAE,KAAK,EAAE,SAAS,EAAE,OAAO,CAAC,CAAC;;KAEjD,KAAK,GAAG,KAAK,GAAG,oBAAoB,CAAC;KACrC,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,CAAC;;KAEpB,IAAM,IAAI,GAAG,KAAK,CAAC,MAAM,CAAC;;KAE1B,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,IAAI,GAAG,IAAI,CAAC;KAC9B,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,IAAI,IAAI,CAAC,IAAI,IAAI,CAAC;KACrC,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,IAAI,IAAI,EAAE,IAAI,IAAI,CAAC;KACtC,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,IAAI,IAAI,EAAE,IAAI,IAAI,CAAC;;KAEtC,MAAM,CAAC,KAAK,EAAE,CAAC,GAAGU,2BAAqC,CAAC;;KAExD,MAAM,CAAC,GAAG,CAAC,YAAY,CAAC,KAAK,CAAC,EAAE,KAAK,CAAC,CAAC;;KAEvC,KAAK,GAAG,KAAK,GAAG,IAAI,CAAC;KACrB,OAAO,KAAK,CAAC;CACf,CAAC;CAED,SAAS,eAAe,CACtB,MAAc,EACd,GAAW,EACX,KAAe,EACf,KAAa,EACb,SAAiB,EACjB,KAAS,EACT,kBAA0B,EAC1B,eAAsB,EACtB,OAAe,EACf,IAAqB;KALrB,0BAAA,EAAA,iBAAiB;KACjB,sBAAA,EAAA,SAAS;KACT,mCAAA,EAAA,0BAA0B;KAC1B,gCAAA,EAAA,sBAAsB;KACtB,wBAAA,EAAA,eAAe;KACf,qBAAA,EAAA,SAAqB;KAErB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;SACpC,IAAI,IAAI,CAAC,CAAC,CAAC,KAAK,KAAK;aAAE,MAAM,IAAI,SAAS,CAAC,4BAA4B,CAAC,CAAC;MAC1E;;KAGD,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;;KAEjB,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,GAAGf,eAAyB,GAAGD,gBAA0B,CAAC;;KAEhG,IAAM,oBAAoB,GAAG,CAAC,OAAO;WACjC,MAAM,CAAC,KAAK,CAAC,GAAG,EAAE,KAAK,EAAE,SAAS,EAAE,MAAM,CAAC;WAC3C,MAAM,CAAC,KAAK,CAAC,GAAG,EAAE,KAAK,EAAE,SAAS,EAAE,OAAO,CAAC,CAAC;;KAEjD,KAAK,GAAG,KAAK,GAAG,oBAAoB,CAAC;KACrC,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,CAAC;KACpB,IAAM,QAAQ,GAAG,aAAa,CAC5B,MAAM,EACN,KAAK,EACL,SAAS,EACT,KAAK,EACL,KAAK,GAAG,CAAC,EACT,kBAAkB,EAClB,eAAe,EACf,IAAI,CACL,CAAC;;KAEF,IAAI,CAAC,GAAG,EAAE,CAAC;KACX,OAAO,QAAQ,CAAC;CAClB,CAAC;CAED,SAAS,mBAAmB,CAC1B,MAAc,EACd,GAAW,EACX,KAAiB,EACjB,KAAa,EACb,OAAiB;KAEjB,MAAM,CAAC,KAAK,EAAE,CAAC,GAAGK,oBAA8B,CAAC;;KAEjD,IAAM,oBAAoB,GAAG,CAAC,OAAO;WACjC,MAAM,CAAC,KAAK,CAAC,GAAG,EAAE,KAAK,EAAE,SAAS,EAAE,MAAM,CAAC;WAC3C,MAAM,CAAC,KAAK,CAAC,GAAG,EAAE,KAAK,EAAE,SAAS,EAAE,OAAO,CAAC,CAAC;;KAEjD,KAAK,GAAG,KAAK,GAAG,oBAAoB,CAAC;KACrC,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,CAAC;;;;KAIpB,MAAM,CAAC,GAAG,CAAC,KAAK,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,EAAE,EAAE,CAAC,EAAE,KAAK,CAAC,CAAC;KAC/C,OAAO,KAAK,GAAG,EAAE,CAAC;CACpB,CAAC;CAED,SAAS,aAAa,CAAC,MAAc,EAAE,GAAW,EAAE,KAAW,EAAE,KAAa,EAAE,OAAiB;;KAE/F,MAAM,CAAC,KAAK,EAAE,CAAC;SACb,KAAK,CAAC,SAAS,KAAK,MAAM,GAAGD,cAAwB,GAAGM,mBAA6B,CAAC;;KAExF,IAAM,oBAAoB,GAAG,CAAC,OAAO;WACjC,MAAM,CAAC,KAAK,CAAC,GAAG,EAAE,KAAK,EAAE,SAAS,EAAE,MAAM,CAAC;WAC3C,MAAM,CAAC,KAAK,CAAC,GAAG,EAAE,KAAK,EAAE,SAAS,EAAE,OAAO,CAAC,CAAC;;KAEjD,KAAK,GAAG,KAAK,GAAG,oBAAoB,CAAC;KACrC,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,CAAC;;KAEpB,IAAM,OAAO,GAAG,KAAK,CAAC,UAAU,EAAE,CAAC;KACnC,IAAM,QAAQ,GAAG,KAAK,CAAC,WAAW,EAAE,CAAC;;KAErC,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,OAAO,GAAG,IAAI,CAAC;KACjC,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,OAAO,IAAI,CAAC,IAAI,IAAI,CAAC;KACxC,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,OAAO,IAAI,EAAE,IAAI,IAAI,CAAC;KACzC,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,OAAO,IAAI,EAAE,IAAI,IAAI,CAAC;;KAEzC,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,QAAQ,GAAG,IAAI,CAAC;KAClC,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,QAAQ,IAAI,CAAC,IAAI,IAAI,CAAC;KACzC,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,QAAQ,IAAI,EAAE,IAAI,IAAI,CAAC;KAC1C,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,QAAQ,IAAI,EAAE,IAAI,IAAI,CAAC;KAC1C,OAAO,KAAK,CAAC;CACf,CAAC;CAED,SAAS,cAAc,CACrB,MAAc,EACd,GAAW,EACX,KAAqB,EACrB,KAAa,EACb,OAAiB;KAEjB,KAAK,GAAG,KAAK,CAAC,OAAO,EAAE,CAAC;;KAExB,MAAM,CAAC,KAAK,EAAE,CAAC,GAAGd,aAAuB,CAAC;;KAE1C,IAAM,oBAAoB,GAAG,CAAC,OAAO;WACjC,MAAM,CAAC,KAAK,CAAC,GAAG,EAAE,KAAK,EAAE,SAAS,EAAE,MAAM,CAAC;WAC3C,MAAM,CAAC,KAAK,CAAC,GAAG,EAAE,KAAK,EAAE,SAAS,EAAE,OAAO,CAAC,CAAC;;KAEjD,KAAK,GAAG,KAAK,GAAG,oBAAoB,CAAC;KACrC,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,CAAC;;KAEpB,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,KAAK,GAAG,IAAI,CAAC;KAC/B,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,KAAK,IAAI,CAAC,IAAI,IAAI,CAAC;KACtC,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,KAAK,IAAI,EAAE,IAAI,IAAI,CAAC;KACvC,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,KAAK,IAAI,EAAE,IAAI,IAAI,CAAC;KACvC,OAAO,KAAK,CAAC;CACf,CAAC;CAED,SAAS,eAAe,CACtB,MAAc,EACd,GAAW,EACX,KAAa,EACb,KAAa,EACb,OAAiB;;KAGjB,MAAM,CAAC,KAAK,EAAE,CAAC,GAAGC,gBAA0B,CAAC;;KAG7C,IAAM,oBAAoB,GAAG,CAAC,OAAO;WACjC,MAAM,CAAC,KAAK,CAAC,GAAG,EAAE,KAAK,EAAE,SAAS,EAAE,MAAM,CAAC;WAC3C,MAAM,CAAC,KAAK,CAAC,GAAG,EAAE,KAAK,EAAE,SAAS,EAAE,OAAO,CAAC,CAAC;;KAGjD,KAAK,GAAG,KAAK,GAAG,oBAAoB,CAAC;KACrC,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,CAAC;;KAGpB,cAAc,CAAC,UAAU,CAAC,CAAC,EAAE,KAAK,CAAC,KAAK,EAAE,IAAI,CAAC,CAAC;KAChD,MAAM,CAAC,GAAG,CAAC,iBAAiB,EAAE,KAAK,CAAC,CAAC;;KAGrC,KAAK,GAAG,KAAK,GAAG,CAAC,CAAC;KAClB,OAAO,KAAK,CAAC;CACf,CAAC;CAED,SAAS,iBAAiB,CACxB,MAAc,EACd,GAAW,EACX,KAAe,EACf,KAAa,EACb,UAAkB,EAClB,MAAU,EACV,OAAiB;KAEjB,MAAM,CAAC,KAAK,EAAE,CAAC,GAAGgB,cAAwB,CAAC;;KAE3C,IAAM,oBAAoB,GAAG,CAAC,OAAO;WACjC,MAAM,CAAC,KAAK,CAAC,GAAG,EAAE,KAAK,EAAE,SAAS,EAAE,MAAM,CAAC;WAC3C,MAAM,CAAC,KAAK,CAAC,GAAG,EAAE,KAAK,EAAE,SAAS,EAAE,OAAO,CAAC,CAAC;;KAEjD,KAAK,GAAG,KAAK,GAAG,oBAAoB,CAAC;KACrC,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,CAAC;;KAEpB,IAAM,cAAc,GAAG,wBAAwB,CAAC,KAAK,CAAC,CAAC;;KAGvD,IAAM,IAAI,GAAG,MAAM,CAAC,KAAK,CAAC,cAAc,EAAE,KAAK,GAAG,CAAC,EAAE,SAAS,EAAE,MAAM,CAAC,GAAG,CAAC,CAAC;;KAE5E,MAAM,CAAC,KAAK,CAAC,GAAG,IAAI,GAAG,IAAI,CAAC;KAC5B,MAAM,CAAC,KAAK,GAAG,CAAC,CAAC,GAAG,CAAC,IAAI,IAAI,CAAC,IAAI,IAAI,CAAC;KACvC,MAAM,CAAC,KAAK,GAAG,CAAC,CAAC,GAAG,CAAC,IAAI,IAAI,EAAE,IAAI,IAAI,CAAC;KACxC,MAAM,CAAC,KAAK,GAAG,CAAC,CAAC,GAAG,CAAC,IAAI,IAAI,EAAE,IAAI,IAAI,CAAC;;KAExC,KAAK,GAAG,KAAK,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,CAAC;;KAE7B,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,CAAC;KACpB,OAAO,KAAK,CAAC;CACf,CAAC;CAED,SAAS,aAAa,CACpB,MAAc,EACd,GAAW,EACX,KAAW,EACX,KAAa,EACb,SAAiB,EACjB,KAAS,EACT,kBAA0B,EAC1B,eAAsB,EACtB,OAAe;KAJf,0BAAA,EAAA,iBAAiB;KACjB,sBAAA,EAAA,SAAS;KACT,mCAAA,EAAA,0BAA0B;KAC1B,gCAAA,EAAA,sBAAsB;KACtB,wBAAA,EAAA,eAAe;KAEf,IAAI,KAAK,CAAC,KAAK,IAAI,OAAO,KAAK,CAAC,KAAK,KAAK,QAAQ,EAAE;;SAElD,MAAM,CAAC,KAAK,EAAE,CAAC,GAAGC,sBAAgC,CAAC;;SAEnD,IAAM,oBAAoB,GAAG,CAAC,OAAO;eACjC,MAAM,CAAC,KAAK,CAAC,GAAG,EAAE,KAAK,EAAE,SAAS,EAAE,MAAM,CAAC;eAC3C,MAAM,CAAC,KAAK,CAAC,GAAG,EAAE,KAAK,EAAE,SAAS,EAAE,OAAO,CAAC,CAAC;;SAEjD,KAAK,GAAG,KAAK,GAAG,oBAAoB,CAAC;SACrC,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,CAAC;;SAGpB,IAAI,UAAU,GAAG,KAAK,CAAC;;;SAIvB,IAAM,cAAc,GAAG,OAAO,KAAK,CAAC,IAAI,KAAK,QAAQ,GAAG,KAAK,CAAC,IAAI,GAAG,KAAK,CAAC,IAAI,CAAC,QAAQ,EAAE,CAAC;;SAE3F,KAAK,GAAG,KAAK,GAAG,CAAC,CAAC;;SAElB,IAAM,QAAQ,GAAG,MAAM,CAAC,KAAK,CAAC,cAAc,EAAE,KAAK,GAAG,CAAC,EAAE,SAAS,EAAE,MAAM,CAAC,GAAG,CAAC,CAAC;;SAEhF,MAAM,CAAC,KAAK,CAAC,GAAG,QAAQ,GAAG,IAAI,CAAC;SAChC,MAAM,CAAC,KAAK,GAAG,CAAC,CAAC,GAAG,CAAC,QAAQ,IAAI,CAAC,IAAI,IAAI,CAAC;SAC3C,MAAM,CAAC,KAAK,GAAG,CAAC,CAAC,GAAG,CAAC,QAAQ,IAAI,EAAE,IAAI,IAAI,CAAC;SAC5C,MAAM,CAAC,KAAK,GAAG,CAAC,CAAC,GAAG,CAAC,QAAQ,IAAI,EAAE,IAAI,IAAI,CAAC;;SAE5C,MAAM,CAAC,KAAK,GAAG,CAAC,GAAG,QAAQ,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC;;SAErC,KAAK,GAAG,KAAK,GAAG,QAAQ,GAAG,CAAC,CAAC;;;SAI7B,IAAM,QAAQ,GAAG,aAAa,CAC5B,MAAM,EACN,KAAK,CAAC,KAAK,EACX,SAAS,EACT,KAAK,EACL,KAAK,GAAG,CAAC,EACT,kBAAkB,EAClB,eAAe,CAChB,CAAC;SACF,KAAK,GAAG,QAAQ,GAAG,CAAC,CAAC;;SAGrB,IAAM,SAAS,GAAG,QAAQ,GAAG,UAAU,CAAC;;SAGxC,MAAM,CAAC,UAAU,EAAE,CAAC,GAAG,SAAS,GAAG,IAAI,CAAC;SACxC,MAAM,CAAC,UAAU,EAAE,CAAC,GAAG,CAAC,SAAS,IAAI,CAAC,IAAI,IAAI,CAAC;SAC/C,MAAM,CAAC,UAAU,EAAE,CAAC,GAAG,CAAC,SAAS,IAAI,EAAE,IAAI,IAAI,CAAC;SAChD,MAAM,CAAC,UAAU,EAAE,CAAC,GAAG,CAAC,SAAS,IAAI,EAAE,IAAI,IAAI,CAAC;;SAEhD,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,CAAC;MACrB;UAAM;SACL,MAAM,CAAC,KAAK,EAAE,CAAC,GAAGD,cAAwB,CAAC;;SAE3C,IAAM,oBAAoB,GAAG,CAAC,OAAO;eACjC,MAAM,CAAC,KAAK,CAAC,GAAG,EAAE,KAAK,EAAE,SAAS,EAAE,MAAM,CAAC;eAC3C,MAAM,CAAC,KAAK,CAAC,GAAG,EAAE,KAAK,EAAE,SAAS,EAAE,OAAO,CAAC,CAAC;;SAEjD,KAAK,GAAG,KAAK,GAAG,oBAAoB,CAAC;SACrC,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,CAAC;;SAEpB,IAAM,cAAc,GAAG,KAAK,CAAC,IAAI,CAAC,QAAQ,EAAE,CAAC;;SAE7C,IAAM,IAAI,GAAG,MAAM,CAAC,KAAK,CAAC,cAAc,EAAE,KAAK,GAAG,CAAC,EAAE,SAAS,EAAE,MAAM,CAAC,GAAG,CAAC,CAAC;;SAE5E,MAAM,CAAC,KAAK,CAAC,GAAG,IAAI,GAAG,IAAI,CAAC;SAC5B,MAAM,CAAC,KAAK,GAAG,CAAC,CAAC,GAAG,CAAC,IAAI,IAAI,CAAC,IAAI,IAAI,CAAC;SACvC,MAAM,CAAC,KAAK,GAAG,CAAC,CAAC,GAAG,CAAC,IAAI,IAAI,EAAE,IAAI,IAAI,CAAC;SACxC,MAAM,CAAC,KAAK,GAAG,CAAC,CAAC,GAAG,CAAC,IAAI,IAAI,EAAE,IAAI,IAAI,CAAC;;SAExC,KAAK,GAAG,KAAK,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,CAAC;;SAE7B,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,CAAC;MACrB;KAED,OAAO,KAAK,CAAC;CACf,CAAC;CAED,SAAS,eAAe,CACtB,MAAc,EACd,GAAW,EACX,KAAa,EACb,KAAa,EACb,OAAiB;;KAGjB,MAAM,CAAC,KAAK,EAAE,CAAC,GAAGP,gBAA0B,CAAC;;KAE7C,IAAM,oBAAoB,GAAG,CAAC,OAAO;WACjC,MAAM,CAAC,KAAK,CAAC,GAAG,EAAE,KAAK,EAAE,SAAS,EAAE,MAAM,CAAC;WAC3C,MAAM,CAAC,KAAK,CAAC,GAAG,EAAE,KAAK,EAAE,SAAS,EAAE,OAAO,CAAC,CAAC;;KAEjD,KAAK,GAAG,KAAK,GAAG,oBAAoB,CAAC;KACrC,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,CAAC;;KAEpB,IAAM,IAAI,GAAG,KAAK,CAAC,KAAK,CAAC,IAAI,CAAwB,CAAC;;KAEtD,IAAI,IAAI,GAAG,KAAK,CAAC,QAAQ,CAAC;;KAE1B,IAAI,KAAK,CAAC,QAAQ,KAAK,MAAM,CAAC,kBAAkB;SAAE,IAAI,GAAG,IAAI,GAAG,CAAC,CAAC;;KAElE,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,IAAI,GAAG,IAAI,CAAC;KAC9B,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,IAAI,IAAI,CAAC,IAAI,IAAI,CAAC;KACrC,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,IAAI,IAAI,EAAE,IAAI,IAAI,CAAC;KACtC,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,IAAI,IAAI,EAAE,IAAI,IAAI,CAAC;;KAEtC,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,KAAK,CAAC,QAAQ,CAAC;;KAGjC,IAAI,KAAK,CAAC,QAAQ,KAAK,MAAM,CAAC,kBAAkB,EAAE;SAChD,IAAI,GAAG,IAAI,GAAG,CAAC,CAAC;SAChB,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,IAAI,GAAG,IAAI,CAAC;SAC9B,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,IAAI,IAAI,CAAC,IAAI,IAAI,CAAC;SACrC,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,IAAI,IAAI,EAAE,IAAI,IAAI,CAAC;SACtC,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,IAAI,IAAI,EAAE,IAAI,IAAI,CAAC;MACvC;;KAGD,MAAM,CAAC,GAAG,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;;KAExB,KAAK,GAAG,KAAK,GAAG,KAAK,CAAC,QAAQ,CAAC;KAC/B,OAAO,KAAK,CAAC;CACf,CAAC;CAED,SAAS,eAAe,CACtB,MAAc,EACd,GAAW,EACX,KAAiB,EACjB,KAAa,EACb,OAAiB;;KAGjB,MAAM,CAAC,KAAK,EAAE,CAAC,GAAGG,gBAA0B,CAAC;;KAE7C,IAAM,oBAAoB,GAAG,CAAC,OAAO;WACjC,MAAM,CAAC,KAAK,CAAC,GAAG,EAAE,KAAK,EAAE,SAAS,EAAE,MAAM,CAAC;WAC3C,MAAM,CAAC,KAAK,CAAC,GAAG,EAAE,KAAK,EAAE,SAAS,EAAE,OAAO,CAAC,CAAC;;KAEjD,KAAK,GAAG,KAAK,GAAG,oBAAoB,CAAC;KACrC,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,CAAC;;KAEpB,IAAM,IAAI,GAAG,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,EAAE,KAAK,GAAG,CAAC,EAAE,SAAS,EAAE,MAAM,CAAC,GAAG,CAAC,CAAC;;KAEzE,MAAM,CAAC,KAAK,CAAC,GAAG,IAAI,GAAG,IAAI,CAAC;KAC5B,MAAM,CAAC,KAAK,GAAG,CAAC,CAAC,GAAG,CAAC,IAAI,IAAI,CAAC,IAAI,IAAI,CAAC;KACvC,MAAM,CAAC,KAAK,GAAG,CAAC,CAAC,GAAG,CAAC,IAAI,IAAI,EAAE,IAAI,IAAI,CAAC;KACxC,MAAM,CAAC,KAAK,GAAG,CAAC,CAAC,GAAG,CAAC,IAAI,IAAI,EAAE,IAAI,IAAI,CAAC;;KAExC,KAAK,GAAG,KAAK,GAAG,CAAC,GAAG,IAAI,GAAG,CAAC,CAAC;;KAE7B,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,IAAI,CAAC;KACvB,OAAO,KAAK,CAAC;CACf,CAAC;CAED,SAAS,cAAc,CACrB,MAAc,EACd,GAAW,EACX,KAAY,EACZ,KAAa,EACb,KAAa,EACb,kBAA2B,EAC3B,OAAiB;;KAGjB,MAAM,CAAC,KAAK,EAAE,CAAC,GAAGT,gBAA0B,CAAC;;KAE7C,IAAM,oBAAoB,GAAG,CAAC,OAAO;WACjC,MAAM,CAAC,KAAK,CAAC,GAAG,EAAE,KAAK,EAAE,SAAS,EAAE,MAAM,CAAC;WAC3C,MAAM,CAAC,KAAK,CAAC,GAAG,EAAE,KAAK,EAAE,SAAS,EAAE,OAAO,CAAC,CAAC;;KAGjD,KAAK,GAAG,KAAK,GAAG,oBAAoB,CAAC;KACrC,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,CAAC;KAEpB,IAAI,UAAU,GAAG,KAAK,CAAC;KACvB,IAAI,MAAM,GAAc;SACtB,IAAI,EAAE,KAAK,CAAC,UAAU,IAAI,KAAK,CAAC,SAAS;SACzC,GAAG,EAAE,KAAK,CAAC,GAAG;MACf,CAAC;KAEF,IAAI,KAAK,CAAC,EAAE,IAAI,IAAI,EAAE;SACpB,MAAM,CAAC,GAAG,GAAG,KAAK,CAAC,EAAE,CAAC;MACvB;KAED,MAAM,GAAG,MAAM,CAAC,MAAM,CAAC,MAAM,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;KAC7C,IAAM,QAAQ,GAAG,aAAa,CAAC,MAAM,EAAE,MAAM,EAAE,KAAK,EAAE,KAAK,EAAE,KAAK,GAAG,CAAC,EAAE,kBAAkB,CAAC,CAAC;;KAG5F,IAAM,IAAI,GAAG,QAAQ,GAAG,UAAU,CAAC;;KAEnC,MAAM,CAAC,UAAU,EAAE,CAAC,GAAG,IAAI,GAAG,IAAI,CAAC;KACnC,MAAM,CAAC,UAAU,EAAE,CAAC,GAAG,CAAC,IAAI,IAAI,CAAC,IAAI,IAAI,CAAC;KAC1C,MAAM,CAAC,UAAU,EAAE,CAAC,GAAG,CAAC,IAAI,IAAI,EAAE,IAAI,IAAI,CAAC;KAC3C,MAAM,CAAC,UAAU,EAAE,CAAC,GAAG,CAAC,IAAI,IAAI,EAAE,IAAI,IAAI,CAAC;;KAE3C,OAAO,QAAQ,CAAC;CAClB,CAAC;UAEe,aAAa,CAC3B,MAAc,EACd,MAAgB,EAChB,SAAiB,EACjB,aAAiB,EACjB,KAAS,EACT,kBAA0B,EAC1B,eAAsB,EACtB,IAAqB;KALrB,0BAAA,EAAA,iBAAiB;KACjB,8BAAA,EAAA,iBAAiB;KACjB,sBAAA,EAAA,SAAS;KACT,mCAAA,EAAA,0BAA0B;KAC1B,gCAAA,EAAA,sBAAsB;KACtB,qBAAA,EAAA,SAAqB;KAErB,aAAa,GAAG,aAAa,IAAI,CAAC,CAAC;KACnC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;;KAGlB,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;;KAGlB,IAAI,KAAK,GAAG,aAAa,GAAG,CAAC,CAAC;;KAG9B,IAAI,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,EAAE;;SAEzB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;aACtC,IAAM,GAAG,GAAG,UAAG,CAAC,CAAE,CAAC;aACnB,IAAI,KAAK,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC;;aAGtB,IAAI,QAAO,KAAK,aAAL,KAAK,uBAAL,KAAK,CAAE,MAAM,CAAA,KAAK,UAAU,EAAE;iBACvC,KAAK,GAAG,KAAK,CAAC,MAAM,EAAE,CAAC;cACxB;aAED,IAAI,OAAO,KAAK,KAAK,QAAQ,EAAE;iBAC7B,KAAK,GAAG,eAAe,CAAC,MAAM,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,EAAE,IAAI,CAAC,CAAC;cAC1D;kBAAM,IAAI,OAAO,KAAK,KAAK,QAAQ,EAAE;iBACpC,KAAK,GAAG,eAAe,CAAC,MAAM,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,EAAE,IAAI,CAAC,CAAC;cAC1D;kBAAM,IAAI,OAAO,KAAK,KAAK,QAAQ,EAAE;iBACpC,MAAM,IAAI,aAAa,CAAC,gDAAgD,CAAC,CAAC;cAC3E;kBAAM,IAAI,OAAO,KAAK,KAAK,SAAS,EAAE;iBACrC,KAAK,GAAG,gBAAgB,CAAC,MAAM,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,EAAE,IAAI,CAAC,CAAC;cAC3D;kBAAM,IAAI,KAAK,YAAY,IAAI,IAAI,MAAM,CAAC,KAAK,CAAC,EAAE;iBACjD,KAAK,GAAG,aAAa,CAAC,MAAM,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,EAAE,IAAI,CAAC,CAAC;cACxD;kBAAM,IAAI,KAAK,KAAK,SAAS,EAAE;iBAC9B,KAAK,GAAG,aAAa,CAAC,MAAM,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,EAAE,IAAI,CAAC,CAAC;cACxD;kBAAM,IAAI,KAAK,KAAK,IAAI,EAAE;iBACzB,KAAK,GAAG,aAAa,CAAC,MAAM,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,EAAE,IAAI,CAAC,CAAC;cACxD;kBAAM,IAAI,KAAK,CAAC,WAAW,CAAC,KAAK,UAAU,IAAI,KAAK,CAAC,WAAW,CAAC,KAAK,UAAU,EAAE;iBACjF,KAAK,GAAG,iBAAiB,CAAC,MAAM,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,EAAE,IAAI,CAAC,CAAC;cAC5D;kBAAM,IAAI,YAAY,CAAC,KAAK,CAAC,EAAE;iBAC9B,KAAK,GAAG,eAAe,CAAC,MAAM,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,EAAE,IAAI,CAAC,CAAC;cAC1D;kBAAM,IAAI,KAAK,YAAY,MAAM,IAAI,QAAQ,CAAC,KAAK,CAAC,EAAE;iBACrD,KAAK,GAAG,eAAe,CAAC,MAAM,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,EAAE,IAAI,CAAC,CAAC;cAC1D;kBAAM,IAAI,OAAO,KAAK,KAAK,QAAQ,IAAI,KAAK,CAAC,WAAW,CAAC,IAAI,IAAI,EAAE;iBAClE,KAAK,GAAG,eAAe,CACrB,MAAM,EACN,GAAG,EACH,KAAK,EACL,KAAK,EACL,SAAS,EACT,KAAK,EACL,kBAAkB,EAClB,eAAe,EACf,IAAI,EACJ,IAAI,CACL,CAAC;cACH;kBAAM,IACL,OAAO,KAAK,KAAK,QAAQ;iBACzB,UAAU,CAAC,KAAK,CAAC;iBACjB,KAAK,CAAC,SAAS,KAAK,YAAY,EAChC;iBACA,KAAK,GAAG,mBAAmB,CAAC,MAAM,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,EAAE,IAAI,CAAC,CAAC;cAC9D;kBAAM,IAAI,KAAK,CAAC,WAAW,CAAC,KAAK,MAAM,IAAI,KAAK,CAAC,WAAW,CAAC,KAAK,WAAW,EAAE;iBAC9E,KAAK,GAAG,aAAa,CAAC,MAAM,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,EAAE,IAAI,CAAC,CAAC;cACxD;kBAAM,IAAI,KAAK,CAAC,WAAW,CAAC,KAAK,QAAQ,EAAE;iBAC1C,KAAK,GAAG,eAAe,CAAC,MAAM,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,EAAE,IAAI,CAAC,CAAC;cAC1D;kBAAM,IAAI,OAAO,KAAK,KAAK,UAAU,IAAI,kBAAkB,EAAE;iBAC5D,KAAK,GAAG,iBAAiB,CAAC,MAAM,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,EAAE,SAAS,EAAE,KAAK,EAAE,IAAI,CAAC,CAAC;cAC9E;kBAAM,IAAI,KAAK,CAAC,WAAW,CAAC,KAAK,MAAM,EAAE;iBACxC,KAAK,GAAG,aAAa,CACnB,MAAM,EACN,GAAG,EACH,KAAK,EACL,KAAK,EACL,SAAS,EACT,KAAK,EACL,kBAAkB,EAClB,eAAe,EACf,IAAI,CACL,CAAC;cACH;kBAAM,IAAI,KAAK,CAAC,WAAW,CAAC,KAAK,QAAQ,EAAE;iBAC1C,KAAK,GAAG,eAAe,CAAC,MAAM,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,EAAE,IAAI,CAAC,CAAC;cAC1D;kBAAM,IAAI,KAAK,CAAC,WAAW,CAAC,KAAK,QAAQ,EAAE;iBAC1C,KAAK,GAAG,eAAe,CAAC,MAAM,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,EAAE,IAAI,CAAC,CAAC;cAC1D;kBAAM,IAAI,KAAK,CAAC,WAAW,CAAC,KAAK,OAAO,EAAE;iBACzC,KAAK,GAAG,cAAc,CAAC,MAAM,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,EAAE,KAAK,EAAE,kBAAkB,EAAE,IAAI,CAAC,CAAC;cACpF;kBAAM,IAAI,KAAK,CAAC,WAAW,CAAC,KAAK,YAAY,EAAE;iBAC9C,KAAK,GAAG,mBAAmB,CAAC,MAAM,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,EAAE,IAAI,CAAC,CAAC;cAC9D;kBAAM,IAAI,KAAK,CAAC,WAAW,CAAC,KAAK,OAAO,EAAE;iBACzC,KAAK,GAAG,cAAc,CAAC,MAAM,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,EAAE,IAAI,CAAC,CAAC;cACzD;kBAAM,IAAI,KAAK,CAAC,WAAW,CAAC,KAAK,QAAQ,IAAI,KAAK,CAAC,WAAW,CAAC,KAAK,QAAQ,EAAE;iBAC7E,KAAK,GAAG,eAAe,CAAC,MAAM,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,EAAE,IAAI,CAAC,CAAC;cAC1D;kBAAM,IAAI,OAAO,KAAK,CAAC,WAAW,CAAC,KAAK,WAAW,EAAE;iBACpD,MAAM,IAAI,aAAa,CAAC,6CAAsC,MAAM,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAE,CAAC,CAAC;cAC7F;UACF;MACF;UAAM,IAAI,MAAM,YAAYiB,WAAG,IAAI,KAAK,CAAC,MAAM,CAAC,EAAE;SACjD,IAAM,QAAQ,GAAG,MAAM,CAAC,OAAO,EAAE,CAAC;SAClC,IAAI,IAAI,GAAG,KAAK,CAAC;SAEjB,OAAO,CAAC,IAAI,EAAE;;aAEZ,IAAM,KAAK,GAAG,QAAQ,CAAC,IAAI,EAAE,CAAC;aAC9B,IAAI,GAAG,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC;;aAEpB,IAAI,IAAI;iBAAE,SAAS;;aAGnB,IAAM,GAAG,GAAG,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;aAC3B,IAAM,KAAK,GAAG,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;;aAG7B,IAAM,IAAI,GAAG,OAAO,KAAK,CAAC;;aAG1B,IAAI,OAAO,GAAG,KAAK,QAAQ,IAAI,CAAC,UAAU,CAAC,GAAG,CAAC,GAAG,CAAC,EAAE;iBACnD,IAAI,GAAG,CAAC,KAAK,CAAC,MAAM,CAAC,IAAI,IAAI,EAAE;;;qBAG7B,MAAM,KAAK,CAAC,MAAM,GAAG,GAAG,GAAG,8BAA8B,CAAC,CAAC;kBAC5D;iBAED,IAAI,SAAS,EAAE;qBACb,IAAI,GAAG,KAAK,GAAG,CAAC,CAAC,CAAC,EAAE;yBAClB,MAAM,KAAK,CAAC,MAAM,GAAG,GAAG,GAAG,0BAA0B,CAAC,CAAC;sBACxD;0BAAM,IAAI,CAAC,GAAG,CAAC,OAAO,CAAC,GAAG,CAAC,EAAE;yBAC5B,MAAM,KAAK,CAAC,MAAM,GAAG,GAAG,GAAG,uBAAuB,CAAC,CAAC;sBACrD;kBACF;cACF;aAED,IAAI,IAAI,KAAK,QAAQ,EAAE;iBACrB,KAAK,GAAG,eAAe,CAAC,MAAM,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC;cACpD;kBAAM,IAAI,IAAI,KAAK,QAAQ,EAAE;iBAC5B,KAAK,GAAG,eAAe,CAAC,MAAM,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC;cACpD;kBAAM,IAAI,IAAI,KAAK,QAAQ,IAAI,eAAe,CAAC,KAAK,CAAC,IAAI,gBAAgB,CAAC,KAAK,CAAC,EAAE;iBACjF,MAAM,IAAI,aAAa,CAAC,gDAAgD,CAAC,CAAC;cAC3E;kBAAM,IAAI,IAAI,KAAK,SAAS,EAAE;iBAC7B,KAAK,GAAG,gBAAgB,CAAC,MAAM,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC;cACrD;kBAAM,IAAI,KAAK,YAAY,IAAI,IAAI,MAAM,CAAC,KAAK,CAAC,EAAE;iBACjD,KAAK,GAAG,aAAa,CAAC,MAAM,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC;cAClD;kBAAM,IAAI,KAAK,KAAK,IAAI,KAAK,KAAK,KAAK,SAAS,IAAI,eAAe,KAAK,KAAK,CAAC,EAAE;iBAC/E,KAAK,GAAG,aAAa,CAAC,MAAM,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC;cAClD;kBAAM,IAAI,KAAK,CAAC,WAAW,CAAC,KAAK,UAAU,IAAI,KAAK,CAAC,WAAW,CAAC,KAAK,UAAU,EAAE;iBACjF,KAAK,GAAG,iBAAiB,CAAC,MAAM,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC;cACtD;kBAAM,IAAI,YAAY,CAAC,KAAK,CAAC,EAAE;iBAC9B,KAAK,GAAG,eAAe,CAAC,MAAM,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC;cACpD;kBAAM,IAAI,KAAK,YAAY,MAAM,IAAI,QAAQ,CAAC,KAAK,CAAC,EAAE;iBACrD,KAAK,GAAG,eAAe,CAAC,MAAM,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC;cACpD;kBAAM,IAAI,IAAI,KAAK,QAAQ,IAAI,KAAK,CAAC,WAAW,CAAC,IAAI,IAAI,EAAE;iBAC1D,KAAK,GAAG,eAAe,CACrB,MAAM,EACN,GAAG,EACH,KAAK,EACL,KAAK,EACL,SAAS,EACT,KAAK,EACL,kBAAkB,EAClB,eAAe,EACf,KAAK,EACL,IAAI,CACL,CAAC;cACH;kBAAM,IAAI,IAAI,KAAK,QAAQ,IAAI,KAAK,CAAC,WAAW,CAAC,KAAK,YAAY,EAAE;iBACnE,KAAK,GAAG,mBAAmB,CAAC,MAAM,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC;cACxD;kBAAM,IAAI,KAAK,CAAC,WAAW,CAAC,KAAK,MAAM,IAAI,KAAK,CAAC,WAAW,CAAC,KAAK,WAAW,EAAE;iBAC9E,KAAK,GAAG,aAAa,CAAC,MAAM,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC;cAClD;kBAAM,IAAI,KAAK,CAAC,WAAW,CAAC,KAAK,QAAQ,EAAE;iBAC1C,KAAK,GAAG,eAAe,CAAC,MAAM,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC;cACpD;kBAAM,IAAI,KAAK,CAAC,WAAW,CAAC,KAAK,MAAM,EAAE;iBACxC,KAAK,GAAG,aAAa,CACnB,MAAM,EACN,GAAG,EACH,KAAK,EACL,KAAK,EACL,SAAS,EACT,KAAK,EACL,kBAAkB,EAClB,eAAe,CAChB,CAAC;cACH;kBAAM,IAAI,OAAO,KAAK,KAAK,UAAU,IAAI,kBAAkB,EAAE;iBAC5D,KAAK,GAAG,iBAAiB,CAAC,MAAM,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,EAAE,SAAS,EAAE,KAAK,EAAE,kBAAkB,CAAC,CAAC;cAC5F;kBAAM,IAAI,KAAK,CAAC,WAAW,CAAC,KAAK,QAAQ,EAAE;iBAC1C,KAAK,GAAG,eAAe,CAAC,MAAM,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC;cACpD;kBAAM,IAAI,KAAK,CAAC,WAAW,CAAC,KAAK,QAAQ,EAAE;iBAC1C,KAAK,GAAG,eAAe,CAAC,MAAM,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC;cACpD;kBAAM,IAAI,KAAK,CAAC,WAAW,CAAC,KAAK,OAAO,EAAE;iBACzC,KAAK,GAAG,cAAc,CAAC,MAAM,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,EAAE,KAAK,EAAE,kBAAkB,CAAC,CAAC;cAC9E;kBAAM,IAAI,KAAK,CAAC,WAAW,CAAC,KAAK,YAAY,EAAE;iBAC9C,KAAK,GAAG,mBAAmB,CAAC,MAAM,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC;cACxD;kBAAM,IAAI,KAAK,CAAC,WAAW,CAAC,KAAK,OAAO,EAAE;iBACzC,KAAK,GAAG,cAAc,CAAC,MAAM,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC;cACnD;kBAAM,IAAI,KAAK,CAAC,WAAW,CAAC,KAAK,QAAQ,IAAI,KAAK,CAAC,WAAW,CAAC,KAAK,QAAQ,EAAE;iBAC7E,KAAK,GAAG,eAAe,CAAC,MAAM,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC;cACpD;kBAAM,IAAI,OAAO,KAAK,CAAC,WAAW,CAAC,KAAK,WAAW,EAAE;iBACpD,MAAM,IAAI,aAAa,CAAC,6CAAsC,MAAM,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAE,CAAC,CAAC;cAC7F;UACF;MACF;UAAM;SACL,IAAI,QAAO,MAAM,aAAN,MAAM,uBAAN,MAAM,CAAE,MAAM,CAAA,KAAK,UAAU,EAAE;;aAExC,MAAM,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC;aACzB,IAAI,MAAM,IAAI,IAAI,IAAI,OAAO,MAAM,KAAK,QAAQ,EAAE;iBAChD,MAAM,IAAI,aAAa,CAAC,0CAA0C,CAAC,CAAC;cACrE;UACF;;SAGD,KAAK,IAAM,GAAG,IAAI,MAAM,EAAE;aACxB,IAAI,KAAK,GAAG,MAAM,CAAC,GAAG,CAAC,CAAC;;aAExB,IAAI,QAAO,KAAK,aAAL,KAAK,uBAAL,KAAK,CAAE,MAAM,CAAA,KAAK,UAAU,EAAE;iBACvC,KAAK,GAAG,KAAK,CAAC,MAAM,EAAE,CAAC;cACxB;;aAGD,IAAM,IAAI,GAAG,OAAO,KAAK,CAAC;;aAG1B,IAAI,OAAO,GAAG,KAAK,QAAQ,IAAI,CAAC,UAAU,CAAC,GAAG,CAAC,GAAG,CAAC,EAAE;iBACnD,IAAI,GAAG,CAAC,KAAK,CAAC,MAAM,CAAC,IAAI,IAAI,EAAE;;;qBAG7B,MAAM,KAAK,CAAC,MAAM,GAAG,GAAG,GAAG,8BAA8B,CAAC,CAAC;kBAC5D;iBAED,IAAI,SAAS,EAAE;qBACb,IAAI,GAAG,KAAK,GAAG,CAAC,CAAC,CAAC,EAAE;yBAClB,MAAM,KAAK,CAAC,MAAM,GAAG,GAAG,GAAG,0BAA0B,CAAC,CAAC;sBACxD;0BAAM,IAAI,CAAC,GAAG,CAAC,OAAO,CAAC,GAAG,CAAC,EAAE;yBAC5B,MAAM,KAAK,CAAC,MAAM,GAAG,GAAG,GAAG,uBAAuB,CAAC,CAAC;sBACrD;kBACF;cACF;aAED,IAAI,IAAI,KAAK,QAAQ,EAAE;iBACrB,KAAK,GAAG,eAAe,CAAC,MAAM,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC;cACpD;kBAAM,IAAI,IAAI,KAAK,QAAQ,EAAE;iBAC5B,KAAK,GAAG,eAAe,CAAC,MAAM,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC;cACpD;kBAAM,IAAI,IAAI,KAAK,QAAQ,EAAE;iBAC5B,MAAM,IAAI,aAAa,CAAC,gDAAgD,CAAC,CAAC;cAC3E;kBAAM,IAAI,IAAI,KAAK,SAAS,EAAE;iBAC7B,KAAK,GAAG,gBAAgB,CAAC,MAAM,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC;cACrD;kBAAM,IAAI,KAAK,YAAY,IAAI,IAAI,MAAM,CAAC,KAAK,CAAC,EAAE;iBACjD,KAAK,GAAG,aAAa,CAAC,MAAM,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC;cAClD;kBAAM,IAAI,KAAK,KAAK,SAAS,EAAE;iBAC9B,IAAI,eAAe,KAAK,KAAK;qBAAE,KAAK,GAAG,aAAa,CAAC,MAAM,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC;cACjF;kBAAM,IAAI,KAAK,KAAK,IAAI,EAAE;iBACzB,KAAK,GAAG,aAAa,CAAC,MAAM,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC;cAClD;kBAAM,IAAI,KAAK,CAAC,WAAW,CAAC,KAAK,UAAU,IAAI,KAAK,CAAC,WAAW,CAAC,KAAK,UAAU,EAAE;iBACjF,KAAK,GAAG,iBAAiB,CAAC,MAAM,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC;cACtD;kBAAM,IAAI,YAAY,CAAC,KAAK,CAAC,EAAE;iBAC9B,KAAK,GAAG,eAAe,CAAC,MAAM,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC;cACpD;kBAAM,IAAI,KAAK,YAAY,MAAM,IAAI,QAAQ,CAAC,KAAK,CAAC,EAAE;iBACrD,KAAK,GAAG,eAAe,CAAC,MAAM,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC;cACpD;kBAAM,IAAI,IAAI,KAAK,QAAQ,IAAI,KAAK,CAAC,WAAW,CAAC,IAAI,IAAI,EAAE;iBAC1D,KAAK,GAAG,eAAe,CACrB,MAAM,EACN,GAAG,EACH,KAAK,EACL,KAAK,EACL,SAAS,EACT,KAAK,EACL,kBAAkB,EAClB,eAAe,EACf,KAAK,EACL,IAAI,CACL,CAAC;cACH;kBAAM,IAAI,IAAI,KAAK,QAAQ,IAAI,KAAK,CAAC,WAAW,CAAC,KAAK,YAAY,EAAE;iBACnE,KAAK,GAAG,mBAAmB,CAAC,MAAM,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC;cACxD;kBAAM,IAAI,KAAK,CAAC,WAAW,CAAC,KAAK,MAAM,IAAI,KAAK,CAAC,WAAW,CAAC,KAAK,WAAW,EAAE;iBAC9E,KAAK,GAAG,aAAa,CAAC,MAAM,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC;cAClD;kBAAM,IAAI,KAAK,CAAC,WAAW,CAAC,KAAK,QAAQ,EAAE;iBAC1C,KAAK,GAAG,eAAe,CAAC,MAAM,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC;cACpD;kBAAM,IAAI,KAAK,CAAC,WAAW,CAAC,KAAK,MAAM,EAAE;iBACxC,KAAK,GAAG,aAAa,CACnB,MAAM,EACN,GAAG,EACH,KAAK,EACL,KAAK,EACL,SAAS,EACT,KAAK,EACL,kBAAkB,EAClB,eAAe,CAChB,CAAC;cACH;kBAAM,IAAI,OAAO,KAAK,KAAK,UAAU,IAAI,kBAAkB,EAAE;iBAC5D,KAAK,GAAG,iBAAiB,CAAC,MAAM,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,EAAE,SAAS,EAAE,KAAK,EAAE,kBAAkB,CAAC,CAAC;cAC5F;kBAAM,IAAI,KAAK,CAAC,WAAW,CAAC,KAAK,QAAQ,EAAE;iBAC1C,KAAK,GAAG,eAAe,CAAC,MAAM,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC;cACpD;kBAAM,IAAI,KAAK,CAAC,WAAW,CAAC,KAAK,QAAQ,EAAE;iBAC1C,KAAK,GAAG,eAAe,CAAC,MAAM,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC;cACpD;kBAAM,IAAI,KAAK,CAAC,WAAW,CAAC,KAAK,OAAO,EAAE;iBACzC,KAAK,GAAG,cAAc,CAAC,MAAM,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,EAAE,KAAK,EAAE,kBAAkB,CAAC,CAAC;cAC9E;kBAAM,IAAI,KAAK,CAAC,WAAW,CAAC,KAAK,YAAY,EAAE;iBAC9C,KAAK,GAAG,mBAAmB,CAAC,MAAM,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC;cACxD;kBAAM,IAAI,KAAK,CAAC,WAAW,CAAC,KAAK,OAAO,EAAE;iBACzC,KAAK,GAAG,cAAc,CAAC,MAAM,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC;cACnD;kBAAM,IAAI,KAAK,CAAC,WAAW,CAAC,KAAK,QAAQ,IAAI,KAAK,CAAC,WAAW,CAAC,KAAK,QAAQ,EAAE;iBAC7E,KAAK,GAAG,eAAe,CAAC,MAAM,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC;cACpD;kBAAM,IAAI,OAAO,KAAK,CAAC,WAAW,CAAC,KAAK,WAAW,EAAE;iBACpD,MAAM,IAAI,aAAa,CAAC,6CAAsC,MAAM,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAE,CAAC,CAAC;cAC7F;UACF;MACF;;KAGD,IAAI,CAAC,GAAG,EAAE,CAAC;;KAGX,MAAM,CAAC,KAAK,EAAE,CAAC,GAAG,IAAI,CAAC;;KAGvB,IAAM,IAAI,GAAG,KAAK,GAAG,aAAa,CAAC;;KAEnC,MAAM,CAAC,aAAa,EAAE,CAAC,GAAG,IAAI,GAAG,IAAI,CAAC;KACtC,MAAM,CAAC,aAAa,EAAE,CAAC,GAAG,CAAC,IAAI,IAAI,CAAC,IAAI,IAAI,CAAC;KAC7C,MAAM,CAAC,aAAa,EAAE,CAAC,GAAG,CAAC,IAAI,IAAI,EAAE,IAAI,IAAI,CAAC;KAC9C,MAAM,CAAC,aAAa,EAAE,CAAC,GAAG,CAAC,IAAI,IAAI,EAAE,IAAI,IAAI,CAAC;KAC9C,OAAO,KAAK,CAAC;CACf;;CC38BA;CACA;CACA,IAAM,OAAO,GAAG,IAAI,GAAG,IAAI,GAAG,EAAE,CAAC;CAEjC;CACA,IAAI,MAAM,GAAGtR,QAAM,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC;CAEnC;;;;;;UAMgB,qBAAqB,CAAC,IAAY;;KAEhD,IAAI,MAAM,CAAC,MAAM,GAAG,IAAI,EAAE;SACxB,MAAM,GAAGA,QAAM,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;MAC7B;CACH,CAAC;CAED;;;;;;;UAOgB,SAAS,CAAC,MAAgB,EAAE,OAA8B;KAA9B,wBAAA,EAAA,YAA8B;;KAExE,IAAM,SAAS,GAAG,OAAO,OAAO,CAAC,SAAS,KAAK,SAAS,GAAG,OAAO,CAAC,SAAS,GAAG,KAAK,CAAC;KACrF,IAAM,kBAAkB,GACtB,OAAO,OAAO,CAAC,kBAAkB,KAAK,SAAS,GAAG,OAAO,CAAC,kBAAkB,GAAG,KAAK,CAAC;KACvF,IAAM,eAAe,GACnB,OAAO,OAAO,CAAC,eAAe,KAAK,SAAS,GAAG,OAAO,CAAC,eAAe,GAAG,IAAI,CAAC;KAChF,IAAM,qBAAqB,GACzB,OAAO,OAAO,CAAC,qBAAqB,KAAK,QAAQ,GAAG,OAAO,CAAC,qBAAqB,GAAG,OAAO,CAAC;;KAG9F,IAAI,MAAM,CAAC,MAAM,GAAG,qBAAqB,EAAE;SACzC,MAAM,GAAGA,QAAM,CAAC,KAAK,CAAC,qBAAqB,CAAC,CAAC;MAC9C;;KAGD,IAAM,kBAAkB,GAAGuR,aAAiB,CAC1C,MAAM,EACN,MAAM,EACN,SAAS,EACT,CAAC,EACD,CAAC,EACD,kBAAkB,EAClB,eAAe,EACf,EAAE,CACH,CAAC;;KAGF,IAAM,cAAc,GAAGvR,QAAM,CAAC,KAAK,CAAC,kBAAkB,CAAC,CAAC;;KAGxD,MAAM,CAAC,IAAI,CAAC,cAAc,EAAE,CAAC,EAAE,CAAC,EAAE,cAAc,CAAC,MAAM,CAAC,CAAC;;KAGzD,OAAO,cAAc,CAAC;CACxB,CAAC;CAED;;;;;;;;;UASgB,2BAA2B,CACzC,MAAgB,EAChB,WAAmB,EACnB,OAA8B;KAA9B,wBAAA,EAAA,YAA8B;;KAG9B,IAAM,SAAS,GAAG,OAAO,OAAO,CAAC,SAAS,KAAK,SAAS,GAAG,OAAO,CAAC,SAAS,GAAG,KAAK,CAAC;KACrF,IAAM,kBAAkB,GACtB,OAAO,OAAO,CAAC,kBAAkB,KAAK,SAAS,GAAG,OAAO,CAAC,kBAAkB,GAAG,KAAK,CAAC;KACvF,IAAM,eAAe,GACnB,OAAO,OAAO,CAAC,eAAe,KAAK,SAAS,GAAG,OAAO,CAAC,eAAe,GAAG,IAAI,CAAC;KAChF,IAAM,UAAU,GAAG,OAAO,OAAO,CAAC,KAAK,KAAK,QAAQ,GAAG,OAAO,CAAC,KAAK,GAAG,CAAC,CAAC;;KAGzE,IAAM,kBAAkB,GAAGuR,aAAiB,CAC1C,MAAM,EACN,MAAM,EACN,SAAS,EACT,CAAC,EACD,CAAC,EACD,kBAAkB,EAClB,eAAe,CAChB,CAAC;KACF,MAAM,CAAC,IAAI,CAAC,WAAW,EAAE,UAAU,EAAE,CAAC,EAAE,kBAAkB,CAAC,CAAC;;KAG5D,OAAO,UAAU,GAAG,kBAAkB,GAAG,CAAC,CAAC;CAC7C,CAAC;CAED;;;;;;;UAOgB,WAAW,CACzB,MAA8C,EAC9C,OAAgC;KAAhC,wBAAA,EAAA,YAAgC;KAEhC,OAAOC,aAAmB,CAAC,MAAM,YAAYxR,QAAM,GAAG,MAAM,GAAG,YAAY,CAAC,MAAM,CAAC,EAAE,OAAO,CAAC,CAAC;CAChG,CAAC;CAQD;;;;;;;UAOgB,mBAAmB,CACjC,MAAgB,EAChB,OAAwC;KAAxC,wBAAA,EAAA,YAAwC;KAExC,OAAO,GAAG,OAAO,IAAI,EAAE,CAAC;KAExB,IAAM,kBAAkB,GACtB,OAAO,OAAO,CAAC,kBAAkB,KAAK,SAAS,GAAG,OAAO,CAAC,kBAAkB,GAAG,KAAK,CAAC;KACvF,IAAM,eAAe,GACnB,OAAO,OAAO,CAAC,eAAe,KAAK,SAAS,GAAG,OAAO,CAAC,eAAe,GAAG,IAAI,CAAC;KAEhF,OAAOyR,qBAA2B,CAAC,MAAM,EAAE,kBAAkB,EAAE,eAAe,CAAC,CAAC;CAClF,CAAC;CAED;;;;;;;;;;;;UAYgB,iBAAiB,CAC/B,IAA4C,EAC5C,UAAkB,EAClB,iBAAyB,EACzB,SAAqB,EACrB,aAAqB,EACrB,OAA2B;KAE3B,IAAM,eAAe,GAAG,MAAM,CAAC,MAAM,CACnC,EAAE,gCAAgC,EAAE,IAAI,EAAE,KAAK,EAAE,CAAC,EAAE,EACpD,OAAO,CACR,CAAC;KACF,IAAM,UAAU,GAAG,YAAY,CAAC,IAAI,CAAC,CAAC;KAEtC,IAAI,KAAK,GAAG,UAAU,CAAC;;KAEvB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,iBAAiB,EAAE,CAAC,EAAE,EAAE;;SAE1C,IAAM,IAAI,GACR,UAAU,CAAC,KAAK,CAAC;cAChB,UAAU,CAAC,KAAK,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC;cAC3B,UAAU,CAAC,KAAK,GAAG,CAAC,CAAC,IAAI,EAAE,CAAC;cAC5B,UAAU,CAAC,KAAK,GAAG,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC;;SAEhC,eAAe,CAAC,KAAK,GAAG,KAAK,CAAC;;SAE9B,SAAS,CAAC,aAAa,GAAG,CAAC,CAAC,GAAGD,aAAmB,CAAC,UAAU,EAAE,eAAe,CAAC,CAAC;;SAEhF,KAAK,GAAG,KAAK,GAAG,IAAI,CAAC;MACtB;;KAGD,OAAO,KAAK,CAAC;CACf,CAAC;CAED;;;;;;;;KAQM,IAAI,GAAG;KACX,MAAM,QAAA;KACN,IAAI,MAAA;KACJ,KAAK,OAAA;KACL,UAAU,YAAA;KACV,MAAM,QAAA;KACN,KAAK,OAAA;KACL,IAAI,MAAA;KACJ,IAAI,MAAA;KACJ,GAAG,aAAA;KACH,MAAM,QAAA;KACN,MAAM,QAAA;KACN,QAAQ,UAAA;KACR,QAAQ,EAAE,QAAQ;KAClB,UAAU,YAAA;KACV,UAAU,YAAA;KACV,SAAS,WAAA;KACT,KAAK,eAAA;KACL,qBAAqB,uBAAA;KACrB,SAAS,WAAA;KACT,2BAA2B,6BAAA;KAC3B,WAAW,aAAA;KACX,mBAAmB,qBAAA;KACnB,iBAAiB,mBAAA;KACjB,SAAS,WAAA;KACT,aAAa,eAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"} \ No newline at end of file diff --git a/node_modules/bson/dist/bson.bundle.js b/node_modules/bson/dist/bson.bundle.js new file mode 100644 index 000000000..78f86cc0c --- /dev/null +++ b/node_modules/bson/dist/bson.bundle.js @@ -0,0 +1,7536 @@ +var BSON = (function (exports) { + 'use strict'; + + function createCommonjsModule(fn, module) { + return module = { exports: {} }, fn(module, module.exports), module.exports; + } + + var byteLength_1 = byteLength; + var toByteArray_1 = toByteArray; + var fromByteArray_1 = fromByteArray; + var lookup = []; + var revLookup = []; + var Arr = typeof Uint8Array !== 'undefined' ? Uint8Array : Array; + var code = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'; + + for (var i = 0, len = code.length; i < len; ++i) { + lookup[i] = code[i]; + revLookup[code.charCodeAt(i)] = i; + } // Support decoding URL-safe base64 strings, as Node.js does. + // See: https://en.wikipedia.org/wiki/Base64#URL_applications + + + revLookup['-'.charCodeAt(0)] = 62; + revLookup['_'.charCodeAt(0)] = 63; + + function getLens(b64) { + var len = b64.length; + + if (len % 4 > 0) { + throw new Error('Invalid string. Length must be a multiple of 4'); + } // Trim off extra bytes after placeholder bytes are found + // See: https://github.com/beatgammit/base64-js/issues/42 + + + var validLen = b64.indexOf('='); + if (validLen === -1) validLen = len; + var placeHoldersLen = validLen === len ? 0 : 4 - validLen % 4; + return [validLen, placeHoldersLen]; + } // base64 is 4/3 + up to two characters of the original data + + + function byteLength(b64) { + var lens = getLens(b64); + var validLen = lens[0]; + var placeHoldersLen = lens[1]; + return (validLen + placeHoldersLen) * 3 / 4 - placeHoldersLen; + } + + function _byteLength(b64, validLen, placeHoldersLen) { + return (validLen + placeHoldersLen) * 3 / 4 - placeHoldersLen; + } + + function toByteArray(b64) { + var tmp; + var lens = getLens(b64); + var validLen = lens[0]; + var placeHoldersLen = lens[1]; + var arr = new Arr(_byteLength(b64, validLen, placeHoldersLen)); + var curByte = 0; // if there are placeholders, only get up to the last complete 4 chars + + var len = placeHoldersLen > 0 ? validLen - 4 : validLen; + var i; + + for (i = 0; i < len; i += 4) { + tmp = revLookup[b64.charCodeAt(i)] << 18 | revLookup[b64.charCodeAt(i + 1)] << 12 | revLookup[b64.charCodeAt(i + 2)] << 6 | revLookup[b64.charCodeAt(i + 3)]; + arr[curByte++] = tmp >> 16 & 0xFF; + arr[curByte++] = tmp >> 8 & 0xFF; + arr[curByte++] = tmp & 0xFF; + } + + if (placeHoldersLen === 2) { + tmp = revLookup[b64.charCodeAt(i)] << 2 | revLookup[b64.charCodeAt(i + 1)] >> 4; + arr[curByte++] = tmp & 0xFF; + } + + if (placeHoldersLen === 1) { + tmp = revLookup[b64.charCodeAt(i)] << 10 | revLookup[b64.charCodeAt(i + 1)] << 4 | revLookup[b64.charCodeAt(i + 2)] >> 2; + arr[curByte++] = tmp >> 8 & 0xFF; + arr[curByte++] = tmp & 0xFF; + } + + return arr; + } + + function tripletToBase64(num) { + return lookup[num >> 18 & 0x3F] + lookup[num >> 12 & 0x3F] + lookup[num >> 6 & 0x3F] + lookup[num & 0x3F]; + } + + function encodeChunk(uint8, start, end) { + var tmp; + var output = []; + + for (var i = start; i < end; i += 3) { + tmp = (uint8[i] << 16 & 0xFF0000) + (uint8[i + 1] << 8 & 0xFF00) + (uint8[i + 2] & 0xFF); + output.push(tripletToBase64(tmp)); + } + + return output.join(''); + } + + function fromByteArray(uint8) { + var tmp; + var len = uint8.length; + var extraBytes = len % 3; // if we have 1 byte left, pad 2 bytes + + var parts = []; + var maxChunkLength = 16383; // must be multiple of 3 + // go through the array every three bytes, we'll deal with trailing stuff later + + for (var i = 0, len2 = len - extraBytes; i < len2; i += maxChunkLength) { + parts.push(encodeChunk(uint8, i, i + maxChunkLength > len2 ? len2 : i + maxChunkLength)); + } // pad the end with zeros, but make sure to not forget the extra bytes + + + if (extraBytes === 1) { + tmp = uint8[len - 1]; + parts.push(lookup[tmp >> 2] + lookup[tmp << 4 & 0x3F] + '=='); + } else if (extraBytes === 2) { + tmp = (uint8[len - 2] << 8) + uint8[len - 1]; + parts.push(lookup[tmp >> 10] + lookup[tmp >> 4 & 0x3F] + lookup[tmp << 2 & 0x3F] + '='); + } + + return parts.join(''); + } + + var base64Js = { + byteLength: byteLength_1, + toByteArray: toByteArray_1, + fromByteArray: fromByteArray_1 + }; + + /*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh */ + var read = function read(buffer, offset, isLE, mLen, nBytes) { + var e, m; + var eLen = nBytes * 8 - mLen - 1; + var eMax = (1 << eLen) - 1; + var eBias = eMax >> 1; + var nBits = -7; + var i = isLE ? nBytes - 1 : 0; + var d = isLE ? -1 : 1; + var s = buffer[offset + i]; + i += d; + e = s & (1 << -nBits) - 1; + s >>= -nBits; + nBits += eLen; + + for (; nBits > 0; e = e * 256 + buffer[offset + i], i += d, nBits -= 8) {} + + m = e & (1 << -nBits) - 1; + e >>= -nBits; + nBits += mLen; + + for (; nBits > 0; m = m * 256 + buffer[offset + i], i += d, nBits -= 8) {} + + if (e === 0) { + e = 1 - eBias; + } else if (e === eMax) { + return m ? NaN : (s ? -1 : 1) * Infinity; + } else { + m = m + Math.pow(2, mLen); + e = e - eBias; + } + + return (s ? -1 : 1) * m * Math.pow(2, e - mLen); + }; + + var write = function write(buffer, value, offset, isLE, mLen, nBytes) { + var e, m, c; + var eLen = nBytes * 8 - mLen - 1; + var eMax = (1 << eLen) - 1; + var eBias = eMax >> 1; + var rt = mLen === 23 ? Math.pow(2, -24) - Math.pow(2, -77) : 0; + var i = isLE ? 0 : nBytes - 1; + var d = isLE ? 1 : -1; + var s = value < 0 || value === 0 && 1 / value < 0 ? 1 : 0; + value = Math.abs(value); + + if (isNaN(value) || value === Infinity) { + m = isNaN(value) ? 1 : 0; + e = eMax; + } else { + e = Math.floor(Math.log(value) / Math.LN2); + + if (value * (c = Math.pow(2, -e)) < 1) { + e--; + c *= 2; + } + + if (e + eBias >= 1) { + value += rt / c; + } else { + value += rt * Math.pow(2, 1 - eBias); + } + + if (value * c >= 2) { + e++; + c /= 2; + } + + if (e + eBias >= eMax) { + m = 0; + e = eMax; + } else if (e + eBias >= 1) { + m = (value * c - 1) * Math.pow(2, mLen); + e = e + eBias; + } else { + m = value * Math.pow(2, eBias - 1) * Math.pow(2, mLen); + e = 0; + } + } + + for (; mLen >= 8; buffer[offset + i] = m & 0xff, i += d, m /= 256, mLen -= 8) {} + + e = e << mLen | m; + eLen += mLen; + + for (; eLen > 0; buffer[offset + i] = e & 0xff, i += d, e /= 256, eLen -= 8) {} + + buffer[offset + i - d] |= s * 128; + }; + + var ieee754 = { + read: read, + write: write + }; + + var buffer$1 = createCommonjsModule(function (module, exports) { + + var customInspectSymbol = typeof Symbol === 'function' && typeof Symbol['for'] === 'function' ? // eslint-disable-line dot-notation + Symbol['for']('nodejs.util.inspect.custom') // eslint-disable-line dot-notation + : null; + exports.Buffer = Buffer; + exports.SlowBuffer = SlowBuffer; + exports.INSPECT_MAX_BYTES = 50; + var K_MAX_LENGTH = 0x7fffffff; + exports.kMaxLength = K_MAX_LENGTH; + /** + * If `Buffer.TYPED_ARRAY_SUPPORT`: + * === true Use Uint8Array implementation (fastest) + * === false Print warning and recommend using `buffer` v4.x which has an Object + * implementation (most compatible, even IE6) + * + * Browsers that support typed arrays are IE 10+, Firefox 4+, Chrome 7+, Safari 5.1+, + * Opera 11.6+, iOS 4.2+. + * + * We report that the browser does not support typed arrays if the are not subclassable + * using __proto__. Firefox 4-29 lacks support for adding new properties to `Uint8Array` + * (See: https://bugzilla.mozilla.org/show_bug.cgi?id=695438). IE 10 lacks support + * for __proto__ and has a buggy typed array implementation. + */ + + Buffer.TYPED_ARRAY_SUPPORT = typedArraySupport(); + + if (!Buffer.TYPED_ARRAY_SUPPORT && typeof console !== 'undefined' && typeof console.error === 'function') { + console.error('This browser lacks typed array (Uint8Array) support which is required by ' + '`buffer` v5.x. Use `buffer` v4.x if you require old browser support.'); + } + + function typedArraySupport() { + // Can typed array instances can be augmented? + try { + var arr = new Uint8Array(1); + var proto = { + foo: function foo() { + return 42; + } + }; + Object.setPrototypeOf(proto, Uint8Array.prototype); + Object.setPrototypeOf(arr, proto); + return arr.foo() === 42; + } catch (e) { + return false; + } + } + + Object.defineProperty(Buffer.prototype, 'parent', { + enumerable: true, + get: function get() { + if (!Buffer.isBuffer(this)) return undefined; + return this.buffer; + } + }); + Object.defineProperty(Buffer.prototype, 'offset', { + enumerable: true, + get: function get() { + if (!Buffer.isBuffer(this)) return undefined; + return this.byteOffset; + } + }); + + function createBuffer(length) { + if (length > K_MAX_LENGTH) { + throw new RangeError('The value "' + length + '" is invalid for option "size"'); + } // Return an augmented `Uint8Array` instance + + + var buf = new Uint8Array(length); + Object.setPrototypeOf(buf, Buffer.prototype); + return buf; + } + /** + * The Buffer constructor returns instances of `Uint8Array` that have their + * prototype changed to `Buffer.prototype`. Furthermore, `Buffer` is a subclass of + * `Uint8Array`, so the returned instances will have all the node `Buffer` methods + * and the `Uint8Array` methods. Square bracket notation works as expected -- it + * returns a single octet. + * + * The `Uint8Array` prototype remains unmodified. + */ + + + function Buffer(arg, encodingOrOffset, length) { + // Common case. + if (typeof arg === 'number') { + if (typeof encodingOrOffset === 'string') { + throw new TypeError('The "string" argument must be of type string. Received type number'); + } + + return allocUnsafe(arg); + } + + return from(arg, encodingOrOffset, length); + } + + Buffer.poolSize = 8192; // not used by this implementation + + function from(value, encodingOrOffset, length) { + if (typeof value === 'string') { + return fromString(value, encodingOrOffset); + } + + if (ArrayBuffer.isView(value)) { + return fromArrayView(value); + } + + if (value == null) { + throw new TypeError('The first argument must be one of type string, Buffer, ArrayBuffer, Array, ' + 'or Array-like Object. Received type ' + babelHelpers["typeof"](value)); + } + + if (isInstance(value, ArrayBuffer) || value && isInstance(value.buffer, ArrayBuffer)) { + return fromArrayBuffer(value, encodingOrOffset, length); + } + + if (typeof SharedArrayBuffer !== 'undefined' && (isInstance(value, SharedArrayBuffer) || value && isInstance(value.buffer, SharedArrayBuffer))) { + return fromArrayBuffer(value, encodingOrOffset, length); + } + + if (typeof value === 'number') { + throw new TypeError('The "value" argument must not be of type number. Received type number'); + } + + var valueOf = value.valueOf && value.valueOf(); + + if (valueOf != null && valueOf !== value) { + return Buffer.from(valueOf, encodingOrOffset, length); + } + + var b = fromObject(value); + if (b) return b; + + if (typeof Symbol !== 'undefined' && Symbol.toPrimitive != null && typeof value[Symbol.toPrimitive] === 'function') { + return Buffer.from(value[Symbol.toPrimitive]('string'), encodingOrOffset, length); + } + + throw new TypeError('The first argument must be one of type string, Buffer, ArrayBuffer, Array, ' + 'or Array-like Object. Received type ' + babelHelpers["typeof"](value)); + } + /** + * Functionally equivalent to Buffer(arg, encoding) but throws a TypeError + * if value is a number. + * Buffer.from(str[, encoding]) + * Buffer.from(array) + * Buffer.from(buffer) + * Buffer.from(arrayBuffer[, byteOffset[, length]]) + **/ + + + Buffer.from = function (value, encodingOrOffset, length) { + return from(value, encodingOrOffset, length); + }; // Note: Change prototype *after* Buffer.from is defined to workaround Chrome bug: + // https://github.com/feross/buffer/pull/148 + + + Object.setPrototypeOf(Buffer.prototype, Uint8Array.prototype); + Object.setPrototypeOf(Buffer, Uint8Array); + + function assertSize(size) { + if (typeof size !== 'number') { + throw new TypeError('"size" argument must be of type number'); + } else if (size < 0) { + throw new RangeError('The value "' + size + '" is invalid for option "size"'); + } + } + + function alloc(size, fill, encoding) { + assertSize(size); + + if (size <= 0) { + return createBuffer(size); + } + + if (fill !== undefined) { + // Only pay attention to encoding if it's a string. This + // prevents accidentally sending in a number that would + // be interpreted as a start offset. + return typeof encoding === 'string' ? createBuffer(size).fill(fill, encoding) : createBuffer(size).fill(fill); + } + + return createBuffer(size); + } + /** + * Creates a new filled Buffer instance. + * alloc(size[, fill[, encoding]]) + **/ + + + Buffer.alloc = function (size, fill, encoding) { + return alloc(size, fill, encoding); + }; + + function allocUnsafe(size) { + assertSize(size); + return createBuffer(size < 0 ? 0 : checked(size) | 0); + } + /** + * Equivalent to Buffer(num), by default creates a non-zero-filled Buffer instance. + * */ + + + Buffer.allocUnsafe = function (size) { + return allocUnsafe(size); + }; + /** + * Equivalent to SlowBuffer(num), by default creates a non-zero-filled Buffer instance. + */ + + + Buffer.allocUnsafeSlow = function (size) { + return allocUnsafe(size); + }; + + function fromString(string, encoding) { + if (typeof encoding !== 'string' || encoding === '') { + encoding = 'utf8'; + } + + if (!Buffer.isEncoding(encoding)) { + throw new TypeError('Unknown encoding: ' + encoding); + } + + var length = byteLength(string, encoding) | 0; + var buf = createBuffer(length); + var actual = buf.write(string, encoding); + + if (actual !== length) { + // Writing a hex string, for example, that contains invalid characters will + // cause everything after the first invalid character to be ignored. (e.g. + // 'abxxcd' will be treated as 'ab') + buf = buf.slice(0, actual); + } + + return buf; + } + + function fromArrayLike(array) { + var length = array.length < 0 ? 0 : checked(array.length) | 0; + var buf = createBuffer(length); + + for (var i = 0; i < length; i += 1) { + buf[i] = array[i] & 255; + } + + return buf; + } + + function fromArrayView(arrayView) { + if (isInstance(arrayView, Uint8Array)) { + var copy = new Uint8Array(arrayView); + return fromArrayBuffer(copy.buffer, copy.byteOffset, copy.byteLength); + } + + return fromArrayLike(arrayView); + } + + function fromArrayBuffer(array, byteOffset, length) { + if (byteOffset < 0 || array.byteLength < byteOffset) { + throw new RangeError('"offset" is outside of buffer bounds'); + } + + if (array.byteLength < byteOffset + (length || 0)) { + throw new RangeError('"length" is outside of buffer bounds'); + } + + var buf; + + if (byteOffset === undefined && length === undefined) { + buf = new Uint8Array(array); + } else if (length === undefined) { + buf = new Uint8Array(array, byteOffset); + } else { + buf = new Uint8Array(array, byteOffset, length); + } // Return an augmented `Uint8Array` instance + + + Object.setPrototypeOf(buf, Buffer.prototype); + return buf; + } + + function fromObject(obj) { + if (Buffer.isBuffer(obj)) { + var len = checked(obj.length) | 0; + var buf = createBuffer(len); + + if (buf.length === 0) { + return buf; + } + + obj.copy(buf, 0, 0, len); + return buf; + } + + if (obj.length !== undefined) { + if (typeof obj.length !== 'number' || numberIsNaN(obj.length)) { + return createBuffer(0); + } + + return fromArrayLike(obj); + } + + if (obj.type === 'Buffer' && Array.isArray(obj.data)) { + return fromArrayLike(obj.data); + } + } + + function checked(length) { + // Note: cannot use `length < K_MAX_LENGTH` here because that fails when + // length is NaN (which is otherwise coerced to zero.) + if (length >= K_MAX_LENGTH) { + throw new RangeError('Attempt to allocate Buffer larger than maximum ' + 'size: 0x' + K_MAX_LENGTH.toString(16) + ' bytes'); + } + + return length | 0; + } + + function SlowBuffer(length) { + if (+length != length) { + // eslint-disable-line eqeqeq + length = 0; + } + + return Buffer.alloc(+length); + } + + Buffer.isBuffer = function isBuffer(b) { + return b != null && b._isBuffer === true && b !== Buffer.prototype; // so Buffer.isBuffer(Buffer.prototype) will be false + }; + + Buffer.compare = function compare(a, b) { + if (isInstance(a, Uint8Array)) a = Buffer.from(a, a.offset, a.byteLength); + if (isInstance(b, Uint8Array)) b = Buffer.from(b, b.offset, b.byteLength); + + if (!Buffer.isBuffer(a) || !Buffer.isBuffer(b)) { + throw new TypeError('The "buf1", "buf2" arguments must be one of type Buffer or Uint8Array'); + } + + if (a === b) return 0; + var x = a.length; + var y = b.length; + + for (var i = 0, len = Math.min(x, y); i < len; ++i) { + if (a[i] !== b[i]) { + x = a[i]; + y = b[i]; + break; + } + } + + if (x < y) return -1; + if (y < x) return 1; + return 0; + }; + + Buffer.isEncoding = function isEncoding(encoding) { + switch (String(encoding).toLowerCase()) { + case 'hex': + case 'utf8': + case 'utf-8': + case 'ascii': + case 'latin1': + case 'binary': + case 'base64': + case 'ucs2': + case 'ucs-2': + case 'utf16le': + case 'utf-16le': + return true; + + default: + return false; + } + }; + + Buffer.concat = function concat(list, length) { + if (!Array.isArray(list)) { + throw new TypeError('"list" argument must be an Array of Buffers'); + } + + if (list.length === 0) { + return Buffer.alloc(0); + } + + var i; + + if (length === undefined) { + length = 0; + + for (i = 0; i < list.length; ++i) { + length += list[i].length; + } + } + + var buffer = Buffer.allocUnsafe(length); + var pos = 0; + + for (i = 0; i < list.length; ++i) { + var buf = list[i]; + + if (isInstance(buf, Uint8Array)) { + if (pos + buf.length > buffer.length) { + Buffer.from(buf).copy(buffer, pos); + } else { + Uint8Array.prototype.set.call(buffer, buf, pos); + } + } else if (!Buffer.isBuffer(buf)) { + throw new TypeError('"list" argument must be an Array of Buffers'); + } else { + buf.copy(buffer, pos); + } + + pos += buf.length; + } + + return buffer; + }; + + function byteLength(string, encoding) { + if (Buffer.isBuffer(string)) { + return string.length; + } + + if (ArrayBuffer.isView(string) || isInstance(string, ArrayBuffer)) { + return string.byteLength; + } + + if (typeof string !== 'string') { + throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. ' + 'Received type ' + babelHelpers["typeof"](string)); + } + + var len = string.length; + var mustMatch = arguments.length > 2 && arguments[2] === true; + if (!mustMatch && len === 0) return 0; // Use a for loop to avoid recursion + + var loweredCase = false; + + for (;;) { + switch (encoding) { + case 'ascii': + case 'latin1': + case 'binary': + return len; + + case 'utf8': + case 'utf-8': + return utf8ToBytes(string).length; + + case 'ucs2': + case 'ucs-2': + case 'utf16le': + case 'utf-16le': + return len * 2; + + case 'hex': + return len >>> 1; + + case 'base64': + return base64ToBytes(string).length; + + default: + if (loweredCase) { + return mustMatch ? -1 : utf8ToBytes(string).length; // assume utf8 + } + + encoding = ('' + encoding).toLowerCase(); + loweredCase = true; + } + } + } + + Buffer.byteLength = byteLength; + + function slowToString(encoding, start, end) { + var loweredCase = false; // No need to verify that "this.length <= MAX_UINT32" since it's a read-only + // property of a typed array. + // This behaves neither like String nor Uint8Array in that we set start/end + // to their upper/lower bounds if the value passed is out of range. + // undefined is handled specially as per ECMA-262 6th Edition, + // Section 13.3.3.7 Runtime Semantics: KeyedBindingInitialization. + + if (start === undefined || start < 0) { + start = 0; + } // Return early if start > this.length. Done here to prevent potential uint32 + // coercion fail below. + + + if (start > this.length) { + return ''; + } + + if (end === undefined || end > this.length) { + end = this.length; + } + + if (end <= 0) { + return ''; + } // Force coercion to uint32. This will also coerce falsey/NaN values to 0. + + + end >>>= 0; + start >>>= 0; + + if (end <= start) { + return ''; + } + + if (!encoding) encoding = 'utf8'; + + while (true) { + switch (encoding) { + case 'hex': + return hexSlice(this, start, end); + + case 'utf8': + case 'utf-8': + return utf8Slice(this, start, end); + + case 'ascii': + return asciiSlice(this, start, end); + + case 'latin1': + case 'binary': + return latin1Slice(this, start, end); + + case 'base64': + return base64Slice(this, start, end); + + case 'ucs2': + case 'ucs-2': + case 'utf16le': + case 'utf-16le': + return utf16leSlice(this, start, end); + + default: + if (loweredCase) throw new TypeError('Unknown encoding: ' + encoding); + encoding = (encoding + '').toLowerCase(); + loweredCase = true; + } + } + } // This property is used by `Buffer.isBuffer` (and the `is-buffer` npm package) + // to detect a Buffer instance. It's not possible to use `instanceof Buffer` + // reliably in a browserify context because there could be multiple different + // copies of the 'buffer' package in use. This method works even for Buffer + // instances that were created from another copy of the `buffer` package. + // See: https://github.com/feross/buffer/issues/154 + + + Buffer.prototype._isBuffer = true; + + function swap(b, n, m) { + var i = b[n]; + b[n] = b[m]; + b[m] = i; + } + + Buffer.prototype.swap16 = function swap16() { + var len = this.length; + + if (len % 2 !== 0) { + throw new RangeError('Buffer size must be a multiple of 16-bits'); + } + + for (var i = 0; i < len; i += 2) { + swap(this, i, i + 1); + } + + return this; + }; + + Buffer.prototype.swap32 = function swap32() { + var len = this.length; + + if (len % 4 !== 0) { + throw new RangeError('Buffer size must be a multiple of 32-bits'); + } + + for (var i = 0; i < len; i += 4) { + swap(this, i, i + 3); + swap(this, i + 1, i + 2); + } + + return this; + }; + + Buffer.prototype.swap64 = function swap64() { + var len = this.length; + + if (len % 8 !== 0) { + throw new RangeError('Buffer size must be a multiple of 64-bits'); + } + + for (var i = 0; i < len; i += 8) { + swap(this, i, i + 7); + swap(this, i + 1, i + 6); + swap(this, i + 2, i + 5); + swap(this, i + 3, i + 4); + } + + return this; + }; + + Buffer.prototype.toString = function toString() { + var length = this.length; + if (length === 0) return ''; + if (arguments.length === 0) return utf8Slice(this, 0, length); + return slowToString.apply(this, arguments); + }; + + Buffer.prototype.toLocaleString = Buffer.prototype.toString; + + Buffer.prototype.equals = function equals(b) { + if (!Buffer.isBuffer(b)) throw new TypeError('Argument must be a Buffer'); + if (this === b) return true; + return Buffer.compare(this, b) === 0; + }; + + Buffer.prototype.inspect = function inspect() { + var str = ''; + var max = exports.INSPECT_MAX_BYTES; + str = this.toString('hex', 0, max).replace(/(.{2})/g, '$1 ').trim(); + if (this.length > max) str += ' ... '; + return ''; + }; + + if (customInspectSymbol) { + Buffer.prototype[customInspectSymbol] = Buffer.prototype.inspect; + } + + Buffer.prototype.compare = function compare(target, start, end, thisStart, thisEnd) { + if (isInstance(target, Uint8Array)) { + target = Buffer.from(target, target.offset, target.byteLength); + } + + if (!Buffer.isBuffer(target)) { + throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. ' + 'Received type ' + babelHelpers["typeof"](target)); + } + + if (start === undefined) { + start = 0; + } + + if (end === undefined) { + end = target ? target.length : 0; + } + + if (thisStart === undefined) { + thisStart = 0; + } + + if (thisEnd === undefined) { + thisEnd = this.length; + } + + if (start < 0 || end > target.length || thisStart < 0 || thisEnd > this.length) { + throw new RangeError('out of range index'); + } + + if (thisStart >= thisEnd && start >= end) { + return 0; + } + + if (thisStart >= thisEnd) { + return -1; + } + + if (start >= end) { + return 1; + } + + start >>>= 0; + end >>>= 0; + thisStart >>>= 0; + thisEnd >>>= 0; + if (this === target) return 0; + var x = thisEnd - thisStart; + var y = end - start; + var len = Math.min(x, y); + var thisCopy = this.slice(thisStart, thisEnd); + var targetCopy = target.slice(start, end); + + for (var i = 0; i < len; ++i) { + if (thisCopy[i] !== targetCopy[i]) { + x = thisCopy[i]; + y = targetCopy[i]; + break; + } + } + + if (x < y) return -1; + if (y < x) return 1; + return 0; + }; // Finds either the first index of `val` in `buffer` at offset >= `byteOffset`, + // OR the last index of `val` in `buffer` at offset <= `byteOffset`. + // + // Arguments: + // - buffer - a Buffer to search + // - val - a string, Buffer, or number + // - byteOffset - an index into `buffer`; will be clamped to an int32 + // - encoding - an optional encoding, relevant is val is a string + // - dir - true for indexOf, false for lastIndexOf + + + function bidirectionalIndexOf(buffer, val, byteOffset, encoding, dir) { + // Empty buffer means no match + if (buffer.length === 0) return -1; // Normalize byteOffset + + if (typeof byteOffset === 'string') { + encoding = byteOffset; + byteOffset = 0; + } else if (byteOffset > 0x7fffffff) { + byteOffset = 0x7fffffff; + } else if (byteOffset < -0x80000000) { + byteOffset = -0x80000000; + } + + byteOffset = +byteOffset; // Coerce to Number. + + if (numberIsNaN(byteOffset)) { + // byteOffset: it it's undefined, null, NaN, "foo", etc, search whole buffer + byteOffset = dir ? 0 : buffer.length - 1; + } // Normalize byteOffset: negative offsets start from the end of the buffer + + + if (byteOffset < 0) byteOffset = buffer.length + byteOffset; + + if (byteOffset >= buffer.length) { + if (dir) return -1;else byteOffset = buffer.length - 1; + } else if (byteOffset < 0) { + if (dir) byteOffset = 0;else return -1; + } // Normalize val + + + if (typeof val === 'string') { + val = Buffer.from(val, encoding); + } // Finally, search either indexOf (if dir is true) or lastIndexOf + + + if (Buffer.isBuffer(val)) { + // Special case: looking for empty string/buffer always fails + if (val.length === 0) { + return -1; + } + + return arrayIndexOf(buffer, val, byteOffset, encoding, dir); + } else if (typeof val === 'number') { + val = val & 0xFF; // Search for a byte value [0-255] + + if (typeof Uint8Array.prototype.indexOf === 'function') { + if (dir) { + return Uint8Array.prototype.indexOf.call(buffer, val, byteOffset); + } else { + return Uint8Array.prototype.lastIndexOf.call(buffer, val, byteOffset); + } + } + + return arrayIndexOf(buffer, [val], byteOffset, encoding, dir); + } + + throw new TypeError('val must be string, number or Buffer'); + } + + function arrayIndexOf(arr, val, byteOffset, encoding, dir) { + var indexSize = 1; + var arrLength = arr.length; + var valLength = val.length; + + if (encoding !== undefined) { + encoding = String(encoding).toLowerCase(); + + if (encoding === 'ucs2' || encoding === 'ucs-2' || encoding === 'utf16le' || encoding === 'utf-16le') { + if (arr.length < 2 || val.length < 2) { + return -1; + } + + indexSize = 2; + arrLength /= 2; + valLength /= 2; + byteOffset /= 2; + } + } + + function read(buf, i) { + if (indexSize === 1) { + return buf[i]; + } else { + return buf.readUInt16BE(i * indexSize); + } + } + + var i; + + if (dir) { + var foundIndex = -1; + + for (i = byteOffset; i < arrLength; i++) { + if (read(arr, i) === read(val, foundIndex === -1 ? 0 : i - foundIndex)) { + if (foundIndex === -1) foundIndex = i; + if (i - foundIndex + 1 === valLength) return foundIndex * indexSize; + } else { + if (foundIndex !== -1) i -= i - foundIndex; + foundIndex = -1; + } + } + } else { + if (byteOffset + valLength > arrLength) byteOffset = arrLength - valLength; + + for (i = byteOffset; i >= 0; i--) { + var found = true; + + for (var j = 0; j < valLength; j++) { + if (read(arr, i + j) !== read(val, j)) { + found = false; + break; + } + } + + if (found) return i; + } + } + + return -1; + } + + Buffer.prototype.includes = function includes(val, byteOffset, encoding) { + return this.indexOf(val, byteOffset, encoding) !== -1; + }; + + Buffer.prototype.indexOf = function indexOf(val, byteOffset, encoding) { + return bidirectionalIndexOf(this, val, byteOffset, encoding, true); + }; + + Buffer.prototype.lastIndexOf = function lastIndexOf(val, byteOffset, encoding) { + return bidirectionalIndexOf(this, val, byteOffset, encoding, false); + }; + + function hexWrite(buf, string, offset, length) { + offset = Number(offset) || 0; + var remaining = buf.length - offset; + + if (!length) { + length = remaining; + } else { + length = Number(length); + + if (length > remaining) { + length = remaining; + } + } + + var strLen = string.length; + + if (length > strLen / 2) { + length = strLen / 2; + } + + for (var i = 0; i < length; ++i) { + var parsed = parseInt(string.substr(i * 2, 2), 16); + if (numberIsNaN(parsed)) return i; + buf[offset + i] = parsed; + } + + return i; + } + + function utf8Write(buf, string, offset, length) { + return blitBuffer(utf8ToBytes(string, buf.length - offset), buf, offset, length); + } + + function asciiWrite(buf, string, offset, length) { + return blitBuffer(asciiToBytes(string), buf, offset, length); + } + + function base64Write(buf, string, offset, length) { + return blitBuffer(base64ToBytes(string), buf, offset, length); + } + + function ucs2Write(buf, string, offset, length) { + return blitBuffer(utf16leToBytes(string, buf.length - offset), buf, offset, length); + } + + Buffer.prototype.write = function write(string, offset, length, encoding) { + // Buffer#write(string) + if (offset === undefined) { + encoding = 'utf8'; + length = this.length; + offset = 0; // Buffer#write(string, encoding) + } else if (length === undefined && typeof offset === 'string') { + encoding = offset; + length = this.length; + offset = 0; // Buffer#write(string, offset[, length][, encoding]) + } else if (isFinite(offset)) { + offset = offset >>> 0; + + if (isFinite(length)) { + length = length >>> 0; + if (encoding === undefined) encoding = 'utf8'; + } else { + encoding = length; + length = undefined; + } + } else { + throw new Error('Buffer.write(string, encoding, offset[, length]) is no longer supported'); + } + + var remaining = this.length - offset; + if (length === undefined || length > remaining) length = remaining; + + if (string.length > 0 && (length < 0 || offset < 0) || offset > this.length) { + throw new RangeError('Attempt to write outside buffer bounds'); + } + + if (!encoding) encoding = 'utf8'; + var loweredCase = false; + + for (;;) { + switch (encoding) { + case 'hex': + return hexWrite(this, string, offset, length); + + case 'utf8': + case 'utf-8': + return utf8Write(this, string, offset, length); + + case 'ascii': + case 'latin1': + case 'binary': + return asciiWrite(this, string, offset, length); + + case 'base64': + // Warning: maxLength not taken into account in base64Write + return base64Write(this, string, offset, length); + + case 'ucs2': + case 'ucs-2': + case 'utf16le': + case 'utf-16le': + return ucs2Write(this, string, offset, length); + + default: + if (loweredCase) throw new TypeError('Unknown encoding: ' + encoding); + encoding = ('' + encoding).toLowerCase(); + loweredCase = true; + } + } + }; + + Buffer.prototype.toJSON = function toJSON() { + return { + type: 'Buffer', + data: Array.prototype.slice.call(this._arr || this, 0) + }; + }; + + function base64Slice(buf, start, end) { + if (start === 0 && end === buf.length) { + return base64Js.fromByteArray(buf); + } else { + return base64Js.fromByteArray(buf.slice(start, end)); + } + } + + function utf8Slice(buf, start, end) { + end = Math.min(buf.length, end); + var res = []; + var i = start; + + while (i < end) { + var firstByte = buf[i]; + var codePoint = null; + var bytesPerSequence = firstByte > 0xEF ? 4 : firstByte > 0xDF ? 3 : firstByte > 0xBF ? 2 : 1; + + if (i + bytesPerSequence <= end) { + var secondByte, thirdByte, fourthByte, tempCodePoint; + + switch (bytesPerSequence) { + case 1: + if (firstByte < 0x80) { + codePoint = firstByte; + } + + break; + + case 2: + secondByte = buf[i + 1]; + + if ((secondByte & 0xC0) === 0x80) { + tempCodePoint = (firstByte & 0x1F) << 0x6 | secondByte & 0x3F; + + if (tempCodePoint > 0x7F) { + codePoint = tempCodePoint; + } + } + + break; + + case 3: + secondByte = buf[i + 1]; + thirdByte = buf[i + 2]; + + if ((secondByte & 0xC0) === 0x80 && (thirdByte & 0xC0) === 0x80) { + tempCodePoint = (firstByte & 0xF) << 0xC | (secondByte & 0x3F) << 0x6 | thirdByte & 0x3F; + + if (tempCodePoint > 0x7FF && (tempCodePoint < 0xD800 || tempCodePoint > 0xDFFF)) { + codePoint = tempCodePoint; + } + } + + break; + + case 4: + secondByte = buf[i + 1]; + thirdByte = buf[i + 2]; + fourthByte = buf[i + 3]; + + if ((secondByte & 0xC0) === 0x80 && (thirdByte & 0xC0) === 0x80 && (fourthByte & 0xC0) === 0x80) { + tempCodePoint = (firstByte & 0xF) << 0x12 | (secondByte & 0x3F) << 0xC | (thirdByte & 0x3F) << 0x6 | fourthByte & 0x3F; + + if (tempCodePoint > 0xFFFF && tempCodePoint < 0x110000) { + codePoint = tempCodePoint; + } + } + + } + } + + if (codePoint === null) { + // we did not generate a valid codePoint so insert a + // replacement char (U+FFFD) and advance only 1 byte + codePoint = 0xFFFD; + bytesPerSequence = 1; + } else if (codePoint > 0xFFFF) { + // encode to utf16 (surrogate pair dance) + codePoint -= 0x10000; + res.push(codePoint >>> 10 & 0x3FF | 0xD800); + codePoint = 0xDC00 | codePoint & 0x3FF; + } + + res.push(codePoint); + i += bytesPerSequence; + } + + return decodeCodePointsArray(res); + } // Based on http://stackoverflow.com/a/22747272/680742, the browser with + // the lowest limit is Chrome, with 0x10000 args. + // We go 1 magnitude less, for safety + + + var MAX_ARGUMENTS_LENGTH = 0x1000; + + function decodeCodePointsArray(codePoints) { + var len = codePoints.length; + + if (len <= MAX_ARGUMENTS_LENGTH) { + return String.fromCharCode.apply(String, codePoints); // avoid extra slice() + } // Decode in chunks to avoid "call stack size exceeded". + + + var res = ''; + var i = 0; + + while (i < len) { + res += String.fromCharCode.apply(String, codePoints.slice(i, i += MAX_ARGUMENTS_LENGTH)); + } + + return res; + } + + function asciiSlice(buf, start, end) { + var ret = ''; + end = Math.min(buf.length, end); + + for (var i = start; i < end; ++i) { + ret += String.fromCharCode(buf[i] & 0x7F); + } + + return ret; + } + + function latin1Slice(buf, start, end) { + var ret = ''; + end = Math.min(buf.length, end); + + for (var i = start; i < end; ++i) { + ret += String.fromCharCode(buf[i]); + } + + return ret; + } + + function hexSlice(buf, start, end) { + var len = buf.length; + if (!start || start < 0) start = 0; + if (!end || end < 0 || end > len) end = len; + var out = ''; + + for (var i = start; i < end; ++i) { + out += hexSliceLookupTable[buf[i]]; + } + + return out; + } + + function utf16leSlice(buf, start, end) { + var bytes = buf.slice(start, end); + var res = ''; // If bytes.length is odd, the last 8 bits must be ignored (same as node.js) + + for (var i = 0; i < bytes.length - 1; i += 2) { + res += String.fromCharCode(bytes[i] + bytes[i + 1] * 256); + } + + return res; + } + + Buffer.prototype.slice = function slice(start, end) { + var len = this.length; + start = ~~start; + end = end === undefined ? len : ~~end; + + if (start < 0) { + start += len; + if (start < 0) start = 0; + } else if (start > len) { + start = len; + } + + if (end < 0) { + end += len; + if (end < 0) end = 0; + } else if (end > len) { + end = len; + } + + if (end < start) end = start; + var newBuf = this.subarray(start, end); // Return an augmented `Uint8Array` instance + + Object.setPrototypeOf(newBuf, Buffer.prototype); + return newBuf; + }; + /* + * Need to make sure that buffer isn't trying to write out of bounds. + */ + + + function checkOffset(offset, ext, length) { + if (offset % 1 !== 0 || offset < 0) throw new RangeError('offset is not uint'); + if (offset + ext > length) throw new RangeError('Trying to access beyond buffer length'); + } + + Buffer.prototype.readUintLE = Buffer.prototype.readUIntLE = function readUIntLE(offset, byteLength, noAssert) { + offset = offset >>> 0; + byteLength = byteLength >>> 0; + if (!noAssert) checkOffset(offset, byteLength, this.length); + var val = this[offset]; + var mul = 1; + var i = 0; + + while (++i < byteLength && (mul *= 0x100)) { + val += this[offset + i] * mul; + } + + return val; + }; + + Buffer.prototype.readUintBE = Buffer.prototype.readUIntBE = function readUIntBE(offset, byteLength, noAssert) { + offset = offset >>> 0; + byteLength = byteLength >>> 0; + + if (!noAssert) { + checkOffset(offset, byteLength, this.length); + } + + var val = this[offset + --byteLength]; + var mul = 1; + + while (byteLength > 0 && (mul *= 0x100)) { + val += this[offset + --byteLength] * mul; + } + + return val; + }; + + Buffer.prototype.readUint8 = Buffer.prototype.readUInt8 = function readUInt8(offset, noAssert) { + offset = offset >>> 0; + if (!noAssert) checkOffset(offset, 1, this.length); + return this[offset]; + }; + + Buffer.prototype.readUint16LE = Buffer.prototype.readUInt16LE = function readUInt16LE(offset, noAssert) { + offset = offset >>> 0; + if (!noAssert) checkOffset(offset, 2, this.length); + return this[offset] | this[offset + 1] << 8; + }; + + Buffer.prototype.readUint16BE = Buffer.prototype.readUInt16BE = function readUInt16BE(offset, noAssert) { + offset = offset >>> 0; + if (!noAssert) checkOffset(offset, 2, this.length); + return this[offset] << 8 | this[offset + 1]; + }; + + Buffer.prototype.readUint32LE = Buffer.prototype.readUInt32LE = function readUInt32LE(offset, noAssert) { + offset = offset >>> 0; + if (!noAssert) checkOffset(offset, 4, this.length); + return (this[offset] | this[offset + 1] << 8 | this[offset + 2] << 16) + this[offset + 3] * 0x1000000; + }; + + Buffer.prototype.readUint32BE = Buffer.prototype.readUInt32BE = function readUInt32BE(offset, noAssert) { + offset = offset >>> 0; + if (!noAssert) checkOffset(offset, 4, this.length); + return this[offset] * 0x1000000 + (this[offset + 1] << 16 | this[offset + 2] << 8 | this[offset + 3]); + }; + + Buffer.prototype.readIntLE = function readIntLE(offset, byteLength, noAssert) { + offset = offset >>> 0; + byteLength = byteLength >>> 0; + if (!noAssert) checkOffset(offset, byteLength, this.length); + var val = this[offset]; + var mul = 1; + var i = 0; + + while (++i < byteLength && (mul *= 0x100)) { + val += this[offset + i] * mul; + } + + mul *= 0x80; + if (val >= mul) val -= Math.pow(2, 8 * byteLength); + return val; + }; + + Buffer.prototype.readIntBE = function readIntBE(offset, byteLength, noAssert) { + offset = offset >>> 0; + byteLength = byteLength >>> 0; + if (!noAssert) checkOffset(offset, byteLength, this.length); + var i = byteLength; + var mul = 1; + var val = this[offset + --i]; + + while (i > 0 && (mul *= 0x100)) { + val += this[offset + --i] * mul; + } + + mul *= 0x80; + if (val >= mul) val -= Math.pow(2, 8 * byteLength); + return val; + }; + + Buffer.prototype.readInt8 = function readInt8(offset, noAssert) { + offset = offset >>> 0; + if (!noAssert) checkOffset(offset, 1, this.length); + if (!(this[offset] & 0x80)) return this[offset]; + return (0xff - this[offset] + 1) * -1; + }; + + Buffer.prototype.readInt16LE = function readInt16LE(offset, noAssert) { + offset = offset >>> 0; + if (!noAssert) checkOffset(offset, 2, this.length); + var val = this[offset] | this[offset + 1] << 8; + return val & 0x8000 ? val | 0xFFFF0000 : val; + }; + + Buffer.prototype.readInt16BE = function readInt16BE(offset, noAssert) { + offset = offset >>> 0; + if (!noAssert) checkOffset(offset, 2, this.length); + var val = this[offset + 1] | this[offset] << 8; + return val & 0x8000 ? val | 0xFFFF0000 : val; + }; + + Buffer.prototype.readInt32LE = function readInt32LE(offset, noAssert) { + offset = offset >>> 0; + if (!noAssert) checkOffset(offset, 4, this.length); + return this[offset] | this[offset + 1] << 8 | this[offset + 2] << 16 | this[offset + 3] << 24; + }; + + Buffer.prototype.readInt32BE = function readInt32BE(offset, noAssert) { + offset = offset >>> 0; + if (!noAssert) checkOffset(offset, 4, this.length); + return this[offset] << 24 | this[offset + 1] << 16 | this[offset + 2] << 8 | this[offset + 3]; + }; + + Buffer.prototype.readFloatLE = function readFloatLE(offset, noAssert) { + offset = offset >>> 0; + if (!noAssert) checkOffset(offset, 4, this.length); + return ieee754.read(this, offset, true, 23, 4); + }; + + Buffer.prototype.readFloatBE = function readFloatBE(offset, noAssert) { + offset = offset >>> 0; + if (!noAssert) checkOffset(offset, 4, this.length); + return ieee754.read(this, offset, false, 23, 4); + }; + + Buffer.prototype.readDoubleLE = function readDoubleLE(offset, noAssert) { + offset = offset >>> 0; + if (!noAssert) checkOffset(offset, 8, this.length); + return ieee754.read(this, offset, true, 52, 8); + }; + + Buffer.prototype.readDoubleBE = function readDoubleBE(offset, noAssert) { + offset = offset >>> 0; + if (!noAssert) checkOffset(offset, 8, this.length); + return ieee754.read(this, offset, false, 52, 8); + }; + + function checkInt(buf, value, offset, ext, max, min) { + if (!Buffer.isBuffer(buf)) throw new TypeError('"buffer" argument must be a Buffer instance'); + if (value > max || value < min) throw new RangeError('"value" argument is out of bounds'); + if (offset + ext > buf.length) throw new RangeError('Index out of range'); + } + + Buffer.prototype.writeUintLE = Buffer.prototype.writeUIntLE = function writeUIntLE(value, offset, byteLength, noAssert) { + value = +value; + offset = offset >>> 0; + byteLength = byteLength >>> 0; + + if (!noAssert) { + var maxBytes = Math.pow(2, 8 * byteLength) - 1; + checkInt(this, value, offset, byteLength, maxBytes, 0); + } + + var mul = 1; + var i = 0; + this[offset] = value & 0xFF; + + while (++i < byteLength && (mul *= 0x100)) { + this[offset + i] = value / mul & 0xFF; + } + + return offset + byteLength; + }; + + Buffer.prototype.writeUintBE = Buffer.prototype.writeUIntBE = function writeUIntBE(value, offset, byteLength, noAssert) { + value = +value; + offset = offset >>> 0; + byteLength = byteLength >>> 0; + + if (!noAssert) { + var maxBytes = Math.pow(2, 8 * byteLength) - 1; + checkInt(this, value, offset, byteLength, maxBytes, 0); + } + + var i = byteLength - 1; + var mul = 1; + this[offset + i] = value & 0xFF; + + while (--i >= 0 && (mul *= 0x100)) { + this[offset + i] = value / mul & 0xFF; + } + + return offset + byteLength; + }; + + Buffer.prototype.writeUint8 = Buffer.prototype.writeUInt8 = function writeUInt8(value, offset, noAssert) { + value = +value; + offset = offset >>> 0; + if (!noAssert) checkInt(this, value, offset, 1, 0xff, 0); + this[offset] = value & 0xff; + return offset + 1; + }; + + Buffer.prototype.writeUint16LE = Buffer.prototype.writeUInt16LE = function writeUInt16LE(value, offset, noAssert) { + value = +value; + offset = offset >>> 0; + if (!noAssert) checkInt(this, value, offset, 2, 0xffff, 0); + this[offset] = value & 0xff; + this[offset + 1] = value >>> 8; + return offset + 2; + }; + + Buffer.prototype.writeUint16BE = Buffer.prototype.writeUInt16BE = function writeUInt16BE(value, offset, noAssert) { + value = +value; + offset = offset >>> 0; + if (!noAssert) checkInt(this, value, offset, 2, 0xffff, 0); + this[offset] = value >>> 8; + this[offset + 1] = value & 0xff; + return offset + 2; + }; + + Buffer.prototype.writeUint32LE = Buffer.prototype.writeUInt32LE = function writeUInt32LE(value, offset, noAssert) { + value = +value; + offset = offset >>> 0; + if (!noAssert) checkInt(this, value, offset, 4, 0xffffffff, 0); + this[offset + 3] = value >>> 24; + this[offset + 2] = value >>> 16; + this[offset + 1] = value >>> 8; + this[offset] = value & 0xff; + return offset + 4; + }; + + Buffer.prototype.writeUint32BE = Buffer.prototype.writeUInt32BE = function writeUInt32BE(value, offset, noAssert) { + value = +value; + offset = offset >>> 0; + if (!noAssert) checkInt(this, value, offset, 4, 0xffffffff, 0); + this[offset] = value >>> 24; + this[offset + 1] = value >>> 16; + this[offset + 2] = value >>> 8; + this[offset + 3] = value & 0xff; + return offset + 4; + }; + + Buffer.prototype.writeIntLE = function writeIntLE(value, offset, byteLength, noAssert) { + value = +value; + offset = offset >>> 0; + + if (!noAssert) { + var limit = Math.pow(2, 8 * byteLength - 1); + checkInt(this, value, offset, byteLength, limit - 1, -limit); + } + + var i = 0; + var mul = 1; + var sub = 0; + this[offset] = value & 0xFF; + + while (++i < byteLength && (mul *= 0x100)) { + if (value < 0 && sub === 0 && this[offset + i - 1] !== 0) { + sub = 1; + } + + this[offset + i] = (value / mul >> 0) - sub & 0xFF; + } + + return offset + byteLength; + }; + + Buffer.prototype.writeIntBE = function writeIntBE(value, offset, byteLength, noAssert) { + value = +value; + offset = offset >>> 0; + + if (!noAssert) { + var limit = Math.pow(2, 8 * byteLength - 1); + checkInt(this, value, offset, byteLength, limit - 1, -limit); + } + + var i = byteLength - 1; + var mul = 1; + var sub = 0; + this[offset + i] = value & 0xFF; + + while (--i >= 0 && (mul *= 0x100)) { + if (value < 0 && sub === 0 && this[offset + i + 1] !== 0) { + sub = 1; + } + + this[offset + i] = (value / mul >> 0) - sub & 0xFF; + } + + return offset + byteLength; + }; + + Buffer.prototype.writeInt8 = function writeInt8(value, offset, noAssert) { + value = +value; + offset = offset >>> 0; + if (!noAssert) checkInt(this, value, offset, 1, 0x7f, -0x80); + if (value < 0) value = 0xff + value + 1; + this[offset] = value & 0xff; + return offset + 1; + }; + + Buffer.prototype.writeInt16LE = function writeInt16LE(value, offset, noAssert) { + value = +value; + offset = offset >>> 0; + if (!noAssert) checkInt(this, value, offset, 2, 0x7fff, -0x8000); + this[offset] = value & 0xff; + this[offset + 1] = value >>> 8; + return offset + 2; + }; + + Buffer.prototype.writeInt16BE = function writeInt16BE(value, offset, noAssert) { + value = +value; + offset = offset >>> 0; + if (!noAssert) checkInt(this, value, offset, 2, 0x7fff, -0x8000); + this[offset] = value >>> 8; + this[offset + 1] = value & 0xff; + return offset + 2; + }; + + Buffer.prototype.writeInt32LE = function writeInt32LE(value, offset, noAssert) { + value = +value; + offset = offset >>> 0; + if (!noAssert) checkInt(this, value, offset, 4, 0x7fffffff, -0x80000000); + this[offset] = value & 0xff; + this[offset + 1] = value >>> 8; + this[offset + 2] = value >>> 16; + this[offset + 3] = value >>> 24; + return offset + 4; + }; + + Buffer.prototype.writeInt32BE = function writeInt32BE(value, offset, noAssert) { + value = +value; + offset = offset >>> 0; + if (!noAssert) checkInt(this, value, offset, 4, 0x7fffffff, -0x80000000); + if (value < 0) value = 0xffffffff + value + 1; + this[offset] = value >>> 24; + this[offset + 1] = value >>> 16; + this[offset + 2] = value >>> 8; + this[offset + 3] = value & 0xff; + return offset + 4; + }; + + function checkIEEE754(buf, value, offset, ext, max, min) { + if (offset + ext > buf.length) throw new RangeError('Index out of range'); + if (offset < 0) throw new RangeError('Index out of range'); + } + + function writeFloat(buf, value, offset, littleEndian, noAssert) { + value = +value; + offset = offset >>> 0; + + if (!noAssert) { + checkIEEE754(buf, value, offset, 4); + } + + ieee754.write(buf, value, offset, littleEndian, 23, 4); + return offset + 4; + } + + Buffer.prototype.writeFloatLE = function writeFloatLE(value, offset, noAssert) { + return writeFloat(this, value, offset, true, noAssert); + }; + + Buffer.prototype.writeFloatBE = function writeFloatBE(value, offset, noAssert) { + return writeFloat(this, value, offset, false, noAssert); + }; + + function writeDouble(buf, value, offset, littleEndian, noAssert) { + value = +value; + offset = offset >>> 0; + + if (!noAssert) { + checkIEEE754(buf, value, offset, 8); + } + + ieee754.write(buf, value, offset, littleEndian, 52, 8); + return offset + 8; + } + + Buffer.prototype.writeDoubleLE = function writeDoubleLE(value, offset, noAssert) { + return writeDouble(this, value, offset, true, noAssert); + }; + + Buffer.prototype.writeDoubleBE = function writeDoubleBE(value, offset, noAssert) { + return writeDouble(this, value, offset, false, noAssert); + }; // copy(targetBuffer, targetStart=0, sourceStart=0, sourceEnd=buffer.length) + + + Buffer.prototype.copy = function copy(target, targetStart, start, end) { + if (!Buffer.isBuffer(target)) throw new TypeError('argument should be a Buffer'); + if (!start) start = 0; + if (!end && end !== 0) end = this.length; + if (targetStart >= target.length) targetStart = target.length; + if (!targetStart) targetStart = 0; + if (end > 0 && end < start) end = start; // Copy 0 bytes; we're done + + if (end === start) return 0; + if (target.length === 0 || this.length === 0) return 0; // Fatal error conditions + + if (targetStart < 0) { + throw new RangeError('targetStart out of bounds'); + } + + if (start < 0 || start >= this.length) throw new RangeError('Index out of range'); + if (end < 0) throw new RangeError('sourceEnd out of bounds'); // Are we oob? + + if (end > this.length) end = this.length; + + if (target.length - targetStart < end - start) { + end = target.length - targetStart + start; + } + + var len = end - start; + + if (this === target && typeof Uint8Array.prototype.copyWithin === 'function') { + // Use built-in when available, missing from IE11 + this.copyWithin(targetStart, start, end); + } else { + Uint8Array.prototype.set.call(target, this.subarray(start, end), targetStart); + } + + return len; + }; // Usage: + // buffer.fill(number[, offset[, end]]) + // buffer.fill(buffer[, offset[, end]]) + // buffer.fill(string[, offset[, end]][, encoding]) + + + Buffer.prototype.fill = function fill(val, start, end, encoding) { + // Handle string cases: + if (typeof val === 'string') { + if (typeof start === 'string') { + encoding = start; + start = 0; + end = this.length; + } else if (typeof end === 'string') { + encoding = end; + end = this.length; + } + + if (encoding !== undefined && typeof encoding !== 'string') { + throw new TypeError('encoding must be a string'); + } + + if (typeof encoding === 'string' && !Buffer.isEncoding(encoding)) { + throw new TypeError('Unknown encoding: ' + encoding); + } + + if (val.length === 1) { + var code = val.charCodeAt(0); + + if (encoding === 'utf8' && code < 128 || encoding === 'latin1') { + // Fast path: If `val` fits into a single byte, use that numeric value. + val = code; + } + } + } else if (typeof val === 'number') { + val = val & 255; + } else if (typeof val === 'boolean') { + val = Number(val); + } // Invalid ranges are not set to a default, so can range check early. + + + if (start < 0 || this.length < start || this.length < end) { + throw new RangeError('Out of range index'); + } + + if (end <= start) { + return this; + } + + start = start >>> 0; + end = end === undefined ? this.length : end >>> 0; + if (!val) val = 0; + var i; + + if (typeof val === 'number') { + for (i = start; i < end; ++i) { + this[i] = val; + } + } else { + var bytes = Buffer.isBuffer(val) ? val : Buffer.from(val, encoding); + var len = bytes.length; + + if (len === 0) { + throw new TypeError('The value "' + val + '" is invalid for argument "value"'); + } + + for (i = 0; i < end - start; ++i) { + this[i + start] = bytes[i % len]; + } + } + + return this; + }; // HELPER FUNCTIONS + // ================ + + + var INVALID_BASE64_RE = /[^+/0-9A-Za-z-_]/g; + + function base64clean(str) { + // Node takes equal signs as end of the Base64 encoding + str = str.split('=')[0]; // Node strips out invalid characters like \n and \t from the string, base64-js does not + + str = str.trim().replace(INVALID_BASE64_RE, ''); // Node converts strings with length < 2 to '' + + if (str.length < 2) return ''; // Node allows for non-padded base64 strings (missing trailing ===), base64-js does not + + while (str.length % 4 !== 0) { + str = str + '='; + } + + return str; + } + + function utf8ToBytes(string, units) { + units = units || Infinity; + var codePoint; + var length = string.length; + var leadSurrogate = null; + var bytes = []; + + for (var i = 0; i < length; ++i) { + codePoint = string.charCodeAt(i); // is surrogate component + + if (codePoint > 0xD7FF && codePoint < 0xE000) { + // last char was a lead + if (!leadSurrogate) { + // no lead yet + if (codePoint > 0xDBFF) { + // unexpected trail + if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD); + continue; + } else if (i + 1 === length) { + // unpaired lead + if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD); + continue; + } // valid lead + + + leadSurrogate = codePoint; + continue; + } // 2 leads in a row + + + if (codePoint < 0xDC00) { + if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD); + leadSurrogate = codePoint; + continue; + } // valid surrogate pair + + + codePoint = (leadSurrogate - 0xD800 << 10 | codePoint - 0xDC00) + 0x10000; + } else if (leadSurrogate) { + // valid bmp char, but last char was a lead + if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD); + } + + leadSurrogate = null; // encode utf8 + + if (codePoint < 0x80) { + if ((units -= 1) < 0) break; + bytes.push(codePoint); + } else if (codePoint < 0x800) { + if ((units -= 2) < 0) break; + bytes.push(codePoint >> 0x6 | 0xC0, codePoint & 0x3F | 0x80); + } else if (codePoint < 0x10000) { + if ((units -= 3) < 0) break; + bytes.push(codePoint >> 0xC | 0xE0, codePoint >> 0x6 & 0x3F | 0x80, codePoint & 0x3F | 0x80); + } else if (codePoint < 0x110000) { + if ((units -= 4) < 0) break; + bytes.push(codePoint >> 0x12 | 0xF0, codePoint >> 0xC & 0x3F | 0x80, codePoint >> 0x6 & 0x3F | 0x80, codePoint & 0x3F | 0x80); + } else { + throw new Error('Invalid code point'); + } + } + + return bytes; + } + + function asciiToBytes(str) { + var byteArray = []; + + for (var i = 0; i < str.length; ++i) { + // Node's code seems to be doing this and not & 0x7F.. + byteArray.push(str.charCodeAt(i) & 0xFF); + } + + return byteArray; + } + + function utf16leToBytes(str, units) { + var c, hi, lo; + var byteArray = []; + + for (var i = 0; i < str.length; ++i) { + if ((units -= 2) < 0) break; + c = str.charCodeAt(i); + hi = c >> 8; + lo = c % 256; + byteArray.push(lo); + byteArray.push(hi); + } + + return byteArray; + } + + function base64ToBytes(str) { + return base64Js.toByteArray(base64clean(str)); + } + + function blitBuffer(src, dst, offset, length) { + for (var i = 0; i < length; ++i) { + if (i + offset >= dst.length || i >= src.length) break; + dst[i + offset] = src[i]; + } + + return i; + } // ArrayBuffer or Uint8Array objects from other contexts (i.e. iframes) do not pass + // the `instanceof` check but they should be treated as of that type. + // See: https://github.com/feross/buffer/issues/166 + + + function isInstance(obj, type) { + return obj instanceof type || obj != null && obj.constructor != null && obj.constructor.name != null && obj.constructor.name === type.name; + } + + function numberIsNaN(obj) { + // For IE11 support + return obj !== obj; // eslint-disable-line no-self-compare + } // Create lookup table for `toString('hex')` + // See: https://github.com/feross/buffer/issues/219 + + + var hexSliceLookupTable = function () { + var alphabet = '0123456789abcdef'; + var table = new Array(256); + + for (var i = 0; i < 16; ++i) { + var i16 = i * 16; + + for (var j = 0; j < 16; ++j) { + table[i16 + j] = alphabet[i] + alphabet[j]; + } + } + + return table; + }(); + }); + var buffer_1 = buffer$1.Buffer; + buffer$1.SlowBuffer; + buffer$1.INSPECT_MAX_BYTES; + buffer$1.kMaxLength; + + /*! ***************************************************************************** + Copyright (c) Microsoft Corporation. + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH + REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, + INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR + OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + PERFORMANCE OF THIS SOFTWARE. + ***************************************************************************** */ + + /* global Reflect, Promise */ + var _extendStatics = function extendStatics(d, b) { + _extendStatics = Object.setPrototypeOf || { + __proto__: [] + } instanceof Array && function (d, b) { + d.__proto__ = b; + } || function (d, b) { + for (var p in b) { + if (b.hasOwnProperty(p)) d[p] = b[p]; + } + }; + + return _extendStatics(d, b); + }; + + function __extends(d, b) { + _extendStatics(d, b); + + function __() { + this.constructor = d; + } + + d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); + } + + var _assign = function __assign() { + _assign = Object.assign || function __assign(t) { + for (var s, i = 1, n = arguments.length; i < n; i++) { + s = arguments[i]; + + for (var p in s) { + if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p]; + } + } + + return t; + }; + + return _assign.apply(this, arguments); + }; + + /** @public */ + var BSONError = /** @class */ (function (_super) { + __extends(BSONError, _super); + function BSONError(message) { + var _this = _super.call(this, message) || this; + Object.setPrototypeOf(_this, BSONError.prototype); + return _this; + } + Object.defineProperty(BSONError.prototype, "name", { + get: function () { + return 'BSONError'; + }, + enumerable: false, + configurable: true + }); + return BSONError; + }(Error)); + /** @public */ + var BSONTypeError = /** @class */ (function (_super) { + __extends(BSONTypeError, _super); + function BSONTypeError(message) { + var _this = _super.call(this, message) || this; + Object.setPrototypeOf(_this, BSONTypeError.prototype); + return _this; + } + Object.defineProperty(BSONTypeError.prototype, "name", { + get: function () { + return 'BSONTypeError'; + }, + enumerable: false, + configurable: true + }); + return BSONTypeError; + }(TypeError)); + + function checkForMath(potentialGlobal) { + // eslint-disable-next-line eqeqeq + return potentialGlobal && potentialGlobal.Math == Math && potentialGlobal; + } + // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028 + function getGlobal() { + return (checkForMath(typeof globalThis === 'object' && globalThis) || + checkForMath(typeof window === 'object' && window) || + checkForMath(typeof self === 'object' && self) || + checkForMath(typeof global === 'object' && global) || + // eslint-disable-next-line @typescript-eslint/no-implied-eval + Function('return this')()); + } + + /** + * Normalizes our expected stringified form of a function across versions of node + * @param fn - The function to stringify + */ + function normalizedFunctionString(fn) { + return fn.toString().replace('function(', 'function ('); + } + function isReactNative() { + var g = getGlobal(); + return typeof g.navigator === 'object' && g.navigator.product === 'ReactNative'; + } + var insecureRandomBytes = function insecureRandomBytes(size) { + var insecureWarning = isReactNative() + ? 'BSON: For React Native please polyfill crypto.getRandomValues, e.g. using: https://www.npmjs.com/package/react-native-get-random-values.' + : 'BSON: No cryptographic implementation for random bytes present, falling back to a less secure implementation.'; + console.warn(insecureWarning); + var result = buffer_1.alloc(size); + for (var i = 0; i < size; ++i) + result[i] = Math.floor(Math.random() * 256); + return result; + }; + var detectRandomBytes = function () { + { + if (typeof window !== 'undefined') { + // browser crypto implementation(s) + var target_1 = window.crypto || window.msCrypto; // allow for IE11 + if (target_1 && target_1.getRandomValues) { + return function (size) { return target_1.getRandomValues(buffer_1.alloc(size)); }; + } + } + if (typeof global !== 'undefined' && global.crypto && global.crypto.getRandomValues) { + // allow for RN packages such as https://www.npmjs.com/package/react-native-get-random-values to populate global + return function (size) { return global.crypto.getRandomValues(buffer_1.alloc(size)); }; + } + return insecureRandomBytes; + } + }; + var randomBytes = detectRandomBytes(); + function isAnyArrayBuffer(value) { + return ['[object ArrayBuffer]', '[object SharedArrayBuffer]'].includes(Object.prototype.toString.call(value)); + } + function isUint8Array(value) { + return Object.prototype.toString.call(value) === '[object Uint8Array]'; + } + function isBigInt64Array(value) { + return Object.prototype.toString.call(value) === '[object BigInt64Array]'; + } + function isBigUInt64Array(value) { + return Object.prototype.toString.call(value) === '[object BigUint64Array]'; + } + function isRegExp(d) { + return Object.prototype.toString.call(d) === '[object RegExp]'; + } + function isMap(d) { + return Object.prototype.toString.call(d) === '[object Map]'; + } + // To ensure that 0.4 of node works correctly + function isDate(d) { + return isObjectLike(d) && Object.prototype.toString.call(d) === '[object Date]'; + } + /** + * @internal + * this is to solve the `'someKey' in x` problem where x is unknown. + * https://github.com/typescript-eslint/typescript-eslint/issues/1071#issuecomment-541955753 + */ + function isObjectLike(candidate) { + return typeof candidate === 'object' && candidate !== null; + } + function deprecate(fn, message) { + var warned = false; + function deprecated() { + var args = []; + for (var _i = 0; _i < arguments.length; _i++) { + args[_i] = arguments[_i]; + } + if (!warned) { + console.warn(message); + warned = true; + } + return fn.apply(this, args); + } + return deprecated; + } + + /** + * Makes sure that, if a Uint8Array is passed in, it is wrapped in a Buffer. + * + * @param potentialBuffer - The potential buffer + * @returns Buffer the input if potentialBuffer is a buffer, or a buffer that + * wraps a passed in Uint8Array + * @throws BSONTypeError If anything other than a Buffer or Uint8Array is passed in + */ + function ensureBuffer(potentialBuffer) { + if (ArrayBuffer.isView(potentialBuffer)) { + return buffer_1.from(potentialBuffer.buffer, potentialBuffer.byteOffset, potentialBuffer.byteLength); + } + if (isAnyArrayBuffer(potentialBuffer)) { + return buffer_1.from(potentialBuffer); + } + throw new BSONTypeError('Must use either Buffer or TypedArray'); + } + + // Validation regex for v4 uuid (validates with or without dashes) + var VALIDATION_REGEX = /^(?:[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|[0-9a-f]{12}4[0-9a-f]{3}[89ab][0-9a-f]{15})$/i; + var uuidValidateString = function (str) { + return typeof str === 'string' && VALIDATION_REGEX.test(str); + }; + var uuidHexStringToBuffer = function (hexString) { + if (!uuidValidateString(hexString)) { + throw new BSONTypeError('UUID string representations must be a 32 or 36 character hex string (dashes excluded/included). Format: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" or "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx".'); + } + var sanitizedHexString = hexString.replace(/-/g, ''); + return buffer_1.from(sanitizedHexString, 'hex'); + }; + var bufferToUuidHexString = function (buffer, includeDashes) { + if (includeDashes === void 0) { includeDashes = true; } + return includeDashes + ? buffer.toString('hex', 0, 4) + + '-' + + buffer.toString('hex', 4, 6) + + '-' + + buffer.toString('hex', 6, 8) + + '-' + + buffer.toString('hex', 8, 10) + + '-' + + buffer.toString('hex', 10, 16) + : buffer.toString('hex'); + }; + + /** @internal */ + var BSON_INT32_MAX$1 = 0x7fffffff; + /** @internal */ + var BSON_INT32_MIN$1 = -0x80000000; + /** @internal */ + var BSON_INT64_MAX$1 = Math.pow(2, 63) - 1; + /** @internal */ + var BSON_INT64_MIN$1 = -Math.pow(2, 63); + /** + * Any integer up to 2^53 can be precisely represented by a double. + * @internal + */ + var JS_INT_MAX = Math.pow(2, 53); + /** + * Any integer down to -2^53 can be precisely represented by a double. + * @internal + */ + var JS_INT_MIN = -Math.pow(2, 53); + /** Number BSON Type @internal */ + var BSON_DATA_NUMBER = 1; + /** String BSON Type @internal */ + var BSON_DATA_STRING = 2; + /** Object BSON Type @internal */ + var BSON_DATA_OBJECT = 3; + /** Array BSON Type @internal */ + var BSON_DATA_ARRAY = 4; + /** Binary BSON Type @internal */ + var BSON_DATA_BINARY = 5; + /** Binary BSON Type @internal */ + var BSON_DATA_UNDEFINED = 6; + /** ObjectId BSON Type @internal */ + var BSON_DATA_OID = 7; + /** Boolean BSON Type @internal */ + var BSON_DATA_BOOLEAN = 8; + /** Date BSON Type @internal */ + var BSON_DATA_DATE = 9; + /** null BSON Type @internal */ + var BSON_DATA_NULL = 10; + /** RegExp BSON Type @internal */ + var BSON_DATA_REGEXP = 11; + /** Code BSON Type @internal */ + var BSON_DATA_DBPOINTER = 12; + /** Code BSON Type @internal */ + var BSON_DATA_CODE = 13; + /** Symbol BSON Type @internal */ + var BSON_DATA_SYMBOL = 14; + /** Code with Scope BSON Type @internal */ + var BSON_DATA_CODE_W_SCOPE = 15; + /** 32 bit Integer BSON Type @internal */ + var BSON_DATA_INT = 16; + /** Timestamp BSON Type @internal */ + var BSON_DATA_TIMESTAMP = 17; + /** Long BSON Type @internal */ + var BSON_DATA_LONG = 18; + /** Decimal128 BSON Type @internal */ + var BSON_DATA_DECIMAL128 = 19; + /** MinKey BSON Type @internal */ + var BSON_DATA_MIN_KEY = 0xff; + /** MaxKey BSON Type @internal */ + var BSON_DATA_MAX_KEY = 0x7f; + /** Binary Default Type @internal */ + var BSON_BINARY_SUBTYPE_DEFAULT = 0; + /** Binary Function Type @internal */ + var BSON_BINARY_SUBTYPE_FUNCTION = 1; + /** Binary Byte Array Type @internal */ + var BSON_BINARY_SUBTYPE_BYTE_ARRAY = 2; + /** Binary Deprecated UUID Type @deprecated Please use BSON_BINARY_SUBTYPE_UUID_NEW @internal */ + var BSON_BINARY_SUBTYPE_UUID = 3; + /** Binary UUID Type @internal */ + var BSON_BINARY_SUBTYPE_UUID_NEW = 4; + /** Binary MD5 Type @internal */ + var BSON_BINARY_SUBTYPE_MD5 = 5; + /** Encrypted BSON type @internal */ + var BSON_BINARY_SUBTYPE_ENCRYPTED = 6; + /** Column BSON type @internal */ + var BSON_BINARY_SUBTYPE_COLUMN = 7; + /** Binary User Defined Type @internal */ + var BSON_BINARY_SUBTYPE_USER_DEFINED = 128; + + /** + * A class representation of the BSON Binary type. + * @public + * @category BSONType + */ + var Binary = /** @class */ (function () { + /** + * Create a new Binary instance. + * + * This constructor can accept a string as its first argument. In this case, + * this string will be encoded using ISO-8859-1, **not** using UTF-8. + * This is almost certainly not what you want. Use `new Binary(Buffer.from(string))` + * instead to convert the string to a Buffer using UTF-8 first. + * + * @param buffer - a buffer object containing the binary data. + * @param subType - the option binary type. + */ + function Binary(buffer, subType) { + if (!(this instanceof Binary)) + return new Binary(buffer, subType); + if (!(buffer == null) && + !(typeof buffer === 'string') && + !ArrayBuffer.isView(buffer) && + !(buffer instanceof ArrayBuffer) && + !Array.isArray(buffer)) { + throw new BSONTypeError('Binary can only be constructed from string, Buffer, TypedArray, or Array'); + } + this.sub_type = subType !== null && subType !== void 0 ? subType : Binary.BSON_BINARY_SUBTYPE_DEFAULT; + if (buffer == null) { + // create an empty binary buffer + this.buffer = buffer_1.alloc(Binary.BUFFER_SIZE); + this.position = 0; + } + else { + if (typeof buffer === 'string') { + // string + this.buffer = buffer_1.from(buffer, 'binary'); + } + else if (Array.isArray(buffer)) { + // number[] + this.buffer = buffer_1.from(buffer); + } + else { + // Buffer | TypedArray | ArrayBuffer + this.buffer = ensureBuffer(buffer); + } + this.position = this.buffer.byteLength; + } + } + /** + * Updates this binary with byte_value. + * + * @param byteValue - a single byte we wish to write. + */ + Binary.prototype.put = function (byteValue) { + // If it's a string and a has more than one character throw an error + if (typeof byteValue === 'string' && byteValue.length !== 1) { + throw new BSONTypeError('only accepts single character String'); + } + else if (typeof byteValue !== 'number' && byteValue.length !== 1) + throw new BSONTypeError('only accepts single character Uint8Array or Array'); + // Decode the byte value once + var decodedByte; + if (typeof byteValue === 'string') { + decodedByte = byteValue.charCodeAt(0); + } + else if (typeof byteValue === 'number') { + decodedByte = byteValue; + } + else { + decodedByte = byteValue[0]; + } + if (decodedByte < 0 || decodedByte > 255) { + throw new BSONTypeError('only accepts number in a valid unsigned byte range 0-255'); + } + if (this.buffer.length > this.position) { + this.buffer[this.position++] = decodedByte; + } + else { + var buffer = buffer_1.alloc(Binary.BUFFER_SIZE + this.buffer.length); + // Combine the two buffers together + this.buffer.copy(buffer, 0, 0, this.buffer.length); + this.buffer = buffer; + this.buffer[this.position++] = decodedByte; + } + }; + /** + * Writes a buffer or string to the binary. + * + * @param sequence - a string or buffer to be written to the Binary BSON object. + * @param offset - specify the binary of where to write the content. + */ + Binary.prototype.write = function (sequence, offset) { + offset = typeof offset === 'number' ? offset : this.position; + // If the buffer is to small let's extend the buffer + if (this.buffer.length < offset + sequence.length) { + var buffer = buffer_1.alloc(this.buffer.length + sequence.length); + this.buffer.copy(buffer, 0, 0, this.buffer.length); + // Assign the new buffer + this.buffer = buffer; + } + if (ArrayBuffer.isView(sequence)) { + this.buffer.set(ensureBuffer(sequence), offset); + this.position = + offset + sequence.byteLength > this.position ? offset + sequence.length : this.position; + } + else if (typeof sequence === 'string') { + this.buffer.write(sequence, offset, sequence.length, 'binary'); + this.position = + offset + sequence.length > this.position ? offset + sequence.length : this.position; + } + }; + /** + * Reads **length** bytes starting at **position**. + * + * @param position - read from the given position in the Binary. + * @param length - the number of bytes to read. + */ + Binary.prototype.read = function (position, length) { + length = length && length > 0 ? length : this.position; + // Let's return the data based on the type we have + return this.buffer.slice(position, position + length); + }; + /** + * Returns the value of this binary as a string. + * @param asRaw - Will skip converting to a string + * @remarks + * This is handy when calling this function conditionally for some key value pairs and not others + */ + Binary.prototype.value = function (asRaw) { + asRaw = !!asRaw; + // Optimize to serialize for the situation where the data == size of buffer + if (asRaw && this.buffer.length === this.position) { + return this.buffer; + } + // If it's a node.js buffer object + if (asRaw) { + return this.buffer.slice(0, this.position); + } + return this.buffer.toString('binary', 0, this.position); + }; + /** the length of the binary sequence */ + Binary.prototype.length = function () { + return this.position; + }; + Binary.prototype.toJSON = function () { + return this.buffer.toString('base64'); + }; + Binary.prototype.toString = function (format) { + return this.buffer.toString(format); + }; + /** @internal */ + Binary.prototype.toExtendedJSON = function (options) { + options = options || {}; + var base64String = this.buffer.toString('base64'); + var subType = Number(this.sub_type).toString(16); + if (options.legacy) { + return { + $binary: base64String, + $type: subType.length === 1 ? '0' + subType : subType + }; + } + return { + $binary: { + base64: base64String, + subType: subType.length === 1 ? '0' + subType : subType + } + }; + }; + Binary.prototype.toUUID = function () { + if (this.sub_type === Binary.SUBTYPE_UUID) { + return new UUID(this.buffer.slice(0, this.position)); + } + throw new BSONError("Binary sub_type \"".concat(this.sub_type, "\" is not supported for converting to UUID. Only \"").concat(Binary.SUBTYPE_UUID, "\" is currently supported.")); + }; + /** @internal */ + Binary.fromExtendedJSON = function (doc, options) { + options = options || {}; + var data; + var type; + if ('$binary' in doc) { + if (options.legacy && typeof doc.$binary === 'string' && '$type' in doc) { + type = doc.$type ? parseInt(doc.$type, 16) : 0; + data = buffer_1.from(doc.$binary, 'base64'); + } + else { + if (typeof doc.$binary !== 'string') { + type = doc.$binary.subType ? parseInt(doc.$binary.subType, 16) : 0; + data = buffer_1.from(doc.$binary.base64, 'base64'); + } + } + } + else if ('$uuid' in doc) { + type = 4; + data = uuidHexStringToBuffer(doc.$uuid); + } + if (!data) { + throw new BSONTypeError("Unexpected Binary Extended JSON format ".concat(JSON.stringify(doc))); + } + return type === BSON_BINARY_SUBTYPE_UUID_NEW ? new UUID(data) : new Binary(data, type); + }; + /** @internal */ + Binary.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () { + return this.inspect(); + }; + Binary.prototype.inspect = function () { + var asBuffer = this.value(true); + return "new Binary(Buffer.from(\"".concat(asBuffer.toString('hex'), "\", \"hex\"), ").concat(this.sub_type, ")"); + }; + /** + * Binary default subtype + * @internal + */ + Binary.BSON_BINARY_SUBTYPE_DEFAULT = 0; + /** Initial buffer default size */ + Binary.BUFFER_SIZE = 256; + /** Default BSON type */ + Binary.SUBTYPE_DEFAULT = 0; + /** Function BSON type */ + Binary.SUBTYPE_FUNCTION = 1; + /** Byte Array BSON type */ + Binary.SUBTYPE_BYTE_ARRAY = 2; + /** Deprecated UUID BSON type @deprecated Please use SUBTYPE_UUID */ + Binary.SUBTYPE_UUID_OLD = 3; + /** UUID BSON type */ + Binary.SUBTYPE_UUID = 4; + /** MD5 BSON type */ + Binary.SUBTYPE_MD5 = 5; + /** Encrypted BSON type */ + Binary.SUBTYPE_ENCRYPTED = 6; + /** Column BSON type */ + Binary.SUBTYPE_COLUMN = 7; + /** User BSON type */ + Binary.SUBTYPE_USER_DEFINED = 128; + return Binary; + }()); + Object.defineProperty(Binary.prototype, '_bsontype', { value: 'Binary' }); + var UUID_BYTE_LENGTH = 16; + /** + * A class representation of the BSON UUID type. + * @public + */ + var UUID = /** @class */ (function (_super) { + __extends(UUID, _super); + /** + * Create an UUID type + * + * @param input - Can be a 32 or 36 character hex string (dashes excluded/included) or a 16 byte binary Buffer. + */ + function UUID(input) { + var _this = this; + var bytes; + var hexStr; + if (input == null) { + bytes = UUID.generate(); + } + else if (input instanceof UUID) { + bytes = buffer_1.from(input.buffer); + hexStr = input.__id; + } + else if (ArrayBuffer.isView(input) && input.byteLength === UUID_BYTE_LENGTH) { + bytes = ensureBuffer(input); + } + else if (typeof input === 'string') { + bytes = uuidHexStringToBuffer(input); + } + else { + throw new BSONTypeError('Argument passed in UUID constructor must be a UUID, a 16 byte Buffer or a 32/36 character hex string (dashes excluded/included, format: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx).'); + } + _this = _super.call(this, bytes, BSON_BINARY_SUBTYPE_UUID_NEW) || this; + _this.__id = hexStr; + return _this; + } + Object.defineProperty(UUID.prototype, "id", { + /** + * The UUID bytes + * @readonly + */ + get: function () { + return this.buffer; + }, + set: function (value) { + this.buffer = value; + if (UUID.cacheHexString) { + this.__id = bufferToUuidHexString(value); + } + }, + enumerable: false, + configurable: true + }); + /** + * Returns the UUID id as a 32 or 36 character hex string representation, excluding/including dashes (defaults to 36 character dash separated) + * @param includeDashes - should the string exclude dash-separators. + * */ + UUID.prototype.toHexString = function (includeDashes) { + if (includeDashes === void 0) { includeDashes = true; } + if (UUID.cacheHexString && this.__id) { + return this.__id; + } + var uuidHexString = bufferToUuidHexString(this.id, includeDashes); + if (UUID.cacheHexString) { + this.__id = uuidHexString; + } + return uuidHexString; + }; + /** + * Converts the id into a 36 character (dashes included) hex string, unless a encoding is specified. + */ + UUID.prototype.toString = function (encoding) { + return encoding ? this.id.toString(encoding) : this.toHexString(); + }; + /** + * Converts the id into its JSON string representation. + * A 36 character (dashes included) hex string in the format: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx + */ + UUID.prototype.toJSON = function () { + return this.toHexString(); + }; + /** + * Compares the equality of this UUID with `otherID`. + * + * @param otherId - UUID instance to compare against. + */ + UUID.prototype.equals = function (otherId) { + if (!otherId) { + return false; + } + if (otherId instanceof UUID) { + return otherId.id.equals(this.id); + } + try { + return new UUID(otherId).id.equals(this.id); + } + catch (_a) { + return false; + } + }; + /** + * Creates a Binary instance from the current UUID. + */ + UUID.prototype.toBinary = function () { + return new Binary(this.id, Binary.SUBTYPE_UUID); + }; + /** + * Generates a populated buffer containing a v4 uuid + */ + UUID.generate = function () { + var bytes = randomBytes(UUID_BYTE_LENGTH); + // Per 4.4, set bits for version and `clock_seq_hi_and_reserved` + // Kindly borrowed from https://github.com/uuidjs/uuid/blob/master/src/v4.js + bytes[6] = (bytes[6] & 0x0f) | 0x40; + bytes[8] = (bytes[8] & 0x3f) | 0x80; + return buffer_1.from(bytes); + }; + /** + * Checks if a value is a valid bson UUID + * @param input - UUID, string or Buffer to validate. + */ + UUID.isValid = function (input) { + if (!input) { + return false; + } + if (input instanceof UUID) { + return true; + } + if (typeof input === 'string') { + return uuidValidateString(input); + } + if (isUint8Array(input)) { + // check for length & uuid version (https://tools.ietf.org/html/rfc4122#section-4.1.3) + if (input.length !== UUID_BYTE_LENGTH) { + return false; + } + return (input[6] & 0xf0) === 0x40 && (input[8] & 0x80) === 0x80; + } + return false; + }; + /** + * Creates an UUID from a hex string representation of an UUID. + * @param hexString - 32 or 36 character hex string (dashes excluded/included). + */ + UUID.createFromHexString = function (hexString) { + var buffer = uuidHexStringToBuffer(hexString); + return new UUID(buffer); + }; + /** + * Converts to a string representation of this Id. + * + * @returns return the 36 character hex string representation. + * @internal + */ + UUID.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () { + return this.inspect(); + }; + UUID.prototype.inspect = function () { + return "new UUID(\"".concat(this.toHexString(), "\")"); + }; + return UUID; + }(Binary)); + + /** + * A class representation of the BSON Code type. + * @public + * @category BSONType + */ + var Code = /** @class */ (function () { + /** + * @param code - a string or function. + * @param scope - an optional scope for the function. + */ + function Code(code, scope) { + if (!(this instanceof Code)) + return new Code(code, scope); + this.code = code; + this.scope = scope; + } + Code.prototype.toJSON = function () { + return { code: this.code, scope: this.scope }; + }; + /** @internal */ + Code.prototype.toExtendedJSON = function () { + if (this.scope) { + return { $code: this.code, $scope: this.scope }; + } + return { $code: this.code }; + }; + /** @internal */ + Code.fromExtendedJSON = function (doc) { + return new Code(doc.$code, doc.$scope); + }; + /** @internal */ + Code.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () { + return this.inspect(); + }; + Code.prototype.inspect = function () { + var codeJson = this.toJSON(); + return "new Code(\"".concat(String(codeJson.code), "\"").concat(codeJson.scope ? ", ".concat(JSON.stringify(codeJson.scope)) : '', ")"); + }; + return Code; + }()); + Object.defineProperty(Code.prototype, '_bsontype', { value: 'Code' }); + + /** @internal */ + function isDBRefLike(value) { + return (isObjectLike(value) && + value.$id != null && + typeof value.$ref === 'string' && + (value.$db == null || typeof value.$db === 'string')); + } + /** + * A class representation of the BSON DBRef type. + * @public + * @category BSONType + */ + var DBRef = /** @class */ (function () { + /** + * @param collection - the collection name. + * @param oid - the reference ObjectId. + * @param db - optional db name, if omitted the reference is local to the current db. + */ + function DBRef(collection, oid, db, fields) { + if (!(this instanceof DBRef)) + return new DBRef(collection, oid, db, fields); + // check if namespace has been provided + var parts = collection.split('.'); + if (parts.length === 2) { + db = parts.shift(); + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + collection = parts.shift(); + } + this.collection = collection; + this.oid = oid; + this.db = db; + this.fields = fields || {}; + } + Object.defineProperty(DBRef.prototype, "namespace", { + // Property provided for compatibility with the 1.x parser + // the 1.x parser used a "namespace" property, while 4.x uses "collection" + /** @internal */ + get: function () { + return this.collection; + }, + set: function (value) { + this.collection = value; + }, + enumerable: false, + configurable: true + }); + DBRef.prototype.toJSON = function () { + var o = Object.assign({ + $ref: this.collection, + $id: this.oid + }, this.fields); + if (this.db != null) + o.$db = this.db; + return o; + }; + /** @internal */ + DBRef.prototype.toExtendedJSON = function (options) { + options = options || {}; + var o = { + $ref: this.collection, + $id: this.oid + }; + if (options.legacy) { + return o; + } + if (this.db) + o.$db = this.db; + o = Object.assign(o, this.fields); + return o; + }; + /** @internal */ + DBRef.fromExtendedJSON = function (doc) { + var copy = Object.assign({}, doc); + delete copy.$ref; + delete copy.$id; + delete copy.$db; + return new DBRef(doc.$ref, doc.$id, doc.$db, copy); + }; + /** @internal */ + DBRef.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () { + return this.inspect(); + }; + DBRef.prototype.inspect = function () { + // NOTE: if OID is an ObjectId class it will just print the oid string. + var oid = this.oid === undefined || this.oid.toString === undefined ? this.oid : this.oid.toString(); + return "new DBRef(\"".concat(this.namespace, "\", new ObjectId(\"").concat(String(oid), "\")").concat(this.db ? ", \"".concat(this.db, "\"") : '', ")"); + }; + return DBRef; + }()); + Object.defineProperty(DBRef.prototype, '_bsontype', { value: 'DBRef' }); + + /** + * wasm optimizations, to do native i64 multiplication and divide + */ + var wasm = undefined; + try { + wasm = new WebAssembly.Instance(new WebAssembly.Module( + // prettier-ignore + new Uint8Array([0, 97, 115, 109, 1, 0, 0, 0, 1, 13, 2, 96, 0, 1, 127, 96, 4, 127, 127, 127, 127, 1, 127, 3, 7, 6, 0, 1, 1, 1, 1, 1, 6, 6, 1, 127, 1, 65, 0, 11, 7, 50, 6, 3, 109, 117, 108, 0, 1, 5, 100, 105, 118, 95, 115, 0, 2, 5, 100, 105, 118, 95, 117, 0, 3, 5, 114, 101, 109, 95, 115, 0, 4, 5, 114, 101, 109, 95, 117, 0, 5, 8, 103, 101, 116, 95, 104, 105, 103, 104, 0, 0, 10, 191, 1, 6, 4, 0, 35, 0, 11, 36, 1, 1, 126, 32, 0, 173, 32, 1, 173, 66, 32, 134, 132, 32, 2, 173, 32, 3, 173, 66, 32, 134, 132, 126, 34, 4, 66, 32, 135, 167, 36, 0, 32, 4, 167, 11, 36, 1, 1, 126, 32, 0, 173, 32, 1, 173, 66, 32, 134, 132, 32, 2, 173, 32, 3, 173, 66, 32, 134, 132, 127, 34, 4, 66, 32, 135, 167, 36, 0, 32, 4, 167, 11, 36, 1, 1, 126, 32, 0, 173, 32, 1, 173, 66, 32, 134, 132, 32, 2, 173, 32, 3, 173, 66, 32, 134, 132, 128, 34, 4, 66, 32, 135, 167, 36, 0, 32, 4, 167, 11, 36, 1, 1, 126, 32, 0, 173, 32, 1, 173, 66, 32, 134, 132, 32, 2, 173, 32, 3, 173, 66, 32, 134, 132, 129, 34, 4, 66, 32, 135, 167, 36, 0, 32, 4, 167, 11, 36, 1, 1, 126, 32, 0, 173, 32, 1, 173, 66, 32, 134, 132, 32, 2, 173, 32, 3, 173, 66, 32, 134, 132, 130, 34, 4, 66, 32, 135, 167, 36, 0, 32, 4, 167, 11])), {}).exports; + } + catch (_a) { + // no wasm support + } + var TWO_PWR_16_DBL = 1 << 16; + var TWO_PWR_24_DBL = 1 << 24; + var TWO_PWR_32_DBL = TWO_PWR_16_DBL * TWO_PWR_16_DBL; + var TWO_PWR_64_DBL = TWO_PWR_32_DBL * TWO_PWR_32_DBL; + var TWO_PWR_63_DBL = TWO_PWR_64_DBL / 2; + /** A cache of the Long representations of small integer values. */ + var INT_CACHE = {}; + /** A cache of the Long representations of small unsigned integer values. */ + var UINT_CACHE = {}; + /** + * A class representing a 64-bit integer + * @public + * @category BSONType + * @remarks + * The internal representation of a long is the two given signed, 32-bit values. + * We use 32-bit pieces because these are the size of integers on which + * Javascript performs bit-operations. For operations like addition and + * multiplication, we split each number into 16 bit pieces, which can easily be + * multiplied within Javascript's floating-point representation without overflow + * or change in sign. + * In the algorithms below, we frequently reduce the negative case to the + * positive case by negating the input(s) and then post-processing the result. + * Note that we must ALWAYS check specially whether those values are MIN_VALUE + * (-2^63) because -MIN_VALUE == MIN_VALUE (since 2^63 cannot be represented as + * a positive number, it overflows back into a negative). Not handling this + * case would often result in infinite recursion. + * Common constant values ZERO, ONE, NEG_ONE, etc. are found as static properties on this class. + */ + var Long = /** @class */ (function () { + /** + * Constructs a 64 bit two's-complement integer, given its low and high 32 bit values as *signed* integers. + * See the from* functions below for more convenient ways of constructing Longs. + * + * Acceptable signatures are: + * - Long(low, high, unsigned?) + * - Long(bigint, unsigned?) + * - Long(string, unsigned?) + * + * @param low - The low (signed) 32 bits of the long + * @param high - The high (signed) 32 bits of the long + * @param unsigned - Whether unsigned or not, defaults to signed + */ + function Long(low, high, unsigned) { + if (low === void 0) { low = 0; } + if (!(this instanceof Long)) + return new Long(low, high, unsigned); + if (typeof low === 'bigint') { + Object.assign(this, Long.fromBigInt(low, !!high)); + } + else if (typeof low === 'string') { + Object.assign(this, Long.fromString(low, !!high)); + } + else { + this.low = low | 0; + this.high = high | 0; + this.unsigned = !!unsigned; + } + Object.defineProperty(this, '__isLong__', { + value: true, + configurable: false, + writable: false, + enumerable: false + }); + } + /** + * Returns a Long representing the 64 bit integer that comes by concatenating the given low and high bits. + * Each is assumed to use 32 bits. + * @param lowBits - The low 32 bits + * @param highBits - The high 32 bits + * @param unsigned - Whether unsigned or not, defaults to signed + * @returns The corresponding Long value + */ + Long.fromBits = function (lowBits, highBits, unsigned) { + return new Long(lowBits, highBits, unsigned); + }; + /** + * Returns a Long representing the given 32 bit integer value. + * @param value - The 32 bit integer in question + * @param unsigned - Whether unsigned or not, defaults to signed + * @returns The corresponding Long value + */ + Long.fromInt = function (value, unsigned) { + var obj, cachedObj, cache; + if (unsigned) { + value >>>= 0; + if ((cache = 0 <= value && value < 256)) { + cachedObj = UINT_CACHE[value]; + if (cachedObj) + return cachedObj; + } + obj = Long.fromBits(value, (value | 0) < 0 ? -1 : 0, true); + if (cache) + UINT_CACHE[value] = obj; + return obj; + } + else { + value |= 0; + if ((cache = -128 <= value && value < 128)) { + cachedObj = INT_CACHE[value]; + if (cachedObj) + return cachedObj; + } + obj = Long.fromBits(value, value < 0 ? -1 : 0, false); + if (cache) + INT_CACHE[value] = obj; + return obj; + } + }; + /** + * Returns a Long representing the given value, provided that it is a finite number. Otherwise, zero is returned. + * @param value - The number in question + * @param unsigned - Whether unsigned or not, defaults to signed + * @returns The corresponding Long value + */ + Long.fromNumber = function (value, unsigned) { + if (isNaN(value)) + return unsigned ? Long.UZERO : Long.ZERO; + if (unsigned) { + if (value < 0) + return Long.UZERO; + if (value >= TWO_PWR_64_DBL) + return Long.MAX_UNSIGNED_VALUE; + } + else { + if (value <= -TWO_PWR_63_DBL) + return Long.MIN_VALUE; + if (value + 1 >= TWO_PWR_63_DBL) + return Long.MAX_VALUE; + } + if (value < 0) + return Long.fromNumber(-value, unsigned).neg(); + return Long.fromBits(value % TWO_PWR_32_DBL | 0, (value / TWO_PWR_32_DBL) | 0, unsigned); + }; + /** + * Returns a Long representing the given value, provided that it is a finite number. Otherwise, zero is returned. + * @param value - The number in question + * @param unsigned - Whether unsigned or not, defaults to signed + * @returns The corresponding Long value + */ + Long.fromBigInt = function (value, unsigned) { + return Long.fromString(value.toString(), unsigned); + }; + /** + * Returns a Long representation of the given string, written using the specified radix. + * @param str - The textual representation of the Long + * @param unsigned - Whether unsigned or not, defaults to signed + * @param radix - The radix in which the text is written (2-36), defaults to 10 + * @returns The corresponding Long value + */ + Long.fromString = function (str, unsigned, radix) { + if (str.length === 0) + throw Error('empty string'); + if (str === 'NaN' || str === 'Infinity' || str === '+Infinity' || str === '-Infinity') + return Long.ZERO; + if (typeof unsigned === 'number') { + // For goog.math.long compatibility + (radix = unsigned), (unsigned = false); + } + else { + unsigned = !!unsigned; + } + radix = radix || 10; + if (radix < 2 || 36 < radix) + throw RangeError('radix'); + var p; + if ((p = str.indexOf('-')) > 0) + throw Error('interior hyphen'); + else if (p === 0) { + return Long.fromString(str.substring(1), unsigned, radix).neg(); + } + // Do several (8) digits each time through the loop, so as to + // minimize the calls to the very expensive emulated div. + var radixToPower = Long.fromNumber(Math.pow(radix, 8)); + var result = Long.ZERO; + for (var i = 0; i < str.length; i += 8) { + var size = Math.min(8, str.length - i), value = parseInt(str.substring(i, i + size), radix); + if (size < 8) { + var power = Long.fromNumber(Math.pow(radix, size)); + result = result.mul(power).add(Long.fromNumber(value)); + } + else { + result = result.mul(radixToPower); + result = result.add(Long.fromNumber(value)); + } + } + result.unsigned = unsigned; + return result; + }; + /** + * Creates a Long from its byte representation. + * @param bytes - Byte representation + * @param unsigned - Whether unsigned or not, defaults to signed + * @param le - Whether little or big endian, defaults to big endian + * @returns The corresponding Long value + */ + Long.fromBytes = function (bytes, unsigned, le) { + return le ? Long.fromBytesLE(bytes, unsigned) : Long.fromBytesBE(bytes, unsigned); + }; + /** + * Creates a Long from its little endian byte representation. + * @param bytes - Little endian byte representation + * @param unsigned - Whether unsigned or not, defaults to signed + * @returns The corresponding Long value + */ + Long.fromBytesLE = function (bytes, unsigned) { + return new Long(bytes[0] | (bytes[1] << 8) | (bytes[2] << 16) | (bytes[3] << 24), bytes[4] | (bytes[5] << 8) | (bytes[6] << 16) | (bytes[7] << 24), unsigned); + }; + /** + * Creates a Long from its big endian byte representation. + * @param bytes - Big endian byte representation + * @param unsigned - Whether unsigned or not, defaults to signed + * @returns The corresponding Long value + */ + Long.fromBytesBE = function (bytes, unsigned) { + return new Long((bytes[4] << 24) | (bytes[5] << 16) | (bytes[6] << 8) | bytes[7], (bytes[0] << 24) | (bytes[1] << 16) | (bytes[2] << 8) | bytes[3], unsigned); + }; + /** + * Tests if the specified object is a Long. + */ + Long.isLong = function (value) { + return isObjectLike(value) && value['__isLong__'] === true; + }; + /** + * Converts the specified value to a Long. + * @param unsigned - Whether unsigned or not, defaults to signed + */ + Long.fromValue = function (val, unsigned) { + if (typeof val === 'number') + return Long.fromNumber(val, unsigned); + if (typeof val === 'string') + return Long.fromString(val, unsigned); + // Throws for non-objects, converts non-instanceof Long: + return Long.fromBits(val.low, val.high, typeof unsigned === 'boolean' ? unsigned : val.unsigned); + }; + /** Returns the sum of this and the specified Long. */ + Long.prototype.add = function (addend) { + if (!Long.isLong(addend)) + addend = Long.fromValue(addend); + // Divide each number into 4 chunks of 16 bits, and then sum the chunks. + var a48 = this.high >>> 16; + var a32 = this.high & 0xffff; + var a16 = this.low >>> 16; + var a00 = this.low & 0xffff; + var b48 = addend.high >>> 16; + var b32 = addend.high & 0xffff; + var b16 = addend.low >>> 16; + var b00 = addend.low & 0xffff; + var c48 = 0, c32 = 0, c16 = 0, c00 = 0; + c00 += a00 + b00; + c16 += c00 >>> 16; + c00 &= 0xffff; + c16 += a16 + b16; + c32 += c16 >>> 16; + c16 &= 0xffff; + c32 += a32 + b32; + c48 += c32 >>> 16; + c32 &= 0xffff; + c48 += a48 + b48; + c48 &= 0xffff; + return Long.fromBits((c16 << 16) | c00, (c48 << 16) | c32, this.unsigned); + }; + /** + * Returns the sum of this and the specified Long. + * @returns Sum + */ + Long.prototype.and = function (other) { + if (!Long.isLong(other)) + other = Long.fromValue(other); + return Long.fromBits(this.low & other.low, this.high & other.high, this.unsigned); + }; + /** + * Compares this Long's value with the specified's. + * @returns 0 if they are the same, 1 if the this is greater and -1 if the given one is greater + */ + Long.prototype.compare = function (other) { + if (!Long.isLong(other)) + other = Long.fromValue(other); + if (this.eq(other)) + return 0; + var thisNeg = this.isNegative(), otherNeg = other.isNegative(); + if (thisNeg && !otherNeg) + return -1; + if (!thisNeg && otherNeg) + return 1; + // At this point the sign bits are the same + if (!this.unsigned) + return this.sub(other).isNegative() ? -1 : 1; + // Both are positive if at least one is unsigned + return other.high >>> 0 > this.high >>> 0 || + (other.high === this.high && other.low >>> 0 > this.low >>> 0) + ? -1 + : 1; + }; + /** This is an alias of {@link Long.compare} */ + Long.prototype.comp = function (other) { + return this.compare(other); + }; + /** + * Returns this Long divided by the specified. The result is signed if this Long is signed or unsigned if this Long is unsigned. + * @returns Quotient + */ + Long.prototype.divide = function (divisor) { + if (!Long.isLong(divisor)) + divisor = Long.fromValue(divisor); + if (divisor.isZero()) + throw Error('division by zero'); + // use wasm support if present + if (wasm) { + // guard against signed division overflow: the largest + // negative number / -1 would be 1 larger than the largest + // positive number, due to two's complement. + if (!this.unsigned && + this.high === -0x80000000 && + divisor.low === -1 && + divisor.high === -1) { + // be consistent with non-wasm code path + return this; + } + var low = (this.unsigned ? wasm.div_u : wasm.div_s)(this.low, this.high, divisor.low, divisor.high); + return Long.fromBits(low, wasm.get_high(), this.unsigned); + } + if (this.isZero()) + return this.unsigned ? Long.UZERO : Long.ZERO; + var approx, rem, res; + if (!this.unsigned) { + // This section is only relevant for signed longs and is derived from the + // closure library as a whole. + if (this.eq(Long.MIN_VALUE)) { + if (divisor.eq(Long.ONE) || divisor.eq(Long.NEG_ONE)) + return Long.MIN_VALUE; + // recall that -MIN_VALUE == MIN_VALUE + else if (divisor.eq(Long.MIN_VALUE)) + return Long.ONE; + else { + // At this point, we have |other| >= 2, so |this/other| < |MIN_VALUE|. + var halfThis = this.shr(1); + approx = halfThis.div(divisor).shl(1); + if (approx.eq(Long.ZERO)) { + return divisor.isNegative() ? Long.ONE : Long.NEG_ONE; + } + else { + rem = this.sub(divisor.mul(approx)); + res = approx.add(rem.div(divisor)); + return res; + } + } + } + else if (divisor.eq(Long.MIN_VALUE)) + return this.unsigned ? Long.UZERO : Long.ZERO; + if (this.isNegative()) { + if (divisor.isNegative()) + return this.neg().div(divisor.neg()); + return this.neg().div(divisor).neg(); + } + else if (divisor.isNegative()) + return this.div(divisor.neg()).neg(); + res = Long.ZERO; + } + else { + // The algorithm below has not been made for unsigned longs. It's therefore + // required to take special care of the MSB prior to running it. + if (!divisor.unsigned) + divisor = divisor.toUnsigned(); + if (divisor.gt(this)) + return Long.UZERO; + if (divisor.gt(this.shru(1))) + // 15 >>> 1 = 7 ; with divisor = 8 ; true + return Long.UONE; + res = Long.UZERO; + } + // Repeat the following until the remainder is less than other: find a + // floating-point that approximates remainder / other *from below*, add this + // into the result, and subtract it from the remainder. It is critical that + // the approximate value is less than or equal to the real value so that the + // remainder never becomes negative. + // eslint-disable-next-line @typescript-eslint/no-this-alias + rem = this; + while (rem.gte(divisor)) { + // Approximate the result of division. This may be a little greater or + // smaller than the actual value. + approx = Math.max(1, Math.floor(rem.toNumber() / divisor.toNumber())); + // We will tweak the approximate result by changing it in the 48-th digit or + // the smallest non-fractional digit, whichever is larger. + var log2 = Math.ceil(Math.log(approx) / Math.LN2); + var delta = log2 <= 48 ? 1 : Math.pow(2, log2 - 48); + // Decrease the approximation until it is smaller than the remainder. Note + // that if it is too large, the product overflows and is negative. + var approxRes = Long.fromNumber(approx); + var approxRem = approxRes.mul(divisor); + while (approxRem.isNegative() || approxRem.gt(rem)) { + approx -= delta; + approxRes = Long.fromNumber(approx, this.unsigned); + approxRem = approxRes.mul(divisor); + } + // We know the answer can't be zero... and actually, zero would cause + // infinite recursion since we would make no progress. + if (approxRes.isZero()) + approxRes = Long.ONE; + res = res.add(approxRes); + rem = rem.sub(approxRem); + } + return res; + }; + /**This is an alias of {@link Long.divide} */ + Long.prototype.div = function (divisor) { + return this.divide(divisor); + }; + /** + * Tests if this Long's value equals the specified's. + * @param other - Other value + */ + Long.prototype.equals = function (other) { + if (!Long.isLong(other)) + other = Long.fromValue(other); + if (this.unsigned !== other.unsigned && this.high >>> 31 === 1 && other.high >>> 31 === 1) + return false; + return this.high === other.high && this.low === other.low; + }; + /** This is an alias of {@link Long.equals} */ + Long.prototype.eq = function (other) { + return this.equals(other); + }; + /** Gets the high 32 bits as a signed integer. */ + Long.prototype.getHighBits = function () { + return this.high; + }; + /** Gets the high 32 bits as an unsigned integer. */ + Long.prototype.getHighBitsUnsigned = function () { + return this.high >>> 0; + }; + /** Gets the low 32 bits as a signed integer. */ + Long.prototype.getLowBits = function () { + return this.low; + }; + /** Gets the low 32 bits as an unsigned integer. */ + Long.prototype.getLowBitsUnsigned = function () { + return this.low >>> 0; + }; + /** Gets the number of bits needed to represent the absolute value of this Long. */ + Long.prototype.getNumBitsAbs = function () { + if (this.isNegative()) { + // Unsigned Longs are never negative + return this.eq(Long.MIN_VALUE) ? 64 : this.neg().getNumBitsAbs(); + } + var val = this.high !== 0 ? this.high : this.low; + var bit; + for (bit = 31; bit > 0; bit--) + if ((val & (1 << bit)) !== 0) + break; + return this.high !== 0 ? bit + 33 : bit + 1; + }; + /** Tests if this Long's value is greater than the specified's. */ + Long.prototype.greaterThan = function (other) { + return this.comp(other) > 0; + }; + /** This is an alias of {@link Long.greaterThan} */ + Long.prototype.gt = function (other) { + return this.greaterThan(other); + }; + /** Tests if this Long's value is greater than or equal the specified's. */ + Long.prototype.greaterThanOrEqual = function (other) { + return this.comp(other) >= 0; + }; + /** This is an alias of {@link Long.greaterThanOrEqual} */ + Long.prototype.gte = function (other) { + return this.greaterThanOrEqual(other); + }; + /** This is an alias of {@link Long.greaterThanOrEqual} */ + Long.prototype.ge = function (other) { + return this.greaterThanOrEqual(other); + }; + /** Tests if this Long's value is even. */ + Long.prototype.isEven = function () { + return (this.low & 1) === 0; + }; + /** Tests if this Long's value is negative. */ + Long.prototype.isNegative = function () { + return !this.unsigned && this.high < 0; + }; + /** Tests if this Long's value is odd. */ + Long.prototype.isOdd = function () { + return (this.low & 1) === 1; + }; + /** Tests if this Long's value is positive. */ + Long.prototype.isPositive = function () { + return this.unsigned || this.high >= 0; + }; + /** Tests if this Long's value equals zero. */ + Long.prototype.isZero = function () { + return this.high === 0 && this.low === 0; + }; + /** Tests if this Long's value is less than the specified's. */ + Long.prototype.lessThan = function (other) { + return this.comp(other) < 0; + }; + /** This is an alias of {@link Long#lessThan}. */ + Long.prototype.lt = function (other) { + return this.lessThan(other); + }; + /** Tests if this Long's value is less than or equal the specified's. */ + Long.prototype.lessThanOrEqual = function (other) { + return this.comp(other) <= 0; + }; + /** This is an alias of {@link Long.lessThanOrEqual} */ + Long.prototype.lte = function (other) { + return this.lessThanOrEqual(other); + }; + /** Returns this Long modulo the specified. */ + Long.prototype.modulo = function (divisor) { + if (!Long.isLong(divisor)) + divisor = Long.fromValue(divisor); + // use wasm support if present + if (wasm) { + var low = (this.unsigned ? wasm.rem_u : wasm.rem_s)(this.low, this.high, divisor.low, divisor.high); + return Long.fromBits(low, wasm.get_high(), this.unsigned); + } + return this.sub(this.div(divisor).mul(divisor)); + }; + /** This is an alias of {@link Long.modulo} */ + Long.prototype.mod = function (divisor) { + return this.modulo(divisor); + }; + /** This is an alias of {@link Long.modulo} */ + Long.prototype.rem = function (divisor) { + return this.modulo(divisor); + }; + /** + * Returns the product of this and the specified Long. + * @param multiplier - Multiplier + * @returns Product + */ + Long.prototype.multiply = function (multiplier) { + if (this.isZero()) + return Long.ZERO; + if (!Long.isLong(multiplier)) + multiplier = Long.fromValue(multiplier); + // use wasm support if present + if (wasm) { + var low = wasm.mul(this.low, this.high, multiplier.low, multiplier.high); + return Long.fromBits(low, wasm.get_high(), this.unsigned); + } + if (multiplier.isZero()) + return Long.ZERO; + if (this.eq(Long.MIN_VALUE)) + return multiplier.isOdd() ? Long.MIN_VALUE : Long.ZERO; + if (multiplier.eq(Long.MIN_VALUE)) + return this.isOdd() ? Long.MIN_VALUE : Long.ZERO; + if (this.isNegative()) { + if (multiplier.isNegative()) + return this.neg().mul(multiplier.neg()); + else + return this.neg().mul(multiplier).neg(); + } + else if (multiplier.isNegative()) + return this.mul(multiplier.neg()).neg(); + // If both longs are small, use float multiplication + if (this.lt(Long.TWO_PWR_24) && multiplier.lt(Long.TWO_PWR_24)) + return Long.fromNumber(this.toNumber() * multiplier.toNumber(), this.unsigned); + // Divide each long into 4 chunks of 16 bits, and then add up 4x4 products. + // We can skip products that would overflow. + var a48 = this.high >>> 16; + var a32 = this.high & 0xffff; + var a16 = this.low >>> 16; + var a00 = this.low & 0xffff; + var b48 = multiplier.high >>> 16; + var b32 = multiplier.high & 0xffff; + var b16 = multiplier.low >>> 16; + var b00 = multiplier.low & 0xffff; + var c48 = 0, c32 = 0, c16 = 0, c00 = 0; + c00 += a00 * b00; + c16 += c00 >>> 16; + c00 &= 0xffff; + c16 += a16 * b00; + c32 += c16 >>> 16; + c16 &= 0xffff; + c16 += a00 * b16; + c32 += c16 >>> 16; + c16 &= 0xffff; + c32 += a32 * b00; + c48 += c32 >>> 16; + c32 &= 0xffff; + c32 += a16 * b16; + c48 += c32 >>> 16; + c32 &= 0xffff; + c32 += a00 * b32; + c48 += c32 >>> 16; + c32 &= 0xffff; + c48 += a48 * b00 + a32 * b16 + a16 * b32 + a00 * b48; + c48 &= 0xffff; + return Long.fromBits((c16 << 16) | c00, (c48 << 16) | c32, this.unsigned); + }; + /** This is an alias of {@link Long.multiply} */ + Long.prototype.mul = function (multiplier) { + return this.multiply(multiplier); + }; + /** Returns the Negation of this Long's value. */ + Long.prototype.negate = function () { + if (!this.unsigned && this.eq(Long.MIN_VALUE)) + return Long.MIN_VALUE; + return this.not().add(Long.ONE); + }; + /** This is an alias of {@link Long.negate} */ + Long.prototype.neg = function () { + return this.negate(); + }; + /** Returns the bitwise NOT of this Long. */ + Long.prototype.not = function () { + return Long.fromBits(~this.low, ~this.high, this.unsigned); + }; + /** Tests if this Long's value differs from the specified's. */ + Long.prototype.notEquals = function (other) { + return !this.equals(other); + }; + /** This is an alias of {@link Long.notEquals} */ + Long.prototype.neq = function (other) { + return this.notEquals(other); + }; + /** This is an alias of {@link Long.notEquals} */ + Long.prototype.ne = function (other) { + return this.notEquals(other); + }; + /** + * Returns the bitwise OR of this Long and the specified. + */ + Long.prototype.or = function (other) { + if (!Long.isLong(other)) + other = Long.fromValue(other); + return Long.fromBits(this.low | other.low, this.high | other.high, this.unsigned); + }; + /** + * Returns this Long with bits shifted to the left by the given amount. + * @param numBits - Number of bits + * @returns Shifted Long + */ + Long.prototype.shiftLeft = function (numBits) { + if (Long.isLong(numBits)) + numBits = numBits.toInt(); + if ((numBits &= 63) === 0) + return this; + else if (numBits < 32) + return Long.fromBits(this.low << numBits, (this.high << numBits) | (this.low >>> (32 - numBits)), this.unsigned); + else + return Long.fromBits(0, this.low << (numBits - 32), this.unsigned); + }; + /** This is an alias of {@link Long.shiftLeft} */ + Long.prototype.shl = function (numBits) { + return this.shiftLeft(numBits); + }; + /** + * Returns this Long with bits arithmetically shifted to the right by the given amount. + * @param numBits - Number of bits + * @returns Shifted Long + */ + Long.prototype.shiftRight = function (numBits) { + if (Long.isLong(numBits)) + numBits = numBits.toInt(); + if ((numBits &= 63) === 0) + return this; + else if (numBits < 32) + return Long.fromBits((this.low >>> numBits) | (this.high << (32 - numBits)), this.high >> numBits, this.unsigned); + else + return Long.fromBits(this.high >> (numBits - 32), this.high >= 0 ? 0 : -1, this.unsigned); + }; + /** This is an alias of {@link Long.shiftRight} */ + Long.prototype.shr = function (numBits) { + return this.shiftRight(numBits); + }; + /** + * Returns this Long with bits logically shifted to the right by the given amount. + * @param numBits - Number of bits + * @returns Shifted Long + */ + Long.prototype.shiftRightUnsigned = function (numBits) { + if (Long.isLong(numBits)) + numBits = numBits.toInt(); + numBits &= 63; + if (numBits === 0) + return this; + else { + var high = this.high; + if (numBits < 32) { + var low = this.low; + return Long.fromBits((low >>> numBits) | (high << (32 - numBits)), high >>> numBits, this.unsigned); + } + else if (numBits === 32) + return Long.fromBits(high, 0, this.unsigned); + else + return Long.fromBits(high >>> (numBits - 32), 0, this.unsigned); + } + }; + /** This is an alias of {@link Long.shiftRightUnsigned} */ + Long.prototype.shr_u = function (numBits) { + return this.shiftRightUnsigned(numBits); + }; + /** This is an alias of {@link Long.shiftRightUnsigned} */ + Long.prototype.shru = function (numBits) { + return this.shiftRightUnsigned(numBits); + }; + /** + * Returns the difference of this and the specified Long. + * @param subtrahend - Subtrahend + * @returns Difference + */ + Long.prototype.subtract = function (subtrahend) { + if (!Long.isLong(subtrahend)) + subtrahend = Long.fromValue(subtrahend); + return this.add(subtrahend.neg()); + }; + /** This is an alias of {@link Long.subtract} */ + Long.prototype.sub = function (subtrahend) { + return this.subtract(subtrahend); + }; + /** Converts the Long to a 32 bit integer, assuming it is a 32 bit integer. */ + Long.prototype.toInt = function () { + return this.unsigned ? this.low >>> 0 : this.low; + }; + /** Converts the Long to a the nearest floating-point representation of this value (double, 53 bit mantissa). */ + Long.prototype.toNumber = function () { + if (this.unsigned) + return (this.high >>> 0) * TWO_PWR_32_DBL + (this.low >>> 0); + return this.high * TWO_PWR_32_DBL + (this.low >>> 0); + }; + /** Converts the Long to a BigInt (arbitrary precision). */ + Long.prototype.toBigInt = function () { + return BigInt(this.toString()); + }; + /** + * Converts this Long to its byte representation. + * @param le - Whether little or big endian, defaults to big endian + * @returns Byte representation + */ + Long.prototype.toBytes = function (le) { + return le ? this.toBytesLE() : this.toBytesBE(); + }; + /** + * Converts this Long to its little endian byte representation. + * @returns Little endian byte representation + */ + Long.prototype.toBytesLE = function () { + var hi = this.high, lo = this.low; + return [ + lo & 0xff, + (lo >>> 8) & 0xff, + (lo >>> 16) & 0xff, + lo >>> 24, + hi & 0xff, + (hi >>> 8) & 0xff, + (hi >>> 16) & 0xff, + hi >>> 24 + ]; + }; + /** + * Converts this Long to its big endian byte representation. + * @returns Big endian byte representation + */ + Long.prototype.toBytesBE = function () { + var hi = this.high, lo = this.low; + return [ + hi >>> 24, + (hi >>> 16) & 0xff, + (hi >>> 8) & 0xff, + hi & 0xff, + lo >>> 24, + (lo >>> 16) & 0xff, + (lo >>> 8) & 0xff, + lo & 0xff + ]; + }; + /** + * Converts this Long to signed. + */ + Long.prototype.toSigned = function () { + if (!this.unsigned) + return this; + return Long.fromBits(this.low, this.high, false); + }; + /** + * Converts the Long to a string written in the specified radix. + * @param radix - Radix (2-36), defaults to 10 + * @throws RangeError If `radix` is out of range + */ + Long.prototype.toString = function (radix) { + radix = radix || 10; + if (radix < 2 || 36 < radix) + throw RangeError('radix'); + if (this.isZero()) + return '0'; + if (this.isNegative()) { + // Unsigned Longs are never negative + if (this.eq(Long.MIN_VALUE)) { + // We need to change the Long value before it can be negated, so we remove + // the bottom-most digit in this base and then recurse to do the rest. + var radixLong = Long.fromNumber(radix), div = this.div(radixLong), rem1 = div.mul(radixLong).sub(this); + return div.toString(radix) + rem1.toInt().toString(radix); + } + else + return '-' + this.neg().toString(radix); + } + // Do several (6) digits each time through the loop, so as to + // minimize the calls to the very expensive emulated div. + var radixToPower = Long.fromNumber(Math.pow(radix, 6), this.unsigned); + // eslint-disable-next-line @typescript-eslint/no-this-alias + var rem = this; + var result = ''; + // eslint-disable-next-line no-constant-condition + while (true) { + var remDiv = rem.div(radixToPower); + var intval = rem.sub(remDiv.mul(radixToPower)).toInt() >>> 0; + var digits = intval.toString(radix); + rem = remDiv; + if (rem.isZero()) { + return digits + result; + } + else { + while (digits.length < 6) + digits = '0' + digits; + result = '' + digits + result; + } + } + }; + /** Converts this Long to unsigned. */ + Long.prototype.toUnsigned = function () { + if (this.unsigned) + return this; + return Long.fromBits(this.low, this.high, true); + }; + /** Returns the bitwise XOR of this Long and the given one. */ + Long.prototype.xor = function (other) { + if (!Long.isLong(other)) + other = Long.fromValue(other); + return Long.fromBits(this.low ^ other.low, this.high ^ other.high, this.unsigned); + }; + /** This is an alias of {@link Long.isZero} */ + Long.prototype.eqz = function () { + return this.isZero(); + }; + /** This is an alias of {@link Long.lessThanOrEqual} */ + Long.prototype.le = function (other) { + return this.lessThanOrEqual(other); + }; + /* + **************************************************************** + * BSON SPECIFIC ADDITIONS * + **************************************************************** + */ + Long.prototype.toExtendedJSON = function (options) { + if (options && options.relaxed) + return this.toNumber(); + return { $numberLong: this.toString() }; + }; + Long.fromExtendedJSON = function (doc, options) { + var result = Long.fromString(doc.$numberLong); + return options && options.relaxed ? result.toNumber() : result; + }; + /** @internal */ + Long.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () { + return this.inspect(); + }; + Long.prototype.inspect = function () { + return "new Long(\"".concat(this.toString(), "\"").concat(this.unsigned ? ', true' : '', ")"); + }; + Long.TWO_PWR_24 = Long.fromInt(TWO_PWR_24_DBL); + /** Maximum unsigned value. */ + Long.MAX_UNSIGNED_VALUE = Long.fromBits(0xffffffff | 0, 0xffffffff | 0, true); + /** Signed zero */ + Long.ZERO = Long.fromInt(0); + /** Unsigned zero. */ + Long.UZERO = Long.fromInt(0, true); + /** Signed one. */ + Long.ONE = Long.fromInt(1); + /** Unsigned one. */ + Long.UONE = Long.fromInt(1, true); + /** Signed negative one. */ + Long.NEG_ONE = Long.fromInt(-1); + /** Maximum signed value. */ + Long.MAX_VALUE = Long.fromBits(0xffffffff | 0, 0x7fffffff | 0, false); + /** Minimum signed value. */ + Long.MIN_VALUE = Long.fromBits(0, 0x80000000 | 0, false); + return Long; + }()); + Object.defineProperty(Long.prototype, '__isLong__', { value: true }); + Object.defineProperty(Long.prototype, '_bsontype', { value: 'Long' }); + + var PARSE_STRING_REGEXP = /^(\+|-)?(\d+|(\d*\.\d*))?(E|e)?([-+])?(\d+)?$/; + var PARSE_INF_REGEXP = /^(\+|-)?(Infinity|inf)$/i; + var PARSE_NAN_REGEXP = /^(\+|-)?NaN$/i; + var EXPONENT_MAX = 6111; + var EXPONENT_MIN = -6176; + var EXPONENT_BIAS = 6176; + var MAX_DIGITS = 34; + // Nan value bits as 32 bit values (due to lack of longs) + var NAN_BUFFER = [ + 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 + ].reverse(); + // Infinity value bits 32 bit values (due to lack of longs) + var INF_NEGATIVE_BUFFER = [ + 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 + ].reverse(); + var INF_POSITIVE_BUFFER = [ + 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 + ].reverse(); + var EXPONENT_REGEX = /^([-+])?(\d+)?$/; + // Extract least significant 5 bits + var COMBINATION_MASK = 0x1f; + // Extract least significant 14 bits + var EXPONENT_MASK = 0x3fff; + // Value of combination field for Inf + var COMBINATION_INFINITY = 30; + // Value of combination field for NaN + var COMBINATION_NAN = 31; + // Detect if the value is a digit + function isDigit(value) { + return !isNaN(parseInt(value, 10)); + } + // Divide two uint128 values + function divideu128(value) { + var DIVISOR = Long.fromNumber(1000 * 1000 * 1000); + var _rem = Long.fromNumber(0); + if (!value.parts[0] && !value.parts[1] && !value.parts[2] && !value.parts[3]) { + return { quotient: value, rem: _rem }; + } + for (var i = 0; i <= 3; i++) { + // Adjust remainder to match value of next dividend + _rem = _rem.shiftLeft(32); + // Add the divided to _rem + _rem = _rem.add(new Long(value.parts[i], 0)); + value.parts[i] = _rem.div(DIVISOR).low; + _rem = _rem.modulo(DIVISOR); + } + return { quotient: value, rem: _rem }; + } + // Multiply two Long values and return the 128 bit value + function multiply64x2(left, right) { + if (!left && !right) { + return { high: Long.fromNumber(0), low: Long.fromNumber(0) }; + } + var leftHigh = left.shiftRightUnsigned(32); + var leftLow = new Long(left.getLowBits(), 0); + var rightHigh = right.shiftRightUnsigned(32); + var rightLow = new Long(right.getLowBits(), 0); + var productHigh = leftHigh.multiply(rightHigh); + var productMid = leftHigh.multiply(rightLow); + var productMid2 = leftLow.multiply(rightHigh); + var productLow = leftLow.multiply(rightLow); + productHigh = productHigh.add(productMid.shiftRightUnsigned(32)); + productMid = new Long(productMid.getLowBits(), 0) + .add(productMid2) + .add(productLow.shiftRightUnsigned(32)); + productHigh = productHigh.add(productMid.shiftRightUnsigned(32)); + productLow = productMid.shiftLeft(32).add(new Long(productLow.getLowBits(), 0)); + // Return the 128 bit result + return { high: productHigh, low: productLow }; + } + function lessThan(left, right) { + // Make values unsigned + var uhleft = left.high >>> 0; + var uhright = right.high >>> 0; + // Compare high bits first + if (uhleft < uhright) { + return true; + } + else if (uhleft === uhright) { + var ulleft = left.low >>> 0; + var ulright = right.low >>> 0; + if (ulleft < ulright) + return true; + } + return false; + } + function invalidErr(string, message) { + throw new BSONTypeError("\"".concat(string, "\" is not a valid Decimal128 string - ").concat(message)); + } + /** + * A class representation of the BSON Decimal128 type. + * @public + * @category BSONType + */ + var Decimal128 = /** @class */ (function () { + /** + * @param bytes - a buffer containing the raw Decimal128 bytes in little endian order, + * or a string representation as returned by .toString() + */ + function Decimal128(bytes) { + if (!(this instanceof Decimal128)) + return new Decimal128(bytes); + if (typeof bytes === 'string') { + this.bytes = Decimal128.fromString(bytes).bytes; + } + else if (isUint8Array(bytes)) { + if (bytes.byteLength !== 16) { + throw new BSONTypeError('Decimal128 must take a Buffer of 16 bytes'); + } + this.bytes = bytes; + } + else { + throw new BSONTypeError('Decimal128 must take a Buffer or string'); + } + } + /** + * Create a Decimal128 instance from a string representation + * + * @param representation - a numeric string representation. + */ + Decimal128.fromString = function (representation) { + // Parse state tracking + var isNegative = false; + var sawRadix = false; + var foundNonZero = false; + // Total number of significant digits (no leading or trailing zero) + var significantDigits = 0; + // Total number of significand digits read + var nDigitsRead = 0; + // Total number of digits (no leading zeros) + var nDigits = 0; + // The number of the digits after radix + var radixPosition = 0; + // The index of the first non-zero in *str* + var firstNonZero = 0; + // Digits Array + var digits = [0]; + // The number of digits in digits + var nDigitsStored = 0; + // Insertion pointer for digits + var digitsInsert = 0; + // The index of the first non-zero digit + var firstDigit = 0; + // The index of the last digit + var lastDigit = 0; + // Exponent + var exponent = 0; + // loop index over array + var i = 0; + // The high 17 digits of the significand + var significandHigh = new Long(0, 0); + // The low 17 digits of the significand + var significandLow = new Long(0, 0); + // The biased exponent + var biasedExponent = 0; + // Read index + var index = 0; + // Naively prevent against REDOS attacks. + // TODO: implementing a custom parsing for this, or refactoring the regex would yield + // further gains. + if (representation.length >= 7000) { + throw new BSONTypeError('' + representation + ' not a valid Decimal128 string'); + } + // Results + var stringMatch = representation.match(PARSE_STRING_REGEXP); + var infMatch = representation.match(PARSE_INF_REGEXP); + var nanMatch = representation.match(PARSE_NAN_REGEXP); + // Validate the string + if ((!stringMatch && !infMatch && !nanMatch) || representation.length === 0) { + throw new BSONTypeError('' + representation + ' not a valid Decimal128 string'); + } + if (stringMatch) { + // full_match = stringMatch[0] + // sign = stringMatch[1] + var unsignedNumber = stringMatch[2]; + // stringMatch[3] is undefined if a whole number (ex "1", 12") + // but defined if a number w/ decimal in it (ex "1.0, 12.2") + var e = stringMatch[4]; + var expSign = stringMatch[5]; + var expNumber = stringMatch[6]; + // they provided e, but didn't give an exponent number. for ex "1e" + if (e && expNumber === undefined) + invalidErr(representation, 'missing exponent power'); + // they provided e, but didn't give a number before it. for ex "e1" + if (e && unsignedNumber === undefined) + invalidErr(representation, 'missing exponent base'); + if (e === undefined && (expSign || expNumber)) { + invalidErr(representation, 'missing e before exponent'); + } + } + // Get the negative or positive sign + if (representation[index] === '+' || representation[index] === '-') { + isNegative = representation[index++] === '-'; + } + // Check if user passed Infinity or NaN + if (!isDigit(representation[index]) && representation[index] !== '.') { + if (representation[index] === 'i' || representation[index] === 'I') { + return new Decimal128(buffer_1.from(isNegative ? INF_NEGATIVE_BUFFER : INF_POSITIVE_BUFFER)); + } + else if (representation[index] === 'N') { + return new Decimal128(buffer_1.from(NAN_BUFFER)); + } + } + // Read all the digits + while (isDigit(representation[index]) || representation[index] === '.') { + if (representation[index] === '.') { + if (sawRadix) + invalidErr(representation, 'contains multiple periods'); + sawRadix = true; + index = index + 1; + continue; + } + if (nDigitsStored < 34) { + if (representation[index] !== '0' || foundNonZero) { + if (!foundNonZero) { + firstNonZero = nDigitsRead; + } + foundNonZero = true; + // Only store 34 digits + digits[digitsInsert++] = parseInt(representation[index], 10); + nDigitsStored = nDigitsStored + 1; + } + } + if (foundNonZero) + nDigits = nDigits + 1; + if (sawRadix) + radixPosition = radixPosition + 1; + nDigitsRead = nDigitsRead + 1; + index = index + 1; + } + if (sawRadix && !nDigitsRead) + throw new BSONTypeError('' + representation + ' not a valid Decimal128 string'); + // Read exponent if exists + if (representation[index] === 'e' || representation[index] === 'E') { + // Read exponent digits + var match = representation.substr(++index).match(EXPONENT_REGEX); + // No digits read + if (!match || !match[2]) + return new Decimal128(buffer_1.from(NAN_BUFFER)); + // Get exponent + exponent = parseInt(match[0], 10); + // Adjust the index + index = index + match[0].length; + } + // Return not a number + if (representation[index]) + return new Decimal128(buffer_1.from(NAN_BUFFER)); + // Done reading input + // Find first non-zero digit in digits + firstDigit = 0; + if (!nDigitsStored) { + firstDigit = 0; + lastDigit = 0; + digits[0] = 0; + nDigits = 1; + nDigitsStored = 1; + significantDigits = 0; + } + else { + lastDigit = nDigitsStored - 1; + significantDigits = nDigits; + if (significantDigits !== 1) { + while (digits[firstNonZero + significantDigits - 1] === 0) { + significantDigits = significantDigits - 1; + } + } + } + // Normalization of exponent + // Correct exponent based on radix position, and shift significand as needed + // to represent user input + // Overflow prevention + if (exponent <= radixPosition && radixPosition - exponent > 1 << 14) { + exponent = EXPONENT_MIN; + } + else { + exponent = exponent - radixPosition; + } + // Attempt to normalize the exponent + while (exponent > EXPONENT_MAX) { + // Shift exponent to significand and decrease + lastDigit = lastDigit + 1; + if (lastDigit - firstDigit > MAX_DIGITS) { + // Check if we have a zero then just hard clamp, otherwise fail + var digitsString = digits.join(''); + if (digitsString.match(/^0+$/)) { + exponent = EXPONENT_MAX; + break; + } + invalidErr(representation, 'overflow'); + } + exponent = exponent - 1; + } + while (exponent < EXPONENT_MIN || nDigitsStored < nDigits) { + // Shift last digit. can only do this if < significant digits than # stored. + if (lastDigit === 0 && significantDigits < nDigitsStored) { + exponent = EXPONENT_MIN; + significantDigits = 0; + break; + } + if (nDigitsStored < nDigits) { + // adjust to match digits not stored + nDigits = nDigits - 1; + } + else { + // adjust to round + lastDigit = lastDigit - 1; + } + if (exponent < EXPONENT_MAX) { + exponent = exponent + 1; + } + else { + // Check if we have a zero then just hard clamp, otherwise fail + var digitsString = digits.join(''); + if (digitsString.match(/^0+$/)) { + exponent = EXPONENT_MAX; + break; + } + invalidErr(representation, 'overflow'); + } + } + // Round + // We've normalized the exponent, but might still need to round. + if (lastDigit - firstDigit + 1 < significantDigits) { + var endOfString = nDigitsRead; + // If we have seen a radix point, 'string' is 1 longer than we have + // documented with ndigits_read, so inc the position of the first nonzero + // digit and the position that digits are read to. + if (sawRadix) { + firstNonZero = firstNonZero + 1; + endOfString = endOfString + 1; + } + // if negative, we need to increment again to account for - sign at start. + if (isNegative) { + firstNonZero = firstNonZero + 1; + endOfString = endOfString + 1; + } + var roundDigit = parseInt(representation[firstNonZero + lastDigit + 1], 10); + var roundBit = 0; + if (roundDigit >= 5) { + roundBit = 1; + if (roundDigit === 5) { + roundBit = digits[lastDigit] % 2 === 1 ? 1 : 0; + for (i = firstNonZero + lastDigit + 2; i < endOfString; i++) { + if (parseInt(representation[i], 10)) { + roundBit = 1; + break; + } + } + } + } + if (roundBit) { + var dIdx = lastDigit; + for (; dIdx >= 0; dIdx--) { + if (++digits[dIdx] > 9) { + digits[dIdx] = 0; + // overflowed most significant digit + if (dIdx === 0) { + if (exponent < EXPONENT_MAX) { + exponent = exponent + 1; + digits[dIdx] = 1; + } + else { + return new Decimal128(buffer_1.from(isNegative ? INF_NEGATIVE_BUFFER : INF_POSITIVE_BUFFER)); + } + } + } + } + } + } + // Encode significand + // The high 17 digits of the significand + significandHigh = Long.fromNumber(0); + // The low 17 digits of the significand + significandLow = Long.fromNumber(0); + // read a zero + if (significantDigits === 0) { + significandHigh = Long.fromNumber(0); + significandLow = Long.fromNumber(0); + } + else if (lastDigit - firstDigit < 17) { + var dIdx = firstDigit; + significandLow = Long.fromNumber(digits[dIdx++]); + significandHigh = new Long(0, 0); + for (; dIdx <= lastDigit; dIdx++) { + significandLow = significandLow.multiply(Long.fromNumber(10)); + significandLow = significandLow.add(Long.fromNumber(digits[dIdx])); + } + } + else { + var dIdx = firstDigit; + significandHigh = Long.fromNumber(digits[dIdx++]); + for (; dIdx <= lastDigit - 17; dIdx++) { + significandHigh = significandHigh.multiply(Long.fromNumber(10)); + significandHigh = significandHigh.add(Long.fromNumber(digits[dIdx])); + } + significandLow = Long.fromNumber(digits[dIdx++]); + for (; dIdx <= lastDigit; dIdx++) { + significandLow = significandLow.multiply(Long.fromNumber(10)); + significandLow = significandLow.add(Long.fromNumber(digits[dIdx])); + } + } + var significand = multiply64x2(significandHigh, Long.fromString('100000000000000000')); + significand.low = significand.low.add(significandLow); + if (lessThan(significand.low, significandLow)) { + significand.high = significand.high.add(Long.fromNumber(1)); + } + // Biased exponent + biasedExponent = exponent + EXPONENT_BIAS; + var dec = { low: Long.fromNumber(0), high: Long.fromNumber(0) }; + // Encode combination, exponent, and significand. + if (significand.high.shiftRightUnsigned(49).and(Long.fromNumber(1)).equals(Long.fromNumber(1))) { + // Encode '11' into bits 1 to 3 + dec.high = dec.high.or(Long.fromNumber(0x3).shiftLeft(61)); + dec.high = dec.high.or(Long.fromNumber(biasedExponent).and(Long.fromNumber(0x3fff).shiftLeft(47))); + dec.high = dec.high.or(significand.high.and(Long.fromNumber(0x7fffffffffff))); + } + else { + dec.high = dec.high.or(Long.fromNumber(biasedExponent & 0x3fff).shiftLeft(49)); + dec.high = dec.high.or(significand.high.and(Long.fromNumber(0x1ffffffffffff))); + } + dec.low = significand.low; + // Encode sign + if (isNegative) { + dec.high = dec.high.or(Long.fromString('9223372036854775808')); + } + // Encode into a buffer + var buffer = buffer_1.alloc(16); + index = 0; + // Encode the low 64 bits of the decimal + // Encode low bits + buffer[index++] = dec.low.low & 0xff; + buffer[index++] = (dec.low.low >> 8) & 0xff; + buffer[index++] = (dec.low.low >> 16) & 0xff; + buffer[index++] = (dec.low.low >> 24) & 0xff; + // Encode high bits + buffer[index++] = dec.low.high & 0xff; + buffer[index++] = (dec.low.high >> 8) & 0xff; + buffer[index++] = (dec.low.high >> 16) & 0xff; + buffer[index++] = (dec.low.high >> 24) & 0xff; + // Encode the high 64 bits of the decimal + // Encode low bits + buffer[index++] = dec.high.low & 0xff; + buffer[index++] = (dec.high.low >> 8) & 0xff; + buffer[index++] = (dec.high.low >> 16) & 0xff; + buffer[index++] = (dec.high.low >> 24) & 0xff; + // Encode high bits + buffer[index++] = dec.high.high & 0xff; + buffer[index++] = (dec.high.high >> 8) & 0xff; + buffer[index++] = (dec.high.high >> 16) & 0xff; + buffer[index++] = (dec.high.high >> 24) & 0xff; + // Return the new Decimal128 + return new Decimal128(buffer); + }; + /** Create a string representation of the raw Decimal128 value */ + Decimal128.prototype.toString = function () { + // Note: bits in this routine are referred to starting at 0, + // from the sign bit, towards the coefficient. + // decoded biased exponent (14 bits) + var biased_exponent; + // the number of significand digits + var significand_digits = 0; + // the base-10 digits in the significand + var significand = new Array(36); + for (var i = 0; i < significand.length; i++) + significand[i] = 0; + // read pointer into significand + var index = 0; + // true if the number is zero + var is_zero = false; + // the most significant significand bits (50-46) + var significand_msb; + // temporary storage for significand decoding + var significand128 = { parts: [0, 0, 0, 0] }; + // indexing variables + var j, k; + // Output string + var string = []; + // Unpack index + index = 0; + // Buffer reference + var buffer = this.bytes; + // Unpack the low 64bits into a long + // bits 96 - 127 + var low = buffer[index++] | (buffer[index++] << 8) | (buffer[index++] << 16) | (buffer[index++] << 24); + // bits 64 - 95 + var midl = buffer[index++] | (buffer[index++] << 8) | (buffer[index++] << 16) | (buffer[index++] << 24); + // Unpack the high 64bits into a long + // bits 32 - 63 + var midh = buffer[index++] | (buffer[index++] << 8) | (buffer[index++] << 16) | (buffer[index++] << 24); + // bits 0 - 31 + var high = buffer[index++] | (buffer[index++] << 8) | (buffer[index++] << 16) | (buffer[index++] << 24); + // Unpack index + index = 0; + // Create the state of the decimal + var dec = { + low: new Long(low, midl), + high: new Long(midh, high) + }; + if (dec.high.lessThan(Long.ZERO)) { + string.push('-'); + } + // Decode combination field and exponent + // bits 1 - 5 + var combination = (high >> 26) & COMBINATION_MASK; + if (combination >> 3 === 3) { + // Check for 'special' values + if (combination === COMBINATION_INFINITY) { + return string.join('') + 'Infinity'; + } + else if (combination === COMBINATION_NAN) { + return 'NaN'; + } + else { + biased_exponent = (high >> 15) & EXPONENT_MASK; + significand_msb = 0x08 + ((high >> 14) & 0x01); + } + } + else { + significand_msb = (high >> 14) & 0x07; + biased_exponent = (high >> 17) & EXPONENT_MASK; + } + // unbiased exponent + var exponent = biased_exponent - EXPONENT_BIAS; + // Create string of significand digits + // Convert the 114-bit binary number represented by + // (significand_high, significand_low) to at most 34 decimal + // digits through modulo and division. + significand128.parts[0] = (high & 0x3fff) + ((significand_msb & 0xf) << 14); + significand128.parts[1] = midh; + significand128.parts[2] = midl; + significand128.parts[3] = low; + if (significand128.parts[0] === 0 && + significand128.parts[1] === 0 && + significand128.parts[2] === 0 && + significand128.parts[3] === 0) { + is_zero = true; + } + else { + for (k = 3; k >= 0; k--) { + var least_digits = 0; + // Perform the divide + var result = divideu128(significand128); + significand128 = result.quotient; + least_digits = result.rem.low; + // We now have the 9 least significant digits (in base 2). + // Convert and output to string. + if (!least_digits) + continue; + for (j = 8; j >= 0; j--) { + // significand[k * 9 + j] = Math.round(least_digits % 10); + significand[k * 9 + j] = least_digits % 10; + // least_digits = Math.round(least_digits / 10); + least_digits = Math.floor(least_digits / 10); + } + } + } + // Output format options: + // Scientific - [-]d.dddE(+/-)dd or [-]dE(+/-)dd + // Regular - ddd.ddd + if (is_zero) { + significand_digits = 1; + significand[index] = 0; + } + else { + significand_digits = 36; + while (!significand[index]) { + significand_digits = significand_digits - 1; + index = index + 1; + } + } + // the exponent if scientific notation is used + var scientific_exponent = significand_digits - 1 + exponent; + // The scientific exponent checks are dictated by the string conversion + // specification and are somewhat arbitrary cutoffs. + // + // We must check exponent > 0, because if this is the case, the number + // has trailing zeros. However, we *cannot* output these trailing zeros, + // because doing so would change the precision of the value, and would + // change stored data if the string converted number is round tripped. + if (scientific_exponent >= 34 || scientific_exponent <= -7 || exponent > 0) { + // Scientific format + // if there are too many significant digits, we should just be treating numbers + // as + or - 0 and using the non-scientific exponent (this is for the "invalid + // representation should be treated as 0/-0" spec cases in decimal128-1.json) + if (significand_digits > 34) { + string.push("".concat(0)); + if (exponent > 0) + string.push("E+".concat(exponent)); + else if (exponent < 0) + string.push("E".concat(exponent)); + return string.join(''); + } + string.push("".concat(significand[index++])); + significand_digits = significand_digits - 1; + if (significand_digits) { + string.push('.'); + } + for (var i = 0; i < significand_digits; i++) { + string.push("".concat(significand[index++])); + } + // Exponent + string.push('E'); + if (scientific_exponent > 0) { + string.push("+".concat(scientific_exponent)); + } + else { + string.push("".concat(scientific_exponent)); + } + } + else { + // Regular format with no decimal place + if (exponent >= 0) { + for (var i = 0; i < significand_digits; i++) { + string.push("".concat(significand[index++])); + } + } + else { + var radix_position = significand_digits + exponent; + // non-zero digits before radix + if (radix_position > 0) { + for (var i = 0; i < radix_position; i++) { + string.push("".concat(significand[index++])); + } + } + else { + string.push('0'); + } + string.push('.'); + // add leading zeros after radix + while (radix_position++ < 0) { + string.push('0'); + } + for (var i = 0; i < significand_digits - Math.max(radix_position - 1, 0); i++) { + string.push("".concat(significand[index++])); + } + } + } + return string.join(''); + }; + Decimal128.prototype.toJSON = function () { + return { $numberDecimal: this.toString() }; + }; + /** @internal */ + Decimal128.prototype.toExtendedJSON = function () { + return { $numberDecimal: this.toString() }; + }; + /** @internal */ + Decimal128.fromExtendedJSON = function (doc) { + return Decimal128.fromString(doc.$numberDecimal); + }; + /** @internal */ + Decimal128.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () { + return this.inspect(); + }; + Decimal128.prototype.inspect = function () { + return "new Decimal128(\"".concat(this.toString(), "\")"); + }; + return Decimal128; + }()); + Object.defineProperty(Decimal128.prototype, '_bsontype', { value: 'Decimal128' }); + + /** + * A class representation of the BSON Double type. + * @public + * @category BSONType + */ + var Double = /** @class */ (function () { + /** + * Create a Double type + * + * @param value - the number we want to represent as a double. + */ + function Double(value) { + if (!(this instanceof Double)) + return new Double(value); + if (value instanceof Number) { + value = value.valueOf(); + } + this.value = +value; + } + /** + * Access the number value. + * + * @returns returns the wrapped double number. + */ + Double.prototype.valueOf = function () { + return this.value; + }; + Double.prototype.toJSON = function () { + return this.value; + }; + Double.prototype.toString = function (radix) { + return this.value.toString(radix); + }; + /** @internal */ + Double.prototype.toExtendedJSON = function (options) { + if (options && (options.legacy || (options.relaxed && isFinite(this.value)))) { + return this.value; + } + // NOTE: JavaScript has +0 and -0, apparently to model limit calculations. If a user + // explicitly provided `-0` then we need to ensure the sign makes it into the output + if (Object.is(Math.sign(this.value), -0)) { + return { $numberDouble: "-".concat(this.value.toFixed(1)) }; + } + var $numberDouble; + if (Number.isInteger(this.value)) { + $numberDouble = this.value.toFixed(1); + if ($numberDouble.length >= 13) { + $numberDouble = this.value.toExponential(13).toUpperCase(); + } + } + else { + $numberDouble = this.value.toString(); + } + return { $numberDouble: $numberDouble }; + }; + /** @internal */ + Double.fromExtendedJSON = function (doc, options) { + var doubleValue = parseFloat(doc.$numberDouble); + return options && options.relaxed ? doubleValue : new Double(doubleValue); + }; + /** @internal */ + Double.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () { + return this.inspect(); + }; + Double.prototype.inspect = function () { + var eJSON = this.toExtendedJSON(); + return "new Double(".concat(eJSON.$numberDouble, ")"); + }; + return Double; + }()); + Object.defineProperty(Double.prototype, '_bsontype', { value: 'Double' }); + + /** + * A class representation of a BSON Int32 type. + * @public + * @category BSONType + */ + var Int32 = /** @class */ (function () { + /** + * Create an Int32 type + * + * @param value - the number we want to represent as an int32. + */ + function Int32(value) { + if (!(this instanceof Int32)) + return new Int32(value); + if (value instanceof Number) { + value = value.valueOf(); + } + this.value = +value | 0; + } + /** + * Access the number value. + * + * @returns returns the wrapped int32 number. + */ + Int32.prototype.valueOf = function () { + return this.value; + }; + Int32.prototype.toString = function (radix) { + return this.value.toString(radix); + }; + Int32.prototype.toJSON = function () { + return this.value; + }; + /** @internal */ + Int32.prototype.toExtendedJSON = function (options) { + if (options && (options.relaxed || options.legacy)) + return this.value; + return { $numberInt: this.value.toString() }; + }; + /** @internal */ + Int32.fromExtendedJSON = function (doc, options) { + return options && options.relaxed ? parseInt(doc.$numberInt, 10) : new Int32(doc.$numberInt); + }; + /** @internal */ + Int32.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () { + return this.inspect(); + }; + Int32.prototype.inspect = function () { + return "new Int32(".concat(this.valueOf(), ")"); + }; + return Int32; + }()); + Object.defineProperty(Int32.prototype, '_bsontype', { value: 'Int32' }); + + /** + * A class representation of the BSON MaxKey type. + * @public + * @category BSONType + */ + var MaxKey = /** @class */ (function () { + function MaxKey() { + if (!(this instanceof MaxKey)) + return new MaxKey(); + } + /** @internal */ + MaxKey.prototype.toExtendedJSON = function () { + return { $maxKey: 1 }; + }; + /** @internal */ + MaxKey.fromExtendedJSON = function () { + return new MaxKey(); + }; + /** @internal */ + MaxKey.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () { + return this.inspect(); + }; + MaxKey.prototype.inspect = function () { + return 'new MaxKey()'; + }; + return MaxKey; + }()); + Object.defineProperty(MaxKey.prototype, '_bsontype', { value: 'MaxKey' }); + + /** + * A class representation of the BSON MinKey type. + * @public + * @category BSONType + */ + var MinKey = /** @class */ (function () { + function MinKey() { + if (!(this instanceof MinKey)) + return new MinKey(); + } + /** @internal */ + MinKey.prototype.toExtendedJSON = function () { + return { $minKey: 1 }; + }; + /** @internal */ + MinKey.fromExtendedJSON = function () { + return new MinKey(); + }; + /** @internal */ + MinKey.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () { + return this.inspect(); + }; + MinKey.prototype.inspect = function () { + return 'new MinKey()'; + }; + return MinKey; + }()); + Object.defineProperty(MinKey.prototype, '_bsontype', { value: 'MinKey' }); + + // Regular expression that checks for hex value + var checkForHexRegExp = new RegExp('^[0-9a-fA-F]{24}$'); + // Unique sequence for the current process (initialized on first use) + var PROCESS_UNIQUE = null; + var kId = Symbol('id'); + /** + * A class representation of the BSON ObjectId type. + * @public + * @category BSONType + */ + var ObjectId = /** @class */ (function () { + /** + * Create an ObjectId type + * + * @param inputId - Can be a 24 character hex string, 12 byte binary Buffer, or a number. + */ + function ObjectId(inputId) { + if (!(this instanceof ObjectId)) + return new ObjectId(inputId); + // workingId is set based on type of input and whether valid id exists for the input + var workingId; + if (typeof inputId === 'object' && inputId && 'id' in inputId) { + if (typeof inputId.id !== 'string' && !ArrayBuffer.isView(inputId.id)) { + throw new BSONTypeError('Argument passed in must have an id that is of type string or Buffer'); + } + if ('toHexString' in inputId && typeof inputId.toHexString === 'function') { + workingId = buffer_1.from(inputId.toHexString(), 'hex'); + } + else { + workingId = inputId.id; + } + } + else { + workingId = inputId; + } + // the following cases use workingId to construct an ObjectId + if (workingId == null || typeof workingId === 'number') { + // The most common use case (blank id, new objectId instance) + // Generate a new id + this[kId] = ObjectId.generate(typeof workingId === 'number' ? workingId : undefined); + } + else if (ArrayBuffer.isView(workingId) && workingId.byteLength === 12) { + // If intstanceof matches we can escape calling ensure buffer in Node.js environments + this[kId] = workingId instanceof buffer_1 ? workingId : ensureBuffer(workingId); + } + else if (typeof workingId === 'string') { + if (workingId.length === 12) { + var bytes = buffer_1.from(workingId); + if (bytes.byteLength === 12) { + this[kId] = bytes; + } + else { + throw new BSONTypeError('Argument passed in must be a string of 12 bytes'); + } + } + else if (workingId.length === 24 && checkForHexRegExp.test(workingId)) { + this[kId] = buffer_1.from(workingId, 'hex'); + } + else { + throw new BSONTypeError('Argument passed in must be a string of 12 bytes or a string of 24 hex characters or an integer'); + } + } + else { + throw new BSONTypeError('Argument passed in does not match the accepted types'); + } + // If we are caching the hex string + if (ObjectId.cacheHexString) { + this.__id = this.id.toString('hex'); + } + } + Object.defineProperty(ObjectId.prototype, "id", { + /** + * The ObjectId bytes + * @readonly + */ + get: function () { + return this[kId]; + }, + set: function (value) { + this[kId] = value; + if (ObjectId.cacheHexString) { + this.__id = value.toString('hex'); + } + }, + enumerable: false, + configurable: true + }); + Object.defineProperty(ObjectId.prototype, "generationTime", { + /** + * The generation time of this ObjectId instance + * @deprecated Please use getTimestamp / createFromTime which returns an int32 epoch + */ + get: function () { + return this.id.readInt32BE(0); + }, + set: function (value) { + // Encode time into first 4 bytes + this.id.writeUInt32BE(value, 0); + }, + enumerable: false, + configurable: true + }); + /** Returns the ObjectId id as a 24 character hex string representation */ + ObjectId.prototype.toHexString = function () { + if (ObjectId.cacheHexString && this.__id) { + return this.__id; + } + var hexString = this.id.toString('hex'); + if (ObjectId.cacheHexString && !this.__id) { + this.__id = hexString; + } + return hexString; + }; + /** + * Update the ObjectId index + * @privateRemarks + * Used in generating new ObjectId's on the driver + * @internal + */ + ObjectId.getInc = function () { + return (ObjectId.index = (ObjectId.index + 1) % 0xffffff); + }; + /** + * Generate a 12 byte id buffer used in ObjectId's + * + * @param time - pass in a second based timestamp. + */ + ObjectId.generate = function (time) { + if ('number' !== typeof time) { + time = Math.floor(Date.now() / 1000); + } + var inc = ObjectId.getInc(); + var buffer = buffer_1.alloc(12); + // 4-byte timestamp + buffer.writeUInt32BE(time, 0); + // set PROCESS_UNIQUE if yet not initialized + if (PROCESS_UNIQUE === null) { + PROCESS_UNIQUE = randomBytes(5); + } + // 5-byte process unique + buffer[4] = PROCESS_UNIQUE[0]; + buffer[5] = PROCESS_UNIQUE[1]; + buffer[6] = PROCESS_UNIQUE[2]; + buffer[7] = PROCESS_UNIQUE[3]; + buffer[8] = PROCESS_UNIQUE[4]; + // 3-byte counter + buffer[11] = inc & 0xff; + buffer[10] = (inc >> 8) & 0xff; + buffer[9] = (inc >> 16) & 0xff; + return buffer; + }; + /** + * Converts the id into a 24 character hex string for printing + * + * @param format - The Buffer toString format parameter. + */ + ObjectId.prototype.toString = function (format) { + // Is the id a buffer then use the buffer toString method to return the format + if (format) + return this.id.toString(format); + return this.toHexString(); + }; + /** Converts to its JSON the 24 character hex string representation. */ + ObjectId.prototype.toJSON = function () { + return this.toHexString(); + }; + /** + * Compares the equality of this ObjectId with `otherID`. + * + * @param otherId - ObjectId instance to compare against. + */ + ObjectId.prototype.equals = function (otherId) { + if (otherId === undefined || otherId === null) { + return false; + } + if (otherId instanceof ObjectId) { + return this[kId][11] === otherId[kId][11] && this[kId].equals(otherId[kId]); + } + if (typeof otherId === 'string' && + ObjectId.isValid(otherId) && + otherId.length === 12 && + isUint8Array(this.id)) { + return otherId === buffer_1.prototype.toString.call(this.id, 'latin1'); + } + if (typeof otherId === 'string' && ObjectId.isValid(otherId) && otherId.length === 24) { + return otherId.toLowerCase() === this.toHexString(); + } + if (typeof otherId === 'string' && ObjectId.isValid(otherId) && otherId.length === 12) { + return buffer_1.from(otherId).equals(this.id); + } + if (typeof otherId === 'object' && + 'toHexString' in otherId && + typeof otherId.toHexString === 'function') { + var otherIdString = otherId.toHexString(); + var thisIdString = this.toHexString().toLowerCase(); + return typeof otherIdString === 'string' && otherIdString.toLowerCase() === thisIdString; + } + return false; + }; + /** Returns the generation date (accurate up to the second) that this ID was generated. */ + ObjectId.prototype.getTimestamp = function () { + var timestamp = new Date(); + var time = this.id.readUInt32BE(0); + timestamp.setTime(Math.floor(time) * 1000); + return timestamp; + }; + /** @internal */ + ObjectId.createPk = function () { + return new ObjectId(); + }; + /** + * Creates an ObjectId from a second based number, with the rest of the ObjectId zeroed out. Used for comparisons or sorting the ObjectId. + * + * @param time - an integer number representing a number of seconds. + */ + ObjectId.createFromTime = function (time) { + var buffer = buffer_1.from([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]); + // Encode time into first 4 bytes + buffer.writeUInt32BE(time, 0); + // Return the new objectId + return new ObjectId(buffer); + }; + /** + * Creates an ObjectId from a hex string representation of an ObjectId. + * + * @param hexString - create a ObjectId from a passed in 24 character hexstring. + */ + ObjectId.createFromHexString = function (hexString) { + // Throw an error if it's not a valid setup + if (typeof hexString === 'undefined' || (hexString != null && hexString.length !== 24)) { + throw new BSONTypeError('Argument passed in must be a single String of 12 bytes or a string of 24 hex characters'); + } + return new ObjectId(buffer_1.from(hexString, 'hex')); + }; + /** + * Checks if a value is a valid bson ObjectId + * + * @param id - ObjectId instance to validate. + */ + ObjectId.isValid = function (id) { + if (id == null) + return false; + try { + new ObjectId(id); + return true; + } + catch (_a) { + return false; + } + }; + /** @internal */ + ObjectId.prototype.toExtendedJSON = function () { + if (this.toHexString) + return { $oid: this.toHexString() }; + return { $oid: this.toString('hex') }; + }; + /** @internal */ + ObjectId.fromExtendedJSON = function (doc) { + return new ObjectId(doc.$oid); + }; + /** + * Converts to a string representation of this Id. + * + * @returns return the 24 character hex string representation. + * @internal + */ + ObjectId.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () { + return this.inspect(); + }; + ObjectId.prototype.inspect = function () { + return "new ObjectId(\"".concat(this.toHexString(), "\")"); + }; + /** @internal */ + ObjectId.index = Math.floor(Math.random() * 0xffffff); + return ObjectId; + }()); + // Deprecated methods + Object.defineProperty(ObjectId.prototype, 'generate', { + value: deprecate(function (time) { return ObjectId.generate(time); }, 'Please use the static `ObjectId.generate(time)` instead') + }); + Object.defineProperty(ObjectId.prototype, 'getInc', { + value: deprecate(function () { return ObjectId.getInc(); }, 'Please use the static `ObjectId.getInc()` instead') + }); + Object.defineProperty(ObjectId.prototype, 'get_inc', { + value: deprecate(function () { return ObjectId.getInc(); }, 'Please use the static `ObjectId.getInc()` instead') + }); + Object.defineProperty(ObjectId, 'get_inc', { + value: deprecate(function () { return ObjectId.getInc(); }, 'Please use the static `ObjectId.getInc()` instead') + }); + Object.defineProperty(ObjectId.prototype, '_bsontype', { value: 'ObjectID' }); + + function alphabetize(str) { + return str.split('').sort().join(''); + } + /** + * A class representation of the BSON RegExp type. + * @public + * @category BSONType + */ + var BSONRegExp = /** @class */ (function () { + /** + * @param pattern - The regular expression pattern to match + * @param options - The regular expression options + */ + function BSONRegExp(pattern, options) { + if (!(this instanceof BSONRegExp)) + return new BSONRegExp(pattern, options); + this.pattern = pattern; + this.options = alphabetize(options !== null && options !== void 0 ? options : ''); + if (this.pattern.indexOf('\x00') !== -1) { + throw new BSONError("BSON Regex patterns cannot contain null bytes, found: ".concat(JSON.stringify(this.pattern))); + } + if (this.options.indexOf('\x00') !== -1) { + throw new BSONError("BSON Regex options cannot contain null bytes, found: ".concat(JSON.stringify(this.options))); + } + // Validate options + for (var i = 0; i < this.options.length; i++) { + if (!(this.options[i] === 'i' || + this.options[i] === 'm' || + this.options[i] === 'x' || + this.options[i] === 'l' || + this.options[i] === 's' || + this.options[i] === 'u')) { + throw new BSONError("The regular expression option [".concat(this.options[i], "] is not supported")); + } + } + } + BSONRegExp.parseOptions = function (options) { + return options ? options.split('').sort().join('') : ''; + }; + /** @internal */ + BSONRegExp.prototype.toExtendedJSON = function (options) { + options = options || {}; + if (options.legacy) { + return { $regex: this.pattern, $options: this.options }; + } + return { $regularExpression: { pattern: this.pattern, options: this.options } }; + }; + /** @internal */ + BSONRegExp.fromExtendedJSON = function (doc) { + if ('$regex' in doc) { + if (typeof doc.$regex !== 'string') { + // This is for $regex query operators that have extended json values. + if (doc.$regex._bsontype === 'BSONRegExp') { + return doc; + } + } + else { + return new BSONRegExp(doc.$regex, BSONRegExp.parseOptions(doc.$options)); + } + } + if ('$regularExpression' in doc) { + return new BSONRegExp(doc.$regularExpression.pattern, BSONRegExp.parseOptions(doc.$regularExpression.options)); + } + throw new BSONTypeError("Unexpected BSONRegExp EJSON object form: ".concat(JSON.stringify(doc))); + }; + return BSONRegExp; + }()); + Object.defineProperty(BSONRegExp.prototype, '_bsontype', { value: 'BSONRegExp' }); + + /** + * A class representation of the BSON Symbol type. + * @public + * @category BSONType + */ + var BSONSymbol = /** @class */ (function () { + /** + * @param value - the string representing the symbol. + */ + function BSONSymbol(value) { + if (!(this instanceof BSONSymbol)) + return new BSONSymbol(value); + this.value = value; + } + /** Access the wrapped string value. */ + BSONSymbol.prototype.valueOf = function () { + return this.value; + }; + BSONSymbol.prototype.toString = function () { + return this.value; + }; + /** @internal */ + BSONSymbol.prototype.inspect = function () { + return "new BSONSymbol(\"".concat(this.value, "\")"); + }; + BSONSymbol.prototype.toJSON = function () { + return this.value; + }; + /** @internal */ + BSONSymbol.prototype.toExtendedJSON = function () { + return { $symbol: this.value }; + }; + /** @internal */ + BSONSymbol.fromExtendedJSON = function (doc) { + return new BSONSymbol(doc.$symbol); + }; + /** @internal */ + BSONSymbol.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () { + return this.inspect(); + }; + return BSONSymbol; + }()); + Object.defineProperty(BSONSymbol.prototype, '_bsontype', { value: 'Symbol' }); + + /** @public */ + var LongWithoutOverridesClass = Long; + /** + * @public + * @category BSONType + * */ + var Timestamp = /** @class */ (function (_super) { + __extends(Timestamp, _super); + function Timestamp(low, high) { + var _this = this; + // eslint-disable-next-line @typescript-eslint/ban-ts-comment + // @ts-expect-error + if (!(_this instanceof Timestamp)) + return new Timestamp(low, high); + if (Long.isLong(low)) { + _this = _super.call(this, low.low, low.high, true) || this; + } + else if (isObjectLike(low) && typeof low.t !== 'undefined' && typeof low.i !== 'undefined') { + _this = _super.call(this, low.i, low.t, true) || this; + } + else { + _this = _super.call(this, low, high, true) || this; + } + Object.defineProperty(_this, '_bsontype', { + value: 'Timestamp', + writable: false, + configurable: false, + enumerable: false + }); + return _this; + } + Timestamp.prototype.toJSON = function () { + return { + $timestamp: this.toString() + }; + }; + /** Returns a Timestamp represented by the given (32-bit) integer value. */ + Timestamp.fromInt = function (value) { + return new Timestamp(Long.fromInt(value, true)); + }; + /** Returns a Timestamp representing the given number value, provided that it is a finite number. Otherwise, zero is returned. */ + Timestamp.fromNumber = function (value) { + return new Timestamp(Long.fromNumber(value, true)); + }; + /** + * Returns a Timestamp for the given high and low bits. Each is assumed to use 32 bits. + * + * @param lowBits - the low 32-bits. + * @param highBits - the high 32-bits. + */ + Timestamp.fromBits = function (lowBits, highBits) { + return new Timestamp(lowBits, highBits); + }; + /** + * Returns a Timestamp from the given string, optionally using the given radix. + * + * @param str - the textual representation of the Timestamp. + * @param optRadix - the radix in which the text is written. + */ + Timestamp.fromString = function (str, optRadix) { + return new Timestamp(Long.fromString(str, true, optRadix)); + }; + /** @internal */ + Timestamp.prototype.toExtendedJSON = function () { + return { $timestamp: { t: this.high >>> 0, i: this.low >>> 0 } }; + }; + /** @internal */ + Timestamp.fromExtendedJSON = function (doc) { + return new Timestamp(doc.$timestamp); + }; + /** @internal */ + Timestamp.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () { + return this.inspect(); + }; + Timestamp.prototype.inspect = function () { + return "new Timestamp({ t: ".concat(this.getHighBits(), ", i: ").concat(this.getLowBits(), " })"); + }; + Timestamp.MAX_VALUE = Long.MAX_UNSIGNED_VALUE; + return Timestamp; + }(LongWithoutOverridesClass)); + + function isBSONType(value) { + return (isObjectLike(value) && Reflect.has(value, '_bsontype') && typeof value._bsontype === 'string'); + } + // INT32 boundaries + var BSON_INT32_MAX = 0x7fffffff; + var BSON_INT32_MIN = -0x80000000; + // INT64 boundaries + // const BSON_INT64_MAX = 0x7fffffffffffffff; // TODO(NODE-4377): This number cannot be precisely represented in JS + var BSON_INT64_MAX = 0x8000000000000000; + var BSON_INT64_MIN = -0x8000000000000000; + // all the types where we don't need to do any special processing and can just pass the EJSON + //straight to type.fromExtendedJSON + var keysToCodecs = { + $oid: ObjectId, + $binary: Binary, + $uuid: Binary, + $symbol: BSONSymbol, + $numberInt: Int32, + $numberDecimal: Decimal128, + $numberDouble: Double, + $numberLong: Long, + $minKey: MinKey, + $maxKey: MaxKey, + $regex: BSONRegExp, + $regularExpression: BSONRegExp, + $timestamp: Timestamp + }; + // eslint-disable-next-line @typescript-eslint/no-explicit-any + function deserializeValue(value, options) { + if (options === void 0) { options = {}; } + if (typeof value === 'number') { + if (options.relaxed || options.legacy) { + return value; + } + // if it's an integer, should interpret as smallest BSON integer + // that can represent it exactly. (if out of range, interpret as double.) + if (Math.floor(value) === value) { + if (value >= BSON_INT32_MIN && value <= BSON_INT32_MAX) + return new Int32(value); + if (value >= BSON_INT64_MIN && value <= BSON_INT64_MAX) + return Long.fromNumber(value); + } + // If the number is a non-integer or out of integer range, should interpret as BSON Double. + return new Double(value); + } + // from here on out we're looking for bson types, so bail if its not an object + if (value == null || typeof value !== 'object') + return value; + // upgrade deprecated undefined to null + if (value.$undefined) + return null; + var keys = Object.keys(value).filter(function (k) { return k.startsWith('$') && value[k] != null; }); + for (var i = 0; i < keys.length; i++) { + var c = keysToCodecs[keys[i]]; + if (c) + return c.fromExtendedJSON(value, options); + } + if (value.$date != null) { + var d = value.$date; + var date = new Date(); + if (options.legacy) { + if (typeof d === 'number') + date.setTime(d); + else if (typeof d === 'string') + date.setTime(Date.parse(d)); + } + else { + if (typeof d === 'string') + date.setTime(Date.parse(d)); + else if (Long.isLong(d)) + date.setTime(d.toNumber()); + else if (typeof d === 'number' && options.relaxed) + date.setTime(d); + } + return date; + } + if (value.$code != null) { + var copy = Object.assign({}, value); + if (value.$scope) { + copy.$scope = deserializeValue(value.$scope); + } + return Code.fromExtendedJSON(value); + } + if (isDBRefLike(value) || value.$dbPointer) { + var v = value.$ref ? value : value.$dbPointer; + // we run into this in a "degenerate EJSON" case (with $id and $ref order flipped) + // because of the order JSON.parse goes through the document + if (v instanceof DBRef) + return v; + var dollarKeys = Object.keys(v).filter(function (k) { return k.startsWith('$'); }); + var valid_1 = true; + dollarKeys.forEach(function (k) { + if (['$ref', '$id', '$db'].indexOf(k) === -1) + valid_1 = false; + }); + // only make DBRef if $ keys are all valid + if (valid_1) + return DBRef.fromExtendedJSON(v); + } + return value; + } + // eslint-disable-next-line @typescript-eslint/no-explicit-any + function serializeArray(array, options) { + return array.map(function (v, index) { + options.seenObjects.push({ propertyName: "index ".concat(index), obj: null }); + try { + return serializeValue(v, options); + } + finally { + options.seenObjects.pop(); + } + }); + } + function getISOString(date) { + var isoStr = date.toISOString(); + // we should only show milliseconds in timestamp if they're non-zero + return date.getUTCMilliseconds() !== 0 ? isoStr : isoStr.slice(0, -5) + 'Z'; + } + // eslint-disable-next-line @typescript-eslint/no-explicit-any + function serializeValue(value, options) { + if ((typeof value === 'object' || typeof value === 'function') && value !== null) { + var index = options.seenObjects.findIndex(function (entry) { return entry.obj === value; }); + if (index !== -1) { + var props = options.seenObjects.map(function (entry) { return entry.propertyName; }); + var leadingPart = props + .slice(0, index) + .map(function (prop) { return "".concat(prop, " -> "); }) + .join(''); + var alreadySeen = props[index]; + var circularPart = ' -> ' + + props + .slice(index + 1, props.length - 1) + .map(function (prop) { return "".concat(prop, " -> "); }) + .join(''); + var current = props[props.length - 1]; + var leadingSpace = ' '.repeat(leadingPart.length + alreadySeen.length / 2); + var dashes = '-'.repeat(circularPart.length + (alreadySeen.length + current.length) / 2 - 1); + throw new BSONTypeError('Converting circular structure to EJSON:\n' + + " ".concat(leadingPart).concat(alreadySeen).concat(circularPart).concat(current, "\n") + + " ".concat(leadingSpace, "\\").concat(dashes, "/")); + } + options.seenObjects[options.seenObjects.length - 1].obj = value; + } + if (Array.isArray(value)) + return serializeArray(value, options); + if (value === undefined) + return null; + if (value instanceof Date || isDate(value)) { + var dateNum = value.getTime(), + // is it in year range 1970-9999? + inRange = dateNum > -1 && dateNum < 253402318800000; + if (options.legacy) { + return options.relaxed && inRange + ? { $date: value.getTime() } + : { $date: getISOString(value) }; + } + return options.relaxed && inRange + ? { $date: getISOString(value) } + : { $date: { $numberLong: value.getTime().toString() } }; + } + if (typeof value === 'number' && (!options.relaxed || !isFinite(value))) { + // it's an integer + if (Math.floor(value) === value) { + var int32Range = value >= BSON_INT32_MIN && value <= BSON_INT32_MAX, int64Range = value >= BSON_INT64_MIN && value <= BSON_INT64_MAX; + // interpret as being of the smallest BSON integer type that can represent the number exactly + if (int32Range) + return { $numberInt: value.toString() }; + if (int64Range) + return { $numberLong: value.toString() }; + } + return { $numberDouble: value.toString() }; + } + if (value instanceof RegExp || isRegExp(value)) { + var flags = value.flags; + if (flags === undefined) { + var match = value.toString().match(/[gimuy]*$/); + if (match) { + flags = match[0]; + } + } + var rx = new BSONRegExp(value.source, flags); + return rx.toExtendedJSON(options); + } + if (value != null && typeof value === 'object') + return serializeDocument(value, options); + return value; + } + var BSON_TYPE_MAPPINGS = { + Binary: function (o) { return new Binary(o.value(), o.sub_type); }, + Code: function (o) { return new Code(o.code, o.scope); }, + DBRef: function (o) { return new DBRef(o.collection || o.namespace, o.oid, o.db, o.fields); }, + Decimal128: function (o) { return new Decimal128(o.bytes); }, + Double: function (o) { return new Double(o.value); }, + Int32: function (o) { return new Int32(o.value); }, + Long: function (o) { + return Long.fromBits( + // underscore variants for 1.x backwards compatibility + o.low != null ? o.low : o.low_, o.low != null ? o.high : o.high_, o.low != null ? o.unsigned : o.unsigned_); + }, + MaxKey: function () { return new MaxKey(); }, + MinKey: function () { return new MinKey(); }, + ObjectID: function (o) { return new ObjectId(o); }, + ObjectId: function (o) { return new ObjectId(o); }, + BSONRegExp: function (o) { return new BSONRegExp(o.pattern, o.options); }, + Symbol: function (o) { return new BSONSymbol(o.value); }, + Timestamp: function (o) { return Timestamp.fromBits(o.low, o.high); } + }; + // eslint-disable-next-line @typescript-eslint/no-explicit-any + function serializeDocument(doc, options) { + if (doc == null || typeof doc !== 'object') + throw new BSONError('not an object instance'); + var bsontype = doc._bsontype; + if (typeof bsontype === 'undefined') { + // It's a regular object. Recursively serialize its property values. + var _doc = {}; + for (var name in doc) { + options.seenObjects.push({ propertyName: name, obj: null }); + try { + var value = serializeValue(doc[name], options); + if (name === '__proto__') { + Object.defineProperty(_doc, name, { + value: value, + writable: true, + enumerable: true, + configurable: true + }); + } + else { + _doc[name] = value; + } + } + finally { + options.seenObjects.pop(); + } + } + return _doc; + } + else if (isBSONType(doc)) { + // the "document" is really just a BSON type object + // eslint-disable-next-line @typescript-eslint/no-explicit-any + var outDoc = doc; + if (typeof outDoc.toExtendedJSON !== 'function') { + // There's no EJSON serialization function on the object. It's probably an + // object created by a previous version of this library (or another library) + // that's duck-typing objects to look like they were generated by this library). + // Copy the object into this library's version of that type. + var mapper = BSON_TYPE_MAPPINGS[doc._bsontype]; + if (!mapper) { + throw new BSONTypeError('Unrecognized or invalid _bsontype: ' + doc._bsontype); + } + outDoc = mapper(outDoc); + } + // Two BSON types may have nested objects that may need to be serialized too + if (bsontype === 'Code' && outDoc.scope) { + outDoc = new Code(outDoc.code, serializeValue(outDoc.scope, options)); + } + else if (bsontype === 'DBRef' && outDoc.oid) { + outDoc = new DBRef(serializeValue(outDoc.collection, options), serializeValue(outDoc.oid, options), serializeValue(outDoc.db, options), serializeValue(outDoc.fields, options)); + } + return outDoc.toExtendedJSON(options); + } + else { + throw new BSONError('_bsontype must be a string, but was: ' + typeof bsontype); + } + } + /** + * EJSON parse / stringify API + * @public + */ + // the namespace here is used to emulate `export * as EJSON from '...'` + // which as of now (sept 2020) api-extractor does not support + // eslint-disable-next-line @typescript-eslint/no-namespace + exports.EJSON = void 0; + (function (EJSON) { + /** + * Parse an Extended JSON string, constructing the JavaScript value or object described by that + * string. + * + * @example + * ```js + * const { EJSON } = require('bson'); + * const text = '{ "int32": { "$numberInt": "10" } }'; + * + * // prints { int32: { [String: '10'] _bsontype: 'Int32', value: '10' } } + * console.log(EJSON.parse(text, { relaxed: false })); + * + * // prints { int32: 10 } + * console.log(EJSON.parse(text)); + * ``` + */ + function parse(text, options) { + var finalOptions = Object.assign({}, { relaxed: true, legacy: false }, options); + // relaxed implies not strict + if (typeof finalOptions.relaxed === 'boolean') + finalOptions.strict = !finalOptions.relaxed; + if (typeof finalOptions.strict === 'boolean') + finalOptions.relaxed = !finalOptions.strict; + return JSON.parse(text, function (key, value) { + if (key.indexOf('\x00') !== -1) { + throw new BSONError("BSON Document field names cannot contain null bytes, found: ".concat(JSON.stringify(key))); + } + return deserializeValue(value, finalOptions); + }); + } + EJSON.parse = parse; + /** + * Converts a BSON document to an Extended JSON string, optionally replacing values if a replacer + * function is specified or optionally including only the specified properties if a replacer array + * is specified. + * + * @param value - The value to convert to extended JSON + * @param replacer - A function that alters the behavior of the stringification process, or an array of String and Number objects that serve as a whitelist for selecting/filtering the properties of the value object to be included in the JSON string. If this value is null or not provided, all properties of the object are included in the resulting JSON string + * @param space - A String or Number object that's used to insert white space into the output JSON string for readability purposes. + * @param options - Optional settings + * + * @example + * ```js + * const { EJSON } = require('bson'); + * const Int32 = require('mongodb').Int32; + * const doc = { int32: new Int32(10) }; + * + * // prints '{"int32":{"$numberInt":"10"}}' + * console.log(EJSON.stringify(doc, { relaxed: false })); + * + * // prints '{"int32":10}' + * console.log(EJSON.stringify(doc)); + * ``` + */ + function stringify(value, + // eslint-disable-next-line @typescript-eslint/no-explicit-any + replacer, space, options) { + if (space != null && typeof space === 'object') { + options = space; + space = 0; + } + if (replacer != null && typeof replacer === 'object' && !Array.isArray(replacer)) { + options = replacer; + replacer = undefined; + space = 0; + } + var serializeOptions = Object.assign({ relaxed: true, legacy: false }, options, { + seenObjects: [{ propertyName: '(root)', obj: null }] + }); + var doc = serializeValue(value, serializeOptions); + return JSON.stringify(doc, replacer, space); + } + EJSON.stringify = stringify; + /** + * Serializes an object to an Extended JSON string, and reparse it as a JavaScript object. + * + * @param value - The object to serialize + * @param options - Optional settings passed to the `stringify` function + */ + function serialize(value, options) { + options = options || {}; + return JSON.parse(stringify(value, options)); + } + EJSON.serialize = serialize; + /** + * Deserializes an Extended JSON object into a plain JavaScript object with native/BSON types + * + * @param ejson - The Extended JSON object to deserialize + * @param options - Optional settings passed to the parse method + */ + function deserialize(ejson, options) { + options = options || {}; + return parse(JSON.stringify(ejson), options); + } + EJSON.deserialize = deserialize; + })(exports.EJSON || (exports.EJSON = {})); + + /* eslint-disable @typescript-eslint/no-explicit-any */ + /** @public */ + exports.Map = void 0; + var bsonGlobal = getGlobal(); + if (bsonGlobal.Map) { + exports.Map = bsonGlobal.Map; + } + else { + // We will return a polyfill + exports.Map = /** @class */ (function () { + function Map(array) { + if (array === void 0) { array = []; } + this._keys = []; + this._values = {}; + for (var i = 0; i < array.length; i++) { + if (array[i] == null) + continue; // skip null and undefined + var entry = array[i]; + var key = entry[0]; + var value = entry[1]; + // Add the key to the list of keys in order + this._keys.push(key); + // Add the key and value to the values dictionary with a point + // to the location in the ordered keys list + this._values[key] = { v: value, i: this._keys.length - 1 }; + } + } + Map.prototype.clear = function () { + this._keys = []; + this._values = {}; + }; + Map.prototype.delete = function (key) { + var value = this._values[key]; + if (value == null) + return false; + // Delete entry + delete this._values[key]; + // Remove the key from the ordered keys list + this._keys.splice(value.i, 1); + return true; + }; + Map.prototype.entries = function () { + var _this = this; + var index = 0; + return { + next: function () { + var key = _this._keys[index++]; + return { + value: key !== undefined ? [key, _this._values[key].v] : undefined, + done: key !== undefined ? false : true + }; + } + }; + }; + Map.prototype.forEach = function (callback, self) { + self = self || this; + for (var i = 0; i < this._keys.length; i++) { + var key = this._keys[i]; + // Call the forEach callback + callback.call(self, this._values[key].v, key, self); + } + }; + Map.prototype.get = function (key) { + return this._values[key] ? this._values[key].v : undefined; + }; + Map.prototype.has = function (key) { + return this._values[key] != null; + }; + Map.prototype.keys = function () { + var _this = this; + var index = 0; + return { + next: function () { + var key = _this._keys[index++]; + return { + value: key !== undefined ? key : undefined, + done: key !== undefined ? false : true + }; + } + }; + }; + Map.prototype.set = function (key, value) { + if (this._values[key]) { + this._values[key].v = value; + return this; + } + // Add the key to the list of keys in order + this._keys.push(key); + // Add the key and value to the values dictionary with a point + // to the location in the ordered keys list + this._values[key] = { v: value, i: this._keys.length - 1 }; + return this; + }; + Map.prototype.values = function () { + var _this = this; + var index = 0; + return { + next: function () { + var key = _this._keys[index++]; + return { + value: key !== undefined ? _this._values[key].v : undefined, + done: key !== undefined ? false : true + }; + } + }; + }; + Object.defineProperty(Map.prototype, "size", { + get: function () { + return this._keys.length; + }, + enumerable: false, + configurable: true + }); + return Map; + }()); + } + + function calculateObjectSize$1(object, serializeFunctions, ignoreUndefined) { + var totalLength = 4 + 1; + if (Array.isArray(object)) { + for (var i = 0; i < object.length; i++) { + totalLength += calculateElement(i.toString(), object[i], serializeFunctions, true, ignoreUndefined); + } + } + else { + // If we have toBSON defined, override the current object + if (typeof (object === null || object === void 0 ? void 0 : object.toBSON) === 'function') { + object = object.toBSON(); + } + // Calculate size + for (var key in object) { + totalLength += calculateElement(key, object[key], serializeFunctions, false, ignoreUndefined); + } + } + return totalLength; + } + /** @internal */ + function calculateElement(name, + // eslint-disable-next-line @typescript-eslint/no-explicit-any + value, serializeFunctions, isArray, ignoreUndefined) { + if (serializeFunctions === void 0) { serializeFunctions = false; } + if (isArray === void 0) { isArray = false; } + if (ignoreUndefined === void 0) { ignoreUndefined = false; } + // If we have toBSON defined, override the current object + if (typeof (value === null || value === void 0 ? void 0 : value.toBSON) === 'function') { + value = value.toBSON(); + } + switch (typeof value) { + case 'string': + return 1 + buffer_1.byteLength(name, 'utf8') + 1 + 4 + buffer_1.byteLength(value, 'utf8') + 1; + case 'number': + if (Math.floor(value) === value && + value >= JS_INT_MIN && + value <= JS_INT_MAX) { + if (value >= BSON_INT32_MIN$1 && value <= BSON_INT32_MAX$1) { + // 32 bit + return (name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + (4 + 1); + } + else { + return (name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + (8 + 1); + } + } + else { + // 64 bit + return (name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + (8 + 1); + } + case 'undefined': + if (isArray || !ignoreUndefined) + return (name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + 1; + return 0; + case 'boolean': + return (name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + (1 + 1); + case 'object': + if (value == null || value['_bsontype'] === 'MinKey' || value['_bsontype'] === 'MaxKey') { + return (name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + 1; + } + else if (value['_bsontype'] === 'ObjectId' || value['_bsontype'] === 'ObjectID') { + return (name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + (12 + 1); + } + else if (value instanceof Date || isDate(value)) { + return (name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + (8 + 1); + } + else if (ArrayBuffer.isView(value) || + value instanceof ArrayBuffer || + isAnyArrayBuffer(value)) { + return ((name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + (1 + 4 + 1) + value.byteLength); + } + else if (value['_bsontype'] === 'Long' || + value['_bsontype'] === 'Double' || + value['_bsontype'] === 'Timestamp') { + return (name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + (8 + 1); + } + else if (value['_bsontype'] === 'Decimal128') { + return (name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + (16 + 1); + } + else if (value['_bsontype'] === 'Code') { + // Calculate size depending on the availability of a scope + if (value.scope != null && Object.keys(value.scope).length > 0) { + return ((name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + + 1 + + 4 + + 4 + + buffer_1.byteLength(value.code.toString(), 'utf8') + + 1 + + calculateObjectSize$1(value.scope, serializeFunctions, ignoreUndefined)); + } + else { + return ((name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + + 1 + + 4 + + buffer_1.byteLength(value.code.toString(), 'utf8') + + 1); + } + } + else if (value['_bsontype'] === 'Binary') { + var binary = value; + // Check what kind of subtype we have + if (binary.sub_type === Binary.SUBTYPE_BYTE_ARRAY) { + return ((name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + + (binary.position + 1 + 4 + 1 + 4)); + } + else { + return ((name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + (binary.position + 1 + 4 + 1)); + } + } + else if (value['_bsontype'] === 'Symbol') { + return ((name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + + buffer_1.byteLength(value.value, 'utf8') + + 4 + + 1 + + 1); + } + else if (value['_bsontype'] === 'DBRef') { + // Set up correct object for serialization + var ordered_values = Object.assign({ + $ref: value.collection, + $id: value.oid + }, value.fields); + // Add db reference if it exists + if (value.db != null) { + ordered_values['$db'] = value.db; + } + return ((name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + + 1 + + calculateObjectSize$1(ordered_values, serializeFunctions, ignoreUndefined)); + } + else if (value instanceof RegExp || isRegExp(value)) { + return ((name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + + 1 + + buffer_1.byteLength(value.source, 'utf8') + + 1 + + (value.global ? 1 : 0) + + (value.ignoreCase ? 1 : 0) + + (value.multiline ? 1 : 0) + + 1); + } + else if (value['_bsontype'] === 'BSONRegExp') { + return ((name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + + 1 + + buffer_1.byteLength(value.pattern, 'utf8') + + 1 + + buffer_1.byteLength(value.options, 'utf8') + + 1); + } + else { + return ((name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + + calculateObjectSize$1(value, serializeFunctions, ignoreUndefined) + + 1); + } + case 'function': + // WTF for 0.4.X where typeof /someregexp/ === 'function' + if (value instanceof RegExp || isRegExp(value) || String.call(value) === '[object RegExp]') { + return ((name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + + 1 + + buffer_1.byteLength(value.source, 'utf8') + + 1 + + (value.global ? 1 : 0) + + (value.ignoreCase ? 1 : 0) + + (value.multiline ? 1 : 0) + + 1); + } + else { + if (serializeFunctions && value.scope != null && Object.keys(value.scope).length > 0) { + return ((name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + + 1 + + 4 + + 4 + + buffer_1.byteLength(normalizedFunctionString(value), 'utf8') + + 1 + + calculateObjectSize$1(value.scope, serializeFunctions, ignoreUndefined)); + } + else if (serializeFunctions) { + return ((name != null ? buffer_1.byteLength(name, 'utf8') + 1 : 0) + + 1 + + 4 + + buffer_1.byteLength(normalizedFunctionString(value), 'utf8') + + 1); + } + } + } + return 0; + } + + var FIRST_BIT = 0x80; + var FIRST_TWO_BITS = 0xc0; + var FIRST_THREE_BITS = 0xe0; + var FIRST_FOUR_BITS = 0xf0; + var FIRST_FIVE_BITS = 0xf8; + var TWO_BIT_CHAR = 0xc0; + var THREE_BIT_CHAR = 0xe0; + var FOUR_BIT_CHAR = 0xf0; + var CONTINUING_CHAR = 0x80; + /** + * Determines if the passed in bytes are valid utf8 + * @param bytes - An array of 8-bit bytes. Must be indexable and have length property + * @param start - The index to start validating + * @param end - The index to end validating + */ + function validateUtf8(bytes, start, end) { + var continuation = 0; + for (var i = start; i < end; i += 1) { + var byte = bytes[i]; + if (continuation) { + if ((byte & FIRST_TWO_BITS) !== CONTINUING_CHAR) { + return false; + } + continuation -= 1; + } + else if (byte & FIRST_BIT) { + if ((byte & FIRST_THREE_BITS) === TWO_BIT_CHAR) { + continuation = 1; + } + else if ((byte & FIRST_FOUR_BITS) === THREE_BIT_CHAR) { + continuation = 2; + } + else if ((byte & FIRST_FIVE_BITS) === FOUR_BIT_CHAR) { + continuation = 3; + } + else { + return false; + } + } + } + return !continuation; + } + + // Internal long versions + var JS_INT_MAX_LONG = Long.fromNumber(JS_INT_MAX); + var JS_INT_MIN_LONG = Long.fromNumber(JS_INT_MIN); + var functionCache = {}; + function deserialize$1(buffer, options, isArray) { + options = options == null ? {} : options; + var index = options && options.index ? options.index : 0; + // Read the document size + var size = buffer[index] | + (buffer[index + 1] << 8) | + (buffer[index + 2] << 16) | + (buffer[index + 3] << 24); + if (size < 5) { + throw new BSONError("bson size must be >= 5, is ".concat(size)); + } + if (options.allowObjectSmallerThanBufferSize && buffer.length < size) { + throw new BSONError("buffer length ".concat(buffer.length, " must be >= bson size ").concat(size)); + } + if (!options.allowObjectSmallerThanBufferSize && buffer.length !== size) { + throw new BSONError("buffer length ".concat(buffer.length, " must === bson size ").concat(size)); + } + if (size + index > buffer.byteLength) { + throw new BSONError("(bson size ".concat(size, " + options.index ").concat(index, " must be <= buffer length ").concat(buffer.byteLength, ")")); + } + // Illegal end value + if (buffer[index + size - 1] !== 0) { + throw new BSONError("One object, sized correctly, with a spot for an EOO, but the EOO isn't 0x00"); + } + // Start deserializtion + return deserializeObject(buffer, index, options, isArray); + } + var allowedDBRefKeys = /^\$ref$|^\$id$|^\$db$/; + function deserializeObject(buffer, index, options, isArray) { + if (isArray === void 0) { isArray = false; } + var evalFunctions = options['evalFunctions'] == null ? false : options['evalFunctions']; + var cacheFunctions = options['cacheFunctions'] == null ? false : options['cacheFunctions']; + var fieldsAsRaw = options['fieldsAsRaw'] == null ? null : options['fieldsAsRaw']; + // Return raw bson buffer instead of parsing it + var raw = options['raw'] == null ? false : options['raw']; + // Return BSONRegExp objects instead of native regular expressions + var bsonRegExp = typeof options['bsonRegExp'] === 'boolean' ? options['bsonRegExp'] : false; + // Controls the promotion of values vs wrapper classes + var promoteBuffers = options['promoteBuffers'] == null ? false : options['promoteBuffers']; + var promoteLongs = options['promoteLongs'] == null ? true : options['promoteLongs']; + var promoteValues = options['promoteValues'] == null ? true : options['promoteValues']; + // Ensures default validation option if none given + var validation = options.validation == null ? { utf8: true } : options.validation; + // Shows if global utf-8 validation is enabled or disabled + var globalUTFValidation = true; + // Reflects utf-8 validation setting regardless of global or specific key validation + var validationSetting; + // Set of keys either to enable or disable validation on + var utf8KeysSet = new Set(); + // Check for boolean uniformity and empty validation option + var utf8ValidatedKeys = validation.utf8; + if (typeof utf8ValidatedKeys === 'boolean') { + validationSetting = utf8ValidatedKeys; + } + else { + globalUTFValidation = false; + var utf8ValidationValues = Object.keys(utf8ValidatedKeys).map(function (key) { + return utf8ValidatedKeys[key]; + }); + if (utf8ValidationValues.length === 0) { + throw new BSONError('UTF-8 validation setting cannot be empty'); + } + if (typeof utf8ValidationValues[0] !== 'boolean') { + throw new BSONError('Invalid UTF-8 validation option, must specify boolean values'); + } + validationSetting = utf8ValidationValues[0]; + // Ensures boolean uniformity in utf-8 validation (all true or all false) + if (!utf8ValidationValues.every(function (item) { return item === validationSetting; })) { + throw new BSONError('Invalid UTF-8 validation option - keys must be all true or all false'); + } + } + // Add keys to set that will either be validated or not based on validationSetting + if (!globalUTFValidation) { + for (var _i = 0, _a = Object.keys(utf8ValidatedKeys); _i < _a.length; _i++) { + var key = _a[_i]; + utf8KeysSet.add(key); + } + } + // Set the start index + var startIndex = index; + // Validate that we have at least 4 bytes of buffer + if (buffer.length < 5) + throw new BSONError('corrupt bson message < 5 bytes long'); + // Read the document size + var size = buffer[index++] | (buffer[index++] << 8) | (buffer[index++] << 16) | (buffer[index++] << 24); + // Ensure buffer is valid size + if (size < 5 || size > buffer.length) + throw new BSONError('corrupt bson message'); + // Create holding object + var object = isArray ? [] : {}; + // Used for arrays to skip having to perform utf8 decoding + var arrayIndex = 0; + var done = false; + var isPossibleDBRef = isArray ? false : null; + // While we have more left data left keep parsing + var dataview = new DataView(buffer.buffer, buffer.byteOffset, buffer.byteLength); + while (!done) { + // Read the type + var elementType = buffer[index++]; + // If we get a zero it's the last byte, exit + if (elementType === 0) + break; + // Get the start search index + var i = index; + // Locate the end of the c string + while (buffer[i] !== 0x00 && i < buffer.length) { + i++; + } + // If are at the end of the buffer there is a problem with the document + if (i >= buffer.byteLength) + throw new BSONError('Bad BSON Document: illegal CString'); + // Represents the key + var name = isArray ? arrayIndex++ : buffer.toString('utf8', index, i); + // shouldValidateKey is true if the key should be validated, false otherwise + var shouldValidateKey = true; + if (globalUTFValidation || utf8KeysSet.has(name)) { + shouldValidateKey = validationSetting; + } + else { + shouldValidateKey = !validationSetting; + } + if (isPossibleDBRef !== false && name[0] === '$') { + isPossibleDBRef = allowedDBRefKeys.test(name); + } + var value = void 0; + index = i + 1; + if (elementType === BSON_DATA_STRING) { + var stringSize = buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + if (stringSize <= 0 || + stringSize > buffer.length - index || + buffer[index + stringSize - 1] !== 0) { + throw new BSONError('bad string length in bson'); + } + value = getValidatedString(buffer, index, index + stringSize - 1, shouldValidateKey); + index = index + stringSize; + } + else if (elementType === BSON_DATA_OID) { + var oid = buffer_1.alloc(12); + buffer.copy(oid, 0, index, index + 12); + value = new ObjectId(oid); + index = index + 12; + } + else if (elementType === BSON_DATA_INT && promoteValues === false) { + value = new Int32(buffer[index++] | (buffer[index++] << 8) | (buffer[index++] << 16) | (buffer[index++] << 24)); + } + else if (elementType === BSON_DATA_INT) { + value = + buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + } + else if (elementType === BSON_DATA_NUMBER && promoteValues === false) { + value = new Double(dataview.getFloat64(index, true)); + index = index + 8; + } + else if (elementType === BSON_DATA_NUMBER) { + value = dataview.getFloat64(index, true); + index = index + 8; + } + else if (elementType === BSON_DATA_DATE) { + var lowBits = buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + var highBits = buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + value = new Date(new Long(lowBits, highBits).toNumber()); + } + else if (elementType === BSON_DATA_BOOLEAN) { + if (buffer[index] !== 0 && buffer[index] !== 1) + throw new BSONError('illegal boolean type value'); + value = buffer[index++] === 1; + } + else if (elementType === BSON_DATA_OBJECT) { + var _index = index; + var objectSize = buffer[index] | + (buffer[index + 1] << 8) | + (buffer[index + 2] << 16) | + (buffer[index + 3] << 24); + if (objectSize <= 0 || objectSize > buffer.length - index) + throw new BSONError('bad embedded document length in bson'); + // We have a raw value + if (raw) { + value = buffer.slice(index, index + objectSize); + } + else { + var objectOptions = options; + if (!globalUTFValidation) { + objectOptions = _assign(_assign({}, options), { validation: { utf8: shouldValidateKey } }); + } + value = deserializeObject(buffer, _index, objectOptions, false); + } + index = index + objectSize; + } + else if (elementType === BSON_DATA_ARRAY) { + var _index = index; + var objectSize = buffer[index] | + (buffer[index + 1] << 8) | + (buffer[index + 2] << 16) | + (buffer[index + 3] << 24); + var arrayOptions = options; + // Stop index + var stopIndex = index + objectSize; + // All elements of array to be returned as raw bson + if (fieldsAsRaw && fieldsAsRaw[name]) { + arrayOptions = {}; + for (var n in options) { + arrayOptions[n] = options[n]; + } + arrayOptions['raw'] = true; + } + if (!globalUTFValidation) { + arrayOptions = _assign(_assign({}, arrayOptions), { validation: { utf8: shouldValidateKey } }); + } + value = deserializeObject(buffer, _index, arrayOptions, true); + index = index + objectSize; + if (buffer[index - 1] !== 0) + throw new BSONError('invalid array terminator byte'); + if (index !== stopIndex) + throw new BSONError('corrupted array bson'); + } + else if (elementType === BSON_DATA_UNDEFINED) { + value = undefined; + } + else if (elementType === BSON_DATA_NULL) { + value = null; + } + else if (elementType === BSON_DATA_LONG) { + // Unpack the low and high bits + var lowBits = buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + var highBits = buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + var long = new Long(lowBits, highBits); + // Promote the long if possible + if (promoteLongs && promoteValues === true) { + value = + long.lessThanOrEqual(JS_INT_MAX_LONG) && long.greaterThanOrEqual(JS_INT_MIN_LONG) + ? long.toNumber() + : long; + } + else { + value = long; + } + } + else if (elementType === BSON_DATA_DECIMAL128) { + // Buffer to contain the decimal bytes + var bytes = buffer_1.alloc(16); + // Copy the next 16 bytes into the bytes buffer + buffer.copy(bytes, 0, index, index + 16); + // Update index + index = index + 16; + // Assign the new Decimal128 value + var decimal128 = new Decimal128(bytes); + // If we have an alternative mapper use that + if ('toObject' in decimal128 && typeof decimal128.toObject === 'function') { + value = decimal128.toObject(); + } + else { + value = decimal128; + } + } + else if (elementType === BSON_DATA_BINARY) { + var binarySize = buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + var totalBinarySize = binarySize; + var subType = buffer[index++]; + // Did we have a negative binary size, throw + if (binarySize < 0) + throw new BSONError('Negative binary type element size found'); + // Is the length longer than the document + if (binarySize > buffer.byteLength) + throw new BSONError('Binary type size larger than document size'); + // Decode as raw Buffer object if options specifies it + if (buffer['slice'] != null) { + // If we have subtype 2 skip the 4 bytes for the size + if (subType === Binary.SUBTYPE_BYTE_ARRAY) { + binarySize = + buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + if (binarySize < 0) + throw new BSONError('Negative binary type element size found for subtype 0x02'); + if (binarySize > totalBinarySize - 4) + throw new BSONError('Binary type with subtype 0x02 contains too long binary size'); + if (binarySize < totalBinarySize - 4) + throw new BSONError('Binary type with subtype 0x02 contains too short binary size'); + } + if (promoteBuffers && promoteValues) { + value = buffer.slice(index, index + binarySize); + } + else { + value = new Binary(buffer.slice(index, index + binarySize), subType); + if (subType === BSON_BINARY_SUBTYPE_UUID_NEW) { + value = value.toUUID(); + } + } + } + else { + var _buffer = buffer_1.alloc(binarySize); + // If we have subtype 2 skip the 4 bytes for the size + if (subType === Binary.SUBTYPE_BYTE_ARRAY) { + binarySize = + buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + if (binarySize < 0) + throw new BSONError('Negative binary type element size found for subtype 0x02'); + if (binarySize > totalBinarySize - 4) + throw new BSONError('Binary type with subtype 0x02 contains too long binary size'); + if (binarySize < totalBinarySize - 4) + throw new BSONError('Binary type with subtype 0x02 contains too short binary size'); + } + // Copy the data + for (i = 0; i < binarySize; i++) { + _buffer[i] = buffer[index + i]; + } + if (promoteBuffers && promoteValues) { + value = _buffer; + } + else if (subType === BSON_BINARY_SUBTYPE_UUID_NEW) { + value = new Binary(buffer.slice(index, index + binarySize), subType).toUUID(); + } + else { + value = new Binary(buffer.slice(index, index + binarySize), subType); + } + } + // Update the index + index = index + binarySize; + } + else if (elementType === BSON_DATA_REGEXP && bsonRegExp === false) { + // Get the start search index + i = index; + // Locate the end of the c string + while (buffer[i] !== 0x00 && i < buffer.length) { + i++; + } + // If are at the end of the buffer there is a problem with the document + if (i >= buffer.length) + throw new BSONError('Bad BSON Document: illegal CString'); + // Return the C string + var source = buffer.toString('utf8', index, i); + // Create the regexp + index = i + 1; + // Get the start search index + i = index; + // Locate the end of the c string + while (buffer[i] !== 0x00 && i < buffer.length) { + i++; + } + // If are at the end of the buffer there is a problem with the document + if (i >= buffer.length) + throw new BSONError('Bad BSON Document: illegal CString'); + // Return the C string + var regExpOptions = buffer.toString('utf8', index, i); + index = i + 1; + // For each option add the corresponding one for javascript + var optionsArray = new Array(regExpOptions.length); + // Parse options + for (i = 0; i < regExpOptions.length; i++) { + switch (regExpOptions[i]) { + case 'm': + optionsArray[i] = 'm'; + break; + case 's': + optionsArray[i] = 'g'; + break; + case 'i': + optionsArray[i] = 'i'; + break; + } + } + value = new RegExp(source, optionsArray.join('')); + } + else if (elementType === BSON_DATA_REGEXP && bsonRegExp === true) { + // Get the start search index + i = index; + // Locate the end of the c string + while (buffer[i] !== 0x00 && i < buffer.length) { + i++; + } + // If are at the end of the buffer there is a problem with the document + if (i >= buffer.length) + throw new BSONError('Bad BSON Document: illegal CString'); + // Return the C string + var source = buffer.toString('utf8', index, i); + index = i + 1; + // Get the start search index + i = index; + // Locate the end of the c string + while (buffer[i] !== 0x00 && i < buffer.length) { + i++; + } + // If are at the end of the buffer there is a problem with the document + if (i >= buffer.length) + throw new BSONError('Bad BSON Document: illegal CString'); + // Return the C string + var regExpOptions = buffer.toString('utf8', index, i); + index = i + 1; + // Set the object + value = new BSONRegExp(source, regExpOptions); + } + else if (elementType === BSON_DATA_SYMBOL) { + var stringSize = buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + if (stringSize <= 0 || + stringSize > buffer.length - index || + buffer[index + stringSize - 1] !== 0) { + throw new BSONError('bad string length in bson'); + } + var symbol = getValidatedString(buffer, index, index + stringSize - 1, shouldValidateKey); + value = promoteValues ? symbol : new BSONSymbol(symbol); + index = index + stringSize; + } + else if (elementType === BSON_DATA_TIMESTAMP) { + var lowBits = buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + var highBits = buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + value = new Timestamp(lowBits, highBits); + } + else if (elementType === BSON_DATA_MIN_KEY) { + value = new MinKey(); + } + else if (elementType === BSON_DATA_MAX_KEY) { + value = new MaxKey(); + } + else if (elementType === BSON_DATA_CODE) { + var stringSize = buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + if (stringSize <= 0 || + stringSize > buffer.length - index || + buffer[index + stringSize - 1] !== 0) { + throw new BSONError('bad string length in bson'); + } + var functionString = getValidatedString(buffer, index, index + stringSize - 1, shouldValidateKey); + // If we are evaluating the functions + if (evalFunctions) { + // If we have cache enabled let's look for the md5 of the function in the cache + if (cacheFunctions) { + // Got to do this to avoid V8 deoptimizing the call due to finding eval + value = isolateEval(functionString, functionCache, object); + } + else { + value = isolateEval(functionString); + } + } + else { + value = new Code(functionString); + } + // Update parse index position + index = index + stringSize; + } + else if (elementType === BSON_DATA_CODE_W_SCOPE) { + var totalSize = buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + // Element cannot be shorter than totalSize + stringSize + documentSize + terminator + if (totalSize < 4 + 4 + 4 + 1) { + throw new BSONError('code_w_scope total size shorter minimum expected length'); + } + // Get the code string size + var stringSize = buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + // Check if we have a valid string + if (stringSize <= 0 || + stringSize > buffer.length - index || + buffer[index + stringSize - 1] !== 0) { + throw new BSONError('bad string length in bson'); + } + // Javascript function + var functionString = getValidatedString(buffer, index, index + stringSize - 1, shouldValidateKey); + // Update parse index position + index = index + stringSize; + // Parse the element + var _index = index; + // Decode the size of the object document + var objectSize = buffer[index] | + (buffer[index + 1] << 8) | + (buffer[index + 2] << 16) | + (buffer[index + 3] << 24); + // Decode the scope object + var scopeObject = deserializeObject(buffer, _index, options, false); + // Adjust the index + index = index + objectSize; + // Check if field length is too short + if (totalSize < 4 + 4 + objectSize + stringSize) { + throw new BSONError('code_w_scope total size is too short, truncating scope'); + } + // Check if totalSize field is too long + if (totalSize > 4 + 4 + objectSize + stringSize) { + throw new BSONError('code_w_scope total size is too long, clips outer document'); + } + // If we are evaluating the functions + if (evalFunctions) { + // If we have cache enabled let's look for the md5 of the function in the cache + if (cacheFunctions) { + // Got to do this to avoid V8 deoptimizing the call due to finding eval + value = isolateEval(functionString, functionCache, object); + } + else { + value = isolateEval(functionString); + } + value.scope = scopeObject; + } + else { + value = new Code(functionString, scopeObject); + } + } + else if (elementType === BSON_DATA_DBPOINTER) { + // Get the code string size + var stringSize = buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + // Check if we have a valid string + if (stringSize <= 0 || + stringSize > buffer.length - index || + buffer[index + stringSize - 1] !== 0) + throw new BSONError('bad string length in bson'); + // Namespace + if (validation != null && validation.utf8) { + if (!validateUtf8(buffer, index, index + stringSize - 1)) { + throw new BSONError('Invalid UTF-8 string in BSON document'); + } + } + var namespace = buffer.toString('utf8', index, index + stringSize - 1); + // Update parse index position + index = index + stringSize; + // Read the oid + var oidBuffer = buffer_1.alloc(12); + buffer.copy(oidBuffer, 0, index, index + 12); + var oid = new ObjectId(oidBuffer); + // Update the index + index = index + 12; + // Upgrade to DBRef type + value = new DBRef(namespace, oid); + } + else { + throw new BSONError("Detected unknown BSON type ".concat(elementType.toString(16), " for fieldname \"").concat(name, "\"")); + } + if (name === '__proto__') { + Object.defineProperty(object, name, { + value: value, + writable: true, + enumerable: true, + configurable: true + }); + } + else { + object[name] = value; + } + } + // Check if the deserialization was against a valid array/object + if (size !== index - startIndex) { + if (isArray) + throw new BSONError('corrupt array bson'); + throw new BSONError('corrupt object bson'); + } + // if we did not find "$ref", "$id", "$db", or found an extraneous $key, don't make a DBRef + if (!isPossibleDBRef) + return object; + if (isDBRefLike(object)) { + var copy = Object.assign({}, object); + delete copy.$ref; + delete copy.$id; + delete copy.$db; + return new DBRef(object.$ref, object.$id, object.$db, copy); + } + return object; + } + /** + * Ensure eval is isolated, store the result in functionCache. + * + * @internal + */ + function isolateEval(functionString, functionCache, object) { + // eslint-disable-next-line @typescript-eslint/no-implied-eval + if (!functionCache) + return new Function(functionString); + // Check for cache hit, eval if missing and return cached function + if (functionCache[functionString] == null) { + // eslint-disable-next-line @typescript-eslint/no-implied-eval + functionCache[functionString] = new Function(functionString); + } + // Set the object + return functionCache[functionString].bind(object); + } + function getValidatedString(buffer, start, end, shouldValidateUtf8) { + var value = buffer.toString('utf8', start, end); + // if utf8 validation is on, do the check + if (shouldValidateUtf8) { + for (var i = 0; i < value.length; i++) { + if (value.charCodeAt(i) === 0xfffd) { + if (!validateUtf8(buffer, start, end)) { + throw new BSONError('Invalid UTF-8 string in BSON document'); + } + break; + } + } + } + return value; + } + + var regexp = /\x00/; // eslint-disable-line no-control-regex + var ignoreKeys = new Set(['$db', '$ref', '$id', '$clusterTime']); + /* + * isArray indicates if we are writing to a BSON array (type 0x04) + * which forces the "key" which really an array index as a string to be written as ascii + * This will catch any errors in index as a string generation + */ + function serializeString(buffer, key, value, index, isArray) { + // Encode String type + buffer[index++] = BSON_DATA_STRING; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes + 1; + buffer[index - 1] = 0; + // Write the string + var size = buffer.write(value, index + 4, undefined, 'utf8'); + // Write the size of the string to buffer + buffer[index + 3] = ((size + 1) >> 24) & 0xff; + buffer[index + 2] = ((size + 1) >> 16) & 0xff; + buffer[index + 1] = ((size + 1) >> 8) & 0xff; + buffer[index] = (size + 1) & 0xff; + // Update index + index = index + 4 + size; + // Write zero + buffer[index++] = 0; + return index; + } + var SPACE_FOR_FLOAT64 = new Uint8Array(8); + var DV_FOR_FLOAT64 = new DataView(SPACE_FOR_FLOAT64.buffer, SPACE_FOR_FLOAT64.byteOffset, SPACE_FOR_FLOAT64.byteLength); + function serializeNumber(buffer, key, value, index, isArray) { + // We have an integer value + // TODO(NODE-2529): Add support for big int + if (Number.isInteger(value) && + value >= BSON_INT32_MIN$1 && + value <= BSON_INT32_MAX$1) { + // If the value fits in 32 bits encode as int32 + // Set int type 32 bits or less + buffer[index++] = BSON_DATA_INT; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Write the int value + buffer[index++] = value & 0xff; + buffer[index++] = (value >> 8) & 0xff; + buffer[index++] = (value >> 16) & 0xff; + buffer[index++] = (value >> 24) & 0xff; + } + else { + // Encode as double + buffer[index++] = BSON_DATA_NUMBER; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Write float + DV_FOR_FLOAT64.setFloat64(0, value, true); + buffer.set(SPACE_FOR_FLOAT64, index); + // Adjust index + index = index + 8; + } + return index; + } + function serializeNull(buffer, key, _, index, isArray) { + // Set long type + buffer[index++] = BSON_DATA_NULL; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + return index; + } + function serializeBoolean(buffer, key, value, index, isArray) { + // Write the type + buffer[index++] = BSON_DATA_BOOLEAN; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Encode the boolean value + buffer[index++] = value ? 1 : 0; + return index; + } + function serializeDate(buffer, key, value, index, isArray) { + // Write the type + buffer[index++] = BSON_DATA_DATE; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Write the date + var dateInMilis = Long.fromNumber(value.getTime()); + var lowBits = dateInMilis.getLowBits(); + var highBits = dateInMilis.getHighBits(); + // Encode low bits + buffer[index++] = lowBits & 0xff; + buffer[index++] = (lowBits >> 8) & 0xff; + buffer[index++] = (lowBits >> 16) & 0xff; + buffer[index++] = (lowBits >> 24) & 0xff; + // Encode high bits + buffer[index++] = highBits & 0xff; + buffer[index++] = (highBits >> 8) & 0xff; + buffer[index++] = (highBits >> 16) & 0xff; + buffer[index++] = (highBits >> 24) & 0xff; + return index; + } + function serializeRegExp(buffer, key, value, index, isArray) { + // Write the type + buffer[index++] = BSON_DATA_REGEXP; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + if (value.source && value.source.match(regexp) != null) { + throw Error('value ' + value.source + ' must not contain null bytes'); + } + // Adjust the index + index = index + buffer.write(value.source, index, undefined, 'utf8'); + // Write zero + buffer[index++] = 0x00; + // Write the parameters + if (value.ignoreCase) + buffer[index++] = 0x69; // i + if (value.global) + buffer[index++] = 0x73; // s + if (value.multiline) + buffer[index++] = 0x6d; // m + // Add ending zero + buffer[index++] = 0x00; + return index; + } + function serializeBSONRegExp(buffer, key, value, index, isArray) { + // Write the type + buffer[index++] = BSON_DATA_REGEXP; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Check the pattern for 0 bytes + if (value.pattern.match(regexp) != null) { + // The BSON spec doesn't allow keys with null bytes because keys are + // null-terminated. + throw Error('pattern ' + value.pattern + ' must not contain null bytes'); + } + // Adjust the index + index = index + buffer.write(value.pattern, index, undefined, 'utf8'); + // Write zero + buffer[index++] = 0x00; + // Write the options + index = index + buffer.write(value.options.split('').sort().join(''), index, undefined, 'utf8'); + // Add ending zero + buffer[index++] = 0x00; + return index; + } + function serializeMinMax(buffer, key, value, index, isArray) { + // Write the type of either min or max key + if (value === null) { + buffer[index++] = BSON_DATA_NULL; + } + else if (value._bsontype === 'MinKey') { + buffer[index++] = BSON_DATA_MIN_KEY; + } + else { + buffer[index++] = BSON_DATA_MAX_KEY; + } + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + return index; + } + function serializeObjectId(buffer, key, value, index, isArray) { + // Write the type + buffer[index++] = BSON_DATA_OID; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Write the objectId into the shared buffer + if (typeof value.id === 'string') { + buffer.write(value.id, index, undefined, 'binary'); + } + else if (isUint8Array(value.id)) { + // Use the standard JS methods here because buffer.copy() is buggy with the + // browser polyfill + buffer.set(value.id.subarray(0, 12), index); + } + else { + throw new BSONTypeError('object [' + JSON.stringify(value) + '] is not a valid ObjectId'); + } + // Adjust index + return index + 12; + } + function serializeBuffer(buffer, key, value, index, isArray) { + // Write the type + buffer[index++] = BSON_DATA_BINARY; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Get size of the buffer (current write point) + var size = value.length; + // Write the size of the string to buffer + buffer[index++] = size & 0xff; + buffer[index++] = (size >> 8) & 0xff; + buffer[index++] = (size >> 16) & 0xff; + buffer[index++] = (size >> 24) & 0xff; + // Write the default subtype + buffer[index++] = BSON_BINARY_SUBTYPE_DEFAULT; + // Copy the content form the binary field to the buffer + buffer.set(ensureBuffer(value), index); + // Adjust the index + index = index + size; + return index; + } + function serializeObject(buffer, key, value, index, checkKeys, depth, serializeFunctions, ignoreUndefined, isArray, path) { + if (checkKeys === void 0) { checkKeys = false; } + if (depth === void 0) { depth = 0; } + if (serializeFunctions === void 0) { serializeFunctions = false; } + if (ignoreUndefined === void 0) { ignoreUndefined = true; } + if (isArray === void 0) { isArray = false; } + if (path === void 0) { path = []; } + for (var i = 0; i < path.length; i++) { + if (path[i] === value) + throw new BSONError('cyclic dependency detected'); + } + // Push value to stack + path.push(value); + // Write the type + buffer[index++] = Array.isArray(value) ? BSON_DATA_ARRAY : BSON_DATA_OBJECT; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + var endIndex = serializeInto(buffer, value, checkKeys, index, depth + 1, serializeFunctions, ignoreUndefined, path); + // Pop stack + path.pop(); + return endIndex; + } + function serializeDecimal128(buffer, key, value, index, isArray) { + buffer[index++] = BSON_DATA_DECIMAL128; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Write the data from the value + // Prefer the standard JS methods because their typechecking is not buggy, + // unlike the `buffer` polyfill's. + buffer.set(value.bytes.subarray(0, 16), index); + return index + 16; + } + function serializeLong(buffer, key, value, index, isArray) { + // Write the type + buffer[index++] = + value._bsontype === 'Long' ? BSON_DATA_LONG : BSON_DATA_TIMESTAMP; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Write the date + var lowBits = value.getLowBits(); + var highBits = value.getHighBits(); + // Encode low bits + buffer[index++] = lowBits & 0xff; + buffer[index++] = (lowBits >> 8) & 0xff; + buffer[index++] = (lowBits >> 16) & 0xff; + buffer[index++] = (lowBits >> 24) & 0xff; + // Encode high bits + buffer[index++] = highBits & 0xff; + buffer[index++] = (highBits >> 8) & 0xff; + buffer[index++] = (highBits >> 16) & 0xff; + buffer[index++] = (highBits >> 24) & 0xff; + return index; + } + function serializeInt32(buffer, key, value, index, isArray) { + value = value.valueOf(); + // Set int type 32 bits or less + buffer[index++] = BSON_DATA_INT; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Write the int value + buffer[index++] = value & 0xff; + buffer[index++] = (value >> 8) & 0xff; + buffer[index++] = (value >> 16) & 0xff; + buffer[index++] = (value >> 24) & 0xff; + return index; + } + function serializeDouble(buffer, key, value, index, isArray) { + // Encode as double + buffer[index++] = BSON_DATA_NUMBER; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Write float + DV_FOR_FLOAT64.setFloat64(0, value.value, true); + buffer.set(SPACE_FOR_FLOAT64, index); + // Adjust index + index = index + 8; + return index; + } + function serializeFunction(buffer, key, value, index, _checkKeys, _depth, isArray) { + buffer[index++] = BSON_DATA_CODE; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Function string + var functionString = normalizedFunctionString(value); + // Write the string + var size = buffer.write(functionString, index + 4, undefined, 'utf8') + 1; + // Write the size of the string to buffer + buffer[index] = size & 0xff; + buffer[index + 1] = (size >> 8) & 0xff; + buffer[index + 2] = (size >> 16) & 0xff; + buffer[index + 3] = (size >> 24) & 0xff; + // Update index + index = index + 4 + size - 1; + // Write zero + buffer[index++] = 0; + return index; + } + function serializeCode(buffer, key, value, index, checkKeys, depth, serializeFunctions, ignoreUndefined, isArray) { + if (checkKeys === void 0) { checkKeys = false; } + if (depth === void 0) { depth = 0; } + if (serializeFunctions === void 0) { serializeFunctions = false; } + if (ignoreUndefined === void 0) { ignoreUndefined = true; } + if (isArray === void 0) { isArray = false; } + if (value.scope && typeof value.scope === 'object') { + // Write the type + buffer[index++] = BSON_DATA_CODE_W_SCOPE; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Starting index + var startIndex = index; + // Serialize the function + // Get the function string + var functionString = typeof value.code === 'string' ? value.code : value.code.toString(); + // Index adjustment + index = index + 4; + // Write string into buffer + var codeSize = buffer.write(functionString, index + 4, undefined, 'utf8') + 1; + // Write the size of the string to buffer + buffer[index] = codeSize & 0xff; + buffer[index + 1] = (codeSize >> 8) & 0xff; + buffer[index + 2] = (codeSize >> 16) & 0xff; + buffer[index + 3] = (codeSize >> 24) & 0xff; + // Write end 0 + buffer[index + 4 + codeSize - 1] = 0; + // Write the + index = index + codeSize + 4; + // + // Serialize the scope value + var endIndex = serializeInto(buffer, value.scope, checkKeys, index, depth + 1, serializeFunctions, ignoreUndefined); + index = endIndex - 1; + // Writ the total + var totalSize = endIndex - startIndex; + // Write the total size of the object + buffer[startIndex++] = totalSize & 0xff; + buffer[startIndex++] = (totalSize >> 8) & 0xff; + buffer[startIndex++] = (totalSize >> 16) & 0xff; + buffer[startIndex++] = (totalSize >> 24) & 0xff; + // Write trailing zero + buffer[index++] = 0; + } + else { + buffer[index++] = BSON_DATA_CODE; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Function string + var functionString = value.code.toString(); + // Write the string + var size = buffer.write(functionString, index + 4, undefined, 'utf8') + 1; + // Write the size of the string to buffer + buffer[index] = size & 0xff; + buffer[index + 1] = (size >> 8) & 0xff; + buffer[index + 2] = (size >> 16) & 0xff; + buffer[index + 3] = (size >> 24) & 0xff; + // Update index + index = index + 4 + size - 1; + // Write zero + buffer[index++] = 0; + } + return index; + } + function serializeBinary(buffer, key, value, index, isArray) { + // Write the type + buffer[index++] = BSON_DATA_BINARY; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Extract the buffer + var data = value.value(true); + // Calculate size + var size = value.position; + // Add the deprecated 02 type 4 bytes of size to total + if (value.sub_type === Binary.SUBTYPE_BYTE_ARRAY) + size = size + 4; + // Write the size of the string to buffer + buffer[index++] = size & 0xff; + buffer[index++] = (size >> 8) & 0xff; + buffer[index++] = (size >> 16) & 0xff; + buffer[index++] = (size >> 24) & 0xff; + // Write the subtype to the buffer + buffer[index++] = value.sub_type; + // If we have binary type 2 the 4 first bytes are the size + if (value.sub_type === Binary.SUBTYPE_BYTE_ARRAY) { + size = size - 4; + buffer[index++] = size & 0xff; + buffer[index++] = (size >> 8) & 0xff; + buffer[index++] = (size >> 16) & 0xff; + buffer[index++] = (size >> 24) & 0xff; + } + // Write the data to the object + buffer.set(data, index); + // Adjust the index + index = index + value.position; + return index; + } + function serializeSymbol(buffer, key, value, index, isArray) { + // Write the type + buffer[index++] = BSON_DATA_SYMBOL; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Write the string + var size = buffer.write(value.value, index + 4, undefined, 'utf8') + 1; + // Write the size of the string to buffer + buffer[index] = size & 0xff; + buffer[index + 1] = (size >> 8) & 0xff; + buffer[index + 2] = (size >> 16) & 0xff; + buffer[index + 3] = (size >> 24) & 0xff; + // Update index + index = index + 4 + size - 1; + // Write zero + buffer[index++] = 0x00; + return index; + } + function serializeDBRef(buffer, key, value, index, depth, serializeFunctions, isArray) { + // Write the type + buffer[index++] = BSON_DATA_OBJECT; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + var startIndex = index; + var output = { + $ref: value.collection || value.namespace, + $id: value.oid + }; + if (value.db != null) { + output.$db = value.db; + } + output = Object.assign(output, value.fields); + var endIndex = serializeInto(buffer, output, false, index, depth + 1, serializeFunctions); + // Calculate object size + var size = endIndex - startIndex; + // Write the size + buffer[startIndex++] = size & 0xff; + buffer[startIndex++] = (size >> 8) & 0xff; + buffer[startIndex++] = (size >> 16) & 0xff; + buffer[startIndex++] = (size >> 24) & 0xff; + // Set index + return endIndex; + } + function serializeInto(buffer, object, checkKeys, startingIndex, depth, serializeFunctions, ignoreUndefined, path) { + if (checkKeys === void 0) { checkKeys = false; } + if (startingIndex === void 0) { startingIndex = 0; } + if (depth === void 0) { depth = 0; } + if (serializeFunctions === void 0) { serializeFunctions = false; } + if (ignoreUndefined === void 0) { ignoreUndefined = true; } + if (path === void 0) { path = []; } + startingIndex = startingIndex || 0; + path = path || []; + // Push the object to the path + path.push(object); + // Start place to serialize into + var index = startingIndex + 4; + // Special case isArray + if (Array.isArray(object)) { + // Get object keys + for (var i = 0; i < object.length; i++) { + var key = "".concat(i); + var value = object[i]; + // Is there an override value + if (typeof (value === null || value === void 0 ? void 0 : value.toBSON) === 'function') { + value = value.toBSON(); + } + if (typeof value === 'string') { + index = serializeString(buffer, key, value, index, true); + } + else if (typeof value === 'number') { + index = serializeNumber(buffer, key, value, index, true); + } + else if (typeof value === 'bigint') { + throw new BSONTypeError('Unsupported type BigInt, please use Decimal128'); + } + else if (typeof value === 'boolean') { + index = serializeBoolean(buffer, key, value, index, true); + } + else if (value instanceof Date || isDate(value)) { + index = serializeDate(buffer, key, value, index, true); + } + else if (value === undefined) { + index = serializeNull(buffer, key, value, index, true); + } + else if (value === null) { + index = serializeNull(buffer, key, value, index, true); + } + else if (value['_bsontype'] === 'ObjectId' || value['_bsontype'] === 'ObjectID') { + index = serializeObjectId(buffer, key, value, index, true); + } + else if (isUint8Array(value)) { + index = serializeBuffer(buffer, key, value, index, true); + } + else if (value instanceof RegExp || isRegExp(value)) { + index = serializeRegExp(buffer, key, value, index, true); + } + else if (typeof value === 'object' && value['_bsontype'] == null) { + index = serializeObject(buffer, key, value, index, checkKeys, depth, serializeFunctions, ignoreUndefined, true, path); + } + else if (typeof value === 'object' && + isBSONType(value) && + value._bsontype === 'Decimal128') { + index = serializeDecimal128(buffer, key, value, index, true); + } + else if (value['_bsontype'] === 'Long' || value['_bsontype'] === 'Timestamp') { + index = serializeLong(buffer, key, value, index, true); + } + else if (value['_bsontype'] === 'Double') { + index = serializeDouble(buffer, key, value, index, true); + } + else if (typeof value === 'function' && serializeFunctions) { + index = serializeFunction(buffer, key, value, index, checkKeys, depth, true); + } + else if (value['_bsontype'] === 'Code') { + index = serializeCode(buffer, key, value, index, checkKeys, depth, serializeFunctions, ignoreUndefined, true); + } + else if (value['_bsontype'] === 'Binary') { + index = serializeBinary(buffer, key, value, index, true); + } + else if (value['_bsontype'] === 'Symbol') { + index = serializeSymbol(buffer, key, value, index, true); + } + else if (value['_bsontype'] === 'DBRef') { + index = serializeDBRef(buffer, key, value, index, depth, serializeFunctions, true); + } + else if (value['_bsontype'] === 'BSONRegExp') { + index = serializeBSONRegExp(buffer, key, value, index, true); + } + else if (value['_bsontype'] === 'Int32') { + index = serializeInt32(buffer, key, value, index, true); + } + else if (value['_bsontype'] === 'MinKey' || value['_bsontype'] === 'MaxKey') { + index = serializeMinMax(buffer, key, value, index, true); + } + else if (typeof value['_bsontype'] !== 'undefined') { + throw new BSONTypeError("Unrecognized or invalid _bsontype: ".concat(String(value['_bsontype']))); + } + } + } + else if (object instanceof exports.Map || isMap(object)) { + var iterator = object.entries(); + var done = false; + while (!done) { + // Unpack the next entry + var entry = iterator.next(); + done = !!entry.done; + // Are we done, then skip and terminate + if (done) + continue; + // Get the entry values + var key = entry.value[0]; + var value = entry.value[1]; + // Check the type of the value + var type = typeof value; + // Check the key and throw error if it's illegal + if (typeof key === 'string' && !ignoreKeys.has(key)) { + if (key.match(regexp) != null) { + // The BSON spec doesn't allow keys with null bytes because keys are + // null-terminated. + throw Error('key ' + key + ' must not contain null bytes'); + } + if (checkKeys) { + if ('$' === key[0]) { + throw Error('key ' + key + " must not start with '$'"); + } + else if (~key.indexOf('.')) { + throw Error('key ' + key + " must not contain '.'"); + } + } + } + if (type === 'string') { + index = serializeString(buffer, key, value, index); + } + else if (type === 'number') { + index = serializeNumber(buffer, key, value, index); + } + else if (type === 'bigint' || isBigInt64Array(value) || isBigUInt64Array(value)) { + throw new BSONTypeError('Unsupported type BigInt, please use Decimal128'); + } + else if (type === 'boolean') { + index = serializeBoolean(buffer, key, value, index); + } + else if (value instanceof Date || isDate(value)) { + index = serializeDate(buffer, key, value, index); + } + else if (value === null || (value === undefined && ignoreUndefined === false)) { + index = serializeNull(buffer, key, value, index); + } + else if (value['_bsontype'] === 'ObjectId' || value['_bsontype'] === 'ObjectID') { + index = serializeObjectId(buffer, key, value, index); + } + else if (isUint8Array(value)) { + index = serializeBuffer(buffer, key, value, index); + } + else if (value instanceof RegExp || isRegExp(value)) { + index = serializeRegExp(buffer, key, value, index); + } + else if (type === 'object' && value['_bsontype'] == null) { + index = serializeObject(buffer, key, value, index, checkKeys, depth, serializeFunctions, ignoreUndefined, false, path); + } + else if (type === 'object' && value['_bsontype'] === 'Decimal128') { + index = serializeDecimal128(buffer, key, value, index); + } + else if (value['_bsontype'] === 'Long' || value['_bsontype'] === 'Timestamp') { + index = serializeLong(buffer, key, value, index); + } + else if (value['_bsontype'] === 'Double') { + index = serializeDouble(buffer, key, value, index); + } + else if (value['_bsontype'] === 'Code') { + index = serializeCode(buffer, key, value, index, checkKeys, depth, serializeFunctions, ignoreUndefined); + } + else if (typeof value === 'function' && serializeFunctions) { + index = serializeFunction(buffer, key, value, index, checkKeys, depth, serializeFunctions); + } + else if (value['_bsontype'] === 'Binary') { + index = serializeBinary(buffer, key, value, index); + } + else if (value['_bsontype'] === 'Symbol') { + index = serializeSymbol(buffer, key, value, index); + } + else if (value['_bsontype'] === 'DBRef') { + index = serializeDBRef(buffer, key, value, index, depth, serializeFunctions); + } + else if (value['_bsontype'] === 'BSONRegExp') { + index = serializeBSONRegExp(buffer, key, value, index); + } + else if (value['_bsontype'] === 'Int32') { + index = serializeInt32(buffer, key, value, index); + } + else if (value['_bsontype'] === 'MinKey' || value['_bsontype'] === 'MaxKey') { + index = serializeMinMax(buffer, key, value, index); + } + else if (typeof value['_bsontype'] !== 'undefined') { + throw new BSONTypeError("Unrecognized or invalid _bsontype: ".concat(String(value['_bsontype']))); + } + } + } + else { + if (typeof (object === null || object === void 0 ? void 0 : object.toBSON) === 'function') { + // Provided a custom serialization method + object = object.toBSON(); + if (object != null && typeof object !== 'object') { + throw new BSONTypeError('toBSON function did not return an object'); + } + } + // Iterate over all the keys + for (var key in object) { + var value = object[key]; + // Is there an override value + if (typeof (value === null || value === void 0 ? void 0 : value.toBSON) === 'function') { + value = value.toBSON(); + } + // Check the type of the value + var type = typeof value; + // Check the key and throw error if it's illegal + if (typeof key === 'string' && !ignoreKeys.has(key)) { + if (key.match(regexp) != null) { + // The BSON spec doesn't allow keys with null bytes because keys are + // null-terminated. + throw Error('key ' + key + ' must not contain null bytes'); + } + if (checkKeys) { + if ('$' === key[0]) { + throw Error('key ' + key + " must not start with '$'"); + } + else if (~key.indexOf('.')) { + throw Error('key ' + key + " must not contain '.'"); + } + } + } + if (type === 'string') { + index = serializeString(buffer, key, value, index); + } + else if (type === 'number') { + index = serializeNumber(buffer, key, value, index); + } + else if (type === 'bigint') { + throw new BSONTypeError('Unsupported type BigInt, please use Decimal128'); + } + else if (type === 'boolean') { + index = serializeBoolean(buffer, key, value, index); + } + else if (value instanceof Date || isDate(value)) { + index = serializeDate(buffer, key, value, index); + } + else if (value === undefined) { + if (ignoreUndefined === false) + index = serializeNull(buffer, key, value, index); + } + else if (value === null) { + index = serializeNull(buffer, key, value, index); + } + else if (value['_bsontype'] === 'ObjectId' || value['_bsontype'] === 'ObjectID') { + index = serializeObjectId(buffer, key, value, index); + } + else if (isUint8Array(value)) { + index = serializeBuffer(buffer, key, value, index); + } + else if (value instanceof RegExp || isRegExp(value)) { + index = serializeRegExp(buffer, key, value, index); + } + else if (type === 'object' && value['_bsontype'] == null) { + index = serializeObject(buffer, key, value, index, checkKeys, depth, serializeFunctions, ignoreUndefined, false, path); + } + else if (type === 'object' && value['_bsontype'] === 'Decimal128') { + index = serializeDecimal128(buffer, key, value, index); + } + else if (value['_bsontype'] === 'Long' || value['_bsontype'] === 'Timestamp') { + index = serializeLong(buffer, key, value, index); + } + else if (value['_bsontype'] === 'Double') { + index = serializeDouble(buffer, key, value, index); + } + else if (value['_bsontype'] === 'Code') { + index = serializeCode(buffer, key, value, index, checkKeys, depth, serializeFunctions, ignoreUndefined); + } + else if (typeof value === 'function' && serializeFunctions) { + index = serializeFunction(buffer, key, value, index, checkKeys, depth, serializeFunctions); + } + else if (value['_bsontype'] === 'Binary') { + index = serializeBinary(buffer, key, value, index); + } + else if (value['_bsontype'] === 'Symbol') { + index = serializeSymbol(buffer, key, value, index); + } + else if (value['_bsontype'] === 'DBRef') { + index = serializeDBRef(buffer, key, value, index, depth, serializeFunctions); + } + else if (value['_bsontype'] === 'BSONRegExp') { + index = serializeBSONRegExp(buffer, key, value, index); + } + else if (value['_bsontype'] === 'Int32') { + index = serializeInt32(buffer, key, value, index); + } + else if (value['_bsontype'] === 'MinKey' || value['_bsontype'] === 'MaxKey') { + index = serializeMinMax(buffer, key, value, index); + } + else if (typeof value['_bsontype'] !== 'undefined') { + throw new BSONTypeError("Unrecognized or invalid _bsontype: ".concat(String(value['_bsontype']))); + } + } + } + // Remove the path + path.pop(); + // Final padding byte for object + buffer[index++] = 0x00; + // Final size + var size = index - startingIndex; + // Write the size of the object + buffer[startingIndex++] = size & 0xff; + buffer[startingIndex++] = (size >> 8) & 0xff; + buffer[startingIndex++] = (size >> 16) & 0xff; + buffer[startingIndex++] = (size >> 24) & 0xff; + return index; + } + + /** @internal */ + // Default Max Size + var MAXSIZE = 1024 * 1024 * 17; + // Current Internal Temporary Serialization Buffer + var buffer = buffer_1.alloc(MAXSIZE); + /** + * Sets the size of the internal serialization buffer. + * + * @param size - The desired size for the internal serialization buffer + * @public + */ + function setInternalBufferSize(size) { + // Resize the internal serialization buffer if needed + if (buffer.length < size) { + buffer = buffer_1.alloc(size); + } + } + /** + * Serialize a Javascript object. + * + * @param object - the Javascript object to serialize. + * @returns Buffer object containing the serialized object. + * @public + */ + function serialize(object, options) { + if (options === void 0) { options = {}; } + // Unpack the options + var checkKeys = typeof options.checkKeys === 'boolean' ? options.checkKeys : false; + var serializeFunctions = typeof options.serializeFunctions === 'boolean' ? options.serializeFunctions : false; + var ignoreUndefined = typeof options.ignoreUndefined === 'boolean' ? options.ignoreUndefined : true; + var minInternalBufferSize = typeof options.minInternalBufferSize === 'number' ? options.minInternalBufferSize : MAXSIZE; + // Resize the internal serialization buffer if needed + if (buffer.length < minInternalBufferSize) { + buffer = buffer_1.alloc(minInternalBufferSize); + } + // Attempt to serialize + var serializationIndex = serializeInto(buffer, object, checkKeys, 0, 0, serializeFunctions, ignoreUndefined, []); + // Create the final buffer + var finishedBuffer = buffer_1.alloc(serializationIndex); + // Copy into the finished buffer + buffer.copy(finishedBuffer, 0, 0, finishedBuffer.length); + // Return the buffer + return finishedBuffer; + } + /** + * Serialize a Javascript object using a predefined Buffer and index into the buffer, + * useful when pre-allocating the space for serialization. + * + * @param object - the Javascript object to serialize. + * @param finalBuffer - the Buffer you pre-allocated to store the serialized BSON object. + * @returns the index pointing to the last written byte in the buffer. + * @public + */ + function serializeWithBufferAndIndex(object, finalBuffer, options) { + if (options === void 0) { options = {}; } + // Unpack the options + var checkKeys = typeof options.checkKeys === 'boolean' ? options.checkKeys : false; + var serializeFunctions = typeof options.serializeFunctions === 'boolean' ? options.serializeFunctions : false; + var ignoreUndefined = typeof options.ignoreUndefined === 'boolean' ? options.ignoreUndefined : true; + var startIndex = typeof options.index === 'number' ? options.index : 0; + // Attempt to serialize + var serializationIndex = serializeInto(buffer, object, checkKeys, 0, 0, serializeFunctions, ignoreUndefined); + buffer.copy(finalBuffer, startIndex, 0, serializationIndex); + // Return the index + return startIndex + serializationIndex - 1; + } + /** + * Deserialize data as BSON. + * + * @param buffer - the buffer containing the serialized set of BSON documents. + * @returns returns the deserialized Javascript Object. + * @public + */ + function deserialize(buffer, options) { + if (options === void 0) { options = {}; } + return deserialize$1(buffer instanceof buffer_1 ? buffer : ensureBuffer(buffer), options); + } + /** + * Calculate the bson size for a passed in Javascript object. + * + * @param object - the Javascript object to calculate the BSON byte size for + * @returns size of BSON object in bytes + * @public + */ + function calculateObjectSize(object, options) { + if (options === void 0) { options = {}; } + options = options || {}; + var serializeFunctions = typeof options.serializeFunctions === 'boolean' ? options.serializeFunctions : false; + var ignoreUndefined = typeof options.ignoreUndefined === 'boolean' ? options.ignoreUndefined : true; + return calculateObjectSize$1(object, serializeFunctions, ignoreUndefined); + } + /** + * Deserialize stream data as BSON documents. + * + * @param data - the buffer containing the serialized set of BSON documents. + * @param startIndex - the start index in the data Buffer where the deserialization is to start. + * @param numberOfDocuments - number of documents to deserialize. + * @param documents - an array where to store the deserialized documents. + * @param docStartIndex - the index in the documents array from where to start inserting documents. + * @param options - additional options used for the deserialization. + * @returns next index in the buffer after deserialization **x** numbers of documents. + * @public + */ + function deserializeStream(data, startIndex, numberOfDocuments, documents, docStartIndex, options) { + var internalOptions = Object.assign({ allowObjectSmallerThanBufferSize: true, index: 0 }, options); + var bufferData = ensureBuffer(data); + var index = startIndex; + // Loop over all documents + for (var i = 0; i < numberOfDocuments; i++) { + // Find size of the document + var size = bufferData[index] | + (bufferData[index + 1] << 8) | + (bufferData[index + 2] << 16) | + (bufferData[index + 3] << 24); + // Update options with index + internalOptions.index = index; + // Parse the document at this point + documents[docStartIndex + i] = deserialize$1(bufferData, internalOptions); + // Adjust index by the document size + index = index + size; + } + // Return object containing end index of parsing and list of documents + return index; + } + /** + * BSON default export + * @deprecated Please use named exports + * @privateRemarks + * We want to someday deprecate the default export, + * so none of the new TS types are being exported on the default + * @public + */ + var BSON = { + Binary: Binary, + Code: Code, + DBRef: DBRef, + Decimal128: Decimal128, + Double: Double, + Int32: Int32, + Long: Long, + UUID: UUID, + Map: exports.Map, + MaxKey: MaxKey, + MinKey: MinKey, + ObjectId: ObjectId, + ObjectID: ObjectId, + BSONRegExp: BSONRegExp, + BSONSymbol: BSONSymbol, + Timestamp: Timestamp, + EJSON: exports.EJSON, + setInternalBufferSize: setInternalBufferSize, + serialize: serialize, + serializeWithBufferAndIndex: serializeWithBufferAndIndex, + deserialize: deserialize, + calculateObjectSize: calculateObjectSize, + deserializeStream: deserializeStream, + BSONError: BSONError, + BSONTypeError: BSONTypeError + }; + + exports.BSONError = BSONError; + exports.BSONRegExp = BSONRegExp; + exports.BSONSymbol = BSONSymbol; + exports.BSONTypeError = BSONTypeError; + exports.BSON_BINARY_SUBTYPE_BYTE_ARRAY = BSON_BINARY_SUBTYPE_BYTE_ARRAY; + exports.BSON_BINARY_SUBTYPE_COLUMN = BSON_BINARY_SUBTYPE_COLUMN; + exports.BSON_BINARY_SUBTYPE_DEFAULT = BSON_BINARY_SUBTYPE_DEFAULT; + exports.BSON_BINARY_SUBTYPE_ENCRYPTED = BSON_BINARY_SUBTYPE_ENCRYPTED; + exports.BSON_BINARY_SUBTYPE_FUNCTION = BSON_BINARY_SUBTYPE_FUNCTION; + exports.BSON_BINARY_SUBTYPE_MD5 = BSON_BINARY_SUBTYPE_MD5; + exports.BSON_BINARY_SUBTYPE_USER_DEFINED = BSON_BINARY_SUBTYPE_USER_DEFINED; + exports.BSON_BINARY_SUBTYPE_UUID = BSON_BINARY_SUBTYPE_UUID; + exports.BSON_BINARY_SUBTYPE_UUID_NEW = BSON_BINARY_SUBTYPE_UUID_NEW; + exports.BSON_DATA_ARRAY = BSON_DATA_ARRAY; + exports.BSON_DATA_BINARY = BSON_DATA_BINARY; + exports.BSON_DATA_BOOLEAN = BSON_DATA_BOOLEAN; + exports.BSON_DATA_CODE = BSON_DATA_CODE; + exports.BSON_DATA_CODE_W_SCOPE = BSON_DATA_CODE_W_SCOPE; + exports.BSON_DATA_DATE = BSON_DATA_DATE; + exports.BSON_DATA_DBPOINTER = BSON_DATA_DBPOINTER; + exports.BSON_DATA_DECIMAL128 = BSON_DATA_DECIMAL128; + exports.BSON_DATA_INT = BSON_DATA_INT; + exports.BSON_DATA_LONG = BSON_DATA_LONG; + exports.BSON_DATA_MAX_KEY = BSON_DATA_MAX_KEY; + exports.BSON_DATA_MIN_KEY = BSON_DATA_MIN_KEY; + exports.BSON_DATA_NULL = BSON_DATA_NULL; + exports.BSON_DATA_NUMBER = BSON_DATA_NUMBER; + exports.BSON_DATA_OBJECT = BSON_DATA_OBJECT; + exports.BSON_DATA_OID = BSON_DATA_OID; + exports.BSON_DATA_REGEXP = BSON_DATA_REGEXP; + exports.BSON_DATA_STRING = BSON_DATA_STRING; + exports.BSON_DATA_SYMBOL = BSON_DATA_SYMBOL; + exports.BSON_DATA_TIMESTAMP = BSON_DATA_TIMESTAMP; + exports.BSON_DATA_UNDEFINED = BSON_DATA_UNDEFINED; + exports.BSON_INT32_MAX = BSON_INT32_MAX$1; + exports.BSON_INT32_MIN = BSON_INT32_MIN$1; + exports.BSON_INT64_MAX = BSON_INT64_MAX$1; + exports.BSON_INT64_MIN = BSON_INT64_MIN$1; + exports.Binary = Binary; + exports.Code = Code; + exports.DBRef = DBRef; + exports.Decimal128 = Decimal128; + exports.Double = Double; + exports.Int32 = Int32; + exports.Long = Long; + exports.LongWithoutOverridesClass = LongWithoutOverridesClass; + exports.MaxKey = MaxKey; + exports.MinKey = MinKey; + exports.ObjectID = ObjectId; + exports.ObjectId = ObjectId; + exports.Timestamp = Timestamp; + exports.UUID = UUID; + exports.calculateObjectSize = calculateObjectSize; + exports.default = BSON; + exports.deserialize = deserialize; + exports.deserializeStream = deserializeStream; + exports.serialize = serialize; + exports.serializeWithBufferAndIndex = serializeWithBufferAndIndex; + exports.setInternalBufferSize = setInternalBufferSize; + + Object.defineProperty(exports, '__esModule', { value: true }); + + return exports; + +}({})); +//# sourceMappingURL=bson.bundle.js.map diff --git a/node_modules/bson/dist/bson.bundle.js.map b/node_modules/bson/dist/bson.bundle.js.map new file mode 100644 index 000000000..ba233e1e1 --- /dev/null +++ b/node_modules/bson/dist/bson.bundle.js.map @@ -0,0 +1 @@ +{"version":3,"file":"bson.bundle.js","sources":["../node_modules/base64-js/index.js","../node_modules/ieee754/index.js","../node_modules/buffer/index.js","../node_modules/tslib/tslib.es6.js","../src/error.ts","../src/utils/global.ts","../src/parser/utils.ts","../src/ensure_buffer.ts","../src/uuid_utils.ts","../src/constants.ts","../src/binary.ts","../src/code.ts","../src/db_ref.ts","../src/long.ts","../src/decimal128.ts","../src/double.ts","../src/int_32.ts","../src/max_key.ts","../src/min_key.ts","../src/objectid.ts","../src/regexp.ts","../src/symbol.ts","../src/timestamp.ts","../src/extended_json.ts","../src/map.ts","../src/parser/calculate_size.ts","../src/validate_utf8.ts","../src/parser/deserializer.ts","../src/parser/serializer.ts","../src/bson.ts"],"sourcesContent":["'use strict'\n\nexports.byteLength = byteLength\nexports.toByteArray = toByteArray\nexports.fromByteArray = fromByteArray\n\nvar lookup = []\nvar revLookup = []\nvar Arr = typeof Uint8Array !== 'undefined' ? Uint8Array : Array\n\nvar code = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'\nfor (var i = 0, len = code.length; i < len; ++i) {\n lookup[i] = code[i]\n revLookup[code.charCodeAt(i)] = i\n}\n\n// Support decoding URL-safe base64 strings, as Node.js does.\n// See: https://en.wikipedia.org/wiki/Base64#URL_applications\nrevLookup['-'.charCodeAt(0)] = 62\nrevLookup['_'.charCodeAt(0)] = 63\n\nfunction getLens (b64) {\n var len = b64.length\n\n if (len % 4 > 0) {\n throw new Error('Invalid string. Length must be a multiple of 4')\n }\n\n // Trim off extra bytes after placeholder bytes are found\n // See: https://github.com/beatgammit/base64-js/issues/42\n var validLen = b64.indexOf('=')\n if (validLen === -1) validLen = len\n\n var placeHoldersLen = validLen === len\n ? 0\n : 4 - (validLen % 4)\n\n return [validLen, placeHoldersLen]\n}\n\n// base64 is 4/3 + up to two characters of the original data\nfunction byteLength (b64) {\n var lens = getLens(b64)\n var validLen = lens[0]\n var placeHoldersLen = lens[1]\n return ((validLen + placeHoldersLen) * 3 / 4) - placeHoldersLen\n}\n\nfunction _byteLength (b64, validLen, placeHoldersLen) {\n return ((validLen + placeHoldersLen) * 3 / 4) - placeHoldersLen\n}\n\nfunction toByteArray (b64) {\n var tmp\n var lens = getLens(b64)\n var validLen = lens[0]\n var placeHoldersLen = lens[1]\n\n var arr = new Arr(_byteLength(b64, validLen, placeHoldersLen))\n\n var curByte = 0\n\n // if there are placeholders, only get up to the last complete 4 chars\n var len = placeHoldersLen > 0\n ? validLen - 4\n : validLen\n\n var i\n for (i = 0; i < len; i += 4) {\n tmp =\n (revLookup[b64.charCodeAt(i)] << 18) |\n (revLookup[b64.charCodeAt(i + 1)] << 12) |\n (revLookup[b64.charCodeAt(i + 2)] << 6) |\n revLookup[b64.charCodeAt(i + 3)]\n arr[curByte++] = (tmp >> 16) & 0xFF\n arr[curByte++] = (tmp >> 8) & 0xFF\n arr[curByte++] = tmp & 0xFF\n }\n\n if (placeHoldersLen === 2) {\n tmp =\n (revLookup[b64.charCodeAt(i)] << 2) |\n (revLookup[b64.charCodeAt(i + 1)] >> 4)\n arr[curByte++] = tmp & 0xFF\n }\n\n if (placeHoldersLen === 1) {\n tmp =\n (revLookup[b64.charCodeAt(i)] << 10) |\n (revLookup[b64.charCodeAt(i + 1)] << 4) |\n (revLookup[b64.charCodeAt(i + 2)] >> 2)\n arr[curByte++] = (tmp >> 8) & 0xFF\n arr[curByte++] = tmp & 0xFF\n }\n\n return arr\n}\n\nfunction tripletToBase64 (num) {\n return lookup[num >> 18 & 0x3F] +\n lookup[num >> 12 & 0x3F] +\n lookup[num >> 6 & 0x3F] +\n lookup[num & 0x3F]\n}\n\nfunction encodeChunk (uint8, start, end) {\n var tmp\n var output = []\n for (var i = start; i < end; i += 3) {\n tmp =\n ((uint8[i] << 16) & 0xFF0000) +\n ((uint8[i + 1] << 8) & 0xFF00) +\n (uint8[i + 2] & 0xFF)\n output.push(tripletToBase64(tmp))\n }\n return output.join('')\n}\n\nfunction fromByteArray (uint8) {\n var tmp\n var len = uint8.length\n var extraBytes = len % 3 // if we have 1 byte left, pad 2 bytes\n var parts = []\n var maxChunkLength = 16383 // must be multiple of 3\n\n // go through the array every three bytes, we'll deal with trailing stuff later\n for (var i = 0, len2 = len - extraBytes; i < len2; i += maxChunkLength) {\n parts.push(encodeChunk(uint8, i, (i + maxChunkLength) > len2 ? len2 : (i + maxChunkLength)))\n }\n\n // pad the end with zeros, but make sure to not forget the extra bytes\n if (extraBytes === 1) {\n tmp = uint8[len - 1]\n parts.push(\n lookup[tmp >> 2] +\n lookup[(tmp << 4) & 0x3F] +\n '=='\n )\n } else if (extraBytes === 2) {\n tmp = (uint8[len - 2] << 8) + uint8[len - 1]\n parts.push(\n lookup[tmp >> 10] +\n lookup[(tmp >> 4) & 0x3F] +\n lookup[(tmp << 2) & 0x3F] +\n '='\n )\n }\n\n return parts.join('')\n}\n","/*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh */\nexports.read = function (buffer, offset, isLE, mLen, nBytes) {\n var e, m\n var eLen = (nBytes * 8) - mLen - 1\n var eMax = (1 << eLen) - 1\n var eBias = eMax >> 1\n var nBits = -7\n var i = isLE ? (nBytes - 1) : 0\n var d = isLE ? -1 : 1\n var s = buffer[offset + i]\n\n i += d\n\n e = s & ((1 << (-nBits)) - 1)\n s >>= (-nBits)\n nBits += eLen\n for (; nBits > 0; e = (e * 256) + buffer[offset + i], i += d, nBits -= 8) {}\n\n m = e & ((1 << (-nBits)) - 1)\n e >>= (-nBits)\n nBits += mLen\n for (; nBits > 0; m = (m * 256) + buffer[offset + i], i += d, nBits -= 8) {}\n\n if (e === 0) {\n e = 1 - eBias\n } else if (e === eMax) {\n return m ? NaN : ((s ? -1 : 1) * Infinity)\n } else {\n m = m + Math.pow(2, mLen)\n e = e - eBias\n }\n return (s ? -1 : 1) * m * Math.pow(2, e - mLen)\n}\n\nexports.write = function (buffer, value, offset, isLE, mLen, nBytes) {\n var e, m, c\n var eLen = (nBytes * 8) - mLen - 1\n var eMax = (1 << eLen) - 1\n var eBias = eMax >> 1\n var rt = (mLen === 23 ? Math.pow(2, -24) - Math.pow(2, -77) : 0)\n var i = isLE ? 0 : (nBytes - 1)\n var d = isLE ? 1 : -1\n var s = value < 0 || (value === 0 && 1 / value < 0) ? 1 : 0\n\n value = Math.abs(value)\n\n if (isNaN(value) || value === Infinity) {\n m = isNaN(value) ? 1 : 0\n e = eMax\n } else {\n e = Math.floor(Math.log(value) / Math.LN2)\n if (value * (c = Math.pow(2, -e)) < 1) {\n e--\n c *= 2\n }\n if (e + eBias >= 1) {\n value += rt / c\n } else {\n value += rt * Math.pow(2, 1 - eBias)\n }\n if (value * c >= 2) {\n e++\n c /= 2\n }\n\n if (e + eBias >= eMax) {\n m = 0\n e = eMax\n } else if (e + eBias >= 1) {\n m = ((value * c) - 1) * Math.pow(2, mLen)\n e = e + eBias\n } else {\n m = value * Math.pow(2, eBias - 1) * Math.pow(2, mLen)\n e = 0\n }\n }\n\n for (; mLen >= 8; buffer[offset + i] = m & 0xff, i += d, m /= 256, mLen -= 8) {}\n\n e = (e << mLen) | m\n eLen += mLen\n for (; eLen > 0; buffer[offset + i] = e & 0xff, i += d, e /= 256, eLen -= 8) {}\n\n buffer[offset + i - d] |= s * 128\n}\n","/*!\n * The buffer module from node.js, for the browser.\n *\n * @author Feross Aboukhadijeh \n * @license MIT\n */\n/* eslint-disable no-proto */\n\n'use strict'\n\nvar base64 = require('base64-js')\nvar ieee754 = require('ieee754')\nvar customInspectSymbol =\n (typeof Symbol === 'function' && typeof Symbol['for'] === 'function') // eslint-disable-line dot-notation\n ? Symbol['for']('nodejs.util.inspect.custom') // eslint-disable-line dot-notation\n : null\n\nexports.Buffer = Buffer\nexports.SlowBuffer = SlowBuffer\nexports.INSPECT_MAX_BYTES = 50\n\nvar K_MAX_LENGTH = 0x7fffffff\nexports.kMaxLength = K_MAX_LENGTH\n\n/**\n * If `Buffer.TYPED_ARRAY_SUPPORT`:\n * === true Use Uint8Array implementation (fastest)\n * === false Print warning and recommend using `buffer` v4.x which has an Object\n * implementation (most compatible, even IE6)\n *\n * Browsers that support typed arrays are IE 10+, Firefox 4+, Chrome 7+, Safari 5.1+,\n * Opera 11.6+, iOS 4.2+.\n *\n * We report that the browser does not support typed arrays if the are not subclassable\n * using __proto__. Firefox 4-29 lacks support for adding new properties to `Uint8Array`\n * (See: https://bugzilla.mozilla.org/show_bug.cgi?id=695438). IE 10 lacks support\n * for __proto__ and has a buggy typed array implementation.\n */\nBuffer.TYPED_ARRAY_SUPPORT = typedArraySupport()\n\nif (!Buffer.TYPED_ARRAY_SUPPORT && typeof console !== 'undefined' &&\n typeof console.error === 'function') {\n console.error(\n 'This browser lacks typed array (Uint8Array) support which is required by ' +\n '`buffer` v5.x. Use `buffer` v4.x if you require old browser support.'\n )\n}\n\nfunction typedArraySupport () {\n // Can typed array instances can be augmented?\n try {\n var arr = new Uint8Array(1)\n var proto = { foo: function () { return 42 } }\n Object.setPrototypeOf(proto, Uint8Array.prototype)\n Object.setPrototypeOf(arr, proto)\n return arr.foo() === 42\n } catch (e) {\n return false\n }\n}\n\nObject.defineProperty(Buffer.prototype, 'parent', {\n enumerable: true,\n get: function () {\n if (!Buffer.isBuffer(this)) return undefined\n return this.buffer\n }\n})\n\nObject.defineProperty(Buffer.prototype, 'offset', {\n enumerable: true,\n get: function () {\n if (!Buffer.isBuffer(this)) return undefined\n return this.byteOffset\n }\n})\n\nfunction createBuffer (length) {\n if (length > K_MAX_LENGTH) {\n throw new RangeError('The value \"' + length + '\" is invalid for option \"size\"')\n }\n // Return an augmented `Uint8Array` instance\n var buf = new Uint8Array(length)\n Object.setPrototypeOf(buf, Buffer.prototype)\n return buf\n}\n\n/**\n * The Buffer constructor returns instances of `Uint8Array` that have their\n * prototype changed to `Buffer.prototype`. Furthermore, `Buffer` is a subclass of\n * `Uint8Array`, so the returned instances will have all the node `Buffer` methods\n * and the `Uint8Array` methods. Square bracket notation works as expected -- it\n * returns a single octet.\n *\n * The `Uint8Array` prototype remains unmodified.\n */\n\nfunction Buffer (arg, encodingOrOffset, length) {\n // Common case.\n if (typeof arg === 'number') {\n if (typeof encodingOrOffset === 'string') {\n throw new TypeError(\n 'The \"string\" argument must be of type string. Received type number'\n )\n }\n return allocUnsafe(arg)\n }\n return from(arg, encodingOrOffset, length)\n}\n\nBuffer.poolSize = 8192 // not used by this implementation\n\nfunction from (value, encodingOrOffset, length) {\n if (typeof value === 'string') {\n return fromString(value, encodingOrOffset)\n }\n\n if (ArrayBuffer.isView(value)) {\n return fromArrayView(value)\n }\n\n if (value == null) {\n throw new TypeError(\n 'The first argument must be one of type string, Buffer, ArrayBuffer, Array, ' +\n 'or Array-like Object. Received type ' + (typeof value)\n )\n }\n\n if (isInstance(value, ArrayBuffer) ||\n (value && isInstance(value.buffer, ArrayBuffer))) {\n return fromArrayBuffer(value, encodingOrOffset, length)\n }\n\n if (typeof SharedArrayBuffer !== 'undefined' &&\n (isInstance(value, SharedArrayBuffer) ||\n (value && isInstance(value.buffer, SharedArrayBuffer)))) {\n return fromArrayBuffer(value, encodingOrOffset, length)\n }\n\n if (typeof value === 'number') {\n throw new TypeError(\n 'The \"value\" argument must not be of type number. Received type number'\n )\n }\n\n var valueOf = value.valueOf && value.valueOf()\n if (valueOf != null && valueOf !== value) {\n return Buffer.from(valueOf, encodingOrOffset, length)\n }\n\n var b = fromObject(value)\n if (b) return b\n\n if (typeof Symbol !== 'undefined' && Symbol.toPrimitive != null &&\n typeof value[Symbol.toPrimitive] === 'function') {\n return Buffer.from(\n value[Symbol.toPrimitive]('string'), encodingOrOffset, length\n )\n }\n\n throw new TypeError(\n 'The first argument must be one of type string, Buffer, ArrayBuffer, Array, ' +\n 'or Array-like Object. Received type ' + (typeof value)\n )\n}\n\n/**\n * Functionally equivalent to Buffer(arg, encoding) but throws a TypeError\n * if value is a number.\n * Buffer.from(str[, encoding])\n * Buffer.from(array)\n * Buffer.from(buffer)\n * Buffer.from(arrayBuffer[, byteOffset[, length]])\n **/\nBuffer.from = function (value, encodingOrOffset, length) {\n return from(value, encodingOrOffset, length)\n}\n\n// Note: Change prototype *after* Buffer.from is defined to workaround Chrome bug:\n// https://github.com/feross/buffer/pull/148\nObject.setPrototypeOf(Buffer.prototype, Uint8Array.prototype)\nObject.setPrototypeOf(Buffer, Uint8Array)\n\nfunction assertSize (size) {\n if (typeof size !== 'number') {\n throw new TypeError('\"size\" argument must be of type number')\n } else if (size < 0) {\n throw new RangeError('The value \"' + size + '\" is invalid for option \"size\"')\n }\n}\n\nfunction alloc (size, fill, encoding) {\n assertSize(size)\n if (size <= 0) {\n return createBuffer(size)\n }\n if (fill !== undefined) {\n // Only pay attention to encoding if it's a string. This\n // prevents accidentally sending in a number that would\n // be interpreted as a start offset.\n return typeof encoding === 'string'\n ? createBuffer(size).fill(fill, encoding)\n : createBuffer(size).fill(fill)\n }\n return createBuffer(size)\n}\n\n/**\n * Creates a new filled Buffer instance.\n * alloc(size[, fill[, encoding]])\n **/\nBuffer.alloc = function (size, fill, encoding) {\n return alloc(size, fill, encoding)\n}\n\nfunction allocUnsafe (size) {\n assertSize(size)\n return createBuffer(size < 0 ? 0 : checked(size) | 0)\n}\n\n/**\n * Equivalent to Buffer(num), by default creates a non-zero-filled Buffer instance.\n * */\nBuffer.allocUnsafe = function (size) {\n return allocUnsafe(size)\n}\n/**\n * Equivalent to SlowBuffer(num), by default creates a non-zero-filled Buffer instance.\n */\nBuffer.allocUnsafeSlow = function (size) {\n return allocUnsafe(size)\n}\n\nfunction fromString (string, encoding) {\n if (typeof encoding !== 'string' || encoding === '') {\n encoding = 'utf8'\n }\n\n if (!Buffer.isEncoding(encoding)) {\n throw new TypeError('Unknown encoding: ' + encoding)\n }\n\n var length = byteLength(string, encoding) | 0\n var buf = createBuffer(length)\n\n var actual = buf.write(string, encoding)\n\n if (actual !== length) {\n // Writing a hex string, for example, that contains invalid characters will\n // cause everything after the first invalid character to be ignored. (e.g.\n // 'abxxcd' will be treated as 'ab')\n buf = buf.slice(0, actual)\n }\n\n return buf\n}\n\nfunction fromArrayLike (array) {\n var length = array.length < 0 ? 0 : checked(array.length) | 0\n var buf = createBuffer(length)\n for (var i = 0; i < length; i += 1) {\n buf[i] = array[i] & 255\n }\n return buf\n}\n\nfunction fromArrayView (arrayView) {\n if (isInstance(arrayView, Uint8Array)) {\n var copy = new Uint8Array(arrayView)\n return fromArrayBuffer(copy.buffer, copy.byteOffset, copy.byteLength)\n }\n return fromArrayLike(arrayView)\n}\n\nfunction fromArrayBuffer (array, byteOffset, length) {\n if (byteOffset < 0 || array.byteLength < byteOffset) {\n throw new RangeError('\"offset\" is outside of buffer bounds')\n }\n\n if (array.byteLength < byteOffset + (length || 0)) {\n throw new RangeError('\"length\" is outside of buffer bounds')\n }\n\n var buf\n if (byteOffset === undefined && length === undefined) {\n buf = new Uint8Array(array)\n } else if (length === undefined) {\n buf = new Uint8Array(array, byteOffset)\n } else {\n buf = new Uint8Array(array, byteOffset, length)\n }\n\n // Return an augmented `Uint8Array` instance\n Object.setPrototypeOf(buf, Buffer.prototype)\n\n return buf\n}\n\nfunction fromObject (obj) {\n if (Buffer.isBuffer(obj)) {\n var len = checked(obj.length) | 0\n var buf = createBuffer(len)\n\n if (buf.length === 0) {\n return buf\n }\n\n obj.copy(buf, 0, 0, len)\n return buf\n }\n\n if (obj.length !== undefined) {\n if (typeof obj.length !== 'number' || numberIsNaN(obj.length)) {\n return createBuffer(0)\n }\n return fromArrayLike(obj)\n }\n\n if (obj.type === 'Buffer' && Array.isArray(obj.data)) {\n return fromArrayLike(obj.data)\n }\n}\n\nfunction checked (length) {\n // Note: cannot use `length < K_MAX_LENGTH` here because that fails when\n // length is NaN (which is otherwise coerced to zero.)\n if (length >= K_MAX_LENGTH) {\n throw new RangeError('Attempt to allocate Buffer larger than maximum ' +\n 'size: 0x' + K_MAX_LENGTH.toString(16) + ' bytes')\n }\n return length | 0\n}\n\nfunction SlowBuffer (length) {\n if (+length != length) { // eslint-disable-line eqeqeq\n length = 0\n }\n return Buffer.alloc(+length)\n}\n\nBuffer.isBuffer = function isBuffer (b) {\n return b != null && b._isBuffer === true &&\n b !== Buffer.prototype // so Buffer.isBuffer(Buffer.prototype) will be false\n}\n\nBuffer.compare = function compare (a, b) {\n if (isInstance(a, Uint8Array)) a = Buffer.from(a, a.offset, a.byteLength)\n if (isInstance(b, Uint8Array)) b = Buffer.from(b, b.offset, b.byteLength)\n if (!Buffer.isBuffer(a) || !Buffer.isBuffer(b)) {\n throw new TypeError(\n 'The \"buf1\", \"buf2\" arguments must be one of type Buffer or Uint8Array'\n )\n }\n\n if (a === b) return 0\n\n var x = a.length\n var y = b.length\n\n for (var i = 0, len = Math.min(x, y); i < len; ++i) {\n if (a[i] !== b[i]) {\n x = a[i]\n y = b[i]\n break\n }\n }\n\n if (x < y) return -1\n if (y < x) return 1\n return 0\n}\n\nBuffer.isEncoding = function isEncoding (encoding) {\n switch (String(encoding).toLowerCase()) {\n case 'hex':\n case 'utf8':\n case 'utf-8':\n case 'ascii':\n case 'latin1':\n case 'binary':\n case 'base64':\n case 'ucs2':\n case 'ucs-2':\n case 'utf16le':\n case 'utf-16le':\n return true\n default:\n return false\n }\n}\n\nBuffer.concat = function concat (list, length) {\n if (!Array.isArray(list)) {\n throw new TypeError('\"list\" argument must be an Array of Buffers')\n }\n\n if (list.length === 0) {\n return Buffer.alloc(0)\n }\n\n var i\n if (length === undefined) {\n length = 0\n for (i = 0; i < list.length; ++i) {\n length += list[i].length\n }\n }\n\n var buffer = Buffer.allocUnsafe(length)\n var pos = 0\n for (i = 0; i < list.length; ++i) {\n var buf = list[i]\n if (isInstance(buf, Uint8Array)) {\n if (pos + buf.length > buffer.length) {\n Buffer.from(buf).copy(buffer, pos)\n } else {\n Uint8Array.prototype.set.call(\n buffer,\n buf,\n pos\n )\n }\n } else if (!Buffer.isBuffer(buf)) {\n throw new TypeError('\"list\" argument must be an Array of Buffers')\n } else {\n buf.copy(buffer, pos)\n }\n pos += buf.length\n }\n return buffer\n}\n\nfunction byteLength (string, encoding) {\n if (Buffer.isBuffer(string)) {\n return string.length\n }\n if (ArrayBuffer.isView(string) || isInstance(string, ArrayBuffer)) {\n return string.byteLength\n }\n if (typeof string !== 'string') {\n throw new TypeError(\n 'The \"string\" argument must be one of type string, Buffer, or ArrayBuffer. ' +\n 'Received type ' + typeof string\n )\n }\n\n var len = string.length\n var mustMatch = (arguments.length > 2 && arguments[2] === true)\n if (!mustMatch && len === 0) return 0\n\n // Use a for loop to avoid recursion\n var loweredCase = false\n for (;;) {\n switch (encoding) {\n case 'ascii':\n case 'latin1':\n case 'binary':\n return len\n case 'utf8':\n case 'utf-8':\n return utf8ToBytes(string).length\n case 'ucs2':\n case 'ucs-2':\n case 'utf16le':\n case 'utf-16le':\n return len * 2\n case 'hex':\n return len >>> 1\n case 'base64':\n return base64ToBytes(string).length\n default:\n if (loweredCase) {\n return mustMatch ? -1 : utf8ToBytes(string).length // assume utf8\n }\n encoding = ('' + encoding).toLowerCase()\n loweredCase = true\n }\n }\n}\nBuffer.byteLength = byteLength\n\nfunction slowToString (encoding, start, end) {\n var loweredCase = false\n\n // No need to verify that \"this.length <= MAX_UINT32\" since it's a read-only\n // property of a typed array.\n\n // This behaves neither like String nor Uint8Array in that we set start/end\n // to their upper/lower bounds if the value passed is out of range.\n // undefined is handled specially as per ECMA-262 6th Edition,\n // Section 13.3.3.7 Runtime Semantics: KeyedBindingInitialization.\n if (start === undefined || start < 0) {\n start = 0\n }\n // Return early if start > this.length. Done here to prevent potential uint32\n // coercion fail below.\n if (start > this.length) {\n return ''\n }\n\n if (end === undefined || end > this.length) {\n end = this.length\n }\n\n if (end <= 0) {\n return ''\n }\n\n // Force coercion to uint32. This will also coerce falsey/NaN values to 0.\n end >>>= 0\n start >>>= 0\n\n if (end <= start) {\n return ''\n }\n\n if (!encoding) encoding = 'utf8'\n\n while (true) {\n switch (encoding) {\n case 'hex':\n return hexSlice(this, start, end)\n\n case 'utf8':\n case 'utf-8':\n return utf8Slice(this, start, end)\n\n case 'ascii':\n return asciiSlice(this, start, end)\n\n case 'latin1':\n case 'binary':\n return latin1Slice(this, start, end)\n\n case 'base64':\n return base64Slice(this, start, end)\n\n case 'ucs2':\n case 'ucs-2':\n case 'utf16le':\n case 'utf-16le':\n return utf16leSlice(this, start, end)\n\n default:\n if (loweredCase) throw new TypeError('Unknown encoding: ' + encoding)\n encoding = (encoding + '').toLowerCase()\n loweredCase = true\n }\n }\n}\n\n// This property is used by `Buffer.isBuffer` (and the `is-buffer` npm package)\n// to detect a Buffer instance. It's not possible to use `instanceof Buffer`\n// reliably in a browserify context because there could be multiple different\n// copies of the 'buffer' package in use. This method works even for Buffer\n// instances that were created from another copy of the `buffer` package.\n// See: https://github.com/feross/buffer/issues/154\nBuffer.prototype._isBuffer = true\n\nfunction swap (b, n, m) {\n var i = b[n]\n b[n] = b[m]\n b[m] = i\n}\n\nBuffer.prototype.swap16 = function swap16 () {\n var len = this.length\n if (len % 2 !== 0) {\n throw new RangeError('Buffer size must be a multiple of 16-bits')\n }\n for (var i = 0; i < len; i += 2) {\n swap(this, i, i + 1)\n }\n return this\n}\n\nBuffer.prototype.swap32 = function swap32 () {\n var len = this.length\n if (len % 4 !== 0) {\n throw new RangeError('Buffer size must be a multiple of 32-bits')\n }\n for (var i = 0; i < len; i += 4) {\n swap(this, i, i + 3)\n swap(this, i + 1, i + 2)\n }\n return this\n}\n\nBuffer.prototype.swap64 = function swap64 () {\n var len = this.length\n if (len % 8 !== 0) {\n throw new RangeError('Buffer size must be a multiple of 64-bits')\n }\n for (var i = 0; i < len; i += 8) {\n swap(this, i, i + 7)\n swap(this, i + 1, i + 6)\n swap(this, i + 2, i + 5)\n swap(this, i + 3, i + 4)\n }\n return this\n}\n\nBuffer.prototype.toString = function toString () {\n var length = this.length\n if (length === 0) return ''\n if (arguments.length === 0) return utf8Slice(this, 0, length)\n return slowToString.apply(this, arguments)\n}\n\nBuffer.prototype.toLocaleString = Buffer.prototype.toString\n\nBuffer.prototype.equals = function equals (b) {\n if (!Buffer.isBuffer(b)) throw new TypeError('Argument must be a Buffer')\n if (this === b) return true\n return Buffer.compare(this, b) === 0\n}\n\nBuffer.prototype.inspect = function inspect () {\n var str = ''\n var max = exports.INSPECT_MAX_BYTES\n str = this.toString('hex', 0, max).replace(/(.{2})/g, '$1 ').trim()\n if (this.length > max) str += ' ... '\n return ''\n}\nif (customInspectSymbol) {\n Buffer.prototype[customInspectSymbol] = Buffer.prototype.inspect\n}\n\nBuffer.prototype.compare = function compare (target, start, end, thisStart, thisEnd) {\n if (isInstance(target, Uint8Array)) {\n target = Buffer.from(target, target.offset, target.byteLength)\n }\n if (!Buffer.isBuffer(target)) {\n throw new TypeError(\n 'The \"target\" argument must be one of type Buffer or Uint8Array. ' +\n 'Received type ' + (typeof target)\n )\n }\n\n if (start === undefined) {\n start = 0\n }\n if (end === undefined) {\n end = target ? target.length : 0\n }\n if (thisStart === undefined) {\n thisStart = 0\n }\n if (thisEnd === undefined) {\n thisEnd = this.length\n }\n\n if (start < 0 || end > target.length || thisStart < 0 || thisEnd > this.length) {\n throw new RangeError('out of range index')\n }\n\n if (thisStart >= thisEnd && start >= end) {\n return 0\n }\n if (thisStart >= thisEnd) {\n return -1\n }\n if (start >= end) {\n return 1\n }\n\n start >>>= 0\n end >>>= 0\n thisStart >>>= 0\n thisEnd >>>= 0\n\n if (this === target) return 0\n\n var x = thisEnd - thisStart\n var y = end - start\n var len = Math.min(x, y)\n\n var thisCopy = this.slice(thisStart, thisEnd)\n var targetCopy = target.slice(start, end)\n\n for (var i = 0; i < len; ++i) {\n if (thisCopy[i] !== targetCopy[i]) {\n x = thisCopy[i]\n y = targetCopy[i]\n break\n }\n }\n\n if (x < y) return -1\n if (y < x) return 1\n return 0\n}\n\n// Finds either the first index of `val` in `buffer` at offset >= `byteOffset`,\n// OR the last index of `val` in `buffer` at offset <= `byteOffset`.\n//\n// Arguments:\n// - buffer - a Buffer to search\n// - val - a string, Buffer, or number\n// - byteOffset - an index into `buffer`; will be clamped to an int32\n// - encoding - an optional encoding, relevant is val is a string\n// - dir - true for indexOf, false for lastIndexOf\nfunction bidirectionalIndexOf (buffer, val, byteOffset, encoding, dir) {\n // Empty buffer means no match\n if (buffer.length === 0) return -1\n\n // Normalize byteOffset\n if (typeof byteOffset === 'string') {\n encoding = byteOffset\n byteOffset = 0\n } else if (byteOffset > 0x7fffffff) {\n byteOffset = 0x7fffffff\n } else if (byteOffset < -0x80000000) {\n byteOffset = -0x80000000\n }\n byteOffset = +byteOffset // Coerce to Number.\n if (numberIsNaN(byteOffset)) {\n // byteOffset: it it's undefined, null, NaN, \"foo\", etc, search whole buffer\n byteOffset = dir ? 0 : (buffer.length - 1)\n }\n\n // Normalize byteOffset: negative offsets start from the end of the buffer\n if (byteOffset < 0) byteOffset = buffer.length + byteOffset\n if (byteOffset >= buffer.length) {\n if (dir) return -1\n else byteOffset = buffer.length - 1\n } else if (byteOffset < 0) {\n if (dir) byteOffset = 0\n else return -1\n }\n\n // Normalize val\n if (typeof val === 'string') {\n val = Buffer.from(val, encoding)\n }\n\n // Finally, search either indexOf (if dir is true) or lastIndexOf\n if (Buffer.isBuffer(val)) {\n // Special case: looking for empty string/buffer always fails\n if (val.length === 0) {\n return -1\n }\n return arrayIndexOf(buffer, val, byteOffset, encoding, dir)\n } else if (typeof val === 'number') {\n val = val & 0xFF // Search for a byte value [0-255]\n if (typeof Uint8Array.prototype.indexOf === 'function') {\n if (dir) {\n return Uint8Array.prototype.indexOf.call(buffer, val, byteOffset)\n } else {\n return Uint8Array.prototype.lastIndexOf.call(buffer, val, byteOffset)\n }\n }\n return arrayIndexOf(buffer, [val], byteOffset, encoding, dir)\n }\n\n throw new TypeError('val must be string, number or Buffer')\n}\n\nfunction arrayIndexOf (arr, val, byteOffset, encoding, dir) {\n var indexSize = 1\n var arrLength = arr.length\n var valLength = val.length\n\n if (encoding !== undefined) {\n encoding = String(encoding).toLowerCase()\n if (encoding === 'ucs2' || encoding === 'ucs-2' ||\n encoding === 'utf16le' || encoding === 'utf-16le') {\n if (arr.length < 2 || val.length < 2) {\n return -1\n }\n indexSize = 2\n arrLength /= 2\n valLength /= 2\n byteOffset /= 2\n }\n }\n\n function read (buf, i) {\n if (indexSize === 1) {\n return buf[i]\n } else {\n return buf.readUInt16BE(i * indexSize)\n }\n }\n\n var i\n if (dir) {\n var foundIndex = -1\n for (i = byteOffset; i < arrLength; i++) {\n if (read(arr, i) === read(val, foundIndex === -1 ? 0 : i - foundIndex)) {\n if (foundIndex === -1) foundIndex = i\n if (i - foundIndex + 1 === valLength) return foundIndex * indexSize\n } else {\n if (foundIndex !== -1) i -= i - foundIndex\n foundIndex = -1\n }\n }\n } else {\n if (byteOffset + valLength > arrLength) byteOffset = arrLength - valLength\n for (i = byteOffset; i >= 0; i--) {\n var found = true\n for (var j = 0; j < valLength; j++) {\n if (read(arr, i + j) !== read(val, j)) {\n found = false\n break\n }\n }\n if (found) return i\n }\n }\n\n return -1\n}\n\nBuffer.prototype.includes = function includes (val, byteOffset, encoding) {\n return this.indexOf(val, byteOffset, encoding) !== -1\n}\n\nBuffer.prototype.indexOf = function indexOf (val, byteOffset, encoding) {\n return bidirectionalIndexOf(this, val, byteOffset, encoding, true)\n}\n\nBuffer.prototype.lastIndexOf = function lastIndexOf (val, byteOffset, encoding) {\n return bidirectionalIndexOf(this, val, byteOffset, encoding, false)\n}\n\nfunction hexWrite (buf, string, offset, length) {\n offset = Number(offset) || 0\n var remaining = buf.length - offset\n if (!length) {\n length = remaining\n } else {\n length = Number(length)\n if (length > remaining) {\n length = remaining\n }\n }\n\n var strLen = string.length\n\n if (length > strLen / 2) {\n length = strLen / 2\n }\n for (var i = 0; i < length; ++i) {\n var parsed = parseInt(string.substr(i * 2, 2), 16)\n if (numberIsNaN(parsed)) return i\n buf[offset + i] = parsed\n }\n return i\n}\n\nfunction utf8Write (buf, string, offset, length) {\n return blitBuffer(utf8ToBytes(string, buf.length - offset), buf, offset, length)\n}\n\nfunction asciiWrite (buf, string, offset, length) {\n return blitBuffer(asciiToBytes(string), buf, offset, length)\n}\n\nfunction base64Write (buf, string, offset, length) {\n return blitBuffer(base64ToBytes(string), buf, offset, length)\n}\n\nfunction ucs2Write (buf, string, offset, length) {\n return blitBuffer(utf16leToBytes(string, buf.length - offset), buf, offset, length)\n}\n\nBuffer.prototype.write = function write (string, offset, length, encoding) {\n // Buffer#write(string)\n if (offset === undefined) {\n encoding = 'utf8'\n length = this.length\n offset = 0\n // Buffer#write(string, encoding)\n } else if (length === undefined && typeof offset === 'string') {\n encoding = offset\n length = this.length\n offset = 0\n // Buffer#write(string, offset[, length][, encoding])\n } else if (isFinite(offset)) {\n offset = offset >>> 0\n if (isFinite(length)) {\n length = length >>> 0\n if (encoding === undefined) encoding = 'utf8'\n } else {\n encoding = length\n length = undefined\n }\n } else {\n throw new Error(\n 'Buffer.write(string, encoding, offset[, length]) is no longer supported'\n )\n }\n\n var remaining = this.length - offset\n if (length === undefined || length > remaining) length = remaining\n\n if ((string.length > 0 && (length < 0 || offset < 0)) || offset > this.length) {\n throw new RangeError('Attempt to write outside buffer bounds')\n }\n\n if (!encoding) encoding = 'utf8'\n\n var loweredCase = false\n for (;;) {\n switch (encoding) {\n case 'hex':\n return hexWrite(this, string, offset, length)\n\n case 'utf8':\n case 'utf-8':\n return utf8Write(this, string, offset, length)\n\n case 'ascii':\n case 'latin1':\n case 'binary':\n return asciiWrite(this, string, offset, length)\n\n case 'base64':\n // Warning: maxLength not taken into account in base64Write\n return base64Write(this, string, offset, length)\n\n case 'ucs2':\n case 'ucs-2':\n case 'utf16le':\n case 'utf-16le':\n return ucs2Write(this, string, offset, length)\n\n default:\n if (loweredCase) throw new TypeError('Unknown encoding: ' + encoding)\n encoding = ('' + encoding).toLowerCase()\n loweredCase = true\n }\n }\n}\n\nBuffer.prototype.toJSON = function toJSON () {\n return {\n type: 'Buffer',\n data: Array.prototype.slice.call(this._arr || this, 0)\n }\n}\n\nfunction base64Slice (buf, start, end) {\n if (start === 0 && end === buf.length) {\n return base64.fromByteArray(buf)\n } else {\n return base64.fromByteArray(buf.slice(start, end))\n }\n}\n\nfunction utf8Slice (buf, start, end) {\n end = Math.min(buf.length, end)\n var res = []\n\n var i = start\n while (i < end) {\n var firstByte = buf[i]\n var codePoint = null\n var bytesPerSequence = (firstByte > 0xEF)\n ? 4\n : (firstByte > 0xDF)\n ? 3\n : (firstByte > 0xBF)\n ? 2\n : 1\n\n if (i + bytesPerSequence <= end) {\n var secondByte, thirdByte, fourthByte, tempCodePoint\n\n switch (bytesPerSequence) {\n case 1:\n if (firstByte < 0x80) {\n codePoint = firstByte\n }\n break\n case 2:\n secondByte = buf[i + 1]\n if ((secondByte & 0xC0) === 0x80) {\n tempCodePoint = (firstByte & 0x1F) << 0x6 | (secondByte & 0x3F)\n if (tempCodePoint > 0x7F) {\n codePoint = tempCodePoint\n }\n }\n break\n case 3:\n secondByte = buf[i + 1]\n thirdByte = buf[i + 2]\n if ((secondByte & 0xC0) === 0x80 && (thirdByte & 0xC0) === 0x80) {\n tempCodePoint = (firstByte & 0xF) << 0xC | (secondByte & 0x3F) << 0x6 | (thirdByte & 0x3F)\n if (tempCodePoint > 0x7FF && (tempCodePoint < 0xD800 || tempCodePoint > 0xDFFF)) {\n codePoint = tempCodePoint\n }\n }\n break\n case 4:\n secondByte = buf[i + 1]\n thirdByte = buf[i + 2]\n fourthByte = buf[i + 3]\n if ((secondByte & 0xC0) === 0x80 && (thirdByte & 0xC0) === 0x80 && (fourthByte & 0xC0) === 0x80) {\n tempCodePoint = (firstByte & 0xF) << 0x12 | (secondByte & 0x3F) << 0xC | (thirdByte & 0x3F) << 0x6 | (fourthByte & 0x3F)\n if (tempCodePoint > 0xFFFF && tempCodePoint < 0x110000) {\n codePoint = tempCodePoint\n }\n }\n }\n }\n\n if (codePoint === null) {\n // we did not generate a valid codePoint so insert a\n // replacement char (U+FFFD) and advance only 1 byte\n codePoint = 0xFFFD\n bytesPerSequence = 1\n } else if (codePoint > 0xFFFF) {\n // encode to utf16 (surrogate pair dance)\n codePoint -= 0x10000\n res.push(codePoint >>> 10 & 0x3FF | 0xD800)\n codePoint = 0xDC00 | codePoint & 0x3FF\n }\n\n res.push(codePoint)\n i += bytesPerSequence\n }\n\n return decodeCodePointsArray(res)\n}\n\n// Based on http://stackoverflow.com/a/22747272/680742, the browser with\n// the lowest limit is Chrome, with 0x10000 args.\n// We go 1 magnitude less, for safety\nvar MAX_ARGUMENTS_LENGTH = 0x1000\n\nfunction decodeCodePointsArray (codePoints) {\n var len = codePoints.length\n if (len <= MAX_ARGUMENTS_LENGTH) {\n return String.fromCharCode.apply(String, codePoints) // avoid extra slice()\n }\n\n // Decode in chunks to avoid \"call stack size exceeded\".\n var res = ''\n var i = 0\n while (i < len) {\n res += String.fromCharCode.apply(\n String,\n codePoints.slice(i, i += MAX_ARGUMENTS_LENGTH)\n )\n }\n return res\n}\n\nfunction asciiSlice (buf, start, end) {\n var ret = ''\n end = Math.min(buf.length, end)\n\n for (var i = start; i < end; ++i) {\n ret += String.fromCharCode(buf[i] & 0x7F)\n }\n return ret\n}\n\nfunction latin1Slice (buf, start, end) {\n var ret = ''\n end = Math.min(buf.length, end)\n\n for (var i = start; i < end; ++i) {\n ret += String.fromCharCode(buf[i])\n }\n return ret\n}\n\nfunction hexSlice (buf, start, end) {\n var len = buf.length\n\n if (!start || start < 0) start = 0\n if (!end || end < 0 || end > len) end = len\n\n var out = ''\n for (var i = start; i < end; ++i) {\n out += hexSliceLookupTable[buf[i]]\n }\n return out\n}\n\nfunction utf16leSlice (buf, start, end) {\n var bytes = buf.slice(start, end)\n var res = ''\n // If bytes.length is odd, the last 8 bits must be ignored (same as node.js)\n for (var i = 0; i < bytes.length - 1; i += 2) {\n res += String.fromCharCode(bytes[i] + (bytes[i + 1] * 256))\n }\n return res\n}\n\nBuffer.prototype.slice = function slice (start, end) {\n var len = this.length\n start = ~~start\n end = end === undefined ? len : ~~end\n\n if (start < 0) {\n start += len\n if (start < 0) start = 0\n } else if (start > len) {\n start = len\n }\n\n if (end < 0) {\n end += len\n if (end < 0) end = 0\n } else if (end > len) {\n end = len\n }\n\n if (end < start) end = start\n\n var newBuf = this.subarray(start, end)\n // Return an augmented `Uint8Array` instance\n Object.setPrototypeOf(newBuf, Buffer.prototype)\n\n return newBuf\n}\n\n/*\n * Need to make sure that buffer isn't trying to write out of bounds.\n */\nfunction checkOffset (offset, ext, length) {\n if ((offset % 1) !== 0 || offset < 0) throw new RangeError('offset is not uint')\n if (offset + ext > length) throw new RangeError('Trying to access beyond buffer length')\n}\n\nBuffer.prototype.readUintLE =\nBuffer.prototype.readUIntLE = function readUIntLE (offset, byteLength, noAssert) {\n offset = offset >>> 0\n byteLength = byteLength >>> 0\n if (!noAssert) checkOffset(offset, byteLength, this.length)\n\n var val = this[offset]\n var mul = 1\n var i = 0\n while (++i < byteLength && (mul *= 0x100)) {\n val += this[offset + i] * mul\n }\n\n return val\n}\n\nBuffer.prototype.readUintBE =\nBuffer.prototype.readUIntBE = function readUIntBE (offset, byteLength, noAssert) {\n offset = offset >>> 0\n byteLength = byteLength >>> 0\n if (!noAssert) {\n checkOffset(offset, byteLength, this.length)\n }\n\n var val = this[offset + --byteLength]\n var mul = 1\n while (byteLength > 0 && (mul *= 0x100)) {\n val += this[offset + --byteLength] * mul\n }\n\n return val\n}\n\nBuffer.prototype.readUint8 =\nBuffer.prototype.readUInt8 = function readUInt8 (offset, noAssert) {\n offset = offset >>> 0\n if (!noAssert) checkOffset(offset, 1, this.length)\n return this[offset]\n}\n\nBuffer.prototype.readUint16LE =\nBuffer.prototype.readUInt16LE = function readUInt16LE (offset, noAssert) {\n offset = offset >>> 0\n if (!noAssert) checkOffset(offset, 2, this.length)\n return this[offset] | (this[offset + 1] << 8)\n}\n\nBuffer.prototype.readUint16BE =\nBuffer.prototype.readUInt16BE = function readUInt16BE (offset, noAssert) {\n offset = offset >>> 0\n if (!noAssert) checkOffset(offset, 2, this.length)\n return (this[offset] << 8) | this[offset + 1]\n}\n\nBuffer.prototype.readUint32LE =\nBuffer.prototype.readUInt32LE = function readUInt32LE (offset, noAssert) {\n offset = offset >>> 0\n if (!noAssert) checkOffset(offset, 4, this.length)\n\n return ((this[offset]) |\n (this[offset + 1] << 8) |\n (this[offset + 2] << 16)) +\n (this[offset + 3] * 0x1000000)\n}\n\nBuffer.prototype.readUint32BE =\nBuffer.prototype.readUInt32BE = function readUInt32BE (offset, noAssert) {\n offset = offset >>> 0\n if (!noAssert) checkOffset(offset, 4, this.length)\n\n return (this[offset] * 0x1000000) +\n ((this[offset + 1] << 16) |\n (this[offset + 2] << 8) |\n this[offset + 3])\n}\n\nBuffer.prototype.readIntLE = function readIntLE (offset, byteLength, noAssert) {\n offset = offset >>> 0\n byteLength = byteLength >>> 0\n if (!noAssert) checkOffset(offset, byteLength, this.length)\n\n var val = this[offset]\n var mul = 1\n var i = 0\n while (++i < byteLength && (mul *= 0x100)) {\n val += this[offset + i] * mul\n }\n mul *= 0x80\n\n if (val >= mul) val -= Math.pow(2, 8 * byteLength)\n\n return val\n}\n\nBuffer.prototype.readIntBE = function readIntBE (offset, byteLength, noAssert) {\n offset = offset >>> 0\n byteLength = byteLength >>> 0\n if (!noAssert) checkOffset(offset, byteLength, this.length)\n\n var i = byteLength\n var mul = 1\n var val = this[offset + --i]\n while (i > 0 && (mul *= 0x100)) {\n val += this[offset + --i] * mul\n }\n mul *= 0x80\n\n if (val >= mul) val -= Math.pow(2, 8 * byteLength)\n\n return val\n}\n\nBuffer.prototype.readInt8 = function readInt8 (offset, noAssert) {\n offset = offset >>> 0\n if (!noAssert) checkOffset(offset, 1, this.length)\n if (!(this[offset] & 0x80)) return (this[offset])\n return ((0xff - this[offset] + 1) * -1)\n}\n\nBuffer.prototype.readInt16LE = function readInt16LE (offset, noAssert) {\n offset = offset >>> 0\n if (!noAssert) checkOffset(offset, 2, this.length)\n var val = this[offset] | (this[offset + 1] << 8)\n return (val & 0x8000) ? val | 0xFFFF0000 : val\n}\n\nBuffer.prototype.readInt16BE = function readInt16BE (offset, noAssert) {\n offset = offset >>> 0\n if (!noAssert) checkOffset(offset, 2, this.length)\n var val = this[offset + 1] | (this[offset] << 8)\n return (val & 0x8000) ? val | 0xFFFF0000 : val\n}\n\nBuffer.prototype.readInt32LE = function readInt32LE (offset, noAssert) {\n offset = offset >>> 0\n if (!noAssert) checkOffset(offset, 4, this.length)\n\n return (this[offset]) |\n (this[offset + 1] << 8) |\n (this[offset + 2] << 16) |\n (this[offset + 3] << 24)\n}\n\nBuffer.prototype.readInt32BE = function readInt32BE (offset, noAssert) {\n offset = offset >>> 0\n if (!noAssert) checkOffset(offset, 4, this.length)\n\n return (this[offset] << 24) |\n (this[offset + 1] << 16) |\n (this[offset + 2] << 8) |\n (this[offset + 3])\n}\n\nBuffer.prototype.readFloatLE = function readFloatLE (offset, noAssert) {\n offset = offset >>> 0\n if (!noAssert) checkOffset(offset, 4, this.length)\n return ieee754.read(this, offset, true, 23, 4)\n}\n\nBuffer.prototype.readFloatBE = function readFloatBE (offset, noAssert) {\n offset = offset >>> 0\n if (!noAssert) checkOffset(offset, 4, this.length)\n return ieee754.read(this, offset, false, 23, 4)\n}\n\nBuffer.prototype.readDoubleLE = function readDoubleLE (offset, noAssert) {\n offset = offset >>> 0\n if (!noAssert) checkOffset(offset, 8, this.length)\n return ieee754.read(this, offset, true, 52, 8)\n}\n\nBuffer.prototype.readDoubleBE = function readDoubleBE (offset, noAssert) {\n offset = offset >>> 0\n if (!noAssert) checkOffset(offset, 8, this.length)\n return ieee754.read(this, offset, false, 52, 8)\n}\n\nfunction checkInt (buf, value, offset, ext, max, min) {\n if (!Buffer.isBuffer(buf)) throw new TypeError('\"buffer\" argument must be a Buffer instance')\n if (value > max || value < min) throw new RangeError('\"value\" argument is out of bounds')\n if (offset + ext > buf.length) throw new RangeError('Index out of range')\n}\n\nBuffer.prototype.writeUintLE =\nBuffer.prototype.writeUIntLE = function writeUIntLE (value, offset, byteLength, noAssert) {\n value = +value\n offset = offset >>> 0\n byteLength = byteLength >>> 0\n if (!noAssert) {\n var maxBytes = Math.pow(2, 8 * byteLength) - 1\n checkInt(this, value, offset, byteLength, maxBytes, 0)\n }\n\n var mul = 1\n var i = 0\n this[offset] = value & 0xFF\n while (++i < byteLength && (mul *= 0x100)) {\n this[offset + i] = (value / mul) & 0xFF\n }\n\n return offset + byteLength\n}\n\nBuffer.prototype.writeUintBE =\nBuffer.prototype.writeUIntBE = function writeUIntBE (value, offset, byteLength, noAssert) {\n value = +value\n offset = offset >>> 0\n byteLength = byteLength >>> 0\n if (!noAssert) {\n var maxBytes = Math.pow(2, 8 * byteLength) - 1\n checkInt(this, value, offset, byteLength, maxBytes, 0)\n }\n\n var i = byteLength - 1\n var mul = 1\n this[offset + i] = value & 0xFF\n while (--i >= 0 && (mul *= 0x100)) {\n this[offset + i] = (value / mul) & 0xFF\n }\n\n return offset + byteLength\n}\n\nBuffer.prototype.writeUint8 =\nBuffer.prototype.writeUInt8 = function writeUInt8 (value, offset, noAssert) {\n value = +value\n offset = offset >>> 0\n if (!noAssert) checkInt(this, value, offset, 1, 0xff, 0)\n this[offset] = (value & 0xff)\n return offset + 1\n}\n\nBuffer.prototype.writeUint16LE =\nBuffer.prototype.writeUInt16LE = function writeUInt16LE (value, offset, noAssert) {\n value = +value\n offset = offset >>> 0\n if (!noAssert) checkInt(this, value, offset, 2, 0xffff, 0)\n this[offset] = (value & 0xff)\n this[offset + 1] = (value >>> 8)\n return offset + 2\n}\n\nBuffer.prototype.writeUint16BE =\nBuffer.prototype.writeUInt16BE = function writeUInt16BE (value, offset, noAssert) {\n value = +value\n offset = offset >>> 0\n if (!noAssert) checkInt(this, value, offset, 2, 0xffff, 0)\n this[offset] = (value >>> 8)\n this[offset + 1] = (value & 0xff)\n return offset + 2\n}\n\nBuffer.prototype.writeUint32LE =\nBuffer.prototype.writeUInt32LE = function writeUInt32LE (value, offset, noAssert) {\n value = +value\n offset = offset >>> 0\n if (!noAssert) checkInt(this, value, offset, 4, 0xffffffff, 0)\n this[offset + 3] = (value >>> 24)\n this[offset + 2] = (value >>> 16)\n this[offset + 1] = (value >>> 8)\n this[offset] = (value & 0xff)\n return offset + 4\n}\n\nBuffer.prototype.writeUint32BE =\nBuffer.prototype.writeUInt32BE = function writeUInt32BE (value, offset, noAssert) {\n value = +value\n offset = offset >>> 0\n if (!noAssert) checkInt(this, value, offset, 4, 0xffffffff, 0)\n this[offset] = (value >>> 24)\n this[offset + 1] = (value >>> 16)\n this[offset + 2] = (value >>> 8)\n this[offset + 3] = (value & 0xff)\n return offset + 4\n}\n\nBuffer.prototype.writeIntLE = function writeIntLE (value, offset, byteLength, noAssert) {\n value = +value\n offset = offset >>> 0\n if (!noAssert) {\n var limit = Math.pow(2, (8 * byteLength) - 1)\n\n checkInt(this, value, offset, byteLength, limit - 1, -limit)\n }\n\n var i = 0\n var mul = 1\n var sub = 0\n this[offset] = value & 0xFF\n while (++i < byteLength && (mul *= 0x100)) {\n if (value < 0 && sub === 0 && this[offset + i - 1] !== 0) {\n sub = 1\n }\n this[offset + i] = ((value / mul) >> 0) - sub & 0xFF\n }\n\n return offset + byteLength\n}\n\nBuffer.prototype.writeIntBE = function writeIntBE (value, offset, byteLength, noAssert) {\n value = +value\n offset = offset >>> 0\n if (!noAssert) {\n var limit = Math.pow(2, (8 * byteLength) - 1)\n\n checkInt(this, value, offset, byteLength, limit - 1, -limit)\n }\n\n var i = byteLength - 1\n var mul = 1\n var sub = 0\n this[offset + i] = value & 0xFF\n while (--i >= 0 && (mul *= 0x100)) {\n if (value < 0 && sub === 0 && this[offset + i + 1] !== 0) {\n sub = 1\n }\n this[offset + i] = ((value / mul) >> 0) - sub & 0xFF\n }\n\n return offset + byteLength\n}\n\nBuffer.prototype.writeInt8 = function writeInt8 (value, offset, noAssert) {\n value = +value\n offset = offset >>> 0\n if (!noAssert) checkInt(this, value, offset, 1, 0x7f, -0x80)\n if (value < 0) value = 0xff + value + 1\n this[offset] = (value & 0xff)\n return offset + 1\n}\n\nBuffer.prototype.writeInt16LE = function writeInt16LE (value, offset, noAssert) {\n value = +value\n offset = offset >>> 0\n if (!noAssert) checkInt(this, value, offset, 2, 0x7fff, -0x8000)\n this[offset] = (value & 0xff)\n this[offset + 1] = (value >>> 8)\n return offset + 2\n}\n\nBuffer.prototype.writeInt16BE = function writeInt16BE (value, offset, noAssert) {\n value = +value\n offset = offset >>> 0\n if (!noAssert) checkInt(this, value, offset, 2, 0x7fff, -0x8000)\n this[offset] = (value >>> 8)\n this[offset + 1] = (value & 0xff)\n return offset + 2\n}\n\nBuffer.prototype.writeInt32LE = function writeInt32LE (value, offset, noAssert) {\n value = +value\n offset = offset >>> 0\n if (!noAssert) checkInt(this, value, offset, 4, 0x7fffffff, -0x80000000)\n this[offset] = (value & 0xff)\n this[offset + 1] = (value >>> 8)\n this[offset + 2] = (value >>> 16)\n this[offset + 3] = (value >>> 24)\n return offset + 4\n}\n\nBuffer.prototype.writeInt32BE = function writeInt32BE (value, offset, noAssert) {\n value = +value\n offset = offset >>> 0\n if (!noAssert) checkInt(this, value, offset, 4, 0x7fffffff, -0x80000000)\n if (value < 0) value = 0xffffffff + value + 1\n this[offset] = (value >>> 24)\n this[offset + 1] = (value >>> 16)\n this[offset + 2] = (value >>> 8)\n this[offset + 3] = (value & 0xff)\n return offset + 4\n}\n\nfunction checkIEEE754 (buf, value, offset, ext, max, min) {\n if (offset + ext > buf.length) throw new RangeError('Index out of range')\n if (offset < 0) throw new RangeError('Index out of range')\n}\n\nfunction writeFloat (buf, value, offset, littleEndian, noAssert) {\n value = +value\n offset = offset >>> 0\n if (!noAssert) {\n checkIEEE754(buf, value, offset, 4, 3.4028234663852886e+38, -3.4028234663852886e+38)\n }\n ieee754.write(buf, value, offset, littleEndian, 23, 4)\n return offset + 4\n}\n\nBuffer.prototype.writeFloatLE = function writeFloatLE (value, offset, noAssert) {\n return writeFloat(this, value, offset, true, noAssert)\n}\n\nBuffer.prototype.writeFloatBE = function writeFloatBE (value, offset, noAssert) {\n return writeFloat(this, value, offset, false, noAssert)\n}\n\nfunction writeDouble (buf, value, offset, littleEndian, noAssert) {\n value = +value\n offset = offset >>> 0\n if (!noAssert) {\n checkIEEE754(buf, value, offset, 8, 1.7976931348623157E+308, -1.7976931348623157E+308)\n }\n ieee754.write(buf, value, offset, littleEndian, 52, 8)\n return offset + 8\n}\n\nBuffer.prototype.writeDoubleLE = function writeDoubleLE (value, offset, noAssert) {\n return writeDouble(this, value, offset, true, noAssert)\n}\n\nBuffer.prototype.writeDoubleBE = function writeDoubleBE (value, offset, noAssert) {\n return writeDouble(this, value, offset, false, noAssert)\n}\n\n// copy(targetBuffer, targetStart=0, sourceStart=0, sourceEnd=buffer.length)\nBuffer.prototype.copy = function copy (target, targetStart, start, end) {\n if (!Buffer.isBuffer(target)) throw new TypeError('argument should be a Buffer')\n if (!start) start = 0\n if (!end && end !== 0) end = this.length\n if (targetStart >= target.length) targetStart = target.length\n if (!targetStart) targetStart = 0\n if (end > 0 && end < start) end = start\n\n // Copy 0 bytes; we're done\n if (end === start) return 0\n if (target.length === 0 || this.length === 0) return 0\n\n // Fatal error conditions\n if (targetStart < 0) {\n throw new RangeError('targetStart out of bounds')\n }\n if (start < 0 || start >= this.length) throw new RangeError('Index out of range')\n if (end < 0) throw new RangeError('sourceEnd out of bounds')\n\n // Are we oob?\n if (end > this.length) end = this.length\n if (target.length - targetStart < end - start) {\n end = target.length - targetStart + start\n }\n\n var len = end - start\n\n if (this === target && typeof Uint8Array.prototype.copyWithin === 'function') {\n // Use built-in when available, missing from IE11\n this.copyWithin(targetStart, start, end)\n } else {\n Uint8Array.prototype.set.call(\n target,\n this.subarray(start, end),\n targetStart\n )\n }\n\n return len\n}\n\n// Usage:\n// buffer.fill(number[, offset[, end]])\n// buffer.fill(buffer[, offset[, end]])\n// buffer.fill(string[, offset[, end]][, encoding])\nBuffer.prototype.fill = function fill (val, start, end, encoding) {\n // Handle string cases:\n if (typeof val === 'string') {\n if (typeof start === 'string') {\n encoding = start\n start = 0\n end = this.length\n } else if (typeof end === 'string') {\n encoding = end\n end = this.length\n }\n if (encoding !== undefined && typeof encoding !== 'string') {\n throw new TypeError('encoding must be a string')\n }\n if (typeof encoding === 'string' && !Buffer.isEncoding(encoding)) {\n throw new TypeError('Unknown encoding: ' + encoding)\n }\n if (val.length === 1) {\n var code = val.charCodeAt(0)\n if ((encoding === 'utf8' && code < 128) ||\n encoding === 'latin1') {\n // Fast path: If `val` fits into a single byte, use that numeric value.\n val = code\n }\n }\n } else if (typeof val === 'number') {\n val = val & 255\n } else if (typeof val === 'boolean') {\n val = Number(val)\n }\n\n // Invalid ranges are not set to a default, so can range check early.\n if (start < 0 || this.length < start || this.length < end) {\n throw new RangeError('Out of range index')\n }\n\n if (end <= start) {\n return this\n }\n\n start = start >>> 0\n end = end === undefined ? this.length : end >>> 0\n\n if (!val) val = 0\n\n var i\n if (typeof val === 'number') {\n for (i = start; i < end; ++i) {\n this[i] = val\n }\n } else {\n var bytes = Buffer.isBuffer(val)\n ? val\n : Buffer.from(val, encoding)\n var len = bytes.length\n if (len === 0) {\n throw new TypeError('The value \"' + val +\n '\" is invalid for argument \"value\"')\n }\n for (i = 0; i < end - start; ++i) {\n this[i + start] = bytes[i % len]\n }\n }\n\n return this\n}\n\n// HELPER FUNCTIONS\n// ================\n\nvar INVALID_BASE64_RE = /[^+/0-9A-Za-z-_]/g\n\nfunction base64clean (str) {\n // Node takes equal signs as end of the Base64 encoding\n str = str.split('=')[0]\n // Node strips out invalid characters like \\n and \\t from the string, base64-js does not\n str = str.trim().replace(INVALID_BASE64_RE, '')\n // Node converts strings with length < 2 to ''\n if (str.length < 2) return ''\n // Node allows for non-padded base64 strings (missing trailing ===), base64-js does not\n while (str.length % 4 !== 0) {\n str = str + '='\n }\n return str\n}\n\nfunction utf8ToBytes (string, units) {\n units = units || Infinity\n var codePoint\n var length = string.length\n var leadSurrogate = null\n var bytes = []\n\n for (var i = 0; i < length; ++i) {\n codePoint = string.charCodeAt(i)\n\n // is surrogate component\n if (codePoint > 0xD7FF && codePoint < 0xE000) {\n // last char was a lead\n if (!leadSurrogate) {\n // no lead yet\n if (codePoint > 0xDBFF) {\n // unexpected trail\n if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD)\n continue\n } else if (i + 1 === length) {\n // unpaired lead\n if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD)\n continue\n }\n\n // valid lead\n leadSurrogate = codePoint\n\n continue\n }\n\n // 2 leads in a row\n if (codePoint < 0xDC00) {\n if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD)\n leadSurrogate = codePoint\n continue\n }\n\n // valid surrogate pair\n codePoint = (leadSurrogate - 0xD800 << 10 | codePoint - 0xDC00) + 0x10000\n } else if (leadSurrogate) {\n // valid bmp char, but last char was a lead\n if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD)\n }\n\n leadSurrogate = null\n\n // encode utf8\n if (codePoint < 0x80) {\n if ((units -= 1) < 0) break\n bytes.push(codePoint)\n } else if (codePoint < 0x800) {\n if ((units -= 2) < 0) break\n bytes.push(\n codePoint >> 0x6 | 0xC0,\n codePoint & 0x3F | 0x80\n )\n } else if (codePoint < 0x10000) {\n if ((units -= 3) < 0) break\n bytes.push(\n codePoint >> 0xC | 0xE0,\n codePoint >> 0x6 & 0x3F | 0x80,\n codePoint & 0x3F | 0x80\n )\n } else if (codePoint < 0x110000) {\n if ((units -= 4) < 0) break\n bytes.push(\n codePoint >> 0x12 | 0xF0,\n codePoint >> 0xC & 0x3F | 0x80,\n codePoint >> 0x6 & 0x3F | 0x80,\n codePoint & 0x3F | 0x80\n )\n } else {\n throw new Error('Invalid code point')\n }\n }\n\n return bytes\n}\n\nfunction asciiToBytes (str) {\n var byteArray = []\n for (var i = 0; i < str.length; ++i) {\n // Node's code seems to be doing this and not & 0x7F..\n byteArray.push(str.charCodeAt(i) & 0xFF)\n }\n return byteArray\n}\n\nfunction utf16leToBytes (str, units) {\n var c, hi, lo\n var byteArray = []\n for (var i = 0; i < str.length; ++i) {\n if ((units -= 2) < 0) break\n\n c = str.charCodeAt(i)\n hi = c >> 8\n lo = c % 256\n byteArray.push(lo)\n byteArray.push(hi)\n }\n\n return byteArray\n}\n\nfunction base64ToBytes (str) {\n return base64.toByteArray(base64clean(str))\n}\n\nfunction blitBuffer (src, dst, offset, length) {\n for (var i = 0; i < length; ++i) {\n if ((i + offset >= dst.length) || (i >= src.length)) break\n dst[i + offset] = src[i]\n }\n return i\n}\n\n// ArrayBuffer or Uint8Array objects from other contexts (i.e. iframes) do not pass\n// the `instanceof` check but they should be treated as of that type.\n// See: https://github.com/feross/buffer/issues/166\nfunction isInstance (obj, type) {\n return obj instanceof type ||\n (obj != null && obj.constructor != null && obj.constructor.name != null &&\n obj.constructor.name === type.name)\n}\nfunction numberIsNaN (obj) {\n // For IE11 support\n return obj !== obj // eslint-disable-line no-self-compare\n}\n\n// Create lookup table for `toString('hex')`\n// See: https://github.com/feross/buffer/issues/219\nvar hexSliceLookupTable = (function () {\n var alphabet = '0123456789abcdef'\n var table = new Array(256)\n for (var i = 0; i < 16; ++i) {\n var i16 = i * 16\n for (var j = 0; j < 16; ++j) {\n table[i16 + j] = alphabet[i] + alphabet[j]\n }\n }\n return table\n})()\n","/*! *****************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nexport function __extends(d, b) {\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nexport var __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nexport function __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nexport function __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nexport function __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nexport function __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nexport function __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nexport function __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (_) try {\r\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nexport function __createBinding(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n}\r\n\r\nexport function __exportStar(m, exports) {\r\n for (var p in m) if (p !== \"default\" && !exports.hasOwnProperty(p)) exports[p] = m[p];\r\n}\r\n\r\nexport function __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nexport function __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\nexport function __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\nexport function __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n};\r\n\r\nexport function __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nexport function __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nexport function __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === \"return\" } : f ? f(v) : v; } : f; }\r\n}\r\n\r\nexport function __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n return m ? m.call(o) : (o = typeof __values === \"function\" ? __values(o) : o[Symbol.iterator](), i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i);\r\n function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nexport function __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nexport function __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];\r\n result.default = mod;\r\n return result;\r\n}\r\n\r\nexport function __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nexport function __classPrivateFieldGet(receiver, privateMap) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to get private field on non-instance\");\r\n }\r\n return privateMap.get(receiver);\r\n}\r\n\r\nexport function __classPrivateFieldSet(receiver, privateMap, value) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to set private field on non-instance\");\r\n }\r\n privateMap.set(receiver, value);\r\n return value;\r\n}\r\n",null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"names":["byteLength","toByteArray","fromByteArray","lookup","revLookup","Arr","Uint8Array","Array","code","i","len","length","charCodeAt","getLens","b64","Error","validLen","indexOf","placeHoldersLen","lens","_byteLength","tmp","arr","curByte","tripletToBase64","num","encodeChunk","uint8","start","end","output","push","join","extraBytes","parts","maxChunkLength","len2","buffer","offset","isLE","mLen","nBytes","e","m","eLen","eMax","eBias","nBits","d","s","NaN","Infinity","Math","pow","value","c","rt","abs","isNaN","floor","log","LN2","customInspectSymbol","Symbol","exports","Buffer","SlowBuffer","K_MAX_LENGTH","TYPED_ARRAY_SUPPORT","typedArraySupport","console","error","proto","foo","Object","setPrototypeOf","prototype","defineProperty","enumerable","get","isBuffer","undefined","byteOffset","createBuffer","RangeError","buf","arg","encodingOrOffset","TypeError","allocUnsafe","from","poolSize","fromString","ArrayBuffer","isView","fromArrayView","isInstance","fromArrayBuffer","SharedArrayBuffer","valueOf","b","fromObject","toPrimitive","assertSize","size","alloc","fill","encoding","checked","allocUnsafeSlow","string","isEncoding","actual","write","slice","fromArrayLike","array","arrayView","copy","obj","numberIsNaN","type","isArray","data","toString","_isBuffer","compare","a","x","y","min","String","toLowerCase","concat","list","pos","set","call","mustMatch","arguments","loweredCase","utf8ToBytes","base64ToBytes","slowToString","hexSlice","utf8Slice","asciiSlice","latin1Slice","base64Slice","utf16leSlice","swap","n","swap16","swap32","swap64","apply","toLocaleString","equals","inspect","str","max","INSPECT_MAX_BYTES","replace","trim","target","thisStart","thisEnd","thisCopy","targetCopy","bidirectionalIndexOf","val","dir","arrayIndexOf","lastIndexOf","indexSize","arrLength","valLength","read","readUInt16BE","foundIndex","found","j","includes","hexWrite","Number","remaining","strLen","parsed","parseInt","substr","utf8Write","blitBuffer","asciiWrite","asciiToBytes","base64Write","ucs2Write","utf16leToBytes","isFinite","toJSON","_arr","base64","res","firstByte","codePoint","bytesPerSequence","secondByte","thirdByte","fourthByte","tempCodePoint","decodeCodePointsArray","MAX_ARGUMENTS_LENGTH","codePoints","fromCharCode","ret","out","hexSliceLookupTable","bytes","newBuf","subarray","checkOffset","ext","readUintLE","readUIntLE","noAssert","mul","readUintBE","readUIntBE","readUint8","readUInt8","readUint16LE","readUInt16LE","readUint16BE","readUint32LE","readUInt32LE","readUint32BE","readUInt32BE","readIntLE","readIntBE","readInt8","readInt16LE","readInt16BE","readInt32LE","readInt32BE","readFloatLE","ieee754","readFloatBE","readDoubleLE","readDoubleBE","checkInt","writeUintLE","writeUIntLE","maxBytes","writeUintBE","writeUIntBE","writeUint8","writeUInt8","writeUint16LE","writeUInt16LE","writeUint16BE","writeUInt16BE","writeUint32LE","writeUInt32LE","writeUint32BE","writeUInt32BE","writeIntLE","limit","sub","writeIntBE","writeInt8","writeInt16LE","writeInt16BE","writeInt32LE","writeInt32BE","checkIEEE754","writeFloat","littleEndian","writeFloatLE","writeFloatBE","writeDouble","writeDoubleLE","writeDoubleBE","targetStart","copyWithin","INVALID_BASE64_RE","base64clean","split","units","leadSurrogate","byteArray","hi","lo","src","dst","constructor","name","alphabet","table","i16","extendStatics","__proto__","p","hasOwnProperty","__extends","__","create","__assign","assign","t","BSON_INT32_MAX","BSON_INT32_MIN","BSON_INT64_MAX","BSON_INT64_MIN","EJSON","bsonMap","calculateObjectSize","constants.JS_INT_MIN","constants.JS_INT_MAX","constants.BSON_INT32_MIN","constants.BSON_INT32_MAX","deserialize","constants.BSON_DATA_STRING","constants.BSON_DATA_OID","constants.BSON_DATA_INT","constants.BSON_DATA_NUMBER","constants.BSON_DATA_DATE","constants.BSON_DATA_BOOLEAN","constants.BSON_DATA_OBJECT","constants.BSON_DATA_ARRAY","constants.BSON_DATA_UNDEFINED","constants.BSON_DATA_NULL","constants.BSON_DATA_LONG","constants.BSON_DATA_DECIMAL128","constants.BSON_DATA_BINARY","constants.BSON_BINARY_SUBTYPE_UUID_NEW","constants.BSON_DATA_REGEXP","constants.BSON_DATA_SYMBOL","constants.BSON_DATA_TIMESTAMP","constants.BSON_DATA_MIN_KEY","constants.BSON_DATA_MAX_KEY","constants.BSON_DATA_CODE","constants.BSON_DATA_CODE_W_SCOPE","constants.BSON_DATA_DBPOINTER","constants.BSON_BINARY_SUBTYPE_DEFAULT","Map","internalSerialize","internalDeserialize","internalCalculateObjectSize"],"mappings":"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,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC,EAAE,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE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"} \ No newline at end of file diff --git a/node_modules/bson/dist/bson.esm.js b/node_modules/bson/dist/bson.esm.js new file mode 100644 index 000000000..d22b41101 --- /dev/null +++ b/node_modules/bson/dist/bson.esm.js @@ -0,0 +1,5436 @@ +import { Buffer } from 'buffer'; + +/*! ***************************************************************************** +Copyright (c) Microsoft Corporation. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH +REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY +AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, +INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM +LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR +OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THIS SOFTWARE. +***************************************************************************** */ + +/* global Reflect, Promise */ +var _extendStatics = function extendStatics(d, b) { + _extendStatics = Object.setPrototypeOf || { + __proto__: [] + } instanceof Array && function (d, b) { + d.__proto__ = b; + } || function (d, b) { + for (var p in b) { + if (b.hasOwnProperty(p)) d[p] = b[p]; + } + }; + + return _extendStatics(d, b); +}; + +function __extends(d, b) { + _extendStatics(d, b); + + function __() { + this.constructor = d; + } + + d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); +} + +var _assign = function __assign() { + _assign = Object.assign || function __assign(t) { + for (var s, i = 1, n = arguments.length; i < n; i++) { + s = arguments[i]; + + for (var p in s) { + if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p]; + } + } + + return t; + }; + + return _assign.apply(this, arguments); +}; + +/** @public */ +var BSONError = /** @class */ (function (_super) { + __extends(BSONError, _super); + function BSONError(message) { + var _this = _super.call(this, message) || this; + Object.setPrototypeOf(_this, BSONError.prototype); + return _this; + } + Object.defineProperty(BSONError.prototype, "name", { + get: function () { + return 'BSONError'; + }, + enumerable: false, + configurable: true + }); + return BSONError; +}(Error)); +/** @public */ +var BSONTypeError = /** @class */ (function (_super) { + __extends(BSONTypeError, _super); + function BSONTypeError(message) { + var _this = _super.call(this, message) || this; + Object.setPrototypeOf(_this, BSONTypeError.prototype); + return _this; + } + Object.defineProperty(BSONTypeError.prototype, "name", { + get: function () { + return 'BSONTypeError'; + }, + enumerable: false, + configurable: true + }); + return BSONTypeError; +}(TypeError)); + +function checkForMath(potentialGlobal) { + // eslint-disable-next-line eqeqeq + return potentialGlobal && potentialGlobal.Math == Math && potentialGlobal; +} +// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028 +function getGlobal() { + return (checkForMath(typeof globalThis === 'object' && globalThis) || + checkForMath(typeof window === 'object' && window) || + checkForMath(typeof self === 'object' && self) || + checkForMath(typeof global === 'object' && global) || + // eslint-disable-next-line @typescript-eslint/no-implied-eval + Function('return this')()); +} + +/** + * Normalizes our expected stringified form of a function across versions of node + * @param fn - The function to stringify + */ +function normalizedFunctionString(fn) { + return fn.toString().replace('function(', 'function ('); +} +function isReactNative() { + var g = getGlobal(); + return typeof g.navigator === 'object' && g.navigator.product === 'ReactNative'; +} +var insecureRandomBytes = function insecureRandomBytes(size) { + var insecureWarning = isReactNative() + ? 'BSON: For React Native please polyfill crypto.getRandomValues, e.g. using: https://www.npmjs.com/package/react-native-get-random-values.' + : 'BSON: No cryptographic implementation for random bytes present, falling back to a less secure implementation.'; + console.warn(insecureWarning); + var result = Buffer.alloc(size); + for (var i = 0; i < size; ++i) + result[i] = Math.floor(Math.random() * 256); + return result; +}; +var detectRandomBytes = function () { + { + var requiredRandomBytes = void 0; + try { + requiredRandomBytes = require('crypto').randomBytes; + } + catch (e) { + // keep the fallback + } + // NOTE: in transpiled cases the above require might return null/undefined + return requiredRandomBytes || insecureRandomBytes; + } +}; +var randomBytes = detectRandomBytes(); +function isAnyArrayBuffer(value) { + return ['[object ArrayBuffer]', '[object SharedArrayBuffer]'].includes(Object.prototype.toString.call(value)); +} +function isUint8Array(value) { + return Object.prototype.toString.call(value) === '[object Uint8Array]'; +} +function isBigInt64Array(value) { + return Object.prototype.toString.call(value) === '[object BigInt64Array]'; +} +function isBigUInt64Array(value) { + return Object.prototype.toString.call(value) === '[object BigUint64Array]'; +} +function isRegExp(d) { + return Object.prototype.toString.call(d) === '[object RegExp]'; +} +function isMap(d) { + return Object.prototype.toString.call(d) === '[object Map]'; +} +// To ensure that 0.4 of node works correctly +function isDate(d) { + return isObjectLike(d) && Object.prototype.toString.call(d) === '[object Date]'; +} +/** + * @internal + * this is to solve the `'someKey' in x` problem where x is unknown. + * https://github.com/typescript-eslint/typescript-eslint/issues/1071#issuecomment-541955753 + */ +function isObjectLike(candidate) { + return typeof candidate === 'object' && candidate !== null; +} +function deprecate(fn, message) { + var warned = false; + function deprecated() { + var args = []; + for (var _i = 0; _i < arguments.length; _i++) { + args[_i] = arguments[_i]; + } + if (!warned) { + console.warn(message); + warned = true; + } + return fn.apply(this, args); + } + return deprecated; +} + +/** + * Makes sure that, if a Uint8Array is passed in, it is wrapped in a Buffer. + * + * @param potentialBuffer - The potential buffer + * @returns Buffer the input if potentialBuffer is a buffer, or a buffer that + * wraps a passed in Uint8Array + * @throws BSONTypeError If anything other than a Buffer or Uint8Array is passed in + */ +function ensureBuffer(potentialBuffer) { + if (ArrayBuffer.isView(potentialBuffer)) { + return Buffer.from(potentialBuffer.buffer, potentialBuffer.byteOffset, potentialBuffer.byteLength); + } + if (isAnyArrayBuffer(potentialBuffer)) { + return Buffer.from(potentialBuffer); + } + throw new BSONTypeError('Must use either Buffer or TypedArray'); +} + +// Validation regex for v4 uuid (validates with or without dashes) +var VALIDATION_REGEX = /^(?:[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|[0-9a-f]{12}4[0-9a-f]{3}[89ab][0-9a-f]{15})$/i; +var uuidValidateString = function (str) { + return typeof str === 'string' && VALIDATION_REGEX.test(str); +}; +var uuidHexStringToBuffer = function (hexString) { + if (!uuidValidateString(hexString)) { + throw new BSONTypeError('UUID string representations must be a 32 or 36 character hex string (dashes excluded/included). Format: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" or "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx".'); + } + var sanitizedHexString = hexString.replace(/-/g, ''); + return Buffer.from(sanitizedHexString, 'hex'); +}; +var bufferToUuidHexString = function (buffer, includeDashes) { + if (includeDashes === void 0) { includeDashes = true; } + return includeDashes + ? buffer.toString('hex', 0, 4) + + '-' + + buffer.toString('hex', 4, 6) + + '-' + + buffer.toString('hex', 6, 8) + + '-' + + buffer.toString('hex', 8, 10) + + '-' + + buffer.toString('hex', 10, 16) + : buffer.toString('hex'); +}; + +/** @internal */ +var BSON_INT32_MAX$1 = 0x7fffffff; +/** @internal */ +var BSON_INT32_MIN$1 = -0x80000000; +/** @internal */ +var BSON_INT64_MAX$1 = Math.pow(2, 63) - 1; +/** @internal */ +var BSON_INT64_MIN$1 = -Math.pow(2, 63); +/** + * Any integer up to 2^53 can be precisely represented by a double. + * @internal + */ +var JS_INT_MAX = Math.pow(2, 53); +/** + * Any integer down to -2^53 can be precisely represented by a double. + * @internal + */ +var JS_INT_MIN = -Math.pow(2, 53); +/** Number BSON Type @internal */ +var BSON_DATA_NUMBER = 1; +/** String BSON Type @internal */ +var BSON_DATA_STRING = 2; +/** Object BSON Type @internal */ +var BSON_DATA_OBJECT = 3; +/** Array BSON Type @internal */ +var BSON_DATA_ARRAY = 4; +/** Binary BSON Type @internal */ +var BSON_DATA_BINARY = 5; +/** Binary BSON Type @internal */ +var BSON_DATA_UNDEFINED = 6; +/** ObjectId BSON Type @internal */ +var BSON_DATA_OID = 7; +/** Boolean BSON Type @internal */ +var BSON_DATA_BOOLEAN = 8; +/** Date BSON Type @internal */ +var BSON_DATA_DATE = 9; +/** null BSON Type @internal */ +var BSON_DATA_NULL = 10; +/** RegExp BSON Type @internal */ +var BSON_DATA_REGEXP = 11; +/** Code BSON Type @internal */ +var BSON_DATA_DBPOINTER = 12; +/** Code BSON Type @internal */ +var BSON_DATA_CODE = 13; +/** Symbol BSON Type @internal */ +var BSON_DATA_SYMBOL = 14; +/** Code with Scope BSON Type @internal */ +var BSON_DATA_CODE_W_SCOPE = 15; +/** 32 bit Integer BSON Type @internal */ +var BSON_DATA_INT = 16; +/** Timestamp BSON Type @internal */ +var BSON_DATA_TIMESTAMP = 17; +/** Long BSON Type @internal */ +var BSON_DATA_LONG = 18; +/** Decimal128 BSON Type @internal */ +var BSON_DATA_DECIMAL128 = 19; +/** MinKey BSON Type @internal */ +var BSON_DATA_MIN_KEY = 0xff; +/** MaxKey BSON Type @internal */ +var BSON_DATA_MAX_KEY = 0x7f; +/** Binary Default Type @internal */ +var BSON_BINARY_SUBTYPE_DEFAULT = 0; +/** Binary Function Type @internal */ +var BSON_BINARY_SUBTYPE_FUNCTION = 1; +/** Binary Byte Array Type @internal */ +var BSON_BINARY_SUBTYPE_BYTE_ARRAY = 2; +/** Binary Deprecated UUID Type @deprecated Please use BSON_BINARY_SUBTYPE_UUID_NEW @internal */ +var BSON_BINARY_SUBTYPE_UUID = 3; +/** Binary UUID Type @internal */ +var BSON_BINARY_SUBTYPE_UUID_NEW = 4; +/** Binary MD5 Type @internal */ +var BSON_BINARY_SUBTYPE_MD5 = 5; +/** Encrypted BSON type @internal */ +var BSON_BINARY_SUBTYPE_ENCRYPTED = 6; +/** Column BSON type @internal */ +var BSON_BINARY_SUBTYPE_COLUMN = 7; +/** Binary User Defined Type @internal */ +var BSON_BINARY_SUBTYPE_USER_DEFINED = 128; + +/** + * A class representation of the BSON Binary type. + * @public + * @category BSONType + */ +var Binary = /** @class */ (function () { + /** + * Create a new Binary instance. + * + * This constructor can accept a string as its first argument. In this case, + * this string will be encoded using ISO-8859-1, **not** using UTF-8. + * This is almost certainly not what you want. Use `new Binary(Buffer.from(string))` + * instead to convert the string to a Buffer using UTF-8 first. + * + * @param buffer - a buffer object containing the binary data. + * @param subType - the option binary type. + */ + function Binary(buffer, subType) { + if (!(this instanceof Binary)) + return new Binary(buffer, subType); + if (!(buffer == null) && + !(typeof buffer === 'string') && + !ArrayBuffer.isView(buffer) && + !(buffer instanceof ArrayBuffer) && + !Array.isArray(buffer)) { + throw new BSONTypeError('Binary can only be constructed from string, Buffer, TypedArray, or Array'); + } + this.sub_type = subType !== null && subType !== void 0 ? subType : Binary.BSON_BINARY_SUBTYPE_DEFAULT; + if (buffer == null) { + // create an empty binary buffer + this.buffer = Buffer.alloc(Binary.BUFFER_SIZE); + this.position = 0; + } + else { + if (typeof buffer === 'string') { + // string + this.buffer = Buffer.from(buffer, 'binary'); + } + else if (Array.isArray(buffer)) { + // number[] + this.buffer = Buffer.from(buffer); + } + else { + // Buffer | TypedArray | ArrayBuffer + this.buffer = ensureBuffer(buffer); + } + this.position = this.buffer.byteLength; + } + } + /** + * Updates this binary with byte_value. + * + * @param byteValue - a single byte we wish to write. + */ + Binary.prototype.put = function (byteValue) { + // If it's a string and a has more than one character throw an error + if (typeof byteValue === 'string' && byteValue.length !== 1) { + throw new BSONTypeError('only accepts single character String'); + } + else if (typeof byteValue !== 'number' && byteValue.length !== 1) + throw new BSONTypeError('only accepts single character Uint8Array or Array'); + // Decode the byte value once + var decodedByte; + if (typeof byteValue === 'string') { + decodedByte = byteValue.charCodeAt(0); + } + else if (typeof byteValue === 'number') { + decodedByte = byteValue; + } + else { + decodedByte = byteValue[0]; + } + if (decodedByte < 0 || decodedByte > 255) { + throw new BSONTypeError('only accepts number in a valid unsigned byte range 0-255'); + } + if (this.buffer.length > this.position) { + this.buffer[this.position++] = decodedByte; + } + else { + var buffer = Buffer.alloc(Binary.BUFFER_SIZE + this.buffer.length); + // Combine the two buffers together + this.buffer.copy(buffer, 0, 0, this.buffer.length); + this.buffer = buffer; + this.buffer[this.position++] = decodedByte; + } + }; + /** + * Writes a buffer or string to the binary. + * + * @param sequence - a string or buffer to be written to the Binary BSON object. + * @param offset - specify the binary of where to write the content. + */ + Binary.prototype.write = function (sequence, offset) { + offset = typeof offset === 'number' ? offset : this.position; + // If the buffer is to small let's extend the buffer + if (this.buffer.length < offset + sequence.length) { + var buffer = Buffer.alloc(this.buffer.length + sequence.length); + this.buffer.copy(buffer, 0, 0, this.buffer.length); + // Assign the new buffer + this.buffer = buffer; + } + if (ArrayBuffer.isView(sequence)) { + this.buffer.set(ensureBuffer(sequence), offset); + this.position = + offset + sequence.byteLength > this.position ? offset + sequence.length : this.position; + } + else if (typeof sequence === 'string') { + this.buffer.write(sequence, offset, sequence.length, 'binary'); + this.position = + offset + sequence.length > this.position ? offset + sequence.length : this.position; + } + }; + /** + * Reads **length** bytes starting at **position**. + * + * @param position - read from the given position in the Binary. + * @param length - the number of bytes to read. + */ + Binary.prototype.read = function (position, length) { + length = length && length > 0 ? length : this.position; + // Let's return the data based on the type we have + return this.buffer.slice(position, position + length); + }; + /** + * Returns the value of this binary as a string. + * @param asRaw - Will skip converting to a string + * @remarks + * This is handy when calling this function conditionally for some key value pairs and not others + */ + Binary.prototype.value = function (asRaw) { + asRaw = !!asRaw; + // Optimize to serialize for the situation where the data == size of buffer + if (asRaw && this.buffer.length === this.position) { + return this.buffer; + } + // If it's a node.js buffer object + if (asRaw) { + return this.buffer.slice(0, this.position); + } + return this.buffer.toString('binary', 0, this.position); + }; + /** the length of the binary sequence */ + Binary.prototype.length = function () { + return this.position; + }; + Binary.prototype.toJSON = function () { + return this.buffer.toString('base64'); + }; + Binary.prototype.toString = function (format) { + return this.buffer.toString(format); + }; + /** @internal */ + Binary.prototype.toExtendedJSON = function (options) { + options = options || {}; + var base64String = this.buffer.toString('base64'); + var subType = Number(this.sub_type).toString(16); + if (options.legacy) { + return { + $binary: base64String, + $type: subType.length === 1 ? '0' + subType : subType + }; + } + return { + $binary: { + base64: base64String, + subType: subType.length === 1 ? '0' + subType : subType + } + }; + }; + Binary.prototype.toUUID = function () { + if (this.sub_type === Binary.SUBTYPE_UUID) { + return new UUID(this.buffer.slice(0, this.position)); + } + throw new BSONError("Binary sub_type \"".concat(this.sub_type, "\" is not supported for converting to UUID. Only \"").concat(Binary.SUBTYPE_UUID, "\" is currently supported.")); + }; + /** @internal */ + Binary.fromExtendedJSON = function (doc, options) { + options = options || {}; + var data; + var type; + if ('$binary' in doc) { + if (options.legacy && typeof doc.$binary === 'string' && '$type' in doc) { + type = doc.$type ? parseInt(doc.$type, 16) : 0; + data = Buffer.from(doc.$binary, 'base64'); + } + else { + if (typeof doc.$binary !== 'string') { + type = doc.$binary.subType ? parseInt(doc.$binary.subType, 16) : 0; + data = Buffer.from(doc.$binary.base64, 'base64'); + } + } + } + else if ('$uuid' in doc) { + type = 4; + data = uuidHexStringToBuffer(doc.$uuid); + } + if (!data) { + throw new BSONTypeError("Unexpected Binary Extended JSON format ".concat(JSON.stringify(doc))); + } + return type === BSON_BINARY_SUBTYPE_UUID_NEW ? new UUID(data) : new Binary(data, type); + }; + /** @internal */ + Binary.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () { + return this.inspect(); + }; + Binary.prototype.inspect = function () { + var asBuffer = this.value(true); + return "new Binary(Buffer.from(\"".concat(asBuffer.toString('hex'), "\", \"hex\"), ").concat(this.sub_type, ")"); + }; + /** + * Binary default subtype + * @internal + */ + Binary.BSON_BINARY_SUBTYPE_DEFAULT = 0; + /** Initial buffer default size */ + Binary.BUFFER_SIZE = 256; + /** Default BSON type */ + Binary.SUBTYPE_DEFAULT = 0; + /** Function BSON type */ + Binary.SUBTYPE_FUNCTION = 1; + /** Byte Array BSON type */ + Binary.SUBTYPE_BYTE_ARRAY = 2; + /** Deprecated UUID BSON type @deprecated Please use SUBTYPE_UUID */ + Binary.SUBTYPE_UUID_OLD = 3; + /** UUID BSON type */ + Binary.SUBTYPE_UUID = 4; + /** MD5 BSON type */ + Binary.SUBTYPE_MD5 = 5; + /** Encrypted BSON type */ + Binary.SUBTYPE_ENCRYPTED = 6; + /** Column BSON type */ + Binary.SUBTYPE_COLUMN = 7; + /** User BSON type */ + Binary.SUBTYPE_USER_DEFINED = 128; + return Binary; +}()); +Object.defineProperty(Binary.prototype, '_bsontype', { value: 'Binary' }); +var UUID_BYTE_LENGTH = 16; +/** + * A class representation of the BSON UUID type. + * @public + */ +var UUID = /** @class */ (function (_super) { + __extends(UUID, _super); + /** + * Create an UUID type + * + * @param input - Can be a 32 or 36 character hex string (dashes excluded/included) or a 16 byte binary Buffer. + */ + function UUID(input) { + var _this = this; + var bytes; + var hexStr; + if (input == null) { + bytes = UUID.generate(); + } + else if (input instanceof UUID) { + bytes = Buffer.from(input.buffer); + hexStr = input.__id; + } + else if (ArrayBuffer.isView(input) && input.byteLength === UUID_BYTE_LENGTH) { + bytes = ensureBuffer(input); + } + else if (typeof input === 'string') { + bytes = uuidHexStringToBuffer(input); + } + else { + throw new BSONTypeError('Argument passed in UUID constructor must be a UUID, a 16 byte Buffer or a 32/36 character hex string (dashes excluded/included, format: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx).'); + } + _this = _super.call(this, bytes, BSON_BINARY_SUBTYPE_UUID_NEW) || this; + _this.__id = hexStr; + return _this; + } + Object.defineProperty(UUID.prototype, "id", { + /** + * The UUID bytes + * @readonly + */ + get: function () { + return this.buffer; + }, + set: function (value) { + this.buffer = value; + if (UUID.cacheHexString) { + this.__id = bufferToUuidHexString(value); + } + }, + enumerable: false, + configurable: true + }); + /** + * Returns the UUID id as a 32 or 36 character hex string representation, excluding/including dashes (defaults to 36 character dash separated) + * @param includeDashes - should the string exclude dash-separators. + * */ + UUID.prototype.toHexString = function (includeDashes) { + if (includeDashes === void 0) { includeDashes = true; } + if (UUID.cacheHexString && this.__id) { + return this.__id; + } + var uuidHexString = bufferToUuidHexString(this.id, includeDashes); + if (UUID.cacheHexString) { + this.__id = uuidHexString; + } + return uuidHexString; + }; + /** + * Converts the id into a 36 character (dashes included) hex string, unless a encoding is specified. + */ + UUID.prototype.toString = function (encoding) { + return encoding ? this.id.toString(encoding) : this.toHexString(); + }; + /** + * Converts the id into its JSON string representation. + * A 36 character (dashes included) hex string in the format: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx + */ + UUID.prototype.toJSON = function () { + return this.toHexString(); + }; + /** + * Compares the equality of this UUID with `otherID`. + * + * @param otherId - UUID instance to compare against. + */ + UUID.prototype.equals = function (otherId) { + if (!otherId) { + return false; + } + if (otherId instanceof UUID) { + return otherId.id.equals(this.id); + } + try { + return new UUID(otherId).id.equals(this.id); + } + catch (_a) { + return false; + } + }; + /** + * Creates a Binary instance from the current UUID. + */ + UUID.prototype.toBinary = function () { + return new Binary(this.id, Binary.SUBTYPE_UUID); + }; + /** + * Generates a populated buffer containing a v4 uuid + */ + UUID.generate = function () { + var bytes = randomBytes(UUID_BYTE_LENGTH); + // Per 4.4, set bits for version and `clock_seq_hi_and_reserved` + // Kindly borrowed from https://github.com/uuidjs/uuid/blob/master/src/v4.js + bytes[6] = (bytes[6] & 0x0f) | 0x40; + bytes[8] = (bytes[8] & 0x3f) | 0x80; + return Buffer.from(bytes); + }; + /** + * Checks if a value is a valid bson UUID + * @param input - UUID, string or Buffer to validate. + */ + UUID.isValid = function (input) { + if (!input) { + return false; + } + if (input instanceof UUID) { + return true; + } + if (typeof input === 'string') { + return uuidValidateString(input); + } + if (isUint8Array(input)) { + // check for length & uuid version (https://tools.ietf.org/html/rfc4122#section-4.1.3) + if (input.length !== UUID_BYTE_LENGTH) { + return false; + } + return (input[6] & 0xf0) === 0x40 && (input[8] & 0x80) === 0x80; + } + return false; + }; + /** + * Creates an UUID from a hex string representation of an UUID. + * @param hexString - 32 or 36 character hex string (dashes excluded/included). + */ + UUID.createFromHexString = function (hexString) { + var buffer = uuidHexStringToBuffer(hexString); + return new UUID(buffer); + }; + /** + * Converts to a string representation of this Id. + * + * @returns return the 36 character hex string representation. + * @internal + */ + UUID.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () { + return this.inspect(); + }; + UUID.prototype.inspect = function () { + return "new UUID(\"".concat(this.toHexString(), "\")"); + }; + return UUID; +}(Binary)); + +/** + * A class representation of the BSON Code type. + * @public + * @category BSONType + */ +var Code = /** @class */ (function () { + /** + * @param code - a string or function. + * @param scope - an optional scope for the function. + */ + function Code(code, scope) { + if (!(this instanceof Code)) + return new Code(code, scope); + this.code = code; + this.scope = scope; + } + Code.prototype.toJSON = function () { + return { code: this.code, scope: this.scope }; + }; + /** @internal */ + Code.prototype.toExtendedJSON = function () { + if (this.scope) { + return { $code: this.code, $scope: this.scope }; + } + return { $code: this.code }; + }; + /** @internal */ + Code.fromExtendedJSON = function (doc) { + return new Code(doc.$code, doc.$scope); + }; + /** @internal */ + Code.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () { + return this.inspect(); + }; + Code.prototype.inspect = function () { + var codeJson = this.toJSON(); + return "new Code(\"".concat(String(codeJson.code), "\"").concat(codeJson.scope ? ", ".concat(JSON.stringify(codeJson.scope)) : '', ")"); + }; + return Code; +}()); +Object.defineProperty(Code.prototype, '_bsontype', { value: 'Code' }); + +/** @internal */ +function isDBRefLike(value) { + return (isObjectLike(value) && + value.$id != null && + typeof value.$ref === 'string' && + (value.$db == null || typeof value.$db === 'string')); +} +/** + * A class representation of the BSON DBRef type. + * @public + * @category BSONType + */ +var DBRef = /** @class */ (function () { + /** + * @param collection - the collection name. + * @param oid - the reference ObjectId. + * @param db - optional db name, if omitted the reference is local to the current db. + */ + function DBRef(collection, oid, db, fields) { + if (!(this instanceof DBRef)) + return new DBRef(collection, oid, db, fields); + // check if namespace has been provided + var parts = collection.split('.'); + if (parts.length === 2) { + db = parts.shift(); + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + collection = parts.shift(); + } + this.collection = collection; + this.oid = oid; + this.db = db; + this.fields = fields || {}; + } + Object.defineProperty(DBRef.prototype, "namespace", { + // Property provided for compatibility with the 1.x parser + // the 1.x parser used a "namespace" property, while 4.x uses "collection" + /** @internal */ + get: function () { + return this.collection; + }, + set: function (value) { + this.collection = value; + }, + enumerable: false, + configurable: true + }); + DBRef.prototype.toJSON = function () { + var o = Object.assign({ + $ref: this.collection, + $id: this.oid + }, this.fields); + if (this.db != null) + o.$db = this.db; + return o; + }; + /** @internal */ + DBRef.prototype.toExtendedJSON = function (options) { + options = options || {}; + var o = { + $ref: this.collection, + $id: this.oid + }; + if (options.legacy) { + return o; + } + if (this.db) + o.$db = this.db; + o = Object.assign(o, this.fields); + return o; + }; + /** @internal */ + DBRef.fromExtendedJSON = function (doc) { + var copy = Object.assign({}, doc); + delete copy.$ref; + delete copy.$id; + delete copy.$db; + return new DBRef(doc.$ref, doc.$id, doc.$db, copy); + }; + /** @internal */ + DBRef.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () { + return this.inspect(); + }; + DBRef.prototype.inspect = function () { + // NOTE: if OID is an ObjectId class it will just print the oid string. + var oid = this.oid === undefined || this.oid.toString === undefined ? this.oid : this.oid.toString(); + return "new DBRef(\"".concat(this.namespace, "\", new ObjectId(\"").concat(String(oid), "\")").concat(this.db ? ", \"".concat(this.db, "\"") : '', ")"); + }; + return DBRef; +}()); +Object.defineProperty(DBRef.prototype, '_bsontype', { value: 'DBRef' }); + +/** + * wasm optimizations, to do native i64 multiplication and divide + */ +var wasm = undefined; +try { + wasm = new WebAssembly.Instance(new WebAssembly.Module( + // prettier-ignore + new Uint8Array([0, 97, 115, 109, 1, 0, 0, 0, 1, 13, 2, 96, 0, 1, 127, 96, 4, 127, 127, 127, 127, 1, 127, 3, 7, 6, 0, 1, 1, 1, 1, 1, 6, 6, 1, 127, 1, 65, 0, 11, 7, 50, 6, 3, 109, 117, 108, 0, 1, 5, 100, 105, 118, 95, 115, 0, 2, 5, 100, 105, 118, 95, 117, 0, 3, 5, 114, 101, 109, 95, 115, 0, 4, 5, 114, 101, 109, 95, 117, 0, 5, 8, 103, 101, 116, 95, 104, 105, 103, 104, 0, 0, 10, 191, 1, 6, 4, 0, 35, 0, 11, 36, 1, 1, 126, 32, 0, 173, 32, 1, 173, 66, 32, 134, 132, 32, 2, 173, 32, 3, 173, 66, 32, 134, 132, 126, 34, 4, 66, 32, 135, 167, 36, 0, 32, 4, 167, 11, 36, 1, 1, 126, 32, 0, 173, 32, 1, 173, 66, 32, 134, 132, 32, 2, 173, 32, 3, 173, 66, 32, 134, 132, 127, 34, 4, 66, 32, 135, 167, 36, 0, 32, 4, 167, 11, 36, 1, 1, 126, 32, 0, 173, 32, 1, 173, 66, 32, 134, 132, 32, 2, 173, 32, 3, 173, 66, 32, 134, 132, 128, 34, 4, 66, 32, 135, 167, 36, 0, 32, 4, 167, 11, 36, 1, 1, 126, 32, 0, 173, 32, 1, 173, 66, 32, 134, 132, 32, 2, 173, 32, 3, 173, 66, 32, 134, 132, 129, 34, 4, 66, 32, 135, 167, 36, 0, 32, 4, 167, 11, 36, 1, 1, 126, 32, 0, 173, 32, 1, 173, 66, 32, 134, 132, 32, 2, 173, 32, 3, 173, 66, 32, 134, 132, 130, 34, 4, 66, 32, 135, 167, 36, 0, 32, 4, 167, 11])), {}).exports; +} +catch (_a) { + // no wasm support +} +var TWO_PWR_16_DBL = 1 << 16; +var TWO_PWR_24_DBL = 1 << 24; +var TWO_PWR_32_DBL = TWO_PWR_16_DBL * TWO_PWR_16_DBL; +var TWO_PWR_64_DBL = TWO_PWR_32_DBL * TWO_PWR_32_DBL; +var TWO_PWR_63_DBL = TWO_PWR_64_DBL / 2; +/** A cache of the Long representations of small integer values. */ +var INT_CACHE = {}; +/** A cache of the Long representations of small unsigned integer values. */ +var UINT_CACHE = {}; +/** + * A class representing a 64-bit integer + * @public + * @category BSONType + * @remarks + * The internal representation of a long is the two given signed, 32-bit values. + * We use 32-bit pieces because these are the size of integers on which + * Javascript performs bit-operations. For operations like addition and + * multiplication, we split each number into 16 bit pieces, which can easily be + * multiplied within Javascript's floating-point representation without overflow + * or change in sign. + * In the algorithms below, we frequently reduce the negative case to the + * positive case by negating the input(s) and then post-processing the result. + * Note that we must ALWAYS check specially whether those values are MIN_VALUE + * (-2^63) because -MIN_VALUE == MIN_VALUE (since 2^63 cannot be represented as + * a positive number, it overflows back into a negative). Not handling this + * case would often result in infinite recursion. + * Common constant values ZERO, ONE, NEG_ONE, etc. are found as static properties on this class. + */ +var Long = /** @class */ (function () { + /** + * Constructs a 64 bit two's-complement integer, given its low and high 32 bit values as *signed* integers. + * See the from* functions below for more convenient ways of constructing Longs. + * + * Acceptable signatures are: + * - Long(low, high, unsigned?) + * - Long(bigint, unsigned?) + * - Long(string, unsigned?) + * + * @param low - The low (signed) 32 bits of the long + * @param high - The high (signed) 32 bits of the long + * @param unsigned - Whether unsigned or not, defaults to signed + */ + function Long(low, high, unsigned) { + if (low === void 0) { low = 0; } + if (!(this instanceof Long)) + return new Long(low, high, unsigned); + if (typeof low === 'bigint') { + Object.assign(this, Long.fromBigInt(low, !!high)); + } + else if (typeof low === 'string') { + Object.assign(this, Long.fromString(low, !!high)); + } + else { + this.low = low | 0; + this.high = high | 0; + this.unsigned = !!unsigned; + } + Object.defineProperty(this, '__isLong__', { + value: true, + configurable: false, + writable: false, + enumerable: false + }); + } + /** + * Returns a Long representing the 64 bit integer that comes by concatenating the given low and high bits. + * Each is assumed to use 32 bits. + * @param lowBits - The low 32 bits + * @param highBits - The high 32 bits + * @param unsigned - Whether unsigned or not, defaults to signed + * @returns The corresponding Long value + */ + Long.fromBits = function (lowBits, highBits, unsigned) { + return new Long(lowBits, highBits, unsigned); + }; + /** + * Returns a Long representing the given 32 bit integer value. + * @param value - The 32 bit integer in question + * @param unsigned - Whether unsigned or not, defaults to signed + * @returns The corresponding Long value + */ + Long.fromInt = function (value, unsigned) { + var obj, cachedObj, cache; + if (unsigned) { + value >>>= 0; + if ((cache = 0 <= value && value < 256)) { + cachedObj = UINT_CACHE[value]; + if (cachedObj) + return cachedObj; + } + obj = Long.fromBits(value, (value | 0) < 0 ? -1 : 0, true); + if (cache) + UINT_CACHE[value] = obj; + return obj; + } + else { + value |= 0; + if ((cache = -128 <= value && value < 128)) { + cachedObj = INT_CACHE[value]; + if (cachedObj) + return cachedObj; + } + obj = Long.fromBits(value, value < 0 ? -1 : 0, false); + if (cache) + INT_CACHE[value] = obj; + return obj; + } + }; + /** + * Returns a Long representing the given value, provided that it is a finite number. Otherwise, zero is returned. + * @param value - The number in question + * @param unsigned - Whether unsigned or not, defaults to signed + * @returns The corresponding Long value + */ + Long.fromNumber = function (value, unsigned) { + if (isNaN(value)) + return unsigned ? Long.UZERO : Long.ZERO; + if (unsigned) { + if (value < 0) + return Long.UZERO; + if (value >= TWO_PWR_64_DBL) + return Long.MAX_UNSIGNED_VALUE; + } + else { + if (value <= -TWO_PWR_63_DBL) + return Long.MIN_VALUE; + if (value + 1 >= TWO_PWR_63_DBL) + return Long.MAX_VALUE; + } + if (value < 0) + return Long.fromNumber(-value, unsigned).neg(); + return Long.fromBits(value % TWO_PWR_32_DBL | 0, (value / TWO_PWR_32_DBL) | 0, unsigned); + }; + /** + * Returns a Long representing the given value, provided that it is a finite number. Otherwise, zero is returned. + * @param value - The number in question + * @param unsigned - Whether unsigned or not, defaults to signed + * @returns The corresponding Long value + */ + Long.fromBigInt = function (value, unsigned) { + return Long.fromString(value.toString(), unsigned); + }; + /** + * Returns a Long representation of the given string, written using the specified radix. + * @param str - The textual representation of the Long + * @param unsigned - Whether unsigned or not, defaults to signed + * @param radix - The radix in which the text is written (2-36), defaults to 10 + * @returns The corresponding Long value + */ + Long.fromString = function (str, unsigned, radix) { + if (str.length === 0) + throw Error('empty string'); + if (str === 'NaN' || str === 'Infinity' || str === '+Infinity' || str === '-Infinity') + return Long.ZERO; + if (typeof unsigned === 'number') { + // For goog.math.long compatibility + (radix = unsigned), (unsigned = false); + } + else { + unsigned = !!unsigned; + } + radix = radix || 10; + if (radix < 2 || 36 < radix) + throw RangeError('radix'); + var p; + if ((p = str.indexOf('-')) > 0) + throw Error('interior hyphen'); + else if (p === 0) { + return Long.fromString(str.substring(1), unsigned, radix).neg(); + } + // Do several (8) digits each time through the loop, so as to + // minimize the calls to the very expensive emulated div. + var radixToPower = Long.fromNumber(Math.pow(radix, 8)); + var result = Long.ZERO; + for (var i = 0; i < str.length; i += 8) { + var size = Math.min(8, str.length - i), value = parseInt(str.substring(i, i + size), radix); + if (size < 8) { + var power = Long.fromNumber(Math.pow(radix, size)); + result = result.mul(power).add(Long.fromNumber(value)); + } + else { + result = result.mul(radixToPower); + result = result.add(Long.fromNumber(value)); + } + } + result.unsigned = unsigned; + return result; + }; + /** + * Creates a Long from its byte representation. + * @param bytes - Byte representation + * @param unsigned - Whether unsigned or not, defaults to signed + * @param le - Whether little or big endian, defaults to big endian + * @returns The corresponding Long value + */ + Long.fromBytes = function (bytes, unsigned, le) { + return le ? Long.fromBytesLE(bytes, unsigned) : Long.fromBytesBE(bytes, unsigned); + }; + /** + * Creates a Long from its little endian byte representation. + * @param bytes - Little endian byte representation + * @param unsigned - Whether unsigned or not, defaults to signed + * @returns The corresponding Long value + */ + Long.fromBytesLE = function (bytes, unsigned) { + return new Long(bytes[0] | (bytes[1] << 8) | (bytes[2] << 16) | (bytes[3] << 24), bytes[4] | (bytes[5] << 8) | (bytes[6] << 16) | (bytes[7] << 24), unsigned); + }; + /** + * Creates a Long from its big endian byte representation. + * @param bytes - Big endian byte representation + * @param unsigned - Whether unsigned or not, defaults to signed + * @returns The corresponding Long value + */ + Long.fromBytesBE = function (bytes, unsigned) { + return new Long((bytes[4] << 24) | (bytes[5] << 16) | (bytes[6] << 8) | bytes[7], (bytes[0] << 24) | (bytes[1] << 16) | (bytes[2] << 8) | bytes[3], unsigned); + }; + /** + * Tests if the specified object is a Long. + */ + Long.isLong = function (value) { + return isObjectLike(value) && value['__isLong__'] === true; + }; + /** + * Converts the specified value to a Long. + * @param unsigned - Whether unsigned or not, defaults to signed + */ + Long.fromValue = function (val, unsigned) { + if (typeof val === 'number') + return Long.fromNumber(val, unsigned); + if (typeof val === 'string') + return Long.fromString(val, unsigned); + // Throws for non-objects, converts non-instanceof Long: + return Long.fromBits(val.low, val.high, typeof unsigned === 'boolean' ? unsigned : val.unsigned); + }; + /** Returns the sum of this and the specified Long. */ + Long.prototype.add = function (addend) { + if (!Long.isLong(addend)) + addend = Long.fromValue(addend); + // Divide each number into 4 chunks of 16 bits, and then sum the chunks. + var a48 = this.high >>> 16; + var a32 = this.high & 0xffff; + var a16 = this.low >>> 16; + var a00 = this.low & 0xffff; + var b48 = addend.high >>> 16; + var b32 = addend.high & 0xffff; + var b16 = addend.low >>> 16; + var b00 = addend.low & 0xffff; + var c48 = 0, c32 = 0, c16 = 0, c00 = 0; + c00 += a00 + b00; + c16 += c00 >>> 16; + c00 &= 0xffff; + c16 += a16 + b16; + c32 += c16 >>> 16; + c16 &= 0xffff; + c32 += a32 + b32; + c48 += c32 >>> 16; + c32 &= 0xffff; + c48 += a48 + b48; + c48 &= 0xffff; + return Long.fromBits((c16 << 16) | c00, (c48 << 16) | c32, this.unsigned); + }; + /** + * Returns the sum of this and the specified Long. + * @returns Sum + */ + Long.prototype.and = function (other) { + if (!Long.isLong(other)) + other = Long.fromValue(other); + return Long.fromBits(this.low & other.low, this.high & other.high, this.unsigned); + }; + /** + * Compares this Long's value with the specified's. + * @returns 0 if they are the same, 1 if the this is greater and -1 if the given one is greater + */ + Long.prototype.compare = function (other) { + if (!Long.isLong(other)) + other = Long.fromValue(other); + if (this.eq(other)) + return 0; + var thisNeg = this.isNegative(), otherNeg = other.isNegative(); + if (thisNeg && !otherNeg) + return -1; + if (!thisNeg && otherNeg) + return 1; + // At this point the sign bits are the same + if (!this.unsigned) + return this.sub(other).isNegative() ? -1 : 1; + // Both are positive if at least one is unsigned + return other.high >>> 0 > this.high >>> 0 || + (other.high === this.high && other.low >>> 0 > this.low >>> 0) + ? -1 + : 1; + }; + /** This is an alias of {@link Long.compare} */ + Long.prototype.comp = function (other) { + return this.compare(other); + }; + /** + * Returns this Long divided by the specified. The result is signed if this Long is signed or unsigned if this Long is unsigned. + * @returns Quotient + */ + Long.prototype.divide = function (divisor) { + if (!Long.isLong(divisor)) + divisor = Long.fromValue(divisor); + if (divisor.isZero()) + throw Error('division by zero'); + // use wasm support if present + if (wasm) { + // guard against signed division overflow: the largest + // negative number / -1 would be 1 larger than the largest + // positive number, due to two's complement. + if (!this.unsigned && + this.high === -0x80000000 && + divisor.low === -1 && + divisor.high === -1) { + // be consistent with non-wasm code path + return this; + } + var low = (this.unsigned ? wasm.div_u : wasm.div_s)(this.low, this.high, divisor.low, divisor.high); + return Long.fromBits(low, wasm.get_high(), this.unsigned); + } + if (this.isZero()) + return this.unsigned ? Long.UZERO : Long.ZERO; + var approx, rem, res; + if (!this.unsigned) { + // This section is only relevant for signed longs and is derived from the + // closure library as a whole. + if (this.eq(Long.MIN_VALUE)) { + if (divisor.eq(Long.ONE) || divisor.eq(Long.NEG_ONE)) + return Long.MIN_VALUE; + // recall that -MIN_VALUE == MIN_VALUE + else if (divisor.eq(Long.MIN_VALUE)) + return Long.ONE; + else { + // At this point, we have |other| >= 2, so |this/other| < |MIN_VALUE|. + var halfThis = this.shr(1); + approx = halfThis.div(divisor).shl(1); + if (approx.eq(Long.ZERO)) { + return divisor.isNegative() ? Long.ONE : Long.NEG_ONE; + } + else { + rem = this.sub(divisor.mul(approx)); + res = approx.add(rem.div(divisor)); + return res; + } + } + } + else if (divisor.eq(Long.MIN_VALUE)) + return this.unsigned ? Long.UZERO : Long.ZERO; + if (this.isNegative()) { + if (divisor.isNegative()) + return this.neg().div(divisor.neg()); + return this.neg().div(divisor).neg(); + } + else if (divisor.isNegative()) + return this.div(divisor.neg()).neg(); + res = Long.ZERO; + } + else { + // The algorithm below has not been made for unsigned longs. It's therefore + // required to take special care of the MSB prior to running it. + if (!divisor.unsigned) + divisor = divisor.toUnsigned(); + if (divisor.gt(this)) + return Long.UZERO; + if (divisor.gt(this.shru(1))) + // 15 >>> 1 = 7 ; with divisor = 8 ; true + return Long.UONE; + res = Long.UZERO; + } + // Repeat the following until the remainder is less than other: find a + // floating-point that approximates remainder / other *from below*, add this + // into the result, and subtract it from the remainder. It is critical that + // the approximate value is less than or equal to the real value so that the + // remainder never becomes negative. + // eslint-disable-next-line @typescript-eslint/no-this-alias + rem = this; + while (rem.gte(divisor)) { + // Approximate the result of division. This may be a little greater or + // smaller than the actual value. + approx = Math.max(1, Math.floor(rem.toNumber() / divisor.toNumber())); + // We will tweak the approximate result by changing it in the 48-th digit or + // the smallest non-fractional digit, whichever is larger. + var log2 = Math.ceil(Math.log(approx) / Math.LN2); + var delta = log2 <= 48 ? 1 : Math.pow(2, log2 - 48); + // Decrease the approximation until it is smaller than the remainder. Note + // that if it is too large, the product overflows and is negative. + var approxRes = Long.fromNumber(approx); + var approxRem = approxRes.mul(divisor); + while (approxRem.isNegative() || approxRem.gt(rem)) { + approx -= delta; + approxRes = Long.fromNumber(approx, this.unsigned); + approxRem = approxRes.mul(divisor); + } + // We know the answer can't be zero... and actually, zero would cause + // infinite recursion since we would make no progress. + if (approxRes.isZero()) + approxRes = Long.ONE; + res = res.add(approxRes); + rem = rem.sub(approxRem); + } + return res; + }; + /**This is an alias of {@link Long.divide} */ + Long.prototype.div = function (divisor) { + return this.divide(divisor); + }; + /** + * Tests if this Long's value equals the specified's. + * @param other - Other value + */ + Long.prototype.equals = function (other) { + if (!Long.isLong(other)) + other = Long.fromValue(other); + if (this.unsigned !== other.unsigned && this.high >>> 31 === 1 && other.high >>> 31 === 1) + return false; + return this.high === other.high && this.low === other.low; + }; + /** This is an alias of {@link Long.equals} */ + Long.prototype.eq = function (other) { + return this.equals(other); + }; + /** Gets the high 32 bits as a signed integer. */ + Long.prototype.getHighBits = function () { + return this.high; + }; + /** Gets the high 32 bits as an unsigned integer. */ + Long.prototype.getHighBitsUnsigned = function () { + return this.high >>> 0; + }; + /** Gets the low 32 bits as a signed integer. */ + Long.prototype.getLowBits = function () { + return this.low; + }; + /** Gets the low 32 bits as an unsigned integer. */ + Long.prototype.getLowBitsUnsigned = function () { + return this.low >>> 0; + }; + /** Gets the number of bits needed to represent the absolute value of this Long. */ + Long.prototype.getNumBitsAbs = function () { + if (this.isNegative()) { + // Unsigned Longs are never negative + return this.eq(Long.MIN_VALUE) ? 64 : this.neg().getNumBitsAbs(); + } + var val = this.high !== 0 ? this.high : this.low; + var bit; + for (bit = 31; bit > 0; bit--) + if ((val & (1 << bit)) !== 0) + break; + return this.high !== 0 ? bit + 33 : bit + 1; + }; + /** Tests if this Long's value is greater than the specified's. */ + Long.prototype.greaterThan = function (other) { + return this.comp(other) > 0; + }; + /** This is an alias of {@link Long.greaterThan} */ + Long.prototype.gt = function (other) { + return this.greaterThan(other); + }; + /** Tests if this Long's value is greater than or equal the specified's. */ + Long.prototype.greaterThanOrEqual = function (other) { + return this.comp(other) >= 0; + }; + /** This is an alias of {@link Long.greaterThanOrEqual} */ + Long.prototype.gte = function (other) { + return this.greaterThanOrEqual(other); + }; + /** This is an alias of {@link Long.greaterThanOrEqual} */ + Long.prototype.ge = function (other) { + return this.greaterThanOrEqual(other); + }; + /** Tests if this Long's value is even. */ + Long.prototype.isEven = function () { + return (this.low & 1) === 0; + }; + /** Tests if this Long's value is negative. */ + Long.prototype.isNegative = function () { + return !this.unsigned && this.high < 0; + }; + /** Tests if this Long's value is odd. */ + Long.prototype.isOdd = function () { + return (this.low & 1) === 1; + }; + /** Tests if this Long's value is positive. */ + Long.prototype.isPositive = function () { + return this.unsigned || this.high >= 0; + }; + /** Tests if this Long's value equals zero. */ + Long.prototype.isZero = function () { + return this.high === 0 && this.low === 0; + }; + /** Tests if this Long's value is less than the specified's. */ + Long.prototype.lessThan = function (other) { + return this.comp(other) < 0; + }; + /** This is an alias of {@link Long#lessThan}. */ + Long.prototype.lt = function (other) { + return this.lessThan(other); + }; + /** Tests if this Long's value is less than or equal the specified's. */ + Long.prototype.lessThanOrEqual = function (other) { + return this.comp(other) <= 0; + }; + /** This is an alias of {@link Long.lessThanOrEqual} */ + Long.prototype.lte = function (other) { + return this.lessThanOrEqual(other); + }; + /** Returns this Long modulo the specified. */ + Long.prototype.modulo = function (divisor) { + if (!Long.isLong(divisor)) + divisor = Long.fromValue(divisor); + // use wasm support if present + if (wasm) { + var low = (this.unsigned ? wasm.rem_u : wasm.rem_s)(this.low, this.high, divisor.low, divisor.high); + return Long.fromBits(low, wasm.get_high(), this.unsigned); + } + return this.sub(this.div(divisor).mul(divisor)); + }; + /** This is an alias of {@link Long.modulo} */ + Long.prototype.mod = function (divisor) { + return this.modulo(divisor); + }; + /** This is an alias of {@link Long.modulo} */ + Long.prototype.rem = function (divisor) { + return this.modulo(divisor); + }; + /** + * Returns the product of this and the specified Long. + * @param multiplier - Multiplier + * @returns Product + */ + Long.prototype.multiply = function (multiplier) { + if (this.isZero()) + return Long.ZERO; + if (!Long.isLong(multiplier)) + multiplier = Long.fromValue(multiplier); + // use wasm support if present + if (wasm) { + var low = wasm.mul(this.low, this.high, multiplier.low, multiplier.high); + return Long.fromBits(low, wasm.get_high(), this.unsigned); + } + if (multiplier.isZero()) + return Long.ZERO; + if (this.eq(Long.MIN_VALUE)) + return multiplier.isOdd() ? Long.MIN_VALUE : Long.ZERO; + if (multiplier.eq(Long.MIN_VALUE)) + return this.isOdd() ? Long.MIN_VALUE : Long.ZERO; + if (this.isNegative()) { + if (multiplier.isNegative()) + return this.neg().mul(multiplier.neg()); + else + return this.neg().mul(multiplier).neg(); + } + else if (multiplier.isNegative()) + return this.mul(multiplier.neg()).neg(); + // If both longs are small, use float multiplication + if (this.lt(Long.TWO_PWR_24) && multiplier.lt(Long.TWO_PWR_24)) + return Long.fromNumber(this.toNumber() * multiplier.toNumber(), this.unsigned); + // Divide each long into 4 chunks of 16 bits, and then add up 4x4 products. + // We can skip products that would overflow. + var a48 = this.high >>> 16; + var a32 = this.high & 0xffff; + var a16 = this.low >>> 16; + var a00 = this.low & 0xffff; + var b48 = multiplier.high >>> 16; + var b32 = multiplier.high & 0xffff; + var b16 = multiplier.low >>> 16; + var b00 = multiplier.low & 0xffff; + var c48 = 0, c32 = 0, c16 = 0, c00 = 0; + c00 += a00 * b00; + c16 += c00 >>> 16; + c00 &= 0xffff; + c16 += a16 * b00; + c32 += c16 >>> 16; + c16 &= 0xffff; + c16 += a00 * b16; + c32 += c16 >>> 16; + c16 &= 0xffff; + c32 += a32 * b00; + c48 += c32 >>> 16; + c32 &= 0xffff; + c32 += a16 * b16; + c48 += c32 >>> 16; + c32 &= 0xffff; + c32 += a00 * b32; + c48 += c32 >>> 16; + c32 &= 0xffff; + c48 += a48 * b00 + a32 * b16 + a16 * b32 + a00 * b48; + c48 &= 0xffff; + return Long.fromBits((c16 << 16) | c00, (c48 << 16) | c32, this.unsigned); + }; + /** This is an alias of {@link Long.multiply} */ + Long.prototype.mul = function (multiplier) { + return this.multiply(multiplier); + }; + /** Returns the Negation of this Long's value. */ + Long.prototype.negate = function () { + if (!this.unsigned && this.eq(Long.MIN_VALUE)) + return Long.MIN_VALUE; + return this.not().add(Long.ONE); + }; + /** This is an alias of {@link Long.negate} */ + Long.prototype.neg = function () { + return this.negate(); + }; + /** Returns the bitwise NOT of this Long. */ + Long.prototype.not = function () { + return Long.fromBits(~this.low, ~this.high, this.unsigned); + }; + /** Tests if this Long's value differs from the specified's. */ + Long.prototype.notEquals = function (other) { + return !this.equals(other); + }; + /** This is an alias of {@link Long.notEquals} */ + Long.prototype.neq = function (other) { + return this.notEquals(other); + }; + /** This is an alias of {@link Long.notEquals} */ + Long.prototype.ne = function (other) { + return this.notEquals(other); + }; + /** + * Returns the bitwise OR of this Long and the specified. + */ + Long.prototype.or = function (other) { + if (!Long.isLong(other)) + other = Long.fromValue(other); + return Long.fromBits(this.low | other.low, this.high | other.high, this.unsigned); + }; + /** + * Returns this Long with bits shifted to the left by the given amount. + * @param numBits - Number of bits + * @returns Shifted Long + */ + Long.prototype.shiftLeft = function (numBits) { + if (Long.isLong(numBits)) + numBits = numBits.toInt(); + if ((numBits &= 63) === 0) + return this; + else if (numBits < 32) + return Long.fromBits(this.low << numBits, (this.high << numBits) | (this.low >>> (32 - numBits)), this.unsigned); + else + return Long.fromBits(0, this.low << (numBits - 32), this.unsigned); + }; + /** This is an alias of {@link Long.shiftLeft} */ + Long.prototype.shl = function (numBits) { + return this.shiftLeft(numBits); + }; + /** + * Returns this Long with bits arithmetically shifted to the right by the given amount. + * @param numBits - Number of bits + * @returns Shifted Long + */ + Long.prototype.shiftRight = function (numBits) { + if (Long.isLong(numBits)) + numBits = numBits.toInt(); + if ((numBits &= 63) === 0) + return this; + else if (numBits < 32) + return Long.fromBits((this.low >>> numBits) | (this.high << (32 - numBits)), this.high >> numBits, this.unsigned); + else + return Long.fromBits(this.high >> (numBits - 32), this.high >= 0 ? 0 : -1, this.unsigned); + }; + /** This is an alias of {@link Long.shiftRight} */ + Long.prototype.shr = function (numBits) { + return this.shiftRight(numBits); + }; + /** + * Returns this Long with bits logically shifted to the right by the given amount. + * @param numBits - Number of bits + * @returns Shifted Long + */ + Long.prototype.shiftRightUnsigned = function (numBits) { + if (Long.isLong(numBits)) + numBits = numBits.toInt(); + numBits &= 63; + if (numBits === 0) + return this; + else { + var high = this.high; + if (numBits < 32) { + var low = this.low; + return Long.fromBits((low >>> numBits) | (high << (32 - numBits)), high >>> numBits, this.unsigned); + } + else if (numBits === 32) + return Long.fromBits(high, 0, this.unsigned); + else + return Long.fromBits(high >>> (numBits - 32), 0, this.unsigned); + } + }; + /** This is an alias of {@link Long.shiftRightUnsigned} */ + Long.prototype.shr_u = function (numBits) { + return this.shiftRightUnsigned(numBits); + }; + /** This is an alias of {@link Long.shiftRightUnsigned} */ + Long.prototype.shru = function (numBits) { + return this.shiftRightUnsigned(numBits); + }; + /** + * Returns the difference of this and the specified Long. + * @param subtrahend - Subtrahend + * @returns Difference + */ + Long.prototype.subtract = function (subtrahend) { + if (!Long.isLong(subtrahend)) + subtrahend = Long.fromValue(subtrahend); + return this.add(subtrahend.neg()); + }; + /** This is an alias of {@link Long.subtract} */ + Long.prototype.sub = function (subtrahend) { + return this.subtract(subtrahend); + }; + /** Converts the Long to a 32 bit integer, assuming it is a 32 bit integer. */ + Long.prototype.toInt = function () { + return this.unsigned ? this.low >>> 0 : this.low; + }; + /** Converts the Long to a the nearest floating-point representation of this value (double, 53 bit mantissa). */ + Long.prototype.toNumber = function () { + if (this.unsigned) + return (this.high >>> 0) * TWO_PWR_32_DBL + (this.low >>> 0); + return this.high * TWO_PWR_32_DBL + (this.low >>> 0); + }; + /** Converts the Long to a BigInt (arbitrary precision). */ + Long.prototype.toBigInt = function () { + return BigInt(this.toString()); + }; + /** + * Converts this Long to its byte representation. + * @param le - Whether little or big endian, defaults to big endian + * @returns Byte representation + */ + Long.prototype.toBytes = function (le) { + return le ? this.toBytesLE() : this.toBytesBE(); + }; + /** + * Converts this Long to its little endian byte representation. + * @returns Little endian byte representation + */ + Long.prototype.toBytesLE = function () { + var hi = this.high, lo = this.low; + return [ + lo & 0xff, + (lo >>> 8) & 0xff, + (lo >>> 16) & 0xff, + lo >>> 24, + hi & 0xff, + (hi >>> 8) & 0xff, + (hi >>> 16) & 0xff, + hi >>> 24 + ]; + }; + /** + * Converts this Long to its big endian byte representation. + * @returns Big endian byte representation + */ + Long.prototype.toBytesBE = function () { + var hi = this.high, lo = this.low; + return [ + hi >>> 24, + (hi >>> 16) & 0xff, + (hi >>> 8) & 0xff, + hi & 0xff, + lo >>> 24, + (lo >>> 16) & 0xff, + (lo >>> 8) & 0xff, + lo & 0xff + ]; + }; + /** + * Converts this Long to signed. + */ + Long.prototype.toSigned = function () { + if (!this.unsigned) + return this; + return Long.fromBits(this.low, this.high, false); + }; + /** + * Converts the Long to a string written in the specified radix. + * @param radix - Radix (2-36), defaults to 10 + * @throws RangeError If `radix` is out of range + */ + Long.prototype.toString = function (radix) { + radix = radix || 10; + if (radix < 2 || 36 < radix) + throw RangeError('radix'); + if (this.isZero()) + return '0'; + if (this.isNegative()) { + // Unsigned Longs are never negative + if (this.eq(Long.MIN_VALUE)) { + // We need to change the Long value before it can be negated, so we remove + // the bottom-most digit in this base and then recurse to do the rest. + var radixLong = Long.fromNumber(radix), div = this.div(radixLong), rem1 = div.mul(radixLong).sub(this); + return div.toString(radix) + rem1.toInt().toString(radix); + } + else + return '-' + this.neg().toString(radix); + } + // Do several (6) digits each time through the loop, so as to + // minimize the calls to the very expensive emulated div. + var radixToPower = Long.fromNumber(Math.pow(radix, 6), this.unsigned); + // eslint-disable-next-line @typescript-eslint/no-this-alias + var rem = this; + var result = ''; + // eslint-disable-next-line no-constant-condition + while (true) { + var remDiv = rem.div(radixToPower); + var intval = rem.sub(remDiv.mul(radixToPower)).toInt() >>> 0; + var digits = intval.toString(radix); + rem = remDiv; + if (rem.isZero()) { + return digits + result; + } + else { + while (digits.length < 6) + digits = '0' + digits; + result = '' + digits + result; + } + } + }; + /** Converts this Long to unsigned. */ + Long.prototype.toUnsigned = function () { + if (this.unsigned) + return this; + return Long.fromBits(this.low, this.high, true); + }; + /** Returns the bitwise XOR of this Long and the given one. */ + Long.prototype.xor = function (other) { + if (!Long.isLong(other)) + other = Long.fromValue(other); + return Long.fromBits(this.low ^ other.low, this.high ^ other.high, this.unsigned); + }; + /** This is an alias of {@link Long.isZero} */ + Long.prototype.eqz = function () { + return this.isZero(); + }; + /** This is an alias of {@link Long.lessThanOrEqual} */ + Long.prototype.le = function (other) { + return this.lessThanOrEqual(other); + }; + /* + **************************************************************** + * BSON SPECIFIC ADDITIONS * + **************************************************************** + */ + Long.prototype.toExtendedJSON = function (options) { + if (options && options.relaxed) + return this.toNumber(); + return { $numberLong: this.toString() }; + }; + Long.fromExtendedJSON = function (doc, options) { + var result = Long.fromString(doc.$numberLong); + return options && options.relaxed ? result.toNumber() : result; + }; + /** @internal */ + Long.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () { + return this.inspect(); + }; + Long.prototype.inspect = function () { + return "new Long(\"".concat(this.toString(), "\"").concat(this.unsigned ? ', true' : '', ")"); + }; + Long.TWO_PWR_24 = Long.fromInt(TWO_PWR_24_DBL); + /** Maximum unsigned value. */ + Long.MAX_UNSIGNED_VALUE = Long.fromBits(0xffffffff | 0, 0xffffffff | 0, true); + /** Signed zero */ + Long.ZERO = Long.fromInt(0); + /** Unsigned zero. */ + Long.UZERO = Long.fromInt(0, true); + /** Signed one. */ + Long.ONE = Long.fromInt(1); + /** Unsigned one. */ + Long.UONE = Long.fromInt(1, true); + /** Signed negative one. */ + Long.NEG_ONE = Long.fromInt(-1); + /** Maximum signed value. */ + Long.MAX_VALUE = Long.fromBits(0xffffffff | 0, 0x7fffffff | 0, false); + /** Minimum signed value. */ + Long.MIN_VALUE = Long.fromBits(0, 0x80000000 | 0, false); + return Long; +}()); +Object.defineProperty(Long.prototype, '__isLong__', { value: true }); +Object.defineProperty(Long.prototype, '_bsontype', { value: 'Long' }); + +var PARSE_STRING_REGEXP = /^(\+|-)?(\d+|(\d*\.\d*))?(E|e)?([-+])?(\d+)?$/; +var PARSE_INF_REGEXP = /^(\+|-)?(Infinity|inf)$/i; +var PARSE_NAN_REGEXP = /^(\+|-)?NaN$/i; +var EXPONENT_MAX = 6111; +var EXPONENT_MIN = -6176; +var EXPONENT_BIAS = 6176; +var MAX_DIGITS = 34; +// Nan value bits as 32 bit values (due to lack of longs) +var NAN_BUFFER = [ + 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 +].reverse(); +// Infinity value bits 32 bit values (due to lack of longs) +var INF_NEGATIVE_BUFFER = [ + 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 +].reverse(); +var INF_POSITIVE_BUFFER = [ + 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 +].reverse(); +var EXPONENT_REGEX = /^([-+])?(\d+)?$/; +// Extract least significant 5 bits +var COMBINATION_MASK = 0x1f; +// Extract least significant 14 bits +var EXPONENT_MASK = 0x3fff; +// Value of combination field for Inf +var COMBINATION_INFINITY = 30; +// Value of combination field for NaN +var COMBINATION_NAN = 31; +// Detect if the value is a digit +function isDigit(value) { + return !isNaN(parseInt(value, 10)); +} +// Divide two uint128 values +function divideu128(value) { + var DIVISOR = Long.fromNumber(1000 * 1000 * 1000); + var _rem = Long.fromNumber(0); + if (!value.parts[0] && !value.parts[1] && !value.parts[2] && !value.parts[3]) { + return { quotient: value, rem: _rem }; + } + for (var i = 0; i <= 3; i++) { + // Adjust remainder to match value of next dividend + _rem = _rem.shiftLeft(32); + // Add the divided to _rem + _rem = _rem.add(new Long(value.parts[i], 0)); + value.parts[i] = _rem.div(DIVISOR).low; + _rem = _rem.modulo(DIVISOR); + } + return { quotient: value, rem: _rem }; +} +// Multiply two Long values and return the 128 bit value +function multiply64x2(left, right) { + if (!left && !right) { + return { high: Long.fromNumber(0), low: Long.fromNumber(0) }; + } + var leftHigh = left.shiftRightUnsigned(32); + var leftLow = new Long(left.getLowBits(), 0); + var rightHigh = right.shiftRightUnsigned(32); + var rightLow = new Long(right.getLowBits(), 0); + var productHigh = leftHigh.multiply(rightHigh); + var productMid = leftHigh.multiply(rightLow); + var productMid2 = leftLow.multiply(rightHigh); + var productLow = leftLow.multiply(rightLow); + productHigh = productHigh.add(productMid.shiftRightUnsigned(32)); + productMid = new Long(productMid.getLowBits(), 0) + .add(productMid2) + .add(productLow.shiftRightUnsigned(32)); + productHigh = productHigh.add(productMid.shiftRightUnsigned(32)); + productLow = productMid.shiftLeft(32).add(new Long(productLow.getLowBits(), 0)); + // Return the 128 bit result + return { high: productHigh, low: productLow }; +} +function lessThan(left, right) { + // Make values unsigned + var uhleft = left.high >>> 0; + var uhright = right.high >>> 0; + // Compare high bits first + if (uhleft < uhright) { + return true; + } + else if (uhleft === uhright) { + var ulleft = left.low >>> 0; + var ulright = right.low >>> 0; + if (ulleft < ulright) + return true; + } + return false; +} +function invalidErr(string, message) { + throw new BSONTypeError("\"".concat(string, "\" is not a valid Decimal128 string - ").concat(message)); +} +/** + * A class representation of the BSON Decimal128 type. + * @public + * @category BSONType + */ +var Decimal128 = /** @class */ (function () { + /** + * @param bytes - a buffer containing the raw Decimal128 bytes in little endian order, + * or a string representation as returned by .toString() + */ + function Decimal128(bytes) { + if (!(this instanceof Decimal128)) + return new Decimal128(bytes); + if (typeof bytes === 'string') { + this.bytes = Decimal128.fromString(bytes).bytes; + } + else if (isUint8Array(bytes)) { + if (bytes.byteLength !== 16) { + throw new BSONTypeError('Decimal128 must take a Buffer of 16 bytes'); + } + this.bytes = bytes; + } + else { + throw new BSONTypeError('Decimal128 must take a Buffer or string'); + } + } + /** + * Create a Decimal128 instance from a string representation + * + * @param representation - a numeric string representation. + */ + Decimal128.fromString = function (representation) { + // Parse state tracking + var isNegative = false; + var sawRadix = false; + var foundNonZero = false; + // Total number of significant digits (no leading or trailing zero) + var significantDigits = 0; + // Total number of significand digits read + var nDigitsRead = 0; + // Total number of digits (no leading zeros) + var nDigits = 0; + // The number of the digits after radix + var radixPosition = 0; + // The index of the first non-zero in *str* + var firstNonZero = 0; + // Digits Array + var digits = [0]; + // The number of digits in digits + var nDigitsStored = 0; + // Insertion pointer for digits + var digitsInsert = 0; + // The index of the first non-zero digit + var firstDigit = 0; + // The index of the last digit + var lastDigit = 0; + // Exponent + var exponent = 0; + // loop index over array + var i = 0; + // The high 17 digits of the significand + var significandHigh = new Long(0, 0); + // The low 17 digits of the significand + var significandLow = new Long(0, 0); + // The biased exponent + var biasedExponent = 0; + // Read index + var index = 0; + // Naively prevent against REDOS attacks. + // TODO: implementing a custom parsing for this, or refactoring the regex would yield + // further gains. + if (representation.length >= 7000) { + throw new BSONTypeError('' + representation + ' not a valid Decimal128 string'); + } + // Results + var stringMatch = representation.match(PARSE_STRING_REGEXP); + var infMatch = representation.match(PARSE_INF_REGEXP); + var nanMatch = representation.match(PARSE_NAN_REGEXP); + // Validate the string + if ((!stringMatch && !infMatch && !nanMatch) || representation.length === 0) { + throw new BSONTypeError('' + representation + ' not a valid Decimal128 string'); + } + if (stringMatch) { + // full_match = stringMatch[0] + // sign = stringMatch[1] + var unsignedNumber = stringMatch[2]; + // stringMatch[3] is undefined if a whole number (ex "1", 12") + // but defined if a number w/ decimal in it (ex "1.0, 12.2") + var e = stringMatch[4]; + var expSign = stringMatch[5]; + var expNumber = stringMatch[6]; + // they provided e, but didn't give an exponent number. for ex "1e" + if (e && expNumber === undefined) + invalidErr(representation, 'missing exponent power'); + // they provided e, but didn't give a number before it. for ex "e1" + if (e && unsignedNumber === undefined) + invalidErr(representation, 'missing exponent base'); + if (e === undefined && (expSign || expNumber)) { + invalidErr(representation, 'missing e before exponent'); + } + } + // Get the negative or positive sign + if (representation[index] === '+' || representation[index] === '-') { + isNegative = representation[index++] === '-'; + } + // Check if user passed Infinity or NaN + if (!isDigit(representation[index]) && representation[index] !== '.') { + if (representation[index] === 'i' || representation[index] === 'I') { + return new Decimal128(Buffer.from(isNegative ? INF_NEGATIVE_BUFFER : INF_POSITIVE_BUFFER)); + } + else if (representation[index] === 'N') { + return new Decimal128(Buffer.from(NAN_BUFFER)); + } + } + // Read all the digits + while (isDigit(representation[index]) || representation[index] === '.') { + if (representation[index] === '.') { + if (sawRadix) + invalidErr(representation, 'contains multiple periods'); + sawRadix = true; + index = index + 1; + continue; + } + if (nDigitsStored < 34) { + if (representation[index] !== '0' || foundNonZero) { + if (!foundNonZero) { + firstNonZero = nDigitsRead; + } + foundNonZero = true; + // Only store 34 digits + digits[digitsInsert++] = parseInt(representation[index], 10); + nDigitsStored = nDigitsStored + 1; + } + } + if (foundNonZero) + nDigits = nDigits + 1; + if (sawRadix) + radixPosition = radixPosition + 1; + nDigitsRead = nDigitsRead + 1; + index = index + 1; + } + if (sawRadix && !nDigitsRead) + throw new BSONTypeError('' + representation + ' not a valid Decimal128 string'); + // Read exponent if exists + if (representation[index] === 'e' || representation[index] === 'E') { + // Read exponent digits + var match = representation.substr(++index).match(EXPONENT_REGEX); + // No digits read + if (!match || !match[2]) + return new Decimal128(Buffer.from(NAN_BUFFER)); + // Get exponent + exponent = parseInt(match[0], 10); + // Adjust the index + index = index + match[0].length; + } + // Return not a number + if (representation[index]) + return new Decimal128(Buffer.from(NAN_BUFFER)); + // Done reading input + // Find first non-zero digit in digits + firstDigit = 0; + if (!nDigitsStored) { + firstDigit = 0; + lastDigit = 0; + digits[0] = 0; + nDigits = 1; + nDigitsStored = 1; + significantDigits = 0; + } + else { + lastDigit = nDigitsStored - 1; + significantDigits = nDigits; + if (significantDigits !== 1) { + while (digits[firstNonZero + significantDigits - 1] === 0) { + significantDigits = significantDigits - 1; + } + } + } + // Normalization of exponent + // Correct exponent based on radix position, and shift significand as needed + // to represent user input + // Overflow prevention + if (exponent <= radixPosition && radixPosition - exponent > 1 << 14) { + exponent = EXPONENT_MIN; + } + else { + exponent = exponent - radixPosition; + } + // Attempt to normalize the exponent + while (exponent > EXPONENT_MAX) { + // Shift exponent to significand and decrease + lastDigit = lastDigit + 1; + if (lastDigit - firstDigit > MAX_DIGITS) { + // Check if we have a zero then just hard clamp, otherwise fail + var digitsString = digits.join(''); + if (digitsString.match(/^0+$/)) { + exponent = EXPONENT_MAX; + break; + } + invalidErr(representation, 'overflow'); + } + exponent = exponent - 1; + } + while (exponent < EXPONENT_MIN || nDigitsStored < nDigits) { + // Shift last digit. can only do this if < significant digits than # stored. + if (lastDigit === 0 && significantDigits < nDigitsStored) { + exponent = EXPONENT_MIN; + significantDigits = 0; + break; + } + if (nDigitsStored < nDigits) { + // adjust to match digits not stored + nDigits = nDigits - 1; + } + else { + // adjust to round + lastDigit = lastDigit - 1; + } + if (exponent < EXPONENT_MAX) { + exponent = exponent + 1; + } + else { + // Check if we have a zero then just hard clamp, otherwise fail + var digitsString = digits.join(''); + if (digitsString.match(/^0+$/)) { + exponent = EXPONENT_MAX; + break; + } + invalidErr(representation, 'overflow'); + } + } + // Round + // We've normalized the exponent, but might still need to round. + if (lastDigit - firstDigit + 1 < significantDigits) { + var endOfString = nDigitsRead; + // If we have seen a radix point, 'string' is 1 longer than we have + // documented with ndigits_read, so inc the position of the first nonzero + // digit and the position that digits are read to. + if (sawRadix) { + firstNonZero = firstNonZero + 1; + endOfString = endOfString + 1; + } + // if negative, we need to increment again to account for - sign at start. + if (isNegative) { + firstNonZero = firstNonZero + 1; + endOfString = endOfString + 1; + } + var roundDigit = parseInt(representation[firstNonZero + lastDigit + 1], 10); + var roundBit = 0; + if (roundDigit >= 5) { + roundBit = 1; + if (roundDigit === 5) { + roundBit = digits[lastDigit] % 2 === 1 ? 1 : 0; + for (i = firstNonZero + lastDigit + 2; i < endOfString; i++) { + if (parseInt(representation[i], 10)) { + roundBit = 1; + break; + } + } + } + } + if (roundBit) { + var dIdx = lastDigit; + for (; dIdx >= 0; dIdx--) { + if (++digits[dIdx] > 9) { + digits[dIdx] = 0; + // overflowed most significant digit + if (dIdx === 0) { + if (exponent < EXPONENT_MAX) { + exponent = exponent + 1; + digits[dIdx] = 1; + } + else { + return new Decimal128(Buffer.from(isNegative ? INF_NEGATIVE_BUFFER : INF_POSITIVE_BUFFER)); + } + } + } + } + } + } + // Encode significand + // The high 17 digits of the significand + significandHigh = Long.fromNumber(0); + // The low 17 digits of the significand + significandLow = Long.fromNumber(0); + // read a zero + if (significantDigits === 0) { + significandHigh = Long.fromNumber(0); + significandLow = Long.fromNumber(0); + } + else if (lastDigit - firstDigit < 17) { + var dIdx = firstDigit; + significandLow = Long.fromNumber(digits[dIdx++]); + significandHigh = new Long(0, 0); + for (; dIdx <= lastDigit; dIdx++) { + significandLow = significandLow.multiply(Long.fromNumber(10)); + significandLow = significandLow.add(Long.fromNumber(digits[dIdx])); + } + } + else { + var dIdx = firstDigit; + significandHigh = Long.fromNumber(digits[dIdx++]); + for (; dIdx <= lastDigit - 17; dIdx++) { + significandHigh = significandHigh.multiply(Long.fromNumber(10)); + significandHigh = significandHigh.add(Long.fromNumber(digits[dIdx])); + } + significandLow = Long.fromNumber(digits[dIdx++]); + for (; dIdx <= lastDigit; dIdx++) { + significandLow = significandLow.multiply(Long.fromNumber(10)); + significandLow = significandLow.add(Long.fromNumber(digits[dIdx])); + } + } + var significand = multiply64x2(significandHigh, Long.fromString('100000000000000000')); + significand.low = significand.low.add(significandLow); + if (lessThan(significand.low, significandLow)) { + significand.high = significand.high.add(Long.fromNumber(1)); + } + // Biased exponent + biasedExponent = exponent + EXPONENT_BIAS; + var dec = { low: Long.fromNumber(0), high: Long.fromNumber(0) }; + // Encode combination, exponent, and significand. + if (significand.high.shiftRightUnsigned(49).and(Long.fromNumber(1)).equals(Long.fromNumber(1))) { + // Encode '11' into bits 1 to 3 + dec.high = dec.high.or(Long.fromNumber(0x3).shiftLeft(61)); + dec.high = dec.high.or(Long.fromNumber(biasedExponent).and(Long.fromNumber(0x3fff).shiftLeft(47))); + dec.high = dec.high.or(significand.high.and(Long.fromNumber(0x7fffffffffff))); + } + else { + dec.high = dec.high.or(Long.fromNumber(biasedExponent & 0x3fff).shiftLeft(49)); + dec.high = dec.high.or(significand.high.and(Long.fromNumber(0x1ffffffffffff))); + } + dec.low = significand.low; + // Encode sign + if (isNegative) { + dec.high = dec.high.or(Long.fromString('9223372036854775808')); + } + // Encode into a buffer + var buffer = Buffer.alloc(16); + index = 0; + // Encode the low 64 bits of the decimal + // Encode low bits + buffer[index++] = dec.low.low & 0xff; + buffer[index++] = (dec.low.low >> 8) & 0xff; + buffer[index++] = (dec.low.low >> 16) & 0xff; + buffer[index++] = (dec.low.low >> 24) & 0xff; + // Encode high bits + buffer[index++] = dec.low.high & 0xff; + buffer[index++] = (dec.low.high >> 8) & 0xff; + buffer[index++] = (dec.low.high >> 16) & 0xff; + buffer[index++] = (dec.low.high >> 24) & 0xff; + // Encode the high 64 bits of the decimal + // Encode low bits + buffer[index++] = dec.high.low & 0xff; + buffer[index++] = (dec.high.low >> 8) & 0xff; + buffer[index++] = (dec.high.low >> 16) & 0xff; + buffer[index++] = (dec.high.low >> 24) & 0xff; + // Encode high bits + buffer[index++] = dec.high.high & 0xff; + buffer[index++] = (dec.high.high >> 8) & 0xff; + buffer[index++] = (dec.high.high >> 16) & 0xff; + buffer[index++] = (dec.high.high >> 24) & 0xff; + // Return the new Decimal128 + return new Decimal128(buffer); + }; + /** Create a string representation of the raw Decimal128 value */ + Decimal128.prototype.toString = function () { + // Note: bits in this routine are referred to starting at 0, + // from the sign bit, towards the coefficient. + // decoded biased exponent (14 bits) + var biased_exponent; + // the number of significand digits + var significand_digits = 0; + // the base-10 digits in the significand + var significand = new Array(36); + for (var i = 0; i < significand.length; i++) + significand[i] = 0; + // read pointer into significand + var index = 0; + // true if the number is zero + var is_zero = false; + // the most significant significand bits (50-46) + var significand_msb; + // temporary storage for significand decoding + var significand128 = { parts: [0, 0, 0, 0] }; + // indexing variables + var j, k; + // Output string + var string = []; + // Unpack index + index = 0; + // Buffer reference + var buffer = this.bytes; + // Unpack the low 64bits into a long + // bits 96 - 127 + var low = buffer[index++] | (buffer[index++] << 8) | (buffer[index++] << 16) | (buffer[index++] << 24); + // bits 64 - 95 + var midl = buffer[index++] | (buffer[index++] << 8) | (buffer[index++] << 16) | (buffer[index++] << 24); + // Unpack the high 64bits into a long + // bits 32 - 63 + var midh = buffer[index++] | (buffer[index++] << 8) | (buffer[index++] << 16) | (buffer[index++] << 24); + // bits 0 - 31 + var high = buffer[index++] | (buffer[index++] << 8) | (buffer[index++] << 16) | (buffer[index++] << 24); + // Unpack index + index = 0; + // Create the state of the decimal + var dec = { + low: new Long(low, midl), + high: new Long(midh, high) + }; + if (dec.high.lessThan(Long.ZERO)) { + string.push('-'); + } + // Decode combination field and exponent + // bits 1 - 5 + var combination = (high >> 26) & COMBINATION_MASK; + if (combination >> 3 === 3) { + // Check for 'special' values + if (combination === COMBINATION_INFINITY) { + return string.join('') + 'Infinity'; + } + else if (combination === COMBINATION_NAN) { + return 'NaN'; + } + else { + biased_exponent = (high >> 15) & EXPONENT_MASK; + significand_msb = 0x08 + ((high >> 14) & 0x01); + } + } + else { + significand_msb = (high >> 14) & 0x07; + biased_exponent = (high >> 17) & EXPONENT_MASK; + } + // unbiased exponent + var exponent = biased_exponent - EXPONENT_BIAS; + // Create string of significand digits + // Convert the 114-bit binary number represented by + // (significand_high, significand_low) to at most 34 decimal + // digits through modulo and division. + significand128.parts[0] = (high & 0x3fff) + ((significand_msb & 0xf) << 14); + significand128.parts[1] = midh; + significand128.parts[2] = midl; + significand128.parts[3] = low; + if (significand128.parts[0] === 0 && + significand128.parts[1] === 0 && + significand128.parts[2] === 0 && + significand128.parts[3] === 0) { + is_zero = true; + } + else { + for (k = 3; k >= 0; k--) { + var least_digits = 0; + // Perform the divide + var result = divideu128(significand128); + significand128 = result.quotient; + least_digits = result.rem.low; + // We now have the 9 least significant digits (in base 2). + // Convert and output to string. + if (!least_digits) + continue; + for (j = 8; j >= 0; j--) { + // significand[k * 9 + j] = Math.round(least_digits % 10); + significand[k * 9 + j] = least_digits % 10; + // least_digits = Math.round(least_digits / 10); + least_digits = Math.floor(least_digits / 10); + } + } + } + // Output format options: + // Scientific - [-]d.dddE(+/-)dd or [-]dE(+/-)dd + // Regular - ddd.ddd + if (is_zero) { + significand_digits = 1; + significand[index] = 0; + } + else { + significand_digits = 36; + while (!significand[index]) { + significand_digits = significand_digits - 1; + index = index + 1; + } + } + // the exponent if scientific notation is used + var scientific_exponent = significand_digits - 1 + exponent; + // The scientific exponent checks are dictated by the string conversion + // specification and are somewhat arbitrary cutoffs. + // + // We must check exponent > 0, because if this is the case, the number + // has trailing zeros. However, we *cannot* output these trailing zeros, + // because doing so would change the precision of the value, and would + // change stored data if the string converted number is round tripped. + if (scientific_exponent >= 34 || scientific_exponent <= -7 || exponent > 0) { + // Scientific format + // if there are too many significant digits, we should just be treating numbers + // as + or - 0 and using the non-scientific exponent (this is for the "invalid + // representation should be treated as 0/-0" spec cases in decimal128-1.json) + if (significand_digits > 34) { + string.push("".concat(0)); + if (exponent > 0) + string.push("E+".concat(exponent)); + else if (exponent < 0) + string.push("E".concat(exponent)); + return string.join(''); + } + string.push("".concat(significand[index++])); + significand_digits = significand_digits - 1; + if (significand_digits) { + string.push('.'); + } + for (var i = 0; i < significand_digits; i++) { + string.push("".concat(significand[index++])); + } + // Exponent + string.push('E'); + if (scientific_exponent > 0) { + string.push("+".concat(scientific_exponent)); + } + else { + string.push("".concat(scientific_exponent)); + } + } + else { + // Regular format with no decimal place + if (exponent >= 0) { + for (var i = 0; i < significand_digits; i++) { + string.push("".concat(significand[index++])); + } + } + else { + var radix_position = significand_digits + exponent; + // non-zero digits before radix + if (radix_position > 0) { + for (var i = 0; i < radix_position; i++) { + string.push("".concat(significand[index++])); + } + } + else { + string.push('0'); + } + string.push('.'); + // add leading zeros after radix + while (radix_position++ < 0) { + string.push('0'); + } + for (var i = 0; i < significand_digits - Math.max(radix_position - 1, 0); i++) { + string.push("".concat(significand[index++])); + } + } + } + return string.join(''); + }; + Decimal128.prototype.toJSON = function () { + return { $numberDecimal: this.toString() }; + }; + /** @internal */ + Decimal128.prototype.toExtendedJSON = function () { + return { $numberDecimal: this.toString() }; + }; + /** @internal */ + Decimal128.fromExtendedJSON = function (doc) { + return Decimal128.fromString(doc.$numberDecimal); + }; + /** @internal */ + Decimal128.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () { + return this.inspect(); + }; + Decimal128.prototype.inspect = function () { + return "new Decimal128(\"".concat(this.toString(), "\")"); + }; + return Decimal128; +}()); +Object.defineProperty(Decimal128.prototype, '_bsontype', { value: 'Decimal128' }); + +/** + * A class representation of the BSON Double type. + * @public + * @category BSONType + */ +var Double = /** @class */ (function () { + /** + * Create a Double type + * + * @param value - the number we want to represent as a double. + */ + function Double(value) { + if (!(this instanceof Double)) + return new Double(value); + if (value instanceof Number) { + value = value.valueOf(); + } + this.value = +value; + } + /** + * Access the number value. + * + * @returns returns the wrapped double number. + */ + Double.prototype.valueOf = function () { + return this.value; + }; + Double.prototype.toJSON = function () { + return this.value; + }; + Double.prototype.toString = function (radix) { + return this.value.toString(radix); + }; + /** @internal */ + Double.prototype.toExtendedJSON = function (options) { + if (options && (options.legacy || (options.relaxed && isFinite(this.value)))) { + return this.value; + } + // NOTE: JavaScript has +0 and -0, apparently to model limit calculations. If a user + // explicitly provided `-0` then we need to ensure the sign makes it into the output + if (Object.is(Math.sign(this.value), -0)) { + return { $numberDouble: "-".concat(this.value.toFixed(1)) }; + } + var $numberDouble; + if (Number.isInteger(this.value)) { + $numberDouble = this.value.toFixed(1); + if ($numberDouble.length >= 13) { + $numberDouble = this.value.toExponential(13).toUpperCase(); + } + } + else { + $numberDouble = this.value.toString(); + } + return { $numberDouble: $numberDouble }; + }; + /** @internal */ + Double.fromExtendedJSON = function (doc, options) { + var doubleValue = parseFloat(doc.$numberDouble); + return options && options.relaxed ? doubleValue : new Double(doubleValue); + }; + /** @internal */ + Double.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () { + return this.inspect(); + }; + Double.prototype.inspect = function () { + var eJSON = this.toExtendedJSON(); + return "new Double(".concat(eJSON.$numberDouble, ")"); + }; + return Double; +}()); +Object.defineProperty(Double.prototype, '_bsontype', { value: 'Double' }); + +/** + * A class representation of a BSON Int32 type. + * @public + * @category BSONType + */ +var Int32 = /** @class */ (function () { + /** + * Create an Int32 type + * + * @param value - the number we want to represent as an int32. + */ + function Int32(value) { + if (!(this instanceof Int32)) + return new Int32(value); + if (value instanceof Number) { + value = value.valueOf(); + } + this.value = +value | 0; + } + /** + * Access the number value. + * + * @returns returns the wrapped int32 number. + */ + Int32.prototype.valueOf = function () { + return this.value; + }; + Int32.prototype.toString = function (radix) { + return this.value.toString(radix); + }; + Int32.prototype.toJSON = function () { + return this.value; + }; + /** @internal */ + Int32.prototype.toExtendedJSON = function (options) { + if (options && (options.relaxed || options.legacy)) + return this.value; + return { $numberInt: this.value.toString() }; + }; + /** @internal */ + Int32.fromExtendedJSON = function (doc, options) { + return options && options.relaxed ? parseInt(doc.$numberInt, 10) : new Int32(doc.$numberInt); + }; + /** @internal */ + Int32.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () { + return this.inspect(); + }; + Int32.prototype.inspect = function () { + return "new Int32(".concat(this.valueOf(), ")"); + }; + return Int32; +}()); +Object.defineProperty(Int32.prototype, '_bsontype', { value: 'Int32' }); + +/** + * A class representation of the BSON MaxKey type. + * @public + * @category BSONType + */ +var MaxKey = /** @class */ (function () { + function MaxKey() { + if (!(this instanceof MaxKey)) + return new MaxKey(); + } + /** @internal */ + MaxKey.prototype.toExtendedJSON = function () { + return { $maxKey: 1 }; + }; + /** @internal */ + MaxKey.fromExtendedJSON = function () { + return new MaxKey(); + }; + /** @internal */ + MaxKey.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () { + return this.inspect(); + }; + MaxKey.prototype.inspect = function () { + return 'new MaxKey()'; + }; + return MaxKey; +}()); +Object.defineProperty(MaxKey.prototype, '_bsontype', { value: 'MaxKey' }); + +/** + * A class representation of the BSON MinKey type. + * @public + * @category BSONType + */ +var MinKey = /** @class */ (function () { + function MinKey() { + if (!(this instanceof MinKey)) + return new MinKey(); + } + /** @internal */ + MinKey.prototype.toExtendedJSON = function () { + return { $minKey: 1 }; + }; + /** @internal */ + MinKey.fromExtendedJSON = function () { + return new MinKey(); + }; + /** @internal */ + MinKey.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () { + return this.inspect(); + }; + MinKey.prototype.inspect = function () { + return 'new MinKey()'; + }; + return MinKey; +}()); +Object.defineProperty(MinKey.prototype, '_bsontype', { value: 'MinKey' }); + +// Regular expression that checks for hex value +var checkForHexRegExp = new RegExp('^[0-9a-fA-F]{24}$'); +// Unique sequence for the current process (initialized on first use) +var PROCESS_UNIQUE = null; +var kId = Symbol('id'); +/** + * A class representation of the BSON ObjectId type. + * @public + * @category BSONType + */ +var ObjectId = /** @class */ (function () { + /** + * Create an ObjectId type + * + * @param inputId - Can be a 24 character hex string, 12 byte binary Buffer, or a number. + */ + function ObjectId(inputId) { + if (!(this instanceof ObjectId)) + return new ObjectId(inputId); + // workingId is set based on type of input and whether valid id exists for the input + var workingId; + if (typeof inputId === 'object' && inputId && 'id' in inputId) { + if (typeof inputId.id !== 'string' && !ArrayBuffer.isView(inputId.id)) { + throw new BSONTypeError('Argument passed in must have an id that is of type string or Buffer'); + } + if ('toHexString' in inputId && typeof inputId.toHexString === 'function') { + workingId = Buffer.from(inputId.toHexString(), 'hex'); + } + else { + workingId = inputId.id; + } + } + else { + workingId = inputId; + } + // the following cases use workingId to construct an ObjectId + if (workingId == null || typeof workingId === 'number') { + // The most common use case (blank id, new objectId instance) + // Generate a new id + this[kId] = ObjectId.generate(typeof workingId === 'number' ? workingId : undefined); + } + else if (ArrayBuffer.isView(workingId) && workingId.byteLength === 12) { + // If intstanceof matches we can escape calling ensure buffer in Node.js environments + this[kId] = workingId instanceof Buffer ? workingId : ensureBuffer(workingId); + } + else if (typeof workingId === 'string') { + if (workingId.length === 12) { + var bytes = Buffer.from(workingId); + if (bytes.byteLength === 12) { + this[kId] = bytes; + } + else { + throw new BSONTypeError('Argument passed in must be a string of 12 bytes'); + } + } + else if (workingId.length === 24 && checkForHexRegExp.test(workingId)) { + this[kId] = Buffer.from(workingId, 'hex'); + } + else { + throw new BSONTypeError('Argument passed in must be a string of 12 bytes or a string of 24 hex characters or an integer'); + } + } + else { + throw new BSONTypeError('Argument passed in does not match the accepted types'); + } + // If we are caching the hex string + if (ObjectId.cacheHexString) { + this.__id = this.id.toString('hex'); + } + } + Object.defineProperty(ObjectId.prototype, "id", { + /** + * The ObjectId bytes + * @readonly + */ + get: function () { + return this[kId]; + }, + set: function (value) { + this[kId] = value; + if (ObjectId.cacheHexString) { + this.__id = value.toString('hex'); + } + }, + enumerable: false, + configurable: true + }); + Object.defineProperty(ObjectId.prototype, "generationTime", { + /** + * The generation time of this ObjectId instance + * @deprecated Please use getTimestamp / createFromTime which returns an int32 epoch + */ + get: function () { + return this.id.readInt32BE(0); + }, + set: function (value) { + // Encode time into first 4 bytes + this.id.writeUInt32BE(value, 0); + }, + enumerable: false, + configurable: true + }); + /** Returns the ObjectId id as a 24 character hex string representation */ + ObjectId.prototype.toHexString = function () { + if (ObjectId.cacheHexString && this.__id) { + return this.__id; + } + var hexString = this.id.toString('hex'); + if (ObjectId.cacheHexString && !this.__id) { + this.__id = hexString; + } + return hexString; + }; + /** + * Update the ObjectId index + * @privateRemarks + * Used in generating new ObjectId's on the driver + * @internal + */ + ObjectId.getInc = function () { + return (ObjectId.index = (ObjectId.index + 1) % 0xffffff); + }; + /** + * Generate a 12 byte id buffer used in ObjectId's + * + * @param time - pass in a second based timestamp. + */ + ObjectId.generate = function (time) { + if ('number' !== typeof time) { + time = Math.floor(Date.now() / 1000); + } + var inc = ObjectId.getInc(); + var buffer = Buffer.alloc(12); + // 4-byte timestamp + buffer.writeUInt32BE(time, 0); + // set PROCESS_UNIQUE if yet not initialized + if (PROCESS_UNIQUE === null) { + PROCESS_UNIQUE = randomBytes(5); + } + // 5-byte process unique + buffer[4] = PROCESS_UNIQUE[0]; + buffer[5] = PROCESS_UNIQUE[1]; + buffer[6] = PROCESS_UNIQUE[2]; + buffer[7] = PROCESS_UNIQUE[3]; + buffer[8] = PROCESS_UNIQUE[4]; + // 3-byte counter + buffer[11] = inc & 0xff; + buffer[10] = (inc >> 8) & 0xff; + buffer[9] = (inc >> 16) & 0xff; + return buffer; + }; + /** + * Converts the id into a 24 character hex string for printing + * + * @param format - The Buffer toString format parameter. + */ + ObjectId.prototype.toString = function (format) { + // Is the id a buffer then use the buffer toString method to return the format + if (format) + return this.id.toString(format); + return this.toHexString(); + }; + /** Converts to its JSON the 24 character hex string representation. */ + ObjectId.prototype.toJSON = function () { + return this.toHexString(); + }; + /** + * Compares the equality of this ObjectId with `otherID`. + * + * @param otherId - ObjectId instance to compare against. + */ + ObjectId.prototype.equals = function (otherId) { + if (otherId === undefined || otherId === null) { + return false; + } + if (otherId instanceof ObjectId) { + return this[kId][11] === otherId[kId][11] && this[kId].equals(otherId[kId]); + } + if (typeof otherId === 'string' && + ObjectId.isValid(otherId) && + otherId.length === 12 && + isUint8Array(this.id)) { + return otherId === Buffer.prototype.toString.call(this.id, 'latin1'); + } + if (typeof otherId === 'string' && ObjectId.isValid(otherId) && otherId.length === 24) { + return otherId.toLowerCase() === this.toHexString(); + } + if (typeof otherId === 'string' && ObjectId.isValid(otherId) && otherId.length === 12) { + return Buffer.from(otherId).equals(this.id); + } + if (typeof otherId === 'object' && + 'toHexString' in otherId && + typeof otherId.toHexString === 'function') { + var otherIdString = otherId.toHexString(); + var thisIdString = this.toHexString().toLowerCase(); + return typeof otherIdString === 'string' && otherIdString.toLowerCase() === thisIdString; + } + return false; + }; + /** Returns the generation date (accurate up to the second) that this ID was generated. */ + ObjectId.prototype.getTimestamp = function () { + var timestamp = new Date(); + var time = this.id.readUInt32BE(0); + timestamp.setTime(Math.floor(time) * 1000); + return timestamp; + }; + /** @internal */ + ObjectId.createPk = function () { + return new ObjectId(); + }; + /** + * Creates an ObjectId from a second based number, with the rest of the ObjectId zeroed out. Used for comparisons or sorting the ObjectId. + * + * @param time - an integer number representing a number of seconds. + */ + ObjectId.createFromTime = function (time) { + var buffer = Buffer.from([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]); + // Encode time into first 4 bytes + buffer.writeUInt32BE(time, 0); + // Return the new objectId + return new ObjectId(buffer); + }; + /** + * Creates an ObjectId from a hex string representation of an ObjectId. + * + * @param hexString - create a ObjectId from a passed in 24 character hexstring. + */ + ObjectId.createFromHexString = function (hexString) { + // Throw an error if it's not a valid setup + if (typeof hexString === 'undefined' || (hexString != null && hexString.length !== 24)) { + throw new BSONTypeError('Argument passed in must be a single String of 12 bytes or a string of 24 hex characters'); + } + return new ObjectId(Buffer.from(hexString, 'hex')); + }; + /** + * Checks if a value is a valid bson ObjectId + * + * @param id - ObjectId instance to validate. + */ + ObjectId.isValid = function (id) { + if (id == null) + return false; + try { + new ObjectId(id); + return true; + } + catch (_a) { + return false; + } + }; + /** @internal */ + ObjectId.prototype.toExtendedJSON = function () { + if (this.toHexString) + return { $oid: this.toHexString() }; + return { $oid: this.toString('hex') }; + }; + /** @internal */ + ObjectId.fromExtendedJSON = function (doc) { + return new ObjectId(doc.$oid); + }; + /** + * Converts to a string representation of this Id. + * + * @returns return the 24 character hex string representation. + * @internal + */ + ObjectId.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () { + return this.inspect(); + }; + ObjectId.prototype.inspect = function () { + return "new ObjectId(\"".concat(this.toHexString(), "\")"); + }; + /** @internal */ + ObjectId.index = Math.floor(Math.random() * 0xffffff); + return ObjectId; +}()); +// Deprecated methods +Object.defineProperty(ObjectId.prototype, 'generate', { + value: deprecate(function (time) { return ObjectId.generate(time); }, 'Please use the static `ObjectId.generate(time)` instead') +}); +Object.defineProperty(ObjectId.prototype, 'getInc', { + value: deprecate(function () { return ObjectId.getInc(); }, 'Please use the static `ObjectId.getInc()` instead') +}); +Object.defineProperty(ObjectId.prototype, 'get_inc', { + value: deprecate(function () { return ObjectId.getInc(); }, 'Please use the static `ObjectId.getInc()` instead') +}); +Object.defineProperty(ObjectId, 'get_inc', { + value: deprecate(function () { return ObjectId.getInc(); }, 'Please use the static `ObjectId.getInc()` instead') +}); +Object.defineProperty(ObjectId.prototype, '_bsontype', { value: 'ObjectID' }); + +function alphabetize(str) { + return str.split('').sort().join(''); +} +/** + * A class representation of the BSON RegExp type. + * @public + * @category BSONType + */ +var BSONRegExp = /** @class */ (function () { + /** + * @param pattern - The regular expression pattern to match + * @param options - The regular expression options + */ + function BSONRegExp(pattern, options) { + if (!(this instanceof BSONRegExp)) + return new BSONRegExp(pattern, options); + this.pattern = pattern; + this.options = alphabetize(options !== null && options !== void 0 ? options : ''); + if (this.pattern.indexOf('\x00') !== -1) { + throw new BSONError("BSON Regex patterns cannot contain null bytes, found: ".concat(JSON.stringify(this.pattern))); + } + if (this.options.indexOf('\x00') !== -1) { + throw new BSONError("BSON Regex options cannot contain null bytes, found: ".concat(JSON.stringify(this.options))); + } + // Validate options + for (var i = 0; i < this.options.length; i++) { + if (!(this.options[i] === 'i' || + this.options[i] === 'm' || + this.options[i] === 'x' || + this.options[i] === 'l' || + this.options[i] === 's' || + this.options[i] === 'u')) { + throw new BSONError("The regular expression option [".concat(this.options[i], "] is not supported")); + } + } + } + BSONRegExp.parseOptions = function (options) { + return options ? options.split('').sort().join('') : ''; + }; + /** @internal */ + BSONRegExp.prototype.toExtendedJSON = function (options) { + options = options || {}; + if (options.legacy) { + return { $regex: this.pattern, $options: this.options }; + } + return { $regularExpression: { pattern: this.pattern, options: this.options } }; + }; + /** @internal */ + BSONRegExp.fromExtendedJSON = function (doc) { + if ('$regex' in doc) { + if (typeof doc.$regex !== 'string') { + // This is for $regex query operators that have extended json values. + if (doc.$regex._bsontype === 'BSONRegExp') { + return doc; + } + } + else { + return new BSONRegExp(doc.$regex, BSONRegExp.parseOptions(doc.$options)); + } + } + if ('$regularExpression' in doc) { + return new BSONRegExp(doc.$regularExpression.pattern, BSONRegExp.parseOptions(doc.$regularExpression.options)); + } + throw new BSONTypeError("Unexpected BSONRegExp EJSON object form: ".concat(JSON.stringify(doc))); + }; + return BSONRegExp; +}()); +Object.defineProperty(BSONRegExp.prototype, '_bsontype', { value: 'BSONRegExp' }); + +/** + * A class representation of the BSON Symbol type. + * @public + * @category BSONType + */ +var BSONSymbol = /** @class */ (function () { + /** + * @param value - the string representing the symbol. + */ + function BSONSymbol(value) { + if (!(this instanceof BSONSymbol)) + return new BSONSymbol(value); + this.value = value; + } + /** Access the wrapped string value. */ + BSONSymbol.prototype.valueOf = function () { + return this.value; + }; + BSONSymbol.prototype.toString = function () { + return this.value; + }; + /** @internal */ + BSONSymbol.prototype.inspect = function () { + return "new BSONSymbol(\"".concat(this.value, "\")"); + }; + BSONSymbol.prototype.toJSON = function () { + return this.value; + }; + /** @internal */ + BSONSymbol.prototype.toExtendedJSON = function () { + return { $symbol: this.value }; + }; + /** @internal */ + BSONSymbol.fromExtendedJSON = function (doc) { + return new BSONSymbol(doc.$symbol); + }; + /** @internal */ + BSONSymbol.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () { + return this.inspect(); + }; + return BSONSymbol; +}()); +Object.defineProperty(BSONSymbol.prototype, '_bsontype', { value: 'Symbol' }); + +/** @public */ +var LongWithoutOverridesClass = Long; +/** + * @public + * @category BSONType + * */ +var Timestamp = /** @class */ (function (_super) { + __extends(Timestamp, _super); + function Timestamp(low, high) { + var _this = this; + // eslint-disable-next-line @typescript-eslint/ban-ts-comment + // @ts-expect-error + if (!(_this instanceof Timestamp)) + return new Timestamp(low, high); + if (Long.isLong(low)) { + _this = _super.call(this, low.low, low.high, true) || this; + } + else if (isObjectLike(low) && typeof low.t !== 'undefined' && typeof low.i !== 'undefined') { + _this = _super.call(this, low.i, low.t, true) || this; + } + else { + _this = _super.call(this, low, high, true) || this; + } + Object.defineProperty(_this, '_bsontype', { + value: 'Timestamp', + writable: false, + configurable: false, + enumerable: false + }); + return _this; + } + Timestamp.prototype.toJSON = function () { + return { + $timestamp: this.toString() + }; + }; + /** Returns a Timestamp represented by the given (32-bit) integer value. */ + Timestamp.fromInt = function (value) { + return new Timestamp(Long.fromInt(value, true)); + }; + /** Returns a Timestamp representing the given number value, provided that it is a finite number. Otherwise, zero is returned. */ + Timestamp.fromNumber = function (value) { + return new Timestamp(Long.fromNumber(value, true)); + }; + /** + * Returns a Timestamp for the given high and low bits. Each is assumed to use 32 bits. + * + * @param lowBits - the low 32-bits. + * @param highBits - the high 32-bits. + */ + Timestamp.fromBits = function (lowBits, highBits) { + return new Timestamp(lowBits, highBits); + }; + /** + * Returns a Timestamp from the given string, optionally using the given radix. + * + * @param str - the textual representation of the Timestamp. + * @param optRadix - the radix in which the text is written. + */ + Timestamp.fromString = function (str, optRadix) { + return new Timestamp(Long.fromString(str, true, optRadix)); + }; + /** @internal */ + Timestamp.prototype.toExtendedJSON = function () { + return { $timestamp: { t: this.high >>> 0, i: this.low >>> 0 } }; + }; + /** @internal */ + Timestamp.fromExtendedJSON = function (doc) { + return new Timestamp(doc.$timestamp); + }; + /** @internal */ + Timestamp.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () { + return this.inspect(); + }; + Timestamp.prototype.inspect = function () { + return "new Timestamp({ t: ".concat(this.getHighBits(), ", i: ").concat(this.getLowBits(), " })"); + }; + Timestamp.MAX_VALUE = Long.MAX_UNSIGNED_VALUE; + return Timestamp; +}(LongWithoutOverridesClass)); + +function isBSONType(value) { + return (isObjectLike(value) && Reflect.has(value, '_bsontype') && typeof value._bsontype === 'string'); +} +// INT32 boundaries +var BSON_INT32_MAX = 0x7fffffff; +var BSON_INT32_MIN = -0x80000000; +// INT64 boundaries +// const BSON_INT64_MAX = 0x7fffffffffffffff; // TODO(NODE-4377): This number cannot be precisely represented in JS +var BSON_INT64_MAX = 0x8000000000000000; +var BSON_INT64_MIN = -0x8000000000000000; +// all the types where we don't need to do any special processing and can just pass the EJSON +//straight to type.fromExtendedJSON +var keysToCodecs = { + $oid: ObjectId, + $binary: Binary, + $uuid: Binary, + $symbol: BSONSymbol, + $numberInt: Int32, + $numberDecimal: Decimal128, + $numberDouble: Double, + $numberLong: Long, + $minKey: MinKey, + $maxKey: MaxKey, + $regex: BSONRegExp, + $regularExpression: BSONRegExp, + $timestamp: Timestamp +}; +// eslint-disable-next-line @typescript-eslint/no-explicit-any +function deserializeValue(value, options) { + if (options === void 0) { options = {}; } + if (typeof value === 'number') { + if (options.relaxed || options.legacy) { + return value; + } + // if it's an integer, should interpret as smallest BSON integer + // that can represent it exactly. (if out of range, interpret as double.) + if (Math.floor(value) === value) { + if (value >= BSON_INT32_MIN && value <= BSON_INT32_MAX) + return new Int32(value); + if (value >= BSON_INT64_MIN && value <= BSON_INT64_MAX) + return Long.fromNumber(value); + } + // If the number is a non-integer or out of integer range, should interpret as BSON Double. + return new Double(value); + } + // from here on out we're looking for bson types, so bail if its not an object + if (value == null || typeof value !== 'object') + return value; + // upgrade deprecated undefined to null + if (value.$undefined) + return null; + var keys = Object.keys(value).filter(function (k) { return k.startsWith('$') && value[k] != null; }); + for (var i = 0; i < keys.length; i++) { + var c = keysToCodecs[keys[i]]; + if (c) + return c.fromExtendedJSON(value, options); + } + if (value.$date != null) { + var d = value.$date; + var date = new Date(); + if (options.legacy) { + if (typeof d === 'number') + date.setTime(d); + else if (typeof d === 'string') + date.setTime(Date.parse(d)); + } + else { + if (typeof d === 'string') + date.setTime(Date.parse(d)); + else if (Long.isLong(d)) + date.setTime(d.toNumber()); + else if (typeof d === 'number' && options.relaxed) + date.setTime(d); + } + return date; + } + if (value.$code != null) { + var copy = Object.assign({}, value); + if (value.$scope) { + copy.$scope = deserializeValue(value.$scope); + } + return Code.fromExtendedJSON(value); + } + if (isDBRefLike(value) || value.$dbPointer) { + var v = value.$ref ? value : value.$dbPointer; + // we run into this in a "degenerate EJSON" case (with $id and $ref order flipped) + // because of the order JSON.parse goes through the document + if (v instanceof DBRef) + return v; + var dollarKeys = Object.keys(v).filter(function (k) { return k.startsWith('$'); }); + var valid_1 = true; + dollarKeys.forEach(function (k) { + if (['$ref', '$id', '$db'].indexOf(k) === -1) + valid_1 = false; + }); + // only make DBRef if $ keys are all valid + if (valid_1) + return DBRef.fromExtendedJSON(v); + } + return value; +} +// eslint-disable-next-line @typescript-eslint/no-explicit-any +function serializeArray(array, options) { + return array.map(function (v, index) { + options.seenObjects.push({ propertyName: "index ".concat(index), obj: null }); + try { + return serializeValue(v, options); + } + finally { + options.seenObjects.pop(); + } + }); +} +function getISOString(date) { + var isoStr = date.toISOString(); + // we should only show milliseconds in timestamp if they're non-zero + return date.getUTCMilliseconds() !== 0 ? isoStr : isoStr.slice(0, -5) + 'Z'; +} +// eslint-disable-next-line @typescript-eslint/no-explicit-any +function serializeValue(value, options) { + if ((typeof value === 'object' || typeof value === 'function') && value !== null) { + var index = options.seenObjects.findIndex(function (entry) { return entry.obj === value; }); + if (index !== -1) { + var props = options.seenObjects.map(function (entry) { return entry.propertyName; }); + var leadingPart = props + .slice(0, index) + .map(function (prop) { return "".concat(prop, " -> "); }) + .join(''); + var alreadySeen = props[index]; + var circularPart = ' -> ' + + props + .slice(index + 1, props.length - 1) + .map(function (prop) { return "".concat(prop, " -> "); }) + .join(''); + var current = props[props.length - 1]; + var leadingSpace = ' '.repeat(leadingPart.length + alreadySeen.length / 2); + var dashes = '-'.repeat(circularPart.length + (alreadySeen.length + current.length) / 2 - 1); + throw new BSONTypeError('Converting circular structure to EJSON:\n' + + " ".concat(leadingPart).concat(alreadySeen).concat(circularPart).concat(current, "\n") + + " ".concat(leadingSpace, "\\").concat(dashes, "/")); + } + options.seenObjects[options.seenObjects.length - 1].obj = value; + } + if (Array.isArray(value)) + return serializeArray(value, options); + if (value === undefined) + return null; + if (value instanceof Date || isDate(value)) { + var dateNum = value.getTime(), + // is it in year range 1970-9999? + inRange = dateNum > -1 && dateNum < 253402318800000; + if (options.legacy) { + return options.relaxed && inRange + ? { $date: value.getTime() } + : { $date: getISOString(value) }; + } + return options.relaxed && inRange + ? { $date: getISOString(value) } + : { $date: { $numberLong: value.getTime().toString() } }; + } + if (typeof value === 'number' && (!options.relaxed || !isFinite(value))) { + // it's an integer + if (Math.floor(value) === value) { + var int32Range = value >= BSON_INT32_MIN && value <= BSON_INT32_MAX, int64Range = value >= BSON_INT64_MIN && value <= BSON_INT64_MAX; + // interpret as being of the smallest BSON integer type that can represent the number exactly + if (int32Range) + return { $numberInt: value.toString() }; + if (int64Range) + return { $numberLong: value.toString() }; + } + return { $numberDouble: value.toString() }; + } + if (value instanceof RegExp || isRegExp(value)) { + var flags = value.flags; + if (flags === undefined) { + var match = value.toString().match(/[gimuy]*$/); + if (match) { + flags = match[0]; + } + } + var rx = new BSONRegExp(value.source, flags); + return rx.toExtendedJSON(options); + } + if (value != null && typeof value === 'object') + return serializeDocument(value, options); + return value; +} +var BSON_TYPE_MAPPINGS = { + Binary: function (o) { return new Binary(o.value(), o.sub_type); }, + Code: function (o) { return new Code(o.code, o.scope); }, + DBRef: function (o) { return new DBRef(o.collection || o.namespace, o.oid, o.db, o.fields); }, + Decimal128: function (o) { return new Decimal128(o.bytes); }, + Double: function (o) { return new Double(o.value); }, + Int32: function (o) { return new Int32(o.value); }, + Long: function (o) { + return Long.fromBits( + // underscore variants for 1.x backwards compatibility + o.low != null ? o.low : o.low_, o.low != null ? o.high : o.high_, o.low != null ? o.unsigned : o.unsigned_); + }, + MaxKey: function () { return new MaxKey(); }, + MinKey: function () { return new MinKey(); }, + ObjectID: function (o) { return new ObjectId(o); }, + ObjectId: function (o) { return new ObjectId(o); }, + BSONRegExp: function (o) { return new BSONRegExp(o.pattern, o.options); }, + Symbol: function (o) { return new BSONSymbol(o.value); }, + Timestamp: function (o) { return Timestamp.fromBits(o.low, o.high); } +}; +// eslint-disable-next-line @typescript-eslint/no-explicit-any +function serializeDocument(doc, options) { + if (doc == null || typeof doc !== 'object') + throw new BSONError('not an object instance'); + var bsontype = doc._bsontype; + if (typeof bsontype === 'undefined') { + // It's a regular object. Recursively serialize its property values. + var _doc = {}; + for (var name in doc) { + options.seenObjects.push({ propertyName: name, obj: null }); + try { + var value = serializeValue(doc[name], options); + if (name === '__proto__') { + Object.defineProperty(_doc, name, { + value: value, + writable: true, + enumerable: true, + configurable: true + }); + } + else { + _doc[name] = value; + } + } + finally { + options.seenObjects.pop(); + } + } + return _doc; + } + else if (isBSONType(doc)) { + // the "document" is really just a BSON type object + // eslint-disable-next-line @typescript-eslint/no-explicit-any + var outDoc = doc; + if (typeof outDoc.toExtendedJSON !== 'function') { + // There's no EJSON serialization function on the object. It's probably an + // object created by a previous version of this library (or another library) + // that's duck-typing objects to look like they were generated by this library). + // Copy the object into this library's version of that type. + var mapper = BSON_TYPE_MAPPINGS[doc._bsontype]; + if (!mapper) { + throw new BSONTypeError('Unrecognized or invalid _bsontype: ' + doc._bsontype); + } + outDoc = mapper(outDoc); + } + // Two BSON types may have nested objects that may need to be serialized too + if (bsontype === 'Code' && outDoc.scope) { + outDoc = new Code(outDoc.code, serializeValue(outDoc.scope, options)); + } + else if (bsontype === 'DBRef' && outDoc.oid) { + outDoc = new DBRef(serializeValue(outDoc.collection, options), serializeValue(outDoc.oid, options), serializeValue(outDoc.db, options), serializeValue(outDoc.fields, options)); + } + return outDoc.toExtendedJSON(options); + } + else { + throw new BSONError('_bsontype must be a string, but was: ' + typeof bsontype); + } +} +/** + * EJSON parse / stringify API + * @public + */ +// the namespace here is used to emulate `export * as EJSON from '...'` +// which as of now (sept 2020) api-extractor does not support +// eslint-disable-next-line @typescript-eslint/no-namespace +var EJSON; +(function (EJSON) { + /** + * Parse an Extended JSON string, constructing the JavaScript value or object described by that + * string. + * + * @example + * ```js + * const { EJSON } = require('bson'); + * const text = '{ "int32": { "$numberInt": "10" } }'; + * + * // prints { int32: { [String: '10'] _bsontype: 'Int32', value: '10' } } + * console.log(EJSON.parse(text, { relaxed: false })); + * + * // prints { int32: 10 } + * console.log(EJSON.parse(text)); + * ``` + */ + function parse(text, options) { + var finalOptions = Object.assign({}, { relaxed: true, legacy: false }, options); + // relaxed implies not strict + if (typeof finalOptions.relaxed === 'boolean') + finalOptions.strict = !finalOptions.relaxed; + if (typeof finalOptions.strict === 'boolean') + finalOptions.relaxed = !finalOptions.strict; + return JSON.parse(text, function (key, value) { + if (key.indexOf('\x00') !== -1) { + throw new BSONError("BSON Document field names cannot contain null bytes, found: ".concat(JSON.stringify(key))); + } + return deserializeValue(value, finalOptions); + }); + } + EJSON.parse = parse; + /** + * Converts a BSON document to an Extended JSON string, optionally replacing values if a replacer + * function is specified or optionally including only the specified properties if a replacer array + * is specified. + * + * @param value - The value to convert to extended JSON + * @param replacer - A function that alters the behavior of the stringification process, or an array of String and Number objects that serve as a whitelist for selecting/filtering the properties of the value object to be included in the JSON string. If this value is null or not provided, all properties of the object are included in the resulting JSON string + * @param space - A String or Number object that's used to insert white space into the output JSON string for readability purposes. + * @param options - Optional settings + * + * @example + * ```js + * const { EJSON } = require('bson'); + * const Int32 = require('mongodb').Int32; + * const doc = { int32: new Int32(10) }; + * + * // prints '{"int32":{"$numberInt":"10"}}' + * console.log(EJSON.stringify(doc, { relaxed: false })); + * + * // prints '{"int32":10}' + * console.log(EJSON.stringify(doc)); + * ``` + */ + function stringify(value, + // eslint-disable-next-line @typescript-eslint/no-explicit-any + replacer, space, options) { + if (space != null && typeof space === 'object') { + options = space; + space = 0; + } + if (replacer != null && typeof replacer === 'object' && !Array.isArray(replacer)) { + options = replacer; + replacer = undefined; + space = 0; + } + var serializeOptions = Object.assign({ relaxed: true, legacy: false }, options, { + seenObjects: [{ propertyName: '(root)', obj: null }] + }); + var doc = serializeValue(value, serializeOptions); + return JSON.stringify(doc, replacer, space); + } + EJSON.stringify = stringify; + /** + * Serializes an object to an Extended JSON string, and reparse it as a JavaScript object. + * + * @param value - The object to serialize + * @param options - Optional settings passed to the `stringify` function + */ + function serialize(value, options) { + options = options || {}; + return JSON.parse(stringify(value, options)); + } + EJSON.serialize = serialize; + /** + * Deserializes an Extended JSON object into a plain JavaScript object with native/BSON types + * + * @param ejson - The Extended JSON object to deserialize + * @param options - Optional settings passed to the parse method + */ + function deserialize(ejson, options) { + options = options || {}; + return parse(JSON.stringify(ejson), options); + } + EJSON.deserialize = deserialize; +})(EJSON || (EJSON = {})); + +/* eslint-disable @typescript-eslint/no-explicit-any */ +/** @public */ +var bsonMap; +var bsonGlobal = getGlobal(); +if (bsonGlobal.Map) { + bsonMap = bsonGlobal.Map; +} +else { + // We will return a polyfill + bsonMap = /** @class */ (function () { + function Map(array) { + if (array === void 0) { array = []; } + this._keys = []; + this._values = {}; + for (var i = 0; i < array.length; i++) { + if (array[i] == null) + continue; // skip null and undefined + var entry = array[i]; + var key = entry[0]; + var value = entry[1]; + // Add the key to the list of keys in order + this._keys.push(key); + // Add the key and value to the values dictionary with a point + // to the location in the ordered keys list + this._values[key] = { v: value, i: this._keys.length - 1 }; + } + } + Map.prototype.clear = function () { + this._keys = []; + this._values = {}; + }; + Map.prototype.delete = function (key) { + var value = this._values[key]; + if (value == null) + return false; + // Delete entry + delete this._values[key]; + // Remove the key from the ordered keys list + this._keys.splice(value.i, 1); + return true; + }; + Map.prototype.entries = function () { + var _this = this; + var index = 0; + return { + next: function () { + var key = _this._keys[index++]; + return { + value: key !== undefined ? [key, _this._values[key].v] : undefined, + done: key !== undefined ? false : true + }; + } + }; + }; + Map.prototype.forEach = function (callback, self) { + self = self || this; + for (var i = 0; i < this._keys.length; i++) { + var key = this._keys[i]; + // Call the forEach callback + callback.call(self, this._values[key].v, key, self); + } + }; + Map.prototype.get = function (key) { + return this._values[key] ? this._values[key].v : undefined; + }; + Map.prototype.has = function (key) { + return this._values[key] != null; + }; + Map.prototype.keys = function () { + var _this = this; + var index = 0; + return { + next: function () { + var key = _this._keys[index++]; + return { + value: key !== undefined ? key : undefined, + done: key !== undefined ? false : true + }; + } + }; + }; + Map.prototype.set = function (key, value) { + if (this._values[key]) { + this._values[key].v = value; + return this; + } + // Add the key to the list of keys in order + this._keys.push(key); + // Add the key and value to the values dictionary with a point + // to the location in the ordered keys list + this._values[key] = { v: value, i: this._keys.length - 1 }; + return this; + }; + Map.prototype.values = function () { + var _this = this; + var index = 0; + return { + next: function () { + var key = _this._keys[index++]; + return { + value: key !== undefined ? _this._values[key].v : undefined, + done: key !== undefined ? false : true + }; + } + }; + }; + Object.defineProperty(Map.prototype, "size", { + get: function () { + return this._keys.length; + }, + enumerable: false, + configurable: true + }); + return Map; + }()); +} + +function calculateObjectSize$1(object, serializeFunctions, ignoreUndefined) { + var totalLength = 4 + 1; + if (Array.isArray(object)) { + for (var i = 0; i < object.length; i++) { + totalLength += calculateElement(i.toString(), object[i], serializeFunctions, true, ignoreUndefined); + } + } + else { + // If we have toBSON defined, override the current object + if (typeof (object === null || object === void 0 ? void 0 : object.toBSON) === 'function') { + object = object.toBSON(); + } + // Calculate size + for (var key in object) { + totalLength += calculateElement(key, object[key], serializeFunctions, false, ignoreUndefined); + } + } + return totalLength; +} +/** @internal */ +function calculateElement(name, +// eslint-disable-next-line @typescript-eslint/no-explicit-any +value, serializeFunctions, isArray, ignoreUndefined) { + if (serializeFunctions === void 0) { serializeFunctions = false; } + if (isArray === void 0) { isArray = false; } + if (ignoreUndefined === void 0) { ignoreUndefined = false; } + // If we have toBSON defined, override the current object + if (typeof (value === null || value === void 0 ? void 0 : value.toBSON) === 'function') { + value = value.toBSON(); + } + switch (typeof value) { + case 'string': + return 1 + Buffer.byteLength(name, 'utf8') + 1 + 4 + Buffer.byteLength(value, 'utf8') + 1; + case 'number': + if (Math.floor(value) === value && + value >= JS_INT_MIN && + value <= JS_INT_MAX) { + if (value >= BSON_INT32_MIN$1 && value <= BSON_INT32_MAX$1) { + // 32 bit + return (name != null ? Buffer.byteLength(name, 'utf8') + 1 : 0) + (4 + 1); + } + else { + return (name != null ? Buffer.byteLength(name, 'utf8') + 1 : 0) + (8 + 1); + } + } + else { + // 64 bit + return (name != null ? Buffer.byteLength(name, 'utf8') + 1 : 0) + (8 + 1); + } + case 'undefined': + if (isArray || !ignoreUndefined) + return (name != null ? Buffer.byteLength(name, 'utf8') + 1 : 0) + 1; + return 0; + case 'boolean': + return (name != null ? Buffer.byteLength(name, 'utf8') + 1 : 0) + (1 + 1); + case 'object': + if (value == null || value['_bsontype'] === 'MinKey' || value['_bsontype'] === 'MaxKey') { + return (name != null ? Buffer.byteLength(name, 'utf8') + 1 : 0) + 1; + } + else if (value['_bsontype'] === 'ObjectId' || value['_bsontype'] === 'ObjectID') { + return (name != null ? Buffer.byteLength(name, 'utf8') + 1 : 0) + (12 + 1); + } + else if (value instanceof Date || isDate(value)) { + return (name != null ? Buffer.byteLength(name, 'utf8') + 1 : 0) + (8 + 1); + } + else if (ArrayBuffer.isView(value) || + value instanceof ArrayBuffer || + isAnyArrayBuffer(value)) { + return ((name != null ? Buffer.byteLength(name, 'utf8') + 1 : 0) + (1 + 4 + 1) + value.byteLength); + } + else if (value['_bsontype'] === 'Long' || + value['_bsontype'] === 'Double' || + value['_bsontype'] === 'Timestamp') { + return (name != null ? Buffer.byteLength(name, 'utf8') + 1 : 0) + (8 + 1); + } + else if (value['_bsontype'] === 'Decimal128') { + return (name != null ? Buffer.byteLength(name, 'utf8') + 1 : 0) + (16 + 1); + } + else if (value['_bsontype'] === 'Code') { + // Calculate size depending on the availability of a scope + if (value.scope != null && Object.keys(value.scope).length > 0) { + return ((name != null ? Buffer.byteLength(name, 'utf8') + 1 : 0) + + 1 + + 4 + + 4 + + Buffer.byteLength(value.code.toString(), 'utf8') + + 1 + + calculateObjectSize$1(value.scope, serializeFunctions, ignoreUndefined)); + } + else { + return ((name != null ? Buffer.byteLength(name, 'utf8') + 1 : 0) + + 1 + + 4 + + Buffer.byteLength(value.code.toString(), 'utf8') + + 1); + } + } + else if (value['_bsontype'] === 'Binary') { + var binary = value; + // Check what kind of subtype we have + if (binary.sub_type === Binary.SUBTYPE_BYTE_ARRAY) { + return ((name != null ? Buffer.byteLength(name, 'utf8') + 1 : 0) + + (binary.position + 1 + 4 + 1 + 4)); + } + else { + return ((name != null ? Buffer.byteLength(name, 'utf8') + 1 : 0) + (binary.position + 1 + 4 + 1)); + } + } + else if (value['_bsontype'] === 'Symbol') { + return ((name != null ? Buffer.byteLength(name, 'utf8') + 1 : 0) + + Buffer.byteLength(value.value, 'utf8') + + 4 + + 1 + + 1); + } + else if (value['_bsontype'] === 'DBRef') { + // Set up correct object for serialization + var ordered_values = Object.assign({ + $ref: value.collection, + $id: value.oid + }, value.fields); + // Add db reference if it exists + if (value.db != null) { + ordered_values['$db'] = value.db; + } + return ((name != null ? Buffer.byteLength(name, 'utf8') + 1 : 0) + + 1 + + calculateObjectSize$1(ordered_values, serializeFunctions, ignoreUndefined)); + } + else if (value instanceof RegExp || isRegExp(value)) { + return ((name != null ? Buffer.byteLength(name, 'utf8') + 1 : 0) + + 1 + + Buffer.byteLength(value.source, 'utf8') + + 1 + + (value.global ? 1 : 0) + + (value.ignoreCase ? 1 : 0) + + (value.multiline ? 1 : 0) + + 1); + } + else if (value['_bsontype'] === 'BSONRegExp') { + return ((name != null ? Buffer.byteLength(name, 'utf8') + 1 : 0) + + 1 + + Buffer.byteLength(value.pattern, 'utf8') + + 1 + + Buffer.byteLength(value.options, 'utf8') + + 1); + } + else { + return ((name != null ? Buffer.byteLength(name, 'utf8') + 1 : 0) + + calculateObjectSize$1(value, serializeFunctions, ignoreUndefined) + + 1); + } + case 'function': + // WTF for 0.4.X where typeof /someregexp/ === 'function' + if (value instanceof RegExp || isRegExp(value) || String.call(value) === '[object RegExp]') { + return ((name != null ? Buffer.byteLength(name, 'utf8') + 1 : 0) + + 1 + + Buffer.byteLength(value.source, 'utf8') + + 1 + + (value.global ? 1 : 0) + + (value.ignoreCase ? 1 : 0) + + (value.multiline ? 1 : 0) + + 1); + } + else { + if (serializeFunctions && value.scope != null && Object.keys(value.scope).length > 0) { + return ((name != null ? Buffer.byteLength(name, 'utf8') + 1 : 0) + + 1 + + 4 + + 4 + + Buffer.byteLength(normalizedFunctionString(value), 'utf8') + + 1 + + calculateObjectSize$1(value.scope, serializeFunctions, ignoreUndefined)); + } + else if (serializeFunctions) { + return ((name != null ? Buffer.byteLength(name, 'utf8') + 1 : 0) + + 1 + + 4 + + Buffer.byteLength(normalizedFunctionString(value), 'utf8') + + 1); + } + } + } + return 0; +} + +var FIRST_BIT = 0x80; +var FIRST_TWO_BITS = 0xc0; +var FIRST_THREE_BITS = 0xe0; +var FIRST_FOUR_BITS = 0xf0; +var FIRST_FIVE_BITS = 0xf8; +var TWO_BIT_CHAR = 0xc0; +var THREE_BIT_CHAR = 0xe0; +var FOUR_BIT_CHAR = 0xf0; +var CONTINUING_CHAR = 0x80; +/** + * Determines if the passed in bytes are valid utf8 + * @param bytes - An array of 8-bit bytes. Must be indexable and have length property + * @param start - The index to start validating + * @param end - The index to end validating + */ +function validateUtf8(bytes, start, end) { + var continuation = 0; + for (var i = start; i < end; i += 1) { + var byte = bytes[i]; + if (continuation) { + if ((byte & FIRST_TWO_BITS) !== CONTINUING_CHAR) { + return false; + } + continuation -= 1; + } + else if (byte & FIRST_BIT) { + if ((byte & FIRST_THREE_BITS) === TWO_BIT_CHAR) { + continuation = 1; + } + else if ((byte & FIRST_FOUR_BITS) === THREE_BIT_CHAR) { + continuation = 2; + } + else if ((byte & FIRST_FIVE_BITS) === FOUR_BIT_CHAR) { + continuation = 3; + } + else { + return false; + } + } + } + return !continuation; +} + +// Internal long versions +var JS_INT_MAX_LONG = Long.fromNumber(JS_INT_MAX); +var JS_INT_MIN_LONG = Long.fromNumber(JS_INT_MIN); +var functionCache = {}; +function deserialize$1(buffer, options, isArray) { + options = options == null ? {} : options; + var index = options && options.index ? options.index : 0; + // Read the document size + var size = buffer[index] | + (buffer[index + 1] << 8) | + (buffer[index + 2] << 16) | + (buffer[index + 3] << 24); + if (size < 5) { + throw new BSONError("bson size must be >= 5, is ".concat(size)); + } + if (options.allowObjectSmallerThanBufferSize && buffer.length < size) { + throw new BSONError("buffer length ".concat(buffer.length, " must be >= bson size ").concat(size)); + } + if (!options.allowObjectSmallerThanBufferSize && buffer.length !== size) { + throw new BSONError("buffer length ".concat(buffer.length, " must === bson size ").concat(size)); + } + if (size + index > buffer.byteLength) { + throw new BSONError("(bson size ".concat(size, " + options.index ").concat(index, " must be <= buffer length ").concat(buffer.byteLength, ")")); + } + // Illegal end value + if (buffer[index + size - 1] !== 0) { + throw new BSONError("One object, sized correctly, with a spot for an EOO, but the EOO isn't 0x00"); + } + // Start deserializtion + return deserializeObject(buffer, index, options, isArray); +} +var allowedDBRefKeys = /^\$ref$|^\$id$|^\$db$/; +function deserializeObject(buffer, index, options, isArray) { + if (isArray === void 0) { isArray = false; } + var evalFunctions = options['evalFunctions'] == null ? false : options['evalFunctions']; + var cacheFunctions = options['cacheFunctions'] == null ? false : options['cacheFunctions']; + var fieldsAsRaw = options['fieldsAsRaw'] == null ? null : options['fieldsAsRaw']; + // Return raw bson buffer instead of parsing it + var raw = options['raw'] == null ? false : options['raw']; + // Return BSONRegExp objects instead of native regular expressions + var bsonRegExp = typeof options['bsonRegExp'] === 'boolean' ? options['bsonRegExp'] : false; + // Controls the promotion of values vs wrapper classes + var promoteBuffers = options['promoteBuffers'] == null ? false : options['promoteBuffers']; + var promoteLongs = options['promoteLongs'] == null ? true : options['promoteLongs']; + var promoteValues = options['promoteValues'] == null ? true : options['promoteValues']; + // Ensures default validation option if none given + var validation = options.validation == null ? { utf8: true } : options.validation; + // Shows if global utf-8 validation is enabled or disabled + var globalUTFValidation = true; + // Reflects utf-8 validation setting regardless of global or specific key validation + var validationSetting; + // Set of keys either to enable or disable validation on + var utf8KeysSet = new Set(); + // Check for boolean uniformity and empty validation option + var utf8ValidatedKeys = validation.utf8; + if (typeof utf8ValidatedKeys === 'boolean') { + validationSetting = utf8ValidatedKeys; + } + else { + globalUTFValidation = false; + var utf8ValidationValues = Object.keys(utf8ValidatedKeys).map(function (key) { + return utf8ValidatedKeys[key]; + }); + if (utf8ValidationValues.length === 0) { + throw new BSONError('UTF-8 validation setting cannot be empty'); + } + if (typeof utf8ValidationValues[0] !== 'boolean') { + throw new BSONError('Invalid UTF-8 validation option, must specify boolean values'); + } + validationSetting = utf8ValidationValues[0]; + // Ensures boolean uniformity in utf-8 validation (all true or all false) + if (!utf8ValidationValues.every(function (item) { return item === validationSetting; })) { + throw new BSONError('Invalid UTF-8 validation option - keys must be all true or all false'); + } + } + // Add keys to set that will either be validated or not based on validationSetting + if (!globalUTFValidation) { + for (var _i = 0, _a = Object.keys(utf8ValidatedKeys); _i < _a.length; _i++) { + var key = _a[_i]; + utf8KeysSet.add(key); + } + } + // Set the start index + var startIndex = index; + // Validate that we have at least 4 bytes of buffer + if (buffer.length < 5) + throw new BSONError('corrupt bson message < 5 bytes long'); + // Read the document size + var size = buffer[index++] | (buffer[index++] << 8) | (buffer[index++] << 16) | (buffer[index++] << 24); + // Ensure buffer is valid size + if (size < 5 || size > buffer.length) + throw new BSONError('corrupt bson message'); + // Create holding object + var object = isArray ? [] : {}; + // Used for arrays to skip having to perform utf8 decoding + var arrayIndex = 0; + var done = false; + var isPossibleDBRef = isArray ? false : null; + // While we have more left data left keep parsing + var dataview = new DataView(buffer.buffer, buffer.byteOffset, buffer.byteLength); + while (!done) { + // Read the type + var elementType = buffer[index++]; + // If we get a zero it's the last byte, exit + if (elementType === 0) + break; + // Get the start search index + var i = index; + // Locate the end of the c string + while (buffer[i] !== 0x00 && i < buffer.length) { + i++; + } + // If are at the end of the buffer there is a problem with the document + if (i >= buffer.byteLength) + throw new BSONError('Bad BSON Document: illegal CString'); + // Represents the key + var name = isArray ? arrayIndex++ : buffer.toString('utf8', index, i); + // shouldValidateKey is true if the key should be validated, false otherwise + var shouldValidateKey = true; + if (globalUTFValidation || utf8KeysSet.has(name)) { + shouldValidateKey = validationSetting; + } + else { + shouldValidateKey = !validationSetting; + } + if (isPossibleDBRef !== false && name[0] === '$') { + isPossibleDBRef = allowedDBRefKeys.test(name); + } + var value = void 0; + index = i + 1; + if (elementType === BSON_DATA_STRING) { + var stringSize = buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + if (stringSize <= 0 || + stringSize > buffer.length - index || + buffer[index + stringSize - 1] !== 0) { + throw new BSONError('bad string length in bson'); + } + value = getValidatedString(buffer, index, index + stringSize - 1, shouldValidateKey); + index = index + stringSize; + } + else if (elementType === BSON_DATA_OID) { + var oid = Buffer.alloc(12); + buffer.copy(oid, 0, index, index + 12); + value = new ObjectId(oid); + index = index + 12; + } + else if (elementType === BSON_DATA_INT && promoteValues === false) { + value = new Int32(buffer[index++] | (buffer[index++] << 8) | (buffer[index++] << 16) | (buffer[index++] << 24)); + } + else if (elementType === BSON_DATA_INT) { + value = + buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + } + else if (elementType === BSON_DATA_NUMBER && promoteValues === false) { + value = new Double(dataview.getFloat64(index, true)); + index = index + 8; + } + else if (elementType === BSON_DATA_NUMBER) { + value = dataview.getFloat64(index, true); + index = index + 8; + } + else if (elementType === BSON_DATA_DATE) { + var lowBits = buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + var highBits = buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + value = new Date(new Long(lowBits, highBits).toNumber()); + } + else if (elementType === BSON_DATA_BOOLEAN) { + if (buffer[index] !== 0 && buffer[index] !== 1) + throw new BSONError('illegal boolean type value'); + value = buffer[index++] === 1; + } + else if (elementType === BSON_DATA_OBJECT) { + var _index = index; + var objectSize = buffer[index] | + (buffer[index + 1] << 8) | + (buffer[index + 2] << 16) | + (buffer[index + 3] << 24); + if (objectSize <= 0 || objectSize > buffer.length - index) + throw new BSONError('bad embedded document length in bson'); + // We have a raw value + if (raw) { + value = buffer.slice(index, index + objectSize); + } + else { + var objectOptions = options; + if (!globalUTFValidation) { + objectOptions = _assign(_assign({}, options), { validation: { utf8: shouldValidateKey } }); + } + value = deserializeObject(buffer, _index, objectOptions, false); + } + index = index + objectSize; + } + else if (elementType === BSON_DATA_ARRAY) { + var _index = index; + var objectSize = buffer[index] | + (buffer[index + 1] << 8) | + (buffer[index + 2] << 16) | + (buffer[index + 3] << 24); + var arrayOptions = options; + // Stop index + var stopIndex = index + objectSize; + // All elements of array to be returned as raw bson + if (fieldsAsRaw && fieldsAsRaw[name]) { + arrayOptions = {}; + for (var n in options) { + arrayOptions[n] = options[n]; + } + arrayOptions['raw'] = true; + } + if (!globalUTFValidation) { + arrayOptions = _assign(_assign({}, arrayOptions), { validation: { utf8: shouldValidateKey } }); + } + value = deserializeObject(buffer, _index, arrayOptions, true); + index = index + objectSize; + if (buffer[index - 1] !== 0) + throw new BSONError('invalid array terminator byte'); + if (index !== stopIndex) + throw new BSONError('corrupted array bson'); + } + else if (elementType === BSON_DATA_UNDEFINED) { + value = undefined; + } + else if (elementType === BSON_DATA_NULL) { + value = null; + } + else if (elementType === BSON_DATA_LONG) { + // Unpack the low and high bits + var lowBits = buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + var highBits = buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + var long = new Long(lowBits, highBits); + // Promote the long if possible + if (promoteLongs && promoteValues === true) { + value = + long.lessThanOrEqual(JS_INT_MAX_LONG) && long.greaterThanOrEqual(JS_INT_MIN_LONG) + ? long.toNumber() + : long; + } + else { + value = long; + } + } + else if (elementType === BSON_DATA_DECIMAL128) { + // Buffer to contain the decimal bytes + var bytes = Buffer.alloc(16); + // Copy the next 16 bytes into the bytes buffer + buffer.copy(bytes, 0, index, index + 16); + // Update index + index = index + 16; + // Assign the new Decimal128 value + var decimal128 = new Decimal128(bytes); + // If we have an alternative mapper use that + if ('toObject' in decimal128 && typeof decimal128.toObject === 'function') { + value = decimal128.toObject(); + } + else { + value = decimal128; + } + } + else if (elementType === BSON_DATA_BINARY) { + var binarySize = buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + var totalBinarySize = binarySize; + var subType = buffer[index++]; + // Did we have a negative binary size, throw + if (binarySize < 0) + throw new BSONError('Negative binary type element size found'); + // Is the length longer than the document + if (binarySize > buffer.byteLength) + throw new BSONError('Binary type size larger than document size'); + // Decode as raw Buffer object if options specifies it + if (buffer['slice'] != null) { + // If we have subtype 2 skip the 4 bytes for the size + if (subType === Binary.SUBTYPE_BYTE_ARRAY) { + binarySize = + buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + if (binarySize < 0) + throw new BSONError('Negative binary type element size found for subtype 0x02'); + if (binarySize > totalBinarySize - 4) + throw new BSONError('Binary type with subtype 0x02 contains too long binary size'); + if (binarySize < totalBinarySize - 4) + throw new BSONError('Binary type with subtype 0x02 contains too short binary size'); + } + if (promoteBuffers && promoteValues) { + value = buffer.slice(index, index + binarySize); + } + else { + value = new Binary(buffer.slice(index, index + binarySize), subType); + if (subType === BSON_BINARY_SUBTYPE_UUID_NEW) { + value = value.toUUID(); + } + } + } + else { + var _buffer = Buffer.alloc(binarySize); + // If we have subtype 2 skip the 4 bytes for the size + if (subType === Binary.SUBTYPE_BYTE_ARRAY) { + binarySize = + buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + if (binarySize < 0) + throw new BSONError('Negative binary type element size found for subtype 0x02'); + if (binarySize > totalBinarySize - 4) + throw new BSONError('Binary type with subtype 0x02 contains too long binary size'); + if (binarySize < totalBinarySize - 4) + throw new BSONError('Binary type with subtype 0x02 contains too short binary size'); + } + // Copy the data + for (i = 0; i < binarySize; i++) { + _buffer[i] = buffer[index + i]; + } + if (promoteBuffers && promoteValues) { + value = _buffer; + } + else if (subType === BSON_BINARY_SUBTYPE_UUID_NEW) { + value = new Binary(buffer.slice(index, index + binarySize), subType).toUUID(); + } + else { + value = new Binary(buffer.slice(index, index + binarySize), subType); + } + } + // Update the index + index = index + binarySize; + } + else if (elementType === BSON_DATA_REGEXP && bsonRegExp === false) { + // Get the start search index + i = index; + // Locate the end of the c string + while (buffer[i] !== 0x00 && i < buffer.length) { + i++; + } + // If are at the end of the buffer there is a problem with the document + if (i >= buffer.length) + throw new BSONError('Bad BSON Document: illegal CString'); + // Return the C string + var source = buffer.toString('utf8', index, i); + // Create the regexp + index = i + 1; + // Get the start search index + i = index; + // Locate the end of the c string + while (buffer[i] !== 0x00 && i < buffer.length) { + i++; + } + // If are at the end of the buffer there is a problem with the document + if (i >= buffer.length) + throw new BSONError('Bad BSON Document: illegal CString'); + // Return the C string + var regExpOptions = buffer.toString('utf8', index, i); + index = i + 1; + // For each option add the corresponding one for javascript + var optionsArray = new Array(regExpOptions.length); + // Parse options + for (i = 0; i < regExpOptions.length; i++) { + switch (regExpOptions[i]) { + case 'm': + optionsArray[i] = 'm'; + break; + case 's': + optionsArray[i] = 'g'; + break; + case 'i': + optionsArray[i] = 'i'; + break; + } + } + value = new RegExp(source, optionsArray.join('')); + } + else if (elementType === BSON_DATA_REGEXP && bsonRegExp === true) { + // Get the start search index + i = index; + // Locate the end of the c string + while (buffer[i] !== 0x00 && i < buffer.length) { + i++; + } + // If are at the end of the buffer there is a problem with the document + if (i >= buffer.length) + throw new BSONError('Bad BSON Document: illegal CString'); + // Return the C string + var source = buffer.toString('utf8', index, i); + index = i + 1; + // Get the start search index + i = index; + // Locate the end of the c string + while (buffer[i] !== 0x00 && i < buffer.length) { + i++; + } + // If are at the end of the buffer there is a problem with the document + if (i >= buffer.length) + throw new BSONError('Bad BSON Document: illegal CString'); + // Return the C string + var regExpOptions = buffer.toString('utf8', index, i); + index = i + 1; + // Set the object + value = new BSONRegExp(source, regExpOptions); + } + else if (elementType === BSON_DATA_SYMBOL) { + var stringSize = buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + if (stringSize <= 0 || + stringSize > buffer.length - index || + buffer[index + stringSize - 1] !== 0) { + throw new BSONError('bad string length in bson'); + } + var symbol = getValidatedString(buffer, index, index + stringSize - 1, shouldValidateKey); + value = promoteValues ? symbol : new BSONSymbol(symbol); + index = index + stringSize; + } + else if (elementType === BSON_DATA_TIMESTAMP) { + var lowBits = buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + var highBits = buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + value = new Timestamp(lowBits, highBits); + } + else if (elementType === BSON_DATA_MIN_KEY) { + value = new MinKey(); + } + else if (elementType === BSON_DATA_MAX_KEY) { + value = new MaxKey(); + } + else if (elementType === BSON_DATA_CODE) { + var stringSize = buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + if (stringSize <= 0 || + stringSize > buffer.length - index || + buffer[index + stringSize - 1] !== 0) { + throw new BSONError('bad string length in bson'); + } + var functionString = getValidatedString(buffer, index, index + stringSize - 1, shouldValidateKey); + // If we are evaluating the functions + if (evalFunctions) { + // If we have cache enabled let's look for the md5 of the function in the cache + if (cacheFunctions) { + // Got to do this to avoid V8 deoptimizing the call due to finding eval + value = isolateEval(functionString, functionCache, object); + } + else { + value = isolateEval(functionString); + } + } + else { + value = new Code(functionString); + } + // Update parse index position + index = index + stringSize; + } + else if (elementType === BSON_DATA_CODE_W_SCOPE) { + var totalSize = buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + // Element cannot be shorter than totalSize + stringSize + documentSize + terminator + if (totalSize < 4 + 4 + 4 + 1) { + throw new BSONError('code_w_scope total size shorter minimum expected length'); + } + // Get the code string size + var stringSize = buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + // Check if we have a valid string + if (stringSize <= 0 || + stringSize > buffer.length - index || + buffer[index + stringSize - 1] !== 0) { + throw new BSONError('bad string length in bson'); + } + // Javascript function + var functionString = getValidatedString(buffer, index, index + stringSize - 1, shouldValidateKey); + // Update parse index position + index = index + stringSize; + // Parse the element + var _index = index; + // Decode the size of the object document + var objectSize = buffer[index] | + (buffer[index + 1] << 8) | + (buffer[index + 2] << 16) | + (buffer[index + 3] << 24); + // Decode the scope object + var scopeObject = deserializeObject(buffer, _index, options, false); + // Adjust the index + index = index + objectSize; + // Check if field length is too short + if (totalSize < 4 + 4 + objectSize + stringSize) { + throw new BSONError('code_w_scope total size is too short, truncating scope'); + } + // Check if totalSize field is too long + if (totalSize > 4 + 4 + objectSize + stringSize) { + throw new BSONError('code_w_scope total size is too long, clips outer document'); + } + // If we are evaluating the functions + if (evalFunctions) { + // If we have cache enabled let's look for the md5 of the function in the cache + if (cacheFunctions) { + // Got to do this to avoid V8 deoptimizing the call due to finding eval + value = isolateEval(functionString, functionCache, object); + } + else { + value = isolateEval(functionString); + } + value.scope = scopeObject; + } + else { + value = new Code(functionString, scopeObject); + } + } + else if (elementType === BSON_DATA_DBPOINTER) { + // Get the code string size + var stringSize = buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + // Check if we have a valid string + if (stringSize <= 0 || + stringSize > buffer.length - index || + buffer[index + stringSize - 1] !== 0) + throw new BSONError('bad string length in bson'); + // Namespace + if (validation != null && validation.utf8) { + if (!validateUtf8(buffer, index, index + stringSize - 1)) { + throw new BSONError('Invalid UTF-8 string in BSON document'); + } + } + var namespace = buffer.toString('utf8', index, index + stringSize - 1); + // Update parse index position + index = index + stringSize; + // Read the oid + var oidBuffer = Buffer.alloc(12); + buffer.copy(oidBuffer, 0, index, index + 12); + var oid = new ObjectId(oidBuffer); + // Update the index + index = index + 12; + // Upgrade to DBRef type + value = new DBRef(namespace, oid); + } + else { + throw new BSONError("Detected unknown BSON type ".concat(elementType.toString(16), " for fieldname \"").concat(name, "\"")); + } + if (name === '__proto__') { + Object.defineProperty(object, name, { + value: value, + writable: true, + enumerable: true, + configurable: true + }); + } + else { + object[name] = value; + } + } + // Check if the deserialization was against a valid array/object + if (size !== index - startIndex) { + if (isArray) + throw new BSONError('corrupt array bson'); + throw new BSONError('corrupt object bson'); + } + // if we did not find "$ref", "$id", "$db", or found an extraneous $key, don't make a DBRef + if (!isPossibleDBRef) + return object; + if (isDBRefLike(object)) { + var copy = Object.assign({}, object); + delete copy.$ref; + delete copy.$id; + delete copy.$db; + return new DBRef(object.$ref, object.$id, object.$db, copy); + } + return object; +} +/** + * Ensure eval is isolated, store the result in functionCache. + * + * @internal + */ +function isolateEval(functionString, functionCache, object) { + // eslint-disable-next-line @typescript-eslint/no-implied-eval + if (!functionCache) + return new Function(functionString); + // Check for cache hit, eval if missing and return cached function + if (functionCache[functionString] == null) { + // eslint-disable-next-line @typescript-eslint/no-implied-eval + functionCache[functionString] = new Function(functionString); + } + // Set the object + return functionCache[functionString].bind(object); +} +function getValidatedString(buffer, start, end, shouldValidateUtf8) { + var value = buffer.toString('utf8', start, end); + // if utf8 validation is on, do the check + if (shouldValidateUtf8) { + for (var i = 0; i < value.length; i++) { + if (value.charCodeAt(i) === 0xfffd) { + if (!validateUtf8(buffer, start, end)) { + throw new BSONError('Invalid UTF-8 string in BSON document'); + } + break; + } + } + } + return value; +} + +var regexp = /\x00/; // eslint-disable-line no-control-regex +var ignoreKeys = new Set(['$db', '$ref', '$id', '$clusterTime']); +/* + * isArray indicates if we are writing to a BSON array (type 0x04) + * which forces the "key" which really an array index as a string to be written as ascii + * This will catch any errors in index as a string generation + */ +function serializeString(buffer, key, value, index, isArray) { + // Encode String type + buffer[index++] = BSON_DATA_STRING; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes + 1; + buffer[index - 1] = 0; + // Write the string + var size = buffer.write(value, index + 4, undefined, 'utf8'); + // Write the size of the string to buffer + buffer[index + 3] = ((size + 1) >> 24) & 0xff; + buffer[index + 2] = ((size + 1) >> 16) & 0xff; + buffer[index + 1] = ((size + 1) >> 8) & 0xff; + buffer[index] = (size + 1) & 0xff; + // Update index + index = index + 4 + size; + // Write zero + buffer[index++] = 0; + return index; +} +var SPACE_FOR_FLOAT64 = new Uint8Array(8); +var DV_FOR_FLOAT64 = new DataView(SPACE_FOR_FLOAT64.buffer, SPACE_FOR_FLOAT64.byteOffset, SPACE_FOR_FLOAT64.byteLength); +function serializeNumber(buffer, key, value, index, isArray) { + // We have an integer value + // TODO(NODE-2529): Add support for big int + if (Number.isInteger(value) && + value >= BSON_INT32_MIN$1 && + value <= BSON_INT32_MAX$1) { + // If the value fits in 32 bits encode as int32 + // Set int type 32 bits or less + buffer[index++] = BSON_DATA_INT; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Write the int value + buffer[index++] = value & 0xff; + buffer[index++] = (value >> 8) & 0xff; + buffer[index++] = (value >> 16) & 0xff; + buffer[index++] = (value >> 24) & 0xff; + } + else { + // Encode as double + buffer[index++] = BSON_DATA_NUMBER; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Write float + DV_FOR_FLOAT64.setFloat64(0, value, true); + buffer.set(SPACE_FOR_FLOAT64, index); + // Adjust index + index = index + 8; + } + return index; +} +function serializeNull(buffer, key, _, index, isArray) { + // Set long type + buffer[index++] = BSON_DATA_NULL; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + return index; +} +function serializeBoolean(buffer, key, value, index, isArray) { + // Write the type + buffer[index++] = BSON_DATA_BOOLEAN; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Encode the boolean value + buffer[index++] = value ? 1 : 0; + return index; +} +function serializeDate(buffer, key, value, index, isArray) { + // Write the type + buffer[index++] = BSON_DATA_DATE; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Write the date + var dateInMilis = Long.fromNumber(value.getTime()); + var lowBits = dateInMilis.getLowBits(); + var highBits = dateInMilis.getHighBits(); + // Encode low bits + buffer[index++] = lowBits & 0xff; + buffer[index++] = (lowBits >> 8) & 0xff; + buffer[index++] = (lowBits >> 16) & 0xff; + buffer[index++] = (lowBits >> 24) & 0xff; + // Encode high bits + buffer[index++] = highBits & 0xff; + buffer[index++] = (highBits >> 8) & 0xff; + buffer[index++] = (highBits >> 16) & 0xff; + buffer[index++] = (highBits >> 24) & 0xff; + return index; +} +function serializeRegExp(buffer, key, value, index, isArray) { + // Write the type + buffer[index++] = BSON_DATA_REGEXP; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + if (value.source && value.source.match(regexp) != null) { + throw Error('value ' + value.source + ' must not contain null bytes'); + } + // Adjust the index + index = index + buffer.write(value.source, index, undefined, 'utf8'); + // Write zero + buffer[index++] = 0x00; + // Write the parameters + if (value.ignoreCase) + buffer[index++] = 0x69; // i + if (value.global) + buffer[index++] = 0x73; // s + if (value.multiline) + buffer[index++] = 0x6d; // m + // Add ending zero + buffer[index++] = 0x00; + return index; +} +function serializeBSONRegExp(buffer, key, value, index, isArray) { + // Write the type + buffer[index++] = BSON_DATA_REGEXP; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Check the pattern for 0 bytes + if (value.pattern.match(regexp) != null) { + // The BSON spec doesn't allow keys with null bytes because keys are + // null-terminated. + throw Error('pattern ' + value.pattern + ' must not contain null bytes'); + } + // Adjust the index + index = index + buffer.write(value.pattern, index, undefined, 'utf8'); + // Write zero + buffer[index++] = 0x00; + // Write the options + index = index + buffer.write(value.options.split('').sort().join(''), index, undefined, 'utf8'); + // Add ending zero + buffer[index++] = 0x00; + return index; +} +function serializeMinMax(buffer, key, value, index, isArray) { + // Write the type of either min or max key + if (value === null) { + buffer[index++] = BSON_DATA_NULL; + } + else if (value._bsontype === 'MinKey') { + buffer[index++] = BSON_DATA_MIN_KEY; + } + else { + buffer[index++] = BSON_DATA_MAX_KEY; + } + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + return index; +} +function serializeObjectId(buffer, key, value, index, isArray) { + // Write the type + buffer[index++] = BSON_DATA_OID; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Write the objectId into the shared buffer + if (typeof value.id === 'string') { + buffer.write(value.id, index, undefined, 'binary'); + } + else if (isUint8Array(value.id)) { + // Use the standard JS methods here because buffer.copy() is buggy with the + // browser polyfill + buffer.set(value.id.subarray(0, 12), index); + } + else { + throw new BSONTypeError('object [' + JSON.stringify(value) + '] is not a valid ObjectId'); + } + // Adjust index + return index + 12; +} +function serializeBuffer(buffer, key, value, index, isArray) { + // Write the type + buffer[index++] = BSON_DATA_BINARY; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Get size of the buffer (current write point) + var size = value.length; + // Write the size of the string to buffer + buffer[index++] = size & 0xff; + buffer[index++] = (size >> 8) & 0xff; + buffer[index++] = (size >> 16) & 0xff; + buffer[index++] = (size >> 24) & 0xff; + // Write the default subtype + buffer[index++] = BSON_BINARY_SUBTYPE_DEFAULT; + // Copy the content form the binary field to the buffer + buffer.set(ensureBuffer(value), index); + // Adjust the index + index = index + size; + return index; +} +function serializeObject(buffer, key, value, index, checkKeys, depth, serializeFunctions, ignoreUndefined, isArray, path) { + if (checkKeys === void 0) { checkKeys = false; } + if (depth === void 0) { depth = 0; } + if (serializeFunctions === void 0) { serializeFunctions = false; } + if (ignoreUndefined === void 0) { ignoreUndefined = true; } + if (isArray === void 0) { isArray = false; } + if (path === void 0) { path = []; } + for (var i = 0; i < path.length; i++) { + if (path[i] === value) + throw new BSONError('cyclic dependency detected'); + } + // Push value to stack + path.push(value); + // Write the type + buffer[index++] = Array.isArray(value) ? BSON_DATA_ARRAY : BSON_DATA_OBJECT; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + var endIndex = serializeInto(buffer, value, checkKeys, index, depth + 1, serializeFunctions, ignoreUndefined, path); + // Pop stack + path.pop(); + return endIndex; +} +function serializeDecimal128(buffer, key, value, index, isArray) { + buffer[index++] = BSON_DATA_DECIMAL128; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Write the data from the value + // Prefer the standard JS methods because their typechecking is not buggy, + // unlike the `buffer` polyfill's. + buffer.set(value.bytes.subarray(0, 16), index); + return index + 16; +} +function serializeLong(buffer, key, value, index, isArray) { + // Write the type + buffer[index++] = + value._bsontype === 'Long' ? BSON_DATA_LONG : BSON_DATA_TIMESTAMP; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Write the date + var lowBits = value.getLowBits(); + var highBits = value.getHighBits(); + // Encode low bits + buffer[index++] = lowBits & 0xff; + buffer[index++] = (lowBits >> 8) & 0xff; + buffer[index++] = (lowBits >> 16) & 0xff; + buffer[index++] = (lowBits >> 24) & 0xff; + // Encode high bits + buffer[index++] = highBits & 0xff; + buffer[index++] = (highBits >> 8) & 0xff; + buffer[index++] = (highBits >> 16) & 0xff; + buffer[index++] = (highBits >> 24) & 0xff; + return index; +} +function serializeInt32(buffer, key, value, index, isArray) { + value = value.valueOf(); + // Set int type 32 bits or less + buffer[index++] = BSON_DATA_INT; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Write the int value + buffer[index++] = value & 0xff; + buffer[index++] = (value >> 8) & 0xff; + buffer[index++] = (value >> 16) & 0xff; + buffer[index++] = (value >> 24) & 0xff; + return index; +} +function serializeDouble(buffer, key, value, index, isArray) { + // Encode as double + buffer[index++] = BSON_DATA_NUMBER; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Write float + DV_FOR_FLOAT64.setFloat64(0, value.value, true); + buffer.set(SPACE_FOR_FLOAT64, index); + // Adjust index + index = index + 8; + return index; +} +function serializeFunction(buffer, key, value, index, _checkKeys, _depth, isArray) { + buffer[index++] = BSON_DATA_CODE; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Function string + var functionString = normalizedFunctionString(value); + // Write the string + var size = buffer.write(functionString, index + 4, undefined, 'utf8') + 1; + // Write the size of the string to buffer + buffer[index] = size & 0xff; + buffer[index + 1] = (size >> 8) & 0xff; + buffer[index + 2] = (size >> 16) & 0xff; + buffer[index + 3] = (size >> 24) & 0xff; + // Update index + index = index + 4 + size - 1; + // Write zero + buffer[index++] = 0; + return index; +} +function serializeCode(buffer, key, value, index, checkKeys, depth, serializeFunctions, ignoreUndefined, isArray) { + if (checkKeys === void 0) { checkKeys = false; } + if (depth === void 0) { depth = 0; } + if (serializeFunctions === void 0) { serializeFunctions = false; } + if (ignoreUndefined === void 0) { ignoreUndefined = true; } + if (isArray === void 0) { isArray = false; } + if (value.scope && typeof value.scope === 'object') { + // Write the type + buffer[index++] = BSON_DATA_CODE_W_SCOPE; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Starting index + var startIndex = index; + // Serialize the function + // Get the function string + var functionString = typeof value.code === 'string' ? value.code : value.code.toString(); + // Index adjustment + index = index + 4; + // Write string into buffer + var codeSize = buffer.write(functionString, index + 4, undefined, 'utf8') + 1; + // Write the size of the string to buffer + buffer[index] = codeSize & 0xff; + buffer[index + 1] = (codeSize >> 8) & 0xff; + buffer[index + 2] = (codeSize >> 16) & 0xff; + buffer[index + 3] = (codeSize >> 24) & 0xff; + // Write end 0 + buffer[index + 4 + codeSize - 1] = 0; + // Write the + index = index + codeSize + 4; + // + // Serialize the scope value + var endIndex = serializeInto(buffer, value.scope, checkKeys, index, depth + 1, serializeFunctions, ignoreUndefined); + index = endIndex - 1; + // Writ the total + var totalSize = endIndex - startIndex; + // Write the total size of the object + buffer[startIndex++] = totalSize & 0xff; + buffer[startIndex++] = (totalSize >> 8) & 0xff; + buffer[startIndex++] = (totalSize >> 16) & 0xff; + buffer[startIndex++] = (totalSize >> 24) & 0xff; + // Write trailing zero + buffer[index++] = 0; + } + else { + buffer[index++] = BSON_DATA_CODE; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Function string + var functionString = value.code.toString(); + // Write the string + var size = buffer.write(functionString, index + 4, undefined, 'utf8') + 1; + // Write the size of the string to buffer + buffer[index] = size & 0xff; + buffer[index + 1] = (size >> 8) & 0xff; + buffer[index + 2] = (size >> 16) & 0xff; + buffer[index + 3] = (size >> 24) & 0xff; + // Update index + index = index + 4 + size - 1; + // Write zero + buffer[index++] = 0; + } + return index; +} +function serializeBinary(buffer, key, value, index, isArray) { + // Write the type + buffer[index++] = BSON_DATA_BINARY; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Extract the buffer + var data = value.value(true); + // Calculate size + var size = value.position; + // Add the deprecated 02 type 4 bytes of size to total + if (value.sub_type === Binary.SUBTYPE_BYTE_ARRAY) + size = size + 4; + // Write the size of the string to buffer + buffer[index++] = size & 0xff; + buffer[index++] = (size >> 8) & 0xff; + buffer[index++] = (size >> 16) & 0xff; + buffer[index++] = (size >> 24) & 0xff; + // Write the subtype to the buffer + buffer[index++] = value.sub_type; + // If we have binary type 2 the 4 first bytes are the size + if (value.sub_type === Binary.SUBTYPE_BYTE_ARRAY) { + size = size - 4; + buffer[index++] = size & 0xff; + buffer[index++] = (size >> 8) & 0xff; + buffer[index++] = (size >> 16) & 0xff; + buffer[index++] = (size >> 24) & 0xff; + } + // Write the data to the object + buffer.set(data, index); + // Adjust the index + index = index + value.position; + return index; +} +function serializeSymbol(buffer, key, value, index, isArray) { + // Write the type + buffer[index++] = BSON_DATA_SYMBOL; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Write the string + var size = buffer.write(value.value, index + 4, undefined, 'utf8') + 1; + // Write the size of the string to buffer + buffer[index] = size & 0xff; + buffer[index + 1] = (size >> 8) & 0xff; + buffer[index + 2] = (size >> 16) & 0xff; + buffer[index + 3] = (size >> 24) & 0xff; + // Update index + index = index + 4 + size - 1; + // Write zero + buffer[index++] = 0x00; + return index; +} +function serializeDBRef(buffer, key, value, index, depth, serializeFunctions, isArray) { + // Write the type + buffer[index++] = BSON_DATA_OBJECT; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + var startIndex = index; + var output = { + $ref: value.collection || value.namespace, + $id: value.oid + }; + if (value.db != null) { + output.$db = value.db; + } + output = Object.assign(output, value.fields); + var endIndex = serializeInto(buffer, output, false, index, depth + 1, serializeFunctions); + // Calculate object size + var size = endIndex - startIndex; + // Write the size + buffer[startIndex++] = size & 0xff; + buffer[startIndex++] = (size >> 8) & 0xff; + buffer[startIndex++] = (size >> 16) & 0xff; + buffer[startIndex++] = (size >> 24) & 0xff; + // Set index + return endIndex; +} +function serializeInto(buffer, object, checkKeys, startingIndex, depth, serializeFunctions, ignoreUndefined, path) { + if (checkKeys === void 0) { checkKeys = false; } + if (startingIndex === void 0) { startingIndex = 0; } + if (depth === void 0) { depth = 0; } + if (serializeFunctions === void 0) { serializeFunctions = false; } + if (ignoreUndefined === void 0) { ignoreUndefined = true; } + if (path === void 0) { path = []; } + startingIndex = startingIndex || 0; + path = path || []; + // Push the object to the path + path.push(object); + // Start place to serialize into + var index = startingIndex + 4; + // Special case isArray + if (Array.isArray(object)) { + // Get object keys + for (var i = 0; i < object.length; i++) { + var key = "".concat(i); + var value = object[i]; + // Is there an override value + if (typeof (value === null || value === void 0 ? void 0 : value.toBSON) === 'function') { + value = value.toBSON(); + } + if (typeof value === 'string') { + index = serializeString(buffer, key, value, index, true); + } + else if (typeof value === 'number') { + index = serializeNumber(buffer, key, value, index, true); + } + else if (typeof value === 'bigint') { + throw new BSONTypeError('Unsupported type BigInt, please use Decimal128'); + } + else if (typeof value === 'boolean') { + index = serializeBoolean(buffer, key, value, index, true); + } + else if (value instanceof Date || isDate(value)) { + index = serializeDate(buffer, key, value, index, true); + } + else if (value === undefined) { + index = serializeNull(buffer, key, value, index, true); + } + else if (value === null) { + index = serializeNull(buffer, key, value, index, true); + } + else if (value['_bsontype'] === 'ObjectId' || value['_bsontype'] === 'ObjectID') { + index = serializeObjectId(buffer, key, value, index, true); + } + else if (isUint8Array(value)) { + index = serializeBuffer(buffer, key, value, index, true); + } + else if (value instanceof RegExp || isRegExp(value)) { + index = serializeRegExp(buffer, key, value, index, true); + } + else if (typeof value === 'object' && value['_bsontype'] == null) { + index = serializeObject(buffer, key, value, index, checkKeys, depth, serializeFunctions, ignoreUndefined, true, path); + } + else if (typeof value === 'object' && + isBSONType(value) && + value._bsontype === 'Decimal128') { + index = serializeDecimal128(buffer, key, value, index, true); + } + else if (value['_bsontype'] === 'Long' || value['_bsontype'] === 'Timestamp') { + index = serializeLong(buffer, key, value, index, true); + } + else if (value['_bsontype'] === 'Double') { + index = serializeDouble(buffer, key, value, index, true); + } + else if (typeof value === 'function' && serializeFunctions) { + index = serializeFunction(buffer, key, value, index, checkKeys, depth, true); + } + else if (value['_bsontype'] === 'Code') { + index = serializeCode(buffer, key, value, index, checkKeys, depth, serializeFunctions, ignoreUndefined, true); + } + else if (value['_bsontype'] === 'Binary') { + index = serializeBinary(buffer, key, value, index, true); + } + else if (value['_bsontype'] === 'Symbol') { + index = serializeSymbol(buffer, key, value, index, true); + } + else if (value['_bsontype'] === 'DBRef') { + index = serializeDBRef(buffer, key, value, index, depth, serializeFunctions, true); + } + else if (value['_bsontype'] === 'BSONRegExp') { + index = serializeBSONRegExp(buffer, key, value, index, true); + } + else if (value['_bsontype'] === 'Int32') { + index = serializeInt32(buffer, key, value, index, true); + } + else if (value['_bsontype'] === 'MinKey' || value['_bsontype'] === 'MaxKey') { + index = serializeMinMax(buffer, key, value, index, true); + } + else if (typeof value['_bsontype'] !== 'undefined') { + throw new BSONTypeError("Unrecognized or invalid _bsontype: ".concat(String(value['_bsontype']))); + } + } + } + else if (object instanceof bsonMap || isMap(object)) { + var iterator = object.entries(); + var done = false; + while (!done) { + // Unpack the next entry + var entry = iterator.next(); + done = !!entry.done; + // Are we done, then skip and terminate + if (done) + continue; + // Get the entry values + var key = entry.value[0]; + var value = entry.value[1]; + // Check the type of the value + var type = typeof value; + // Check the key and throw error if it's illegal + if (typeof key === 'string' && !ignoreKeys.has(key)) { + if (key.match(regexp) != null) { + // The BSON spec doesn't allow keys with null bytes because keys are + // null-terminated. + throw Error('key ' + key + ' must not contain null bytes'); + } + if (checkKeys) { + if ('$' === key[0]) { + throw Error('key ' + key + " must not start with '$'"); + } + else if (~key.indexOf('.')) { + throw Error('key ' + key + " must not contain '.'"); + } + } + } + if (type === 'string') { + index = serializeString(buffer, key, value, index); + } + else if (type === 'number') { + index = serializeNumber(buffer, key, value, index); + } + else if (type === 'bigint' || isBigInt64Array(value) || isBigUInt64Array(value)) { + throw new BSONTypeError('Unsupported type BigInt, please use Decimal128'); + } + else if (type === 'boolean') { + index = serializeBoolean(buffer, key, value, index); + } + else if (value instanceof Date || isDate(value)) { + index = serializeDate(buffer, key, value, index); + } + else if (value === null || (value === undefined && ignoreUndefined === false)) { + index = serializeNull(buffer, key, value, index); + } + else if (value['_bsontype'] === 'ObjectId' || value['_bsontype'] === 'ObjectID') { + index = serializeObjectId(buffer, key, value, index); + } + else if (isUint8Array(value)) { + index = serializeBuffer(buffer, key, value, index); + } + else if (value instanceof RegExp || isRegExp(value)) { + index = serializeRegExp(buffer, key, value, index); + } + else if (type === 'object' && value['_bsontype'] == null) { + index = serializeObject(buffer, key, value, index, checkKeys, depth, serializeFunctions, ignoreUndefined, false, path); + } + else if (type === 'object' && value['_bsontype'] === 'Decimal128') { + index = serializeDecimal128(buffer, key, value, index); + } + else if (value['_bsontype'] === 'Long' || value['_bsontype'] === 'Timestamp') { + index = serializeLong(buffer, key, value, index); + } + else if (value['_bsontype'] === 'Double') { + index = serializeDouble(buffer, key, value, index); + } + else if (value['_bsontype'] === 'Code') { + index = serializeCode(buffer, key, value, index, checkKeys, depth, serializeFunctions, ignoreUndefined); + } + else if (typeof value === 'function' && serializeFunctions) { + index = serializeFunction(buffer, key, value, index, checkKeys, depth, serializeFunctions); + } + else if (value['_bsontype'] === 'Binary') { + index = serializeBinary(buffer, key, value, index); + } + else if (value['_bsontype'] === 'Symbol') { + index = serializeSymbol(buffer, key, value, index); + } + else if (value['_bsontype'] === 'DBRef') { + index = serializeDBRef(buffer, key, value, index, depth, serializeFunctions); + } + else if (value['_bsontype'] === 'BSONRegExp') { + index = serializeBSONRegExp(buffer, key, value, index); + } + else if (value['_bsontype'] === 'Int32') { + index = serializeInt32(buffer, key, value, index); + } + else if (value['_bsontype'] === 'MinKey' || value['_bsontype'] === 'MaxKey') { + index = serializeMinMax(buffer, key, value, index); + } + else if (typeof value['_bsontype'] !== 'undefined') { + throw new BSONTypeError("Unrecognized or invalid _bsontype: ".concat(String(value['_bsontype']))); + } + } + } + else { + if (typeof (object === null || object === void 0 ? void 0 : object.toBSON) === 'function') { + // Provided a custom serialization method + object = object.toBSON(); + if (object != null && typeof object !== 'object') { + throw new BSONTypeError('toBSON function did not return an object'); + } + } + // Iterate over all the keys + for (var key in object) { + var value = object[key]; + // Is there an override value + if (typeof (value === null || value === void 0 ? void 0 : value.toBSON) === 'function') { + value = value.toBSON(); + } + // Check the type of the value + var type = typeof value; + // Check the key and throw error if it's illegal + if (typeof key === 'string' && !ignoreKeys.has(key)) { + if (key.match(regexp) != null) { + // The BSON spec doesn't allow keys with null bytes because keys are + // null-terminated. + throw Error('key ' + key + ' must not contain null bytes'); + } + if (checkKeys) { + if ('$' === key[0]) { + throw Error('key ' + key + " must not start with '$'"); + } + else if (~key.indexOf('.')) { + throw Error('key ' + key + " must not contain '.'"); + } + } + } + if (type === 'string') { + index = serializeString(buffer, key, value, index); + } + else if (type === 'number') { + index = serializeNumber(buffer, key, value, index); + } + else if (type === 'bigint') { + throw new BSONTypeError('Unsupported type BigInt, please use Decimal128'); + } + else if (type === 'boolean') { + index = serializeBoolean(buffer, key, value, index); + } + else if (value instanceof Date || isDate(value)) { + index = serializeDate(buffer, key, value, index); + } + else if (value === undefined) { + if (ignoreUndefined === false) + index = serializeNull(buffer, key, value, index); + } + else if (value === null) { + index = serializeNull(buffer, key, value, index); + } + else if (value['_bsontype'] === 'ObjectId' || value['_bsontype'] === 'ObjectID') { + index = serializeObjectId(buffer, key, value, index); + } + else if (isUint8Array(value)) { + index = serializeBuffer(buffer, key, value, index); + } + else if (value instanceof RegExp || isRegExp(value)) { + index = serializeRegExp(buffer, key, value, index); + } + else if (type === 'object' && value['_bsontype'] == null) { + index = serializeObject(buffer, key, value, index, checkKeys, depth, serializeFunctions, ignoreUndefined, false, path); + } + else if (type === 'object' && value['_bsontype'] === 'Decimal128') { + index = serializeDecimal128(buffer, key, value, index); + } + else if (value['_bsontype'] === 'Long' || value['_bsontype'] === 'Timestamp') { + index = serializeLong(buffer, key, value, index); + } + else if (value['_bsontype'] === 'Double') { + index = serializeDouble(buffer, key, value, index); + } + else if (value['_bsontype'] === 'Code') { + index = serializeCode(buffer, key, value, index, checkKeys, depth, serializeFunctions, ignoreUndefined); + } + else if (typeof value === 'function' && serializeFunctions) { + index = serializeFunction(buffer, key, value, index, checkKeys, depth, serializeFunctions); + } + else if (value['_bsontype'] === 'Binary') { + index = serializeBinary(buffer, key, value, index); + } + else if (value['_bsontype'] === 'Symbol') { + index = serializeSymbol(buffer, key, value, index); + } + else if (value['_bsontype'] === 'DBRef') { + index = serializeDBRef(buffer, key, value, index, depth, serializeFunctions); + } + else if (value['_bsontype'] === 'BSONRegExp') { + index = serializeBSONRegExp(buffer, key, value, index); + } + else if (value['_bsontype'] === 'Int32') { + index = serializeInt32(buffer, key, value, index); + } + else if (value['_bsontype'] === 'MinKey' || value['_bsontype'] === 'MaxKey') { + index = serializeMinMax(buffer, key, value, index); + } + else if (typeof value['_bsontype'] !== 'undefined') { + throw new BSONTypeError("Unrecognized or invalid _bsontype: ".concat(String(value['_bsontype']))); + } + } + } + // Remove the path + path.pop(); + // Final padding byte for object + buffer[index++] = 0x00; + // Final size + var size = index - startingIndex; + // Write the size of the object + buffer[startingIndex++] = size & 0xff; + buffer[startingIndex++] = (size >> 8) & 0xff; + buffer[startingIndex++] = (size >> 16) & 0xff; + buffer[startingIndex++] = (size >> 24) & 0xff; + return index; +} + +/** @internal */ +// Default Max Size +var MAXSIZE = 1024 * 1024 * 17; +// Current Internal Temporary Serialization Buffer +var buffer = Buffer.alloc(MAXSIZE); +/** + * Sets the size of the internal serialization buffer. + * + * @param size - The desired size for the internal serialization buffer + * @public + */ +function setInternalBufferSize(size) { + // Resize the internal serialization buffer if needed + if (buffer.length < size) { + buffer = Buffer.alloc(size); + } +} +/** + * Serialize a Javascript object. + * + * @param object - the Javascript object to serialize. + * @returns Buffer object containing the serialized object. + * @public + */ +function serialize(object, options) { + if (options === void 0) { options = {}; } + // Unpack the options + var checkKeys = typeof options.checkKeys === 'boolean' ? options.checkKeys : false; + var serializeFunctions = typeof options.serializeFunctions === 'boolean' ? options.serializeFunctions : false; + var ignoreUndefined = typeof options.ignoreUndefined === 'boolean' ? options.ignoreUndefined : true; + var minInternalBufferSize = typeof options.minInternalBufferSize === 'number' ? options.minInternalBufferSize : MAXSIZE; + // Resize the internal serialization buffer if needed + if (buffer.length < minInternalBufferSize) { + buffer = Buffer.alloc(minInternalBufferSize); + } + // Attempt to serialize + var serializationIndex = serializeInto(buffer, object, checkKeys, 0, 0, serializeFunctions, ignoreUndefined, []); + // Create the final buffer + var finishedBuffer = Buffer.alloc(serializationIndex); + // Copy into the finished buffer + buffer.copy(finishedBuffer, 0, 0, finishedBuffer.length); + // Return the buffer + return finishedBuffer; +} +/** + * Serialize a Javascript object using a predefined Buffer and index into the buffer, + * useful when pre-allocating the space for serialization. + * + * @param object - the Javascript object to serialize. + * @param finalBuffer - the Buffer you pre-allocated to store the serialized BSON object. + * @returns the index pointing to the last written byte in the buffer. + * @public + */ +function serializeWithBufferAndIndex(object, finalBuffer, options) { + if (options === void 0) { options = {}; } + // Unpack the options + var checkKeys = typeof options.checkKeys === 'boolean' ? options.checkKeys : false; + var serializeFunctions = typeof options.serializeFunctions === 'boolean' ? options.serializeFunctions : false; + var ignoreUndefined = typeof options.ignoreUndefined === 'boolean' ? options.ignoreUndefined : true; + var startIndex = typeof options.index === 'number' ? options.index : 0; + // Attempt to serialize + var serializationIndex = serializeInto(buffer, object, checkKeys, 0, 0, serializeFunctions, ignoreUndefined); + buffer.copy(finalBuffer, startIndex, 0, serializationIndex); + // Return the index + return startIndex + serializationIndex - 1; +} +/** + * Deserialize data as BSON. + * + * @param buffer - the buffer containing the serialized set of BSON documents. + * @returns returns the deserialized Javascript Object. + * @public + */ +function deserialize(buffer, options) { + if (options === void 0) { options = {}; } + return deserialize$1(buffer instanceof Buffer ? buffer : ensureBuffer(buffer), options); +} +/** + * Calculate the bson size for a passed in Javascript object. + * + * @param object - the Javascript object to calculate the BSON byte size for + * @returns size of BSON object in bytes + * @public + */ +function calculateObjectSize(object, options) { + if (options === void 0) { options = {}; } + options = options || {}; + var serializeFunctions = typeof options.serializeFunctions === 'boolean' ? options.serializeFunctions : false; + var ignoreUndefined = typeof options.ignoreUndefined === 'boolean' ? options.ignoreUndefined : true; + return calculateObjectSize$1(object, serializeFunctions, ignoreUndefined); +} +/** + * Deserialize stream data as BSON documents. + * + * @param data - the buffer containing the serialized set of BSON documents. + * @param startIndex - the start index in the data Buffer where the deserialization is to start. + * @param numberOfDocuments - number of documents to deserialize. + * @param documents - an array where to store the deserialized documents. + * @param docStartIndex - the index in the documents array from where to start inserting documents. + * @param options - additional options used for the deserialization. + * @returns next index in the buffer after deserialization **x** numbers of documents. + * @public + */ +function deserializeStream(data, startIndex, numberOfDocuments, documents, docStartIndex, options) { + var internalOptions = Object.assign({ allowObjectSmallerThanBufferSize: true, index: 0 }, options); + var bufferData = ensureBuffer(data); + var index = startIndex; + // Loop over all documents + for (var i = 0; i < numberOfDocuments; i++) { + // Find size of the document + var size = bufferData[index] | + (bufferData[index + 1] << 8) | + (bufferData[index + 2] << 16) | + (bufferData[index + 3] << 24); + // Update options with index + internalOptions.index = index; + // Parse the document at this point + documents[docStartIndex + i] = deserialize$1(bufferData, internalOptions); + // Adjust index by the document size + index = index + size; + } + // Return object containing end index of parsing and list of documents + return index; +} +/** + * BSON default export + * @deprecated Please use named exports + * @privateRemarks + * We want to someday deprecate the default export, + * so none of the new TS types are being exported on the default + * @public + */ +var BSON = { + Binary: Binary, + Code: Code, + DBRef: DBRef, + Decimal128: Decimal128, + Double: Double, + Int32: Int32, + Long: Long, + UUID: UUID, + Map: bsonMap, + MaxKey: MaxKey, + MinKey: MinKey, + ObjectId: ObjectId, + ObjectID: ObjectId, + BSONRegExp: BSONRegExp, + BSONSymbol: BSONSymbol, + Timestamp: Timestamp, + EJSON: EJSON, + setInternalBufferSize: setInternalBufferSize, + serialize: serialize, + serializeWithBufferAndIndex: serializeWithBufferAndIndex, + deserialize: deserialize, + calculateObjectSize: calculateObjectSize, + deserializeStream: deserializeStream, + BSONError: BSONError, + BSONTypeError: BSONTypeError +}; + +export default BSON; +export { BSONError, BSONRegExp, BSONSymbol, BSONTypeError, BSON_BINARY_SUBTYPE_BYTE_ARRAY, BSON_BINARY_SUBTYPE_COLUMN, BSON_BINARY_SUBTYPE_DEFAULT, BSON_BINARY_SUBTYPE_ENCRYPTED, BSON_BINARY_SUBTYPE_FUNCTION, BSON_BINARY_SUBTYPE_MD5, BSON_BINARY_SUBTYPE_USER_DEFINED, BSON_BINARY_SUBTYPE_UUID, BSON_BINARY_SUBTYPE_UUID_NEW, BSON_DATA_ARRAY, BSON_DATA_BINARY, BSON_DATA_BOOLEAN, BSON_DATA_CODE, BSON_DATA_CODE_W_SCOPE, BSON_DATA_DATE, BSON_DATA_DBPOINTER, BSON_DATA_DECIMAL128, BSON_DATA_INT, BSON_DATA_LONG, BSON_DATA_MAX_KEY, BSON_DATA_MIN_KEY, BSON_DATA_NULL, BSON_DATA_NUMBER, BSON_DATA_OBJECT, BSON_DATA_OID, BSON_DATA_REGEXP, BSON_DATA_STRING, BSON_DATA_SYMBOL, BSON_DATA_TIMESTAMP, BSON_DATA_UNDEFINED, BSON_INT32_MAX$1 as BSON_INT32_MAX, BSON_INT32_MIN$1 as BSON_INT32_MIN, BSON_INT64_MAX$1 as BSON_INT64_MAX, BSON_INT64_MIN$1 as BSON_INT64_MIN, Binary, Code, DBRef, Decimal128, Double, EJSON, Int32, Long, LongWithoutOverridesClass, bsonMap as Map, MaxKey, MinKey, ObjectId as ObjectID, ObjectId, Timestamp, UUID, calculateObjectSize, deserialize, deserializeStream, serialize, serializeWithBufferAndIndex, setInternalBufferSize }; +//# sourceMappingURL=bson.esm.js.map diff --git a/node_modules/bson/dist/bson.esm.js.map b/node_modules/bson/dist/bson.esm.js.map new file mode 100644 index 000000000..c1919da83 --- /dev/null +++ b/node_modules/bson/dist/bson.esm.js.map @@ -0,0 +1 @@ +{"version":3,"file":"bson.esm.js","sources":["../node_modules/tslib/tslib.es6.js","../src/error.ts","../src/utils/global.ts","../src/parser/utils.ts","../src/ensure_buffer.ts","../src/uuid_utils.ts","../src/constants.ts","../src/binary.ts","../src/code.ts","../src/db_ref.ts","../src/long.ts","../src/decimal128.ts","../src/double.ts","../src/int_32.ts","../src/max_key.ts","../src/min_key.ts","../src/objectid.ts","../src/regexp.ts","../src/symbol.ts","../src/timestamp.ts","../src/extended_json.ts","../src/map.ts","../src/parser/calculate_size.ts","../src/validate_utf8.ts","../src/parser/deserializer.ts","../src/parser/serializer.ts","../src/bson.ts"],"sourcesContent":["/*! *****************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nexport function __extends(d, b) {\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nexport var __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nexport function __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nexport function __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nexport function __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nexport function __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nexport function __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nexport function __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (_) try {\r\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nexport function __createBinding(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n}\r\n\r\nexport function __exportStar(m, exports) {\r\n for (var p in m) if (p !== \"default\" && !exports.hasOwnProperty(p)) exports[p] = m[p];\r\n}\r\n\r\nexport function __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nexport function __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\nexport function __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\nexport function __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n};\r\n\r\nexport function __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nexport function __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nexport function __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === \"return\" } : f ? f(v) : v; } : f; }\r\n}\r\n\r\nexport function __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n return m ? m.call(o) : (o = typeof __values === \"function\" ? __values(o) : o[Symbol.iterator](), i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i);\r\n function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nexport function __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nexport function __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];\r\n result.default = mod;\r\n return result;\r\n}\r\n\r\nexport function __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nexport function __classPrivateFieldGet(receiver, privateMap) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to get private field on non-instance\");\r\n }\r\n return privateMap.get(receiver);\r\n}\r\n\r\nexport function __classPrivateFieldSet(receiver, privateMap, value) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to set private field on non-instance\");\r\n }\r\n privateMap.set(receiver, value);\r\n return value;\r\n}\r\n",null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"names":["extendStatics","d","b","Object","setPrototypeOf","__proto__","Array","p","hasOwnProperty","__extends","__","constructor","prototype","create","__assign","assign","t","s","i","n","arguments","length","call","apply","BSON_INT32_MAX","BSON_INT32_MIN","BSON_INT64_MAX","BSON_INT64_MIN","calculateObjectSize","constants.JS_INT_MIN","constants.JS_INT_MAX","constants.BSON_INT32_MIN","constants.BSON_INT32_MAX","deserialize","constants.BSON_DATA_STRING","constants.BSON_DATA_OID","constants.BSON_DATA_INT","constants.BSON_DATA_NUMBER","constants.BSON_DATA_DATE","constants.BSON_DATA_BOOLEAN","constants.BSON_DATA_OBJECT","constants.BSON_DATA_ARRAY","constants.BSON_DATA_UNDEFINED","constants.BSON_DATA_NULL","constants.BSON_DATA_LONG","constants.BSON_DATA_DECIMAL128","constants.BSON_DATA_BINARY","constants.BSON_BINARY_SUBTYPE_UUID_NEW","constants.BSON_DATA_REGEXP","constants.BSON_DATA_SYMBOL","constants.BSON_DATA_TIMESTAMP","constants.BSON_DATA_MIN_KEY","constants.BSON_DATA_MAX_KEY","constants.BSON_DATA_CODE","constants.BSON_DATA_CODE_W_SCOPE","constants.BSON_DATA_DBPOINTER","constants.BSON_BINARY_SUBTYPE_DEFAULT","Map","internalSerialize","internalDeserialize","internalCalculateObjectSize"],"mappings":"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,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG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"} \ No newline at end of file diff --git a/node_modules/bson/etc/prepare.js b/node_modules/bson/etc/prepare.js new file mode 100644 index 000000000..91e6f3a97 --- /dev/null +++ b/node_modules/bson/etc/prepare.js @@ -0,0 +1,19 @@ +#! /usr/bin/env node +var cp = require('child_process'); +var fs = require('fs'); + +var nodeMajorVersion = +process.version.match(/^v(\d+)\.\d+/)[1]; + +if (fs.existsSync('src') && nodeMajorVersion >= 10) { + cp.spawnSync('npm', ['run', 'build'], { stdio: 'inherit', shell: true }); +} else { + if (!fs.existsSync('lib')) { + console.warn('BSON: No compiled javascript present, the library is not installed correctly.'); + if (nodeMajorVersion < 10) { + console.warn( + 'This library can only be compiled in nodejs version 10 or later, currently running: ' + + nodeMajorVersion + ); + } + } +} diff --git a/node_modules/bson/lib/binary.js b/node_modules/bson/lib/binary.js new file mode 100644 index 000000000..39e13422e --- /dev/null +++ b/node_modules/bson/lib/binary.js @@ -0,0 +1,426 @@ +"use strict"; +var __extends = (this && this.__extends) || (function () { + var extendStatics = function (d, b) { + extendStatics = Object.setPrototypeOf || + ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || + function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; }; + return extendStatics(d, b); + }; + return function (d, b) { + if (typeof b !== "function" && b !== null) + throw new TypeError("Class extends value " + String(b) + " is not a constructor or null"); + extendStatics(d, b); + function __() { this.constructor = d; } + d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.UUID = exports.Binary = void 0; +var buffer_1 = require("buffer"); +var ensure_buffer_1 = require("./ensure_buffer"); +var uuid_utils_1 = require("./uuid_utils"); +var utils_1 = require("./parser/utils"); +var error_1 = require("./error"); +var constants_1 = require("./constants"); +/** + * A class representation of the BSON Binary type. + * @public + * @category BSONType + */ +var Binary = /** @class */ (function () { + /** + * Create a new Binary instance. + * + * This constructor can accept a string as its first argument. In this case, + * this string will be encoded using ISO-8859-1, **not** using UTF-8. + * This is almost certainly not what you want. Use `new Binary(Buffer.from(string))` + * instead to convert the string to a Buffer using UTF-8 first. + * + * @param buffer - a buffer object containing the binary data. + * @param subType - the option binary type. + */ + function Binary(buffer, subType) { + if (!(this instanceof Binary)) + return new Binary(buffer, subType); + if (!(buffer == null) && + !(typeof buffer === 'string') && + !ArrayBuffer.isView(buffer) && + !(buffer instanceof ArrayBuffer) && + !Array.isArray(buffer)) { + throw new error_1.BSONTypeError('Binary can only be constructed from string, Buffer, TypedArray, or Array'); + } + this.sub_type = subType !== null && subType !== void 0 ? subType : Binary.BSON_BINARY_SUBTYPE_DEFAULT; + if (buffer == null) { + // create an empty binary buffer + this.buffer = buffer_1.Buffer.alloc(Binary.BUFFER_SIZE); + this.position = 0; + } + else { + if (typeof buffer === 'string') { + // string + this.buffer = buffer_1.Buffer.from(buffer, 'binary'); + } + else if (Array.isArray(buffer)) { + // number[] + this.buffer = buffer_1.Buffer.from(buffer); + } + else { + // Buffer | TypedArray | ArrayBuffer + this.buffer = (0, ensure_buffer_1.ensureBuffer)(buffer); + } + this.position = this.buffer.byteLength; + } + } + /** + * Updates this binary with byte_value. + * + * @param byteValue - a single byte we wish to write. + */ + Binary.prototype.put = function (byteValue) { + // If it's a string and a has more than one character throw an error + if (typeof byteValue === 'string' && byteValue.length !== 1) { + throw new error_1.BSONTypeError('only accepts single character String'); + } + else if (typeof byteValue !== 'number' && byteValue.length !== 1) + throw new error_1.BSONTypeError('only accepts single character Uint8Array or Array'); + // Decode the byte value once + var decodedByte; + if (typeof byteValue === 'string') { + decodedByte = byteValue.charCodeAt(0); + } + else if (typeof byteValue === 'number') { + decodedByte = byteValue; + } + else { + decodedByte = byteValue[0]; + } + if (decodedByte < 0 || decodedByte > 255) { + throw new error_1.BSONTypeError('only accepts number in a valid unsigned byte range 0-255'); + } + if (this.buffer.length > this.position) { + this.buffer[this.position++] = decodedByte; + } + else { + var buffer = buffer_1.Buffer.alloc(Binary.BUFFER_SIZE + this.buffer.length); + // Combine the two buffers together + this.buffer.copy(buffer, 0, 0, this.buffer.length); + this.buffer = buffer; + this.buffer[this.position++] = decodedByte; + } + }; + /** + * Writes a buffer or string to the binary. + * + * @param sequence - a string or buffer to be written to the Binary BSON object. + * @param offset - specify the binary of where to write the content. + */ + Binary.prototype.write = function (sequence, offset) { + offset = typeof offset === 'number' ? offset : this.position; + // If the buffer is to small let's extend the buffer + if (this.buffer.length < offset + sequence.length) { + var buffer = buffer_1.Buffer.alloc(this.buffer.length + sequence.length); + this.buffer.copy(buffer, 0, 0, this.buffer.length); + // Assign the new buffer + this.buffer = buffer; + } + if (ArrayBuffer.isView(sequence)) { + this.buffer.set((0, ensure_buffer_1.ensureBuffer)(sequence), offset); + this.position = + offset + sequence.byteLength > this.position ? offset + sequence.length : this.position; + } + else if (typeof sequence === 'string') { + this.buffer.write(sequence, offset, sequence.length, 'binary'); + this.position = + offset + sequence.length > this.position ? offset + sequence.length : this.position; + } + }; + /** + * Reads **length** bytes starting at **position**. + * + * @param position - read from the given position in the Binary. + * @param length - the number of bytes to read. + */ + Binary.prototype.read = function (position, length) { + length = length && length > 0 ? length : this.position; + // Let's return the data based on the type we have + return this.buffer.slice(position, position + length); + }; + /** + * Returns the value of this binary as a string. + * @param asRaw - Will skip converting to a string + * @remarks + * This is handy when calling this function conditionally for some key value pairs and not others + */ + Binary.prototype.value = function (asRaw) { + asRaw = !!asRaw; + // Optimize to serialize for the situation where the data == size of buffer + if (asRaw && this.buffer.length === this.position) { + return this.buffer; + } + // If it's a node.js buffer object + if (asRaw) { + return this.buffer.slice(0, this.position); + } + return this.buffer.toString('binary', 0, this.position); + }; + /** the length of the binary sequence */ + Binary.prototype.length = function () { + return this.position; + }; + Binary.prototype.toJSON = function () { + return this.buffer.toString('base64'); + }; + Binary.prototype.toString = function (format) { + return this.buffer.toString(format); + }; + /** @internal */ + Binary.prototype.toExtendedJSON = function (options) { + options = options || {}; + var base64String = this.buffer.toString('base64'); + var subType = Number(this.sub_type).toString(16); + if (options.legacy) { + return { + $binary: base64String, + $type: subType.length === 1 ? '0' + subType : subType + }; + } + return { + $binary: { + base64: base64String, + subType: subType.length === 1 ? '0' + subType : subType + } + }; + }; + Binary.prototype.toUUID = function () { + if (this.sub_type === Binary.SUBTYPE_UUID) { + return new UUID(this.buffer.slice(0, this.position)); + } + throw new error_1.BSONError("Binary sub_type \"".concat(this.sub_type, "\" is not supported for converting to UUID. Only \"").concat(Binary.SUBTYPE_UUID, "\" is currently supported.")); + }; + /** @internal */ + Binary.fromExtendedJSON = function (doc, options) { + options = options || {}; + var data; + var type; + if ('$binary' in doc) { + if (options.legacy && typeof doc.$binary === 'string' && '$type' in doc) { + type = doc.$type ? parseInt(doc.$type, 16) : 0; + data = buffer_1.Buffer.from(doc.$binary, 'base64'); + } + else { + if (typeof doc.$binary !== 'string') { + type = doc.$binary.subType ? parseInt(doc.$binary.subType, 16) : 0; + data = buffer_1.Buffer.from(doc.$binary.base64, 'base64'); + } + } + } + else if ('$uuid' in doc) { + type = 4; + data = (0, uuid_utils_1.uuidHexStringToBuffer)(doc.$uuid); + } + if (!data) { + throw new error_1.BSONTypeError("Unexpected Binary Extended JSON format ".concat(JSON.stringify(doc))); + } + return type === constants_1.BSON_BINARY_SUBTYPE_UUID_NEW ? new UUID(data) : new Binary(data, type); + }; + /** @internal */ + Binary.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () { + return this.inspect(); + }; + Binary.prototype.inspect = function () { + var asBuffer = this.value(true); + return "new Binary(Buffer.from(\"".concat(asBuffer.toString('hex'), "\", \"hex\"), ").concat(this.sub_type, ")"); + }; + /** + * Binary default subtype + * @internal + */ + Binary.BSON_BINARY_SUBTYPE_DEFAULT = 0; + /** Initial buffer default size */ + Binary.BUFFER_SIZE = 256; + /** Default BSON type */ + Binary.SUBTYPE_DEFAULT = 0; + /** Function BSON type */ + Binary.SUBTYPE_FUNCTION = 1; + /** Byte Array BSON type */ + Binary.SUBTYPE_BYTE_ARRAY = 2; + /** Deprecated UUID BSON type @deprecated Please use SUBTYPE_UUID */ + Binary.SUBTYPE_UUID_OLD = 3; + /** UUID BSON type */ + Binary.SUBTYPE_UUID = 4; + /** MD5 BSON type */ + Binary.SUBTYPE_MD5 = 5; + /** Encrypted BSON type */ + Binary.SUBTYPE_ENCRYPTED = 6; + /** Column BSON type */ + Binary.SUBTYPE_COLUMN = 7; + /** User BSON type */ + Binary.SUBTYPE_USER_DEFINED = 128; + return Binary; +}()); +exports.Binary = Binary; +Object.defineProperty(Binary.prototype, '_bsontype', { value: 'Binary' }); +var UUID_BYTE_LENGTH = 16; +/** + * A class representation of the BSON UUID type. + * @public + */ +var UUID = /** @class */ (function (_super) { + __extends(UUID, _super); + /** + * Create an UUID type + * + * @param input - Can be a 32 or 36 character hex string (dashes excluded/included) or a 16 byte binary Buffer. + */ + function UUID(input) { + var _this = this; + var bytes; + var hexStr; + if (input == null) { + bytes = UUID.generate(); + } + else if (input instanceof UUID) { + bytes = buffer_1.Buffer.from(input.buffer); + hexStr = input.__id; + } + else if (ArrayBuffer.isView(input) && input.byteLength === UUID_BYTE_LENGTH) { + bytes = (0, ensure_buffer_1.ensureBuffer)(input); + } + else if (typeof input === 'string') { + bytes = (0, uuid_utils_1.uuidHexStringToBuffer)(input); + } + else { + throw new error_1.BSONTypeError('Argument passed in UUID constructor must be a UUID, a 16 byte Buffer or a 32/36 character hex string (dashes excluded/included, format: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx).'); + } + _this = _super.call(this, bytes, constants_1.BSON_BINARY_SUBTYPE_UUID_NEW) || this; + _this.__id = hexStr; + return _this; + } + Object.defineProperty(UUID.prototype, "id", { + /** + * The UUID bytes + * @readonly + */ + get: function () { + return this.buffer; + }, + set: function (value) { + this.buffer = value; + if (UUID.cacheHexString) { + this.__id = (0, uuid_utils_1.bufferToUuidHexString)(value); + } + }, + enumerable: false, + configurable: true + }); + /** + * Returns the UUID id as a 32 or 36 character hex string representation, excluding/including dashes (defaults to 36 character dash separated) + * @param includeDashes - should the string exclude dash-separators. + * */ + UUID.prototype.toHexString = function (includeDashes) { + if (includeDashes === void 0) { includeDashes = true; } + if (UUID.cacheHexString && this.__id) { + return this.__id; + } + var uuidHexString = (0, uuid_utils_1.bufferToUuidHexString)(this.id, includeDashes); + if (UUID.cacheHexString) { + this.__id = uuidHexString; + } + return uuidHexString; + }; + /** + * Converts the id into a 36 character (dashes included) hex string, unless a encoding is specified. + */ + UUID.prototype.toString = function (encoding) { + return encoding ? this.id.toString(encoding) : this.toHexString(); + }; + /** + * Converts the id into its JSON string representation. + * A 36 character (dashes included) hex string in the format: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx + */ + UUID.prototype.toJSON = function () { + return this.toHexString(); + }; + /** + * Compares the equality of this UUID with `otherID`. + * + * @param otherId - UUID instance to compare against. + */ + UUID.prototype.equals = function (otherId) { + if (!otherId) { + return false; + } + if (otherId instanceof UUID) { + return otherId.id.equals(this.id); + } + try { + return new UUID(otherId).id.equals(this.id); + } + catch (_a) { + return false; + } + }; + /** + * Creates a Binary instance from the current UUID. + */ + UUID.prototype.toBinary = function () { + return new Binary(this.id, Binary.SUBTYPE_UUID); + }; + /** + * Generates a populated buffer containing a v4 uuid + */ + UUID.generate = function () { + var bytes = (0, utils_1.randomBytes)(UUID_BYTE_LENGTH); + // Per 4.4, set bits for version and `clock_seq_hi_and_reserved` + // Kindly borrowed from https://github.com/uuidjs/uuid/blob/master/src/v4.js + bytes[6] = (bytes[6] & 0x0f) | 0x40; + bytes[8] = (bytes[8] & 0x3f) | 0x80; + return buffer_1.Buffer.from(bytes); + }; + /** + * Checks if a value is a valid bson UUID + * @param input - UUID, string or Buffer to validate. + */ + UUID.isValid = function (input) { + if (!input) { + return false; + } + if (input instanceof UUID) { + return true; + } + if (typeof input === 'string') { + return (0, uuid_utils_1.uuidValidateString)(input); + } + if ((0, utils_1.isUint8Array)(input)) { + // check for length & uuid version (https://tools.ietf.org/html/rfc4122#section-4.1.3) + if (input.length !== UUID_BYTE_LENGTH) { + return false; + } + return (input[6] & 0xf0) === 0x40 && (input[8] & 0x80) === 0x80; + } + return false; + }; + /** + * Creates an UUID from a hex string representation of an UUID. + * @param hexString - 32 or 36 character hex string (dashes excluded/included). + */ + UUID.createFromHexString = function (hexString) { + var buffer = (0, uuid_utils_1.uuidHexStringToBuffer)(hexString); + return new UUID(buffer); + }; + /** + * Converts to a string representation of this Id. + * + * @returns return the 36 character hex string representation. + * @internal + */ + UUID.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () { + return this.inspect(); + }; + UUID.prototype.inspect = function () { + return "new UUID(\"".concat(this.toHexString(), "\")"); + }; + return UUID; +}(Binary)); +exports.UUID = UUID; +//# sourceMappingURL=binary.js.map \ No newline at end of file diff --git a/node_modules/bson/lib/binary.js.map b/node_modules/bson/lib/binary.js.map new file mode 100644 index 000000000..412903a29 --- /dev/null +++ b/node_modules/bson/lib/binary.js.map @@ -0,0 +1 @@ +{"version":3,"file":"binary.js","sourceRoot":"","sources":["../src/binary.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/bson/lib/bson.js b/node_modules/bson/lib/bson.js new file mode 100644 index 000000000..265d4a0cb --- /dev/null +++ b/node_modules/bson/lib/bson.js @@ -0,0 +1,251 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.BSONRegExp = exports.MaxKey = exports.MinKey = exports.Int32 = exports.Double = exports.Timestamp = exports.Long = exports.UUID = exports.ObjectId = exports.Binary = exports.DBRef = exports.BSONSymbol = exports.Map = exports.Code = exports.LongWithoutOverridesClass = exports.EJSON = exports.BSON_INT64_MIN = exports.BSON_INT64_MAX = exports.BSON_INT32_MIN = exports.BSON_INT32_MAX = exports.BSON_DATA_UNDEFINED = exports.BSON_DATA_TIMESTAMP = exports.BSON_DATA_SYMBOL = exports.BSON_DATA_STRING = exports.BSON_DATA_REGEXP = exports.BSON_DATA_OID = exports.BSON_DATA_OBJECT = exports.BSON_DATA_NUMBER = exports.BSON_DATA_NULL = exports.BSON_DATA_MIN_KEY = exports.BSON_DATA_MAX_KEY = exports.BSON_DATA_LONG = exports.BSON_DATA_INT = exports.BSON_DATA_DECIMAL128 = exports.BSON_DATA_DBPOINTER = exports.BSON_DATA_DATE = exports.BSON_DATA_CODE_W_SCOPE = exports.BSON_DATA_CODE = exports.BSON_DATA_BOOLEAN = exports.BSON_DATA_BINARY = exports.BSON_DATA_ARRAY = exports.BSON_BINARY_SUBTYPE_COLUMN = exports.BSON_BINARY_SUBTYPE_ENCRYPTED = exports.BSON_BINARY_SUBTYPE_UUID_NEW = exports.BSON_BINARY_SUBTYPE_UUID = exports.BSON_BINARY_SUBTYPE_USER_DEFINED = exports.BSON_BINARY_SUBTYPE_MD5 = exports.BSON_BINARY_SUBTYPE_FUNCTION = exports.BSON_BINARY_SUBTYPE_DEFAULT = exports.BSON_BINARY_SUBTYPE_BYTE_ARRAY = void 0; +exports.deserializeStream = exports.calculateObjectSize = exports.deserialize = exports.serializeWithBufferAndIndex = exports.serialize = exports.setInternalBufferSize = exports.BSONTypeError = exports.BSONError = exports.ObjectID = exports.Decimal128 = void 0; +var buffer_1 = require("buffer"); +var binary_1 = require("./binary"); +Object.defineProperty(exports, "Binary", { enumerable: true, get: function () { return binary_1.Binary; } }); +Object.defineProperty(exports, "UUID", { enumerable: true, get: function () { return binary_1.UUID; } }); +var code_1 = require("./code"); +Object.defineProperty(exports, "Code", { enumerable: true, get: function () { return code_1.Code; } }); +var db_ref_1 = require("./db_ref"); +Object.defineProperty(exports, "DBRef", { enumerable: true, get: function () { return db_ref_1.DBRef; } }); +var decimal128_1 = require("./decimal128"); +Object.defineProperty(exports, "Decimal128", { enumerable: true, get: function () { return decimal128_1.Decimal128; } }); +var double_1 = require("./double"); +Object.defineProperty(exports, "Double", { enumerable: true, get: function () { return double_1.Double; } }); +var ensure_buffer_1 = require("./ensure_buffer"); +var extended_json_1 = require("./extended_json"); +var int_32_1 = require("./int_32"); +Object.defineProperty(exports, "Int32", { enumerable: true, get: function () { return int_32_1.Int32; } }); +var long_1 = require("./long"); +Object.defineProperty(exports, "Long", { enumerable: true, get: function () { return long_1.Long; } }); +var map_1 = require("./map"); +Object.defineProperty(exports, "Map", { enumerable: true, get: function () { return map_1.Map; } }); +var max_key_1 = require("./max_key"); +Object.defineProperty(exports, "MaxKey", { enumerable: true, get: function () { return max_key_1.MaxKey; } }); +var min_key_1 = require("./min_key"); +Object.defineProperty(exports, "MinKey", { enumerable: true, get: function () { return min_key_1.MinKey; } }); +var objectid_1 = require("./objectid"); +Object.defineProperty(exports, "ObjectId", { enumerable: true, get: function () { return objectid_1.ObjectId; } }); +Object.defineProperty(exports, "ObjectID", { enumerable: true, get: function () { return objectid_1.ObjectId; } }); +var error_1 = require("./error"); +var calculate_size_1 = require("./parser/calculate_size"); +// Parts of the parser +var deserializer_1 = require("./parser/deserializer"); +var serializer_1 = require("./parser/serializer"); +var regexp_1 = require("./regexp"); +Object.defineProperty(exports, "BSONRegExp", { enumerable: true, get: function () { return regexp_1.BSONRegExp; } }); +var symbol_1 = require("./symbol"); +Object.defineProperty(exports, "BSONSymbol", { enumerable: true, get: function () { return symbol_1.BSONSymbol; } }); +var timestamp_1 = require("./timestamp"); +Object.defineProperty(exports, "Timestamp", { enumerable: true, get: function () { return timestamp_1.Timestamp; } }); +var constants_1 = require("./constants"); +Object.defineProperty(exports, "BSON_BINARY_SUBTYPE_BYTE_ARRAY", { enumerable: true, get: function () { return constants_1.BSON_BINARY_SUBTYPE_BYTE_ARRAY; } }); +Object.defineProperty(exports, "BSON_BINARY_SUBTYPE_DEFAULT", { enumerable: true, get: function () { return constants_1.BSON_BINARY_SUBTYPE_DEFAULT; } }); +Object.defineProperty(exports, "BSON_BINARY_SUBTYPE_FUNCTION", { enumerable: true, get: function () { return constants_1.BSON_BINARY_SUBTYPE_FUNCTION; } }); +Object.defineProperty(exports, "BSON_BINARY_SUBTYPE_MD5", { enumerable: true, get: function () { return constants_1.BSON_BINARY_SUBTYPE_MD5; } }); +Object.defineProperty(exports, "BSON_BINARY_SUBTYPE_USER_DEFINED", { enumerable: true, get: function () { return constants_1.BSON_BINARY_SUBTYPE_USER_DEFINED; } }); +Object.defineProperty(exports, "BSON_BINARY_SUBTYPE_UUID", { enumerable: true, get: function () { return constants_1.BSON_BINARY_SUBTYPE_UUID; } }); +Object.defineProperty(exports, "BSON_BINARY_SUBTYPE_UUID_NEW", { enumerable: true, get: function () { return constants_1.BSON_BINARY_SUBTYPE_UUID_NEW; } }); +Object.defineProperty(exports, "BSON_BINARY_SUBTYPE_ENCRYPTED", { enumerable: true, get: function () { return constants_1.BSON_BINARY_SUBTYPE_ENCRYPTED; } }); +Object.defineProperty(exports, "BSON_BINARY_SUBTYPE_COLUMN", { enumerable: true, get: function () { return constants_1.BSON_BINARY_SUBTYPE_COLUMN; } }); +Object.defineProperty(exports, "BSON_DATA_ARRAY", { enumerable: true, get: function () { return constants_1.BSON_DATA_ARRAY; } }); +Object.defineProperty(exports, "BSON_DATA_BINARY", { enumerable: true, get: function () { return constants_1.BSON_DATA_BINARY; } }); +Object.defineProperty(exports, "BSON_DATA_BOOLEAN", { enumerable: true, get: function () { return constants_1.BSON_DATA_BOOLEAN; } }); +Object.defineProperty(exports, "BSON_DATA_CODE", { enumerable: true, get: function () { return constants_1.BSON_DATA_CODE; } }); +Object.defineProperty(exports, "BSON_DATA_CODE_W_SCOPE", { enumerable: true, get: function () { return constants_1.BSON_DATA_CODE_W_SCOPE; } }); +Object.defineProperty(exports, "BSON_DATA_DATE", { enumerable: true, get: function () { return constants_1.BSON_DATA_DATE; } }); +Object.defineProperty(exports, "BSON_DATA_DBPOINTER", { enumerable: true, get: function () { return constants_1.BSON_DATA_DBPOINTER; } }); +Object.defineProperty(exports, "BSON_DATA_DECIMAL128", { enumerable: true, get: function () { return constants_1.BSON_DATA_DECIMAL128; } }); +Object.defineProperty(exports, "BSON_DATA_INT", { enumerable: true, get: function () { return constants_1.BSON_DATA_INT; } }); +Object.defineProperty(exports, "BSON_DATA_LONG", { enumerable: true, get: function () { return constants_1.BSON_DATA_LONG; } }); +Object.defineProperty(exports, "BSON_DATA_MAX_KEY", { enumerable: true, get: function () { return constants_1.BSON_DATA_MAX_KEY; } }); +Object.defineProperty(exports, "BSON_DATA_MIN_KEY", { enumerable: true, get: function () { return constants_1.BSON_DATA_MIN_KEY; } }); +Object.defineProperty(exports, "BSON_DATA_NULL", { enumerable: true, get: function () { return constants_1.BSON_DATA_NULL; } }); +Object.defineProperty(exports, "BSON_DATA_NUMBER", { enumerable: true, get: function () { return constants_1.BSON_DATA_NUMBER; } }); +Object.defineProperty(exports, "BSON_DATA_OBJECT", { enumerable: true, get: function () { return constants_1.BSON_DATA_OBJECT; } }); +Object.defineProperty(exports, "BSON_DATA_OID", { enumerable: true, get: function () { return constants_1.BSON_DATA_OID; } }); +Object.defineProperty(exports, "BSON_DATA_REGEXP", { enumerable: true, get: function () { return constants_1.BSON_DATA_REGEXP; } }); +Object.defineProperty(exports, "BSON_DATA_STRING", { enumerable: true, get: function () { return constants_1.BSON_DATA_STRING; } }); +Object.defineProperty(exports, "BSON_DATA_SYMBOL", { enumerable: true, get: function () { return constants_1.BSON_DATA_SYMBOL; } }); +Object.defineProperty(exports, "BSON_DATA_TIMESTAMP", { enumerable: true, get: function () { return constants_1.BSON_DATA_TIMESTAMP; } }); +Object.defineProperty(exports, "BSON_DATA_UNDEFINED", { enumerable: true, get: function () { return constants_1.BSON_DATA_UNDEFINED; } }); +Object.defineProperty(exports, "BSON_INT32_MAX", { enumerable: true, get: function () { return constants_1.BSON_INT32_MAX; } }); +Object.defineProperty(exports, "BSON_INT32_MIN", { enumerable: true, get: function () { return constants_1.BSON_INT32_MIN; } }); +Object.defineProperty(exports, "BSON_INT64_MAX", { enumerable: true, get: function () { return constants_1.BSON_INT64_MAX; } }); +Object.defineProperty(exports, "BSON_INT64_MIN", { enumerable: true, get: function () { return constants_1.BSON_INT64_MIN; } }); +var extended_json_2 = require("./extended_json"); +Object.defineProperty(exports, "EJSON", { enumerable: true, get: function () { return extended_json_2.EJSON; } }); +var timestamp_2 = require("./timestamp"); +Object.defineProperty(exports, "LongWithoutOverridesClass", { enumerable: true, get: function () { return timestamp_2.LongWithoutOverridesClass; } }); +var error_2 = require("./error"); +Object.defineProperty(exports, "BSONError", { enumerable: true, get: function () { return error_2.BSONError; } }); +Object.defineProperty(exports, "BSONTypeError", { enumerable: true, get: function () { return error_2.BSONTypeError; } }); +/** @internal */ +// Default Max Size +var MAXSIZE = 1024 * 1024 * 17; +// Current Internal Temporary Serialization Buffer +var buffer = buffer_1.Buffer.alloc(MAXSIZE); +/** + * Sets the size of the internal serialization buffer. + * + * @param size - The desired size for the internal serialization buffer + * @public + */ +function setInternalBufferSize(size) { + // Resize the internal serialization buffer if needed + if (buffer.length < size) { + buffer = buffer_1.Buffer.alloc(size); + } +} +exports.setInternalBufferSize = setInternalBufferSize; +/** + * Serialize a Javascript object. + * + * @param object - the Javascript object to serialize. + * @returns Buffer object containing the serialized object. + * @public + */ +function serialize(object, options) { + if (options === void 0) { options = {}; } + // Unpack the options + var checkKeys = typeof options.checkKeys === 'boolean' ? options.checkKeys : false; + var serializeFunctions = typeof options.serializeFunctions === 'boolean' ? options.serializeFunctions : false; + var ignoreUndefined = typeof options.ignoreUndefined === 'boolean' ? options.ignoreUndefined : true; + var minInternalBufferSize = typeof options.minInternalBufferSize === 'number' ? options.minInternalBufferSize : MAXSIZE; + // Resize the internal serialization buffer if needed + if (buffer.length < minInternalBufferSize) { + buffer = buffer_1.Buffer.alloc(minInternalBufferSize); + } + // Attempt to serialize + var serializationIndex = (0, serializer_1.serializeInto)(buffer, object, checkKeys, 0, 0, serializeFunctions, ignoreUndefined, []); + // Create the final buffer + var finishedBuffer = buffer_1.Buffer.alloc(serializationIndex); + // Copy into the finished buffer + buffer.copy(finishedBuffer, 0, 0, finishedBuffer.length); + // Return the buffer + return finishedBuffer; +} +exports.serialize = serialize; +/** + * Serialize a Javascript object using a predefined Buffer and index into the buffer, + * useful when pre-allocating the space for serialization. + * + * @param object - the Javascript object to serialize. + * @param finalBuffer - the Buffer you pre-allocated to store the serialized BSON object. + * @returns the index pointing to the last written byte in the buffer. + * @public + */ +function serializeWithBufferAndIndex(object, finalBuffer, options) { + if (options === void 0) { options = {}; } + // Unpack the options + var checkKeys = typeof options.checkKeys === 'boolean' ? options.checkKeys : false; + var serializeFunctions = typeof options.serializeFunctions === 'boolean' ? options.serializeFunctions : false; + var ignoreUndefined = typeof options.ignoreUndefined === 'boolean' ? options.ignoreUndefined : true; + var startIndex = typeof options.index === 'number' ? options.index : 0; + // Attempt to serialize + var serializationIndex = (0, serializer_1.serializeInto)(buffer, object, checkKeys, 0, 0, serializeFunctions, ignoreUndefined); + buffer.copy(finalBuffer, startIndex, 0, serializationIndex); + // Return the index + return startIndex + serializationIndex - 1; +} +exports.serializeWithBufferAndIndex = serializeWithBufferAndIndex; +/** + * Deserialize data as BSON. + * + * @param buffer - the buffer containing the serialized set of BSON documents. + * @returns returns the deserialized Javascript Object. + * @public + */ +function deserialize(buffer, options) { + if (options === void 0) { options = {}; } + return (0, deserializer_1.deserialize)(buffer instanceof buffer_1.Buffer ? buffer : (0, ensure_buffer_1.ensureBuffer)(buffer), options); +} +exports.deserialize = deserialize; +/** + * Calculate the bson size for a passed in Javascript object. + * + * @param object - the Javascript object to calculate the BSON byte size for + * @returns size of BSON object in bytes + * @public + */ +function calculateObjectSize(object, options) { + if (options === void 0) { options = {}; } + options = options || {}; + var serializeFunctions = typeof options.serializeFunctions === 'boolean' ? options.serializeFunctions : false; + var ignoreUndefined = typeof options.ignoreUndefined === 'boolean' ? options.ignoreUndefined : true; + return (0, calculate_size_1.calculateObjectSize)(object, serializeFunctions, ignoreUndefined); +} +exports.calculateObjectSize = calculateObjectSize; +/** + * Deserialize stream data as BSON documents. + * + * @param data - the buffer containing the serialized set of BSON documents. + * @param startIndex - the start index in the data Buffer where the deserialization is to start. + * @param numberOfDocuments - number of documents to deserialize. + * @param documents - an array where to store the deserialized documents. + * @param docStartIndex - the index in the documents array from where to start inserting documents. + * @param options - additional options used for the deserialization. + * @returns next index in the buffer after deserialization **x** numbers of documents. + * @public + */ +function deserializeStream(data, startIndex, numberOfDocuments, documents, docStartIndex, options) { + var internalOptions = Object.assign({ allowObjectSmallerThanBufferSize: true, index: 0 }, options); + var bufferData = (0, ensure_buffer_1.ensureBuffer)(data); + var index = startIndex; + // Loop over all documents + for (var i = 0; i < numberOfDocuments; i++) { + // Find size of the document + var size = bufferData[index] | + (bufferData[index + 1] << 8) | + (bufferData[index + 2] << 16) | + (bufferData[index + 3] << 24); + // Update options with index + internalOptions.index = index; + // Parse the document at this point + documents[docStartIndex + i] = (0, deserializer_1.deserialize)(bufferData, internalOptions); + // Adjust index by the document size + index = index + size; + } + // Return object containing end index of parsing and list of documents + return index; +} +exports.deserializeStream = deserializeStream; +/** + * BSON default export + * @deprecated Please use named exports + * @privateRemarks + * We want to someday deprecate the default export, + * so none of the new TS types are being exported on the default + * @public + */ +var BSON = { + Binary: binary_1.Binary, + Code: code_1.Code, + DBRef: db_ref_1.DBRef, + Decimal128: decimal128_1.Decimal128, + Double: double_1.Double, + Int32: int_32_1.Int32, + Long: long_1.Long, + UUID: binary_1.UUID, + Map: map_1.Map, + MaxKey: max_key_1.MaxKey, + MinKey: min_key_1.MinKey, + ObjectId: objectid_1.ObjectId, + ObjectID: objectid_1.ObjectId, + BSONRegExp: regexp_1.BSONRegExp, + BSONSymbol: symbol_1.BSONSymbol, + Timestamp: timestamp_1.Timestamp, + EJSON: extended_json_1.EJSON, + setInternalBufferSize: setInternalBufferSize, + serialize: serialize, + serializeWithBufferAndIndex: serializeWithBufferAndIndex, + deserialize: deserialize, + calculateObjectSize: calculateObjectSize, + deserializeStream: deserializeStream, + BSONError: error_1.BSONError, + BSONTypeError: error_1.BSONTypeError +}; +exports.default = BSON; +//# sourceMappingURL=bson.js.map \ No newline at end of file diff --git a/node_modules/bson/lib/bson.js.map b/node_modules/bson/lib/bson.js.map new file mode 100644 index 000000000..cc4b5c374 --- /dev/null +++ b/node_modules/bson/lib/bson.js.map @@ -0,0 +1 @@ +{"version":3,"file":"bson.js","sourceRoot":"","sources":["../src/bson.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/bson/lib/code.js b/node_modules/bson/lib/code.js new file mode 100644 index 000000000..585539378 --- /dev/null +++ b/node_modules/bson/lib/code.js @@ -0,0 +1,46 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.Code = void 0; +/** + * A class representation of the BSON Code type. + * @public + * @category BSONType + */ +var Code = /** @class */ (function () { + /** + * @param code - a string or function. + * @param scope - an optional scope for the function. + */ + function Code(code, scope) { + if (!(this instanceof Code)) + return new Code(code, scope); + this.code = code; + this.scope = scope; + } + Code.prototype.toJSON = function () { + return { code: this.code, scope: this.scope }; + }; + /** @internal */ + Code.prototype.toExtendedJSON = function () { + if (this.scope) { + return { $code: this.code, $scope: this.scope }; + } + return { $code: this.code }; + }; + /** @internal */ + Code.fromExtendedJSON = function (doc) { + return new Code(doc.$code, doc.$scope); + }; + /** @internal */ + Code.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () { + return this.inspect(); + }; + Code.prototype.inspect = function () { + var codeJson = this.toJSON(); + return "new Code(\"".concat(String(codeJson.code), "\"").concat(codeJson.scope ? ", ".concat(JSON.stringify(codeJson.scope)) : '', ")"); + }; + return Code; +}()); +exports.Code = Code; +Object.defineProperty(Code.prototype, '_bsontype', { value: 'Code' }); +//# sourceMappingURL=code.js.map \ No newline at end of file diff --git a/node_modules/bson/lib/code.js.map b/node_modules/bson/lib/code.js.map new file mode 100644 index 000000000..2291a6b93 --- /dev/null +++ b/node_modules/bson/lib/code.js.map @@ -0,0 +1 @@ +{"version":3,"file":"code.js","sourceRoot":"","sources":["../src/code.ts"],"names":[],"mappings":";;;AAQA;;;;GAIG;AACH;IAKE;;;OAGG;IACH,cAAY,IAAuB,EAAE,KAAgB;QACnD,IAAI,CAAC,CAAC,IAAI,YAAY,IAAI,CAAC;YAAE,OAAO,IAAI,IAAI,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;QAE1D,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;QACjB,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;IACrB,CAAC;IAED,qBAAM,GAAN;QACE,OAAO,EAAE,IAAI,EAAE,IAAI,CAAC,IAAI,EAAE,KAAK,EAAE,IAAI,CAAC,KAAK,EAAE,CAAC;IAChD,CAAC;IAED,gBAAgB;IAChB,6BAAc,GAAd;QACE,IAAI,IAAI,CAAC,KAAK,EAAE;YACd,OAAO,EAAE,KAAK,EAAE,IAAI,CAAC,IAAI,EAAE,MAAM,EAAE,IAAI,CAAC,KAAK,EAAE,CAAC;SACjD;QAED,OAAO,EAAE,KAAK,EAAE,IAAI,CAAC,IAAI,EAAE,CAAC;IAC9B,CAAC;IAED,gBAAgB;IACT,qBAAgB,GAAvB,UAAwB,GAAiB;QACvC,OAAO,IAAI,IAAI,CAAC,GAAG,CAAC,KAAK,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC;IACzC,CAAC;IAED,gBAAgB;IAChB,eAAC,MAAM,CAAC,GAAG,CAAC,4BAA4B,CAAC,CAAC,GAA1C;QACE,OAAO,IAAI,CAAC,OAAO,EAAE,CAAC;IACxB,CAAC;IAED,sBAAO,GAAP;QACE,IAAM,QAAQ,GAAG,IAAI,CAAC,MAAM,EAAE,CAAC;QAC/B,OAAO,qBAAa,MAAM,CAAC,QAAQ,CAAC,IAAI,CAAC,eACvC,QAAQ,CAAC,KAAK,CAAC,CAAC,CAAC,YAAK,IAAI,CAAC,SAAS,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAE,CAAC,CAAC,CAAC,EAAE,MAC1D,CAAC;IACN,CAAC;IACH,WAAC;AAAD,CAAC,AA7CD,IA6CC;AA7CY,oBAAI;AA+CjB,MAAM,CAAC,cAAc,CAAC,IAAI,CAAC,SAAS,EAAE,WAAW,EAAE,EAAE,KAAK,EAAE,MAAM,EAAE,CAAC,CAAC"} \ No newline at end of file diff --git a/node_modules/bson/lib/constants.js b/node_modules/bson/lib/constants.js new file mode 100644 index 000000000..ff8b68d3d --- /dev/null +++ b/node_modules/bson/lib/constants.js @@ -0,0 +1,82 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.BSON_BINARY_SUBTYPE_USER_DEFINED = exports.BSON_BINARY_SUBTYPE_COLUMN = exports.BSON_BINARY_SUBTYPE_ENCRYPTED = exports.BSON_BINARY_SUBTYPE_MD5 = exports.BSON_BINARY_SUBTYPE_UUID_NEW = exports.BSON_BINARY_SUBTYPE_UUID = exports.BSON_BINARY_SUBTYPE_BYTE_ARRAY = exports.BSON_BINARY_SUBTYPE_FUNCTION = exports.BSON_BINARY_SUBTYPE_DEFAULT = exports.BSON_DATA_MAX_KEY = exports.BSON_DATA_MIN_KEY = exports.BSON_DATA_DECIMAL128 = exports.BSON_DATA_LONG = exports.BSON_DATA_TIMESTAMP = exports.BSON_DATA_INT = exports.BSON_DATA_CODE_W_SCOPE = exports.BSON_DATA_SYMBOL = exports.BSON_DATA_CODE = exports.BSON_DATA_DBPOINTER = exports.BSON_DATA_REGEXP = exports.BSON_DATA_NULL = exports.BSON_DATA_DATE = exports.BSON_DATA_BOOLEAN = exports.BSON_DATA_OID = exports.BSON_DATA_UNDEFINED = exports.BSON_DATA_BINARY = exports.BSON_DATA_ARRAY = exports.BSON_DATA_OBJECT = exports.BSON_DATA_STRING = exports.BSON_DATA_NUMBER = exports.JS_INT_MIN = exports.JS_INT_MAX = exports.BSON_INT64_MIN = exports.BSON_INT64_MAX = exports.BSON_INT32_MIN = exports.BSON_INT32_MAX = void 0; +/** @internal */ +exports.BSON_INT32_MAX = 0x7fffffff; +/** @internal */ +exports.BSON_INT32_MIN = -0x80000000; +/** @internal */ +exports.BSON_INT64_MAX = Math.pow(2, 63) - 1; +/** @internal */ +exports.BSON_INT64_MIN = -Math.pow(2, 63); +/** + * Any integer up to 2^53 can be precisely represented by a double. + * @internal + */ +exports.JS_INT_MAX = Math.pow(2, 53); +/** + * Any integer down to -2^53 can be precisely represented by a double. + * @internal + */ +exports.JS_INT_MIN = -Math.pow(2, 53); +/** Number BSON Type @internal */ +exports.BSON_DATA_NUMBER = 1; +/** String BSON Type @internal */ +exports.BSON_DATA_STRING = 2; +/** Object BSON Type @internal */ +exports.BSON_DATA_OBJECT = 3; +/** Array BSON Type @internal */ +exports.BSON_DATA_ARRAY = 4; +/** Binary BSON Type @internal */ +exports.BSON_DATA_BINARY = 5; +/** Binary BSON Type @internal */ +exports.BSON_DATA_UNDEFINED = 6; +/** ObjectId BSON Type @internal */ +exports.BSON_DATA_OID = 7; +/** Boolean BSON Type @internal */ +exports.BSON_DATA_BOOLEAN = 8; +/** Date BSON Type @internal */ +exports.BSON_DATA_DATE = 9; +/** null BSON Type @internal */ +exports.BSON_DATA_NULL = 10; +/** RegExp BSON Type @internal */ +exports.BSON_DATA_REGEXP = 11; +/** Code BSON Type @internal */ +exports.BSON_DATA_DBPOINTER = 12; +/** Code BSON Type @internal */ +exports.BSON_DATA_CODE = 13; +/** Symbol BSON Type @internal */ +exports.BSON_DATA_SYMBOL = 14; +/** Code with Scope BSON Type @internal */ +exports.BSON_DATA_CODE_W_SCOPE = 15; +/** 32 bit Integer BSON Type @internal */ +exports.BSON_DATA_INT = 16; +/** Timestamp BSON Type @internal */ +exports.BSON_DATA_TIMESTAMP = 17; +/** Long BSON Type @internal */ +exports.BSON_DATA_LONG = 18; +/** Decimal128 BSON Type @internal */ +exports.BSON_DATA_DECIMAL128 = 19; +/** MinKey BSON Type @internal */ +exports.BSON_DATA_MIN_KEY = 0xff; +/** MaxKey BSON Type @internal */ +exports.BSON_DATA_MAX_KEY = 0x7f; +/** Binary Default Type @internal */ +exports.BSON_BINARY_SUBTYPE_DEFAULT = 0; +/** Binary Function Type @internal */ +exports.BSON_BINARY_SUBTYPE_FUNCTION = 1; +/** Binary Byte Array Type @internal */ +exports.BSON_BINARY_SUBTYPE_BYTE_ARRAY = 2; +/** Binary Deprecated UUID Type @deprecated Please use BSON_BINARY_SUBTYPE_UUID_NEW @internal */ +exports.BSON_BINARY_SUBTYPE_UUID = 3; +/** Binary UUID Type @internal */ +exports.BSON_BINARY_SUBTYPE_UUID_NEW = 4; +/** Binary MD5 Type @internal */ +exports.BSON_BINARY_SUBTYPE_MD5 = 5; +/** Encrypted BSON type @internal */ +exports.BSON_BINARY_SUBTYPE_ENCRYPTED = 6; +/** Column BSON type @internal */ +exports.BSON_BINARY_SUBTYPE_COLUMN = 7; +/** Binary User Defined Type @internal */ +exports.BSON_BINARY_SUBTYPE_USER_DEFINED = 128; +//# sourceMappingURL=constants.js.map \ No newline at end of file diff --git a/node_modules/bson/lib/constants.js.map b/node_modules/bson/lib/constants.js.map new file mode 100644 index 000000000..3b9c0ca6c --- /dev/null +++ b/node_modules/bson/lib/constants.js.map @@ -0,0 +1 @@ +{"version":3,"file":"constants.js","sourceRoot":"","sources":["../src/constants.ts"],"names":[],"mappings":";;;AAAA,gBAAgB;AACH,QAAA,cAAc,GAAG,UAAU,CAAC;AACzC,gBAAgB;AACH,QAAA,cAAc,GAAG,CAAC,UAAU,CAAC;AAC1C,gBAAgB;AACH,QAAA,cAAc,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE,EAAE,CAAC,GAAG,CAAC,CAAC;AAClD,gBAAgB;AACH,QAAA,cAAc,GAAG,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC;AAE/C;;;GAGG;AACU,QAAA,UAAU,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC;AAE1C;;;GAGG;AACU,QAAA,UAAU,GAAG,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC;AAE3C,iCAAiC;AACpB,QAAA,gBAAgB,GAAG,CAAC,CAAC;AAElC,iCAAiC;AACpB,QAAA,gBAAgB,GAAG,CAAC,CAAC;AAElC,iCAAiC;AACpB,QAAA,gBAAgB,GAAG,CAAC,CAAC;AAElC,gCAAgC;AACnB,QAAA,eAAe,GAAG,CAAC,CAAC;AAEjC,iCAAiC;AACpB,QAAA,gBAAgB,GAAG,CAAC,CAAC;AAElC,iCAAiC;AACpB,QAAA,mBAAmB,GAAG,CAAC,CAAC;AAErC,mCAAmC;AACtB,QAAA,aAAa,GAAG,CAAC,CAAC;AAE/B,kCAAkC;AACrB,QAAA,iBAAiB,GAAG,CAAC,CAAC;AAEnC,+BAA+B;AAClB,QAAA,cAAc,GAAG,CAAC,CAAC;AAEhC,+BAA+B;AAClB,QAAA,cAAc,GAAG,EAAE,CAAC;AAEjC,iCAAiC;AACpB,QAAA,gBAAgB,GAAG,EAAE,CAAC;AAEnC,+BAA+B;AAClB,QAAA,mBAAmB,GAAG,EAAE,CAAC;AAEtC,+BAA+B;AAClB,QAAA,cAAc,GAAG,EAAE,CAAC;AAEjC,iCAAiC;AACpB,QAAA,gBAAgB,GAAG,EAAE,CAAC;AAEnC,0CAA0C;AAC7B,QAAA,sBAAsB,GAAG,EAAE,CAAC;AAEzC,yCAAyC;AAC5B,QAAA,aAAa,GAAG,EAAE,CAAC;AAEhC,oCAAoC;AACvB,QAAA,mBAAmB,GAAG,EAAE,CAAC;AAEtC,+BAA+B;AAClB,QAAA,cAAc,GAAG,EAAE,CAAC;AAEjC,qCAAqC;AACxB,QAAA,oBAAoB,GAAG,EAAE,CAAC;AAEvC,iCAAiC;AACpB,QAAA,iBAAiB,GAAG,IAAI,CAAC;AAEtC,iCAAiC;AACpB,QAAA,iBAAiB,GAAG,IAAI,CAAC;AAEtC,oCAAoC;AACvB,QAAA,2BAA2B,GAAG,CAAC,CAAC;AAE7C,qCAAqC;AACxB,QAAA,4BAA4B,GAAG,CAAC,CAAC;AAE9C,uCAAuC;AAC1B,QAAA,8BAA8B,GAAG,CAAC,CAAC;AAEhD,gGAAgG;AACnF,QAAA,wBAAwB,GAAG,CAAC,CAAC;AAE1C,iCAAiC;AACpB,QAAA,4BAA4B,GAAG,CAAC,CAAC;AAE9C,gCAAgC;AACnB,QAAA,uBAAuB,GAAG,CAAC,CAAC;AAEzC,oCAAoC;AACvB,QAAA,6BAA6B,GAAG,CAAC,CAAC;AAE/C,iCAAiC;AACpB,QAAA,0BAA0B,GAAG,CAAC,CAAC;AAE5C,yCAAyC;AAC5B,QAAA,gCAAgC,GAAG,GAAG,CAAC"} \ No newline at end of file diff --git a/node_modules/bson/lib/db_ref.js b/node_modules/bson/lib/db_ref.js new file mode 100644 index 000000000..d18bd965e --- /dev/null +++ b/node_modules/bson/lib/db_ref.js @@ -0,0 +1,97 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.DBRef = exports.isDBRefLike = void 0; +var utils_1 = require("./parser/utils"); +/** @internal */ +function isDBRefLike(value) { + return ((0, utils_1.isObjectLike)(value) && + value.$id != null && + typeof value.$ref === 'string' && + (value.$db == null || typeof value.$db === 'string')); +} +exports.isDBRefLike = isDBRefLike; +/** + * A class representation of the BSON DBRef type. + * @public + * @category BSONType + */ +var DBRef = /** @class */ (function () { + /** + * @param collection - the collection name. + * @param oid - the reference ObjectId. + * @param db - optional db name, if omitted the reference is local to the current db. + */ + function DBRef(collection, oid, db, fields) { + if (!(this instanceof DBRef)) + return new DBRef(collection, oid, db, fields); + // check if namespace has been provided + var parts = collection.split('.'); + if (parts.length === 2) { + db = parts.shift(); + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + collection = parts.shift(); + } + this.collection = collection; + this.oid = oid; + this.db = db; + this.fields = fields || {}; + } + Object.defineProperty(DBRef.prototype, "namespace", { + // Property provided for compatibility with the 1.x parser + // the 1.x parser used a "namespace" property, while 4.x uses "collection" + /** @internal */ + get: function () { + return this.collection; + }, + set: function (value) { + this.collection = value; + }, + enumerable: false, + configurable: true + }); + DBRef.prototype.toJSON = function () { + var o = Object.assign({ + $ref: this.collection, + $id: this.oid + }, this.fields); + if (this.db != null) + o.$db = this.db; + return o; + }; + /** @internal */ + DBRef.prototype.toExtendedJSON = function (options) { + options = options || {}; + var o = { + $ref: this.collection, + $id: this.oid + }; + if (options.legacy) { + return o; + } + if (this.db) + o.$db = this.db; + o = Object.assign(o, this.fields); + return o; + }; + /** @internal */ + DBRef.fromExtendedJSON = function (doc) { + var copy = Object.assign({}, doc); + delete copy.$ref; + delete copy.$id; + delete copy.$db; + return new DBRef(doc.$ref, doc.$id, doc.$db, copy); + }; + /** @internal */ + DBRef.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () { + return this.inspect(); + }; + DBRef.prototype.inspect = function () { + // NOTE: if OID is an ObjectId class it will just print the oid string. + var oid = this.oid === undefined || this.oid.toString === undefined ? this.oid : this.oid.toString(); + return "new DBRef(\"".concat(this.namespace, "\", new ObjectId(\"").concat(String(oid), "\")").concat(this.db ? ", \"".concat(this.db, "\"") : '', ")"); + }; + return DBRef; +}()); +exports.DBRef = DBRef; +Object.defineProperty(DBRef.prototype, '_bsontype', { value: 'DBRef' }); +//# sourceMappingURL=db_ref.js.map \ No newline at end of file diff --git a/node_modules/bson/lib/db_ref.js.map b/node_modules/bson/lib/db_ref.js.map new file mode 100644 index 000000000..74e49aac7 --- /dev/null +++ b/node_modules/bson/lib/db_ref.js.map @@ -0,0 +1 @@ +{"version":3,"file":"db_ref.js","sourceRoot":"","sources":["../src/db_ref.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/bson/lib/decimal128.js b/node_modules/bson/lib/decimal128.js new file mode 100644 index 000000000..2fd7efa84 --- /dev/null +++ b/node_modules/bson/lib/decimal128.js @@ -0,0 +1,669 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.Decimal128 = void 0; +var buffer_1 = require("buffer"); +var error_1 = require("./error"); +var long_1 = require("./long"); +var utils_1 = require("./parser/utils"); +var PARSE_STRING_REGEXP = /^(\+|-)?(\d+|(\d*\.\d*))?(E|e)?([-+])?(\d+)?$/; +var PARSE_INF_REGEXP = /^(\+|-)?(Infinity|inf)$/i; +var PARSE_NAN_REGEXP = /^(\+|-)?NaN$/i; +var EXPONENT_MAX = 6111; +var EXPONENT_MIN = -6176; +var EXPONENT_BIAS = 6176; +var MAX_DIGITS = 34; +// Nan value bits as 32 bit values (due to lack of longs) +var NAN_BUFFER = [ + 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 +].reverse(); +// Infinity value bits 32 bit values (due to lack of longs) +var INF_NEGATIVE_BUFFER = [ + 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 +].reverse(); +var INF_POSITIVE_BUFFER = [ + 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 +].reverse(); +var EXPONENT_REGEX = /^([-+])?(\d+)?$/; +// Extract least significant 5 bits +var COMBINATION_MASK = 0x1f; +// Extract least significant 14 bits +var EXPONENT_MASK = 0x3fff; +// Value of combination field for Inf +var COMBINATION_INFINITY = 30; +// Value of combination field for NaN +var COMBINATION_NAN = 31; +// Detect if the value is a digit +function isDigit(value) { + return !isNaN(parseInt(value, 10)); +} +// Divide two uint128 values +function divideu128(value) { + var DIVISOR = long_1.Long.fromNumber(1000 * 1000 * 1000); + var _rem = long_1.Long.fromNumber(0); + if (!value.parts[0] && !value.parts[1] && !value.parts[2] && !value.parts[3]) { + return { quotient: value, rem: _rem }; + } + for (var i = 0; i <= 3; i++) { + // Adjust remainder to match value of next dividend + _rem = _rem.shiftLeft(32); + // Add the divided to _rem + _rem = _rem.add(new long_1.Long(value.parts[i], 0)); + value.parts[i] = _rem.div(DIVISOR).low; + _rem = _rem.modulo(DIVISOR); + } + return { quotient: value, rem: _rem }; +} +// Multiply two Long values and return the 128 bit value +function multiply64x2(left, right) { + if (!left && !right) { + return { high: long_1.Long.fromNumber(0), low: long_1.Long.fromNumber(0) }; + } + var leftHigh = left.shiftRightUnsigned(32); + var leftLow = new long_1.Long(left.getLowBits(), 0); + var rightHigh = right.shiftRightUnsigned(32); + var rightLow = new long_1.Long(right.getLowBits(), 0); + var productHigh = leftHigh.multiply(rightHigh); + var productMid = leftHigh.multiply(rightLow); + var productMid2 = leftLow.multiply(rightHigh); + var productLow = leftLow.multiply(rightLow); + productHigh = productHigh.add(productMid.shiftRightUnsigned(32)); + productMid = new long_1.Long(productMid.getLowBits(), 0) + .add(productMid2) + .add(productLow.shiftRightUnsigned(32)); + productHigh = productHigh.add(productMid.shiftRightUnsigned(32)); + productLow = productMid.shiftLeft(32).add(new long_1.Long(productLow.getLowBits(), 0)); + // Return the 128 bit result + return { high: productHigh, low: productLow }; +} +function lessThan(left, right) { + // Make values unsigned + var uhleft = left.high >>> 0; + var uhright = right.high >>> 0; + // Compare high bits first + if (uhleft < uhright) { + return true; + } + else if (uhleft === uhright) { + var ulleft = left.low >>> 0; + var ulright = right.low >>> 0; + if (ulleft < ulright) + return true; + } + return false; +} +function invalidErr(string, message) { + throw new error_1.BSONTypeError("\"".concat(string, "\" is not a valid Decimal128 string - ").concat(message)); +} +/** + * A class representation of the BSON Decimal128 type. + * @public + * @category BSONType + */ +var Decimal128 = /** @class */ (function () { + /** + * @param bytes - a buffer containing the raw Decimal128 bytes in little endian order, + * or a string representation as returned by .toString() + */ + function Decimal128(bytes) { + if (!(this instanceof Decimal128)) + return new Decimal128(bytes); + if (typeof bytes === 'string') { + this.bytes = Decimal128.fromString(bytes).bytes; + } + else if ((0, utils_1.isUint8Array)(bytes)) { + if (bytes.byteLength !== 16) { + throw new error_1.BSONTypeError('Decimal128 must take a Buffer of 16 bytes'); + } + this.bytes = bytes; + } + else { + throw new error_1.BSONTypeError('Decimal128 must take a Buffer or string'); + } + } + /** + * Create a Decimal128 instance from a string representation + * + * @param representation - a numeric string representation. + */ + Decimal128.fromString = function (representation) { + // Parse state tracking + var isNegative = false; + var sawRadix = false; + var foundNonZero = false; + // Total number of significant digits (no leading or trailing zero) + var significantDigits = 0; + // Total number of significand digits read + var nDigitsRead = 0; + // Total number of digits (no leading zeros) + var nDigits = 0; + // The number of the digits after radix + var radixPosition = 0; + // The index of the first non-zero in *str* + var firstNonZero = 0; + // Digits Array + var digits = [0]; + // The number of digits in digits + var nDigitsStored = 0; + // Insertion pointer for digits + var digitsInsert = 0; + // The index of the first non-zero digit + var firstDigit = 0; + // The index of the last digit + var lastDigit = 0; + // Exponent + var exponent = 0; + // loop index over array + var i = 0; + // The high 17 digits of the significand + var significandHigh = new long_1.Long(0, 0); + // The low 17 digits of the significand + var significandLow = new long_1.Long(0, 0); + // The biased exponent + var biasedExponent = 0; + // Read index + var index = 0; + // Naively prevent against REDOS attacks. + // TODO: implementing a custom parsing for this, or refactoring the regex would yield + // further gains. + if (representation.length >= 7000) { + throw new error_1.BSONTypeError('' + representation + ' not a valid Decimal128 string'); + } + // Results + var stringMatch = representation.match(PARSE_STRING_REGEXP); + var infMatch = representation.match(PARSE_INF_REGEXP); + var nanMatch = representation.match(PARSE_NAN_REGEXP); + // Validate the string + if ((!stringMatch && !infMatch && !nanMatch) || representation.length === 0) { + throw new error_1.BSONTypeError('' + representation + ' not a valid Decimal128 string'); + } + if (stringMatch) { + // full_match = stringMatch[0] + // sign = stringMatch[1] + var unsignedNumber = stringMatch[2]; + // stringMatch[3] is undefined if a whole number (ex "1", 12") + // but defined if a number w/ decimal in it (ex "1.0, 12.2") + var e = stringMatch[4]; + var expSign = stringMatch[5]; + var expNumber = stringMatch[6]; + // they provided e, but didn't give an exponent number. for ex "1e" + if (e && expNumber === undefined) + invalidErr(representation, 'missing exponent power'); + // they provided e, but didn't give a number before it. for ex "e1" + if (e && unsignedNumber === undefined) + invalidErr(representation, 'missing exponent base'); + if (e === undefined && (expSign || expNumber)) { + invalidErr(representation, 'missing e before exponent'); + } + } + // Get the negative or positive sign + if (representation[index] === '+' || representation[index] === '-') { + isNegative = representation[index++] === '-'; + } + // Check if user passed Infinity or NaN + if (!isDigit(representation[index]) && representation[index] !== '.') { + if (representation[index] === 'i' || representation[index] === 'I') { + return new Decimal128(buffer_1.Buffer.from(isNegative ? INF_NEGATIVE_BUFFER : INF_POSITIVE_BUFFER)); + } + else if (representation[index] === 'N') { + return new Decimal128(buffer_1.Buffer.from(NAN_BUFFER)); + } + } + // Read all the digits + while (isDigit(representation[index]) || representation[index] === '.') { + if (representation[index] === '.') { + if (sawRadix) + invalidErr(representation, 'contains multiple periods'); + sawRadix = true; + index = index + 1; + continue; + } + if (nDigitsStored < 34) { + if (representation[index] !== '0' || foundNonZero) { + if (!foundNonZero) { + firstNonZero = nDigitsRead; + } + foundNonZero = true; + // Only store 34 digits + digits[digitsInsert++] = parseInt(representation[index], 10); + nDigitsStored = nDigitsStored + 1; + } + } + if (foundNonZero) + nDigits = nDigits + 1; + if (sawRadix) + radixPosition = radixPosition + 1; + nDigitsRead = nDigitsRead + 1; + index = index + 1; + } + if (sawRadix && !nDigitsRead) + throw new error_1.BSONTypeError('' + representation + ' not a valid Decimal128 string'); + // Read exponent if exists + if (representation[index] === 'e' || representation[index] === 'E') { + // Read exponent digits + var match = representation.substr(++index).match(EXPONENT_REGEX); + // No digits read + if (!match || !match[2]) + return new Decimal128(buffer_1.Buffer.from(NAN_BUFFER)); + // Get exponent + exponent = parseInt(match[0], 10); + // Adjust the index + index = index + match[0].length; + } + // Return not a number + if (representation[index]) + return new Decimal128(buffer_1.Buffer.from(NAN_BUFFER)); + // Done reading input + // Find first non-zero digit in digits + firstDigit = 0; + if (!nDigitsStored) { + firstDigit = 0; + lastDigit = 0; + digits[0] = 0; + nDigits = 1; + nDigitsStored = 1; + significantDigits = 0; + } + else { + lastDigit = nDigitsStored - 1; + significantDigits = nDigits; + if (significantDigits !== 1) { + while (digits[firstNonZero + significantDigits - 1] === 0) { + significantDigits = significantDigits - 1; + } + } + } + // Normalization of exponent + // Correct exponent based on radix position, and shift significand as needed + // to represent user input + // Overflow prevention + if (exponent <= radixPosition && radixPosition - exponent > 1 << 14) { + exponent = EXPONENT_MIN; + } + else { + exponent = exponent - radixPosition; + } + // Attempt to normalize the exponent + while (exponent > EXPONENT_MAX) { + // Shift exponent to significand and decrease + lastDigit = lastDigit + 1; + if (lastDigit - firstDigit > MAX_DIGITS) { + // Check if we have a zero then just hard clamp, otherwise fail + var digitsString = digits.join(''); + if (digitsString.match(/^0+$/)) { + exponent = EXPONENT_MAX; + break; + } + invalidErr(representation, 'overflow'); + } + exponent = exponent - 1; + } + while (exponent < EXPONENT_MIN || nDigitsStored < nDigits) { + // Shift last digit. can only do this if < significant digits than # stored. + if (lastDigit === 0 && significantDigits < nDigitsStored) { + exponent = EXPONENT_MIN; + significantDigits = 0; + break; + } + if (nDigitsStored < nDigits) { + // adjust to match digits not stored + nDigits = nDigits - 1; + } + else { + // adjust to round + lastDigit = lastDigit - 1; + } + if (exponent < EXPONENT_MAX) { + exponent = exponent + 1; + } + else { + // Check if we have a zero then just hard clamp, otherwise fail + var digitsString = digits.join(''); + if (digitsString.match(/^0+$/)) { + exponent = EXPONENT_MAX; + break; + } + invalidErr(representation, 'overflow'); + } + } + // Round + // We've normalized the exponent, but might still need to round. + if (lastDigit - firstDigit + 1 < significantDigits) { + var endOfString = nDigitsRead; + // If we have seen a radix point, 'string' is 1 longer than we have + // documented with ndigits_read, so inc the position of the first nonzero + // digit and the position that digits are read to. + if (sawRadix) { + firstNonZero = firstNonZero + 1; + endOfString = endOfString + 1; + } + // if negative, we need to increment again to account for - sign at start. + if (isNegative) { + firstNonZero = firstNonZero + 1; + endOfString = endOfString + 1; + } + var roundDigit = parseInt(representation[firstNonZero + lastDigit + 1], 10); + var roundBit = 0; + if (roundDigit >= 5) { + roundBit = 1; + if (roundDigit === 5) { + roundBit = digits[lastDigit] % 2 === 1 ? 1 : 0; + for (i = firstNonZero + lastDigit + 2; i < endOfString; i++) { + if (parseInt(representation[i], 10)) { + roundBit = 1; + break; + } + } + } + } + if (roundBit) { + var dIdx = lastDigit; + for (; dIdx >= 0; dIdx--) { + if (++digits[dIdx] > 9) { + digits[dIdx] = 0; + // overflowed most significant digit + if (dIdx === 0) { + if (exponent < EXPONENT_MAX) { + exponent = exponent + 1; + digits[dIdx] = 1; + } + else { + return new Decimal128(buffer_1.Buffer.from(isNegative ? INF_NEGATIVE_BUFFER : INF_POSITIVE_BUFFER)); + } + } + } + } + } + } + // Encode significand + // The high 17 digits of the significand + significandHigh = long_1.Long.fromNumber(0); + // The low 17 digits of the significand + significandLow = long_1.Long.fromNumber(0); + // read a zero + if (significantDigits === 0) { + significandHigh = long_1.Long.fromNumber(0); + significandLow = long_1.Long.fromNumber(0); + } + else if (lastDigit - firstDigit < 17) { + var dIdx = firstDigit; + significandLow = long_1.Long.fromNumber(digits[dIdx++]); + significandHigh = new long_1.Long(0, 0); + for (; dIdx <= lastDigit; dIdx++) { + significandLow = significandLow.multiply(long_1.Long.fromNumber(10)); + significandLow = significandLow.add(long_1.Long.fromNumber(digits[dIdx])); + } + } + else { + var dIdx = firstDigit; + significandHigh = long_1.Long.fromNumber(digits[dIdx++]); + for (; dIdx <= lastDigit - 17; dIdx++) { + significandHigh = significandHigh.multiply(long_1.Long.fromNumber(10)); + significandHigh = significandHigh.add(long_1.Long.fromNumber(digits[dIdx])); + } + significandLow = long_1.Long.fromNumber(digits[dIdx++]); + for (; dIdx <= lastDigit; dIdx++) { + significandLow = significandLow.multiply(long_1.Long.fromNumber(10)); + significandLow = significandLow.add(long_1.Long.fromNumber(digits[dIdx])); + } + } + var significand = multiply64x2(significandHigh, long_1.Long.fromString('100000000000000000')); + significand.low = significand.low.add(significandLow); + if (lessThan(significand.low, significandLow)) { + significand.high = significand.high.add(long_1.Long.fromNumber(1)); + } + // Biased exponent + biasedExponent = exponent + EXPONENT_BIAS; + var dec = { low: long_1.Long.fromNumber(0), high: long_1.Long.fromNumber(0) }; + // Encode combination, exponent, and significand. + if (significand.high.shiftRightUnsigned(49).and(long_1.Long.fromNumber(1)).equals(long_1.Long.fromNumber(1))) { + // Encode '11' into bits 1 to 3 + dec.high = dec.high.or(long_1.Long.fromNumber(0x3).shiftLeft(61)); + dec.high = dec.high.or(long_1.Long.fromNumber(biasedExponent).and(long_1.Long.fromNumber(0x3fff).shiftLeft(47))); + dec.high = dec.high.or(significand.high.and(long_1.Long.fromNumber(0x7fffffffffff))); + } + else { + dec.high = dec.high.or(long_1.Long.fromNumber(biasedExponent & 0x3fff).shiftLeft(49)); + dec.high = dec.high.or(significand.high.and(long_1.Long.fromNumber(0x1ffffffffffff))); + } + dec.low = significand.low; + // Encode sign + if (isNegative) { + dec.high = dec.high.or(long_1.Long.fromString('9223372036854775808')); + } + // Encode into a buffer + var buffer = buffer_1.Buffer.alloc(16); + index = 0; + // Encode the low 64 bits of the decimal + // Encode low bits + buffer[index++] = dec.low.low & 0xff; + buffer[index++] = (dec.low.low >> 8) & 0xff; + buffer[index++] = (dec.low.low >> 16) & 0xff; + buffer[index++] = (dec.low.low >> 24) & 0xff; + // Encode high bits + buffer[index++] = dec.low.high & 0xff; + buffer[index++] = (dec.low.high >> 8) & 0xff; + buffer[index++] = (dec.low.high >> 16) & 0xff; + buffer[index++] = (dec.low.high >> 24) & 0xff; + // Encode the high 64 bits of the decimal + // Encode low bits + buffer[index++] = dec.high.low & 0xff; + buffer[index++] = (dec.high.low >> 8) & 0xff; + buffer[index++] = (dec.high.low >> 16) & 0xff; + buffer[index++] = (dec.high.low >> 24) & 0xff; + // Encode high bits + buffer[index++] = dec.high.high & 0xff; + buffer[index++] = (dec.high.high >> 8) & 0xff; + buffer[index++] = (dec.high.high >> 16) & 0xff; + buffer[index++] = (dec.high.high >> 24) & 0xff; + // Return the new Decimal128 + return new Decimal128(buffer); + }; + /** Create a string representation of the raw Decimal128 value */ + Decimal128.prototype.toString = function () { + // Note: bits in this routine are referred to starting at 0, + // from the sign bit, towards the coefficient. + // decoded biased exponent (14 bits) + var biased_exponent; + // the number of significand digits + var significand_digits = 0; + // the base-10 digits in the significand + var significand = new Array(36); + for (var i = 0; i < significand.length; i++) + significand[i] = 0; + // read pointer into significand + var index = 0; + // true if the number is zero + var is_zero = false; + // the most significant significand bits (50-46) + var significand_msb; + // temporary storage for significand decoding + var significand128 = { parts: [0, 0, 0, 0] }; + // indexing variables + var j, k; + // Output string + var string = []; + // Unpack index + index = 0; + // Buffer reference + var buffer = this.bytes; + // Unpack the low 64bits into a long + // bits 96 - 127 + var low = buffer[index++] | (buffer[index++] << 8) | (buffer[index++] << 16) | (buffer[index++] << 24); + // bits 64 - 95 + var midl = buffer[index++] | (buffer[index++] << 8) | (buffer[index++] << 16) | (buffer[index++] << 24); + // Unpack the high 64bits into a long + // bits 32 - 63 + var midh = buffer[index++] | (buffer[index++] << 8) | (buffer[index++] << 16) | (buffer[index++] << 24); + // bits 0 - 31 + var high = buffer[index++] | (buffer[index++] << 8) | (buffer[index++] << 16) | (buffer[index++] << 24); + // Unpack index + index = 0; + // Create the state of the decimal + var dec = { + low: new long_1.Long(low, midl), + high: new long_1.Long(midh, high) + }; + if (dec.high.lessThan(long_1.Long.ZERO)) { + string.push('-'); + } + // Decode combination field and exponent + // bits 1 - 5 + var combination = (high >> 26) & COMBINATION_MASK; + if (combination >> 3 === 3) { + // Check for 'special' values + if (combination === COMBINATION_INFINITY) { + return string.join('') + 'Infinity'; + } + else if (combination === COMBINATION_NAN) { + return 'NaN'; + } + else { + biased_exponent = (high >> 15) & EXPONENT_MASK; + significand_msb = 0x08 + ((high >> 14) & 0x01); + } + } + else { + significand_msb = (high >> 14) & 0x07; + biased_exponent = (high >> 17) & EXPONENT_MASK; + } + // unbiased exponent + var exponent = biased_exponent - EXPONENT_BIAS; + // Create string of significand digits + // Convert the 114-bit binary number represented by + // (significand_high, significand_low) to at most 34 decimal + // digits through modulo and division. + significand128.parts[0] = (high & 0x3fff) + ((significand_msb & 0xf) << 14); + significand128.parts[1] = midh; + significand128.parts[2] = midl; + significand128.parts[3] = low; + if (significand128.parts[0] === 0 && + significand128.parts[1] === 0 && + significand128.parts[2] === 0 && + significand128.parts[3] === 0) { + is_zero = true; + } + else { + for (k = 3; k >= 0; k--) { + var least_digits = 0; + // Perform the divide + var result = divideu128(significand128); + significand128 = result.quotient; + least_digits = result.rem.low; + // We now have the 9 least significant digits (in base 2). + // Convert and output to string. + if (!least_digits) + continue; + for (j = 8; j >= 0; j--) { + // significand[k * 9 + j] = Math.round(least_digits % 10); + significand[k * 9 + j] = least_digits % 10; + // least_digits = Math.round(least_digits / 10); + least_digits = Math.floor(least_digits / 10); + } + } + } + // Output format options: + // Scientific - [-]d.dddE(+/-)dd or [-]dE(+/-)dd + // Regular - ddd.ddd + if (is_zero) { + significand_digits = 1; + significand[index] = 0; + } + else { + significand_digits = 36; + while (!significand[index]) { + significand_digits = significand_digits - 1; + index = index + 1; + } + } + // the exponent if scientific notation is used + var scientific_exponent = significand_digits - 1 + exponent; + // The scientific exponent checks are dictated by the string conversion + // specification and are somewhat arbitrary cutoffs. + // + // We must check exponent > 0, because if this is the case, the number + // has trailing zeros. However, we *cannot* output these trailing zeros, + // because doing so would change the precision of the value, and would + // change stored data if the string converted number is round tripped. + if (scientific_exponent >= 34 || scientific_exponent <= -7 || exponent > 0) { + // Scientific format + // if there are too many significant digits, we should just be treating numbers + // as + or - 0 and using the non-scientific exponent (this is for the "invalid + // representation should be treated as 0/-0" spec cases in decimal128-1.json) + if (significand_digits > 34) { + string.push("".concat(0)); + if (exponent > 0) + string.push("E+".concat(exponent)); + else if (exponent < 0) + string.push("E".concat(exponent)); + return string.join(''); + } + string.push("".concat(significand[index++])); + significand_digits = significand_digits - 1; + if (significand_digits) { + string.push('.'); + } + for (var i = 0; i < significand_digits; i++) { + string.push("".concat(significand[index++])); + } + // Exponent + string.push('E'); + if (scientific_exponent > 0) { + string.push("+".concat(scientific_exponent)); + } + else { + string.push("".concat(scientific_exponent)); + } + } + else { + // Regular format with no decimal place + if (exponent >= 0) { + for (var i = 0; i < significand_digits; i++) { + string.push("".concat(significand[index++])); + } + } + else { + var radix_position = significand_digits + exponent; + // non-zero digits before radix + if (radix_position > 0) { + for (var i = 0; i < radix_position; i++) { + string.push("".concat(significand[index++])); + } + } + else { + string.push('0'); + } + string.push('.'); + // add leading zeros after radix + while (radix_position++ < 0) { + string.push('0'); + } + for (var i = 0; i < significand_digits - Math.max(radix_position - 1, 0); i++) { + string.push("".concat(significand[index++])); + } + } + } + return string.join(''); + }; + Decimal128.prototype.toJSON = function () { + return { $numberDecimal: this.toString() }; + }; + /** @internal */ + Decimal128.prototype.toExtendedJSON = function () { + return { $numberDecimal: this.toString() }; + }; + /** @internal */ + Decimal128.fromExtendedJSON = function (doc) { + return Decimal128.fromString(doc.$numberDecimal); + }; + /** @internal */ + Decimal128.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () { + return this.inspect(); + }; + Decimal128.prototype.inspect = function () { + return "new Decimal128(\"".concat(this.toString(), "\")"); + }; + return Decimal128; +}()); +exports.Decimal128 = Decimal128; +Object.defineProperty(Decimal128.prototype, '_bsontype', { value: 'Decimal128' }); +//# sourceMappingURL=decimal128.js.map \ No newline at end of file diff --git a/node_modules/bson/lib/decimal128.js.map b/node_modules/bson/lib/decimal128.js.map new file mode 100644 index 000000000..31f0ee87d --- /dev/null +++ b/node_modules/bson/lib/decimal128.js.map @@ -0,0 +1 @@ +{"version":3,"file":"decimal128.js","sourceRoot":"","sources":["../src/decimal128.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/bson/lib/double.js b/node_modules/bson/lib/double.js new file mode 100644 index 000000000..39c488f32 --- /dev/null +++ b/node_modules/bson/lib/double.js @@ -0,0 +1,76 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.Double = void 0; +/** + * A class representation of the BSON Double type. + * @public + * @category BSONType + */ +var Double = /** @class */ (function () { + /** + * Create a Double type + * + * @param value - the number we want to represent as a double. + */ + function Double(value) { + if (!(this instanceof Double)) + return new Double(value); + if (value instanceof Number) { + value = value.valueOf(); + } + this.value = +value; + } + /** + * Access the number value. + * + * @returns returns the wrapped double number. + */ + Double.prototype.valueOf = function () { + return this.value; + }; + Double.prototype.toJSON = function () { + return this.value; + }; + Double.prototype.toString = function (radix) { + return this.value.toString(radix); + }; + /** @internal */ + Double.prototype.toExtendedJSON = function (options) { + if (options && (options.legacy || (options.relaxed && isFinite(this.value)))) { + return this.value; + } + // NOTE: JavaScript has +0 and -0, apparently to model limit calculations. If a user + // explicitly provided `-0` then we need to ensure the sign makes it into the output + if (Object.is(Math.sign(this.value), -0)) { + return { $numberDouble: "-".concat(this.value.toFixed(1)) }; + } + var $numberDouble; + if (Number.isInteger(this.value)) { + $numberDouble = this.value.toFixed(1); + if ($numberDouble.length >= 13) { + $numberDouble = this.value.toExponential(13).toUpperCase(); + } + } + else { + $numberDouble = this.value.toString(); + } + return { $numberDouble: $numberDouble }; + }; + /** @internal */ + Double.fromExtendedJSON = function (doc, options) { + var doubleValue = parseFloat(doc.$numberDouble); + return options && options.relaxed ? doubleValue : new Double(doubleValue); + }; + /** @internal */ + Double.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () { + return this.inspect(); + }; + Double.prototype.inspect = function () { + var eJSON = this.toExtendedJSON(); + return "new Double(".concat(eJSON.$numberDouble, ")"); + }; + return Double; +}()); +exports.Double = Double; +Object.defineProperty(Double.prototype, '_bsontype', { value: 'Double' }); +//# sourceMappingURL=double.js.map \ No newline at end of file diff --git a/node_modules/bson/lib/double.js.map b/node_modules/bson/lib/double.js.map new file mode 100644 index 000000000..31201e109 --- /dev/null +++ b/node_modules/bson/lib/double.js.map @@ -0,0 +1 @@ +{"version":3,"file":"double.js","sourceRoot":"","sources":["../src/double.ts"],"names":[],"mappings":";;;AAOA;;;;GAIG;AACH;IAIE;;;;OAIG;IACH,gBAAY,KAAa;QACvB,IAAI,CAAC,CAAC,IAAI,YAAY,MAAM,CAAC;YAAE,OAAO,IAAI,MAAM,CAAC,KAAK,CAAC,CAAC;QAExD,IAAK,KAAiB,YAAY,MAAM,EAAE;YACxC,KAAK,GAAG,KAAK,CAAC,OAAO,EAAE,CAAC;SACzB;QAED,IAAI,CAAC,KAAK,GAAG,CAAC,KAAK,CAAC;IACtB,CAAC;IAED;;;;OAIG;IACH,wBAAO,GAAP;QACE,OAAO,IAAI,CAAC,KAAK,CAAC;IACpB,CAAC;IAED,uBAAM,GAAN;QACE,OAAO,IAAI,CAAC,KAAK,CAAC;IACpB,CAAC;IAED,yBAAQ,GAAR,UAAS,KAAc;QACrB,OAAO,IAAI,CAAC,KAAK,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC;IACpC,CAAC;IAED,gBAAgB;IAChB,+BAAc,GAAd,UAAe,OAAsB;QACnC,IAAI,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,IAAI,CAAC,OAAO,CAAC,OAAO,IAAI,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE;YAC5E,OAAO,IAAI,CAAC,KAAK,CAAC;SACnB;QAED,oFAAoF;QACpF,oFAAoF;QACpF,IAAI,MAAM,CAAC,EAAE,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE;YACxC,OAAO,EAAE,aAAa,EAAE,WAAI,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,CAAE,EAAE,CAAC;SACvD;QAED,IAAI,aAAqB,CAAC;QAC1B,IAAI,MAAM,CAAC,SAAS,CAAC,IAAI,CAAC,KAAK,CAAC,EAAE;YAChC,aAAa,GAAG,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;YACtC,IAAI,aAAa,CAAC,MAAM,IAAI,EAAE,EAAE;gBAC9B,aAAa,GAAG,IAAI,CAAC,KAAK,CAAC,aAAa,CAAC,EAAE,CAAC,CAAC,WAAW,EAAE,CAAC;aAC5D;SACF;aAAM;YACL,aAAa,GAAG,IAAI,CAAC,KAAK,CAAC,QAAQ,EAAE,CAAC;SACvC;QAED,OAAO,EAAE,aAAa,eAAA,EAAE,CAAC;IAC3B,CAAC;IAED,gBAAgB;IACT,uBAAgB,GAAvB,UAAwB,GAAmB,EAAE,OAAsB;QACjE,IAAM,WAAW,GAAG,UAAU,CAAC,GAAG,CAAC,aAAa,CAAC,CAAC;QAClD,OAAO,OAAO,IAAI,OAAO,CAAC,OAAO,CAAC,CAAC,CAAC,WAAW,CAAC,CAAC,CAAC,IAAI,MAAM,CAAC,WAAW,CAAC,CAAC;IAC5E,CAAC;IAED,gBAAgB;IAChB,iBAAC,MAAM,CAAC,GAAG,CAAC,4BAA4B,CAAC,CAAC,GAA1C;QACE,OAAO,IAAI,CAAC,OAAO,EAAE,CAAC;IACxB,CAAC;IAED,wBAAO,GAAP;QACE,IAAM,KAAK,GAAG,IAAI,CAAC,cAAc,EAAoB,CAAC;QACtD,OAAO,qBAAc,KAAK,CAAC,aAAa,MAAG,CAAC;IAC9C,CAAC;IACH,aAAC;AAAD,CAAC,AA5ED,IA4EC;AA5EY,wBAAM;AA8EnB,MAAM,CAAC,cAAc,CAAC,MAAM,CAAC,SAAS,EAAE,WAAW,EAAE,EAAE,KAAK,EAAE,QAAQ,EAAE,CAAC,CAAC"} \ No newline at end of file diff --git a/node_modules/bson/lib/ensure_buffer.js b/node_modules/bson/lib/ensure_buffer.js new file mode 100644 index 000000000..d8298ea4a --- /dev/null +++ b/node_modules/bson/lib/ensure_buffer.js @@ -0,0 +1,25 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.ensureBuffer = void 0; +var buffer_1 = require("buffer"); +var error_1 = require("./error"); +var utils_1 = require("./parser/utils"); +/** + * Makes sure that, if a Uint8Array is passed in, it is wrapped in a Buffer. + * + * @param potentialBuffer - The potential buffer + * @returns Buffer the input if potentialBuffer is a buffer, or a buffer that + * wraps a passed in Uint8Array + * @throws BSONTypeError If anything other than a Buffer or Uint8Array is passed in + */ +function ensureBuffer(potentialBuffer) { + if (ArrayBuffer.isView(potentialBuffer)) { + return buffer_1.Buffer.from(potentialBuffer.buffer, potentialBuffer.byteOffset, potentialBuffer.byteLength); + } + if ((0, utils_1.isAnyArrayBuffer)(potentialBuffer)) { + return buffer_1.Buffer.from(potentialBuffer); + } + throw new error_1.BSONTypeError('Must use either Buffer or TypedArray'); +} +exports.ensureBuffer = ensureBuffer; +//# sourceMappingURL=ensure_buffer.js.map \ No newline at end of file diff --git a/node_modules/bson/lib/ensure_buffer.js.map b/node_modules/bson/lib/ensure_buffer.js.map new file mode 100644 index 000000000..f39d86a6c --- /dev/null +++ b/node_modules/bson/lib/ensure_buffer.js.map @@ -0,0 +1 @@ +{"version":3,"file":"ensure_buffer.js","sourceRoot":"","sources":["../src/ensure_buffer.ts"],"names":[],"mappings":";;;AAAA,iCAAgC;AAChC,iCAAwC;AACxC,wCAAkD;AAElD;;;;;;;GAOG;AACH,SAAgB,YAAY,CAAC,eAAuD;IAClF,IAAI,WAAW,CAAC,MAAM,CAAC,eAAe,CAAC,EAAE;QACvC,OAAO,eAAM,CAAC,IAAI,CAChB,eAAe,CAAC,MAAM,EACtB,eAAe,CAAC,UAAU,EAC1B,eAAe,CAAC,UAAU,CAC3B,CAAC;KACH;IAED,IAAI,IAAA,wBAAgB,EAAC,eAAe,CAAC,EAAE;QACrC,OAAO,eAAM,CAAC,IAAI,CAAC,eAAe,CAAC,CAAC;KACrC;IAED,MAAM,IAAI,qBAAa,CAAC,sCAAsC,CAAC,CAAC;AAClE,CAAC;AAdD,oCAcC"} \ No newline at end of file diff --git a/node_modules/bson/lib/error.js b/node_modules/bson/lib/error.js new file mode 100644 index 000000000..035ce86f1 --- /dev/null +++ b/node_modules/bson/lib/error.js @@ -0,0 +1,55 @@ +"use strict"; +var __extends = (this && this.__extends) || (function () { + var extendStatics = function (d, b) { + extendStatics = Object.setPrototypeOf || + ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || + function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; }; + return extendStatics(d, b); + }; + return function (d, b) { + if (typeof b !== "function" && b !== null) + throw new TypeError("Class extends value " + String(b) + " is not a constructor or null"); + extendStatics(d, b); + function __() { this.constructor = d; } + d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.BSONTypeError = exports.BSONError = void 0; +/** @public */ +var BSONError = /** @class */ (function (_super) { + __extends(BSONError, _super); + function BSONError(message) { + var _this = _super.call(this, message) || this; + Object.setPrototypeOf(_this, BSONError.prototype); + return _this; + } + Object.defineProperty(BSONError.prototype, "name", { + get: function () { + return 'BSONError'; + }, + enumerable: false, + configurable: true + }); + return BSONError; +}(Error)); +exports.BSONError = BSONError; +/** @public */ +var BSONTypeError = /** @class */ (function (_super) { + __extends(BSONTypeError, _super); + function BSONTypeError(message) { + var _this = _super.call(this, message) || this; + Object.setPrototypeOf(_this, BSONTypeError.prototype); + return _this; + } + Object.defineProperty(BSONTypeError.prototype, "name", { + get: function () { + return 'BSONTypeError'; + }, + enumerable: false, + configurable: true + }); + return BSONTypeError; +}(TypeError)); +exports.BSONTypeError = BSONTypeError; +//# sourceMappingURL=error.js.map \ No newline at end of file diff --git a/node_modules/bson/lib/error.js.map b/node_modules/bson/lib/error.js.map new file mode 100644 index 000000000..2acd4ef3f --- /dev/null +++ b/node_modules/bson/lib/error.js.map @@ -0,0 +1 @@ +{"version":3,"file":"error.js","sourceRoot":"","sources":["../src/error.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;AAAA,cAAc;AACd;IAA+B,6BAAK;IAClC,mBAAY,OAAe;QAA3B,YACE,kBAAM,OAAO,CAAC,SAEf;QADC,MAAM,CAAC,cAAc,CAAC,KAAI,EAAE,SAAS,CAAC,SAAS,CAAC,CAAC;;IACnD,CAAC;IAED,sBAAI,2BAAI;aAAR;YACE,OAAO,WAAW,CAAC;QACrB,CAAC;;;OAAA;IACH,gBAAC;AAAD,CAAC,AATD,CAA+B,KAAK,GASnC;AATY,8BAAS;AAWtB,cAAc;AACd;IAAmC,iCAAS;IAC1C,uBAAY,OAAe;QAA3B,YACE,kBAAM,OAAO,CAAC,SAEf;QADC,MAAM,CAAC,cAAc,CAAC,KAAI,EAAE,aAAa,CAAC,SAAS,CAAC,CAAC;;IACvD,CAAC;IAED,sBAAI,+BAAI;aAAR;YACE,OAAO,eAAe,CAAC;QACzB,CAAC;;;OAAA;IACH,oBAAC;AAAD,CAAC,AATD,CAAmC,SAAS,GAS3C;AATY,sCAAa"} \ No newline at end of file diff --git a/node_modules/bson/lib/extended_json.js b/node_modules/bson/lib/extended_json.js new file mode 100644 index 000000000..980e4db74 --- /dev/null +++ b/node_modules/bson/lib/extended_json.js @@ -0,0 +1,390 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.EJSON = exports.isBSONType = void 0; +var binary_1 = require("./binary"); +var code_1 = require("./code"); +var db_ref_1 = require("./db_ref"); +var decimal128_1 = require("./decimal128"); +var double_1 = require("./double"); +var error_1 = require("./error"); +var int_32_1 = require("./int_32"); +var long_1 = require("./long"); +var max_key_1 = require("./max_key"); +var min_key_1 = require("./min_key"); +var objectid_1 = require("./objectid"); +var utils_1 = require("./parser/utils"); +var regexp_1 = require("./regexp"); +var symbol_1 = require("./symbol"); +var timestamp_1 = require("./timestamp"); +function isBSONType(value) { + return ((0, utils_1.isObjectLike)(value) && Reflect.has(value, '_bsontype') && typeof value._bsontype === 'string'); +} +exports.isBSONType = isBSONType; +// INT32 boundaries +var BSON_INT32_MAX = 0x7fffffff; +var BSON_INT32_MIN = -0x80000000; +// INT64 boundaries +// const BSON_INT64_MAX = 0x7fffffffffffffff; // TODO(NODE-4377): This number cannot be precisely represented in JS +var BSON_INT64_MAX = 0x8000000000000000; +var BSON_INT64_MIN = -0x8000000000000000; +// all the types where we don't need to do any special processing and can just pass the EJSON +//straight to type.fromExtendedJSON +var keysToCodecs = { + $oid: objectid_1.ObjectId, + $binary: binary_1.Binary, + $uuid: binary_1.Binary, + $symbol: symbol_1.BSONSymbol, + $numberInt: int_32_1.Int32, + $numberDecimal: decimal128_1.Decimal128, + $numberDouble: double_1.Double, + $numberLong: long_1.Long, + $minKey: min_key_1.MinKey, + $maxKey: max_key_1.MaxKey, + $regex: regexp_1.BSONRegExp, + $regularExpression: regexp_1.BSONRegExp, + $timestamp: timestamp_1.Timestamp +}; +// eslint-disable-next-line @typescript-eslint/no-explicit-any +function deserializeValue(value, options) { + if (options === void 0) { options = {}; } + if (typeof value === 'number') { + if (options.relaxed || options.legacy) { + return value; + } + // if it's an integer, should interpret as smallest BSON integer + // that can represent it exactly. (if out of range, interpret as double.) + if (Math.floor(value) === value) { + if (value >= BSON_INT32_MIN && value <= BSON_INT32_MAX) + return new int_32_1.Int32(value); + if (value >= BSON_INT64_MIN && value <= BSON_INT64_MAX) + return long_1.Long.fromNumber(value); + } + // If the number is a non-integer or out of integer range, should interpret as BSON Double. + return new double_1.Double(value); + } + // from here on out we're looking for bson types, so bail if its not an object + if (value == null || typeof value !== 'object') + return value; + // upgrade deprecated undefined to null + if (value.$undefined) + return null; + var keys = Object.keys(value).filter(function (k) { return k.startsWith('$') && value[k] != null; }); + for (var i = 0; i < keys.length; i++) { + var c = keysToCodecs[keys[i]]; + if (c) + return c.fromExtendedJSON(value, options); + } + if (value.$date != null) { + var d = value.$date; + var date = new Date(); + if (options.legacy) { + if (typeof d === 'number') + date.setTime(d); + else if (typeof d === 'string') + date.setTime(Date.parse(d)); + } + else { + if (typeof d === 'string') + date.setTime(Date.parse(d)); + else if (long_1.Long.isLong(d)) + date.setTime(d.toNumber()); + else if (typeof d === 'number' && options.relaxed) + date.setTime(d); + } + return date; + } + if (value.$code != null) { + var copy = Object.assign({}, value); + if (value.$scope) { + copy.$scope = deserializeValue(value.$scope); + } + return code_1.Code.fromExtendedJSON(value); + } + if ((0, db_ref_1.isDBRefLike)(value) || value.$dbPointer) { + var v = value.$ref ? value : value.$dbPointer; + // we run into this in a "degenerate EJSON" case (with $id and $ref order flipped) + // because of the order JSON.parse goes through the document + if (v instanceof db_ref_1.DBRef) + return v; + var dollarKeys = Object.keys(v).filter(function (k) { return k.startsWith('$'); }); + var valid_1 = true; + dollarKeys.forEach(function (k) { + if (['$ref', '$id', '$db'].indexOf(k) === -1) + valid_1 = false; + }); + // only make DBRef if $ keys are all valid + if (valid_1) + return db_ref_1.DBRef.fromExtendedJSON(v); + } + return value; +} +// eslint-disable-next-line @typescript-eslint/no-explicit-any +function serializeArray(array, options) { + return array.map(function (v, index) { + options.seenObjects.push({ propertyName: "index ".concat(index), obj: null }); + try { + return serializeValue(v, options); + } + finally { + options.seenObjects.pop(); + } + }); +} +function getISOString(date) { + var isoStr = date.toISOString(); + // we should only show milliseconds in timestamp if they're non-zero + return date.getUTCMilliseconds() !== 0 ? isoStr : isoStr.slice(0, -5) + 'Z'; +} +// eslint-disable-next-line @typescript-eslint/no-explicit-any +function serializeValue(value, options) { + if ((typeof value === 'object' || typeof value === 'function') && value !== null) { + var index = options.seenObjects.findIndex(function (entry) { return entry.obj === value; }); + if (index !== -1) { + var props = options.seenObjects.map(function (entry) { return entry.propertyName; }); + var leadingPart = props + .slice(0, index) + .map(function (prop) { return "".concat(prop, " -> "); }) + .join(''); + var alreadySeen = props[index]; + var circularPart = ' -> ' + + props + .slice(index + 1, props.length - 1) + .map(function (prop) { return "".concat(prop, " -> "); }) + .join(''); + var current = props[props.length - 1]; + var leadingSpace = ' '.repeat(leadingPart.length + alreadySeen.length / 2); + var dashes = '-'.repeat(circularPart.length + (alreadySeen.length + current.length) / 2 - 1); + throw new error_1.BSONTypeError('Converting circular structure to EJSON:\n' + + " ".concat(leadingPart).concat(alreadySeen).concat(circularPart).concat(current, "\n") + + " ".concat(leadingSpace, "\\").concat(dashes, "/")); + } + options.seenObjects[options.seenObjects.length - 1].obj = value; + } + if (Array.isArray(value)) + return serializeArray(value, options); + if (value === undefined) + return null; + if (value instanceof Date || (0, utils_1.isDate)(value)) { + var dateNum = value.getTime(), + // is it in year range 1970-9999? + inRange = dateNum > -1 && dateNum < 253402318800000; + if (options.legacy) { + return options.relaxed && inRange + ? { $date: value.getTime() } + : { $date: getISOString(value) }; + } + return options.relaxed && inRange + ? { $date: getISOString(value) } + : { $date: { $numberLong: value.getTime().toString() } }; + } + if (typeof value === 'number' && (!options.relaxed || !isFinite(value))) { + // it's an integer + if (Math.floor(value) === value) { + var int32Range = value >= BSON_INT32_MIN && value <= BSON_INT32_MAX, int64Range = value >= BSON_INT64_MIN && value <= BSON_INT64_MAX; + // interpret as being of the smallest BSON integer type that can represent the number exactly + if (int32Range) + return { $numberInt: value.toString() }; + if (int64Range) + return { $numberLong: value.toString() }; + } + return { $numberDouble: value.toString() }; + } + if (value instanceof RegExp || (0, utils_1.isRegExp)(value)) { + var flags = value.flags; + if (flags === undefined) { + var match = value.toString().match(/[gimuy]*$/); + if (match) { + flags = match[0]; + } + } + var rx = new regexp_1.BSONRegExp(value.source, flags); + return rx.toExtendedJSON(options); + } + if (value != null && typeof value === 'object') + return serializeDocument(value, options); + return value; +} +var BSON_TYPE_MAPPINGS = { + Binary: function (o) { return new binary_1.Binary(o.value(), o.sub_type); }, + Code: function (o) { return new code_1.Code(o.code, o.scope); }, + DBRef: function (o) { return new db_ref_1.DBRef(o.collection || o.namespace, o.oid, o.db, o.fields); }, + Decimal128: function (o) { return new decimal128_1.Decimal128(o.bytes); }, + Double: function (o) { return new double_1.Double(o.value); }, + Int32: function (o) { return new int_32_1.Int32(o.value); }, + Long: function (o) { + return long_1.Long.fromBits( + // underscore variants for 1.x backwards compatibility + o.low != null ? o.low : o.low_, o.low != null ? o.high : o.high_, o.low != null ? o.unsigned : o.unsigned_); + }, + MaxKey: function () { return new max_key_1.MaxKey(); }, + MinKey: function () { return new min_key_1.MinKey(); }, + ObjectID: function (o) { return new objectid_1.ObjectId(o); }, + ObjectId: function (o) { return new objectid_1.ObjectId(o); }, + BSONRegExp: function (o) { return new regexp_1.BSONRegExp(o.pattern, o.options); }, + Symbol: function (o) { return new symbol_1.BSONSymbol(o.value); }, + Timestamp: function (o) { return timestamp_1.Timestamp.fromBits(o.low, o.high); } +}; +// eslint-disable-next-line @typescript-eslint/no-explicit-any +function serializeDocument(doc, options) { + if (doc == null || typeof doc !== 'object') + throw new error_1.BSONError('not an object instance'); + var bsontype = doc._bsontype; + if (typeof bsontype === 'undefined') { + // It's a regular object. Recursively serialize its property values. + var _doc = {}; + for (var name in doc) { + options.seenObjects.push({ propertyName: name, obj: null }); + try { + var value = serializeValue(doc[name], options); + if (name === '__proto__') { + Object.defineProperty(_doc, name, { + value: value, + writable: true, + enumerable: true, + configurable: true + }); + } + else { + _doc[name] = value; + } + } + finally { + options.seenObjects.pop(); + } + } + return _doc; + } + else if (isBSONType(doc)) { + // the "document" is really just a BSON type object + // eslint-disable-next-line @typescript-eslint/no-explicit-any + var outDoc = doc; + if (typeof outDoc.toExtendedJSON !== 'function') { + // There's no EJSON serialization function on the object. It's probably an + // object created by a previous version of this library (or another library) + // that's duck-typing objects to look like they were generated by this library). + // Copy the object into this library's version of that type. + var mapper = BSON_TYPE_MAPPINGS[doc._bsontype]; + if (!mapper) { + throw new error_1.BSONTypeError('Unrecognized or invalid _bsontype: ' + doc._bsontype); + } + outDoc = mapper(outDoc); + } + // Two BSON types may have nested objects that may need to be serialized too + if (bsontype === 'Code' && outDoc.scope) { + outDoc = new code_1.Code(outDoc.code, serializeValue(outDoc.scope, options)); + } + else if (bsontype === 'DBRef' && outDoc.oid) { + outDoc = new db_ref_1.DBRef(serializeValue(outDoc.collection, options), serializeValue(outDoc.oid, options), serializeValue(outDoc.db, options), serializeValue(outDoc.fields, options)); + } + return outDoc.toExtendedJSON(options); + } + else { + throw new error_1.BSONError('_bsontype must be a string, but was: ' + typeof bsontype); + } +} +/** + * EJSON parse / stringify API + * @public + */ +// the namespace here is used to emulate `export * as EJSON from '...'` +// which as of now (sept 2020) api-extractor does not support +// eslint-disable-next-line @typescript-eslint/no-namespace +var EJSON; +(function (EJSON) { + /** + * Parse an Extended JSON string, constructing the JavaScript value or object described by that + * string. + * + * @example + * ```js + * const { EJSON } = require('bson'); + * const text = '{ "int32": { "$numberInt": "10" } }'; + * + * // prints { int32: { [String: '10'] _bsontype: 'Int32', value: '10' } } + * console.log(EJSON.parse(text, { relaxed: false })); + * + * // prints { int32: 10 } + * console.log(EJSON.parse(text)); + * ``` + */ + function parse(text, options) { + var finalOptions = Object.assign({}, { relaxed: true, legacy: false }, options); + // relaxed implies not strict + if (typeof finalOptions.relaxed === 'boolean') + finalOptions.strict = !finalOptions.relaxed; + if (typeof finalOptions.strict === 'boolean') + finalOptions.relaxed = !finalOptions.strict; + return JSON.parse(text, function (key, value) { + if (key.indexOf('\x00') !== -1) { + throw new error_1.BSONError("BSON Document field names cannot contain null bytes, found: ".concat(JSON.stringify(key))); + } + return deserializeValue(value, finalOptions); + }); + } + EJSON.parse = parse; + /** + * Converts a BSON document to an Extended JSON string, optionally replacing values if a replacer + * function is specified or optionally including only the specified properties if a replacer array + * is specified. + * + * @param value - The value to convert to extended JSON + * @param replacer - A function that alters the behavior of the stringification process, or an array of String and Number objects that serve as a whitelist for selecting/filtering the properties of the value object to be included in the JSON string. If this value is null or not provided, all properties of the object are included in the resulting JSON string + * @param space - A String or Number object that's used to insert white space into the output JSON string for readability purposes. + * @param options - Optional settings + * + * @example + * ```js + * const { EJSON } = require('bson'); + * const Int32 = require('mongodb').Int32; + * const doc = { int32: new Int32(10) }; + * + * // prints '{"int32":{"$numberInt":"10"}}' + * console.log(EJSON.stringify(doc, { relaxed: false })); + * + * // prints '{"int32":10}' + * console.log(EJSON.stringify(doc)); + * ``` + */ + function stringify(value, + // eslint-disable-next-line @typescript-eslint/no-explicit-any + replacer, space, options) { + if (space != null && typeof space === 'object') { + options = space; + space = 0; + } + if (replacer != null && typeof replacer === 'object' && !Array.isArray(replacer)) { + options = replacer; + replacer = undefined; + space = 0; + } + var serializeOptions = Object.assign({ relaxed: true, legacy: false }, options, { + seenObjects: [{ propertyName: '(root)', obj: null }] + }); + var doc = serializeValue(value, serializeOptions); + return JSON.stringify(doc, replacer, space); + } + EJSON.stringify = stringify; + /** + * Serializes an object to an Extended JSON string, and reparse it as a JavaScript object. + * + * @param value - The object to serialize + * @param options - Optional settings passed to the `stringify` function + */ + function serialize(value, options) { + options = options || {}; + return JSON.parse(stringify(value, options)); + } + EJSON.serialize = serialize; + /** + * Deserializes an Extended JSON object into a plain JavaScript object with native/BSON types + * + * @param ejson - The Extended JSON object to deserialize + * @param options - Optional settings passed to the parse method + */ + function deserialize(ejson, options) { + options = options || {}; + return parse(JSON.stringify(ejson), options); + } + EJSON.deserialize = deserialize; +})(EJSON = exports.EJSON || (exports.EJSON = {})); +//# sourceMappingURL=extended_json.js.map \ No newline at end of file diff --git a/node_modules/bson/lib/extended_json.js.map b/node_modules/bson/lib/extended_json.js.map new file mode 100644 index 000000000..d123c0ebb --- /dev/null +++ b/node_modules/bson/lib/extended_json.js.map @@ -0,0 +1 @@ +{"version":3,"file":"extended_json.js","sourceRoot":"","sources":["../src/extended_json.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/bson/lib/int_32.js b/node_modules/bson/lib/int_32.js new file mode 100644 index 000000000..e862255df --- /dev/null +++ b/node_modules/bson/lib/int_32.js @@ -0,0 +1,58 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.Int32 = void 0; +/** + * A class representation of a BSON Int32 type. + * @public + * @category BSONType + */ +var Int32 = /** @class */ (function () { + /** + * Create an Int32 type + * + * @param value - the number we want to represent as an int32. + */ + function Int32(value) { + if (!(this instanceof Int32)) + return new Int32(value); + if (value instanceof Number) { + value = value.valueOf(); + } + this.value = +value | 0; + } + /** + * Access the number value. + * + * @returns returns the wrapped int32 number. + */ + Int32.prototype.valueOf = function () { + return this.value; + }; + Int32.prototype.toString = function (radix) { + return this.value.toString(radix); + }; + Int32.prototype.toJSON = function () { + return this.value; + }; + /** @internal */ + Int32.prototype.toExtendedJSON = function (options) { + if (options && (options.relaxed || options.legacy)) + return this.value; + return { $numberInt: this.value.toString() }; + }; + /** @internal */ + Int32.fromExtendedJSON = function (doc, options) { + return options && options.relaxed ? parseInt(doc.$numberInt, 10) : new Int32(doc.$numberInt); + }; + /** @internal */ + Int32.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () { + return this.inspect(); + }; + Int32.prototype.inspect = function () { + return "new Int32(".concat(this.valueOf(), ")"); + }; + return Int32; +}()); +exports.Int32 = Int32; +Object.defineProperty(Int32.prototype, '_bsontype', { value: 'Int32' }); +//# sourceMappingURL=int_32.js.map \ No newline at end of file diff --git a/node_modules/bson/lib/int_32.js.map b/node_modules/bson/lib/int_32.js.map new file mode 100644 index 000000000..f55ab8596 --- /dev/null +++ b/node_modules/bson/lib/int_32.js.map @@ -0,0 +1 @@ +{"version":3,"file":"int_32.js","sourceRoot":"","sources":["../src/int_32.ts"],"names":[],"mappings":";;;AAOA;;;;GAIG;AACH;IAIE;;;;OAIG;IACH,eAAY,KAAsB;QAChC,IAAI,CAAC,CAAC,IAAI,YAAY,KAAK,CAAC;YAAE,OAAO,IAAI,KAAK,CAAC,KAAK,CAAC,CAAC;QAEtD,IAAK,KAAiB,YAAY,MAAM,EAAE;YACxC,KAAK,GAAG,KAAK,CAAC,OAAO,EAAE,CAAC;SACzB;QAED,IAAI,CAAC,KAAK,GAAG,CAAC,KAAK,GAAG,CAAC,CAAC;IAC1B,CAAC;IAED;;;;OAIG;IACH,uBAAO,GAAP;QACE,OAAO,IAAI,CAAC,KAAK,CAAC;IACpB,CAAC;IAED,wBAAQ,GAAR,UAAS,KAAc;QACrB,OAAO,IAAI,CAAC,KAAK,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC;IACpC,CAAC;IAED,sBAAM,GAAN;QACE,OAAO,IAAI,CAAC,KAAK,CAAC;IACpB,CAAC;IAED,gBAAgB;IAChB,8BAAc,GAAd,UAAe,OAAsB;QACnC,IAAI,OAAO,IAAI,CAAC,OAAO,CAAC,OAAO,IAAI,OAAO,CAAC,MAAM,CAAC;YAAE,OAAO,IAAI,CAAC,KAAK,CAAC;QACtE,OAAO,EAAE,UAAU,EAAE,IAAI,CAAC,KAAK,CAAC,QAAQ,EAAE,EAAE,CAAC;IAC/C,CAAC;IAED,gBAAgB;IACT,sBAAgB,GAAvB,UAAwB,GAAkB,EAAE,OAAsB;QAChE,OAAO,OAAO,IAAI,OAAO,CAAC,OAAO,CAAC,CAAC,CAAC,QAAQ,CAAC,GAAG,CAAC,UAAU,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,IAAI,KAAK,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC;IAC/F,CAAC;IAED,gBAAgB;IAChB,gBAAC,MAAM,CAAC,GAAG,CAAC,4BAA4B,CAAC,CAAC,GAA1C;QACE,OAAO,IAAI,CAAC,OAAO,EAAE,CAAC;IACxB,CAAC;IAED,uBAAO,GAAP;QACE,OAAO,oBAAa,IAAI,CAAC,OAAO,EAAE,MAAG,CAAC;IACxC,CAAC;IACH,YAAC;AAAD,CAAC,AAvDD,IAuDC;AAvDY,sBAAK;AAyDlB,MAAM,CAAC,cAAc,CAAC,KAAK,CAAC,SAAS,EAAE,WAAW,EAAE,EAAE,KAAK,EAAE,OAAO,EAAE,CAAC,CAAC"} \ No newline at end of file diff --git a/node_modules/bson/lib/long.js b/node_modules/bson/lib/long.js new file mode 100644 index 000000000..ec7aaec56 --- /dev/null +++ b/node_modules/bson/lib/long.js @@ -0,0 +1,900 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.Long = void 0; +var utils_1 = require("./parser/utils"); +/** + * wasm optimizations, to do native i64 multiplication and divide + */ +var wasm = undefined; +try { + wasm = new WebAssembly.Instance(new WebAssembly.Module( + // prettier-ignore + new Uint8Array([0, 97, 115, 109, 1, 0, 0, 0, 1, 13, 2, 96, 0, 1, 127, 96, 4, 127, 127, 127, 127, 1, 127, 3, 7, 6, 0, 1, 1, 1, 1, 1, 6, 6, 1, 127, 1, 65, 0, 11, 7, 50, 6, 3, 109, 117, 108, 0, 1, 5, 100, 105, 118, 95, 115, 0, 2, 5, 100, 105, 118, 95, 117, 0, 3, 5, 114, 101, 109, 95, 115, 0, 4, 5, 114, 101, 109, 95, 117, 0, 5, 8, 103, 101, 116, 95, 104, 105, 103, 104, 0, 0, 10, 191, 1, 6, 4, 0, 35, 0, 11, 36, 1, 1, 126, 32, 0, 173, 32, 1, 173, 66, 32, 134, 132, 32, 2, 173, 32, 3, 173, 66, 32, 134, 132, 126, 34, 4, 66, 32, 135, 167, 36, 0, 32, 4, 167, 11, 36, 1, 1, 126, 32, 0, 173, 32, 1, 173, 66, 32, 134, 132, 32, 2, 173, 32, 3, 173, 66, 32, 134, 132, 127, 34, 4, 66, 32, 135, 167, 36, 0, 32, 4, 167, 11, 36, 1, 1, 126, 32, 0, 173, 32, 1, 173, 66, 32, 134, 132, 32, 2, 173, 32, 3, 173, 66, 32, 134, 132, 128, 34, 4, 66, 32, 135, 167, 36, 0, 32, 4, 167, 11, 36, 1, 1, 126, 32, 0, 173, 32, 1, 173, 66, 32, 134, 132, 32, 2, 173, 32, 3, 173, 66, 32, 134, 132, 129, 34, 4, 66, 32, 135, 167, 36, 0, 32, 4, 167, 11, 36, 1, 1, 126, 32, 0, 173, 32, 1, 173, 66, 32, 134, 132, 32, 2, 173, 32, 3, 173, 66, 32, 134, 132, 130, 34, 4, 66, 32, 135, 167, 36, 0, 32, 4, 167, 11])), {}).exports; +} +catch (_a) { + // no wasm support +} +var TWO_PWR_16_DBL = 1 << 16; +var TWO_PWR_24_DBL = 1 << 24; +var TWO_PWR_32_DBL = TWO_PWR_16_DBL * TWO_PWR_16_DBL; +var TWO_PWR_64_DBL = TWO_PWR_32_DBL * TWO_PWR_32_DBL; +var TWO_PWR_63_DBL = TWO_PWR_64_DBL / 2; +/** A cache of the Long representations of small integer values. */ +var INT_CACHE = {}; +/** A cache of the Long representations of small unsigned integer values. */ +var UINT_CACHE = {}; +/** + * A class representing a 64-bit integer + * @public + * @category BSONType + * @remarks + * The internal representation of a long is the two given signed, 32-bit values. + * We use 32-bit pieces because these are the size of integers on which + * Javascript performs bit-operations. For operations like addition and + * multiplication, we split each number into 16 bit pieces, which can easily be + * multiplied within Javascript's floating-point representation without overflow + * or change in sign. + * In the algorithms below, we frequently reduce the negative case to the + * positive case by negating the input(s) and then post-processing the result. + * Note that we must ALWAYS check specially whether those values are MIN_VALUE + * (-2^63) because -MIN_VALUE == MIN_VALUE (since 2^63 cannot be represented as + * a positive number, it overflows back into a negative). Not handling this + * case would often result in infinite recursion. + * Common constant values ZERO, ONE, NEG_ONE, etc. are found as static properties on this class. + */ +var Long = /** @class */ (function () { + /** + * Constructs a 64 bit two's-complement integer, given its low and high 32 bit values as *signed* integers. + * See the from* functions below for more convenient ways of constructing Longs. + * + * Acceptable signatures are: + * - Long(low, high, unsigned?) + * - Long(bigint, unsigned?) + * - Long(string, unsigned?) + * + * @param low - The low (signed) 32 bits of the long + * @param high - The high (signed) 32 bits of the long + * @param unsigned - Whether unsigned or not, defaults to signed + */ + function Long(low, high, unsigned) { + if (low === void 0) { low = 0; } + if (!(this instanceof Long)) + return new Long(low, high, unsigned); + if (typeof low === 'bigint') { + Object.assign(this, Long.fromBigInt(low, !!high)); + } + else if (typeof low === 'string') { + Object.assign(this, Long.fromString(low, !!high)); + } + else { + this.low = low | 0; + this.high = high | 0; + this.unsigned = !!unsigned; + } + Object.defineProperty(this, '__isLong__', { + value: true, + configurable: false, + writable: false, + enumerable: false + }); + } + /** + * Returns a Long representing the 64 bit integer that comes by concatenating the given low and high bits. + * Each is assumed to use 32 bits. + * @param lowBits - The low 32 bits + * @param highBits - The high 32 bits + * @param unsigned - Whether unsigned or not, defaults to signed + * @returns The corresponding Long value + */ + Long.fromBits = function (lowBits, highBits, unsigned) { + return new Long(lowBits, highBits, unsigned); + }; + /** + * Returns a Long representing the given 32 bit integer value. + * @param value - The 32 bit integer in question + * @param unsigned - Whether unsigned or not, defaults to signed + * @returns The corresponding Long value + */ + Long.fromInt = function (value, unsigned) { + var obj, cachedObj, cache; + if (unsigned) { + value >>>= 0; + if ((cache = 0 <= value && value < 256)) { + cachedObj = UINT_CACHE[value]; + if (cachedObj) + return cachedObj; + } + obj = Long.fromBits(value, (value | 0) < 0 ? -1 : 0, true); + if (cache) + UINT_CACHE[value] = obj; + return obj; + } + else { + value |= 0; + if ((cache = -128 <= value && value < 128)) { + cachedObj = INT_CACHE[value]; + if (cachedObj) + return cachedObj; + } + obj = Long.fromBits(value, value < 0 ? -1 : 0, false); + if (cache) + INT_CACHE[value] = obj; + return obj; + } + }; + /** + * Returns a Long representing the given value, provided that it is a finite number. Otherwise, zero is returned. + * @param value - The number in question + * @param unsigned - Whether unsigned or not, defaults to signed + * @returns The corresponding Long value + */ + Long.fromNumber = function (value, unsigned) { + if (isNaN(value)) + return unsigned ? Long.UZERO : Long.ZERO; + if (unsigned) { + if (value < 0) + return Long.UZERO; + if (value >= TWO_PWR_64_DBL) + return Long.MAX_UNSIGNED_VALUE; + } + else { + if (value <= -TWO_PWR_63_DBL) + return Long.MIN_VALUE; + if (value + 1 >= TWO_PWR_63_DBL) + return Long.MAX_VALUE; + } + if (value < 0) + return Long.fromNumber(-value, unsigned).neg(); + return Long.fromBits(value % TWO_PWR_32_DBL | 0, (value / TWO_PWR_32_DBL) | 0, unsigned); + }; + /** + * Returns a Long representing the given value, provided that it is a finite number. Otherwise, zero is returned. + * @param value - The number in question + * @param unsigned - Whether unsigned or not, defaults to signed + * @returns The corresponding Long value + */ + Long.fromBigInt = function (value, unsigned) { + return Long.fromString(value.toString(), unsigned); + }; + /** + * Returns a Long representation of the given string, written using the specified radix. + * @param str - The textual representation of the Long + * @param unsigned - Whether unsigned or not, defaults to signed + * @param radix - The radix in which the text is written (2-36), defaults to 10 + * @returns The corresponding Long value + */ + Long.fromString = function (str, unsigned, radix) { + if (str.length === 0) + throw Error('empty string'); + if (str === 'NaN' || str === 'Infinity' || str === '+Infinity' || str === '-Infinity') + return Long.ZERO; + if (typeof unsigned === 'number') { + // For goog.math.long compatibility + (radix = unsigned), (unsigned = false); + } + else { + unsigned = !!unsigned; + } + radix = radix || 10; + if (radix < 2 || 36 < radix) + throw RangeError('radix'); + var p; + if ((p = str.indexOf('-')) > 0) + throw Error('interior hyphen'); + else if (p === 0) { + return Long.fromString(str.substring(1), unsigned, radix).neg(); + } + // Do several (8) digits each time through the loop, so as to + // minimize the calls to the very expensive emulated div. + var radixToPower = Long.fromNumber(Math.pow(radix, 8)); + var result = Long.ZERO; + for (var i = 0; i < str.length; i += 8) { + var size = Math.min(8, str.length - i), value = parseInt(str.substring(i, i + size), radix); + if (size < 8) { + var power = Long.fromNumber(Math.pow(radix, size)); + result = result.mul(power).add(Long.fromNumber(value)); + } + else { + result = result.mul(radixToPower); + result = result.add(Long.fromNumber(value)); + } + } + result.unsigned = unsigned; + return result; + }; + /** + * Creates a Long from its byte representation. + * @param bytes - Byte representation + * @param unsigned - Whether unsigned or not, defaults to signed + * @param le - Whether little or big endian, defaults to big endian + * @returns The corresponding Long value + */ + Long.fromBytes = function (bytes, unsigned, le) { + return le ? Long.fromBytesLE(bytes, unsigned) : Long.fromBytesBE(bytes, unsigned); + }; + /** + * Creates a Long from its little endian byte representation. + * @param bytes - Little endian byte representation + * @param unsigned - Whether unsigned or not, defaults to signed + * @returns The corresponding Long value + */ + Long.fromBytesLE = function (bytes, unsigned) { + return new Long(bytes[0] | (bytes[1] << 8) | (bytes[2] << 16) | (bytes[3] << 24), bytes[4] | (bytes[5] << 8) | (bytes[6] << 16) | (bytes[7] << 24), unsigned); + }; + /** + * Creates a Long from its big endian byte representation. + * @param bytes - Big endian byte representation + * @param unsigned - Whether unsigned or not, defaults to signed + * @returns The corresponding Long value + */ + Long.fromBytesBE = function (bytes, unsigned) { + return new Long((bytes[4] << 24) | (bytes[5] << 16) | (bytes[6] << 8) | bytes[7], (bytes[0] << 24) | (bytes[1] << 16) | (bytes[2] << 8) | bytes[3], unsigned); + }; + /** + * Tests if the specified object is a Long. + */ + Long.isLong = function (value) { + return (0, utils_1.isObjectLike)(value) && value['__isLong__'] === true; + }; + /** + * Converts the specified value to a Long. + * @param unsigned - Whether unsigned or not, defaults to signed + */ + Long.fromValue = function (val, unsigned) { + if (typeof val === 'number') + return Long.fromNumber(val, unsigned); + if (typeof val === 'string') + return Long.fromString(val, unsigned); + // Throws for non-objects, converts non-instanceof Long: + return Long.fromBits(val.low, val.high, typeof unsigned === 'boolean' ? unsigned : val.unsigned); + }; + /** Returns the sum of this and the specified Long. */ + Long.prototype.add = function (addend) { + if (!Long.isLong(addend)) + addend = Long.fromValue(addend); + // Divide each number into 4 chunks of 16 bits, and then sum the chunks. + var a48 = this.high >>> 16; + var a32 = this.high & 0xffff; + var a16 = this.low >>> 16; + var a00 = this.low & 0xffff; + var b48 = addend.high >>> 16; + var b32 = addend.high & 0xffff; + var b16 = addend.low >>> 16; + var b00 = addend.low & 0xffff; + var c48 = 0, c32 = 0, c16 = 0, c00 = 0; + c00 += a00 + b00; + c16 += c00 >>> 16; + c00 &= 0xffff; + c16 += a16 + b16; + c32 += c16 >>> 16; + c16 &= 0xffff; + c32 += a32 + b32; + c48 += c32 >>> 16; + c32 &= 0xffff; + c48 += a48 + b48; + c48 &= 0xffff; + return Long.fromBits((c16 << 16) | c00, (c48 << 16) | c32, this.unsigned); + }; + /** + * Returns the sum of this and the specified Long. + * @returns Sum + */ + Long.prototype.and = function (other) { + if (!Long.isLong(other)) + other = Long.fromValue(other); + return Long.fromBits(this.low & other.low, this.high & other.high, this.unsigned); + }; + /** + * Compares this Long's value with the specified's. + * @returns 0 if they are the same, 1 if the this is greater and -1 if the given one is greater + */ + Long.prototype.compare = function (other) { + if (!Long.isLong(other)) + other = Long.fromValue(other); + if (this.eq(other)) + return 0; + var thisNeg = this.isNegative(), otherNeg = other.isNegative(); + if (thisNeg && !otherNeg) + return -1; + if (!thisNeg && otherNeg) + return 1; + // At this point the sign bits are the same + if (!this.unsigned) + return this.sub(other).isNegative() ? -1 : 1; + // Both are positive if at least one is unsigned + return other.high >>> 0 > this.high >>> 0 || + (other.high === this.high && other.low >>> 0 > this.low >>> 0) + ? -1 + : 1; + }; + /** This is an alias of {@link Long.compare} */ + Long.prototype.comp = function (other) { + return this.compare(other); + }; + /** + * Returns this Long divided by the specified. The result is signed if this Long is signed or unsigned if this Long is unsigned. + * @returns Quotient + */ + Long.prototype.divide = function (divisor) { + if (!Long.isLong(divisor)) + divisor = Long.fromValue(divisor); + if (divisor.isZero()) + throw Error('division by zero'); + // use wasm support if present + if (wasm) { + // guard against signed division overflow: the largest + // negative number / -1 would be 1 larger than the largest + // positive number, due to two's complement. + if (!this.unsigned && + this.high === -0x80000000 && + divisor.low === -1 && + divisor.high === -1) { + // be consistent with non-wasm code path + return this; + } + var low = (this.unsigned ? wasm.div_u : wasm.div_s)(this.low, this.high, divisor.low, divisor.high); + return Long.fromBits(low, wasm.get_high(), this.unsigned); + } + if (this.isZero()) + return this.unsigned ? Long.UZERO : Long.ZERO; + var approx, rem, res; + if (!this.unsigned) { + // This section is only relevant for signed longs and is derived from the + // closure library as a whole. + if (this.eq(Long.MIN_VALUE)) { + if (divisor.eq(Long.ONE) || divisor.eq(Long.NEG_ONE)) + return Long.MIN_VALUE; + // recall that -MIN_VALUE == MIN_VALUE + else if (divisor.eq(Long.MIN_VALUE)) + return Long.ONE; + else { + // At this point, we have |other| >= 2, so |this/other| < |MIN_VALUE|. + var halfThis = this.shr(1); + approx = halfThis.div(divisor).shl(1); + if (approx.eq(Long.ZERO)) { + return divisor.isNegative() ? Long.ONE : Long.NEG_ONE; + } + else { + rem = this.sub(divisor.mul(approx)); + res = approx.add(rem.div(divisor)); + return res; + } + } + } + else if (divisor.eq(Long.MIN_VALUE)) + return this.unsigned ? Long.UZERO : Long.ZERO; + if (this.isNegative()) { + if (divisor.isNegative()) + return this.neg().div(divisor.neg()); + return this.neg().div(divisor).neg(); + } + else if (divisor.isNegative()) + return this.div(divisor.neg()).neg(); + res = Long.ZERO; + } + else { + // The algorithm below has not been made for unsigned longs. It's therefore + // required to take special care of the MSB prior to running it. + if (!divisor.unsigned) + divisor = divisor.toUnsigned(); + if (divisor.gt(this)) + return Long.UZERO; + if (divisor.gt(this.shru(1))) + // 15 >>> 1 = 7 ; with divisor = 8 ; true + return Long.UONE; + res = Long.UZERO; + } + // Repeat the following until the remainder is less than other: find a + // floating-point that approximates remainder / other *from below*, add this + // into the result, and subtract it from the remainder. It is critical that + // the approximate value is less than or equal to the real value so that the + // remainder never becomes negative. + // eslint-disable-next-line @typescript-eslint/no-this-alias + rem = this; + while (rem.gte(divisor)) { + // Approximate the result of division. This may be a little greater or + // smaller than the actual value. + approx = Math.max(1, Math.floor(rem.toNumber() / divisor.toNumber())); + // We will tweak the approximate result by changing it in the 48-th digit or + // the smallest non-fractional digit, whichever is larger. + var log2 = Math.ceil(Math.log(approx) / Math.LN2); + var delta = log2 <= 48 ? 1 : Math.pow(2, log2 - 48); + // Decrease the approximation until it is smaller than the remainder. Note + // that if it is too large, the product overflows and is negative. + var approxRes = Long.fromNumber(approx); + var approxRem = approxRes.mul(divisor); + while (approxRem.isNegative() || approxRem.gt(rem)) { + approx -= delta; + approxRes = Long.fromNumber(approx, this.unsigned); + approxRem = approxRes.mul(divisor); + } + // We know the answer can't be zero... and actually, zero would cause + // infinite recursion since we would make no progress. + if (approxRes.isZero()) + approxRes = Long.ONE; + res = res.add(approxRes); + rem = rem.sub(approxRem); + } + return res; + }; + /**This is an alias of {@link Long.divide} */ + Long.prototype.div = function (divisor) { + return this.divide(divisor); + }; + /** + * Tests if this Long's value equals the specified's. + * @param other - Other value + */ + Long.prototype.equals = function (other) { + if (!Long.isLong(other)) + other = Long.fromValue(other); + if (this.unsigned !== other.unsigned && this.high >>> 31 === 1 && other.high >>> 31 === 1) + return false; + return this.high === other.high && this.low === other.low; + }; + /** This is an alias of {@link Long.equals} */ + Long.prototype.eq = function (other) { + return this.equals(other); + }; + /** Gets the high 32 bits as a signed integer. */ + Long.prototype.getHighBits = function () { + return this.high; + }; + /** Gets the high 32 bits as an unsigned integer. */ + Long.prototype.getHighBitsUnsigned = function () { + return this.high >>> 0; + }; + /** Gets the low 32 bits as a signed integer. */ + Long.prototype.getLowBits = function () { + return this.low; + }; + /** Gets the low 32 bits as an unsigned integer. */ + Long.prototype.getLowBitsUnsigned = function () { + return this.low >>> 0; + }; + /** Gets the number of bits needed to represent the absolute value of this Long. */ + Long.prototype.getNumBitsAbs = function () { + if (this.isNegative()) { + // Unsigned Longs are never negative + return this.eq(Long.MIN_VALUE) ? 64 : this.neg().getNumBitsAbs(); + } + var val = this.high !== 0 ? this.high : this.low; + var bit; + for (bit = 31; bit > 0; bit--) + if ((val & (1 << bit)) !== 0) + break; + return this.high !== 0 ? bit + 33 : bit + 1; + }; + /** Tests if this Long's value is greater than the specified's. */ + Long.prototype.greaterThan = function (other) { + return this.comp(other) > 0; + }; + /** This is an alias of {@link Long.greaterThan} */ + Long.prototype.gt = function (other) { + return this.greaterThan(other); + }; + /** Tests if this Long's value is greater than or equal the specified's. */ + Long.prototype.greaterThanOrEqual = function (other) { + return this.comp(other) >= 0; + }; + /** This is an alias of {@link Long.greaterThanOrEqual} */ + Long.prototype.gte = function (other) { + return this.greaterThanOrEqual(other); + }; + /** This is an alias of {@link Long.greaterThanOrEqual} */ + Long.prototype.ge = function (other) { + return this.greaterThanOrEqual(other); + }; + /** Tests if this Long's value is even. */ + Long.prototype.isEven = function () { + return (this.low & 1) === 0; + }; + /** Tests if this Long's value is negative. */ + Long.prototype.isNegative = function () { + return !this.unsigned && this.high < 0; + }; + /** Tests if this Long's value is odd. */ + Long.prototype.isOdd = function () { + return (this.low & 1) === 1; + }; + /** Tests if this Long's value is positive. */ + Long.prototype.isPositive = function () { + return this.unsigned || this.high >= 0; + }; + /** Tests if this Long's value equals zero. */ + Long.prototype.isZero = function () { + return this.high === 0 && this.low === 0; + }; + /** Tests if this Long's value is less than the specified's. */ + Long.prototype.lessThan = function (other) { + return this.comp(other) < 0; + }; + /** This is an alias of {@link Long#lessThan}. */ + Long.prototype.lt = function (other) { + return this.lessThan(other); + }; + /** Tests if this Long's value is less than or equal the specified's. */ + Long.prototype.lessThanOrEqual = function (other) { + return this.comp(other) <= 0; + }; + /** This is an alias of {@link Long.lessThanOrEqual} */ + Long.prototype.lte = function (other) { + return this.lessThanOrEqual(other); + }; + /** Returns this Long modulo the specified. */ + Long.prototype.modulo = function (divisor) { + if (!Long.isLong(divisor)) + divisor = Long.fromValue(divisor); + // use wasm support if present + if (wasm) { + var low = (this.unsigned ? wasm.rem_u : wasm.rem_s)(this.low, this.high, divisor.low, divisor.high); + return Long.fromBits(low, wasm.get_high(), this.unsigned); + } + return this.sub(this.div(divisor).mul(divisor)); + }; + /** This is an alias of {@link Long.modulo} */ + Long.prototype.mod = function (divisor) { + return this.modulo(divisor); + }; + /** This is an alias of {@link Long.modulo} */ + Long.prototype.rem = function (divisor) { + return this.modulo(divisor); + }; + /** + * Returns the product of this and the specified Long. + * @param multiplier - Multiplier + * @returns Product + */ + Long.prototype.multiply = function (multiplier) { + if (this.isZero()) + return Long.ZERO; + if (!Long.isLong(multiplier)) + multiplier = Long.fromValue(multiplier); + // use wasm support if present + if (wasm) { + var low = wasm.mul(this.low, this.high, multiplier.low, multiplier.high); + return Long.fromBits(low, wasm.get_high(), this.unsigned); + } + if (multiplier.isZero()) + return Long.ZERO; + if (this.eq(Long.MIN_VALUE)) + return multiplier.isOdd() ? Long.MIN_VALUE : Long.ZERO; + if (multiplier.eq(Long.MIN_VALUE)) + return this.isOdd() ? Long.MIN_VALUE : Long.ZERO; + if (this.isNegative()) { + if (multiplier.isNegative()) + return this.neg().mul(multiplier.neg()); + else + return this.neg().mul(multiplier).neg(); + } + else if (multiplier.isNegative()) + return this.mul(multiplier.neg()).neg(); + // If both longs are small, use float multiplication + if (this.lt(Long.TWO_PWR_24) && multiplier.lt(Long.TWO_PWR_24)) + return Long.fromNumber(this.toNumber() * multiplier.toNumber(), this.unsigned); + // Divide each long into 4 chunks of 16 bits, and then add up 4x4 products. + // We can skip products that would overflow. + var a48 = this.high >>> 16; + var a32 = this.high & 0xffff; + var a16 = this.low >>> 16; + var a00 = this.low & 0xffff; + var b48 = multiplier.high >>> 16; + var b32 = multiplier.high & 0xffff; + var b16 = multiplier.low >>> 16; + var b00 = multiplier.low & 0xffff; + var c48 = 0, c32 = 0, c16 = 0, c00 = 0; + c00 += a00 * b00; + c16 += c00 >>> 16; + c00 &= 0xffff; + c16 += a16 * b00; + c32 += c16 >>> 16; + c16 &= 0xffff; + c16 += a00 * b16; + c32 += c16 >>> 16; + c16 &= 0xffff; + c32 += a32 * b00; + c48 += c32 >>> 16; + c32 &= 0xffff; + c32 += a16 * b16; + c48 += c32 >>> 16; + c32 &= 0xffff; + c32 += a00 * b32; + c48 += c32 >>> 16; + c32 &= 0xffff; + c48 += a48 * b00 + a32 * b16 + a16 * b32 + a00 * b48; + c48 &= 0xffff; + return Long.fromBits((c16 << 16) | c00, (c48 << 16) | c32, this.unsigned); + }; + /** This is an alias of {@link Long.multiply} */ + Long.prototype.mul = function (multiplier) { + return this.multiply(multiplier); + }; + /** Returns the Negation of this Long's value. */ + Long.prototype.negate = function () { + if (!this.unsigned && this.eq(Long.MIN_VALUE)) + return Long.MIN_VALUE; + return this.not().add(Long.ONE); + }; + /** This is an alias of {@link Long.negate} */ + Long.prototype.neg = function () { + return this.negate(); + }; + /** Returns the bitwise NOT of this Long. */ + Long.prototype.not = function () { + return Long.fromBits(~this.low, ~this.high, this.unsigned); + }; + /** Tests if this Long's value differs from the specified's. */ + Long.prototype.notEquals = function (other) { + return !this.equals(other); + }; + /** This is an alias of {@link Long.notEquals} */ + Long.prototype.neq = function (other) { + return this.notEquals(other); + }; + /** This is an alias of {@link Long.notEquals} */ + Long.prototype.ne = function (other) { + return this.notEquals(other); + }; + /** + * Returns the bitwise OR of this Long and the specified. + */ + Long.prototype.or = function (other) { + if (!Long.isLong(other)) + other = Long.fromValue(other); + return Long.fromBits(this.low | other.low, this.high | other.high, this.unsigned); + }; + /** + * Returns this Long with bits shifted to the left by the given amount. + * @param numBits - Number of bits + * @returns Shifted Long + */ + Long.prototype.shiftLeft = function (numBits) { + if (Long.isLong(numBits)) + numBits = numBits.toInt(); + if ((numBits &= 63) === 0) + return this; + else if (numBits < 32) + return Long.fromBits(this.low << numBits, (this.high << numBits) | (this.low >>> (32 - numBits)), this.unsigned); + else + return Long.fromBits(0, this.low << (numBits - 32), this.unsigned); + }; + /** This is an alias of {@link Long.shiftLeft} */ + Long.prototype.shl = function (numBits) { + return this.shiftLeft(numBits); + }; + /** + * Returns this Long with bits arithmetically shifted to the right by the given amount. + * @param numBits - Number of bits + * @returns Shifted Long + */ + Long.prototype.shiftRight = function (numBits) { + if (Long.isLong(numBits)) + numBits = numBits.toInt(); + if ((numBits &= 63) === 0) + return this; + else if (numBits < 32) + return Long.fromBits((this.low >>> numBits) | (this.high << (32 - numBits)), this.high >> numBits, this.unsigned); + else + return Long.fromBits(this.high >> (numBits - 32), this.high >= 0 ? 0 : -1, this.unsigned); + }; + /** This is an alias of {@link Long.shiftRight} */ + Long.prototype.shr = function (numBits) { + return this.shiftRight(numBits); + }; + /** + * Returns this Long with bits logically shifted to the right by the given amount. + * @param numBits - Number of bits + * @returns Shifted Long + */ + Long.prototype.shiftRightUnsigned = function (numBits) { + if (Long.isLong(numBits)) + numBits = numBits.toInt(); + numBits &= 63; + if (numBits === 0) + return this; + else { + var high = this.high; + if (numBits < 32) { + var low = this.low; + return Long.fromBits((low >>> numBits) | (high << (32 - numBits)), high >>> numBits, this.unsigned); + } + else if (numBits === 32) + return Long.fromBits(high, 0, this.unsigned); + else + return Long.fromBits(high >>> (numBits - 32), 0, this.unsigned); + } + }; + /** This is an alias of {@link Long.shiftRightUnsigned} */ + Long.prototype.shr_u = function (numBits) { + return this.shiftRightUnsigned(numBits); + }; + /** This is an alias of {@link Long.shiftRightUnsigned} */ + Long.prototype.shru = function (numBits) { + return this.shiftRightUnsigned(numBits); + }; + /** + * Returns the difference of this and the specified Long. + * @param subtrahend - Subtrahend + * @returns Difference + */ + Long.prototype.subtract = function (subtrahend) { + if (!Long.isLong(subtrahend)) + subtrahend = Long.fromValue(subtrahend); + return this.add(subtrahend.neg()); + }; + /** This is an alias of {@link Long.subtract} */ + Long.prototype.sub = function (subtrahend) { + return this.subtract(subtrahend); + }; + /** Converts the Long to a 32 bit integer, assuming it is a 32 bit integer. */ + Long.prototype.toInt = function () { + return this.unsigned ? this.low >>> 0 : this.low; + }; + /** Converts the Long to a the nearest floating-point representation of this value (double, 53 bit mantissa). */ + Long.prototype.toNumber = function () { + if (this.unsigned) + return (this.high >>> 0) * TWO_PWR_32_DBL + (this.low >>> 0); + return this.high * TWO_PWR_32_DBL + (this.low >>> 0); + }; + /** Converts the Long to a BigInt (arbitrary precision). */ + Long.prototype.toBigInt = function () { + return BigInt(this.toString()); + }; + /** + * Converts this Long to its byte representation. + * @param le - Whether little or big endian, defaults to big endian + * @returns Byte representation + */ + Long.prototype.toBytes = function (le) { + return le ? this.toBytesLE() : this.toBytesBE(); + }; + /** + * Converts this Long to its little endian byte representation. + * @returns Little endian byte representation + */ + Long.prototype.toBytesLE = function () { + var hi = this.high, lo = this.low; + return [ + lo & 0xff, + (lo >>> 8) & 0xff, + (lo >>> 16) & 0xff, + lo >>> 24, + hi & 0xff, + (hi >>> 8) & 0xff, + (hi >>> 16) & 0xff, + hi >>> 24 + ]; + }; + /** + * Converts this Long to its big endian byte representation. + * @returns Big endian byte representation + */ + Long.prototype.toBytesBE = function () { + var hi = this.high, lo = this.low; + return [ + hi >>> 24, + (hi >>> 16) & 0xff, + (hi >>> 8) & 0xff, + hi & 0xff, + lo >>> 24, + (lo >>> 16) & 0xff, + (lo >>> 8) & 0xff, + lo & 0xff + ]; + }; + /** + * Converts this Long to signed. + */ + Long.prototype.toSigned = function () { + if (!this.unsigned) + return this; + return Long.fromBits(this.low, this.high, false); + }; + /** + * Converts the Long to a string written in the specified radix. + * @param radix - Radix (2-36), defaults to 10 + * @throws RangeError If `radix` is out of range + */ + Long.prototype.toString = function (radix) { + radix = radix || 10; + if (radix < 2 || 36 < radix) + throw RangeError('radix'); + if (this.isZero()) + return '0'; + if (this.isNegative()) { + // Unsigned Longs are never negative + if (this.eq(Long.MIN_VALUE)) { + // We need to change the Long value before it can be negated, so we remove + // the bottom-most digit in this base and then recurse to do the rest. + var radixLong = Long.fromNumber(radix), div = this.div(radixLong), rem1 = div.mul(radixLong).sub(this); + return div.toString(radix) + rem1.toInt().toString(radix); + } + else + return '-' + this.neg().toString(radix); + } + // Do several (6) digits each time through the loop, so as to + // minimize the calls to the very expensive emulated div. + var radixToPower = Long.fromNumber(Math.pow(radix, 6), this.unsigned); + // eslint-disable-next-line @typescript-eslint/no-this-alias + var rem = this; + var result = ''; + // eslint-disable-next-line no-constant-condition + while (true) { + var remDiv = rem.div(radixToPower); + var intval = rem.sub(remDiv.mul(radixToPower)).toInt() >>> 0; + var digits = intval.toString(radix); + rem = remDiv; + if (rem.isZero()) { + return digits + result; + } + else { + while (digits.length < 6) + digits = '0' + digits; + result = '' + digits + result; + } + } + }; + /** Converts this Long to unsigned. */ + Long.prototype.toUnsigned = function () { + if (this.unsigned) + return this; + return Long.fromBits(this.low, this.high, true); + }; + /** Returns the bitwise XOR of this Long and the given one. */ + Long.prototype.xor = function (other) { + if (!Long.isLong(other)) + other = Long.fromValue(other); + return Long.fromBits(this.low ^ other.low, this.high ^ other.high, this.unsigned); + }; + /** This is an alias of {@link Long.isZero} */ + Long.prototype.eqz = function () { + return this.isZero(); + }; + /** This is an alias of {@link Long.lessThanOrEqual} */ + Long.prototype.le = function (other) { + return this.lessThanOrEqual(other); + }; + /* + **************************************************************** + * BSON SPECIFIC ADDITIONS * + **************************************************************** + */ + Long.prototype.toExtendedJSON = function (options) { + if (options && options.relaxed) + return this.toNumber(); + return { $numberLong: this.toString() }; + }; + Long.fromExtendedJSON = function (doc, options) { + var result = Long.fromString(doc.$numberLong); + return options && options.relaxed ? result.toNumber() : result; + }; + /** @internal */ + Long.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () { + return this.inspect(); + }; + Long.prototype.inspect = function () { + return "new Long(\"".concat(this.toString(), "\"").concat(this.unsigned ? ', true' : '', ")"); + }; + Long.TWO_PWR_24 = Long.fromInt(TWO_PWR_24_DBL); + /** Maximum unsigned value. */ + Long.MAX_UNSIGNED_VALUE = Long.fromBits(0xffffffff | 0, 0xffffffff | 0, true); + /** Signed zero */ + Long.ZERO = Long.fromInt(0); + /** Unsigned zero. */ + Long.UZERO = Long.fromInt(0, true); + /** Signed one. */ + Long.ONE = Long.fromInt(1); + /** Unsigned one. */ + Long.UONE = Long.fromInt(1, true); + /** Signed negative one. */ + Long.NEG_ONE = Long.fromInt(-1); + /** Maximum signed value. */ + Long.MAX_VALUE = Long.fromBits(0xffffffff | 0, 0x7fffffff | 0, false); + /** Minimum signed value. */ + Long.MIN_VALUE = Long.fromBits(0, 0x80000000 | 0, false); + return Long; +}()); +exports.Long = Long; +Object.defineProperty(Long.prototype, '__isLong__', { value: true }); +Object.defineProperty(Long.prototype, '_bsontype', { value: 'Long' }); +//# sourceMappingURL=long.js.map \ No newline at end of file diff --git a/node_modules/bson/lib/long.js.map b/node_modules/bson/lib/long.js.map new file mode 100644 index 000000000..c191742c1 --- /dev/null +++ b/node_modules/bson/lib/long.js.map @@ -0,0 +1 @@ +{"version":3,"file":"long.js","sourceRoot":"","sources":["../src/long.ts"],"names":[],"mappings":";;;AACA,wCAA8C;AA2C9C;;GAEG;AACH,IAAI,IAAI,GAAgC,SAAS,CAAC;AAMlD,IAAI;IACF,IAAI,GAAG,IAAI,WAAW,CAAC,QAAQ,CAC7B,IAAI,WAAW,CAAC,MAAM;IACpB,kBAAkB;IAClB,IAAI,UAAU,CAAC,CAAC,CAAC,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC,EAAE,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,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"} \ No newline at end of file diff --git a/node_modules/bson/lib/map.js b/node_modules/bson/lib/map.js new file mode 100644 index 000000000..32334f590 --- /dev/null +++ b/node_modules/bson/lib/map.js @@ -0,0 +1,123 @@ +"use strict"; +/* eslint-disable @typescript-eslint/no-explicit-any */ +// We have an ES6 Map available, return the native instance +Object.defineProperty(exports, "__esModule", { value: true }); +exports.Map = void 0; +var global_1 = require("./utils/global"); +/** @public */ +var bsonMap; +exports.Map = bsonMap; +var bsonGlobal = (0, global_1.getGlobal)(); +if (bsonGlobal.Map) { + exports.Map = bsonMap = bsonGlobal.Map; +} +else { + // We will return a polyfill + exports.Map = bsonMap = /** @class */ (function () { + function Map(array) { + if (array === void 0) { array = []; } + this._keys = []; + this._values = {}; + for (var i = 0; i < array.length; i++) { + if (array[i] == null) + continue; // skip null and undefined + var entry = array[i]; + var key = entry[0]; + var value = entry[1]; + // Add the key to the list of keys in order + this._keys.push(key); + // Add the key and value to the values dictionary with a point + // to the location in the ordered keys list + this._values[key] = { v: value, i: this._keys.length - 1 }; + } + } + Map.prototype.clear = function () { + this._keys = []; + this._values = {}; + }; + Map.prototype.delete = function (key) { + var value = this._values[key]; + if (value == null) + return false; + // Delete entry + delete this._values[key]; + // Remove the key from the ordered keys list + this._keys.splice(value.i, 1); + return true; + }; + Map.prototype.entries = function () { + var _this = this; + var index = 0; + return { + next: function () { + var key = _this._keys[index++]; + return { + value: key !== undefined ? [key, _this._values[key].v] : undefined, + done: key !== undefined ? false : true + }; + } + }; + }; + Map.prototype.forEach = function (callback, self) { + self = self || this; + for (var i = 0; i < this._keys.length; i++) { + var key = this._keys[i]; + // Call the forEach callback + callback.call(self, this._values[key].v, key, self); + } + }; + Map.prototype.get = function (key) { + return this._values[key] ? this._values[key].v : undefined; + }; + Map.prototype.has = function (key) { + return this._values[key] != null; + }; + Map.prototype.keys = function () { + var _this = this; + var index = 0; + return { + next: function () { + var key = _this._keys[index++]; + return { + value: key !== undefined ? key : undefined, + done: key !== undefined ? false : true + }; + } + }; + }; + Map.prototype.set = function (key, value) { + if (this._values[key]) { + this._values[key].v = value; + return this; + } + // Add the key to the list of keys in order + this._keys.push(key); + // Add the key and value to the values dictionary with a point + // to the location in the ordered keys list + this._values[key] = { v: value, i: this._keys.length - 1 }; + return this; + }; + Map.prototype.values = function () { + var _this = this; + var index = 0; + return { + next: function () { + var key = _this._keys[index++]; + return { + value: key !== undefined ? _this._values[key].v : undefined, + done: key !== undefined ? false : true + }; + } + }; + }; + Object.defineProperty(Map.prototype, "size", { + get: function () { + return this._keys.length; + }, + enumerable: false, + configurable: true + }); + return Map; + }()); +} +//# sourceMappingURL=map.js.map \ No newline at end of file diff --git a/node_modules/bson/lib/map.js.map b/node_modules/bson/lib/map.js.map new file mode 100644 index 000000000..944dcf6df --- /dev/null +++ b/node_modules/bson/lib/map.js.map @@ -0,0 +1 @@ +{"version":3,"file":"map.js","sourceRoot":"","sources":["../src/map.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/bson/lib/max_key.js b/node_modules/bson/lib/max_key.js new file mode 100644 index 000000000..f9fd37603 --- /dev/null +++ b/node_modules/bson/lib/max_key.js @@ -0,0 +1,33 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.MaxKey = void 0; +/** + * A class representation of the BSON MaxKey type. + * @public + * @category BSONType + */ +var MaxKey = /** @class */ (function () { + function MaxKey() { + if (!(this instanceof MaxKey)) + return new MaxKey(); + } + /** @internal */ + MaxKey.prototype.toExtendedJSON = function () { + return { $maxKey: 1 }; + }; + /** @internal */ + MaxKey.fromExtendedJSON = function () { + return new MaxKey(); + }; + /** @internal */ + MaxKey.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () { + return this.inspect(); + }; + MaxKey.prototype.inspect = function () { + return 'new MaxKey()'; + }; + return MaxKey; +}()); +exports.MaxKey = MaxKey; +Object.defineProperty(MaxKey.prototype, '_bsontype', { value: 'MaxKey' }); +//# sourceMappingURL=max_key.js.map \ No newline at end of file diff --git a/node_modules/bson/lib/max_key.js.map b/node_modules/bson/lib/max_key.js.map new file mode 100644 index 000000000..f85a5900f --- /dev/null +++ b/node_modules/bson/lib/max_key.js.map @@ -0,0 +1 @@ +{"version":3,"file":"max_key.js","sourceRoot":"","sources":["../src/max_key.ts"],"names":[],"mappings":";;;AAKA;;;;GAIG;AACH;IAGE;QACE,IAAI,CAAC,CAAC,IAAI,YAAY,MAAM,CAAC;YAAE,OAAO,IAAI,MAAM,EAAE,CAAC;IACrD,CAAC;IAED,gBAAgB;IAChB,+BAAc,GAAd;QACE,OAAO,EAAE,OAAO,EAAE,CAAC,EAAE,CAAC;IACxB,CAAC;IAED,gBAAgB;IACT,uBAAgB,GAAvB;QACE,OAAO,IAAI,MAAM,EAAE,CAAC;IACtB,CAAC;IAED,gBAAgB;IAChB,iBAAC,MAAM,CAAC,GAAG,CAAC,4BAA4B,CAAC,CAAC,GAA1C;QACE,OAAO,IAAI,CAAC,OAAO,EAAE,CAAC;IACxB,CAAC;IAED,wBAAO,GAAP;QACE,OAAO,cAAc,CAAC;IACxB,CAAC;IACH,aAAC;AAAD,CAAC,AAzBD,IAyBC;AAzBY,wBAAM;AA2BnB,MAAM,CAAC,cAAc,CAAC,MAAM,CAAC,SAAS,EAAE,WAAW,EAAE,EAAE,KAAK,EAAE,QAAQ,EAAE,CAAC,CAAC"} \ No newline at end of file diff --git a/node_modules/bson/lib/min_key.js b/node_modules/bson/lib/min_key.js new file mode 100644 index 000000000..c67b3df0b --- /dev/null +++ b/node_modules/bson/lib/min_key.js @@ -0,0 +1,33 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.MinKey = void 0; +/** + * A class representation of the BSON MinKey type. + * @public + * @category BSONType + */ +var MinKey = /** @class */ (function () { + function MinKey() { + if (!(this instanceof MinKey)) + return new MinKey(); + } + /** @internal */ + MinKey.prototype.toExtendedJSON = function () { + return { $minKey: 1 }; + }; + /** @internal */ + MinKey.fromExtendedJSON = function () { + return new MinKey(); + }; + /** @internal */ + MinKey.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () { + return this.inspect(); + }; + MinKey.prototype.inspect = function () { + return 'new MinKey()'; + }; + return MinKey; +}()); +exports.MinKey = MinKey; +Object.defineProperty(MinKey.prototype, '_bsontype', { value: 'MinKey' }); +//# sourceMappingURL=min_key.js.map \ No newline at end of file diff --git a/node_modules/bson/lib/min_key.js.map b/node_modules/bson/lib/min_key.js.map new file mode 100644 index 000000000..2d642d17d --- /dev/null +++ b/node_modules/bson/lib/min_key.js.map @@ -0,0 +1 @@ +{"version":3,"file":"min_key.js","sourceRoot":"","sources":["../src/min_key.ts"],"names":[],"mappings":";;;AAKA;;;;GAIG;AACH;IAGE;QACE,IAAI,CAAC,CAAC,IAAI,YAAY,MAAM,CAAC;YAAE,OAAO,IAAI,MAAM,EAAE,CAAC;IACrD,CAAC;IAED,gBAAgB;IAChB,+BAAc,GAAd;QACE,OAAO,EAAE,OAAO,EAAE,CAAC,EAAE,CAAC;IACxB,CAAC;IAED,gBAAgB;IACT,uBAAgB,GAAvB;QACE,OAAO,IAAI,MAAM,EAAE,CAAC;IACtB,CAAC;IAED,gBAAgB;IAChB,iBAAC,MAAM,CAAC,GAAG,CAAC,4BAA4B,CAAC,CAAC,GAA1C;QACE,OAAO,IAAI,CAAC,OAAO,EAAE,CAAC;IACxB,CAAC;IAED,wBAAO,GAAP;QACE,OAAO,cAAc,CAAC;IACxB,CAAC;IACH,aAAC;AAAD,CAAC,AAzBD,IAyBC;AAzBY,wBAAM;AA2BnB,MAAM,CAAC,cAAc,CAAC,MAAM,CAAC,SAAS,EAAE,WAAW,EAAE,EAAE,KAAK,EAAE,QAAQ,EAAE,CAAC,CAAC"} \ No newline at end of file diff --git a/node_modules/bson/lib/objectid.js b/node_modules/bson/lib/objectid.js new file mode 100644 index 000000000..287de6e61 --- /dev/null +++ b/node_modules/bson/lib/objectid.js @@ -0,0 +1,299 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.ObjectId = void 0; +var buffer_1 = require("buffer"); +var ensure_buffer_1 = require("./ensure_buffer"); +var error_1 = require("./error"); +var utils_1 = require("./parser/utils"); +// Regular expression that checks for hex value +var checkForHexRegExp = new RegExp('^[0-9a-fA-F]{24}$'); +// Unique sequence for the current process (initialized on first use) +var PROCESS_UNIQUE = null; +var kId = Symbol('id'); +/** + * A class representation of the BSON ObjectId type. + * @public + * @category BSONType + */ +var ObjectId = /** @class */ (function () { + /** + * Create an ObjectId type + * + * @param inputId - Can be a 24 character hex string, 12 byte binary Buffer, or a number. + */ + function ObjectId(inputId) { + if (!(this instanceof ObjectId)) + return new ObjectId(inputId); + // workingId is set based on type of input and whether valid id exists for the input + var workingId; + if (typeof inputId === 'object' && inputId && 'id' in inputId) { + if (typeof inputId.id !== 'string' && !ArrayBuffer.isView(inputId.id)) { + throw new error_1.BSONTypeError('Argument passed in must have an id that is of type string or Buffer'); + } + if ('toHexString' in inputId && typeof inputId.toHexString === 'function') { + workingId = buffer_1.Buffer.from(inputId.toHexString(), 'hex'); + } + else { + workingId = inputId.id; + } + } + else { + workingId = inputId; + } + // the following cases use workingId to construct an ObjectId + if (workingId == null || typeof workingId === 'number') { + // The most common use case (blank id, new objectId instance) + // Generate a new id + this[kId] = ObjectId.generate(typeof workingId === 'number' ? workingId : undefined); + } + else if (ArrayBuffer.isView(workingId) && workingId.byteLength === 12) { + // If intstanceof matches we can escape calling ensure buffer in Node.js environments + this[kId] = workingId instanceof buffer_1.Buffer ? workingId : (0, ensure_buffer_1.ensureBuffer)(workingId); + } + else if (typeof workingId === 'string') { + if (workingId.length === 12) { + var bytes = buffer_1.Buffer.from(workingId); + if (bytes.byteLength === 12) { + this[kId] = bytes; + } + else { + throw new error_1.BSONTypeError('Argument passed in must be a string of 12 bytes'); + } + } + else if (workingId.length === 24 && checkForHexRegExp.test(workingId)) { + this[kId] = buffer_1.Buffer.from(workingId, 'hex'); + } + else { + throw new error_1.BSONTypeError('Argument passed in must be a string of 12 bytes or a string of 24 hex characters or an integer'); + } + } + else { + throw new error_1.BSONTypeError('Argument passed in does not match the accepted types'); + } + // If we are caching the hex string + if (ObjectId.cacheHexString) { + this.__id = this.id.toString('hex'); + } + } + Object.defineProperty(ObjectId.prototype, "id", { + /** + * The ObjectId bytes + * @readonly + */ + get: function () { + return this[kId]; + }, + set: function (value) { + this[kId] = value; + if (ObjectId.cacheHexString) { + this.__id = value.toString('hex'); + } + }, + enumerable: false, + configurable: true + }); + Object.defineProperty(ObjectId.prototype, "generationTime", { + /** + * The generation time of this ObjectId instance + * @deprecated Please use getTimestamp / createFromTime which returns an int32 epoch + */ + get: function () { + return this.id.readInt32BE(0); + }, + set: function (value) { + // Encode time into first 4 bytes + this.id.writeUInt32BE(value, 0); + }, + enumerable: false, + configurable: true + }); + /** Returns the ObjectId id as a 24 character hex string representation */ + ObjectId.prototype.toHexString = function () { + if (ObjectId.cacheHexString && this.__id) { + return this.__id; + } + var hexString = this.id.toString('hex'); + if (ObjectId.cacheHexString && !this.__id) { + this.__id = hexString; + } + return hexString; + }; + /** + * Update the ObjectId index + * @privateRemarks + * Used in generating new ObjectId's on the driver + * @internal + */ + ObjectId.getInc = function () { + return (ObjectId.index = (ObjectId.index + 1) % 0xffffff); + }; + /** + * Generate a 12 byte id buffer used in ObjectId's + * + * @param time - pass in a second based timestamp. + */ + ObjectId.generate = function (time) { + if ('number' !== typeof time) { + time = Math.floor(Date.now() / 1000); + } + var inc = ObjectId.getInc(); + var buffer = buffer_1.Buffer.alloc(12); + // 4-byte timestamp + buffer.writeUInt32BE(time, 0); + // set PROCESS_UNIQUE if yet not initialized + if (PROCESS_UNIQUE === null) { + PROCESS_UNIQUE = (0, utils_1.randomBytes)(5); + } + // 5-byte process unique + buffer[4] = PROCESS_UNIQUE[0]; + buffer[5] = PROCESS_UNIQUE[1]; + buffer[6] = PROCESS_UNIQUE[2]; + buffer[7] = PROCESS_UNIQUE[3]; + buffer[8] = PROCESS_UNIQUE[4]; + // 3-byte counter + buffer[11] = inc & 0xff; + buffer[10] = (inc >> 8) & 0xff; + buffer[9] = (inc >> 16) & 0xff; + return buffer; + }; + /** + * Converts the id into a 24 character hex string for printing + * + * @param format - The Buffer toString format parameter. + */ + ObjectId.prototype.toString = function (format) { + // Is the id a buffer then use the buffer toString method to return the format + if (format) + return this.id.toString(format); + return this.toHexString(); + }; + /** Converts to its JSON the 24 character hex string representation. */ + ObjectId.prototype.toJSON = function () { + return this.toHexString(); + }; + /** + * Compares the equality of this ObjectId with `otherID`. + * + * @param otherId - ObjectId instance to compare against. + */ + ObjectId.prototype.equals = function (otherId) { + if (otherId === undefined || otherId === null) { + return false; + } + if (otherId instanceof ObjectId) { + return this[kId][11] === otherId[kId][11] && this[kId].equals(otherId[kId]); + } + if (typeof otherId === 'string' && + ObjectId.isValid(otherId) && + otherId.length === 12 && + (0, utils_1.isUint8Array)(this.id)) { + return otherId === buffer_1.Buffer.prototype.toString.call(this.id, 'latin1'); + } + if (typeof otherId === 'string' && ObjectId.isValid(otherId) && otherId.length === 24) { + return otherId.toLowerCase() === this.toHexString(); + } + if (typeof otherId === 'string' && ObjectId.isValid(otherId) && otherId.length === 12) { + return buffer_1.Buffer.from(otherId).equals(this.id); + } + if (typeof otherId === 'object' && + 'toHexString' in otherId && + typeof otherId.toHexString === 'function') { + var otherIdString = otherId.toHexString(); + var thisIdString = this.toHexString().toLowerCase(); + return typeof otherIdString === 'string' && otherIdString.toLowerCase() === thisIdString; + } + return false; + }; + /** Returns the generation date (accurate up to the second) that this ID was generated. */ + ObjectId.prototype.getTimestamp = function () { + var timestamp = new Date(); + var time = this.id.readUInt32BE(0); + timestamp.setTime(Math.floor(time) * 1000); + return timestamp; + }; + /** @internal */ + ObjectId.createPk = function () { + return new ObjectId(); + }; + /** + * Creates an ObjectId from a second based number, with the rest of the ObjectId zeroed out. Used for comparisons or sorting the ObjectId. + * + * @param time - an integer number representing a number of seconds. + */ + ObjectId.createFromTime = function (time) { + var buffer = buffer_1.Buffer.from([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]); + // Encode time into first 4 bytes + buffer.writeUInt32BE(time, 0); + // Return the new objectId + return new ObjectId(buffer); + }; + /** + * Creates an ObjectId from a hex string representation of an ObjectId. + * + * @param hexString - create a ObjectId from a passed in 24 character hexstring. + */ + ObjectId.createFromHexString = function (hexString) { + // Throw an error if it's not a valid setup + if (typeof hexString === 'undefined' || (hexString != null && hexString.length !== 24)) { + throw new error_1.BSONTypeError('Argument passed in must be a single String of 12 bytes or a string of 24 hex characters'); + } + return new ObjectId(buffer_1.Buffer.from(hexString, 'hex')); + }; + /** + * Checks if a value is a valid bson ObjectId + * + * @param id - ObjectId instance to validate. + */ + ObjectId.isValid = function (id) { + if (id == null) + return false; + try { + new ObjectId(id); + return true; + } + catch (_a) { + return false; + } + }; + /** @internal */ + ObjectId.prototype.toExtendedJSON = function () { + if (this.toHexString) + return { $oid: this.toHexString() }; + return { $oid: this.toString('hex') }; + }; + /** @internal */ + ObjectId.fromExtendedJSON = function (doc) { + return new ObjectId(doc.$oid); + }; + /** + * Converts to a string representation of this Id. + * + * @returns return the 24 character hex string representation. + * @internal + */ + ObjectId.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () { + return this.inspect(); + }; + ObjectId.prototype.inspect = function () { + return "new ObjectId(\"".concat(this.toHexString(), "\")"); + }; + /** @internal */ + ObjectId.index = Math.floor(Math.random() * 0xffffff); + return ObjectId; +}()); +exports.ObjectId = ObjectId; +// Deprecated methods +Object.defineProperty(ObjectId.prototype, 'generate', { + value: (0, utils_1.deprecate)(function (time) { return ObjectId.generate(time); }, 'Please use the static `ObjectId.generate(time)` instead') +}); +Object.defineProperty(ObjectId.prototype, 'getInc', { + value: (0, utils_1.deprecate)(function () { return ObjectId.getInc(); }, 'Please use the static `ObjectId.getInc()` instead') +}); +Object.defineProperty(ObjectId.prototype, 'get_inc', { + value: (0, utils_1.deprecate)(function () { return ObjectId.getInc(); }, 'Please use the static `ObjectId.getInc()` instead') +}); +Object.defineProperty(ObjectId, 'get_inc', { + value: (0, utils_1.deprecate)(function () { return ObjectId.getInc(); }, 'Please use the static `ObjectId.getInc()` instead') +}); +Object.defineProperty(ObjectId.prototype, '_bsontype', { value: 'ObjectID' }); +//# sourceMappingURL=objectid.js.map \ No newline at end of file diff --git a/node_modules/bson/lib/objectid.js.map b/node_modules/bson/lib/objectid.js.map new file mode 100644 index 000000000..3238ada04 --- /dev/null +++ b/node_modules/bson/lib/objectid.js.map @@ -0,0 +1 @@ +{"version":3,"file":"objectid.js","sourceRoot":"","sources":["../src/objectid.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/bson/lib/parser/calculate_size.js b/node_modules/bson/lib/parser/calculate_size.js new file mode 100644 index 000000000..3d11612b6 --- /dev/null +++ b/node_modules/bson/lib/parser/calculate_size.js @@ -0,0 +1,194 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.calculateObjectSize = void 0; +var buffer_1 = require("buffer"); +var binary_1 = require("../binary"); +var constants = require("../constants"); +var utils_1 = require("./utils"); +function calculateObjectSize(object, serializeFunctions, ignoreUndefined) { + var totalLength = 4 + 1; + if (Array.isArray(object)) { + for (var i = 0; i < object.length; i++) { + totalLength += calculateElement(i.toString(), object[i], serializeFunctions, true, ignoreUndefined); + } + } + else { + // If we have toBSON defined, override the current object + if (typeof (object === null || object === void 0 ? void 0 : object.toBSON) === 'function') { + object = object.toBSON(); + } + // Calculate size + for (var key in object) { + totalLength += calculateElement(key, object[key], serializeFunctions, false, ignoreUndefined); + } + } + return totalLength; +} +exports.calculateObjectSize = calculateObjectSize; +/** @internal */ +function calculateElement(name, +// eslint-disable-next-line @typescript-eslint/no-explicit-any +value, serializeFunctions, isArray, ignoreUndefined) { + if (serializeFunctions === void 0) { serializeFunctions = false; } + if (isArray === void 0) { isArray = false; } + if (ignoreUndefined === void 0) { ignoreUndefined = false; } + // If we have toBSON defined, override the current object + if (typeof (value === null || value === void 0 ? void 0 : value.toBSON) === 'function') { + value = value.toBSON(); + } + switch (typeof value) { + case 'string': + return 1 + buffer_1.Buffer.byteLength(name, 'utf8') + 1 + 4 + buffer_1.Buffer.byteLength(value, 'utf8') + 1; + case 'number': + if (Math.floor(value) === value && + value >= constants.JS_INT_MIN && + value <= constants.JS_INT_MAX) { + if (value >= constants.BSON_INT32_MIN && value <= constants.BSON_INT32_MAX) { + // 32 bit + return (name != null ? buffer_1.Buffer.byteLength(name, 'utf8') + 1 : 0) + (4 + 1); + } + else { + return (name != null ? buffer_1.Buffer.byteLength(name, 'utf8') + 1 : 0) + (8 + 1); + } + } + else { + // 64 bit + return (name != null ? buffer_1.Buffer.byteLength(name, 'utf8') + 1 : 0) + (8 + 1); + } + case 'undefined': + if (isArray || !ignoreUndefined) + return (name != null ? buffer_1.Buffer.byteLength(name, 'utf8') + 1 : 0) + 1; + return 0; + case 'boolean': + return (name != null ? buffer_1.Buffer.byteLength(name, 'utf8') + 1 : 0) + (1 + 1); + case 'object': + if (value == null || value['_bsontype'] === 'MinKey' || value['_bsontype'] === 'MaxKey') { + return (name != null ? buffer_1.Buffer.byteLength(name, 'utf8') + 1 : 0) + 1; + } + else if (value['_bsontype'] === 'ObjectId' || value['_bsontype'] === 'ObjectID') { + return (name != null ? buffer_1.Buffer.byteLength(name, 'utf8') + 1 : 0) + (12 + 1); + } + else if (value instanceof Date || (0, utils_1.isDate)(value)) { + return (name != null ? buffer_1.Buffer.byteLength(name, 'utf8') + 1 : 0) + (8 + 1); + } + else if (ArrayBuffer.isView(value) || + value instanceof ArrayBuffer || + (0, utils_1.isAnyArrayBuffer)(value)) { + return ((name != null ? buffer_1.Buffer.byteLength(name, 'utf8') + 1 : 0) + (1 + 4 + 1) + value.byteLength); + } + else if (value['_bsontype'] === 'Long' || + value['_bsontype'] === 'Double' || + value['_bsontype'] === 'Timestamp') { + return (name != null ? buffer_1.Buffer.byteLength(name, 'utf8') + 1 : 0) + (8 + 1); + } + else if (value['_bsontype'] === 'Decimal128') { + return (name != null ? buffer_1.Buffer.byteLength(name, 'utf8') + 1 : 0) + (16 + 1); + } + else if (value['_bsontype'] === 'Code') { + // Calculate size depending on the availability of a scope + if (value.scope != null && Object.keys(value.scope).length > 0) { + return ((name != null ? buffer_1.Buffer.byteLength(name, 'utf8') + 1 : 0) + + 1 + + 4 + + 4 + + buffer_1.Buffer.byteLength(value.code.toString(), 'utf8') + + 1 + + calculateObjectSize(value.scope, serializeFunctions, ignoreUndefined)); + } + else { + return ((name != null ? buffer_1.Buffer.byteLength(name, 'utf8') + 1 : 0) + + 1 + + 4 + + buffer_1.Buffer.byteLength(value.code.toString(), 'utf8') + + 1); + } + } + else if (value['_bsontype'] === 'Binary') { + var binary = value; + // Check what kind of subtype we have + if (binary.sub_type === binary_1.Binary.SUBTYPE_BYTE_ARRAY) { + return ((name != null ? buffer_1.Buffer.byteLength(name, 'utf8') + 1 : 0) + + (binary.position + 1 + 4 + 1 + 4)); + } + else { + return ((name != null ? buffer_1.Buffer.byteLength(name, 'utf8') + 1 : 0) + (binary.position + 1 + 4 + 1)); + } + } + else if (value['_bsontype'] === 'Symbol') { + return ((name != null ? buffer_1.Buffer.byteLength(name, 'utf8') + 1 : 0) + + buffer_1.Buffer.byteLength(value.value, 'utf8') + + 4 + + 1 + + 1); + } + else if (value['_bsontype'] === 'DBRef') { + // Set up correct object for serialization + var ordered_values = Object.assign({ + $ref: value.collection, + $id: value.oid + }, value.fields); + // Add db reference if it exists + if (value.db != null) { + ordered_values['$db'] = value.db; + } + return ((name != null ? buffer_1.Buffer.byteLength(name, 'utf8') + 1 : 0) + + 1 + + calculateObjectSize(ordered_values, serializeFunctions, ignoreUndefined)); + } + else if (value instanceof RegExp || (0, utils_1.isRegExp)(value)) { + return ((name != null ? buffer_1.Buffer.byteLength(name, 'utf8') + 1 : 0) + + 1 + + buffer_1.Buffer.byteLength(value.source, 'utf8') + + 1 + + (value.global ? 1 : 0) + + (value.ignoreCase ? 1 : 0) + + (value.multiline ? 1 : 0) + + 1); + } + else if (value['_bsontype'] === 'BSONRegExp') { + return ((name != null ? buffer_1.Buffer.byteLength(name, 'utf8') + 1 : 0) + + 1 + + buffer_1.Buffer.byteLength(value.pattern, 'utf8') + + 1 + + buffer_1.Buffer.byteLength(value.options, 'utf8') + + 1); + } + else { + return ((name != null ? buffer_1.Buffer.byteLength(name, 'utf8') + 1 : 0) + + calculateObjectSize(value, serializeFunctions, ignoreUndefined) + + 1); + } + case 'function': + // WTF for 0.4.X where typeof /someregexp/ === 'function' + if (value instanceof RegExp || (0, utils_1.isRegExp)(value) || String.call(value) === '[object RegExp]') { + return ((name != null ? buffer_1.Buffer.byteLength(name, 'utf8') + 1 : 0) + + 1 + + buffer_1.Buffer.byteLength(value.source, 'utf8') + + 1 + + (value.global ? 1 : 0) + + (value.ignoreCase ? 1 : 0) + + (value.multiline ? 1 : 0) + + 1); + } + else { + if (serializeFunctions && value.scope != null && Object.keys(value.scope).length > 0) { + return ((name != null ? buffer_1.Buffer.byteLength(name, 'utf8') + 1 : 0) + + 1 + + 4 + + 4 + + buffer_1.Buffer.byteLength((0, utils_1.normalizedFunctionString)(value), 'utf8') + + 1 + + calculateObjectSize(value.scope, serializeFunctions, ignoreUndefined)); + } + else if (serializeFunctions) { + return ((name != null ? buffer_1.Buffer.byteLength(name, 'utf8') + 1 : 0) + + 1 + + 4 + + buffer_1.Buffer.byteLength((0, utils_1.normalizedFunctionString)(value), 'utf8') + + 1); + } + } + } + return 0; +} +//# sourceMappingURL=calculate_size.js.map \ No newline at end of file diff --git a/node_modules/bson/lib/parser/calculate_size.js.map b/node_modules/bson/lib/parser/calculate_size.js.map new file mode 100644 index 000000000..f24906c17 --- /dev/null +++ b/node_modules/bson/lib/parser/calculate_size.js.map @@ -0,0 +1 @@ +{"version":3,"file":"calculate_size.js","sourceRoot":"","sources":["../../src/parser/calculate_size.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/bson/lib/parser/deserializer.js b/node_modules/bson/lib/parser/deserializer.js new file mode 100644 index 000000000..57f14a168 --- /dev/null +++ b/node_modules/bson/lib/parser/deserializer.js @@ -0,0 +1,665 @@ +"use strict"; +var __assign = (this && this.__assign) || function () { + __assign = Object.assign || function(t) { + for (var s, i = 1, n = arguments.length; i < n; i++) { + s = arguments[i]; + for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) + t[p] = s[p]; + } + return t; + }; + return __assign.apply(this, arguments); +}; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.deserialize = void 0; +var buffer_1 = require("buffer"); +var binary_1 = require("../binary"); +var code_1 = require("../code"); +var constants = require("../constants"); +var db_ref_1 = require("../db_ref"); +var decimal128_1 = require("../decimal128"); +var double_1 = require("../double"); +var error_1 = require("../error"); +var int_32_1 = require("../int_32"); +var long_1 = require("../long"); +var max_key_1 = require("../max_key"); +var min_key_1 = require("../min_key"); +var objectid_1 = require("../objectid"); +var regexp_1 = require("../regexp"); +var symbol_1 = require("../symbol"); +var timestamp_1 = require("../timestamp"); +var validate_utf8_1 = require("../validate_utf8"); +// Internal long versions +var JS_INT_MAX_LONG = long_1.Long.fromNumber(constants.JS_INT_MAX); +var JS_INT_MIN_LONG = long_1.Long.fromNumber(constants.JS_INT_MIN); +var functionCache = {}; +function deserialize(buffer, options, isArray) { + options = options == null ? {} : options; + var index = options && options.index ? options.index : 0; + // Read the document size + var size = buffer[index] | + (buffer[index + 1] << 8) | + (buffer[index + 2] << 16) | + (buffer[index + 3] << 24); + if (size < 5) { + throw new error_1.BSONError("bson size must be >= 5, is ".concat(size)); + } + if (options.allowObjectSmallerThanBufferSize && buffer.length < size) { + throw new error_1.BSONError("buffer length ".concat(buffer.length, " must be >= bson size ").concat(size)); + } + if (!options.allowObjectSmallerThanBufferSize && buffer.length !== size) { + throw new error_1.BSONError("buffer length ".concat(buffer.length, " must === bson size ").concat(size)); + } + if (size + index > buffer.byteLength) { + throw new error_1.BSONError("(bson size ".concat(size, " + options.index ").concat(index, " must be <= buffer length ").concat(buffer.byteLength, ")")); + } + // Illegal end value + if (buffer[index + size - 1] !== 0) { + throw new error_1.BSONError("One object, sized correctly, with a spot for an EOO, but the EOO isn't 0x00"); + } + // Start deserializtion + return deserializeObject(buffer, index, options, isArray); +} +exports.deserialize = deserialize; +var allowedDBRefKeys = /^\$ref$|^\$id$|^\$db$/; +function deserializeObject(buffer, index, options, isArray) { + if (isArray === void 0) { isArray = false; } + var evalFunctions = options['evalFunctions'] == null ? false : options['evalFunctions']; + var cacheFunctions = options['cacheFunctions'] == null ? false : options['cacheFunctions']; + var fieldsAsRaw = options['fieldsAsRaw'] == null ? null : options['fieldsAsRaw']; + // Return raw bson buffer instead of parsing it + var raw = options['raw'] == null ? false : options['raw']; + // Return BSONRegExp objects instead of native regular expressions + var bsonRegExp = typeof options['bsonRegExp'] === 'boolean' ? options['bsonRegExp'] : false; + // Controls the promotion of values vs wrapper classes + var promoteBuffers = options['promoteBuffers'] == null ? false : options['promoteBuffers']; + var promoteLongs = options['promoteLongs'] == null ? true : options['promoteLongs']; + var promoteValues = options['promoteValues'] == null ? true : options['promoteValues']; + // Ensures default validation option if none given + var validation = options.validation == null ? { utf8: true } : options.validation; + // Shows if global utf-8 validation is enabled or disabled + var globalUTFValidation = true; + // Reflects utf-8 validation setting regardless of global or specific key validation + var validationSetting; + // Set of keys either to enable or disable validation on + var utf8KeysSet = new Set(); + // Check for boolean uniformity and empty validation option + var utf8ValidatedKeys = validation.utf8; + if (typeof utf8ValidatedKeys === 'boolean') { + validationSetting = utf8ValidatedKeys; + } + else { + globalUTFValidation = false; + var utf8ValidationValues = Object.keys(utf8ValidatedKeys).map(function (key) { + return utf8ValidatedKeys[key]; + }); + if (utf8ValidationValues.length === 0) { + throw new error_1.BSONError('UTF-8 validation setting cannot be empty'); + } + if (typeof utf8ValidationValues[0] !== 'boolean') { + throw new error_1.BSONError('Invalid UTF-8 validation option, must specify boolean values'); + } + validationSetting = utf8ValidationValues[0]; + // Ensures boolean uniformity in utf-8 validation (all true or all false) + if (!utf8ValidationValues.every(function (item) { return item === validationSetting; })) { + throw new error_1.BSONError('Invalid UTF-8 validation option - keys must be all true or all false'); + } + } + // Add keys to set that will either be validated or not based on validationSetting + if (!globalUTFValidation) { + for (var _i = 0, _a = Object.keys(utf8ValidatedKeys); _i < _a.length; _i++) { + var key = _a[_i]; + utf8KeysSet.add(key); + } + } + // Set the start index + var startIndex = index; + // Validate that we have at least 4 bytes of buffer + if (buffer.length < 5) + throw new error_1.BSONError('corrupt bson message < 5 bytes long'); + // Read the document size + var size = buffer[index++] | (buffer[index++] << 8) | (buffer[index++] << 16) | (buffer[index++] << 24); + // Ensure buffer is valid size + if (size < 5 || size > buffer.length) + throw new error_1.BSONError('corrupt bson message'); + // Create holding object + var object = isArray ? [] : {}; + // Used for arrays to skip having to perform utf8 decoding + var arrayIndex = 0; + var done = false; + var isPossibleDBRef = isArray ? false : null; + // While we have more left data left keep parsing + var dataview = new DataView(buffer.buffer, buffer.byteOffset, buffer.byteLength); + while (!done) { + // Read the type + var elementType = buffer[index++]; + // If we get a zero it's the last byte, exit + if (elementType === 0) + break; + // Get the start search index + var i = index; + // Locate the end of the c string + while (buffer[i] !== 0x00 && i < buffer.length) { + i++; + } + // If are at the end of the buffer there is a problem with the document + if (i >= buffer.byteLength) + throw new error_1.BSONError('Bad BSON Document: illegal CString'); + // Represents the key + var name = isArray ? arrayIndex++ : buffer.toString('utf8', index, i); + // shouldValidateKey is true if the key should be validated, false otherwise + var shouldValidateKey = true; + if (globalUTFValidation || utf8KeysSet.has(name)) { + shouldValidateKey = validationSetting; + } + else { + shouldValidateKey = !validationSetting; + } + if (isPossibleDBRef !== false && name[0] === '$') { + isPossibleDBRef = allowedDBRefKeys.test(name); + } + var value = void 0; + index = i + 1; + if (elementType === constants.BSON_DATA_STRING) { + var stringSize = buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + if (stringSize <= 0 || + stringSize > buffer.length - index || + buffer[index + stringSize - 1] !== 0) { + throw new error_1.BSONError('bad string length in bson'); + } + value = getValidatedString(buffer, index, index + stringSize - 1, shouldValidateKey); + index = index + stringSize; + } + else if (elementType === constants.BSON_DATA_OID) { + var oid = buffer_1.Buffer.alloc(12); + buffer.copy(oid, 0, index, index + 12); + value = new objectid_1.ObjectId(oid); + index = index + 12; + } + else if (elementType === constants.BSON_DATA_INT && promoteValues === false) { + value = new int_32_1.Int32(buffer[index++] | (buffer[index++] << 8) | (buffer[index++] << 16) | (buffer[index++] << 24)); + } + else if (elementType === constants.BSON_DATA_INT) { + value = + buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + } + else if (elementType === constants.BSON_DATA_NUMBER && promoteValues === false) { + value = new double_1.Double(dataview.getFloat64(index, true)); + index = index + 8; + } + else if (elementType === constants.BSON_DATA_NUMBER) { + value = dataview.getFloat64(index, true); + index = index + 8; + } + else if (elementType === constants.BSON_DATA_DATE) { + var lowBits = buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + var highBits = buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + value = new Date(new long_1.Long(lowBits, highBits).toNumber()); + } + else if (elementType === constants.BSON_DATA_BOOLEAN) { + if (buffer[index] !== 0 && buffer[index] !== 1) + throw new error_1.BSONError('illegal boolean type value'); + value = buffer[index++] === 1; + } + else if (elementType === constants.BSON_DATA_OBJECT) { + var _index = index; + var objectSize = buffer[index] | + (buffer[index + 1] << 8) | + (buffer[index + 2] << 16) | + (buffer[index + 3] << 24); + if (objectSize <= 0 || objectSize > buffer.length - index) + throw new error_1.BSONError('bad embedded document length in bson'); + // We have a raw value + if (raw) { + value = buffer.slice(index, index + objectSize); + } + else { + var objectOptions = options; + if (!globalUTFValidation) { + objectOptions = __assign(__assign({}, options), { validation: { utf8: shouldValidateKey } }); + } + value = deserializeObject(buffer, _index, objectOptions, false); + } + index = index + objectSize; + } + else if (elementType === constants.BSON_DATA_ARRAY) { + var _index = index; + var objectSize = buffer[index] | + (buffer[index + 1] << 8) | + (buffer[index + 2] << 16) | + (buffer[index + 3] << 24); + var arrayOptions = options; + // Stop index + var stopIndex = index + objectSize; + // All elements of array to be returned as raw bson + if (fieldsAsRaw && fieldsAsRaw[name]) { + arrayOptions = {}; + for (var n in options) { + arrayOptions[n] = options[n]; + } + arrayOptions['raw'] = true; + } + if (!globalUTFValidation) { + arrayOptions = __assign(__assign({}, arrayOptions), { validation: { utf8: shouldValidateKey } }); + } + value = deserializeObject(buffer, _index, arrayOptions, true); + index = index + objectSize; + if (buffer[index - 1] !== 0) + throw new error_1.BSONError('invalid array terminator byte'); + if (index !== stopIndex) + throw new error_1.BSONError('corrupted array bson'); + } + else if (elementType === constants.BSON_DATA_UNDEFINED) { + value = undefined; + } + else if (elementType === constants.BSON_DATA_NULL) { + value = null; + } + else if (elementType === constants.BSON_DATA_LONG) { + // Unpack the low and high bits + var lowBits = buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + var highBits = buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + var long = new long_1.Long(lowBits, highBits); + // Promote the long if possible + if (promoteLongs && promoteValues === true) { + value = + long.lessThanOrEqual(JS_INT_MAX_LONG) && long.greaterThanOrEqual(JS_INT_MIN_LONG) + ? long.toNumber() + : long; + } + else { + value = long; + } + } + else if (elementType === constants.BSON_DATA_DECIMAL128) { + // Buffer to contain the decimal bytes + var bytes = buffer_1.Buffer.alloc(16); + // Copy the next 16 bytes into the bytes buffer + buffer.copy(bytes, 0, index, index + 16); + // Update index + index = index + 16; + // Assign the new Decimal128 value + var decimal128 = new decimal128_1.Decimal128(bytes); + // If we have an alternative mapper use that + if ('toObject' in decimal128 && typeof decimal128.toObject === 'function') { + value = decimal128.toObject(); + } + else { + value = decimal128; + } + } + else if (elementType === constants.BSON_DATA_BINARY) { + var binarySize = buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + var totalBinarySize = binarySize; + var subType = buffer[index++]; + // Did we have a negative binary size, throw + if (binarySize < 0) + throw new error_1.BSONError('Negative binary type element size found'); + // Is the length longer than the document + if (binarySize > buffer.byteLength) + throw new error_1.BSONError('Binary type size larger than document size'); + // Decode as raw Buffer object if options specifies it + if (buffer['slice'] != null) { + // If we have subtype 2 skip the 4 bytes for the size + if (subType === binary_1.Binary.SUBTYPE_BYTE_ARRAY) { + binarySize = + buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + if (binarySize < 0) + throw new error_1.BSONError('Negative binary type element size found for subtype 0x02'); + if (binarySize > totalBinarySize - 4) + throw new error_1.BSONError('Binary type with subtype 0x02 contains too long binary size'); + if (binarySize < totalBinarySize - 4) + throw new error_1.BSONError('Binary type with subtype 0x02 contains too short binary size'); + } + if (promoteBuffers && promoteValues) { + value = buffer.slice(index, index + binarySize); + } + else { + value = new binary_1.Binary(buffer.slice(index, index + binarySize), subType); + if (subType === constants.BSON_BINARY_SUBTYPE_UUID_NEW) { + value = value.toUUID(); + } + } + } + else { + var _buffer = buffer_1.Buffer.alloc(binarySize); + // If we have subtype 2 skip the 4 bytes for the size + if (subType === binary_1.Binary.SUBTYPE_BYTE_ARRAY) { + binarySize = + buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + if (binarySize < 0) + throw new error_1.BSONError('Negative binary type element size found for subtype 0x02'); + if (binarySize > totalBinarySize - 4) + throw new error_1.BSONError('Binary type with subtype 0x02 contains too long binary size'); + if (binarySize < totalBinarySize - 4) + throw new error_1.BSONError('Binary type with subtype 0x02 contains too short binary size'); + } + // Copy the data + for (i = 0; i < binarySize; i++) { + _buffer[i] = buffer[index + i]; + } + if (promoteBuffers && promoteValues) { + value = _buffer; + } + else if (subType === constants.BSON_BINARY_SUBTYPE_UUID_NEW) { + value = new binary_1.Binary(buffer.slice(index, index + binarySize), subType).toUUID(); + } + else { + value = new binary_1.Binary(buffer.slice(index, index + binarySize), subType); + } + } + // Update the index + index = index + binarySize; + } + else if (elementType === constants.BSON_DATA_REGEXP && bsonRegExp === false) { + // Get the start search index + i = index; + // Locate the end of the c string + while (buffer[i] !== 0x00 && i < buffer.length) { + i++; + } + // If are at the end of the buffer there is a problem with the document + if (i >= buffer.length) + throw new error_1.BSONError('Bad BSON Document: illegal CString'); + // Return the C string + var source = buffer.toString('utf8', index, i); + // Create the regexp + index = i + 1; + // Get the start search index + i = index; + // Locate the end of the c string + while (buffer[i] !== 0x00 && i < buffer.length) { + i++; + } + // If are at the end of the buffer there is a problem with the document + if (i >= buffer.length) + throw new error_1.BSONError('Bad BSON Document: illegal CString'); + // Return the C string + var regExpOptions = buffer.toString('utf8', index, i); + index = i + 1; + // For each option add the corresponding one for javascript + var optionsArray = new Array(regExpOptions.length); + // Parse options + for (i = 0; i < regExpOptions.length; i++) { + switch (regExpOptions[i]) { + case 'm': + optionsArray[i] = 'm'; + break; + case 's': + optionsArray[i] = 'g'; + break; + case 'i': + optionsArray[i] = 'i'; + break; + } + } + value = new RegExp(source, optionsArray.join('')); + } + else if (elementType === constants.BSON_DATA_REGEXP && bsonRegExp === true) { + // Get the start search index + i = index; + // Locate the end of the c string + while (buffer[i] !== 0x00 && i < buffer.length) { + i++; + } + // If are at the end of the buffer there is a problem with the document + if (i >= buffer.length) + throw new error_1.BSONError('Bad BSON Document: illegal CString'); + // Return the C string + var source = buffer.toString('utf8', index, i); + index = i + 1; + // Get the start search index + i = index; + // Locate the end of the c string + while (buffer[i] !== 0x00 && i < buffer.length) { + i++; + } + // If are at the end of the buffer there is a problem with the document + if (i >= buffer.length) + throw new error_1.BSONError('Bad BSON Document: illegal CString'); + // Return the C string + var regExpOptions = buffer.toString('utf8', index, i); + index = i + 1; + // Set the object + value = new regexp_1.BSONRegExp(source, regExpOptions); + } + else if (elementType === constants.BSON_DATA_SYMBOL) { + var stringSize = buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + if (stringSize <= 0 || + stringSize > buffer.length - index || + buffer[index + stringSize - 1] !== 0) { + throw new error_1.BSONError('bad string length in bson'); + } + var symbol = getValidatedString(buffer, index, index + stringSize - 1, shouldValidateKey); + value = promoteValues ? symbol : new symbol_1.BSONSymbol(symbol); + index = index + stringSize; + } + else if (elementType === constants.BSON_DATA_TIMESTAMP) { + var lowBits = buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + var highBits = buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + value = new timestamp_1.Timestamp(lowBits, highBits); + } + else if (elementType === constants.BSON_DATA_MIN_KEY) { + value = new min_key_1.MinKey(); + } + else if (elementType === constants.BSON_DATA_MAX_KEY) { + value = new max_key_1.MaxKey(); + } + else if (elementType === constants.BSON_DATA_CODE) { + var stringSize = buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + if (stringSize <= 0 || + stringSize > buffer.length - index || + buffer[index + stringSize - 1] !== 0) { + throw new error_1.BSONError('bad string length in bson'); + } + var functionString = getValidatedString(buffer, index, index + stringSize - 1, shouldValidateKey); + // If we are evaluating the functions + if (evalFunctions) { + // If we have cache enabled let's look for the md5 of the function in the cache + if (cacheFunctions) { + // Got to do this to avoid V8 deoptimizing the call due to finding eval + value = isolateEval(functionString, functionCache, object); + } + else { + value = isolateEval(functionString); + } + } + else { + value = new code_1.Code(functionString); + } + // Update parse index position + index = index + stringSize; + } + else if (elementType === constants.BSON_DATA_CODE_W_SCOPE) { + var totalSize = buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + // Element cannot be shorter than totalSize + stringSize + documentSize + terminator + if (totalSize < 4 + 4 + 4 + 1) { + throw new error_1.BSONError('code_w_scope total size shorter minimum expected length'); + } + // Get the code string size + var stringSize = buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + // Check if we have a valid string + if (stringSize <= 0 || + stringSize > buffer.length - index || + buffer[index + stringSize - 1] !== 0) { + throw new error_1.BSONError('bad string length in bson'); + } + // Javascript function + var functionString = getValidatedString(buffer, index, index + stringSize - 1, shouldValidateKey); + // Update parse index position + index = index + stringSize; + // Parse the element + var _index = index; + // Decode the size of the object document + var objectSize = buffer[index] | + (buffer[index + 1] << 8) | + (buffer[index + 2] << 16) | + (buffer[index + 3] << 24); + // Decode the scope object + var scopeObject = deserializeObject(buffer, _index, options, false); + // Adjust the index + index = index + objectSize; + // Check if field length is too short + if (totalSize < 4 + 4 + objectSize + stringSize) { + throw new error_1.BSONError('code_w_scope total size is too short, truncating scope'); + } + // Check if totalSize field is too long + if (totalSize > 4 + 4 + objectSize + stringSize) { + throw new error_1.BSONError('code_w_scope total size is too long, clips outer document'); + } + // If we are evaluating the functions + if (evalFunctions) { + // If we have cache enabled let's look for the md5 of the function in the cache + if (cacheFunctions) { + // Got to do this to avoid V8 deoptimizing the call due to finding eval + value = isolateEval(functionString, functionCache, object); + } + else { + value = isolateEval(functionString); + } + value.scope = scopeObject; + } + else { + value = new code_1.Code(functionString, scopeObject); + } + } + else if (elementType === constants.BSON_DATA_DBPOINTER) { + // Get the code string size + var stringSize = buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + // Check if we have a valid string + if (stringSize <= 0 || + stringSize > buffer.length - index || + buffer[index + stringSize - 1] !== 0) + throw new error_1.BSONError('bad string length in bson'); + // Namespace + if (validation != null && validation.utf8) { + if (!(0, validate_utf8_1.validateUtf8)(buffer, index, index + stringSize - 1)) { + throw new error_1.BSONError('Invalid UTF-8 string in BSON document'); + } + } + var namespace = buffer.toString('utf8', index, index + stringSize - 1); + // Update parse index position + index = index + stringSize; + // Read the oid + var oidBuffer = buffer_1.Buffer.alloc(12); + buffer.copy(oidBuffer, 0, index, index + 12); + var oid = new objectid_1.ObjectId(oidBuffer); + // Update the index + index = index + 12; + // Upgrade to DBRef type + value = new db_ref_1.DBRef(namespace, oid); + } + else { + throw new error_1.BSONError("Detected unknown BSON type ".concat(elementType.toString(16), " for fieldname \"").concat(name, "\"")); + } + if (name === '__proto__') { + Object.defineProperty(object, name, { + value: value, + writable: true, + enumerable: true, + configurable: true + }); + } + else { + object[name] = value; + } + } + // Check if the deserialization was against a valid array/object + if (size !== index - startIndex) { + if (isArray) + throw new error_1.BSONError('corrupt array bson'); + throw new error_1.BSONError('corrupt object bson'); + } + // if we did not find "$ref", "$id", "$db", or found an extraneous $key, don't make a DBRef + if (!isPossibleDBRef) + return object; + if ((0, db_ref_1.isDBRefLike)(object)) { + var copy = Object.assign({}, object); + delete copy.$ref; + delete copy.$id; + delete copy.$db; + return new db_ref_1.DBRef(object.$ref, object.$id, object.$db, copy); + } + return object; +} +/** + * Ensure eval is isolated, store the result in functionCache. + * + * @internal + */ +function isolateEval(functionString, functionCache, object) { + // eslint-disable-next-line @typescript-eslint/no-implied-eval + if (!functionCache) + return new Function(functionString); + // Check for cache hit, eval if missing and return cached function + if (functionCache[functionString] == null) { + // eslint-disable-next-line @typescript-eslint/no-implied-eval + functionCache[functionString] = new Function(functionString); + } + // Set the object + return functionCache[functionString].bind(object); +} +function getValidatedString(buffer, start, end, shouldValidateUtf8) { + var value = buffer.toString('utf8', start, end); + // if utf8 validation is on, do the check + if (shouldValidateUtf8) { + for (var i = 0; i < value.length; i++) { + if (value.charCodeAt(i) === 0xfffd) { + if (!(0, validate_utf8_1.validateUtf8)(buffer, start, end)) { + throw new error_1.BSONError('Invalid UTF-8 string in BSON document'); + } + break; + } + } + } + return value; +} +//# sourceMappingURL=deserializer.js.map \ No newline at end of file diff --git a/node_modules/bson/lib/parser/deserializer.js.map b/node_modules/bson/lib/parser/deserializer.js.map new file mode 100644 index 000000000..fc65ae3bd --- /dev/null +++ b/node_modules/bson/lib/parser/deserializer.js.map @@ -0,0 +1 @@ +{"version":3,"file":"deserializer.js","sourceRoot":"","sources":["../../src/parser/deserializer.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/bson/lib/parser/serializer.js b/node_modules/bson/lib/parser/serializer.js new file mode 100644 index 000000000..d99ca9611 --- /dev/null +++ b/node_modules/bson/lib/parser/serializer.js @@ -0,0 +1,867 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.serializeInto = void 0; +var binary_1 = require("../binary"); +var constants = require("../constants"); +var ensure_buffer_1 = require("../ensure_buffer"); +var error_1 = require("../error"); +var extended_json_1 = require("../extended_json"); +var long_1 = require("../long"); +var map_1 = require("../map"); +var utils_1 = require("./utils"); +var regexp = /\x00/; // eslint-disable-line no-control-regex +var ignoreKeys = new Set(['$db', '$ref', '$id', '$clusterTime']); +/* + * isArray indicates if we are writing to a BSON array (type 0x04) + * which forces the "key" which really an array index as a string to be written as ascii + * This will catch any errors in index as a string generation + */ +function serializeString(buffer, key, value, index, isArray) { + // Encode String type + buffer[index++] = constants.BSON_DATA_STRING; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes + 1; + buffer[index - 1] = 0; + // Write the string + var size = buffer.write(value, index + 4, undefined, 'utf8'); + // Write the size of the string to buffer + buffer[index + 3] = ((size + 1) >> 24) & 0xff; + buffer[index + 2] = ((size + 1) >> 16) & 0xff; + buffer[index + 1] = ((size + 1) >> 8) & 0xff; + buffer[index] = (size + 1) & 0xff; + // Update index + index = index + 4 + size; + // Write zero + buffer[index++] = 0; + return index; +} +var SPACE_FOR_FLOAT64 = new Uint8Array(8); +var DV_FOR_FLOAT64 = new DataView(SPACE_FOR_FLOAT64.buffer, SPACE_FOR_FLOAT64.byteOffset, SPACE_FOR_FLOAT64.byteLength); +function serializeNumber(buffer, key, value, index, isArray) { + // We have an integer value + // TODO(NODE-2529): Add support for big int + if (Number.isInteger(value) && + value >= constants.BSON_INT32_MIN && + value <= constants.BSON_INT32_MAX) { + // If the value fits in 32 bits encode as int32 + // Set int type 32 bits or less + buffer[index++] = constants.BSON_DATA_INT; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Write the int value + buffer[index++] = value & 0xff; + buffer[index++] = (value >> 8) & 0xff; + buffer[index++] = (value >> 16) & 0xff; + buffer[index++] = (value >> 24) & 0xff; + } + else { + // Encode as double + buffer[index++] = constants.BSON_DATA_NUMBER; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Write float + DV_FOR_FLOAT64.setFloat64(0, value, true); + buffer.set(SPACE_FOR_FLOAT64, index); + // Adjust index + index = index + 8; + } + return index; +} +function serializeNull(buffer, key, _, index, isArray) { + // Set long type + buffer[index++] = constants.BSON_DATA_NULL; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + return index; +} +function serializeBoolean(buffer, key, value, index, isArray) { + // Write the type + buffer[index++] = constants.BSON_DATA_BOOLEAN; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Encode the boolean value + buffer[index++] = value ? 1 : 0; + return index; +} +function serializeDate(buffer, key, value, index, isArray) { + // Write the type + buffer[index++] = constants.BSON_DATA_DATE; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Write the date + var dateInMilis = long_1.Long.fromNumber(value.getTime()); + var lowBits = dateInMilis.getLowBits(); + var highBits = dateInMilis.getHighBits(); + // Encode low bits + buffer[index++] = lowBits & 0xff; + buffer[index++] = (lowBits >> 8) & 0xff; + buffer[index++] = (lowBits >> 16) & 0xff; + buffer[index++] = (lowBits >> 24) & 0xff; + // Encode high bits + buffer[index++] = highBits & 0xff; + buffer[index++] = (highBits >> 8) & 0xff; + buffer[index++] = (highBits >> 16) & 0xff; + buffer[index++] = (highBits >> 24) & 0xff; + return index; +} +function serializeRegExp(buffer, key, value, index, isArray) { + // Write the type + buffer[index++] = constants.BSON_DATA_REGEXP; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + if (value.source && value.source.match(regexp) != null) { + throw Error('value ' + value.source + ' must not contain null bytes'); + } + // Adjust the index + index = index + buffer.write(value.source, index, undefined, 'utf8'); + // Write zero + buffer[index++] = 0x00; + // Write the parameters + if (value.ignoreCase) + buffer[index++] = 0x69; // i + if (value.global) + buffer[index++] = 0x73; // s + if (value.multiline) + buffer[index++] = 0x6d; // m + // Add ending zero + buffer[index++] = 0x00; + return index; +} +function serializeBSONRegExp(buffer, key, value, index, isArray) { + // Write the type + buffer[index++] = constants.BSON_DATA_REGEXP; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Check the pattern for 0 bytes + if (value.pattern.match(regexp) != null) { + // The BSON spec doesn't allow keys with null bytes because keys are + // null-terminated. + throw Error('pattern ' + value.pattern + ' must not contain null bytes'); + } + // Adjust the index + index = index + buffer.write(value.pattern, index, undefined, 'utf8'); + // Write zero + buffer[index++] = 0x00; + // Write the options + index = index + buffer.write(value.options.split('').sort().join(''), index, undefined, 'utf8'); + // Add ending zero + buffer[index++] = 0x00; + return index; +} +function serializeMinMax(buffer, key, value, index, isArray) { + // Write the type of either min or max key + if (value === null) { + buffer[index++] = constants.BSON_DATA_NULL; + } + else if (value._bsontype === 'MinKey') { + buffer[index++] = constants.BSON_DATA_MIN_KEY; + } + else { + buffer[index++] = constants.BSON_DATA_MAX_KEY; + } + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + return index; +} +function serializeObjectId(buffer, key, value, index, isArray) { + // Write the type + buffer[index++] = constants.BSON_DATA_OID; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Write the objectId into the shared buffer + if (typeof value.id === 'string') { + buffer.write(value.id, index, undefined, 'binary'); + } + else if ((0, utils_1.isUint8Array)(value.id)) { + // Use the standard JS methods here because buffer.copy() is buggy with the + // browser polyfill + buffer.set(value.id.subarray(0, 12), index); + } + else { + throw new error_1.BSONTypeError('object [' + JSON.stringify(value) + '] is not a valid ObjectId'); + } + // Adjust index + return index + 12; +} +function serializeBuffer(buffer, key, value, index, isArray) { + // Write the type + buffer[index++] = constants.BSON_DATA_BINARY; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Get size of the buffer (current write point) + var size = value.length; + // Write the size of the string to buffer + buffer[index++] = size & 0xff; + buffer[index++] = (size >> 8) & 0xff; + buffer[index++] = (size >> 16) & 0xff; + buffer[index++] = (size >> 24) & 0xff; + // Write the default subtype + buffer[index++] = constants.BSON_BINARY_SUBTYPE_DEFAULT; + // Copy the content form the binary field to the buffer + buffer.set((0, ensure_buffer_1.ensureBuffer)(value), index); + // Adjust the index + index = index + size; + return index; +} +function serializeObject(buffer, key, value, index, checkKeys, depth, serializeFunctions, ignoreUndefined, isArray, path) { + if (checkKeys === void 0) { checkKeys = false; } + if (depth === void 0) { depth = 0; } + if (serializeFunctions === void 0) { serializeFunctions = false; } + if (ignoreUndefined === void 0) { ignoreUndefined = true; } + if (isArray === void 0) { isArray = false; } + if (path === void 0) { path = []; } + for (var i = 0; i < path.length; i++) { + if (path[i] === value) + throw new error_1.BSONError('cyclic dependency detected'); + } + // Push value to stack + path.push(value); + // Write the type + buffer[index++] = Array.isArray(value) ? constants.BSON_DATA_ARRAY : constants.BSON_DATA_OBJECT; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + var endIndex = serializeInto(buffer, value, checkKeys, index, depth + 1, serializeFunctions, ignoreUndefined, path); + // Pop stack + path.pop(); + return endIndex; +} +function serializeDecimal128(buffer, key, value, index, isArray) { + buffer[index++] = constants.BSON_DATA_DECIMAL128; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Write the data from the value + // Prefer the standard JS methods because their typechecking is not buggy, + // unlike the `buffer` polyfill's. + buffer.set(value.bytes.subarray(0, 16), index); + return index + 16; +} +function serializeLong(buffer, key, value, index, isArray) { + // Write the type + buffer[index++] = + value._bsontype === 'Long' ? constants.BSON_DATA_LONG : constants.BSON_DATA_TIMESTAMP; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Write the date + var lowBits = value.getLowBits(); + var highBits = value.getHighBits(); + // Encode low bits + buffer[index++] = lowBits & 0xff; + buffer[index++] = (lowBits >> 8) & 0xff; + buffer[index++] = (lowBits >> 16) & 0xff; + buffer[index++] = (lowBits >> 24) & 0xff; + // Encode high bits + buffer[index++] = highBits & 0xff; + buffer[index++] = (highBits >> 8) & 0xff; + buffer[index++] = (highBits >> 16) & 0xff; + buffer[index++] = (highBits >> 24) & 0xff; + return index; +} +function serializeInt32(buffer, key, value, index, isArray) { + value = value.valueOf(); + // Set int type 32 bits or less + buffer[index++] = constants.BSON_DATA_INT; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Write the int value + buffer[index++] = value & 0xff; + buffer[index++] = (value >> 8) & 0xff; + buffer[index++] = (value >> 16) & 0xff; + buffer[index++] = (value >> 24) & 0xff; + return index; +} +function serializeDouble(buffer, key, value, index, isArray) { + // Encode as double + buffer[index++] = constants.BSON_DATA_NUMBER; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Write float + DV_FOR_FLOAT64.setFloat64(0, value.value, true); + buffer.set(SPACE_FOR_FLOAT64, index); + // Adjust index + index = index + 8; + return index; +} +function serializeFunction(buffer, key, value, index, _checkKeys, _depth, isArray) { + if (_checkKeys === void 0) { _checkKeys = false; } + if (_depth === void 0) { _depth = 0; } + buffer[index++] = constants.BSON_DATA_CODE; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Function string + var functionString = (0, utils_1.normalizedFunctionString)(value); + // Write the string + var size = buffer.write(functionString, index + 4, undefined, 'utf8') + 1; + // Write the size of the string to buffer + buffer[index] = size & 0xff; + buffer[index + 1] = (size >> 8) & 0xff; + buffer[index + 2] = (size >> 16) & 0xff; + buffer[index + 3] = (size >> 24) & 0xff; + // Update index + index = index + 4 + size - 1; + // Write zero + buffer[index++] = 0; + return index; +} +function serializeCode(buffer, key, value, index, checkKeys, depth, serializeFunctions, ignoreUndefined, isArray) { + if (checkKeys === void 0) { checkKeys = false; } + if (depth === void 0) { depth = 0; } + if (serializeFunctions === void 0) { serializeFunctions = false; } + if (ignoreUndefined === void 0) { ignoreUndefined = true; } + if (isArray === void 0) { isArray = false; } + if (value.scope && typeof value.scope === 'object') { + // Write the type + buffer[index++] = constants.BSON_DATA_CODE_W_SCOPE; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Starting index + var startIndex = index; + // Serialize the function + // Get the function string + var functionString = typeof value.code === 'string' ? value.code : value.code.toString(); + // Index adjustment + index = index + 4; + // Write string into buffer + var codeSize = buffer.write(functionString, index + 4, undefined, 'utf8') + 1; + // Write the size of the string to buffer + buffer[index] = codeSize & 0xff; + buffer[index + 1] = (codeSize >> 8) & 0xff; + buffer[index + 2] = (codeSize >> 16) & 0xff; + buffer[index + 3] = (codeSize >> 24) & 0xff; + // Write end 0 + buffer[index + 4 + codeSize - 1] = 0; + // Write the + index = index + codeSize + 4; + // + // Serialize the scope value + var endIndex = serializeInto(buffer, value.scope, checkKeys, index, depth + 1, serializeFunctions, ignoreUndefined); + index = endIndex - 1; + // Writ the total + var totalSize = endIndex - startIndex; + // Write the total size of the object + buffer[startIndex++] = totalSize & 0xff; + buffer[startIndex++] = (totalSize >> 8) & 0xff; + buffer[startIndex++] = (totalSize >> 16) & 0xff; + buffer[startIndex++] = (totalSize >> 24) & 0xff; + // Write trailing zero + buffer[index++] = 0; + } + else { + buffer[index++] = constants.BSON_DATA_CODE; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Function string + var functionString = value.code.toString(); + // Write the string + var size = buffer.write(functionString, index + 4, undefined, 'utf8') + 1; + // Write the size of the string to buffer + buffer[index] = size & 0xff; + buffer[index + 1] = (size >> 8) & 0xff; + buffer[index + 2] = (size >> 16) & 0xff; + buffer[index + 3] = (size >> 24) & 0xff; + // Update index + index = index + 4 + size - 1; + // Write zero + buffer[index++] = 0; + } + return index; +} +function serializeBinary(buffer, key, value, index, isArray) { + // Write the type + buffer[index++] = constants.BSON_DATA_BINARY; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Extract the buffer + var data = value.value(true); + // Calculate size + var size = value.position; + // Add the deprecated 02 type 4 bytes of size to total + if (value.sub_type === binary_1.Binary.SUBTYPE_BYTE_ARRAY) + size = size + 4; + // Write the size of the string to buffer + buffer[index++] = size & 0xff; + buffer[index++] = (size >> 8) & 0xff; + buffer[index++] = (size >> 16) & 0xff; + buffer[index++] = (size >> 24) & 0xff; + // Write the subtype to the buffer + buffer[index++] = value.sub_type; + // If we have binary type 2 the 4 first bytes are the size + if (value.sub_type === binary_1.Binary.SUBTYPE_BYTE_ARRAY) { + size = size - 4; + buffer[index++] = size & 0xff; + buffer[index++] = (size >> 8) & 0xff; + buffer[index++] = (size >> 16) & 0xff; + buffer[index++] = (size >> 24) & 0xff; + } + // Write the data to the object + buffer.set(data, index); + // Adjust the index + index = index + value.position; + return index; +} +function serializeSymbol(buffer, key, value, index, isArray) { + // Write the type + buffer[index++] = constants.BSON_DATA_SYMBOL; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Write the string + var size = buffer.write(value.value, index + 4, undefined, 'utf8') + 1; + // Write the size of the string to buffer + buffer[index] = size & 0xff; + buffer[index + 1] = (size >> 8) & 0xff; + buffer[index + 2] = (size >> 16) & 0xff; + buffer[index + 3] = (size >> 24) & 0xff; + // Update index + index = index + 4 + size - 1; + // Write zero + buffer[index++] = 0x00; + return index; +} +function serializeDBRef(buffer, key, value, index, depth, serializeFunctions, isArray) { + // Write the type + buffer[index++] = constants.BSON_DATA_OBJECT; + // Number of written bytes + var numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + var startIndex = index; + var output = { + $ref: value.collection || value.namespace, + $id: value.oid + }; + if (value.db != null) { + output.$db = value.db; + } + output = Object.assign(output, value.fields); + var endIndex = serializeInto(buffer, output, false, index, depth + 1, serializeFunctions); + // Calculate object size + var size = endIndex - startIndex; + // Write the size + buffer[startIndex++] = size & 0xff; + buffer[startIndex++] = (size >> 8) & 0xff; + buffer[startIndex++] = (size >> 16) & 0xff; + buffer[startIndex++] = (size >> 24) & 0xff; + // Set index + return endIndex; +} +function serializeInto(buffer, object, checkKeys, startingIndex, depth, serializeFunctions, ignoreUndefined, path) { + if (checkKeys === void 0) { checkKeys = false; } + if (startingIndex === void 0) { startingIndex = 0; } + if (depth === void 0) { depth = 0; } + if (serializeFunctions === void 0) { serializeFunctions = false; } + if (ignoreUndefined === void 0) { ignoreUndefined = true; } + if (path === void 0) { path = []; } + startingIndex = startingIndex || 0; + path = path || []; + // Push the object to the path + path.push(object); + // Start place to serialize into + var index = startingIndex + 4; + // Special case isArray + if (Array.isArray(object)) { + // Get object keys + for (var i = 0; i < object.length; i++) { + var key = "".concat(i); + var value = object[i]; + // Is there an override value + if (typeof (value === null || value === void 0 ? void 0 : value.toBSON) === 'function') { + value = value.toBSON(); + } + if (typeof value === 'string') { + index = serializeString(buffer, key, value, index, true); + } + else if (typeof value === 'number') { + index = serializeNumber(buffer, key, value, index, true); + } + else if (typeof value === 'bigint') { + throw new error_1.BSONTypeError('Unsupported type BigInt, please use Decimal128'); + } + else if (typeof value === 'boolean') { + index = serializeBoolean(buffer, key, value, index, true); + } + else if (value instanceof Date || (0, utils_1.isDate)(value)) { + index = serializeDate(buffer, key, value, index, true); + } + else if (value === undefined) { + index = serializeNull(buffer, key, value, index, true); + } + else if (value === null) { + index = serializeNull(buffer, key, value, index, true); + } + else if (value['_bsontype'] === 'ObjectId' || value['_bsontype'] === 'ObjectID') { + index = serializeObjectId(buffer, key, value, index, true); + } + else if ((0, utils_1.isUint8Array)(value)) { + index = serializeBuffer(buffer, key, value, index, true); + } + else if (value instanceof RegExp || (0, utils_1.isRegExp)(value)) { + index = serializeRegExp(buffer, key, value, index, true); + } + else if (typeof value === 'object' && value['_bsontype'] == null) { + index = serializeObject(buffer, key, value, index, checkKeys, depth, serializeFunctions, ignoreUndefined, true, path); + } + else if (typeof value === 'object' && + (0, extended_json_1.isBSONType)(value) && + value._bsontype === 'Decimal128') { + index = serializeDecimal128(buffer, key, value, index, true); + } + else if (value['_bsontype'] === 'Long' || value['_bsontype'] === 'Timestamp') { + index = serializeLong(buffer, key, value, index, true); + } + else if (value['_bsontype'] === 'Double') { + index = serializeDouble(buffer, key, value, index, true); + } + else if (typeof value === 'function' && serializeFunctions) { + index = serializeFunction(buffer, key, value, index, checkKeys, depth, true); + } + else if (value['_bsontype'] === 'Code') { + index = serializeCode(buffer, key, value, index, checkKeys, depth, serializeFunctions, ignoreUndefined, true); + } + else if (value['_bsontype'] === 'Binary') { + index = serializeBinary(buffer, key, value, index, true); + } + else if (value['_bsontype'] === 'Symbol') { + index = serializeSymbol(buffer, key, value, index, true); + } + else if (value['_bsontype'] === 'DBRef') { + index = serializeDBRef(buffer, key, value, index, depth, serializeFunctions, true); + } + else if (value['_bsontype'] === 'BSONRegExp') { + index = serializeBSONRegExp(buffer, key, value, index, true); + } + else if (value['_bsontype'] === 'Int32') { + index = serializeInt32(buffer, key, value, index, true); + } + else if (value['_bsontype'] === 'MinKey' || value['_bsontype'] === 'MaxKey') { + index = serializeMinMax(buffer, key, value, index, true); + } + else if (typeof value['_bsontype'] !== 'undefined') { + throw new error_1.BSONTypeError("Unrecognized or invalid _bsontype: ".concat(String(value['_bsontype']))); + } + } + } + else if (object instanceof map_1.Map || (0, utils_1.isMap)(object)) { + var iterator = object.entries(); + var done = false; + while (!done) { + // Unpack the next entry + var entry = iterator.next(); + done = !!entry.done; + // Are we done, then skip and terminate + if (done) + continue; + // Get the entry values + var key = entry.value[0]; + var value = entry.value[1]; + // Check the type of the value + var type = typeof value; + // Check the key and throw error if it's illegal + if (typeof key === 'string' && !ignoreKeys.has(key)) { + if (key.match(regexp) != null) { + // The BSON spec doesn't allow keys with null bytes because keys are + // null-terminated. + throw Error('key ' + key + ' must not contain null bytes'); + } + if (checkKeys) { + if ('$' === key[0]) { + throw Error('key ' + key + " must not start with '$'"); + } + else if (~key.indexOf('.')) { + throw Error('key ' + key + " must not contain '.'"); + } + } + } + if (type === 'string') { + index = serializeString(buffer, key, value, index); + } + else if (type === 'number') { + index = serializeNumber(buffer, key, value, index); + } + else if (type === 'bigint' || (0, utils_1.isBigInt64Array)(value) || (0, utils_1.isBigUInt64Array)(value)) { + throw new error_1.BSONTypeError('Unsupported type BigInt, please use Decimal128'); + } + else if (type === 'boolean') { + index = serializeBoolean(buffer, key, value, index); + } + else if (value instanceof Date || (0, utils_1.isDate)(value)) { + index = serializeDate(buffer, key, value, index); + } + else if (value === null || (value === undefined && ignoreUndefined === false)) { + index = serializeNull(buffer, key, value, index); + } + else if (value['_bsontype'] === 'ObjectId' || value['_bsontype'] === 'ObjectID') { + index = serializeObjectId(buffer, key, value, index); + } + else if ((0, utils_1.isUint8Array)(value)) { + index = serializeBuffer(buffer, key, value, index); + } + else if (value instanceof RegExp || (0, utils_1.isRegExp)(value)) { + index = serializeRegExp(buffer, key, value, index); + } + else if (type === 'object' && value['_bsontype'] == null) { + index = serializeObject(buffer, key, value, index, checkKeys, depth, serializeFunctions, ignoreUndefined, false, path); + } + else if (type === 'object' && value['_bsontype'] === 'Decimal128') { + index = serializeDecimal128(buffer, key, value, index); + } + else if (value['_bsontype'] === 'Long' || value['_bsontype'] === 'Timestamp') { + index = serializeLong(buffer, key, value, index); + } + else if (value['_bsontype'] === 'Double') { + index = serializeDouble(buffer, key, value, index); + } + else if (value['_bsontype'] === 'Code') { + index = serializeCode(buffer, key, value, index, checkKeys, depth, serializeFunctions, ignoreUndefined); + } + else if (typeof value === 'function' && serializeFunctions) { + index = serializeFunction(buffer, key, value, index, checkKeys, depth, serializeFunctions); + } + else if (value['_bsontype'] === 'Binary') { + index = serializeBinary(buffer, key, value, index); + } + else if (value['_bsontype'] === 'Symbol') { + index = serializeSymbol(buffer, key, value, index); + } + else if (value['_bsontype'] === 'DBRef') { + index = serializeDBRef(buffer, key, value, index, depth, serializeFunctions); + } + else if (value['_bsontype'] === 'BSONRegExp') { + index = serializeBSONRegExp(buffer, key, value, index); + } + else if (value['_bsontype'] === 'Int32') { + index = serializeInt32(buffer, key, value, index); + } + else if (value['_bsontype'] === 'MinKey' || value['_bsontype'] === 'MaxKey') { + index = serializeMinMax(buffer, key, value, index); + } + else if (typeof value['_bsontype'] !== 'undefined') { + throw new error_1.BSONTypeError("Unrecognized or invalid _bsontype: ".concat(String(value['_bsontype']))); + } + } + } + else { + if (typeof (object === null || object === void 0 ? void 0 : object.toBSON) === 'function') { + // Provided a custom serialization method + object = object.toBSON(); + if (object != null && typeof object !== 'object') { + throw new error_1.BSONTypeError('toBSON function did not return an object'); + } + } + // Iterate over all the keys + for (var key in object) { + var value = object[key]; + // Is there an override value + if (typeof (value === null || value === void 0 ? void 0 : value.toBSON) === 'function') { + value = value.toBSON(); + } + // Check the type of the value + var type = typeof value; + // Check the key and throw error if it's illegal + if (typeof key === 'string' && !ignoreKeys.has(key)) { + if (key.match(regexp) != null) { + // The BSON spec doesn't allow keys with null bytes because keys are + // null-terminated. + throw Error('key ' + key + ' must not contain null bytes'); + } + if (checkKeys) { + if ('$' === key[0]) { + throw Error('key ' + key + " must not start with '$'"); + } + else if (~key.indexOf('.')) { + throw Error('key ' + key + " must not contain '.'"); + } + } + } + if (type === 'string') { + index = serializeString(buffer, key, value, index); + } + else if (type === 'number') { + index = serializeNumber(buffer, key, value, index); + } + else if (type === 'bigint') { + throw new error_1.BSONTypeError('Unsupported type BigInt, please use Decimal128'); + } + else if (type === 'boolean') { + index = serializeBoolean(buffer, key, value, index); + } + else if (value instanceof Date || (0, utils_1.isDate)(value)) { + index = serializeDate(buffer, key, value, index); + } + else if (value === undefined) { + if (ignoreUndefined === false) + index = serializeNull(buffer, key, value, index); + } + else if (value === null) { + index = serializeNull(buffer, key, value, index); + } + else if (value['_bsontype'] === 'ObjectId' || value['_bsontype'] === 'ObjectID') { + index = serializeObjectId(buffer, key, value, index); + } + else if ((0, utils_1.isUint8Array)(value)) { + index = serializeBuffer(buffer, key, value, index); + } + else if (value instanceof RegExp || (0, utils_1.isRegExp)(value)) { + index = serializeRegExp(buffer, key, value, index); + } + else if (type === 'object' && value['_bsontype'] == null) { + index = serializeObject(buffer, key, value, index, checkKeys, depth, serializeFunctions, ignoreUndefined, false, path); + } + else if (type === 'object' && value['_bsontype'] === 'Decimal128') { + index = serializeDecimal128(buffer, key, value, index); + } + else if (value['_bsontype'] === 'Long' || value['_bsontype'] === 'Timestamp') { + index = serializeLong(buffer, key, value, index); + } + else if (value['_bsontype'] === 'Double') { + index = serializeDouble(buffer, key, value, index); + } + else if (value['_bsontype'] === 'Code') { + index = serializeCode(buffer, key, value, index, checkKeys, depth, serializeFunctions, ignoreUndefined); + } + else if (typeof value === 'function' && serializeFunctions) { + index = serializeFunction(buffer, key, value, index, checkKeys, depth, serializeFunctions); + } + else if (value['_bsontype'] === 'Binary') { + index = serializeBinary(buffer, key, value, index); + } + else if (value['_bsontype'] === 'Symbol') { + index = serializeSymbol(buffer, key, value, index); + } + else if (value['_bsontype'] === 'DBRef') { + index = serializeDBRef(buffer, key, value, index, depth, serializeFunctions); + } + else if (value['_bsontype'] === 'BSONRegExp') { + index = serializeBSONRegExp(buffer, key, value, index); + } + else if (value['_bsontype'] === 'Int32') { + index = serializeInt32(buffer, key, value, index); + } + else if (value['_bsontype'] === 'MinKey' || value['_bsontype'] === 'MaxKey') { + index = serializeMinMax(buffer, key, value, index); + } + else if (typeof value['_bsontype'] !== 'undefined') { + throw new error_1.BSONTypeError("Unrecognized or invalid _bsontype: ".concat(String(value['_bsontype']))); + } + } + } + // Remove the path + path.pop(); + // Final padding byte for object + buffer[index++] = 0x00; + // Final size + var size = index - startingIndex; + // Write the size of the object + buffer[startingIndex++] = size & 0xff; + buffer[startingIndex++] = (size >> 8) & 0xff; + buffer[startingIndex++] = (size >> 16) & 0xff; + buffer[startingIndex++] = (size >> 24) & 0xff; + return index; +} +exports.serializeInto = serializeInto; +//# sourceMappingURL=serializer.js.map \ No newline at end of file diff --git a/node_modules/bson/lib/parser/serializer.js.map b/node_modules/bson/lib/parser/serializer.js.map new file mode 100644 index 000000000..3261fd40f --- /dev/null +++ b/node_modules/bson/lib/parser/serializer.js.map @@ -0,0 +1 @@ +{"version":3,"file":"serializer.js","sourceRoot":"","sources":["../../src/parser/serializer.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/bson/lib/parser/utils.js b/node_modules/bson/lib/parser/utils.js new file mode 100644 index 000000000..94e8b5fc5 --- /dev/null +++ b/node_modules/bson/lib/parser/utils.js @@ -0,0 +1,115 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.deprecate = exports.isObjectLike = exports.isDate = exports.haveBuffer = exports.isMap = exports.isRegExp = exports.isBigUInt64Array = exports.isBigInt64Array = exports.isUint8Array = exports.isAnyArrayBuffer = exports.randomBytes = exports.normalizedFunctionString = void 0; +var buffer_1 = require("buffer"); +var global_1 = require("../utils/global"); +/** + * Normalizes our expected stringified form of a function across versions of node + * @param fn - The function to stringify + */ +function normalizedFunctionString(fn) { + return fn.toString().replace('function(', 'function ('); +} +exports.normalizedFunctionString = normalizedFunctionString; +function isReactNative() { + var g = (0, global_1.getGlobal)(); + return typeof g.navigator === 'object' && g.navigator.product === 'ReactNative'; +} +var insecureRandomBytes = function insecureRandomBytes(size) { + var insecureWarning = isReactNative() + ? 'BSON: For React Native please polyfill crypto.getRandomValues, e.g. using: https://www.npmjs.com/package/react-native-get-random-values.' + : 'BSON: No cryptographic implementation for random bytes present, falling back to a less secure implementation.'; + console.warn(insecureWarning); + var result = buffer_1.Buffer.alloc(size); + for (var i = 0; i < size; ++i) + result[i] = Math.floor(Math.random() * 256); + return result; +}; +var detectRandomBytes = function () { + if (process.browser) { + if (typeof window !== 'undefined') { + // browser crypto implementation(s) + var target_1 = window.crypto || window.msCrypto; // allow for IE11 + if (target_1 && target_1.getRandomValues) { + return function (size) { return target_1.getRandomValues(buffer_1.Buffer.alloc(size)); }; + } + } + if (typeof global !== 'undefined' && global.crypto && global.crypto.getRandomValues) { + // allow for RN packages such as https://www.npmjs.com/package/react-native-get-random-values to populate global + return function (size) { return global.crypto.getRandomValues(buffer_1.Buffer.alloc(size)); }; + } + return insecureRandomBytes; + } + else { + var requiredRandomBytes = void 0; + try { + requiredRandomBytes = require('crypto').randomBytes; + } + catch (e) { + // keep the fallback + } + // NOTE: in transpiled cases the above require might return null/undefined + return requiredRandomBytes || insecureRandomBytes; + } +}; +exports.randomBytes = detectRandomBytes(); +function isAnyArrayBuffer(value) { + return ['[object ArrayBuffer]', '[object SharedArrayBuffer]'].includes(Object.prototype.toString.call(value)); +} +exports.isAnyArrayBuffer = isAnyArrayBuffer; +function isUint8Array(value) { + return Object.prototype.toString.call(value) === '[object Uint8Array]'; +} +exports.isUint8Array = isUint8Array; +function isBigInt64Array(value) { + return Object.prototype.toString.call(value) === '[object BigInt64Array]'; +} +exports.isBigInt64Array = isBigInt64Array; +function isBigUInt64Array(value) { + return Object.prototype.toString.call(value) === '[object BigUint64Array]'; +} +exports.isBigUInt64Array = isBigUInt64Array; +function isRegExp(d) { + return Object.prototype.toString.call(d) === '[object RegExp]'; +} +exports.isRegExp = isRegExp; +function isMap(d) { + return Object.prototype.toString.call(d) === '[object Map]'; +} +exports.isMap = isMap; +/** Call to check if your environment has `Buffer` */ +function haveBuffer() { + return typeof global !== 'undefined' && typeof global.Buffer !== 'undefined'; +} +exports.haveBuffer = haveBuffer; +// To ensure that 0.4 of node works correctly +function isDate(d) { + return isObjectLike(d) && Object.prototype.toString.call(d) === '[object Date]'; +} +exports.isDate = isDate; +/** + * @internal + * this is to solve the `'someKey' in x` problem where x is unknown. + * https://github.com/typescript-eslint/typescript-eslint/issues/1071#issuecomment-541955753 + */ +function isObjectLike(candidate) { + return typeof candidate === 'object' && candidate !== null; +} +exports.isObjectLike = isObjectLike; +function deprecate(fn, message) { + var warned = false; + function deprecated() { + var args = []; + for (var _i = 0; _i < arguments.length; _i++) { + args[_i] = arguments[_i]; + } + if (!warned) { + console.warn(message); + warned = true; + } + return fn.apply(this, args); + } + return deprecated; +} +exports.deprecate = deprecate; +//# sourceMappingURL=utils.js.map \ No newline at end of file diff --git a/node_modules/bson/lib/parser/utils.js.map b/node_modules/bson/lib/parser/utils.js.map new file mode 100644 index 000000000..6eba4a9bd --- /dev/null +++ b/node_modules/bson/lib/parser/utils.js.map @@ -0,0 +1 @@ +{"version":3,"file":"utils.js","sourceRoot":"","sources":["../../src/parser/utils.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/bson/lib/regexp.js b/node_modules/bson/lib/regexp.js new file mode 100644 index 000000000..bc1f230cc --- /dev/null +++ b/node_modules/bson/lib/regexp.js @@ -0,0 +1,74 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.BSONRegExp = void 0; +var error_1 = require("./error"); +function alphabetize(str) { + return str.split('').sort().join(''); +} +/** + * A class representation of the BSON RegExp type. + * @public + * @category BSONType + */ +var BSONRegExp = /** @class */ (function () { + /** + * @param pattern - The regular expression pattern to match + * @param options - The regular expression options + */ + function BSONRegExp(pattern, options) { + if (!(this instanceof BSONRegExp)) + return new BSONRegExp(pattern, options); + this.pattern = pattern; + this.options = alphabetize(options !== null && options !== void 0 ? options : ''); + if (this.pattern.indexOf('\x00') !== -1) { + throw new error_1.BSONError("BSON Regex patterns cannot contain null bytes, found: ".concat(JSON.stringify(this.pattern))); + } + if (this.options.indexOf('\x00') !== -1) { + throw new error_1.BSONError("BSON Regex options cannot contain null bytes, found: ".concat(JSON.stringify(this.options))); + } + // Validate options + for (var i = 0; i < this.options.length; i++) { + if (!(this.options[i] === 'i' || + this.options[i] === 'm' || + this.options[i] === 'x' || + this.options[i] === 'l' || + this.options[i] === 's' || + this.options[i] === 'u')) { + throw new error_1.BSONError("The regular expression option [".concat(this.options[i], "] is not supported")); + } + } + } + BSONRegExp.parseOptions = function (options) { + return options ? options.split('').sort().join('') : ''; + }; + /** @internal */ + BSONRegExp.prototype.toExtendedJSON = function (options) { + options = options || {}; + if (options.legacy) { + return { $regex: this.pattern, $options: this.options }; + } + return { $regularExpression: { pattern: this.pattern, options: this.options } }; + }; + /** @internal */ + BSONRegExp.fromExtendedJSON = function (doc) { + if ('$regex' in doc) { + if (typeof doc.$regex !== 'string') { + // This is for $regex query operators that have extended json values. + if (doc.$regex._bsontype === 'BSONRegExp') { + return doc; + } + } + else { + return new BSONRegExp(doc.$regex, BSONRegExp.parseOptions(doc.$options)); + } + } + if ('$regularExpression' in doc) { + return new BSONRegExp(doc.$regularExpression.pattern, BSONRegExp.parseOptions(doc.$regularExpression.options)); + } + throw new error_1.BSONTypeError("Unexpected BSONRegExp EJSON object form: ".concat(JSON.stringify(doc))); + }; + return BSONRegExp; +}()); +exports.BSONRegExp = BSONRegExp; +Object.defineProperty(BSONRegExp.prototype, '_bsontype', { value: 'BSONRegExp' }); +//# sourceMappingURL=regexp.js.map \ No newline at end of file diff --git a/node_modules/bson/lib/regexp.js.map b/node_modules/bson/lib/regexp.js.map new file mode 100644 index 000000000..134381759 --- /dev/null +++ b/node_modules/bson/lib/regexp.js.map @@ -0,0 +1 @@ +{"version":3,"file":"regexp.js","sourceRoot":"","sources":["../src/regexp.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/bson/lib/symbol.js b/node_modules/bson/lib/symbol.js new file mode 100644 index 000000000..cad93173f --- /dev/null +++ b/node_modules/bson/lib/symbol.js @@ -0,0 +1,48 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.BSONSymbol = void 0; +/** + * A class representation of the BSON Symbol type. + * @public + * @category BSONType + */ +var BSONSymbol = /** @class */ (function () { + /** + * @param value - the string representing the symbol. + */ + function BSONSymbol(value) { + if (!(this instanceof BSONSymbol)) + return new BSONSymbol(value); + this.value = value; + } + /** Access the wrapped string value. */ + BSONSymbol.prototype.valueOf = function () { + return this.value; + }; + BSONSymbol.prototype.toString = function () { + return this.value; + }; + /** @internal */ + BSONSymbol.prototype.inspect = function () { + return "new BSONSymbol(\"".concat(this.value, "\")"); + }; + BSONSymbol.prototype.toJSON = function () { + return this.value; + }; + /** @internal */ + BSONSymbol.prototype.toExtendedJSON = function () { + return { $symbol: this.value }; + }; + /** @internal */ + BSONSymbol.fromExtendedJSON = function (doc) { + return new BSONSymbol(doc.$symbol); + }; + /** @internal */ + BSONSymbol.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () { + return this.inspect(); + }; + return BSONSymbol; +}()); +exports.BSONSymbol = BSONSymbol; +Object.defineProperty(BSONSymbol.prototype, '_bsontype', { value: 'Symbol' }); +//# sourceMappingURL=symbol.js.map \ No newline at end of file diff --git a/node_modules/bson/lib/symbol.js.map b/node_modules/bson/lib/symbol.js.map new file mode 100644 index 000000000..3662444d7 --- /dev/null +++ b/node_modules/bson/lib/symbol.js.map @@ -0,0 +1 @@ +{"version":3,"file":"symbol.js","sourceRoot":"","sources":["../src/symbol.ts"],"names":[],"mappings":";;;AAKA;;;;GAIG;AACH;IAIE;;OAEG;IACH,oBAAY,KAAa;QACvB,IAAI,CAAC,CAAC,IAAI,YAAY,UAAU,CAAC;YAAE,OAAO,IAAI,UAAU,CAAC,KAAK,CAAC,CAAC;QAEhE,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;IACrB,CAAC;IAED,uCAAuC;IACvC,4BAAO,GAAP;QACE,OAAO,IAAI,CAAC,KAAK,CAAC;IACpB,CAAC;IAED,6BAAQ,GAAR;QACE,OAAO,IAAI,CAAC,KAAK,CAAC;IACpB,CAAC;IAED,gBAAgB;IAChB,4BAAO,GAAP;QACE,OAAO,2BAAmB,IAAI,CAAC,KAAK,QAAI,CAAC;IAC3C,CAAC;IAED,2BAAM,GAAN;QACE,OAAO,IAAI,CAAC,KAAK,CAAC;IACpB,CAAC;IAED,gBAAgB;IAChB,mCAAc,GAAd;QACE,OAAO,EAAE,OAAO,EAAE,IAAI,CAAC,KAAK,EAAE,CAAC;IACjC,CAAC;IAED,gBAAgB;IACT,2BAAgB,GAAvB,UAAwB,GAAuB;QAC7C,OAAO,IAAI,UAAU,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC;IACrC,CAAC;IAED,gBAAgB;IAChB,qBAAC,MAAM,CAAC,GAAG,CAAC,4BAA4B,CAAC,CAAC,GAA1C;QACE,OAAO,IAAI,CAAC,OAAO,EAAE,CAAC;IACxB,CAAC;IACH,iBAAC;AAAD,CAAC,AA7CD,IA6CC;AA7CY,gCAAU;AA+CvB,MAAM,CAAC,cAAc,CAAC,UAAU,CAAC,SAAS,EAAE,WAAW,EAAE,EAAE,KAAK,EAAE,QAAQ,EAAE,CAAC,CAAC"} \ No newline at end of file diff --git a/node_modules/bson/lib/timestamp.js b/node_modules/bson/lib/timestamp.js new file mode 100644 index 000000000..a3a8417c2 --- /dev/null +++ b/node_modules/bson/lib/timestamp.js @@ -0,0 +1,102 @@ +"use strict"; +var __extends = (this && this.__extends) || (function () { + var extendStatics = function (d, b) { + extendStatics = Object.setPrototypeOf || + ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || + function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; }; + return extendStatics(d, b); + }; + return function (d, b) { + if (typeof b !== "function" && b !== null) + throw new TypeError("Class extends value " + String(b) + " is not a constructor or null"); + extendStatics(d, b); + function __() { this.constructor = d; } + d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.Timestamp = exports.LongWithoutOverridesClass = void 0; +var long_1 = require("./long"); +var utils_1 = require("./parser/utils"); +/** @public */ +exports.LongWithoutOverridesClass = long_1.Long; +/** + * @public + * @category BSONType + * */ +var Timestamp = /** @class */ (function (_super) { + __extends(Timestamp, _super); + function Timestamp(low, high) { + var _this = this; + // eslint-disable-next-line @typescript-eslint/ban-ts-comment + // @ts-expect-error + if (!(_this instanceof Timestamp)) + return new Timestamp(low, high); + if (long_1.Long.isLong(low)) { + _this = _super.call(this, low.low, low.high, true) || this; + } + else if ((0, utils_1.isObjectLike)(low) && typeof low.t !== 'undefined' && typeof low.i !== 'undefined') { + _this = _super.call(this, low.i, low.t, true) || this; + } + else { + _this = _super.call(this, low, high, true) || this; + } + Object.defineProperty(_this, '_bsontype', { + value: 'Timestamp', + writable: false, + configurable: false, + enumerable: false + }); + return _this; + } + Timestamp.prototype.toJSON = function () { + return { + $timestamp: this.toString() + }; + }; + /** Returns a Timestamp represented by the given (32-bit) integer value. */ + Timestamp.fromInt = function (value) { + return new Timestamp(long_1.Long.fromInt(value, true)); + }; + /** Returns a Timestamp representing the given number value, provided that it is a finite number. Otherwise, zero is returned. */ + Timestamp.fromNumber = function (value) { + return new Timestamp(long_1.Long.fromNumber(value, true)); + }; + /** + * Returns a Timestamp for the given high and low bits. Each is assumed to use 32 bits. + * + * @param lowBits - the low 32-bits. + * @param highBits - the high 32-bits. + */ + Timestamp.fromBits = function (lowBits, highBits) { + return new Timestamp(lowBits, highBits); + }; + /** + * Returns a Timestamp from the given string, optionally using the given radix. + * + * @param str - the textual representation of the Timestamp. + * @param optRadix - the radix in which the text is written. + */ + Timestamp.fromString = function (str, optRadix) { + return new Timestamp(long_1.Long.fromString(str, true, optRadix)); + }; + /** @internal */ + Timestamp.prototype.toExtendedJSON = function () { + return { $timestamp: { t: this.high >>> 0, i: this.low >>> 0 } }; + }; + /** @internal */ + Timestamp.fromExtendedJSON = function (doc) { + return new Timestamp(doc.$timestamp); + }; + /** @internal */ + Timestamp.prototype[Symbol.for('nodejs.util.inspect.custom')] = function () { + return this.inspect(); + }; + Timestamp.prototype.inspect = function () { + return "new Timestamp({ t: ".concat(this.getHighBits(), ", i: ").concat(this.getLowBits(), " })"); + }; + Timestamp.MAX_VALUE = long_1.Long.MAX_UNSIGNED_VALUE; + return Timestamp; +}(exports.LongWithoutOverridesClass)); +exports.Timestamp = Timestamp; +//# sourceMappingURL=timestamp.js.map \ No newline at end of file diff --git a/node_modules/bson/lib/timestamp.js.map b/node_modules/bson/lib/timestamp.js.map new file mode 100644 index 000000000..e1a8bef95 --- /dev/null +++ b/node_modules/bson/lib/timestamp.js.map @@ -0,0 +1 @@ +{"version":3,"file":"timestamp.js","sourceRoot":"","sources":["../src/timestamp.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;AAAA,+BAA8B;AAC9B,wCAA8C;AAQ9C,cAAc;AACD,QAAA,yBAAyB,GACpC,WAAuC,CAAC;AAU1C;;;KAGK;AACL;IAA+B,6BAAyB;IAmBtD,mBAAY,GAA6C,EAAE,IAAa;QAAxE,iBAkBC;QAjBC,6DAA6D;QAC7D,mBAAmB;QACnB,IAAI,CAAC,CAAC,KAAI,YAAY,SAAS,CAAC;YAAE,OAAO,IAAI,SAAS,CAAC,GAAG,EAAE,IAAI,CAAC,CAAC;QAElE,IAAI,WAAI,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE;YACpB,QAAA,kBAAM,GAAG,CAAC,GAAG,EAAE,GAAG,CAAC,IAAI,EAAE,IAAI,CAAC,SAAC;SAChC;aAAM,IAAI,IAAA,oBAAY,EAAC,GAAG,CAAC,IAAI,OAAO,GAAG,CAAC,CAAC,KAAK,WAAW,IAAI,OAAO,GAAG,CAAC,CAAC,KAAK,WAAW,EAAE;YAC5F,QAAA,kBAAM,GAAG,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC,EAAE,IAAI,CAAC,SAAC;SAC3B;aAAM;YACL,QAAA,kBAAM,GAAG,EAAE,IAAI,EAAE,IAAI,CAAC,SAAC;SACxB;QACD,MAAM,CAAC,cAAc,CAAC,KAAI,EAAE,WAAW,EAAE;YACvC,KAAK,EAAE,WAAW;YAClB,QAAQ,EAAE,KAAK;YACf,YAAY,EAAE,KAAK;YACnB,UAAU,EAAE,KAAK;SAClB,CAAC,CAAC;;IACL,CAAC;IAED,0BAAM,GAAN;QACE,OAAO;YACL,UAAU,EAAE,IAAI,CAAC,QAAQ,EAAE;SAC5B,CAAC;IACJ,CAAC;IAED,2EAA2E;IACpE,iBAAO,GAAd,UAAe,KAAa;QAC1B,OAAO,IAAI,SAAS,CAAC,WAAI,CAAC,OAAO,CAAC,KAAK,EAAE,IAAI,CAAC,CAAC,CAAC;IAClD,CAAC;IAED,iIAAiI;IAC1H,oBAAU,GAAjB,UAAkB,KAAa;QAC7B,OAAO,IAAI,SAAS,CAAC,WAAI,CAAC,UAAU,CAAC,KAAK,EAAE,IAAI,CAAC,CAAC,CAAC;IACrD,CAAC;IAED;;;;;OAKG;IACI,kBAAQ,GAAf,UAAgB,OAAe,EAAE,QAAgB;QAC/C,OAAO,IAAI,SAAS,CAAC,OAAO,EAAE,QAAQ,CAAC,CAAC;IAC1C,CAAC;IAED;;;;;OAKG;IACI,oBAAU,GAAjB,UAAkB,GAAW,EAAE,QAAgB;QAC7C,OAAO,IAAI,SAAS,CAAC,WAAI,CAAC,UAAU,CAAC,GAAG,EAAE,IAAI,EAAE,QAAQ,CAAC,CAAC,CAAC;IAC7D,CAAC;IAED,gBAAgB;IAChB,kCAAc,GAAd;QACE,OAAO,EAAE,UAAU,EAAE,EAAE,CAAC,EAAE,IAAI,CAAC,IAAI,KAAK,CAAC,EAAE,CAAC,EAAE,IAAI,CAAC,GAAG,KAAK,CAAC,EAAE,EAAE,CAAC;IACnE,CAAC;IAED,gBAAgB;IACT,0BAAgB,GAAvB,UAAwB,GAAsB;QAC5C,OAAO,IAAI,SAAS,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC;IACvC,CAAC;IAED,gBAAgB;IAChB,oBAAC,MAAM,CAAC,GAAG,CAAC,4BAA4B,CAAC,CAAC,GAA1C;QACE,OAAO,IAAI,CAAC,OAAO,EAAE,CAAC;IACxB,CAAC;IAED,2BAAO,GAAP;QACE,OAAO,6BAAsB,IAAI,CAAC,WAAW,EAAE,kBAAQ,IAAI,CAAC,UAAU,EAAE,QAAK,CAAC;IAChF,CAAC;IAzFe,mBAAS,GAAG,WAAI,CAAC,kBAAkB,CAAC;IA0FtD,gBAAC;CAAA,AA7FD,CAA+B,iCAAyB,GA6FvD;AA7FY,8BAAS"} \ No newline at end of file diff --git a/node_modules/bson/lib/utils/global.js b/node_modules/bson/lib/utils/global.js new file mode 100644 index 000000000..f4bf44405 --- /dev/null +++ b/node_modules/bson/lib/utils/global.js @@ -0,0 +1,18 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.getGlobal = void 0; +function checkForMath(potentialGlobal) { + // eslint-disable-next-line eqeqeq + return potentialGlobal && potentialGlobal.Math == Math && potentialGlobal; +} +// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028 +function getGlobal() { + return (checkForMath(typeof globalThis === 'object' && globalThis) || + checkForMath(typeof window === 'object' && window) || + checkForMath(typeof self === 'object' && self) || + checkForMath(typeof global === 'object' && global) || + // eslint-disable-next-line @typescript-eslint/no-implied-eval + Function('return this')()); +} +exports.getGlobal = getGlobal; +//# sourceMappingURL=global.js.map \ No newline at end of file diff --git a/node_modules/bson/lib/utils/global.js.map b/node_modules/bson/lib/utils/global.js.map new file mode 100644 index 000000000..9d4ad7995 --- /dev/null +++ b/node_modules/bson/lib/utils/global.js.map @@ -0,0 +1 @@ +{"version":3,"file":"global.js","sourceRoot":"","sources":["../../src/utils/global.ts"],"names":[],"mappings":";;;AAMA,SAAS,YAAY,CAAC,eAAoB;IACxC,kCAAkC;IAClC,OAAO,eAAe,IAAI,eAAe,CAAC,IAAI,IAAI,IAAI,IAAI,eAAe,CAAC;AAC5E,CAAC;AAED,uEAAuE;AACvE,SAAgB,SAAS;IACvB,OAAO,CACL,YAAY,CAAC,OAAO,UAAU,KAAK,QAAQ,IAAI,UAAU,CAAC;QAC1D,YAAY,CAAC,OAAO,MAAM,KAAK,QAAQ,IAAI,MAAM,CAAC;QAClD,YAAY,CAAC,OAAO,IAAI,KAAK,QAAQ,IAAI,IAAI,CAAC;QAC9C,YAAY,CAAC,OAAO,MAAM,KAAK,QAAQ,IAAI,MAAM,CAAC;QAClD,8DAA8D;QAC9D,QAAQ,CAAC,aAAa,CAAC,EAAE,CAC1B,CAAC;AACJ,CAAC;AATD,8BASC"} \ No newline at end of file diff --git a/node_modules/bson/lib/uuid_utils.js b/node_modules/bson/lib/uuid_utils.js new file mode 100644 index 000000000..bb1f8b7e6 --- /dev/null +++ b/node_modules/bson/lib/uuid_utils.js @@ -0,0 +1,35 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.bufferToUuidHexString = exports.uuidHexStringToBuffer = exports.uuidValidateString = void 0; +var buffer_1 = require("buffer"); +var error_1 = require("./error"); +// Validation regex for v4 uuid (validates with or without dashes) +var VALIDATION_REGEX = /^(?:[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|[0-9a-f]{12}4[0-9a-f]{3}[89ab][0-9a-f]{15})$/i; +var uuidValidateString = function (str) { + return typeof str === 'string' && VALIDATION_REGEX.test(str); +}; +exports.uuidValidateString = uuidValidateString; +var uuidHexStringToBuffer = function (hexString) { + if (!(0, exports.uuidValidateString)(hexString)) { + throw new error_1.BSONTypeError('UUID string representations must be a 32 or 36 character hex string (dashes excluded/included). Format: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" or "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx".'); + } + var sanitizedHexString = hexString.replace(/-/g, ''); + return buffer_1.Buffer.from(sanitizedHexString, 'hex'); +}; +exports.uuidHexStringToBuffer = uuidHexStringToBuffer; +var bufferToUuidHexString = function (buffer, includeDashes) { + if (includeDashes === void 0) { includeDashes = true; } + return includeDashes + ? buffer.toString('hex', 0, 4) + + '-' + + buffer.toString('hex', 4, 6) + + '-' + + buffer.toString('hex', 6, 8) + + '-' + + buffer.toString('hex', 8, 10) + + '-' + + buffer.toString('hex', 10, 16) + : buffer.toString('hex'); +}; +exports.bufferToUuidHexString = bufferToUuidHexString; +//# sourceMappingURL=uuid_utils.js.map \ No newline at end of file diff --git a/node_modules/bson/lib/uuid_utils.js.map b/node_modules/bson/lib/uuid_utils.js.map new file mode 100644 index 000000000..f388ec318 --- /dev/null +++ b/node_modules/bson/lib/uuid_utils.js.map @@ -0,0 +1 @@ +{"version":3,"file":"uuid_utils.js","sourceRoot":"","sources":["../src/uuid_utils.ts"],"names":[],"mappings":";;;AAAA,iCAAgC;AAChC,iCAAwC;AAExC,kEAAkE;AAClE,IAAM,gBAAgB,GACpB,uHAAuH,CAAC;AAEnH,IAAM,kBAAkB,GAAG,UAAC,GAAW;IAC5C,OAAA,OAAO,GAAG,KAAK,QAAQ,IAAI,gBAAgB,CAAC,IAAI,CAAC,GAAG,CAAC;AAArD,CAAqD,CAAC;AAD3C,QAAA,kBAAkB,sBACyB;AAEjD,IAAM,qBAAqB,GAAG,UAAC,SAAiB;IACrD,IAAI,CAAC,IAAA,0BAAkB,EAAC,SAAS,CAAC,EAAE;QAClC,MAAM,IAAI,qBAAa,CACrB,uLAAuL,CACxL,CAAC;KACH;IAED,IAAM,kBAAkB,GAAG,SAAS,CAAC,OAAO,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC;IACvD,OAAO,eAAM,CAAC,IAAI,CAAC,kBAAkB,EAAE,KAAK,CAAC,CAAC;AAChD,CAAC,CAAC;AATW,QAAA,qBAAqB,yBAShC;AAEK,IAAM,qBAAqB,GAAG,UAAC,MAAc,EAAE,aAAoB;IAApB,8BAAA,EAAA,oBAAoB;IACxE,OAAA,aAAa;QACX,CAAC,CAAC,MAAM,CAAC,QAAQ,CAAC,KAAK,EAAE,CAAC,EAAE,CAAC,CAAC;YAC5B,GAAG;YACH,MAAM,CAAC,QAAQ,CAAC,KAAK,EAAE,CAAC,EAAE,CAAC,CAAC;YAC5B,GAAG;YACH,MAAM,CAAC,QAAQ,CAAC,KAAK,EAAE,CAAC,EAAE,CAAC,CAAC;YAC5B,GAAG;YACH,MAAM,CAAC,QAAQ,CAAC,KAAK,EAAE,CAAC,EAAE,EAAE,CAAC;YAC7B,GAAG;YACH,MAAM,CAAC,QAAQ,CAAC,KAAK,EAAE,EAAE,EAAE,EAAE,CAAC;QAChC,CAAC,CAAC,MAAM,CAAC,QAAQ,CAAC,KAAK,CAAC;AAV1B,CAU0B,CAAC;AAXhB,QAAA,qBAAqB,yBAWL"} \ No newline at end of file diff --git a/node_modules/bson/lib/validate_utf8.js b/node_modules/bson/lib/validate_utf8.js new file mode 100644 index 000000000..ec7801603 --- /dev/null +++ b/node_modules/bson/lib/validate_utf8.js @@ -0,0 +1,47 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.validateUtf8 = void 0; +var FIRST_BIT = 0x80; +var FIRST_TWO_BITS = 0xc0; +var FIRST_THREE_BITS = 0xe0; +var FIRST_FOUR_BITS = 0xf0; +var FIRST_FIVE_BITS = 0xf8; +var TWO_BIT_CHAR = 0xc0; +var THREE_BIT_CHAR = 0xe0; +var FOUR_BIT_CHAR = 0xf0; +var CONTINUING_CHAR = 0x80; +/** + * Determines if the passed in bytes are valid utf8 + * @param bytes - An array of 8-bit bytes. Must be indexable and have length property + * @param start - The index to start validating + * @param end - The index to end validating + */ +function validateUtf8(bytes, start, end) { + var continuation = 0; + for (var i = start; i < end; i += 1) { + var byte = bytes[i]; + if (continuation) { + if ((byte & FIRST_TWO_BITS) !== CONTINUING_CHAR) { + return false; + } + continuation -= 1; + } + else if (byte & FIRST_BIT) { + if ((byte & FIRST_THREE_BITS) === TWO_BIT_CHAR) { + continuation = 1; + } + else if ((byte & FIRST_FOUR_BITS) === THREE_BIT_CHAR) { + continuation = 2; + } + else if ((byte & FIRST_FIVE_BITS) === FOUR_BIT_CHAR) { + continuation = 3; + } + else { + return false; + } + } + } + return !continuation; +} +exports.validateUtf8 = validateUtf8; +//# sourceMappingURL=validate_utf8.js.map \ No newline at end of file diff --git a/node_modules/bson/lib/validate_utf8.js.map b/node_modules/bson/lib/validate_utf8.js.map new file mode 100644 index 000000000..f1e975be0 --- /dev/null +++ b/node_modules/bson/lib/validate_utf8.js.map @@ -0,0 +1 @@ +{"version":3,"file":"validate_utf8.js","sourceRoot":"","sources":["../src/validate_utf8.ts"],"names":[],"mappings":";;;AAAA,IAAM,SAAS,GAAG,IAAI,CAAC;AACvB,IAAM,cAAc,GAAG,IAAI,CAAC;AAC5B,IAAM,gBAAgB,GAAG,IAAI,CAAC;AAC9B,IAAM,eAAe,GAAG,IAAI,CAAC;AAC7B,IAAM,eAAe,GAAG,IAAI,CAAC;AAE7B,IAAM,YAAY,GAAG,IAAI,CAAC;AAC1B,IAAM,cAAc,GAAG,IAAI,CAAC;AAC5B,IAAM,aAAa,GAAG,IAAI,CAAC;AAC3B,IAAM,eAAe,GAAG,IAAI,CAAC;AAE7B;;;;;GAKG;AACH,SAAgB,YAAY,CAC1B,KAAkC,EAClC,KAAa,EACb,GAAW;IAEX,IAAI,YAAY,GAAG,CAAC,CAAC;IAErB,KAAK,IAAI,CAAC,GAAG,KAAK,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,IAAI,CAAC,EAAE;QACnC,IAAM,IAAI,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;QAEtB,IAAI,YAAY,EAAE;YAChB,IAAI,CAAC,IAAI,GAAG,cAAc,CAAC,KAAK,eAAe,EAAE;gBAC/C,OAAO,KAAK,CAAC;aACd;YACD,YAAY,IAAI,CAAC,CAAC;SACnB;aAAM,IAAI,IAAI,GAAG,SAAS,EAAE;YAC3B,IAAI,CAAC,IAAI,GAAG,gBAAgB,CAAC,KAAK,YAAY,EAAE;gBAC9C,YAAY,GAAG,CAAC,CAAC;aAClB;iBAAM,IAAI,CAAC,IAAI,GAAG,eAAe,CAAC,KAAK,cAAc,EAAE;gBACtD,YAAY,GAAG,CAAC,CAAC;aAClB;iBAAM,IAAI,CAAC,IAAI,GAAG,eAAe,CAAC,KAAK,aAAa,EAAE;gBACrD,YAAY,GAAG,CAAC,CAAC;aAClB;iBAAM;gBACL,OAAO,KAAK,CAAC;aACd;SACF;KACF;IAED,OAAO,CAAC,YAAY,CAAC;AACvB,CAAC;AA7BD,oCA6BC"} \ No newline at end of file diff --git a/node_modules/bson/package.json b/node_modules/bson/package.json new file mode 100644 index 000000000..983159d74 --- /dev/null +++ b/node_modules/bson/package.json @@ -0,0 +1,116 @@ +{ + "name": "bson", + "description": "A bson parser for node.js and the browser", + "keywords": [ + "mongodb", + "bson", + "parser" + ], + "files": [ + "lib", + "src", + "dist", + "bson.d.ts", + "etc/prepare.js", + "bower.json" + ], + "types": "bson.d.ts", + "version": "4.7.0", + "author": { + "name": "The MongoDB NodeJS Team", + "email": "dbx-node@mongodb.com" + }, + "license": "Apache-2.0", + "contributors": [], + "repository": "mongodb/js-bson", + "bugs": { + "url": "https://jira.mongodb.org/projects/NODE/issues/" + }, + "devDependencies": { + "@babel/plugin-external-helpers": "^7.10.4", + "@babel/preset-env": "^7.11.0", + "@istanbuljs/nyc-config-typescript": "^1.0.1", + "@microsoft/api-extractor": "^7.28.0", + "@rollup/plugin-babel": "^5.2.0", + "@rollup/plugin-commonjs": "^15.0.0", + "@rollup/plugin-json": "^4.1.0", + "@rollup/plugin-node-resolve": "^9.0.0", + "@rollup/plugin-replace": "^4.0.0", + "@rollup/plugin-typescript": "^6.0.0", + "@types/node": "^18.0.0", + "@typescript-eslint/eslint-plugin": "^5.30.0", + "@typescript-eslint/parser": "^5.30.0", + "array-includes": "^3.1.3", + "array.prototype.flatmap": "^1.3.0", + "benchmark": "^2.1.4", + "chai": "^4.2.0", + "eslint": "^8.18.0", + "eslint-config-prettier": "^8.5.0", + "eslint-plugin-prettier": "^4.1.0", + "eslint-plugin-tsdoc": "^0.2.16", + "karma": "^6.3.4", + "karma-chai": "^0.1.0", + "karma-chrome-launcher": "^3.1.0", + "karma-mocha": "^2.0.1", + "karma-mocha-reporter": "^2.2.5", + "karma-rollup-preprocessor": "^7.0.5", + "mocha": "5.2.0", + "node-fetch": "^2.6.1", + "nyc": "^15.1.0", + "object.entries": "^1.1.5", + "prettier": "^2.7.1", + "rimraf": "^3.0.2", + "rollup": "^2.26.5", + "rollup-plugin-commonjs": "^10.1.0", + "rollup-plugin-node-globals": "^1.4.0", + "rollup-plugin-node-polyfills": "^0.2.1", + "rollup-plugin-polyfill-node": "^0.7.0", + "standard-version": "^9.5.0", + "ts-node": "^9.0.0", + "tsd": "^0.21.0", + "typescript": "^4.7.4", + "typescript-cached-transpile": "0.0.6", + "uuid": "^8.3.2" + }, + "tsd": { + "directory": "test/types", + "compilerOptions": { + "strict": true, + "target": "esnext", + "module": "commonjs", + "moduleResolution": "node" + } + }, + "config": { + "native": false + }, + "main": "lib/bson.js", + "module": "dist/bson.esm.js", + "browser": { + "./lib/bson.js": "./dist/bson.browser.umd.js", + "./dist/bson.esm.js": "./dist/bson.browser.esm.js" + }, + "engines": { + "node": ">=6.9.0" + }, + "scripts": { + "docs": "typedoc", + "test": "npm run build && npm run test-node && npm run test-browser", + "test-node": "mocha test/node test/*_tests.js", + "test-tsd": "npm run build:dts && tsd", + "test-browser": "node --max-old-space-size=4096 ./node_modules/.bin/karma start karma.conf.js", + "build:ts": "tsc", + "build:dts": "npm run build:ts && api-extractor run --typescript-compiler-folder node_modules/typescript --local && rimraf 'lib/**/*.d.ts*'", + "build:bundle": "rollup -c rollup.config.js", + "build": "npm run build:dts && npm run build:bundle", + "lint": "eslint -v && eslint --ext '.js,.ts' --max-warnings=0 src test && tsc -v && tsc --noEmit && npm run test-tsd", + "format": "eslint --ext '.js,.ts' src test --fix", + "coverage": "nyc npm run test-node", + "coverage:html": "npm run coverage && open ./coverage/index.html", + "prepare": "node etc/prepare.js", + "release": "standard-version -i HISTORY.md" + }, + "dependencies": { + "buffer": "^5.6.0" + } +} diff --git a/node_modules/bson/src/binary.ts b/node_modules/bson/src/binary.ts new file mode 100644 index 000000000..d86275c9a --- /dev/null +++ b/node_modules/bson/src/binary.ts @@ -0,0 +1,481 @@ +import { Buffer } from 'buffer'; +import { ensureBuffer } from './ensure_buffer'; +import { bufferToUuidHexString, uuidHexStringToBuffer, uuidValidateString } from './uuid_utils'; +import { isUint8Array, randomBytes } from './parser/utils'; +import type { EJSONOptions } from './extended_json'; +import { BSONError, BSONTypeError } from './error'; +import { BSON_BINARY_SUBTYPE_UUID_NEW } from './constants'; + +/** @public */ +export type BinarySequence = Uint8Array | Buffer | number[]; + +/** @public */ +export interface BinaryExtendedLegacy { + $type: string; + $binary: string; +} + +/** @public */ +export interface BinaryExtended { + $binary: { + subType: string; + base64: string; + }; +} + +/** + * A class representation of the BSON Binary type. + * @public + * @category BSONType + */ +export class Binary { + _bsontype!: 'Binary'; + + /** + * Binary default subtype + * @internal + */ + private static readonly BSON_BINARY_SUBTYPE_DEFAULT = 0; + + /** Initial buffer default size */ + static readonly BUFFER_SIZE = 256; + /** Default BSON type */ + static readonly SUBTYPE_DEFAULT = 0; + /** Function BSON type */ + static readonly SUBTYPE_FUNCTION = 1; + /** Byte Array BSON type */ + static readonly SUBTYPE_BYTE_ARRAY = 2; + /** Deprecated UUID BSON type @deprecated Please use SUBTYPE_UUID */ + static readonly SUBTYPE_UUID_OLD = 3; + /** UUID BSON type */ + static readonly SUBTYPE_UUID = 4; + /** MD5 BSON type */ + static readonly SUBTYPE_MD5 = 5; + /** Encrypted BSON type */ + static readonly SUBTYPE_ENCRYPTED = 6; + /** Column BSON type */ + static readonly SUBTYPE_COLUMN = 7; + /** User BSON type */ + static readonly SUBTYPE_USER_DEFINED = 128; + + buffer!: Buffer; + sub_type!: number; + position!: number; + + /** + * Create a new Binary instance. + * + * This constructor can accept a string as its first argument. In this case, + * this string will be encoded using ISO-8859-1, **not** using UTF-8. + * This is almost certainly not what you want. Use `new Binary(Buffer.from(string))` + * instead to convert the string to a Buffer using UTF-8 first. + * + * @param buffer - a buffer object containing the binary data. + * @param subType - the option binary type. + */ + constructor(buffer?: string | BinarySequence, subType?: number) { + if (!(this instanceof Binary)) return new Binary(buffer, subType); + + if ( + !(buffer == null) && + !(typeof buffer === 'string') && + !ArrayBuffer.isView(buffer) && + !(buffer instanceof ArrayBuffer) && + !Array.isArray(buffer) + ) { + throw new BSONTypeError( + 'Binary can only be constructed from string, Buffer, TypedArray, or Array' + ); + } + + this.sub_type = subType ?? Binary.BSON_BINARY_SUBTYPE_DEFAULT; + + if (buffer == null) { + // create an empty binary buffer + this.buffer = Buffer.alloc(Binary.BUFFER_SIZE); + this.position = 0; + } else { + if (typeof buffer === 'string') { + // string + this.buffer = Buffer.from(buffer, 'binary'); + } else if (Array.isArray(buffer)) { + // number[] + this.buffer = Buffer.from(buffer); + } else { + // Buffer | TypedArray | ArrayBuffer + this.buffer = ensureBuffer(buffer); + } + + this.position = this.buffer.byteLength; + } + } + + /** + * Updates this binary with byte_value. + * + * @param byteValue - a single byte we wish to write. + */ + put(byteValue: string | number | Uint8Array | Buffer | number[]): void { + // If it's a string and a has more than one character throw an error + if (typeof byteValue === 'string' && byteValue.length !== 1) { + throw new BSONTypeError('only accepts single character String'); + } else if (typeof byteValue !== 'number' && byteValue.length !== 1) + throw new BSONTypeError('only accepts single character Uint8Array or Array'); + + // Decode the byte value once + let decodedByte: number; + if (typeof byteValue === 'string') { + decodedByte = byteValue.charCodeAt(0); + } else if (typeof byteValue === 'number') { + decodedByte = byteValue; + } else { + decodedByte = byteValue[0]; + } + + if (decodedByte < 0 || decodedByte > 255) { + throw new BSONTypeError('only accepts number in a valid unsigned byte range 0-255'); + } + + if (this.buffer.length > this.position) { + this.buffer[this.position++] = decodedByte; + } else { + const buffer = Buffer.alloc(Binary.BUFFER_SIZE + this.buffer.length); + // Combine the two buffers together + this.buffer.copy(buffer, 0, 0, this.buffer.length); + this.buffer = buffer; + this.buffer[this.position++] = decodedByte; + } + } + + /** + * Writes a buffer or string to the binary. + * + * @param sequence - a string or buffer to be written to the Binary BSON object. + * @param offset - specify the binary of where to write the content. + */ + write(sequence: string | BinarySequence, offset: number): void { + offset = typeof offset === 'number' ? offset : this.position; + + // If the buffer is to small let's extend the buffer + if (this.buffer.length < offset + sequence.length) { + const buffer = Buffer.alloc(this.buffer.length + sequence.length); + this.buffer.copy(buffer, 0, 0, this.buffer.length); + + // Assign the new buffer + this.buffer = buffer; + } + + if (ArrayBuffer.isView(sequence)) { + this.buffer.set(ensureBuffer(sequence), offset); + this.position = + offset + sequence.byteLength > this.position ? offset + sequence.length : this.position; + } else if (typeof sequence === 'string') { + this.buffer.write(sequence, offset, sequence.length, 'binary'); + this.position = + offset + sequence.length > this.position ? offset + sequence.length : this.position; + } + } + + /** + * Reads **length** bytes starting at **position**. + * + * @param position - read from the given position in the Binary. + * @param length - the number of bytes to read. + */ + read(position: number, length: number): BinarySequence { + length = length && length > 0 ? length : this.position; + + // Let's return the data based on the type we have + return this.buffer.slice(position, position + length); + } + + /** + * Returns the value of this binary as a string. + * @param asRaw - Will skip converting to a string + * @remarks + * This is handy when calling this function conditionally for some key value pairs and not others + */ + value(asRaw?: boolean): string | BinarySequence { + asRaw = !!asRaw; + + // Optimize to serialize for the situation where the data == size of buffer + if (asRaw && this.buffer.length === this.position) { + return this.buffer; + } + + // If it's a node.js buffer object + if (asRaw) { + return this.buffer.slice(0, this.position); + } + return this.buffer.toString('binary', 0, this.position); + } + + /** the length of the binary sequence */ + length(): number { + return this.position; + } + + toJSON(): string { + return this.buffer.toString('base64'); + } + + toString(format?: string): string { + return this.buffer.toString(format); + } + + /** @internal */ + toExtendedJSON(options?: EJSONOptions): BinaryExtendedLegacy | BinaryExtended { + options = options || {}; + const base64String = this.buffer.toString('base64'); + + const subType = Number(this.sub_type).toString(16); + if (options.legacy) { + return { + $binary: base64String, + $type: subType.length === 1 ? '0' + subType : subType + }; + } + return { + $binary: { + base64: base64String, + subType: subType.length === 1 ? '0' + subType : subType + } + }; + } + + toUUID(): UUID { + if (this.sub_type === Binary.SUBTYPE_UUID) { + return new UUID(this.buffer.slice(0, this.position)); + } + + throw new BSONError( + `Binary sub_type "${this.sub_type}" is not supported for converting to UUID. Only "${Binary.SUBTYPE_UUID}" is currently supported.` + ); + } + + /** @internal */ + static fromExtendedJSON( + doc: BinaryExtendedLegacy | BinaryExtended | UUIDExtended, + options?: EJSONOptions + ): Binary { + options = options || {}; + let data: Buffer | undefined; + let type; + if ('$binary' in doc) { + if (options.legacy && typeof doc.$binary === 'string' && '$type' in doc) { + type = doc.$type ? parseInt(doc.$type, 16) : 0; + data = Buffer.from(doc.$binary, 'base64'); + } else { + if (typeof doc.$binary !== 'string') { + type = doc.$binary.subType ? parseInt(doc.$binary.subType, 16) : 0; + data = Buffer.from(doc.$binary.base64, 'base64'); + } + } + } else if ('$uuid' in doc) { + type = 4; + data = uuidHexStringToBuffer(doc.$uuid); + } + if (!data) { + throw new BSONTypeError(`Unexpected Binary Extended JSON format ${JSON.stringify(doc)}`); + } + return type === BSON_BINARY_SUBTYPE_UUID_NEW ? new UUID(data) : new Binary(data, type); + } + + /** @internal */ + [Symbol.for('nodejs.util.inspect.custom')](): string { + return this.inspect(); + } + + inspect(): string { + const asBuffer = this.value(true); + return `new Binary(Buffer.from("${asBuffer.toString('hex')}", "hex"), ${this.sub_type})`; + } +} + +Object.defineProperty(Binary.prototype, '_bsontype', { value: 'Binary' }); + +/** @public */ +export type UUIDExtended = { + $uuid: string; +}; +const UUID_BYTE_LENGTH = 16; + +/** + * A class representation of the BSON UUID type. + * @public + */ +export class UUID extends Binary { + static cacheHexString: boolean; + + /** UUID hexString cache @internal */ + private __id?: string; + + /** + * Create an UUID type + * + * @param input - Can be a 32 or 36 character hex string (dashes excluded/included) or a 16 byte binary Buffer. + */ + constructor(input?: string | Buffer | UUID) { + let bytes; + let hexStr; + if (input == null) { + bytes = UUID.generate(); + } else if (input instanceof UUID) { + bytes = Buffer.from(input.buffer); + hexStr = input.__id; + } else if (ArrayBuffer.isView(input) && input.byteLength === UUID_BYTE_LENGTH) { + bytes = ensureBuffer(input); + } else if (typeof input === 'string') { + bytes = uuidHexStringToBuffer(input); + } else { + throw new BSONTypeError( + 'Argument passed in UUID constructor must be a UUID, a 16 byte Buffer or a 32/36 character hex string (dashes excluded/included, format: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx).' + ); + } + super(bytes, BSON_BINARY_SUBTYPE_UUID_NEW); + this.__id = hexStr; + } + + /** + * The UUID bytes + * @readonly + */ + get id(): Buffer { + return this.buffer; + } + + set id(value: Buffer) { + this.buffer = value; + + if (UUID.cacheHexString) { + this.__id = bufferToUuidHexString(value); + } + } + + /** + * Returns the UUID id as a 32 or 36 character hex string representation, excluding/including dashes (defaults to 36 character dash separated) + * @param includeDashes - should the string exclude dash-separators. + * */ + toHexString(includeDashes = true): string { + if (UUID.cacheHexString && this.__id) { + return this.__id; + } + + const uuidHexString = bufferToUuidHexString(this.id, includeDashes); + + if (UUID.cacheHexString) { + this.__id = uuidHexString; + } + + return uuidHexString; + } + + /** + * Converts the id into a 36 character (dashes included) hex string, unless a encoding is specified. + */ + toString(encoding?: string): string { + return encoding ? this.id.toString(encoding) : this.toHexString(); + } + + /** + * Converts the id into its JSON string representation. + * A 36 character (dashes included) hex string in the format: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx + */ + toJSON(): string { + return this.toHexString(); + } + + /** + * Compares the equality of this UUID with `otherID`. + * + * @param otherId - UUID instance to compare against. + */ + equals(otherId: string | Buffer | UUID): boolean { + if (!otherId) { + return false; + } + + if (otherId instanceof UUID) { + return otherId.id.equals(this.id); + } + + try { + return new UUID(otherId).id.equals(this.id); + } catch { + return false; + } + } + + /** + * Creates a Binary instance from the current UUID. + */ + toBinary(): Binary { + return new Binary(this.id, Binary.SUBTYPE_UUID); + } + + /** + * Generates a populated buffer containing a v4 uuid + */ + static generate(): Buffer { + const bytes = randomBytes(UUID_BYTE_LENGTH); + + // Per 4.4, set bits for version and `clock_seq_hi_and_reserved` + // Kindly borrowed from https://github.com/uuidjs/uuid/blob/master/src/v4.js + bytes[6] = (bytes[6] & 0x0f) | 0x40; + bytes[8] = (bytes[8] & 0x3f) | 0x80; + + return Buffer.from(bytes); + } + + /** + * Checks if a value is a valid bson UUID + * @param input - UUID, string or Buffer to validate. + */ + static isValid(input: string | Buffer | UUID): boolean { + if (!input) { + return false; + } + + if (input instanceof UUID) { + return true; + } + + if (typeof input === 'string') { + return uuidValidateString(input); + } + + if (isUint8Array(input)) { + // check for length & uuid version (https://tools.ietf.org/html/rfc4122#section-4.1.3) + if (input.length !== UUID_BYTE_LENGTH) { + return false; + } + + return (input[6] & 0xf0) === 0x40 && (input[8] & 0x80) === 0x80; + } + + return false; + } + + /** + * Creates an UUID from a hex string representation of an UUID. + * @param hexString - 32 or 36 character hex string (dashes excluded/included). + */ + static createFromHexString(hexString: string): UUID { + const buffer = uuidHexStringToBuffer(hexString); + return new UUID(buffer); + } + + /** + * Converts to a string representation of this Id. + * + * @returns return the 36 character hex string representation. + * @internal + */ + [Symbol.for('nodejs.util.inspect.custom')](): string { + return this.inspect(); + } + + inspect(): string { + return `new UUID("${this.toHexString()}")`; + } +} diff --git a/node_modules/bson/src/bson.ts b/node_modules/bson/src/bson.ts new file mode 100644 index 000000000..d32cfe834 --- /dev/null +++ b/node_modules/bson/src/bson.ts @@ -0,0 +1,330 @@ +import { Buffer } from 'buffer'; +import { Binary, UUID } from './binary'; +import { Code } from './code'; +import { DBRef } from './db_ref'; +import { Decimal128 } from './decimal128'; +import { Double } from './double'; +import { ensureBuffer } from './ensure_buffer'; +import { EJSON } from './extended_json'; +import { Int32 } from './int_32'; +import { Long } from './long'; +import { Map } from './map'; +import { MaxKey } from './max_key'; +import { MinKey } from './min_key'; +import { ObjectId } from './objectid'; +import { BSONError, BSONTypeError } from './error'; +import { calculateObjectSize as internalCalculateObjectSize } from './parser/calculate_size'; +// Parts of the parser +import { deserialize as internalDeserialize, DeserializeOptions } from './parser/deserializer'; +import { serializeInto as internalSerialize, SerializeOptions } from './parser/serializer'; +import { BSONRegExp } from './regexp'; +import { BSONSymbol } from './symbol'; +import { Timestamp } from './timestamp'; +export type { UUIDExtended, BinaryExtended, BinaryExtendedLegacy, BinarySequence } from './binary'; +export type { CodeExtended } from './code'; +export { + BSON_BINARY_SUBTYPE_BYTE_ARRAY, + BSON_BINARY_SUBTYPE_DEFAULT, + BSON_BINARY_SUBTYPE_FUNCTION, + BSON_BINARY_SUBTYPE_MD5, + BSON_BINARY_SUBTYPE_USER_DEFINED, + BSON_BINARY_SUBTYPE_UUID, + BSON_BINARY_SUBTYPE_UUID_NEW, + BSON_BINARY_SUBTYPE_ENCRYPTED, + BSON_BINARY_SUBTYPE_COLUMN, + BSON_DATA_ARRAY, + BSON_DATA_BINARY, + BSON_DATA_BOOLEAN, + BSON_DATA_CODE, + BSON_DATA_CODE_W_SCOPE, + BSON_DATA_DATE, + BSON_DATA_DBPOINTER, + BSON_DATA_DECIMAL128, + BSON_DATA_INT, + BSON_DATA_LONG, + BSON_DATA_MAX_KEY, + BSON_DATA_MIN_KEY, + BSON_DATA_NULL, + BSON_DATA_NUMBER, + BSON_DATA_OBJECT, + BSON_DATA_OID, + BSON_DATA_REGEXP, + BSON_DATA_STRING, + BSON_DATA_SYMBOL, + BSON_DATA_TIMESTAMP, + BSON_DATA_UNDEFINED, + BSON_INT32_MAX, + BSON_INT32_MIN, + BSON_INT64_MAX, + BSON_INT64_MIN +} from './constants'; +export type { DBRefLike } from './db_ref'; +export type { Decimal128Extended } from './decimal128'; +export type { DoubleExtended } from './double'; +export type { EJSONOptions } from './extended_json'; +export { EJSON } from './extended_json'; +export type { Int32Extended } from './int_32'; +export type { LongExtended } from './long'; +export type { MaxKeyExtended } from './max_key'; +export type { MinKeyExtended } from './min_key'; +export type { ObjectIdExtended, ObjectIdLike } from './objectid'; +export type { BSONRegExpExtended, BSONRegExpExtendedLegacy } from './regexp'; +export type { BSONSymbolExtended } from './symbol'; +export type { LongWithoutOverrides, TimestampExtended, TimestampOverrides } from './timestamp'; +export { LongWithoutOverridesClass } from './timestamp'; +export type { SerializeOptions, DeserializeOptions }; +export { + Code, + Map, + BSONSymbol, + DBRef, + Binary, + ObjectId, + UUID, + Long, + Timestamp, + Double, + Int32, + MinKey, + MaxKey, + BSONRegExp, + Decimal128, + // In 4.0.0 and 4.0.1, this property name was changed to ObjectId to match the class name. + // This caused interoperability problems with previous versions of the library, so in + // later builds we changed it back to ObjectID (capital D) to match legacy implementations. + ObjectId as ObjectID +}; +export { BSONError, BSONTypeError } from './error'; + +/** @public */ +export interface Document { + // eslint-disable-next-line @typescript-eslint/no-explicit-any + [key: string]: any; +} + +/** @internal */ +// Default Max Size +const MAXSIZE = 1024 * 1024 * 17; + +// Current Internal Temporary Serialization Buffer +let buffer = Buffer.alloc(MAXSIZE); + +/** + * Sets the size of the internal serialization buffer. + * + * @param size - The desired size for the internal serialization buffer + * @public + */ +export function setInternalBufferSize(size: number): void { + // Resize the internal serialization buffer if needed + if (buffer.length < size) { + buffer = Buffer.alloc(size); + } +} + +/** + * Serialize a Javascript object. + * + * @param object - the Javascript object to serialize. + * @returns Buffer object containing the serialized object. + * @public + */ +export function serialize(object: Document, options: SerializeOptions = {}): Buffer { + // Unpack the options + const checkKeys = typeof options.checkKeys === 'boolean' ? options.checkKeys : false; + const serializeFunctions = + typeof options.serializeFunctions === 'boolean' ? options.serializeFunctions : false; + const ignoreUndefined = + typeof options.ignoreUndefined === 'boolean' ? options.ignoreUndefined : true; + const minInternalBufferSize = + typeof options.minInternalBufferSize === 'number' ? options.minInternalBufferSize : MAXSIZE; + + // Resize the internal serialization buffer if needed + if (buffer.length < minInternalBufferSize) { + buffer = Buffer.alloc(minInternalBufferSize); + } + + // Attempt to serialize + const serializationIndex = internalSerialize( + buffer, + object, + checkKeys, + 0, + 0, + serializeFunctions, + ignoreUndefined, + [] + ); + + // Create the final buffer + const finishedBuffer = Buffer.alloc(serializationIndex); + + // Copy into the finished buffer + buffer.copy(finishedBuffer, 0, 0, finishedBuffer.length); + + // Return the buffer + return finishedBuffer; +} + +/** + * Serialize a Javascript object using a predefined Buffer and index into the buffer, + * useful when pre-allocating the space for serialization. + * + * @param object - the Javascript object to serialize. + * @param finalBuffer - the Buffer you pre-allocated to store the serialized BSON object. + * @returns the index pointing to the last written byte in the buffer. + * @public + */ +export function serializeWithBufferAndIndex( + object: Document, + finalBuffer: Buffer, + options: SerializeOptions = {} +): number { + // Unpack the options + const checkKeys = typeof options.checkKeys === 'boolean' ? options.checkKeys : false; + const serializeFunctions = + typeof options.serializeFunctions === 'boolean' ? options.serializeFunctions : false; + const ignoreUndefined = + typeof options.ignoreUndefined === 'boolean' ? options.ignoreUndefined : true; + const startIndex = typeof options.index === 'number' ? options.index : 0; + + // Attempt to serialize + const serializationIndex = internalSerialize( + buffer, + object, + checkKeys, + 0, + 0, + serializeFunctions, + ignoreUndefined + ); + buffer.copy(finalBuffer, startIndex, 0, serializationIndex); + + // Return the index + return startIndex + serializationIndex - 1; +} + +/** + * Deserialize data as BSON. + * + * @param buffer - the buffer containing the serialized set of BSON documents. + * @returns returns the deserialized Javascript Object. + * @public + */ +export function deserialize( + buffer: Buffer | ArrayBufferView | ArrayBuffer, + options: DeserializeOptions = {} +): Document { + return internalDeserialize(buffer instanceof Buffer ? buffer : ensureBuffer(buffer), options); +} + +/** @public */ +export type CalculateObjectSizeOptions = Pick< + SerializeOptions, + 'serializeFunctions' | 'ignoreUndefined' +>; + +/** + * Calculate the bson size for a passed in Javascript object. + * + * @param object - the Javascript object to calculate the BSON byte size for + * @returns size of BSON object in bytes + * @public + */ +export function calculateObjectSize( + object: Document, + options: CalculateObjectSizeOptions = {} +): number { + options = options || {}; + + const serializeFunctions = + typeof options.serializeFunctions === 'boolean' ? options.serializeFunctions : false; + const ignoreUndefined = + typeof options.ignoreUndefined === 'boolean' ? options.ignoreUndefined : true; + + return internalCalculateObjectSize(object, serializeFunctions, ignoreUndefined); +} + +/** + * Deserialize stream data as BSON documents. + * + * @param data - the buffer containing the serialized set of BSON documents. + * @param startIndex - the start index in the data Buffer where the deserialization is to start. + * @param numberOfDocuments - number of documents to deserialize. + * @param documents - an array where to store the deserialized documents. + * @param docStartIndex - the index in the documents array from where to start inserting documents. + * @param options - additional options used for the deserialization. + * @returns next index in the buffer after deserialization **x** numbers of documents. + * @public + */ +export function deserializeStream( + data: Buffer | ArrayBufferView | ArrayBuffer, + startIndex: number, + numberOfDocuments: number, + documents: Document[], + docStartIndex: number, + options: DeserializeOptions +): number { + const internalOptions = Object.assign( + { allowObjectSmallerThanBufferSize: true, index: 0 }, + options + ); + const bufferData = ensureBuffer(data); + + let index = startIndex; + // Loop over all documents + for (let i = 0; i < numberOfDocuments; i++) { + // Find size of the document + const size = + bufferData[index] | + (bufferData[index + 1] << 8) | + (bufferData[index + 2] << 16) | + (bufferData[index + 3] << 24); + // Update options with index + internalOptions.index = index; + // Parse the document at this point + documents[docStartIndex + i] = internalDeserialize(bufferData, internalOptions); + // Adjust index by the document size + index = index + size; + } + + // Return object containing end index of parsing and list of documents + return index; +} + +/** + * BSON default export + * @deprecated Please use named exports + * @privateRemarks + * We want to someday deprecate the default export, + * so none of the new TS types are being exported on the default + * @public + */ +const BSON = { + Binary, + Code, + DBRef, + Decimal128, + Double, + Int32, + Long, + UUID, + Map, + MaxKey, + MinKey, + ObjectId, + ObjectID: ObjectId, + BSONRegExp, + BSONSymbol, + Timestamp, + EJSON, + setInternalBufferSize, + serialize, + serializeWithBufferAndIndex, + deserialize, + calculateObjectSize, + deserializeStream, + BSONError, + BSONTypeError +}; +export default BSON; diff --git a/node_modules/bson/src/code.ts b/node_modules/bson/src/code.ts new file mode 100644 index 000000000..86a4fb19c --- /dev/null +++ b/node_modules/bson/src/code.ts @@ -0,0 +1,61 @@ +import type { Document } from './bson'; + +/** @public */ +export interface CodeExtended { + $code: string | Function; + $scope?: Document; +} + +/** + * A class representation of the BSON Code type. + * @public + * @category BSONType + */ +export class Code { + _bsontype!: 'Code'; + + code!: string | Function; + scope?: Document; + /** + * @param code - a string or function. + * @param scope - an optional scope for the function. + */ + constructor(code: string | Function, scope?: Document) { + if (!(this instanceof Code)) return new Code(code, scope); + + this.code = code; + this.scope = scope; + } + + toJSON(): { code: string | Function; scope?: Document } { + return { code: this.code, scope: this.scope }; + } + + /** @internal */ + toExtendedJSON(): CodeExtended { + if (this.scope) { + return { $code: this.code, $scope: this.scope }; + } + + return { $code: this.code }; + } + + /** @internal */ + static fromExtendedJSON(doc: CodeExtended): Code { + return new Code(doc.$code, doc.$scope); + } + + /** @internal */ + [Symbol.for('nodejs.util.inspect.custom')](): string { + return this.inspect(); + } + + inspect(): string { + const codeJson = this.toJSON(); + return `new Code("${String(codeJson.code)}"${ + codeJson.scope ? `, ${JSON.stringify(codeJson.scope)}` : '' + })`; + } +} + +Object.defineProperty(Code.prototype, '_bsontype', { value: 'Code' }); diff --git a/node_modules/bson/src/constants.ts b/node_modules/bson/src/constants.ts new file mode 100644 index 000000000..6af63e694 --- /dev/null +++ b/node_modules/bson/src/constants.ts @@ -0,0 +1,110 @@ +/** @internal */ +export const BSON_INT32_MAX = 0x7fffffff; +/** @internal */ +export const BSON_INT32_MIN = -0x80000000; +/** @internal */ +export const BSON_INT64_MAX = Math.pow(2, 63) - 1; +/** @internal */ +export const BSON_INT64_MIN = -Math.pow(2, 63); + +/** + * Any integer up to 2^53 can be precisely represented by a double. + * @internal + */ +export const JS_INT_MAX = Math.pow(2, 53); + +/** + * Any integer down to -2^53 can be precisely represented by a double. + * @internal + */ +export const JS_INT_MIN = -Math.pow(2, 53); + +/** Number BSON Type @internal */ +export const BSON_DATA_NUMBER = 1; + +/** String BSON Type @internal */ +export const BSON_DATA_STRING = 2; + +/** Object BSON Type @internal */ +export const BSON_DATA_OBJECT = 3; + +/** Array BSON Type @internal */ +export const BSON_DATA_ARRAY = 4; + +/** Binary BSON Type @internal */ +export const BSON_DATA_BINARY = 5; + +/** Binary BSON Type @internal */ +export const BSON_DATA_UNDEFINED = 6; + +/** ObjectId BSON Type @internal */ +export const BSON_DATA_OID = 7; + +/** Boolean BSON Type @internal */ +export const BSON_DATA_BOOLEAN = 8; + +/** Date BSON Type @internal */ +export const BSON_DATA_DATE = 9; + +/** null BSON Type @internal */ +export const BSON_DATA_NULL = 10; + +/** RegExp BSON Type @internal */ +export const BSON_DATA_REGEXP = 11; + +/** Code BSON Type @internal */ +export const BSON_DATA_DBPOINTER = 12; + +/** Code BSON Type @internal */ +export const BSON_DATA_CODE = 13; + +/** Symbol BSON Type @internal */ +export const BSON_DATA_SYMBOL = 14; + +/** Code with Scope BSON Type @internal */ +export const BSON_DATA_CODE_W_SCOPE = 15; + +/** 32 bit Integer BSON Type @internal */ +export const BSON_DATA_INT = 16; + +/** Timestamp BSON Type @internal */ +export const BSON_DATA_TIMESTAMP = 17; + +/** Long BSON Type @internal */ +export const BSON_DATA_LONG = 18; + +/** Decimal128 BSON Type @internal */ +export const BSON_DATA_DECIMAL128 = 19; + +/** MinKey BSON Type @internal */ +export const BSON_DATA_MIN_KEY = 0xff; + +/** MaxKey BSON Type @internal */ +export const BSON_DATA_MAX_KEY = 0x7f; + +/** Binary Default Type @internal */ +export const BSON_BINARY_SUBTYPE_DEFAULT = 0; + +/** Binary Function Type @internal */ +export const BSON_BINARY_SUBTYPE_FUNCTION = 1; + +/** Binary Byte Array Type @internal */ +export const BSON_BINARY_SUBTYPE_BYTE_ARRAY = 2; + +/** Binary Deprecated UUID Type @deprecated Please use BSON_BINARY_SUBTYPE_UUID_NEW @internal */ +export const BSON_BINARY_SUBTYPE_UUID = 3; + +/** Binary UUID Type @internal */ +export const BSON_BINARY_SUBTYPE_UUID_NEW = 4; + +/** Binary MD5 Type @internal */ +export const BSON_BINARY_SUBTYPE_MD5 = 5; + +/** Encrypted BSON type @internal */ +export const BSON_BINARY_SUBTYPE_ENCRYPTED = 6; + +/** Column BSON type @internal */ +export const BSON_BINARY_SUBTYPE_COLUMN = 7; + +/** Binary User Defined Type @internal */ +export const BSON_BINARY_SUBTYPE_USER_DEFINED = 128; diff --git a/node_modules/bson/src/db_ref.ts b/node_modules/bson/src/db_ref.ts new file mode 100644 index 000000000..750c5be93 --- /dev/null +++ b/node_modules/bson/src/db_ref.ts @@ -0,0 +1,124 @@ +import type { Document } from './bson'; +import type { EJSONOptions } from './extended_json'; +import type { ObjectId } from './objectid'; +import { isObjectLike } from './parser/utils'; + +/** @public */ +export interface DBRefLike { + $ref: string; + $id: ObjectId; + $db?: string; +} + +/** @internal */ +export function isDBRefLike(value: unknown): value is DBRefLike { + return ( + isObjectLike(value) && + value.$id != null && + typeof value.$ref === 'string' && + (value.$db == null || typeof value.$db === 'string') + ); +} + +/** + * A class representation of the BSON DBRef type. + * @public + * @category BSONType + */ +export class DBRef { + _bsontype!: 'DBRef'; + + collection!: string; + oid!: ObjectId; + db?: string; + fields!: Document; + + /** + * @param collection - the collection name. + * @param oid - the reference ObjectId. + * @param db - optional db name, if omitted the reference is local to the current db. + */ + constructor(collection: string, oid: ObjectId, db?: string, fields?: Document) { + if (!(this instanceof DBRef)) return new DBRef(collection, oid, db, fields); + + // check if namespace has been provided + const parts = collection.split('.'); + if (parts.length === 2) { + db = parts.shift(); + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + collection = parts.shift()!; + } + + this.collection = collection; + this.oid = oid; + this.db = db; + this.fields = fields || {}; + } + + // Property provided for compatibility with the 1.x parser + // the 1.x parser used a "namespace" property, while 4.x uses "collection" + + /** @internal */ + get namespace(): string { + return this.collection; + } + + set namespace(value: string) { + this.collection = value; + } + + toJSON(): DBRefLike & Document { + const o = Object.assign( + { + $ref: this.collection, + $id: this.oid + }, + this.fields + ); + + if (this.db != null) o.$db = this.db; + return o; + } + + /** @internal */ + toExtendedJSON(options?: EJSONOptions): DBRefLike { + options = options || {}; + let o: DBRefLike = { + $ref: this.collection, + $id: this.oid + }; + + if (options.legacy) { + return o; + } + + if (this.db) o.$db = this.db; + o = Object.assign(o, this.fields); + return o; + } + + /** @internal */ + static fromExtendedJSON(doc: DBRefLike): DBRef { + const copy = Object.assign({}, doc) as Partial; + delete copy.$ref; + delete copy.$id; + delete copy.$db; + return new DBRef(doc.$ref, doc.$id, doc.$db, copy); + } + + /** @internal */ + [Symbol.for('nodejs.util.inspect.custom')](): string { + return this.inspect(); + } + + inspect(): string { + // NOTE: if OID is an ObjectId class it will just print the oid string. + const oid = + this.oid === undefined || this.oid.toString === undefined ? this.oid : this.oid.toString(); + return `new DBRef("${this.namespace}", new ObjectId("${String(oid)}")${ + this.db ? `, "${this.db}"` : '' + })`; + } +} + +Object.defineProperty(DBRef.prototype, '_bsontype', { value: 'DBRef' }); diff --git a/node_modules/bson/src/decimal128.ts b/node_modules/bson/src/decimal128.ts new file mode 100644 index 000000000..875998648 --- /dev/null +++ b/node_modules/bson/src/decimal128.ts @@ -0,0 +1,773 @@ +import { Buffer } from 'buffer'; +import { BSONTypeError } from './error'; +import { Long } from './long'; +import { isUint8Array } from './parser/utils'; + +const PARSE_STRING_REGEXP = /^(\+|-)?(\d+|(\d*\.\d*))?(E|e)?([-+])?(\d+)?$/; +const PARSE_INF_REGEXP = /^(\+|-)?(Infinity|inf)$/i; +const PARSE_NAN_REGEXP = /^(\+|-)?NaN$/i; + +const EXPONENT_MAX = 6111; +const EXPONENT_MIN = -6176; +const EXPONENT_BIAS = 6176; +const MAX_DIGITS = 34; + +// Nan value bits as 32 bit values (due to lack of longs) +const NAN_BUFFER = [ + 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 +].reverse(); +// Infinity value bits 32 bit values (due to lack of longs) +const INF_NEGATIVE_BUFFER = [ + 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 +].reverse(); +const INF_POSITIVE_BUFFER = [ + 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 +].reverse(); + +const EXPONENT_REGEX = /^([-+])?(\d+)?$/; + +// Extract least significant 5 bits +const COMBINATION_MASK = 0x1f; +// Extract least significant 14 bits +const EXPONENT_MASK = 0x3fff; +// Value of combination field for Inf +const COMBINATION_INFINITY = 30; +// Value of combination field for NaN +const COMBINATION_NAN = 31; + +// Detect if the value is a digit +function isDigit(value: string): boolean { + return !isNaN(parseInt(value, 10)); +} + +// Divide two uint128 values +function divideu128(value: { parts: [number, number, number, number] }) { + const DIVISOR = Long.fromNumber(1000 * 1000 * 1000); + let _rem = Long.fromNumber(0); + + if (!value.parts[0] && !value.parts[1] && !value.parts[2] && !value.parts[3]) { + return { quotient: value, rem: _rem }; + } + + for (let i = 0; i <= 3; i++) { + // Adjust remainder to match value of next dividend + _rem = _rem.shiftLeft(32); + // Add the divided to _rem + _rem = _rem.add(new Long(value.parts[i], 0)); + value.parts[i] = _rem.div(DIVISOR).low; + _rem = _rem.modulo(DIVISOR); + } + + return { quotient: value, rem: _rem }; +} + +// Multiply two Long values and return the 128 bit value +function multiply64x2(left: Long, right: Long): { high: Long; low: Long } { + if (!left && !right) { + return { high: Long.fromNumber(0), low: Long.fromNumber(0) }; + } + + const leftHigh = left.shiftRightUnsigned(32); + const leftLow = new Long(left.getLowBits(), 0); + const rightHigh = right.shiftRightUnsigned(32); + const rightLow = new Long(right.getLowBits(), 0); + + let productHigh = leftHigh.multiply(rightHigh); + let productMid = leftHigh.multiply(rightLow); + const productMid2 = leftLow.multiply(rightHigh); + let productLow = leftLow.multiply(rightLow); + + productHigh = productHigh.add(productMid.shiftRightUnsigned(32)); + productMid = new Long(productMid.getLowBits(), 0) + .add(productMid2) + .add(productLow.shiftRightUnsigned(32)); + + productHigh = productHigh.add(productMid.shiftRightUnsigned(32)); + productLow = productMid.shiftLeft(32).add(new Long(productLow.getLowBits(), 0)); + + // Return the 128 bit result + return { high: productHigh, low: productLow }; +} + +function lessThan(left: Long, right: Long): boolean { + // Make values unsigned + const uhleft = left.high >>> 0; + const uhright = right.high >>> 0; + + // Compare high bits first + if (uhleft < uhright) { + return true; + } else if (uhleft === uhright) { + const ulleft = left.low >>> 0; + const ulright = right.low >>> 0; + if (ulleft < ulright) return true; + } + + return false; +} + +function invalidErr(string: string, message: string) { + throw new BSONTypeError(`"${string}" is not a valid Decimal128 string - ${message}`); +} + +/** @public */ +export interface Decimal128Extended { + $numberDecimal: string; +} + +/** + * A class representation of the BSON Decimal128 type. + * @public + * @category BSONType + */ +export class Decimal128 { + _bsontype!: 'Decimal128'; + + readonly bytes!: Buffer; + + /** + * @param bytes - a buffer containing the raw Decimal128 bytes in little endian order, + * or a string representation as returned by .toString() + */ + constructor(bytes: Buffer | string) { + if (!(this instanceof Decimal128)) return new Decimal128(bytes); + + if (typeof bytes === 'string') { + this.bytes = Decimal128.fromString(bytes).bytes; + } else if (isUint8Array(bytes)) { + if (bytes.byteLength !== 16) { + throw new BSONTypeError('Decimal128 must take a Buffer of 16 bytes'); + } + this.bytes = bytes; + } else { + throw new BSONTypeError('Decimal128 must take a Buffer or string'); + } + } + + /** + * Create a Decimal128 instance from a string representation + * + * @param representation - a numeric string representation. + */ + static fromString(representation: string): Decimal128 { + // Parse state tracking + let isNegative = false; + let sawRadix = false; + let foundNonZero = false; + + // Total number of significant digits (no leading or trailing zero) + let significantDigits = 0; + // Total number of significand digits read + let nDigitsRead = 0; + // Total number of digits (no leading zeros) + let nDigits = 0; + // The number of the digits after radix + let radixPosition = 0; + // The index of the first non-zero in *str* + let firstNonZero = 0; + + // Digits Array + const digits = [0]; + // The number of digits in digits + let nDigitsStored = 0; + // Insertion pointer for digits + let digitsInsert = 0; + // The index of the first non-zero digit + let firstDigit = 0; + // The index of the last digit + let lastDigit = 0; + + // Exponent + let exponent = 0; + // loop index over array + let i = 0; + // The high 17 digits of the significand + let significandHigh = new Long(0, 0); + // The low 17 digits of the significand + let significandLow = new Long(0, 0); + // The biased exponent + let biasedExponent = 0; + + // Read index + let index = 0; + + // Naively prevent against REDOS attacks. + // TODO: implementing a custom parsing for this, or refactoring the regex would yield + // further gains. + if (representation.length >= 7000) { + throw new BSONTypeError('' + representation + ' not a valid Decimal128 string'); + } + + // Results + const stringMatch = representation.match(PARSE_STRING_REGEXP); + const infMatch = representation.match(PARSE_INF_REGEXP); + const nanMatch = representation.match(PARSE_NAN_REGEXP); + + // Validate the string + if ((!stringMatch && !infMatch && !nanMatch) || representation.length === 0) { + throw new BSONTypeError('' + representation + ' not a valid Decimal128 string'); + } + + if (stringMatch) { + // full_match = stringMatch[0] + // sign = stringMatch[1] + + const unsignedNumber = stringMatch[2]; + // stringMatch[3] is undefined if a whole number (ex "1", 12") + // but defined if a number w/ decimal in it (ex "1.0, 12.2") + + const e = stringMatch[4]; + const expSign = stringMatch[5]; + const expNumber = stringMatch[6]; + + // they provided e, but didn't give an exponent number. for ex "1e" + if (e && expNumber === undefined) invalidErr(representation, 'missing exponent power'); + + // they provided e, but didn't give a number before it. for ex "e1" + if (e && unsignedNumber === undefined) invalidErr(representation, 'missing exponent base'); + + if (e === undefined && (expSign || expNumber)) { + invalidErr(representation, 'missing e before exponent'); + } + } + + // Get the negative or positive sign + if (representation[index] === '+' || representation[index] === '-') { + isNegative = representation[index++] === '-'; + } + + // Check if user passed Infinity or NaN + if (!isDigit(representation[index]) && representation[index] !== '.') { + if (representation[index] === 'i' || representation[index] === 'I') { + return new Decimal128(Buffer.from(isNegative ? INF_NEGATIVE_BUFFER : INF_POSITIVE_BUFFER)); + } else if (representation[index] === 'N') { + return new Decimal128(Buffer.from(NAN_BUFFER)); + } + } + + // Read all the digits + while (isDigit(representation[index]) || representation[index] === '.') { + if (representation[index] === '.') { + if (sawRadix) invalidErr(representation, 'contains multiple periods'); + + sawRadix = true; + index = index + 1; + continue; + } + + if (nDigitsStored < 34) { + if (representation[index] !== '0' || foundNonZero) { + if (!foundNonZero) { + firstNonZero = nDigitsRead; + } + + foundNonZero = true; + + // Only store 34 digits + digits[digitsInsert++] = parseInt(representation[index], 10); + nDigitsStored = nDigitsStored + 1; + } + } + + if (foundNonZero) nDigits = nDigits + 1; + if (sawRadix) radixPosition = radixPosition + 1; + + nDigitsRead = nDigitsRead + 1; + index = index + 1; + } + + if (sawRadix && !nDigitsRead) + throw new BSONTypeError('' + representation + ' not a valid Decimal128 string'); + + // Read exponent if exists + if (representation[index] === 'e' || representation[index] === 'E') { + // Read exponent digits + const match = representation.substr(++index).match(EXPONENT_REGEX); + + // No digits read + if (!match || !match[2]) return new Decimal128(Buffer.from(NAN_BUFFER)); + + // Get exponent + exponent = parseInt(match[0], 10); + + // Adjust the index + index = index + match[0].length; + } + + // Return not a number + if (representation[index]) return new Decimal128(Buffer.from(NAN_BUFFER)); + + // Done reading input + // Find first non-zero digit in digits + firstDigit = 0; + + if (!nDigitsStored) { + firstDigit = 0; + lastDigit = 0; + digits[0] = 0; + nDigits = 1; + nDigitsStored = 1; + significantDigits = 0; + } else { + lastDigit = nDigitsStored - 1; + significantDigits = nDigits; + if (significantDigits !== 1) { + while (digits[firstNonZero + significantDigits - 1] === 0) { + significantDigits = significantDigits - 1; + } + } + } + + // Normalization of exponent + // Correct exponent based on radix position, and shift significand as needed + // to represent user input + + // Overflow prevention + if (exponent <= radixPosition && radixPosition - exponent > 1 << 14) { + exponent = EXPONENT_MIN; + } else { + exponent = exponent - radixPosition; + } + + // Attempt to normalize the exponent + while (exponent > EXPONENT_MAX) { + // Shift exponent to significand and decrease + lastDigit = lastDigit + 1; + + if (lastDigit - firstDigit > MAX_DIGITS) { + // Check if we have a zero then just hard clamp, otherwise fail + const digitsString = digits.join(''); + if (digitsString.match(/^0+$/)) { + exponent = EXPONENT_MAX; + break; + } + + invalidErr(representation, 'overflow'); + } + exponent = exponent - 1; + } + + while (exponent < EXPONENT_MIN || nDigitsStored < nDigits) { + // Shift last digit. can only do this if < significant digits than # stored. + if (lastDigit === 0 && significantDigits < nDigitsStored) { + exponent = EXPONENT_MIN; + significantDigits = 0; + break; + } + + if (nDigitsStored < nDigits) { + // adjust to match digits not stored + nDigits = nDigits - 1; + } else { + // adjust to round + lastDigit = lastDigit - 1; + } + + if (exponent < EXPONENT_MAX) { + exponent = exponent + 1; + } else { + // Check if we have a zero then just hard clamp, otherwise fail + const digitsString = digits.join(''); + if (digitsString.match(/^0+$/)) { + exponent = EXPONENT_MAX; + break; + } + invalidErr(representation, 'overflow'); + } + } + + // Round + // We've normalized the exponent, but might still need to round. + if (lastDigit - firstDigit + 1 < significantDigits) { + let endOfString = nDigitsRead; + + // If we have seen a radix point, 'string' is 1 longer than we have + // documented with ndigits_read, so inc the position of the first nonzero + // digit and the position that digits are read to. + if (sawRadix) { + firstNonZero = firstNonZero + 1; + endOfString = endOfString + 1; + } + // if negative, we need to increment again to account for - sign at start. + if (isNegative) { + firstNonZero = firstNonZero + 1; + endOfString = endOfString + 1; + } + + const roundDigit = parseInt(representation[firstNonZero + lastDigit + 1], 10); + let roundBit = 0; + + if (roundDigit >= 5) { + roundBit = 1; + if (roundDigit === 5) { + roundBit = digits[lastDigit] % 2 === 1 ? 1 : 0; + for (i = firstNonZero + lastDigit + 2; i < endOfString; i++) { + if (parseInt(representation[i], 10)) { + roundBit = 1; + break; + } + } + } + } + + if (roundBit) { + let dIdx = lastDigit; + + for (; dIdx >= 0; dIdx--) { + if (++digits[dIdx] > 9) { + digits[dIdx] = 0; + + // overflowed most significant digit + if (dIdx === 0) { + if (exponent < EXPONENT_MAX) { + exponent = exponent + 1; + digits[dIdx] = 1; + } else { + return new Decimal128( + Buffer.from(isNegative ? INF_NEGATIVE_BUFFER : INF_POSITIVE_BUFFER) + ); + } + } + } + } + } + } + + // Encode significand + // The high 17 digits of the significand + significandHigh = Long.fromNumber(0); + // The low 17 digits of the significand + significandLow = Long.fromNumber(0); + + // read a zero + if (significantDigits === 0) { + significandHigh = Long.fromNumber(0); + significandLow = Long.fromNumber(0); + } else if (lastDigit - firstDigit < 17) { + let dIdx = firstDigit; + significandLow = Long.fromNumber(digits[dIdx++]); + significandHigh = new Long(0, 0); + + for (; dIdx <= lastDigit; dIdx++) { + significandLow = significandLow.multiply(Long.fromNumber(10)); + significandLow = significandLow.add(Long.fromNumber(digits[dIdx])); + } + } else { + let dIdx = firstDigit; + significandHigh = Long.fromNumber(digits[dIdx++]); + + for (; dIdx <= lastDigit - 17; dIdx++) { + significandHigh = significandHigh.multiply(Long.fromNumber(10)); + significandHigh = significandHigh.add(Long.fromNumber(digits[dIdx])); + } + + significandLow = Long.fromNumber(digits[dIdx++]); + + for (; dIdx <= lastDigit; dIdx++) { + significandLow = significandLow.multiply(Long.fromNumber(10)); + significandLow = significandLow.add(Long.fromNumber(digits[dIdx])); + } + } + + const significand = multiply64x2(significandHigh, Long.fromString('100000000000000000')); + significand.low = significand.low.add(significandLow); + + if (lessThan(significand.low, significandLow)) { + significand.high = significand.high.add(Long.fromNumber(1)); + } + + // Biased exponent + biasedExponent = exponent + EXPONENT_BIAS; + const dec = { low: Long.fromNumber(0), high: Long.fromNumber(0) }; + + // Encode combination, exponent, and significand. + if ( + significand.high.shiftRightUnsigned(49).and(Long.fromNumber(1)).equals(Long.fromNumber(1)) + ) { + // Encode '11' into bits 1 to 3 + dec.high = dec.high.or(Long.fromNumber(0x3).shiftLeft(61)); + dec.high = dec.high.or( + Long.fromNumber(biasedExponent).and(Long.fromNumber(0x3fff).shiftLeft(47)) + ); + dec.high = dec.high.or(significand.high.and(Long.fromNumber(0x7fffffffffff))); + } else { + dec.high = dec.high.or(Long.fromNumber(biasedExponent & 0x3fff).shiftLeft(49)); + dec.high = dec.high.or(significand.high.and(Long.fromNumber(0x1ffffffffffff))); + } + + dec.low = significand.low; + + // Encode sign + if (isNegative) { + dec.high = dec.high.or(Long.fromString('9223372036854775808')); + } + + // Encode into a buffer + const buffer = Buffer.alloc(16); + index = 0; + + // Encode the low 64 bits of the decimal + // Encode low bits + buffer[index++] = dec.low.low & 0xff; + buffer[index++] = (dec.low.low >> 8) & 0xff; + buffer[index++] = (dec.low.low >> 16) & 0xff; + buffer[index++] = (dec.low.low >> 24) & 0xff; + // Encode high bits + buffer[index++] = dec.low.high & 0xff; + buffer[index++] = (dec.low.high >> 8) & 0xff; + buffer[index++] = (dec.low.high >> 16) & 0xff; + buffer[index++] = (dec.low.high >> 24) & 0xff; + + // Encode the high 64 bits of the decimal + // Encode low bits + buffer[index++] = dec.high.low & 0xff; + buffer[index++] = (dec.high.low >> 8) & 0xff; + buffer[index++] = (dec.high.low >> 16) & 0xff; + buffer[index++] = (dec.high.low >> 24) & 0xff; + // Encode high bits + buffer[index++] = dec.high.high & 0xff; + buffer[index++] = (dec.high.high >> 8) & 0xff; + buffer[index++] = (dec.high.high >> 16) & 0xff; + buffer[index++] = (dec.high.high >> 24) & 0xff; + + // Return the new Decimal128 + return new Decimal128(buffer); + } + + /** Create a string representation of the raw Decimal128 value */ + toString(): string { + // Note: bits in this routine are referred to starting at 0, + // from the sign bit, towards the coefficient. + + // decoded biased exponent (14 bits) + let biased_exponent; + // the number of significand digits + let significand_digits = 0; + // the base-10 digits in the significand + const significand = new Array(36); + for (let i = 0; i < significand.length; i++) significand[i] = 0; + // read pointer into significand + let index = 0; + + // true if the number is zero + let is_zero = false; + + // the most significant significand bits (50-46) + let significand_msb; + // temporary storage for significand decoding + let significand128: { parts: [number, number, number, number] } = { parts: [0, 0, 0, 0] }; + // indexing variables + let j, k; + + // Output string + const string: string[] = []; + + // Unpack index + index = 0; + + // Buffer reference + const buffer = this.bytes; + + // Unpack the low 64bits into a long + // bits 96 - 127 + const low = + buffer[index++] | (buffer[index++] << 8) | (buffer[index++] << 16) | (buffer[index++] << 24); + // bits 64 - 95 + const midl = + buffer[index++] | (buffer[index++] << 8) | (buffer[index++] << 16) | (buffer[index++] << 24); + + // Unpack the high 64bits into a long + // bits 32 - 63 + const midh = + buffer[index++] | (buffer[index++] << 8) | (buffer[index++] << 16) | (buffer[index++] << 24); + // bits 0 - 31 + const high = + buffer[index++] | (buffer[index++] << 8) | (buffer[index++] << 16) | (buffer[index++] << 24); + + // Unpack index + index = 0; + + // Create the state of the decimal + const dec = { + low: new Long(low, midl), + high: new Long(midh, high) + }; + + if (dec.high.lessThan(Long.ZERO)) { + string.push('-'); + } + + // Decode combination field and exponent + // bits 1 - 5 + const combination = (high >> 26) & COMBINATION_MASK; + + if (combination >> 3 === 3) { + // Check for 'special' values + if (combination === COMBINATION_INFINITY) { + return string.join('') + 'Infinity'; + } else if (combination === COMBINATION_NAN) { + return 'NaN'; + } else { + biased_exponent = (high >> 15) & EXPONENT_MASK; + significand_msb = 0x08 + ((high >> 14) & 0x01); + } + } else { + significand_msb = (high >> 14) & 0x07; + biased_exponent = (high >> 17) & EXPONENT_MASK; + } + + // unbiased exponent + const exponent = biased_exponent - EXPONENT_BIAS; + + // Create string of significand digits + + // Convert the 114-bit binary number represented by + // (significand_high, significand_low) to at most 34 decimal + // digits through modulo and division. + significand128.parts[0] = (high & 0x3fff) + ((significand_msb & 0xf) << 14); + significand128.parts[1] = midh; + significand128.parts[2] = midl; + significand128.parts[3] = low; + + if ( + significand128.parts[0] === 0 && + significand128.parts[1] === 0 && + significand128.parts[2] === 0 && + significand128.parts[3] === 0 + ) { + is_zero = true; + } else { + for (k = 3; k >= 0; k--) { + let least_digits = 0; + // Perform the divide + const result = divideu128(significand128); + significand128 = result.quotient; + least_digits = result.rem.low; + + // We now have the 9 least significant digits (in base 2). + // Convert and output to string. + if (!least_digits) continue; + + for (j = 8; j >= 0; j--) { + // significand[k * 9 + j] = Math.round(least_digits % 10); + significand[k * 9 + j] = least_digits % 10; + // least_digits = Math.round(least_digits / 10); + least_digits = Math.floor(least_digits / 10); + } + } + } + + // Output format options: + // Scientific - [-]d.dddE(+/-)dd or [-]dE(+/-)dd + // Regular - ddd.ddd + + if (is_zero) { + significand_digits = 1; + significand[index] = 0; + } else { + significand_digits = 36; + while (!significand[index]) { + significand_digits = significand_digits - 1; + index = index + 1; + } + } + + // the exponent if scientific notation is used + const scientific_exponent = significand_digits - 1 + exponent; + + // The scientific exponent checks are dictated by the string conversion + // specification and are somewhat arbitrary cutoffs. + // + // We must check exponent > 0, because if this is the case, the number + // has trailing zeros. However, we *cannot* output these trailing zeros, + // because doing so would change the precision of the value, and would + // change stored data if the string converted number is round tripped. + if (scientific_exponent >= 34 || scientific_exponent <= -7 || exponent > 0) { + // Scientific format + + // if there are too many significant digits, we should just be treating numbers + // as + or - 0 and using the non-scientific exponent (this is for the "invalid + // representation should be treated as 0/-0" spec cases in decimal128-1.json) + if (significand_digits > 34) { + string.push(`${0}`); + if (exponent > 0) string.push(`E+${exponent}`); + else if (exponent < 0) string.push(`E${exponent}`); + return string.join(''); + } + + string.push(`${significand[index++]}`); + significand_digits = significand_digits - 1; + + if (significand_digits) { + string.push('.'); + } + + for (let i = 0; i < significand_digits; i++) { + string.push(`${significand[index++]}`); + } + + // Exponent + string.push('E'); + if (scientific_exponent > 0) { + string.push(`+${scientific_exponent}`); + } else { + string.push(`${scientific_exponent}`); + } + } else { + // Regular format with no decimal place + if (exponent >= 0) { + for (let i = 0; i < significand_digits; i++) { + string.push(`${significand[index++]}`); + } + } else { + let radix_position = significand_digits + exponent; + + // non-zero digits before radix + if (radix_position > 0) { + for (let i = 0; i < radix_position; i++) { + string.push(`${significand[index++]}`); + } + } else { + string.push('0'); + } + + string.push('.'); + // add leading zeros after radix + while (radix_position++ < 0) { + string.push('0'); + } + + for (let i = 0; i < significand_digits - Math.max(radix_position - 1, 0); i++) { + string.push(`${significand[index++]}`); + } + } + } + + return string.join(''); + } + + toJSON(): Decimal128Extended { + return { $numberDecimal: this.toString() }; + } + + /** @internal */ + toExtendedJSON(): Decimal128Extended { + return { $numberDecimal: this.toString() }; + } + + /** @internal */ + static fromExtendedJSON(doc: Decimal128Extended): Decimal128 { + return Decimal128.fromString(doc.$numberDecimal); + } + + /** @internal */ + [Symbol.for('nodejs.util.inspect.custom')](): string { + return this.inspect(); + } + + inspect(): string { + return `new Decimal128("${this.toString()}")`; + } +} + +Object.defineProperty(Decimal128.prototype, '_bsontype', { value: 'Decimal128' }); diff --git a/node_modules/bson/src/double.ts b/node_modules/bson/src/double.ts new file mode 100644 index 000000000..51bbf22d7 --- /dev/null +++ b/node_modules/bson/src/double.ts @@ -0,0 +1,91 @@ +import type { EJSONOptions } from './extended_json'; + +/** @public */ +export interface DoubleExtended { + $numberDouble: string; +} + +/** + * A class representation of the BSON Double type. + * @public + * @category BSONType + */ +export class Double { + _bsontype!: 'Double'; + + value!: number; + /** + * Create a Double type + * + * @param value - the number we want to represent as a double. + */ + constructor(value: number) { + if (!(this instanceof Double)) return new Double(value); + + if ((value as unknown) instanceof Number) { + value = value.valueOf(); + } + + this.value = +value; + } + + /** + * Access the number value. + * + * @returns returns the wrapped double number. + */ + valueOf(): number { + return this.value; + } + + toJSON(): number { + return this.value; + } + + toString(radix?: number): string { + return this.value.toString(radix); + } + + /** @internal */ + toExtendedJSON(options?: EJSONOptions): number | DoubleExtended { + if (options && (options.legacy || (options.relaxed && isFinite(this.value)))) { + return this.value; + } + + // NOTE: JavaScript has +0 and -0, apparently to model limit calculations. If a user + // explicitly provided `-0` then we need to ensure the sign makes it into the output + if (Object.is(Math.sign(this.value), -0)) { + return { $numberDouble: `-${this.value.toFixed(1)}` }; + } + + let $numberDouble: string; + if (Number.isInteger(this.value)) { + $numberDouble = this.value.toFixed(1); + if ($numberDouble.length >= 13) { + $numberDouble = this.value.toExponential(13).toUpperCase(); + } + } else { + $numberDouble = this.value.toString(); + } + + return { $numberDouble }; + } + + /** @internal */ + static fromExtendedJSON(doc: DoubleExtended, options?: EJSONOptions): number | Double { + const doubleValue = parseFloat(doc.$numberDouble); + return options && options.relaxed ? doubleValue : new Double(doubleValue); + } + + /** @internal */ + [Symbol.for('nodejs.util.inspect.custom')](): string { + return this.inspect(); + } + + inspect(): string { + const eJSON = this.toExtendedJSON() as DoubleExtended; + return `new Double(${eJSON.$numberDouble})`; + } +} + +Object.defineProperty(Double.prototype, '_bsontype', { value: 'Double' }); diff --git a/node_modules/bson/src/ensure_buffer.ts b/node_modules/bson/src/ensure_buffer.ts new file mode 100644 index 000000000..8b82a085e --- /dev/null +++ b/node_modules/bson/src/ensure_buffer.ts @@ -0,0 +1,27 @@ +import { Buffer } from 'buffer'; +import { BSONTypeError } from './error'; +import { isAnyArrayBuffer } from './parser/utils'; + +/** + * Makes sure that, if a Uint8Array is passed in, it is wrapped in a Buffer. + * + * @param potentialBuffer - The potential buffer + * @returns Buffer the input if potentialBuffer is a buffer, or a buffer that + * wraps a passed in Uint8Array + * @throws BSONTypeError If anything other than a Buffer or Uint8Array is passed in + */ +export function ensureBuffer(potentialBuffer: Buffer | ArrayBufferView | ArrayBuffer): Buffer { + if (ArrayBuffer.isView(potentialBuffer)) { + return Buffer.from( + potentialBuffer.buffer, + potentialBuffer.byteOffset, + potentialBuffer.byteLength + ); + } + + if (isAnyArrayBuffer(potentialBuffer)) { + return Buffer.from(potentialBuffer); + } + + throw new BSONTypeError('Must use either Buffer or TypedArray'); +} diff --git a/node_modules/bson/src/error.ts b/node_modules/bson/src/error.ts new file mode 100644 index 000000000..8f1a41736 --- /dev/null +++ b/node_modules/bson/src/error.ts @@ -0,0 +1,23 @@ +/** @public */ +export class BSONError extends Error { + constructor(message: string) { + super(message); + Object.setPrototypeOf(this, BSONError.prototype); + } + + get name(): string { + return 'BSONError'; + } +} + +/** @public */ +export class BSONTypeError extends TypeError { + constructor(message: string) { + super(message); + Object.setPrototypeOf(this, BSONTypeError.prototype); + } + + get name(): string { + return 'BSONTypeError'; + } +} diff --git a/node_modules/bson/src/extended_json.ts b/node_modules/bson/src/extended_json.ts new file mode 100644 index 000000000..90269623b --- /dev/null +++ b/node_modules/bson/src/extended_json.ts @@ -0,0 +1,462 @@ +import { Binary } from './binary'; +import type { Document } from './bson'; +import { Code } from './code'; +import { DBRef, isDBRefLike } from './db_ref'; +import { Decimal128 } from './decimal128'; +import { Double } from './double'; +import { BSONError, BSONTypeError } from './error'; +import { Int32 } from './int_32'; +import { Long } from './long'; +import { MaxKey } from './max_key'; +import { MinKey } from './min_key'; +import { ObjectId } from './objectid'; +import { isDate, isObjectLike, isRegExp } from './parser/utils'; +import { BSONRegExp } from './regexp'; +import { BSONSymbol } from './symbol'; +import { Timestamp } from './timestamp'; + +/** @public */ +export type EJSONOptions = EJSON.Options; + +/** @internal */ +type BSONType = + | Binary + | Code + | DBRef + | Decimal128 + | Double + | Int32 + | Long + | MaxKey + | MinKey + | ObjectId + | BSONRegExp + | BSONSymbol + | Timestamp; + +export function isBSONType(value: unknown): value is BSONType { + return ( + isObjectLike(value) && Reflect.has(value, '_bsontype') && typeof value._bsontype === 'string' + ); +} + +// INT32 boundaries +const BSON_INT32_MAX = 0x7fffffff; +const BSON_INT32_MIN = -0x80000000; +// INT64 boundaries +// const BSON_INT64_MAX = 0x7fffffffffffffff; // TODO(NODE-4377): This number cannot be precisely represented in JS +const BSON_INT64_MAX = 0x8000000000000000; +const BSON_INT64_MIN = -0x8000000000000000; + +// all the types where we don't need to do any special processing and can just pass the EJSON +//straight to type.fromExtendedJSON +const keysToCodecs = { + $oid: ObjectId, + $binary: Binary, + $uuid: Binary, + $symbol: BSONSymbol, + $numberInt: Int32, + $numberDecimal: Decimal128, + $numberDouble: Double, + $numberLong: Long, + $minKey: MinKey, + $maxKey: MaxKey, + $regex: BSONRegExp, + $regularExpression: BSONRegExp, + $timestamp: Timestamp +} as const; + +// eslint-disable-next-line @typescript-eslint/no-explicit-any +function deserializeValue(value: any, options: EJSON.Options = {}) { + if (typeof value === 'number') { + if (options.relaxed || options.legacy) { + return value; + } + + // if it's an integer, should interpret as smallest BSON integer + // that can represent it exactly. (if out of range, interpret as double.) + if (Math.floor(value) === value) { + if (value >= BSON_INT32_MIN && value <= BSON_INT32_MAX) return new Int32(value); + if (value >= BSON_INT64_MIN && value <= BSON_INT64_MAX) return Long.fromNumber(value); + } + + // If the number is a non-integer or out of integer range, should interpret as BSON Double. + return new Double(value); + } + + // from here on out we're looking for bson types, so bail if its not an object + if (value == null || typeof value !== 'object') return value; + + // upgrade deprecated undefined to null + if (value.$undefined) return null; + + const keys = Object.keys(value).filter( + k => k.startsWith('$') && value[k] != null + ) as (keyof typeof keysToCodecs)[]; + for (let i = 0; i < keys.length; i++) { + const c = keysToCodecs[keys[i]]; + if (c) return c.fromExtendedJSON(value, options); + } + + if (value.$date != null) { + const d = value.$date; + const date = new Date(); + + if (options.legacy) { + if (typeof d === 'number') date.setTime(d); + else if (typeof d === 'string') date.setTime(Date.parse(d)); + } else { + if (typeof d === 'string') date.setTime(Date.parse(d)); + else if (Long.isLong(d)) date.setTime(d.toNumber()); + else if (typeof d === 'number' && options.relaxed) date.setTime(d); + } + return date; + } + + if (value.$code != null) { + const copy = Object.assign({}, value); + if (value.$scope) { + copy.$scope = deserializeValue(value.$scope); + } + + return Code.fromExtendedJSON(value); + } + + if (isDBRefLike(value) || value.$dbPointer) { + const v = value.$ref ? value : value.$dbPointer; + + // we run into this in a "degenerate EJSON" case (with $id and $ref order flipped) + // because of the order JSON.parse goes through the document + if (v instanceof DBRef) return v; + + const dollarKeys = Object.keys(v).filter(k => k.startsWith('$')); + let valid = true; + dollarKeys.forEach(k => { + if (['$ref', '$id', '$db'].indexOf(k) === -1) valid = false; + }); + + // only make DBRef if $ keys are all valid + if (valid) return DBRef.fromExtendedJSON(v); + } + + return value; +} + +type EJSONSerializeOptions = EJSON.Options & { + seenObjects: { obj: unknown; propertyName: string }[]; +}; + +// eslint-disable-next-line @typescript-eslint/no-explicit-any +function serializeArray(array: any[], options: EJSONSerializeOptions): any[] { + return array.map((v: unknown, index: number) => { + options.seenObjects.push({ propertyName: `index ${index}`, obj: null }); + try { + return serializeValue(v, options); + } finally { + options.seenObjects.pop(); + } + }); +} + +function getISOString(date: Date) { + const isoStr = date.toISOString(); + // we should only show milliseconds in timestamp if they're non-zero + return date.getUTCMilliseconds() !== 0 ? isoStr : isoStr.slice(0, -5) + 'Z'; +} + +// eslint-disable-next-line @typescript-eslint/no-explicit-any +function serializeValue(value: any, options: EJSONSerializeOptions): any { + if ((typeof value === 'object' || typeof value === 'function') && value !== null) { + const index = options.seenObjects.findIndex(entry => entry.obj === value); + if (index !== -1) { + const props = options.seenObjects.map(entry => entry.propertyName); + const leadingPart = props + .slice(0, index) + .map(prop => `${prop} -> `) + .join(''); + const alreadySeen = props[index]; + const circularPart = + ' -> ' + + props + .slice(index + 1, props.length - 1) + .map(prop => `${prop} -> `) + .join(''); + const current = props[props.length - 1]; + const leadingSpace = ' '.repeat(leadingPart.length + alreadySeen.length / 2); + const dashes = '-'.repeat( + circularPart.length + (alreadySeen.length + current.length) / 2 - 1 + ); + + throw new BSONTypeError( + 'Converting circular structure to EJSON:\n' + + ` ${leadingPart}${alreadySeen}${circularPart}${current}\n` + + ` ${leadingSpace}\\${dashes}/` + ); + } + options.seenObjects[options.seenObjects.length - 1].obj = value; + } + + if (Array.isArray(value)) return serializeArray(value, options); + + if (value === undefined) return null; + + if (value instanceof Date || isDate(value)) { + const dateNum = value.getTime(), + // is it in year range 1970-9999? + inRange = dateNum > -1 && dateNum < 253402318800000; + + if (options.legacy) { + return options.relaxed && inRange + ? { $date: value.getTime() } + : { $date: getISOString(value) }; + } + return options.relaxed && inRange + ? { $date: getISOString(value) } + : { $date: { $numberLong: value.getTime().toString() } }; + } + + if (typeof value === 'number' && (!options.relaxed || !isFinite(value))) { + // it's an integer + if (Math.floor(value) === value) { + const int32Range = value >= BSON_INT32_MIN && value <= BSON_INT32_MAX, + int64Range = value >= BSON_INT64_MIN && value <= BSON_INT64_MAX; + + // interpret as being of the smallest BSON integer type that can represent the number exactly + if (int32Range) return { $numberInt: value.toString() }; + if (int64Range) return { $numberLong: value.toString() }; + } + return { $numberDouble: value.toString() }; + } + + if (value instanceof RegExp || isRegExp(value)) { + let flags = value.flags; + if (flags === undefined) { + const match = value.toString().match(/[gimuy]*$/); + if (match) { + flags = match[0]; + } + } + + const rx = new BSONRegExp(value.source, flags); + return rx.toExtendedJSON(options); + } + + if (value != null && typeof value === 'object') return serializeDocument(value, options); + return value; +} + +const BSON_TYPE_MAPPINGS = { + Binary: (o: Binary) => new Binary(o.value(), o.sub_type), + Code: (o: Code) => new Code(o.code, o.scope), + DBRef: (o: DBRef) => new DBRef(o.collection || o.namespace, o.oid, o.db, o.fields), // "namespace" for 1.x library backwards compat + Decimal128: (o: Decimal128) => new Decimal128(o.bytes), + Double: (o: Double) => new Double(o.value), + Int32: (o: Int32) => new Int32(o.value), + Long: ( + o: Long & { + low_: number; + high_: number; + unsigned_: boolean | undefined; + } + ) => + Long.fromBits( + // underscore variants for 1.x backwards compatibility + o.low != null ? o.low : o.low_, + o.low != null ? o.high : o.high_, + o.low != null ? o.unsigned : o.unsigned_ + ), + MaxKey: () => new MaxKey(), + MinKey: () => new MinKey(), + ObjectID: (o: ObjectId) => new ObjectId(o), + ObjectId: (o: ObjectId) => new ObjectId(o), // support 4.0.0/4.0.1 before _bsontype was reverted back to ObjectID + BSONRegExp: (o: BSONRegExp) => new BSONRegExp(o.pattern, o.options), + Symbol: (o: BSONSymbol) => new BSONSymbol(o.value), + Timestamp: (o: Timestamp) => Timestamp.fromBits(o.low, o.high) +} as const; + +// eslint-disable-next-line @typescript-eslint/no-explicit-any +function serializeDocument(doc: any, options: EJSONSerializeOptions) { + if (doc == null || typeof doc !== 'object') throw new BSONError('not an object instance'); + + const bsontype: BSONType['_bsontype'] = doc._bsontype; + if (typeof bsontype === 'undefined') { + // It's a regular object. Recursively serialize its property values. + const _doc: Document = {}; + for (const name in doc) { + options.seenObjects.push({ propertyName: name, obj: null }); + try { + const value = serializeValue(doc[name], options); + if (name === '__proto__') { + Object.defineProperty(_doc, name, { + value, + writable: true, + enumerable: true, + configurable: true + }); + } else { + _doc[name] = value; + } + } finally { + options.seenObjects.pop(); + } + } + return _doc; + } else if (isBSONType(doc)) { + // the "document" is really just a BSON type object + // eslint-disable-next-line @typescript-eslint/no-explicit-any + let outDoc: any = doc; + if (typeof outDoc.toExtendedJSON !== 'function') { + // There's no EJSON serialization function on the object. It's probably an + // object created by a previous version of this library (or another library) + // that's duck-typing objects to look like they were generated by this library). + // Copy the object into this library's version of that type. + const mapper = BSON_TYPE_MAPPINGS[doc._bsontype]; + if (!mapper) { + throw new BSONTypeError('Unrecognized or invalid _bsontype: ' + doc._bsontype); + } + outDoc = mapper(outDoc); + } + + // Two BSON types may have nested objects that may need to be serialized too + if (bsontype === 'Code' && outDoc.scope) { + outDoc = new Code(outDoc.code, serializeValue(outDoc.scope, options)); + } else if (bsontype === 'DBRef' && outDoc.oid) { + outDoc = new DBRef( + serializeValue(outDoc.collection, options), + serializeValue(outDoc.oid, options), + serializeValue(outDoc.db, options), + serializeValue(outDoc.fields, options) + ); + } + + return outDoc.toExtendedJSON(options); + } else { + throw new BSONError('_bsontype must be a string, but was: ' + typeof bsontype); + } +} + +/** + * EJSON parse / stringify API + * @public + */ +// the namespace here is used to emulate `export * as EJSON from '...'` +// which as of now (sept 2020) api-extractor does not support +// eslint-disable-next-line @typescript-eslint/no-namespace +export namespace EJSON { + export interface Options { + /** Output using the Extended JSON v1 spec */ + legacy?: boolean; + /** Enable Extended JSON's `relaxed` mode, which attempts to return native JS types where possible, rather than BSON types */ + relaxed?: boolean; + /** + * Disable Extended JSON's `relaxed` mode, which attempts to return BSON types where possible, rather than native JS types + * @deprecated Please use the relaxed property instead + */ + strict?: boolean; + } + + /** + * Parse an Extended JSON string, constructing the JavaScript value or object described by that + * string. + * + * @example + * ```js + * const { EJSON } = require('bson'); + * const text = '{ "int32": { "$numberInt": "10" } }'; + * + * // prints { int32: { [String: '10'] _bsontype: 'Int32', value: '10' } } + * console.log(EJSON.parse(text, { relaxed: false })); + * + * // prints { int32: 10 } + * console.log(EJSON.parse(text)); + * ``` + */ + export function parse(text: string, options?: EJSON.Options): SerializableTypes { + const finalOptions = Object.assign({}, { relaxed: true, legacy: false }, options); + + // relaxed implies not strict + if (typeof finalOptions.relaxed === 'boolean') finalOptions.strict = !finalOptions.relaxed; + if (typeof finalOptions.strict === 'boolean') finalOptions.relaxed = !finalOptions.strict; + + return JSON.parse(text, (key, value) => { + if (key.indexOf('\x00') !== -1) { + throw new BSONError( + `BSON Document field names cannot contain null bytes, found: ${JSON.stringify(key)}` + ); + } + return deserializeValue(value, finalOptions); + }); + } + + export type JSONPrimitive = string | number | boolean | null; + export type SerializableTypes = Document | Array | JSONPrimitive; + + /** + * Converts a BSON document to an Extended JSON string, optionally replacing values if a replacer + * function is specified or optionally including only the specified properties if a replacer array + * is specified. + * + * @param value - The value to convert to extended JSON + * @param replacer - A function that alters the behavior of the stringification process, or an array of String and Number objects that serve as a whitelist for selecting/filtering the properties of the value object to be included in the JSON string. If this value is null or not provided, all properties of the object are included in the resulting JSON string + * @param space - A String or Number object that's used to insert white space into the output JSON string for readability purposes. + * @param options - Optional settings + * + * @example + * ```js + * const { EJSON } = require('bson'); + * const Int32 = require('mongodb').Int32; + * const doc = { int32: new Int32(10) }; + * + * // prints '{"int32":{"$numberInt":"10"}}' + * console.log(EJSON.stringify(doc, { relaxed: false })); + * + * // prints '{"int32":10}' + * console.log(EJSON.stringify(doc)); + * ``` + */ + export function stringify( + value: SerializableTypes, + // eslint-disable-next-line @typescript-eslint/no-explicit-any + replacer?: (number | string)[] | ((this: any, key: string, value: any) => any) | EJSON.Options, + space?: string | number, + options?: EJSON.Options + ): string { + if (space != null && typeof space === 'object') { + options = space; + space = 0; + } + if (replacer != null && typeof replacer === 'object' && !Array.isArray(replacer)) { + options = replacer; + replacer = undefined; + space = 0; + } + const serializeOptions = Object.assign({ relaxed: true, legacy: false }, options, { + seenObjects: [{ propertyName: '(root)', obj: null }] + }); + + const doc = serializeValue(value, serializeOptions); + return JSON.stringify(doc, replacer as Parameters[1], space); + } + + /** + * Serializes an object to an Extended JSON string, and reparse it as a JavaScript object. + * + * @param value - The object to serialize + * @param options - Optional settings passed to the `stringify` function + */ + export function serialize(value: SerializableTypes, options?: EJSON.Options): Document { + options = options || {}; + return JSON.parse(stringify(value, options)); + } + + /** + * Deserializes an Extended JSON object into a plain JavaScript object with native/BSON types + * + * @param ejson - The Extended JSON object to deserialize + * @param options - Optional settings passed to the parse method + */ + export function deserialize(ejson: Document, options?: EJSON.Options): SerializableTypes { + options = options || {}; + return parse(JSON.stringify(ejson), options); + } +} diff --git a/node_modules/bson/src/int_32.ts b/node_modules/bson/src/int_32.ts new file mode 100644 index 000000000..b3b5760cc --- /dev/null +++ b/node_modules/bson/src/int_32.ts @@ -0,0 +1,70 @@ +import type { EJSONOptions } from './extended_json'; + +/** @public */ +export interface Int32Extended { + $numberInt: string; +} + +/** + * A class representation of a BSON Int32 type. + * @public + * @category BSONType + */ +export class Int32 { + _bsontype!: 'Int32'; + + value!: number; + /** + * Create an Int32 type + * + * @param value - the number we want to represent as an int32. + */ + constructor(value: number | string) { + if (!(this instanceof Int32)) return new Int32(value); + + if ((value as unknown) instanceof Number) { + value = value.valueOf(); + } + + this.value = +value | 0; + } + + /** + * Access the number value. + * + * @returns returns the wrapped int32 number. + */ + valueOf(): number { + return this.value; + } + + toString(radix?: number): string { + return this.value.toString(radix); + } + + toJSON(): number { + return this.value; + } + + /** @internal */ + toExtendedJSON(options?: EJSONOptions): number | Int32Extended { + if (options && (options.relaxed || options.legacy)) return this.value; + return { $numberInt: this.value.toString() }; + } + + /** @internal */ + static fromExtendedJSON(doc: Int32Extended, options?: EJSONOptions): number | Int32 { + return options && options.relaxed ? parseInt(doc.$numberInt, 10) : new Int32(doc.$numberInt); + } + + /** @internal */ + [Symbol.for('nodejs.util.inspect.custom')](): string { + return this.inspect(); + } + + inspect(): string { + return `new Int32(${this.valueOf()})`; + } +} + +Object.defineProperty(Int32.prototype, '_bsontype', { value: 'Int32' }); diff --git a/node_modules/bson/src/long.ts b/node_modules/bson/src/long.ts new file mode 100644 index 000000000..ed3f6e1b7 --- /dev/null +++ b/node_modules/bson/src/long.ts @@ -0,0 +1,1040 @@ +import type { EJSONOptions } from './extended_json'; +import { isObjectLike } from './parser/utils'; +import type { Timestamp } from './timestamp'; + +interface LongWASMHelpers { + /** Gets the high bits of the last operation performed */ + get_high(this: void): number; + div_u( + this: void, + lowBits: number, + highBits: number, + lowBitsDivisor: number, + highBitsDivisor: number + ): number; + div_s( + this: void, + lowBits: number, + highBits: number, + lowBitsDivisor: number, + highBitsDivisor: number + ): number; + rem_u( + this: void, + lowBits: number, + highBits: number, + lowBitsDivisor: number, + highBitsDivisor: number + ): number; + rem_s( + this: void, + lowBits: number, + highBits: number, + lowBitsDivisor: number, + highBitsDivisor: number + ): number; + mul( + this: void, + lowBits: number, + highBits: number, + lowBitsMultiplier: number, + highBitsMultiplier: number + ): number; +} + +/** + * wasm optimizations, to do native i64 multiplication and divide + */ +let wasm: LongWASMHelpers | undefined = undefined; + +/* We do not want to have to include DOM types just for this check */ +// eslint-disable-next-line @typescript-eslint/no-explicit-any +declare const WebAssembly: any; + +try { + wasm = new WebAssembly.Instance( + new WebAssembly.Module( + // prettier-ignore + new Uint8Array([0, 97, 115, 109, 1, 0, 0, 0, 1, 13, 2, 96, 0, 1, 127, 96, 4, 127, 127, 127, 127, 1, 127, 3, 7, 6, 0, 1, 1, 1, 1, 1, 6, 6, 1, 127, 1, 65, 0, 11, 7, 50, 6, 3, 109, 117, 108, 0, 1, 5, 100, 105, 118, 95, 115, 0, 2, 5, 100, 105, 118, 95, 117, 0, 3, 5, 114, 101, 109, 95, 115, 0, 4, 5, 114, 101, 109, 95, 117, 0, 5, 8, 103, 101, 116, 95, 104, 105, 103, 104, 0, 0, 10, 191, 1, 6, 4, 0, 35, 0, 11, 36, 1, 1, 126, 32, 0, 173, 32, 1, 173, 66, 32, 134, 132, 32, 2, 173, 32, 3, 173, 66, 32, 134, 132, 126, 34, 4, 66, 32, 135, 167, 36, 0, 32, 4, 167, 11, 36, 1, 1, 126, 32, 0, 173, 32, 1, 173, 66, 32, 134, 132, 32, 2, 173, 32, 3, 173, 66, 32, 134, 132, 127, 34, 4, 66, 32, 135, 167, 36, 0, 32, 4, 167, 11, 36, 1, 1, 126, 32, 0, 173, 32, 1, 173, 66, 32, 134, 132, 32, 2, 173, 32, 3, 173, 66, 32, 134, 132, 128, 34, 4, 66, 32, 135, 167, 36, 0, 32, 4, 167, 11, 36, 1, 1, 126, 32, 0, 173, 32, 1, 173, 66, 32, 134, 132, 32, 2, 173, 32, 3, 173, 66, 32, 134, 132, 129, 34, 4, 66, 32, 135, 167, 36, 0, 32, 4, 167, 11, 36, 1, 1, 126, 32, 0, 173, 32, 1, 173, 66, 32, 134, 132, 32, 2, 173, 32, 3, 173, 66, 32, 134, 132, 130, 34, 4, 66, 32, 135, 167, 36, 0, 32, 4, 167, 11]) + ), + {} + ).exports as unknown as LongWASMHelpers; +} catch { + // no wasm support +} + +const TWO_PWR_16_DBL = 1 << 16; +const TWO_PWR_24_DBL = 1 << 24; +const TWO_PWR_32_DBL = TWO_PWR_16_DBL * TWO_PWR_16_DBL; +const TWO_PWR_64_DBL = TWO_PWR_32_DBL * TWO_PWR_32_DBL; +const TWO_PWR_63_DBL = TWO_PWR_64_DBL / 2; + +/** A cache of the Long representations of small integer values. */ +const INT_CACHE: { [key: number]: Long } = {}; + +/** A cache of the Long representations of small unsigned integer values. */ +const UINT_CACHE: { [key: number]: Long } = {}; + +/** @public */ +export interface LongExtended { + $numberLong: string; +} + +/** + * A class representing a 64-bit integer + * @public + * @category BSONType + * @remarks + * The internal representation of a long is the two given signed, 32-bit values. + * We use 32-bit pieces because these are the size of integers on which + * Javascript performs bit-operations. For operations like addition and + * multiplication, we split each number into 16 bit pieces, which can easily be + * multiplied within Javascript's floating-point representation without overflow + * or change in sign. + * In the algorithms below, we frequently reduce the negative case to the + * positive case by negating the input(s) and then post-processing the result. + * Note that we must ALWAYS check specially whether those values are MIN_VALUE + * (-2^63) because -MIN_VALUE == MIN_VALUE (since 2^63 cannot be represented as + * a positive number, it overflows back into a negative). Not handling this + * case would often result in infinite recursion. + * Common constant values ZERO, ONE, NEG_ONE, etc. are found as static properties on this class. + */ +export class Long { + _bsontype!: 'Long'; + + /** An indicator used to reliably determine if an object is a Long or not. */ + __isLong__!: true; + + /** + * The high 32 bits as a signed value. + */ + high!: number; + + /** + * The low 32 bits as a signed value. + */ + low!: number; + + /** + * Whether unsigned or not. + */ + unsigned!: boolean; + + /** + * Constructs a 64 bit two's-complement integer, given its low and high 32 bit values as *signed* integers. + * See the from* functions below for more convenient ways of constructing Longs. + * + * Acceptable signatures are: + * - Long(low, high, unsigned?) + * - Long(bigint, unsigned?) + * - Long(string, unsigned?) + * + * @param low - The low (signed) 32 bits of the long + * @param high - The high (signed) 32 bits of the long + * @param unsigned - Whether unsigned or not, defaults to signed + */ + constructor(low: number | bigint | string = 0, high?: number | boolean, unsigned?: boolean) { + if (!(this instanceof Long)) return new Long(low, high, unsigned); + + if (typeof low === 'bigint') { + Object.assign(this, Long.fromBigInt(low, !!high)); + } else if (typeof low === 'string') { + Object.assign(this, Long.fromString(low, !!high)); + } else { + this.low = low | 0; + this.high = (high as number) | 0; + this.unsigned = !!unsigned; + } + + Object.defineProperty(this, '__isLong__', { + value: true, + configurable: false, + writable: false, + enumerable: false + }); + } + + static TWO_PWR_24 = Long.fromInt(TWO_PWR_24_DBL); + + /** Maximum unsigned value. */ + static MAX_UNSIGNED_VALUE = Long.fromBits(0xffffffff | 0, 0xffffffff | 0, true); + /** Signed zero */ + static ZERO = Long.fromInt(0); + /** Unsigned zero. */ + static UZERO = Long.fromInt(0, true); + /** Signed one. */ + static ONE = Long.fromInt(1); + /** Unsigned one. */ + static UONE = Long.fromInt(1, true); + /** Signed negative one. */ + static NEG_ONE = Long.fromInt(-1); + /** Maximum signed value. */ + static MAX_VALUE = Long.fromBits(0xffffffff | 0, 0x7fffffff | 0, false); + /** Minimum signed value. */ + static MIN_VALUE = Long.fromBits(0, 0x80000000 | 0, false); + + /** + * Returns a Long representing the 64 bit integer that comes by concatenating the given low and high bits. + * Each is assumed to use 32 bits. + * @param lowBits - The low 32 bits + * @param highBits - The high 32 bits + * @param unsigned - Whether unsigned or not, defaults to signed + * @returns The corresponding Long value + */ + static fromBits(lowBits: number, highBits: number, unsigned?: boolean): Long { + return new Long(lowBits, highBits, unsigned); + } + + /** + * Returns a Long representing the given 32 bit integer value. + * @param value - The 32 bit integer in question + * @param unsigned - Whether unsigned or not, defaults to signed + * @returns The corresponding Long value + */ + static fromInt(value: number, unsigned?: boolean): Long { + let obj, cachedObj, cache; + if (unsigned) { + value >>>= 0; + if ((cache = 0 <= value && value < 256)) { + cachedObj = UINT_CACHE[value]; + if (cachedObj) return cachedObj; + } + obj = Long.fromBits(value, (value | 0) < 0 ? -1 : 0, true); + if (cache) UINT_CACHE[value] = obj; + return obj; + } else { + value |= 0; + if ((cache = -128 <= value && value < 128)) { + cachedObj = INT_CACHE[value]; + if (cachedObj) return cachedObj; + } + obj = Long.fromBits(value, value < 0 ? -1 : 0, false); + if (cache) INT_CACHE[value] = obj; + return obj; + } + } + + /** + * Returns a Long representing the given value, provided that it is a finite number. Otherwise, zero is returned. + * @param value - The number in question + * @param unsigned - Whether unsigned or not, defaults to signed + * @returns The corresponding Long value + */ + static fromNumber(value: number, unsigned?: boolean): Long { + if (isNaN(value)) return unsigned ? Long.UZERO : Long.ZERO; + if (unsigned) { + if (value < 0) return Long.UZERO; + if (value >= TWO_PWR_64_DBL) return Long.MAX_UNSIGNED_VALUE; + } else { + if (value <= -TWO_PWR_63_DBL) return Long.MIN_VALUE; + if (value + 1 >= TWO_PWR_63_DBL) return Long.MAX_VALUE; + } + if (value < 0) return Long.fromNumber(-value, unsigned).neg(); + return Long.fromBits(value % TWO_PWR_32_DBL | 0, (value / TWO_PWR_32_DBL) | 0, unsigned); + } + + /** + * Returns a Long representing the given value, provided that it is a finite number. Otherwise, zero is returned. + * @param value - The number in question + * @param unsigned - Whether unsigned or not, defaults to signed + * @returns The corresponding Long value + */ + static fromBigInt(value: bigint, unsigned?: boolean): Long { + return Long.fromString(value.toString(), unsigned); + } + + /** + * Returns a Long representation of the given string, written using the specified radix. + * @param str - The textual representation of the Long + * @param unsigned - Whether unsigned or not, defaults to signed + * @param radix - The radix in which the text is written (2-36), defaults to 10 + * @returns The corresponding Long value + */ + static fromString(str: string, unsigned?: boolean, radix?: number): Long { + if (str.length === 0) throw Error('empty string'); + if (str === 'NaN' || str === 'Infinity' || str === '+Infinity' || str === '-Infinity') + return Long.ZERO; + if (typeof unsigned === 'number') { + // For goog.math.long compatibility + (radix = unsigned), (unsigned = false); + } else { + unsigned = !!unsigned; + } + radix = radix || 10; + if (radix < 2 || 36 < radix) throw RangeError('radix'); + + let p; + if ((p = str.indexOf('-')) > 0) throw Error('interior hyphen'); + else if (p === 0) { + return Long.fromString(str.substring(1), unsigned, radix).neg(); + } + + // Do several (8) digits each time through the loop, so as to + // minimize the calls to the very expensive emulated div. + const radixToPower = Long.fromNumber(Math.pow(radix, 8)); + + let result = Long.ZERO; + for (let i = 0; i < str.length; i += 8) { + const size = Math.min(8, str.length - i), + value = parseInt(str.substring(i, i + size), radix); + if (size < 8) { + const power = Long.fromNumber(Math.pow(radix, size)); + result = result.mul(power).add(Long.fromNumber(value)); + } else { + result = result.mul(radixToPower); + result = result.add(Long.fromNumber(value)); + } + } + result.unsigned = unsigned; + return result; + } + + /** + * Creates a Long from its byte representation. + * @param bytes - Byte representation + * @param unsigned - Whether unsigned or not, defaults to signed + * @param le - Whether little or big endian, defaults to big endian + * @returns The corresponding Long value + */ + static fromBytes(bytes: number[], unsigned?: boolean, le?: boolean): Long { + return le ? Long.fromBytesLE(bytes, unsigned) : Long.fromBytesBE(bytes, unsigned); + } + + /** + * Creates a Long from its little endian byte representation. + * @param bytes - Little endian byte representation + * @param unsigned - Whether unsigned or not, defaults to signed + * @returns The corresponding Long value + */ + static fromBytesLE(bytes: number[], unsigned?: boolean): Long { + return new Long( + bytes[0] | (bytes[1] << 8) | (bytes[2] << 16) | (bytes[3] << 24), + bytes[4] | (bytes[5] << 8) | (bytes[6] << 16) | (bytes[7] << 24), + unsigned + ); + } + + /** + * Creates a Long from its big endian byte representation. + * @param bytes - Big endian byte representation + * @param unsigned - Whether unsigned or not, defaults to signed + * @returns The corresponding Long value + */ + static fromBytesBE(bytes: number[], unsigned?: boolean): Long { + return new Long( + (bytes[4] << 24) | (bytes[5] << 16) | (bytes[6] << 8) | bytes[7], + (bytes[0] << 24) | (bytes[1] << 16) | (bytes[2] << 8) | bytes[3], + unsigned + ); + } + + /** + * Tests if the specified object is a Long. + */ + static isLong(value: unknown): value is Long { + return isObjectLike(value) && value['__isLong__'] === true; + } + + /** + * Converts the specified value to a Long. + * @param unsigned - Whether unsigned or not, defaults to signed + */ + static fromValue( + val: number | string | { low: number; high: number; unsigned?: boolean }, + unsigned?: boolean + ): Long { + if (typeof val === 'number') return Long.fromNumber(val, unsigned); + if (typeof val === 'string') return Long.fromString(val, unsigned); + // Throws for non-objects, converts non-instanceof Long: + return Long.fromBits( + val.low, + val.high, + typeof unsigned === 'boolean' ? unsigned : val.unsigned + ); + } + + /** Returns the sum of this and the specified Long. */ + add(addend: string | number | Long | Timestamp): Long { + if (!Long.isLong(addend)) addend = Long.fromValue(addend); + + // Divide each number into 4 chunks of 16 bits, and then sum the chunks. + + const a48 = this.high >>> 16; + const a32 = this.high & 0xffff; + const a16 = this.low >>> 16; + const a00 = this.low & 0xffff; + + const b48 = addend.high >>> 16; + const b32 = addend.high & 0xffff; + const b16 = addend.low >>> 16; + const b00 = addend.low & 0xffff; + + let c48 = 0, + c32 = 0, + c16 = 0, + c00 = 0; + c00 += a00 + b00; + c16 += c00 >>> 16; + c00 &= 0xffff; + c16 += a16 + b16; + c32 += c16 >>> 16; + c16 &= 0xffff; + c32 += a32 + b32; + c48 += c32 >>> 16; + c32 &= 0xffff; + c48 += a48 + b48; + c48 &= 0xffff; + return Long.fromBits((c16 << 16) | c00, (c48 << 16) | c32, this.unsigned); + } + + /** + * Returns the sum of this and the specified Long. + * @returns Sum + */ + and(other: string | number | Long | Timestamp): Long { + if (!Long.isLong(other)) other = Long.fromValue(other); + return Long.fromBits(this.low & other.low, this.high & other.high, this.unsigned); + } + + /** + * Compares this Long's value with the specified's. + * @returns 0 if they are the same, 1 if the this is greater and -1 if the given one is greater + */ + compare(other: string | number | Long | Timestamp): 0 | 1 | -1 { + if (!Long.isLong(other)) other = Long.fromValue(other); + if (this.eq(other)) return 0; + const thisNeg = this.isNegative(), + otherNeg = other.isNegative(); + if (thisNeg && !otherNeg) return -1; + if (!thisNeg && otherNeg) return 1; + // At this point the sign bits are the same + if (!this.unsigned) return this.sub(other).isNegative() ? -1 : 1; + // Both are positive if at least one is unsigned + return other.high >>> 0 > this.high >>> 0 || + (other.high === this.high && other.low >>> 0 > this.low >>> 0) + ? -1 + : 1; + } + + /** This is an alias of {@link Long.compare} */ + comp(other: string | number | Long | Timestamp): 0 | 1 | -1 { + return this.compare(other); + } + + /** + * Returns this Long divided by the specified. The result is signed if this Long is signed or unsigned if this Long is unsigned. + * @returns Quotient + */ + divide(divisor: string | number | Long | Timestamp): Long { + if (!Long.isLong(divisor)) divisor = Long.fromValue(divisor); + if (divisor.isZero()) throw Error('division by zero'); + + // use wasm support if present + if (wasm) { + // guard against signed division overflow: the largest + // negative number / -1 would be 1 larger than the largest + // positive number, due to two's complement. + if ( + !this.unsigned && + this.high === -0x80000000 && + divisor.low === -1 && + divisor.high === -1 + ) { + // be consistent with non-wasm code path + return this; + } + const low = (this.unsigned ? wasm.div_u : wasm.div_s)( + this.low, + this.high, + divisor.low, + divisor.high + ); + return Long.fromBits(low, wasm.get_high(), this.unsigned); + } + + if (this.isZero()) return this.unsigned ? Long.UZERO : Long.ZERO; + let approx, rem, res; + if (!this.unsigned) { + // This section is only relevant for signed longs and is derived from the + // closure library as a whole. + if (this.eq(Long.MIN_VALUE)) { + if (divisor.eq(Long.ONE) || divisor.eq(Long.NEG_ONE)) return Long.MIN_VALUE; + // recall that -MIN_VALUE == MIN_VALUE + else if (divisor.eq(Long.MIN_VALUE)) return Long.ONE; + else { + // At this point, we have |other| >= 2, so |this/other| < |MIN_VALUE|. + const halfThis = this.shr(1); + approx = halfThis.div(divisor).shl(1); + if (approx.eq(Long.ZERO)) { + return divisor.isNegative() ? Long.ONE : Long.NEG_ONE; + } else { + rem = this.sub(divisor.mul(approx)); + res = approx.add(rem.div(divisor)); + return res; + } + } + } else if (divisor.eq(Long.MIN_VALUE)) return this.unsigned ? Long.UZERO : Long.ZERO; + if (this.isNegative()) { + if (divisor.isNegative()) return this.neg().div(divisor.neg()); + return this.neg().div(divisor).neg(); + } else if (divisor.isNegative()) return this.div(divisor.neg()).neg(); + res = Long.ZERO; + } else { + // The algorithm below has not been made for unsigned longs. It's therefore + // required to take special care of the MSB prior to running it. + if (!divisor.unsigned) divisor = divisor.toUnsigned(); + if (divisor.gt(this)) return Long.UZERO; + if (divisor.gt(this.shru(1))) + // 15 >>> 1 = 7 ; with divisor = 8 ; true + return Long.UONE; + res = Long.UZERO; + } + + // Repeat the following until the remainder is less than other: find a + // floating-point that approximates remainder / other *from below*, add this + // into the result, and subtract it from the remainder. It is critical that + // the approximate value is less than or equal to the real value so that the + // remainder never becomes negative. + // eslint-disable-next-line @typescript-eslint/no-this-alias + rem = this; + while (rem.gte(divisor)) { + // Approximate the result of division. This may be a little greater or + // smaller than the actual value. + approx = Math.max(1, Math.floor(rem.toNumber() / divisor.toNumber())); + + // We will tweak the approximate result by changing it in the 48-th digit or + // the smallest non-fractional digit, whichever is larger. + const log2 = Math.ceil(Math.log(approx) / Math.LN2); + const delta = log2 <= 48 ? 1 : Math.pow(2, log2 - 48); + // Decrease the approximation until it is smaller than the remainder. Note + // that if it is too large, the product overflows and is negative. + let approxRes = Long.fromNumber(approx); + let approxRem = approxRes.mul(divisor); + while (approxRem.isNegative() || approxRem.gt(rem)) { + approx -= delta; + approxRes = Long.fromNumber(approx, this.unsigned); + approxRem = approxRes.mul(divisor); + } + + // We know the answer can't be zero... and actually, zero would cause + // infinite recursion since we would make no progress. + if (approxRes.isZero()) approxRes = Long.ONE; + + res = res.add(approxRes); + rem = rem.sub(approxRem); + } + return res; + } + + /**This is an alias of {@link Long.divide} */ + div(divisor: string | number | Long | Timestamp): Long { + return this.divide(divisor); + } + + /** + * Tests if this Long's value equals the specified's. + * @param other - Other value + */ + equals(other: string | number | Long | Timestamp): boolean { + if (!Long.isLong(other)) other = Long.fromValue(other); + if (this.unsigned !== other.unsigned && this.high >>> 31 === 1 && other.high >>> 31 === 1) + return false; + return this.high === other.high && this.low === other.low; + } + + /** This is an alias of {@link Long.equals} */ + eq(other: string | number | Long | Timestamp): boolean { + return this.equals(other); + } + + /** Gets the high 32 bits as a signed integer. */ + getHighBits(): number { + return this.high; + } + + /** Gets the high 32 bits as an unsigned integer. */ + getHighBitsUnsigned(): number { + return this.high >>> 0; + } + + /** Gets the low 32 bits as a signed integer. */ + getLowBits(): number { + return this.low; + } + + /** Gets the low 32 bits as an unsigned integer. */ + getLowBitsUnsigned(): number { + return this.low >>> 0; + } + + /** Gets the number of bits needed to represent the absolute value of this Long. */ + getNumBitsAbs(): number { + if (this.isNegative()) { + // Unsigned Longs are never negative + return this.eq(Long.MIN_VALUE) ? 64 : this.neg().getNumBitsAbs(); + } + const val = this.high !== 0 ? this.high : this.low; + let bit: number; + for (bit = 31; bit > 0; bit--) if ((val & (1 << bit)) !== 0) break; + return this.high !== 0 ? bit + 33 : bit + 1; + } + + /** Tests if this Long's value is greater than the specified's. */ + greaterThan(other: string | number | Long | Timestamp): boolean { + return this.comp(other) > 0; + } + + /** This is an alias of {@link Long.greaterThan} */ + gt(other: string | number | Long | Timestamp): boolean { + return this.greaterThan(other); + } + + /** Tests if this Long's value is greater than or equal the specified's. */ + greaterThanOrEqual(other: string | number | Long | Timestamp): boolean { + return this.comp(other) >= 0; + } + + /** This is an alias of {@link Long.greaterThanOrEqual} */ + gte(other: string | number | Long | Timestamp): boolean { + return this.greaterThanOrEqual(other); + } + /** This is an alias of {@link Long.greaterThanOrEqual} */ + ge(other: string | number | Long | Timestamp): boolean { + return this.greaterThanOrEqual(other); + } + + /** Tests if this Long's value is even. */ + isEven(): boolean { + return (this.low & 1) === 0; + } + + /** Tests if this Long's value is negative. */ + isNegative(): boolean { + return !this.unsigned && this.high < 0; + } + + /** Tests if this Long's value is odd. */ + isOdd(): boolean { + return (this.low & 1) === 1; + } + + /** Tests if this Long's value is positive. */ + isPositive(): boolean { + return this.unsigned || this.high >= 0; + } + + /** Tests if this Long's value equals zero. */ + isZero(): boolean { + return this.high === 0 && this.low === 0; + } + + /** Tests if this Long's value is less than the specified's. */ + lessThan(other: string | number | Long | Timestamp): boolean { + return this.comp(other) < 0; + } + + /** This is an alias of {@link Long#lessThan}. */ + lt(other: string | number | Long | Timestamp): boolean { + return this.lessThan(other); + } + + /** Tests if this Long's value is less than or equal the specified's. */ + lessThanOrEqual(other: string | number | Long | Timestamp): boolean { + return this.comp(other) <= 0; + } + + /** This is an alias of {@link Long.lessThanOrEqual} */ + lte(other: string | number | Long | Timestamp): boolean { + return this.lessThanOrEqual(other); + } + + /** Returns this Long modulo the specified. */ + modulo(divisor: string | number | Long | Timestamp): Long { + if (!Long.isLong(divisor)) divisor = Long.fromValue(divisor); + + // use wasm support if present + if (wasm) { + const low = (this.unsigned ? wasm.rem_u : wasm.rem_s)( + this.low, + this.high, + divisor.low, + divisor.high + ); + return Long.fromBits(low, wasm.get_high(), this.unsigned); + } + + return this.sub(this.div(divisor).mul(divisor)); + } + + /** This is an alias of {@link Long.modulo} */ + mod(divisor: string | number | Long | Timestamp): Long { + return this.modulo(divisor); + } + /** This is an alias of {@link Long.modulo} */ + rem(divisor: string | number | Long | Timestamp): Long { + return this.modulo(divisor); + } + + /** + * Returns the product of this and the specified Long. + * @param multiplier - Multiplier + * @returns Product + */ + multiply(multiplier: string | number | Long | Timestamp): Long { + if (this.isZero()) return Long.ZERO; + if (!Long.isLong(multiplier)) multiplier = Long.fromValue(multiplier); + + // use wasm support if present + if (wasm) { + const low = wasm.mul(this.low, this.high, multiplier.low, multiplier.high); + return Long.fromBits(low, wasm.get_high(), this.unsigned); + } + + if (multiplier.isZero()) return Long.ZERO; + if (this.eq(Long.MIN_VALUE)) return multiplier.isOdd() ? Long.MIN_VALUE : Long.ZERO; + if (multiplier.eq(Long.MIN_VALUE)) return this.isOdd() ? Long.MIN_VALUE : Long.ZERO; + + if (this.isNegative()) { + if (multiplier.isNegative()) return this.neg().mul(multiplier.neg()); + else return this.neg().mul(multiplier).neg(); + } else if (multiplier.isNegative()) return this.mul(multiplier.neg()).neg(); + + // If both longs are small, use float multiplication + if (this.lt(Long.TWO_PWR_24) && multiplier.lt(Long.TWO_PWR_24)) + return Long.fromNumber(this.toNumber() * multiplier.toNumber(), this.unsigned); + + // Divide each long into 4 chunks of 16 bits, and then add up 4x4 products. + // We can skip products that would overflow. + + const a48 = this.high >>> 16; + const a32 = this.high & 0xffff; + const a16 = this.low >>> 16; + const a00 = this.low & 0xffff; + + const b48 = multiplier.high >>> 16; + const b32 = multiplier.high & 0xffff; + const b16 = multiplier.low >>> 16; + const b00 = multiplier.low & 0xffff; + + let c48 = 0, + c32 = 0, + c16 = 0, + c00 = 0; + c00 += a00 * b00; + c16 += c00 >>> 16; + c00 &= 0xffff; + c16 += a16 * b00; + c32 += c16 >>> 16; + c16 &= 0xffff; + c16 += a00 * b16; + c32 += c16 >>> 16; + c16 &= 0xffff; + c32 += a32 * b00; + c48 += c32 >>> 16; + c32 &= 0xffff; + c32 += a16 * b16; + c48 += c32 >>> 16; + c32 &= 0xffff; + c32 += a00 * b32; + c48 += c32 >>> 16; + c32 &= 0xffff; + c48 += a48 * b00 + a32 * b16 + a16 * b32 + a00 * b48; + c48 &= 0xffff; + return Long.fromBits((c16 << 16) | c00, (c48 << 16) | c32, this.unsigned); + } + + /** This is an alias of {@link Long.multiply} */ + mul(multiplier: string | number | Long | Timestamp): Long { + return this.multiply(multiplier); + } + + /** Returns the Negation of this Long's value. */ + negate(): Long { + if (!this.unsigned && this.eq(Long.MIN_VALUE)) return Long.MIN_VALUE; + return this.not().add(Long.ONE); + } + + /** This is an alias of {@link Long.negate} */ + neg(): Long { + return this.negate(); + } + + /** Returns the bitwise NOT of this Long. */ + not(): Long { + return Long.fromBits(~this.low, ~this.high, this.unsigned); + } + + /** Tests if this Long's value differs from the specified's. */ + notEquals(other: string | number | Long | Timestamp): boolean { + return !this.equals(other); + } + + /** This is an alias of {@link Long.notEquals} */ + neq(other: string | number | Long | Timestamp): boolean { + return this.notEquals(other); + } + /** This is an alias of {@link Long.notEquals} */ + ne(other: string | number | Long | Timestamp): boolean { + return this.notEquals(other); + } + + /** + * Returns the bitwise OR of this Long and the specified. + */ + or(other: number | string | Long): Long { + if (!Long.isLong(other)) other = Long.fromValue(other); + return Long.fromBits(this.low | other.low, this.high | other.high, this.unsigned); + } + + /** + * Returns this Long with bits shifted to the left by the given amount. + * @param numBits - Number of bits + * @returns Shifted Long + */ + shiftLeft(numBits: number | Long): Long { + if (Long.isLong(numBits)) numBits = numBits.toInt(); + if ((numBits &= 63) === 0) return this; + else if (numBits < 32) + return Long.fromBits( + this.low << numBits, + (this.high << numBits) | (this.low >>> (32 - numBits)), + this.unsigned + ); + else return Long.fromBits(0, this.low << (numBits - 32), this.unsigned); + } + + /** This is an alias of {@link Long.shiftLeft} */ + shl(numBits: number | Long): Long { + return this.shiftLeft(numBits); + } + + /** + * Returns this Long with bits arithmetically shifted to the right by the given amount. + * @param numBits - Number of bits + * @returns Shifted Long + */ + shiftRight(numBits: number | Long): Long { + if (Long.isLong(numBits)) numBits = numBits.toInt(); + if ((numBits &= 63) === 0) return this; + else if (numBits < 32) + return Long.fromBits( + (this.low >>> numBits) | (this.high << (32 - numBits)), + this.high >> numBits, + this.unsigned + ); + else return Long.fromBits(this.high >> (numBits - 32), this.high >= 0 ? 0 : -1, this.unsigned); + } + + /** This is an alias of {@link Long.shiftRight} */ + shr(numBits: number | Long): Long { + return this.shiftRight(numBits); + } + + /** + * Returns this Long with bits logically shifted to the right by the given amount. + * @param numBits - Number of bits + * @returns Shifted Long + */ + shiftRightUnsigned(numBits: Long | number): Long { + if (Long.isLong(numBits)) numBits = numBits.toInt(); + numBits &= 63; + if (numBits === 0) return this; + else { + const high = this.high; + if (numBits < 32) { + const low = this.low; + return Long.fromBits( + (low >>> numBits) | (high << (32 - numBits)), + high >>> numBits, + this.unsigned + ); + } else if (numBits === 32) return Long.fromBits(high, 0, this.unsigned); + else return Long.fromBits(high >>> (numBits - 32), 0, this.unsigned); + } + } + + /** This is an alias of {@link Long.shiftRightUnsigned} */ + shr_u(numBits: number | Long): Long { + return this.shiftRightUnsigned(numBits); + } + /** This is an alias of {@link Long.shiftRightUnsigned} */ + shru(numBits: number | Long): Long { + return this.shiftRightUnsigned(numBits); + } + + /** + * Returns the difference of this and the specified Long. + * @param subtrahend - Subtrahend + * @returns Difference + */ + subtract(subtrahend: string | number | Long | Timestamp): Long { + if (!Long.isLong(subtrahend)) subtrahend = Long.fromValue(subtrahend); + return this.add(subtrahend.neg()); + } + + /** This is an alias of {@link Long.subtract} */ + sub(subtrahend: string | number | Long | Timestamp): Long { + return this.subtract(subtrahend); + } + + /** Converts the Long to a 32 bit integer, assuming it is a 32 bit integer. */ + toInt(): number { + return this.unsigned ? this.low >>> 0 : this.low; + } + + /** Converts the Long to a the nearest floating-point representation of this value (double, 53 bit mantissa). */ + toNumber(): number { + if (this.unsigned) return (this.high >>> 0) * TWO_PWR_32_DBL + (this.low >>> 0); + return this.high * TWO_PWR_32_DBL + (this.low >>> 0); + } + + /** Converts the Long to a BigInt (arbitrary precision). */ + toBigInt(): bigint { + return BigInt(this.toString()); + } + + /** + * Converts this Long to its byte representation. + * @param le - Whether little or big endian, defaults to big endian + * @returns Byte representation + */ + toBytes(le?: boolean): number[] { + return le ? this.toBytesLE() : this.toBytesBE(); + } + + /** + * Converts this Long to its little endian byte representation. + * @returns Little endian byte representation + */ + toBytesLE(): number[] { + const hi = this.high, + lo = this.low; + return [ + lo & 0xff, + (lo >>> 8) & 0xff, + (lo >>> 16) & 0xff, + lo >>> 24, + hi & 0xff, + (hi >>> 8) & 0xff, + (hi >>> 16) & 0xff, + hi >>> 24 + ]; + } + + /** + * Converts this Long to its big endian byte representation. + * @returns Big endian byte representation + */ + toBytesBE(): number[] { + const hi = this.high, + lo = this.low; + return [ + hi >>> 24, + (hi >>> 16) & 0xff, + (hi >>> 8) & 0xff, + hi & 0xff, + lo >>> 24, + (lo >>> 16) & 0xff, + (lo >>> 8) & 0xff, + lo & 0xff + ]; + } + + /** + * Converts this Long to signed. + */ + toSigned(): Long { + if (!this.unsigned) return this; + return Long.fromBits(this.low, this.high, false); + } + + /** + * Converts the Long to a string written in the specified radix. + * @param radix - Radix (2-36), defaults to 10 + * @throws RangeError If `radix` is out of range + */ + toString(radix?: number): string { + radix = radix || 10; + if (radix < 2 || 36 < radix) throw RangeError('radix'); + if (this.isZero()) return '0'; + if (this.isNegative()) { + // Unsigned Longs are never negative + if (this.eq(Long.MIN_VALUE)) { + // We need to change the Long value before it can be negated, so we remove + // the bottom-most digit in this base and then recurse to do the rest. + const radixLong = Long.fromNumber(radix), + div = this.div(radixLong), + rem1 = div.mul(radixLong).sub(this); + return div.toString(radix) + rem1.toInt().toString(radix); + } else return '-' + this.neg().toString(radix); + } + + // Do several (6) digits each time through the loop, so as to + // minimize the calls to the very expensive emulated div. + const radixToPower = Long.fromNumber(Math.pow(radix, 6), this.unsigned); + // eslint-disable-next-line @typescript-eslint/no-this-alias + let rem: Long = this; + let result = ''; + // eslint-disable-next-line no-constant-condition + while (true) { + const remDiv = rem.div(radixToPower); + const intval = rem.sub(remDiv.mul(radixToPower)).toInt() >>> 0; + let digits = intval.toString(radix); + rem = remDiv; + if (rem.isZero()) { + return digits + result; + } else { + while (digits.length < 6) digits = '0' + digits; + result = '' + digits + result; + } + } + } + + /** Converts this Long to unsigned. */ + toUnsigned(): Long { + if (this.unsigned) return this; + return Long.fromBits(this.low, this.high, true); + } + + /** Returns the bitwise XOR of this Long and the given one. */ + xor(other: Long | number | string): Long { + if (!Long.isLong(other)) other = Long.fromValue(other); + return Long.fromBits(this.low ^ other.low, this.high ^ other.high, this.unsigned); + } + + /** This is an alias of {@link Long.isZero} */ + eqz(): boolean { + return this.isZero(); + } + + /** This is an alias of {@link Long.lessThanOrEqual} */ + le(other: string | number | Long | Timestamp): boolean { + return this.lessThanOrEqual(other); + } + + /* + **************************************************************** + * BSON SPECIFIC ADDITIONS * + **************************************************************** + */ + toExtendedJSON(options?: EJSONOptions): number | LongExtended { + if (options && options.relaxed) return this.toNumber(); + return { $numberLong: this.toString() }; + } + static fromExtendedJSON(doc: { $numberLong: string }, options?: EJSONOptions): number | Long { + const result = Long.fromString(doc.$numberLong); + return options && options.relaxed ? result.toNumber() : result; + } + + /** @internal */ + [Symbol.for('nodejs.util.inspect.custom')](): string { + return this.inspect(); + } + + inspect(): string { + return `new Long("${this.toString()}"${this.unsigned ? ', true' : ''})`; + } +} + +Object.defineProperty(Long.prototype, '__isLong__', { value: true }); +Object.defineProperty(Long.prototype, '_bsontype', { value: 'Long' }); diff --git a/node_modules/bson/src/map.ts b/node_modules/bson/src/map.ts new file mode 100644 index 000000000..ba0032968 --- /dev/null +++ b/node_modules/bson/src/map.ts @@ -0,0 +1,119 @@ +/* eslint-disable @typescript-eslint/no-explicit-any */ +// We have an ES6 Map available, return the native instance + +import { getGlobal } from './utils/global'; + +/** @public */ +let bsonMap: MapConstructor; + +const bsonGlobal = getGlobal<{ Map?: MapConstructor }>(); +if (bsonGlobal.Map) { + bsonMap = bsonGlobal.Map; +} else { + // We will return a polyfill + bsonMap = class Map { + private _keys: string[]; + private _values: Record; + constructor(array: [string, any][] = []) { + this._keys = []; + this._values = {}; + + for (let i = 0; i < array.length; i++) { + if (array[i] == null) continue; // skip null and undefined + const entry = array[i]; + const key = entry[0]; + const value = entry[1]; + // Add the key to the list of keys in order + this._keys.push(key); + // Add the key and value to the values dictionary with a point + // to the location in the ordered keys list + this._values[key] = { v: value, i: this._keys.length - 1 }; + } + } + clear() { + this._keys = []; + this._values = {}; + } + delete(key: string) { + const value = this._values[key]; + if (value == null) return false; + // Delete entry + delete this._values[key]; + // Remove the key from the ordered keys list + this._keys.splice(value.i, 1); + return true; + } + entries() { + let index = 0; + + return { + next: () => { + const key = this._keys[index++]; + return { + value: key !== undefined ? [key, this._values[key].v] : undefined, + done: key !== undefined ? false : true + }; + } + }; + } + forEach(callback: (this: this, value: any, key: string, self: this) => void, self?: this) { + self = self || this; + + for (let i = 0; i < this._keys.length; i++) { + const key = this._keys[i]; + // Call the forEach callback + callback.call(self, this._values[key].v, key, self); + } + } + get(key: string) { + return this._values[key] ? this._values[key].v : undefined; + } + has(key: string) { + return this._values[key] != null; + } + keys() { + let index = 0; + + return { + next: () => { + const key = this._keys[index++]; + return { + value: key !== undefined ? key : undefined, + done: key !== undefined ? false : true + }; + } + }; + } + set(key: string, value: any) { + if (this._values[key]) { + this._values[key].v = value; + return this; + } + + // Add the key to the list of keys in order + this._keys.push(key); + // Add the key and value to the values dictionary with a point + // to the location in the ordered keys list + this._values[key] = { v: value, i: this._keys.length - 1 }; + return this; + } + values() { + let index = 0; + + return { + next: () => { + const key = this._keys[index++]; + return { + value: key !== undefined ? this._values[key].v : undefined, + done: key !== undefined ? false : true + }; + } + }; + } + get size() { + return this._keys.length; + } + } as unknown as MapConstructor; +} + +export { bsonMap as Map }; diff --git a/node_modules/bson/src/max_key.ts b/node_modules/bson/src/max_key.ts new file mode 100644 index 000000000..0ff3d3633 --- /dev/null +++ b/node_modules/bson/src/max_key.ts @@ -0,0 +1,38 @@ +/** @public */ +export interface MaxKeyExtended { + $maxKey: 1; +} + +/** + * A class representation of the BSON MaxKey type. + * @public + * @category BSONType + */ +export class MaxKey { + _bsontype!: 'MaxKey'; + + constructor() { + if (!(this instanceof MaxKey)) return new MaxKey(); + } + + /** @internal */ + toExtendedJSON(): MaxKeyExtended { + return { $maxKey: 1 }; + } + + /** @internal */ + static fromExtendedJSON(): MaxKey { + return new MaxKey(); + } + + /** @internal */ + [Symbol.for('nodejs.util.inspect.custom')](): string { + return this.inspect(); + } + + inspect(): string { + return 'new MaxKey()'; + } +} + +Object.defineProperty(MaxKey.prototype, '_bsontype', { value: 'MaxKey' }); diff --git a/node_modules/bson/src/min_key.ts b/node_modules/bson/src/min_key.ts new file mode 100644 index 000000000..f872b1eb1 --- /dev/null +++ b/node_modules/bson/src/min_key.ts @@ -0,0 +1,38 @@ +/** @public */ +export interface MinKeyExtended { + $minKey: 1; +} + +/** + * A class representation of the BSON MinKey type. + * @public + * @category BSONType + */ +export class MinKey { + _bsontype!: 'MinKey'; + + constructor() { + if (!(this instanceof MinKey)) return new MinKey(); + } + + /** @internal */ + toExtendedJSON(): MinKeyExtended { + return { $minKey: 1 }; + } + + /** @internal */ + static fromExtendedJSON(): MinKey { + return new MinKey(); + } + + /** @internal */ + [Symbol.for('nodejs.util.inspect.custom')](): string { + return this.inspect(); + } + + inspect(): string { + return 'new MinKey()'; + } +} + +Object.defineProperty(MinKey.prototype, '_bsontype', { value: 'MinKey' }); diff --git a/node_modules/bson/src/objectid.ts b/node_modules/bson/src/objectid.ts new file mode 100644 index 000000000..7bf012d7b --- /dev/null +++ b/node_modules/bson/src/objectid.ts @@ -0,0 +1,354 @@ +import { Buffer } from 'buffer'; +import { ensureBuffer } from './ensure_buffer'; +import { BSONTypeError } from './error'; +import { deprecate, isUint8Array, randomBytes } from './parser/utils'; + +// Regular expression that checks for hex value +const checkForHexRegExp = new RegExp('^[0-9a-fA-F]{24}$'); + +// Unique sequence for the current process (initialized on first use) +let PROCESS_UNIQUE: Uint8Array | null = null; + +/** @public */ +export interface ObjectIdLike { + id: string | Buffer; + __id?: string; + toHexString(): string; +} + +/** @public */ +export interface ObjectIdExtended { + $oid: string; +} + +const kId = Symbol('id'); + +/** + * A class representation of the BSON ObjectId type. + * @public + * @category BSONType + */ +export class ObjectId { + _bsontype!: 'ObjectID'; + + /** @internal */ + static index = Math.floor(Math.random() * 0xffffff); + + static cacheHexString: boolean; + + /** ObjectId Bytes @internal */ + private [kId]!: Buffer; + /** ObjectId hexString cache @internal */ + private __id?: string; + + /** + * Create an ObjectId type + * + * @param inputId - Can be a 24 character hex string, 12 byte binary Buffer, or a number. + */ + constructor(inputId?: string | number | ObjectId | ObjectIdLike | Buffer | Uint8Array) { + if (!(this instanceof ObjectId)) return new ObjectId(inputId); + + // workingId is set based on type of input and whether valid id exists for the input + let workingId; + if (typeof inputId === 'object' && inputId && 'id' in inputId) { + if (typeof inputId.id !== 'string' && !ArrayBuffer.isView(inputId.id)) { + throw new BSONTypeError( + 'Argument passed in must have an id that is of type string or Buffer' + ); + } + if ('toHexString' in inputId && typeof inputId.toHexString === 'function') { + workingId = Buffer.from(inputId.toHexString(), 'hex'); + } else { + workingId = inputId.id; + } + } else { + workingId = inputId; + } + + // the following cases use workingId to construct an ObjectId + if (workingId == null || typeof workingId === 'number') { + // The most common use case (blank id, new objectId instance) + // Generate a new id + this[kId] = ObjectId.generate(typeof workingId === 'number' ? workingId : undefined); + } else if (ArrayBuffer.isView(workingId) && workingId.byteLength === 12) { + // If intstanceof matches we can escape calling ensure buffer in Node.js environments + this[kId] = workingId instanceof Buffer ? workingId : ensureBuffer(workingId); + } else if (typeof workingId === 'string') { + if (workingId.length === 12) { + const bytes = Buffer.from(workingId); + if (bytes.byteLength === 12) { + this[kId] = bytes; + } else { + throw new BSONTypeError('Argument passed in must be a string of 12 bytes'); + } + } else if (workingId.length === 24 && checkForHexRegExp.test(workingId)) { + this[kId] = Buffer.from(workingId, 'hex'); + } else { + throw new BSONTypeError( + 'Argument passed in must be a string of 12 bytes or a string of 24 hex characters or an integer' + ); + } + } else { + throw new BSONTypeError('Argument passed in does not match the accepted types'); + } + // If we are caching the hex string + if (ObjectId.cacheHexString) { + this.__id = this.id.toString('hex'); + } + } + + /** + * The ObjectId bytes + * @readonly + */ + get id(): Buffer { + return this[kId]; + } + + set id(value: Buffer) { + this[kId] = value; + if (ObjectId.cacheHexString) { + this.__id = value.toString('hex'); + } + } + + /** + * The generation time of this ObjectId instance + * @deprecated Please use getTimestamp / createFromTime which returns an int32 epoch + */ + get generationTime(): number { + return this.id.readInt32BE(0); + } + + set generationTime(value: number) { + // Encode time into first 4 bytes + this.id.writeUInt32BE(value, 0); + } + + /** Returns the ObjectId id as a 24 character hex string representation */ + toHexString(): string { + if (ObjectId.cacheHexString && this.__id) { + return this.__id; + } + + const hexString = this.id.toString('hex'); + + if (ObjectId.cacheHexString && !this.__id) { + this.__id = hexString; + } + + return hexString; + } + + /** + * Update the ObjectId index + * @privateRemarks + * Used in generating new ObjectId's on the driver + * @internal + */ + static getInc(): number { + return (ObjectId.index = (ObjectId.index + 1) % 0xffffff); + } + + /** + * Generate a 12 byte id buffer used in ObjectId's + * + * @param time - pass in a second based timestamp. + */ + static generate(time?: number): Buffer { + if ('number' !== typeof time) { + time = Math.floor(Date.now() / 1000); + } + + const inc = ObjectId.getInc(); + const buffer = Buffer.alloc(12); + + // 4-byte timestamp + buffer.writeUInt32BE(time, 0); + + // set PROCESS_UNIQUE if yet not initialized + if (PROCESS_UNIQUE === null) { + PROCESS_UNIQUE = randomBytes(5); + } + + // 5-byte process unique + buffer[4] = PROCESS_UNIQUE[0]; + buffer[5] = PROCESS_UNIQUE[1]; + buffer[6] = PROCESS_UNIQUE[2]; + buffer[7] = PROCESS_UNIQUE[3]; + buffer[8] = PROCESS_UNIQUE[4]; + + // 3-byte counter + buffer[11] = inc & 0xff; + buffer[10] = (inc >> 8) & 0xff; + buffer[9] = (inc >> 16) & 0xff; + + return buffer; + } + + /** + * Converts the id into a 24 character hex string for printing + * + * @param format - The Buffer toString format parameter. + */ + toString(format?: string): string { + // Is the id a buffer then use the buffer toString method to return the format + if (format) return this.id.toString(format); + return this.toHexString(); + } + + /** Converts to its JSON the 24 character hex string representation. */ + toJSON(): string { + return this.toHexString(); + } + + /** + * Compares the equality of this ObjectId with `otherID`. + * + * @param otherId - ObjectId instance to compare against. + */ + equals(otherId: string | ObjectId | ObjectIdLike): boolean { + if (otherId === undefined || otherId === null) { + return false; + } + + if (otherId instanceof ObjectId) { + return this[kId][11] === otherId[kId][11] && this[kId].equals(otherId[kId]); + } + + if ( + typeof otherId === 'string' && + ObjectId.isValid(otherId) && + otherId.length === 12 && + isUint8Array(this.id) + ) { + return otherId === Buffer.prototype.toString.call(this.id, 'latin1'); + } + + if (typeof otherId === 'string' && ObjectId.isValid(otherId) && otherId.length === 24) { + return otherId.toLowerCase() === this.toHexString(); + } + + if (typeof otherId === 'string' && ObjectId.isValid(otherId) && otherId.length === 12) { + return Buffer.from(otherId).equals(this.id); + } + + if ( + typeof otherId === 'object' && + 'toHexString' in otherId && + typeof otherId.toHexString === 'function' + ) { + const otherIdString = otherId.toHexString(); + const thisIdString = this.toHexString().toLowerCase(); + return typeof otherIdString === 'string' && otherIdString.toLowerCase() === thisIdString; + } + + return false; + } + + /** Returns the generation date (accurate up to the second) that this ID was generated. */ + getTimestamp(): Date { + const timestamp = new Date(); + const time = this.id.readUInt32BE(0); + timestamp.setTime(Math.floor(time) * 1000); + return timestamp; + } + + /** @internal */ + static createPk(): ObjectId { + return new ObjectId(); + } + + /** + * Creates an ObjectId from a second based number, with the rest of the ObjectId zeroed out. Used for comparisons or sorting the ObjectId. + * + * @param time - an integer number representing a number of seconds. + */ + static createFromTime(time: number): ObjectId { + const buffer = Buffer.from([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]); + // Encode time into first 4 bytes + buffer.writeUInt32BE(time, 0); + // Return the new objectId + return new ObjectId(buffer); + } + + /** + * Creates an ObjectId from a hex string representation of an ObjectId. + * + * @param hexString - create a ObjectId from a passed in 24 character hexstring. + */ + static createFromHexString(hexString: string): ObjectId { + // Throw an error if it's not a valid setup + if (typeof hexString === 'undefined' || (hexString != null && hexString.length !== 24)) { + throw new BSONTypeError( + 'Argument passed in must be a single String of 12 bytes or a string of 24 hex characters' + ); + } + + return new ObjectId(Buffer.from(hexString, 'hex')); + } + + /** + * Checks if a value is a valid bson ObjectId + * + * @param id - ObjectId instance to validate. + */ + static isValid(id: string | number | ObjectId | ObjectIdLike | Buffer | Uint8Array): boolean { + if (id == null) return false; + + try { + new ObjectId(id); + return true; + } catch { + return false; + } + } + + /** @internal */ + toExtendedJSON(): ObjectIdExtended { + if (this.toHexString) return { $oid: this.toHexString() }; + return { $oid: this.toString('hex') }; + } + + /** @internal */ + static fromExtendedJSON(doc: ObjectIdExtended): ObjectId { + return new ObjectId(doc.$oid); + } + + /** + * Converts to a string representation of this Id. + * + * @returns return the 24 character hex string representation. + * @internal + */ + [Symbol.for('nodejs.util.inspect.custom')](): string { + return this.inspect(); + } + + inspect(): string { + return `new ObjectId("${this.toHexString()}")`; + } +} + +// Deprecated methods +Object.defineProperty(ObjectId.prototype, 'generate', { + value: deprecate( + (time: number) => ObjectId.generate(time), + 'Please use the static `ObjectId.generate(time)` instead' + ) +}); + +Object.defineProperty(ObjectId.prototype, 'getInc', { + value: deprecate(() => ObjectId.getInc(), 'Please use the static `ObjectId.getInc()` instead') +}); + +Object.defineProperty(ObjectId.prototype, 'get_inc', { + value: deprecate(() => ObjectId.getInc(), 'Please use the static `ObjectId.getInc()` instead') +}); + +Object.defineProperty(ObjectId, 'get_inc', { + value: deprecate(() => ObjectId.getInc(), 'Please use the static `ObjectId.getInc()` instead') +}); + +Object.defineProperty(ObjectId.prototype, '_bsontype', { value: 'ObjectID' }); diff --git a/node_modules/bson/src/parser/calculate_size.ts b/node_modules/bson/src/parser/calculate_size.ts new file mode 100644 index 000000000..cc7f431e6 --- /dev/null +++ b/node_modules/bson/src/parser/calculate_size.ts @@ -0,0 +1,228 @@ +import { Buffer } from 'buffer'; +import { Binary } from '../binary'; +import type { Document } from '../bson'; +import * as constants from '../constants'; +import { isAnyArrayBuffer, isDate, isRegExp, normalizedFunctionString } from './utils'; + +export function calculateObjectSize( + object: Document, + serializeFunctions?: boolean, + ignoreUndefined?: boolean +): number { + let totalLength = 4 + 1; + + if (Array.isArray(object)) { + for (let i = 0; i < object.length; i++) { + totalLength += calculateElement( + i.toString(), + object[i], + serializeFunctions, + true, + ignoreUndefined + ); + } + } else { + // If we have toBSON defined, override the current object + + if (typeof object?.toBSON === 'function') { + object = object.toBSON(); + } + + // Calculate size + for (const key in object) { + totalLength += calculateElement(key, object[key], serializeFunctions, false, ignoreUndefined); + } + } + + return totalLength; +} + +/** @internal */ +function calculateElement( + name: string, + // eslint-disable-next-line @typescript-eslint/no-explicit-any + value: any, + serializeFunctions = false, + isArray = false, + ignoreUndefined = false +) { + // If we have toBSON defined, override the current object + if (typeof value?.toBSON === 'function') { + value = value.toBSON(); + } + + switch (typeof value) { + case 'string': + return 1 + Buffer.byteLength(name, 'utf8') + 1 + 4 + Buffer.byteLength(value, 'utf8') + 1; + case 'number': + if ( + Math.floor(value) === value && + value >= constants.JS_INT_MIN && + value <= constants.JS_INT_MAX + ) { + if (value >= constants.BSON_INT32_MIN && value <= constants.BSON_INT32_MAX) { + // 32 bit + return (name != null ? Buffer.byteLength(name, 'utf8') + 1 : 0) + (4 + 1); + } else { + return (name != null ? Buffer.byteLength(name, 'utf8') + 1 : 0) + (8 + 1); + } + } else { + // 64 bit + return (name != null ? Buffer.byteLength(name, 'utf8') + 1 : 0) + (8 + 1); + } + case 'undefined': + if (isArray || !ignoreUndefined) + return (name != null ? Buffer.byteLength(name, 'utf8') + 1 : 0) + 1; + return 0; + case 'boolean': + return (name != null ? Buffer.byteLength(name, 'utf8') + 1 : 0) + (1 + 1); + case 'object': + if (value == null || value['_bsontype'] === 'MinKey' || value['_bsontype'] === 'MaxKey') { + return (name != null ? Buffer.byteLength(name, 'utf8') + 1 : 0) + 1; + } else if (value['_bsontype'] === 'ObjectId' || value['_bsontype'] === 'ObjectID') { + return (name != null ? Buffer.byteLength(name, 'utf8') + 1 : 0) + (12 + 1); + } else if (value instanceof Date || isDate(value)) { + return (name != null ? Buffer.byteLength(name, 'utf8') + 1 : 0) + (8 + 1); + } else if ( + ArrayBuffer.isView(value) || + value instanceof ArrayBuffer || + isAnyArrayBuffer(value) + ) { + return ( + (name != null ? Buffer.byteLength(name, 'utf8') + 1 : 0) + (1 + 4 + 1) + value.byteLength + ); + } else if ( + value['_bsontype'] === 'Long' || + value['_bsontype'] === 'Double' || + value['_bsontype'] === 'Timestamp' + ) { + return (name != null ? Buffer.byteLength(name, 'utf8') + 1 : 0) + (8 + 1); + } else if (value['_bsontype'] === 'Decimal128') { + return (name != null ? Buffer.byteLength(name, 'utf8') + 1 : 0) + (16 + 1); + } else if (value['_bsontype'] === 'Code') { + // Calculate size depending on the availability of a scope + if (value.scope != null && Object.keys(value.scope).length > 0) { + return ( + (name != null ? Buffer.byteLength(name, 'utf8') + 1 : 0) + + 1 + + 4 + + 4 + + Buffer.byteLength(value.code.toString(), 'utf8') + + 1 + + calculateObjectSize(value.scope, serializeFunctions, ignoreUndefined) + ); + } else { + return ( + (name != null ? Buffer.byteLength(name, 'utf8') + 1 : 0) + + 1 + + 4 + + Buffer.byteLength(value.code.toString(), 'utf8') + + 1 + ); + } + } else if (value['_bsontype'] === 'Binary') { + const binary: Binary = value; + // Check what kind of subtype we have + if (binary.sub_type === Binary.SUBTYPE_BYTE_ARRAY) { + return ( + (name != null ? Buffer.byteLength(name, 'utf8') + 1 : 0) + + (binary.position + 1 + 4 + 1 + 4) + ); + } else { + return ( + (name != null ? Buffer.byteLength(name, 'utf8') + 1 : 0) + (binary.position + 1 + 4 + 1) + ); + } + } else if (value['_bsontype'] === 'Symbol') { + return ( + (name != null ? Buffer.byteLength(name, 'utf8') + 1 : 0) + + Buffer.byteLength(value.value, 'utf8') + + 4 + + 1 + + 1 + ); + } else if (value['_bsontype'] === 'DBRef') { + // Set up correct object for serialization + const ordered_values = Object.assign( + { + $ref: value.collection, + $id: value.oid + }, + value.fields + ); + + // Add db reference if it exists + if (value.db != null) { + ordered_values['$db'] = value.db; + } + + return ( + (name != null ? Buffer.byteLength(name, 'utf8') + 1 : 0) + + 1 + + calculateObjectSize(ordered_values, serializeFunctions, ignoreUndefined) + ); + } else if (value instanceof RegExp || isRegExp(value)) { + return ( + (name != null ? Buffer.byteLength(name, 'utf8') + 1 : 0) + + 1 + + Buffer.byteLength(value.source, 'utf8') + + 1 + + (value.global ? 1 : 0) + + (value.ignoreCase ? 1 : 0) + + (value.multiline ? 1 : 0) + + 1 + ); + } else if (value['_bsontype'] === 'BSONRegExp') { + return ( + (name != null ? Buffer.byteLength(name, 'utf8') + 1 : 0) + + 1 + + Buffer.byteLength(value.pattern, 'utf8') + + 1 + + Buffer.byteLength(value.options, 'utf8') + + 1 + ); + } else { + return ( + (name != null ? Buffer.byteLength(name, 'utf8') + 1 : 0) + + calculateObjectSize(value, serializeFunctions, ignoreUndefined) + + 1 + ); + } + case 'function': + // WTF for 0.4.X where typeof /someregexp/ === 'function' + if (value instanceof RegExp || isRegExp(value) || String.call(value) === '[object RegExp]') { + return ( + (name != null ? Buffer.byteLength(name, 'utf8') + 1 : 0) + + 1 + + Buffer.byteLength(value.source, 'utf8') + + 1 + + (value.global ? 1 : 0) + + (value.ignoreCase ? 1 : 0) + + (value.multiline ? 1 : 0) + + 1 + ); + } else { + if (serializeFunctions && value.scope != null && Object.keys(value.scope).length > 0) { + return ( + (name != null ? Buffer.byteLength(name, 'utf8') + 1 : 0) + + 1 + + 4 + + 4 + + Buffer.byteLength(normalizedFunctionString(value), 'utf8') + + 1 + + calculateObjectSize(value.scope, serializeFunctions, ignoreUndefined) + ); + } else if (serializeFunctions) { + return ( + (name != null ? Buffer.byteLength(name, 'utf8') + 1 : 0) + + 1 + + 4 + + Buffer.byteLength(normalizedFunctionString(value), 'utf8') + + 1 + ); + } + } + } + + return 0; +} diff --git a/node_modules/bson/src/parser/deserializer.ts b/node_modules/bson/src/parser/deserializer.ts new file mode 100644 index 000000000..faef442f4 --- /dev/null +++ b/node_modules/bson/src/parser/deserializer.ts @@ -0,0 +1,782 @@ +import { Buffer } from 'buffer'; +import { Binary } from '../binary'; +import type { Document } from '../bson'; +import { Code } from '../code'; +import * as constants from '../constants'; +import { DBRef, DBRefLike, isDBRefLike } from '../db_ref'; +import { Decimal128 } from '../decimal128'; +import { Double } from '../double'; +import { BSONError } from '../error'; +import { Int32 } from '../int_32'; +import { Long } from '../long'; +import { MaxKey } from '../max_key'; +import { MinKey } from '../min_key'; +import { ObjectId } from '../objectid'; +import { BSONRegExp } from '../regexp'; +import { BSONSymbol } from '../symbol'; +import { Timestamp } from '../timestamp'; +import { validateUtf8 } from '../validate_utf8'; + +/** @public */ +export interface DeserializeOptions { + /** evaluate functions in the BSON document scoped to the object deserialized. */ + evalFunctions?: boolean; + /** cache evaluated functions for reuse. */ + cacheFunctions?: boolean; + /** + * use a crc32 code for caching, otherwise use the string of the function. + * @deprecated this option to use the crc32 function never worked as intended + * due to the fact that the crc32 function itself was never implemented. + * */ + cacheFunctionsCrc32?: boolean; + /** when deserializing a Long will fit it into a Number if it's smaller than 53 bits */ + promoteLongs?: boolean; + /** when deserializing a Binary will return it as a node.js Buffer instance. */ + promoteBuffers?: boolean; + /** when deserializing will promote BSON values to their Node.js closest equivalent types. */ + promoteValues?: boolean; + /** allow to specify if there what fields we wish to return as unserialized raw buffer. */ + fieldsAsRaw?: Document; + /** return BSON regular expressions as BSONRegExp instances. */ + bsonRegExp?: boolean; + /** allows the buffer to be larger than the parsed BSON object */ + allowObjectSmallerThanBufferSize?: boolean; + /** Offset into buffer to begin reading document from */ + index?: number; + + raw?: boolean; + /** Allows for opt-out utf-8 validation for all keys or + * specified keys. Must be all true or all false. + * + * @example + * ```js + * // disables validation on all keys + * validation: { utf8: false } + * + * // enables validation only on specified keys a, b, and c + * validation: { utf8: { a: true, b: true, c: true } } + * + * // disables validation only on specified keys a, b + * validation: { utf8: { a: false, b: false } } + * ``` + */ + validation?: { utf8: boolean | Record | Record }; +} + +// Internal long versions +const JS_INT_MAX_LONG = Long.fromNumber(constants.JS_INT_MAX); +const JS_INT_MIN_LONG = Long.fromNumber(constants.JS_INT_MIN); + +const functionCache: { [hash: string]: Function } = {}; + +export function deserialize( + buffer: Buffer, + options: DeserializeOptions, + isArray?: boolean +): Document { + options = options == null ? {} : options; + const index = options && options.index ? options.index : 0; + // Read the document size + const size = + buffer[index] | + (buffer[index + 1] << 8) | + (buffer[index + 2] << 16) | + (buffer[index + 3] << 24); + + if (size < 5) { + throw new BSONError(`bson size must be >= 5, is ${size}`); + } + + if (options.allowObjectSmallerThanBufferSize && buffer.length < size) { + throw new BSONError(`buffer length ${buffer.length} must be >= bson size ${size}`); + } + + if (!options.allowObjectSmallerThanBufferSize && buffer.length !== size) { + throw new BSONError(`buffer length ${buffer.length} must === bson size ${size}`); + } + + if (size + index > buffer.byteLength) { + throw new BSONError( + `(bson size ${size} + options.index ${index} must be <= buffer length ${buffer.byteLength})` + ); + } + + // Illegal end value + if (buffer[index + size - 1] !== 0) { + throw new BSONError( + "One object, sized correctly, with a spot for an EOO, but the EOO isn't 0x00" + ); + } + + // Start deserializtion + return deserializeObject(buffer, index, options, isArray); +} + +const allowedDBRefKeys = /^\$ref$|^\$id$|^\$db$/; + +function deserializeObject( + buffer: Buffer, + index: number, + options: DeserializeOptions, + isArray = false +) { + const evalFunctions = options['evalFunctions'] == null ? false : options['evalFunctions']; + const cacheFunctions = options['cacheFunctions'] == null ? false : options['cacheFunctions']; + + const fieldsAsRaw = options['fieldsAsRaw'] == null ? null : options['fieldsAsRaw']; + + // Return raw bson buffer instead of parsing it + const raw = options['raw'] == null ? false : options['raw']; + + // Return BSONRegExp objects instead of native regular expressions + const bsonRegExp = typeof options['bsonRegExp'] === 'boolean' ? options['bsonRegExp'] : false; + + // Controls the promotion of values vs wrapper classes + const promoteBuffers = options['promoteBuffers'] == null ? false : options['promoteBuffers']; + const promoteLongs = options['promoteLongs'] == null ? true : options['promoteLongs']; + const promoteValues = options['promoteValues'] == null ? true : options['promoteValues']; + + // Ensures default validation option if none given + const validation = options.validation == null ? { utf8: true } : options.validation; + + // Shows if global utf-8 validation is enabled or disabled + let globalUTFValidation = true; + // Reflects utf-8 validation setting regardless of global or specific key validation + let validationSetting: boolean; + // Set of keys either to enable or disable validation on + const utf8KeysSet = new Set(); + + // Check for boolean uniformity and empty validation option + const utf8ValidatedKeys = validation.utf8; + if (typeof utf8ValidatedKeys === 'boolean') { + validationSetting = utf8ValidatedKeys; + } else { + globalUTFValidation = false; + const utf8ValidationValues = Object.keys(utf8ValidatedKeys).map(function (key) { + return utf8ValidatedKeys[key]; + }); + if (utf8ValidationValues.length === 0) { + throw new BSONError('UTF-8 validation setting cannot be empty'); + } + if (typeof utf8ValidationValues[0] !== 'boolean') { + throw new BSONError('Invalid UTF-8 validation option, must specify boolean values'); + } + validationSetting = utf8ValidationValues[0]; + // Ensures boolean uniformity in utf-8 validation (all true or all false) + if (!utf8ValidationValues.every(item => item === validationSetting)) { + throw new BSONError('Invalid UTF-8 validation option - keys must be all true or all false'); + } + } + + // Add keys to set that will either be validated or not based on validationSetting + if (!globalUTFValidation) { + for (const key of Object.keys(utf8ValidatedKeys)) { + utf8KeysSet.add(key); + } + } + + // Set the start index + const startIndex = index; + + // Validate that we have at least 4 bytes of buffer + if (buffer.length < 5) throw new BSONError('corrupt bson message < 5 bytes long'); + + // Read the document size + const size = + buffer[index++] | (buffer[index++] << 8) | (buffer[index++] << 16) | (buffer[index++] << 24); + + // Ensure buffer is valid size + if (size < 5 || size > buffer.length) throw new BSONError('corrupt bson message'); + + // Create holding object + const object: Document = isArray ? [] : {}; + // Used for arrays to skip having to perform utf8 decoding + let arrayIndex = 0; + const done = false; + + let isPossibleDBRef = isArray ? false : null; + + // While we have more left data left keep parsing + const dataview = new DataView(buffer.buffer, buffer.byteOffset, buffer.byteLength); + while (!done) { + // Read the type + const elementType = buffer[index++]; + + // If we get a zero it's the last byte, exit + if (elementType === 0) break; + + // Get the start search index + let i = index; + // Locate the end of the c string + while (buffer[i] !== 0x00 && i < buffer.length) { + i++; + } + + // If are at the end of the buffer there is a problem with the document + if (i >= buffer.byteLength) throw new BSONError('Bad BSON Document: illegal CString'); + + // Represents the key + const name = isArray ? arrayIndex++ : buffer.toString('utf8', index, i); + + // shouldValidateKey is true if the key should be validated, false otherwise + let shouldValidateKey = true; + if (globalUTFValidation || utf8KeysSet.has(name)) { + shouldValidateKey = validationSetting; + } else { + shouldValidateKey = !validationSetting; + } + + if (isPossibleDBRef !== false && (name as string)[0] === '$') { + isPossibleDBRef = allowedDBRefKeys.test(name as string); + } + let value; + + index = i + 1; + + if (elementType === constants.BSON_DATA_STRING) { + const stringSize = + buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + if ( + stringSize <= 0 || + stringSize > buffer.length - index || + buffer[index + stringSize - 1] !== 0 + ) { + throw new BSONError('bad string length in bson'); + } + value = getValidatedString(buffer, index, index + stringSize - 1, shouldValidateKey); + index = index + stringSize; + } else if (elementType === constants.BSON_DATA_OID) { + const oid = Buffer.alloc(12); + buffer.copy(oid, 0, index, index + 12); + value = new ObjectId(oid); + index = index + 12; + } else if (elementType === constants.BSON_DATA_INT && promoteValues === false) { + value = new Int32( + buffer[index++] | (buffer[index++] << 8) | (buffer[index++] << 16) | (buffer[index++] << 24) + ); + } else if (elementType === constants.BSON_DATA_INT) { + value = + buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + } else if (elementType === constants.BSON_DATA_NUMBER && promoteValues === false) { + value = new Double(dataview.getFloat64(index, true)); + index = index + 8; + } else if (elementType === constants.BSON_DATA_NUMBER) { + value = dataview.getFloat64(index, true); + index = index + 8; + } else if (elementType === constants.BSON_DATA_DATE) { + const lowBits = + buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + const highBits = + buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + value = new Date(new Long(lowBits, highBits).toNumber()); + } else if (elementType === constants.BSON_DATA_BOOLEAN) { + if (buffer[index] !== 0 && buffer[index] !== 1) + throw new BSONError('illegal boolean type value'); + value = buffer[index++] === 1; + } else if (elementType === constants.BSON_DATA_OBJECT) { + const _index = index; + const objectSize = + buffer[index] | + (buffer[index + 1] << 8) | + (buffer[index + 2] << 16) | + (buffer[index + 3] << 24); + if (objectSize <= 0 || objectSize > buffer.length - index) + throw new BSONError('bad embedded document length in bson'); + + // We have a raw value + if (raw) { + value = buffer.slice(index, index + objectSize); + } else { + let objectOptions = options; + if (!globalUTFValidation) { + objectOptions = { ...options, validation: { utf8: shouldValidateKey } }; + } + value = deserializeObject(buffer, _index, objectOptions, false); + } + + index = index + objectSize; + } else if (elementType === constants.BSON_DATA_ARRAY) { + const _index = index; + const objectSize = + buffer[index] | + (buffer[index + 1] << 8) | + (buffer[index + 2] << 16) | + (buffer[index + 3] << 24); + let arrayOptions = options; + + // Stop index + const stopIndex = index + objectSize; + + // All elements of array to be returned as raw bson + if (fieldsAsRaw && fieldsAsRaw[name]) { + arrayOptions = {}; + for (const n in options) { + ( + arrayOptions as { + [key: string]: DeserializeOptions[keyof DeserializeOptions]; + } + )[n] = options[n as keyof DeserializeOptions]; + } + arrayOptions['raw'] = true; + } + if (!globalUTFValidation) { + arrayOptions = { ...arrayOptions, validation: { utf8: shouldValidateKey } }; + } + value = deserializeObject(buffer, _index, arrayOptions, true); + index = index + objectSize; + + if (buffer[index - 1] !== 0) throw new BSONError('invalid array terminator byte'); + if (index !== stopIndex) throw new BSONError('corrupted array bson'); + } else if (elementType === constants.BSON_DATA_UNDEFINED) { + value = undefined; + } else if (elementType === constants.BSON_DATA_NULL) { + value = null; + } else if (elementType === constants.BSON_DATA_LONG) { + // Unpack the low and high bits + const lowBits = + buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + const highBits = + buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + const long = new Long(lowBits, highBits); + // Promote the long if possible + if (promoteLongs && promoteValues === true) { + value = + long.lessThanOrEqual(JS_INT_MAX_LONG) && long.greaterThanOrEqual(JS_INT_MIN_LONG) + ? long.toNumber() + : long; + } else { + value = long; + } + } else if (elementType === constants.BSON_DATA_DECIMAL128) { + // Buffer to contain the decimal bytes + const bytes = Buffer.alloc(16); + // Copy the next 16 bytes into the bytes buffer + buffer.copy(bytes, 0, index, index + 16); + // Update index + index = index + 16; + // Assign the new Decimal128 value + const decimal128 = new Decimal128(bytes) as Decimal128 | { toObject(): unknown }; + // If we have an alternative mapper use that + if ('toObject' in decimal128 && typeof decimal128.toObject === 'function') { + value = decimal128.toObject(); + } else { + value = decimal128; + } + } else if (elementType === constants.BSON_DATA_BINARY) { + let binarySize = + buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + const totalBinarySize = binarySize; + const subType = buffer[index++]; + + // Did we have a negative binary size, throw + if (binarySize < 0) throw new BSONError('Negative binary type element size found'); + + // Is the length longer than the document + if (binarySize > buffer.byteLength) + throw new BSONError('Binary type size larger than document size'); + + // Decode as raw Buffer object if options specifies it + if (buffer['slice'] != null) { + // If we have subtype 2 skip the 4 bytes for the size + if (subType === Binary.SUBTYPE_BYTE_ARRAY) { + binarySize = + buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + if (binarySize < 0) + throw new BSONError('Negative binary type element size found for subtype 0x02'); + if (binarySize > totalBinarySize - 4) + throw new BSONError('Binary type with subtype 0x02 contains too long binary size'); + if (binarySize < totalBinarySize - 4) + throw new BSONError('Binary type with subtype 0x02 contains too short binary size'); + } + + if (promoteBuffers && promoteValues) { + value = buffer.slice(index, index + binarySize); + } else { + value = new Binary(buffer.slice(index, index + binarySize), subType); + if (subType === constants.BSON_BINARY_SUBTYPE_UUID_NEW) { + value = value.toUUID(); + } + } + } else { + const _buffer = Buffer.alloc(binarySize); + // If we have subtype 2 skip the 4 bytes for the size + if (subType === Binary.SUBTYPE_BYTE_ARRAY) { + binarySize = + buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + if (binarySize < 0) + throw new BSONError('Negative binary type element size found for subtype 0x02'); + if (binarySize > totalBinarySize - 4) + throw new BSONError('Binary type with subtype 0x02 contains too long binary size'); + if (binarySize < totalBinarySize - 4) + throw new BSONError('Binary type with subtype 0x02 contains too short binary size'); + } + + // Copy the data + for (i = 0; i < binarySize; i++) { + _buffer[i] = buffer[index + i]; + } + + if (promoteBuffers && promoteValues) { + value = _buffer; + } else if (subType === constants.BSON_BINARY_SUBTYPE_UUID_NEW) { + value = new Binary(buffer.slice(index, index + binarySize), subType).toUUID(); + } else { + value = new Binary(buffer.slice(index, index + binarySize), subType); + } + } + + // Update the index + index = index + binarySize; + } else if (elementType === constants.BSON_DATA_REGEXP && bsonRegExp === false) { + // Get the start search index + i = index; + // Locate the end of the c string + while (buffer[i] !== 0x00 && i < buffer.length) { + i++; + } + // If are at the end of the buffer there is a problem with the document + if (i >= buffer.length) throw new BSONError('Bad BSON Document: illegal CString'); + // Return the C string + const source = buffer.toString('utf8', index, i); + // Create the regexp + index = i + 1; + + // Get the start search index + i = index; + // Locate the end of the c string + while (buffer[i] !== 0x00 && i < buffer.length) { + i++; + } + // If are at the end of the buffer there is a problem with the document + if (i >= buffer.length) throw new BSONError('Bad BSON Document: illegal CString'); + // Return the C string + const regExpOptions = buffer.toString('utf8', index, i); + index = i + 1; + + // For each option add the corresponding one for javascript + const optionsArray = new Array(regExpOptions.length); + + // Parse options + for (i = 0; i < regExpOptions.length; i++) { + switch (regExpOptions[i]) { + case 'm': + optionsArray[i] = 'm'; + break; + case 's': + optionsArray[i] = 'g'; + break; + case 'i': + optionsArray[i] = 'i'; + break; + } + } + + value = new RegExp(source, optionsArray.join('')); + } else if (elementType === constants.BSON_DATA_REGEXP && bsonRegExp === true) { + // Get the start search index + i = index; + // Locate the end of the c string + while (buffer[i] !== 0x00 && i < buffer.length) { + i++; + } + // If are at the end of the buffer there is a problem with the document + if (i >= buffer.length) throw new BSONError('Bad BSON Document: illegal CString'); + // Return the C string + const source = buffer.toString('utf8', index, i); + index = i + 1; + + // Get the start search index + i = index; + // Locate the end of the c string + while (buffer[i] !== 0x00 && i < buffer.length) { + i++; + } + // If are at the end of the buffer there is a problem with the document + if (i >= buffer.length) throw new BSONError('Bad BSON Document: illegal CString'); + // Return the C string + const regExpOptions = buffer.toString('utf8', index, i); + index = i + 1; + + // Set the object + value = new BSONRegExp(source, regExpOptions); + } else if (elementType === constants.BSON_DATA_SYMBOL) { + const stringSize = + buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + if ( + stringSize <= 0 || + stringSize > buffer.length - index || + buffer[index + stringSize - 1] !== 0 + ) { + throw new BSONError('bad string length in bson'); + } + const symbol = getValidatedString(buffer, index, index + stringSize - 1, shouldValidateKey); + value = promoteValues ? symbol : new BSONSymbol(symbol); + index = index + stringSize; + } else if (elementType === constants.BSON_DATA_TIMESTAMP) { + const lowBits = + buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + const highBits = + buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + + value = new Timestamp(lowBits, highBits); + } else if (elementType === constants.BSON_DATA_MIN_KEY) { + value = new MinKey(); + } else if (elementType === constants.BSON_DATA_MAX_KEY) { + value = new MaxKey(); + } else if (elementType === constants.BSON_DATA_CODE) { + const stringSize = + buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + if ( + stringSize <= 0 || + stringSize > buffer.length - index || + buffer[index + stringSize - 1] !== 0 + ) { + throw new BSONError('bad string length in bson'); + } + const functionString = getValidatedString( + buffer, + index, + index + stringSize - 1, + shouldValidateKey + ); + + // If we are evaluating the functions + if (evalFunctions) { + // If we have cache enabled let's look for the md5 of the function in the cache + if (cacheFunctions) { + // Got to do this to avoid V8 deoptimizing the call due to finding eval + value = isolateEval(functionString, functionCache, object); + } else { + value = isolateEval(functionString); + } + } else { + value = new Code(functionString); + } + + // Update parse index position + index = index + stringSize; + } else if (elementType === constants.BSON_DATA_CODE_W_SCOPE) { + const totalSize = + buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + + // Element cannot be shorter than totalSize + stringSize + documentSize + terminator + if (totalSize < 4 + 4 + 4 + 1) { + throw new BSONError('code_w_scope total size shorter minimum expected length'); + } + + // Get the code string size + const stringSize = + buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + // Check if we have a valid string + if ( + stringSize <= 0 || + stringSize > buffer.length - index || + buffer[index + stringSize - 1] !== 0 + ) { + throw new BSONError('bad string length in bson'); + } + + // Javascript function + const functionString = getValidatedString( + buffer, + index, + index + stringSize - 1, + shouldValidateKey + ); + // Update parse index position + index = index + stringSize; + // Parse the element + const _index = index; + // Decode the size of the object document + const objectSize = + buffer[index] | + (buffer[index + 1] << 8) | + (buffer[index + 2] << 16) | + (buffer[index + 3] << 24); + // Decode the scope object + const scopeObject = deserializeObject(buffer, _index, options, false); + // Adjust the index + index = index + objectSize; + + // Check if field length is too short + if (totalSize < 4 + 4 + objectSize + stringSize) { + throw new BSONError('code_w_scope total size is too short, truncating scope'); + } + + // Check if totalSize field is too long + if (totalSize > 4 + 4 + objectSize + stringSize) { + throw new BSONError('code_w_scope total size is too long, clips outer document'); + } + + // If we are evaluating the functions + if (evalFunctions) { + // If we have cache enabled let's look for the md5 of the function in the cache + if (cacheFunctions) { + // Got to do this to avoid V8 deoptimizing the call due to finding eval + value = isolateEval(functionString, functionCache, object); + } else { + value = isolateEval(functionString); + } + + value.scope = scopeObject; + } else { + value = new Code(functionString, scopeObject); + } + } else if (elementType === constants.BSON_DATA_DBPOINTER) { + // Get the code string size + const stringSize = + buffer[index++] | + (buffer[index++] << 8) | + (buffer[index++] << 16) | + (buffer[index++] << 24); + // Check if we have a valid string + if ( + stringSize <= 0 || + stringSize > buffer.length - index || + buffer[index + stringSize - 1] !== 0 + ) + throw new BSONError('bad string length in bson'); + // Namespace + if (validation != null && validation.utf8) { + if (!validateUtf8(buffer, index, index + stringSize - 1)) { + throw new BSONError('Invalid UTF-8 string in BSON document'); + } + } + const namespace = buffer.toString('utf8', index, index + stringSize - 1); + // Update parse index position + index = index + stringSize; + + // Read the oid + const oidBuffer = Buffer.alloc(12); + buffer.copy(oidBuffer, 0, index, index + 12); + const oid = new ObjectId(oidBuffer); + + // Update the index + index = index + 12; + + // Upgrade to DBRef type + value = new DBRef(namespace, oid); + } else { + throw new BSONError( + `Detected unknown BSON type ${elementType.toString(16)} for fieldname "${name}"` + ); + } + if (name === '__proto__') { + Object.defineProperty(object, name, { + value, + writable: true, + enumerable: true, + configurable: true + }); + } else { + object[name] = value; + } + } + + // Check if the deserialization was against a valid array/object + if (size !== index - startIndex) { + if (isArray) throw new BSONError('corrupt array bson'); + throw new BSONError('corrupt object bson'); + } + + // if we did not find "$ref", "$id", "$db", or found an extraneous $key, don't make a DBRef + if (!isPossibleDBRef) return object; + + if (isDBRefLike(object)) { + const copy = Object.assign({}, object) as Partial; + delete copy.$ref; + delete copy.$id; + delete copy.$db; + return new DBRef(object.$ref, object.$id, object.$db, copy); + } + + return object; +} + +/** + * Ensure eval is isolated, store the result in functionCache. + * + * @internal + */ +function isolateEval( + functionString: string, + functionCache?: { [hash: string]: Function }, + object?: Document +) { + // eslint-disable-next-line @typescript-eslint/no-implied-eval + if (!functionCache) return new Function(functionString); + // Check for cache hit, eval if missing and return cached function + if (functionCache[functionString] == null) { + // eslint-disable-next-line @typescript-eslint/no-implied-eval + functionCache[functionString] = new Function(functionString); + } + + // Set the object + return functionCache[functionString].bind(object); +} + +function getValidatedString( + buffer: Buffer, + start: number, + end: number, + shouldValidateUtf8: boolean +) { + const value = buffer.toString('utf8', start, end); + // if utf8 validation is on, do the check + if (shouldValidateUtf8) { + for (let i = 0; i < value.length; i++) { + if (value.charCodeAt(i) === 0xfffd) { + if (!validateUtf8(buffer, start, end)) { + throw new BSONError('Invalid UTF-8 string in BSON document'); + } + break; + } + } + } + return value; +} diff --git a/node_modules/bson/src/parser/serializer.ts b/node_modules/bson/src/parser/serializer.ts new file mode 100644 index 000000000..e76402aa3 --- /dev/null +++ b/node_modules/bson/src/parser/serializer.ts @@ -0,0 +1,1076 @@ +import type { Buffer } from 'buffer'; +import { Binary } from '../binary'; +import type { BSONSymbol, DBRef, Document, MaxKey } from '../bson'; +import type { Code } from '../code'; +import * as constants from '../constants'; +import type { DBRefLike } from '../db_ref'; +import type { Decimal128 } from '../decimal128'; +import type { Double } from '../double'; +import { ensureBuffer } from '../ensure_buffer'; +import { BSONError, BSONTypeError } from '../error'; +import { isBSONType } from '../extended_json'; +import type { Int32 } from '../int_32'; +import { Long } from '../long'; +import { Map } from '../map'; +import type { MinKey } from '../min_key'; +import type { ObjectId } from '../objectid'; +import type { BSONRegExp } from '../regexp'; +import { + isBigInt64Array, + isBigUInt64Array, + isDate, + isMap, + isRegExp, + isUint8Array, + normalizedFunctionString +} from './utils'; + +/** @public */ +export interface SerializeOptions { + /** the serializer will check if keys are valid. */ + checkKeys?: boolean; + /** serialize the javascript functions **(default:false)**. */ + serializeFunctions?: boolean; + /** serialize will not emit undefined fields **(default:true)** */ + ignoreUndefined?: boolean; + /** @internal Resize internal buffer */ + minInternalBufferSize?: number; + /** the index in the buffer where we wish to start serializing into */ + index?: number; +} + +const regexp = /\x00/; // eslint-disable-line no-control-regex +const ignoreKeys = new Set(['$db', '$ref', '$id', '$clusterTime']); + +/* + * isArray indicates if we are writing to a BSON array (type 0x04) + * which forces the "key" which really an array index as a string to be written as ascii + * This will catch any errors in index as a string generation + */ + +function serializeString( + buffer: Buffer, + key: string, + value: string, + index: number, + isArray?: boolean +) { + // Encode String type + buffer[index++] = constants.BSON_DATA_STRING; + // Number of written bytes + const numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes + 1; + buffer[index - 1] = 0; + // Write the string + const size = buffer.write(value, index + 4, undefined, 'utf8'); + // Write the size of the string to buffer + buffer[index + 3] = ((size + 1) >> 24) & 0xff; + buffer[index + 2] = ((size + 1) >> 16) & 0xff; + buffer[index + 1] = ((size + 1) >> 8) & 0xff; + buffer[index] = (size + 1) & 0xff; + // Update index + index = index + 4 + size; + // Write zero + buffer[index++] = 0; + return index; +} + +const SPACE_FOR_FLOAT64 = new Uint8Array(8); +const DV_FOR_FLOAT64 = new DataView( + SPACE_FOR_FLOAT64.buffer, + SPACE_FOR_FLOAT64.byteOffset, + SPACE_FOR_FLOAT64.byteLength +); +function serializeNumber( + buffer: Buffer, + key: string, + value: number, + index: number, + isArray?: boolean +) { + // We have an integer value + // TODO(NODE-2529): Add support for big int + if ( + Number.isInteger(value) && + value >= constants.BSON_INT32_MIN && + value <= constants.BSON_INT32_MAX + ) { + // If the value fits in 32 bits encode as int32 + // Set int type 32 bits or less + buffer[index++] = constants.BSON_DATA_INT; + // Number of written bytes + const numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Write the int value + buffer[index++] = value & 0xff; + buffer[index++] = (value >> 8) & 0xff; + buffer[index++] = (value >> 16) & 0xff; + buffer[index++] = (value >> 24) & 0xff; + } else { + // Encode as double + buffer[index++] = constants.BSON_DATA_NUMBER; + // Number of written bytes + const numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Write float + DV_FOR_FLOAT64.setFloat64(0, value, true); + buffer.set(SPACE_FOR_FLOAT64, index); + // Adjust index + index = index + 8; + } + + return index; +} + +function serializeNull(buffer: Buffer, key: string, _: unknown, index: number, isArray?: boolean) { + // Set long type + buffer[index++] = constants.BSON_DATA_NULL; + + // Number of written bytes + const numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + return index; +} + +function serializeBoolean( + buffer: Buffer, + key: string, + value: boolean, + index: number, + isArray?: boolean +) { + // Write the type + buffer[index++] = constants.BSON_DATA_BOOLEAN; + // Number of written bytes + const numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Encode the boolean value + buffer[index++] = value ? 1 : 0; + return index; +} + +function serializeDate(buffer: Buffer, key: string, value: Date, index: number, isArray?: boolean) { + // Write the type + buffer[index++] = constants.BSON_DATA_DATE; + // Number of written bytes + const numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + + // Write the date + const dateInMilis = Long.fromNumber(value.getTime()); + const lowBits = dateInMilis.getLowBits(); + const highBits = dateInMilis.getHighBits(); + // Encode low bits + buffer[index++] = lowBits & 0xff; + buffer[index++] = (lowBits >> 8) & 0xff; + buffer[index++] = (lowBits >> 16) & 0xff; + buffer[index++] = (lowBits >> 24) & 0xff; + // Encode high bits + buffer[index++] = highBits & 0xff; + buffer[index++] = (highBits >> 8) & 0xff; + buffer[index++] = (highBits >> 16) & 0xff; + buffer[index++] = (highBits >> 24) & 0xff; + return index; +} + +function serializeRegExp( + buffer: Buffer, + key: string, + value: RegExp, + index: number, + isArray?: boolean +) { + // Write the type + buffer[index++] = constants.BSON_DATA_REGEXP; + // Number of written bytes + const numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + if (value.source && value.source.match(regexp) != null) { + throw Error('value ' + value.source + ' must not contain null bytes'); + } + // Adjust the index + index = index + buffer.write(value.source, index, undefined, 'utf8'); + // Write zero + buffer[index++] = 0x00; + // Write the parameters + if (value.ignoreCase) buffer[index++] = 0x69; // i + if (value.global) buffer[index++] = 0x73; // s + if (value.multiline) buffer[index++] = 0x6d; // m + + // Add ending zero + buffer[index++] = 0x00; + return index; +} + +function serializeBSONRegExp( + buffer: Buffer, + key: string, + value: BSONRegExp, + index: number, + isArray?: boolean +) { + // Write the type + buffer[index++] = constants.BSON_DATA_REGEXP; + // Number of written bytes + const numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + + // Check the pattern for 0 bytes + if (value.pattern.match(regexp) != null) { + // The BSON spec doesn't allow keys with null bytes because keys are + // null-terminated. + throw Error('pattern ' + value.pattern + ' must not contain null bytes'); + } + + // Adjust the index + index = index + buffer.write(value.pattern, index, undefined, 'utf8'); + // Write zero + buffer[index++] = 0x00; + // Write the options + index = index + buffer.write(value.options.split('').sort().join(''), index, undefined, 'utf8'); + // Add ending zero + buffer[index++] = 0x00; + return index; +} + +function serializeMinMax( + buffer: Buffer, + key: string, + value: MinKey | MaxKey, + index: number, + isArray?: boolean +) { + // Write the type of either min or max key + if (value === null) { + buffer[index++] = constants.BSON_DATA_NULL; + } else if (value._bsontype === 'MinKey') { + buffer[index++] = constants.BSON_DATA_MIN_KEY; + } else { + buffer[index++] = constants.BSON_DATA_MAX_KEY; + } + + // Number of written bytes + const numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + return index; +} + +function serializeObjectId( + buffer: Buffer, + key: string, + value: ObjectId, + index: number, + isArray?: boolean +) { + // Write the type + buffer[index++] = constants.BSON_DATA_OID; + // Number of written bytes + const numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + + // Write the objectId into the shared buffer + if (typeof value.id === 'string') { + buffer.write(value.id, index, undefined, 'binary'); + } else if (isUint8Array(value.id)) { + // Use the standard JS methods here because buffer.copy() is buggy with the + // browser polyfill + buffer.set(value.id.subarray(0, 12), index); + } else { + throw new BSONTypeError('object [' + JSON.stringify(value) + '] is not a valid ObjectId'); + } + + // Adjust index + return index + 12; +} + +function serializeBuffer( + buffer: Buffer, + key: string, + value: Buffer | Uint8Array, + index: number, + isArray?: boolean +) { + // Write the type + buffer[index++] = constants.BSON_DATA_BINARY; + // Number of written bytes + const numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Get size of the buffer (current write point) + const size = value.length; + // Write the size of the string to buffer + buffer[index++] = size & 0xff; + buffer[index++] = (size >> 8) & 0xff; + buffer[index++] = (size >> 16) & 0xff; + buffer[index++] = (size >> 24) & 0xff; + // Write the default subtype + buffer[index++] = constants.BSON_BINARY_SUBTYPE_DEFAULT; + // Copy the content form the binary field to the buffer + buffer.set(ensureBuffer(value), index); + // Adjust the index + index = index + size; + return index; +} + +function serializeObject( + buffer: Buffer, + key: string, + value: Document, + index: number, + checkKeys = false, + depth = 0, + serializeFunctions = false, + ignoreUndefined = true, + isArray = false, + path: Document[] = [] +) { + for (let i = 0; i < path.length; i++) { + if (path[i] === value) throw new BSONError('cyclic dependency detected'); + } + + // Push value to stack + path.push(value); + // Write the type + buffer[index++] = Array.isArray(value) ? constants.BSON_DATA_ARRAY : constants.BSON_DATA_OBJECT; + // Number of written bytes + const numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + const endIndex = serializeInto( + buffer, + value, + checkKeys, + index, + depth + 1, + serializeFunctions, + ignoreUndefined, + path + ); + // Pop stack + path.pop(); + return endIndex; +} + +function serializeDecimal128( + buffer: Buffer, + key: string, + value: Decimal128, + index: number, + isArray?: boolean +) { + buffer[index++] = constants.BSON_DATA_DECIMAL128; + // Number of written bytes + const numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Write the data from the value + // Prefer the standard JS methods because their typechecking is not buggy, + // unlike the `buffer` polyfill's. + buffer.set(value.bytes.subarray(0, 16), index); + return index + 16; +} + +function serializeLong(buffer: Buffer, key: string, value: Long, index: number, isArray?: boolean) { + // Write the type + buffer[index++] = + value._bsontype === 'Long' ? constants.BSON_DATA_LONG : constants.BSON_DATA_TIMESTAMP; + // Number of written bytes + const numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Write the date + const lowBits = value.getLowBits(); + const highBits = value.getHighBits(); + // Encode low bits + buffer[index++] = lowBits & 0xff; + buffer[index++] = (lowBits >> 8) & 0xff; + buffer[index++] = (lowBits >> 16) & 0xff; + buffer[index++] = (lowBits >> 24) & 0xff; + // Encode high bits + buffer[index++] = highBits & 0xff; + buffer[index++] = (highBits >> 8) & 0xff; + buffer[index++] = (highBits >> 16) & 0xff; + buffer[index++] = (highBits >> 24) & 0xff; + return index; +} + +function serializeInt32( + buffer: Buffer, + key: string, + value: Int32 | number, + index: number, + isArray?: boolean +) { + value = value.valueOf(); + // Set int type 32 bits or less + buffer[index++] = constants.BSON_DATA_INT; + // Number of written bytes + const numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Write the int value + buffer[index++] = value & 0xff; + buffer[index++] = (value >> 8) & 0xff; + buffer[index++] = (value >> 16) & 0xff; + buffer[index++] = (value >> 24) & 0xff; + return index; +} + +function serializeDouble( + buffer: Buffer, + key: string, + value: Double, + index: number, + isArray?: boolean +) { + // Encode as double + buffer[index++] = constants.BSON_DATA_NUMBER; + + // Number of written bytes + const numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + + // Write float + DV_FOR_FLOAT64.setFloat64(0, value.value, true); + buffer.set(SPACE_FOR_FLOAT64, index); + + // Adjust index + index = index + 8; + return index; +} + +function serializeFunction( + buffer: Buffer, + key: string, + value: Function, + index: number, + _checkKeys = false, + _depth = 0, + isArray?: boolean +) { + buffer[index++] = constants.BSON_DATA_CODE; + // Number of written bytes + const numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Function string + const functionString = normalizedFunctionString(value); + + // Write the string + const size = buffer.write(functionString, index + 4, undefined, 'utf8') + 1; + // Write the size of the string to buffer + buffer[index] = size & 0xff; + buffer[index + 1] = (size >> 8) & 0xff; + buffer[index + 2] = (size >> 16) & 0xff; + buffer[index + 3] = (size >> 24) & 0xff; + // Update index + index = index + 4 + size - 1; + // Write zero + buffer[index++] = 0; + return index; +} + +function serializeCode( + buffer: Buffer, + key: string, + value: Code, + index: number, + checkKeys = false, + depth = 0, + serializeFunctions = false, + ignoreUndefined = true, + isArray = false +) { + if (value.scope && typeof value.scope === 'object') { + // Write the type + buffer[index++] = constants.BSON_DATA_CODE_W_SCOPE; + // Number of written bytes + const numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + + // Starting index + let startIndex = index; + + // Serialize the function + // Get the function string + const functionString = typeof value.code === 'string' ? value.code : value.code.toString(); + // Index adjustment + index = index + 4; + // Write string into buffer + const codeSize = buffer.write(functionString, index + 4, undefined, 'utf8') + 1; + // Write the size of the string to buffer + buffer[index] = codeSize & 0xff; + buffer[index + 1] = (codeSize >> 8) & 0xff; + buffer[index + 2] = (codeSize >> 16) & 0xff; + buffer[index + 3] = (codeSize >> 24) & 0xff; + // Write end 0 + buffer[index + 4 + codeSize - 1] = 0; + // Write the + index = index + codeSize + 4; + + // + // Serialize the scope value + const endIndex = serializeInto( + buffer, + value.scope, + checkKeys, + index, + depth + 1, + serializeFunctions, + ignoreUndefined + ); + index = endIndex - 1; + + // Writ the total + const totalSize = endIndex - startIndex; + + // Write the total size of the object + buffer[startIndex++] = totalSize & 0xff; + buffer[startIndex++] = (totalSize >> 8) & 0xff; + buffer[startIndex++] = (totalSize >> 16) & 0xff; + buffer[startIndex++] = (totalSize >> 24) & 0xff; + // Write trailing zero + buffer[index++] = 0; + } else { + buffer[index++] = constants.BSON_DATA_CODE; + // Number of written bytes + const numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Function string + const functionString = value.code.toString(); + // Write the string + const size = buffer.write(functionString, index + 4, undefined, 'utf8') + 1; + // Write the size of the string to buffer + buffer[index] = size & 0xff; + buffer[index + 1] = (size >> 8) & 0xff; + buffer[index + 2] = (size >> 16) & 0xff; + buffer[index + 3] = (size >> 24) & 0xff; + // Update index + index = index + 4 + size - 1; + // Write zero + buffer[index++] = 0; + } + + return index; +} + +function serializeBinary( + buffer: Buffer, + key: string, + value: Binary, + index: number, + isArray?: boolean +) { + // Write the type + buffer[index++] = constants.BSON_DATA_BINARY; + // Number of written bytes + const numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Extract the buffer + const data = value.value(true) as Buffer | Uint8Array; + // Calculate size + let size = value.position; + // Add the deprecated 02 type 4 bytes of size to total + if (value.sub_type === Binary.SUBTYPE_BYTE_ARRAY) size = size + 4; + // Write the size of the string to buffer + buffer[index++] = size & 0xff; + buffer[index++] = (size >> 8) & 0xff; + buffer[index++] = (size >> 16) & 0xff; + buffer[index++] = (size >> 24) & 0xff; + // Write the subtype to the buffer + buffer[index++] = value.sub_type; + + // If we have binary type 2 the 4 first bytes are the size + if (value.sub_type === Binary.SUBTYPE_BYTE_ARRAY) { + size = size - 4; + buffer[index++] = size & 0xff; + buffer[index++] = (size >> 8) & 0xff; + buffer[index++] = (size >> 16) & 0xff; + buffer[index++] = (size >> 24) & 0xff; + } + + // Write the data to the object + buffer.set(data, index); + // Adjust the index + index = index + value.position; + return index; +} + +function serializeSymbol( + buffer: Buffer, + key: string, + value: BSONSymbol, + index: number, + isArray?: boolean +) { + // Write the type + buffer[index++] = constants.BSON_DATA_SYMBOL; + // Number of written bytes + const numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + // Write the string + const size = buffer.write(value.value, index + 4, undefined, 'utf8') + 1; + // Write the size of the string to buffer + buffer[index] = size & 0xff; + buffer[index + 1] = (size >> 8) & 0xff; + buffer[index + 2] = (size >> 16) & 0xff; + buffer[index + 3] = (size >> 24) & 0xff; + // Update index + index = index + 4 + size - 1; + // Write zero + buffer[index++] = 0x00; + return index; +} + +function serializeDBRef( + buffer: Buffer, + key: string, + value: DBRef, + index: number, + depth: number, + serializeFunctions: boolean, + isArray?: boolean +) { + // Write the type + buffer[index++] = constants.BSON_DATA_OBJECT; + // Number of written bytes + const numberOfWrittenBytes = !isArray + ? buffer.write(key, index, undefined, 'utf8') + : buffer.write(key, index, undefined, 'ascii'); + + // Encode the name + index = index + numberOfWrittenBytes; + buffer[index++] = 0; + + let startIndex = index; + let output: DBRefLike = { + $ref: value.collection || value.namespace, // "namespace" was what library 1.x called "collection" + $id: value.oid + }; + + if (value.db != null) { + output.$db = value.db; + } + + output = Object.assign(output, value.fields); + const endIndex = serializeInto(buffer, output, false, index, depth + 1, serializeFunctions); + + // Calculate object size + const size = endIndex - startIndex; + // Write the size + buffer[startIndex++] = size & 0xff; + buffer[startIndex++] = (size >> 8) & 0xff; + buffer[startIndex++] = (size >> 16) & 0xff; + buffer[startIndex++] = (size >> 24) & 0xff; + // Set index + return endIndex; +} + +export function serializeInto( + buffer: Buffer, + object: Document, + checkKeys = false, + startingIndex = 0, + depth = 0, + serializeFunctions = false, + ignoreUndefined = true, + path: Document[] = [] +): number { + startingIndex = startingIndex || 0; + path = path || []; + + // Push the object to the path + path.push(object); + + // Start place to serialize into + let index = startingIndex + 4; + + // Special case isArray + if (Array.isArray(object)) { + // Get object keys + for (let i = 0; i < object.length; i++) { + const key = `${i}`; + let value = object[i]; + + // Is there an override value + if (typeof value?.toBSON === 'function') { + value = value.toBSON(); + } + + if (typeof value === 'string') { + index = serializeString(buffer, key, value, index, true); + } else if (typeof value === 'number') { + index = serializeNumber(buffer, key, value, index, true); + } else if (typeof value === 'bigint') { + throw new BSONTypeError('Unsupported type BigInt, please use Decimal128'); + } else if (typeof value === 'boolean') { + index = serializeBoolean(buffer, key, value, index, true); + } else if (value instanceof Date || isDate(value)) { + index = serializeDate(buffer, key, value, index, true); + } else if (value === undefined) { + index = serializeNull(buffer, key, value, index, true); + } else if (value === null) { + index = serializeNull(buffer, key, value, index, true); + } else if (value['_bsontype'] === 'ObjectId' || value['_bsontype'] === 'ObjectID') { + index = serializeObjectId(buffer, key, value, index, true); + } else if (isUint8Array(value)) { + index = serializeBuffer(buffer, key, value, index, true); + } else if (value instanceof RegExp || isRegExp(value)) { + index = serializeRegExp(buffer, key, value, index, true); + } else if (typeof value === 'object' && value['_bsontype'] == null) { + index = serializeObject( + buffer, + key, + value, + index, + checkKeys, + depth, + serializeFunctions, + ignoreUndefined, + true, + path + ); + } else if ( + typeof value === 'object' && + isBSONType(value) && + value._bsontype === 'Decimal128' + ) { + index = serializeDecimal128(buffer, key, value, index, true); + } else if (value['_bsontype'] === 'Long' || value['_bsontype'] === 'Timestamp') { + index = serializeLong(buffer, key, value, index, true); + } else if (value['_bsontype'] === 'Double') { + index = serializeDouble(buffer, key, value, index, true); + } else if (typeof value === 'function' && serializeFunctions) { + index = serializeFunction(buffer, key, value, index, checkKeys, depth, true); + } else if (value['_bsontype'] === 'Code') { + index = serializeCode( + buffer, + key, + value, + index, + checkKeys, + depth, + serializeFunctions, + ignoreUndefined, + true + ); + } else if (value['_bsontype'] === 'Binary') { + index = serializeBinary(buffer, key, value, index, true); + } else if (value['_bsontype'] === 'Symbol') { + index = serializeSymbol(buffer, key, value, index, true); + } else if (value['_bsontype'] === 'DBRef') { + index = serializeDBRef(buffer, key, value, index, depth, serializeFunctions, true); + } else if (value['_bsontype'] === 'BSONRegExp') { + index = serializeBSONRegExp(buffer, key, value, index, true); + } else if (value['_bsontype'] === 'Int32') { + index = serializeInt32(buffer, key, value, index, true); + } else if (value['_bsontype'] === 'MinKey' || value['_bsontype'] === 'MaxKey') { + index = serializeMinMax(buffer, key, value, index, true); + } else if (typeof value['_bsontype'] !== 'undefined') { + throw new BSONTypeError(`Unrecognized or invalid _bsontype: ${String(value['_bsontype'])}`); + } + } + } else if (object instanceof Map || isMap(object)) { + const iterator = object.entries(); + let done = false; + + while (!done) { + // Unpack the next entry + const entry = iterator.next(); + done = !!entry.done; + // Are we done, then skip and terminate + if (done) continue; + + // Get the entry values + const key = entry.value[0]; + const value = entry.value[1]; + + // Check the type of the value + const type = typeof value; + + // Check the key and throw error if it's illegal + if (typeof key === 'string' && !ignoreKeys.has(key)) { + if (key.match(regexp) != null) { + // The BSON spec doesn't allow keys with null bytes because keys are + // null-terminated. + throw Error('key ' + key + ' must not contain null bytes'); + } + + if (checkKeys) { + if ('$' === key[0]) { + throw Error('key ' + key + " must not start with '$'"); + } else if (~key.indexOf('.')) { + throw Error('key ' + key + " must not contain '.'"); + } + } + } + + if (type === 'string') { + index = serializeString(buffer, key, value, index); + } else if (type === 'number') { + index = serializeNumber(buffer, key, value, index); + } else if (type === 'bigint' || isBigInt64Array(value) || isBigUInt64Array(value)) { + throw new BSONTypeError('Unsupported type BigInt, please use Decimal128'); + } else if (type === 'boolean') { + index = serializeBoolean(buffer, key, value, index); + } else if (value instanceof Date || isDate(value)) { + index = serializeDate(buffer, key, value, index); + } else if (value === null || (value === undefined && ignoreUndefined === false)) { + index = serializeNull(buffer, key, value, index); + } else if (value['_bsontype'] === 'ObjectId' || value['_bsontype'] === 'ObjectID') { + index = serializeObjectId(buffer, key, value, index); + } else if (isUint8Array(value)) { + index = serializeBuffer(buffer, key, value, index); + } else if (value instanceof RegExp || isRegExp(value)) { + index = serializeRegExp(buffer, key, value, index); + } else if (type === 'object' && value['_bsontype'] == null) { + index = serializeObject( + buffer, + key, + value, + index, + checkKeys, + depth, + serializeFunctions, + ignoreUndefined, + false, + path + ); + } else if (type === 'object' && value['_bsontype'] === 'Decimal128') { + index = serializeDecimal128(buffer, key, value, index); + } else if (value['_bsontype'] === 'Long' || value['_bsontype'] === 'Timestamp') { + index = serializeLong(buffer, key, value, index); + } else if (value['_bsontype'] === 'Double') { + index = serializeDouble(buffer, key, value, index); + } else if (value['_bsontype'] === 'Code') { + index = serializeCode( + buffer, + key, + value, + index, + checkKeys, + depth, + serializeFunctions, + ignoreUndefined + ); + } else if (typeof value === 'function' && serializeFunctions) { + index = serializeFunction(buffer, key, value, index, checkKeys, depth, serializeFunctions); + } else if (value['_bsontype'] === 'Binary') { + index = serializeBinary(buffer, key, value, index); + } else if (value['_bsontype'] === 'Symbol') { + index = serializeSymbol(buffer, key, value, index); + } else if (value['_bsontype'] === 'DBRef') { + index = serializeDBRef(buffer, key, value, index, depth, serializeFunctions); + } else if (value['_bsontype'] === 'BSONRegExp') { + index = serializeBSONRegExp(buffer, key, value, index); + } else if (value['_bsontype'] === 'Int32') { + index = serializeInt32(buffer, key, value, index); + } else if (value['_bsontype'] === 'MinKey' || value['_bsontype'] === 'MaxKey') { + index = serializeMinMax(buffer, key, value, index); + } else if (typeof value['_bsontype'] !== 'undefined') { + throw new BSONTypeError(`Unrecognized or invalid _bsontype: ${String(value['_bsontype'])}`); + } + } + } else { + if (typeof object?.toBSON === 'function') { + // Provided a custom serialization method + object = object.toBSON(); + if (object != null && typeof object !== 'object') { + throw new BSONTypeError('toBSON function did not return an object'); + } + } + + // Iterate over all the keys + for (const key in object) { + let value = object[key]; + // Is there an override value + if (typeof value?.toBSON === 'function') { + value = value.toBSON(); + } + + // Check the type of the value + const type = typeof value; + + // Check the key and throw error if it's illegal + if (typeof key === 'string' && !ignoreKeys.has(key)) { + if (key.match(regexp) != null) { + // The BSON spec doesn't allow keys with null bytes because keys are + // null-terminated. + throw Error('key ' + key + ' must not contain null bytes'); + } + + if (checkKeys) { + if ('$' === key[0]) { + throw Error('key ' + key + " must not start with '$'"); + } else if (~key.indexOf('.')) { + throw Error('key ' + key + " must not contain '.'"); + } + } + } + + if (type === 'string') { + index = serializeString(buffer, key, value, index); + } else if (type === 'number') { + index = serializeNumber(buffer, key, value, index); + } else if (type === 'bigint') { + throw new BSONTypeError('Unsupported type BigInt, please use Decimal128'); + } else if (type === 'boolean') { + index = serializeBoolean(buffer, key, value, index); + } else if (value instanceof Date || isDate(value)) { + index = serializeDate(buffer, key, value, index); + } else if (value === undefined) { + if (ignoreUndefined === false) index = serializeNull(buffer, key, value, index); + } else if (value === null) { + index = serializeNull(buffer, key, value, index); + } else if (value['_bsontype'] === 'ObjectId' || value['_bsontype'] === 'ObjectID') { + index = serializeObjectId(buffer, key, value, index); + } else if (isUint8Array(value)) { + index = serializeBuffer(buffer, key, value, index); + } else if (value instanceof RegExp || isRegExp(value)) { + index = serializeRegExp(buffer, key, value, index); + } else if (type === 'object' && value['_bsontype'] == null) { + index = serializeObject( + buffer, + key, + value, + index, + checkKeys, + depth, + serializeFunctions, + ignoreUndefined, + false, + path + ); + } else if (type === 'object' && value['_bsontype'] === 'Decimal128') { + index = serializeDecimal128(buffer, key, value, index); + } else if (value['_bsontype'] === 'Long' || value['_bsontype'] === 'Timestamp') { + index = serializeLong(buffer, key, value, index); + } else if (value['_bsontype'] === 'Double') { + index = serializeDouble(buffer, key, value, index); + } else if (value['_bsontype'] === 'Code') { + index = serializeCode( + buffer, + key, + value, + index, + checkKeys, + depth, + serializeFunctions, + ignoreUndefined + ); + } else if (typeof value === 'function' && serializeFunctions) { + index = serializeFunction(buffer, key, value, index, checkKeys, depth, serializeFunctions); + } else if (value['_bsontype'] === 'Binary') { + index = serializeBinary(buffer, key, value, index); + } else if (value['_bsontype'] === 'Symbol') { + index = serializeSymbol(buffer, key, value, index); + } else if (value['_bsontype'] === 'DBRef') { + index = serializeDBRef(buffer, key, value, index, depth, serializeFunctions); + } else if (value['_bsontype'] === 'BSONRegExp') { + index = serializeBSONRegExp(buffer, key, value, index); + } else if (value['_bsontype'] === 'Int32') { + index = serializeInt32(buffer, key, value, index); + } else if (value['_bsontype'] === 'MinKey' || value['_bsontype'] === 'MaxKey') { + index = serializeMinMax(buffer, key, value, index); + } else if (typeof value['_bsontype'] !== 'undefined') { + throw new BSONTypeError(`Unrecognized or invalid _bsontype: ${String(value['_bsontype'])}`); + } + } + } + + // Remove the path + path.pop(); + + // Final padding byte for object + buffer[index++] = 0x00; + + // Final size + const size = index - startingIndex; + // Write the size of the object + buffer[startingIndex++] = size & 0xff; + buffer[startingIndex++] = (size >> 8) & 0xff; + buffer[startingIndex++] = (size >> 16) & 0xff; + buffer[startingIndex++] = (size >> 24) & 0xff; + return index; +} diff --git a/node_modules/bson/src/parser/utils.ts b/node_modules/bson/src/parser/utils.ts new file mode 100644 index 000000000..abf935df5 --- /dev/null +++ b/node_modules/bson/src/parser/utils.ts @@ -0,0 +1,127 @@ +import { Buffer } from 'buffer'; +import { getGlobal } from '../utils/global'; + +type RandomBytesFunction = (size: number) => Uint8Array; + +/** + * Normalizes our expected stringified form of a function across versions of node + * @param fn - The function to stringify + */ +export function normalizedFunctionString(fn: Function): string { + return fn.toString().replace('function(', 'function ('); +} + +function isReactNative() { + const g = getGlobal<{ navigator?: { product?: string } }>(); + return typeof g.navigator === 'object' && g.navigator.product === 'ReactNative'; +} + +const insecureRandomBytes: RandomBytesFunction = function insecureRandomBytes(size: number) { + const insecureWarning = isReactNative() + ? 'BSON: For React Native please polyfill crypto.getRandomValues, e.g. using: https://www.npmjs.com/package/react-native-get-random-values.' + : 'BSON: No cryptographic implementation for random bytes present, falling back to a less secure implementation.'; + console.warn(insecureWarning); + + const result = Buffer.alloc(size); + for (let i = 0; i < size; ++i) result[i] = Math.floor(Math.random() * 256); + return result; +}; + +/* We do not want to have to include DOM types just for this check */ +// eslint-disable-next-line @typescript-eslint/no-explicit-any +declare let window: any; +declare let require: Function; +// eslint-disable-next-line @typescript-eslint/no-explicit-any +declare let global: any; +// eslint-disable-next-line @typescript-eslint/no-explicit-any +declare let process: any; // Used by @rollup/plugin-replace + +const detectRandomBytes = (): RandomBytesFunction => { + if (process.browser) { + if (typeof window !== 'undefined') { + // browser crypto implementation(s) + const target = window.crypto || window.msCrypto; // allow for IE11 + if (target && target.getRandomValues) { + return size => target.getRandomValues(Buffer.alloc(size)); + } + } + + if (typeof global !== 'undefined' && global.crypto && global.crypto.getRandomValues) { + // allow for RN packages such as https://www.npmjs.com/package/react-native-get-random-values to populate global + return size => global.crypto.getRandomValues(Buffer.alloc(size)); + } + + return insecureRandomBytes; + } else { + let requiredRandomBytes: RandomBytesFunction | null | undefined; + try { + requiredRandomBytes = require('crypto').randomBytes; + } catch (e) { + // keep the fallback + } + + // NOTE: in transpiled cases the above require might return null/undefined + + return requiredRandomBytes || insecureRandomBytes; + } +}; + +export const randomBytes = detectRandomBytes(); + +export function isAnyArrayBuffer(value: unknown): value is ArrayBuffer { + return ['[object ArrayBuffer]', '[object SharedArrayBuffer]'].includes( + Object.prototype.toString.call(value) + ); +} + +export function isUint8Array(value: unknown): value is Uint8Array { + return Object.prototype.toString.call(value) === '[object Uint8Array]'; +} + +export function isBigInt64Array(value: unknown): value is BigInt64Array { + return Object.prototype.toString.call(value) === '[object BigInt64Array]'; +} + +export function isBigUInt64Array(value: unknown): value is BigUint64Array { + return Object.prototype.toString.call(value) === '[object BigUint64Array]'; +} + +export function isRegExp(d: unknown): d is RegExp { + return Object.prototype.toString.call(d) === '[object RegExp]'; +} + +export function isMap(d: unknown): d is Map { + return Object.prototype.toString.call(d) === '[object Map]'; +} + +/** Call to check if your environment has `Buffer` */ +export function haveBuffer(): boolean { + return typeof global !== 'undefined' && typeof global.Buffer !== 'undefined'; +} + +// To ensure that 0.4 of node works correctly +export function isDate(d: unknown): d is Date { + return isObjectLike(d) && Object.prototype.toString.call(d) === '[object Date]'; +} + +/** + * @internal + * this is to solve the `'someKey' in x` problem where x is unknown. + * https://github.com/typescript-eslint/typescript-eslint/issues/1071#issuecomment-541955753 + */ +export function isObjectLike(candidate: unknown): candidate is Record { + return typeof candidate === 'object' && candidate !== null; +} + +declare let console: { warn(...message: unknown[]): void }; +export function deprecate(fn: T, message: string): T { + let warned = false; + function deprecated(this: unknown, ...args: unknown[]) { + if (!warned) { + console.warn(message); + warned = true; + } + return fn.apply(this, args); + } + return deprecated as unknown as T; +} diff --git a/node_modules/bson/src/regexp.ts b/node_modules/bson/src/regexp.ts new file mode 100644 index 000000000..efd56280a --- /dev/null +++ b/node_modules/bson/src/regexp.ts @@ -0,0 +1,105 @@ +import { BSONError, BSONTypeError } from './error'; +import type { EJSONOptions } from './extended_json'; + +function alphabetize(str: string): string { + return str.split('').sort().join(''); +} + +/** @public */ +export interface BSONRegExpExtendedLegacy { + $regex: string | BSONRegExp; + $options: string; +} + +/** @public */ +export interface BSONRegExpExtended { + $regularExpression: { + pattern: string; + options: string; + }; +} + +/** + * A class representation of the BSON RegExp type. + * @public + * @category BSONType + */ +export class BSONRegExp { + _bsontype!: 'BSONRegExp'; + + pattern!: string; + options!: string; + /** + * @param pattern - The regular expression pattern to match + * @param options - The regular expression options + */ + constructor(pattern: string, options?: string) { + if (!(this instanceof BSONRegExp)) return new BSONRegExp(pattern, options); + + this.pattern = pattern; + this.options = alphabetize(options ?? ''); + + if (this.pattern.indexOf('\x00') !== -1) { + throw new BSONError( + `BSON Regex patterns cannot contain null bytes, found: ${JSON.stringify(this.pattern)}` + ); + } + if (this.options.indexOf('\x00') !== -1) { + throw new BSONError( + `BSON Regex options cannot contain null bytes, found: ${JSON.stringify(this.options)}` + ); + } + + // Validate options + for (let i = 0; i < this.options.length; i++) { + if ( + !( + this.options[i] === 'i' || + this.options[i] === 'm' || + this.options[i] === 'x' || + this.options[i] === 'l' || + this.options[i] === 's' || + this.options[i] === 'u' + ) + ) { + throw new BSONError(`The regular expression option [${this.options[i]}] is not supported`); + } + } + } + + static parseOptions(options?: string): string { + return options ? options.split('').sort().join('') : ''; + } + + /** @internal */ + toExtendedJSON(options?: EJSONOptions): BSONRegExpExtendedLegacy | BSONRegExpExtended { + options = options || {}; + if (options.legacy) { + return { $regex: this.pattern, $options: this.options }; + } + return { $regularExpression: { pattern: this.pattern, options: this.options } }; + } + + /** @internal */ + static fromExtendedJSON(doc: BSONRegExpExtendedLegacy | BSONRegExpExtended): BSONRegExp { + if ('$regex' in doc) { + if (typeof doc.$regex !== 'string') { + // This is for $regex query operators that have extended json values. + if (doc.$regex._bsontype === 'BSONRegExp') { + return doc as unknown as BSONRegExp; + } + } else { + return new BSONRegExp(doc.$regex, BSONRegExp.parseOptions(doc.$options)); + } + } + if ('$regularExpression' in doc) { + return new BSONRegExp( + doc.$regularExpression.pattern, + BSONRegExp.parseOptions(doc.$regularExpression.options) + ); + } + throw new BSONTypeError(`Unexpected BSONRegExp EJSON object form: ${JSON.stringify(doc)}`); + } +} + +Object.defineProperty(BSONRegExp.prototype, '_bsontype', { value: 'BSONRegExp' }); diff --git a/node_modules/bson/src/symbol.ts b/node_modules/bson/src/symbol.ts new file mode 100644 index 000000000..1e82fc1c3 --- /dev/null +++ b/node_modules/bson/src/symbol.ts @@ -0,0 +1,58 @@ +/** @public */ +export interface BSONSymbolExtended { + $symbol: string; +} + +/** + * A class representation of the BSON Symbol type. + * @public + * @category BSONType + */ +export class BSONSymbol { + _bsontype!: 'Symbol'; + + value!: string; + /** + * @param value - the string representing the symbol. + */ + constructor(value: string) { + if (!(this instanceof BSONSymbol)) return new BSONSymbol(value); + + this.value = value; + } + + /** Access the wrapped string value. */ + valueOf(): string { + return this.value; + } + + toString(): string { + return this.value; + } + + /** @internal */ + inspect(): string { + return `new BSONSymbol("${this.value}")`; + } + + toJSON(): string { + return this.value; + } + + /** @internal */ + toExtendedJSON(): BSONSymbolExtended { + return { $symbol: this.value }; + } + + /** @internal */ + static fromExtendedJSON(doc: BSONSymbolExtended): BSONSymbol { + return new BSONSymbol(doc.$symbol); + } + + /** @internal */ + [Symbol.for('nodejs.util.inspect.custom')](): string { + return this.inspect(); + } +} + +Object.defineProperty(BSONSymbol.prototype, '_bsontype', { value: 'Symbol' }); diff --git a/node_modules/bson/src/timestamp.ts b/node_modules/bson/src/timestamp.ts new file mode 100644 index 000000000..4c4b7e74c --- /dev/null +++ b/node_modules/bson/src/timestamp.ts @@ -0,0 +1,119 @@ +import { Long } from './long'; +import { isObjectLike } from './parser/utils'; + +/** @public */ +export type TimestampOverrides = '_bsontype' | 'toExtendedJSON' | 'fromExtendedJSON' | 'inspect'; +/** @public */ +export type LongWithoutOverrides = new (low: unknown, high?: number, unsigned?: boolean) => { + [P in Exclude]: Long[P]; +}; +/** @public */ +export const LongWithoutOverridesClass: LongWithoutOverrides = + Long as unknown as LongWithoutOverrides; + +/** @public */ +export interface TimestampExtended { + $timestamp: { + t: number; + i: number; + }; +} + +/** + * @public + * @category BSONType + * */ +export class Timestamp extends LongWithoutOverridesClass { + _bsontype!: 'Timestamp'; + + static readonly MAX_VALUE = Long.MAX_UNSIGNED_VALUE; + + /** + * @param low - A 64-bit Long representing the Timestamp. + */ + constructor(long: Long); + /** + * @param value - A pair of two values indicating timestamp and increment. + */ + constructor(value: { t: number; i: number }); + /** + * @param low - the low (signed) 32 bits of the Timestamp. + * @param high - the high (signed) 32 bits of the Timestamp. + * @deprecated Please use `Timestamp({ t: high, i: low })` or `Timestamp(Long(low, high))` instead. + */ + constructor(low: number, high: number); + constructor(low: number | Long | { t: number; i: number }, high?: number) { + // eslint-disable-next-line @typescript-eslint/ban-ts-comment + // @ts-expect-error + if (!(this instanceof Timestamp)) return new Timestamp(low, high); + + if (Long.isLong(low)) { + super(low.low, low.high, true); + } else if (isObjectLike(low) && typeof low.t !== 'undefined' && typeof low.i !== 'undefined') { + super(low.i, low.t, true); + } else { + super(low, high, true); + } + Object.defineProperty(this, '_bsontype', { + value: 'Timestamp', + writable: false, + configurable: false, + enumerable: false + }); + } + + toJSON(): { $timestamp: string } { + return { + $timestamp: this.toString() + }; + } + + /** Returns a Timestamp represented by the given (32-bit) integer value. */ + static fromInt(value: number): Timestamp { + return new Timestamp(Long.fromInt(value, true)); + } + + /** Returns a Timestamp representing the given number value, provided that it is a finite number. Otherwise, zero is returned. */ + static fromNumber(value: number): Timestamp { + return new Timestamp(Long.fromNumber(value, true)); + } + + /** + * Returns a Timestamp for the given high and low bits. Each is assumed to use 32 bits. + * + * @param lowBits - the low 32-bits. + * @param highBits - the high 32-bits. + */ + static fromBits(lowBits: number, highBits: number): Timestamp { + return new Timestamp(lowBits, highBits); + } + + /** + * Returns a Timestamp from the given string, optionally using the given radix. + * + * @param str - the textual representation of the Timestamp. + * @param optRadix - the radix in which the text is written. + */ + static fromString(str: string, optRadix: number): Timestamp { + return new Timestamp(Long.fromString(str, true, optRadix)); + } + + /** @internal */ + toExtendedJSON(): TimestampExtended { + return { $timestamp: { t: this.high >>> 0, i: this.low >>> 0 } }; + } + + /** @internal */ + static fromExtendedJSON(doc: TimestampExtended): Timestamp { + return new Timestamp(doc.$timestamp); + } + + /** @internal */ + [Symbol.for('nodejs.util.inspect.custom')](): string { + return this.inspect(); + } + + inspect(): string { + return `new Timestamp({ t: ${this.getHighBits()}, i: ${this.getLowBits()} })`; + } +} diff --git a/node_modules/bson/src/utils/global.ts b/node_modules/bson/src/utils/global.ts new file mode 100644 index 000000000..3e45ffb8b --- /dev/null +++ b/node_modules/bson/src/utils/global.ts @@ -0,0 +1,22 @@ +/* eslint-disable @typescript-eslint/no-explicit-any */ +/* We do not want to have to include DOM types just for this check */ +declare const window: unknown; +declare const self: unknown; +declare const global: unknown; + +function checkForMath(potentialGlobal: any) { + // eslint-disable-next-line eqeqeq + return potentialGlobal && potentialGlobal.Math == Math && potentialGlobal; +} + +// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028 +export function getGlobal>(): T { + return ( + checkForMath(typeof globalThis === 'object' && globalThis) || + checkForMath(typeof window === 'object' && window) || + checkForMath(typeof self === 'object' && self) || + checkForMath(typeof global === 'object' && global) || + // eslint-disable-next-line @typescript-eslint/no-implied-eval + Function('return this')() + ); +} diff --git a/node_modules/bson/src/uuid_utils.ts b/node_modules/bson/src/uuid_utils.ts new file mode 100644 index 000000000..f37b06592 --- /dev/null +++ b/node_modules/bson/src/uuid_utils.ts @@ -0,0 +1,33 @@ +import { Buffer } from 'buffer'; +import { BSONTypeError } from './error'; + +// Validation regex for v4 uuid (validates with or without dashes) +const VALIDATION_REGEX = + /^(?:[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|[0-9a-f]{12}4[0-9a-f]{3}[89ab][0-9a-f]{15})$/i; + +export const uuidValidateString = (str: string): boolean => + typeof str === 'string' && VALIDATION_REGEX.test(str); + +export const uuidHexStringToBuffer = (hexString: string): Buffer => { + if (!uuidValidateString(hexString)) { + throw new BSONTypeError( + 'UUID string representations must be a 32 or 36 character hex string (dashes excluded/included). Format: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" or "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx".' + ); + } + + const sanitizedHexString = hexString.replace(/-/g, ''); + return Buffer.from(sanitizedHexString, 'hex'); +}; + +export const bufferToUuidHexString = (buffer: Buffer, includeDashes = true): string => + includeDashes + ? buffer.toString('hex', 0, 4) + + '-' + + buffer.toString('hex', 4, 6) + + '-' + + buffer.toString('hex', 6, 8) + + '-' + + buffer.toString('hex', 8, 10) + + '-' + + buffer.toString('hex', 10, 16) + : buffer.toString('hex'); diff --git a/node_modules/bson/src/validate_utf8.ts b/node_modules/bson/src/validate_utf8.ts new file mode 100644 index 000000000..e1da934c6 --- /dev/null +++ b/node_modules/bson/src/validate_utf8.ts @@ -0,0 +1,47 @@ +const FIRST_BIT = 0x80; +const FIRST_TWO_BITS = 0xc0; +const FIRST_THREE_BITS = 0xe0; +const FIRST_FOUR_BITS = 0xf0; +const FIRST_FIVE_BITS = 0xf8; + +const TWO_BIT_CHAR = 0xc0; +const THREE_BIT_CHAR = 0xe0; +const FOUR_BIT_CHAR = 0xf0; +const CONTINUING_CHAR = 0x80; + +/** + * Determines if the passed in bytes are valid utf8 + * @param bytes - An array of 8-bit bytes. Must be indexable and have length property + * @param start - The index to start validating + * @param end - The index to end validating + */ +export function validateUtf8( + bytes: { [index: number]: number }, + start: number, + end: number +): boolean { + let continuation = 0; + + for (let i = start; i < end; i += 1) { + const byte = bytes[i]; + + if (continuation) { + if ((byte & FIRST_TWO_BITS) !== CONTINUING_CHAR) { + return false; + } + continuation -= 1; + } else if (byte & FIRST_BIT) { + if ((byte & FIRST_THREE_BITS) === TWO_BIT_CHAR) { + continuation = 1; + } else if ((byte & FIRST_FOUR_BITS) === THREE_BIT_CHAR) { + continuation = 2; + } else if ((byte & FIRST_FIVE_BITS) === FOUR_BIT_CHAR) { + continuation = 3; + } else { + return false; + } + } + } + + return !continuation; +} diff --git a/node_modules/buffer/AUTHORS.md b/node_modules/buffer/AUTHORS.md new file mode 100644 index 000000000..22eb17129 --- /dev/null +++ b/node_modules/buffer/AUTHORS.md @@ -0,0 +1,70 @@ +# Authors + +#### Ordered by first contribution. + +- Romain Beauxis (toots@rastageeks.org) +- Tobias Koppers (tobias.koppers@googlemail.com) +- Janus (ysangkok@gmail.com) +- Rainer Dreyer (rdrey1@gmail.com) +- Tõnis Tiigi (tonistiigi@gmail.com) +- James Halliday (mail@substack.net) +- Michael Williamson (mike@zwobble.org) +- elliottcable (github@elliottcable.name) +- rafael (rvalle@livelens.net) +- Andrew Kelley (superjoe30@gmail.com) +- Andreas Madsen (amwebdk@gmail.com) +- Mike Brevoort (mike.brevoort@pearson.com) +- Brian White (mscdex@mscdex.net) +- Feross Aboukhadijeh (feross@feross.org) +- Ruben Verborgh (ruben@verborgh.org) +- eliang (eliang.cs@gmail.com) +- Jesse Tane (jesse.tane@gmail.com) +- Alfonso Boza (alfonso@cloud.com) +- Mathias Buus (mathiasbuus@gmail.com) +- Devon Govett (devongovett@gmail.com) +- Daniel Cousens (github@dcousens.com) +- Joseph Dykstra (josephdykstra@gmail.com) +- Parsha Pourkhomami (parshap+git@gmail.com) +- Damjan Košir (damjan.kosir@gmail.com) +- daverayment (dave.rayment@gmail.com) +- kawanet (u-suke@kawa.net) +- Linus Unnebäck (linus@folkdatorn.se) +- Nolan Lawson (nolan.lawson@gmail.com) +- Calvin Metcalf (calvin.metcalf@gmail.com) +- Koki Takahashi (hakatasiloving@gmail.com) +- Guy Bedford (guybedford@gmail.com) +- Jan Schär (jscissr@gmail.com) +- RaulTsc (tomescu.raul@gmail.com) +- Matthieu Monsch (monsch@alum.mit.edu) +- Dan Ehrenberg (littledan@chromium.org) +- Kirill Fomichev (fanatid@ya.ru) +- Yusuke Kawasaki (u-suke@kawa.net) +- DC (dcposch@dcpos.ch) +- John-David Dalton (john.david.dalton@gmail.com) +- adventure-yunfei (adventure030@gmail.com) +- Emil Bay (github@tixz.dk) +- Sam Sudar (sudar.sam@gmail.com) +- Volker Mische (volker.mische@gmail.com) +- David Walton (support@geekstocks.com) +- Сковорода Никита Андреевич (chalkerx@gmail.com) +- greenkeeper[bot] (greenkeeper[bot]@users.noreply.github.com) +- ukstv (sergey.ukustov@machinomy.com) +- Renée Kooi (renee@kooi.me) +- ranbochen (ranbochen@qq.com) +- Vladimir Borovik (bobahbdb@gmail.com) +- greenkeeper[bot] (23040076+greenkeeper[bot]@users.noreply.github.com) +- kumavis (aaron@kumavis.me) +- Sergey Ukustov (sergey.ukustov@machinomy.com) +- Fei Liu (liu.feiwood@gmail.com) +- Blaine Bublitz (blaine.bublitz@gmail.com) +- clement (clement@seald.io) +- Koushik Dutta (koushd@gmail.com) +- Jordan Harband (ljharb@gmail.com) +- Niklas Mischkulnig (mischnic@users.noreply.github.com) +- Nikolai Vavilov (vvnicholas@gmail.com) +- Fedor Nezhivoi (gyzerok@users.noreply.github.com) +- Peter Newman (peternewman@users.noreply.github.com) +- mathmakgakpak (44949126+mathmakgakpak@users.noreply.github.com) +- jkkang (jkkang@smartauth.kr) + +#### Generated by bin/update-authors.sh. diff --git a/node_modules/buffer/LICENSE b/node_modules/buffer/LICENSE new file mode 100644 index 000000000..d6bf75dcf --- /dev/null +++ b/node_modules/buffer/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Feross Aboukhadijeh, and other contributors. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/node_modules/buffer/README.md b/node_modules/buffer/README.md new file mode 100644 index 000000000..9a23d7cfa --- /dev/null +++ b/node_modules/buffer/README.md @@ -0,0 +1,410 @@ +# buffer [![travis][travis-image]][travis-url] [![npm][npm-image]][npm-url] [![downloads][downloads-image]][downloads-url] [![javascript style guide][standard-image]][standard-url] + +[travis-image]: https://img.shields.io/travis/feross/buffer/master.svg +[travis-url]: https://travis-ci.org/feross/buffer +[npm-image]: https://img.shields.io/npm/v/buffer.svg +[npm-url]: https://npmjs.org/package/buffer +[downloads-image]: https://img.shields.io/npm/dm/buffer.svg +[downloads-url]: https://npmjs.org/package/buffer +[standard-image]: https://img.shields.io/badge/code_style-standard-brightgreen.svg +[standard-url]: https://standardjs.com + +#### The buffer module from [node.js](https://nodejs.org/), for the browser. + +[![saucelabs][saucelabs-image]][saucelabs-url] + +[saucelabs-image]: https://saucelabs.com/browser-matrix/buffer.svg +[saucelabs-url]: https://saucelabs.com/u/buffer + +With [browserify](http://browserify.org), simply `require('buffer')` or use the `Buffer` global and you will get this module. + +The goal is to provide an API that is 100% identical to +[node's Buffer API](https://nodejs.org/api/buffer.html). Read the +[official docs](https://nodejs.org/api/buffer.html) for the full list of properties, +instance methods, and class methods that are supported. + +## features + +- Manipulate binary data like a boss, in all browsers! +- Super fast. Backed by Typed Arrays (`Uint8Array`/`ArrayBuffer`, not `Object`) +- Extremely small bundle size (**6.75KB minified + gzipped**, 51.9KB with comments) +- Excellent browser support (Chrome, Firefox, Edge, Safari 9+, IE 11, iOS 9+, Android, etc.) +- Preserves Node API exactly, with one minor difference (see below) +- Square-bracket `buf[4]` notation works! +- Does not modify any browser prototypes or put anything on `window` +- Comprehensive test suite (including all buffer tests from node.js core) + +## install + +To use this module directly (without browserify), install it: + +```bash +npm install buffer +``` + +This module was previously called **native-buffer-browserify**, but please use **buffer** +from now on. + +If you do not use a bundler, you can use the [standalone script](https://bundle.run/buffer). + +## usage + +The module's API is identical to node's `Buffer` API. Read the +[official docs](https://nodejs.org/api/buffer.html) for the full list of properties, +instance methods, and class methods that are supported. + +As mentioned above, `require('buffer')` or use the `Buffer` global with +[browserify](http://browserify.org) and this module will automatically be included +in your bundle. Almost any npm module will work in the browser, even if it assumes that +the node `Buffer` API will be available. + +To depend on this module explicitly (without browserify), require it like this: + +```js +var Buffer = require('buffer/').Buffer // note: the trailing slash is important! +``` + +To require this module explicitly, use `require('buffer/')` which tells the node.js module +lookup algorithm (also used by browserify) to use the **npm module** named `buffer` +instead of the **node.js core** module named `buffer`! + + +## how does it work? + +The Buffer constructor returns instances of `Uint8Array` that have their prototype +changed to `Buffer.prototype`. Furthermore, `Buffer` is a subclass of `Uint8Array`, +so the returned instances will have all the node `Buffer` methods and the +`Uint8Array` methods. Square bracket notation works as expected -- it returns a +single octet. + +The `Uint8Array` prototype remains unmodified. + + +## tracking the latest node api + +This module tracks the Buffer API in the latest (unstable) version of node.js. The Buffer +API is considered **stable** in the +[node stability index](https://nodejs.org/docs/latest/api/documentation.html#documentation_stability_index), +so it is unlikely that there will ever be breaking changes. +Nonetheless, when/if the Buffer API changes in node, this module's API will change +accordingly. + +## related packages + +- [`buffer-reverse`](https://www.npmjs.com/package/buffer-reverse) - Reverse a buffer +- [`buffer-xor`](https://www.npmjs.com/package/buffer-xor) - Bitwise xor a buffer +- [`is-buffer`](https://www.npmjs.com/package/is-buffer) - Determine if an object is a Buffer without including the whole `Buffer` package + +## conversion packages + +### convert typed array to buffer + +Use [`typedarray-to-buffer`](https://www.npmjs.com/package/typedarray-to-buffer) to convert any kind of typed array to a `Buffer`. Does not perform a copy, so it's super fast. + +### convert buffer to typed array + +`Buffer` is a subclass of `Uint8Array` (which is a typed array). So there is no need to explicitly convert to typed array. Just use the buffer as a `Uint8Array`. + +### convert blob to buffer + +Use [`blob-to-buffer`](https://www.npmjs.com/package/blob-to-buffer) to convert a `Blob` to a `Buffer`. + +### convert buffer to blob + +To convert a `Buffer` to a `Blob`, use the `Blob` constructor: + +```js +var blob = new Blob([ buffer ]) +``` + +Optionally, specify a mimetype: + +```js +var blob = new Blob([ buffer ], { type: 'text/html' }) +``` + +### convert arraybuffer to buffer + +To convert an `ArrayBuffer` to a `Buffer`, use the `Buffer.from` function. Does not perform a copy, so it's super fast. + +```js +var buffer = Buffer.from(arrayBuffer) +``` + +### convert buffer to arraybuffer + +To convert a `Buffer` to an `ArrayBuffer`, use the `.buffer` property (which is present on all `Uint8Array` objects): + +```js +var arrayBuffer = buffer.buffer.slice( + buffer.byteOffset, buffer.byteOffset + buffer.byteLength +) +``` + +Alternatively, use the [`to-arraybuffer`](https://www.npmjs.com/package/to-arraybuffer) module. + +## performance + +See perf tests in `/perf`. + +`BrowserBuffer` is the browser `buffer` module (this repo). `Uint8Array` is included as a +sanity check (since `BrowserBuffer` uses `Uint8Array` under the hood, `Uint8Array` will +always be at least a bit faster). Finally, `NodeBuffer` is the node.js buffer module, +which is included to compare against. + +NOTE: Performance has improved since these benchmarks were taken. PR welcome to update the README. + +### Chrome 38 + +| Method | Operations | Accuracy | Sampled | Fastest | +|:-------|:-----------|:---------|:--------|:-------:| +| BrowserBuffer#bracket-notation | 11,457,464 ops/sec | ±0.86% | 66 | ✓ | +| Uint8Array#bracket-notation | 10,824,332 ops/sec | ±0.74% | 65 | | +| | | | | +| BrowserBuffer#concat | 450,532 ops/sec | ±0.76% | 68 | | +| Uint8Array#concat | 1,368,911 ops/sec | ±1.50% | 62 | ✓ | +| | | | | +| BrowserBuffer#copy(16000) | 903,001 ops/sec | ±0.96% | 67 | | +| Uint8Array#copy(16000) | 1,422,441 ops/sec | ±1.04% | 66 | ✓ | +| | | | | +| BrowserBuffer#copy(16) | 11,431,358 ops/sec | ±0.46% | 69 | | +| Uint8Array#copy(16) | 13,944,163 ops/sec | ±1.12% | 68 | ✓ | +| | | | | +| BrowserBuffer#new(16000) | 106,329 ops/sec | ±6.70% | 44 | | +| Uint8Array#new(16000) | 131,001 ops/sec | ±2.85% | 31 | ✓ | +| | | | | +| BrowserBuffer#new(16) | 1,554,491 ops/sec | ±1.60% | 65 | | +| Uint8Array#new(16) | 6,623,930 ops/sec | ±1.66% | 65 | ✓ | +| | | | | +| BrowserBuffer#readDoubleBE | 112,830 ops/sec | ±0.51% | 69 | ✓ | +| DataView#getFloat64 | 93,500 ops/sec | ±0.57% | 68 | | +| | | | | +| BrowserBuffer#readFloatBE | 146,678 ops/sec | ±0.95% | 68 | ✓ | +| DataView#getFloat32 | 99,311 ops/sec | ±0.41% | 67 | | +| | | | | +| BrowserBuffer#readUInt32LE | 843,214 ops/sec | ±0.70% | 69 | ✓ | +| DataView#getUint32 | 103,024 ops/sec | ±0.64% | 67 | | +| | | | | +| BrowserBuffer#slice | 1,013,941 ops/sec | ±0.75% | 67 | | +| Uint8Array#subarray | 1,903,928 ops/sec | ±0.53% | 67 | ✓ | +| | | | | +| BrowserBuffer#writeFloatBE | 61,387 ops/sec | ±0.90% | 67 | | +| DataView#setFloat32 | 141,249 ops/sec | ±0.40% | 66 | ✓ | + + +### Firefox 33 + +| Method | Operations | Accuracy | Sampled | Fastest | +|:-------|:-----------|:---------|:--------|:-------:| +| BrowserBuffer#bracket-notation | 20,800,421 ops/sec | ±1.84% | 60 | | +| Uint8Array#bracket-notation | 20,826,235 ops/sec | ±2.02% | 61 | ✓ | +| | | | | +| BrowserBuffer#concat | 153,076 ops/sec | ±2.32% | 61 | | +| Uint8Array#concat | 1,255,674 ops/sec | ±8.65% | 52 | ✓ | +| | | | | +| BrowserBuffer#copy(16000) | 1,105,312 ops/sec | ±1.16% | 63 | | +| Uint8Array#copy(16000) | 1,615,911 ops/sec | ±0.55% | 66 | ✓ | +| | | | | +| BrowserBuffer#copy(16) | 16,357,599 ops/sec | ±0.73% | 68 | | +| Uint8Array#copy(16) | 31,436,281 ops/sec | ±1.05% | 68 | ✓ | +| | | | | +| BrowserBuffer#new(16000) | 52,995 ops/sec | ±6.01% | 35 | | +| Uint8Array#new(16000) | 87,686 ops/sec | ±5.68% | 45 | ✓ | +| | | | | +| BrowserBuffer#new(16) | 252,031 ops/sec | ±1.61% | 66 | | +| Uint8Array#new(16) | 8,477,026 ops/sec | ±0.49% | 68 | ✓ | +| | | | | +| BrowserBuffer#readDoubleBE | 99,871 ops/sec | ±0.41% | 69 | | +| DataView#getFloat64 | 285,663 ops/sec | ±0.70% | 68 | ✓ | +| | | | | +| BrowserBuffer#readFloatBE | 115,540 ops/sec | ±0.42% | 69 | | +| DataView#getFloat32 | 288,722 ops/sec | ±0.82% | 68 | ✓ | +| | | | | +| BrowserBuffer#readUInt32LE | 633,926 ops/sec | ±1.08% | 67 | ✓ | +| DataView#getUint32 | 294,808 ops/sec | ±0.79% | 64 | | +| | | | | +| BrowserBuffer#slice | 349,425 ops/sec | ±0.46% | 69 | | +| Uint8Array#subarray | 5,965,819 ops/sec | ±0.60% | 65 | ✓ | +| | | | | +| BrowserBuffer#writeFloatBE | 59,980 ops/sec | ±0.41% | 67 | | +| DataView#setFloat32 | 317,634 ops/sec | ±0.63% | 68 | ✓ | + +### Safari 8 + +| Method | Operations | Accuracy | Sampled | Fastest | +|:-------|:-----------|:---------|:--------|:-------:| +| BrowserBuffer#bracket-notation | 10,279,729 ops/sec | ±2.25% | 56 | ✓ | +| Uint8Array#bracket-notation | 10,030,767 ops/sec | ±2.23% | 59 | | +| | | | | +| BrowserBuffer#concat | 144,138 ops/sec | ±1.38% | 65 | | +| Uint8Array#concat | 4,950,764 ops/sec | ±1.70% | 63 | ✓ | +| | | | | +| BrowserBuffer#copy(16000) | 1,058,548 ops/sec | ±1.51% | 64 | | +| Uint8Array#copy(16000) | 1,409,666 ops/sec | ±1.17% | 65 | ✓ | +| | | | | +| BrowserBuffer#copy(16) | 6,282,529 ops/sec | ±1.88% | 58 | | +| Uint8Array#copy(16) | 11,907,128 ops/sec | ±2.87% | 58 | ✓ | +| | | | | +| BrowserBuffer#new(16000) | 101,663 ops/sec | ±3.89% | 57 | | +| Uint8Array#new(16000) | 22,050,818 ops/sec | ±6.51% | 46 | ✓ | +| | | | | +| BrowserBuffer#new(16) | 176,072 ops/sec | ±2.13% | 64 | | +| Uint8Array#new(16) | 24,385,731 ops/sec | ±5.01% | 51 | ✓ | +| | | | | +| BrowserBuffer#readDoubleBE | 41,341 ops/sec | ±1.06% | 67 | | +| DataView#getFloat64 | 322,280 ops/sec | ±0.84% | 68 | ✓ | +| | | | | +| BrowserBuffer#readFloatBE | 46,141 ops/sec | ±1.06% | 65 | | +| DataView#getFloat32 | 337,025 ops/sec | ±0.43% | 69 | ✓ | +| | | | | +| BrowserBuffer#readUInt32LE | 151,551 ops/sec | ±1.02% | 66 | | +| DataView#getUint32 | 308,278 ops/sec | ±0.94% | 67 | ✓ | +| | | | | +| BrowserBuffer#slice | 197,365 ops/sec | ±0.95% | 66 | | +| Uint8Array#subarray | 9,558,024 ops/sec | ±3.08% | 58 | ✓ | +| | | | | +| BrowserBuffer#writeFloatBE | 17,518 ops/sec | ±1.03% | 63 | | +| DataView#setFloat32 | 319,751 ops/sec | ±0.48% | 68 | ✓ | + + +### Node 0.11.14 + +| Method | Operations | Accuracy | Sampled | Fastest | +|:-------|:-----------|:---------|:--------|:-------:| +| BrowserBuffer#bracket-notation | 10,489,828 ops/sec | ±3.25% | 90 | | +| Uint8Array#bracket-notation | 10,534,884 ops/sec | ±0.81% | 92 | ✓ | +| NodeBuffer#bracket-notation | 10,389,910 ops/sec | ±0.97% | 87 | | +| | | | | +| BrowserBuffer#concat | 487,830 ops/sec | ±2.58% | 88 | | +| Uint8Array#concat | 1,814,327 ops/sec | ±1.28% | 88 | ✓ | +| NodeBuffer#concat | 1,636,523 ops/sec | ±1.88% | 73 | | +| | | | | +| BrowserBuffer#copy(16000) | 1,073,665 ops/sec | ±0.77% | 90 | | +| Uint8Array#copy(16000) | 1,348,517 ops/sec | ±0.84% | 89 | ✓ | +| NodeBuffer#copy(16000) | 1,289,533 ops/sec | ±0.82% | 93 | | +| | | | | +| BrowserBuffer#copy(16) | 12,782,706 ops/sec | ±0.74% | 85 | | +| Uint8Array#copy(16) | 14,180,427 ops/sec | ±0.93% | 92 | ✓ | +| NodeBuffer#copy(16) | 11,083,134 ops/sec | ±1.06% | 89 | | +| | | | | +| BrowserBuffer#new(16000) | 141,678 ops/sec | ±3.30% | 67 | | +| Uint8Array#new(16000) | 161,491 ops/sec | ±2.96% | 60 | | +| NodeBuffer#new(16000) | 292,699 ops/sec | ±3.20% | 55 | ✓ | +| | | | | +| BrowserBuffer#new(16) | 1,655,466 ops/sec | ±2.41% | 82 | | +| Uint8Array#new(16) | 14,399,926 ops/sec | ±0.91% | 94 | ✓ | +| NodeBuffer#new(16) | 3,894,696 ops/sec | ±0.88% | 92 | | +| | | | | +| BrowserBuffer#readDoubleBE | 109,582 ops/sec | ±0.75% | 93 | ✓ | +| DataView#getFloat64 | 91,235 ops/sec | ±0.81% | 90 | | +| NodeBuffer#readDoubleBE | 88,593 ops/sec | ±0.96% | 81 | | +| | | | | +| BrowserBuffer#readFloatBE | 139,854 ops/sec | ±1.03% | 85 | ✓ | +| DataView#getFloat32 | 98,744 ops/sec | ±0.80% | 89 | | +| NodeBuffer#readFloatBE | 92,769 ops/sec | ±0.94% | 93 | | +| | | | | +| BrowserBuffer#readUInt32LE | 710,861 ops/sec | ±0.82% | 92 | | +| DataView#getUint32 | 117,893 ops/sec | ±0.84% | 91 | | +| NodeBuffer#readUInt32LE | 851,412 ops/sec | ±0.72% | 93 | ✓ | +| | | | | +| BrowserBuffer#slice | 1,673,877 ops/sec | ±0.73% | 94 | | +| Uint8Array#subarray | 6,919,243 ops/sec | ±0.67% | 90 | ✓ | +| NodeBuffer#slice | 4,617,604 ops/sec | ±0.79% | 93 | | +| | | | | +| BrowserBuffer#writeFloatBE | 66,011 ops/sec | ±0.75% | 93 | | +| DataView#setFloat32 | 127,760 ops/sec | ±0.72% | 93 | ✓ | +| NodeBuffer#writeFloatBE | 103,352 ops/sec | ±0.83% | 93 | | + +### iojs 1.8.1 + +| Method | Operations | Accuracy | Sampled | Fastest | +|:-------|:-----------|:---------|:--------|:-------:| +| BrowserBuffer#bracket-notation | 10,990,488 ops/sec | ±1.11% | 91 | | +| Uint8Array#bracket-notation | 11,268,757 ops/sec | ±0.65% | 97 | | +| NodeBuffer#bracket-notation | 11,353,260 ops/sec | ±0.83% | 94 | ✓ | +| | | | | +| BrowserBuffer#concat | 378,954 ops/sec | ±0.74% | 94 | | +| Uint8Array#concat | 1,358,288 ops/sec | ±0.97% | 87 | | +| NodeBuffer#concat | 1,934,050 ops/sec | ±1.11% | 78 | ✓ | +| | | | | +| BrowserBuffer#copy(16000) | 894,538 ops/sec | ±0.56% | 84 | | +| Uint8Array#copy(16000) | 1,442,656 ops/sec | ±0.71% | 96 | | +| NodeBuffer#copy(16000) | 1,457,898 ops/sec | ±0.53% | 92 | ✓ | +| | | | | +| BrowserBuffer#copy(16) | 12,870,457 ops/sec | ±0.67% | 95 | | +| Uint8Array#copy(16) | 16,643,989 ops/sec | ±0.61% | 93 | ✓ | +| NodeBuffer#copy(16) | 14,885,848 ops/sec | ±0.74% | 94 | | +| | | | | +| BrowserBuffer#new(16000) | 109,264 ops/sec | ±4.21% | 63 | | +| Uint8Array#new(16000) | 138,916 ops/sec | ±1.87% | 61 | | +| NodeBuffer#new(16000) | 281,449 ops/sec | ±3.58% | 51 | ✓ | +| | | | | +| BrowserBuffer#new(16) | 1,362,935 ops/sec | ±0.56% | 99 | | +| Uint8Array#new(16) | 6,193,090 ops/sec | ±0.64% | 95 | ✓ | +| NodeBuffer#new(16) | 4,745,425 ops/sec | ±1.56% | 90 | | +| | | | | +| BrowserBuffer#readDoubleBE | 118,127 ops/sec | ±0.59% | 93 | ✓ | +| DataView#getFloat64 | 107,332 ops/sec | ±0.65% | 91 | | +| NodeBuffer#readDoubleBE | 116,274 ops/sec | ±0.94% | 95 | | +| | | | | +| BrowserBuffer#readFloatBE | 150,326 ops/sec | ±0.58% | 95 | ✓ | +| DataView#getFloat32 | 110,541 ops/sec | ±0.57% | 98 | | +| NodeBuffer#readFloatBE | 121,599 ops/sec | ±0.60% | 87 | | +| | | | | +| BrowserBuffer#readUInt32LE | 814,147 ops/sec | ±0.62% | 93 | | +| DataView#getUint32 | 137,592 ops/sec | ±0.64% | 90 | | +| NodeBuffer#readUInt32LE | 931,650 ops/sec | ±0.71% | 96 | ✓ | +| | | | | +| BrowserBuffer#slice | 878,590 ops/sec | ±0.68% | 93 | | +| Uint8Array#subarray | 2,843,308 ops/sec | ±1.02% | 90 | | +| NodeBuffer#slice | 4,998,316 ops/sec | ±0.68% | 90 | ✓ | +| | | | | +| BrowserBuffer#writeFloatBE | 65,927 ops/sec | ±0.74% | 93 | | +| DataView#setFloat32 | 139,823 ops/sec | ±0.97% | 89 | ✓ | +| NodeBuffer#writeFloatBE | 135,763 ops/sec | ±0.65% | 96 | | +| | | | | + +## Testing the project + +First, install the project: + + npm install + +Then, to run tests in Node.js, run: + + npm run test-node + +To test locally in a browser, you can run: + + npm run test-browser-es5-local # For ES5 browsers that don't support ES6 + npm run test-browser-es6-local # For ES6 compliant browsers + +This will print out a URL that you can then open in a browser to run the tests, using [airtap](https://www.npmjs.com/package/airtap). + +To run automated browser tests using Saucelabs, ensure that your `SAUCE_USERNAME` and `SAUCE_ACCESS_KEY` environment variables are set, then run: + + npm test + +This is what's run in Travis, to check against various browsers. The list of browsers is kept in the `bin/airtap-es5.yml` and `bin/airtap-es6.yml` files. + +## JavaScript Standard Style + +This module uses [JavaScript Standard Style](https://github.com/feross/standard). + +[![JavaScript Style Guide](https://cdn.rawgit.com/feross/standard/master/badge.svg)](https://github.com/feross/standard) + +To test that the code conforms to the style, `npm install` and run: + + ./node_modules/.bin/standard + +## credit + +This was originally forked from [buffer-browserify](https://github.com/toots/buffer-browserify). + +## Security Policies and Procedures + +The `buffer` team and community take all security bugs in `buffer` seriously. Please see our [security policies and procedures](https://github.com/feross/security) document to learn how to report issues. + +## license + +MIT. Copyright (C) [Feross Aboukhadijeh](http://feross.org), and other contributors. Originally forked from an MIT-licensed module by Romain Beauxis. diff --git a/node_modules/buffer/index.d.ts b/node_modules/buffer/index.d.ts new file mode 100644 index 000000000..5d1a804e5 --- /dev/null +++ b/node_modules/buffer/index.d.ts @@ -0,0 +1,186 @@ +export class Buffer extends Uint8Array { + length: number + write(string: string, offset?: number, length?: number, encoding?: string): number; + toString(encoding?: string, start?: number, end?: number): string; + toJSON(): { type: 'Buffer', data: any[] }; + equals(otherBuffer: Buffer): boolean; + compare(otherBuffer: Buffer, targetStart?: number, targetEnd?: number, sourceStart?: number, sourceEnd?: number): number; + copy(targetBuffer: Buffer, targetStart?: number, sourceStart?: number, sourceEnd?: number): number; + slice(start?: number, end?: number): Buffer; + writeUIntLE(value: number, offset: number, byteLength: number, noAssert?: boolean): number; + writeUIntBE(value: number, offset: number, byteLength: number, noAssert?: boolean): number; + writeIntLE(value: number, offset: number, byteLength: number, noAssert?: boolean): number; + writeIntBE(value: number, offset: number, byteLength: number, noAssert?: boolean): number; + readUIntLE(offset: number, byteLength: number, noAssert?: boolean): number; + readUIntBE(offset: number, byteLength: number, noAssert?: boolean): number; + readIntLE(offset: number, byteLength: number, noAssert?: boolean): number; + readIntBE(offset: number, byteLength: number, noAssert?: boolean): number; + readUInt8(offset: number, noAssert?: boolean): number; + readUInt16LE(offset: number, noAssert?: boolean): number; + readUInt16BE(offset: number, noAssert?: boolean): number; + readUInt32LE(offset: number, noAssert?: boolean): number; + readUInt32BE(offset: number, noAssert?: boolean): number; + readInt8(offset: number, noAssert?: boolean): number; + readInt16LE(offset: number, noAssert?: boolean): number; + readInt16BE(offset: number, noAssert?: boolean): number; + readInt32LE(offset: number, noAssert?: boolean): number; + readInt32BE(offset: number, noAssert?: boolean): number; + readFloatLE(offset: number, noAssert?: boolean): number; + readFloatBE(offset: number, noAssert?: boolean): number; + readDoubleLE(offset: number, noAssert?: boolean): number; + readDoubleBE(offset: number, noAssert?: boolean): number; + reverse(): this; + swap16(): Buffer; + swap32(): Buffer; + swap64(): Buffer; + writeUInt8(value: number, offset: number, noAssert?: boolean): number; + writeUInt16LE(value: number, offset: number, noAssert?: boolean): number; + writeUInt16BE(value: number, offset: number, noAssert?: boolean): number; + writeUInt32LE(value: number, offset: number, noAssert?: boolean): number; + writeUInt32BE(value: number, offset: number, noAssert?: boolean): number; + writeInt8(value: number, offset: number, noAssert?: boolean): number; + writeInt16LE(value: number, offset: number, noAssert?: boolean): number; + writeInt16BE(value: number, offset: number, noAssert?: boolean): number; + writeInt32LE(value: number, offset: number, noAssert?: boolean): number; + writeInt32BE(value: number, offset: number, noAssert?: boolean): number; + writeFloatLE(value: number, offset: number, noAssert?: boolean): number; + writeFloatBE(value: number, offset: number, noAssert?: boolean): number; + writeDoubleLE(value: number, offset: number, noAssert?: boolean): number; + writeDoubleBE(value: number, offset: number, noAssert?: boolean): number; + fill(value: any, offset?: number, end?: number): this; + indexOf(value: string | number | Buffer, byteOffset?: number, encoding?: string): number; + lastIndexOf(value: string | number | Buffer, byteOffset?: number, encoding?: string): number; + includes(value: string | number | Buffer, byteOffset?: number, encoding?: string): boolean; + + /** + * Allocates a new buffer containing the given {str}. + * + * @param str String to store in buffer. + * @param encoding encoding to use, optional. Default is 'utf8' + */ + constructor (str: string, encoding?: string); + /** + * Allocates a new buffer of {size} octets. + * + * @param size count of octets to allocate. + */ + constructor (size: number); + /** + * Allocates a new buffer containing the given {array} of octets. + * + * @param array The octets to store. + */ + constructor (array: Uint8Array); + /** + * Produces a Buffer backed by the same allocated memory as + * the given {ArrayBuffer}. + * + * + * @param arrayBuffer The ArrayBuffer with which to share memory. + */ + constructor (arrayBuffer: ArrayBuffer); + /** + * Allocates a new buffer containing the given {array} of octets. + * + * @param array The octets to store. + */ + constructor (array: any[]); + /** + * Copies the passed {buffer} data onto a new {Buffer} instance. + * + * @param buffer The buffer to copy. + */ + constructor (buffer: Buffer); + prototype: Buffer; + /** + * Allocates a new Buffer using an {array} of octets. + * + * @param array + */ + static from(array: any[]): Buffer; + /** + * When passed a reference to the .buffer property of a TypedArray instance, + * the newly created Buffer will share the same allocated memory as the TypedArray. + * The optional {byteOffset} and {length} arguments specify a memory range + * within the {arrayBuffer} that will be shared by the Buffer. + * + * @param arrayBuffer The .buffer property of a TypedArray or a new ArrayBuffer() + * @param byteOffset + * @param length + */ + static from(arrayBuffer: ArrayBuffer, byteOffset?: number, length?: number): Buffer; + /** + * Copies the passed {buffer} data onto a new Buffer instance. + * + * @param buffer + */ + static from(buffer: Buffer | Uint8Array): Buffer; + /** + * Creates a new Buffer containing the given JavaScript string {str}. + * If provided, the {encoding} parameter identifies the character encoding. + * If not provided, {encoding} defaults to 'utf8'. + * + * @param str + */ + static from(str: string, encoding?: string): Buffer; + /** + * Returns true if {obj} is a Buffer + * + * @param obj object to test. + */ + static isBuffer(obj: any): obj is Buffer; + /** + * Returns true if {encoding} is a valid encoding argument. + * Valid string encodings in Node 0.12: 'ascii'|'utf8'|'utf16le'|'ucs2'(alias of 'utf16le')|'base64'|'binary'(deprecated)|'hex' + * + * @param encoding string to test. + */ + static isEncoding(encoding: string): boolean; + /** + * Gives the actual byte length of a string. encoding defaults to 'utf8'. + * This is not the same as String.prototype.length since that returns the number of characters in a string. + * + * @param string string to test. + * @param encoding encoding used to evaluate (defaults to 'utf8') + */ + static byteLength(string: string, encoding?: string): number; + /** + * Returns a buffer which is the result of concatenating all the buffers in the list together. + * + * If the list has no items, or if the totalLength is 0, then it returns a zero-length buffer. + * If the list has exactly one item, then the first item of the list is returned. + * If the list has more than one item, then a new Buffer is created. + * + * @param list An array of Buffer objects to concatenate + * @param totalLength Total length of the buffers when concatenated. + * If totalLength is not provided, it is read from the buffers in the list. However, this adds an additional loop to the function, so it is faster to provide the length explicitly. + */ + static concat(list: Buffer[], totalLength?: number): Buffer; + /** + * The same as buf1.compare(buf2). + */ + static compare(buf1: Buffer, buf2: Buffer): number; + /** + * Allocates a new buffer of {size} octets. + * + * @param size count of octets to allocate. + * @param fill if specified, buffer will be initialized by calling buf.fill(fill). + * If parameter is omitted, buffer will be filled with zeros. + * @param encoding encoding used for call to buf.fill while initializing + */ + static alloc(size: number, fill?: string | Buffer | number, encoding?: string): Buffer; + /** + * Allocates a new buffer of {size} octets, leaving memory not initialized, so the contents + * of the newly created Buffer are unknown and may contain sensitive data. + * + * @param size count of octets to allocate + */ + static allocUnsafe(size: number): Buffer; + /** + * Allocates a new non-pooled buffer of {size} octets, leaving memory not initialized, so the contents + * of the newly created Buffer are unknown and may contain sensitive data. + * + * @param size count of octets to allocate + */ + static allocUnsafeSlow(size: number): Buffer; +} diff --git a/node_modules/buffer/index.js b/node_modules/buffer/index.js new file mode 100644 index 000000000..609cf3113 --- /dev/null +++ b/node_modules/buffer/index.js @@ -0,0 +1,1817 @@ +/*! + * The buffer module from node.js, for the browser. + * + * @author Feross Aboukhadijeh + * @license MIT + */ +/* eslint-disable no-proto */ + +'use strict' + +var base64 = require('base64-js') +var ieee754 = require('ieee754') +var customInspectSymbol = + (typeof Symbol === 'function' && typeof Symbol['for'] === 'function') // eslint-disable-line dot-notation + ? Symbol['for']('nodejs.util.inspect.custom') // eslint-disable-line dot-notation + : null + +exports.Buffer = Buffer +exports.SlowBuffer = SlowBuffer +exports.INSPECT_MAX_BYTES = 50 + +var K_MAX_LENGTH = 0x7fffffff +exports.kMaxLength = K_MAX_LENGTH + +/** + * If `Buffer.TYPED_ARRAY_SUPPORT`: + * === true Use Uint8Array implementation (fastest) + * === false Print warning and recommend using `buffer` v4.x which has an Object + * implementation (most compatible, even IE6) + * + * Browsers that support typed arrays are IE 10+, Firefox 4+, Chrome 7+, Safari 5.1+, + * Opera 11.6+, iOS 4.2+. + * + * We report that the browser does not support typed arrays if the are not subclassable + * using __proto__. Firefox 4-29 lacks support for adding new properties to `Uint8Array` + * (See: https://bugzilla.mozilla.org/show_bug.cgi?id=695438). IE 10 lacks support + * for __proto__ and has a buggy typed array implementation. + */ +Buffer.TYPED_ARRAY_SUPPORT = typedArraySupport() + +if (!Buffer.TYPED_ARRAY_SUPPORT && typeof console !== 'undefined' && + typeof console.error === 'function') { + console.error( + 'This browser lacks typed array (Uint8Array) support which is required by ' + + '`buffer` v5.x. Use `buffer` v4.x if you require old browser support.' + ) +} + +function typedArraySupport () { + // Can typed array instances can be augmented? + try { + var arr = new Uint8Array(1) + var proto = { foo: function () { return 42 } } + Object.setPrototypeOf(proto, Uint8Array.prototype) + Object.setPrototypeOf(arr, proto) + return arr.foo() === 42 + } catch (e) { + return false + } +} + +Object.defineProperty(Buffer.prototype, 'parent', { + enumerable: true, + get: function () { + if (!Buffer.isBuffer(this)) return undefined + return this.buffer + } +}) + +Object.defineProperty(Buffer.prototype, 'offset', { + enumerable: true, + get: function () { + if (!Buffer.isBuffer(this)) return undefined + return this.byteOffset + } +}) + +function createBuffer (length) { + if (length > K_MAX_LENGTH) { + throw new RangeError('The value "' + length + '" is invalid for option "size"') + } + // Return an augmented `Uint8Array` instance + var buf = new Uint8Array(length) + Object.setPrototypeOf(buf, Buffer.prototype) + return buf +} + +/** + * The Buffer constructor returns instances of `Uint8Array` that have their + * prototype changed to `Buffer.prototype`. Furthermore, `Buffer` is a subclass of + * `Uint8Array`, so the returned instances will have all the node `Buffer` methods + * and the `Uint8Array` methods. Square bracket notation works as expected -- it + * returns a single octet. + * + * The `Uint8Array` prototype remains unmodified. + */ + +function Buffer (arg, encodingOrOffset, length) { + // Common case. + if (typeof arg === 'number') { + if (typeof encodingOrOffset === 'string') { + throw new TypeError( + 'The "string" argument must be of type string. Received type number' + ) + } + return allocUnsafe(arg) + } + return from(arg, encodingOrOffset, length) +} + +Buffer.poolSize = 8192 // not used by this implementation + +function from (value, encodingOrOffset, length) { + if (typeof value === 'string') { + return fromString(value, encodingOrOffset) + } + + if (ArrayBuffer.isView(value)) { + return fromArrayView(value) + } + + if (value == null) { + throw new TypeError( + 'The first argument must be one of type string, Buffer, ArrayBuffer, Array, ' + + 'or Array-like Object. Received type ' + (typeof value) + ) + } + + if (isInstance(value, ArrayBuffer) || + (value && isInstance(value.buffer, ArrayBuffer))) { + return fromArrayBuffer(value, encodingOrOffset, length) + } + + if (typeof SharedArrayBuffer !== 'undefined' && + (isInstance(value, SharedArrayBuffer) || + (value && isInstance(value.buffer, SharedArrayBuffer)))) { + return fromArrayBuffer(value, encodingOrOffset, length) + } + + if (typeof value === 'number') { + throw new TypeError( + 'The "value" argument must not be of type number. Received type number' + ) + } + + var valueOf = value.valueOf && value.valueOf() + if (valueOf != null && valueOf !== value) { + return Buffer.from(valueOf, encodingOrOffset, length) + } + + var b = fromObject(value) + if (b) return b + + if (typeof Symbol !== 'undefined' && Symbol.toPrimitive != null && + typeof value[Symbol.toPrimitive] === 'function') { + return Buffer.from( + value[Symbol.toPrimitive]('string'), encodingOrOffset, length + ) + } + + throw new TypeError( + 'The first argument must be one of type string, Buffer, ArrayBuffer, Array, ' + + 'or Array-like Object. Received type ' + (typeof value) + ) +} + +/** + * Functionally equivalent to Buffer(arg, encoding) but throws a TypeError + * if value is a number. + * Buffer.from(str[, encoding]) + * Buffer.from(array) + * Buffer.from(buffer) + * Buffer.from(arrayBuffer[, byteOffset[, length]]) + **/ +Buffer.from = function (value, encodingOrOffset, length) { + return from(value, encodingOrOffset, length) +} + +// Note: Change prototype *after* Buffer.from is defined to workaround Chrome bug: +// https://github.com/feross/buffer/pull/148 +Object.setPrototypeOf(Buffer.prototype, Uint8Array.prototype) +Object.setPrototypeOf(Buffer, Uint8Array) + +function assertSize (size) { + if (typeof size !== 'number') { + throw new TypeError('"size" argument must be of type number') + } else if (size < 0) { + throw new RangeError('The value "' + size + '" is invalid for option "size"') + } +} + +function alloc (size, fill, encoding) { + assertSize(size) + if (size <= 0) { + return createBuffer(size) + } + if (fill !== undefined) { + // Only pay attention to encoding if it's a string. This + // prevents accidentally sending in a number that would + // be interpreted as a start offset. + return typeof encoding === 'string' + ? createBuffer(size).fill(fill, encoding) + : createBuffer(size).fill(fill) + } + return createBuffer(size) +} + +/** + * Creates a new filled Buffer instance. + * alloc(size[, fill[, encoding]]) + **/ +Buffer.alloc = function (size, fill, encoding) { + return alloc(size, fill, encoding) +} + +function allocUnsafe (size) { + assertSize(size) + return createBuffer(size < 0 ? 0 : checked(size) | 0) +} + +/** + * Equivalent to Buffer(num), by default creates a non-zero-filled Buffer instance. + * */ +Buffer.allocUnsafe = function (size) { + return allocUnsafe(size) +} +/** + * Equivalent to SlowBuffer(num), by default creates a non-zero-filled Buffer instance. + */ +Buffer.allocUnsafeSlow = function (size) { + return allocUnsafe(size) +} + +function fromString (string, encoding) { + if (typeof encoding !== 'string' || encoding === '') { + encoding = 'utf8' + } + + if (!Buffer.isEncoding(encoding)) { + throw new TypeError('Unknown encoding: ' + encoding) + } + + var length = byteLength(string, encoding) | 0 + var buf = createBuffer(length) + + var actual = buf.write(string, encoding) + + if (actual !== length) { + // Writing a hex string, for example, that contains invalid characters will + // cause everything after the first invalid character to be ignored. (e.g. + // 'abxxcd' will be treated as 'ab') + buf = buf.slice(0, actual) + } + + return buf +} + +function fromArrayLike (array) { + var length = array.length < 0 ? 0 : checked(array.length) | 0 + var buf = createBuffer(length) + for (var i = 0; i < length; i += 1) { + buf[i] = array[i] & 255 + } + return buf +} + +function fromArrayView (arrayView) { + if (isInstance(arrayView, Uint8Array)) { + var copy = new Uint8Array(arrayView) + return fromArrayBuffer(copy.buffer, copy.byteOffset, copy.byteLength) + } + return fromArrayLike(arrayView) +} + +function fromArrayBuffer (array, byteOffset, length) { + if (byteOffset < 0 || array.byteLength < byteOffset) { + throw new RangeError('"offset" is outside of buffer bounds') + } + + if (array.byteLength < byteOffset + (length || 0)) { + throw new RangeError('"length" is outside of buffer bounds') + } + + var buf + if (byteOffset === undefined && length === undefined) { + buf = new Uint8Array(array) + } else if (length === undefined) { + buf = new Uint8Array(array, byteOffset) + } else { + buf = new Uint8Array(array, byteOffset, length) + } + + // Return an augmented `Uint8Array` instance + Object.setPrototypeOf(buf, Buffer.prototype) + + return buf +} + +function fromObject (obj) { + if (Buffer.isBuffer(obj)) { + var len = checked(obj.length) | 0 + var buf = createBuffer(len) + + if (buf.length === 0) { + return buf + } + + obj.copy(buf, 0, 0, len) + return buf + } + + if (obj.length !== undefined) { + if (typeof obj.length !== 'number' || numberIsNaN(obj.length)) { + return createBuffer(0) + } + return fromArrayLike(obj) + } + + if (obj.type === 'Buffer' && Array.isArray(obj.data)) { + return fromArrayLike(obj.data) + } +} + +function checked (length) { + // Note: cannot use `length < K_MAX_LENGTH` here because that fails when + // length is NaN (which is otherwise coerced to zero.) + if (length >= K_MAX_LENGTH) { + throw new RangeError('Attempt to allocate Buffer larger than maximum ' + + 'size: 0x' + K_MAX_LENGTH.toString(16) + ' bytes') + } + return length | 0 +} + +function SlowBuffer (length) { + if (+length != length) { // eslint-disable-line eqeqeq + length = 0 + } + return Buffer.alloc(+length) +} + +Buffer.isBuffer = function isBuffer (b) { + return b != null && b._isBuffer === true && + b !== Buffer.prototype // so Buffer.isBuffer(Buffer.prototype) will be false +} + +Buffer.compare = function compare (a, b) { + if (isInstance(a, Uint8Array)) a = Buffer.from(a, a.offset, a.byteLength) + if (isInstance(b, Uint8Array)) b = Buffer.from(b, b.offset, b.byteLength) + if (!Buffer.isBuffer(a) || !Buffer.isBuffer(b)) { + throw new TypeError( + 'The "buf1", "buf2" arguments must be one of type Buffer or Uint8Array' + ) + } + + if (a === b) return 0 + + var x = a.length + var y = b.length + + for (var i = 0, len = Math.min(x, y); i < len; ++i) { + if (a[i] !== b[i]) { + x = a[i] + y = b[i] + break + } + } + + if (x < y) return -1 + if (y < x) return 1 + return 0 +} + +Buffer.isEncoding = function isEncoding (encoding) { + switch (String(encoding).toLowerCase()) { + case 'hex': + case 'utf8': + case 'utf-8': + case 'ascii': + case 'latin1': + case 'binary': + case 'base64': + case 'ucs2': + case 'ucs-2': + case 'utf16le': + case 'utf-16le': + return true + default: + return false + } +} + +Buffer.concat = function concat (list, length) { + if (!Array.isArray(list)) { + throw new TypeError('"list" argument must be an Array of Buffers') + } + + if (list.length === 0) { + return Buffer.alloc(0) + } + + var i + if (length === undefined) { + length = 0 + for (i = 0; i < list.length; ++i) { + length += list[i].length + } + } + + var buffer = Buffer.allocUnsafe(length) + var pos = 0 + for (i = 0; i < list.length; ++i) { + var buf = list[i] + if (isInstance(buf, Uint8Array)) { + if (pos + buf.length > buffer.length) { + Buffer.from(buf).copy(buffer, pos) + } else { + Uint8Array.prototype.set.call( + buffer, + buf, + pos + ) + } + } else if (!Buffer.isBuffer(buf)) { + throw new TypeError('"list" argument must be an Array of Buffers') + } else { + buf.copy(buffer, pos) + } + pos += buf.length + } + return buffer +} + +function byteLength (string, encoding) { + if (Buffer.isBuffer(string)) { + return string.length + } + if (ArrayBuffer.isView(string) || isInstance(string, ArrayBuffer)) { + return string.byteLength + } + if (typeof string !== 'string') { + throw new TypeError( + 'The "string" argument must be one of type string, Buffer, or ArrayBuffer. ' + + 'Received type ' + typeof string + ) + } + + var len = string.length + var mustMatch = (arguments.length > 2 && arguments[2] === true) + if (!mustMatch && len === 0) return 0 + + // Use a for loop to avoid recursion + var loweredCase = false + for (;;) { + switch (encoding) { + case 'ascii': + case 'latin1': + case 'binary': + return len + case 'utf8': + case 'utf-8': + return utf8ToBytes(string).length + case 'ucs2': + case 'ucs-2': + case 'utf16le': + case 'utf-16le': + return len * 2 + case 'hex': + return len >>> 1 + case 'base64': + return base64ToBytes(string).length + default: + if (loweredCase) { + return mustMatch ? -1 : utf8ToBytes(string).length // assume utf8 + } + encoding = ('' + encoding).toLowerCase() + loweredCase = true + } + } +} +Buffer.byteLength = byteLength + +function slowToString (encoding, start, end) { + var loweredCase = false + + // No need to verify that "this.length <= MAX_UINT32" since it's a read-only + // property of a typed array. + + // This behaves neither like String nor Uint8Array in that we set start/end + // to their upper/lower bounds if the value passed is out of range. + // undefined is handled specially as per ECMA-262 6th Edition, + // Section 13.3.3.7 Runtime Semantics: KeyedBindingInitialization. + if (start === undefined || start < 0) { + start = 0 + } + // Return early if start > this.length. Done here to prevent potential uint32 + // coercion fail below. + if (start > this.length) { + return '' + } + + if (end === undefined || end > this.length) { + end = this.length + } + + if (end <= 0) { + return '' + } + + // Force coercion to uint32. This will also coerce falsey/NaN values to 0. + end >>>= 0 + start >>>= 0 + + if (end <= start) { + return '' + } + + if (!encoding) encoding = 'utf8' + + while (true) { + switch (encoding) { + case 'hex': + return hexSlice(this, start, end) + + case 'utf8': + case 'utf-8': + return utf8Slice(this, start, end) + + case 'ascii': + return asciiSlice(this, start, end) + + case 'latin1': + case 'binary': + return latin1Slice(this, start, end) + + case 'base64': + return base64Slice(this, start, end) + + case 'ucs2': + case 'ucs-2': + case 'utf16le': + case 'utf-16le': + return utf16leSlice(this, start, end) + + default: + if (loweredCase) throw new TypeError('Unknown encoding: ' + encoding) + encoding = (encoding + '').toLowerCase() + loweredCase = true + } + } +} + +// This property is used by `Buffer.isBuffer` (and the `is-buffer` npm package) +// to detect a Buffer instance. It's not possible to use `instanceof Buffer` +// reliably in a browserify context because there could be multiple different +// copies of the 'buffer' package in use. This method works even for Buffer +// instances that were created from another copy of the `buffer` package. +// See: https://github.com/feross/buffer/issues/154 +Buffer.prototype._isBuffer = true + +function swap (b, n, m) { + var i = b[n] + b[n] = b[m] + b[m] = i +} + +Buffer.prototype.swap16 = function swap16 () { + var len = this.length + if (len % 2 !== 0) { + throw new RangeError('Buffer size must be a multiple of 16-bits') + } + for (var i = 0; i < len; i += 2) { + swap(this, i, i + 1) + } + return this +} + +Buffer.prototype.swap32 = function swap32 () { + var len = this.length + if (len % 4 !== 0) { + throw new RangeError('Buffer size must be a multiple of 32-bits') + } + for (var i = 0; i < len; i += 4) { + swap(this, i, i + 3) + swap(this, i + 1, i + 2) + } + return this +} + +Buffer.prototype.swap64 = function swap64 () { + var len = this.length + if (len % 8 !== 0) { + throw new RangeError('Buffer size must be a multiple of 64-bits') + } + for (var i = 0; i < len; i += 8) { + swap(this, i, i + 7) + swap(this, i + 1, i + 6) + swap(this, i + 2, i + 5) + swap(this, i + 3, i + 4) + } + return this +} + +Buffer.prototype.toString = function toString () { + var length = this.length + if (length === 0) return '' + if (arguments.length === 0) return utf8Slice(this, 0, length) + return slowToString.apply(this, arguments) +} + +Buffer.prototype.toLocaleString = Buffer.prototype.toString + +Buffer.prototype.equals = function equals (b) { + if (!Buffer.isBuffer(b)) throw new TypeError('Argument must be a Buffer') + if (this === b) return true + return Buffer.compare(this, b) === 0 +} + +Buffer.prototype.inspect = function inspect () { + var str = '' + var max = exports.INSPECT_MAX_BYTES + str = this.toString('hex', 0, max).replace(/(.{2})/g, '$1 ').trim() + if (this.length > max) str += ' ... ' + return '' +} +if (customInspectSymbol) { + Buffer.prototype[customInspectSymbol] = Buffer.prototype.inspect +} + +Buffer.prototype.compare = function compare (target, start, end, thisStart, thisEnd) { + if (isInstance(target, Uint8Array)) { + target = Buffer.from(target, target.offset, target.byteLength) + } + if (!Buffer.isBuffer(target)) { + throw new TypeError( + 'The "target" argument must be one of type Buffer or Uint8Array. ' + + 'Received type ' + (typeof target) + ) + } + + if (start === undefined) { + start = 0 + } + if (end === undefined) { + end = target ? target.length : 0 + } + if (thisStart === undefined) { + thisStart = 0 + } + if (thisEnd === undefined) { + thisEnd = this.length + } + + if (start < 0 || end > target.length || thisStart < 0 || thisEnd > this.length) { + throw new RangeError('out of range index') + } + + if (thisStart >= thisEnd && start >= end) { + return 0 + } + if (thisStart >= thisEnd) { + return -1 + } + if (start >= end) { + return 1 + } + + start >>>= 0 + end >>>= 0 + thisStart >>>= 0 + thisEnd >>>= 0 + + if (this === target) return 0 + + var x = thisEnd - thisStart + var y = end - start + var len = Math.min(x, y) + + var thisCopy = this.slice(thisStart, thisEnd) + var targetCopy = target.slice(start, end) + + for (var i = 0; i < len; ++i) { + if (thisCopy[i] !== targetCopy[i]) { + x = thisCopy[i] + y = targetCopy[i] + break + } + } + + if (x < y) return -1 + if (y < x) return 1 + return 0 +} + +// Finds either the first index of `val` in `buffer` at offset >= `byteOffset`, +// OR the last index of `val` in `buffer` at offset <= `byteOffset`. +// +// Arguments: +// - buffer - a Buffer to search +// - val - a string, Buffer, or number +// - byteOffset - an index into `buffer`; will be clamped to an int32 +// - encoding - an optional encoding, relevant is val is a string +// - dir - true for indexOf, false for lastIndexOf +function bidirectionalIndexOf (buffer, val, byteOffset, encoding, dir) { + // Empty buffer means no match + if (buffer.length === 0) return -1 + + // Normalize byteOffset + if (typeof byteOffset === 'string') { + encoding = byteOffset + byteOffset = 0 + } else if (byteOffset > 0x7fffffff) { + byteOffset = 0x7fffffff + } else if (byteOffset < -0x80000000) { + byteOffset = -0x80000000 + } + byteOffset = +byteOffset // Coerce to Number. + if (numberIsNaN(byteOffset)) { + // byteOffset: it it's undefined, null, NaN, "foo", etc, search whole buffer + byteOffset = dir ? 0 : (buffer.length - 1) + } + + // Normalize byteOffset: negative offsets start from the end of the buffer + if (byteOffset < 0) byteOffset = buffer.length + byteOffset + if (byteOffset >= buffer.length) { + if (dir) return -1 + else byteOffset = buffer.length - 1 + } else if (byteOffset < 0) { + if (dir) byteOffset = 0 + else return -1 + } + + // Normalize val + if (typeof val === 'string') { + val = Buffer.from(val, encoding) + } + + // Finally, search either indexOf (if dir is true) or lastIndexOf + if (Buffer.isBuffer(val)) { + // Special case: looking for empty string/buffer always fails + if (val.length === 0) { + return -1 + } + return arrayIndexOf(buffer, val, byteOffset, encoding, dir) + } else if (typeof val === 'number') { + val = val & 0xFF // Search for a byte value [0-255] + if (typeof Uint8Array.prototype.indexOf === 'function') { + if (dir) { + return Uint8Array.prototype.indexOf.call(buffer, val, byteOffset) + } else { + return Uint8Array.prototype.lastIndexOf.call(buffer, val, byteOffset) + } + } + return arrayIndexOf(buffer, [val], byteOffset, encoding, dir) + } + + throw new TypeError('val must be string, number or Buffer') +} + +function arrayIndexOf (arr, val, byteOffset, encoding, dir) { + var indexSize = 1 + var arrLength = arr.length + var valLength = val.length + + if (encoding !== undefined) { + encoding = String(encoding).toLowerCase() + if (encoding === 'ucs2' || encoding === 'ucs-2' || + encoding === 'utf16le' || encoding === 'utf-16le') { + if (arr.length < 2 || val.length < 2) { + return -1 + } + indexSize = 2 + arrLength /= 2 + valLength /= 2 + byteOffset /= 2 + } + } + + function read (buf, i) { + if (indexSize === 1) { + return buf[i] + } else { + return buf.readUInt16BE(i * indexSize) + } + } + + var i + if (dir) { + var foundIndex = -1 + for (i = byteOffset; i < arrLength; i++) { + if (read(arr, i) === read(val, foundIndex === -1 ? 0 : i - foundIndex)) { + if (foundIndex === -1) foundIndex = i + if (i - foundIndex + 1 === valLength) return foundIndex * indexSize + } else { + if (foundIndex !== -1) i -= i - foundIndex + foundIndex = -1 + } + } + } else { + if (byteOffset + valLength > arrLength) byteOffset = arrLength - valLength + for (i = byteOffset; i >= 0; i--) { + var found = true + for (var j = 0; j < valLength; j++) { + if (read(arr, i + j) !== read(val, j)) { + found = false + break + } + } + if (found) return i + } + } + + return -1 +} + +Buffer.prototype.includes = function includes (val, byteOffset, encoding) { + return this.indexOf(val, byteOffset, encoding) !== -1 +} + +Buffer.prototype.indexOf = function indexOf (val, byteOffset, encoding) { + return bidirectionalIndexOf(this, val, byteOffset, encoding, true) +} + +Buffer.prototype.lastIndexOf = function lastIndexOf (val, byteOffset, encoding) { + return bidirectionalIndexOf(this, val, byteOffset, encoding, false) +} + +function hexWrite (buf, string, offset, length) { + offset = Number(offset) || 0 + var remaining = buf.length - offset + if (!length) { + length = remaining + } else { + length = Number(length) + if (length > remaining) { + length = remaining + } + } + + var strLen = string.length + + if (length > strLen / 2) { + length = strLen / 2 + } + for (var i = 0; i < length; ++i) { + var parsed = parseInt(string.substr(i * 2, 2), 16) + if (numberIsNaN(parsed)) return i + buf[offset + i] = parsed + } + return i +} + +function utf8Write (buf, string, offset, length) { + return blitBuffer(utf8ToBytes(string, buf.length - offset), buf, offset, length) +} + +function asciiWrite (buf, string, offset, length) { + return blitBuffer(asciiToBytes(string), buf, offset, length) +} + +function base64Write (buf, string, offset, length) { + return blitBuffer(base64ToBytes(string), buf, offset, length) +} + +function ucs2Write (buf, string, offset, length) { + return blitBuffer(utf16leToBytes(string, buf.length - offset), buf, offset, length) +} + +Buffer.prototype.write = function write (string, offset, length, encoding) { + // Buffer#write(string) + if (offset === undefined) { + encoding = 'utf8' + length = this.length + offset = 0 + // Buffer#write(string, encoding) + } else if (length === undefined && typeof offset === 'string') { + encoding = offset + length = this.length + offset = 0 + // Buffer#write(string, offset[, length][, encoding]) + } else if (isFinite(offset)) { + offset = offset >>> 0 + if (isFinite(length)) { + length = length >>> 0 + if (encoding === undefined) encoding = 'utf8' + } else { + encoding = length + length = undefined + } + } else { + throw new Error( + 'Buffer.write(string, encoding, offset[, length]) is no longer supported' + ) + } + + var remaining = this.length - offset + if (length === undefined || length > remaining) length = remaining + + if ((string.length > 0 && (length < 0 || offset < 0)) || offset > this.length) { + throw new RangeError('Attempt to write outside buffer bounds') + } + + if (!encoding) encoding = 'utf8' + + var loweredCase = false + for (;;) { + switch (encoding) { + case 'hex': + return hexWrite(this, string, offset, length) + + case 'utf8': + case 'utf-8': + return utf8Write(this, string, offset, length) + + case 'ascii': + case 'latin1': + case 'binary': + return asciiWrite(this, string, offset, length) + + case 'base64': + // Warning: maxLength not taken into account in base64Write + return base64Write(this, string, offset, length) + + case 'ucs2': + case 'ucs-2': + case 'utf16le': + case 'utf-16le': + return ucs2Write(this, string, offset, length) + + default: + if (loweredCase) throw new TypeError('Unknown encoding: ' + encoding) + encoding = ('' + encoding).toLowerCase() + loweredCase = true + } + } +} + +Buffer.prototype.toJSON = function toJSON () { + return { + type: 'Buffer', + data: Array.prototype.slice.call(this._arr || this, 0) + } +} + +function base64Slice (buf, start, end) { + if (start === 0 && end === buf.length) { + return base64.fromByteArray(buf) + } else { + return base64.fromByteArray(buf.slice(start, end)) + } +} + +function utf8Slice (buf, start, end) { + end = Math.min(buf.length, end) + var res = [] + + var i = start + while (i < end) { + var firstByte = buf[i] + var codePoint = null + var bytesPerSequence = (firstByte > 0xEF) + ? 4 + : (firstByte > 0xDF) + ? 3 + : (firstByte > 0xBF) + ? 2 + : 1 + + if (i + bytesPerSequence <= end) { + var secondByte, thirdByte, fourthByte, tempCodePoint + + switch (bytesPerSequence) { + case 1: + if (firstByte < 0x80) { + codePoint = firstByte + } + break + case 2: + secondByte = buf[i + 1] + if ((secondByte & 0xC0) === 0x80) { + tempCodePoint = (firstByte & 0x1F) << 0x6 | (secondByte & 0x3F) + if (tempCodePoint > 0x7F) { + codePoint = tempCodePoint + } + } + break + case 3: + secondByte = buf[i + 1] + thirdByte = buf[i + 2] + if ((secondByte & 0xC0) === 0x80 && (thirdByte & 0xC0) === 0x80) { + tempCodePoint = (firstByte & 0xF) << 0xC | (secondByte & 0x3F) << 0x6 | (thirdByte & 0x3F) + if (tempCodePoint > 0x7FF && (tempCodePoint < 0xD800 || tempCodePoint > 0xDFFF)) { + codePoint = tempCodePoint + } + } + break + case 4: + secondByte = buf[i + 1] + thirdByte = buf[i + 2] + fourthByte = buf[i + 3] + if ((secondByte & 0xC0) === 0x80 && (thirdByte & 0xC0) === 0x80 && (fourthByte & 0xC0) === 0x80) { + tempCodePoint = (firstByte & 0xF) << 0x12 | (secondByte & 0x3F) << 0xC | (thirdByte & 0x3F) << 0x6 | (fourthByte & 0x3F) + if (tempCodePoint > 0xFFFF && tempCodePoint < 0x110000) { + codePoint = tempCodePoint + } + } + } + } + + if (codePoint === null) { + // we did not generate a valid codePoint so insert a + // replacement char (U+FFFD) and advance only 1 byte + codePoint = 0xFFFD + bytesPerSequence = 1 + } else if (codePoint > 0xFFFF) { + // encode to utf16 (surrogate pair dance) + codePoint -= 0x10000 + res.push(codePoint >>> 10 & 0x3FF | 0xD800) + codePoint = 0xDC00 | codePoint & 0x3FF + } + + res.push(codePoint) + i += bytesPerSequence + } + + return decodeCodePointsArray(res) +} + +// Based on http://stackoverflow.com/a/22747272/680742, the browser with +// the lowest limit is Chrome, with 0x10000 args. +// We go 1 magnitude less, for safety +var MAX_ARGUMENTS_LENGTH = 0x1000 + +function decodeCodePointsArray (codePoints) { + var len = codePoints.length + if (len <= MAX_ARGUMENTS_LENGTH) { + return String.fromCharCode.apply(String, codePoints) // avoid extra slice() + } + + // Decode in chunks to avoid "call stack size exceeded". + var res = '' + var i = 0 + while (i < len) { + res += String.fromCharCode.apply( + String, + codePoints.slice(i, i += MAX_ARGUMENTS_LENGTH) + ) + } + return res +} + +function asciiSlice (buf, start, end) { + var ret = '' + end = Math.min(buf.length, end) + + for (var i = start; i < end; ++i) { + ret += String.fromCharCode(buf[i] & 0x7F) + } + return ret +} + +function latin1Slice (buf, start, end) { + var ret = '' + end = Math.min(buf.length, end) + + for (var i = start; i < end; ++i) { + ret += String.fromCharCode(buf[i]) + } + return ret +} + +function hexSlice (buf, start, end) { + var len = buf.length + + if (!start || start < 0) start = 0 + if (!end || end < 0 || end > len) end = len + + var out = '' + for (var i = start; i < end; ++i) { + out += hexSliceLookupTable[buf[i]] + } + return out +} + +function utf16leSlice (buf, start, end) { + var bytes = buf.slice(start, end) + var res = '' + // If bytes.length is odd, the last 8 bits must be ignored (same as node.js) + for (var i = 0; i < bytes.length - 1; i += 2) { + res += String.fromCharCode(bytes[i] + (bytes[i + 1] * 256)) + } + return res +} + +Buffer.prototype.slice = function slice (start, end) { + var len = this.length + start = ~~start + end = end === undefined ? len : ~~end + + if (start < 0) { + start += len + if (start < 0) start = 0 + } else if (start > len) { + start = len + } + + if (end < 0) { + end += len + if (end < 0) end = 0 + } else if (end > len) { + end = len + } + + if (end < start) end = start + + var newBuf = this.subarray(start, end) + // Return an augmented `Uint8Array` instance + Object.setPrototypeOf(newBuf, Buffer.prototype) + + return newBuf +} + +/* + * Need to make sure that buffer isn't trying to write out of bounds. + */ +function checkOffset (offset, ext, length) { + if ((offset % 1) !== 0 || offset < 0) throw new RangeError('offset is not uint') + if (offset + ext > length) throw new RangeError('Trying to access beyond buffer length') +} + +Buffer.prototype.readUintLE = +Buffer.prototype.readUIntLE = function readUIntLE (offset, byteLength, noAssert) { + offset = offset >>> 0 + byteLength = byteLength >>> 0 + if (!noAssert) checkOffset(offset, byteLength, this.length) + + var val = this[offset] + var mul = 1 + var i = 0 + while (++i < byteLength && (mul *= 0x100)) { + val += this[offset + i] * mul + } + + return val +} + +Buffer.prototype.readUintBE = +Buffer.prototype.readUIntBE = function readUIntBE (offset, byteLength, noAssert) { + offset = offset >>> 0 + byteLength = byteLength >>> 0 + if (!noAssert) { + checkOffset(offset, byteLength, this.length) + } + + var val = this[offset + --byteLength] + var mul = 1 + while (byteLength > 0 && (mul *= 0x100)) { + val += this[offset + --byteLength] * mul + } + + return val +} + +Buffer.prototype.readUint8 = +Buffer.prototype.readUInt8 = function readUInt8 (offset, noAssert) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 1, this.length) + return this[offset] +} + +Buffer.prototype.readUint16LE = +Buffer.prototype.readUInt16LE = function readUInt16LE (offset, noAssert) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 2, this.length) + return this[offset] | (this[offset + 1] << 8) +} + +Buffer.prototype.readUint16BE = +Buffer.prototype.readUInt16BE = function readUInt16BE (offset, noAssert) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 2, this.length) + return (this[offset] << 8) | this[offset + 1] +} + +Buffer.prototype.readUint32LE = +Buffer.prototype.readUInt32LE = function readUInt32LE (offset, noAssert) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 4, this.length) + + return ((this[offset]) | + (this[offset + 1] << 8) | + (this[offset + 2] << 16)) + + (this[offset + 3] * 0x1000000) +} + +Buffer.prototype.readUint32BE = +Buffer.prototype.readUInt32BE = function readUInt32BE (offset, noAssert) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 4, this.length) + + return (this[offset] * 0x1000000) + + ((this[offset + 1] << 16) | + (this[offset + 2] << 8) | + this[offset + 3]) +} + +Buffer.prototype.readIntLE = function readIntLE (offset, byteLength, noAssert) { + offset = offset >>> 0 + byteLength = byteLength >>> 0 + if (!noAssert) checkOffset(offset, byteLength, this.length) + + var val = this[offset] + var mul = 1 + var i = 0 + while (++i < byteLength && (mul *= 0x100)) { + val += this[offset + i] * mul + } + mul *= 0x80 + + if (val >= mul) val -= Math.pow(2, 8 * byteLength) + + return val +} + +Buffer.prototype.readIntBE = function readIntBE (offset, byteLength, noAssert) { + offset = offset >>> 0 + byteLength = byteLength >>> 0 + if (!noAssert) checkOffset(offset, byteLength, this.length) + + var i = byteLength + var mul = 1 + var val = this[offset + --i] + while (i > 0 && (mul *= 0x100)) { + val += this[offset + --i] * mul + } + mul *= 0x80 + + if (val >= mul) val -= Math.pow(2, 8 * byteLength) + + return val +} + +Buffer.prototype.readInt8 = function readInt8 (offset, noAssert) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 1, this.length) + if (!(this[offset] & 0x80)) return (this[offset]) + return ((0xff - this[offset] + 1) * -1) +} + +Buffer.prototype.readInt16LE = function readInt16LE (offset, noAssert) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 2, this.length) + var val = this[offset] | (this[offset + 1] << 8) + return (val & 0x8000) ? val | 0xFFFF0000 : val +} + +Buffer.prototype.readInt16BE = function readInt16BE (offset, noAssert) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 2, this.length) + var val = this[offset + 1] | (this[offset] << 8) + return (val & 0x8000) ? val | 0xFFFF0000 : val +} + +Buffer.prototype.readInt32LE = function readInt32LE (offset, noAssert) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 4, this.length) + + return (this[offset]) | + (this[offset + 1] << 8) | + (this[offset + 2] << 16) | + (this[offset + 3] << 24) +} + +Buffer.prototype.readInt32BE = function readInt32BE (offset, noAssert) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 4, this.length) + + return (this[offset] << 24) | + (this[offset + 1] << 16) | + (this[offset + 2] << 8) | + (this[offset + 3]) +} + +Buffer.prototype.readFloatLE = function readFloatLE (offset, noAssert) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 4, this.length) + return ieee754.read(this, offset, true, 23, 4) +} + +Buffer.prototype.readFloatBE = function readFloatBE (offset, noAssert) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 4, this.length) + return ieee754.read(this, offset, false, 23, 4) +} + +Buffer.prototype.readDoubleLE = function readDoubleLE (offset, noAssert) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 8, this.length) + return ieee754.read(this, offset, true, 52, 8) +} + +Buffer.prototype.readDoubleBE = function readDoubleBE (offset, noAssert) { + offset = offset >>> 0 + if (!noAssert) checkOffset(offset, 8, this.length) + return ieee754.read(this, offset, false, 52, 8) +} + +function checkInt (buf, value, offset, ext, max, min) { + if (!Buffer.isBuffer(buf)) throw new TypeError('"buffer" argument must be a Buffer instance') + if (value > max || value < min) throw new RangeError('"value" argument is out of bounds') + if (offset + ext > buf.length) throw new RangeError('Index out of range') +} + +Buffer.prototype.writeUintLE = +Buffer.prototype.writeUIntLE = function writeUIntLE (value, offset, byteLength, noAssert) { + value = +value + offset = offset >>> 0 + byteLength = byteLength >>> 0 + if (!noAssert) { + var maxBytes = Math.pow(2, 8 * byteLength) - 1 + checkInt(this, value, offset, byteLength, maxBytes, 0) + } + + var mul = 1 + var i = 0 + this[offset] = value & 0xFF + while (++i < byteLength && (mul *= 0x100)) { + this[offset + i] = (value / mul) & 0xFF + } + + return offset + byteLength +} + +Buffer.prototype.writeUintBE = +Buffer.prototype.writeUIntBE = function writeUIntBE (value, offset, byteLength, noAssert) { + value = +value + offset = offset >>> 0 + byteLength = byteLength >>> 0 + if (!noAssert) { + var maxBytes = Math.pow(2, 8 * byteLength) - 1 + checkInt(this, value, offset, byteLength, maxBytes, 0) + } + + var i = byteLength - 1 + var mul = 1 + this[offset + i] = value & 0xFF + while (--i >= 0 && (mul *= 0x100)) { + this[offset + i] = (value / mul) & 0xFF + } + + return offset + byteLength +} + +Buffer.prototype.writeUint8 = +Buffer.prototype.writeUInt8 = function writeUInt8 (value, offset, noAssert) { + value = +value + offset = offset >>> 0 + if (!noAssert) checkInt(this, value, offset, 1, 0xff, 0) + this[offset] = (value & 0xff) + return offset + 1 +} + +Buffer.prototype.writeUint16LE = +Buffer.prototype.writeUInt16LE = function writeUInt16LE (value, offset, noAssert) { + value = +value + offset = offset >>> 0 + if (!noAssert) checkInt(this, value, offset, 2, 0xffff, 0) + this[offset] = (value & 0xff) + this[offset + 1] = (value >>> 8) + return offset + 2 +} + +Buffer.prototype.writeUint16BE = +Buffer.prototype.writeUInt16BE = function writeUInt16BE (value, offset, noAssert) { + value = +value + offset = offset >>> 0 + if (!noAssert) checkInt(this, value, offset, 2, 0xffff, 0) + this[offset] = (value >>> 8) + this[offset + 1] = (value & 0xff) + return offset + 2 +} + +Buffer.prototype.writeUint32LE = +Buffer.prototype.writeUInt32LE = function writeUInt32LE (value, offset, noAssert) { + value = +value + offset = offset >>> 0 + if (!noAssert) checkInt(this, value, offset, 4, 0xffffffff, 0) + this[offset + 3] = (value >>> 24) + this[offset + 2] = (value >>> 16) + this[offset + 1] = (value >>> 8) + this[offset] = (value & 0xff) + return offset + 4 +} + +Buffer.prototype.writeUint32BE = +Buffer.prototype.writeUInt32BE = function writeUInt32BE (value, offset, noAssert) { + value = +value + offset = offset >>> 0 + if (!noAssert) checkInt(this, value, offset, 4, 0xffffffff, 0) + this[offset] = (value >>> 24) + this[offset + 1] = (value >>> 16) + this[offset + 2] = (value >>> 8) + this[offset + 3] = (value & 0xff) + return offset + 4 +} + +Buffer.prototype.writeIntLE = function writeIntLE (value, offset, byteLength, noAssert) { + value = +value + offset = offset >>> 0 + if (!noAssert) { + var limit = Math.pow(2, (8 * byteLength) - 1) + + checkInt(this, value, offset, byteLength, limit - 1, -limit) + } + + var i = 0 + var mul = 1 + var sub = 0 + this[offset] = value & 0xFF + while (++i < byteLength && (mul *= 0x100)) { + if (value < 0 && sub === 0 && this[offset + i - 1] !== 0) { + sub = 1 + } + this[offset + i] = ((value / mul) >> 0) - sub & 0xFF + } + + return offset + byteLength +} + +Buffer.prototype.writeIntBE = function writeIntBE (value, offset, byteLength, noAssert) { + value = +value + offset = offset >>> 0 + if (!noAssert) { + var limit = Math.pow(2, (8 * byteLength) - 1) + + checkInt(this, value, offset, byteLength, limit - 1, -limit) + } + + var i = byteLength - 1 + var mul = 1 + var sub = 0 + this[offset + i] = value & 0xFF + while (--i >= 0 && (mul *= 0x100)) { + if (value < 0 && sub === 0 && this[offset + i + 1] !== 0) { + sub = 1 + } + this[offset + i] = ((value / mul) >> 0) - sub & 0xFF + } + + return offset + byteLength +} + +Buffer.prototype.writeInt8 = function writeInt8 (value, offset, noAssert) { + value = +value + offset = offset >>> 0 + if (!noAssert) checkInt(this, value, offset, 1, 0x7f, -0x80) + if (value < 0) value = 0xff + value + 1 + this[offset] = (value & 0xff) + return offset + 1 +} + +Buffer.prototype.writeInt16LE = function writeInt16LE (value, offset, noAssert) { + value = +value + offset = offset >>> 0 + if (!noAssert) checkInt(this, value, offset, 2, 0x7fff, -0x8000) + this[offset] = (value & 0xff) + this[offset + 1] = (value >>> 8) + return offset + 2 +} + +Buffer.prototype.writeInt16BE = function writeInt16BE (value, offset, noAssert) { + value = +value + offset = offset >>> 0 + if (!noAssert) checkInt(this, value, offset, 2, 0x7fff, -0x8000) + this[offset] = (value >>> 8) + this[offset + 1] = (value & 0xff) + return offset + 2 +} + +Buffer.prototype.writeInt32LE = function writeInt32LE (value, offset, noAssert) { + value = +value + offset = offset >>> 0 + if (!noAssert) checkInt(this, value, offset, 4, 0x7fffffff, -0x80000000) + this[offset] = (value & 0xff) + this[offset + 1] = (value >>> 8) + this[offset + 2] = (value >>> 16) + this[offset + 3] = (value >>> 24) + return offset + 4 +} + +Buffer.prototype.writeInt32BE = function writeInt32BE (value, offset, noAssert) { + value = +value + offset = offset >>> 0 + if (!noAssert) checkInt(this, value, offset, 4, 0x7fffffff, -0x80000000) + if (value < 0) value = 0xffffffff + value + 1 + this[offset] = (value >>> 24) + this[offset + 1] = (value >>> 16) + this[offset + 2] = (value >>> 8) + this[offset + 3] = (value & 0xff) + return offset + 4 +} + +function checkIEEE754 (buf, value, offset, ext, max, min) { + if (offset + ext > buf.length) throw new RangeError('Index out of range') + if (offset < 0) throw new RangeError('Index out of range') +} + +function writeFloat (buf, value, offset, littleEndian, noAssert) { + value = +value + offset = offset >>> 0 + if (!noAssert) { + checkIEEE754(buf, value, offset, 4, 3.4028234663852886e+38, -3.4028234663852886e+38) + } + ieee754.write(buf, value, offset, littleEndian, 23, 4) + return offset + 4 +} + +Buffer.prototype.writeFloatLE = function writeFloatLE (value, offset, noAssert) { + return writeFloat(this, value, offset, true, noAssert) +} + +Buffer.prototype.writeFloatBE = function writeFloatBE (value, offset, noAssert) { + return writeFloat(this, value, offset, false, noAssert) +} + +function writeDouble (buf, value, offset, littleEndian, noAssert) { + value = +value + offset = offset >>> 0 + if (!noAssert) { + checkIEEE754(buf, value, offset, 8, 1.7976931348623157E+308, -1.7976931348623157E+308) + } + ieee754.write(buf, value, offset, littleEndian, 52, 8) + return offset + 8 +} + +Buffer.prototype.writeDoubleLE = function writeDoubleLE (value, offset, noAssert) { + return writeDouble(this, value, offset, true, noAssert) +} + +Buffer.prototype.writeDoubleBE = function writeDoubleBE (value, offset, noAssert) { + return writeDouble(this, value, offset, false, noAssert) +} + +// copy(targetBuffer, targetStart=0, sourceStart=0, sourceEnd=buffer.length) +Buffer.prototype.copy = function copy (target, targetStart, start, end) { + if (!Buffer.isBuffer(target)) throw new TypeError('argument should be a Buffer') + if (!start) start = 0 + if (!end && end !== 0) end = this.length + if (targetStart >= target.length) targetStart = target.length + if (!targetStart) targetStart = 0 + if (end > 0 && end < start) end = start + + // Copy 0 bytes; we're done + if (end === start) return 0 + if (target.length === 0 || this.length === 0) return 0 + + // Fatal error conditions + if (targetStart < 0) { + throw new RangeError('targetStart out of bounds') + } + if (start < 0 || start >= this.length) throw new RangeError('Index out of range') + if (end < 0) throw new RangeError('sourceEnd out of bounds') + + // Are we oob? + if (end > this.length) end = this.length + if (target.length - targetStart < end - start) { + end = target.length - targetStart + start + } + + var len = end - start + + if (this === target && typeof Uint8Array.prototype.copyWithin === 'function') { + // Use built-in when available, missing from IE11 + this.copyWithin(targetStart, start, end) + } else { + Uint8Array.prototype.set.call( + target, + this.subarray(start, end), + targetStart + ) + } + + return len +} + +// Usage: +// buffer.fill(number[, offset[, end]]) +// buffer.fill(buffer[, offset[, end]]) +// buffer.fill(string[, offset[, end]][, encoding]) +Buffer.prototype.fill = function fill (val, start, end, encoding) { + // Handle string cases: + if (typeof val === 'string') { + if (typeof start === 'string') { + encoding = start + start = 0 + end = this.length + } else if (typeof end === 'string') { + encoding = end + end = this.length + } + if (encoding !== undefined && typeof encoding !== 'string') { + throw new TypeError('encoding must be a string') + } + if (typeof encoding === 'string' && !Buffer.isEncoding(encoding)) { + throw new TypeError('Unknown encoding: ' + encoding) + } + if (val.length === 1) { + var code = val.charCodeAt(0) + if ((encoding === 'utf8' && code < 128) || + encoding === 'latin1') { + // Fast path: If `val` fits into a single byte, use that numeric value. + val = code + } + } + } else if (typeof val === 'number') { + val = val & 255 + } else if (typeof val === 'boolean') { + val = Number(val) + } + + // Invalid ranges are not set to a default, so can range check early. + if (start < 0 || this.length < start || this.length < end) { + throw new RangeError('Out of range index') + } + + if (end <= start) { + return this + } + + start = start >>> 0 + end = end === undefined ? this.length : end >>> 0 + + if (!val) val = 0 + + var i + if (typeof val === 'number') { + for (i = start; i < end; ++i) { + this[i] = val + } + } else { + var bytes = Buffer.isBuffer(val) + ? val + : Buffer.from(val, encoding) + var len = bytes.length + if (len === 0) { + throw new TypeError('The value "' + val + + '" is invalid for argument "value"') + } + for (i = 0; i < end - start; ++i) { + this[i + start] = bytes[i % len] + } + } + + return this +} + +// HELPER FUNCTIONS +// ================ + +var INVALID_BASE64_RE = /[^+/0-9A-Za-z-_]/g + +function base64clean (str) { + // Node takes equal signs as end of the Base64 encoding + str = str.split('=')[0] + // Node strips out invalid characters like \n and \t from the string, base64-js does not + str = str.trim().replace(INVALID_BASE64_RE, '') + // Node converts strings with length < 2 to '' + if (str.length < 2) return '' + // Node allows for non-padded base64 strings (missing trailing ===), base64-js does not + while (str.length % 4 !== 0) { + str = str + '=' + } + return str +} + +function utf8ToBytes (string, units) { + units = units || Infinity + var codePoint + var length = string.length + var leadSurrogate = null + var bytes = [] + + for (var i = 0; i < length; ++i) { + codePoint = string.charCodeAt(i) + + // is surrogate component + if (codePoint > 0xD7FF && codePoint < 0xE000) { + // last char was a lead + if (!leadSurrogate) { + // no lead yet + if (codePoint > 0xDBFF) { + // unexpected trail + if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD) + continue + } else if (i + 1 === length) { + // unpaired lead + if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD) + continue + } + + // valid lead + leadSurrogate = codePoint + + continue + } + + // 2 leads in a row + if (codePoint < 0xDC00) { + if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD) + leadSurrogate = codePoint + continue + } + + // valid surrogate pair + codePoint = (leadSurrogate - 0xD800 << 10 | codePoint - 0xDC00) + 0x10000 + } else if (leadSurrogate) { + // valid bmp char, but last char was a lead + if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD) + } + + leadSurrogate = null + + // encode utf8 + if (codePoint < 0x80) { + if ((units -= 1) < 0) break + bytes.push(codePoint) + } else if (codePoint < 0x800) { + if ((units -= 2) < 0) break + bytes.push( + codePoint >> 0x6 | 0xC0, + codePoint & 0x3F | 0x80 + ) + } else if (codePoint < 0x10000) { + if ((units -= 3) < 0) break + bytes.push( + codePoint >> 0xC | 0xE0, + codePoint >> 0x6 & 0x3F | 0x80, + codePoint & 0x3F | 0x80 + ) + } else if (codePoint < 0x110000) { + if ((units -= 4) < 0) break + bytes.push( + codePoint >> 0x12 | 0xF0, + codePoint >> 0xC & 0x3F | 0x80, + codePoint >> 0x6 & 0x3F | 0x80, + codePoint & 0x3F | 0x80 + ) + } else { + throw new Error('Invalid code point') + } + } + + return bytes +} + +function asciiToBytes (str) { + var byteArray = [] + for (var i = 0; i < str.length; ++i) { + // Node's code seems to be doing this and not & 0x7F.. + byteArray.push(str.charCodeAt(i) & 0xFF) + } + return byteArray +} + +function utf16leToBytes (str, units) { + var c, hi, lo + var byteArray = [] + for (var i = 0; i < str.length; ++i) { + if ((units -= 2) < 0) break + + c = str.charCodeAt(i) + hi = c >> 8 + lo = c % 256 + byteArray.push(lo) + byteArray.push(hi) + } + + return byteArray +} + +function base64ToBytes (str) { + return base64.toByteArray(base64clean(str)) +} + +function blitBuffer (src, dst, offset, length) { + for (var i = 0; i < length; ++i) { + if ((i + offset >= dst.length) || (i >= src.length)) break + dst[i + offset] = src[i] + } + return i +} + +// ArrayBuffer or Uint8Array objects from other contexts (i.e. iframes) do not pass +// the `instanceof` check but they should be treated as of that type. +// See: https://github.com/feross/buffer/issues/166 +function isInstance (obj, type) { + return obj instanceof type || + (obj != null && obj.constructor != null && obj.constructor.name != null && + obj.constructor.name === type.name) +} +function numberIsNaN (obj) { + // For IE11 support + return obj !== obj // eslint-disable-line no-self-compare +} + +// Create lookup table for `toString('hex')` +// See: https://github.com/feross/buffer/issues/219 +var hexSliceLookupTable = (function () { + var alphabet = '0123456789abcdef' + var table = new Array(256) + for (var i = 0; i < 16; ++i) { + var i16 = i * 16 + for (var j = 0; j < 16; ++j) { + table[i16 + j] = alphabet[i] + alphabet[j] + } + } + return table +})() diff --git a/node_modules/buffer/package.json b/node_modules/buffer/package.json new file mode 100644 index 000000000..3b1b4986f --- /dev/null +++ b/node_modules/buffer/package.json @@ -0,0 +1,96 @@ +{ + "name": "buffer", + "description": "Node.js Buffer API, for the browser", + "version": "5.7.1", + "author": { + "name": "Feross Aboukhadijeh", + "email": "feross@feross.org", + "url": "https://feross.org" + }, + "bugs": { + "url": "https://github.com/feross/buffer/issues" + }, + "contributors": [ + "Romain Beauxis ", + "James Halliday " + ], + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + }, + "devDependencies": { + "airtap": "^3.0.0", + "benchmark": "^2.1.4", + "browserify": "^17.0.0", + "concat-stream": "^2.0.0", + "hyperquest": "^2.1.3", + "is-buffer": "^2.0.4", + "is-nan": "^1.3.0", + "split": "^1.0.1", + "standard": "*", + "tape": "^5.0.1", + "through2": "^4.0.2", + "uglify-js": "^3.11.3" + }, + "homepage": "https://github.com/feross/buffer", + "jspm": { + "map": { + "./index.js": { + "node": "@node/buffer" + } + } + }, + "keywords": [ + "arraybuffer", + "browser", + "browserify", + "buffer", + "compatible", + "dataview", + "uint8array" + ], + "license": "MIT", + "main": "index.js", + "types": "index.d.ts", + "repository": { + "type": "git", + "url": "git://github.com/feross/buffer.git" + }, + "scripts": { + "perf": "browserify --debug perf/bracket-notation.js > perf/bundle.js && open perf/index.html", + "perf-node": "node perf/bracket-notation.js && node perf/concat.js && node perf/copy-big.js && node perf/copy.js && node perf/new-big.js && node perf/new.js && node perf/readDoubleBE.js && node perf/readFloatBE.js && node perf/readUInt32LE.js && node perf/slice.js && node perf/writeFloatBE.js", + "size": "browserify -r ./ | uglifyjs -c -m | gzip | wc -c", + "test": "standard && node ./bin/test.js", + "test-browser-es5": "airtap -- test/*.js", + "test-browser-es5-local": "airtap --local -- test/*.js", + "test-browser-es6": "airtap -- test/*.js test/node/*.js", + "test-browser-es6-local": "airtap --local -- test/*.js test/node/*.js", + "test-node": "tape test/*.js test/node/*.js", + "update-authors": "./bin/update-authors.sh" + }, + "standard": { + "ignore": [ + "test/node/**/*.js", + "test/common.js", + "test/_polyfill.js", + "perf/**/*.js" + ], + "globals": [ + "SharedArrayBuffer" + ] + }, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] +} diff --git a/node_modules/bytes/History.md b/node_modules/bytes/History.md new file mode 100644 index 000000000..d60ce0e6d --- /dev/null +++ b/node_modules/bytes/History.md @@ -0,0 +1,97 @@ +3.1.2 / 2022-01-27 +================== + + * Fix return value for un-parsable strings + +3.1.1 / 2021-11-15 +================== + + * Fix "thousandsSeparator" incorrecting formatting fractional part + +3.1.0 / 2019-01-22 +================== + + * Add petabyte (`pb`) support + +3.0.0 / 2017-08-31 +================== + + * Change "kB" to "KB" in format output + * Remove support for Node.js 0.6 + * Remove support for ComponentJS + +2.5.0 / 2017-03-24 +================== + + * Add option "unit" + +2.4.0 / 2016-06-01 +================== + + * Add option "unitSeparator" + +2.3.0 / 2016-02-15 +================== + + * Drop partial bytes on all parsed units + * Fix non-finite numbers to `.format` to return `null` + * Fix parsing byte string that looks like hex + * perf: hoist regular expressions + +2.2.0 / 2015-11-13 +================== + + * add option "decimalPlaces" + * add option "fixedDecimals" + +2.1.0 / 2015-05-21 +================== + + * add `.format` export + * add `.parse` export + +2.0.2 / 2015-05-20 +================== + + * remove map recreation + * remove unnecessary object construction + +2.0.1 / 2015-05-07 +================== + + * fix browserify require + * remove node.extend dependency + +2.0.0 / 2015-04-12 +================== + + * add option "case" + * add option "thousandsSeparator" + * return "null" on invalid parse input + * support proper round-trip: bytes(bytes(num)) === num + * units no longer case sensitive when parsing + +1.0.0 / 2014-05-05 +================== + + * add negative support. fixes #6 + +0.3.0 / 2014-03-19 +================== + + * added terabyte support + +0.2.1 / 2013-04-01 +================== + + * add .component + +0.2.0 / 2012-10-28 +================== + + * bytes(200).should.eql('200b') + +0.1.0 / 2012-07-04 +================== + + * add bytes to string conversion [yields] diff --git a/node_modules/bytes/LICENSE b/node_modules/bytes/LICENSE new file mode 100644 index 000000000..63e95a963 --- /dev/null +++ b/node_modules/bytes/LICENSE @@ -0,0 +1,23 @@ +(The MIT License) + +Copyright (c) 2012-2014 TJ Holowaychuk +Copyright (c) 2015 Jed Watson + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +'Software'), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/node_modules/bytes/Readme.md b/node_modules/bytes/Readme.md new file mode 100644 index 000000000..5790e23e3 --- /dev/null +++ b/node_modules/bytes/Readme.md @@ -0,0 +1,152 @@ +# Bytes utility + +[![NPM Version][npm-image]][npm-url] +[![NPM Downloads][downloads-image]][downloads-url] +[![Build Status][ci-image]][ci-url] +[![Test Coverage][coveralls-image]][coveralls-url] + +Utility to parse a string bytes (ex: `1TB`) to bytes (`1099511627776`) and vice-versa. + +## Installation + +This is a [Node.js](https://nodejs.org/en/) module available through the +[npm registry](https://www.npmjs.com/). Installation is done using the +[`npm install` command](https://docs.npmjs.com/getting-started/installing-npm-packages-locally): + +```bash +$ npm install bytes +``` + +## Usage + +```js +var bytes = require('bytes'); +``` + +#### bytes(number|string value, [options]): number|string|null + +Default export function. Delegates to either `bytes.format` or `bytes.parse` based on the type of `value`. + +**Arguments** + +| Name | Type | Description | +|---------|----------|--------------------| +| value | `number`|`string` | Number value to format or string value to parse | +| options | `Object` | Conversion options for `format` | + +**Returns** + +| Name | Type | Description | +|---------|------------------|-------------------------------------------------| +| results | `string`|`number`|`null` | Return null upon error. Numeric value in bytes, or string value otherwise. | + +**Example** + +```js +bytes(1024); +// output: '1KB' + +bytes('1KB'); +// output: 1024 +``` + +#### bytes.format(number value, [options]): string|null + +Format the given value in bytes into a string. If the value is negative, it is kept as such. If it is a float, it is + rounded. + +**Arguments** + +| Name | Type | Description | +|---------|----------|--------------------| +| value | `number` | Value in bytes | +| options | `Object` | Conversion options | + +**Options** + +| Property | Type | Description | +|-------------------|--------|-----------------------------------------------------------------------------------------| +| decimalPlaces | `number`|`null` | Maximum number of decimal places to include in output. Default value to `2`. | +| fixedDecimals | `boolean`|`null` | Whether to always display the maximum number of decimal places. Default value to `false` | +| thousandsSeparator | `string`|`null` | Example of values: `' '`, `','` and `'.'`... Default value to `''`. | +| unit | `string`|`null` | The unit in which the result will be returned (B/KB/MB/GB/TB). Default value to `''` (which means auto detect). | +| unitSeparator | `string`|`null` | Separator to use between number and unit. Default value to `''`. | + +**Returns** + +| Name | Type | Description | +|---------|------------------|-------------------------------------------------| +| results | `string`|`null` | Return null upon error. String value otherwise. | + +**Example** + +```js +bytes.format(1024); +// output: '1KB' + +bytes.format(1000); +// output: '1000B' + +bytes.format(1000, {thousandsSeparator: ' '}); +// output: '1 000B' + +bytes.format(1024 * 1.7, {decimalPlaces: 0}); +// output: '2KB' + +bytes.format(1024, {unitSeparator: ' '}); +// output: '1 KB' +``` + +#### bytes.parse(string|number value): number|null + +Parse the string value into an integer in bytes. If no unit is given, or `value` +is a number, it is assumed the value is in bytes. + +Supported units and abbreviations are as follows and are case-insensitive: + + * `b` for bytes + * `kb` for kilobytes + * `mb` for megabytes + * `gb` for gigabytes + * `tb` for terabytes + * `pb` for petabytes + +The units are in powers of two, not ten. This means 1kb = 1024b according to this parser. + +**Arguments** + +| Name | Type | Description | +|---------------|--------|--------------------| +| value | `string`|`number` | String to parse, or number in bytes. | + +**Returns** + +| Name | Type | Description | +|---------|-------------|-------------------------| +| results | `number`|`null` | Return null upon error. Value in bytes otherwise. | + +**Example** + +```js +bytes.parse('1KB'); +// output: 1024 + +bytes.parse('1024'); +// output: 1024 + +bytes.parse(1024); +// output: 1024 +``` + +## License + +[MIT](LICENSE) + +[ci-image]: https://badgen.net/github/checks/visionmedia/bytes.js/master?label=ci +[ci-url]: https://github.com/visionmedia/bytes.js/actions?query=workflow%3Aci +[coveralls-image]: https://badgen.net/coveralls/c/github/visionmedia/bytes.js/master +[coveralls-url]: https://coveralls.io/r/visionmedia/bytes.js?branch=master +[downloads-image]: https://badgen.net/npm/dm/bytes +[downloads-url]: https://npmjs.org/package/bytes +[npm-image]: https://badgen.net/npm/v/bytes +[npm-url]: https://npmjs.org/package/bytes diff --git a/node_modules/bytes/index.js b/node_modules/bytes/index.js new file mode 100644 index 000000000..6f2d0f89e --- /dev/null +++ b/node_modules/bytes/index.js @@ -0,0 +1,170 @@ +/*! + * bytes + * Copyright(c) 2012-2014 TJ Holowaychuk + * Copyright(c) 2015 Jed Watson + * MIT Licensed + */ + +'use strict'; + +/** + * Module exports. + * @public + */ + +module.exports = bytes; +module.exports.format = format; +module.exports.parse = parse; + +/** + * Module variables. + * @private + */ + +var formatThousandsRegExp = /\B(?=(\d{3})+(?!\d))/g; + +var formatDecimalsRegExp = /(?:\.0*|(\.[^0]+)0+)$/; + +var map = { + b: 1, + kb: 1 << 10, + mb: 1 << 20, + gb: 1 << 30, + tb: Math.pow(1024, 4), + pb: Math.pow(1024, 5), +}; + +var parseRegExp = /^((-|\+)?(\d+(?:\.\d+)?)) *(kb|mb|gb|tb|pb)$/i; + +/** + * Convert the given value in bytes into a string or parse to string to an integer in bytes. + * + * @param {string|number} value + * @param {{ + * case: [string], + * decimalPlaces: [number] + * fixedDecimals: [boolean] + * thousandsSeparator: [string] + * unitSeparator: [string] + * }} [options] bytes options. + * + * @returns {string|number|null} + */ + +function bytes(value, options) { + if (typeof value === 'string') { + return parse(value); + } + + if (typeof value === 'number') { + return format(value, options); + } + + return null; +} + +/** + * Format the given value in bytes into a string. + * + * If the value is negative, it is kept as such. If it is a float, + * it is rounded. + * + * @param {number} value + * @param {object} [options] + * @param {number} [options.decimalPlaces=2] + * @param {number} [options.fixedDecimals=false] + * @param {string} [options.thousandsSeparator=] + * @param {string} [options.unit=] + * @param {string} [options.unitSeparator=] + * + * @returns {string|null} + * @public + */ + +function format(value, options) { + if (!Number.isFinite(value)) { + return null; + } + + var mag = Math.abs(value); + var thousandsSeparator = (options && options.thousandsSeparator) || ''; + var unitSeparator = (options && options.unitSeparator) || ''; + var decimalPlaces = (options && options.decimalPlaces !== undefined) ? options.decimalPlaces : 2; + var fixedDecimals = Boolean(options && options.fixedDecimals); + var unit = (options && options.unit) || ''; + + if (!unit || !map[unit.toLowerCase()]) { + if (mag >= map.pb) { + unit = 'PB'; + } else if (mag >= map.tb) { + unit = 'TB'; + } else if (mag >= map.gb) { + unit = 'GB'; + } else if (mag >= map.mb) { + unit = 'MB'; + } else if (mag >= map.kb) { + unit = 'KB'; + } else { + unit = 'B'; + } + } + + var val = value / map[unit.toLowerCase()]; + var str = val.toFixed(decimalPlaces); + + if (!fixedDecimals) { + str = str.replace(formatDecimalsRegExp, '$1'); + } + + if (thousandsSeparator) { + str = str.split('.').map(function (s, i) { + return i === 0 + ? s.replace(formatThousandsRegExp, thousandsSeparator) + : s + }).join('.'); + } + + return str + unitSeparator + unit; +} + +/** + * Parse the string value into an integer in bytes. + * + * If no unit is given, it is assumed the value is in bytes. + * + * @param {number|string} val + * + * @returns {number|null} + * @public + */ + +function parse(val) { + if (typeof val === 'number' && !isNaN(val)) { + return val; + } + + if (typeof val !== 'string') { + return null; + } + + // Test if the string passed is valid + var results = parseRegExp.exec(val); + var floatValue; + var unit = 'b'; + + if (!results) { + // Nothing could be extracted from the given string + floatValue = parseInt(val, 10); + unit = 'b' + } else { + // Retrieve the value and the unit + floatValue = parseFloat(results[1]); + unit = results[4].toLowerCase(); + } + + if (isNaN(floatValue)) { + return null; + } + + return Math.floor(map[unit] * floatValue); +} diff --git a/node_modules/bytes/package.json b/node_modules/bytes/package.json new file mode 100644 index 000000000..f2b6a8b0e --- /dev/null +++ b/node_modules/bytes/package.json @@ -0,0 +1,42 @@ +{ + "name": "bytes", + "description": "Utility to parse a string bytes to bytes and vice-versa", + "version": "3.1.2", + "author": "TJ Holowaychuk (http://tjholowaychuk.com)", + "contributors": [ + "Jed Watson ", + "Théo FIDRY " + ], + "license": "MIT", + "keywords": [ + "byte", + "bytes", + "utility", + "parse", + "parser", + "convert", + "converter" + ], + "repository": "visionmedia/bytes.js", + "devDependencies": { + "eslint": "7.32.0", + "eslint-plugin-markdown": "2.2.1", + "mocha": "9.2.0", + "nyc": "15.1.0" + }, + "files": [ + "History.md", + "LICENSE", + "Readme.md", + "index.js" + ], + "engines": { + "node": ">= 0.8" + }, + "scripts": { + "lint": "eslint .", + "test": "mocha --check-leaks --reporter spec", + "test-ci": "nyc --reporter=lcov --reporter=text npm test", + "test-cov": "nyc --reporter=html --reporter=text npm test" + } +} diff --git a/node_modules/call-bind/.eslintignore b/node_modules/call-bind/.eslintignore new file mode 100644 index 000000000..404abb221 --- /dev/null +++ b/node_modules/call-bind/.eslintignore @@ -0,0 +1 @@ +coverage/ diff --git a/node_modules/call-bind/.eslintrc b/node_modules/call-bind/.eslintrc new file mode 100644 index 000000000..e5d3c9a94 --- /dev/null +++ b/node_modules/call-bind/.eslintrc @@ -0,0 +1,17 @@ +{ + "root": true, + + "extends": "@ljharb", + + "rules": { + "func-name-matching": 0, + "id-length": 0, + "new-cap": [2, { + "capIsNewExceptions": [ + "GetIntrinsic", + ], + }], + "no-magic-numbers": 0, + "operator-linebreak": [2, "before"], + }, +} diff --git a/node_modules/call-bind/.github/FUNDING.yml b/node_modules/call-bind/.github/FUNDING.yml new file mode 100644 index 000000000..c70c2ecdb --- /dev/null +++ b/node_modules/call-bind/.github/FUNDING.yml @@ -0,0 +1,12 @@ +# These are supported funding model platforms + +github: [ljharb] +patreon: # Replace with a single Patreon username +open_collective: # Replace with a single Open Collective username +ko_fi: # Replace with a single Ko-fi username +tidelift: npm/call-bind +community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry +liberapay: # Replace with a single Liberapay username +issuehunt: # Replace with a single IssueHunt username +otechie: # Replace with a single Otechie username +custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] diff --git a/node_modules/call-bind/.nycrc b/node_modules/call-bind/.nycrc new file mode 100644 index 000000000..1826526e0 --- /dev/null +++ b/node_modules/call-bind/.nycrc @@ -0,0 +1,13 @@ +{ + "all": true, + "check-coverage": false, + "reporter": ["text-summary", "text", "html", "json"], + "lines": 86, + "statements": 85.93, + "functions": 82.43, + "branches": 76.06, + "exclude": [ + "coverage", + "test" + ] +} diff --git a/node_modules/call-bind/CHANGELOG.md b/node_modules/call-bind/CHANGELOG.md new file mode 100644 index 000000000..62a37279e --- /dev/null +++ b/node_modules/call-bind/CHANGELOG.md @@ -0,0 +1,42 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [v1.0.2](https://github.com/ljharb/call-bind/compare/v1.0.1...v1.0.2) - 2021-01-11 + +### Commits + +- [Fix] properly include the receiver in the bound length [`dbae7bc`](https://github.com/ljharb/call-bind/commit/dbae7bc676c079a0d33c0a43e9ef92cb7b01345d) + +## [v1.0.1](https://github.com/ljharb/call-bind/compare/v1.0.0...v1.0.1) - 2021-01-08 + +### Commits + +- [Tests] migrate tests to Github Actions [`b6db284`](https://github.com/ljharb/call-bind/commit/b6db284c36f8ccd195b88a6764fe84b7223a0da1) +- [meta] do not publish github action workflow files [`ec7fe46`](https://github.com/ljharb/call-bind/commit/ec7fe46e60cfa4764ee943d2755f5e5a366e578e) +- [Fix] preserve original function’s length when possible [`adbceaa`](https://github.com/ljharb/call-bind/commit/adbceaa3cac4b41ea78bb19d7ccdbaaf7e0bdadb) +- [Tests] gather coverage data on every job [`d69e23c`](https://github.com/ljharb/call-bind/commit/d69e23cc65f101ba1d4c19bb07fa8eb0ec624be8) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `tape` [`2fd3586`](https://github.com/ljharb/call-bind/commit/2fd3586c5d47b335364c14293114c6b625ae1f71) +- [Deps] update `get-intrinsic` [`f23e931`](https://github.com/ljharb/call-bind/commit/f23e9318cc271c2add8bb38cfded85ee7baf8eee) +- [Deps] update `get-intrinsic` [`72d9f44`](https://github.com/ljharb/call-bind/commit/72d9f44e184465ba8dd3fb48260bbcff234985f2) +- [meta] fix FUNDING.yml [`e723573`](https://github.com/ljharb/call-bind/commit/e723573438c5a68dcec31fb5d96ea6b7e4a93be8) +- [eslint] ignore coverage output [`15e76d2`](https://github.com/ljharb/call-bind/commit/15e76d28a5f43e504696401e5b31ebb78ee1b532) +- [meta] add Automatic Rebase and Require Allow Edits workflows [`8fa4dab`](https://github.com/ljharb/call-bind/commit/8fa4dabb23ba3dd7bb92c9571c1241c08b56e4b6) + +## v1.0.0 - 2020-10-30 + +### Commits + +- Initial commit [`306cf98`](https://github.com/ljharb/call-bind/commit/306cf98c7ec9e7ef66b653ec152277ac1381eb50) +- Tests [`e10d0bb`](https://github.com/ljharb/call-bind/commit/e10d0bbdadc7a10ecedc9a1c035112d3e368b8df) +- Implementation [`43852ed`](https://github.com/ljharb/call-bind/commit/43852eda0f187327b7fad2423ca972149a52bd65) +- npm init [`408f860`](https://github.com/ljharb/call-bind/commit/408f860b773a2f610805fd3613d0d71bac1b6249) +- [meta] add Automatic Rebase and Require Allow Edits workflows [`fb349b2`](https://github.com/ljharb/call-bind/commit/fb349b2e48defbec8b5ec8a8395cc8f69f220b13) +- [meta] add `auto-changelog` [`c4001fc`](https://github.com/ljharb/call-bind/commit/c4001fc43031799ef908211c98d3b0fb2b60fde4) +- [meta] add "funding"; create `FUNDING.yml` [`d4d6d29`](https://github.com/ljharb/call-bind/commit/d4d6d2974a14bc2e98830468eda7fe6d6a776717) +- [Tests] add `npm run lint` [`dedfb98`](https://github.com/ljharb/call-bind/commit/dedfb98bd0ecefb08ddb9a94061bd10cde4332af) +- Only apps should have lockfiles [`54ac776`](https://github.com/ljharb/call-bind/commit/54ac77653db45a7361dc153d2f478e743f110650) +- [meta] add `safe-publish-latest` [`9ea8e43`](https://github.com/ljharb/call-bind/commit/9ea8e435b950ce9b705559cd651039f9bf40140f) diff --git a/node_modules/call-bind/LICENSE b/node_modules/call-bind/LICENSE new file mode 100644 index 000000000..48f05d01d --- /dev/null +++ b/node_modules/call-bind/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2020 Jordan Harband + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/node_modules/call-bind/README.md b/node_modules/call-bind/README.md new file mode 100644 index 000000000..53649eb46 --- /dev/null +++ b/node_modules/call-bind/README.md @@ -0,0 +1,2 @@ +# call-bind +Robustly `.call.bind()` a function. diff --git a/node_modules/call-bind/callBound.js b/node_modules/call-bind/callBound.js new file mode 100644 index 000000000..8374adfd0 --- /dev/null +++ b/node_modules/call-bind/callBound.js @@ -0,0 +1,15 @@ +'use strict'; + +var GetIntrinsic = require('get-intrinsic'); + +var callBind = require('./'); + +var $indexOf = callBind(GetIntrinsic('String.prototype.indexOf')); + +module.exports = function callBoundIntrinsic(name, allowMissing) { + var intrinsic = GetIntrinsic(name, !!allowMissing); + if (typeof intrinsic === 'function' && $indexOf(name, '.prototype.') > -1) { + return callBind(intrinsic); + } + return intrinsic; +}; diff --git a/node_modules/call-bind/index.js b/node_modules/call-bind/index.js new file mode 100644 index 000000000..6fa3e4af7 --- /dev/null +++ b/node_modules/call-bind/index.js @@ -0,0 +1,47 @@ +'use strict'; + +var bind = require('function-bind'); +var GetIntrinsic = require('get-intrinsic'); + +var $apply = GetIntrinsic('%Function.prototype.apply%'); +var $call = GetIntrinsic('%Function.prototype.call%'); +var $reflectApply = GetIntrinsic('%Reflect.apply%', true) || bind.call($call, $apply); + +var $gOPD = GetIntrinsic('%Object.getOwnPropertyDescriptor%', true); +var $defineProperty = GetIntrinsic('%Object.defineProperty%', true); +var $max = GetIntrinsic('%Math.max%'); + +if ($defineProperty) { + try { + $defineProperty({}, 'a', { value: 1 }); + } catch (e) { + // IE 8 has a broken defineProperty + $defineProperty = null; + } +} + +module.exports = function callBind(originalFunction) { + var func = $reflectApply(bind, $call, arguments); + if ($gOPD && $defineProperty) { + var desc = $gOPD(func, 'length'); + if (desc.configurable) { + // original length, plus the receiver, minus any additional arguments (after the receiver) + $defineProperty( + func, + 'length', + { value: 1 + $max(0, originalFunction.length - (arguments.length - 1)) } + ); + } + } + return func; +}; + +var applyBind = function applyBind() { + return $reflectApply(bind, $apply, arguments); +}; + +if ($defineProperty) { + $defineProperty(module.exports, 'apply', { value: applyBind }); +} else { + module.exports.apply = applyBind; +} diff --git a/node_modules/call-bind/package.json b/node_modules/call-bind/package.json new file mode 100644 index 000000000..4360556a7 --- /dev/null +++ b/node_modules/call-bind/package.json @@ -0,0 +1,80 @@ +{ + "name": "call-bind", + "version": "1.0.2", + "description": "Robustly `.call.bind()` a function", + "main": "index.js", + "exports": { + ".": [ + { + "default": "./index.js" + }, + "./index.js" + ], + "./callBound": [ + { + "default": "./callBound.js" + }, + "./callBound.js" + ], + "./package.json": "./package.json" + }, + "scripts": { + "prepublish": "safe-publish-latest", + "lint": "eslint --ext=.js,.mjs .", + "pretest": "npm run lint", + "tests-only": "nyc tape 'test/*'", + "test": "npm run tests-only", + "posttest": "aud --production", + "version": "auto-changelog && git add CHANGELOG.md", + "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/ljharb/call-bind.git" + }, + "keywords": [ + "javascript", + "ecmascript", + "es", + "js", + "callbind", + "callbound", + "call", + "bind", + "bound", + "call-bind", + "call-bound", + "function", + "es-abstract" + ], + "author": "Jordan Harband ", + "funding": { + "url": "https://github.com/sponsors/ljharb" + }, + "license": "MIT", + "bugs": { + "url": "https://github.com/ljharb/call-bind/issues" + }, + "homepage": "https://github.com/ljharb/call-bind#readme", + "devDependencies": { + "@ljharb/eslint-config": "^17.3.0", + "aud": "^1.1.3", + "auto-changelog": "^2.2.1", + "eslint": "^7.17.0", + "nyc": "^10.3.2", + "safe-publish-latest": "^1.1.4", + "tape": "^5.1.1" + }, + "dependencies": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "auto-changelog": { + "output": "CHANGELOG.md", + "template": "keepachangelog", + "unreleased": false, + "commitLimit": false, + "backfillLimit": false, + "hideCredit": true + } +} diff --git a/node_modules/call-bind/test/callBound.js b/node_modules/call-bind/test/callBound.js new file mode 100644 index 000000000..209ce3cc3 --- /dev/null +++ b/node_modules/call-bind/test/callBound.js @@ -0,0 +1,55 @@ +'use strict'; + +var test = require('tape'); + +var callBound = require('../callBound'); + +test('callBound', function (t) { + // static primitive + t.equal(callBound('Array.length'), Array.length, 'Array.length yields itself'); + t.equal(callBound('%Array.length%'), Array.length, '%Array.length% yields itself'); + + // static non-function object + t.equal(callBound('Array.prototype'), Array.prototype, 'Array.prototype yields itself'); + t.equal(callBound('%Array.prototype%'), Array.prototype, '%Array.prototype% yields itself'); + t.equal(callBound('Array.constructor'), Array.constructor, 'Array.constructor yields itself'); + t.equal(callBound('%Array.constructor%'), Array.constructor, '%Array.constructor% yields itself'); + + // static function + t.equal(callBound('Date.parse'), Date.parse, 'Date.parse yields itself'); + t.equal(callBound('%Date.parse%'), Date.parse, '%Date.parse% yields itself'); + + // prototype primitive + t.equal(callBound('Error.prototype.message'), Error.prototype.message, 'Error.prototype.message yields itself'); + t.equal(callBound('%Error.prototype.message%'), Error.prototype.message, '%Error.prototype.message% yields itself'); + + // prototype function + t.notEqual(callBound('Object.prototype.toString'), Object.prototype.toString, 'Object.prototype.toString does not yield itself'); + t.notEqual(callBound('%Object.prototype.toString%'), Object.prototype.toString, '%Object.prototype.toString% does not yield itself'); + t.equal(callBound('Object.prototype.toString')(true), Object.prototype.toString.call(true), 'call-bound Object.prototype.toString calls into the original'); + t.equal(callBound('%Object.prototype.toString%')(true), Object.prototype.toString.call(true), 'call-bound %Object.prototype.toString% calls into the original'); + + t['throws']( + function () { callBound('does not exist'); }, + SyntaxError, + 'nonexistent intrinsic throws' + ); + t['throws']( + function () { callBound('does not exist', true); }, + SyntaxError, + 'allowMissing arg still throws for unknown intrinsic' + ); + + /* globals WeakRef: false */ + t.test('real but absent intrinsic', { skip: typeof WeakRef !== 'undefined' }, function (st) { + st['throws']( + function () { callBound('WeakRef'); }, + TypeError, + 'real but absent intrinsic throws' + ); + st.equal(callBound('WeakRef', true), undefined, 'allowMissing arg avoids exception'); + st.end(); + }); + + t.end(); +}); diff --git a/node_modules/call-bind/test/index.js b/node_modules/call-bind/test/index.js new file mode 100644 index 000000000..bf6769c7c --- /dev/null +++ b/node_modules/call-bind/test/index.js @@ -0,0 +1,66 @@ +'use strict'; + +var callBind = require('../'); +var bind = require('function-bind'); + +var test = require('tape'); + +/* + * older engines have length nonconfigurable + * in io.js v3, it is configurable except on bound functions, hence the .bind() + */ +var functionsHaveConfigurableLengths = !!( + Object.getOwnPropertyDescriptor + && Object.getOwnPropertyDescriptor(bind.call(function () {}), 'length').configurable +); + +test('callBind', function (t) { + var sentinel = { sentinel: true }; + var func = function (a, b) { + // eslint-disable-next-line no-invalid-this + return [this, a, b]; + }; + t.equal(func.length, 2, 'original function length is 2'); + t.deepEqual(func(), [undefined, undefined, undefined], 'unbound func with too few args'); + t.deepEqual(func(1, 2), [undefined, 1, 2], 'unbound func with right args'); + t.deepEqual(func(1, 2, 3), [undefined, 1, 2], 'unbound func with too many args'); + + var bound = callBind(func); + t.equal(bound.length, func.length + 1, 'function length is preserved', { skip: !functionsHaveConfigurableLengths }); + t.deepEqual(bound(), [undefined, undefined, undefined], 'bound func with too few args'); + t.deepEqual(bound(1, 2), [1, 2, undefined], 'bound func with right args'); + t.deepEqual(bound(1, 2, 3), [1, 2, 3], 'bound func with too many args'); + + var boundR = callBind(func, sentinel); + t.equal(boundR.length, func.length, 'function length is preserved', { skip: !functionsHaveConfigurableLengths }); + t.deepEqual(boundR(), [sentinel, undefined, undefined], 'bound func with receiver, with too few args'); + t.deepEqual(boundR(1, 2), [sentinel, 1, 2], 'bound func with receiver, with right args'); + t.deepEqual(boundR(1, 2, 3), [sentinel, 1, 2], 'bound func with receiver, with too many args'); + + var boundArg = callBind(func, sentinel, 1); + t.equal(boundArg.length, func.length - 1, 'function length is preserved', { skip: !functionsHaveConfigurableLengths }); + t.deepEqual(boundArg(), [sentinel, 1, undefined], 'bound func with receiver and arg, with too few args'); + t.deepEqual(boundArg(2), [sentinel, 1, 2], 'bound func with receiver and arg, with right arg'); + t.deepEqual(boundArg(2, 3), [sentinel, 1, 2], 'bound func with receiver and arg, with too many args'); + + t.test('callBind.apply', function (st) { + var aBound = callBind.apply(func); + st.deepEqual(aBound(sentinel), [sentinel, undefined, undefined], 'apply-bound func with no args'); + st.deepEqual(aBound(sentinel, [1], 4), [sentinel, 1, undefined], 'apply-bound func with too few args'); + st.deepEqual(aBound(sentinel, [1, 2], 4), [sentinel, 1, 2], 'apply-bound func with right args'); + + var aBoundArg = callBind.apply(func); + st.deepEqual(aBoundArg(sentinel, [1, 2, 3], 4), [sentinel, 1, 2], 'apply-bound func with too many args'); + st.deepEqual(aBoundArg(sentinel, [1, 2], 4), [sentinel, 1, 2], 'apply-bound func with right args'); + st.deepEqual(aBoundArg(sentinel, [1], 4), [sentinel, 1, undefined], 'apply-bound func with too few args'); + + var aBoundR = callBind.apply(func, sentinel); + st.deepEqual(aBoundR([1, 2, 3], 4), [sentinel, 1, 2], 'apply-bound func with receiver and too many args'); + st.deepEqual(aBoundR([1, 2], 4), [sentinel, 1, 2], 'apply-bound func with receiver and right args'); + st.deepEqual(aBoundR([1], 4), [sentinel, 1, undefined], 'apply-bound func with receiver and too few args'); + + st.end(); + }); + + t.end(); +}); diff --git a/node_modules/content-disposition/HISTORY.md b/node_modules/content-disposition/HISTORY.md new file mode 100644 index 000000000..488effa0c --- /dev/null +++ b/node_modules/content-disposition/HISTORY.md @@ -0,0 +1,60 @@ +0.5.4 / 2021-12-10 +================== + + * deps: safe-buffer@5.2.1 + +0.5.3 / 2018-12-17 +================== + + * Use `safe-buffer` for improved Buffer API + +0.5.2 / 2016-12-08 +================== + + * Fix `parse` to accept any linear whitespace character + +0.5.1 / 2016-01-17 +================== + + * perf: enable strict mode + +0.5.0 / 2014-10-11 +================== + + * Add `parse` function + +0.4.0 / 2014-09-21 +================== + + * Expand non-Unicode `filename` to the full ISO-8859-1 charset + +0.3.0 / 2014-09-20 +================== + + * Add `fallback` option + * Add `type` option + +0.2.0 / 2014-09-19 +================== + + * Reduce ambiguity of file names with hex escape in buggy browsers + +0.1.2 / 2014-09-19 +================== + + * Fix periodic invalid Unicode filename header + +0.1.1 / 2014-09-19 +================== + + * Fix invalid characters appearing in `filename*` parameter + +0.1.0 / 2014-09-18 +================== + + * Make the `filename` argument optional + +0.0.0 / 2014-09-18 +================== + + * Initial release diff --git a/node_modules/content-disposition/LICENSE b/node_modules/content-disposition/LICENSE new file mode 100644 index 000000000..84441fbb5 --- /dev/null +++ b/node_modules/content-disposition/LICENSE @@ -0,0 +1,22 @@ +(The MIT License) + +Copyright (c) 2014-2017 Douglas Christopher Wilson + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +'Software'), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/node_modules/content-disposition/README.md b/node_modules/content-disposition/README.md new file mode 100644 index 000000000..3a0bb0559 --- /dev/null +++ b/node_modules/content-disposition/README.md @@ -0,0 +1,142 @@ +# content-disposition + +[![NPM Version][npm-image]][npm-url] +[![NPM Downloads][downloads-image]][downloads-url] +[![Node.js Version][node-version-image]][node-version-url] +[![Build Status][github-actions-ci-image]][github-actions-ci-url] +[![Test Coverage][coveralls-image]][coveralls-url] + +Create and parse HTTP `Content-Disposition` header + +## Installation + +```sh +$ npm install content-disposition +``` + +## API + +```js +var contentDisposition = require('content-disposition') +``` + +### contentDisposition(filename, options) + +Create an attachment `Content-Disposition` header value using the given file name, +if supplied. The `filename` is optional and if no file name is desired, but you +want to specify `options`, set `filename` to `undefined`. + +```js +res.setHeader('Content-Disposition', contentDisposition('∫ maths.pdf')) +``` + +**note** HTTP headers are of the ISO-8859-1 character set. If you are writing this +header through a means different from `setHeader` in Node.js, you'll want to specify +the `'binary'` encoding in Node.js. + +#### Options + +`contentDisposition` accepts these properties in the options object. + +##### fallback + +If the `filename` option is outside ISO-8859-1, then the file name is actually +stored in a supplemental field for clients that support Unicode file names and +a ISO-8859-1 version of the file name is automatically generated. + +This specifies the ISO-8859-1 file name to override the automatic generation or +disables the generation all together, defaults to `true`. + + - A string will specify the ISO-8859-1 file name to use in place of automatic + generation. + - `false` will disable including a ISO-8859-1 file name and only include the + Unicode version (unless the file name is already ISO-8859-1). + - `true` will enable automatic generation if the file name is outside ISO-8859-1. + +If the `filename` option is ISO-8859-1 and this option is specified and has a +different value, then the `filename` option is encoded in the extended field +and this set as the fallback field, even though they are both ISO-8859-1. + +##### type + +Specifies the disposition type, defaults to `"attachment"`. This can also be +`"inline"`, or any other value (all values except inline are treated like +`attachment`, but can convey additional information if both parties agree to +it). The type is normalized to lower-case. + +### contentDisposition.parse(string) + +```js +var disposition = contentDisposition.parse('attachment; filename="EURO rates.txt"; filename*=UTF-8\'\'%e2%82%ac%20rates.txt') +``` + +Parse a `Content-Disposition` header string. This automatically handles extended +("Unicode") parameters by decoding them and providing them under the standard +parameter name. This will return an object with the following properties (examples +are shown for the string `'attachment; filename="EURO rates.txt"; filename*=UTF-8\'\'%e2%82%ac%20rates.txt'`): + + - `type`: The disposition type (always lower case). Example: `'attachment'` + + - `parameters`: An object of the parameters in the disposition (name of parameter + always lower case and extended versions replace non-extended versions). Example: + `{filename: "€ rates.txt"}` + +## Examples + +### Send a file for download + +```js +var contentDisposition = require('content-disposition') +var destroy = require('destroy') +var fs = require('fs') +var http = require('http') +var onFinished = require('on-finished') + +var filePath = '/path/to/public/plans.pdf' + +http.createServer(function onRequest (req, res) { + // set headers + res.setHeader('Content-Type', 'application/pdf') + res.setHeader('Content-Disposition', contentDisposition(filePath)) + + // send file + var stream = fs.createReadStream(filePath) + stream.pipe(res) + onFinished(res, function () { + destroy(stream) + }) +}) +``` + +## Testing + +```sh +$ npm test +``` + +## References + +- [RFC 2616: Hypertext Transfer Protocol -- HTTP/1.1][rfc-2616] +- [RFC 5987: Character Set and Language Encoding for Hypertext Transfer Protocol (HTTP) Header Field Parameters][rfc-5987] +- [RFC 6266: Use of the Content-Disposition Header Field in the Hypertext Transfer Protocol (HTTP)][rfc-6266] +- [Test Cases for HTTP Content-Disposition header field (RFC 6266) and the Encodings defined in RFCs 2047, 2231 and 5987][tc-2231] + +[rfc-2616]: https://tools.ietf.org/html/rfc2616 +[rfc-5987]: https://tools.ietf.org/html/rfc5987 +[rfc-6266]: https://tools.ietf.org/html/rfc6266 +[tc-2231]: http://greenbytes.de/tech/tc2231/ + +## License + +[MIT](LICENSE) + +[npm-image]: https://img.shields.io/npm/v/content-disposition.svg +[npm-url]: https://npmjs.org/package/content-disposition +[node-version-image]: https://img.shields.io/node/v/content-disposition.svg +[node-version-url]: https://nodejs.org/en/download +[coveralls-image]: https://img.shields.io/coveralls/jshttp/content-disposition.svg +[coveralls-url]: https://coveralls.io/r/jshttp/content-disposition?branch=master +[downloads-image]: https://img.shields.io/npm/dm/content-disposition.svg +[downloads-url]: https://npmjs.org/package/content-disposition +[github-actions-ci-image]: https://img.shields.io/github/workflow/status/jshttp/content-disposition/ci/master?label=ci +[github-actions-ci-url]: https://github.com/jshttp/content-disposition?query=workflow%3Aci diff --git a/node_modules/content-disposition/index.js b/node_modules/content-disposition/index.js new file mode 100644 index 000000000..ecec899a9 --- /dev/null +++ b/node_modules/content-disposition/index.js @@ -0,0 +1,458 @@ +/*! + * content-disposition + * Copyright(c) 2014-2017 Douglas Christopher Wilson + * MIT Licensed + */ + +'use strict' + +/** + * Module exports. + * @public + */ + +module.exports = contentDisposition +module.exports.parse = parse + +/** + * Module dependencies. + * @private + */ + +var basename = require('path').basename +var Buffer = require('safe-buffer').Buffer + +/** + * RegExp to match non attr-char, *after* encodeURIComponent (i.e. not including "%") + * @private + */ + +var ENCODE_URL_ATTR_CHAR_REGEXP = /[\x00-\x20"'()*,/:;<=>?@[\\\]{}\x7f]/g // eslint-disable-line no-control-regex + +/** + * RegExp to match percent encoding escape. + * @private + */ + +var HEX_ESCAPE_REGEXP = /%[0-9A-Fa-f]{2}/ +var HEX_ESCAPE_REPLACE_REGEXP = /%([0-9A-Fa-f]{2})/g + +/** + * RegExp to match non-latin1 characters. + * @private + */ + +var NON_LATIN1_REGEXP = /[^\x20-\x7e\xa0-\xff]/g + +/** + * RegExp to match quoted-pair in RFC 2616 + * + * quoted-pair = "\" CHAR + * CHAR = + * @private + */ + +var QESC_REGEXP = /\\([\u0000-\u007f])/g // eslint-disable-line no-control-regex + +/** + * RegExp to match chars that must be quoted-pair in RFC 2616 + * @private + */ + +var QUOTE_REGEXP = /([\\"])/g + +/** + * RegExp for various RFC 2616 grammar + * + * parameter = token "=" ( token | quoted-string ) + * token = 1* + * separators = "(" | ")" | "<" | ">" | "@" + * | "," | ";" | ":" | "\" | <"> + * | "/" | "[" | "]" | "?" | "=" + * | "{" | "}" | SP | HT + * quoted-string = ( <"> *(qdtext | quoted-pair ) <"> ) + * qdtext = > + * quoted-pair = "\" CHAR + * CHAR = + * TEXT = + * LWS = [CRLF] 1*( SP | HT ) + * CRLF = CR LF + * CR = + * LF = + * SP = + * HT = + * CTL = + * OCTET = + * @private + */ + +var PARAM_REGEXP = /;[\x09\x20]*([!#$%&'*+.0-9A-Z^_`a-z|~-]+)[\x09\x20]*=[\x09\x20]*("(?:[\x20!\x23-\x5b\x5d-\x7e\x80-\xff]|\\[\x20-\x7e])*"|[!#$%&'*+.0-9A-Z^_`a-z|~-]+)[\x09\x20]*/g // eslint-disable-line no-control-regex +var TEXT_REGEXP = /^[\x20-\x7e\x80-\xff]+$/ +var TOKEN_REGEXP = /^[!#$%&'*+.0-9A-Z^_`a-z|~-]+$/ + +/** + * RegExp for various RFC 5987 grammar + * + * ext-value = charset "'" [ language ] "'" value-chars + * charset = "UTF-8" / "ISO-8859-1" / mime-charset + * mime-charset = 1*mime-charsetc + * mime-charsetc = ALPHA / DIGIT + * / "!" / "#" / "$" / "%" / "&" + * / "+" / "-" / "^" / "_" / "`" + * / "{" / "}" / "~" + * language = ( 2*3ALPHA [ extlang ] ) + * / 4ALPHA + * / 5*8ALPHA + * extlang = *3( "-" 3ALPHA ) + * value-chars = *( pct-encoded / attr-char ) + * pct-encoded = "%" HEXDIG HEXDIG + * attr-char = ALPHA / DIGIT + * / "!" / "#" / "$" / "&" / "+" / "-" / "." + * / "^" / "_" / "`" / "|" / "~" + * @private + */ + +var EXT_VALUE_REGEXP = /^([A-Za-z0-9!#$%&+\-^_`{}~]+)'(?:[A-Za-z]{2,3}(?:-[A-Za-z]{3}){0,3}|[A-Za-z]{4,8}|)'((?:%[0-9A-Fa-f]{2}|[A-Za-z0-9!#$&+.^_`|~-])+)$/ + +/** + * RegExp for various RFC 6266 grammar + * + * disposition-type = "inline" | "attachment" | disp-ext-type + * disp-ext-type = token + * disposition-parm = filename-parm | disp-ext-parm + * filename-parm = "filename" "=" value + * | "filename*" "=" ext-value + * disp-ext-parm = token "=" value + * | ext-token "=" ext-value + * ext-token = + * @private + */ + +var DISPOSITION_TYPE_REGEXP = /^([!#$%&'*+.0-9A-Z^_`a-z|~-]+)[\x09\x20]*(?:$|;)/ // eslint-disable-line no-control-regex + +/** + * Create an attachment Content-Disposition header. + * + * @param {string} [filename] + * @param {object} [options] + * @param {string} [options.type=attachment] + * @param {string|boolean} [options.fallback=true] + * @return {string} + * @public + */ + +function contentDisposition (filename, options) { + var opts = options || {} + + // get type + var type = opts.type || 'attachment' + + // get parameters + var params = createparams(filename, opts.fallback) + + // format into string + return format(new ContentDisposition(type, params)) +} + +/** + * Create parameters object from filename and fallback. + * + * @param {string} [filename] + * @param {string|boolean} [fallback=true] + * @return {object} + * @private + */ + +function createparams (filename, fallback) { + if (filename === undefined) { + return + } + + var params = {} + + if (typeof filename !== 'string') { + throw new TypeError('filename must be a string') + } + + // fallback defaults to true + if (fallback === undefined) { + fallback = true + } + + if (typeof fallback !== 'string' && typeof fallback !== 'boolean') { + throw new TypeError('fallback must be a string or boolean') + } + + if (typeof fallback === 'string' && NON_LATIN1_REGEXP.test(fallback)) { + throw new TypeError('fallback must be ISO-8859-1 string') + } + + // restrict to file base name + var name = basename(filename) + + // determine if name is suitable for quoted string + var isQuotedString = TEXT_REGEXP.test(name) + + // generate fallback name + var fallbackName = typeof fallback !== 'string' + ? fallback && getlatin1(name) + : basename(fallback) + var hasFallback = typeof fallbackName === 'string' && fallbackName !== name + + // set extended filename parameter + if (hasFallback || !isQuotedString || HEX_ESCAPE_REGEXP.test(name)) { + params['filename*'] = name + } + + // set filename parameter + if (isQuotedString || hasFallback) { + params.filename = hasFallback + ? fallbackName + : name + } + + return params +} + +/** + * Format object to Content-Disposition header. + * + * @param {object} obj + * @param {string} obj.type + * @param {object} [obj.parameters] + * @return {string} + * @private + */ + +function format (obj) { + var parameters = obj.parameters + var type = obj.type + + if (!type || typeof type !== 'string' || !TOKEN_REGEXP.test(type)) { + throw new TypeError('invalid type') + } + + // start with normalized type + var string = String(type).toLowerCase() + + // append parameters + if (parameters && typeof parameters === 'object') { + var param + var params = Object.keys(parameters).sort() + + for (var i = 0; i < params.length; i++) { + param = params[i] + + var val = param.substr(-1) === '*' + ? ustring(parameters[param]) + : qstring(parameters[param]) + + string += '; ' + param + '=' + val + } + } + + return string +} + +/** + * Decode a RFC 5987 field value (gracefully). + * + * @param {string} str + * @return {string} + * @private + */ + +function decodefield (str) { + var match = EXT_VALUE_REGEXP.exec(str) + + if (!match) { + throw new TypeError('invalid extended field value') + } + + var charset = match[1].toLowerCase() + var encoded = match[2] + var value + + // to binary string + var binary = encoded.replace(HEX_ESCAPE_REPLACE_REGEXP, pdecode) + + switch (charset) { + case 'iso-8859-1': + value = getlatin1(binary) + break + case 'utf-8': + value = Buffer.from(binary, 'binary').toString('utf8') + break + default: + throw new TypeError('unsupported charset in extended field') + } + + return value +} + +/** + * Get ISO-8859-1 version of string. + * + * @param {string} val + * @return {string} + * @private + */ + +function getlatin1 (val) { + // simple Unicode -> ISO-8859-1 transformation + return String(val).replace(NON_LATIN1_REGEXP, '?') +} + +/** + * Parse Content-Disposition header string. + * + * @param {string} string + * @return {object} + * @public + */ + +function parse (string) { + if (!string || typeof string !== 'string') { + throw new TypeError('argument string is required') + } + + var match = DISPOSITION_TYPE_REGEXP.exec(string) + + if (!match) { + throw new TypeError('invalid type format') + } + + // normalize type + var index = match[0].length + var type = match[1].toLowerCase() + + var key + var names = [] + var params = {} + var value + + // calculate index to start at + index = PARAM_REGEXP.lastIndex = match[0].substr(-1) === ';' + ? index - 1 + : index + + // match parameters + while ((match = PARAM_REGEXP.exec(string))) { + if (match.index !== index) { + throw new TypeError('invalid parameter format') + } + + index += match[0].length + key = match[1].toLowerCase() + value = match[2] + + if (names.indexOf(key) !== -1) { + throw new TypeError('invalid duplicate parameter') + } + + names.push(key) + + if (key.indexOf('*') + 1 === key.length) { + // decode extended value + key = key.slice(0, -1) + value = decodefield(value) + + // overwrite existing value + params[key] = value + continue + } + + if (typeof params[key] === 'string') { + continue + } + + if (value[0] === '"') { + // remove quotes and escapes + value = value + .substr(1, value.length - 2) + .replace(QESC_REGEXP, '$1') + } + + params[key] = value + } + + if (index !== -1 && index !== string.length) { + throw new TypeError('invalid parameter format') + } + + return new ContentDisposition(type, params) +} + +/** + * Percent decode a single character. + * + * @param {string} str + * @param {string} hex + * @return {string} + * @private + */ + +function pdecode (str, hex) { + return String.fromCharCode(parseInt(hex, 16)) +} + +/** + * Percent encode a single character. + * + * @param {string} char + * @return {string} + * @private + */ + +function pencode (char) { + return '%' + String(char) + .charCodeAt(0) + .toString(16) + .toUpperCase() +} + +/** + * Quote a string for HTTP. + * + * @param {string} val + * @return {string} + * @private + */ + +function qstring (val) { + var str = String(val) + + return '"' + str.replace(QUOTE_REGEXP, '\\$1') + '"' +} + +/** + * Encode a Unicode string for HTTP (RFC 5987). + * + * @param {string} val + * @return {string} + * @private + */ + +function ustring (val) { + var str = String(val) + + // percent encode as UTF-8 + var encoded = encodeURIComponent(str) + .replace(ENCODE_URL_ATTR_CHAR_REGEXP, pencode) + + return 'UTF-8\'\'' + encoded +} + +/** + * Class for parsed Content-Disposition header for v8 optimization + * + * @public + * @param {string} type + * @param {object} parameters + * @constructor + */ + +function ContentDisposition (type, parameters) { + this.type = type + this.parameters = parameters +} diff --git a/node_modules/content-disposition/package.json b/node_modules/content-disposition/package.json new file mode 100644 index 000000000..43c70ce24 --- /dev/null +++ b/node_modules/content-disposition/package.json @@ -0,0 +1,44 @@ +{ + "name": "content-disposition", + "description": "Create and parse Content-Disposition header", + "version": "0.5.4", + "author": "Douglas Christopher Wilson ", + "license": "MIT", + "keywords": [ + "content-disposition", + "http", + "rfc6266", + "res" + ], + "repository": "jshttp/content-disposition", + "dependencies": { + "safe-buffer": "5.2.1" + }, + "devDependencies": { + "deep-equal": "1.0.1", + "eslint": "7.32.0", + "eslint-config-standard": "13.0.1", + "eslint-plugin-import": "2.25.3", + "eslint-plugin-markdown": "2.2.1", + "eslint-plugin-node": "11.1.0", + "eslint-plugin-promise": "5.2.0", + "eslint-plugin-standard": "4.1.0", + "istanbul": "0.4.5", + "mocha": "9.1.3" + }, + "files": [ + "LICENSE", + "HISTORY.md", + "README.md", + "index.js" + ], + "engines": { + "node": ">= 0.6" + }, + "scripts": { + "lint": "eslint .", + "test": "mocha --reporter spec --bail --check-leaks test/", + "test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/", + "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/" + } +} diff --git a/node_modules/content-type/HISTORY.md b/node_modules/content-type/HISTORY.md new file mode 100644 index 000000000..8f5cb7030 --- /dev/null +++ b/node_modules/content-type/HISTORY.md @@ -0,0 +1,24 @@ +1.0.4 / 2017-09-11 +================== + + * perf: skip parameter parsing when no parameters + +1.0.3 / 2017-09-10 +================== + + * perf: remove argument reassignment + +1.0.2 / 2016-05-09 +================== + + * perf: enable strict mode + +1.0.1 / 2015-02-13 +================== + + * Improve missing `Content-Type` header error message + +1.0.0 / 2015-02-01 +================== + + * Initial implementation, derived from `media-typer@0.3.0` diff --git a/node_modules/content-type/LICENSE b/node_modules/content-type/LICENSE new file mode 100644 index 000000000..34b1a2de3 --- /dev/null +++ b/node_modules/content-type/LICENSE @@ -0,0 +1,22 @@ +(The MIT License) + +Copyright (c) 2015 Douglas Christopher Wilson + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +'Software'), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/node_modules/content-type/README.md b/node_modules/content-type/README.md new file mode 100644 index 000000000..3ed67413c --- /dev/null +++ b/node_modules/content-type/README.md @@ -0,0 +1,92 @@ +# content-type + +[![NPM Version][npm-image]][npm-url] +[![NPM Downloads][downloads-image]][downloads-url] +[![Node.js Version][node-version-image]][node-version-url] +[![Build Status][travis-image]][travis-url] +[![Test Coverage][coveralls-image]][coveralls-url] + +Create and parse HTTP Content-Type header according to RFC 7231 + +## Installation + +```sh +$ npm install content-type +``` + +## API + +```js +var contentType = require('content-type') +``` + +### contentType.parse(string) + +```js +var obj = contentType.parse('image/svg+xml; charset=utf-8') +``` + +Parse a content type string. This will return an object with the following +properties (examples are shown for the string `'image/svg+xml; charset=utf-8'`): + + - `type`: The media type (the type and subtype, always lower case). + Example: `'image/svg+xml'` + + - `parameters`: An object of the parameters in the media type (name of parameter + always lower case). Example: `{charset: 'utf-8'}` + +Throws a `TypeError` if the string is missing or invalid. + +### contentType.parse(req) + +```js +var obj = contentType.parse(req) +``` + +Parse the `content-type` header from the given `req`. Short-cut for +`contentType.parse(req.headers['content-type'])`. + +Throws a `TypeError` if the `Content-Type` header is missing or invalid. + +### contentType.parse(res) + +```js +var obj = contentType.parse(res) +``` + +Parse the `content-type` header set on the given `res`. Short-cut for +`contentType.parse(res.getHeader('content-type'))`. + +Throws a `TypeError` if the `Content-Type` header is missing or invalid. + +### contentType.format(obj) + +```js +var str = contentType.format({type: 'image/svg+xml'}) +``` + +Format an object into a content type string. This will return a string of the +content type for the given object with the following properties (examples are +shown that produce the string `'image/svg+xml; charset=utf-8'`): + + - `type`: The media type (will be lower-cased). Example: `'image/svg+xml'` + + - `parameters`: An object of the parameters in the media type (name of the + parameter will be lower-cased). Example: `{charset: 'utf-8'}` + +Throws a `TypeError` if the object contains an invalid type or parameter names. + +## License + +[MIT](LICENSE) + +[npm-image]: https://img.shields.io/npm/v/content-type.svg +[npm-url]: https://npmjs.org/package/content-type +[node-version-image]: https://img.shields.io/node/v/content-type.svg +[node-version-url]: http://nodejs.org/download/ +[travis-image]: https://img.shields.io/travis/jshttp/content-type/master.svg +[travis-url]: https://travis-ci.org/jshttp/content-type +[coveralls-image]: https://img.shields.io/coveralls/jshttp/content-type/master.svg +[coveralls-url]: https://coveralls.io/r/jshttp/content-type +[downloads-image]: https://img.shields.io/npm/dm/content-type.svg +[downloads-url]: https://npmjs.org/package/content-type diff --git a/node_modules/content-type/index.js b/node_modules/content-type/index.js new file mode 100644 index 000000000..6ce03f208 --- /dev/null +++ b/node_modules/content-type/index.js @@ -0,0 +1,222 @@ +/*! + * content-type + * Copyright(c) 2015 Douglas Christopher Wilson + * MIT Licensed + */ + +'use strict' + +/** + * RegExp to match *( ";" parameter ) in RFC 7231 sec 3.1.1.1 + * + * parameter = token "=" ( token / quoted-string ) + * token = 1*tchar + * tchar = "!" / "#" / "$" / "%" / "&" / "'" / "*" + * / "+" / "-" / "." / "^" / "_" / "`" / "|" / "~" + * / DIGIT / ALPHA + * ; any VCHAR, except delimiters + * quoted-string = DQUOTE *( qdtext / quoted-pair ) DQUOTE + * qdtext = HTAB / SP / %x21 / %x23-5B / %x5D-7E / obs-text + * obs-text = %x80-FF + * quoted-pair = "\" ( HTAB / SP / VCHAR / obs-text ) + */ +var PARAM_REGEXP = /; *([!#$%&'*+.^_`|~0-9A-Za-z-]+) *= *("(?:[\u000b\u0020\u0021\u0023-\u005b\u005d-\u007e\u0080-\u00ff]|\\[\u000b\u0020-\u00ff])*"|[!#$%&'*+.^_`|~0-9A-Za-z-]+) */g +var TEXT_REGEXP = /^[\u000b\u0020-\u007e\u0080-\u00ff]+$/ +var TOKEN_REGEXP = /^[!#$%&'*+.^_`|~0-9A-Za-z-]+$/ + +/** + * RegExp to match quoted-pair in RFC 7230 sec 3.2.6 + * + * quoted-pair = "\" ( HTAB / SP / VCHAR / obs-text ) + * obs-text = %x80-FF + */ +var QESC_REGEXP = /\\([\u000b\u0020-\u00ff])/g + +/** + * RegExp to match chars that must be quoted-pair in RFC 7230 sec 3.2.6 + */ +var QUOTE_REGEXP = /([\\"])/g + +/** + * RegExp to match type in RFC 7231 sec 3.1.1.1 + * + * media-type = type "/" subtype + * type = token + * subtype = token + */ +var TYPE_REGEXP = /^[!#$%&'*+.^_`|~0-9A-Za-z-]+\/[!#$%&'*+.^_`|~0-9A-Za-z-]+$/ + +/** + * Module exports. + * @public + */ + +exports.format = format +exports.parse = parse + +/** + * Format object to media type. + * + * @param {object} obj + * @return {string} + * @public + */ + +function format (obj) { + if (!obj || typeof obj !== 'object') { + throw new TypeError('argument obj is required') + } + + var parameters = obj.parameters + var type = obj.type + + if (!type || !TYPE_REGEXP.test(type)) { + throw new TypeError('invalid type') + } + + var string = type + + // append parameters + if (parameters && typeof parameters === 'object') { + var param + var params = Object.keys(parameters).sort() + + for (var i = 0; i < params.length; i++) { + param = params[i] + + if (!TOKEN_REGEXP.test(param)) { + throw new TypeError('invalid parameter name') + } + + string += '; ' + param + '=' + qstring(parameters[param]) + } + } + + return string +} + +/** + * Parse media type to object. + * + * @param {string|object} string + * @return {Object} + * @public + */ + +function parse (string) { + if (!string) { + throw new TypeError('argument string is required') + } + + // support req/res-like objects as argument + var header = typeof string === 'object' + ? getcontenttype(string) + : string + + if (typeof header !== 'string') { + throw new TypeError('argument string is required to be a string') + } + + var index = header.indexOf(';') + var type = index !== -1 + ? header.substr(0, index).trim() + : header.trim() + + if (!TYPE_REGEXP.test(type)) { + throw new TypeError('invalid media type') + } + + var obj = new ContentType(type.toLowerCase()) + + // parse parameters + if (index !== -1) { + var key + var match + var value + + PARAM_REGEXP.lastIndex = index + + while ((match = PARAM_REGEXP.exec(header))) { + if (match.index !== index) { + throw new TypeError('invalid parameter format') + } + + index += match[0].length + key = match[1].toLowerCase() + value = match[2] + + if (value[0] === '"') { + // remove quotes and escapes + value = value + .substr(1, value.length - 2) + .replace(QESC_REGEXP, '$1') + } + + obj.parameters[key] = value + } + + if (index !== header.length) { + throw new TypeError('invalid parameter format') + } + } + + return obj +} + +/** + * Get content-type from req/res objects. + * + * @param {object} + * @return {Object} + * @private + */ + +function getcontenttype (obj) { + var header + + if (typeof obj.getHeader === 'function') { + // res-like + header = obj.getHeader('content-type') + } else if (typeof obj.headers === 'object') { + // req-like + header = obj.headers && obj.headers['content-type'] + } + + if (typeof header !== 'string') { + throw new TypeError('content-type header is missing from object') + } + + return header +} + +/** + * Quote a string if necessary. + * + * @param {string} val + * @return {string} + * @private + */ + +function qstring (val) { + var str = String(val) + + // no need to quote tokens + if (TOKEN_REGEXP.test(str)) { + return str + } + + if (str.length > 0 && !TEXT_REGEXP.test(str)) { + throw new TypeError('invalid parameter value') + } + + return '"' + str.replace(QUOTE_REGEXP, '\\$1') + '"' +} + +/** + * Class to represent a content type. + * @private + */ +function ContentType (type) { + this.parameters = Object.create(null) + this.type = type +} diff --git a/node_modules/content-type/package.json b/node_modules/content-type/package.json new file mode 100644 index 000000000..f2d31d412 --- /dev/null +++ b/node_modules/content-type/package.json @@ -0,0 +1,40 @@ +{ + "name": "content-type", + "description": "Create and parse HTTP Content-Type header", + "version": "1.0.4", + "author": "Douglas Christopher Wilson ", + "license": "MIT", + "keywords": [ + "content-type", + "http", + "req", + "res", + "rfc7231" + ], + "repository": "jshttp/content-type", + "devDependencies": { + "eslint": "3.19.0", + "eslint-config-standard": "10.2.1", + "eslint-plugin-import": "2.7.0", + "eslint-plugin-node": "5.1.1", + "eslint-plugin-promise": "3.5.0", + "eslint-plugin-standard": "3.0.1", + "istanbul": "0.4.5", + "mocha": "~1.21.5" + }, + "files": [ + "LICENSE", + "HISTORY.md", + "README.md", + "index.js" + ], + "engines": { + "node": ">= 0.6" + }, + "scripts": { + "lint": "eslint .", + "test": "mocha --reporter spec --check-leaks --bail test/", + "test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/", + "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/" + } +} diff --git a/node_modules/cookie-signature/.npmignore b/node_modules/cookie-signature/.npmignore new file mode 100644 index 000000000..f1250e584 --- /dev/null +++ b/node_modules/cookie-signature/.npmignore @@ -0,0 +1,4 @@ +support +test +examples +*.sock diff --git a/node_modules/cookie-signature/History.md b/node_modules/cookie-signature/History.md new file mode 100644 index 000000000..78513cc3d --- /dev/null +++ b/node_modules/cookie-signature/History.md @@ -0,0 +1,38 @@ +1.0.6 / 2015-02-03 +================== + +* use `npm test` instead of `make test` to run tests +* clearer assertion messages when checking input + + +1.0.5 / 2014-09-05 +================== + +* add license to package.json + +1.0.4 / 2014-06-25 +================== + + * corrected avoidance of timing attacks (thanks @tenbits!) + +1.0.3 / 2014-01-28 +================== + + * [incorrect] fix for timing attacks + +1.0.2 / 2014-01-28 +================== + + * fix missing repository warning + * fix typo in test + +1.0.1 / 2013-04-15 +================== + + * Revert "Changed underlying HMAC algo. to sha512." + * Revert "Fix for timing attacks on MAC verification." + +0.0.1 / 2010-01-03 +================== + + * Initial release diff --git a/node_modules/cookie-signature/Readme.md b/node_modules/cookie-signature/Readme.md new file mode 100644 index 000000000..2559e841b --- /dev/null +++ b/node_modules/cookie-signature/Readme.md @@ -0,0 +1,42 @@ + +# cookie-signature + + Sign and unsign cookies. + +## Example + +```js +var cookie = require('cookie-signature'); + +var val = cookie.sign('hello', 'tobiiscool'); +val.should.equal('hello.DGDUkGlIkCzPz+C0B064FNgHdEjox7ch8tOBGslZ5QI'); + +var val = cookie.sign('hello', 'tobiiscool'); +cookie.unsign(val, 'tobiiscool').should.equal('hello'); +cookie.unsign(val, 'luna').should.be.false; +``` + +## License + +(The MIT License) + +Copyright (c) 2012 LearnBoost <tj@learnboost.com> + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +'Software'), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/node_modules/cookie-signature/index.js b/node_modules/cookie-signature/index.js new file mode 100644 index 000000000..b8c9463a2 --- /dev/null +++ b/node_modules/cookie-signature/index.js @@ -0,0 +1,51 @@ +/** + * Module dependencies. + */ + +var crypto = require('crypto'); + +/** + * Sign the given `val` with `secret`. + * + * @param {String} val + * @param {String} secret + * @return {String} + * @api private + */ + +exports.sign = function(val, secret){ + if ('string' != typeof val) throw new TypeError("Cookie value must be provided as a string."); + if ('string' != typeof secret) throw new TypeError("Secret string must be provided."); + return val + '.' + crypto + .createHmac('sha256', secret) + .update(val) + .digest('base64') + .replace(/\=+$/, ''); +}; + +/** + * Unsign and decode the given `val` with `secret`, + * returning `false` if the signature is invalid. + * + * @param {String} val + * @param {String} secret + * @return {String|Boolean} + * @api private + */ + +exports.unsign = function(val, secret){ + if ('string' != typeof val) throw new TypeError("Signed cookie string must be provided."); + if ('string' != typeof secret) throw new TypeError("Secret string must be provided."); + var str = val.slice(0, val.lastIndexOf('.')) + , mac = exports.sign(str, secret); + + return sha1(mac) == sha1(val) ? str : false; +}; + +/** + * Private + */ + +function sha1(str){ + return crypto.createHash('sha1').update(str).digest('hex'); +} diff --git a/node_modules/cookie-signature/package.json b/node_modules/cookie-signature/package.json new file mode 100644 index 000000000..29c4498e0 --- /dev/null +++ b/node_modules/cookie-signature/package.json @@ -0,0 +1,18 @@ +{ + "name": "cookie-signature", + "version": "1.0.6", + "description": "Sign and unsign cookies", + "keywords": ["cookie", "sign", "unsign"], + "author": "TJ Holowaychuk ", + "license": "MIT", + "repository": { "type": "git", "url": "https://github.com/visionmedia/node-cookie-signature.git"}, + "dependencies": {}, + "devDependencies": { + "mocha": "*", + "should": "*" + }, + "scripts": { + "test": "mocha --require should --reporter spec" + }, + "main": "index" +} diff --git a/node_modules/cookie/HISTORY.md b/node_modules/cookie/HISTORY.md new file mode 100644 index 000000000..ae9b995b4 --- /dev/null +++ b/node_modules/cookie/HISTORY.md @@ -0,0 +1,142 @@ +0.5.0 / 2022-04-11 +================== + + * Add `priority` option + * Fix `expires` option to reject invalid dates + * pref: improve default decode speed + * pref: remove slow string split in parse + +0.4.2 / 2022-02-02 +================== + + * pref: read value only when assigning in parse + * pref: remove unnecessary regexp in parse + +0.4.1 / 2020-04-21 +================== + + * Fix `maxAge` option to reject invalid values + +0.4.0 / 2019-05-15 +================== + + * Add `SameSite=None` support + +0.3.1 / 2016-05-26 +================== + + * Fix `sameSite: true` to work with draft-7 clients + - `true` now sends `SameSite=Strict` instead of `SameSite` + +0.3.0 / 2016-05-26 +================== + + * Add `sameSite` option + - Replaces `firstPartyOnly` option, never implemented by browsers + * Improve error message when `encode` is not a function + * Improve error message when `expires` is not a `Date` + +0.2.4 / 2016-05-20 +================== + + * perf: enable strict mode + * perf: use for loop in parse + * perf: use string concatination for serialization + +0.2.3 / 2015-10-25 +================== + + * Fix cookie `Max-Age` to never be a floating point number + +0.2.2 / 2015-09-17 +================== + + * Fix regression when setting empty cookie value + - Ease the new restriction, which is just basic header-level validation + * Fix typo in invalid value errors + +0.2.1 / 2015-09-17 +================== + + * Throw on invalid values provided to `serialize` + - Ensures the resulting string is a valid HTTP header value + +0.2.0 / 2015-08-13 +================== + + * Add `firstPartyOnly` option + * Throw better error for invalid argument to parse + * perf: hoist regular expression + +0.1.5 / 2015-09-17 +================== + + * Fix regression when setting empty cookie value + - Ease the new restriction, which is just basic header-level validation + * Fix typo in invalid value errors + +0.1.4 / 2015-09-17 +================== + + * Throw better error for invalid argument to parse + * Throw on invalid values provided to `serialize` + - Ensures the resulting string is a valid HTTP header value + +0.1.3 / 2015-05-19 +================== + + * Reduce the scope of try-catch deopt + * Remove argument reassignments + +0.1.2 / 2014-04-16 +================== + + * Remove unnecessary files from npm package + +0.1.1 / 2014-02-23 +================== + + * Fix bad parse when cookie value contained a comma + * Fix support for `maxAge` of `0` + +0.1.0 / 2013-05-01 +================== + + * Add `decode` option + * Add `encode` option + +0.0.6 / 2013-04-08 +================== + + * Ignore cookie parts missing `=` + +0.0.5 / 2012-10-29 +================== + + * Return raw cookie value if value unescape errors + +0.0.4 / 2012-06-21 +================== + + * Use encode/decodeURIComponent for cookie encoding/decoding + - Improve server/client interoperability + +0.0.3 / 2012-06-06 +================== + + * Only escape special characters per the cookie RFC + +0.0.2 / 2012-06-01 +================== + + * Fix `maxAge` option to not throw error + +0.0.1 / 2012-05-28 +================== + + * Add more tests + +0.0.0 / 2012-05-28 +================== + + * Initial release diff --git a/node_modules/cookie/LICENSE b/node_modules/cookie/LICENSE new file mode 100644 index 000000000..058b6b4ef --- /dev/null +++ b/node_modules/cookie/LICENSE @@ -0,0 +1,24 @@ +(The MIT License) + +Copyright (c) 2012-2014 Roman Shtylman +Copyright (c) 2015 Douglas Christopher Wilson + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +'Software'), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + diff --git a/node_modules/cookie/README.md b/node_modules/cookie/README.md new file mode 100644 index 000000000..5449c3a25 --- /dev/null +++ b/node_modules/cookie/README.md @@ -0,0 +1,302 @@ +# cookie + +[![NPM Version][npm-version-image]][npm-url] +[![NPM Downloads][npm-downloads-image]][npm-url] +[![Node.js Version][node-version-image]][node-version-url] +[![Build Status][github-actions-ci-image]][github-actions-ci-url] +[![Test Coverage][coveralls-image]][coveralls-url] + +Basic HTTP cookie parser and serializer for HTTP servers. + +## Installation + +This is a [Node.js](https://nodejs.org/en/) module available through the +[npm registry](https://www.npmjs.com/). Installation is done using the +[`npm install` command](https://docs.npmjs.com/getting-started/installing-npm-packages-locally): + +```sh +$ npm install cookie +``` + +## API + +```js +var cookie = require('cookie'); +``` + +### cookie.parse(str, options) + +Parse an HTTP `Cookie` header string and returning an object of all cookie name-value pairs. +The `str` argument is the string representing a `Cookie` header value and `options` is an +optional object containing additional parsing options. + +```js +var cookies = cookie.parse('foo=bar; equation=E%3Dmc%5E2'); +// { foo: 'bar', equation: 'E=mc^2' } +``` + +#### Options + +`cookie.parse` accepts these properties in the options object. + +##### decode + +Specifies a function that will be used to decode a cookie's value. Since the value of a cookie +has a limited character set (and must be a simple string), this function can be used to decode +a previously-encoded cookie value into a JavaScript string or other object. + +The default function is the global `decodeURIComponent`, which will decode any URL-encoded +sequences into their byte representations. + +**note** if an error is thrown from this function, the original, non-decoded cookie value will +be returned as the cookie's value. + +### cookie.serialize(name, value, options) + +Serialize a cookie name-value pair into a `Set-Cookie` header string. The `name` argument is the +name for the cookie, the `value` argument is the value to set the cookie to, and the `options` +argument is an optional object containing additional serialization options. + +```js +var setCookie = cookie.serialize('foo', 'bar'); +// foo=bar +``` + +#### Options + +`cookie.serialize` accepts these properties in the options object. + +##### domain + +Specifies the value for the [`Domain` `Set-Cookie` attribute][rfc-6265-5.2.3]. By default, no +domain is set, and most clients will consider the cookie to apply to only the current domain. + +##### encode + +Specifies a function that will be used to encode a cookie's value. Since value of a cookie +has a limited character set (and must be a simple string), this function can be used to encode +a value into a string suited for a cookie's value. + +The default function is the global `encodeURIComponent`, which will encode a JavaScript string +into UTF-8 byte sequences and then URL-encode any that fall outside of the cookie range. + +##### expires + +Specifies the `Date` object to be the value for the [`Expires` `Set-Cookie` attribute][rfc-6265-5.2.1]. +By default, no expiration is set, and most clients will consider this a "non-persistent cookie" and +will delete it on a condition like exiting a web browser application. + +**note** the [cookie storage model specification][rfc-6265-5.3] states that if both `expires` and +`maxAge` are set, then `maxAge` takes precedence, but it is possible not all clients by obey this, +so if both are set, they should point to the same date and time. + +##### httpOnly + +Specifies the `boolean` value for the [`HttpOnly` `Set-Cookie` attribute][rfc-6265-5.2.6]. When truthy, +the `HttpOnly` attribute is set, otherwise it is not. By default, the `HttpOnly` attribute is not set. + +**note** be careful when setting this to `true`, as compliant clients will not allow client-side +JavaScript to see the cookie in `document.cookie`. + +##### maxAge + +Specifies the `number` (in seconds) to be the value for the [`Max-Age` `Set-Cookie` attribute][rfc-6265-5.2.2]. +The given number will be converted to an integer by rounding down. By default, no maximum age is set. + +**note** the [cookie storage model specification][rfc-6265-5.3] states that if both `expires` and +`maxAge` are set, then `maxAge` takes precedence, but it is possible not all clients by obey this, +so if both are set, they should point to the same date and time. + +##### path + +Specifies the value for the [`Path` `Set-Cookie` attribute][rfc-6265-5.2.4]. By default, the path +is considered the ["default path"][rfc-6265-5.1.4]. + +##### priority + +Specifies the `string` to be the value for the [`Priority` `Set-Cookie` attribute][rfc-west-cookie-priority-00-4.1]. + + - `'low'` will set the `Priority` attribute to `Low`. + - `'medium'` will set the `Priority` attribute to `Medium`, the default priority when not set. + - `'high'` will set the `Priority` attribute to `High`. + +More information about the different priority levels can be found in +[the specification][rfc-west-cookie-priority-00-4.1]. + +**note** This is an attribute that has not yet been fully standardized, and may change in the future. +This also means many clients may ignore this attribute until they understand it. + +##### sameSite + +Specifies the `boolean` or `string` to be the value for the [`SameSite` `Set-Cookie` attribute][rfc-6265bis-09-5.4.7]. + + - `true` will set the `SameSite` attribute to `Strict` for strict same site enforcement. + - `false` will not set the `SameSite` attribute. + - `'lax'` will set the `SameSite` attribute to `Lax` for lax same site enforcement. + - `'none'` will set the `SameSite` attribute to `None` for an explicit cross-site cookie. + - `'strict'` will set the `SameSite` attribute to `Strict` for strict same site enforcement. + +More information about the different enforcement levels can be found in +[the specification][rfc-6265bis-09-5.4.7]. + +**note** This is an attribute that has not yet been fully standardized, and may change in the future. +This also means many clients may ignore this attribute until they understand it. + +##### secure + +Specifies the `boolean` value for the [`Secure` `Set-Cookie` attribute][rfc-6265-5.2.5]. When truthy, +the `Secure` attribute is set, otherwise it is not. By default, the `Secure` attribute is not set. + +**note** be careful when setting this to `true`, as compliant clients will not send the cookie back to +the server in the future if the browser does not have an HTTPS connection. + +## Example + +The following example uses this module in conjunction with the Node.js core HTTP server +to prompt a user for their name and display it back on future visits. + +```js +var cookie = require('cookie'); +var escapeHtml = require('escape-html'); +var http = require('http'); +var url = require('url'); + +function onRequest(req, res) { + // Parse the query string + var query = url.parse(req.url, true, true).query; + + if (query && query.name) { + // Set a new cookie with the name + res.setHeader('Set-Cookie', cookie.serialize('name', String(query.name), { + httpOnly: true, + maxAge: 60 * 60 * 24 * 7 // 1 week + })); + + // Redirect back after setting cookie + res.statusCode = 302; + res.setHeader('Location', req.headers.referer || '/'); + res.end(); + return; + } + + // Parse the cookies on the request + var cookies = cookie.parse(req.headers.cookie || ''); + + // Get the visitor name set in the cookie + var name = cookies.name; + + res.setHeader('Content-Type', 'text/html; charset=UTF-8'); + + if (name) { + res.write('

Welcome back, ' + escapeHtml(name) + '!

'); + } else { + res.write('

Hello, new visitor!

'); + } + + res.write('
'); + res.write(' '); + res.end('
'); +} + +http.createServer(onRequest).listen(3000); +``` + +## Testing + +```sh +$ npm test +``` + +## Benchmark + +``` +$ npm run bench + +> cookie@0.4.2 bench +> node benchmark/index.js + + node@16.14.0 + v8@9.4.146.24-node.20 + uv@1.43.0 + zlib@1.2.11 + brotli@1.0.9 + ares@1.18.1 + modules@93 + nghttp2@1.45.1 + napi@8 + llhttp@6.0.4 + openssl@1.1.1m+quic + cldr@40.0 + icu@70.1 + tz@2021a3 + unicode@14.0 + ngtcp2@0.1.0-DEV + nghttp3@0.1.0-DEV + +> node benchmark/parse-top.js + + cookie.parse - top sites + + 15 tests completed. + + parse accounts.google.com x 2,421,245 ops/sec ±0.80% (188 runs sampled) + parse apple.com x 2,684,710 ops/sec ±0.59% (189 runs sampled) + parse cloudflare.com x 2,231,418 ops/sec ±0.76% (186 runs sampled) + parse docs.google.com x 2,316,357 ops/sec ±1.28% (187 runs sampled) + parse drive.google.com x 2,363,543 ops/sec ±0.49% (189 runs sampled) + parse en.wikipedia.org x 839,414 ops/sec ±0.53% (189 runs sampled) + parse linkedin.com x 553,797 ops/sec ±0.63% (190 runs sampled) + parse maps.google.com x 1,314,779 ops/sec ±0.72% (189 runs sampled) + parse microsoft.com x 153,783 ops/sec ±0.53% (190 runs sampled) + parse play.google.com x 2,249,574 ops/sec ±0.59% (187 runs sampled) + parse plus.google.com x 2,258,682 ops/sec ±0.60% (188 runs sampled) + parse sites.google.com x 2,247,069 ops/sec ±0.68% (189 runs sampled) + parse support.google.com x 1,456,840 ops/sec ±0.70% (187 runs sampled) + parse www.google.com x 1,046,028 ops/sec ±0.58% (188 runs sampled) + parse youtu.be x 937,428 ops/sec ±1.47% (190 runs sampled) + parse youtube.com x 963,878 ops/sec ±0.59% (190 runs sampled) + +> node benchmark/parse.js + + cookie.parse - generic + + 6 tests completed. + + simple x 2,745,604 ops/sec ±0.77% (185 runs sampled) + decode x 557,287 ops/sec ±0.60% (188 runs sampled) + unquote x 2,498,475 ops/sec ±0.55% (189 runs sampled) + duplicates x 868,591 ops/sec ±0.89% (187 runs sampled) + 10 cookies x 306,745 ops/sec ±0.49% (190 runs sampled) + 100 cookies x 22,414 ops/sec ±2.38% (182 runs sampled) +``` + +## References + +- [RFC 6265: HTTP State Management Mechanism][rfc-6265] +- [Same-site Cookies][rfc-6265bis-09-5.4.7] + +[rfc-west-cookie-priority-00-4.1]: https://tools.ietf.org/html/draft-west-cookie-priority-00#section-4.1 +[rfc-6265bis-09-5.4.7]: https://tools.ietf.org/html/draft-ietf-httpbis-rfc6265bis-09#section-5.4.7 +[rfc-6265]: https://tools.ietf.org/html/rfc6265 +[rfc-6265-5.1.4]: https://tools.ietf.org/html/rfc6265#section-5.1.4 +[rfc-6265-5.2.1]: https://tools.ietf.org/html/rfc6265#section-5.2.1 +[rfc-6265-5.2.2]: https://tools.ietf.org/html/rfc6265#section-5.2.2 +[rfc-6265-5.2.3]: https://tools.ietf.org/html/rfc6265#section-5.2.3 +[rfc-6265-5.2.4]: https://tools.ietf.org/html/rfc6265#section-5.2.4 +[rfc-6265-5.2.5]: https://tools.ietf.org/html/rfc6265#section-5.2.5 +[rfc-6265-5.2.6]: https://tools.ietf.org/html/rfc6265#section-5.2.6 +[rfc-6265-5.3]: https://tools.ietf.org/html/rfc6265#section-5.3 + +## License + +[MIT](LICENSE) + +[coveralls-image]: https://badgen.net/coveralls/c/github/jshttp/cookie/master +[coveralls-url]: https://coveralls.io/r/jshttp/cookie?branch=master +[github-actions-ci-image]: https://img.shields.io/github/workflow/status/jshttp/cookie/ci/master?label=ci +[github-actions-ci-url]: https://github.com/jshttp/cookie/actions/workflows/ci.yml +[node-version-image]: https://badgen.net/npm/node/cookie +[node-version-url]: https://nodejs.org/en/download +[npm-downloads-image]: https://badgen.net/npm/dm/cookie +[npm-url]: https://npmjs.org/package/cookie +[npm-version-image]: https://badgen.net/npm/v/cookie diff --git a/node_modules/cookie/SECURITY.md b/node_modules/cookie/SECURITY.md new file mode 100644 index 000000000..fd4a6c53a --- /dev/null +++ b/node_modules/cookie/SECURITY.md @@ -0,0 +1,25 @@ +# Security Policies and Procedures + +## Reporting a Bug + +The `cookie` team and community take all security bugs seriously. Thank +you for improving the security of the project. We appreciate your efforts and +responsible disclosure and will make every effort to acknowledge your +contributions. + +Report security bugs by emailing the current owner(s) of `cookie`. This +information can be found in the npm registry using the command +`npm owner ls cookie`. +If unsure or unable to get the information from the above, open an issue +in the [project issue tracker](https://github.com/jshttp/cookie/issues) +asking for the current contact information. + +To ensure the timely response to your report, please ensure that the entirety +of the report is contained within the email body and not solely behind a web +link or an attachment. + +At least one owner will acknowledge your email within 48 hours, and will send a +more detailed response within 48 hours indicating the next steps in handling +your report. After the initial reply to your report, the owners will +endeavor to keep you informed of the progress towards a fix and full +announcement, and may ask for additional information or guidance. diff --git a/node_modules/cookie/index.js b/node_modules/cookie/index.js new file mode 100644 index 000000000..9c3d07d89 --- /dev/null +++ b/node_modules/cookie/index.js @@ -0,0 +1,270 @@ +/*! + * cookie + * Copyright(c) 2012-2014 Roman Shtylman + * Copyright(c) 2015 Douglas Christopher Wilson + * MIT Licensed + */ + +'use strict'; + +/** + * Module exports. + * @public + */ + +exports.parse = parse; +exports.serialize = serialize; + +/** + * Module variables. + * @private + */ + +var __toString = Object.prototype.toString + +/** + * RegExp to match field-content in RFC 7230 sec 3.2 + * + * field-content = field-vchar [ 1*( SP / HTAB ) field-vchar ] + * field-vchar = VCHAR / obs-text + * obs-text = %x80-FF + */ + +var fieldContentRegExp = /^[\u0009\u0020-\u007e\u0080-\u00ff]+$/; + +/** + * Parse a cookie header. + * + * Parse the given cookie header string into an object + * The object has the various cookies as keys(names) => values + * + * @param {string} str + * @param {object} [options] + * @return {object} + * @public + */ + +function parse(str, options) { + if (typeof str !== 'string') { + throw new TypeError('argument str must be a string'); + } + + var obj = {} + var opt = options || {}; + var dec = opt.decode || decode; + + var index = 0 + while (index < str.length) { + var eqIdx = str.indexOf('=', index) + + // no more cookie pairs + if (eqIdx === -1) { + break + } + + var endIdx = str.indexOf(';', index) + + if (endIdx === -1) { + endIdx = str.length + } else if (endIdx < eqIdx) { + // backtrack on prior semicolon + index = str.lastIndexOf(';', eqIdx - 1) + 1 + continue + } + + var key = str.slice(index, eqIdx).trim() + + // only assign once + if (undefined === obj[key]) { + var val = str.slice(eqIdx + 1, endIdx).trim() + + // quoted values + if (val.charCodeAt(0) === 0x22) { + val = val.slice(1, -1) + } + + obj[key] = tryDecode(val, dec); + } + + index = endIdx + 1 + } + + return obj; +} + +/** + * Serialize data into a cookie header. + * + * Serialize the a name value pair into a cookie string suitable for + * http headers. An optional options object specified cookie parameters. + * + * serialize('foo', 'bar', { httpOnly: true }) + * => "foo=bar; httpOnly" + * + * @param {string} name + * @param {string} val + * @param {object} [options] + * @return {string} + * @public + */ + +function serialize(name, val, options) { + var opt = options || {}; + var enc = opt.encode || encode; + + if (typeof enc !== 'function') { + throw new TypeError('option encode is invalid'); + } + + if (!fieldContentRegExp.test(name)) { + throw new TypeError('argument name is invalid'); + } + + var value = enc(val); + + if (value && !fieldContentRegExp.test(value)) { + throw new TypeError('argument val is invalid'); + } + + var str = name + '=' + value; + + if (null != opt.maxAge) { + var maxAge = opt.maxAge - 0; + + if (isNaN(maxAge) || !isFinite(maxAge)) { + throw new TypeError('option maxAge is invalid') + } + + str += '; Max-Age=' + Math.floor(maxAge); + } + + if (opt.domain) { + if (!fieldContentRegExp.test(opt.domain)) { + throw new TypeError('option domain is invalid'); + } + + str += '; Domain=' + opt.domain; + } + + if (opt.path) { + if (!fieldContentRegExp.test(opt.path)) { + throw new TypeError('option path is invalid'); + } + + str += '; Path=' + opt.path; + } + + if (opt.expires) { + var expires = opt.expires + + if (!isDate(expires) || isNaN(expires.valueOf())) { + throw new TypeError('option expires is invalid'); + } + + str += '; Expires=' + expires.toUTCString() + } + + if (opt.httpOnly) { + str += '; HttpOnly'; + } + + if (opt.secure) { + str += '; Secure'; + } + + if (opt.priority) { + var priority = typeof opt.priority === 'string' + ? opt.priority.toLowerCase() + : opt.priority + + switch (priority) { + case 'low': + str += '; Priority=Low' + break + case 'medium': + str += '; Priority=Medium' + break + case 'high': + str += '; Priority=High' + break + default: + throw new TypeError('option priority is invalid') + } + } + + if (opt.sameSite) { + var sameSite = typeof opt.sameSite === 'string' + ? opt.sameSite.toLowerCase() : opt.sameSite; + + switch (sameSite) { + case true: + str += '; SameSite=Strict'; + break; + case 'lax': + str += '; SameSite=Lax'; + break; + case 'strict': + str += '; SameSite=Strict'; + break; + case 'none': + str += '; SameSite=None'; + break; + default: + throw new TypeError('option sameSite is invalid'); + } + } + + return str; +} + +/** + * URL-decode string value. Optimized to skip native call when no %. + * + * @param {string} str + * @returns {string} + */ + +function decode (str) { + return str.indexOf('%') !== -1 + ? decodeURIComponent(str) + : str +} + +/** + * URL-encode value. + * + * @param {string} str + * @returns {string} + */ + +function encode (val) { + return encodeURIComponent(val) +} + +/** + * Determine if value is a Date. + * + * @param {*} val + * @private + */ + +function isDate (val) { + return __toString.call(val) === '[object Date]' || + val instanceof Date +} + +/** + * Try decoding a string using a decoding function. + * + * @param {string} str + * @param {function} decode + * @private + */ + +function tryDecode(str, decode) { + try { + return decode(str); + } catch (e) { + return str; + } +} diff --git a/node_modules/cookie/package.json b/node_modules/cookie/package.json new file mode 100644 index 000000000..ed5606a98 --- /dev/null +++ b/node_modules/cookie/package.json @@ -0,0 +1,44 @@ +{ + "name": "cookie", + "description": "HTTP server cookie parsing and serialization", + "version": "0.5.0", + "author": "Roman Shtylman ", + "contributors": [ + "Douglas Christopher Wilson " + ], + "license": "MIT", + "keywords": [ + "cookie", + "cookies" + ], + "repository": "jshttp/cookie", + "devDependencies": { + "beautify-benchmark": "0.2.4", + "benchmark": "2.1.4", + "eslint": "7.32.0", + "eslint-plugin-markdown": "2.2.1", + "mocha": "9.2.2", + "nyc": "15.1.0", + "safe-buffer": "5.2.1", + "top-sites": "1.1.97" + }, + "files": [ + "HISTORY.md", + "LICENSE", + "README.md", + "SECURITY.md", + "index.js" + ], + "engines": { + "node": ">= 0.6" + }, + "scripts": { + "bench": "node benchmark/index.js", + "lint": "eslint .", + "test": "mocha --reporter spec --bail --check-leaks test/", + "test-ci": "nyc --reporter=lcov --reporter=text npm test", + "test-cov": "nyc --reporter=html --reporter=text npm test", + "update-bench": "node scripts/update-benchmark.js", + "version": "node scripts/version-history.js && git add HISTORY.md" + } +} diff --git a/node_modules/debug/.coveralls.yml b/node_modules/debug/.coveralls.yml new file mode 100644 index 000000000..20a706858 --- /dev/null +++ b/node_modules/debug/.coveralls.yml @@ -0,0 +1 @@ +repo_token: SIAeZjKYlHK74rbcFvNHMUzjRiMpflxve diff --git a/node_modules/debug/.eslintrc b/node_modules/debug/.eslintrc new file mode 100644 index 000000000..8a37ae2c2 --- /dev/null +++ b/node_modules/debug/.eslintrc @@ -0,0 +1,11 @@ +{ + "env": { + "browser": true, + "node": true + }, + "rules": { + "no-console": 0, + "no-empty": [1, { "allowEmptyCatch": true }] + }, + "extends": "eslint:recommended" +} diff --git a/node_modules/debug/.npmignore b/node_modules/debug/.npmignore new file mode 100644 index 000000000..5f60eecc8 --- /dev/null +++ b/node_modules/debug/.npmignore @@ -0,0 +1,9 @@ +support +test +examples +example +*.sock +dist +yarn.lock +coverage +bower.json diff --git a/node_modules/debug/.travis.yml b/node_modules/debug/.travis.yml new file mode 100644 index 000000000..6c6090c3b --- /dev/null +++ b/node_modules/debug/.travis.yml @@ -0,0 +1,14 @@ + +language: node_js +node_js: + - "6" + - "5" + - "4" + +install: + - make node_modules + +script: + - make lint + - make test + - make coveralls diff --git a/node_modules/debug/CHANGELOG.md b/node_modules/debug/CHANGELOG.md new file mode 100644 index 000000000..eadaa1895 --- /dev/null +++ b/node_modules/debug/CHANGELOG.md @@ -0,0 +1,362 @@ + +2.6.9 / 2017-09-22 +================== + + * remove ReDoS regexp in %o formatter (#504) + +2.6.8 / 2017-05-18 +================== + + * Fix: Check for undefined on browser globals (#462, @marbemac) + +2.6.7 / 2017-05-16 +================== + + * Fix: Update ms to 2.0.0 to fix regular expression denial of service vulnerability (#458, @hubdotcom) + * Fix: Inline extend function in node implementation (#452, @dougwilson) + * Docs: Fix typo (#455, @msasad) + +2.6.5 / 2017-04-27 +================== + + * Fix: null reference check on window.documentElement.style.WebkitAppearance (#447, @thebigredgeek) + * Misc: clean up browser reference checks (#447, @thebigredgeek) + * Misc: add npm-debug.log to .gitignore (@thebigredgeek) + + +2.6.4 / 2017-04-20 +================== + + * Fix: bug that would occure if process.env.DEBUG is a non-string value. (#444, @LucianBuzzo) + * Chore: ignore bower.json in npm installations. (#437, @joaovieira) + * Misc: update "ms" to v0.7.3 (@tootallnate) + +2.6.3 / 2017-03-13 +================== + + * Fix: Electron reference to `process.env.DEBUG` (#431, @paulcbetts) + * Docs: Changelog fix (@thebigredgeek) + +2.6.2 / 2017-03-10 +================== + + * Fix: DEBUG_MAX_ARRAY_LENGTH (#420, @slavaGanzin) + * Docs: Add backers and sponsors from Open Collective (#422, @piamancini) + * Docs: Add Slackin invite badge (@tootallnate) + +2.6.1 / 2017-02-10 +================== + + * Fix: Module's `export default` syntax fix for IE8 `Expected identifier` error + * Fix: Whitelist DEBUG_FD for values 1 and 2 only (#415, @pi0) + * Fix: IE8 "Expected identifier" error (#414, @vgoma) + * Fix: Namespaces would not disable once enabled (#409, @musikov) + +2.6.0 / 2016-12-28 +================== + + * Fix: added better null pointer checks for browser useColors (@thebigredgeek) + * Improvement: removed explicit `window.debug` export (#404, @tootallnate) + * Improvement: deprecated `DEBUG_FD` environment variable (#405, @tootallnate) + +2.5.2 / 2016-12-25 +================== + + * Fix: reference error on window within webworkers (#393, @KlausTrainer) + * Docs: fixed README typo (#391, @lurch) + * Docs: added notice about v3 api discussion (@thebigredgeek) + +2.5.1 / 2016-12-20 +================== + + * Fix: babel-core compatibility + +2.5.0 / 2016-12-20 +================== + + * Fix: wrong reference in bower file (@thebigredgeek) + * Fix: webworker compatibility (@thebigredgeek) + * Fix: output formatting issue (#388, @kribblo) + * Fix: babel-loader compatibility (#383, @escwald) + * Misc: removed built asset from repo and publications (@thebigredgeek) + * Misc: moved source files to /src (#378, @yamikuronue) + * Test: added karma integration and replaced babel with browserify for browser tests (#378, @yamikuronue) + * Test: coveralls integration (#378, @yamikuronue) + * Docs: simplified language in the opening paragraph (#373, @yamikuronue) + +2.4.5 / 2016-12-17 +================== + + * Fix: `navigator` undefined in Rhino (#376, @jochenberger) + * Fix: custom log function (#379, @hsiliev) + * Improvement: bit of cleanup + linting fixes (@thebigredgeek) + * Improvement: rm non-maintainted `dist/` dir (#375, @freewil) + * Docs: simplified language in the opening paragraph. (#373, @yamikuronue) + +2.4.4 / 2016-12-14 +================== + + * Fix: work around debug being loaded in preload scripts for electron (#368, @paulcbetts) + +2.4.3 / 2016-12-14 +================== + + * Fix: navigation.userAgent error for react native (#364, @escwald) + +2.4.2 / 2016-12-14 +================== + + * Fix: browser colors (#367, @tootallnate) + * Misc: travis ci integration (@thebigredgeek) + * Misc: added linting and testing boilerplate with sanity check (@thebigredgeek) + +2.4.1 / 2016-12-13 +================== + + * Fix: typo that broke the package (#356) + +2.4.0 / 2016-12-13 +================== + + * Fix: bower.json references unbuilt src entry point (#342, @justmatt) + * Fix: revert "handle regex special characters" (@tootallnate) + * Feature: configurable util.inspect()`options for NodeJS (#327, @tootallnate) + * Feature: %O`(big O) pretty-prints objects (#322, @tootallnate) + * Improvement: allow colors in workers (#335, @botverse) + * Improvement: use same color for same namespace. (#338, @lchenay) + +2.3.3 / 2016-11-09 +================== + + * Fix: Catch `JSON.stringify()` errors (#195, Jovan Alleyne) + * Fix: Returning `localStorage` saved values (#331, Levi Thomason) + * Improvement: Don't create an empty object when no `process` (Nathan Rajlich) + +2.3.2 / 2016-11-09 +================== + + * Fix: be super-safe in index.js as well (@TooTallNate) + * Fix: should check whether process exists (Tom Newby) + +2.3.1 / 2016-11-09 +================== + + * Fix: Added electron compatibility (#324, @paulcbetts) + * Improvement: Added performance optimizations (@tootallnate) + * Readme: Corrected PowerShell environment variable example (#252, @gimre) + * Misc: Removed yarn lock file from source control (#321, @fengmk2) + +2.3.0 / 2016-11-07 +================== + + * Fix: Consistent placement of ms diff at end of output (#215, @gorangajic) + * Fix: Escaping of regex special characters in namespace strings (#250, @zacronos) + * Fix: Fixed bug causing crash on react-native (#282, @vkarpov15) + * Feature: Enabled ES6+ compatible import via default export (#212 @bucaran) + * Feature: Added %O formatter to reflect Chrome's console.log capability (#279, @oncletom) + * Package: Update "ms" to 0.7.2 (#315, @DevSide) + * Package: removed superfluous version property from bower.json (#207 @kkirsche) + * Readme: fix USE_COLORS to DEBUG_COLORS + * Readme: Doc fixes for format string sugar (#269, @mlucool) + * Readme: Updated docs for DEBUG_FD and DEBUG_COLORS environment variables (#232, @mattlyons0) + * Readme: doc fixes for PowerShell (#271 #243, @exoticknight @unreadable) + * Readme: better docs for browser support (#224, @matthewmueller) + * Tooling: Added yarn integration for development (#317, @thebigredgeek) + * Misc: Renamed History.md to CHANGELOG.md (@thebigredgeek) + * Misc: Added license file (#226 #274, @CantemoInternal @sdaitzman) + * Misc: Updated contributors (@thebigredgeek) + +2.2.0 / 2015-05-09 +================== + + * package: update "ms" to v0.7.1 (#202, @dougwilson) + * README: add logging to file example (#193, @DanielOchoa) + * README: fixed a typo (#191, @amir-s) + * browser: expose `storage` (#190, @stephenmathieson) + * Makefile: add a `distclean` target (#189, @stephenmathieson) + +2.1.3 / 2015-03-13 +================== + + * Updated stdout/stderr example (#186) + * Updated example/stdout.js to match debug current behaviour + * Renamed example/stderr.js to stdout.js + * Update Readme.md (#184) + * replace high intensity foreground color for bold (#182, #183) + +2.1.2 / 2015-03-01 +================== + + * dist: recompile + * update "ms" to v0.7.0 + * package: update "browserify" to v9.0.3 + * component: fix "ms.js" repo location + * changed bower package name + * updated documentation about using debug in a browser + * fix: security error on safari (#167, #168, @yields) + +2.1.1 / 2014-12-29 +================== + + * browser: use `typeof` to check for `console` existence + * browser: check for `console.log` truthiness (fix IE 8/9) + * browser: add support for Chrome apps + * Readme: added Windows usage remarks + * Add `bower.json` to properly support bower install + +2.1.0 / 2014-10-15 +================== + + * node: implement `DEBUG_FD` env variable support + * package: update "browserify" to v6.1.0 + * package: add "license" field to package.json (#135, @panuhorsmalahti) + +2.0.0 / 2014-09-01 +================== + + * package: update "browserify" to v5.11.0 + * node: use stderr rather than stdout for logging (#29, @stephenmathieson) + +1.0.4 / 2014-07-15 +================== + + * dist: recompile + * example: remove `console.info()` log usage + * example: add "Content-Type" UTF-8 header to browser example + * browser: place %c marker after the space character + * browser: reset the "content" color via `color: inherit` + * browser: add colors support for Firefox >= v31 + * debug: prefer an instance `log()` function over the global one (#119) + * Readme: update documentation about styled console logs for FF v31 (#116, @wryk) + +1.0.3 / 2014-07-09 +================== + + * Add support for multiple wildcards in namespaces (#122, @seegno) + * browser: fix lint + +1.0.2 / 2014-06-10 +================== + + * browser: update color palette (#113, @gscottolson) + * common: make console logging function configurable (#108, @timoxley) + * node: fix %o colors on old node <= 0.8.x + * Makefile: find node path using shell/which (#109, @timoxley) + +1.0.1 / 2014-06-06 +================== + + * browser: use `removeItem()` to clear localStorage + * browser, node: don't set DEBUG if namespaces is undefined (#107, @leedm777) + * package: add "contributors" section + * node: fix comment typo + * README: list authors + +1.0.0 / 2014-06-04 +================== + + * make ms diff be global, not be scope + * debug: ignore empty strings in enable() + * node: make DEBUG_COLORS able to disable coloring + * *: export the `colors` array + * npmignore: don't publish the `dist` dir + * Makefile: refactor to use browserify + * package: add "browserify" as a dev dependency + * Readme: add Web Inspector Colors section + * node: reset terminal color for the debug content + * node: map "%o" to `util.inspect()` + * browser: map "%j" to `JSON.stringify()` + * debug: add custom "formatters" + * debug: use "ms" module for humanizing the diff + * Readme: add "bash" syntax highlighting + * browser: add Firebug color support + * browser: add colors for WebKit browsers + * node: apply log to `console` + * rewrite: abstract common logic for Node & browsers + * add .jshintrc file + +0.8.1 / 2014-04-14 +================== + + * package: re-add the "component" section + +0.8.0 / 2014-03-30 +================== + + * add `enable()` method for nodejs. Closes #27 + * change from stderr to stdout + * remove unnecessary index.js file + +0.7.4 / 2013-11-13 +================== + + * remove "browserify" key from package.json (fixes something in browserify) + +0.7.3 / 2013-10-30 +================== + + * fix: catch localStorage security error when cookies are blocked (Chrome) + * add debug(err) support. Closes #46 + * add .browser prop to package.json. Closes #42 + +0.7.2 / 2013-02-06 +================== + + * fix package.json + * fix: Mobile Safari (private mode) is broken with debug + * fix: Use unicode to send escape character to shell instead of octal to work with strict mode javascript + +0.7.1 / 2013-02-05 +================== + + * add repository URL to package.json + * add DEBUG_COLORED to force colored output + * add browserify support + * fix component. Closes #24 + +0.7.0 / 2012-05-04 +================== + + * Added .component to package.json + * Added debug.component.js build + +0.6.0 / 2012-03-16 +================== + + * Added support for "-" prefix in DEBUG [Vinay Pulim] + * Added `.enabled` flag to the node version [TooTallNate] + +0.5.0 / 2012-02-02 +================== + + * Added: humanize diffs. Closes #8 + * Added `debug.disable()` to the CS variant + * Removed padding. Closes #10 + * Fixed: persist client-side variant again. Closes #9 + +0.4.0 / 2012-02-01 +================== + + * Added browser variant support for older browsers [TooTallNate] + * Added `debug.enable('project:*')` to browser variant [TooTallNate] + * Added padding to diff (moved it to the right) + +0.3.0 / 2012-01-26 +================== + + * Added millisecond diff when isatty, otherwise UTC string + +0.2.0 / 2012-01-22 +================== + + * Added wildcard support + +0.1.0 / 2011-12-02 +================== + + * Added: remove colors unless stderr isatty [TooTallNate] + +0.0.1 / 2010-01-03 +================== + + * Initial release diff --git a/node_modules/debug/LICENSE b/node_modules/debug/LICENSE new file mode 100644 index 000000000..658c933d2 --- /dev/null +++ b/node_modules/debug/LICENSE @@ -0,0 +1,19 @@ +(The MIT License) + +Copyright (c) 2014 TJ Holowaychuk + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software +and associated documentation files (the 'Software'), to deal in the Software without restriction, +including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial +portions of the Software. + +THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT +LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + diff --git a/node_modules/debug/Makefile b/node_modules/debug/Makefile new file mode 100644 index 000000000..584da8bf9 --- /dev/null +++ b/node_modules/debug/Makefile @@ -0,0 +1,50 @@ +# get Makefile directory name: http://stackoverflow.com/a/5982798/376773 +THIS_MAKEFILE_PATH:=$(word $(words $(MAKEFILE_LIST)),$(MAKEFILE_LIST)) +THIS_DIR:=$(shell cd $(dir $(THIS_MAKEFILE_PATH));pwd) + +# BIN directory +BIN := $(THIS_DIR)/node_modules/.bin + +# Path +PATH := node_modules/.bin:$(PATH) +SHELL := /bin/bash + +# applications +NODE ?= $(shell which node) +YARN ?= $(shell which yarn) +PKG ?= $(if $(YARN),$(YARN),$(NODE) $(shell which npm)) +BROWSERIFY ?= $(NODE) $(BIN)/browserify + +.FORCE: + +install: node_modules + +node_modules: package.json + @NODE_ENV= $(PKG) install + @touch node_modules + +lint: .FORCE + eslint browser.js debug.js index.js node.js + +test-node: .FORCE + istanbul cover node_modules/mocha/bin/_mocha -- test/**.js + +test-browser: .FORCE + mkdir -p dist + + @$(BROWSERIFY) \ + --standalone debug \ + . > dist/debug.js + + karma start --single-run + rimraf dist + +test: .FORCE + concurrently \ + "make test-node" \ + "make test-browser" + +coveralls: + cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js + +.PHONY: all install clean distclean diff --git a/node_modules/debug/README.md b/node_modules/debug/README.md new file mode 100644 index 000000000..f67be6b31 --- /dev/null +++ b/node_modules/debug/README.md @@ -0,0 +1,312 @@ +# debug +[![Build Status](https://travis-ci.org/visionmedia/debug.svg?branch=master)](https://travis-ci.org/visionmedia/debug) [![Coverage Status](https://coveralls.io/repos/github/visionmedia/debug/badge.svg?branch=master)](https://coveralls.io/github/visionmedia/debug?branch=master) [![Slack](https://visionmedia-community-slackin.now.sh/badge.svg)](https://visionmedia-community-slackin.now.sh/) [![OpenCollective](https://opencollective.com/debug/backers/badge.svg)](#backers) +[![OpenCollective](https://opencollective.com/debug/sponsors/badge.svg)](#sponsors) + + + +A tiny node.js debugging utility modelled after node core's debugging technique. + +**Discussion around the V3 API is under way [here](https://github.com/visionmedia/debug/issues/370)** + +## Installation + +```bash +$ npm install debug +``` + +## Usage + +`debug` exposes a function; simply pass this function the name of your module, and it will return a decorated version of `console.error` for you to pass debug statements to. This will allow you to toggle the debug output for different parts of your module as well as the module as a whole. + +Example _app.js_: + +```js +var debug = require('debug')('http') + , http = require('http') + , name = 'My App'; + +// fake app + +debug('booting %s', name); + +http.createServer(function(req, res){ + debug(req.method + ' ' + req.url); + res.end('hello\n'); +}).listen(3000, function(){ + debug('listening'); +}); + +// fake worker of some kind + +require('./worker'); +``` + +Example _worker.js_: + +```js +var debug = require('debug')('worker'); + +setInterval(function(){ + debug('doing some work'); +}, 1000); +``` + + The __DEBUG__ environment variable is then used to enable these based on space or comma-delimited names. Here are some examples: + + ![debug http and worker](http://f.cl.ly/items/18471z1H402O24072r1J/Screenshot.png) + + ![debug worker](http://f.cl.ly/items/1X413v1a3M0d3C2c1E0i/Screenshot.png) + +#### Windows note + + On Windows the environment variable is set using the `set` command. + + ```cmd + set DEBUG=*,-not_this + ``` + + Note that PowerShell uses different syntax to set environment variables. + + ```cmd + $env:DEBUG = "*,-not_this" + ``` + +Then, run the program to be debugged as usual. + +## Millisecond diff + + When actively developing an application it can be useful to see when the time spent between one `debug()` call and the next. Suppose for example you invoke `debug()` before requesting a resource, and after as well, the "+NNNms" will show you how much time was spent between calls. + + ![](http://f.cl.ly/items/2i3h1d3t121M2Z1A3Q0N/Screenshot.png) + + When stdout is not a TTY, `Date#toUTCString()` is used, making it more useful for logging the debug information as shown below: + + ![](http://f.cl.ly/items/112H3i0e0o0P0a2Q2r11/Screenshot.png) + +## Conventions + + If you're using this in one or more of your libraries, you _should_ use the name of your library so that developers may toggle debugging as desired without guessing names. If you have more than one debuggers you _should_ prefix them with your library name and use ":" to separate features. For example "bodyParser" from Connect would then be "connect:bodyParser". + +## Wildcards + + The `*` character may be used as a wildcard. Suppose for example your library has debuggers named "connect:bodyParser", "connect:compress", "connect:session", instead of listing all three with `DEBUG=connect:bodyParser,connect:compress,connect:session`, you may simply do `DEBUG=connect:*`, or to run everything using this module simply use `DEBUG=*`. + + You can also exclude specific debuggers by prefixing them with a "-" character. For example, `DEBUG=*,-connect:*` would include all debuggers except those starting with "connect:". + +## Environment Variables + + When running through Node.js, you can set a few environment variables that will + change the behavior of the debug logging: + +| Name | Purpose | +|-----------|-------------------------------------------------| +| `DEBUG` | Enables/disables specific debugging namespaces. | +| `DEBUG_COLORS`| Whether or not to use colors in the debug output. | +| `DEBUG_DEPTH` | Object inspection depth. | +| `DEBUG_SHOW_HIDDEN` | Shows hidden properties on inspected objects. | + + + __Note:__ The environment variables beginning with `DEBUG_` end up being + converted into an Options object that gets used with `%o`/`%O` formatters. + See the Node.js documentation for + [`util.inspect()`](https://nodejs.org/api/util.html#util_util_inspect_object_options) + for the complete list. + +## Formatters + + + Debug uses [printf-style](https://wikipedia.org/wiki/Printf_format_string) formatting. Below are the officially supported formatters: + +| Formatter | Representation | +|-----------|----------------| +| `%O` | Pretty-print an Object on multiple lines. | +| `%o` | Pretty-print an Object all on a single line. | +| `%s` | String. | +| `%d` | Number (both integer and float). | +| `%j` | JSON. Replaced with the string '[Circular]' if the argument contains circular references. | +| `%%` | Single percent sign ('%'). This does not consume an argument. | + +### Custom formatters + + You can add custom formatters by extending the `debug.formatters` object. For example, if you wanted to add support for rendering a Buffer as hex with `%h`, you could do something like: + +```js +const createDebug = require('debug') +createDebug.formatters.h = (v) => { + return v.toString('hex') +} + +// …elsewhere +const debug = createDebug('foo') +debug('this is hex: %h', new Buffer('hello world')) +// foo this is hex: 68656c6c6f20776f726c6421 +0ms +``` + +## Browser support + You can build a browser-ready script using [browserify](https://github.com/substack/node-browserify), + or just use the [browserify-as-a-service](https://wzrd.in/) [build](https://wzrd.in/standalone/debug@latest), + if you don't want to build it yourself. + + Debug's enable state is currently persisted by `localStorage`. + Consider the situation shown below where you have `worker:a` and `worker:b`, + and wish to debug both. You can enable this using `localStorage.debug`: + +```js +localStorage.debug = 'worker:*' +``` + +And then refresh the page. + +```js +a = debug('worker:a'); +b = debug('worker:b'); + +setInterval(function(){ + a('doing some work'); +}, 1000); + +setInterval(function(){ + b('doing some work'); +}, 1200); +``` + +#### Web Inspector Colors + + Colors are also enabled on "Web Inspectors" that understand the `%c` formatting + option. These are WebKit web inspectors, Firefox ([since version + 31](https://hacks.mozilla.org/2014/05/editable-box-model-multiple-selection-sublime-text-keys-much-more-firefox-developer-tools-episode-31/)) + and the Firebug plugin for Firefox (any version). + + Colored output looks something like: + + ![](https://cloud.githubusercontent.com/assets/71256/3139768/b98c5fd8-e8ef-11e3-862a-f7253b6f47c6.png) + + +## Output streams + + By default `debug` will log to stderr, however this can be configured per-namespace by overriding the `log` method: + +Example _stdout.js_: + +```js +var debug = require('debug'); +var error = debug('app:error'); + +// by default stderr is used +error('goes to stderr!'); + +var log = debug('app:log'); +// set this namespace to log via console.log +log.log = console.log.bind(console); // don't forget to bind to console! +log('goes to stdout'); +error('still goes to stderr!'); + +// set all output to go via console.info +// overrides all per-namespace log settings +debug.log = console.info.bind(console); +error('now goes to stdout via console.info'); +log('still goes to stdout, but via console.info now'); +``` + + +## Authors + + - TJ Holowaychuk + - Nathan Rajlich + - Andrew Rhyne + +## Backers + +Support us with a monthly donation and help us continue our activities. [[Become a backer](https://opencollective.com/debug#backer)] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +## Sponsors + +Become a sponsor and get your logo on our README on Github with a link to your site. [[Become a sponsor](https://opencollective.com/debug#sponsor)] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +## License + +(The MIT License) + +Copyright (c) 2014-2016 TJ Holowaychuk <tj@vision-media.ca> + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +'Software'), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/node_modules/debug/component.json b/node_modules/debug/component.json new file mode 100644 index 000000000..9de26410f --- /dev/null +++ b/node_modules/debug/component.json @@ -0,0 +1,19 @@ +{ + "name": "debug", + "repo": "visionmedia/debug", + "description": "small debugging utility", + "version": "2.6.9", + "keywords": [ + "debug", + "log", + "debugger" + ], + "main": "src/browser.js", + "scripts": [ + "src/browser.js", + "src/debug.js" + ], + "dependencies": { + "rauchg/ms.js": "0.7.1" + } +} diff --git a/node_modules/debug/karma.conf.js b/node_modules/debug/karma.conf.js new file mode 100644 index 000000000..103a82d15 --- /dev/null +++ b/node_modules/debug/karma.conf.js @@ -0,0 +1,70 @@ +// Karma configuration +// Generated on Fri Dec 16 2016 13:09:51 GMT+0000 (UTC) + +module.exports = function(config) { + config.set({ + + // base path that will be used to resolve all patterns (eg. files, exclude) + basePath: '', + + + // frameworks to use + // available frameworks: https://npmjs.org/browse/keyword/karma-adapter + frameworks: ['mocha', 'chai', 'sinon'], + + + // list of files / patterns to load in the browser + files: [ + 'dist/debug.js', + 'test/*spec.js' + ], + + + // list of files to exclude + exclude: [ + 'src/node.js' + ], + + + // preprocess matching files before serving them to the browser + // available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor + preprocessors: { + }, + + // test results reporter to use + // possible values: 'dots', 'progress' + // available reporters: https://npmjs.org/browse/keyword/karma-reporter + reporters: ['progress'], + + + // web server port + port: 9876, + + + // enable / disable colors in the output (reporters and logs) + colors: true, + + + // level of logging + // possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG + logLevel: config.LOG_INFO, + + + // enable / disable watching file and executing tests whenever any file changes + autoWatch: true, + + + // start these browsers + // available browser launchers: https://npmjs.org/browse/keyword/karma-launcher + browsers: ['PhantomJS'], + + + // Continuous Integration mode + // if true, Karma captures browsers, runs the tests and exits + singleRun: false, + + // Concurrency level + // how many browser should be started simultaneous + concurrency: Infinity + }) +} diff --git a/node_modules/debug/node.js b/node_modules/debug/node.js new file mode 100644 index 000000000..7fc36fe6d --- /dev/null +++ b/node_modules/debug/node.js @@ -0,0 +1 @@ +module.exports = require('./src/node'); diff --git a/node_modules/debug/package.json b/node_modules/debug/package.json new file mode 100644 index 000000000..dc787ba76 --- /dev/null +++ b/node_modules/debug/package.json @@ -0,0 +1,49 @@ +{ + "name": "debug", + "version": "2.6.9", + "repository": { + "type": "git", + "url": "git://github.com/visionmedia/debug.git" + }, + "description": "small debugging utility", + "keywords": [ + "debug", + "log", + "debugger" + ], + "author": "TJ Holowaychuk ", + "contributors": [ + "Nathan Rajlich (http://n8.io)", + "Andrew Rhyne " + ], + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + }, + "devDependencies": { + "browserify": "9.0.3", + "chai": "^3.5.0", + "concurrently": "^3.1.0", + "coveralls": "^2.11.15", + "eslint": "^3.12.1", + "istanbul": "^0.4.5", + "karma": "^1.3.0", + "karma-chai": "^0.1.0", + "karma-mocha": "^1.3.0", + "karma-phantomjs-launcher": "^1.0.2", + "karma-sinon": "^1.0.5", + "mocha": "^3.2.0", + "mocha-lcov-reporter": "^1.2.0", + "rimraf": "^2.5.4", + "sinon": "^1.17.6", + "sinon-chai": "^2.8.0" + }, + "main": "./src/index.js", + "browser": "./src/browser.js", + "component": { + "scripts": { + "debug/index.js": "browser.js", + "debug/debug.js": "debug.js" + } + } +} diff --git a/node_modules/debug/src/browser.js b/node_modules/debug/src/browser.js new file mode 100644 index 000000000..710692493 --- /dev/null +++ b/node_modules/debug/src/browser.js @@ -0,0 +1,185 @@ +/** + * This is the web browser implementation of `debug()`. + * + * Expose `debug()` as the module. + */ + +exports = module.exports = require('./debug'); +exports.log = log; +exports.formatArgs = formatArgs; +exports.save = save; +exports.load = load; +exports.useColors = useColors; +exports.storage = 'undefined' != typeof chrome + && 'undefined' != typeof chrome.storage + ? chrome.storage.local + : localstorage(); + +/** + * Colors. + */ + +exports.colors = [ + 'lightseagreen', + 'forestgreen', + 'goldenrod', + 'dodgerblue', + 'darkorchid', + 'crimson' +]; + +/** + * Currently only WebKit-based Web Inspectors, Firefox >= v31, + * and the Firebug extension (any Firefox version) are known + * to support "%c" CSS customizations. + * + * TODO: add a `localStorage` variable to explicitly enable/disable colors + */ + +function useColors() { + // NB: In an Electron preload script, document will be defined but not fully + // initialized. Since we know we're in Chrome, we'll just detect this case + // explicitly + if (typeof window !== 'undefined' && window.process && window.process.type === 'renderer') { + return true; + } + + // is webkit? http://stackoverflow.com/a/16459606/376773 + // document is undefined in react-native: https://github.com/facebook/react-native/pull/1632 + return (typeof document !== 'undefined' && document.documentElement && document.documentElement.style && document.documentElement.style.WebkitAppearance) || + // is firebug? http://stackoverflow.com/a/398120/376773 + (typeof window !== 'undefined' && window.console && (window.console.firebug || (window.console.exception && window.console.table))) || + // is firefox >= v31? + // https://developer.mozilla.org/en-US/docs/Tools/Web_Console#Styling_messages + (typeof navigator !== 'undefined' && navigator.userAgent && navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/) && parseInt(RegExp.$1, 10) >= 31) || + // double check webkit in userAgent just in case we are in a worker + (typeof navigator !== 'undefined' && navigator.userAgent && navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/)); +} + +/** + * Map %j to `JSON.stringify()`, since no Web Inspectors do that by default. + */ + +exports.formatters.j = function(v) { + try { + return JSON.stringify(v); + } catch (err) { + return '[UnexpectedJSONParseError]: ' + err.message; + } +}; + + +/** + * Colorize log arguments if enabled. + * + * @api public + */ + +function formatArgs(args) { + var useColors = this.useColors; + + args[0] = (useColors ? '%c' : '') + + this.namespace + + (useColors ? ' %c' : ' ') + + args[0] + + (useColors ? '%c ' : ' ') + + '+' + exports.humanize(this.diff); + + if (!useColors) return; + + var c = 'color: ' + this.color; + args.splice(1, 0, c, 'color: inherit') + + // the final "%c" is somewhat tricky, because there could be other + // arguments passed either before or after the %c, so we need to + // figure out the correct index to insert the CSS into + var index = 0; + var lastC = 0; + args[0].replace(/%[a-zA-Z%]/g, function(match) { + if ('%%' === match) return; + index++; + if ('%c' === match) { + // we only are interested in the *last* %c + // (the user may have provided their own) + lastC = index; + } + }); + + args.splice(lastC, 0, c); +} + +/** + * Invokes `console.log()` when available. + * No-op when `console.log` is not a "function". + * + * @api public + */ + +function log() { + // this hackery is required for IE8/9, where + // the `console.log` function doesn't have 'apply' + return 'object' === typeof console + && console.log + && Function.prototype.apply.call(console.log, console, arguments); +} + +/** + * Save `namespaces`. + * + * @param {String} namespaces + * @api private + */ + +function save(namespaces) { + try { + if (null == namespaces) { + exports.storage.removeItem('debug'); + } else { + exports.storage.debug = namespaces; + } + } catch(e) {} +} + +/** + * Load `namespaces`. + * + * @return {String} returns the previously persisted debug modes + * @api private + */ + +function load() { + var r; + try { + r = exports.storage.debug; + } catch(e) {} + + // If debug isn't set in LS, and we're in Electron, try to load $DEBUG + if (!r && typeof process !== 'undefined' && 'env' in process) { + r = process.env.DEBUG; + } + + return r; +} + +/** + * Enable namespaces listed in `localStorage.debug` initially. + */ + +exports.enable(load()); + +/** + * Localstorage attempts to return the localstorage. + * + * This is necessary because safari throws + * when a user disables cookies/localstorage + * and you attempt to access it. + * + * @return {LocalStorage} + * @api private + */ + +function localstorage() { + try { + return window.localStorage; + } catch (e) {} +} diff --git a/node_modules/debug/src/debug.js b/node_modules/debug/src/debug.js new file mode 100644 index 000000000..6a5e3fc94 --- /dev/null +++ b/node_modules/debug/src/debug.js @@ -0,0 +1,202 @@ + +/** + * This is the common logic for both the Node.js and web browser + * implementations of `debug()`. + * + * Expose `debug()` as the module. + */ + +exports = module.exports = createDebug.debug = createDebug['default'] = createDebug; +exports.coerce = coerce; +exports.disable = disable; +exports.enable = enable; +exports.enabled = enabled; +exports.humanize = require('ms'); + +/** + * The currently active debug mode names, and names to skip. + */ + +exports.names = []; +exports.skips = []; + +/** + * Map of special "%n" handling functions, for the debug "format" argument. + * + * Valid key names are a single, lower or upper-case letter, i.e. "n" and "N". + */ + +exports.formatters = {}; + +/** + * Previous log timestamp. + */ + +var prevTime; + +/** + * Select a color. + * @param {String} namespace + * @return {Number} + * @api private + */ + +function selectColor(namespace) { + var hash = 0, i; + + for (i in namespace) { + hash = ((hash << 5) - hash) + namespace.charCodeAt(i); + hash |= 0; // Convert to 32bit integer + } + + return exports.colors[Math.abs(hash) % exports.colors.length]; +} + +/** + * Create a debugger with the given `namespace`. + * + * @param {String} namespace + * @return {Function} + * @api public + */ + +function createDebug(namespace) { + + function debug() { + // disabled? + if (!debug.enabled) return; + + var self = debug; + + // set `diff` timestamp + var curr = +new Date(); + var ms = curr - (prevTime || curr); + self.diff = ms; + self.prev = prevTime; + self.curr = curr; + prevTime = curr; + + // turn the `arguments` into a proper Array + var args = new Array(arguments.length); + for (var i = 0; i < args.length; i++) { + args[i] = arguments[i]; + } + + args[0] = exports.coerce(args[0]); + + if ('string' !== typeof args[0]) { + // anything else let's inspect with %O + args.unshift('%O'); + } + + // apply any `formatters` transformations + var index = 0; + args[0] = args[0].replace(/%([a-zA-Z%])/g, function(match, format) { + // if we encounter an escaped % then don't increase the array index + if (match === '%%') return match; + index++; + var formatter = exports.formatters[format]; + if ('function' === typeof formatter) { + var val = args[index]; + match = formatter.call(self, val); + + // now we need to remove `args[index]` since it's inlined in the `format` + args.splice(index, 1); + index--; + } + return match; + }); + + // apply env-specific formatting (colors, etc.) + exports.formatArgs.call(self, args); + + var logFn = debug.log || exports.log || console.log.bind(console); + logFn.apply(self, args); + } + + debug.namespace = namespace; + debug.enabled = exports.enabled(namespace); + debug.useColors = exports.useColors(); + debug.color = selectColor(namespace); + + // env-specific initialization logic for debug instances + if ('function' === typeof exports.init) { + exports.init(debug); + } + + return debug; +} + +/** + * Enables a debug mode by namespaces. This can include modes + * separated by a colon and wildcards. + * + * @param {String} namespaces + * @api public + */ + +function enable(namespaces) { + exports.save(namespaces); + + exports.names = []; + exports.skips = []; + + var split = (typeof namespaces === 'string' ? namespaces : '').split(/[\s,]+/); + var len = split.length; + + for (var i = 0; i < len; i++) { + if (!split[i]) continue; // ignore empty strings + namespaces = split[i].replace(/\*/g, '.*?'); + if (namespaces[0] === '-') { + exports.skips.push(new RegExp('^' + namespaces.substr(1) + '$')); + } else { + exports.names.push(new RegExp('^' + namespaces + '$')); + } + } +} + +/** + * Disable debug output. + * + * @api public + */ + +function disable() { + exports.enable(''); +} + +/** + * Returns true if the given mode name is enabled, false otherwise. + * + * @param {String} name + * @return {Boolean} + * @api public + */ + +function enabled(name) { + var i, len; + for (i = 0, len = exports.skips.length; i < len; i++) { + if (exports.skips[i].test(name)) { + return false; + } + } + for (i = 0, len = exports.names.length; i < len; i++) { + if (exports.names[i].test(name)) { + return true; + } + } + return false; +} + +/** + * Coerce `val`. + * + * @param {Mixed} val + * @return {Mixed} + * @api private + */ + +function coerce(val) { + if (val instanceof Error) return val.stack || val.message; + return val; +} diff --git a/node_modules/debug/src/index.js b/node_modules/debug/src/index.js new file mode 100644 index 000000000..e12cf4d58 --- /dev/null +++ b/node_modules/debug/src/index.js @@ -0,0 +1,10 @@ +/** + * Detect Electron renderer process, which is node, but we should + * treat as a browser. + */ + +if (typeof process !== 'undefined' && process.type === 'renderer') { + module.exports = require('./browser.js'); +} else { + module.exports = require('./node.js'); +} diff --git a/node_modules/debug/src/inspector-log.js b/node_modules/debug/src/inspector-log.js new file mode 100644 index 000000000..60ea6c04a --- /dev/null +++ b/node_modules/debug/src/inspector-log.js @@ -0,0 +1,15 @@ +module.exports = inspectorLog; + +// black hole +const nullStream = new (require('stream').Writable)(); +nullStream._write = () => {}; + +/** + * Outputs a `console.log()` to the Node.js Inspector console *only*. + */ +function inspectorLog() { + const stdout = console._stdout; + console._stdout = nullStream; + console.log.apply(console, arguments); + console._stdout = stdout; +} diff --git a/node_modules/debug/src/node.js b/node_modules/debug/src/node.js new file mode 100644 index 000000000..b15109c90 --- /dev/null +++ b/node_modules/debug/src/node.js @@ -0,0 +1,248 @@ +/** + * Module dependencies. + */ + +var tty = require('tty'); +var util = require('util'); + +/** + * This is the Node.js implementation of `debug()`. + * + * Expose `debug()` as the module. + */ + +exports = module.exports = require('./debug'); +exports.init = init; +exports.log = log; +exports.formatArgs = formatArgs; +exports.save = save; +exports.load = load; +exports.useColors = useColors; + +/** + * Colors. + */ + +exports.colors = [6, 2, 3, 4, 5, 1]; + +/** + * Build up the default `inspectOpts` object from the environment variables. + * + * $ DEBUG_COLORS=no DEBUG_DEPTH=10 DEBUG_SHOW_HIDDEN=enabled node script.js + */ + +exports.inspectOpts = Object.keys(process.env).filter(function (key) { + return /^debug_/i.test(key); +}).reduce(function (obj, key) { + // camel-case + var prop = key + .substring(6) + .toLowerCase() + .replace(/_([a-z])/g, function (_, k) { return k.toUpperCase() }); + + // coerce string value into JS value + var val = process.env[key]; + if (/^(yes|on|true|enabled)$/i.test(val)) val = true; + else if (/^(no|off|false|disabled)$/i.test(val)) val = false; + else if (val === 'null') val = null; + else val = Number(val); + + obj[prop] = val; + return obj; +}, {}); + +/** + * The file descriptor to write the `debug()` calls to. + * Set the `DEBUG_FD` env variable to override with another value. i.e.: + * + * $ DEBUG_FD=3 node script.js 3>debug.log + */ + +var fd = parseInt(process.env.DEBUG_FD, 10) || 2; + +if (1 !== fd && 2 !== fd) { + util.deprecate(function(){}, 'except for stderr(2) and stdout(1), any other usage of DEBUG_FD is deprecated. Override debug.log if you want to use a different log function (https://git.io/debug_fd)')() +} + +var stream = 1 === fd ? process.stdout : + 2 === fd ? process.stderr : + createWritableStdioStream(fd); + +/** + * Is stdout a TTY? Colored output is enabled when `true`. + */ + +function useColors() { + return 'colors' in exports.inspectOpts + ? Boolean(exports.inspectOpts.colors) + : tty.isatty(fd); +} + +/** + * Map %o to `util.inspect()`, all on a single line. + */ + +exports.formatters.o = function(v) { + this.inspectOpts.colors = this.useColors; + return util.inspect(v, this.inspectOpts) + .split('\n').map(function(str) { + return str.trim() + }).join(' '); +}; + +/** + * Map %o to `util.inspect()`, allowing multiple lines if needed. + */ + +exports.formatters.O = function(v) { + this.inspectOpts.colors = this.useColors; + return util.inspect(v, this.inspectOpts); +}; + +/** + * Adds ANSI color escape codes if enabled. + * + * @api public + */ + +function formatArgs(args) { + var name = this.namespace; + var useColors = this.useColors; + + if (useColors) { + var c = this.color; + var prefix = ' \u001b[3' + c + ';1m' + name + ' ' + '\u001b[0m'; + + args[0] = prefix + args[0].split('\n').join('\n' + prefix); + args.push('\u001b[3' + c + 'm+' + exports.humanize(this.diff) + '\u001b[0m'); + } else { + args[0] = new Date().toUTCString() + + ' ' + name + ' ' + args[0]; + } +} + +/** + * Invokes `util.format()` with the specified arguments and writes to `stream`. + */ + +function log() { + return stream.write(util.format.apply(util, arguments) + '\n'); +} + +/** + * Save `namespaces`. + * + * @param {String} namespaces + * @api private + */ + +function save(namespaces) { + if (null == namespaces) { + // If you set a process.env field to null or undefined, it gets cast to the + // string 'null' or 'undefined'. Just delete instead. + delete process.env.DEBUG; + } else { + process.env.DEBUG = namespaces; + } +} + +/** + * Load `namespaces`. + * + * @return {String} returns the previously persisted debug modes + * @api private + */ + +function load() { + return process.env.DEBUG; +} + +/** + * Copied from `node/src/node.js`. + * + * XXX: It's lame that node doesn't expose this API out-of-the-box. It also + * relies on the undocumented `tty_wrap.guessHandleType()` which is also lame. + */ + +function createWritableStdioStream (fd) { + var stream; + var tty_wrap = process.binding('tty_wrap'); + + // Note stream._type is used for test-module-load-list.js + + switch (tty_wrap.guessHandleType(fd)) { + case 'TTY': + stream = new tty.WriteStream(fd); + stream._type = 'tty'; + + // Hack to have stream not keep the event loop alive. + // See https://github.com/joyent/node/issues/1726 + if (stream._handle && stream._handle.unref) { + stream._handle.unref(); + } + break; + + case 'FILE': + var fs = require('fs'); + stream = new fs.SyncWriteStream(fd, { autoClose: false }); + stream._type = 'fs'; + break; + + case 'PIPE': + case 'TCP': + var net = require('net'); + stream = new net.Socket({ + fd: fd, + readable: false, + writable: true + }); + + // FIXME Should probably have an option in net.Socket to create a + // stream from an existing fd which is writable only. But for now + // we'll just add this hack and set the `readable` member to false. + // Test: ./node test/fixtures/echo.js < /etc/passwd + stream.readable = false; + stream.read = null; + stream._type = 'pipe'; + + // FIXME Hack to have stream not keep the event loop alive. + // See https://github.com/joyent/node/issues/1726 + if (stream._handle && stream._handle.unref) { + stream._handle.unref(); + } + break; + + default: + // Probably an error on in uv_guess_handle() + throw new Error('Implement me. Unknown stream file type!'); + } + + // For supporting legacy API we put the FD here. + stream.fd = fd; + + stream._isStdio = true; + + return stream; +} + +/** + * Init logic for `debug` instances. + * + * Create a new `inspectOpts` object in case `useColors` is set + * differently for a particular `debug` instance. + */ + +function init (debug) { + debug.inspectOpts = {}; + + var keys = Object.keys(exports.inspectOpts); + for (var i = 0; i < keys.length; i++) { + debug.inspectOpts[keys[i]] = exports.inspectOpts[keys[i]]; + } +} + +/** + * Enable namespaces listed in `process.env.DEBUG` initially. + */ + +exports.enable(load()); diff --git a/node_modules/denque/CHANGELOG.md b/node_modules/denque/CHANGELOG.md new file mode 100644 index 000000000..391a1f514 --- /dev/null +++ b/node_modules/denque/CHANGELOG.md @@ -0,0 +1,29 @@ +## 2.1.0 + + - fix: issue where `clear()` is still keeping references to the elements (#47) + - refactor: performance optimizations for growth and array copy (#43) + - refactor: performance optimizations for toArray and fromArray (#46) + - test: add additional benchmarks for queue growth and `toArray` (#45) + +## 2.0.1 + + - fix(types): incorrect return type on `size()` + +## 2.0.0 + + - fix!: `push` & `unshift` now accept `undefined` values to match behaviour of `Array` (fixes #25) (#35) + - This is only a **BREAKING** change if you are currently expecting `push(undefined)` and `unshift(undefined)` to do + nothing - the new behaviour now correctly adds undefined values to the queue. + - **Note**: behaviour of `push()` & `unshift()` (no arguments) remains unchanged (nothing gets added to the queue). + - **Note**: If you need to differentiate between `undefined` values in the queue and the return value of `pop()` then + check the queue `.length` before popping. + - fix: incorrect methods in types definition file + +## 1.5.1 + + - perf: minor performance tweak when growing queue size (#29) + +## 1.5.0 + + - feat: adds capacity option for circular buffers (#27) + diff --git a/node_modules/denque/LICENSE b/node_modules/denque/LICENSE new file mode 100644 index 000000000..c9cde9201 --- /dev/null +++ b/node_modules/denque/LICENSE @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2018-present Invertase Limited + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/node_modules/denque/README.md b/node_modules/denque/README.md new file mode 100644 index 000000000..3c645d39c --- /dev/null +++ b/node_modules/denque/README.md @@ -0,0 +1,77 @@ +

+

Denque

+

+ +

+ NPM downloads + NPM version + Tests status + Coverage + License + Follow on Twitter +

+ +Denque is a well tested, extremely fast and lightweight [double-ended queue](http://en.wikipedia.org/wiki/Double-ended_queue) +implementation with zero dependencies and includes TypeScript types. + +Double-ended queues can also be used as a: + +- [Stack](http://en.wikipedia.org/wiki/Stack_\(abstract_data_type\)) +- [Queue](http://en.wikipedia.org/wiki/Queue_\(data_structure\)) + +This implementation is currently the fastest available, even faster than `double-ended-queue`, see the [benchmarks](https://docs.page/invertase/denque/benchmarks). + +Every queue operation is done at a constant `O(1)` - including random access from `.peekAt(index)`. + +**Works on all node versions >= v0.10** + +## Quick Start + +Install the package: + +```bash +npm install denque +``` + +Create and consume a queue: + +```js +const Denque = require("denque"); + +const denque = new Denque([1,2,3,4]); +denque.shift(); // 1 +denque.pop(); // 4 +``` + + +See the [API reference documentation](https://docs.page/invertase/denque/api) for more examples. + +--- + +## Who's using it? + +- [Kafka Node.js client](https://www.npmjs.com/package/kafka-node) +- [MariaDB Node.js client](https://www.npmjs.com/package/mariadb) +- [MongoDB Node.js client](https://www.npmjs.com/package/mongodb) +- [MySQL Node.js client](https://www.npmjs.com/package/mysql2) +- [Redis Node.js clients](https://www.npmjs.com/package/redis) + +... and [many more](https://www.npmjs.com/browse/depended/denque). + + +--- + +## License + +- See [LICENSE](/LICENSE) + +--- + +

+ + + +

+ Built and maintained by Invertase. +

+

diff --git a/node_modules/denque/index.d.ts b/node_modules/denque/index.d.ts new file mode 100644 index 000000000..e125dd471 --- /dev/null +++ b/node_modules/denque/index.d.ts @@ -0,0 +1,47 @@ +declare class Denque { + length: number; + + constructor(); + + constructor(array: T[]); + + constructor(array: T[], options: IDenqueOptions); + + push(item: T): number; + + unshift(item: T): number; + + pop(): T | undefined; + + shift(): T | undefined; + + peekBack(): T | undefined; + + peekFront(): T | undefined; + + peekAt(index: number): T | undefined; + + get(index: number): T | undefined; + + remove(index: number, count: number): T[]; + + removeOne(index: number): T | undefined; + + splice(index: number, count: number, ...item: T[]): T[] | undefined; + + isEmpty(): boolean; + + clear(): void; + + size(): number; + + toString(): string; + + toArray(): T[]; +} + +interface IDenqueOptions { + capacity?: number +} + +export = Denque; diff --git a/node_modules/denque/index.js b/node_modules/denque/index.js new file mode 100644 index 000000000..6b2e9d862 --- /dev/null +++ b/node_modules/denque/index.js @@ -0,0 +1,481 @@ +'use strict'; + +/** + * Custom implementation of a double ended queue. + */ +function Denque(array, options) { + var options = options || {}; + this._capacity = options.capacity; + + this._head = 0; + this._tail = 0; + + if (Array.isArray(array)) { + this._fromArray(array); + } else { + this._capacityMask = 0x3; + this._list = new Array(4); + } +} + +/** + * -------------- + * PUBLIC API + * ------------- + */ + +/** + * Returns the item at the specified index from the list. + * 0 is the first element, 1 is the second, and so on... + * Elements at negative values are that many from the end: -1 is one before the end + * (the last element), -2 is two before the end (one before last), etc. + * @param index + * @returns {*} + */ +Denque.prototype.peekAt = function peekAt(index) { + var i = index; + // expect a number or return undefined + if ((i !== (i | 0))) { + return void 0; + } + var len = this.size(); + if (i >= len || i < -len) return undefined; + if (i < 0) i += len; + i = (this._head + i) & this._capacityMask; + return this._list[i]; +}; + +/** + * Alias for peekAt() + * @param i + * @returns {*} + */ +Denque.prototype.get = function get(i) { + return this.peekAt(i); +}; + +/** + * Returns the first item in the list without removing it. + * @returns {*} + */ +Denque.prototype.peek = function peek() { + if (this._head === this._tail) return undefined; + return this._list[this._head]; +}; + +/** + * Alias for peek() + * @returns {*} + */ +Denque.prototype.peekFront = function peekFront() { + return this.peek(); +}; + +/** + * Returns the item that is at the back of the queue without removing it. + * Uses peekAt(-1) + */ +Denque.prototype.peekBack = function peekBack() { + return this.peekAt(-1); +}; + +/** + * Returns the current length of the queue + * @return {Number} + */ +Object.defineProperty(Denque.prototype, 'length', { + get: function length() { + return this.size(); + } +}); + +/** + * Return the number of items on the list, or 0 if empty. + * @returns {number} + */ +Denque.prototype.size = function size() { + if (this._head === this._tail) return 0; + if (this._head < this._tail) return this._tail - this._head; + else return this._capacityMask + 1 - (this._head - this._tail); +}; + +/** + * Add an item at the beginning of the list. + * @param item + */ +Denque.prototype.unshift = function unshift(item) { + if (arguments.length === 0) return this.size(); + var len = this._list.length; + this._head = (this._head - 1 + len) & this._capacityMask; + this._list[this._head] = item; + if (this._tail === this._head) this._growArray(); + if (this._capacity && this.size() > this._capacity) this.pop(); + if (this._head < this._tail) return this._tail - this._head; + else return this._capacityMask + 1 - (this._head - this._tail); +}; + +/** + * Remove and return the first item on the list, + * Returns undefined if the list is empty. + * @returns {*} + */ +Denque.prototype.shift = function shift() { + var head = this._head; + if (head === this._tail) return undefined; + var item = this._list[head]; + this._list[head] = undefined; + this._head = (head + 1) & this._capacityMask; + if (head < 2 && this._tail > 10000 && this._tail <= this._list.length >>> 2) this._shrinkArray(); + return item; +}; + +/** + * Add an item to the bottom of the list. + * @param item + */ +Denque.prototype.push = function push(item) { + if (arguments.length === 0) return this.size(); + var tail = this._tail; + this._list[tail] = item; + this._tail = (tail + 1) & this._capacityMask; + if (this._tail === this._head) { + this._growArray(); + } + if (this._capacity && this.size() > this._capacity) { + this.shift(); + } + if (this._head < this._tail) return this._tail - this._head; + else return this._capacityMask + 1 - (this._head - this._tail); +}; + +/** + * Remove and return the last item on the list. + * Returns undefined if the list is empty. + * @returns {*} + */ +Denque.prototype.pop = function pop() { + var tail = this._tail; + if (tail === this._head) return undefined; + var len = this._list.length; + this._tail = (tail - 1 + len) & this._capacityMask; + var item = this._list[this._tail]; + this._list[this._tail] = undefined; + if (this._head < 2 && tail > 10000 && tail <= len >>> 2) this._shrinkArray(); + return item; +}; + +/** + * Remove and return the item at the specified index from the list. + * Returns undefined if the list is empty. + * @param index + * @returns {*} + */ +Denque.prototype.removeOne = function removeOne(index) { + var i = index; + // expect a number or return undefined + if ((i !== (i | 0))) { + return void 0; + } + if (this._head === this._tail) return void 0; + var size = this.size(); + var len = this._list.length; + if (i >= size || i < -size) return void 0; + if (i < 0) i += size; + i = (this._head + i) & this._capacityMask; + var item = this._list[i]; + var k; + if (index < size / 2) { + for (k = index; k > 0; k--) { + this._list[i] = this._list[i = (i - 1 + len) & this._capacityMask]; + } + this._list[i] = void 0; + this._head = (this._head + 1 + len) & this._capacityMask; + } else { + for (k = size - 1 - index; k > 0; k--) { + this._list[i] = this._list[i = (i + 1 + len) & this._capacityMask]; + } + this._list[i] = void 0; + this._tail = (this._tail - 1 + len) & this._capacityMask; + } + return item; +}; + +/** + * Remove number of items from the specified index from the list. + * Returns array of removed items. + * Returns undefined if the list is empty. + * @param index + * @param count + * @returns {array} + */ +Denque.prototype.remove = function remove(index, count) { + var i = index; + var removed; + var del_count = count; + // expect a number or return undefined + if ((i !== (i | 0))) { + return void 0; + } + if (this._head === this._tail) return void 0; + var size = this.size(); + var len = this._list.length; + if (i >= size || i < -size || count < 1) return void 0; + if (i < 0) i += size; + if (count === 1 || !count) { + removed = new Array(1); + removed[0] = this.removeOne(i); + return removed; + } + if (i === 0 && i + count >= size) { + removed = this.toArray(); + this.clear(); + return removed; + } + if (i + count > size) count = size - i; + var k; + removed = new Array(count); + for (k = 0; k < count; k++) { + removed[k] = this._list[(this._head + i + k) & this._capacityMask]; + } + i = (this._head + i) & this._capacityMask; + if (index + count === size) { + this._tail = (this._tail - count + len) & this._capacityMask; + for (k = count; k > 0; k--) { + this._list[i = (i + 1 + len) & this._capacityMask] = void 0; + } + return removed; + } + if (index === 0) { + this._head = (this._head + count + len) & this._capacityMask; + for (k = count - 1; k > 0; k--) { + this._list[i = (i + 1 + len) & this._capacityMask] = void 0; + } + return removed; + } + if (i < size / 2) { + this._head = (this._head + index + count + len) & this._capacityMask; + for (k = index; k > 0; k--) { + this.unshift(this._list[i = (i - 1 + len) & this._capacityMask]); + } + i = (this._head - 1 + len) & this._capacityMask; + while (del_count > 0) { + this._list[i = (i - 1 + len) & this._capacityMask] = void 0; + del_count--; + } + if (index < 0) this._tail = i; + } else { + this._tail = i; + i = (i + count + len) & this._capacityMask; + for (k = size - (count + index); k > 0; k--) { + this.push(this._list[i++]); + } + i = this._tail; + while (del_count > 0) { + this._list[i = (i + 1 + len) & this._capacityMask] = void 0; + del_count--; + } + } + if (this._head < 2 && this._tail > 10000 && this._tail <= len >>> 2) this._shrinkArray(); + return removed; +}; + +/** + * Native splice implementation. + * Remove number of items from the specified index from the list and/or add new elements. + * Returns array of removed items or empty array if count == 0. + * Returns undefined if the list is empty. + * + * @param index + * @param count + * @param {...*} [elements] + * @returns {array} + */ +Denque.prototype.splice = function splice(index, count) { + var i = index; + // expect a number or return undefined + if ((i !== (i | 0))) { + return void 0; + } + var size = this.size(); + if (i < 0) i += size; + if (i > size) return void 0; + if (arguments.length > 2) { + var k; + var temp; + var removed; + var arg_len = arguments.length; + var len = this._list.length; + var arguments_index = 2; + if (!size || i < size / 2) { + temp = new Array(i); + for (k = 0; k < i; k++) { + temp[k] = this._list[(this._head + k) & this._capacityMask]; + } + if (count === 0) { + removed = []; + if (i > 0) { + this._head = (this._head + i + len) & this._capacityMask; + } + } else { + removed = this.remove(i, count); + this._head = (this._head + i + len) & this._capacityMask; + } + while (arg_len > arguments_index) { + this.unshift(arguments[--arg_len]); + } + for (k = i; k > 0; k--) { + this.unshift(temp[k - 1]); + } + } else { + temp = new Array(size - (i + count)); + var leng = temp.length; + for (k = 0; k < leng; k++) { + temp[k] = this._list[(this._head + i + count + k) & this._capacityMask]; + } + if (count === 0) { + removed = []; + if (i != size) { + this._tail = (this._head + i + len) & this._capacityMask; + } + } else { + removed = this.remove(i, count); + this._tail = (this._tail - leng + len) & this._capacityMask; + } + while (arguments_index < arg_len) { + this.push(arguments[arguments_index++]); + } + for (k = 0; k < leng; k++) { + this.push(temp[k]); + } + } + return removed; + } else { + return this.remove(i, count); + } +}; + +/** + * Soft clear - does not reset capacity. + */ +Denque.prototype.clear = function clear() { + this._list = new Array(this._list.length); + this._head = 0; + this._tail = 0; +}; + +/** + * Returns true or false whether the list is empty. + * @returns {boolean} + */ +Denque.prototype.isEmpty = function isEmpty() { + return this._head === this._tail; +}; + +/** + * Returns an array of all queue items. + * @returns {Array} + */ +Denque.prototype.toArray = function toArray() { + return this._copyArray(false); +}; + +/** + * ------------- + * INTERNALS + * ------------- + */ + +/** + * Fills the queue with items from an array + * For use in the constructor + * @param array + * @private + */ +Denque.prototype._fromArray = function _fromArray(array) { + var length = array.length; + var capacity = this._nextPowerOf2(length); + + this._list = new Array(capacity); + this._capacityMask = capacity - 1; + this._tail = length; + + for (var i = 0; i < length; i++) this._list[i] = array[i]; +}; + +/** + * + * @param fullCopy + * @param size Initialize the array with a specific size. Will default to the current list size + * @returns {Array} + * @private + */ +Denque.prototype._copyArray = function _copyArray(fullCopy, size) { + var src = this._list; + var capacity = src.length; + var length = this.length; + size = size | length; + + // No prealloc requested and the buffer is contiguous + if (size == length && this._head < this._tail) { + // Simply do a fast slice copy + return this._list.slice(this._head, this._tail); + } + + var dest = new Array(size); + + var k = 0; + var i; + if (fullCopy || this._head > this._tail) { + for (i = this._head; i < capacity; i++) dest[k++] = src[i]; + for (i = 0; i < this._tail; i++) dest[k++] = src[i]; + } else { + for (i = this._head; i < this._tail; i++) dest[k++] = src[i]; + } + + return dest; +} + +/** + * Grows the internal list array. + * @private + */ +Denque.prototype._growArray = function _growArray() { + if (this._head != 0) { + // double array size and copy existing data, head to end, then beginning to tail. + var newList = this._copyArray(true, this._list.length << 1); + + this._tail = this._list.length; + this._head = 0; + + this._list = newList; + } else { + this._tail = this._list.length; + this._list.length <<= 1; + } + + this._capacityMask = (this._capacityMask << 1) | 1; +}; + +/** + * Shrinks the internal list array. + * @private + */ +Denque.prototype._shrinkArray = function _shrinkArray() { + this._list.length >>>= 1; + this._capacityMask >>>= 1; +}; + +/** + * Find the next power of 2, at least 4 + * @private + * @param {number} num + * @returns {number} + */ +Denque.prototype._nextPowerOf2 = function _nextPowerOf2(num) { + var log2 = Math.log(num) / Math.log(2); + var nextPow2 = 1 << (log2 + 1); + + return Math.max(nextPow2, 4); +} + +module.exports = Denque; diff --git a/node_modules/denque/package.json b/node_modules/denque/package.json new file mode 100644 index 000000000..a63591030 --- /dev/null +++ b/node_modules/denque/package.json @@ -0,0 +1,58 @@ +{ + "name": "denque", + "version": "2.1.0", + "description": "The fastest javascript implementation of a double-ended queue. Used by the official Redis, MongoDB, MariaDB & MySQL libraries for Node.js and many other libraries. Maintains compatability with deque.", + "main": "index.js", + "engines": { + "node": ">=0.10" + }, + "keywords": [ + "data-structure", + "data-structures", + "queue", + "double", + "end", + "ended", + "deque", + "denque", + "double-ended-queue" + ], + "scripts": { + "test": "istanbul cover --report lcov _mocha && npm run typescript", + "coveralls": "cat ./coverage/lcov.info | coveralls", + "typescript": "tsc --project ./test/type/tsconfig.json", + "benchmark_thousand": "node benchmark/thousand", + "benchmark_2mil": "node benchmark/two_million", + "benchmark_splice": "node benchmark/splice", + "benchmark_remove": "node benchmark/remove", + "benchmark_removeOne": "node benchmark/removeOne", + "benchmark_growth": "node benchmark/growth", + "benchmark_toArray": "node benchmark/toArray", + "benchmark_fromArray": "node benchmark/fromArray" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/invertase/denque.git" + }, + "license": "Apache-2.0", + "author": { + "name": "Invertase", + "email": "oss@invertase.io", + "url": "http://github.com/invertase/" + }, + "contributors": [ + "Mike Diarmid (Salakar) " + ], + "bugs": { + "url": "https://github.com/invertase/denque/issues" + }, + "homepage": "https://docs.page/invertase/denque", + "devDependencies": { + "benchmark": "^2.1.4", + "codecov": "^3.8.3", + "double-ended-queue": "^2.1.0-0", + "istanbul": "^0.4.5", + "mocha": "^3.5.3", + "typescript": "^3.4.1" + } +} diff --git a/node_modules/depd/History.md b/node_modules/depd/History.md new file mode 100644 index 000000000..cd9ebaaa9 --- /dev/null +++ b/node_modules/depd/History.md @@ -0,0 +1,103 @@ +2.0.0 / 2018-10-26 +================== + + * Drop support for Node.js 0.6 + * Replace internal `eval` usage with `Function` constructor + * Use instance methods on `process` to check for listeners + +1.1.2 / 2018-01-11 +================== + + * perf: remove argument reassignment + * Support Node.js 0.6 to 9.x + +1.1.1 / 2017-07-27 +================== + + * Remove unnecessary `Buffer` loading + * Support Node.js 0.6 to 8.x + +1.1.0 / 2015-09-14 +================== + + * Enable strict mode in more places + * Support io.js 3.x + * Support io.js 2.x + * Support web browser loading + - Requires bundler like Browserify or webpack + +1.0.1 / 2015-04-07 +================== + + * Fix `TypeError`s when under `'use strict'` code + * Fix useless type name on auto-generated messages + * Support io.js 1.x + * Support Node.js 0.12 + +1.0.0 / 2014-09-17 +================== + + * No changes + +0.4.5 / 2014-09-09 +================== + + * Improve call speed to functions using the function wrapper + * Support Node.js 0.6 + +0.4.4 / 2014-07-27 +================== + + * Work-around v8 generating empty stack traces + +0.4.3 / 2014-07-26 +================== + + * Fix exception when global `Error.stackTraceLimit` is too low + +0.4.2 / 2014-07-19 +================== + + * Correct call site for wrapped functions and properties + +0.4.1 / 2014-07-19 +================== + + * Improve automatic message generation for function properties + +0.4.0 / 2014-07-19 +================== + + * Add `TRACE_DEPRECATION` environment variable + * Remove non-standard grey color from color output + * Support `--no-deprecation` argument + * Support `--trace-deprecation` argument + * Support `deprecate.property(fn, prop, message)` + +0.3.0 / 2014-06-16 +================== + + * Add `NO_DEPRECATION` environment variable + +0.2.0 / 2014-06-15 +================== + + * Add `deprecate.property(obj, prop, message)` + * Remove `supports-color` dependency for node.js 0.8 + +0.1.0 / 2014-06-15 +================== + + * Add `deprecate.function(fn, message)` + * Add `process.on('deprecation', fn)` emitter + * Automatically generate message when omitted from `deprecate()` + +0.0.1 / 2014-06-15 +================== + + * Fix warning for dynamic calls at singe call site + +0.0.0 / 2014-06-15 +================== + + * Initial implementation diff --git a/node_modules/depd/LICENSE b/node_modules/depd/LICENSE new file mode 100644 index 000000000..248de7af2 --- /dev/null +++ b/node_modules/depd/LICENSE @@ -0,0 +1,22 @@ +(The MIT License) + +Copyright (c) 2014-2018 Douglas Christopher Wilson + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +'Software'), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/node_modules/depd/Readme.md b/node_modules/depd/Readme.md new file mode 100644 index 000000000..043d1ca28 --- /dev/null +++ b/node_modules/depd/Readme.md @@ -0,0 +1,280 @@ +# depd + +[![NPM Version][npm-version-image]][npm-url] +[![NPM Downloads][npm-downloads-image]][npm-url] +[![Node.js Version][node-image]][node-url] +[![Linux Build][travis-image]][travis-url] +[![Windows Build][appveyor-image]][appveyor-url] +[![Coverage Status][coveralls-image]][coveralls-url] + +Deprecate all the things + +> With great modules comes great responsibility; mark things deprecated! + +## Install + +This module is installed directly using `npm`: + +```sh +$ npm install depd +``` + +This module can also be bundled with systems like +[Browserify](http://browserify.org/) or [webpack](https://webpack.github.io/), +though by default this module will alter it's API to no longer display or +track deprecations. + +## API + + + +```js +var deprecate = require('depd')('my-module') +``` + +This library allows you to display deprecation messages to your users. +This library goes above and beyond with deprecation warnings by +introspection of the call stack (but only the bits that it is interested +in). + +Instead of just warning on the first invocation of a deprecated +function and never again, this module will warn on the first invocation +of a deprecated function per unique call site, making it ideal to alert +users of all deprecated uses across the code base, rather than just +whatever happens to execute first. + +The deprecation warnings from this module also include the file and line +information for the call into the module that the deprecated function was +in. + +**NOTE** this library has a similar interface to the `debug` module, and +this module uses the calling file to get the boundary for the call stacks, +so you should always create a new `deprecate` object in each file and not +within some central file. + +### depd(namespace) + +Create a new deprecate function that uses the given namespace name in the +messages and will display the call site prior to the stack entering the +file this function was called from. It is highly suggested you use the +name of your module as the namespace. + +### deprecate(message) + +Call this function from deprecated code to display a deprecation message. +This message will appear once per unique caller site. Caller site is the +first call site in the stack in a different file from the caller of this +function. + +If the message is omitted, a message is generated for you based on the site +of the `deprecate()` call and will display the name of the function called, +similar to the name displayed in a stack trace. + +### deprecate.function(fn, message) + +Call this function to wrap a given function in a deprecation message on any +call to the function. An optional message can be supplied to provide a custom +message. + +### deprecate.property(obj, prop, message) + +Call this function to wrap a given property on object in a deprecation message +on any accessing or setting of the property. An optional message can be supplied +to provide a custom message. + +The method must be called on the object where the property belongs (not +inherited from the prototype). + +If the property is a data descriptor, it will be converted to an accessor +descriptor in order to display the deprecation message. + +### process.on('deprecation', fn) + +This module will allow easy capturing of deprecation errors by emitting the +errors as the type "deprecation" on the global `process`. If there are no +listeners for this type, the errors are written to STDERR as normal, but if +there are any listeners, nothing will be written to STDERR and instead only +emitted. From there, you can write the errors in a different format or to a +logging source. + +The error represents the deprecation and is emitted only once with the same +rules as writing to STDERR. The error has the following properties: + + - `message` - This is the message given by the library + - `name` - This is always `'DeprecationError'` + - `namespace` - This is the namespace the deprecation came from + - `stack` - This is the stack of the call to the deprecated thing + +Example `error.stack` output: + +``` +DeprecationError: my-cool-module deprecated oldfunction + at Object. ([eval]-wrapper:6:22) + at Module._compile (module.js:456:26) + at evalScript (node.js:532:25) + at startup (node.js:80:7) + at node.js:902:3 +``` + +### process.env.NO_DEPRECATION + +As a user of modules that are deprecated, the environment variable `NO_DEPRECATION` +is provided as a quick solution to silencing deprecation warnings from being +output. The format of this is similar to that of `DEBUG`: + +```sh +$ NO_DEPRECATION=my-module,othermod node app.js +``` + +This will suppress deprecations from being output for "my-module" and "othermod". +The value is a list of comma-separated namespaces. To suppress every warning +across all namespaces, use the value `*` for a namespace. + +Providing the argument `--no-deprecation` to the `node` executable will suppress +all deprecations (only available in Node.js 0.8 or higher). + +**NOTE** This will not suppress the deperecations given to any "deprecation" +event listeners, just the output to STDERR. + +### process.env.TRACE_DEPRECATION + +As a user of modules that are deprecated, the environment variable `TRACE_DEPRECATION` +is provided as a solution to getting more detailed location information in deprecation +warnings by including the entire stack trace. The format of this is the same as +`NO_DEPRECATION`: + +```sh +$ TRACE_DEPRECATION=my-module,othermod node app.js +``` + +This will include stack traces for deprecations being output for "my-module" and +"othermod". The value is a list of comma-separated namespaces. To trace every +warning across all namespaces, use the value `*` for a namespace. + +Providing the argument `--trace-deprecation` to the `node` executable will trace +all deprecations (only available in Node.js 0.8 or higher). + +**NOTE** This will not trace the deperecations silenced by `NO_DEPRECATION`. + +## Display + +![message](files/message.png) + +When a user calls a function in your library that you mark deprecated, they +will see the following written to STDERR (in the given colors, similar colors +and layout to the `debug` module): + +``` +bright cyan bright yellow +| | reset cyan +| | | | +▼ ▼ ▼ ▼ +my-cool-module deprecated oldfunction [eval]-wrapper:6:22 +▲ ▲ ▲ ▲ +| | | | +namespace | | location of mycoolmod.oldfunction() call + | deprecation message + the word "deprecated" +``` + +If the user redirects their STDERR to a file or somewhere that does not support +colors, they see (similar layout to the `debug` module): + +``` +Sun, 15 Jun 2014 05:21:37 GMT my-cool-module deprecated oldfunction at [eval]-wrapper:6:22 +▲ ▲ ▲ ▲ ▲ +| | | | | +timestamp of message namespace | | location of mycoolmod.oldfunction() call + | deprecation message + the word "deprecated" +``` + +## Examples + +### Deprecating all calls to a function + +This will display a deprecated message about "oldfunction" being deprecated +from "my-module" on STDERR. + +```js +var deprecate = require('depd')('my-cool-module') + +// message automatically derived from function name +// Object.oldfunction +exports.oldfunction = deprecate.function(function oldfunction () { + // all calls to function are deprecated +}) + +// specific message +exports.oldfunction = deprecate.function(function () { + // all calls to function are deprecated +}, 'oldfunction') +``` + +### Conditionally deprecating a function call + +This will display a deprecated message about "weirdfunction" being deprecated +from "my-module" on STDERR when called with less than 2 arguments. + +```js +var deprecate = require('depd')('my-cool-module') + +exports.weirdfunction = function () { + if (arguments.length < 2) { + // calls with 0 or 1 args are deprecated + deprecate('weirdfunction args < 2') + } +} +``` + +When calling `deprecate` as a function, the warning is counted per call site +within your own module, so you can display different deprecations depending +on different situations and the users will still get all the warnings: + +```js +var deprecate = require('depd')('my-cool-module') + +exports.weirdfunction = function () { + if (arguments.length < 2) { + // calls with 0 or 1 args are deprecated + deprecate('weirdfunction args < 2') + } else if (typeof arguments[0] !== 'string') { + // calls with non-string first argument are deprecated + deprecate('weirdfunction non-string first arg') + } +} +``` + +### Deprecating property access + +This will display a deprecated message about "oldprop" being deprecated +from "my-module" on STDERR when accessed. A deprecation will be displayed +when setting the value and when getting the value. + +```js +var deprecate = require('depd')('my-cool-module') + +exports.oldprop = 'something' + +// message automatically derives from property name +deprecate.property(exports, 'oldprop') + +// explicit message +deprecate.property(exports, 'oldprop', 'oldprop >= 0.10') +``` + +## License + +[MIT](LICENSE) + +[appveyor-image]: https://badgen.net/appveyor/ci/dougwilson/nodejs-depd/master?label=windows +[appveyor-url]: https://ci.appveyor.com/project/dougwilson/nodejs-depd +[coveralls-image]: https://badgen.net/coveralls/c/github/dougwilson/nodejs-depd/master +[coveralls-url]: https://coveralls.io/r/dougwilson/nodejs-depd?branch=master +[node-image]: https://badgen.net/npm/node/depd +[node-url]: https://nodejs.org/en/download/ +[npm-downloads-image]: https://badgen.net/npm/dm/depd +[npm-url]: https://npmjs.org/package/depd +[npm-version-image]: https://badgen.net/npm/v/depd +[travis-image]: https://badgen.net/travis/dougwilson/nodejs-depd/master?label=linux +[travis-url]: https://travis-ci.org/dougwilson/nodejs-depd diff --git a/node_modules/depd/index.js b/node_modules/depd/index.js new file mode 100644 index 000000000..1bf2fcfde --- /dev/null +++ b/node_modules/depd/index.js @@ -0,0 +1,538 @@ +/*! + * depd + * Copyright(c) 2014-2018 Douglas Christopher Wilson + * MIT Licensed + */ + +/** + * Module dependencies. + */ + +var relative = require('path').relative + +/** + * Module exports. + */ + +module.exports = depd + +/** + * Get the path to base files on. + */ + +var basePath = process.cwd() + +/** + * Determine if namespace is contained in the string. + */ + +function containsNamespace (str, namespace) { + var vals = str.split(/[ ,]+/) + var ns = String(namespace).toLowerCase() + + for (var i = 0; i < vals.length; i++) { + var val = vals[i] + + // namespace contained + if (val && (val === '*' || val.toLowerCase() === ns)) { + return true + } + } + + return false +} + +/** + * Convert a data descriptor to accessor descriptor. + */ + +function convertDataDescriptorToAccessor (obj, prop, message) { + var descriptor = Object.getOwnPropertyDescriptor(obj, prop) + var value = descriptor.value + + descriptor.get = function getter () { return value } + + if (descriptor.writable) { + descriptor.set = function setter (val) { return (value = val) } + } + + delete descriptor.value + delete descriptor.writable + + Object.defineProperty(obj, prop, descriptor) + + return descriptor +} + +/** + * Create arguments string to keep arity. + */ + +function createArgumentsString (arity) { + var str = '' + + for (var i = 0; i < arity; i++) { + str += ', arg' + i + } + + return str.substr(2) +} + +/** + * Create stack string from stack. + */ + +function createStackString (stack) { + var str = this.name + ': ' + this.namespace + + if (this.message) { + str += ' deprecated ' + this.message + } + + for (var i = 0; i < stack.length; i++) { + str += '\n at ' + stack[i].toString() + } + + return str +} + +/** + * Create deprecate for namespace in caller. + */ + +function depd (namespace) { + if (!namespace) { + throw new TypeError('argument namespace is required') + } + + var stack = getStack() + var site = callSiteLocation(stack[1]) + var file = site[0] + + function deprecate (message) { + // call to self as log + log.call(deprecate, message) + } + + deprecate._file = file + deprecate._ignored = isignored(namespace) + deprecate._namespace = namespace + deprecate._traced = istraced(namespace) + deprecate._warned = Object.create(null) + + deprecate.function = wrapfunction + deprecate.property = wrapproperty + + return deprecate +} + +/** + * Determine if event emitter has listeners of a given type. + * + * The way to do this check is done three different ways in Node.js >= 0.8 + * so this consolidates them into a minimal set using instance methods. + * + * @param {EventEmitter} emitter + * @param {string} type + * @returns {boolean} + * @private + */ + +function eehaslisteners (emitter, type) { + var count = typeof emitter.listenerCount !== 'function' + ? emitter.listeners(type).length + : emitter.listenerCount(type) + + return count > 0 +} + +/** + * Determine if namespace is ignored. + */ + +function isignored (namespace) { + if (process.noDeprecation) { + // --no-deprecation support + return true + } + + var str = process.env.NO_DEPRECATION || '' + + // namespace ignored + return containsNamespace(str, namespace) +} + +/** + * Determine if namespace is traced. + */ + +function istraced (namespace) { + if (process.traceDeprecation) { + // --trace-deprecation support + return true + } + + var str = process.env.TRACE_DEPRECATION || '' + + // namespace traced + return containsNamespace(str, namespace) +} + +/** + * Display deprecation message. + */ + +function log (message, site) { + var haslisteners = eehaslisteners(process, 'deprecation') + + // abort early if no destination + if (!haslisteners && this._ignored) { + return + } + + var caller + var callFile + var callSite + var depSite + var i = 0 + var seen = false + var stack = getStack() + var file = this._file + + if (site) { + // provided site + depSite = site + callSite = callSiteLocation(stack[1]) + callSite.name = depSite.name + file = callSite[0] + } else { + // get call site + i = 2 + depSite = callSiteLocation(stack[i]) + callSite = depSite + } + + // get caller of deprecated thing in relation to file + for (; i < stack.length; i++) { + caller = callSiteLocation(stack[i]) + callFile = caller[0] + + if (callFile === file) { + seen = true + } else if (callFile === this._file) { + file = this._file + } else if (seen) { + break + } + } + + var key = caller + ? depSite.join(':') + '__' + caller.join(':') + : undefined + + if (key !== undefined && key in this._warned) { + // already warned + return + } + + this._warned[key] = true + + // generate automatic message from call site + var msg = message + if (!msg) { + msg = callSite === depSite || !callSite.name + ? defaultMessage(depSite) + : defaultMessage(callSite) + } + + // emit deprecation if listeners exist + if (haslisteners) { + var err = DeprecationError(this._namespace, msg, stack.slice(i)) + process.emit('deprecation', err) + return + } + + // format and write message + var format = process.stderr.isTTY + ? formatColor + : formatPlain + var output = format.call(this, msg, caller, stack.slice(i)) + process.stderr.write(output + '\n', 'utf8') +} + +/** + * Get call site location as array. + */ + +function callSiteLocation (callSite) { + var file = callSite.getFileName() || '' + var line = callSite.getLineNumber() + var colm = callSite.getColumnNumber() + + if (callSite.isEval()) { + file = callSite.getEvalOrigin() + ', ' + file + } + + var site = [file, line, colm] + + site.callSite = callSite + site.name = callSite.getFunctionName() + + return site +} + +/** + * Generate a default message from the site. + */ + +function defaultMessage (site) { + var callSite = site.callSite + var funcName = site.name + + // make useful anonymous name + if (!funcName) { + funcName = '' + } + + var context = callSite.getThis() + var typeName = context && callSite.getTypeName() + + // ignore useless type name + if (typeName === 'Object') { + typeName = undefined + } + + // make useful type name + if (typeName === 'Function') { + typeName = context.name || typeName + } + + return typeName && callSite.getMethodName() + ? typeName + '.' + funcName + : funcName +} + +/** + * Format deprecation message without color. + */ + +function formatPlain (msg, caller, stack) { + var timestamp = new Date().toUTCString() + + var formatted = timestamp + + ' ' + this._namespace + + ' deprecated ' + msg + + // add stack trace + if (this._traced) { + for (var i = 0; i < stack.length; i++) { + formatted += '\n at ' + stack[i].toString() + } + + return formatted + } + + if (caller) { + formatted += ' at ' + formatLocation(caller) + } + + return formatted +} + +/** + * Format deprecation message with color. + */ + +function formatColor (msg, caller, stack) { + var formatted = '\x1b[36;1m' + this._namespace + '\x1b[22;39m' + // bold cyan + ' \x1b[33;1mdeprecated\x1b[22;39m' + // bold yellow + ' \x1b[0m' + msg + '\x1b[39m' // reset + + // add stack trace + if (this._traced) { + for (var i = 0; i < stack.length; i++) { + formatted += '\n \x1b[36mat ' + stack[i].toString() + '\x1b[39m' // cyan + } + + return formatted + } + + if (caller) { + formatted += ' \x1b[36m' + formatLocation(caller) + '\x1b[39m' // cyan + } + + return formatted +} + +/** + * Format call site location. + */ + +function formatLocation (callSite) { + return relative(basePath, callSite[0]) + + ':' + callSite[1] + + ':' + callSite[2] +} + +/** + * Get the stack as array of call sites. + */ + +function getStack () { + var limit = Error.stackTraceLimit + var obj = {} + var prep = Error.prepareStackTrace + + Error.prepareStackTrace = prepareObjectStackTrace + Error.stackTraceLimit = Math.max(10, limit) + + // capture the stack + Error.captureStackTrace(obj) + + // slice this function off the top + var stack = obj.stack.slice(1) + + Error.prepareStackTrace = prep + Error.stackTraceLimit = limit + + return stack +} + +/** + * Capture call site stack from v8. + */ + +function prepareObjectStackTrace (obj, stack) { + return stack +} + +/** + * Return a wrapped function in a deprecation message. + */ + +function wrapfunction (fn, message) { + if (typeof fn !== 'function') { + throw new TypeError('argument fn must be a function') + } + + var args = createArgumentsString(fn.length) + var stack = getStack() + var site = callSiteLocation(stack[1]) + + site.name = fn.name + + // eslint-disable-next-line no-new-func + var deprecatedfn = new Function('fn', 'log', 'deprecate', 'message', 'site', + '"use strict"\n' + + 'return function (' + args + ') {' + + 'log.call(deprecate, message, site)\n' + + 'return fn.apply(this, arguments)\n' + + '}')(fn, log, this, message, site) + + return deprecatedfn +} + +/** + * Wrap property in a deprecation message. + */ + +function wrapproperty (obj, prop, message) { + if (!obj || (typeof obj !== 'object' && typeof obj !== 'function')) { + throw new TypeError('argument obj must be object') + } + + var descriptor = Object.getOwnPropertyDescriptor(obj, prop) + + if (!descriptor) { + throw new TypeError('must call property on owner object') + } + + if (!descriptor.configurable) { + throw new TypeError('property must be configurable') + } + + var deprecate = this + var stack = getStack() + var site = callSiteLocation(stack[1]) + + // set site name + site.name = prop + + // convert data descriptor + if ('value' in descriptor) { + descriptor = convertDataDescriptorToAccessor(obj, prop, message) + } + + var get = descriptor.get + var set = descriptor.set + + // wrap getter + if (typeof get === 'function') { + descriptor.get = function getter () { + log.call(deprecate, message, site) + return get.apply(this, arguments) + } + } + + // wrap setter + if (typeof set === 'function') { + descriptor.set = function setter () { + log.call(deprecate, message, site) + return set.apply(this, arguments) + } + } + + Object.defineProperty(obj, prop, descriptor) +} + +/** + * Create DeprecationError for deprecation + */ + +function DeprecationError (namespace, message, stack) { + var error = new Error() + var stackString + + Object.defineProperty(error, 'constructor', { + value: DeprecationError + }) + + Object.defineProperty(error, 'message', { + configurable: true, + enumerable: false, + value: message, + writable: true + }) + + Object.defineProperty(error, 'name', { + enumerable: false, + configurable: true, + value: 'DeprecationError', + writable: true + }) + + Object.defineProperty(error, 'namespace', { + configurable: true, + enumerable: false, + value: namespace, + writable: true + }) + + Object.defineProperty(error, 'stack', { + configurable: true, + enumerable: false, + get: function () { + if (stackString !== undefined) { + return stackString + } + + // prepare stack trace + return (stackString = createStackString.call(this, stack)) + }, + set: function setter (val) { + stackString = val + } + }) + + return error +} diff --git a/node_modules/depd/lib/browser/index.js b/node_modules/depd/lib/browser/index.js new file mode 100644 index 000000000..6be45cc20 --- /dev/null +++ b/node_modules/depd/lib/browser/index.js @@ -0,0 +1,77 @@ +/*! + * depd + * Copyright(c) 2015 Douglas Christopher Wilson + * MIT Licensed + */ + +'use strict' + +/** + * Module exports. + * @public + */ + +module.exports = depd + +/** + * Create deprecate for namespace in caller. + */ + +function depd (namespace) { + if (!namespace) { + throw new TypeError('argument namespace is required') + } + + function deprecate (message) { + // no-op in browser + } + + deprecate._file = undefined + deprecate._ignored = true + deprecate._namespace = namespace + deprecate._traced = false + deprecate._warned = Object.create(null) + + deprecate.function = wrapfunction + deprecate.property = wrapproperty + + return deprecate +} + +/** + * Return a wrapped function in a deprecation message. + * + * This is a no-op version of the wrapper, which does nothing but call + * validation. + */ + +function wrapfunction (fn, message) { + if (typeof fn !== 'function') { + throw new TypeError('argument fn must be a function') + } + + return fn +} + +/** + * Wrap property in a deprecation message. + * + * This is a no-op version of the wrapper, which does nothing but call + * validation. + */ + +function wrapproperty (obj, prop, message) { + if (!obj || (typeof obj !== 'object' && typeof obj !== 'function')) { + throw new TypeError('argument obj must be object') + } + + var descriptor = Object.getOwnPropertyDescriptor(obj, prop) + + if (!descriptor) { + throw new TypeError('must call property on owner object') + } + + if (!descriptor.configurable) { + throw new TypeError('property must be configurable') + } +} diff --git a/node_modules/depd/package.json b/node_modules/depd/package.json new file mode 100644 index 000000000..3857e1991 --- /dev/null +++ b/node_modules/depd/package.json @@ -0,0 +1,45 @@ +{ + "name": "depd", + "description": "Deprecate all the things", + "version": "2.0.0", + "author": "Douglas Christopher Wilson ", + "license": "MIT", + "keywords": [ + "deprecate", + "deprecated" + ], + "repository": "dougwilson/nodejs-depd", + "browser": "lib/browser/index.js", + "devDependencies": { + "benchmark": "2.1.4", + "beautify-benchmark": "0.2.4", + "eslint": "5.7.0", + "eslint-config-standard": "12.0.0", + "eslint-plugin-import": "2.14.0", + "eslint-plugin-markdown": "1.0.0-beta.7", + "eslint-plugin-node": "7.0.1", + "eslint-plugin-promise": "4.0.1", + "eslint-plugin-standard": "4.0.0", + "istanbul": "0.4.5", + "mocha": "5.2.0", + "safe-buffer": "5.1.2", + "uid-safe": "2.1.5" + }, + "files": [ + "lib/", + "History.md", + "LICENSE", + "index.js", + "Readme.md" + ], + "engines": { + "node": ">= 0.8" + }, + "scripts": { + "bench": "node benchmark/index.js", + "lint": "eslint --plugin markdown --ext js,md .", + "test": "mocha --reporter spec --bail test/", + "test-ci": "istanbul cover --print=none node_modules/mocha/bin/_mocha -- --reporter spec test/ && istanbul report lcovonly text-summary", + "test-cov": "istanbul cover --print=none node_modules/mocha/bin/_mocha -- --reporter dot test/ && istanbul report lcov text-summary" + } +} diff --git a/node_modules/destroy/LICENSE b/node_modules/destroy/LICENSE new file mode 100644 index 000000000..0e2c35f0e --- /dev/null +++ b/node_modules/destroy/LICENSE @@ -0,0 +1,23 @@ + +The MIT License (MIT) + +Copyright (c) 2014 Jonathan Ong me@jongleberry.com +Copyright (c) 2015-2022 Douglas Christopher Wilson doug@somethingdoug.com + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/node_modules/destroy/README.md b/node_modules/destroy/README.md new file mode 100644 index 000000000..e7701aee7 --- /dev/null +++ b/node_modules/destroy/README.md @@ -0,0 +1,63 @@ +# destroy + +[![NPM version][npm-image]][npm-url] +[![Build Status][github-actions-ci-image]][github-actions-ci-url] +[![Test coverage][coveralls-image]][coveralls-url] +[![License][license-image]][license-url] +[![Downloads][downloads-image]][downloads-url] + +Destroy a stream. + +This module is meant to ensure a stream gets destroyed, handling different APIs +and Node.js bugs. + +## API + +```js +var destroy = require('destroy') +``` + +### destroy(stream [, suppress]) + +Destroy the given stream, and optionally suppress any future `error` events. + +In most cases, this is identical to a simple `stream.destroy()` call. The rules +are as follows for a given stream: + + 1. If the `stream` is an instance of `ReadStream`, then call `stream.destroy()` + and add a listener to the `open` event to call `stream.close()` if it is + fired. This is for a Node.js bug that will leak a file descriptor if + `.destroy()` is called before `open`. + 2. If the `stream` is an instance of a zlib stream, then call `stream.destroy()` + and close the underlying zlib handle if open, otherwise call `stream.close()`. + This is for consistency across Node.js versions and a Node.js bug that will + leak a native zlib handle. + 3. If the `stream` is not an instance of `Stream`, then nothing happens. + 4. If the `stream` has a `.destroy()` method, then call it. + +The function returns the `stream` passed in as the argument. + +## Example + +```js +var destroy = require('destroy') + +var fs = require('fs') +var stream = fs.createReadStream('package.json') + +// ... and later +destroy(stream) +``` + +[npm-image]: https://img.shields.io/npm/v/destroy.svg?style=flat-square +[npm-url]: https://npmjs.org/package/destroy +[github-tag]: http://img.shields.io/github/tag/stream-utils/destroy.svg?style=flat-square +[github-url]: https://github.com/stream-utils/destroy/tags +[coveralls-image]: https://img.shields.io/coveralls/stream-utils/destroy.svg?style=flat-square +[coveralls-url]: https://coveralls.io/r/stream-utils/destroy?branch=master +[license-image]: http://img.shields.io/npm/l/destroy.svg?style=flat-square +[license-url]: LICENSE.md +[downloads-image]: http://img.shields.io/npm/dm/destroy.svg?style=flat-square +[downloads-url]: https://npmjs.org/package/destroy +[github-actions-ci-image]: https://img.shields.io/github/workflow/status/stream-utils/destroy/ci/master?label=ci&style=flat-square +[github-actions-ci-url]: https://github.com/stream-utils/destroy/actions/workflows/ci.yml diff --git a/node_modules/destroy/index.js b/node_modules/destroy/index.js new file mode 100644 index 000000000..7fd5c0936 --- /dev/null +++ b/node_modules/destroy/index.js @@ -0,0 +1,209 @@ +/*! + * destroy + * Copyright(c) 2014 Jonathan Ong + * Copyright(c) 2015-2022 Douglas Christopher Wilson + * MIT Licensed + */ + +'use strict' + +/** + * Module dependencies. + * @private + */ + +var EventEmitter = require('events').EventEmitter +var ReadStream = require('fs').ReadStream +var Stream = require('stream') +var Zlib = require('zlib') + +/** + * Module exports. + * @public + */ + +module.exports = destroy + +/** + * Destroy the given stream, and optionally suppress any future `error` events. + * + * @param {object} stream + * @param {boolean} suppress + * @public + */ + +function destroy (stream, suppress) { + if (isFsReadStream(stream)) { + destroyReadStream(stream) + } else if (isZlibStream(stream)) { + destroyZlibStream(stream) + } else if (hasDestroy(stream)) { + stream.destroy() + } + + if (isEventEmitter(stream) && suppress) { + stream.removeAllListeners('error') + stream.addListener('error', noop) + } + + return stream +} + +/** + * Destroy a ReadStream. + * + * @param {object} stream + * @private + */ + +function destroyReadStream (stream) { + stream.destroy() + + if (typeof stream.close === 'function') { + // node.js core bug work-around + stream.on('open', onOpenClose) + } +} + +/** + * Close a Zlib stream. + * + * Zlib streams below Node.js 4.5.5 have a buggy implementation + * of .close() when zlib encountered an error. + * + * @param {object} stream + * @private + */ + +function closeZlibStream (stream) { + if (stream._hadError === true) { + var prop = stream._binding === null + ? '_binding' + : '_handle' + + stream[prop] = { + close: function () { this[prop] = null } + } + } + + stream.close() +} + +/** + * Destroy a Zlib stream. + * + * Zlib streams don't have a destroy function in Node.js 6. On top of that + * simply calling destroy on a zlib stream in Node.js 8+ will result in a + * memory leak. So until that is fixed, we need to call both close AND destroy. + * + * PR to fix memory leak: https://github.com/nodejs/node/pull/23734 + * + * In Node.js 6+8, it's important that destroy is called before close as the + * stream would otherwise emit the error 'zlib binding closed'. + * + * @param {object} stream + * @private + */ + +function destroyZlibStream (stream) { + if (typeof stream.destroy === 'function') { + // node.js core bug work-around + // istanbul ignore if: node.js 0.8 + if (stream._binding) { + // node.js < 0.10.0 + stream.destroy() + if (stream._processing) { + stream._needDrain = true + stream.once('drain', onDrainClearBinding) + } else { + stream._binding.clear() + } + } else if (stream._destroy && stream._destroy !== Stream.Transform.prototype._destroy) { + // node.js >= 12, ^11.1.0, ^10.15.1 + stream.destroy() + } else if (stream._destroy && typeof stream.close === 'function') { + // node.js 7, 8 + stream.destroyed = true + stream.close() + } else { + // fallback + // istanbul ignore next + stream.destroy() + } + } else if (typeof stream.close === 'function') { + // node.js < 8 fallback + closeZlibStream(stream) + } +} + +/** + * Determine if stream has destroy. + * @private + */ + +function hasDestroy (stream) { + return stream instanceof Stream && + typeof stream.destroy === 'function' +} + +/** + * Determine if val is EventEmitter. + * @private + */ + +function isEventEmitter (val) { + return val instanceof EventEmitter +} + +/** + * Determine if stream is fs.ReadStream stream. + * @private + */ + +function isFsReadStream (stream) { + return stream instanceof ReadStream +} + +/** + * Determine if stream is Zlib stream. + * @private + */ + +function isZlibStream (stream) { + return stream instanceof Zlib.Gzip || + stream instanceof Zlib.Gunzip || + stream instanceof Zlib.Deflate || + stream instanceof Zlib.DeflateRaw || + stream instanceof Zlib.Inflate || + stream instanceof Zlib.InflateRaw || + stream instanceof Zlib.Unzip +} + +/** + * No-op function. + * @private + */ + +function noop () {} + +/** + * On drain handler to clear binding. + * @private + */ + +// istanbul ignore next: node.js 0.8 +function onDrainClearBinding () { + this._binding.clear() +} + +/** + * On open handler to close stream. + * @private + */ + +function onOpenClose () { + if (typeof this.fd === 'number') { + // actually close down the fd + this.close() + } +} diff --git a/node_modules/destroy/package.json b/node_modules/destroy/package.json new file mode 100644 index 000000000..c85e43837 --- /dev/null +++ b/node_modules/destroy/package.json @@ -0,0 +1,48 @@ +{ + "name": "destroy", + "description": "destroy a stream if possible", + "version": "1.2.0", + "author": { + "name": "Jonathan Ong", + "email": "me@jongleberry.com", + "url": "http://jongleberry.com", + "twitter": "https://twitter.com/jongleberry" + }, + "contributors": [ + "Douglas Christopher Wilson " + ], + "license": "MIT", + "repository": "stream-utils/destroy", + "devDependencies": { + "eslint": "7.32.0", + "eslint-config-standard": "14.1.1", + "eslint-plugin-import": "2.25.4", + "eslint-plugin-node": "11.1.0", + "eslint-plugin-promise": "5.2.0", + "eslint-plugin-standard": "4.1.0", + "mocha": "9.2.2", + "nyc": "15.1.0" + }, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + }, + "scripts": { + "lint": "eslint .", + "test": "mocha --reporter spec", + "test-ci": "nyc --reporter=lcovonly --reporter=text npm test", + "test-cov": "nyc --reporter=html --reporter=text npm test" + }, + "files": [ + "index.js", + "LICENSE" + ], + "keywords": [ + "stream", + "streams", + "destroy", + "cleanup", + "leak", + "fd" + ] +} diff --git a/node_modules/ee-first/LICENSE b/node_modules/ee-first/LICENSE new file mode 100644 index 000000000..a7ae8ee9b --- /dev/null +++ b/node_modules/ee-first/LICENSE @@ -0,0 +1,22 @@ + +The MIT License (MIT) + +Copyright (c) 2014 Jonathan Ong me@jongleberry.com + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/node_modules/ee-first/README.md b/node_modules/ee-first/README.md new file mode 100644 index 000000000..cbd2478be --- /dev/null +++ b/node_modules/ee-first/README.md @@ -0,0 +1,80 @@ +# EE First + +[![NPM version][npm-image]][npm-url] +[![Build status][travis-image]][travis-url] +[![Test coverage][coveralls-image]][coveralls-url] +[![License][license-image]][license-url] +[![Downloads][downloads-image]][downloads-url] +[![Gittip][gittip-image]][gittip-url] + +Get the first event in a set of event emitters and event pairs, +then clean up after itself. + +## Install + +```sh +$ npm install ee-first +``` + +## API + +```js +var first = require('ee-first') +``` + +### first(arr, listener) + +Invoke `listener` on the first event from the list specified in `arr`. `arr` is +an array of arrays, with each array in the format `[ee, ...event]`. `listener` +will be called only once, the first time any of the given events are emitted. If +`error` is one of the listened events, then if that fires first, the `listener` +will be given the `err` argument. + +The `listener` is invoked as `listener(err, ee, event, args)`, where `err` is the +first argument emitted from an `error` event, if applicable; `ee` is the event +emitter that fired; `event` is the string event name that fired; and `args` is an +array of the arguments that were emitted on the event. + +```js +var ee1 = new EventEmitter() +var ee2 = new EventEmitter() + +first([ + [ee1, 'close', 'end', 'error'], + [ee2, 'error'] +], function (err, ee, event, args) { + // listener invoked +}) +``` + +#### .cancel() + +The group of listeners can be cancelled before being invoked and have all the event +listeners removed from the underlying event emitters. + +```js +var thunk = first([ + [ee1, 'close', 'end', 'error'], + [ee2, 'error'] +], function (err, ee, event, args) { + // listener invoked +}) + +// cancel and clean up +thunk.cancel() +``` + +[npm-image]: https://img.shields.io/npm/v/ee-first.svg?style=flat-square +[npm-url]: https://npmjs.org/package/ee-first +[github-tag]: http://img.shields.io/github/tag/jonathanong/ee-first.svg?style=flat-square +[github-url]: https://github.com/jonathanong/ee-first/tags +[travis-image]: https://img.shields.io/travis/jonathanong/ee-first.svg?style=flat-square +[travis-url]: https://travis-ci.org/jonathanong/ee-first +[coveralls-image]: https://img.shields.io/coveralls/jonathanong/ee-first.svg?style=flat-square +[coveralls-url]: https://coveralls.io/r/jonathanong/ee-first?branch=master +[license-image]: http://img.shields.io/npm/l/ee-first.svg?style=flat-square +[license-url]: LICENSE.md +[downloads-image]: http://img.shields.io/npm/dm/ee-first.svg?style=flat-square +[downloads-url]: https://npmjs.org/package/ee-first +[gittip-image]: https://img.shields.io/gittip/jonathanong.svg?style=flat-square +[gittip-url]: https://www.gittip.com/jonathanong/ diff --git a/node_modules/ee-first/index.js b/node_modules/ee-first/index.js new file mode 100644 index 000000000..501287cd3 --- /dev/null +++ b/node_modules/ee-first/index.js @@ -0,0 +1,95 @@ +/*! + * ee-first + * Copyright(c) 2014 Jonathan Ong + * MIT Licensed + */ + +'use strict' + +/** + * Module exports. + * @public + */ + +module.exports = first + +/** + * Get the first event in a set of event emitters and event pairs. + * + * @param {array} stuff + * @param {function} done + * @public + */ + +function first(stuff, done) { + if (!Array.isArray(stuff)) + throw new TypeError('arg must be an array of [ee, events...] arrays') + + var cleanups = [] + + for (var i = 0; i < stuff.length; i++) { + var arr = stuff[i] + + if (!Array.isArray(arr) || arr.length < 2) + throw new TypeError('each array member must be [ee, events...]') + + var ee = arr[0] + + for (var j = 1; j < arr.length; j++) { + var event = arr[j] + var fn = listener(event, callback) + + // listen to the event + ee.on(event, fn) + // push this listener to the list of cleanups + cleanups.push({ + ee: ee, + event: event, + fn: fn, + }) + } + } + + function callback() { + cleanup() + done.apply(null, arguments) + } + + function cleanup() { + var x + for (var i = 0; i < cleanups.length; i++) { + x = cleanups[i] + x.ee.removeListener(x.event, x.fn) + } + } + + function thunk(fn) { + done = fn + } + + thunk.cancel = cleanup + + return thunk +} + +/** + * Create the event listener. + * @private + */ + +function listener(event, done) { + return function onevent(arg1) { + var args = new Array(arguments.length) + var ee = this + var err = event === 'error' + ? arg1 + : null + + // copy args to prevent arguments escaping scope + for (var i = 0; i < args.length; i++) { + args[i] = arguments[i] + } + + done(err, ee, event, args) + } +} diff --git a/node_modules/ee-first/package.json b/node_modules/ee-first/package.json new file mode 100644 index 000000000..b6d0b7d67 --- /dev/null +++ b/node_modules/ee-first/package.json @@ -0,0 +1,29 @@ +{ + "name": "ee-first", + "description": "return the first event in a set of ee/event pairs", + "version": "1.1.1", + "author": { + "name": "Jonathan Ong", + "email": "me@jongleberry.com", + "url": "http://jongleberry.com", + "twitter": "https://twitter.com/jongleberry" + }, + "contributors": [ + "Douglas Christopher Wilson " + ], + "license": "MIT", + "repository": "jonathanong/ee-first", + "devDependencies": { + "istanbul": "0.3.9", + "mocha": "2.2.5" + }, + "files": [ + "index.js", + "LICENSE" + ], + "scripts": { + "test": "mocha --reporter spec --bail --check-leaks test/", + "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/", + "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/" + } +} diff --git a/node_modules/encodeurl/HISTORY.md b/node_modules/encodeurl/HISTORY.md new file mode 100644 index 000000000..41313b2b3 --- /dev/null +++ b/node_modules/encodeurl/HISTORY.md @@ -0,0 +1,14 @@ +1.0.2 / 2018-01-21 +================== + + * Fix encoding `%` as last character + +1.0.1 / 2016-06-09 +================== + + * Fix encoding unpaired surrogates at start/end of string + +1.0.0 / 2016-06-08 +================== + + * Initial release diff --git a/node_modules/encodeurl/LICENSE b/node_modules/encodeurl/LICENSE new file mode 100644 index 000000000..8812229bc --- /dev/null +++ b/node_modules/encodeurl/LICENSE @@ -0,0 +1,22 @@ +(The MIT License) + +Copyright (c) 2016 Douglas Christopher Wilson + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +'Software'), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/node_modules/encodeurl/README.md b/node_modules/encodeurl/README.md new file mode 100644 index 000000000..127c5a0d4 --- /dev/null +++ b/node_modules/encodeurl/README.md @@ -0,0 +1,128 @@ +# encodeurl + +[![NPM Version][npm-image]][npm-url] +[![NPM Downloads][downloads-image]][downloads-url] +[![Node.js Version][node-version-image]][node-version-url] +[![Build Status][travis-image]][travis-url] +[![Test Coverage][coveralls-image]][coveralls-url] + +Encode a URL to a percent-encoded form, excluding already-encoded sequences + +## Installation + +This is a [Node.js](https://nodejs.org/en/) module available through the +[npm registry](https://www.npmjs.com/). Installation is done using the +[`npm install` command](https://docs.npmjs.com/getting-started/installing-npm-packages-locally): + +```sh +$ npm install encodeurl +``` + +## API + +```js +var encodeUrl = require('encodeurl') +``` + +### encodeUrl(url) + +Encode a URL to a percent-encoded form, excluding already-encoded sequences. + +This function will take an already-encoded URL and encode all the non-URL +code points (as UTF-8 byte sequences). This function will not encode the +"%" character unless it is not part of a valid sequence (`%20` will be +left as-is, but `%foo` will be encoded as `%25foo`). + +This encode is meant to be "safe" and does not throw errors. It will try as +hard as it can to properly encode the given URL, including replacing any raw, +unpaired surrogate pairs with the Unicode replacement character prior to +encoding. + +This function is _similar_ to the intrinsic function `encodeURI`, except it +will not encode the `%` character if that is part of a valid sequence, will +not encode `[` and `]` (for IPv6 hostnames) and will replace raw, unpaired +surrogate pairs with the Unicode replacement character (instead of throwing). + +## Examples + +### Encode a URL containing user-controled data + +```js +var encodeUrl = require('encodeurl') +var escapeHtml = require('escape-html') + +http.createServer(function onRequest (req, res) { + // get encoded form of inbound url + var url = encodeUrl(req.url) + + // create html message + var body = '

Location ' + escapeHtml(url) + ' not found

' + + // send a 404 + res.statusCode = 404 + res.setHeader('Content-Type', 'text/html; charset=UTF-8') + res.setHeader('Content-Length', String(Buffer.byteLength(body, 'utf-8'))) + res.end(body, 'utf-8') +}) +``` + +### Encode a URL for use in a header field + +```js +var encodeUrl = require('encodeurl') +var escapeHtml = require('escape-html') +var url = require('url') + +http.createServer(function onRequest (req, res) { + // parse inbound url + var href = url.parse(req) + + // set new host for redirect + href.host = 'localhost' + href.protocol = 'https:' + href.slashes = true + + // create location header + var location = encodeUrl(url.format(href)) + + // create html message + var body = '

Redirecting to new site: ' + escapeHtml(location) + '

' + + // send a 301 + res.statusCode = 301 + res.setHeader('Content-Type', 'text/html; charset=UTF-8') + res.setHeader('Content-Length', String(Buffer.byteLength(body, 'utf-8'))) + res.setHeader('Location', location) + res.end(body, 'utf-8') +}) +``` + +## Testing + +```sh +$ npm test +$ npm run lint +``` + +## References + +- [RFC 3986: Uniform Resource Identifier (URI): Generic Syntax][rfc-3986] +- [WHATWG URL Living Standard][whatwg-url] + +[rfc-3986]: https://tools.ietf.org/html/rfc3986 +[whatwg-url]: https://url.spec.whatwg.org/ + +## License + +[MIT](LICENSE) + +[npm-image]: https://img.shields.io/npm/v/encodeurl.svg +[npm-url]: https://npmjs.org/package/encodeurl +[node-version-image]: https://img.shields.io/node/v/encodeurl.svg +[node-version-url]: https://nodejs.org/en/download +[travis-image]: https://img.shields.io/travis/pillarjs/encodeurl.svg +[travis-url]: https://travis-ci.org/pillarjs/encodeurl +[coveralls-image]: https://img.shields.io/coveralls/pillarjs/encodeurl.svg +[coveralls-url]: https://coveralls.io/r/pillarjs/encodeurl?branch=master +[downloads-image]: https://img.shields.io/npm/dm/encodeurl.svg +[downloads-url]: https://npmjs.org/package/encodeurl diff --git a/node_modules/encodeurl/index.js b/node_modules/encodeurl/index.js new file mode 100644 index 000000000..fc4906c6c --- /dev/null +++ b/node_modules/encodeurl/index.js @@ -0,0 +1,60 @@ +/*! + * encodeurl + * Copyright(c) 2016 Douglas Christopher Wilson + * MIT Licensed + */ + +'use strict' + +/** + * Module exports. + * @public + */ + +module.exports = encodeUrl + +/** + * RegExp to match non-URL code points, *after* encoding (i.e. not including "%") + * and including invalid escape sequences. + * @private + */ + +var ENCODE_CHARS_REGEXP = /(?:[^\x21\x25\x26-\x3B\x3D\x3F-\x5B\x5D\x5F\x61-\x7A\x7E]|%(?:[^0-9A-Fa-f]|[0-9A-Fa-f][^0-9A-Fa-f]|$))+/g + +/** + * RegExp to match unmatched surrogate pair. + * @private + */ + +var UNMATCHED_SURROGATE_PAIR_REGEXP = /(^|[^\uD800-\uDBFF])[\uDC00-\uDFFF]|[\uD800-\uDBFF]([^\uDC00-\uDFFF]|$)/g + +/** + * String to replace unmatched surrogate pair with. + * @private + */ + +var UNMATCHED_SURROGATE_PAIR_REPLACE = '$1\uFFFD$2' + +/** + * Encode a URL to a percent-encoded form, excluding already-encoded sequences. + * + * This function will take an already-encoded URL and encode all the non-URL + * code points. This function will not encode the "%" character unless it is + * not part of a valid sequence (`%20` will be left as-is, but `%foo` will + * be encoded as `%25foo`). + * + * This encode is meant to be "safe" and does not throw errors. It will try as + * hard as it can to properly encode the given URL, including replacing any raw, + * unpaired surrogate pairs with the Unicode replacement character prior to + * encoding. + * + * @param {string} url + * @return {string} + * @public + */ + +function encodeUrl (url) { + return String(url) + .replace(UNMATCHED_SURROGATE_PAIR_REGEXP, UNMATCHED_SURROGATE_PAIR_REPLACE) + .replace(ENCODE_CHARS_REGEXP, encodeURI) +} diff --git a/node_modules/encodeurl/package.json b/node_modules/encodeurl/package.json new file mode 100644 index 000000000..b9f25ef10 --- /dev/null +++ b/node_modules/encodeurl/package.json @@ -0,0 +1,40 @@ +{ + "name": "encodeurl", + "description": "Encode a URL to a percent-encoded form, excluding already-encoded sequences", + "version": "1.0.2", + "contributors": [ + "Douglas Christopher Wilson " + ], + "license": "MIT", + "keywords": [ + "encode", + "encodeurl", + "url" + ], + "repository": "pillarjs/encodeurl", + "devDependencies": { + "eslint": "3.19.0", + "eslint-config-standard": "10.2.1", + "eslint-plugin-import": "2.8.0", + "eslint-plugin-node": "5.2.1", + "eslint-plugin-promise": "3.6.0", + "eslint-plugin-standard": "3.0.1", + "istanbul": "0.4.5", + "mocha": "2.5.3" + }, + "files": [ + "LICENSE", + "HISTORY.md", + "README.md", + "index.js" + ], + "engines": { + "node": ">= 0.8" + }, + "scripts": { + "lint": "eslint .", + "test": "mocha --reporter spec --bail --check-leaks test/", + "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/", + "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/" + } +} diff --git a/node_modules/escape-html/LICENSE b/node_modules/escape-html/LICENSE new file mode 100644 index 000000000..2e70de971 --- /dev/null +++ b/node_modules/escape-html/LICENSE @@ -0,0 +1,24 @@ +(The MIT License) + +Copyright (c) 2012-2013 TJ Holowaychuk +Copyright (c) 2015 Andreas Lubbe +Copyright (c) 2015 Tiancheng "Timothy" Gu + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +'Software'), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/node_modules/escape-html/Readme.md b/node_modules/escape-html/Readme.md new file mode 100644 index 000000000..653d9eaa7 --- /dev/null +++ b/node_modules/escape-html/Readme.md @@ -0,0 +1,43 @@ + +# escape-html + + Escape string for use in HTML + +## Example + +```js +var escape = require('escape-html'); +var html = escape('foo & bar'); +// -> foo & bar +``` + +## Benchmark + +``` +$ npm run-script bench + +> escape-html@1.0.3 bench nodejs-escape-html +> node benchmark/index.js + + + http_parser@1.0 + node@0.10.33 + v8@3.14.5.9 + ares@1.9.0-DEV + uv@0.10.29 + zlib@1.2.3 + modules@11 + openssl@1.0.1j + + 1 test completed. + 2 tests completed. + 3 tests completed. + + no special characters x 19,435,271 ops/sec ±0.85% (187 runs sampled) + single special character x 6,132,421 ops/sec ±0.67% (194 runs sampled) + many special characters x 3,175,826 ops/sec ±0.65% (193 runs sampled) +``` + +## License + + MIT \ No newline at end of file diff --git a/node_modules/escape-html/index.js b/node_modules/escape-html/index.js new file mode 100644 index 000000000..bf9e226f4 --- /dev/null +++ b/node_modules/escape-html/index.js @@ -0,0 +1,78 @@ +/*! + * escape-html + * Copyright(c) 2012-2013 TJ Holowaychuk + * Copyright(c) 2015 Andreas Lubbe + * Copyright(c) 2015 Tiancheng "Timothy" Gu + * MIT Licensed + */ + +'use strict'; + +/** + * Module variables. + * @private + */ + +var matchHtmlRegExp = /["'&<>]/; + +/** + * Module exports. + * @public + */ + +module.exports = escapeHtml; + +/** + * Escape special characters in the given string of html. + * + * @param {string} string The string to escape for inserting into HTML + * @return {string} + * @public + */ + +function escapeHtml(string) { + var str = '' + string; + var match = matchHtmlRegExp.exec(str); + + if (!match) { + return str; + } + + var escape; + var html = ''; + var index = 0; + var lastIndex = 0; + + for (index = match.index; index < str.length; index++) { + switch (str.charCodeAt(index)) { + case 34: // " + escape = '"'; + break; + case 38: // & + escape = '&'; + break; + case 39: // ' + escape = '''; + break; + case 60: // < + escape = '<'; + break; + case 62: // > + escape = '>'; + break; + default: + continue; + } + + if (lastIndex !== index) { + html += str.substring(lastIndex, index); + } + + lastIndex = index + 1; + html += escape; + } + + return lastIndex !== index + ? html + str.substring(lastIndex, index) + : html; +} diff --git a/node_modules/escape-html/package.json b/node_modules/escape-html/package.json new file mode 100644 index 000000000..57ec7bd07 --- /dev/null +++ b/node_modules/escape-html/package.json @@ -0,0 +1,24 @@ +{ + "name": "escape-html", + "description": "Escape string for use in HTML", + "version": "1.0.3", + "license": "MIT", + "keywords": [ + "escape", + "html", + "utility" + ], + "repository": "component/escape-html", + "devDependencies": { + "benchmark": "1.0.0", + "beautify-benchmark": "0.2.4" + }, + "files": [ + "LICENSE", + "Readme.md", + "index.js" + ], + "scripts": { + "bench": "node benchmark/index.js" + } +} diff --git a/node_modules/etag/HISTORY.md b/node_modules/etag/HISTORY.md new file mode 100644 index 000000000..222b293de --- /dev/null +++ b/node_modules/etag/HISTORY.md @@ -0,0 +1,83 @@ +1.8.1 / 2017-09-12 +================== + + * perf: replace regular expression with substring + +1.8.0 / 2017-02-18 +================== + + * Use SHA1 instead of MD5 for ETag hashing + - Improves performance for larger entities + - Works with FIPS 140-2 OpenSSL configuration + +1.7.0 / 2015-06-08 +================== + + * Always include entity length in ETags for hash length extensions + * Generate non-Stats ETags using MD5 only (no longer CRC32) + * Improve stat performance by removing hashing + * Remove base64 padding in ETags to shorten + * Use MD5 instead of MD4 in weak ETags over 1KB + +1.6.0 / 2015-05-10 +================== + + * Improve support for JXcore + * Remove requirement of `atime` in the stats object + * Support "fake" stats objects in environments without `fs` + +1.5.1 / 2014-11-19 +================== + + * deps: crc@3.2.1 + - Minor fixes + +1.5.0 / 2014-10-14 +================== + + * Improve string performance + * Slightly improve speed for weak ETags over 1KB + +1.4.0 / 2014-09-21 +================== + + * Support "fake" stats objects + * Support Node.js 0.6 + +1.3.1 / 2014-09-14 +================== + + * Use the (new and improved) `crc` for crc32 + +1.3.0 / 2014-08-29 +================== + + * Default strings to strong ETags + * Improve speed for weak ETags over 1KB + +1.2.1 / 2014-08-29 +================== + + * Use the (much faster) `buffer-crc32` for crc32 + +1.2.0 / 2014-08-24 +================== + + * Add support for file stat objects + +1.1.0 / 2014-08-24 +================== + + * Add fast-path for empty entity + * Add weak ETag generation + * Shrink size of generated ETags + +1.0.1 / 2014-08-24 +================== + + * Fix behavior of string containing Unicode + +1.0.0 / 2014-05-18 +================== + + * Initial release diff --git a/node_modules/etag/LICENSE b/node_modules/etag/LICENSE new file mode 100644 index 000000000..cab251c2b --- /dev/null +++ b/node_modules/etag/LICENSE @@ -0,0 +1,22 @@ +(The MIT License) + +Copyright (c) 2014-2016 Douglas Christopher Wilson + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +'Software'), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/node_modules/etag/README.md b/node_modules/etag/README.md new file mode 100644 index 000000000..09c2169e7 --- /dev/null +++ b/node_modules/etag/README.md @@ -0,0 +1,159 @@ +# etag + +[![NPM Version][npm-image]][npm-url] +[![NPM Downloads][downloads-image]][downloads-url] +[![Node.js Version][node-version-image]][node-version-url] +[![Build Status][travis-image]][travis-url] +[![Test Coverage][coveralls-image]][coveralls-url] + +Create simple HTTP ETags + +This module generates HTTP ETags (as defined in RFC 7232) for use in +HTTP responses. + +## Installation + +This is a [Node.js](https://nodejs.org/en/) module available through the +[npm registry](https://www.npmjs.com/). Installation is done using the +[`npm install` command](https://docs.npmjs.com/getting-started/installing-npm-packages-locally): + +```sh +$ npm install etag +``` + +## API + + + +```js +var etag = require('etag') +``` + +### etag(entity, [options]) + +Generate a strong ETag for the given entity. This should be the complete +body of the entity. Strings, `Buffer`s, and `fs.Stats` are accepted. By +default, a strong ETag is generated except for `fs.Stats`, which will +generate a weak ETag (this can be overwritten by `options.weak`). + + + +```js +res.setHeader('ETag', etag(body)) +``` + +#### Options + +`etag` accepts these properties in the options object. + +##### weak + +Specifies if the generated ETag will include the weak validator mark (that +is, the leading `W/`). The actual entity tag is the same. The default value +is `false`, unless the `entity` is `fs.Stats`, in which case it is `true`. + +## Testing + +```sh +$ npm test +``` + +## Benchmark + +```bash +$ npm run-script bench + +> etag@1.8.1 bench nodejs-etag +> node benchmark/index.js + + http_parser@2.7.0 + node@6.11.1 + v8@5.1.281.103 + uv@1.11.0 + zlib@1.2.11 + ares@1.10.1-DEV + icu@58.2 + modules@48 + openssl@1.0.2k + +> node benchmark/body0-100b.js + + 100B body + + 4 tests completed. + + buffer - strong x 258,647 ops/sec ±1.07% (180 runs sampled) + buffer - weak x 263,812 ops/sec ±0.61% (184 runs sampled) + string - strong x 259,955 ops/sec ±1.19% (185 runs sampled) + string - weak x 264,356 ops/sec ±1.09% (184 runs sampled) + +> node benchmark/body1-1kb.js + + 1KB body + + 4 tests completed. + + buffer - strong x 189,018 ops/sec ±1.12% (182 runs sampled) + buffer - weak x 190,586 ops/sec ±0.81% (186 runs sampled) + string - strong x 144,272 ops/sec ±0.96% (188 runs sampled) + string - weak x 145,380 ops/sec ±1.43% (187 runs sampled) + +> node benchmark/body2-5kb.js + + 5KB body + + 4 tests completed. + + buffer - strong x 92,435 ops/sec ±0.42% (188 runs sampled) + buffer - weak x 92,373 ops/sec ±0.58% (189 runs sampled) + string - strong x 48,850 ops/sec ±0.56% (186 runs sampled) + string - weak x 49,380 ops/sec ±0.56% (190 runs sampled) + +> node benchmark/body3-10kb.js + + 10KB body + + 4 tests completed. + + buffer - strong x 55,989 ops/sec ±0.93% (188 runs sampled) + buffer - weak x 56,148 ops/sec ±0.55% (190 runs sampled) + string - strong x 27,345 ops/sec ±0.43% (188 runs sampled) + string - weak x 27,496 ops/sec ±0.45% (190 runs sampled) + +> node benchmark/body4-100kb.js + + 100KB body + + 4 tests completed. + + buffer - strong x 7,083 ops/sec ±0.22% (190 runs sampled) + buffer - weak x 7,115 ops/sec ±0.26% (191 runs sampled) + string - strong x 3,068 ops/sec ±0.34% (190 runs sampled) + string - weak x 3,096 ops/sec ±0.35% (190 runs sampled) + +> node benchmark/stats.js + + stat + + 4 tests completed. + + real - strong x 871,642 ops/sec ±0.34% (189 runs sampled) + real - weak x 867,613 ops/sec ±0.39% (190 runs sampled) + fake - strong x 401,051 ops/sec ±0.40% (189 runs sampled) + fake - weak x 400,100 ops/sec ±0.47% (188 runs sampled) +``` + +## License + +[MIT](LICENSE) + +[npm-image]: https://img.shields.io/npm/v/etag.svg +[npm-url]: https://npmjs.org/package/etag +[node-version-image]: https://img.shields.io/node/v/etag.svg +[node-version-url]: https://nodejs.org/en/download/ +[travis-image]: https://img.shields.io/travis/jshttp/etag/master.svg +[travis-url]: https://travis-ci.org/jshttp/etag +[coveralls-image]: https://img.shields.io/coveralls/jshttp/etag/master.svg +[coveralls-url]: https://coveralls.io/r/jshttp/etag?branch=master +[downloads-image]: https://img.shields.io/npm/dm/etag.svg +[downloads-url]: https://npmjs.org/package/etag diff --git a/node_modules/etag/index.js b/node_modules/etag/index.js new file mode 100644 index 000000000..2a585c91f --- /dev/null +++ b/node_modules/etag/index.js @@ -0,0 +1,131 @@ +/*! + * etag + * Copyright(c) 2014-2016 Douglas Christopher Wilson + * MIT Licensed + */ + +'use strict' + +/** + * Module exports. + * @public + */ + +module.exports = etag + +/** + * Module dependencies. + * @private + */ + +var crypto = require('crypto') +var Stats = require('fs').Stats + +/** + * Module variables. + * @private + */ + +var toString = Object.prototype.toString + +/** + * Generate an entity tag. + * + * @param {Buffer|string} entity + * @return {string} + * @private + */ + +function entitytag (entity) { + if (entity.length === 0) { + // fast-path empty + return '"0-2jmj7l5rSw0yVb/vlWAYkK/YBwk"' + } + + // compute hash of entity + var hash = crypto + .createHash('sha1') + .update(entity, 'utf8') + .digest('base64') + .substring(0, 27) + + // compute length of entity + var len = typeof entity === 'string' + ? Buffer.byteLength(entity, 'utf8') + : entity.length + + return '"' + len.toString(16) + '-' + hash + '"' +} + +/** + * Create a simple ETag. + * + * @param {string|Buffer|Stats} entity + * @param {object} [options] + * @param {boolean} [options.weak] + * @return {String} + * @public + */ + +function etag (entity, options) { + if (entity == null) { + throw new TypeError('argument entity is required') + } + + // support fs.Stats object + var isStats = isstats(entity) + var weak = options && typeof options.weak === 'boolean' + ? options.weak + : isStats + + // validate argument + if (!isStats && typeof entity !== 'string' && !Buffer.isBuffer(entity)) { + throw new TypeError('argument entity must be string, Buffer, or fs.Stats') + } + + // generate entity tag + var tag = isStats + ? stattag(entity) + : entitytag(entity) + + return weak + ? 'W/' + tag + : tag +} + +/** + * Determine if object is a Stats object. + * + * @param {object} obj + * @return {boolean} + * @api private + */ + +function isstats (obj) { + // genuine fs.Stats + if (typeof Stats === 'function' && obj instanceof Stats) { + return true + } + + // quack quack + return obj && typeof obj === 'object' && + 'ctime' in obj && toString.call(obj.ctime) === '[object Date]' && + 'mtime' in obj && toString.call(obj.mtime) === '[object Date]' && + 'ino' in obj && typeof obj.ino === 'number' && + 'size' in obj && typeof obj.size === 'number' +} + +/** + * Generate a tag for a stat. + * + * @param {object} stat + * @return {string} + * @private + */ + +function stattag (stat) { + var mtime = stat.mtime.getTime().toString(16) + var size = stat.size.toString(16) + + return '"' + size + '-' + mtime + '"' +} diff --git a/node_modules/etag/package.json b/node_modules/etag/package.json new file mode 100644 index 000000000..b06ab803c --- /dev/null +++ b/node_modules/etag/package.json @@ -0,0 +1,47 @@ +{ + "name": "etag", + "description": "Create simple HTTP ETags", + "version": "1.8.1", + "contributors": [ + "Douglas Christopher Wilson ", + "David Björklund " + ], + "license": "MIT", + "keywords": [ + "etag", + "http", + "res" + ], + "repository": "jshttp/etag", + "devDependencies": { + "beautify-benchmark": "0.2.4", + "benchmark": "2.1.4", + "eslint": "3.19.0", + "eslint-config-standard": "10.2.1", + "eslint-plugin-import": "2.7.0", + "eslint-plugin-markdown": "1.0.0-beta.6", + "eslint-plugin-node": "5.1.1", + "eslint-plugin-promise": "3.5.0", + "eslint-plugin-standard": "3.0.1", + "istanbul": "0.4.5", + "mocha": "1.21.5", + "safe-buffer": "5.1.1", + "seedrandom": "2.4.3" + }, + "files": [ + "LICENSE", + "HISTORY.md", + "README.md", + "index.js" + ], + "engines": { + "node": ">= 0.6" + }, + "scripts": { + "bench": "node benchmark/index.js", + "lint": "eslint --plugin markdown --ext js,md .", + "test": "mocha --reporter spec --bail --check-leaks test/", + "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/", + "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/" + } +} diff --git a/node_modules/express/History.md b/node_modules/express/History.md new file mode 100644 index 000000000..4c12ec973 --- /dev/null +++ b/node_modules/express/History.md @@ -0,0 +1,3579 @@ +4.18.1 / 2022-04-29 +=================== + + * Fix hanging on large stack of sync routes + +4.18.0 / 2022-04-25 +=================== + + * Add "root" option to `res.download` + * Allow `options` without `filename` in `res.download` + * Deprecate string and non-integer arguments to `res.status` + * Fix behavior of `null`/`undefined` as `maxAge` in `res.cookie` + * Fix handling very large stacks of sync middleware + * Ignore `Object.prototype` values in settings through `app.set`/`app.get` + * Invoke `default` with same arguments as types in `res.format` + * Support proper 205 responses using `res.send` + * Use `http-errors` for `res.format` error + * deps: body-parser@1.20.0 + - Fix error message for json parse whitespace in `strict` + - Fix internal error when inflated body exceeds limit + - Prevent loss of async hooks context + - Prevent hanging when request already read + - deps: depd@2.0.0 + - deps: http-errors@2.0.0 + - deps: on-finished@2.4.1 + - deps: qs@6.10.3 + - deps: raw-body@2.5.1 + * deps: cookie@0.5.0 + - Add `priority` option + - Fix `expires` option to reject invalid dates + * deps: depd@2.0.0 + - Replace internal `eval` usage with `Function` constructor + - Use instance methods on `process` to check for listeners + * deps: finalhandler@1.2.0 + - Remove set content headers that break response + - deps: on-finished@2.4.1 + - deps: statuses@2.0.1 + * deps: on-finished@2.4.1 + - Prevent loss of async hooks context + * deps: qs@6.10.3 + * deps: send@0.18.0 + - Fix emitted 416 error missing headers property + - Limit the headers removed for 304 response + - deps: depd@2.0.0 + - deps: destroy@1.2.0 + - deps: http-errors@2.0.0 + - deps: on-finished@2.4.1 + - deps: statuses@2.0.1 + * deps: serve-static@1.15.0 + - deps: send@0.18.0 + * deps: statuses@2.0.1 + - Remove code 306 + - Rename `425 Unordered Collection` to standard `425 Too Early` + +4.17.3 / 2022-02-16 +=================== + + * deps: accepts@~1.3.8 + - deps: mime-types@~2.1.34 + - deps: negotiator@0.6.3 + * deps: body-parser@1.19.2 + - deps: bytes@3.1.2 + - deps: qs@6.9.7 + - deps: raw-body@2.4.3 + * deps: cookie@0.4.2 + * deps: qs@6.9.7 + * Fix handling of `__proto__` keys + * pref: remove unnecessary regexp for trust proxy + +4.17.2 / 2021-12-16 +=================== + + * Fix handling of `undefined` in `res.jsonp` + * Fix handling of `undefined` when `"json escape"` is enabled + * Fix incorrect middleware execution with unanchored `RegExp`s + * Fix `res.jsonp(obj, status)` deprecation message + * Fix typo in `res.is` JSDoc + * deps: body-parser@1.19.1 + - deps: bytes@3.1.1 + - deps: http-errors@1.8.1 + - deps: qs@6.9.6 + - deps: raw-body@2.4.2 + - deps: safe-buffer@5.2.1 + - deps: type-is@~1.6.18 + * deps: content-disposition@0.5.4 + - deps: safe-buffer@5.2.1 + * deps: cookie@0.4.1 + - Fix `maxAge` option to reject invalid values + * deps: proxy-addr@~2.0.7 + - Use `req.socket` over deprecated `req.connection` + - deps: forwarded@0.2.0 + - deps: ipaddr.js@1.9.1 + * deps: qs@6.9.6 + * deps: safe-buffer@5.2.1 + * deps: send@0.17.2 + - deps: http-errors@1.8.1 + - deps: ms@2.1.3 + - pref: ignore empty http tokens + * deps: serve-static@1.14.2 + - deps: send@0.17.2 + * deps: setprototypeof@1.2.0 + +4.17.1 / 2019-05-25 +=================== + + * Revert "Improve error message for `null`/`undefined` to `res.status`" + +4.17.0 / 2019-05-16 +=================== + + * Add `express.raw` to parse bodies into `Buffer` + * Add `express.text` to parse bodies into string + * Improve error message for non-strings to `res.sendFile` + * Improve error message for `null`/`undefined` to `res.status` + * Support multiple hosts in `X-Forwarded-Host` + * deps: accepts@~1.3.7 + * deps: body-parser@1.19.0 + - Add encoding MIK + - Add petabyte (`pb`) support + - Fix parsing array brackets after index + - deps: bytes@3.1.0 + - deps: http-errors@1.7.2 + - deps: iconv-lite@0.4.24 + - deps: qs@6.7.0 + - deps: raw-body@2.4.0 + - deps: type-is@~1.6.17 + * deps: content-disposition@0.5.3 + * deps: cookie@0.4.0 + - Add `SameSite=None` support + * deps: finalhandler@~1.1.2 + - Set stricter `Content-Security-Policy` header + - deps: parseurl@~1.3.3 + - deps: statuses@~1.5.0 + * deps: parseurl@~1.3.3 + * deps: proxy-addr@~2.0.5 + - deps: ipaddr.js@1.9.0 + * deps: qs@6.7.0 + - Fix parsing array brackets after index + * deps: range-parser@~1.2.1 + * deps: send@0.17.1 + - Set stricter CSP header in redirect & error responses + - deps: http-errors@~1.7.2 + - deps: mime@1.6.0 + - deps: ms@2.1.1 + - deps: range-parser@~1.2.1 + - deps: statuses@~1.5.0 + - perf: remove redundant `path.normalize` call + * deps: serve-static@1.14.1 + - Set stricter CSP header in redirect response + - deps: parseurl@~1.3.3 + - deps: send@0.17.1 + * deps: setprototypeof@1.1.1 + * deps: statuses@~1.5.0 + - Add `103 Early Hints` + * deps: type-is@~1.6.18 + - deps: mime-types@~2.1.24 + - perf: prevent internal `throw` on invalid type + +4.16.4 / 2018-10-10 +=================== + + * Fix issue where `"Request aborted"` may be logged in `res.sendfile` + * Fix JSDoc for `Router` constructor + * deps: body-parser@1.18.3 + - Fix deprecation warnings on Node.js 10+ + - Fix stack trace for strict json parse error + - deps: depd@~1.1.2 + - deps: http-errors@~1.6.3 + - deps: iconv-lite@0.4.23 + - deps: qs@6.5.2 + - deps: raw-body@2.3.3 + - deps: type-is@~1.6.16 + * deps: proxy-addr@~2.0.4 + - deps: ipaddr.js@1.8.0 + * deps: qs@6.5.2 + * deps: safe-buffer@5.1.2 + +4.16.3 / 2018-03-12 +=================== + + * deps: accepts@~1.3.5 + - deps: mime-types@~2.1.18 + * deps: depd@~1.1.2 + - perf: remove argument reassignment + * deps: encodeurl@~1.0.2 + - Fix encoding `%` as last character + * deps: finalhandler@1.1.1 + - Fix 404 output for bad / missing pathnames + - deps: encodeurl@~1.0.2 + - deps: statuses@~1.4.0 + * deps: proxy-addr@~2.0.3 + - deps: ipaddr.js@1.6.0 + * deps: send@0.16.2 + - Fix incorrect end tag in default error & redirects + - deps: depd@~1.1.2 + - deps: encodeurl@~1.0.2 + - deps: statuses@~1.4.0 + * deps: serve-static@1.13.2 + - Fix incorrect end tag in redirects + - deps: encodeurl@~1.0.2 + - deps: send@0.16.2 + * deps: statuses@~1.4.0 + * deps: type-is@~1.6.16 + - deps: mime-types@~2.1.18 + +4.16.2 / 2017-10-09 +=================== + + * Fix `TypeError` in `res.send` when given `Buffer` and `ETag` header set + * perf: skip parsing of entire `X-Forwarded-Proto` header + +4.16.1 / 2017-09-29 +=================== + + * deps: send@0.16.1 + * deps: serve-static@1.13.1 + - Fix regression when `root` is incorrectly set to a file + - deps: send@0.16.1 + +4.16.0 / 2017-09-28 +=================== + + * Add `"json escape"` setting for `res.json` and `res.jsonp` + * Add `express.json` and `express.urlencoded` to parse bodies + * Add `options` argument to `res.download` + * Improve error message when autoloading invalid view engine + * Improve error messages when non-function provided as middleware + * Skip `Buffer` encoding when not generating ETag for small response + * Use `safe-buffer` for improved Buffer API + * deps: accepts@~1.3.4 + - deps: mime-types@~2.1.16 + * deps: content-type@~1.0.4 + - perf: remove argument reassignment + - perf: skip parameter parsing when no parameters + * deps: etag@~1.8.1 + - perf: replace regular expression with substring + * deps: finalhandler@1.1.0 + - Use `res.headersSent` when available + * deps: parseurl@~1.3.2 + - perf: reduce overhead for full URLs + - perf: unroll the "fast-path" `RegExp` + * deps: proxy-addr@~2.0.2 + - Fix trimming leading / trailing OWS in `X-Forwarded-For` + - deps: forwarded@~0.1.2 + - deps: ipaddr.js@1.5.2 + - perf: reduce overhead when no `X-Forwarded-For` header + * deps: qs@6.5.1 + - Fix parsing & compacting very deep objects + * deps: send@0.16.0 + - Add 70 new types for file extensions + - Add `immutable` option + - Fix missing `` in default error & redirects + - Set charset as "UTF-8" for .js and .json + - Use instance methods on steam to check for listeners + - deps: mime@1.4.1 + - perf: improve path validation speed + * deps: serve-static@1.13.0 + - Add 70 new types for file extensions + - Add `immutable` option + - Set charset as "UTF-8" for .js and .json + - deps: send@0.16.0 + * deps: setprototypeof@1.1.0 + * deps: utils-merge@1.0.1 + * deps: vary@~1.1.2 + - perf: improve header token parsing speed + * perf: re-use options object when generating ETags + * perf: remove dead `.charset` set in `res.jsonp` + +4.15.5 / 2017-09-24 +=================== + + * deps: debug@2.6.9 + * deps: finalhandler@~1.0.6 + - deps: debug@2.6.9 + - deps: parseurl@~1.3.2 + * deps: fresh@0.5.2 + - Fix handling of modified headers with invalid dates + - perf: improve ETag match loop + - perf: improve `If-None-Match` token parsing + * deps: send@0.15.6 + - Fix handling of modified headers with invalid dates + - deps: debug@2.6.9 + - deps: etag@~1.8.1 + - deps: fresh@0.5.2 + - perf: improve `If-Match` token parsing + * deps: serve-static@1.12.6 + - deps: parseurl@~1.3.2 + - deps: send@0.15.6 + - perf: improve slash collapsing + +4.15.4 / 2017-08-06 +=================== + + * deps: debug@2.6.8 + * deps: depd@~1.1.1 + - Remove unnecessary `Buffer` loading + * deps: finalhandler@~1.0.4 + - deps: debug@2.6.8 + * deps: proxy-addr@~1.1.5 + - Fix array argument being altered + - deps: ipaddr.js@1.4.0 + * deps: qs@6.5.0 + * deps: send@0.15.4 + - deps: debug@2.6.8 + - deps: depd@~1.1.1 + - deps: http-errors@~1.6.2 + * deps: serve-static@1.12.4 + - deps: send@0.15.4 + +4.15.3 / 2017-05-16 +=================== + + * Fix error when `res.set` cannot add charset to `Content-Type` + * deps: debug@2.6.7 + - Fix `DEBUG_MAX_ARRAY_LENGTH` + - deps: ms@2.0.0 + * deps: finalhandler@~1.0.3 + - Fix missing `` in HTML document + - deps: debug@2.6.7 + * deps: proxy-addr@~1.1.4 + - deps: ipaddr.js@1.3.0 + * deps: send@0.15.3 + - deps: debug@2.6.7 + - deps: ms@2.0.0 + * deps: serve-static@1.12.3 + - deps: send@0.15.3 + * deps: type-is@~1.6.15 + - deps: mime-types@~2.1.15 + * deps: vary@~1.1.1 + - perf: hoist regular expression + +4.15.2 / 2017-03-06 +=================== + + * deps: qs@6.4.0 + - Fix regression parsing keys starting with `[` + +4.15.1 / 2017-03-05 +=================== + + * deps: send@0.15.1 + - Fix issue when `Date.parse` does not return `NaN` on invalid date + - Fix strict violation in broken environments + * deps: serve-static@1.12.1 + - Fix issue when `Date.parse` does not return `NaN` on invalid date + - deps: send@0.15.1 + +4.15.0 / 2017-03-01 +=================== + + * Add debug message when loading view engine + * Add `next("router")` to exit from router + * Fix case where `router.use` skipped requests routes did not + * Remove usage of `res._headers` private field + - Improves compatibility with Node.js 8 nightly + * Skip routing when `req.url` is not set + * Use `%o` in path debug to tell types apart + * Use `Object.create` to setup request & response prototypes + * Use `setprototypeof` module to replace `__proto__` setting + * Use `statuses` instead of `http` module for status messages + * deps: debug@2.6.1 + - Allow colors in workers + - Deprecated `DEBUG_FD` environment variable set to `3` or higher + - Fix error when running under React Native + - Use same color for same namespace + - deps: ms@0.7.2 + * deps: etag@~1.8.0 + - Use SHA1 instead of MD5 for ETag hashing + - Works with FIPS 140-2 OpenSSL configuration + * deps: finalhandler@~1.0.0 + - Fix exception when `err` cannot be converted to a string + - Fully URL-encode the pathname in the 404 + - Only include the pathname in the 404 message + - Send complete HTML document + - Set `Content-Security-Policy: default-src 'self'` header + - deps: debug@2.6.1 + * deps: fresh@0.5.0 + - Fix false detection of `no-cache` request directive + - Fix incorrect result when `If-None-Match` has both `*` and ETags + - Fix weak `ETag` matching to match spec + - perf: delay reading header values until needed + - perf: enable strict mode + - perf: hoist regular expressions + - perf: remove duplicate conditional + - perf: remove unnecessary boolean coercions + - perf: skip checking modified time if ETag check failed + - perf: skip parsing `If-None-Match` when no `ETag` header + - perf: use `Date.parse` instead of `new Date` + * deps: qs@6.3.1 + - Fix array parsing from skipping empty values + - Fix compacting nested arrays + * deps: send@0.15.0 + - Fix false detection of `no-cache` request directive + - Fix incorrect result when `If-None-Match` has both `*` and ETags + - Fix weak `ETag` matching to match spec + - Remove usage of `res._headers` private field + - Support `If-Match` and `If-Unmodified-Since` headers + - Use `res.getHeaderNames()` when available + - Use `res.headersSent` when available + - deps: debug@2.6.1 + - deps: etag@~1.8.0 + - deps: fresh@0.5.0 + - deps: http-errors@~1.6.1 + * deps: serve-static@1.12.0 + - Fix false detection of `no-cache` request directive + - Fix incorrect result when `If-None-Match` has both `*` and ETags + - Fix weak `ETag` matching to match spec + - Remove usage of `res._headers` private field + - Send complete HTML document in redirect response + - Set default CSP header in redirect response + - Support `If-Match` and `If-Unmodified-Since` headers + - Use `res.getHeaderNames()` when available + - Use `res.headersSent` when available + - deps: send@0.15.0 + * perf: add fast match path for `*` route + * perf: improve `req.ips` performance + +4.14.1 / 2017-01-28 +=================== + + * deps: content-disposition@0.5.2 + * deps: finalhandler@0.5.1 + - Fix exception when `err.headers` is not an object + - deps: statuses@~1.3.1 + - perf: hoist regular expressions + - perf: remove duplicate validation path + * deps: proxy-addr@~1.1.3 + - deps: ipaddr.js@1.2.0 + * deps: send@0.14.2 + - deps: http-errors@~1.5.1 + - deps: ms@0.7.2 + - deps: statuses@~1.3.1 + * deps: serve-static@~1.11.2 + - deps: send@0.14.2 + * deps: type-is@~1.6.14 + - deps: mime-types@~2.1.13 + +4.14.0 / 2016-06-16 +=================== + + * Add `acceptRanges` option to `res.sendFile`/`res.sendfile` + * Add `cacheControl` option to `res.sendFile`/`res.sendfile` + * Add `options` argument to `req.range` + - Includes the `combine` option + * Encode URL in `res.location`/`res.redirect` if not already encoded + * Fix some redirect handling in `res.sendFile`/`res.sendfile` + * Fix Windows absolute path check using forward slashes + * Improve error with invalid arguments to `req.get()` + * Improve performance for `res.json`/`res.jsonp` in most cases + * Improve `Range` header handling in `res.sendFile`/`res.sendfile` + * deps: accepts@~1.3.3 + - Fix including type extensions in parameters in `Accept` parsing + - Fix parsing `Accept` parameters with quoted equals + - Fix parsing `Accept` parameters with quoted semicolons + - Many performance improvements + - deps: mime-types@~2.1.11 + - deps: negotiator@0.6.1 + * deps: content-type@~1.0.2 + - perf: enable strict mode + * deps: cookie@0.3.1 + - Add `sameSite` option + - Fix cookie `Max-Age` to never be a floating point number + - Improve error message when `encode` is not a function + - Improve error message when `expires` is not a `Date` + - Throw better error for invalid argument to parse + - Throw on invalid values provided to `serialize` + - perf: enable strict mode + - perf: hoist regular expression + - perf: use for loop in parse + - perf: use string concatenation for serialization + * deps: finalhandler@0.5.0 + - Change invalid or non-numeric status code to 500 + - Overwrite status message to match set status code + - Prefer `err.statusCode` if `err.status` is invalid + - Set response headers from `err.headers` object + - Use `statuses` instead of `http` module for status messages + * deps: proxy-addr@~1.1.2 + - Fix accepting various invalid netmasks + - Fix IPv6-mapped IPv4 validation edge cases + - IPv4 netmasks must be contiguous + - IPv6 addresses cannot be used as a netmask + - deps: ipaddr.js@1.1.1 + * deps: qs@6.2.0 + - Add `decoder` option in `parse` function + * deps: range-parser@~1.2.0 + - Add `combine` option to combine overlapping ranges + - Fix incorrectly returning -1 when there is at least one valid range + - perf: remove internal function + * deps: send@0.14.1 + - Add `acceptRanges` option + - Add `cacheControl` option + - Attempt to combine multiple ranges into single range + - Correctly inherit from `Stream` class + - Fix `Content-Range` header in 416 responses when using `start`/`end` options + - Fix `Content-Range` header missing from default 416 responses + - Fix redirect error when `path` contains raw non-URL characters + - Fix redirect when `path` starts with multiple forward slashes + - Ignore non-byte `Range` headers + - deps: http-errors@~1.5.0 + - deps: range-parser@~1.2.0 + - deps: statuses@~1.3.0 + - perf: remove argument reassignment + * deps: serve-static@~1.11.1 + - Add `acceptRanges` option + - Add `cacheControl` option + - Attempt to combine multiple ranges into single range + - Fix redirect error when `req.url` contains raw non-URL characters + - Ignore non-byte `Range` headers + - Use status code 301 for redirects + - deps: send@0.14.1 + * deps: type-is@~1.6.13 + - Fix type error when given invalid type to match against + - deps: mime-types@~2.1.11 + * deps: vary@~1.1.0 + - Only accept valid field names in the `field` argument + * perf: use strict equality when possible + +4.13.4 / 2016-01-21 +=================== + + * deps: content-disposition@0.5.1 + - perf: enable strict mode + * deps: cookie@0.1.5 + - Throw on invalid values provided to `serialize` + * deps: depd@~1.1.0 + - Support web browser loading + - perf: enable strict mode + * deps: escape-html@~1.0.3 + - perf: enable strict mode + - perf: optimize string replacement + - perf: use faster string coercion + * deps: finalhandler@0.4.1 + - deps: escape-html@~1.0.3 + * deps: merge-descriptors@1.0.1 + - perf: enable strict mode + * deps: methods@~1.1.2 + - perf: enable strict mode + * deps: parseurl@~1.3.1 + - perf: enable strict mode + * deps: proxy-addr@~1.0.10 + - deps: ipaddr.js@1.0.5 + - perf: enable strict mode + * deps: range-parser@~1.0.3 + - perf: enable strict mode + * deps: send@0.13.1 + - deps: depd@~1.1.0 + - deps: destroy@~1.0.4 + - deps: escape-html@~1.0.3 + - deps: range-parser@~1.0.3 + * deps: serve-static@~1.10.2 + - deps: escape-html@~1.0.3 + - deps: parseurl@~1.3.0 + - deps: send@0.13.1 + +4.13.3 / 2015-08-02 +=================== + + * Fix infinite loop condition using `mergeParams: true` + * Fix inner numeric indices incorrectly altering parent `req.params` + +4.13.2 / 2015-07-31 +=================== + + * deps: accepts@~1.2.12 + - deps: mime-types@~2.1.4 + * deps: array-flatten@1.1.1 + - perf: enable strict mode + * deps: path-to-regexp@0.1.7 + - Fix regression with escaped round brackets and matching groups + * deps: type-is@~1.6.6 + - deps: mime-types@~2.1.4 + +4.13.1 / 2015-07-05 +=================== + + * deps: accepts@~1.2.10 + - deps: mime-types@~2.1.2 + * deps: qs@4.0.0 + - Fix dropping parameters like `hasOwnProperty` + - Fix various parsing edge cases + * deps: type-is@~1.6.4 + - deps: mime-types@~2.1.2 + - perf: enable strict mode + - perf: remove argument reassignment + +4.13.0 / 2015-06-20 +=================== + + * Add settings to debug output + * Fix `res.format` error when only `default` provided + * Fix issue where `next('route')` in `app.param` would incorrectly skip values + * Fix hiding platform issues with `decodeURIComponent` + - Only `URIError`s are a 400 + * Fix using `*` before params in routes + * Fix using capture groups before params in routes + * Simplify `res.cookie` to call `res.append` + * Use `array-flatten` module for flattening arrays + * deps: accepts@~1.2.9 + - deps: mime-types@~2.1.1 + - perf: avoid argument reassignment & argument slice + - perf: avoid negotiator recursive construction + - perf: enable strict mode + - perf: remove unnecessary bitwise operator + * deps: cookie@0.1.3 + - perf: deduce the scope of try-catch deopt + - perf: remove argument reassignments + * deps: escape-html@1.0.2 + * deps: etag@~1.7.0 + - Always include entity length in ETags for hash length extensions + - Generate non-Stats ETags using MD5 only (no longer CRC32) + - Improve stat performance by removing hashing + - Improve support for JXcore + - Remove base64 padding in ETags to shorten + - Support "fake" stats objects in environments without fs + - Use MD5 instead of MD4 in weak ETags over 1KB + * deps: finalhandler@0.4.0 + - Fix a false-positive when unpiping in Node.js 0.8 + - Support `statusCode` property on `Error` objects + - Use `unpipe` module for unpiping requests + - deps: escape-html@1.0.2 + - deps: on-finished@~2.3.0 + - perf: enable strict mode + - perf: remove argument reassignment + * deps: fresh@0.3.0 + - Add weak `ETag` matching support + * deps: on-finished@~2.3.0 + - Add defined behavior for HTTP `CONNECT` requests + - Add defined behavior for HTTP `Upgrade` requests + - deps: ee-first@1.1.1 + * deps: path-to-regexp@0.1.6 + * deps: send@0.13.0 + - Allow Node.js HTTP server to set `Date` response header + - Fix incorrectly removing `Content-Location` on 304 response + - Improve the default redirect response headers + - Send appropriate headers on default error response + - Use `http-errors` for standard emitted errors + - Use `statuses` instead of `http` module for status messages + - deps: escape-html@1.0.2 + - deps: etag@~1.7.0 + - deps: fresh@0.3.0 + - deps: on-finished@~2.3.0 + - perf: enable strict mode + - perf: remove unnecessary array allocations + * deps: serve-static@~1.10.0 + - Add `fallthrough` option + - Fix reading options from options prototype + - Improve the default redirect response headers + - Malformed URLs now `next()` instead of 400 + - deps: escape-html@1.0.2 + - deps: send@0.13.0 + - perf: enable strict mode + - perf: remove argument reassignment + * deps: type-is@~1.6.3 + - deps: mime-types@~2.1.1 + - perf: reduce try block size + - perf: remove bitwise operations + * perf: enable strict mode + * perf: isolate `app.render` try block + * perf: remove argument reassignments in application + * perf: remove argument reassignments in request prototype + * perf: remove argument reassignments in response prototype + * perf: remove argument reassignments in routing + * perf: remove argument reassignments in `View` + * perf: skip attempting to decode zero length string + * perf: use saved reference to `http.STATUS_CODES` + +4.12.4 / 2015-05-17 +=================== + + * deps: accepts@~1.2.7 + - deps: mime-types@~2.0.11 + - deps: negotiator@0.5.3 + * deps: debug@~2.2.0 + - deps: ms@0.7.1 + * deps: depd@~1.0.1 + * deps: etag@~1.6.0 + - Improve support for JXcore + - Support "fake" stats objects in environments without `fs` + * deps: finalhandler@0.3.6 + - deps: debug@~2.2.0 + - deps: on-finished@~2.2.1 + * deps: on-finished@~2.2.1 + - Fix `isFinished(req)` when data buffered + * deps: proxy-addr@~1.0.8 + - deps: ipaddr.js@1.0.1 + * deps: qs@2.4.2 + - Fix allowing parameters like `constructor` + * deps: send@0.12.3 + - deps: debug@~2.2.0 + - deps: depd@~1.0.1 + - deps: etag@~1.6.0 + - deps: ms@0.7.1 + - deps: on-finished@~2.2.1 + * deps: serve-static@~1.9.3 + - deps: send@0.12.3 + * deps: type-is@~1.6.2 + - deps: mime-types@~2.0.11 + +4.12.3 / 2015-03-17 +=================== + + * deps: accepts@~1.2.5 + - deps: mime-types@~2.0.10 + * deps: debug@~2.1.3 + - Fix high intensity foreground color for bold + - deps: ms@0.7.0 + * deps: finalhandler@0.3.4 + - deps: debug@~2.1.3 + * deps: proxy-addr@~1.0.7 + - deps: ipaddr.js@0.1.9 + * deps: qs@2.4.1 + - Fix error when parameter `hasOwnProperty` is present + * deps: send@0.12.2 + - Throw errors early for invalid `extensions` or `index` options + - deps: debug@~2.1.3 + * deps: serve-static@~1.9.2 + - deps: send@0.12.2 + * deps: type-is@~1.6.1 + - deps: mime-types@~2.0.10 + +4.12.2 / 2015-03-02 +=================== + + * Fix regression where `"Request aborted"` is logged using `res.sendFile` + +4.12.1 / 2015-03-01 +=================== + + * Fix constructing application with non-configurable prototype properties + * Fix `ECONNRESET` errors from `res.sendFile` usage + * Fix `req.host` when using "trust proxy" hops count + * Fix `req.protocol`/`req.secure` when using "trust proxy" hops count + * Fix wrong `code` on aborted connections from `res.sendFile` + * deps: merge-descriptors@1.0.0 + +4.12.0 / 2015-02-23 +=================== + + * Fix `"trust proxy"` setting to inherit when app is mounted + * Generate `ETag`s for all request responses + - No longer restricted to only responses for `GET` and `HEAD` requests + * Use `content-type` to parse `Content-Type` headers + * deps: accepts@~1.2.4 + - Fix preference sorting to be stable for long acceptable lists + - deps: mime-types@~2.0.9 + - deps: negotiator@0.5.1 + * deps: cookie-signature@1.0.6 + * deps: send@0.12.1 + - Always read the stat size from the file + - Fix mutating passed-in `options` + - deps: mime@1.3.4 + * deps: serve-static@~1.9.1 + - deps: send@0.12.1 + * deps: type-is@~1.6.0 + - fix argument reassignment + - fix false-positives in `hasBody` `Transfer-Encoding` check + - support wildcard for both type and subtype (`*/*`) + - deps: mime-types@~2.0.9 + +4.11.2 / 2015-02-01 +=================== + + * Fix `res.redirect` double-calling `res.end` for `HEAD` requests + * deps: accepts@~1.2.3 + - deps: mime-types@~2.0.8 + * deps: proxy-addr@~1.0.6 + - deps: ipaddr.js@0.1.8 + * deps: type-is@~1.5.6 + - deps: mime-types@~2.0.8 + +4.11.1 / 2015-01-20 +=================== + + * deps: send@0.11.1 + - Fix root path disclosure + * deps: serve-static@~1.8.1 + - Fix redirect loop in Node.js 0.11.14 + - Fix root path disclosure + - deps: send@0.11.1 + +4.11.0 / 2015-01-13 +=================== + + * Add `res.append(field, val)` to append headers + * Deprecate leading `:` in `name` for `app.param(name, fn)` + * Deprecate `req.param()` -- use `req.params`, `req.body`, or `req.query` instead + * Deprecate `app.param(fn)` + * Fix `OPTIONS` responses to include the `HEAD` method properly + * Fix `res.sendFile` not always detecting aborted connection + * Match routes iteratively to prevent stack overflows + * deps: accepts@~1.2.2 + - deps: mime-types@~2.0.7 + - deps: negotiator@0.5.0 + * deps: send@0.11.0 + - deps: debug@~2.1.1 + - deps: etag@~1.5.1 + - deps: ms@0.7.0 + - deps: on-finished@~2.2.0 + * deps: serve-static@~1.8.0 + - deps: send@0.11.0 + +4.10.8 / 2015-01-13 +=================== + + * Fix crash from error within `OPTIONS` response handler + * deps: proxy-addr@~1.0.5 + - deps: ipaddr.js@0.1.6 + +4.10.7 / 2015-01-04 +=================== + + * Fix `Allow` header for `OPTIONS` to not contain duplicate methods + * Fix incorrect "Request aborted" for `res.sendFile` when `HEAD` or 304 + * deps: debug@~2.1.1 + * deps: finalhandler@0.3.3 + - deps: debug@~2.1.1 + - deps: on-finished@~2.2.0 + * deps: methods@~1.1.1 + * deps: on-finished@~2.2.0 + * deps: serve-static@~1.7.2 + - Fix potential open redirect when mounted at root + * deps: type-is@~1.5.5 + - deps: mime-types@~2.0.7 + +4.10.6 / 2014-12-12 +=================== + + * Fix exception in `req.fresh`/`req.stale` without response headers + +4.10.5 / 2014-12-10 +=================== + + * Fix `res.send` double-calling `res.end` for `HEAD` requests + * deps: accepts@~1.1.4 + - deps: mime-types@~2.0.4 + * deps: type-is@~1.5.4 + - deps: mime-types@~2.0.4 + +4.10.4 / 2014-11-24 +=================== + + * Fix `res.sendfile` logging standard write errors + +4.10.3 / 2014-11-23 +=================== + + * Fix `res.sendFile` logging standard write errors + * deps: etag@~1.5.1 + * deps: proxy-addr@~1.0.4 + - deps: ipaddr.js@0.1.5 + * deps: qs@2.3.3 + - Fix `arrayLimit` behavior + +4.10.2 / 2014-11-09 +=================== + + * Correctly invoke async router callback asynchronously + * deps: accepts@~1.1.3 + - deps: mime-types@~2.0.3 + * deps: type-is@~1.5.3 + - deps: mime-types@~2.0.3 + +4.10.1 / 2014-10-28 +=================== + + * Fix handling of URLs containing `://` in the path + * deps: qs@2.3.2 + - Fix parsing of mixed objects and values + +4.10.0 / 2014-10-23 +=================== + + * Add support for `app.set('views', array)` + - Views are looked up in sequence in array of directories + * Fix `res.send(status)` to mention `res.sendStatus(status)` + * Fix handling of invalid empty URLs + * Use `content-disposition` module for `res.attachment`/`res.download` + - Sends standards-compliant `Content-Disposition` header + - Full Unicode support + * Use `path.resolve` in view lookup + * deps: debug@~2.1.0 + - Implement `DEBUG_FD` env variable support + * deps: depd@~1.0.0 + * deps: etag@~1.5.0 + - Improve string performance + - Slightly improve speed for weak ETags over 1KB + * deps: finalhandler@0.3.2 + - Terminate in progress response only on error + - Use `on-finished` to determine request status + - deps: debug@~2.1.0 + - deps: on-finished@~2.1.1 + * deps: on-finished@~2.1.1 + - Fix handling of pipelined requests + * deps: qs@2.3.0 + - Fix parsing of mixed implicit and explicit arrays + * deps: send@0.10.1 + - deps: debug@~2.1.0 + - deps: depd@~1.0.0 + - deps: etag@~1.5.0 + - deps: on-finished@~2.1.1 + * deps: serve-static@~1.7.1 + - deps: send@0.10.1 + +4.9.8 / 2014-10-17 +================== + + * Fix `res.redirect` body when redirect status specified + * deps: accepts@~1.1.2 + - Fix error when media type has invalid parameter + - deps: negotiator@0.4.9 + +4.9.7 / 2014-10-10 +================== + + * Fix using same param name in array of paths + +4.9.6 / 2014-10-08 +================== + + * deps: accepts@~1.1.1 + - deps: mime-types@~2.0.2 + - deps: negotiator@0.4.8 + * deps: serve-static@~1.6.4 + - Fix redirect loop when index file serving disabled + * deps: type-is@~1.5.2 + - deps: mime-types@~2.0.2 + +4.9.5 / 2014-09-24 +================== + + * deps: etag@~1.4.0 + * deps: proxy-addr@~1.0.3 + - Use `forwarded` npm module + * deps: send@0.9.3 + - deps: etag@~1.4.0 + * deps: serve-static@~1.6.3 + - deps: send@0.9.3 + +4.9.4 / 2014-09-19 +================== + + * deps: qs@2.2.4 + - Fix issue with object keys starting with numbers truncated + +4.9.3 / 2014-09-18 +================== + + * deps: proxy-addr@~1.0.2 + - Fix a global leak when multiple subnets are trusted + - deps: ipaddr.js@0.1.3 + +4.9.2 / 2014-09-17 +================== + + * Fix regression for empty string `path` in `app.use` + * Fix `router.use` to accept array of middleware without path + * Improve error message for bad `app.use` arguments + +4.9.1 / 2014-09-16 +================== + + * Fix `app.use` to accept array of middleware without path + * deps: depd@0.4.5 + * deps: etag@~1.3.1 + * deps: send@0.9.2 + - deps: depd@0.4.5 + - deps: etag@~1.3.1 + - deps: range-parser@~1.0.2 + * deps: serve-static@~1.6.2 + - deps: send@0.9.2 + +4.9.0 / 2014-09-08 +================== + + * Add `res.sendStatus` + * Invoke callback for sendfile when client aborts + - Applies to `res.sendFile`, `res.sendfile`, and `res.download` + - `err` will be populated with request aborted error + * Support IP address host in `req.subdomains` + * Use `etag` to generate `ETag` headers + * deps: accepts@~1.1.0 + - update `mime-types` + * deps: cookie-signature@1.0.5 + * deps: debug@~2.0.0 + * deps: finalhandler@0.2.0 + - Set `X-Content-Type-Options: nosniff` header + - deps: debug@~2.0.0 + * deps: fresh@0.2.4 + * deps: media-typer@0.3.0 + - Throw error when parameter format invalid on parse + * deps: qs@2.2.3 + - Fix issue where first empty value in array is discarded + * deps: range-parser@~1.0.2 + * deps: send@0.9.1 + - Add `lastModified` option + - Use `etag` to generate `ETag` header + - deps: debug@~2.0.0 + - deps: fresh@0.2.4 + * deps: serve-static@~1.6.1 + - Add `lastModified` option + - deps: send@0.9.1 + * deps: type-is@~1.5.1 + - fix `hasbody` to be true for `content-length: 0` + - deps: media-typer@0.3.0 + - deps: mime-types@~2.0.1 + * deps: vary@~1.0.0 + - Accept valid `Vary` header string as `field` + +4.8.8 / 2014-09-04 +================== + + * deps: send@0.8.5 + - Fix a path traversal issue when using `root` + - Fix malicious path detection for empty string path + * deps: serve-static@~1.5.4 + - deps: send@0.8.5 + +4.8.7 / 2014-08-29 +================== + + * deps: qs@2.2.2 + - Remove unnecessary cloning + +4.8.6 / 2014-08-27 +================== + + * deps: qs@2.2.0 + - Array parsing fix + - Performance improvements + +4.8.5 / 2014-08-18 +================== + + * deps: send@0.8.3 + - deps: destroy@1.0.3 + - deps: on-finished@2.1.0 + * deps: serve-static@~1.5.3 + - deps: send@0.8.3 + +4.8.4 / 2014-08-14 +================== + + * deps: qs@1.2.2 + * deps: send@0.8.2 + - Work around `fd` leak in Node.js 0.10 for `fs.ReadStream` + * deps: serve-static@~1.5.2 + - deps: send@0.8.2 + +4.8.3 / 2014-08-10 +================== + + * deps: parseurl@~1.3.0 + * deps: qs@1.2.1 + * deps: serve-static@~1.5.1 + - Fix parsing of weird `req.originalUrl` values + - deps: parseurl@~1.3.0 + - deps: utils-merge@1.0.0 + +4.8.2 / 2014-08-07 +================== + + * deps: qs@1.2.0 + - Fix parsing array of objects + +4.8.1 / 2014-08-06 +================== + + * fix incorrect deprecation warnings on `res.download` + * deps: qs@1.1.0 + - Accept urlencoded square brackets + - Accept empty values in implicit array notation + +4.8.0 / 2014-08-05 +================== + + * add `res.sendFile` + - accepts a file system path instead of a URL + - requires an absolute path or `root` option specified + * deprecate `res.sendfile` -- use `res.sendFile` instead + * support mounted app as any argument to `app.use()` + * deps: qs@1.0.2 + - Complete rewrite + - Limits array length to 20 + - Limits object depth to 5 + - Limits parameters to 1,000 + * deps: send@0.8.1 + - Add `extensions` option + * deps: serve-static@~1.5.0 + - Add `extensions` option + - deps: send@0.8.1 + +4.7.4 / 2014-08-04 +================== + + * fix `res.sendfile` regression for serving directory index files + * deps: send@0.7.4 + - Fix incorrect 403 on Windows and Node.js 0.11 + - Fix serving index files without root dir + * deps: serve-static@~1.4.4 + - deps: send@0.7.4 + +4.7.3 / 2014-08-04 +================== + + * deps: send@0.7.3 + - Fix incorrect 403 on Windows and Node.js 0.11 + * deps: serve-static@~1.4.3 + - Fix incorrect 403 on Windows and Node.js 0.11 + - deps: send@0.7.3 + +4.7.2 / 2014-07-27 +================== + + * deps: depd@0.4.4 + - Work-around v8 generating empty stack traces + * deps: send@0.7.2 + - deps: depd@0.4.4 + * deps: serve-static@~1.4.2 + +4.7.1 / 2014-07-26 +================== + + * deps: depd@0.4.3 + - Fix exception when global `Error.stackTraceLimit` is too low + * deps: send@0.7.1 + - deps: depd@0.4.3 + * deps: serve-static@~1.4.1 + +4.7.0 / 2014-07-25 +================== + + * fix `req.protocol` for proxy-direct connections + * configurable query parser with `app.set('query parser', parser)` + - `app.set('query parser', 'extended')` parse with "qs" module + - `app.set('query parser', 'simple')` parse with "querystring" core module + - `app.set('query parser', false)` disable query string parsing + - `app.set('query parser', true)` enable simple parsing + * deprecate `res.json(status, obj)` -- use `res.status(status).json(obj)` instead + * deprecate `res.jsonp(status, obj)` -- use `res.status(status).jsonp(obj)` instead + * deprecate `res.send(status, body)` -- use `res.status(status).send(body)` instead + * deps: debug@1.0.4 + * deps: depd@0.4.2 + - Add `TRACE_DEPRECATION` environment variable + - Remove non-standard grey color from color output + - Support `--no-deprecation` argument + - Support `--trace-deprecation` argument + * deps: finalhandler@0.1.0 + - Respond after request fully read + - deps: debug@1.0.4 + * deps: parseurl@~1.2.0 + - Cache URLs based on original value + - Remove no-longer-needed URL mis-parse work-around + - Simplify the "fast-path" `RegExp` + * deps: send@0.7.0 + - Add `dotfiles` option + - Cap `maxAge` value to 1 year + - deps: debug@1.0.4 + - deps: depd@0.4.2 + * deps: serve-static@~1.4.0 + - deps: parseurl@~1.2.0 + - deps: send@0.7.0 + * perf: prevent multiple `Buffer` creation in `res.send` + +4.6.1 / 2014-07-12 +================== + + * fix `subapp.mountpath` regression for `app.use(subapp)` + +4.6.0 / 2014-07-11 +================== + + * accept multiple callbacks to `app.use()` + * add explicit "Rosetta Flash JSONP abuse" protection + - previous versions are not vulnerable; this is just explicit protection + * catch errors in multiple `req.param(name, fn)` handlers + * deprecate `res.redirect(url, status)` -- use `res.redirect(status, url)` instead + * fix `res.send(status, num)` to send `num` as json (not error) + * remove unnecessary escaping when `res.jsonp` returns JSON response + * support non-string `path` in `app.use(path, fn)` + - supports array of paths + - supports `RegExp` + * router: fix optimization on router exit + * router: refactor location of `try` blocks + * router: speed up standard `app.use(fn)` + * deps: debug@1.0.3 + - Add support for multiple wildcards in namespaces + * deps: finalhandler@0.0.3 + - deps: debug@1.0.3 + * deps: methods@1.1.0 + - add `CONNECT` + * deps: parseurl@~1.1.3 + - faster parsing of href-only URLs + * deps: path-to-regexp@0.1.3 + * deps: send@0.6.0 + - deps: debug@1.0.3 + * deps: serve-static@~1.3.2 + - deps: parseurl@~1.1.3 + - deps: send@0.6.0 + * perf: fix arguments reassign deopt in some `res` methods + +4.5.1 / 2014-07-06 +================== + + * fix routing regression when altering `req.method` + +4.5.0 / 2014-07-04 +================== + + * add deprecation message to non-plural `req.accepts*` + * add deprecation message to `res.send(body, status)` + * add deprecation message to `res.vary()` + * add `headers` option to `res.sendfile` + - use to set headers on successful file transfer + * add `mergeParams` option to `Router` + - merges `req.params` from parent routes + * add `req.hostname` -- correct name for what `req.host` returns + * deprecate things with `depd` module + * deprecate `req.host` -- use `req.hostname` instead + * fix behavior when handling request without routes + * fix handling when `route.all` is only route + * invoke `router.param()` only when route matches + * restore `req.params` after invoking router + * use `finalhandler` for final response handling + * use `media-typer` to alter content-type charset + * deps: accepts@~1.0.7 + * deps: send@0.5.0 + - Accept string for `maxage` (converted by `ms`) + - Include link in default redirect response + * deps: serve-static@~1.3.0 + - Accept string for `maxAge` (converted by `ms`) + - Add `setHeaders` option + - Include HTML link in redirect response + - deps: send@0.5.0 + * deps: type-is@~1.3.2 + +4.4.5 / 2014-06-26 +================== + + * deps: cookie-signature@1.0.4 + - fix for timing attacks + +4.4.4 / 2014-06-20 +================== + + * fix `res.attachment` Unicode filenames in Safari + * fix "trim prefix" debug message in `express:router` + * deps: accepts@~1.0.5 + * deps: buffer-crc32@0.2.3 + +4.4.3 / 2014-06-11 +================== + + * fix persistence of modified `req.params[name]` from `app.param()` + * deps: accepts@1.0.3 + - deps: negotiator@0.4.6 + * deps: debug@1.0.2 + * deps: send@0.4.3 + - Do not throw uncatchable error on file open race condition + - Use `escape-html` for HTML escaping + - deps: debug@1.0.2 + - deps: finished@1.2.2 + - deps: fresh@0.2.2 + * deps: serve-static@1.2.3 + - Do not throw uncatchable error on file open race condition + - deps: send@0.4.3 + +4.4.2 / 2014-06-09 +================== + + * fix catching errors from top-level handlers + * use `vary` module for `res.vary` + * deps: debug@1.0.1 + * deps: proxy-addr@1.0.1 + * deps: send@0.4.2 + - fix "event emitter leak" warnings + - deps: debug@1.0.1 + - deps: finished@1.2.1 + * deps: serve-static@1.2.2 + - fix "event emitter leak" warnings + - deps: send@0.4.2 + * deps: type-is@1.2.1 + +4.4.1 / 2014-06-02 +================== + + * deps: methods@1.0.1 + * deps: send@0.4.1 + - Send `max-age` in `Cache-Control` in correct format + * deps: serve-static@1.2.1 + - use `escape-html` for escaping + - deps: send@0.4.1 + +4.4.0 / 2014-05-30 +================== + + * custom etag control with `app.set('etag', val)` + - `app.set('etag', function(body, encoding){ return '"etag"' })` custom etag generation + - `app.set('etag', 'weak')` weak tag + - `app.set('etag', 'strong')` strong etag + - `app.set('etag', false)` turn off + - `app.set('etag', true)` standard etag + * mark `res.send` ETag as weak and reduce collisions + * update accepts to 1.0.2 + - Fix interpretation when header not in request + * update send to 0.4.0 + - Calculate ETag with md5 for reduced collisions + - Ignore stream errors after request ends + - deps: debug@0.8.1 + * update serve-static to 1.2.0 + - Calculate ETag with md5 for reduced collisions + - Ignore stream errors after request ends + - deps: send@0.4.0 + +4.3.2 / 2014-05-28 +================== + + * fix handling of errors from `router.param()` callbacks + +4.3.1 / 2014-05-23 +================== + + * revert "fix behavior of multiple `app.VERB` for the same path" + - this caused a regression in the order of route execution + +4.3.0 / 2014-05-21 +================== + + * add `req.baseUrl` to access the path stripped from `req.url` in routes + * fix behavior of multiple `app.VERB` for the same path + * fix issue routing requests among sub routers + * invoke `router.param()` only when necessary instead of every match + * proper proxy trust with `app.set('trust proxy', trust)` + - `app.set('trust proxy', 1)` trust first hop + - `app.set('trust proxy', 'loopback')` trust loopback addresses + - `app.set('trust proxy', '10.0.0.1')` trust single IP + - `app.set('trust proxy', '10.0.0.1/16')` trust subnet + - `app.set('trust proxy', '10.0.0.1, 10.0.0.2')` trust list + - `app.set('trust proxy', false)` turn off + - `app.set('trust proxy', true)` trust everything + * set proper `charset` in `Content-Type` for `res.send` + * update type-is to 1.2.0 + - support suffix matching + +4.2.0 / 2014-05-11 +================== + + * deprecate `app.del()` -- use `app.delete()` instead + * deprecate `res.json(obj, status)` -- use `res.json(status, obj)` instead + - the edge-case `res.json(status, num)` requires `res.status(status).json(num)` + * deprecate `res.jsonp(obj, status)` -- use `res.jsonp(status, obj)` instead + - the edge-case `res.jsonp(status, num)` requires `res.status(status).jsonp(num)` + * fix `req.next` when inside router instance + * include `ETag` header in `HEAD` requests + * keep previous `Content-Type` for `res.jsonp` + * support PURGE method + - add `app.purge` + - add `router.purge` + - include PURGE in `app.all` + * update debug to 0.8.0 + - add `enable()` method + - change from stderr to stdout + * update methods to 1.0.0 + - add PURGE + +4.1.2 / 2014-05-08 +================== + + * fix `req.host` for IPv6 literals + * fix `res.jsonp` error if callback param is object + +4.1.1 / 2014-04-27 +================== + + * fix package.json to reflect supported node version + +4.1.0 / 2014-04-24 +================== + + * pass options from `res.sendfile` to `send` + * preserve casing of headers in `res.header` and `res.set` + * support unicode file names in `res.attachment` and `res.download` + * update accepts to 1.0.1 + - deps: negotiator@0.4.0 + * update cookie to 0.1.2 + - Fix for maxAge == 0 + - made compat with expires field + * update send to 0.3.0 + - Accept API options in options object + - Coerce option types + - Control whether to generate etags + - Default directory access to 403 when index disabled + - Fix sending files with dots without root set + - Include file path in etag + - Make "Can't set headers after they are sent." catchable + - Send full entity-body for multi range requests + - Set etags to "weak" + - Support "If-Range" header + - Support multiple index paths + - deps: mime@1.2.11 + * update serve-static to 1.1.0 + - Accept options directly to `send` module + - Resolve relative paths at middleware setup + - Use parseurl to parse the URL from request + - deps: send@0.3.0 + * update type-is to 1.1.0 + - add non-array values support + - add `multipart` as a shorthand + +4.0.0 / 2014-04-09 +================== + + * remove: + - node 0.8 support + - connect and connect's patches except for charset handling + - express(1) - moved to [express-generator](https://github.com/expressjs/generator) + - `express.createServer()` - it has been deprecated for a long time. Use `express()` + - `app.configure` - use logic in your own app code + - `app.router` - is removed + - `req.auth` - use `basic-auth` instead + - `req.accepted*` - use `req.accepts*()` instead + - `res.location` - relative URL resolution is removed + - `res.charset` - include the charset in the content type when using `res.set()` + - all bundled middleware except `static` + * change: + - `app.route` -> `app.mountpath` when mounting an express app in another express app + - `json spaces` no longer enabled by default in development + - `req.accepts*` -> `req.accepts*s` - i.e. `req.acceptsEncoding` -> `req.acceptsEncodings` + - `req.params` is now an object instead of an array + - `res.locals` is no longer a function. It is a plain js object. Treat it as such. + - `res.headerSent` -> `res.headersSent` to match node.js ServerResponse object + * refactor: + - `req.accepts*` with [accepts](https://github.com/expressjs/accepts) + - `req.is` with [type-is](https://github.com/expressjs/type-is) + - [path-to-regexp](https://github.com/component/path-to-regexp) + * add: + - `app.router()` - returns the app Router instance + - `app.route()` - Proxy to the app's `Router#route()` method to create a new route + - Router & Route - public API + +3.21.2 / 2015-07-31 +=================== + + * deps: connect@2.30.2 + - deps: body-parser@~1.13.3 + - deps: compression@~1.5.2 + - deps: errorhandler@~1.4.2 + - deps: method-override@~2.3.5 + - deps: serve-index@~1.7.2 + - deps: type-is@~1.6.6 + - deps: vhost@~3.0.1 + * deps: vary@~1.0.1 + - Fix setting empty header from empty `field` + - perf: enable strict mode + - perf: remove argument reassignments + +3.21.1 / 2015-07-05 +=================== + + * deps: basic-auth@~1.0.3 + * deps: connect@2.30.1 + - deps: body-parser@~1.13.2 + - deps: compression@~1.5.1 + - deps: errorhandler@~1.4.1 + - deps: morgan@~1.6.1 + - deps: pause@0.1.0 + - deps: qs@4.0.0 + - deps: serve-index@~1.7.1 + - deps: type-is@~1.6.4 + +3.21.0 / 2015-06-18 +=================== + + * deps: basic-auth@1.0.2 + - perf: enable strict mode + - perf: hoist regular expression + - perf: parse with regular expressions + - perf: remove argument reassignment + * deps: connect@2.30.0 + - deps: body-parser@~1.13.1 + - deps: bytes@2.1.0 + - deps: compression@~1.5.0 + - deps: cookie@0.1.3 + - deps: cookie-parser@~1.3.5 + - deps: csurf@~1.8.3 + - deps: errorhandler@~1.4.0 + - deps: express-session@~1.11.3 + - deps: finalhandler@0.4.0 + - deps: fresh@0.3.0 + - deps: morgan@~1.6.0 + - deps: serve-favicon@~2.3.0 + - deps: serve-index@~1.7.0 + - deps: serve-static@~1.10.0 + - deps: type-is@~1.6.3 + * deps: cookie@0.1.3 + - perf: deduce the scope of try-catch deopt + - perf: remove argument reassignments + * deps: escape-html@1.0.2 + * deps: etag@~1.7.0 + - Always include entity length in ETags for hash length extensions + - Generate non-Stats ETags using MD5 only (no longer CRC32) + - Improve stat performance by removing hashing + - Improve support for JXcore + - Remove base64 padding in ETags to shorten + - Support "fake" stats objects in environments without fs + - Use MD5 instead of MD4 in weak ETags over 1KB + * deps: fresh@0.3.0 + - Add weak `ETag` matching support + * deps: mkdirp@0.5.1 + - Work in global strict mode + * deps: send@0.13.0 + - Allow Node.js HTTP server to set `Date` response header + - Fix incorrectly removing `Content-Location` on 304 response + - Improve the default redirect response headers + - Send appropriate headers on default error response + - Use `http-errors` for standard emitted errors + - Use `statuses` instead of `http` module for status messages + - deps: escape-html@1.0.2 + - deps: etag@~1.7.0 + - deps: fresh@0.3.0 + - deps: on-finished@~2.3.0 + - perf: enable strict mode + - perf: remove unnecessary array allocations + +3.20.3 / 2015-05-17 +=================== + + * deps: connect@2.29.2 + - deps: body-parser@~1.12.4 + - deps: compression@~1.4.4 + - deps: connect-timeout@~1.6.2 + - deps: debug@~2.2.0 + - deps: depd@~1.0.1 + - deps: errorhandler@~1.3.6 + - deps: finalhandler@0.3.6 + - deps: method-override@~2.3.3 + - deps: morgan@~1.5.3 + - deps: qs@2.4.2 + - deps: response-time@~2.3.1 + - deps: serve-favicon@~2.2.1 + - deps: serve-index@~1.6.4 + - deps: serve-static@~1.9.3 + - deps: type-is@~1.6.2 + * deps: debug@~2.2.0 + - deps: ms@0.7.1 + * deps: depd@~1.0.1 + * deps: proxy-addr@~1.0.8 + - deps: ipaddr.js@1.0.1 + * deps: send@0.12.3 + - deps: debug@~2.2.0 + - deps: depd@~1.0.1 + - deps: etag@~1.6.0 + - deps: ms@0.7.1 + - deps: on-finished@~2.2.1 + +3.20.2 / 2015-03-16 +=================== + + * deps: connect@2.29.1 + - deps: body-parser@~1.12.2 + - deps: compression@~1.4.3 + - deps: connect-timeout@~1.6.1 + - deps: debug@~2.1.3 + - deps: errorhandler@~1.3.5 + - deps: express-session@~1.10.4 + - deps: finalhandler@0.3.4 + - deps: method-override@~2.3.2 + - deps: morgan@~1.5.2 + - deps: qs@2.4.1 + - deps: serve-index@~1.6.3 + - deps: serve-static@~1.9.2 + - deps: type-is@~1.6.1 + * deps: debug@~2.1.3 + - Fix high intensity foreground color for bold + - deps: ms@0.7.0 + * deps: merge-descriptors@1.0.0 + * deps: proxy-addr@~1.0.7 + - deps: ipaddr.js@0.1.9 + * deps: send@0.12.2 + - Throw errors early for invalid `extensions` or `index` options + - deps: debug@~2.1.3 + +3.20.1 / 2015-02-28 +=================== + + * Fix `req.host` when using "trust proxy" hops count + * Fix `req.protocol`/`req.secure` when using "trust proxy" hops count + +3.20.0 / 2015-02-18 +=================== + + * Fix `"trust proxy"` setting to inherit when app is mounted + * Generate `ETag`s for all request responses + - No longer restricted to only responses for `GET` and `HEAD` requests + * Use `content-type` to parse `Content-Type` headers + * deps: connect@2.29.0 + - Use `content-type` to parse `Content-Type` headers + - deps: body-parser@~1.12.0 + - deps: compression@~1.4.1 + - deps: connect-timeout@~1.6.0 + - deps: cookie-parser@~1.3.4 + - deps: cookie-signature@1.0.6 + - deps: csurf@~1.7.0 + - deps: errorhandler@~1.3.4 + - deps: express-session@~1.10.3 + - deps: http-errors@~1.3.1 + - deps: response-time@~2.3.0 + - deps: serve-index@~1.6.2 + - deps: serve-static@~1.9.1 + - deps: type-is@~1.6.0 + * deps: cookie-signature@1.0.6 + * deps: send@0.12.1 + - Always read the stat size from the file + - Fix mutating passed-in `options` + - deps: mime@1.3.4 + +3.19.2 / 2015-02-01 +=================== + + * deps: connect@2.28.3 + - deps: compression@~1.3.1 + - deps: csurf@~1.6.6 + - deps: errorhandler@~1.3.3 + - deps: express-session@~1.10.2 + - deps: serve-index@~1.6.1 + - deps: type-is@~1.5.6 + * deps: proxy-addr@~1.0.6 + - deps: ipaddr.js@0.1.8 + +3.19.1 / 2015-01-20 +=================== + + * deps: connect@2.28.2 + - deps: body-parser@~1.10.2 + - deps: serve-static@~1.8.1 + * deps: send@0.11.1 + - Fix root path disclosure + +3.19.0 / 2015-01-09 +=================== + + * Fix `OPTIONS` responses to include the `HEAD` method property + * Use `readline` for prompt in `express(1)` + * deps: commander@2.6.0 + * deps: connect@2.28.1 + - deps: body-parser@~1.10.1 + - deps: compression@~1.3.0 + - deps: connect-timeout@~1.5.0 + - deps: csurf@~1.6.4 + - deps: debug@~2.1.1 + - deps: errorhandler@~1.3.2 + - deps: express-session@~1.10.1 + - deps: finalhandler@0.3.3 + - deps: method-override@~2.3.1 + - deps: morgan@~1.5.1 + - deps: serve-favicon@~2.2.0 + - deps: serve-index@~1.6.0 + - deps: serve-static@~1.8.0 + - deps: type-is@~1.5.5 + * deps: debug@~2.1.1 + * deps: methods@~1.1.1 + * deps: proxy-addr@~1.0.5 + - deps: ipaddr.js@0.1.6 + * deps: send@0.11.0 + - deps: debug@~2.1.1 + - deps: etag@~1.5.1 + - deps: ms@0.7.0 + - deps: on-finished@~2.2.0 + +3.18.6 / 2014-12-12 +=================== + + * Fix exception in `req.fresh`/`req.stale` without response headers + +3.18.5 / 2014-12-11 +=================== + + * deps: connect@2.27.6 + - deps: compression@~1.2.2 + - deps: express-session@~1.9.3 + - deps: http-errors@~1.2.8 + - deps: serve-index@~1.5.3 + - deps: type-is@~1.5.4 + +3.18.4 / 2014-11-23 +=================== + + * deps: connect@2.27.4 + - deps: body-parser@~1.9.3 + - deps: compression@~1.2.1 + - deps: errorhandler@~1.2.3 + - deps: express-session@~1.9.2 + - deps: qs@2.3.3 + - deps: serve-favicon@~2.1.7 + - deps: serve-static@~1.5.1 + - deps: type-is@~1.5.3 + * deps: etag@~1.5.1 + * deps: proxy-addr@~1.0.4 + - deps: ipaddr.js@0.1.5 + +3.18.3 / 2014-11-09 +=================== + + * deps: connect@2.27.3 + - Correctly invoke async callback asynchronously + - deps: csurf@~1.6.3 + +3.18.2 / 2014-10-28 +=================== + + * deps: connect@2.27.2 + - Fix handling of URLs containing `://` in the path + - deps: body-parser@~1.9.2 + - deps: qs@2.3.2 + +3.18.1 / 2014-10-22 +=================== + + * Fix internal `utils.merge` deprecation warnings + * deps: connect@2.27.1 + - deps: body-parser@~1.9.1 + - deps: express-session@~1.9.1 + - deps: finalhandler@0.3.2 + - deps: morgan@~1.4.1 + - deps: qs@2.3.0 + - deps: serve-static@~1.7.1 + * deps: send@0.10.1 + - deps: on-finished@~2.1.1 + +3.18.0 / 2014-10-17 +=================== + + * Use `content-disposition` module for `res.attachment`/`res.download` + - Sends standards-compliant `Content-Disposition` header + - Full Unicode support + * Use `etag` module to generate `ETag` headers + * deps: connect@2.27.0 + - Use `http-errors` module for creating errors + - Use `utils-merge` module for merging objects + - deps: body-parser@~1.9.0 + - deps: compression@~1.2.0 + - deps: connect-timeout@~1.4.0 + - deps: debug@~2.1.0 + - deps: depd@~1.0.0 + - deps: express-session@~1.9.0 + - deps: finalhandler@0.3.1 + - deps: method-override@~2.3.0 + - deps: morgan@~1.4.0 + - deps: response-time@~2.2.0 + - deps: serve-favicon@~2.1.6 + - deps: serve-index@~1.5.0 + - deps: serve-static@~1.7.0 + * deps: debug@~2.1.0 + - Implement `DEBUG_FD` env variable support + * deps: depd@~1.0.0 + * deps: send@0.10.0 + - deps: debug@~2.1.0 + - deps: depd@~1.0.0 + - deps: etag@~1.5.0 + +3.17.8 / 2014-10-15 +=================== + + * deps: connect@2.26.6 + - deps: compression@~1.1.2 + - deps: csurf@~1.6.2 + - deps: errorhandler@~1.2.2 + +3.17.7 / 2014-10-08 +=================== + + * deps: connect@2.26.5 + - Fix accepting non-object arguments to `logger` + - deps: serve-static@~1.6.4 + +3.17.6 / 2014-10-02 +=================== + + * deps: connect@2.26.4 + - deps: morgan@~1.3.2 + - deps: type-is@~1.5.2 + +3.17.5 / 2014-09-24 +=================== + + * deps: connect@2.26.3 + - deps: body-parser@~1.8.4 + - deps: serve-favicon@~2.1.5 + - deps: serve-static@~1.6.3 + * deps: proxy-addr@~1.0.3 + - Use `forwarded` npm module + * deps: send@0.9.3 + - deps: etag@~1.4.0 + +3.17.4 / 2014-09-19 +=================== + + * deps: connect@2.26.2 + - deps: body-parser@~1.8.3 + - deps: qs@2.2.4 + +3.17.3 / 2014-09-18 +=================== + + * deps: proxy-addr@~1.0.2 + - Fix a global leak when multiple subnets are trusted + - deps: ipaddr.js@0.1.3 + +3.17.2 / 2014-09-15 +=================== + + * Use `crc` instead of `buffer-crc32` for speed + * deps: connect@2.26.1 + - deps: body-parser@~1.8.2 + - deps: depd@0.4.5 + - deps: express-session@~1.8.2 + - deps: morgan@~1.3.1 + - deps: serve-favicon@~2.1.3 + - deps: serve-static@~1.6.2 + * deps: depd@0.4.5 + * deps: send@0.9.2 + - deps: depd@0.4.5 + - deps: etag@~1.3.1 + - deps: range-parser@~1.0.2 + +3.17.1 / 2014-09-08 +=================== + + * Fix error in `req.subdomains` on empty host + +3.17.0 / 2014-09-08 +=================== + + * Support `X-Forwarded-Host` in `req.subdomains` + * Support IP address host in `req.subdomains` + * deps: connect@2.26.0 + - deps: body-parser@~1.8.1 + - deps: compression@~1.1.0 + - deps: connect-timeout@~1.3.0 + - deps: cookie-parser@~1.3.3 + - deps: cookie-signature@1.0.5 + - deps: csurf@~1.6.1 + - deps: debug@~2.0.0 + - deps: errorhandler@~1.2.0 + - deps: express-session@~1.8.1 + - deps: finalhandler@0.2.0 + - deps: fresh@0.2.4 + - deps: media-typer@0.3.0 + - deps: method-override@~2.2.0 + - deps: morgan@~1.3.0 + - deps: qs@2.2.3 + - deps: serve-favicon@~2.1.3 + - deps: serve-index@~1.2.1 + - deps: serve-static@~1.6.1 + - deps: type-is@~1.5.1 + - deps: vhost@~3.0.0 + * deps: cookie-signature@1.0.5 + * deps: debug@~2.0.0 + * deps: fresh@0.2.4 + * deps: media-typer@0.3.0 + - Throw error when parameter format invalid on parse + * deps: range-parser@~1.0.2 + * deps: send@0.9.1 + - Add `lastModified` option + - Use `etag` to generate `ETag` header + - deps: debug@~2.0.0 + - deps: fresh@0.2.4 + * deps: vary@~1.0.0 + - Accept valid `Vary` header string as `field` + +3.16.10 / 2014-09-04 +==================== + + * deps: connect@2.25.10 + - deps: serve-static@~1.5.4 + * deps: send@0.8.5 + - Fix a path traversal issue when using `root` + - Fix malicious path detection for empty string path + +3.16.9 / 2014-08-29 +=================== + + * deps: connect@2.25.9 + - deps: body-parser@~1.6.7 + - deps: qs@2.2.2 + +3.16.8 / 2014-08-27 +=================== + + * deps: connect@2.25.8 + - deps: body-parser@~1.6.6 + - deps: csurf@~1.4.1 + - deps: qs@2.2.0 + +3.16.7 / 2014-08-18 +=================== + + * deps: connect@2.25.7 + - deps: body-parser@~1.6.5 + - deps: express-session@~1.7.6 + - deps: morgan@~1.2.3 + - deps: serve-static@~1.5.3 + * deps: send@0.8.3 + - deps: destroy@1.0.3 + - deps: on-finished@2.1.0 + +3.16.6 / 2014-08-14 +=================== + + * deps: connect@2.25.6 + - deps: body-parser@~1.6.4 + - deps: qs@1.2.2 + - deps: serve-static@~1.5.2 + * deps: send@0.8.2 + - Work around `fd` leak in Node.js 0.10 for `fs.ReadStream` + +3.16.5 / 2014-08-11 +=================== + + * deps: connect@2.25.5 + - Fix backwards compatibility in `logger` + +3.16.4 / 2014-08-10 +=================== + + * Fix original URL parsing in `res.location` + * deps: connect@2.25.4 + - Fix `query` middleware breaking with argument + - deps: body-parser@~1.6.3 + - deps: compression@~1.0.11 + - deps: connect-timeout@~1.2.2 + - deps: express-session@~1.7.5 + - deps: method-override@~2.1.3 + - deps: on-headers@~1.0.0 + - deps: parseurl@~1.3.0 + - deps: qs@1.2.1 + - deps: response-time@~2.0.1 + - deps: serve-index@~1.1.6 + - deps: serve-static@~1.5.1 + * deps: parseurl@~1.3.0 + +3.16.3 / 2014-08-07 +=================== + + * deps: connect@2.25.3 + - deps: multiparty@3.3.2 + +3.16.2 / 2014-08-07 +=================== + + * deps: connect@2.25.2 + - deps: body-parser@~1.6.2 + - deps: qs@1.2.0 + +3.16.1 / 2014-08-06 +=================== + + * deps: connect@2.25.1 + - deps: body-parser@~1.6.1 + - deps: qs@1.1.0 + +3.16.0 / 2014-08-05 +=================== + + * deps: connect@2.25.0 + - deps: body-parser@~1.6.0 + - deps: compression@~1.0.10 + - deps: csurf@~1.4.0 + - deps: express-session@~1.7.4 + - deps: qs@1.0.2 + - deps: serve-static@~1.5.0 + * deps: send@0.8.1 + - Add `extensions` option + +3.15.3 / 2014-08-04 +=================== + + * fix `res.sendfile` regression for serving directory index files + * deps: connect@2.24.3 + - deps: serve-index@~1.1.5 + - deps: serve-static@~1.4.4 + * deps: send@0.7.4 + - Fix incorrect 403 on Windows and Node.js 0.11 + - Fix serving index files without root dir + +3.15.2 / 2014-07-27 +=================== + + * deps: connect@2.24.2 + - deps: body-parser@~1.5.2 + - deps: depd@0.4.4 + - deps: express-session@~1.7.2 + - deps: morgan@~1.2.2 + - deps: serve-static@~1.4.2 + * deps: depd@0.4.4 + - Work-around v8 generating empty stack traces + * deps: send@0.7.2 + - deps: depd@0.4.4 + +3.15.1 / 2014-07-26 +=================== + + * deps: connect@2.24.1 + - deps: body-parser@~1.5.1 + - deps: depd@0.4.3 + - deps: express-session@~1.7.1 + - deps: morgan@~1.2.1 + - deps: serve-index@~1.1.4 + - deps: serve-static@~1.4.1 + * deps: depd@0.4.3 + - Fix exception when global `Error.stackTraceLimit` is too low + * deps: send@0.7.1 + - deps: depd@0.4.3 + +3.15.0 / 2014-07-22 +=================== + + * Fix `req.protocol` for proxy-direct connections + * Pass options from `res.sendfile` to `send` + * deps: connect@2.24.0 + - deps: body-parser@~1.5.0 + - deps: compression@~1.0.9 + - deps: connect-timeout@~1.2.1 + - deps: debug@1.0.4 + - deps: depd@0.4.2 + - deps: express-session@~1.7.0 + - deps: finalhandler@0.1.0 + - deps: method-override@~2.1.2 + - deps: morgan@~1.2.0 + - deps: multiparty@3.3.1 + - deps: parseurl@~1.2.0 + - deps: serve-static@~1.4.0 + * deps: debug@1.0.4 + * deps: depd@0.4.2 + - Add `TRACE_DEPRECATION` environment variable + - Remove non-standard grey color from color output + - Support `--no-deprecation` argument + - Support `--trace-deprecation` argument + * deps: parseurl@~1.2.0 + - Cache URLs based on original value + - Remove no-longer-needed URL mis-parse work-around + - Simplify the "fast-path" `RegExp` + * deps: send@0.7.0 + - Add `dotfiles` option + - Cap `maxAge` value to 1 year + - deps: debug@1.0.4 + - deps: depd@0.4.2 + +3.14.0 / 2014-07-11 +=================== + + * add explicit "Rosetta Flash JSONP abuse" protection + - previous versions are not vulnerable; this is just explicit protection + * deprecate `res.redirect(url, status)` -- use `res.redirect(status, url)` instead + * fix `res.send(status, num)` to send `num` as json (not error) + * remove unnecessary escaping when `res.jsonp` returns JSON response + * deps: basic-auth@1.0.0 + - support empty password + - support empty username + * deps: connect@2.23.0 + - deps: debug@1.0.3 + - deps: express-session@~1.6.4 + - deps: method-override@~2.1.0 + - deps: parseurl@~1.1.3 + - deps: serve-static@~1.3.1 + * deps: debug@1.0.3 + - Add support for multiple wildcards in namespaces + * deps: methods@1.1.0 + - add `CONNECT` + * deps: parseurl@~1.1.3 + - faster parsing of href-only URLs + +3.13.0 / 2014-07-03 +=================== + + * add deprecation message to `app.configure` + * add deprecation message to `req.auth` + * use `basic-auth` to parse `Authorization` header + * deps: connect@2.22.0 + - deps: csurf@~1.3.0 + - deps: express-session@~1.6.1 + - deps: multiparty@3.3.0 + - deps: serve-static@~1.3.0 + * deps: send@0.5.0 + - Accept string for `maxage` (converted by `ms`) + - Include link in default redirect response + +3.12.1 / 2014-06-26 +=================== + + * deps: connect@2.21.1 + - deps: cookie-parser@1.3.2 + - deps: cookie-signature@1.0.4 + - deps: express-session@~1.5.2 + - deps: type-is@~1.3.2 + * deps: cookie-signature@1.0.4 + - fix for timing attacks + +3.12.0 / 2014-06-21 +=================== + + * use `media-typer` to alter content-type charset + * deps: connect@2.21.0 + - deprecate `connect(middleware)` -- use `app.use(middleware)` instead + - deprecate `connect.createServer()` -- use `connect()` instead + - fix `res.setHeader()` patch to work with with get -> append -> set pattern + - deps: compression@~1.0.8 + - deps: errorhandler@~1.1.1 + - deps: express-session@~1.5.0 + - deps: serve-index@~1.1.3 + +3.11.0 / 2014-06-19 +=================== + + * deprecate things with `depd` module + * deps: buffer-crc32@0.2.3 + * deps: connect@2.20.2 + - deprecate `verify` option to `json` -- use `body-parser` npm module instead + - deprecate `verify` option to `urlencoded` -- use `body-parser` npm module instead + - deprecate things with `depd` module + - use `finalhandler` for final response handling + - use `media-typer` to parse `content-type` for charset + - deps: body-parser@1.4.3 + - deps: connect-timeout@1.1.1 + - deps: cookie-parser@1.3.1 + - deps: csurf@1.2.2 + - deps: errorhandler@1.1.0 + - deps: express-session@1.4.0 + - deps: multiparty@3.2.9 + - deps: serve-index@1.1.2 + - deps: type-is@1.3.1 + - deps: vhost@2.0.0 + +3.10.5 / 2014-06-11 +=================== + + * deps: connect@2.19.6 + - deps: body-parser@1.3.1 + - deps: compression@1.0.7 + - deps: debug@1.0.2 + - deps: serve-index@1.1.1 + - deps: serve-static@1.2.3 + * deps: debug@1.0.2 + * deps: send@0.4.3 + - Do not throw uncatchable error on file open race condition + - Use `escape-html` for HTML escaping + - deps: debug@1.0.2 + - deps: finished@1.2.2 + - deps: fresh@0.2.2 + +3.10.4 / 2014-06-09 +=================== + + * deps: connect@2.19.5 + - fix "event emitter leak" warnings + - deps: csurf@1.2.1 + - deps: debug@1.0.1 + - deps: serve-static@1.2.2 + - deps: type-is@1.2.1 + * deps: debug@1.0.1 + * deps: send@0.4.2 + - fix "event emitter leak" warnings + - deps: finished@1.2.1 + - deps: debug@1.0.1 + +3.10.3 / 2014-06-05 +=================== + + * use `vary` module for `res.vary` + * deps: connect@2.19.4 + - deps: errorhandler@1.0.2 + - deps: method-override@2.0.2 + - deps: serve-favicon@2.0.1 + * deps: debug@1.0.0 + +3.10.2 / 2014-06-03 +=================== + + * deps: connect@2.19.3 + - deps: compression@1.0.6 + +3.10.1 / 2014-06-03 +=================== + + * deps: connect@2.19.2 + - deps: compression@1.0.4 + * deps: proxy-addr@1.0.1 + +3.10.0 / 2014-06-02 +=================== + + * deps: connect@2.19.1 + - deprecate `methodOverride()` -- use `method-override` npm module instead + - deps: body-parser@1.3.0 + - deps: method-override@2.0.1 + - deps: multiparty@3.2.8 + - deps: response-time@2.0.0 + - deps: serve-static@1.2.1 + * deps: methods@1.0.1 + * deps: send@0.4.1 + - Send `max-age` in `Cache-Control` in correct format + +3.9.0 / 2014-05-30 +================== + + * custom etag control with `app.set('etag', val)` + - `app.set('etag', function(body, encoding){ return '"etag"' })` custom etag generation + - `app.set('etag', 'weak')` weak tag + - `app.set('etag', 'strong')` strong etag + - `app.set('etag', false)` turn off + - `app.set('etag', true)` standard etag + * Include ETag in HEAD requests + * mark `res.send` ETag as weak and reduce collisions + * update connect to 2.18.0 + - deps: compression@1.0.3 + - deps: serve-index@1.1.0 + - deps: serve-static@1.2.0 + * update send to 0.4.0 + - Calculate ETag with md5 for reduced collisions + - Ignore stream errors after request ends + - deps: debug@0.8.1 + +3.8.1 / 2014-05-27 +================== + + * update connect to 2.17.3 + - deps: body-parser@1.2.2 + - deps: express-session@1.2.1 + - deps: method-override@1.0.2 + +3.8.0 / 2014-05-21 +================== + + * keep previous `Content-Type` for `res.jsonp` + * set proper `charset` in `Content-Type` for `res.send` + * update connect to 2.17.1 + - fix `res.charset` appending charset when `content-type` has one + - deps: express-session@1.2.0 + - deps: morgan@1.1.1 + - deps: serve-index@1.0.3 + +3.7.0 / 2014-05-18 +================== + + * proper proxy trust with `app.set('trust proxy', trust)` + - `app.set('trust proxy', 1)` trust first hop + - `app.set('trust proxy', 'loopback')` trust loopback addresses + - `app.set('trust proxy', '10.0.0.1')` trust single IP + - `app.set('trust proxy', '10.0.0.1/16')` trust subnet + - `app.set('trust proxy', '10.0.0.1, 10.0.0.2')` trust list + - `app.set('trust proxy', false)` turn off + - `app.set('trust proxy', true)` trust everything + * update connect to 2.16.2 + - deprecate `res.headerSent` -- use `res.headersSent` + - deprecate `res.on("header")` -- use on-headers module instead + - fix edge-case in `res.appendHeader` that would append in wrong order + - json: use body-parser + - urlencoded: use body-parser + - dep: bytes@1.0.0 + - dep: cookie-parser@1.1.0 + - dep: csurf@1.2.0 + - dep: express-session@1.1.0 + - dep: method-override@1.0.1 + +3.6.0 / 2014-05-09 +================== + + * deprecate `app.del()` -- use `app.delete()` instead + * deprecate `res.json(obj, status)` -- use `res.json(status, obj)` instead + - the edge-case `res.json(status, num)` requires `res.status(status).json(num)` + * deprecate `res.jsonp(obj, status)` -- use `res.jsonp(status, obj)` instead + - the edge-case `res.jsonp(status, num)` requires `res.status(status).jsonp(num)` + * support PURGE method + - add `app.purge` + - add `router.purge` + - include PURGE in `app.all` + * update connect to 2.15.0 + * Add `res.appendHeader` + * Call error stack even when response has been sent + * Patch `res.headerSent` to return Boolean + * Patch `res.headersSent` for node.js 0.8 + * Prevent default 404 handler after response sent + * dep: compression@1.0.2 + * dep: connect-timeout@1.1.0 + * dep: debug@^0.8.0 + * dep: errorhandler@1.0.1 + * dep: express-session@1.0.4 + * dep: morgan@1.0.1 + * dep: serve-favicon@2.0.0 + * dep: serve-index@1.0.2 + * update debug to 0.8.0 + * add `enable()` method + * change from stderr to stdout + * update methods to 1.0.0 + - add PURGE + * update mkdirp to 0.5.0 + +3.5.3 / 2014-05-08 +================== + + * fix `req.host` for IPv6 literals + * fix `res.jsonp` error if callback param is object + +3.5.2 / 2014-04-24 +================== + + * update connect to 2.14.5 + * update cookie to 0.1.2 + * update mkdirp to 0.4.0 + * update send to 0.3.0 + +3.5.1 / 2014-03-25 +================== + + * pin less-middleware in generated app + +3.5.0 / 2014-03-06 +================== + + * bump deps + +3.4.8 / 2014-01-13 +================== + + * prevent incorrect automatic OPTIONS responses #1868 @dpatti + * update binary and examples for jade 1.0 #1876 @yossi, #1877 @reqshark, #1892 @matheusazzi + * throw 400 in case of malformed paths @rlidwka + +3.4.7 / 2013-12-10 +================== + + * update connect + +3.4.6 / 2013-12-01 +================== + + * update connect (raw-body) + +3.4.5 / 2013-11-27 +================== + + * update connect + * res.location: remove leading ./ #1802 @kapouer + * res.redirect: fix `res.redirect('toString') #1829 @michaelficarra + * res.send: always send ETag when content-length > 0 + * router: add Router.all() method + +3.4.4 / 2013-10-29 +================== + + * update connect + * update supertest + * update methods + * express(1): replace bodyParser() with urlencoded() and json() #1795 @chirag04 + +3.4.3 / 2013-10-23 +================== + + * update connect + +3.4.2 / 2013-10-18 +================== + + * update connect + * downgrade commander + +3.4.1 / 2013-10-15 +================== + + * update connect + * update commander + * jsonp: check if callback is a function + * router: wrap encodeURIComponent in a try/catch #1735 (@lxe) + * res.format: now includes charset @1747 (@sorribas) + * res.links: allow multiple calls @1746 (@sorribas) + +3.4.0 / 2013-09-07 +================== + + * add res.vary(). Closes #1682 + * update connect + +3.3.8 / 2013-09-02 +================== + + * update connect + +3.3.7 / 2013-08-28 +================== + + * update connect + +3.3.6 / 2013-08-27 +================== + + * Revert "remove charset from json responses. Closes #1631" (causes issues in some clients) + * add: req.accepts take an argument list + +3.3.4 / 2013-07-08 +================== + + * update send and connect + +3.3.3 / 2013-07-04 +================== + + * update connect + +3.3.2 / 2013-07-03 +================== + + * update connect + * update send + * remove .version export + +3.3.1 / 2013-06-27 +================== + + * update connect + +3.3.0 / 2013-06-26 +================== + + * update connect + * add support for multiple X-Forwarded-Proto values. Closes #1646 + * change: remove charset from json responses. Closes #1631 + * change: return actual booleans from req.accept* functions + * fix jsonp callback array throw + +3.2.6 / 2013-06-02 +================== + + * update connect + +3.2.5 / 2013-05-21 +================== + + * update connect + * update node-cookie + * add: throw a meaningful error when there is no default engine + * change generation of ETags with res.send() to GET requests only. Closes #1619 + +3.2.4 / 2013-05-09 +================== + + * fix `req.subdomains` when no Host is present + * fix `req.host` when no Host is present, return undefined + +3.2.3 / 2013-05-07 +================== + + * update connect / qs + +3.2.2 / 2013-05-03 +================== + + * update qs + +3.2.1 / 2013-04-29 +================== + + * add app.VERB() paths array deprecation warning + * update connect + * update qs and remove all ~ semver crap + * fix: accept number as value of Signed Cookie + +3.2.0 / 2013-04-15 +================== + + * add "view" constructor setting to override view behaviour + * add req.acceptsEncoding(name) + * add req.acceptedEncodings + * revert cookie signature change causing session race conditions + * fix sorting of Accept values of the same quality + +3.1.2 / 2013-04-12 +================== + + * add support for custom Accept parameters + * update cookie-signature + +3.1.1 / 2013-04-01 +================== + + * add X-Forwarded-Host support to `req.host` + * fix relative redirects + * update mkdirp + * update buffer-crc32 + * remove legacy app.configure() method from app template. + +3.1.0 / 2013-01-25 +================== + + * add support for leading "." in "view engine" setting + * add array support to `res.set()` + * add node 0.8.x to travis.yml + * add "subdomain offset" setting for tweaking `req.subdomains` + * add `res.location(url)` implementing `res.redirect()`-like setting of Location + * use app.get() for x-powered-by setting for inheritance + * fix colons in passwords for `req.auth` + +3.0.6 / 2013-01-04 +================== + + * add http verb methods to Router + * update connect + * fix mangling of the `res.cookie()` options object + * fix jsonp whitespace escape. Closes #1132 + +3.0.5 / 2012-12-19 +================== + + * add throwing when a non-function is passed to a route + * fix: explicitly remove Transfer-Encoding header from 204 and 304 responses + * revert "add 'etag' option" + +3.0.4 / 2012-12-05 +================== + + * add 'etag' option to disable `res.send()` Etags + * add escaping of urls in text/plain in `res.redirect()` + for old browsers interpreting as html + * change crc32 module for a more liberal license + * update connect + +3.0.3 / 2012-11-13 +================== + + * update connect + * update cookie module + * fix cookie max-age + +3.0.2 / 2012-11-08 +================== + + * add OPTIONS to cors example. Closes #1398 + * fix route chaining regression. Closes #1397 + +3.0.1 / 2012-11-01 +================== + + * update connect + +3.0.0 / 2012-10-23 +================== + + * add `make clean` + * add "Basic" check to req.auth + * add `req.auth` test coverage + * add cb && cb(payload) to `res.jsonp()`. Closes #1374 + * add backwards compat for `res.redirect()` status. Closes #1336 + * add support for `res.json()` to retain previously defined Content-Types. Closes #1349 + * update connect + * change `res.redirect()` to utilize a pathname-relative Location again. Closes #1382 + * remove non-primitive string support for `res.send()` + * fix view-locals example. Closes #1370 + * fix route-separation example + +3.0.0rc5 / 2012-09-18 +================== + + * update connect + * add redis search example + * add static-files example + * add "x-powered-by" setting (`app.disable('x-powered-by')`) + * add "application/octet-stream" redirect Accept test case. Closes #1317 + +3.0.0rc4 / 2012-08-30 +================== + + * add `res.jsonp()`. Closes #1307 + * add "verbose errors" option to error-pages example + * add another route example to express(1) so people are not so confused + * add redis online user activity tracking example + * update connect dep + * fix etag quoting. Closes #1310 + * fix error-pages 404 status + * fix jsonp callback char restrictions + * remove old OPTIONS default response + +3.0.0rc3 / 2012-08-13 +================== + + * update connect dep + * fix signed cookies to work with `connect.cookieParser()` ("s:" prefix was missing) [tnydwrds] + * fix `res.render()` clobbering of "locals" + +3.0.0rc2 / 2012-08-03 +================== + + * add CORS example + * update connect dep + * deprecate `.createServer()` & remove old stale examples + * fix: escape `res.redirect()` link + * fix vhost example + +3.0.0rc1 / 2012-07-24 +================== + + * add more examples to view-locals + * add scheme-relative redirects (`res.redirect("//foo.com")`) support + * update cookie dep + * update connect dep + * update send dep + * fix `express(1)` -h flag, use -H for hogan. Closes #1245 + * fix `res.sendfile()` socket error handling regression + +3.0.0beta7 / 2012-07-16 +================== + + * update connect dep for `send()` root normalization regression + +3.0.0beta6 / 2012-07-13 +================== + + * add `err.view` property for view errors. Closes #1226 + * add "jsonp callback name" setting + * add support for "/foo/:bar*" non-greedy matches + * change `res.sendfile()` to use `send()` module + * change `res.send` to use "response-send" module + * remove `app.locals.use` and `res.locals.use`, use regular middleware + +3.0.0beta5 / 2012-07-03 +================== + + * add "make check" support + * add route-map example + * add `res.json(obj, status)` support back for BC + * add "methods" dep, remove internal methods module + * update connect dep + * update auth example to utilize cores pbkdf2 + * updated tests to use "supertest" + +3.0.0beta4 / 2012-06-25 +================== + + * Added `req.auth` + * Added `req.range(size)` + * Added `res.links(obj)` + * Added `res.send(body, status)` support back for backwards compat + * Added `.default()` support to `res.format()` + * Added 2xx / 304 check to `req.fresh` + * Revert "Added + support to the router" + * Fixed `res.send()` freshness check, respect res.statusCode + +3.0.0beta3 / 2012-06-15 +================== + + * Added hogan `--hjs` to express(1) [nullfirm] + * Added another example to content-negotiation + * Added `fresh` dep + * Changed: `res.send()` always checks freshness + * Fixed: expose connects mime module. Closes #1165 + +3.0.0beta2 / 2012-06-06 +================== + + * Added `+` support to the router + * Added `req.host` + * Changed `req.param()` to check route first + * Update connect dep + +3.0.0beta1 / 2012-06-01 +================== + + * Added `res.format()` callback to override default 406 behaviour + * Fixed `res.redirect()` 406. Closes #1154 + +3.0.0alpha5 / 2012-05-30 +================== + + * Added `req.ip` + * Added `{ signed: true }` option to `res.cookie()` + * Removed `res.signedCookie()` + * Changed: dont reverse `req.ips` + * Fixed "trust proxy" setting check for `req.ips` + +3.0.0alpha4 / 2012-05-09 +================== + + * Added: allow `[]` in jsonp callback. Closes #1128 + * Added `PORT` env var support in generated template. Closes #1118 [benatkin] + * Updated: connect 2.2.2 + +3.0.0alpha3 / 2012-05-04 +================== + + * Added public `app.routes`. Closes #887 + * Added _view-locals_ example + * Added _mvc_ example + * Added `res.locals.use()`. Closes #1120 + * Added conditional-GET support to `res.send()` + * Added: coerce `res.set()` values to strings + * Changed: moved `static()` in generated apps below router + * Changed: `res.send()` only set ETag when not previously set + * Changed connect 2.2.1 dep + * Changed: `make test` now runs unit / acceptance tests + * Fixed req/res proto inheritance + +3.0.0alpha2 / 2012-04-26 +================== + + * Added `make benchmark` back + * Added `res.send()` support for `String` objects + * Added client-side data exposing example + * Added `res.header()` and `req.header()` aliases for BC + * Added `express.createServer()` for BC + * Perf: memoize parsed urls + * Perf: connect 2.2.0 dep + * Changed: make `expressInit()` middleware self-aware + * Fixed: use app.get() for all core settings + * Fixed redis session example + * Fixed session example. Closes #1105 + * Fixed generated express dep. Closes #1078 + +3.0.0alpha1 / 2012-04-15 +================== + + * Added `app.locals.use(callback)` + * Added `app.locals` object + * Added `app.locals(obj)` + * Added `res.locals` object + * Added `res.locals(obj)` + * Added `res.format()` for content-negotiation + * Added `app.engine()` + * Added `res.cookie()` JSON cookie support + * Added "trust proxy" setting + * Added `req.subdomains` + * Added `req.protocol` + * Added `req.secure` + * Added `req.path` + * Added `req.ips` + * Added `req.fresh` + * Added `req.stale` + * Added comma-delimited / array support for `req.accepts()` + * Added debug instrumentation + * Added `res.set(obj)` + * Added `res.set(field, value)` + * Added `res.get(field)` + * Added `app.get(setting)`. Closes #842 + * Added `req.acceptsLanguage()` + * Added `req.acceptsCharset()` + * Added `req.accepted` + * Added `req.acceptedLanguages` + * Added `req.acceptedCharsets` + * Added "json replacer" setting + * Added "json spaces" setting + * Added X-Forwarded-Proto support to `res.redirect()`. Closes #92 + * Added `--less` support to express(1) + * Added `express.response` prototype + * Added `express.request` prototype + * Added `express.application` prototype + * Added `app.path()` + * Added `app.render()` + * Added `res.type()` to replace `res.contentType()` + * Changed: `res.redirect()` to add relative support + * Changed: enable "jsonp callback" by default + * Changed: renamed "case sensitive routes" to "case sensitive routing" + * Rewrite of all tests with mocha + * Removed "root" setting + * Removed `res.redirect('home')` support + * Removed `req.notify()` + * Removed `app.register()` + * Removed `app.redirect()` + * Removed `app.is()` + * Removed `app.helpers()` + * Removed `app.dynamicHelpers()` + * Fixed `res.sendfile()` with non-GET. Closes #723 + * Fixed express(1) public dir for windows. Closes #866 + +2.5.9/ 2012-04-02 +================== + + * Added support for PURGE request method [pbuyle] + * Fixed `express(1)` generated app `app.address()` before `listening` [mmalecki] + +2.5.8 / 2012-02-08 +================== + + * Update mkdirp dep. Closes #991 + +2.5.7 / 2012-02-06 +================== + + * Fixed `app.all` duplicate DELETE requests [mscdex] + +2.5.6 / 2012-01-13 +================== + + * Updated hamljs dev dep. Closes #953 + +2.5.5 / 2012-01-08 +================== + + * Fixed: set `filename` on cached templates [matthewleon] + +2.5.4 / 2012-01-02 +================== + + * Fixed `express(1)` eol on 0.4.x. Closes #947 + +2.5.3 / 2011-12-30 +================== + + * Fixed `req.is()` when a charset is present + +2.5.2 / 2011-12-10 +================== + + * Fixed: express(1) LF -> CRLF for windows + +2.5.1 / 2011-11-17 +================== + + * Changed: updated connect to 1.8.x + * Removed sass.js support from express(1) + +2.5.0 / 2011-10-24 +================== + + * Added ./routes dir for generated app by default + * Added npm install reminder to express(1) app gen + * Added 0.5.x support + * Removed `make test-cov` since it wont work with node 0.5.x + * Fixed express(1) public dir for windows. Closes #866 + +2.4.7 / 2011-10-05 +================== + + * Added mkdirp to express(1). Closes #795 + * Added simple _json-config_ example + * Added shorthand for the parsed request's pathname via `req.path` + * Changed connect dep to 1.7.x to fix npm issue... + * Fixed `res.redirect()` __HEAD__ support. [reported by xerox] + * Fixed `req.flash()`, only escape args + * Fixed absolute path checking on windows. Closes #829 [reported by andrewpmckenzie] + +2.4.6 / 2011-08-22 +================== + + * Fixed multiple param callback regression. Closes #824 [reported by TroyGoode] + +2.4.5 / 2011-08-19 +================== + + * Added support for routes to handle errors. Closes #809 + * Added `app.routes.all()`. Closes #803 + * Added "basepath" setting to work in conjunction with reverse proxies etc. + * Refactored `Route` to use a single array of callbacks + * Added support for multiple callbacks for `app.param()`. Closes #801 +Closes #805 + * Changed: removed .call(self) for route callbacks + * Dependency: `qs >= 0.3.1` + * Fixed `res.redirect()` on windows due to `join()` usage. Closes #808 + +2.4.4 / 2011-08-05 +================== + + * Fixed `res.header()` intention of a set, even when `undefined` + * Fixed `*`, value no longer required + * Fixed `res.send(204)` support. Closes #771 + +2.4.3 / 2011-07-14 +================== + + * Added docs for `status` option special-case. Closes #739 + * Fixed `options.filename`, exposing the view path to template engines + +2.4.2. / 2011-07-06 +================== + + * Revert "removed jsonp stripping" for XSS + +2.4.1 / 2011-07-06 +================== + + * Added `res.json()` JSONP support. Closes #737 + * Added _extending-templates_ example. Closes #730 + * Added "strict routing" setting for trailing slashes + * Added support for multiple envs in `app.configure()` calls. Closes #735 + * Changed: `res.send()` using `res.json()` + * Changed: when cookie `path === null` don't default it + * Changed; default cookie path to "home" setting. Closes #731 + * Removed _pids/logs_ creation from express(1) + +2.4.0 / 2011-06-28 +================== + + * Added chainable `res.status(code)` + * Added `res.json()`, an explicit version of `res.send(obj)` + * Added simple web-service example + +2.3.12 / 2011-06-22 +================== + + * \#express is now on freenode! come join! + * Added `req.get(field, param)` + * Added links to Japanese documentation, thanks @hideyukisaito! + * Added; the `express(1)` generated app outputs the env + * Added `content-negotiation` example + * Dependency: connect >= 1.5.1 < 2.0.0 + * Fixed view layout bug. Closes #720 + * Fixed; ignore body on 304. Closes #701 + +2.3.11 / 2011-06-04 +================== + + * Added `npm test` + * Removed generation of dummy test file from `express(1)` + * Fixed; `express(1)` adds express as a dep + * Fixed; prune on `prepublish` + +2.3.10 / 2011-05-27 +================== + + * Added `req.route`, exposing the current route + * Added _package.json_ generation support to `express(1)` + * Fixed call to `app.param()` function for optional params. Closes #682 + +2.3.9 / 2011-05-25 +================== + + * Fixed bug-ish with `../' in `res.partial()` calls + +2.3.8 / 2011-05-24 +================== + + * Fixed `app.options()` + +2.3.7 / 2011-05-23 +================== + + * Added route `Collection`, ex: `app.get('/user/:id').remove();` + * Added support for `app.param(fn)` to define param logic + * Removed `app.param()` support for callback with return value + * Removed module.parent check from express(1) generated app. Closes #670 + * Refactored router. Closes #639 + +2.3.6 / 2011-05-20 +================== + + * Changed; using devDependencies instead of git submodules + * Fixed redis session example + * Fixed markdown example + * Fixed view caching, should not be enabled in development + +2.3.5 / 2011-05-20 +================== + + * Added export `.view` as alias for `.View` + +2.3.4 / 2011-05-08 +================== + + * Added `./examples/say` + * Fixed `res.sendfile()` bug preventing the transfer of files with spaces + +2.3.3 / 2011-05-03 +================== + + * Added "case sensitive routes" option. + * Changed; split methods supported per rfc [slaskis] + * Fixed route-specific middleware when using the same callback function several times + +2.3.2 / 2011-04-27 +================== + + * Fixed view hints + +2.3.1 / 2011-04-26 +================== + + * Added `app.match()` as `app.match.all()` + * Added `app.lookup()` as `app.lookup.all()` + * Added `app.remove()` for `app.remove.all()` + * Added `app.remove.VERB()` + * Fixed template caching collision issue. Closes #644 + * Moved router over from connect and started refactor + +2.3.0 / 2011-04-25 +================== + + * Added options support to `res.clearCookie()` + * Added `res.helpers()` as alias of `res.locals()` + * Added; json defaults to UTF-8 with `res.send()`. Closes #632. [Daniel * Dependency `connect >= 1.4.0` + * Changed; auto set Content-Type in res.attachement [Aaron Heckmann] + * Renamed "cache views" to "view cache". Closes #628 + * Fixed caching of views when using several apps. Closes #637 + * Fixed gotcha invoking `app.param()` callbacks once per route middleware. +Closes #638 + * Fixed partial lookup precedence. Closes #631 +Shaw] + +2.2.2 / 2011-04-12 +================== + + * Added second callback support for `res.download()` connection errors + * Fixed `filename` option passing to template engine + +2.2.1 / 2011-04-04 +================== + + * Added `layout(path)` helper to change the layout within a view. Closes #610 + * Fixed `partial()` collection object support. + Previously only anything with `.length` would work. + When `.length` is present one must still be aware of holes, + however now `{ collection: {foo: 'bar'}}` is valid, exposes + `keyInCollection` and `keysInCollection`. + + * Performance improved with better view caching + * Removed `request` and `response` locals + * Changed; errorHandler page title is now `Express` instead of `Connect` + +2.2.0 / 2011-03-30 +================== + + * Added `app.lookup.VERB()`, ex `app.lookup.put('/user/:id')`. Closes #606 + * Added `app.match.VERB()`, ex `app.match.put('/user/12')`. Closes #606 + * Added `app.VERB(path)` as alias of `app.lookup.VERB()`. + * Dependency `connect >= 1.2.0` + +2.1.1 / 2011-03-29 +================== + + * Added; expose `err.view` object when failing to locate a view + * Fixed `res.partial()` call `next(err)` when no callback is given [reported by aheckmann] + * Fixed; `res.send(undefined)` responds with 204 [aheckmann] + +2.1.0 / 2011-03-24 +================== + + * Added `/_?` partial lookup support. Closes #447 + * Added `request`, `response`, and `app` local variables + * Added `settings` local variable, containing the app's settings + * Added `req.flash()` exception if `req.session` is not available + * Added `res.send(bool)` support (json response) + * Fixed stylus example for latest version + * Fixed; wrap try/catch around `res.render()` + +2.0.0 / 2011-03-17 +================== + + * Fixed up index view path alternative. + * Changed; `res.locals()` without object returns the locals + +2.0.0rc3 / 2011-03-17 +================== + + * Added `res.locals(obj)` to compliment `res.local(key, val)` + * Added `res.partial()` callback support + * Fixed recursive error reporting issue in `res.render()` + +2.0.0rc2 / 2011-03-17 +================== + + * Changed; `partial()` "locals" are now optional + * Fixed `SlowBuffer` support. Closes #584 [reported by tyrda01] + * Fixed .filename view engine option [reported by drudge] + * Fixed blog example + * Fixed `{req,res}.app` reference when mounting [Ben Weaver] + +2.0.0rc / 2011-03-14 +================== + + * Fixed; expose `HTTPSServer` constructor + * Fixed express(1) default test charset. Closes #579 [reported by secoif] + * Fixed; default charset to utf-8 instead of utf8 for lame IE [reported by NickP] + +2.0.0beta3 / 2011-03-09 +================== + + * Added support for `res.contentType()` literal + The original `res.contentType('.json')`, + `res.contentType('application/json')`, and `res.contentType('json')` + will work now. + * Added `res.render()` status option support back + * Added charset option for `res.render()` + * Added `.charset` support (via connect 1.0.4) + * Added view resolution hints when in development and a lookup fails + * Added layout lookup support relative to the page view. + For example while rendering `./views/user/index.jade` if you create + `./views/user/layout.jade` it will be used in favour of the root layout. + * Fixed `res.redirect()`. RFC states absolute url [reported by unlink] + * Fixed; default `res.send()` string charset to utf8 + * Removed `Partial` constructor (not currently used) + +2.0.0beta2 / 2011-03-07 +================== + + * Added res.render() `.locals` support back to aid in migration process + * Fixed flash example + +2.0.0beta / 2011-03-03 +================== + + * Added HTTPS support + * Added `res.cookie()` maxAge support + * Added `req.header()` _Referrer_ / _Referer_ special-case, either works + * Added mount support for `res.redirect()`, now respects the mount-point + * Added `union()` util, taking place of `merge(clone())` combo + * Added stylus support to express(1) generated app + * Added secret to session middleware used in examples and generated app + * Added `res.local(name, val)` for progressive view locals + * Added default param support to `req.param(name, default)` + * Added `app.disabled()` and `app.enabled()` + * Added `app.register()` support for omitting leading ".", either works + * Added `res.partial()`, using the same interface as `partial()` within a view. Closes #539 + * Added `app.param()` to map route params to async/sync logic + * Added; aliased `app.helpers()` as `app.locals()`. Closes #481 + * Added extname with no leading "." support to `res.contentType()` + * Added `cache views` setting, defaulting to enabled in "production" env + * Added index file partial resolution, eg: partial('user') may try _views/user/index.jade_. + * Added `req.accepts()` support for extensions + * Changed; `res.download()` and `res.sendfile()` now utilize Connect's + static file server `connect.static.send()`. + * Changed; replaced `connect.utils.mime()` with npm _mime_ module + * Changed; allow `req.query` to be pre-defined (via middleware or other parent + * Changed view partial resolution, now relative to parent view + * Changed view engine signature. no longer `engine.render(str, options, callback)`, now `engine.compile(str, options) -> Function`, the returned function accepts `fn(locals)`. + * Fixed `req.param()` bug returning Array.prototype methods. Closes #552 + * Fixed; using `Stream#pipe()` instead of `sys.pump()` in `res.sendfile()` + * Fixed; using _qs_ module instead of _querystring_ + * Fixed; strip unsafe chars from jsonp callbacks + * Removed "stream threshold" setting + +1.0.8 / 2011-03-01 +================== + + * Allow `req.query` to be pre-defined (via middleware or other parent app) + * "connect": ">= 0.5.0 < 1.0.0". Closes #547 + * Removed the long deprecated __EXPRESS_ENV__ support + +1.0.7 / 2011-02-07 +================== + + * Fixed `render()` setting inheritance. + Mounted apps would not inherit "view engine" + +1.0.6 / 2011-02-07 +================== + + * Fixed `view engine` setting bug when period is in dirname + +1.0.5 / 2011-02-05 +================== + + * Added secret to generated app `session()` call + +1.0.4 / 2011-02-05 +================== + + * Added `qs` dependency to _package.json_ + * Fixed namespaced `require()`s for latest connect support + +1.0.3 / 2011-01-13 +================== + + * Remove unsafe characters from JSONP callback names [Ryan Grove] + +1.0.2 / 2011-01-10 +================== + + * Removed nested require, using `connect.router` + +1.0.1 / 2010-12-29 +================== + + * Fixed for middleware stacked via `createServer()` + previously the `foo` middleware passed to `createServer(foo)` + would not have access to Express methods such as `res.send()` + or props like `req.query` etc. + +1.0.0 / 2010-11-16 +================== + + * Added; deduce partial object names from the last segment. + For example by default `partial('forum/post', postObject)` will + give you the _post_ object, providing a meaningful default. + * Added http status code string representation to `res.redirect()` body + * Added; `res.redirect()` supporting _text/plain_ and _text/html_ via __Accept__. + * Added `req.is()` to aid in content negotiation + * Added partial local inheritance [suggested by masylum]. Closes #102 + providing access to parent template locals. + * Added _-s, --session[s]_ flag to express(1) to add session related middleware + * Added _--template_ flag to express(1) to specify the + template engine to use. + * Added _--css_ flag to express(1) to specify the + stylesheet engine to use (or just plain css by default). + * Added `app.all()` support [thanks aheckmann] + * Added partial direct object support. + You may now `partial('user', user)` providing the "user" local, + vs previously `partial('user', { object: user })`. + * Added _route-separation_ example since many people question ways + to do this with CommonJS modules. Also view the _blog_ example for + an alternative. + * Performance; caching view path derived partial object names + * Fixed partial local inheritance precedence. [reported by Nick Poulden] Closes #454 + * Fixed jsonp support; _text/javascript_ as per mailinglist discussion + +1.0.0rc4 / 2010-10-14 +================== + + * Added _NODE_ENV_ support, _EXPRESS_ENV_ is deprecated and will be removed in 1.0.0 + * Added route-middleware support (very helpful, see the [docs](http://expressjs.com/guide.html#Route-Middleware)) + * Added _jsonp callback_ setting to enable/disable jsonp autowrapping [Dav Glass] + * Added callback query check on response.send to autowrap JSON objects for simple webservice implementations [Dav Glass] + * Added `partial()` support for array-like collections. Closes #434 + * Added support for swappable querystring parsers + * Added session usage docs. Closes #443 + * Added dynamic helper caching. Closes #439 [suggested by maritz] + * Added authentication example + * Added basic Range support to `res.sendfile()` (and `res.download()` etc) + * Changed; `express(1)` generated app using 2 spaces instead of 4 + * Default env to "development" again [aheckmann] + * Removed _context_ option is no more, use "scope" + * Fixed; exposing _./support_ libs to examples so they can run without installs + * Fixed mvc example + +1.0.0rc3 / 2010-09-20 +================== + + * Added confirmation for `express(1)` app generation. Closes #391 + * Added extending of flash formatters via `app.flashFormatters` + * Added flash formatter support. Closes #411 + * Added streaming support to `res.sendfile()` using `sys.pump()` when >= "stream threshold" + * Added _stream threshold_ setting for `res.sendfile()` + * Added `res.send()` __HEAD__ support + * Added `res.clearCookie()` + * Added `res.cookie()` + * Added `res.render()` headers option + * Added `res.redirect()` response bodies + * Added `res.render()` status option support. Closes #425 [thanks aheckmann] + * Fixed `res.sendfile()` responding with 403 on malicious path + * Fixed `res.download()` bug; when an error occurs remove _Content-Disposition_ + * Fixed; mounted apps settings now inherit from parent app [aheckmann] + * Fixed; stripping Content-Length / Content-Type when 204 + * Fixed `res.send()` 204. Closes #419 + * Fixed multiple _Set-Cookie_ headers via `res.header()`. Closes #402 + * Fixed bug messing with error handlers when `listenFD()` is called instead of `listen()`. [thanks guillermo] + + +1.0.0rc2 / 2010-08-17 +================== + + * Added `app.register()` for template engine mapping. Closes #390 + * Added `res.render()` callback support as second argument (no options) + * Added callback support to `res.download()` + * Added callback support for `res.sendfile()` + * Added support for middleware access via `express.middlewareName()` vs `connect.middlewareName()` + * Added "partials" setting to docs + * Added default expresso tests to `express(1)` generated app. Closes #384 + * Fixed `res.sendfile()` error handling, defer via `next()` + * Fixed `res.render()` callback when a layout is used [thanks guillermo] + * Fixed; `make install` creating ~/.node_libraries when not present + * Fixed issue preventing error handlers from being defined anywhere. Closes #387 + +1.0.0rc / 2010-07-28 +================== + + * Added mounted hook. Closes #369 + * Added connect dependency to _package.json_ + + * Removed "reload views" setting and support code + development env never caches, production always caches. + + * Removed _param_ in route callbacks, signature is now + simply (req, res, next), previously (req, res, params, next). + Use _req.params_ for path captures, _req.query_ for GET params. + + * Fixed "home" setting + * Fixed middleware/router precedence issue. Closes #366 + * Fixed; _configure()_ callbacks called immediately. Closes #368 + +1.0.0beta2 / 2010-07-23 +================== + + * Added more examples + * Added; exporting `Server` constructor + * Added `Server#helpers()` for view locals + * Added `Server#dynamicHelpers()` for dynamic view locals. Closes #349 + * Added support for absolute view paths + * Added; _home_ setting defaults to `Server#route` for mounted apps. Closes #363 + * Added Guillermo Rauch to the contributor list + * Added support for "as" for non-collection partials. Closes #341 + * Fixed _install.sh_, ensuring _~/.node_libraries_ exists. Closes #362 [thanks jf] + * Fixed `res.render()` exceptions, now passed to `next()` when no callback is given [thanks guillermo] + * Fixed instanceof `Array` checks, now `Array.isArray()` + * Fixed express(1) expansion of public dirs. Closes #348 + * Fixed middleware precedence. Closes #345 + * Fixed view watcher, now async [thanks aheckmann] + +1.0.0beta / 2010-07-15 +================== + + * Re-write + - much faster + - much lighter + - Check [ExpressJS.com](http://expressjs.com) for migration guide and updated docs + +0.14.0 / 2010-06-15 +================== + + * Utilize relative requires + * Added Static bufferSize option [aheckmann] + * Fixed caching of view and partial subdirectories [aheckmann] + * Fixed mime.type() comments now that ".ext" is not supported + * Updated haml submodule + * Updated class submodule + * Removed bin/express + +0.13.0 / 2010-06-01 +================== + + * Added node v0.1.97 compatibility + * Added support for deleting cookies via Request#cookie('key', null) + * Updated haml submodule + * Fixed not-found page, now using using charset utf-8 + * Fixed show-exceptions page, now using using charset utf-8 + * Fixed view support due to fs.readFile Buffers + * Changed; mime.type() no longer accepts ".type" due to node extname() changes + +0.12.0 / 2010-05-22 +================== + + * Added node v0.1.96 compatibility + * Added view `helpers` export which act as additional local variables + * Updated haml submodule + * Changed ETag; removed inode, modified time only + * Fixed LF to CRLF for setting multiple cookies + * Fixed cookie compilation; values are now urlencoded + * Fixed cookies parsing; accepts quoted values and url escaped cookies + +0.11.0 / 2010-05-06 +================== + + * Added support for layouts using different engines + - this.render('page.html.haml', { layout: 'super-cool-layout.html.ejs' }) + - this.render('page.html.haml', { layout: 'foo' }) // assumes 'foo.html.haml' + - this.render('page.html.haml', { layout: false }) // no layout + * Updated ext submodule + * Updated haml submodule + * Fixed EJS partial support by passing along the context. Issue #307 + +0.10.1 / 2010-05-03 +================== + + * Fixed binary uploads. + +0.10.0 / 2010-04-30 +================== + + * Added charset support via Request#charset (automatically assigned to 'UTF-8' when respond()'s + encoding is set to 'utf8' or 'utf-8'. + * Added "encoding" option to Request#render(). Closes #299 + * Added "dump exceptions" setting, which is enabled by default. + * Added simple ejs template engine support + * Added error response support for text/plain, application/json. Closes #297 + * Added callback function param to Request#error() + * Added Request#sendHead() + * Added Request#stream() + * Added support for Request#respond(304, null) for empty response bodies + * Added ETag support to Request#sendfile() + * Added options to Request#sendfile(), passed to fs.createReadStream() + * Added filename arg to Request#download() + * Performance enhanced due to pre-reversing plugins so that plugins.reverse() is not called on each request + * Performance enhanced by preventing several calls to toLowerCase() in Router#match() + * Changed; Request#sendfile() now streams + * Changed; Renamed Request#halt() to Request#respond(). Closes #289 + * Changed; Using sys.inspect() instead of JSON.encode() for error output + * Changed; run() returns the http.Server instance. Closes #298 + * Changed; Defaulting Server#host to null (INADDR_ANY) + * Changed; Logger "common" format scale of 0.4f + * Removed Logger "request" format + * Fixed; Catching ENOENT in view caching, preventing error when "views/partials" is not found + * Fixed several issues with http client + * Fixed Logger Content-Length output + * Fixed bug preventing Opera from retaining the generated session id. Closes #292 + +0.9.0 / 2010-04-14 +================== + + * Added DSL level error() route support + * Added DSL level notFound() route support + * Added Request#error() + * Added Request#notFound() + * Added Request#render() callback function. Closes #258 + * Added "max upload size" setting + * Added "magic" variables to collection partials (\_\_index\_\_, \_\_length\_\_, \_\_isFirst\_\_, \_\_isLast\_\_). Closes #254 + * Added [haml.js](http://github.com/visionmedia/haml.js) submodule; removed haml-js + * Added callback function support to Request#halt() as 3rd/4th arg + * Added preprocessing of route param wildcards using param(). Closes #251 + * Added view partial support (with collections etc) + * Fixed bug preventing falsey params (such as ?page=0). Closes #286 + * Fixed setting of multiple cookies. Closes #199 + * Changed; view naming convention is now NAME.TYPE.ENGINE (for example page.html.haml) + * Changed; session cookie is now httpOnly + * Changed; Request is no longer global + * Changed; Event is no longer global + * Changed; "sys" module is no longer global + * Changed; moved Request#download to Static plugin where it belongs + * Changed; Request instance created before body parsing. Closes #262 + * Changed; Pre-caching views in memory when "cache view contents" is enabled. Closes #253 + * Changed; Pre-caching view partials in memory when "cache view partials" is enabled + * Updated support to node --version 0.1.90 + * Updated dependencies + * Removed set("session cookie") in favour of use(Session, { cookie: { ... }}) + * Removed utils.mixin(); use Object#mergeDeep() + +0.8.0 / 2010-03-19 +================== + + * Added coffeescript example app. Closes #242 + * Changed; cache api now async friendly. Closes #240 + * Removed deprecated 'express/static' support. Use 'express/plugins/static' + +0.7.6 / 2010-03-19 +================== + + * Added Request#isXHR. Closes #229 + * Added `make install` (for the executable) + * Added `express` executable for setting up simple app templates + * Added "GET /public/*" to Static plugin, defaulting to /public + * Added Static plugin + * Fixed; Request#render() only calls cache.get() once + * Fixed; Namespacing View caches with "view:" + * Fixed; Namespacing Static caches with "static:" + * Fixed; Both example apps now use the Static plugin + * Fixed set("views"). Closes #239 + * Fixed missing space for combined log format + * Deprecated Request#sendfile() and 'express/static' + * Removed Server#running + +0.7.5 / 2010-03-16 +================== + + * Added Request#flash() support without args, now returns all flashes + * Updated ext submodule + +0.7.4 / 2010-03-16 +================== + + * Fixed session reaper + * Changed; class.js replacing js-oo Class implementation (quite a bit faster, no browser cruft) + +0.7.3 / 2010-03-16 +================== + + * Added package.json + * Fixed requiring of haml / sass due to kiwi removal + +0.7.2 / 2010-03-16 +================== + + * Fixed GIT submodules (HAH!) + +0.7.1 / 2010-03-16 +================== + + * Changed; Express now using submodules again until a PM is adopted + * Changed; chat example using millisecond conversions from ext + +0.7.0 / 2010-03-15 +================== + + * Added Request#pass() support (finds the next matching route, or the given path) + * Added Logger plugin (default "common" format replaces CommonLogger) + * Removed Profiler plugin + * Removed CommonLogger plugin + +0.6.0 / 2010-03-11 +================== + + * Added seed.yml for kiwi package management support + * Added HTTP client query string support when method is GET. Closes #205 + + * Added support for arbitrary view engines. + For example "foo.engine.html" will now require('engine'), + the exports from this module are cached after the first require(). + + * Added async plugin support + + * Removed usage of RESTful route funcs as http client + get() etc, use http.get() and friends + + * Removed custom exceptions + +0.5.0 / 2010-03-10 +================== + + * Added ext dependency (library of js extensions) + * Removed extname() / basename() utils. Use path module + * Removed toArray() util. Use arguments.values + * Removed escapeRegexp() util. Use RegExp.escape() + * Removed process.mixin() dependency. Use utils.mixin() + * Removed Collection + * Removed ElementCollection + * Shameless self promotion of ebook "Advanced JavaScript" (http://dev-mag.com) ;) + +0.4.0 / 2010-02-11 +================== + + * Added flash() example to sample upload app + * Added high level restful http client module (express/http) + * Changed; RESTful route functions double as HTTP clients. Closes #69 + * Changed; throwing error when routes are added at runtime + * Changed; defaulting render() context to the current Request. Closes #197 + * Updated haml submodule + +0.3.0 / 2010-02-11 +================== + + * Updated haml / sass submodules. Closes #200 + * Added flash message support. Closes #64 + * Added accepts() now allows multiple args. fixes #117 + * Added support for plugins to halt. Closes #189 + * Added alternate layout support. Closes #119 + * Removed Route#run(). Closes #188 + * Fixed broken specs due to use(Cookie) missing + +0.2.1 / 2010-02-05 +================== + + * Added "plot" format option for Profiler (for gnuplot processing) + * Added request number to Profiler plugin + * Fixed binary encoding for multipart file uploads, was previously defaulting to UTF8 + * Fixed issue with routes not firing when not files are present. Closes #184 + * Fixed process.Promise -> events.Promise + +0.2.0 / 2010-02-03 +================== + + * Added parseParam() support for name[] etc. (allows for file inputs with "multiple" attr) Closes #180 + * Added Both Cache and Session option "reapInterval" may be "reapEvery". Closes #174 + * Added expiration support to cache api with reaper. Closes #133 + * Added cache Store.Memory#reap() + * Added Cache; cache api now uses first class Cache instances + * Added abstract session Store. Closes #172 + * Changed; cache Memory.Store#get() utilizing Collection + * Renamed MemoryStore -> Store.Memory + * Fixed use() of the same plugin several time will always use latest options. Closes #176 + +0.1.0 / 2010-02-03 +================== + + * Changed; Hooks (before / after) pass request as arg as well as evaluated in their context + * Updated node support to 0.1.27 Closes #169 + * Updated dirname(__filename) -> __dirname + * Updated libxmljs support to v0.2.0 + * Added session support with memory store / reaping + * Added quick uid() helper + * Added multi-part upload support + * Added Sass.js support / submodule + * Added production env caching view contents and static files + * Added static file caching. Closes #136 + * Added cache plugin with memory stores + * Added support to StaticFile so that it works with non-textual files. + * Removed dirname() helper + * Removed several globals (now their modules must be required) + +0.0.2 / 2010-01-10 +================== + + * Added view benchmarks; currently haml vs ejs + * Added Request#attachment() specs. Closes #116 + * Added use of node's parseQuery() util. Closes #123 + * Added `make init` for submodules + * Updated Haml + * Updated sample chat app to show messages on load + * Updated libxmljs parseString -> parseHtmlString + * Fixed `make init` to work with older versions of git + * Fixed specs can now run independent specs for those who can't build deps. Closes #127 + * Fixed issues introduced by the node url module changes. Closes 126. + * Fixed two assertions failing due to Collection#keys() returning strings + * Fixed faulty Collection#toArray() spec due to keys() returning strings + * Fixed `make test` now builds libxmljs.node before testing + +0.0.1 / 2010-01-03 +================== + + * Initial release diff --git a/node_modules/express/LICENSE b/node_modules/express/LICENSE new file mode 100644 index 000000000..aa927e44e --- /dev/null +++ b/node_modules/express/LICENSE @@ -0,0 +1,24 @@ +(The MIT License) + +Copyright (c) 2009-2014 TJ Holowaychuk +Copyright (c) 2013-2014 Roman Shtylman +Copyright (c) 2014-2015 Douglas Christopher Wilson + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +'Software'), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/node_modules/express/Readme.md b/node_modules/express/Readme.md new file mode 100644 index 000000000..720bf3892 --- /dev/null +++ b/node_modules/express/Readme.md @@ -0,0 +1,166 @@ +[![Express Logo](https://i.cloudup.com/zfY6lL7eFa-3000x3000.png)](http://expressjs.com/) + + Fast, unopinionated, minimalist web framework for [node](http://nodejs.org). + + [![NPM Version][npm-version-image]][npm-url] + [![NPM Install Size][npm-install-size-image]][npm-install-size-url] + [![NPM Downloads][npm-downloads-image]][npm-downloads-url] + +```js +const express = require('express') +const app = express() + +app.get('/', function (req, res) { + res.send('Hello World') +}) + +app.listen(3000) +``` + +## Installation + +This is a [Node.js](https://nodejs.org/en/) module available through the +[npm registry](https://www.npmjs.com/). + +Before installing, [download and install Node.js](https://nodejs.org/en/download/). +Node.js 0.10 or higher is required. + +If this is a brand new project, make sure to create a `package.json` first with +the [`npm init` command](https://docs.npmjs.com/creating-a-package-json-file). + +Installation is done using the +[`npm install` command](https://docs.npmjs.com/getting-started/installing-npm-packages-locally): + +```console +$ npm install express +``` + +Follow [our installing guide](http://expressjs.com/en/starter/installing.html) +for more information. + +## Features + + * Robust routing + * Focus on high performance + * Super-high test coverage + * HTTP helpers (redirection, caching, etc) + * View system supporting 14+ template engines + * Content negotiation + * Executable for generating applications quickly + +## Docs & Community + + * [Website and Documentation](http://expressjs.com/) - [[website repo](https://github.com/expressjs/expressjs.com)] + * [#express](https://webchat.freenode.net/?channels=express) on freenode IRC + * [GitHub Organization](https://github.com/expressjs) for Official Middleware & Modules + * Visit the [Wiki](https://github.com/expressjs/express/wiki) + * [Google Group](https://groups.google.com/group/express-js) for discussion + * [Gitter](https://gitter.im/expressjs/express) for support and discussion + +**PROTIP** Be sure to read [Migrating from 3.x to 4.x](https://github.com/expressjs/express/wiki/Migrating-from-3.x-to-4.x) as well as [New features in 4.x](https://github.com/expressjs/express/wiki/New-features-in-4.x). + +## Quick Start + + The quickest way to get started with express is to utilize the executable [`express(1)`](https://github.com/expressjs/generator) to generate an application as shown below: + + Install the executable. The executable's major version will match Express's: + +```console +$ npm install -g express-generator@4 +``` + + Create the app: + +```console +$ express /tmp/foo && cd /tmp/foo +``` + + Install dependencies: + +```console +$ npm install +``` + + Start the server: + +```console +$ npm start +``` + + View the website at: http://localhost:3000 + +## Philosophy + + The Express philosophy is to provide small, robust tooling for HTTP servers, making + it a great solution for single page applications, websites, hybrids, or public + HTTP APIs. + + Express does not force you to use any specific ORM or template engine. With support for over + 14 template engines via [Consolidate.js](https://github.com/tj/consolidate.js), + you can quickly craft your perfect framework. + +## Examples + + To view the examples, clone the Express repo and install the dependencies: + +```console +$ git clone git://github.com/expressjs/express.git --depth 1 +$ cd express +$ npm install +``` + + Then run whichever example you want: + +```console +$ node examples/content-negotiation +``` + +## Contributing + + [![Linux Build][github-actions-ci-image]][github-actions-ci-url] + [![Windows Build][appveyor-image]][appveyor-url] + [![Test Coverage][coveralls-image]][coveralls-url] + +The Express.js project welcomes all constructive contributions. Contributions take many forms, +from code for bug fixes and enhancements, to additions and fixes to documentation, additional +tests, triaging incoming pull requests and issues, and more! + +See the [Contributing Guide](Contributing.md) for more technical details on contributing. + +### Security Issues + +If you discover a security vulnerability in Express, please see [Security Policies and Procedures](Security.md). + +### Running Tests + +To run the test suite, first install the dependencies, then run `npm test`: + +```console +$ npm install +$ npm test +``` + +## People + +The original author of Express is [TJ Holowaychuk](https://github.com/tj) + +The current lead maintainer is [Douglas Christopher Wilson](https://github.com/dougwilson) + +[List of all contributors](https://github.com/expressjs/express/graphs/contributors) + +## License + + [MIT](LICENSE) + +[appveyor-image]: https://badgen.net/appveyor/ci/dougwilson/express/master?label=windows +[appveyor-url]: https://ci.appveyor.com/project/dougwilson/express +[coveralls-image]: https://badgen.net/coveralls/c/github/expressjs/express/master +[coveralls-url]: https://coveralls.io/r/expressjs/express?branch=master +[github-actions-ci-image]: https://badgen.net/github/checks/expressjs/express/master?label=linux +[github-actions-ci-url]: https://github.com/expressjs/express/actions/workflows/ci.yml +[npm-downloads-image]: https://badgen.net/npm/dm/express +[npm-downloads-url]: https://npmcharts.com/compare/express?minimal=true +[npm-install-size-image]: https://badgen.net/packagephobia/install/express +[npm-install-size-url]: https://packagephobia.com/result?p=express +[npm-url]: https://npmjs.org/package/express +[npm-version-image]: https://badgen.net/npm/v/express diff --git a/node_modules/express/index.js b/node_modules/express/index.js new file mode 100644 index 000000000..d219b0c87 --- /dev/null +++ b/node_modules/express/index.js @@ -0,0 +1,11 @@ +/*! + * express + * Copyright(c) 2009-2013 TJ Holowaychuk + * Copyright(c) 2013 Roman Shtylman + * Copyright(c) 2014-2015 Douglas Christopher Wilson + * MIT Licensed + */ + +'use strict'; + +module.exports = require('./lib/express'); diff --git a/node_modules/express/lib/application.js b/node_modules/express/lib/application.js new file mode 100644 index 000000000..ebb30b51b --- /dev/null +++ b/node_modules/express/lib/application.js @@ -0,0 +1,661 @@ +/*! + * express + * Copyright(c) 2009-2013 TJ Holowaychuk + * Copyright(c) 2013 Roman Shtylman + * Copyright(c) 2014-2015 Douglas Christopher Wilson + * MIT Licensed + */ + +'use strict'; + +/** + * Module dependencies. + * @private + */ + +var finalhandler = require('finalhandler'); +var Router = require('./router'); +var methods = require('methods'); +var middleware = require('./middleware/init'); +var query = require('./middleware/query'); +var debug = require('debug')('express:application'); +var View = require('./view'); +var http = require('http'); +var compileETag = require('./utils').compileETag; +var compileQueryParser = require('./utils').compileQueryParser; +var compileTrust = require('./utils').compileTrust; +var deprecate = require('depd')('express'); +var flatten = require('array-flatten'); +var merge = require('utils-merge'); +var resolve = require('path').resolve; +var setPrototypeOf = require('setprototypeof') + +/** + * Module variables. + * @private + */ + +var hasOwnProperty = Object.prototype.hasOwnProperty +var slice = Array.prototype.slice; + +/** + * Application prototype. + */ + +var app = exports = module.exports = {}; + +/** + * Variable for trust proxy inheritance back-compat + * @private + */ + +var trustProxyDefaultSymbol = '@@symbol:trust_proxy_default'; + +/** + * Initialize the server. + * + * - setup default configuration + * - setup default middleware + * - setup route reflection methods + * + * @private + */ + +app.init = function init() { + this.cache = {}; + this.engines = {}; + this.settings = {}; + + this.defaultConfiguration(); +}; + +/** + * Initialize application configuration. + * @private + */ + +app.defaultConfiguration = function defaultConfiguration() { + var env = process.env.NODE_ENV || 'development'; + + // default settings + this.enable('x-powered-by'); + this.set('etag', 'weak'); + this.set('env', env); + this.set('query parser', 'extended'); + this.set('subdomain offset', 2); + this.set('trust proxy', false); + + // trust proxy inherit back-compat + Object.defineProperty(this.settings, trustProxyDefaultSymbol, { + configurable: true, + value: true + }); + + debug('booting in %s mode', env); + + this.on('mount', function onmount(parent) { + // inherit trust proxy + if (this.settings[trustProxyDefaultSymbol] === true + && typeof parent.settings['trust proxy fn'] === 'function') { + delete this.settings['trust proxy']; + delete this.settings['trust proxy fn']; + } + + // inherit protos + setPrototypeOf(this.request, parent.request) + setPrototypeOf(this.response, parent.response) + setPrototypeOf(this.engines, parent.engines) + setPrototypeOf(this.settings, parent.settings) + }); + + // setup locals + this.locals = Object.create(null); + + // top-most app is mounted at / + this.mountpath = '/'; + + // default locals + this.locals.settings = this.settings; + + // default configuration + this.set('view', View); + this.set('views', resolve('views')); + this.set('jsonp callback name', 'callback'); + + if (env === 'production') { + this.enable('view cache'); + } + + Object.defineProperty(this, 'router', { + get: function() { + throw new Error('\'app.router\' is deprecated!\nPlease see the 3.x to 4.x migration guide for details on how to update your app.'); + } + }); +}; + +/** + * lazily adds the base router if it has not yet been added. + * + * We cannot add the base router in the defaultConfiguration because + * it reads app settings which might be set after that has run. + * + * @private + */ +app.lazyrouter = function lazyrouter() { + if (!this._router) { + this._router = new Router({ + caseSensitive: this.enabled('case sensitive routing'), + strict: this.enabled('strict routing') + }); + + this._router.use(query(this.get('query parser fn'))); + this._router.use(middleware.init(this)); + } +}; + +/** + * Dispatch a req, res pair into the application. Starts pipeline processing. + * + * If no callback is provided, then default error handlers will respond + * in the event of an error bubbling through the stack. + * + * @private + */ + +app.handle = function handle(req, res, callback) { + var router = this._router; + + // final handler + var done = callback || finalhandler(req, res, { + env: this.get('env'), + onerror: logerror.bind(this) + }); + + // no routes + if (!router) { + debug('no routes defined on app'); + done(); + return; + } + + router.handle(req, res, done); +}; + +/** + * Proxy `Router#use()` to add middleware to the app router. + * See Router#use() documentation for details. + * + * If the _fn_ parameter is an express app, then it will be + * mounted at the _route_ specified. + * + * @public + */ + +app.use = function use(fn) { + var offset = 0; + var path = '/'; + + // default path to '/' + // disambiguate app.use([fn]) + if (typeof fn !== 'function') { + var arg = fn; + + while (Array.isArray(arg) && arg.length !== 0) { + arg = arg[0]; + } + + // first arg is the path + if (typeof arg !== 'function') { + offset = 1; + path = fn; + } + } + + var fns = flatten(slice.call(arguments, offset)); + + if (fns.length === 0) { + throw new TypeError('app.use() requires a middleware function') + } + + // setup router + this.lazyrouter(); + var router = this._router; + + fns.forEach(function (fn) { + // non-express app + if (!fn || !fn.handle || !fn.set) { + return router.use(path, fn); + } + + debug('.use app under %s', path); + fn.mountpath = path; + fn.parent = this; + + // restore .app property on req and res + router.use(path, function mounted_app(req, res, next) { + var orig = req.app; + fn.handle(req, res, function (err) { + setPrototypeOf(req, orig.request) + setPrototypeOf(res, orig.response) + next(err); + }); + }); + + // mounted an app + fn.emit('mount', this); + }, this); + + return this; +}; + +/** + * Proxy to the app `Router#route()` + * Returns a new `Route` instance for the _path_. + * + * Routes are isolated middleware stacks for specific paths. + * See the Route api docs for details. + * + * @public + */ + +app.route = function route(path) { + this.lazyrouter(); + return this._router.route(path); +}; + +/** + * Register the given template engine callback `fn` + * as `ext`. + * + * By default will `require()` the engine based on the + * file extension. For example if you try to render + * a "foo.ejs" file Express will invoke the following internally: + * + * app.engine('ejs', require('ejs').__express); + * + * For engines that do not provide `.__express` out of the box, + * or if you wish to "map" a different extension to the template engine + * you may use this method. For example mapping the EJS template engine to + * ".html" files: + * + * app.engine('html', require('ejs').renderFile); + * + * In this case EJS provides a `.renderFile()` method with + * the same signature that Express expects: `(path, options, callback)`, + * though note that it aliases this method as `ejs.__express` internally + * so if you're using ".ejs" extensions you don't need to do anything. + * + * Some template engines do not follow this convention, the + * [Consolidate.js](https://github.com/tj/consolidate.js) + * library was created to map all of node's popular template + * engines to follow this convention, thus allowing them to + * work seamlessly within Express. + * + * @param {String} ext + * @param {Function} fn + * @return {app} for chaining + * @public + */ + +app.engine = function engine(ext, fn) { + if (typeof fn !== 'function') { + throw new Error('callback function required'); + } + + // get file extension + var extension = ext[0] !== '.' + ? '.' + ext + : ext; + + // store engine + this.engines[extension] = fn; + + return this; +}; + +/** + * Proxy to `Router#param()` with one added api feature. The _name_ parameter + * can be an array of names. + * + * See the Router#param() docs for more details. + * + * @param {String|Array} name + * @param {Function} fn + * @return {app} for chaining + * @public + */ + +app.param = function param(name, fn) { + this.lazyrouter(); + + if (Array.isArray(name)) { + for (var i = 0; i < name.length; i++) { + this.param(name[i], fn); + } + + return this; + } + + this._router.param(name, fn); + + return this; +}; + +/** + * Assign `setting` to `val`, or return `setting`'s value. + * + * app.set('foo', 'bar'); + * app.set('foo'); + * // => "bar" + * + * Mounted servers inherit their parent server's settings. + * + * @param {String} setting + * @param {*} [val] + * @return {Server} for chaining + * @public + */ + +app.set = function set(setting, val) { + if (arguments.length === 1) { + // app.get(setting) + var settings = this.settings + + while (settings && settings !== Object.prototype) { + if (hasOwnProperty.call(settings, setting)) { + return settings[setting] + } + + settings = Object.getPrototypeOf(settings) + } + + return undefined + } + + debug('set "%s" to %o', setting, val); + + // set value + this.settings[setting] = val; + + // trigger matched settings + switch (setting) { + case 'etag': + this.set('etag fn', compileETag(val)); + break; + case 'query parser': + this.set('query parser fn', compileQueryParser(val)); + break; + case 'trust proxy': + this.set('trust proxy fn', compileTrust(val)); + + // trust proxy inherit back-compat + Object.defineProperty(this.settings, trustProxyDefaultSymbol, { + configurable: true, + value: false + }); + + break; + } + + return this; +}; + +/** + * Return the app's absolute pathname + * based on the parent(s) that have + * mounted it. + * + * For example if the application was + * mounted as "/admin", which itself + * was mounted as "/blog" then the + * return value would be "/blog/admin". + * + * @return {String} + * @private + */ + +app.path = function path() { + return this.parent + ? this.parent.path() + this.mountpath + : ''; +}; + +/** + * Check if `setting` is enabled (truthy). + * + * app.enabled('foo') + * // => false + * + * app.enable('foo') + * app.enabled('foo') + * // => true + * + * @param {String} setting + * @return {Boolean} + * @public + */ + +app.enabled = function enabled(setting) { + return Boolean(this.set(setting)); +}; + +/** + * Check if `setting` is disabled. + * + * app.disabled('foo') + * // => true + * + * app.enable('foo') + * app.disabled('foo') + * // => false + * + * @param {String} setting + * @return {Boolean} + * @public + */ + +app.disabled = function disabled(setting) { + return !this.set(setting); +}; + +/** + * Enable `setting`. + * + * @param {String} setting + * @return {app} for chaining + * @public + */ + +app.enable = function enable(setting) { + return this.set(setting, true); +}; + +/** + * Disable `setting`. + * + * @param {String} setting + * @return {app} for chaining + * @public + */ + +app.disable = function disable(setting) { + return this.set(setting, false); +}; + +/** + * Delegate `.VERB(...)` calls to `router.VERB(...)`. + */ + +methods.forEach(function(method){ + app[method] = function(path){ + if (method === 'get' && arguments.length === 1) { + // app.get(setting) + return this.set(path); + } + + this.lazyrouter(); + + var route = this._router.route(path); + route[method].apply(route, slice.call(arguments, 1)); + return this; + }; +}); + +/** + * Special-cased "all" method, applying the given route `path`, + * middleware, and callback to _every_ HTTP method. + * + * @param {String} path + * @param {Function} ... + * @return {app} for chaining + * @public + */ + +app.all = function all(path) { + this.lazyrouter(); + + var route = this._router.route(path); + var args = slice.call(arguments, 1); + + for (var i = 0; i < methods.length; i++) { + route[methods[i]].apply(route, args); + } + + return this; +}; + +// del -> delete alias + +app.del = deprecate.function(app.delete, 'app.del: Use app.delete instead'); + +/** + * Render the given view `name` name with `options` + * and a callback accepting an error and the + * rendered template string. + * + * Example: + * + * app.render('email', { name: 'Tobi' }, function(err, html){ + * // ... + * }) + * + * @param {String} name + * @param {Object|Function} options or fn + * @param {Function} callback + * @public + */ + +app.render = function render(name, options, callback) { + var cache = this.cache; + var done = callback; + var engines = this.engines; + var opts = options; + var renderOptions = {}; + var view; + + // support callback function as second arg + if (typeof options === 'function') { + done = options; + opts = {}; + } + + // merge app.locals + merge(renderOptions, this.locals); + + // merge options._locals + if (opts._locals) { + merge(renderOptions, opts._locals); + } + + // merge options + merge(renderOptions, opts); + + // set .cache unless explicitly provided + if (renderOptions.cache == null) { + renderOptions.cache = this.enabled('view cache'); + } + + // primed cache + if (renderOptions.cache) { + view = cache[name]; + } + + // view + if (!view) { + var View = this.get('view'); + + view = new View(name, { + defaultEngine: this.get('view engine'), + root: this.get('views'), + engines: engines + }); + + if (!view.path) { + var dirs = Array.isArray(view.root) && view.root.length > 1 + ? 'directories "' + view.root.slice(0, -1).join('", "') + '" or "' + view.root[view.root.length - 1] + '"' + : 'directory "' + view.root + '"' + var err = new Error('Failed to lookup view "' + name + '" in views ' + dirs); + err.view = view; + return done(err); + } + + // prime the cache + if (renderOptions.cache) { + cache[name] = view; + } + } + + // render + tryRender(view, renderOptions, done); +}; + +/** + * Listen for connections. + * + * A node `http.Server` is returned, with this + * application (which is a `Function`) as its + * callback. If you wish to create both an HTTP + * and HTTPS server you may do so with the "http" + * and "https" modules as shown here: + * + * var http = require('http') + * , https = require('https') + * , express = require('express') + * , app = express(); + * + * http.createServer(app).listen(80); + * https.createServer({ ... }, app).listen(443); + * + * @return {http.Server} + * @public + */ + +app.listen = function listen() { + var server = http.createServer(this); + return server.listen.apply(server, arguments); +}; + +/** + * Log error using console.error. + * + * @param {Error} err + * @private + */ + +function logerror(err) { + /* istanbul ignore next */ + if (this.get('env') !== 'test') console.error(err.stack || err.toString()); +} + +/** + * Try rendering a view. + * @private + */ + +function tryRender(view, options, callback) { + try { + view.render(options, callback); + } catch (err) { + callback(err); + } +} diff --git a/node_modules/express/lib/express.js b/node_modules/express/lib/express.js new file mode 100644 index 000000000..d188a16db --- /dev/null +++ b/node_modules/express/lib/express.js @@ -0,0 +1,116 @@ +/*! + * express + * Copyright(c) 2009-2013 TJ Holowaychuk + * Copyright(c) 2013 Roman Shtylman + * Copyright(c) 2014-2015 Douglas Christopher Wilson + * MIT Licensed + */ + +'use strict'; + +/** + * Module dependencies. + */ + +var bodyParser = require('body-parser') +var EventEmitter = require('events').EventEmitter; +var mixin = require('merge-descriptors'); +var proto = require('./application'); +var Route = require('./router/route'); +var Router = require('./router'); +var req = require('./request'); +var res = require('./response'); + +/** + * Expose `createApplication()`. + */ + +exports = module.exports = createApplication; + +/** + * Create an express application. + * + * @return {Function} + * @api public + */ + +function createApplication() { + var app = function(req, res, next) { + app.handle(req, res, next); + }; + + mixin(app, EventEmitter.prototype, false); + mixin(app, proto, false); + + // expose the prototype that will get set on requests + app.request = Object.create(req, { + app: { configurable: true, enumerable: true, writable: true, value: app } + }) + + // expose the prototype that will get set on responses + app.response = Object.create(res, { + app: { configurable: true, enumerable: true, writable: true, value: app } + }) + + app.init(); + return app; +} + +/** + * Expose the prototypes. + */ + +exports.application = proto; +exports.request = req; +exports.response = res; + +/** + * Expose constructors. + */ + +exports.Route = Route; +exports.Router = Router; + +/** + * Expose middleware + */ + +exports.json = bodyParser.json +exports.query = require('./middleware/query'); +exports.raw = bodyParser.raw +exports.static = require('serve-static'); +exports.text = bodyParser.text +exports.urlencoded = bodyParser.urlencoded + +/** + * Replace removed middleware with an appropriate error message. + */ + +var removedMiddlewares = [ + 'bodyParser', + 'compress', + 'cookieSession', + 'session', + 'logger', + 'cookieParser', + 'favicon', + 'responseTime', + 'errorHandler', + 'timeout', + 'methodOverride', + 'vhost', + 'csrf', + 'directory', + 'limit', + 'multipart', + 'staticCache' +] + +removedMiddlewares.forEach(function (name) { + Object.defineProperty(exports, name, { + get: function () { + throw new Error('Most middleware (like ' + name + ') is no longer bundled with Express and must be installed separately. Please see https://github.com/senchalabs/connect#middleware.'); + }, + configurable: true + }); +}); diff --git a/node_modules/express/lib/middleware/init.js b/node_modules/express/lib/middleware/init.js new file mode 100644 index 000000000..dfd042747 --- /dev/null +++ b/node_modules/express/lib/middleware/init.js @@ -0,0 +1,43 @@ +/*! + * express + * Copyright(c) 2009-2013 TJ Holowaychuk + * Copyright(c) 2013 Roman Shtylman + * Copyright(c) 2014-2015 Douglas Christopher Wilson + * MIT Licensed + */ + +'use strict'; + +/** + * Module dependencies. + * @private + */ + +var setPrototypeOf = require('setprototypeof') + +/** + * Initialization middleware, exposing the + * request and response to each other, as well + * as defaulting the X-Powered-By header field. + * + * @param {Function} app + * @return {Function} + * @api private + */ + +exports.init = function(app){ + return function expressInit(req, res, next){ + if (app.enabled('x-powered-by')) res.setHeader('X-Powered-By', 'Express'); + req.res = res; + res.req = req; + req.next = next; + + setPrototypeOf(req, app.request) + setPrototypeOf(res, app.response) + + res.locals = res.locals || Object.create(null); + + next(); + }; +}; + diff --git a/node_modules/express/lib/middleware/query.js b/node_modules/express/lib/middleware/query.js new file mode 100644 index 000000000..7e9166947 --- /dev/null +++ b/node_modules/express/lib/middleware/query.js @@ -0,0 +1,47 @@ +/*! + * express + * Copyright(c) 2009-2013 TJ Holowaychuk + * Copyright(c) 2013 Roman Shtylman + * Copyright(c) 2014-2015 Douglas Christopher Wilson + * MIT Licensed + */ + +'use strict'; + +/** + * Module dependencies. + */ + +var merge = require('utils-merge') +var parseUrl = require('parseurl'); +var qs = require('qs'); + +/** + * @param {Object} options + * @return {Function} + * @api public + */ + +module.exports = function query(options) { + var opts = merge({}, options) + var queryparse = qs.parse; + + if (typeof options === 'function') { + queryparse = options; + opts = undefined; + } + + if (opts !== undefined && opts.allowPrototypes === undefined) { + // back-compat for qs module + opts.allowPrototypes = true; + } + + return function query(req, res, next){ + if (!req.query) { + var val = parseUrl(req).query; + req.query = queryparse(val, opts); + } + + next(); + }; +}; diff --git a/node_modules/express/lib/request.js b/node_modules/express/lib/request.js new file mode 100644 index 000000000..3f1eeca6c --- /dev/null +++ b/node_modules/express/lib/request.js @@ -0,0 +1,525 @@ +/*! + * express + * Copyright(c) 2009-2013 TJ Holowaychuk + * Copyright(c) 2013 Roman Shtylman + * Copyright(c) 2014-2015 Douglas Christopher Wilson + * MIT Licensed + */ + +'use strict'; + +/** + * Module dependencies. + * @private + */ + +var accepts = require('accepts'); +var deprecate = require('depd')('express'); +var isIP = require('net').isIP; +var typeis = require('type-is'); +var http = require('http'); +var fresh = require('fresh'); +var parseRange = require('range-parser'); +var parse = require('parseurl'); +var proxyaddr = require('proxy-addr'); + +/** + * Request prototype. + * @public + */ + +var req = Object.create(http.IncomingMessage.prototype) + +/** + * Module exports. + * @public + */ + +module.exports = req + +/** + * Return request header. + * + * The `Referrer` header field is special-cased, + * both `Referrer` and `Referer` are interchangeable. + * + * Examples: + * + * req.get('Content-Type'); + * // => "text/plain" + * + * req.get('content-type'); + * // => "text/plain" + * + * req.get('Something'); + * // => undefined + * + * Aliased as `req.header()`. + * + * @param {String} name + * @return {String} + * @public + */ + +req.get = +req.header = function header(name) { + if (!name) { + throw new TypeError('name argument is required to req.get'); + } + + if (typeof name !== 'string') { + throw new TypeError('name must be a string to req.get'); + } + + var lc = name.toLowerCase(); + + switch (lc) { + case 'referer': + case 'referrer': + return this.headers.referrer + || this.headers.referer; + default: + return this.headers[lc]; + } +}; + +/** + * To do: update docs. + * + * Check if the given `type(s)` is acceptable, returning + * the best match when true, otherwise `undefined`, in which + * case you should respond with 406 "Not Acceptable". + * + * The `type` value may be a single MIME type string + * such as "application/json", an extension name + * such as "json", a comma-delimited list such as "json, html, text/plain", + * an argument list such as `"json", "html", "text/plain"`, + * or an array `["json", "html", "text/plain"]`. When a list + * or array is given, the _best_ match, if any is returned. + * + * Examples: + * + * // Accept: text/html + * req.accepts('html'); + * // => "html" + * + * // Accept: text/*, application/json + * req.accepts('html'); + * // => "html" + * req.accepts('text/html'); + * // => "text/html" + * req.accepts('json, text'); + * // => "json" + * req.accepts('application/json'); + * // => "application/json" + * + * // Accept: text/*, application/json + * req.accepts('image/png'); + * req.accepts('png'); + * // => undefined + * + * // Accept: text/*;q=.5, application/json + * req.accepts(['html', 'json']); + * req.accepts('html', 'json'); + * req.accepts('html, json'); + * // => "json" + * + * @param {String|Array} type(s) + * @return {String|Array|Boolean} + * @public + */ + +req.accepts = function(){ + var accept = accepts(this); + return accept.types.apply(accept, arguments); +}; + +/** + * Check if the given `encoding`s are accepted. + * + * @param {String} ...encoding + * @return {String|Array} + * @public + */ + +req.acceptsEncodings = function(){ + var accept = accepts(this); + return accept.encodings.apply(accept, arguments); +}; + +req.acceptsEncoding = deprecate.function(req.acceptsEncodings, + 'req.acceptsEncoding: Use acceptsEncodings instead'); + +/** + * Check if the given `charset`s are acceptable, + * otherwise you should respond with 406 "Not Acceptable". + * + * @param {String} ...charset + * @return {String|Array} + * @public + */ + +req.acceptsCharsets = function(){ + var accept = accepts(this); + return accept.charsets.apply(accept, arguments); +}; + +req.acceptsCharset = deprecate.function(req.acceptsCharsets, + 'req.acceptsCharset: Use acceptsCharsets instead'); + +/** + * Check if the given `lang`s are acceptable, + * otherwise you should respond with 406 "Not Acceptable". + * + * @param {String} ...lang + * @return {String|Array} + * @public + */ + +req.acceptsLanguages = function(){ + var accept = accepts(this); + return accept.languages.apply(accept, arguments); +}; + +req.acceptsLanguage = deprecate.function(req.acceptsLanguages, + 'req.acceptsLanguage: Use acceptsLanguages instead'); + +/** + * Parse Range header field, capping to the given `size`. + * + * Unspecified ranges such as "0-" require knowledge of your resource length. In + * the case of a byte range this is of course the total number of bytes. If the + * Range header field is not given `undefined` is returned, `-1` when unsatisfiable, + * and `-2` when syntactically invalid. + * + * When ranges are returned, the array has a "type" property which is the type of + * range that is required (most commonly, "bytes"). Each array element is an object + * with a "start" and "end" property for the portion of the range. + * + * The "combine" option can be set to `true` and overlapping & adjacent ranges + * will be combined into a single range. + * + * NOTE: remember that ranges are inclusive, so for example "Range: users=0-3" + * should respond with 4 users when available, not 3. + * + * @param {number} size + * @param {object} [options] + * @param {boolean} [options.combine=false] + * @return {number|array} + * @public + */ + +req.range = function range(size, options) { + var range = this.get('Range'); + if (!range) return; + return parseRange(size, range, options); +}; + +/** + * Return the value of param `name` when present or `defaultValue`. + * + * - Checks route placeholders, ex: _/user/:id_ + * - Checks body params, ex: id=12, {"id":12} + * - Checks query string params, ex: ?id=12 + * + * To utilize request bodies, `req.body` + * should be an object. This can be done by using + * the `bodyParser()` middleware. + * + * @param {String} name + * @param {Mixed} [defaultValue] + * @return {String} + * @public + */ + +req.param = function param(name, defaultValue) { + var params = this.params || {}; + var body = this.body || {}; + var query = this.query || {}; + + var args = arguments.length === 1 + ? 'name' + : 'name, default'; + deprecate('req.param(' + args + '): Use req.params, req.body, or req.query instead'); + + if (null != params[name] && params.hasOwnProperty(name)) return params[name]; + if (null != body[name]) return body[name]; + if (null != query[name]) return query[name]; + + return defaultValue; +}; + +/** + * Check if the incoming request contains the "Content-Type" + * header field, and it contains the given mime `type`. + * + * Examples: + * + * // With Content-Type: text/html; charset=utf-8 + * req.is('html'); + * req.is('text/html'); + * req.is('text/*'); + * // => true + * + * // When Content-Type is application/json + * req.is('json'); + * req.is('application/json'); + * req.is('application/*'); + * // => true + * + * req.is('html'); + * // => false + * + * @param {String|Array} types... + * @return {String|false|null} + * @public + */ + +req.is = function is(types) { + var arr = types; + + // support flattened arguments + if (!Array.isArray(types)) { + arr = new Array(arguments.length); + for (var i = 0; i < arr.length; i++) { + arr[i] = arguments[i]; + } + } + + return typeis(this, arr); +}; + +/** + * Return the protocol string "http" or "https" + * when requested with TLS. When the "trust proxy" + * setting trusts the socket address, the + * "X-Forwarded-Proto" header field will be trusted + * and used if present. + * + * If you're running behind a reverse proxy that + * supplies https for you this may be enabled. + * + * @return {String} + * @public + */ + +defineGetter(req, 'protocol', function protocol(){ + var proto = this.connection.encrypted + ? 'https' + : 'http'; + var trust = this.app.get('trust proxy fn'); + + if (!trust(this.connection.remoteAddress, 0)) { + return proto; + } + + // Note: X-Forwarded-Proto is normally only ever a + // single value, but this is to be safe. + var header = this.get('X-Forwarded-Proto') || proto + var index = header.indexOf(',') + + return index !== -1 + ? header.substring(0, index).trim() + : header.trim() +}); + +/** + * Short-hand for: + * + * req.protocol === 'https' + * + * @return {Boolean} + * @public + */ + +defineGetter(req, 'secure', function secure(){ + return this.protocol === 'https'; +}); + +/** + * Return the remote address from the trusted proxy. + * + * The is the remote address on the socket unless + * "trust proxy" is set. + * + * @return {String} + * @public + */ + +defineGetter(req, 'ip', function ip(){ + var trust = this.app.get('trust proxy fn'); + return proxyaddr(this, trust); +}); + +/** + * When "trust proxy" is set, trusted proxy addresses + client. + * + * For example if the value were "client, proxy1, proxy2" + * you would receive the array `["client", "proxy1", "proxy2"]` + * where "proxy2" is the furthest down-stream and "proxy1" and + * "proxy2" were trusted. + * + * @return {Array} + * @public + */ + +defineGetter(req, 'ips', function ips() { + var trust = this.app.get('trust proxy fn'); + var addrs = proxyaddr.all(this, trust); + + // reverse the order (to farthest -> closest) + // and remove socket address + addrs.reverse().pop() + + return addrs +}); + +/** + * Return subdomains as an array. + * + * Subdomains are the dot-separated parts of the host before the main domain of + * the app. By default, the domain of the app is assumed to be the last two + * parts of the host. This can be changed by setting "subdomain offset". + * + * For example, if the domain is "tobi.ferrets.example.com": + * If "subdomain offset" is not set, req.subdomains is `["ferrets", "tobi"]`. + * If "subdomain offset" is 3, req.subdomains is `["tobi"]`. + * + * @return {Array} + * @public + */ + +defineGetter(req, 'subdomains', function subdomains() { + var hostname = this.hostname; + + if (!hostname) return []; + + var offset = this.app.get('subdomain offset'); + var subdomains = !isIP(hostname) + ? hostname.split('.').reverse() + : [hostname]; + + return subdomains.slice(offset); +}); + +/** + * Short-hand for `url.parse(req.url).pathname`. + * + * @return {String} + * @public + */ + +defineGetter(req, 'path', function path() { + return parse(this).pathname; +}); + +/** + * Parse the "Host" header field to a hostname. + * + * When the "trust proxy" setting trusts the socket + * address, the "X-Forwarded-Host" header field will + * be trusted. + * + * @return {String} + * @public + */ + +defineGetter(req, 'hostname', function hostname(){ + var trust = this.app.get('trust proxy fn'); + var host = this.get('X-Forwarded-Host'); + + if (!host || !trust(this.connection.remoteAddress, 0)) { + host = this.get('Host'); + } else if (host.indexOf(',') !== -1) { + // Note: X-Forwarded-Host is normally only ever a + // single value, but this is to be safe. + host = host.substring(0, host.indexOf(',')).trimRight() + } + + if (!host) return; + + // IPv6 literal support + var offset = host[0] === '[' + ? host.indexOf(']') + 1 + : 0; + var index = host.indexOf(':', offset); + + return index !== -1 + ? host.substring(0, index) + : host; +}); + +// TODO: change req.host to return host in next major + +defineGetter(req, 'host', deprecate.function(function host(){ + return this.hostname; +}, 'req.host: Use req.hostname instead')); + +/** + * Check if the request is fresh, aka + * Last-Modified and/or the ETag + * still match. + * + * @return {Boolean} + * @public + */ + +defineGetter(req, 'fresh', function(){ + var method = this.method; + var res = this.res + var status = res.statusCode + + // GET or HEAD for weak freshness validation only + if ('GET' !== method && 'HEAD' !== method) return false; + + // 2xx or 304 as per rfc2616 14.26 + if ((status >= 200 && status < 300) || 304 === status) { + return fresh(this.headers, { + 'etag': res.get('ETag'), + 'last-modified': res.get('Last-Modified') + }) + } + + return false; +}); + +/** + * Check if the request is stale, aka + * "Last-Modified" and / or the "ETag" for the + * resource has changed. + * + * @return {Boolean} + * @public + */ + +defineGetter(req, 'stale', function stale(){ + return !this.fresh; +}); + +/** + * Check if the request was an _XMLHttpRequest_. + * + * @return {Boolean} + * @public + */ + +defineGetter(req, 'xhr', function xhr(){ + var val = this.get('X-Requested-With') || ''; + return val.toLowerCase() === 'xmlhttprequest'; +}); + +/** + * Helper function for creating a getter on an object. + * + * @param {Object} obj + * @param {String} name + * @param {Function} getter + * @private + */ +function defineGetter(obj, name, getter) { + Object.defineProperty(obj, name, { + configurable: true, + enumerable: true, + get: getter + }); +} diff --git a/node_modules/express/lib/response.js b/node_modules/express/lib/response.js new file mode 100644 index 000000000..fede486c0 --- /dev/null +++ b/node_modules/express/lib/response.js @@ -0,0 +1,1169 @@ +/*! + * express + * Copyright(c) 2009-2013 TJ Holowaychuk + * Copyright(c) 2014-2015 Douglas Christopher Wilson + * MIT Licensed + */ + +'use strict'; + +/** + * Module dependencies. + * @private + */ + +var Buffer = require('safe-buffer').Buffer +var contentDisposition = require('content-disposition'); +var createError = require('http-errors') +var deprecate = require('depd')('express'); +var encodeUrl = require('encodeurl'); +var escapeHtml = require('escape-html'); +var http = require('http'); +var isAbsolute = require('./utils').isAbsolute; +var onFinished = require('on-finished'); +var path = require('path'); +var statuses = require('statuses') +var merge = require('utils-merge'); +var sign = require('cookie-signature').sign; +var normalizeType = require('./utils').normalizeType; +var normalizeTypes = require('./utils').normalizeTypes; +var setCharset = require('./utils').setCharset; +var cookie = require('cookie'); +var send = require('send'); +var extname = path.extname; +var mime = send.mime; +var resolve = path.resolve; +var vary = require('vary'); + +/** + * Response prototype. + * @public + */ + +var res = Object.create(http.ServerResponse.prototype) + +/** + * Module exports. + * @public + */ + +module.exports = res + +/** + * Module variables. + * @private + */ + +var charsetRegExp = /;\s*charset\s*=/; + +/** + * Set status `code`. + * + * @param {Number} code + * @return {ServerResponse} + * @public + */ + +res.status = function status(code) { + if ((typeof code === 'string' || Math.floor(code) !== code) && code > 99 && code < 1000) { + deprecate('res.status(' + JSON.stringify(code) + '): use res.status(' + Math.floor(code) + ') instead') + } + this.statusCode = code; + return this; +}; + +/** + * Set Link header field with the given `links`. + * + * Examples: + * + * res.links({ + * next: 'http://api.example.com/users?page=2', + * last: 'http://api.example.com/users?page=5' + * }); + * + * @param {Object} links + * @return {ServerResponse} + * @public + */ + +res.links = function(links){ + var link = this.get('Link') || ''; + if (link) link += ', '; + return this.set('Link', link + Object.keys(links).map(function(rel){ + return '<' + links[rel] + '>; rel="' + rel + '"'; + }).join(', ')); +}; + +/** + * Send a response. + * + * Examples: + * + * res.send(Buffer.from('wahoo')); + * res.send({ some: 'json' }); + * res.send('

some html

'); + * + * @param {string|number|boolean|object|Buffer} body + * @public + */ + +res.send = function send(body) { + var chunk = body; + var encoding; + var req = this.req; + var type; + + // settings + var app = this.app; + + // allow status / body + if (arguments.length === 2) { + // res.send(body, status) backwards compat + if (typeof arguments[0] !== 'number' && typeof arguments[1] === 'number') { + deprecate('res.send(body, status): Use res.status(status).send(body) instead'); + this.statusCode = arguments[1]; + } else { + deprecate('res.send(status, body): Use res.status(status).send(body) instead'); + this.statusCode = arguments[0]; + chunk = arguments[1]; + } + } + + // disambiguate res.send(status) and res.send(status, num) + if (typeof chunk === 'number' && arguments.length === 1) { + // res.send(status) will set status message as text string + if (!this.get('Content-Type')) { + this.type('txt'); + } + + deprecate('res.send(status): Use res.sendStatus(status) instead'); + this.statusCode = chunk; + chunk = statuses.message[chunk] + } + + switch (typeof chunk) { + // string defaulting to html + case 'string': + if (!this.get('Content-Type')) { + this.type('html'); + } + break; + case 'boolean': + case 'number': + case 'object': + if (chunk === null) { + chunk = ''; + } else if (Buffer.isBuffer(chunk)) { + if (!this.get('Content-Type')) { + this.type('bin'); + } + } else { + return this.json(chunk); + } + break; + } + + // write strings in utf-8 + if (typeof chunk === 'string') { + encoding = 'utf8'; + type = this.get('Content-Type'); + + // reflect this in content-type + if (typeof type === 'string') { + this.set('Content-Type', setCharset(type, 'utf-8')); + } + } + + // determine if ETag should be generated + var etagFn = app.get('etag fn') + var generateETag = !this.get('ETag') && typeof etagFn === 'function' + + // populate Content-Length + var len + if (chunk !== undefined) { + if (Buffer.isBuffer(chunk)) { + // get length of Buffer + len = chunk.length + } else if (!generateETag && chunk.length < 1000) { + // just calculate length when no ETag + small chunk + len = Buffer.byteLength(chunk, encoding) + } else { + // convert chunk to Buffer and calculate + chunk = Buffer.from(chunk, encoding) + encoding = undefined; + len = chunk.length + } + + this.set('Content-Length', len); + } + + // populate ETag + var etag; + if (generateETag && len !== undefined) { + if ((etag = etagFn(chunk, encoding))) { + this.set('ETag', etag); + } + } + + // freshness + if (req.fresh) this.statusCode = 304; + + // strip irrelevant headers + if (204 === this.statusCode || 304 === this.statusCode) { + this.removeHeader('Content-Type'); + this.removeHeader('Content-Length'); + this.removeHeader('Transfer-Encoding'); + chunk = ''; + } + + // alter headers for 205 + if (this.statusCode === 205) { + this.set('Content-Length', '0') + this.removeHeader('Transfer-Encoding') + chunk = '' + } + + if (req.method === 'HEAD') { + // skip body for HEAD + this.end(); + } else { + // respond + this.end(chunk, encoding); + } + + return this; +}; + +/** + * Send JSON response. + * + * Examples: + * + * res.json(null); + * res.json({ user: 'tj' }); + * + * @param {string|number|boolean|object} obj + * @public + */ + +res.json = function json(obj) { + var val = obj; + + // allow status / body + if (arguments.length === 2) { + // res.json(body, status) backwards compat + if (typeof arguments[1] === 'number') { + deprecate('res.json(obj, status): Use res.status(status).json(obj) instead'); + this.statusCode = arguments[1]; + } else { + deprecate('res.json(status, obj): Use res.status(status).json(obj) instead'); + this.statusCode = arguments[0]; + val = arguments[1]; + } + } + + // settings + var app = this.app; + var escape = app.get('json escape') + var replacer = app.get('json replacer'); + var spaces = app.get('json spaces'); + var body = stringify(val, replacer, spaces, escape) + + // content-type + if (!this.get('Content-Type')) { + this.set('Content-Type', 'application/json'); + } + + return this.send(body); +}; + +/** + * Send JSON response with JSONP callback support. + * + * Examples: + * + * res.jsonp(null); + * res.jsonp({ user: 'tj' }); + * + * @param {string|number|boolean|object} obj + * @public + */ + +res.jsonp = function jsonp(obj) { + var val = obj; + + // allow status / body + if (arguments.length === 2) { + // res.jsonp(body, status) backwards compat + if (typeof arguments[1] === 'number') { + deprecate('res.jsonp(obj, status): Use res.status(status).jsonp(obj) instead'); + this.statusCode = arguments[1]; + } else { + deprecate('res.jsonp(status, obj): Use res.status(status).jsonp(obj) instead'); + this.statusCode = arguments[0]; + val = arguments[1]; + } + } + + // settings + var app = this.app; + var escape = app.get('json escape') + var replacer = app.get('json replacer'); + var spaces = app.get('json spaces'); + var body = stringify(val, replacer, spaces, escape) + var callback = this.req.query[app.get('jsonp callback name')]; + + // content-type + if (!this.get('Content-Type')) { + this.set('X-Content-Type-Options', 'nosniff'); + this.set('Content-Type', 'application/json'); + } + + // fixup callback + if (Array.isArray(callback)) { + callback = callback[0]; + } + + // jsonp + if (typeof callback === 'string' && callback.length !== 0) { + this.set('X-Content-Type-Options', 'nosniff'); + this.set('Content-Type', 'text/javascript'); + + // restrict callback charset + callback = callback.replace(/[^\[\]\w$.]/g, ''); + + if (body === undefined) { + // empty argument + body = '' + } else if (typeof body === 'string') { + // replace chars not allowed in JavaScript that are in JSON + body = body + .replace(/\u2028/g, '\\u2028') + .replace(/\u2029/g, '\\u2029') + } + + // the /**/ is a specific security mitigation for "Rosetta Flash JSONP abuse" + // the typeof check is just to reduce client error noise + body = '/**/ typeof ' + callback + ' === \'function\' && ' + callback + '(' + body + ');'; + } + + return this.send(body); +}; + +/** + * Send given HTTP status code. + * + * Sets the response status to `statusCode` and the body of the + * response to the standard description from node's http.STATUS_CODES + * or the statusCode number if no description. + * + * Examples: + * + * res.sendStatus(200); + * + * @param {number} statusCode + * @public + */ + +res.sendStatus = function sendStatus(statusCode) { + var body = statuses.message[statusCode] || String(statusCode) + + this.statusCode = statusCode; + this.type('txt'); + + return this.send(body); +}; + +/** + * Transfer the file at the given `path`. + * + * Automatically sets the _Content-Type_ response header field. + * The callback `callback(err)` is invoked when the transfer is complete + * or when an error occurs. Be sure to check `res.headersSent` + * if you wish to attempt responding, as the header and some data + * may have already been transferred. + * + * Options: + * + * - `maxAge` defaulting to 0 (can be string converted by `ms`) + * - `root` root directory for relative filenames + * - `headers` object of headers to serve with file + * - `dotfiles` serve dotfiles, defaulting to false; can be `"allow"` to send them + * + * Other options are passed along to `send`. + * + * Examples: + * + * The following example illustrates how `res.sendFile()` may + * be used as an alternative for the `static()` middleware for + * dynamic situations. The code backing `res.sendFile()` is actually + * the same code, so HTTP cache support etc is identical. + * + * app.get('/user/:uid/photos/:file', function(req, res){ + * var uid = req.params.uid + * , file = req.params.file; + * + * req.user.mayViewFilesFrom(uid, function(yes){ + * if (yes) { + * res.sendFile('/uploads/' + uid + '/' + file); + * } else { + * res.send(403, 'Sorry! you cant see that.'); + * } + * }); + * }); + * + * @public + */ + +res.sendFile = function sendFile(path, options, callback) { + var done = callback; + var req = this.req; + var res = this; + var next = req.next; + var opts = options || {}; + + if (!path) { + throw new TypeError('path argument is required to res.sendFile'); + } + + if (typeof path !== 'string') { + throw new TypeError('path must be a string to res.sendFile') + } + + // support function as second arg + if (typeof options === 'function') { + done = options; + opts = {}; + } + + if (!opts.root && !isAbsolute(path)) { + throw new TypeError('path must be absolute or specify root to res.sendFile'); + } + + // create file stream + var pathname = encodeURI(path); + var file = send(req, pathname, opts); + + // transfer + sendfile(res, file, opts, function (err) { + if (done) return done(err); + if (err && err.code === 'EISDIR') return next(); + + // next() all but write errors + if (err && err.code !== 'ECONNABORTED' && err.syscall !== 'write') { + next(err); + } + }); +}; + +/** + * Transfer the file at the given `path`. + * + * Automatically sets the _Content-Type_ response header field. + * The callback `callback(err)` is invoked when the transfer is complete + * or when an error occurs. Be sure to check `res.headersSent` + * if you wish to attempt responding, as the header and some data + * may have already been transferred. + * + * Options: + * + * - `maxAge` defaulting to 0 (can be string converted by `ms`) + * - `root` root directory for relative filenames + * - `headers` object of headers to serve with file + * - `dotfiles` serve dotfiles, defaulting to false; can be `"allow"` to send them + * + * Other options are passed along to `send`. + * + * Examples: + * + * The following example illustrates how `res.sendfile()` may + * be used as an alternative for the `static()` middleware for + * dynamic situations. The code backing `res.sendfile()` is actually + * the same code, so HTTP cache support etc is identical. + * + * app.get('/user/:uid/photos/:file', function(req, res){ + * var uid = req.params.uid + * , file = req.params.file; + * + * req.user.mayViewFilesFrom(uid, function(yes){ + * if (yes) { + * res.sendfile('/uploads/' + uid + '/' + file); + * } else { + * res.send(403, 'Sorry! you cant see that.'); + * } + * }); + * }); + * + * @public + */ + +res.sendfile = function (path, options, callback) { + var done = callback; + var req = this.req; + var res = this; + var next = req.next; + var opts = options || {}; + + // support function as second arg + if (typeof options === 'function') { + done = options; + opts = {}; + } + + // create file stream + var file = send(req, path, opts); + + // transfer + sendfile(res, file, opts, function (err) { + if (done) return done(err); + if (err && err.code === 'EISDIR') return next(); + + // next() all but write errors + if (err && err.code !== 'ECONNABORTED' && err.syscall !== 'write') { + next(err); + } + }); +}; + +res.sendfile = deprecate.function(res.sendfile, + 'res.sendfile: Use res.sendFile instead'); + +/** + * Transfer the file at the given `path` as an attachment. + * + * Optionally providing an alternate attachment `filename`, + * and optional callback `callback(err)`. The callback is invoked + * when the data transfer is complete, or when an error has + * occurred. Be sure to check `res.headersSent` if you plan to respond. + * + * Optionally providing an `options` object to use with `res.sendFile()`. + * This function will set the `Content-Disposition` header, overriding + * any `Content-Disposition` header passed as header options in order + * to set the attachment and filename. + * + * This method uses `res.sendFile()`. + * + * @public + */ + +res.download = function download (path, filename, options, callback) { + var done = callback; + var name = filename; + var opts = options || null + + // support function as second or third arg + if (typeof filename === 'function') { + done = filename; + name = null; + opts = null + } else if (typeof options === 'function') { + done = options + opts = null + } + + // support optional filename, where options may be in it's place + if (typeof filename === 'object' && + (typeof options === 'function' || options === undefined)) { + name = null + opts = filename + } + + // set Content-Disposition when file is sent + var headers = { + 'Content-Disposition': contentDisposition(name || path) + }; + + // merge user-provided headers + if (opts && opts.headers) { + var keys = Object.keys(opts.headers) + for (var i = 0; i < keys.length; i++) { + var key = keys[i] + if (key.toLowerCase() !== 'content-disposition') { + headers[key] = opts.headers[key] + } + } + } + + // merge user-provided options + opts = Object.create(opts) + opts.headers = headers + + // Resolve the full path for sendFile + var fullPath = !opts.root + ? resolve(path) + : path + + // send file + return this.sendFile(fullPath, opts, done) +}; + +/** + * Set _Content-Type_ response header with `type` through `mime.lookup()` + * when it does not contain "/", or set the Content-Type to `type` otherwise. + * + * Examples: + * + * res.type('.html'); + * res.type('html'); + * res.type('json'); + * res.type('application/json'); + * res.type('png'); + * + * @param {String} type + * @return {ServerResponse} for chaining + * @public + */ + +res.contentType = +res.type = function contentType(type) { + var ct = type.indexOf('/') === -1 + ? mime.lookup(type) + : type; + + return this.set('Content-Type', ct); +}; + +/** + * Respond to the Acceptable formats using an `obj` + * of mime-type callbacks. + * + * This method uses `req.accepted`, an array of + * acceptable types ordered by their quality values. + * When "Accept" is not present the _first_ callback + * is invoked, otherwise the first match is used. When + * no match is performed the server responds with + * 406 "Not Acceptable". + * + * Content-Type is set for you, however if you choose + * you may alter this within the callback using `res.type()` + * or `res.set('Content-Type', ...)`. + * + * res.format({ + * 'text/plain': function(){ + * res.send('hey'); + * }, + * + * 'text/html': function(){ + * res.send('

hey

'); + * }, + * + * 'application/json': function () { + * res.send({ message: 'hey' }); + * } + * }); + * + * In addition to canonicalized MIME types you may + * also use extnames mapped to these types: + * + * res.format({ + * text: function(){ + * res.send('hey'); + * }, + * + * html: function(){ + * res.send('

hey

'); + * }, + * + * json: function(){ + * res.send({ message: 'hey' }); + * } + * }); + * + * By default Express passes an `Error` + * with a `.status` of 406 to `next(err)` + * if a match is not made. If you provide + * a `.default` callback it will be invoked + * instead. + * + * @param {Object} obj + * @return {ServerResponse} for chaining + * @public + */ + +res.format = function(obj){ + var req = this.req; + var next = req.next; + + var keys = Object.keys(obj) + .filter(function (v) { return v !== 'default' }) + + var key = keys.length > 0 + ? req.accepts(keys) + : false; + + this.vary("Accept"); + + if (key) { + this.set('Content-Type', normalizeType(key).value); + obj[key](req, this, next); + } else if (obj.default) { + obj.default(req, this, next) + } else { + next(createError(406, { + types: normalizeTypes(keys).map(function (o) { return o.value }) + })) + } + + return this; +}; + +/** + * Set _Content-Disposition_ header to _attachment_ with optional `filename`. + * + * @param {String} filename + * @return {ServerResponse} + * @public + */ + +res.attachment = function attachment(filename) { + if (filename) { + this.type(extname(filename)); + } + + this.set('Content-Disposition', contentDisposition(filename)); + + return this; +}; + +/** + * Append additional header `field` with value `val`. + * + * Example: + * + * res.append('Link', ['', '']); + * res.append('Set-Cookie', 'foo=bar; Path=/; HttpOnly'); + * res.append('Warning', '199 Miscellaneous warning'); + * + * @param {String} field + * @param {String|Array} val + * @return {ServerResponse} for chaining + * @public + */ + +res.append = function append(field, val) { + var prev = this.get(field); + var value = val; + + if (prev) { + // concat the new and prev vals + value = Array.isArray(prev) ? prev.concat(val) + : Array.isArray(val) ? [prev].concat(val) + : [prev, val] + } + + return this.set(field, value); +}; + +/** + * Set header `field` to `val`, or pass + * an object of header fields. + * + * Examples: + * + * res.set('Foo', ['bar', 'baz']); + * res.set('Accept', 'application/json'); + * res.set({ Accept: 'text/plain', 'X-API-Key': 'tobi' }); + * + * Aliased as `res.header()`. + * + * @param {String|Object} field + * @param {String|Array} val + * @return {ServerResponse} for chaining + * @public + */ + +res.set = +res.header = function header(field, val) { + if (arguments.length === 2) { + var value = Array.isArray(val) + ? val.map(String) + : String(val); + + // add charset to content-type + if (field.toLowerCase() === 'content-type') { + if (Array.isArray(value)) { + throw new TypeError('Content-Type cannot be set to an Array'); + } + if (!charsetRegExp.test(value)) { + var charset = mime.charsets.lookup(value.split(';')[0]); + if (charset) value += '; charset=' + charset.toLowerCase(); + } + } + + this.setHeader(field, value); + } else { + for (var key in field) { + this.set(key, field[key]); + } + } + return this; +}; + +/** + * Get value for header `field`. + * + * @param {String} field + * @return {String} + * @public + */ + +res.get = function(field){ + return this.getHeader(field); +}; + +/** + * Clear cookie `name`. + * + * @param {String} name + * @param {Object} [options] + * @return {ServerResponse} for chaining + * @public + */ + +res.clearCookie = function clearCookie(name, options) { + var opts = merge({ expires: new Date(1), path: '/' }, options); + + return this.cookie(name, '', opts); +}; + +/** + * Set cookie `name` to `value`, with the given `options`. + * + * Options: + * + * - `maxAge` max-age in milliseconds, converted to `expires` + * - `signed` sign the cookie + * - `path` defaults to "/" + * + * Examples: + * + * // "Remember Me" for 15 minutes + * res.cookie('rememberme', '1', { expires: new Date(Date.now() + 900000), httpOnly: true }); + * + * // same as above + * res.cookie('rememberme', '1', { maxAge: 900000, httpOnly: true }) + * + * @param {String} name + * @param {String|Object} value + * @param {Object} [options] + * @return {ServerResponse} for chaining + * @public + */ + +res.cookie = function (name, value, options) { + var opts = merge({}, options); + var secret = this.req.secret; + var signed = opts.signed; + + if (signed && !secret) { + throw new Error('cookieParser("secret") required for signed cookies'); + } + + var val = typeof value === 'object' + ? 'j:' + JSON.stringify(value) + : String(value); + + if (signed) { + val = 's:' + sign(val, secret); + } + + if (opts.maxAge != null) { + var maxAge = opts.maxAge - 0 + + if (!isNaN(maxAge)) { + opts.expires = new Date(Date.now() + maxAge) + opts.maxAge = Math.floor(maxAge / 1000) + } + } + + if (opts.path == null) { + opts.path = '/'; + } + + this.append('Set-Cookie', cookie.serialize(name, String(val), opts)); + + return this; +}; + +/** + * Set the location header to `url`. + * + * The given `url` can also be "back", which redirects + * to the _Referrer_ or _Referer_ headers or "/". + * + * Examples: + * + * res.location('/foo/bar').; + * res.location('http://example.com'); + * res.location('../login'); + * + * @param {String} url + * @return {ServerResponse} for chaining + * @public + */ + +res.location = function location(url) { + var loc = url; + + // "back" is an alias for the referrer + if (url === 'back') { + loc = this.req.get('Referrer') || '/'; + } + + // set location + return this.set('Location', encodeUrl(loc)); +}; + +/** + * Redirect to the given `url` with optional response `status` + * defaulting to 302. + * + * The resulting `url` is determined by `res.location()`, so + * it will play nicely with mounted apps, relative paths, + * `"back"` etc. + * + * Examples: + * + * res.redirect('/foo/bar'); + * res.redirect('http://example.com'); + * res.redirect(301, 'http://example.com'); + * res.redirect('../login'); // /blog/post/1 -> /blog/login + * + * @public + */ + +res.redirect = function redirect(url) { + var address = url; + var body; + var status = 302; + + // allow status / url + if (arguments.length === 2) { + if (typeof arguments[0] === 'number') { + status = arguments[0]; + address = arguments[1]; + } else { + deprecate('res.redirect(url, status): Use res.redirect(status, url) instead'); + status = arguments[1]; + } + } + + // Set location header + address = this.location(address).get('Location'); + + // Support text/{plain,html} by default + this.format({ + text: function(){ + body = statuses.message[status] + '. Redirecting to ' + address + }, + + html: function(){ + var u = escapeHtml(address); + body = '

' + statuses.message[status] + '. Redirecting to ' + u + '

' + }, + + default: function(){ + body = ''; + } + }); + + // Respond + this.statusCode = status; + this.set('Content-Length', Buffer.byteLength(body)); + + if (this.req.method === 'HEAD') { + this.end(); + } else { + this.end(body); + } +}; + +/** + * Add `field` to Vary. If already present in the Vary set, then + * this call is simply ignored. + * + * @param {Array|String} field + * @return {ServerResponse} for chaining + * @public + */ + +res.vary = function(field){ + // checks for back-compat + if (!field || (Array.isArray(field) && !field.length)) { + deprecate('res.vary(): Provide a field name'); + return this; + } + + vary(this, field); + + return this; +}; + +/** + * Render `view` with the given `options` and optional callback `fn`. + * When a callback function is given a response will _not_ be made + * automatically, otherwise a response of _200_ and _text/html_ is given. + * + * Options: + * + * - `cache` boolean hinting to the engine it should cache + * - `filename` filename of the view being rendered + * + * @public + */ + +res.render = function render(view, options, callback) { + var app = this.req.app; + var done = callback; + var opts = options || {}; + var req = this.req; + var self = this; + + // support callback function as second arg + if (typeof options === 'function') { + done = options; + opts = {}; + } + + // merge res.locals + opts._locals = self.locals; + + // default callback to respond + done = done || function (err, str) { + if (err) return req.next(err); + self.send(str); + }; + + // render + app.render(view, opts, done); +}; + +// pipe the send file stream +function sendfile(res, file, options, callback) { + var done = false; + var streaming; + + // request aborted + function onaborted() { + if (done) return; + done = true; + + var err = new Error('Request aborted'); + err.code = 'ECONNABORTED'; + callback(err); + } + + // directory + function ondirectory() { + if (done) return; + done = true; + + var err = new Error('EISDIR, read'); + err.code = 'EISDIR'; + callback(err); + } + + // errors + function onerror(err) { + if (done) return; + done = true; + callback(err); + } + + // ended + function onend() { + if (done) return; + done = true; + callback(); + } + + // file + function onfile() { + streaming = false; + } + + // finished + function onfinish(err) { + if (err && err.code === 'ECONNRESET') return onaborted(); + if (err) return onerror(err); + if (done) return; + + setImmediate(function () { + if (streaming !== false && !done) { + onaborted(); + return; + } + + if (done) return; + done = true; + callback(); + }); + } + + // streaming + function onstream() { + streaming = true; + } + + file.on('directory', ondirectory); + file.on('end', onend); + file.on('error', onerror); + file.on('file', onfile); + file.on('stream', onstream); + onFinished(res, onfinish); + + if (options.headers) { + // set headers on successful transfer + file.on('headers', function headers(res) { + var obj = options.headers; + var keys = Object.keys(obj); + + for (var i = 0; i < keys.length; i++) { + var k = keys[i]; + res.setHeader(k, obj[k]); + } + }); + } + + // pipe + file.pipe(res); +} + +/** + * Stringify JSON, like JSON.stringify, but v8 optimized, with the + * ability to escape characters that can trigger HTML sniffing. + * + * @param {*} value + * @param {function} replacer + * @param {number} spaces + * @param {boolean} escape + * @returns {string} + * @private + */ + +function stringify (value, replacer, spaces, escape) { + // v8 checks arguments.length for optimizing simple call + // https://bugs.chromium.org/p/v8/issues/detail?id=4730 + var json = replacer || spaces + ? JSON.stringify(value, replacer, spaces) + : JSON.stringify(value); + + if (escape && typeof json === 'string') { + json = json.replace(/[<>&]/g, function (c) { + switch (c.charCodeAt(0)) { + case 0x3c: + return '\\u003c' + case 0x3e: + return '\\u003e' + case 0x26: + return '\\u0026' + /* istanbul ignore next: unreachable default */ + default: + return c + } + }) + } + + return json +} diff --git a/node_modules/express/lib/router/index.js b/node_modules/express/lib/router/index.js new file mode 100644 index 000000000..5174c34f4 --- /dev/null +++ b/node_modules/express/lib/router/index.js @@ -0,0 +1,673 @@ +/*! + * express + * Copyright(c) 2009-2013 TJ Holowaychuk + * Copyright(c) 2013 Roman Shtylman + * Copyright(c) 2014-2015 Douglas Christopher Wilson + * MIT Licensed + */ + +'use strict'; + +/** + * Module dependencies. + * @private + */ + +var Route = require('./route'); +var Layer = require('./layer'); +var methods = require('methods'); +var mixin = require('utils-merge'); +var debug = require('debug')('express:router'); +var deprecate = require('depd')('express'); +var flatten = require('array-flatten'); +var parseUrl = require('parseurl'); +var setPrototypeOf = require('setprototypeof') + +/** + * Module variables. + * @private + */ + +var objectRegExp = /^\[object (\S+)\]$/; +var slice = Array.prototype.slice; +var toString = Object.prototype.toString; + +/** + * Initialize a new `Router` with the given `options`. + * + * @param {Object} [options] + * @return {Router} which is an callable function + * @public + */ + +var proto = module.exports = function(options) { + var opts = options || {}; + + function router(req, res, next) { + router.handle(req, res, next); + } + + // mixin Router class functions + setPrototypeOf(router, proto) + + router.params = {}; + router._params = []; + router.caseSensitive = opts.caseSensitive; + router.mergeParams = opts.mergeParams; + router.strict = opts.strict; + router.stack = []; + + return router; +}; + +/** + * Map the given param placeholder `name`(s) to the given callback. + * + * Parameter mapping is used to provide pre-conditions to routes + * which use normalized placeholders. For example a _:user_id_ parameter + * could automatically load a user's information from the database without + * any additional code, + * + * The callback uses the same signature as middleware, the only difference + * being that the value of the placeholder is passed, in this case the _id_ + * of the user. Once the `next()` function is invoked, just like middleware + * it will continue on to execute the route, or subsequent parameter functions. + * + * Just like in middleware, you must either respond to the request or call next + * to avoid stalling the request. + * + * app.param('user_id', function(req, res, next, id){ + * User.find(id, function(err, user){ + * if (err) { + * return next(err); + * } else if (!user) { + * return next(new Error('failed to load user')); + * } + * req.user = user; + * next(); + * }); + * }); + * + * @param {String} name + * @param {Function} fn + * @return {app} for chaining + * @public + */ + +proto.param = function param(name, fn) { + // param logic + if (typeof name === 'function') { + deprecate('router.param(fn): Refactor to use path params'); + this._params.push(name); + return; + } + + // apply param functions + var params = this._params; + var len = params.length; + var ret; + + if (name[0] === ':') { + deprecate('router.param(' + JSON.stringify(name) + ', fn): Use router.param(' + JSON.stringify(name.slice(1)) + ', fn) instead') + name = name.slice(1) + } + + for (var i = 0; i < len; ++i) { + if (ret = params[i](name, fn)) { + fn = ret; + } + } + + // ensure we end up with a + // middleware function + if ('function' !== typeof fn) { + throw new Error('invalid param() call for ' + name + ', got ' + fn); + } + + (this.params[name] = this.params[name] || []).push(fn); + return this; +}; + +/** + * Dispatch a req, res into the router. + * @private + */ + +proto.handle = function handle(req, res, out) { + var self = this; + + debug('dispatching %s %s', req.method, req.url); + + var idx = 0; + var protohost = getProtohost(req.url) || '' + var removed = ''; + var slashAdded = false; + var sync = 0 + var paramcalled = {}; + + // store options for OPTIONS request + // only used if OPTIONS request + var options = []; + + // middleware and routes + var stack = self.stack; + + // manage inter-router variables + var parentParams = req.params; + var parentUrl = req.baseUrl || ''; + var done = restore(out, req, 'baseUrl', 'next', 'params'); + + // setup next layer + req.next = next; + + // for options requests, respond with a default if nothing else responds + if (req.method === 'OPTIONS') { + done = wrap(done, function(old, err) { + if (err || options.length === 0) return old(err); + sendOptionsResponse(res, options, old); + }); + } + + // setup basic req values + req.baseUrl = parentUrl; + req.originalUrl = req.originalUrl || req.url; + + next(); + + function next(err) { + var layerError = err === 'route' + ? null + : err; + + // remove added slash + if (slashAdded) { + req.url = req.url.slice(1) + slashAdded = false; + } + + // restore altered req.url + if (removed.length !== 0) { + req.baseUrl = parentUrl; + req.url = protohost + removed + req.url.slice(protohost.length) + removed = ''; + } + + // signal to exit router + if (layerError === 'router') { + setImmediate(done, null) + return + } + + // no more matching layers + if (idx >= stack.length) { + setImmediate(done, layerError); + return; + } + + // max sync stack + if (++sync > 100) { + return setImmediate(next, err) + } + + // get pathname of request + var path = getPathname(req); + + if (path == null) { + return done(layerError); + } + + // find next matching layer + var layer; + var match; + var route; + + while (match !== true && idx < stack.length) { + layer = stack[idx++]; + match = matchLayer(layer, path); + route = layer.route; + + if (typeof match !== 'boolean') { + // hold on to layerError + layerError = layerError || match; + } + + if (match !== true) { + continue; + } + + if (!route) { + // process non-route handlers normally + continue; + } + + if (layerError) { + // routes do not match with a pending error + match = false; + continue; + } + + var method = req.method; + var has_method = route._handles_method(method); + + // build up automatic options response + if (!has_method && method === 'OPTIONS') { + appendMethods(options, route._options()); + } + + // don't even bother matching route + if (!has_method && method !== 'HEAD') { + match = false; + } + } + + // no match + if (match !== true) { + return done(layerError); + } + + // store route for dispatch on change + if (route) { + req.route = route; + } + + // Capture one-time layer values + req.params = self.mergeParams + ? mergeParams(layer.params, parentParams) + : layer.params; + var layerPath = layer.path; + + // this should be done for the layer + self.process_params(layer, paramcalled, req, res, function (err) { + if (err) { + next(layerError || err) + } else if (route) { + layer.handle_request(req, res, next) + } else { + trim_prefix(layer, layerError, layerPath, path) + } + + sync = 0 + }); + } + + function trim_prefix(layer, layerError, layerPath, path) { + if (layerPath.length !== 0) { + // Validate path is a prefix match + if (layerPath !== path.slice(0, layerPath.length)) { + next(layerError) + return + } + + // Validate path breaks on a path separator + var c = path[layerPath.length] + if (c && c !== '/' && c !== '.') return next(layerError) + + // Trim off the part of the url that matches the route + // middleware (.use stuff) needs to have the path stripped + debug('trim prefix (%s) from url %s', layerPath, req.url); + removed = layerPath; + req.url = protohost + req.url.slice(protohost.length + removed.length) + + // Ensure leading slash + if (!protohost && req.url[0] !== '/') { + req.url = '/' + req.url; + slashAdded = true; + } + + // Setup base URL (no trailing slash) + req.baseUrl = parentUrl + (removed[removed.length - 1] === '/' + ? removed.substring(0, removed.length - 1) + : removed); + } + + debug('%s %s : %s', layer.name, layerPath, req.originalUrl); + + if (layerError) { + layer.handle_error(layerError, req, res, next); + } else { + layer.handle_request(req, res, next); + } + } +}; + +/** + * Process any parameters for the layer. + * @private + */ + +proto.process_params = function process_params(layer, called, req, res, done) { + var params = this.params; + + // captured parameters from the layer, keys and values + var keys = layer.keys; + + // fast track + if (!keys || keys.length === 0) { + return done(); + } + + var i = 0; + var name; + var paramIndex = 0; + var key; + var paramVal; + var paramCallbacks; + var paramCalled; + + // process params in order + // param callbacks can be async + function param(err) { + if (err) { + return done(err); + } + + if (i >= keys.length ) { + return done(); + } + + paramIndex = 0; + key = keys[i++]; + name = key.name; + paramVal = req.params[name]; + paramCallbacks = params[name]; + paramCalled = called[name]; + + if (paramVal === undefined || !paramCallbacks) { + return param(); + } + + // param previously called with same value or error occurred + if (paramCalled && (paramCalled.match === paramVal + || (paramCalled.error && paramCalled.error !== 'route'))) { + // restore value + req.params[name] = paramCalled.value; + + // next param + return param(paramCalled.error); + } + + called[name] = paramCalled = { + error: null, + match: paramVal, + value: paramVal + }; + + paramCallback(); + } + + // single param callbacks + function paramCallback(err) { + var fn = paramCallbacks[paramIndex++]; + + // store updated value + paramCalled.value = req.params[key.name]; + + if (err) { + // store error + paramCalled.error = err; + param(err); + return; + } + + if (!fn) return param(); + + try { + fn(req, res, paramCallback, paramVal, key.name); + } catch (e) { + paramCallback(e); + } + } + + param(); +}; + +/** + * Use the given middleware function, with optional path, defaulting to "/". + * + * Use (like `.all`) will run for any http METHOD, but it will not add + * handlers for those methods so OPTIONS requests will not consider `.use` + * functions even if they could respond. + * + * The other difference is that _route_ path is stripped and not visible + * to the handler function. The main effect of this feature is that mounted + * handlers can operate without any code changes regardless of the "prefix" + * pathname. + * + * @public + */ + +proto.use = function use(fn) { + var offset = 0; + var path = '/'; + + // default path to '/' + // disambiguate router.use([fn]) + if (typeof fn !== 'function') { + var arg = fn; + + while (Array.isArray(arg) && arg.length !== 0) { + arg = arg[0]; + } + + // first arg is the path + if (typeof arg !== 'function') { + offset = 1; + path = fn; + } + } + + var callbacks = flatten(slice.call(arguments, offset)); + + if (callbacks.length === 0) { + throw new TypeError('Router.use() requires a middleware function') + } + + for (var i = 0; i < callbacks.length; i++) { + var fn = callbacks[i]; + + if (typeof fn !== 'function') { + throw new TypeError('Router.use() requires a middleware function but got a ' + gettype(fn)) + } + + // add the middleware + debug('use %o %s', path, fn.name || '') + + var layer = new Layer(path, { + sensitive: this.caseSensitive, + strict: false, + end: false + }, fn); + + layer.route = undefined; + + this.stack.push(layer); + } + + return this; +}; + +/** + * Create a new Route for the given path. + * + * Each route contains a separate middleware stack and VERB handlers. + * + * See the Route api documentation for details on adding handlers + * and middleware to routes. + * + * @param {String} path + * @return {Route} + * @public + */ + +proto.route = function route(path) { + var route = new Route(path); + + var layer = new Layer(path, { + sensitive: this.caseSensitive, + strict: this.strict, + end: true + }, route.dispatch.bind(route)); + + layer.route = route; + + this.stack.push(layer); + return route; +}; + +// create Router#VERB functions +methods.concat('all').forEach(function(method){ + proto[method] = function(path){ + var route = this.route(path) + route[method].apply(route, slice.call(arguments, 1)); + return this; + }; +}); + +// append methods to a list of methods +function appendMethods(list, addition) { + for (var i = 0; i < addition.length; i++) { + var method = addition[i]; + if (list.indexOf(method) === -1) { + list.push(method); + } + } +} + +// get pathname of request +function getPathname(req) { + try { + return parseUrl(req).pathname; + } catch (err) { + return undefined; + } +} + +// Get get protocol + host for a URL +function getProtohost(url) { + if (typeof url !== 'string' || url.length === 0 || url[0] === '/') { + return undefined + } + + var searchIndex = url.indexOf('?') + var pathLength = searchIndex !== -1 + ? searchIndex + : url.length + var fqdnIndex = url.slice(0, pathLength).indexOf('://') + + return fqdnIndex !== -1 + ? url.substring(0, url.indexOf('/', 3 + fqdnIndex)) + : undefined +} + +// get type for error message +function gettype(obj) { + var type = typeof obj; + + if (type !== 'object') { + return type; + } + + // inspect [[Class]] for objects + return toString.call(obj) + .replace(objectRegExp, '$1'); +} + +/** + * Match path to a layer. + * + * @param {Layer} layer + * @param {string} path + * @private + */ + +function matchLayer(layer, path) { + try { + return layer.match(path); + } catch (err) { + return err; + } +} + +// merge params with parent params +function mergeParams(params, parent) { + if (typeof parent !== 'object' || !parent) { + return params; + } + + // make copy of parent for base + var obj = mixin({}, parent); + + // simple non-numeric merging + if (!(0 in params) || !(0 in parent)) { + return mixin(obj, params); + } + + var i = 0; + var o = 0; + + // determine numeric gaps + while (i in params) { + i++; + } + + while (o in parent) { + o++; + } + + // offset numeric indices in params before merge + for (i--; i >= 0; i--) { + params[i + o] = params[i]; + + // create holes for the merge when necessary + if (i < o) { + delete params[i]; + } + } + + return mixin(obj, params); +} + +// restore obj props after function +function restore(fn, obj) { + var props = new Array(arguments.length - 2); + var vals = new Array(arguments.length - 2); + + for (var i = 0; i < props.length; i++) { + props[i] = arguments[i + 2]; + vals[i] = obj[props[i]]; + } + + return function () { + // restore vals + for (var i = 0; i < props.length; i++) { + obj[props[i]] = vals[i]; + } + + return fn.apply(this, arguments); + }; +} + +// send an OPTIONS response +function sendOptionsResponse(res, options, next) { + try { + var body = options.join(','); + res.set('Allow', body); + res.send(body); + } catch (err) { + next(err); + } +} + +// wrap a function +function wrap(old, fn) { + return function proxy() { + var args = new Array(arguments.length + 1); + + args[0] = old; + for (var i = 0, len = arguments.length; i < len; i++) { + args[i + 1] = arguments[i]; + } + + fn.apply(this, args); + }; +} diff --git a/node_modules/express/lib/router/layer.js b/node_modules/express/lib/router/layer.js new file mode 100644 index 000000000..4dc8e86d4 --- /dev/null +++ b/node_modules/express/lib/router/layer.js @@ -0,0 +1,181 @@ +/*! + * express + * Copyright(c) 2009-2013 TJ Holowaychuk + * Copyright(c) 2013 Roman Shtylman + * Copyright(c) 2014-2015 Douglas Christopher Wilson + * MIT Licensed + */ + +'use strict'; + +/** + * Module dependencies. + * @private + */ + +var pathRegexp = require('path-to-regexp'); +var debug = require('debug')('express:router:layer'); + +/** + * Module variables. + * @private + */ + +var hasOwnProperty = Object.prototype.hasOwnProperty; + +/** + * Module exports. + * @public + */ + +module.exports = Layer; + +function Layer(path, options, fn) { + if (!(this instanceof Layer)) { + return new Layer(path, options, fn); + } + + debug('new %o', path) + var opts = options || {}; + + this.handle = fn; + this.name = fn.name || ''; + this.params = undefined; + this.path = undefined; + this.regexp = pathRegexp(path, this.keys = [], opts); + + // set fast path flags + this.regexp.fast_star = path === '*' + this.regexp.fast_slash = path === '/' && opts.end === false +} + +/** + * Handle the error for the layer. + * + * @param {Error} error + * @param {Request} req + * @param {Response} res + * @param {function} next + * @api private + */ + +Layer.prototype.handle_error = function handle_error(error, req, res, next) { + var fn = this.handle; + + if (fn.length !== 4) { + // not a standard error handler + return next(error); + } + + try { + fn(error, req, res, next); + } catch (err) { + next(err); + } +}; + +/** + * Handle the request for the layer. + * + * @param {Request} req + * @param {Response} res + * @param {function} next + * @api private + */ + +Layer.prototype.handle_request = function handle(req, res, next) { + var fn = this.handle; + + if (fn.length > 3) { + // not a standard request handler + return next(); + } + + try { + fn(req, res, next); + } catch (err) { + next(err); + } +}; + +/** + * Check if this route matches `path`, if so + * populate `.params`. + * + * @param {String} path + * @return {Boolean} + * @api private + */ + +Layer.prototype.match = function match(path) { + var match + + if (path != null) { + // fast path non-ending match for / (any path matches) + if (this.regexp.fast_slash) { + this.params = {} + this.path = '' + return true + } + + // fast path for * (everything matched in a param) + if (this.regexp.fast_star) { + this.params = {'0': decode_param(path)} + this.path = path + return true + } + + // match the path + match = this.regexp.exec(path) + } + + if (!match) { + this.params = undefined; + this.path = undefined; + return false; + } + + // store values + this.params = {}; + this.path = match[0] + + var keys = this.keys; + var params = this.params; + + for (var i = 1; i < match.length; i++) { + var key = keys[i - 1]; + var prop = key.name; + var val = decode_param(match[i]) + + if (val !== undefined || !(hasOwnProperty.call(params, prop))) { + params[prop] = val; + } + } + + return true; +}; + +/** + * Decode param value. + * + * @param {string} val + * @return {string} + * @private + */ + +function decode_param(val) { + if (typeof val !== 'string' || val.length === 0) { + return val; + } + + try { + return decodeURIComponent(val); + } catch (err) { + if (err instanceof URIError) { + err.message = 'Failed to decode param \'' + val + '\''; + err.status = err.statusCode = 400; + } + + throw err; + } +} diff --git a/node_modules/express/lib/router/route.js b/node_modules/express/lib/router/route.js new file mode 100644 index 000000000..5adaa125e --- /dev/null +++ b/node_modules/express/lib/router/route.js @@ -0,0 +1,225 @@ +/*! + * express + * Copyright(c) 2009-2013 TJ Holowaychuk + * Copyright(c) 2013 Roman Shtylman + * Copyright(c) 2014-2015 Douglas Christopher Wilson + * MIT Licensed + */ + +'use strict'; + +/** + * Module dependencies. + * @private + */ + +var debug = require('debug')('express:router:route'); +var flatten = require('array-flatten'); +var Layer = require('./layer'); +var methods = require('methods'); + +/** + * Module variables. + * @private + */ + +var slice = Array.prototype.slice; +var toString = Object.prototype.toString; + +/** + * Module exports. + * @public + */ + +module.exports = Route; + +/** + * Initialize `Route` with the given `path`, + * + * @param {String} path + * @public + */ + +function Route(path) { + this.path = path; + this.stack = []; + + debug('new %o', path) + + // route handlers for various http methods + this.methods = {}; +} + +/** + * Determine if the route handles a given method. + * @private + */ + +Route.prototype._handles_method = function _handles_method(method) { + if (this.methods._all) { + return true; + } + + var name = method.toLowerCase(); + + if (name === 'head' && !this.methods['head']) { + name = 'get'; + } + + return Boolean(this.methods[name]); +}; + +/** + * @return {Array} supported HTTP methods + * @private + */ + +Route.prototype._options = function _options() { + var methods = Object.keys(this.methods); + + // append automatic head + if (this.methods.get && !this.methods.head) { + methods.push('head'); + } + + for (var i = 0; i < methods.length; i++) { + // make upper case + methods[i] = methods[i].toUpperCase(); + } + + return methods; +}; + +/** + * dispatch req, res into this route + * @private + */ + +Route.prototype.dispatch = function dispatch(req, res, done) { + var idx = 0; + var stack = this.stack; + var sync = 0 + + if (stack.length === 0) { + return done(); + } + + var method = req.method.toLowerCase(); + if (method === 'head' && !this.methods['head']) { + method = 'get'; + } + + req.route = this; + + next(); + + function next(err) { + // signal to exit route + if (err && err === 'route') { + return done(); + } + + // signal to exit router + if (err && err === 'router') { + return done(err) + } + + var layer = stack[idx++]; + if (!layer) { + return done(err); + } + + // max sync stack + if (++sync > 100) { + return setImmediate(next, err) + } + + if (layer.method && layer.method !== method) { + return next(err); + } + + if (err) { + layer.handle_error(err, req, res, next); + } else { + layer.handle_request(req, res, next); + } + + sync = 0 + } +}; + +/** + * Add a handler for all HTTP verbs to this route. + * + * Behaves just like middleware and can respond or call `next` + * to continue processing. + * + * You can use multiple `.all` call to add multiple handlers. + * + * function check_something(req, res, next){ + * next(); + * }; + * + * function validate_user(req, res, next){ + * next(); + * }; + * + * route + * .all(validate_user) + * .all(check_something) + * .get(function(req, res, next){ + * res.send('hello world'); + * }); + * + * @param {function} handler + * @return {Route} for chaining + * @api public + */ + +Route.prototype.all = function all() { + var handles = flatten(slice.call(arguments)); + + for (var i = 0; i < handles.length; i++) { + var handle = handles[i]; + + if (typeof handle !== 'function') { + var type = toString.call(handle); + var msg = 'Route.all() requires a callback function but got a ' + type + throw new TypeError(msg); + } + + var layer = Layer('/', {}, handle); + layer.method = undefined; + + this.methods._all = true; + this.stack.push(layer); + } + + return this; +}; + +methods.forEach(function(method){ + Route.prototype[method] = function(){ + var handles = flatten(slice.call(arguments)); + + for (var i = 0; i < handles.length; i++) { + var handle = handles[i]; + + if (typeof handle !== 'function') { + var type = toString.call(handle); + var msg = 'Route.' + method + '() requires a callback function but got a ' + type + throw new Error(msg); + } + + debug('%s %o', method, this.path) + + var layer = Layer('/', {}, handle); + layer.method = method; + + this.methods[method] = true; + this.stack.push(layer); + } + + return this; + }; +}); diff --git a/node_modules/express/lib/utils.js b/node_modules/express/lib/utils.js new file mode 100644 index 000000000..799a6a2b4 --- /dev/null +++ b/node_modules/express/lib/utils.js @@ -0,0 +1,304 @@ +/*! + * express + * Copyright(c) 2009-2013 TJ Holowaychuk + * Copyright(c) 2014-2015 Douglas Christopher Wilson + * MIT Licensed + */ + +'use strict'; + +/** + * Module dependencies. + * @api private + */ + +var Buffer = require('safe-buffer').Buffer +var contentDisposition = require('content-disposition'); +var contentType = require('content-type'); +var deprecate = require('depd')('express'); +var flatten = require('array-flatten'); +var mime = require('send').mime; +var etag = require('etag'); +var proxyaddr = require('proxy-addr'); +var qs = require('qs'); +var querystring = require('querystring'); + +/** + * Return strong ETag for `body`. + * + * @param {String|Buffer} body + * @param {String} [encoding] + * @return {String} + * @api private + */ + +exports.etag = createETagGenerator({ weak: false }) + +/** + * Return weak ETag for `body`. + * + * @param {String|Buffer} body + * @param {String} [encoding] + * @return {String} + * @api private + */ + +exports.wetag = createETagGenerator({ weak: true }) + +/** + * Check if `path` looks absolute. + * + * @param {String} path + * @return {Boolean} + * @api private + */ + +exports.isAbsolute = function(path){ + if ('/' === path[0]) return true; + if (':' === path[1] && ('\\' === path[2] || '/' === path[2])) return true; // Windows device path + if ('\\\\' === path.substring(0, 2)) return true; // Microsoft Azure absolute path +}; + +/** + * Flatten the given `arr`. + * + * @param {Array} arr + * @return {Array} + * @api private + */ + +exports.flatten = deprecate.function(flatten, + 'utils.flatten: use array-flatten npm module instead'); + +/** + * Normalize the given `type`, for example "html" becomes "text/html". + * + * @param {String} type + * @return {Object} + * @api private + */ + +exports.normalizeType = function(type){ + return ~type.indexOf('/') + ? acceptParams(type) + : { value: mime.lookup(type), params: {} }; +}; + +/** + * Normalize `types`, for example "html" becomes "text/html". + * + * @param {Array} types + * @return {Array} + * @api private + */ + +exports.normalizeTypes = function(types){ + var ret = []; + + for (var i = 0; i < types.length; ++i) { + ret.push(exports.normalizeType(types[i])); + } + + return ret; +}; + +/** + * Generate Content-Disposition header appropriate for the filename. + * non-ascii filenames are urlencoded and a filename* parameter is added + * + * @param {String} filename + * @return {String} + * @api private + */ + +exports.contentDisposition = deprecate.function(contentDisposition, + 'utils.contentDisposition: use content-disposition npm module instead'); + +/** + * Parse accept params `str` returning an + * object with `.value`, `.quality` and `.params`. + * also includes `.originalIndex` for stable sorting + * + * @param {String} str + * @param {Number} index + * @return {Object} + * @api private + */ + +function acceptParams(str, index) { + var parts = str.split(/ *; */); + var ret = { value: parts[0], quality: 1, params: {}, originalIndex: index }; + + for (var i = 1; i < parts.length; ++i) { + var pms = parts[i].split(/ *= */); + if ('q' === pms[0]) { + ret.quality = parseFloat(pms[1]); + } else { + ret.params[pms[0]] = pms[1]; + } + } + + return ret; +} + +/** + * Compile "etag" value to function. + * + * @param {Boolean|String|Function} val + * @return {Function} + * @api private + */ + +exports.compileETag = function(val) { + var fn; + + if (typeof val === 'function') { + return val; + } + + switch (val) { + case true: + case 'weak': + fn = exports.wetag; + break; + case false: + break; + case 'strong': + fn = exports.etag; + break; + default: + throw new TypeError('unknown value for etag function: ' + val); + } + + return fn; +} + +/** + * Compile "query parser" value to function. + * + * @param {String|Function} val + * @return {Function} + * @api private + */ + +exports.compileQueryParser = function compileQueryParser(val) { + var fn; + + if (typeof val === 'function') { + return val; + } + + switch (val) { + case true: + case 'simple': + fn = querystring.parse; + break; + case false: + fn = newObject; + break; + case 'extended': + fn = parseExtendedQueryString; + break; + default: + throw new TypeError('unknown value for query parser function: ' + val); + } + + return fn; +} + +/** + * Compile "proxy trust" value to function. + * + * @param {Boolean|String|Number|Array|Function} val + * @return {Function} + * @api private + */ + +exports.compileTrust = function(val) { + if (typeof val === 'function') return val; + + if (val === true) { + // Support plain true/false + return function(){ return true }; + } + + if (typeof val === 'number') { + // Support trusting hop count + return function(a, i){ return i < val }; + } + + if (typeof val === 'string') { + // Support comma-separated values + val = val.split(',') + .map(function (v) { return v.trim() }) + } + + return proxyaddr.compile(val || []); +} + +/** + * Set the charset in a given Content-Type string. + * + * @param {String} type + * @param {String} charset + * @return {String} + * @api private + */ + +exports.setCharset = function setCharset(type, charset) { + if (!type || !charset) { + return type; + } + + // parse type + var parsed = contentType.parse(type); + + // set charset + parsed.parameters.charset = charset; + + // format type + return contentType.format(parsed); +}; + +/** + * Create an ETag generator function, generating ETags with + * the given options. + * + * @param {object} options + * @return {function} + * @private + */ + +function createETagGenerator (options) { + return function generateETag (body, encoding) { + var buf = !Buffer.isBuffer(body) + ? Buffer.from(body, encoding) + : body + + return etag(buf, options) + } +} + +/** + * Parse an extended query string with qs. + * + * @return {Object} + * @private + */ + +function parseExtendedQueryString(str) { + return qs.parse(str, { + allowPrototypes: true + }); +} + +/** + * Return new empty object. + * + * @return {Object} + * @api private + */ + +function newObject() { + return {}; +} diff --git a/node_modules/express/lib/view.js b/node_modules/express/lib/view.js new file mode 100644 index 000000000..c08ab4d8d --- /dev/null +++ b/node_modules/express/lib/view.js @@ -0,0 +1,182 @@ +/*! + * express + * Copyright(c) 2009-2013 TJ Holowaychuk + * Copyright(c) 2013 Roman Shtylman + * Copyright(c) 2014-2015 Douglas Christopher Wilson + * MIT Licensed + */ + +'use strict'; + +/** + * Module dependencies. + * @private + */ + +var debug = require('debug')('express:view'); +var path = require('path'); +var fs = require('fs'); + +/** + * Module variables. + * @private + */ + +var dirname = path.dirname; +var basename = path.basename; +var extname = path.extname; +var join = path.join; +var resolve = path.resolve; + +/** + * Module exports. + * @public + */ + +module.exports = View; + +/** + * Initialize a new `View` with the given `name`. + * + * Options: + * + * - `defaultEngine` the default template engine name + * - `engines` template engine require() cache + * - `root` root path for view lookup + * + * @param {string} name + * @param {object} options + * @public + */ + +function View(name, options) { + var opts = options || {}; + + this.defaultEngine = opts.defaultEngine; + this.ext = extname(name); + this.name = name; + this.root = opts.root; + + if (!this.ext && !this.defaultEngine) { + throw new Error('No default engine was specified and no extension was provided.'); + } + + var fileName = name; + + if (!this.ext) { + // get extension from default engine name + this.ext = this.defaultEngine[0] !== '.' + ? '.' + this.defaultEngine + : this.defaultEngine; + + fileName += this.ext; + } + + if (!opts.engines[this.ext]) { + // load engine + var mod = this.ext.slice(1) + debug('require "%s"', mod) + + // default engine export + var fn = require(mod).__express + + if (typeof fn !== 'function') { + throw new Error('Module "' + mod + '" does not provide a view engine.') + } + + opts.engines[this.ext] = fn + } + + // store loaded engine + this.engine = opts.engines[this.ext]; + + // lookup path + this.path = this.lookup(fileName); +} + +/** + * Lookup view by the given `name` + * + * @param {string} name + * @private + */ + +View.prototype.lookup = function lookup(name) { + var path; + var roots = [].concat(this.root); + + debug('lookup "%s"', name); + + for (var i = 0; i < roots.length && !path; i++) { + var root = roots[i]; + + // resolve the path + var loc = resolve(root, name); + var dir = dirname(loc); + var file = basename(loc); + + // resolve the file + path = this.resolve(dir, file); + } + + return path; +}; + +/** + * Render with the given options. + * + * @param {object} options + * @param {function} callback + * @private + */ + +View.prototype.render = function render(options, callback) { + debug('render "%s"', this.path); + this.engine(this.path, options, callback); +}; + +/** + * Resolve the file within the given directory. + * + * @param {string} dir + * @param {string} file + * @private + */ + +View.prototype.resolve = function resolve(dir, file) { + var ext = this.ext; + + // . + var path = join(dir, file); + var stat = tryStat(path); + + if (stat && stat.isFile()) { + return path; + } + + // /index. + path = join(dir, basename(file, ext), 'index' + ext); + stat = tryStat(path); + + if (stat && stat.isFile()) { + return path; + } +}; + +/** + * Return a stat, maybe. + * + * @param {string} path + * @return {fs.Stats} + * @private + */ + +function tryStat(path) { + debug('stat "%s"', path); + + try { + return fs.statSync(path); + } catch (e) { + return undefined; + } +} diff --git a/node_modules/express/package.json b/node_modules/express/package.json new file mode 100644 index 000000000..f5872a533 --- /dev/null +++ b/node_modules/express/package.json @@ -0,0 +1,99 @@ +{ + "name": "express", + "description": "Fast, unopinionated, minimalist web framework", + "version": "4.18.1", + "author": "TJ Holowaychuk ", + "contributors": [ + "Aaron Heckmann ", + "Ciaran Jessup ", + "Douglas Christopher Wilson ", + "Guillermo Rauch ", + "Jonathan Ong ", + "Roman Shtylman ", + "Young Jae Sim " + ], + "license": "MIT", + "repository": "expressjs/express", + "homepage": "http://expressjs.com/", + "keywords": [ + "express", + "framework", + "sinatra", + "web", + "http", + "rest", + "restful", + "router", + "app", + "api" + ], + "dependencies": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.0", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.5.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.2.0", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.7", + "qs": "6.10.3", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.18.0", + "serve-static": "1.15.0", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "devDependencies": { + "after": "0.8.2", + "connect-redis": "3.4.2", + "cookie-parser": "1.4.6", + "cookie-session": "2.0.0", + "ejs": "3.1.7", + "eslint": "7.32.0", + "express-session": "1.17.2", + "hbs": "4.2.0", + "marked": "0.7.0", + "method-override": "3.0.0", + "mocha": "9.2.2", + "morgan": "1.10.0", + "multiparty": "4.2.3", + "nyc": "15.1.0", + "pbkdf2-password": "1.2.1", + "supertest": "6.2.3", + "vhost": "~3.0.2" + }, + "engines": { + "node": ">= 0.10.0" + }, + "files": [ + "LICENSE", + "History.md", + "Readme.md", + "index.js", + "lib/" + ], + "scripts": { + "lint": "eslint .", + "test": "mocha --require test/support/env --reporter spec --bail --check-leaks test/ test/acceptance/", + "test-ci": "nyc --reporter=lcovonly --reporter=text npm test", + "test-cov": "nyc --reporter=html --reporter=text npm test", + "test-tap": "mocha --require test/support/env --reporter tap --check-leaks test/ test/acceptance/" + } +} diff --git a/node_modules/finalhandler/HISTORY.md b/node_modules/finalhandler/HISTORY.md new file mode 100644 index 000000000..ec2d38b5d --- /dev/null +++ b/node_modules/finalhandler/HISTORY.md @@ -0,0 +1,195 @@ +1.2.0 / 2022-03-22 +================== + + * Remove set content headers that break response + * deps: on-finished@2.4.1 + * deps: statuses@2.0.1 + - Rename `425 Unordered Collection` to standard `425 Too Early` + +1.1.2 / 2019-05-09 +================== + + * Set stricter `Content-Security-Policy` header + * deps: parseurl@~1.3.3 + * deps: statuses@~1.5.0 + +1.1.1 / 2018-03-06 +================== + + * Fix 404 output for bad / missing pathnames + * deps: encodeurl@~1.0.2 + - Fix encoding `%` as last character + * deps: statuses@~1.4.0 + +1.1.0 / 2017-09-24 +================== + + * Use `res.headersSent` when available + +1.0.6 / 2017-09-22 +================== + + * deps: debug@2.6.9 + +1.0.5 / 2017-09-15 +================== + + * deps: parseurl@~1.3.2 + - perf: reduce overhead for full URLs + - perf: unroll the "fast-path" `RegExp` + +1.0.4 / 2017-08-03 +================== + + * deps: debug@2.6.8 + +1.0.3 / 2017-05-16 +================== + + * deps: debug@2.6.7 + - deps: ms@2.0.0 + +1.0.2 / 2017-04-22 +================== + + * deps: debug@2.6.4 + - deps: ms@0.7.3 + +1.0.1 / 2017-03-21 +================== + + * Fix missing `` in HTML document + * deps: debug@2.6.3 + - Fix: `DEBUG_MAX_ARRAY_LENGTH` + +1.0.0 / 2017-02-15 +================== + + * Fix exception when `err` cannot be converted to a string + * Fully URL-encode the pathname in the 404 message + * Only include the pathname in the 404 message + * Send complete HTML document + * Set `Content-Security-Policy: default-src 'self'` header + * deps: debug@2.6.1 + - Allow colors in workers + - Deprecated `DEBUG_FD` environment variable set to `3` or higher + - Fix error when running under React Native + - Use same color for same namespace + - deps: ms@0.7.2 + +0.5.1 / 2016-11-12 +================== + + * Fix exception when `err.headers` is not an object + * deps: statuses@~1.3.1 + * perf: hoist regular expressions + * perf: remove duplicate validation path + +0.5.0 / 2016-06-15 +================== + + * Change invalid or non-numeric status code to 500 + * Overwrite status message to match set status code + * Prefer `err.statusCode` if `err.status` is invalid + * Set response headers from `err.headers` object + * Use `statuses` instead of `http` module for status messages + - Includes all defined status messages + +0.4.1 / 2015-12-02 +================== + + * deps: escape-html@~1.0.3 + - perf: enable strict mode + - perf: optimize string replacement + - perf: use faster string coercion + +0.4.0 / 2015-06-14 +================== + + * Fix a false-positive when unpiping in Node.js 0.8 + * Support `statusCode` property on `Error` objects + * Use `unpipe` module for unpiping requests + * deps: escape-html@1.0.2 + * deps: on-finished@~2.3.0 + - Add defined behavior for HTTP `CONNECT` requests + - Add defined behavior for HTTP `Upgrade` requests + - deps: ee-first@1.1.1 + * perf: enable strict mode + * perf: remove argument reassignment + +0.3.6 / 2015-05-11 +================== + + * deps: debug@~2.2.0 + - deps: ms@0.7.1 + +0.3.5 / 2015-04-22 +================== + + * deps: on-finished@~2.2.1 + - Fix `isFinished(req)` when data buffered + +0.3.4 / 2015-03-15 +================== + + * deps: debug@~2.1.3 + - Fix high intensity foreground color for bold + - deps: ms@0.7.0 + +0.3.3 / 2015-01-01 +================== + + * deps: debug@~2.1.1 + * deps: on-finished@~2.2.0 + +0.3.2 / 2014-10-22 +================== + + * deps: on-finished@~2.1.1 + - Fix handling of pipelined requests + +0.3.1 / 2014-10-16 +================== + + * deps: debug@~2.1.0 + - Implement `DEBUG_FD` env variable support + +0.3.0 / 2014-09-17 +================== + + * Terminate in progress response only on error + * Use `on-finished` to determine request status + +0.2.0 / 2014-09-03 +================== + + * Set `X-Content-Type-Options: nosniff` header + * deps: debug@~2.0.0 + +0.1.0 / 2014-07-16 +================== + + * Respond after request fully read + - prevents hung responses and socket hang ups + * deps: debug@1.0.4 + +0.0.3 / 2014-07-11 +================== + + * deps: debug@1.0.3 + - Add support for multiple wildcards in namespaces + +0.0.2 / 2014-06-19 +================== + + * Handle invalid status codes + +0.0.1 / 2014-06-05 +================== + + * deps: debug@1.0.2 + +0.0.0 / 2014-06-05 +================== + + * Extracted from connect/express diff --git a/node_modules/finalhandler/LICENSE b/node_modules/finalhandler/LICENSE new file mode 100644 index 000000000..60221067c --- /dev/null +++ b/node_modules/finalhandler/LICENSE @@ -0,0 +1,22 @@ +(The MIT License) + +Copyright (c) 2014-2022 Douglas Christopher Wilson + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +'Software'), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/node_modules/finalhandler/README.md b/node_modules/finalhandler/README.md new file mode 100644 index 000000000..81f10ef3d --- /dev/null +++ b/node_modules/finalhandler/README.md @@ -0,0 +1,147 @@ +# finalhandler + +[![NPM Version][npm-image]][npm-url] +[![NPM Downloads][downloads-image]][downloads-url] +[![Node.js Version][node-image]][node-url] +[![Build Status][github-actions-ci-image]][github-actions-ci-url] +[![Test Coverage][coveralls-image]][coveralls-url] + +Node.js function to invoke as the final step to respond to HTTP request. + +## Installation + +This is a [Node.js](https://nodejs.org/en/) module available through the +[npm registry](https://www.npmjs.com/). Installation is done using the +[`npm install` command](https://docs.npmjs.com/getting-started/installing-npm-packages-locally): + +```sh +$ npm install finalhandler +``` + +## API + +```js +var finalhandler = require('finalhandler') +``` + +### finalhandler(req, res, [options]) + +Returns function to be invoked as the final step for the given `req` and `res`. +This function is to be invoked as `fn(err)`. If `err` is falsy, the handler will +write out a 404 response to the `res`. If it is truthy, an error response will +be written out to the `res` or `res` will be terminated if a response has already +started. + +When an error is written, the following information is added to the response: + + * The `res.statusCode` is set from `err.status` (or `err.statusCode`). If + this value is outside the 4xx or 5xx range, it will be set to 500. + * The `res.statusMessage` is set according to the status code. + * The body will be the HTML of the status code message if `env` is + `'production'`, otherwise will be `err.stack`. + * Any headers specified in an `err.headers` object. + +The final handler will also unpipe anything from `req` when it is invoked. + +#### options.env + +By default, the environment is determined by `NODE_ENV` variable, but it can be +overridden by this option. + +#### options.onerror + +Provide a function to be called with the `err` when it exists. Can be used for +writing errors to a central location without excessive function generation. Called +as `onerror(err, req, res)`. + +## Examples + +### always 404 + +```js +var finalhandler = require('finalhandler') +var http = require('http') + +var server = http.createServer(function (req, res) { + var done = finalhandler(req, res) + done() +}) + +server.listen(3000) +``` + +### perform simple action + +```js +var finalhandler = require('finalhandler') +var fs = require('fs') +var http = require('http') + +var server = http.createServer(function (req, res) { + var done = finalhandler(req, res) + + fs.readFile('index.html', function (err, buf) { + if (err) return done(err) + res.setHeader('Content-Type', 'text/html') + res.end(buf) + }) +}) + +server.listen(3000) +``` + +### use with middleware-style functions + +```js +var finalhandler = require('finalhandler') +var http = require('http') +var serveStatic = require('serve-static') + +var serve = serveStatic('public') + +var server = http.createServer(function (req, res) { + var done = finalhandler(req, res) + serve(req, res, done) +}) + +server.listen(3000) +``` + +### keep log of all errors + +```js +var finalhandler = require('finalhandler') +var fs = require('fs') +var http = require('http') + +var server = http.createServer(function (req, res) { + var done = finalhandler(req, res, { onerror: logerror }) + + fs.readFile('index.html', function (err, buf) { + if (err) return done(err) + res.setHeader('Content-Type', 'text/html') + res.end(buf) + }) +}) + +server.listen(3000) + +function logerror (err) { + console.error(err.stack || err.toString()) +} +``` + +## License + +[MIT](LICENSE) + +[npm-image]: https://img.shields.io/npm/v/finalhandler.svg +[npm-url]: https://npmjs.org/package/finalhandler +[node-image]: https://img.shields.io/node/v/finalhandler.svg +[node-url]: https://nodejs.org/en/download +[coveralls-image]: https://img.shields.io/coveralls/pillarjs/finalhandler.svg +[coveralls-url]: https://coveralls.io/r/pillarjs/finalhandler?branch=master +[downloads-image]: https://img.shields.io/npm/dm/finalhandler.svg +[downloads-url]: https://npmjs.org/package/finalhandler +[github-actions-ci-image]: https://img.shields.io/github/workflow/status/pillarjs/finalhandler/ci/master?label=ci +[github-actions-ci-url]: https://github.com/jshttp/pillarjs/finalhandler?query=workflow%3Aci diff --git a/node_modules/finalhandler/SECURITY.md b/node_modules/finalhandler/SECURITY.md new file mode 100644 index 000000000..6e23249f5 --- /dev/null +++ b/node_modules/finalhandler/SECURITY.md @@ -0,0 +1,25 @@ +# Security Policies and Procedures + +## Reporting a Bug + +The `finalhandler` team and community take all security bugs seriously. Thank +you for improving the security of Express. We appreciate your efforts and +responsible disclosure and will make every effort to acknowledge your +contributions. + +Report security bugs by emailing the current owner(s) of `finalhandler`. This +information can be found in the npm registry using the command +`npm owner ls finalhandler`. +If unsure or unable to get the information from the above, open an issue +in the [project issue tracker](https://github.com/pillarjs/finalhandler/issues) +asking for the current contact information. + +To ensure the timely response to your report, please ensure that the entirety +of the report is contained within the email body and not solely behind a web +link or an attachment. + +At least one owner will acknowledge your email within 48 hours, and will send a +more detailed response within 48 hours indicating the next steps in handling +your report. After the initial reply to your report, the owners will +endeavor to keep you informed of the progress towards a fix and full +announcement, and may ask for additional information or guidance. diff --git a/node_modules/finalhandler/index.js b/node_modules/finalhandler/index.js new file mode 100644 index 000000000..f628e42fa --- /dev/null +++ b/node_modules/finalhandler/index.js @@ -0,0 +1,336 @@ +/*! + * finalhandler + * Copyright(c) 2014-2022 Douglas Christopher Wilson + * MIT Licensed + */ + +'use strict' + +/** + * Module dependencies. + * @private + */ + +var debug = require('debug')('finalhandler') +var encodeUrl = require('encodeurl') +var escapeHtml = require('escape-html') +var onFinished = require('on-finished') +var parseUrl = require('parseurl') +var statuses = require('statuses') +var unpipe = require('unpipe') + +/** + * Module variables. + * @private + */ + +var DOUBLE_SPACE_REGEXP = /\x20{2}/g +var NEWLINE_REGEXP = /\n/g + +/* istanbul ignore next */ +var defer = typeof setImmediate === 'function' + ? setImmediate + : function (fn) { process.nextTick(fn.bind.apply(fn, arguments)) } +var isFinished = onFinished.isFinished + +/** + * Create a minimal HTML document. + * + * @param {string} message + * @private + */ + +function createHtmlDocument (message) { + var body = escapeHtml(message) + .replace(NEWLINE_REGEXP, '
') + .replace(DOUBLE_SPACE_REGEXP, '  ') + + return '\n' + + '\n' + + '\n' + + '\n' + + 'Error\n' + + '\n' + + '\n' + + '
' + body + '
\n' + + '\n' + + '\n' +} + +/** + * Module exports. + * @public + */ + +module.exports = finalhandler + +/** + * Create a function to handle the final response. + * + * @param {Request} req + * @param {Response} res + * @param {Object} [options] + * @return {Function} + * @public + */ + +function finalhandler (req, res, options) { + var opts = options || {} + + // get environment + var env = opts.env || process.env.NODE_ENV || 'development' + + // get error callback + var onerror = opts.onerror + + return function (err) { + var headers + var msg + var status + + // ignore 404 on in-flight response + if (!err && headersSent(res)) { + debug('cannot 404 after headers sent') + return + } + + // unhandled error + if (err) { + // respect status code from error + status = getErrorStatusCode(err) + + if (status === undefined) { + // fallback to status code on response + status = getResponseStatusCode(res) + } else { + // respect headers from error + headers = getErrorHeaders(err) + } + + // get error message + msg = getErrorMessage(err, status, env) + } else { + // not found + status = 404 + msg = 'Cannot ' + req.method + ' ' + encodeUrl(getResourceName(req)) + } + + debug('default %s', status) + + // schedule onerror callback + if (err && onerror) { + defer(onerror, err, req, res) + } + + // cannot actually respond + if (headersSent(res)) { + debug('cannot %d after headers sent', status) + req.socket.destroy() + return + } + + // send response + send(req, res, status, headers, msg) + } +} + +/** + * Get headers from Error object. + * + * @param {Error} err + * @return {object} + * @private + */ + +function getErrorHeaders (err) { + if (!err.headers || typeof err.headers !== 'object') { + return undefined + } + + var headers = Object.create(null) + var keys = Object.keys(err.headers) + + for (var i = 0; i < keys.length; i++) { + var key = keys[i] + headers[key] = err.headers[key] + } + + return headers +} + +/** + * Get message from Error object, fallback to status message. + * + * @param {Error} err + * @param {number} status + * @param {string} env + * @return {string} + * @private + */ + +function getErrorMessage (err, status, env) { + var msg + + if (env !== 'production') { + // use err.stack, which typically includes err.message + msg = err.stack + + // fallback to err.toString() when possible + if (!msg && typeof err.toString === 'function') { + msg = err.toString() + } + } + + return msg || statuses.message[status] +} + +/** + * Get status code from Error object. + * + * @param {Error} err + * @return {number} + * @private + */ + +function getErrorStatusCode (err) { + // check err.status + if (typeof err.status === 'number' && err.status >= 400 && err.status < 600) { + return err.status + } + + // check err.statusCode + if (typeof err.statusCode === 'number' && err.statusCode >= 400 && err.statusCode < 600) { + return err.statusCode + } + + return undefined +} + +/** + * Get resource name for the request. + * + * This is typically just the original pathname of the request + * but will fallback to "resource" is that cannot be determined. + * + * @param {IncomingMessage} req + * @return {string} + * @private + */ + +function getResourceName (req) { + try { + return parseUrl.original(req).pathname + } catch (e) { + return 'resource' + } +} + +/** + * Get status code from response. + * + * @param {OutgoingMessage} res + * @return {number} + * @private + */ + +function getResponseStatusCode (res) { + var status = res.statusCode + + // default status code to 500 if outside valid range + if (typeof status !== 'number' || status < 400 || status > 599) { + status = 500 + } + + return status +} + +/** + * Determine if the response headers have been sent. + * + * @param {object} res + * @returns {boolean} + * @private + */ + +function headersSent (res) { + return typeof res.headersSent !== 'boolean' + ? Boolean(res._header) + : res.headersSent +} + +/** + * Send response. + * + * @param {IncomingMessage} req + * @param {OutgoingMessage} res + * @param {number} status + * @param {object} headers + * @param {string} message + * @private + */ + +function send (req, res, status, headers, message) { + function write () { + // response body + var body = createHtmlDocument(message) + + // response status + res.statusCode = status + res.statusMessage = statuses.message[status] + + // remove any content headers + res.removeHeader('Content-Encoding') + res.removeHeader('Content-Language') + res.removeHeader('Content-Range') + + // response headers + setHeaders(res, headers) + + // security headers + res.setHeader('Content-Security-Policy', "default-src 'none'") + res.setHeader('X-Content-Type-Options', 'nosniff') + + // standard headers + res.setHeader('Content-Type', 'text/html; charset=utf-8') + res.setHeader('Content-Length', Buffer.byteLength(body, 'utf8')) + + if (req.method === 'HEAD') { + res.end() + return + } + + res.end(body, 'utf8') + } + + if (isFinished(req)) { + write() + return + } + + // unpipe everything from the request + unpipe(req) + + // flush the request + onFinished(req, write) + req.resume() +} + +/** + * Set response headers from an object. + * + * @param {OutgoingMessage} res + * @param {object} headers + * @private + */ + +function setHeaders (res, headers) { + if (!headers) { + return + } + + var keys = Object.keys(headers) + for (var i = 0; i < keys.length; i++) { + var key = keys[i] + res.setHeader(key, headers[key]) + } +} diff --git a/node_modules/finalhandler/package.json b/node_modules/finalhandler/package.json new file mode 100644 index 000000000..16bf11ed7 --- /dev/null +++ b/node_modules/finalhandler/package.json @@ -0,0 +1,46 @@ +{ + "name": "finalhandler", + "description": "Node.js final http responder", + "version": "1.2.0", + "author": "Douglas Christopher Wilson ", + "license": "MIT", + "repository": "pillarjs/finalhandler", + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" + }, + "devDependencies": { + "eslint": "7.32.0", + "eslint-config-standard": "14.1.1", + "eslint-plugin-import": "2.25.4", + "eslint-plugin-markdown": "2.2.1", + "eslint-plugin-node": "11.1.0", + "eslint-plugin-promise": "5.2.0", + "eslint-plugin-standard": "4.1.0", + "mocha": "9.2.2", + "nyc": "15.1.0", + "readable-stream": "2.3.6", + "safe-buffer": "5.2.1", + "supertest": "6.2.2" + }, + "files": [ + "LICENSE", + "HISTORY.md", + "SECURITY.md", + "index.js" + ], + "engines": { + "node": ">= 0.8" + }, + "scripts": { + "lint": "eslint .", + "test": "mocha --reporter spec --bail --check-leaks test/", + "test-ci": "nyc --reporter=lcovonly --reporter=text npm test", + "test-cov": "nyc --reporter=html --reporter=text npm test" + } +} diff --git a/node_modules/forwarded/HISTORY.md b/node_modules/forwarded/HISTORY.md new file mode 100644 index 000000000..381e6aad4 --- /dev/null +++ b/node_modules/forwarded/HISTORY.md @@ -0,0 +1,21 @@ +0.2.0 / 2021-05-31 +================== + + * Use `req.socket` over deprecated `req.connection` + +0.1.2 / 2017-09-14 +================== + + * perf: improve header parsing + * perf: reduce overhead when no `X-Forwarded-For` header + +0.1.1 / 2017-09-10 +================== + + * Fix trimming leading / trailing OWS + * perf: hoist regular expression + +0.1.0 / 2014-09-21 +================== + + * Initial release diff --git a/node_modules/forwarded/LICENSE b/node_modules/forwarded/LICENSE new file mode 100644 index 000000000..84441fbb5 --- /dev/null +++ b/node_modules/forwarded/LICENSE @@ -0,0 +1,22 @@ +(The MIT License) + +Copyright (c) 2014-2017 Douglas Christopher Wilson + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +'Software'), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/node_modules/forwarded/README.md b/node_modules/forwarded/README.md new file mode 100644 index 000000000..fdd220bca --- /dev/null +++ b/node_modules/forwarded/README.md @@ -0,0 +1,57 @@ +# forwarded + +[![NPM Version][npm-image]][npm-url] +[![NPM Downloads][downloads-image]][downloads-url] +[![Node.js Version][node-version-image]][node-version-url] +[![Build Status][ci-image]][ci-url] +[![Test Coverage][coveralls-image]][coveralls-url] + +Parse HTTP X-Forwarded-For header + +## Installation + +This is a [Node.js](https://nodejs.org/en/) module available through the +[npm registry](https://www.npmjs.com/). Installation is done using the +[`npm install` command](https://docs.npmjs.com/getting-started/installing-npm-packages-locally): + +```sh +$ npm install forwarded +``` + +## API + +```js +var forwarded = require('forwarded') +``` + +### forwarded(req) + +```js +var addresses = forwarded(req) +``` + +Parse the `X-Forwarded-For` header from the request. Returns an array +of the addresses, including the socket address for the `req`, in reverse +order (i.e. index `0` is the socket address and the last index is the +furthest address, typically the end-user). + +## Testing + +```sh +$ npm test +``` + +## License + +[MIT](LICENSE) + +[ci-image]: https://badgen.net/github/checks/jshttp/forwarded/master?label=ci +[ci-url]: https://github.com/jshttp/forwarded/actions?query=workflow%3Aci +[npm-image]: https://img.shields.io/npm/v/forwarded.svg +[npm-url]: https://npmjs.org/package/forwarded +[node-version-image]: https://img.shields.io/node/v/forwarded.svg +[node-version-url]: https://nodejs.org/en/download/ +[coveralls-image]: https://img.shields.io/coveralls/jshttp/forwarded/master.svg +[coveralls-url]: https://coveralls.io/r/jshttp/forwarded?branch=master +[downloads-image]: https://img.shields.io/npm/dm/forwarded.svg +[downloads-url]: https://npmjs.org/package/forwarded diff --git a/node_modules/forwarded/index.js b/node_modules/forwarded/index.js new file mode 100644 index 000000000..b2b6bdd3c --- /dev/null +++ b/node_modules/forwarded/index.js @@ -0,0 +1,90 @@ +/*! + * forwarded + * Copyright(c) 2014-2017 Douglas Christopher Wilson + * MIT Licensed + */ + +'use strict' + +/** + * Module exports. + * @public + */ + +module.exports = forwarded + +/** + * Get all addresses in the request, using the `X-Forwarded-For` header. + * + * @param {object} req + * @return {array} + * @public + */ + +function forwarded (req) { + if (!req) { + throw new TypeError('argument req is required') + } + + // simple header parsing + var proxyAddrs = parse(req.headers['x-forwarded-for'] || '') + var socketAddr = getSocketAddr(req) + var addrs = [socketAddr].concat(proxyAddrs) + + // return all addresses + return addrs +} + +/** + * Get the socket address for a request. + * + * @param {object} req + * @return {string} + * @private + */ + +function getSocketAddr (req) { + return req.socket + ? req.socket.remoteAddress + : req.connection.remoteAddress +} + +/** + * Parse the X-Forwarded-For header. + * + * @param {string} header + * @private + */ + +function parse (header) { + var end = header.length + var list = [] + var start = header.length + + // gather addresses, backwards + for (var i = header.length - 1; i >= 0; i--) { + switch (header.charCodeAt(i)) { + case 0x20: /* */ + if (start === end) { + start = end = i + } + break + case 0x2c: /* , */ + if (start !== end) { + list.push(header.substring(start, end)) + } + start = end = i + break + default: + start = i + break + } + } + + // final address + if (start !== end) { + list.push(header.substring(start, end)) + } + + return list +} diff --git a/node_modules/forwarded/package.json b/node_modules/forwarded/package.json new file mode 100644 index 000000000..bf9c7d655 --- /dev/null +++ b/node_modules/forwarded/package.json @@ -0,0 +1,45 @@ +{ + "name": "forwarded", + "description": "Parse HTTP X-Forwarded-For header", + "version": "0.2.0", + "contributors": [ + "Douglas Christopher Wilson " + ], + "license": "MIT", + "keywords": [ + "x-forwarded-for", + "http", + "req" + ], + "repository": "jshttp/forwarded", + "devDependencies": { + "beautify-benchmark": "0.2.4", + "benchmark": "2.1.4", + "deep-equal": "1.0.1", + "eslint": "7.27.0", + "eslint-config-standard": "14.1.1", + "eslint-plugin-import": "2.23.4", + "eslint-plugin-node": "11.1.0", + "eslint-plugin-promise": "4.3.1", + "eslint-plugin-standard": "4.1.0", + "mocha": "8.4.0", + "nyc": "15.1.0" + }, + "files": [ + "LICENSE", + "HISTORY.md", + "README.md", + "index.js" + ], + "engines": { + "node": ">= 0.6" + }, + "scripts": { + "bench": "node benchmark/index.js", + "lint": "eslint .", + "test": "mocha --reporter spec --bail --check-leaks test/", + "test-ci": "nyc --reporter=lcov --reporter=text npm test", + "test-cov": "nyc --reporter=html --reporter=text npm test", + "version": "node scripts/version-history.js && git add HISTORY.md" + } +} diff --git a/node_modules/fresh/HISTORY.md b/node_modules/fresh/HISTORY.md new file mode 100644 index 000000000..4586996a3 --- /dev/null +++ b/node_modules/fresh/HISTORY.md @@ -0,0 +1,70 @@ +0.5.2 / 2017-09-13 +================== + + * Fix regression matching multiple ETags in `If-None-Match` + * perf: improve `If-None-Match` token parsing + +0.5.1 / 2017-09-11 +================== + + * Fix handling of modified headers with invalid dates + * perf: improve ETag match loop + +0.5.0 / 2017-02-21 +================== + + * Fix incorrect result when `If-None-Match` has both `*` and ETags + * Fix weak `ETag` matching to match spec + * perf: delay reading header values until needed + * perf: skip checking modified time if ETag check failed + * perf: skip parsing `If-None-Match` when no `ETag` header + * perf: use `Date.parse` instead of `new Date` + +0.4.0 / 2017-02-05 +================== + + * Fix false detection of `no-cache` request directive + * perf: enable strict mode + * perf: hoist regular expressions + * perf: remove duplicate conditional + * perf: remove unnecessary boolean coercions + +0.3.0 / 2015-05-12 +================== + + * Add weak `ETag` matching support + +0.2.4 / 2014-09-07 +================== + + * Support Node.js 0.6 + +0.2.3 / 2014-09-07 +================== + + * Move repository to jshttp + +0.2.2 / 2014-02-19 +================== + + * Revert "Fix for blank page on Safari reload" + +0.2.1 / 2014-01-29 +================== + + * Fix for blank page on Safari reload + +0.2.0 / 2013-08-11 +================== + + * Return stale for `Cache-Control: no-cache` + +0.1.0 / 2012-06-15 +================== + + * Add `If-None-Match: *` support + +0.0.1 / 2012-06-10 +================== + + * Initial release diff --git a/node_modules/fresh/LICENSE b/node_modules/fresh/LICENSE new file mode 100644 index 000000000..1434ade75 --- /dev/null +++ b/node_modules/fresh/LICENSE @@ -0,0 +1,23 @@ +(The MIT License) + +Copyright (c) 2012 TJ Holowaychuk +Copyright (c) 2016-2017 Douglas Christopher Wilson + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +'Software'), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/node_modules/fresh/README.md b/node_modules/fresh/README.md new file mode 100644 index 000000000..1c1c680d1 --- /dev/null +++ b/node_modules/fresh/README.md @@ -0,0 +1,119 @@ +# fresh + +[![NPM Version][npm-image]][npm-url] +[![NPM Downloads][downloads-image]][downloads-url] +[![Node.js Version][node-version-image]][node-version-url] +[![Build Status][travis-image]][travis-url] +[![Test Coverage][coveralls-image]][coveralls-url] + +HTTP response freshness testing + +## Installation + +This is a [Node.js](https://nodejs.org/en/) module available through the +[npm registry](https://www.npmjs.com/). Installation is done using the +[`npm install` command](https://docs.npmjs.com/getting-started/installing-npm-packages-locally): + +``` +$ npm install fresh +``` + +## API + + + +```js +var fresh = require('fresh') +``` + +### fresh(reqHeaders, resHeaders) + +Check freshness of the response using request and response headers. + +When the response is still "fresh" in the client's cache `true` is +returned, otherwise `false` is returned to indicate that the client +cache is now stale and the full response should be sent. + +When a client sends the `Cache-Control: no-cache` request header to +indicate an end-to-end reload request, this module will return `false` +to make handling these requests transparent. + +## Known Issues + +This module is designed to only follow the HTTP specifications, not +to work-around all kinda of client bugs (especially since this module +typically does not recieve enough information to understand what the +client actually is). + +There is a known issue that in certain versions of Safari, Safari +will incorrectly make a request that allows this module to validate +freshness of the resource even when Safari does not have a +representation of the resource in the cache. The module +[jumanji](https://www.npmjs.com/package/jumanji) can be used in +an Express application to work-around this issue and also provides +links to further reading on this Safari bug. + +## Example + +### API usage + + + +```js +var reqHeaders = { 'if-none-match': '"foo"' } +var resHeaders = { 'etag': '"bar"' } +fresh(reqHeaders, resHeaders) +// => false + +var reqHeaders = { 'if-none-match': '"foo"' } +var resHeaders = { 'etag': '"foo"' } +fresh(reqHeaders, resHeaders) +// => true +``` + +### Using with Node.js http server + +```js +var fresh = require('fresh') +var http = require('http') + +var server = http.createServer(function (req, res) { + // perform server logic + // ... including adding ETag / Last-Modified response headers + + if (isFresh(req, res)) { + // client has a fresh copy of resource + res.statusCode = 304 + res.end() + return + } + + // send the resource + res.statusCode = 200 + res.end('hello, world!') +}) + +function isFresh (req, res) { + return fresh(req.headers, { + 'etag': res.getHeader('ETag'), + 'last-modified': res.getHeader('Last-Modified') + }) +} + +server.listen(3000) +``` + +## License + +[MIT](LICENSE) + +[npm-image]: https://img.shields.io/npm/v/fresh.svg +[npm-url]: https://npmjs.org/package/fresh +[node-version-image]: https://img.shields.io/node/v/fresh.svg +[node-version-url]: https://nodejs.org/en/ +[travis-image]: https://img.shields.io/travis/jshttp/fresh/master.svg +[travis-url]: https://travis-ci.org/jshttp/fresh +[coveralls-image]: https://img.shields.io/coveralls/jshttp/fresh/master.svg +[coveralls-url]: https://coveralls.io/r/jshttp/fresh?branch=master +[downloads-image]: https://img.shields.io/npm/dm/fresh.svg +[downloads-url]: https://npmjs.org/package/fresh diff --git a/node_modules/fresh/index.js b/node_modules/fresh/index.js new file mode 100644 index 000000000..d154f5a7d --- /dev/null +++ b/node_modules/fresh/index.js @@ -0,0 +1,137 @@ +/*! + * fresh + * Copyright(c) 2012 TJ Holowaychuk + * Copyright(c) 2016-2017 Douglas Christopher Wilson + * MIT Licensed + */ + +'use strict' + +/** + * RegExp to check for no-cache token in Cache-Control. + * @private + */ + +var CACHE_CONTROL_NO_CACHE_REGEXP = /(?:^|,)\s*?no-cache\s*?(?:,|$)/ + +/** + * Module exports. + * @public + */ + +module.exports = fresh + +/** + * Check freshness of the response using request and response headers. + * + * @param {Object} reqHeaders + * @param {Object} resHeaders + * @return {Boolean} + * @public + */ + +function fresh (reqHeaders, resHeaders) { + // fields + var modifiedSince = reqHeaders['if-modified-since'] + var noneMatch = reqHeaders['if-none-match'] + + // unconditional request + if (!modifiedSince && !noneMatch) { + return false + } + + // Always return stale when Cache-Control: no-cache + // to support end-to-end reload requests + // https://tools.ietf.org/html/rfc2616#section-14.9.4 + var cacheControl = reqHeaders['cache-control'] + if (cacheControl && CACHE_CONTROL_NO_CACHE_REGEXP.test(cacheControl)) { + return false + } + + // if-none-match + if (noneMatch && noneMatch !== '*') { + var etag = resHeaders['etag'] + + if (!etag) { + return false + } + + var etagStale = true + var matches = parseTokenList(noneMatch) + for (var i = 0; i < matches.length; i++) { + var match = matches[i] + if (match === etag || match === 'W/' + etag || 'W/' + match === etag) { + etagStale = false + break + } + } + + if (etagStale) { + return false + } + } + + // if-modified-since + if (modifiedSince) { + var lastModified = resHeaders['last-modified'] + var modifiedStale = !lastModified || !(parseHttpDate(lastModified) <= parseHttpDate(modifiedSince)) + + if (modifiedStale) { + return false + } + } + + return true +} + +/** + * Parse an HTTP Date into a number. + * + * @param {string} date + * @private + */ + +function parseHttpDate (date) { + var timestamp = date && Date.parse(date) + + // istanbul ignore next: guard against date.js Date.parse patching + return typeof timestamp === 'number' + ? timestamp + : NaN +} + +/** + * Parse a HTTP token list. + * + * @param {string} str + * @private + */ + +function parseTokenList (str) { + var end = 0 + var list = [] + var start = 0 + + // gather tokens + for (var i = 0, len = str.length; i < len; i++) { + switch (str.charCodeAt(i)) { + case 0x20: /* */ + if (start === end) { + start = end = i + 1 + } + break + case 0x2c: /* , */ + list.push(str.substring(start, end)) + start = end = i + 1 + break + default: + end = i + 1 + break + } + } + + // final token + list.push(str.substring(start, end)) + + return list +} diff --git a/node_modules/fresh/package.json b/node_modules/fresh/package.json new file mode 100644 index 000000000..c2fa0f487 --- /dev/null +++ b/node_modules/fresh/package.json @@ -0,0 +1,46 @@ +{ + "name": "fresh", + "description": "HTTP response freshness testing", + "version": "0.5.2", + "author": "TJ Holowaychuk (http://tjholowaychuk.com)", + "contributors": [ + "Douglas Christopher Wilson ", + "Jonathan Ong (http://jongleberry.com)" + ], + "license": "MIT", + "keywords": [ + "fresh", + "http", + "conditional", + "cache" + ], + "repository": "jshttp/fresh", + "devDependencies": { + "beautify-benchmark": "0.2.4", + "benchmark": "2.1.4", + "eslint": "3.19.0", + "eslint-config-standard": "10.2.1", + "eslint-plugin-import": "2.7.0", + "eslint-plugin-markdown": "1.0.0-beta.6", + "eslint-plugin-node": "5.1.1", + "eslint-plugin-promise": "3.5.0", + "eslint-plugin-standard": "3.0.1", + "istanbul": "0.4.5", + "mocha": "1.21.5" + }, + "files": [ + "HISTORY.md", + "LICENSE", + "index.js" + ], + "engines": { + "node": ">= 0.6" + }, + "scripts": { + "bench": "node benchmark/index.js", + "lint": "eslint --plugin markdown --ext js,md .", + "test": "mocha --reporter spec --bail --check-leaks test/", + "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/", + "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/" + } +} diff --git a/node_modules/function-bind/.editorconfig b/node_modules/function-bind/.editorconfig new file mode 100644 index 000000000..ac29adef0 --- /dev/null +++ b/node_modules/function-bind/.editorconfig @@ -0,0 +1,20 @@ +root = true + +[*] +indent_style = tab +indent_size = 4 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true +max_line_length = 120 + +[CHANGELOG.md] +indent_style = space +indent_size = 2 + +[*.json] +max_line_length = off + +[Makefile] +max_line_length = off diff --git a/node_modules/function-bind/.eslintrc b/node_modules/function-bind/.eslintrc new file mode 100644 index 000000000..9b33d8edf --- /dev/null +++ b/node_modules/function-bind/.eslintrc @@ -0,0 +1,15 @@ +{ + "root": true, + + "extends": "@ljharb", + + "rules": { + "func-name-matching": 0, + "indent": [2, 4], + "max-nested-callbacks": [2, 3], + "max-params": [2, 3], + "max-statements": [2, 20], + "no-new-func": [1], + "strict": [0] + } +} diff --git a/node_modules/function-bind/.jscs.json b/node_modules/function-bind/.jscs.json new file mode 100644 index 000000000..8c4479480 --- /dev/null +++ b/node_modules/function-bind/.jscs.json @@ -0,0 +1,176 @@ +{ + "es3": true, + + "additionalRules": [], + + "requireSemicolons": true, + + "disallowMultipleSpaces": true, + + "disallowIdentifierNames": [], + + "requireCurlyBraces": { + "allExcept": [], + "keywords": ["if", "else", "for", "while", "do", "try", "catch"] + }, + + "requireSpaceAfterKeywords": ["if", "else", "for", "while", "do", "switch", "return", "try", "catch", "function"], + + "disallowSpaceAfterKeywords": [], + + "disallowSpaceBeforeComma": true, + "disallowSpaceAfterComma": false, + "disallowSpaceBeforeSemicolon": true, + + "disallowNodeTypes": [ + "DebuggerStatement", + "ForInStatement", + "LabeledStatement", + "SwitchCase", + "SwitchStatement", + "WithStatement" + ], + + "requireObjectKeysOnNewLine": { "allExcept": ["sameLine"] }, + + "requireSpacesInAnonymousFunctionExpression": { "beforeOpeningRoundBrace": true, "beforeOpeningCurlyBrace": true }, + "requireSpacesInNamedFunctionExpression": { "beforeOpeningCurlyBrace": true }, + "disallowSpacesInNamedFunctionExpression": { "beforeOpeningRoundBrace": true }, + "requireSpacesInFunctionDeclaration": { "beforeOpeningCurlyBrace": true }, + "disallowSpacesInFunctionDeclaration": { "beforeOpeningRoundBrace": true }, + + "requireSpaceBetweenArguments": true, + + "disallowSpacesInsideParentheses": true, + + "disallowSpacesInsideArrayBrackets": true, + + "disallowQuotedKeysInObjects": { "allExcept": ["reserved"] }, + + "disallowSpaceAfterObjectKeys": true, + + "requireCommaBeforeLineBreak": true, + + "disallowSpaceAfterPrefixUnaryOperators": ["++", "--", "+", "-", "~", "!"], + "requireSpaceAfterPrefixUnaryOperators": [], + + "disallowSpaceBeforePostfixUnaryOperators": ["++", "--"], + "requireSpaceBeforePostfixUnaryOperators": [], + + "disallowSpaceBeforeBinaryOperators": [], + "requireSpaceBeforeBinaryOperators": ["+", "-", "/", "*", "=", "==", "===", "!=", "!=="], + + "requireSpaceAfterBinaryOperators": ["+", "-", "/", "*", "=", "==", "===", "!=", "!=="], + "disallowSpaceAfterBinaryOperators": [], + + "disallowImplicitTypeConversion": ["binary", "string"], + + "disallowKeywords": ["with", "eval"], + + "requireKeywordsOnNewLine": [], + "disallowKeywordsOnNewLine": ["else"], + + "requireLineFeedAtFileEnd": true, + + "disallowTrailingWhitespace": true, + + "disallowTrailingComma": true, + + "excludeFiles": ["node_modules/**", "vendor/**"], + + "disallowMultipleLineStrings": true, + + "requireDotNotation": { "allExcept": ["keywords"] }, + + "requireParenthesesAroundIIFE": true, + + "validateLineBreaks": "LF", + + "validateQuoteMarks": { + "escape": true, + "mark": "'" + }, + + "disallowOperatorBeforeLineBreak": [], + + "requireSpaceBeforeKeywords": [ + "do", + "for", + "if", + "else", + "switch", + "case", + "try", + "catch", + "finally", + "while", + "with", + "return" + ], + + "validateAlignedFunctionParameters": { + "lineBreakAfterOpeningBraces": true, + "lineBreakBeforeClosingBraces": true + }, + + "requirePaddingNewLinesBeforeExport": true, + + "validateNewlineAfterArrayElements": { + "maximum": 8 + }, + + "requirePaddingNewLinesAfterUseStrict": true, + + "disallowArrowFunctions": true, + + "disallowMultiLineTernary": true, + + "validateOrderInObjectKeys": "asc-insensitive", + + "disallowIdenticalDestructuringNames": true, + + "disallowNestedTernaries": { "maxLevel": 1 }, + + "requireSpaceAfterComma": { "allExcept": ["trailing"] }, + "requireAlignedMultilineParams": false, + + "requireSpacesInGenerator": { + "afterStar": true + }, + + "disallowSpacesInGenerator": { + "beforeStar": true + }, + + "disallowVar": false, + + "requireArrayDestructuring": false, + + "requireEnhancedObjectLiterals": false, + + "requireObjectDestructuring": false, + + "requireEarlyReturn": false, + + "requireCapitalizedConstructorsNew": { + "allExcept": ["Function", "String", "Object", "Symbol", "Number", "Date", "RegExp", "Error", "Boolean", "Array"] + }, + + "requireImportAlphabetized": false, + + "requireSpaceBeforeObjectValues": true, + "requireSpaceBeforeDestructuredValues": true, + + "disallowSpacesInsideTemplateStringPlaceholders": true, + + "disallowArrayDestructuringReturn": false, + + "requireNewlineBeforeSingleStatementsInIf": false, + + "disallowUnusedVariables": true, + + "requireSpacesInsideImportedObjectBraces": true, + + "requireUseStrict": true +} + diff --git a/node_modules/function-bind/.npmignore b/node_modules/function-bind/.npmignore new file mode 100644 index 000000000..dbb555fd1 --- /dev/null +++ b/node_modules/function-bind/.npmignore @@ -0,0 +1,22 @@ +# gitignore +.DS_Store +.monitor +.*.swp +.nodemonignore +releases +*.log +*.err +fleet.json +public/browserify +bin/*.json +.bin +build +compile +.lock-wscript +coverage +node_modules + +# Only apps should have lockfiles +npm-shrinkwrap.json +package-lock.json +yarn.lock diff --git a/node_modules/function-bind/.travis.yml b/node_modules/function-bind/.travis.yml new file mode 100644 index 000000000..85f70d246 --- /dev/null +++ b/node_modules/function-bind/.travis.yml @@ -0,0 +1,168 @@ +language: node_js +os: + - linux +node_js: + - "8.4" + - "7.10" + - "6.11" + - "5.12" + - "4.8" + - "iojs-v3.3" + - "iojs-v2.5" + - "iojs-v1.8" + - "0.12" + - "0.10" + - "0.8" +before_install: + - 'if [ "${TRAVIS_NODE_VERSION}" = "0.6" ]; then npm install -g npm@1.3 ; elif [ "${TRAVIS_NODE_VERSION}" != "0.9" ]; then case "$(npm --version)" in 1.*) npm install -g npm@1.4.28 ;; 2.*) npm install -g npm@2 ;; esac ; fi' + - 'if [ "${TRAVIS_NODE_VERSION}" != "0.6" ] && [ "${TRAVIS_NODE_VERSION}" != "0.9" ]; then if [ "${TRAVIS_NODE_VERSION%${TRAVIS_NODE_VERSION#[0-9]}}" = "0" ] || [ "${TRAVIS_NODE_VERSION:0:4}" = "iojs" ]; then npm install -g npm@4.5 ; else npm install -g npm; fi; fi' +install: + - 'if [ "${TRAVIS_NODE_VERSION}" = "0.6" ]; then nvm install 0.8 && npm install -g npm@1.3 && npm install -g npm@1.4.28 && npm install -g npm@2 && npm install && nvm use "${TRAVIS_NODE_VERSION}"; else npm install; fi;' +script: + - 'if [ -n "${PRETEST-}" ]; then npm run pretest ; fi' + - 'if [ -n "${POSTTEST-}" ]; then npm run posttest ; fi' + - 'if [ -n "${COVERAGE-}" ]; then npm run coverage ; fi' + - 'if [ -n "${TEST-}" ]; then npm run tests-only ; fi' +sudo: false +env: + - TEST=true +matrix: + fast_finish: true + include: + - node_js: "node" + env: PRETEST=true + - node_js: "4" + env: COVERAGE=true + - node_js: "8.3" + env: TEST=true ALLOW_FAILURE=true + - node_js: "8.2" + env: TEST=true ALLOW_FAILURE=true + - node_js: "8.1" + env: TEST=true ALLOW_FAILURE=true + - node_js: "8.0" + env: TEST=true ALLOW_FAILURE=true + - node_js: "7.9" + env: TEST=true ALLOW_FAILURE=true + - node_js: "7.8" + env: TEST=true ALLOW_FAILURE=true + - node_js: "7.7" + env: TEST=true ALLOW_FAILURE=true + - node_js: "7.6" + env: TEST=true ALLOW_FAILURE=true + - node_js: "7.5" + env: TEST=true ALLOW_FAILURE=true + - node_js: "7.4" + env: TEST=true ALLOW_FAILURE=true + - node_js: "7.3" + env: TEST=true ALLOW_FAILURE=true + - node_js: "7.2" + env: TEST=true ALLOW_FAILURE=true + - node_js: "7.1" + env: TEST=true ALLOW_FAILURE=true + - node_js: "7.0" + env: TEST=true ALLOW_FAILURE=true + - node_js: "6.10" + env: TEST=true ALLOW_FAILURE=true + - node_js: "6.9" + env: TEST=true ALLOW_FAILURE=true + - node_js: "6.8" + env: TEST=true ALLOW_FAILURE=true + - node_js: "6.7" + env: TEST=true ALLOW_FAILURE=true + - node_js: "6.6" + env: TEST=true ALLOW_FAILURE=true + - node_js: "6.5" + env: TEST=true ALLOW_FAILURE=true + - node_js: "6.4" + env: TEST=true ALLOW_FAILURE=true + - node_js: "6.3" + env: TEST=true ALLOW_FAILURE=true + - node_js: "6.2" + env: TEST=true ALLOW_FAILURE=true + - node_js: "6.1" + env: TEST=true ALLOW_FAILURE=true + - node_js: "6.0" + env: TEST=true ALLOW_FAILURE=true + - node_js: "5.11" + env: TEST=true ALLOW_FAILURE=true + - node_js: "5.10" + env: TEST=true ALLOW_FAILURE=true + - node_js: "5.9" + env: TEST=true ALLOW_FAILURE=true + - node_js: "5.8" + env: TEST=true ALLOW_FAILURE=true + - node_js: "5.7" + env: TEST=true ALLOW_FAILURE=true + - node_js: "5.6" + env: TEST=true ALLOW_FAILURE=true + - node_js: "5.5" + env: TEST=true ALLOW_FAILURE=true + - node_js: "5.4" + env: TEST=true ALLOW_FAILURE=true + - node_js: "5.3" + env: TEST=true ALLOW_FAILURE=true + - node_js: "5.2" + env: TEST=true ALLOW_FAILURE=true + - node_js: "5.1" + env: TEST=true ALLOW_FAILURE=true + - node_js: "5.0" + env: TEST=true ALLOW_FAILURE=true + - node_js: "4.7" + env: TEST=true ALLOW_FAILURE=true + - node_js: "4.6" + env: TEST=true ALLOW_FAILURE=true + - node_js: "4.5" + env: TEST=true ALLOW_FAILURE=true + - node_js: "4.4" + env: TEST=true ALLOW_FAILURE=true + - node_js: "4.3" + env: TEST=true ALLOW_FAILURE=true + - node_js: "4.2" + env: TEST=true ALLOW_FAILURE=true + - node_js: "4.1" + env: TEST=true ALLOW_FAILURE=true + - node_js: "4.0" + env: TEST=true ALLOW_FAILURE=true + - node_js: "iojs-v3.2" + env: TEST=true ALLOW_FAILURE=true + - node_js: "iojs-v3.1" + env: TEST=true ALLOW_FAILURE=true + - node_js: "iojs-v3.0" + env: TEST=true ALLOW_FAILURE=true + - node_js: "iojs-v2.4" + env: TEST=true ALLOW_FAILURE=true + - node_js: "iojs-v2.3" + env: TEST=true ALLOW_FAILURE=true + - node_js: "iojs-v2.2" + env: TEST=true ALLOW_FAILURE=true + - node_js: "iojs-v2.1" + env: TEST=true ALLOW_FAILURE=true + - node_js: "iojs-v2.0" + env: TEST=true ALLOW_FAILURE=true + - node_js: "iojs-v1.7" + env: TEST=true ALLOW_FAILURE=true + - node_js: "iojs-v1.6" + env: TEST=true ALLOW_FAILURE=true + - node_js: "iojs-v1.5" + env: TEST=true ALLOW_FAILURE=true + - node_js: "iojs-v1.4" + env: TEST=true ALLOW_FAILURE=true + - node_js: "iojs-v1.3" + env: TEST=true ALLOW_FAILURE=true + - node_js: "iojs-v1.2" + env: TEST=true ALLOW_FAILURE=true + - node_js: "iojs-v1.1" + env: TEST=true ALLOW_FAILURE=true + - node_js: "iojs-v1.0" + env: TEST=true ALLOW_FAILURE=true + - node_js: "0.11" + env: TEST=true ALLOW_FAILURE=true + - node_js: "0.9" + env: TEST=true ALLOW_FAILURE=true + - node_js: "0.6" + env: TEST=true ALLOW_FAILURE=true + - node_js: "0.4" + env: TEST=true ALLOW_FAILURE=true + allow_failures: + - os: osx + - env: TEST=true ALLOW_FAILURE=true diff --git a/node_modules/function-bind/LICENSE b/node_modules/function-bind/LICENSE new file mode 100644 index 000000000..62d6d237f --- /dev/null +++ b/node_modules/function-bind/LICENSE @@ -0,0 +1,20 @@ +Copyright (c) 2013 Raynos. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + diff --git a/node_modules/function-bind/README.md b/node_modules/function-bind/README.md new file mode 100644 index 000000000..81862a02c --- /dev/null +++ b/node_modules/function-bind/README.md @@ -0,0 +1,48 @@ +# function-bind + + + + + +Implementation of function.prototype.bind + +## Example + +I mainly do this for unit tests I run on phantomjs. +PhantomJS does not have Function.prototype.bind :( + +```js +Function.prototype.bind = require("function-bind") +``` + +## Installation + +`npm install function-bind` + +## Contributors + + - Raynos + +## MIT Licenced + + [travis-svg]: https://travis-ci.org/Raynos/function-bind.svg + [travis-url]: https://travis-ci.org/Raynos/function-bind + [npm-badge-svg]: https://badge.fury.io/js/function-bind.svg + [npm-url]: https://npmjs.org/package/function-bind + [5]: https://coveralls.io/repos/Raynos/function-bind/badge.png + [6]: https://coveralls.io/r/Raynos/function-bind + [7]: https://gemnasium.com/Raynos/function-bind.png + [8]: https://gemnasium.com/Raynos/function-bind + [deps-svg]: https://david-dm.org/Raynos/function-bind.svg + [deps-url]: https://david-dm.org/Raynos/function-bind + [dev-deps-svg]: https://david-dm.org/Raynos/function-bind/dev-status.svg + [dev-deps-url]: https://david-dm.org/Raynos/function-bind#info=devDependencies + [11]: https://ci.testling.com/Raynos/function-bind.png + [12]: https://ci.testling.com/Raynos/function-bind diff --git a/node_modules/function-bind/implementation.js b/node_modules/function-bind/implementation.js new file mode 100644 index 000000000..cc4daec1b --- /dev/null +++ b/node_modules/function-bind/implementation.js @@ -0,0 +1,52 @@ +'use strict'; + +/* eslint no-invalid-this: 1 */ + +var ERROR_MESSAGE = 'Function.prototype.bind called on incompatible '; +var slice = Array.prototype.slice; +var toStr = Object.prototype.toString; +var funcType = '[object Function]'; + +module.exports = function bind(that) { + var target = this; + if (typeof target !== 'function' || toStr.call(target) !== funcType) { + throw new TypeError(ERROR_MESSAGE + target); + } + var args = slice.call(arguments, 1); + + var bound; + var binder = function () { + if (this instanceof bound) { + var result = target.apply( + this, + args.concat(slice.call(arguments)) + ); + if (Object(result) === result) { + return result; + } + return this; + } else { + return target.apply( + that, + args.concat(slice.call(arguments)) + ); + } + }; + + var boundLength = Math.max(0, target.length - args.length); + var boundArgs = []; + for (var i = 0; i < boundLength; i++) { + boundArgs.push('$' + i); + } + + bound = Function('binder', 'return function (' + boundArgs.join(',') + '){ return binder.apply(this,arguments); }')(binder); + + if (target.prototype) { + var Empty = function Empty() {}; + Empty.prototype = target.prototype; + bound.prototype = new Empty(); + Empty.prototype = null; + } + + return bound; +}; diff --git a/node_modules/function-bind/index.js b/node_modules/function-bind/index.js new file mode 100644 index 000000000..3bb6b9609 --- /dev/null +++ b/node_modules/function-bind/index.js @@ -0,0 +1,5 @@ +'use strict'; + +var implementation = require('./implementation'); + +module.exports = Function.prototype.bind || implementation; diff --git a/node_modules/function-bind/package.json b/node_modules/function-bind/package.json new file mode 100644 index 000000000..20a1727cb --- /dev/null +++ b/node_modules/function-bind/package.json @@ -0,0 +1,63 @@ +{ + "name": "function-bind", + "version": "1.1.1", + "description": "Implementation of Function.prototype.bind", + "keywords": [ + "function", + "bind", + "shim", + "es5" + ], + "author": "Raynos ", + "repository": "git://github.com/Raynos/function-bind.git", + "main": "index", + "homepage": "https://github.com/Raynos/function-bind", + "contributors": [ + { + "name": "Raynos" + }, + { + "name": "Jordan Harband", + "url": "https://github.com/ljharb" + } + ], + "bugs": { + "url": "https://github.com/Raynos/function-bind/issues", + "email": "raynos2@gmail.com" + }, + "dependencies": {}, + "devDependencies": { + "@ljharb/eslint-config": "^12.2.1", + "covert": "^1.1.0", + "eslint": "^4.5.0", + "jscs": "^3.0.7", + "tape": "^4.8.0" + }, + "license": "MIT", + "scripts": { + "pretest": "npm run lint", + "test": "npm run tests-only", + "posttest": "npm run coverage -- --quiet", + "tests-only": "node test", + "coverage": "covert test/*.js", + "lint": "npm run jscs && npm run eslint", + "jscs": "jscs *.js */*.js", + "eslint": "eslint *.js */*.js" + }, + "testling": { + "files": "test/index.js", + "browsers": [ + "ie/8..latest", + "firefox/16..latest", + "firefox/nightly", + "chrome/22..latest", + "chrome/canary", + "opera/12..latest", + "opera/next", + "safari/5.1..latest", + "ipad/6.0..latest", + "iphone/6.0..latest", + "android-browser/4.2..latest" + ] + } +} diff --git a/node_modules/function-bind/test/.eslintrc b/node_modules/function-bind/test/.eslintrc new file mode 100644 index 000000000..8a56d5b72 --- /dev/null +++ b/node_modules/function-bind/test/.eslintrc @@ -0,0 +1,9 @@ +{ + "rules": { + "array-bracket-newline": 0, + "array-element-newline": 0, + "max-statements-per-line": [2, { "max": 2 }], + "no-invalid-this": 0, + "no-magic-numbers": 0, + } +} diff --git a/node_modules/function-bind/test/index.js b/node_modules/function-bind/test/index.js new file mode 100644 index 000000000..2edecce2f --- /dev/null +++ b/node_modules/function-bind/test/index.js @@ -0,0 +1,252 @@ +// jscs:disable requireUseStrict + +var test = require('tape'); + +var functionBind = require('../implementation'); +var getCurrentContext = function () { return this; }; + +test('functionBind is a function', function (t) { + t.equal(typeof functionBind, 'function'); + t.end(); +}); + +test('non-functions', function (t) { + var nonFunctions = [true, false, [], {}, 42, 'foo', NaN, /a/g]; + t.plan(nonFunctions.length); + for (var i = 0; i < nonFunctions.length; ++i) { + try { functionBind.call(nonFunctions[i]); } catch (ex) { + t.ok(ex instanceof TypeError, 'throws when given ' + String(nonFunctions[i])); + } + } + t.end(); +}); + +test('without a context', function (t) { + t.test('binds properly', function (st) { + var args, context; + var namespace = { + func: functionBind.call(function () { + args = Array.prototype.slice.call(arguments); + context = this; + }) + }; + namespace.func(1, 2, 3); + st.deepEqual(args, [1, 2, 3]); + st.equal(context, getCurrentContext.call()); + st.end(); + }); + + t.test('binds properly, and still supplies bound arguments', function (st) { + var args, context; + var namespace = { + func: functionBind.call(function () { + args = Array.prototype.slice.call(arguments); + context = this; + }, undefined, 1, 2, 3) + }; + namespace.func(4, 5, 6); + st.deepEqual(args, [1, 2, 3, 4, 5, 6]); + st.equal(context, getCurrentContext.call()); + st.end(); + }); + + t.test('returns properly', function (st) { + var args; + var namespace = { + func: functionBind.call(function () { + args = Array.prototype.slice.call(arguments); + return this; + }, null) + }; + var context = namespace.func(1, 2, 3); + st.equal(context, getCurrentContext.call(), 'returned context is namespaced context'); + st.deepEqual(args, [1, 2, 3], 'passed arguments are correct'); + st.end(); + }); + + t.test('returns properly with bound arguments', function (st) { + var args; + var namespace = { + func: functionBind.call(function () { + args = Array.prototype.slice.call(arguments); + return this; + }, null, 1, 2, 3) + }; + var context = namespace.func(4, 5, 6); + st.equal(context, getCurrentContext.call(), 'returned context is namespaced context'); + st.deepEqual(args, [1, 2, 3, 4, 5, 6], 'passed arguments are correct'); + st.end(); + }); + + t.test('called as a constructor', function (st) { + var thunkify = function (value) { + return function () { return value; }; + }; + st.test('returns object value', function (sst) { + var expectedReturnValue = [1, 2, 3]; + var Constructor = functionBind.call(thunkify(expectedReturnValue), null); + var result = new Constructor(); + sst.equal(result, expectedReturnValue); + sst.end(); + }); + + st.test('does not return primitive value', function (sst) { + var Constructor = functionBind.call(thunkify(42), null); + var result = new Constructor(); + sst.notEqual(result, 42); + sst.end(); + }); + + st.test('object from bound constructor is instance of original and bound constructor', function (sst) { + var A = function (x) { + this.name = x || 'A'; + }; + var B = functionBind.call(A, null, 'B'); + + var result = new B(); + sst.ok(result instanceof B, 'result is instance of bound constructor'); + sst.ok(result instanceof A, 'result is instance of original constructor'); + sst.end(); + }); + + st.end(); + }); + + t.end(); +}); + +test('with a context', function (t) { + t.test('with no bound arguments', function (st) { + var args, context; + var boundContext = {}; + var namespace = { + func: functionBind.call(function () { + args = Array.prototype.slice.call(arguments); + context = this; + }, boundContext) + }; + namespace.func(1, 2, 3); + st.equal(context, boundContext, 'binds a context properly'); + st.deepEqual(args, [1, 2, 3], 'supplies passed arguments'); + st.end(); + }); + + t.test('with bound arguments', function (st) { + var args, context; + var boundContext = {}; + var namespace = { + func: functionBind.call(function () { + args = Array.prototype.slice.call(arguments); + context = this; + }, boundContext, 1, 2, 3) + }; + namespace.func(4, 5, 6); + st.equal(context, boundContext, 'binds a context properly'); + st.deepEqual(args, [1, 2, 3, 4, 5, 6], 'supplies bound and passed arguments'); + st.end(); + }); + + t.test('returns properly', function (st) { + var boundContext = {}; + var args; + var namespace = { + func: functionBind.call(function () { + args = Array.prototype.slice.call(arguments); + return this; + }, boundContext) + }; + var context = namespace.func(1, 2, 3); + st.equal(context, boundContext, 'returned context is bound context'); + st.notEqual(context, getCurrentContext.call(), 'returned context is not lexical context'); + st.deepEqual(args, [1, 2, 3], 'passed arguments are correct'); + st.end(); + }); + + t.test('returns properly with bound arguments', function (st) { + var boundContext = {}; + var args; + var namespace = { + func: functionBind.call(function () { + args = Array.prototype.slice.call(arguments); + return this; + }, boundContext, 1, 2, 3) + }; + var context = namespace.func(4, 5, 6); + st.equal(context, boundContext, 'returned context is bound context'); + st.notEqual(context, getCurrentContext.call(), 'returned context is not lexical context'); + st.deepEqual(args, [1, 2, 3, 4, 5, 6], 'passed arguments are correct'); + st.end(); + }); + + t.test('passes the correct arguments when called as a constructor', function (st) { + var expected = { name: 'Correct' }; + var namespace = { + Func: functionBind.call(function (arg) { + return arg; + }, { name: 'Incorrect' }) + }; + var returned = new namespace.Func(expected); + st.equal(returned, expected, 'returns the right arg when called as a constructor'); + st.end(); + }); + + t.test('has the new instance\'s context when called as a constructor', function (st) { + var actualContext; + var expectedContext = { foo: 'bar' }; + var namespace = { + Func: functionBind.call(function () { + actualContext = this; + }, expectedContext) + }; + var result = new namespace.Func(); + st.equal(result instanceof namespace.Func, true); + st.notEqual(actualContext, expectedContext); + st.end(); + }); + + t.end(); +}); + +test('bound function length', function (t) { + t.test('sets a correct length without thisArg', function (st) { + var subject = functionBind.call(function (a, b, c) { return a + b + c; }); + st.equal(subject.length, 3); + st.equal(subject(1, 2, 3), 6); + st.end(); + }); + + t.test('sets a correct length with thisArg', function (st) { + var subject = functionBind.call(function (a, b, c) { return a + b + c; }, {}); + st.equal(subject.length, 3); + st.equal(subject(1, 2, 3), 6); + st.end(); + }); + + t.test('sets a correct length without thisArg and first argument', function (st) { + var subject = functionBind.call(function (a, b, c) { return a + b + c; }, undefined, 1); + st.equal(subject.length, 2); + st.equal(subject(2, 3), 6); + st.end(); + }); + + t.test('sets a correct length with thisArg and first argument', function (st) { + var subject = functionBind.call(function (a, b, c) { return a + b + c; }, {}, 1); + st.equal(subject.length, 2); + st.equal(subject(2, 3), 6); + st.end(); + }); + + t.test('sets a correct length without thisArg and too many arguments', function (st) { + var subject = functionBind.call(function (a, b, c) { return a + b + c; }, undefined, 1, 2, 3, 4); + st.equal(subject.length, 0); + st.equal(subject(), 6); + st.end(); + }); + + t.test('sets a correct length with thisArg and too many arguments', function (st) { + var subject = functionBind.call(function (a, b, c) { return a + b + c; }, {}, 1, 2, 3, 4); + st.equal(subject.length, 0); + st.equal(subject(), 6); + st.end(); + }); +}); diff --git a/node_modules/get-intrinsic/.eslintrc b/node_modules/get-intrinsic/.eslintrc new file mode 100644 index 000000000..0ab0876eb --- /dev/null +++ b/node_modules/get-intrinsic/.eslintrc @@ -0,0 +1,37 @@ +{ + "root": true, + + "extends": "@ljharb", + + "env": { + "es6": true, + "es2017": true, + "es2020": true, + "es2021": true, + "es2022": true, + }, + + "rules": { + "array-bracket-newline": 0, + "complexity": 0, + "eqeqeq": [2, "allow-null"], + "func-name-matching": 0, + "id-length": 0, + "max-lines-per-function": [2, 90], + "max-params": [2, 4], + "max-statements": 0, + "max-statements-per-line": [2, { "max": 2 }], + "multiline-comment-style": 0, + "no-magic-numbers": 0, + "sort-keys": 0, + }, + + "overrides": [ + { + "files": "test/**", + "rules": { + "new-cap": 0, + }, + }, + ], +} diff --git a/node_modules/get-intrinsic/.github/FUNDING.yml b/node_modules/get-intrinsic/.github/FUNDING.yml new file mode 100644 index 000000000..8e8da0dda --- /dev/null +++ b/node_modules/get-intrinsic/.github/FUNDING.yml @@ -0,0 +1,12 @@ +# These are supported funding model platforms + +github: [ljharb] +patreon: # Replace with a single Patreon username +open_collective: # Replace with a single Open Collective username +ko_fi: # Replace with a single Ko-fi username +tidelift: npm/get-intrinsic +community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry +liberapay: # Replace with a single Liberapay username +issuehunt: # Replace with a single IssueHunt username +otechie: # Replace with a single Otechie username +custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] diff --git a/node_modules/get-intrinsic/.nycrc b/node_modules/get-intrinsic/.nycrc new file mode 100644 index 000000000..bdd626ce9 --- /dev/null +++ b/node_modules/get-intrinsic/.nycrc @@ -0,0 +1,9 @@ +{ + "all": true, + "check-coverage": false, + "reporter": ["text-summary", "text", "html", "json"], + "exclude": [ + "coverage", + "test" + ] +} diff --git a/node_modules/get-intrinsic/CHANGELOG.md b/node_modules/get-intrinsic/CHANGELOG.md new file mode 100644 index 000000000..1bb52d384 --- /dev/null +++ b/node_modules/get-intrinsic/CHANGELOG.md @@ -0,0 +1,98 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [v1.1.3](https://github.com/ljharb/get-intrinsic/compare/v1.1.2...v1.1.3) - 2022-09-12 + +### Commits + +- [Dev Deps] update `es-abstract`, `es-value-fixtures`, `tape` [`07ff291`](https://github.com/ljharb/get-intrinsic/commit/07ff291816406ebe5a12d7f16965bde0942dd688) +- [Fix] properly check for % signs [`50ac176`](https://github.com/ljharb/get-intrinsic/commit/50ac1760fe99c227e64eabde76e9c0e44cd881b5) + +## [v1.1.2](https://github.com/ljharb/get-intrinsic/compare/v1.1.1...v1.1.2) - 2022-06-08 + +### Fixed + +- [Fix] properly validate against extra % signs [`#16`](https://github.com/ljharb/get-intrinsic/issues/16) + +### Commits + +- [actions] reuse common workflows [`0972547`](https://github.com/ljharb/get-intrinsic/commit/0972547efd0abc863fe4c445a6ca7eb4f8c6901d) +- [meta] use `npmignore` to autogenerate an npmignore file [`5ba0b51`](https://github.com/ljharb/get-intrinsic/commit/5ba0b51d8d8d4f1c31d426d74abc0770fd106bad) +- [actions] use `node/install` instead of `node/run`; use `codecov` action [`c364492`](https://github.com/ljharb/get-intrinsic/commit/c364492af4af51333e6f81c0bf21fd3d602c3661) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `auto-changelog`, `es-abstract`, `object-inspect`, `tape` [`dc04dad`](https://github.com/ljharb/get-intrinsic/commit/dc04dad86f6e5608775a2640cb0db5927ae29ed9) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `es-abstract`, `object-inspect`, `safe-publish-latest`, `tape` [`1c14059`](https://github.com/ljharb/get-intrinsic/commit/1c1405984e86dd2dc9366c15d8a0294a96a146a5) +- [Tests] use `mock-property` [`b396ef0`](https://github.com/ljharb/get-intrinsic/commit/b396ef05bb73b1d699811abd64b0d9b97997fdda) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `auto-changelog`, `object-inspect`, `tape` [`c2c758d`](https://github.com/ljharb/get-intrinsic/commit/c2c758d3b90af4fef0a76910d8d3c292ec8d1d3e) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `es-abstract`, `es-value-fixtures`, `object-inspect`, `tape` [`29e3c09`](https://github.com/ljharb/get-intrinsic/commit/29e3c091c2bf3e17099969847e8729d0e46896de) +- [actions] update codecov uploader [`8cbc141`](https://github.com/ljharb/get-intrinsic/commit/8cbc1418940d7a8941f3a7985cbc4ac095c5e13d) +- [Dev Deps] update `@ljharb/eslint-config`, `es-abstract`, `es-value-fixtures`, `object-inspect`, `tape` [`10b6f5c`](https://github.com/ljharb/get-intrinsic/commit/10b6f5c02593fb3680c581d696ac124e30652932) +- [readme] add github actions/codecov badges [`4e25400`](https://github.com/ljharb/get-intrinsic/commit/4e25400d9f51ae9eb059cbe22d9144e70ea214e8) +- [Tests] use `for-each` instead of `foreach` [`c05b957`](https://github.com/ljharb/get-intrinsic/commit/c05b957ad9a7bc7721af7cc9e9be1edbfe057496) +- [Dev Deps] update `es-abstract` [`29b05ae`](https://github.com/ljharb/get-intrinsic/commit/29b05aec3e7330e9ad0b8e0f685a9112c20cdd97) +- [meta] use `prepublishOnly` script for npm 7+ [`95c285d`](https://github.com/ljharb/get-intrinsic/commit/95c285da810516057d3bbfa871176031af38f05d) +- [Deps] update `has-symbols` [`593cb4f`](https://github.com/ljharb/get-intrinsic/commit/593cb4fb38e7922e40e42c183f45274b636424cd) +- [readme] fix repo URLs [`1c8305b`](https://github.com/ljharb/get-intrinsic/commit/1c8305b5365827c9b6fc785434aac0e1328ff2f5) +- [Deps] update `has-symbols` [`c7138b6`](https://github.com/ljharb/get-intrinsic/commit/c7138b6c6d73132d859471fb8c13304e1e7c8b20) +- [Dev Deps] remove unused `has-bigints` [`bd63aff`](https://github.com/ljharb/get-intrinsic/commit/bd63aff6ad8f3a986c557fcda2914187bdaab359) + +## [v1.1.1](https://github.com/ljharb/get-intrinsic/compare/v1.1.0...v1.1.1) - 2021-02-03 + +### Fixed + +- [meta] export `./package.json` [`#9`](https://github.com/ljharb/get-intrinsic/issues/9) + +### Commits + +- [readme] flesh out the readme; use `evalmd` [`d12f12c`](https://github.com/ljharb/get-intrinsic/commit/d12f12c15345a0a0772cc65a7c64369529abd614) +- [eslint] set up proper globals config [`5a8c098`](https://github.com/ljharb/get-intrinsic/commit/5a8c0984e3319d1ac0e64b102f8ec18b64e79f36) +- [Dev Deps] update `eslint` [`7b9a5c0`](https://github.com/ljharb/get-intrinsic/commit/7b9a5c0d31a90ca1a1234181c74988fb046701cd) + +## [v1.1.0](https://github.com/ljharb/get-intrinsic/compare/v1.0.2...v1.1.0) - 2021-01-25 + +### Fixed + +- [Refactor] delay `Function` eval until syntax-derived values are requested [`#3`](https://github.com/ljharb/get-intrinsic/issues/3) + +### Commits + +- [Tests] migrate tests to Github Actions [`2ab762b`](https://github.com/ljharb/get-intrinsic/commit/2ab762b48164aea8af37a40ba105bbc8246ab8c4) +- [meta] do not publish github action workflow files [`5e7108e`](https://github.com/ljharb/get-intrinsic/commit/5e7108e4768b244d48d9567ba4f8a6cab9c65b8e) +- [Tests] add some coverage [`01ac7a8`](https://github.com/ljharb/get-intrinsic/commit/01ac7a87ac29738567e8524cd8c9e026b1fa8cb3) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `call-bind`, `es-abstract`, `tape`; add `call-bind` [`911b672`](https://github.com/ljharb/get-intrinsic/commit/911b672fbffae433a96924c6ce013585e425f4b7) +- [Refactor] rearrange evalled constructors a bit [`7e7e4bf`](https://github.com/ljharb/get-intrinsic/commit/7e7e4bf583f3799c8ac1c6c5e10d2cb553957347) +- [meta] add Automatic Rebase and Require Allow Edits workflows [`0199968`](https://github.com/ljharb/get-intrinsic/commit/01999687a263ffce0a3cb011dfbcb761754aedbc) + +## [v1.0.2](https://github.com/ljharb/get-intrinsic/compare/v1.0.1...v1.0.2) - 2020-12-17 + +### Commits + +- [Fix] Throw for non‑existent intrinsics [`68f873b`](https://github.com/ljharb/get-intrinsic/commit/68f873b013c732a05ad6f5fc54f697e55515461b) +- [Fix] Throw for non‑existent segments in the intrinsic path [`8325dee`](https://github.com/ljharb/get-intrinsic/commit/8325deee43128f3654d3399aa9591741ebe17b21) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `has-bigints`, `object-inspect` [`0c227a7`](https://github.com/ljharb/get-intrinsic/commit/0c227a7d8b629166f25715fd242553892e458525) +- [meta] do not lint coverage output [`70d2419`](https://github.com/ljharb/get-intrinsic/commit/70d24199b620043cd9110fc5f426d214ebe21dc9) + +## [v1.0.1](https://github.com/ljharb/get-intrinsic/compare/v1.0.0...v1.0.1) - 2020-10-30 + +### Commits + +- [Tests] gather coverage data on every job [`d1d280d`](https://github.com/ljharb/get-intrinsic/commit/d1d280dec714e3f0519cc877dbcb193057d9cac6) +- [Fix] add missing dependencies [`5031771`](https://github.com/ljharb/get-intrinsic/commit/5031771bb1095b38be88ce7c41d5de88718e432e) +- [Tests] use `es-value-fixtures` [`af48765`](https://github.com/ljharb/get-intrinsic/commit/af48765a23c5323fb0b6b38dbf00eb5099c7bebc) + +## v1.0.0 - 2020-10-29 + +### Commits + +- Implementation [`bbce57c`](https://github.com/ljharb/get-intrinsic/commit/bbce57c6f33d05b2d8d3efa273ceeb3ee01127bb) +- Tests [`17b4f0d`](https://github.com/ljharb/get-intrinsic/commit/17b4f0d56dea6b4059b56fc30ef3ee4d9500ebc2) +- Initial commit [`3153294`](https://github.com/ljharb/get-intrinsic/commit/31532948de363b0a27dd9fd4649e7b7028ec4b44) +- npm init [`fb326c4`](https://github.com/ljharb/get-intrinsic/commit/fb326c4d2817c8419ec31de1295f06bb268a7902) +- [meta] add Automatic Rebase and Require Allow Edits workflows [`48862fb`](https://github.com/ljharb/get-intrinsic/commit/48862fb2508c8f6a57968e6d08b7c883afc9d550) +- [meta] add `auto-changelog` [`5f28ad0`](https://github.com/ljharb/get-intrinsic/commit/5f28ad019e060a353d8028f9f2591a9cc93074a1) +- [meta] add "funding"; create `FUNDING.yml` [`c2bbdde`](https://github.com/ljharb/get-intrinsic/commit/c2bbddeba73a875be61484ee4680b129a6d4e0a1) +- [Tests] add `npm run lint` [`0a84b98`](https://github.com/ljharb/get-intrinsic/commit/0a84b98b22b7cf7a748666f705b0003a493c35fd) +- Only apps should have lockfiles [`9586c75`](https://github.com/ljharb/get-intrinsic/commit/9586c75866c1ee678e4d5d4dbbdef6997e511b05) diff --git a/node_modules/get-intrinsic/LICENSE b/node_modules/get-intrinsic/LICENSE new file mode 100644 index 000000000..48f05d01d --- /dev/null +++ b/node_modules/get-intrinsic/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2020 Jordan Harband + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/node_modules/get-intrinsic/README.md b/node_modules/get-intrinsic/README.md new file mode 100644 index 000000000..3aa0bba40 --- /dev/null +++ b/node_modules/get-intrinsic/README.md @@ -0,0 +1,71 @@ +# get-intrinsic [![Version Badge][npm-version-svg]][package-url] + +[![github actions][actions-image]][actions-url] +[![coverage][codecov-image]][codecov-url] +[![dependency status][deps-svg]][deps-url] +[![dev dependency status][dev-deps-svg]][dev-deps-url] +[![License][license-image]][license-url] +[![Downloads][downloads-image]][downloads-url] + +[![npm badge][npm-badge-png]][package-url] + +Get and robustly cache all JS language-level intrinsics at first require time. + +See the syntax described [in the JS spec](https://tc39.es/ecma262/#sec-well-known-intrinsic-objects) for reference. + +## Example + +```js +var GetIntrinsic = require('get-intrinsic'); +var assert = require('assert'); + +// static methods +assert.equal(GetIntrinsic('%Math.pow%'), Math.pow); +assert.equal(Math.pow(2, 3), 8); +assert.equal(GetIntrinsic('%Math.pow%')(2, 3), 8); +delete Math.pow; +assert.equal(GetIntrinsic('%Math.pow%')(2, 3), 8); + +// instance methods +var arr = [1]; +assert.equal(GetIntrinsic('%Array.prototype.push%'), Array.prototype.push); +assert.deepEqual(arr, [1]); + +arr.push(2); +assert.deepEqual(arr, [1, 2]); + +GetIntrinsic('%Array.prototype.push%').call(arr, 3); +assert.deepEqual(arr, [1, 2, 3]); + +delete Array.prototype.push; +GetIntrinsic('%Array.prototype.push%').call(arr, 4); +assert.deepEqual(arr, [1, 2, 3, 4]); + +// missing features +delete JSON.parse; // to simulate a real intrinsic that is missing in the environment +assert.throws(() => GetIntrinsic('%JSON.parse%')); +assert.equal(undefined, GetIntrinsic('%JSON.parse%', true)); +``` + +## Tests +Simply clone the repo, `npm install`, and run `npm test` + +## Security + +Please email [@ljharb](https://github.com/ljharb) or see https://tidelift.com/security if you have a potential security vulnerability to report. + +[package-url]: https://npmjs.org/package/get-intrinsic +[npm-version-svg]: https://versionbadg.es/ljharb/get-intrinsic.svg +[deps-svg]: https://david-dm.org/ljharb/get-intrinsic.svg +[deps-url]: https://david-dm.org/ljharb/get-intrinsic +[dev-deps-svg]: https://david-dm.org/ljharb/get-intrinsic/dev-status.svg +[dev-deps-url]: https://david-dm.org/ljharb/get-intrinsic#info=devDependencies +[npm-badge-png]: https://nodei.co/npm/get-intrinsic.png?downloads=true&stars=true +[license-image]: https://img.shields.io/npm/l/get-intrinsic.svg +[license-url]: LICENSE +[downloads-image]: https://img.shields.io/npm/dm/get-intrinsic.svg +[downloads-url]: https://npm-stat.com/charts.html?package=get-intrinsic +[codecov-image]: https://codecov.io/gh/ljharb/get-intrinsic/branch/main/graphs/badge.svg +[codecov-url]: https://app.codecov.io/gh/ljharb/get-intrinsic/ +[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/ljharb/get-intrinsic +[actions-url]: https://github.com/ljharb/get-intrinsic/actions diff --git a/node_modules/get-intrinsic/index.js b/node_modules/get-intrinsic/index.js new file mode 100644 index 000000000..3c3d93eb7 --- /dev/null +++ b/node_modules/get-intrinsic/index.js @@ -0,0 +1,334 @@ +'use strict'; + +var undefined; + +var $SyntaxError = SyntaxError; +var $Function = Function; +var $TypeError = TypeError; + +// eslint-disable-next-line consistent-return +var getEvalledConstructor = function (expressionSyntax) { + try { + return $Function('"use strict"; return (' + expressionSyntax + ').constructor;')(); + } catch (e) {} +}; + +var $gOPD = Object.getOwnPropertyDescriptor; +if ($gOPD) { + try { + $gOPD({}, ''); + } catch (e) { + $gOPD = null; // this is IE 8, which has a broken gOPD + } +} + +var throwTypeError = function () { + throw new $TypeError(); +}; +var ThrowTypeError = $gOPD + ? (function () { + try { + // eslint-disable-next-line no-unused-expressions, no-caller, no-restricted-properties + arguments.callee; // IE 8 does not throw here + return throwTypeError; + } catch (calleeThrows) { + try { + // IE 8 throws on Object.getOwnPropertyDescriptor(arguments, '') + return $gOPD(arguments, 'callee').get; + } catch (gOPDthrows) { + return throwTypeError; + } + } + }()) + : throwTypeError; + +var hasSymbols = require('has-symbols')(); + +var getProto = Object.getPrototypeOf || function (x) { return x.__proto__; }; // eslint-disable-line no-proto + +var needsEval = {}; + +var TypedArray = typeof Uint8Array === 'undefined' ? undefined : getProto(Uint8Array); + +var INTRINSICS = { + '%AggregateError%': typeof AggregateError === 'undefined' ? undefined : AggregateError, + '%Array%': Array, + '%ArrayBuffer%': typeof ArrayBuffer === 'undefined' ? undefined : ArrayBuffer, + '%ArrayIteratorPrototype%': hasSymbols ? getProto([][Symbol.iterator]()) : undefined, + '%AsyncFromSyncIteratorPrototype%': undefined, + '%AsyncFunction%': needsEval, + '%AsyncGenerator%': needsEval, + '%AsyncGeneratorFunction%': needsEval, + '%AsyncIteratorPrototype%': needsEval, + '%Atomics%': typeof Atomics === 'undefined' ? undefined : Atomics, + '%BigInt%': typeof BigInt === 'undefined' ? undefined : BigInt, + '%Boolean%': Boolean, + '%DataView%': typeof DataView === 'undefined' ? undefined : DataView, + '%Date%': Date, + '%decodeURI%': decodeURI, + '%decodeURIComponent%': decodeURIComponent, + '%encodeURI%': encodeURI, + '%encodeURIComponent%': encodeURIComponent, + '%Error%': Error, + '%eval%': eval, // eslint-disable-line no-eval + '%EvalError%': EvalError, + '%Float32Array%': typeof Float32Array === 'undefined' ? undefined : Float32Array, + '%Float64Array%': typeof Float64Array === 'undefined' ? undefined : Float64Array, + '%FinalizationRegistry%': typeof FinalizationRegistry === 'undefined' ? undefined : FinalizationRegistry, + '%Function%': $Function, + '%GeneratorFunction%': needsEval, + '%Int8Array%': typeof Int8Array === 'undefined' ? undefined : Int8Array, + '%Int16Array%': typeof Int16Array === 'undefined' ? undefined : Int16Array, + '%Int32Array%': typeof Int32Array === 'undefined' ? undefined : Int32Array, + '%isFinite%': isFinite, + '%isNaN%': isNaN, + '%IteratorPrototype%': hasSymbols ? getProto(getProto([][Symbol.iterator]())) : undefined, + '%JSON%': typeof JSON === 'object' ? JSON : undefined, + '%Map%': typeof Map === 'undefined' ? undefined : Map, + '%MapIteratorPrototype%': typeof Map === 'undefined' || !hasSymbols ? undefined : getProto(new Map()[Symbol.iterator]()), + '%Math%': Math, + '%Number%': Number, + '%Object%': Object, + '%parseFloat%': parseFloat, + '%parseInt%': parseInt, + '%Promise%': typeof Promise === 'undefined' ? undefined : Promise, + '%Proxy%': typeof Proxy === 'undefined' ? undefined : Proxy, + '%RangeError%': RangeError, + '%ReferenceError%': ReferenceError, + '%Reflect%': typeof Reflect === 'undefined' ? undefined : Reflect, + '%RegExp%': RegExp, + '%Set%': typeof Set === 'undefined' ? undefined : Set, + '%SetIteratorPrototype%': typeof Set === 'undefined' || !hasSymbols ? undefined : getProto(new Set()[Symbol.iterator]()), + '%SharedArrayBuffer%': typeof SharedArrayBuffer === 'undefined' ? undefined : SharedArrayBuffer, + '%String%': String, + '%StringIteratorPrototype%': hasSymbols ? getProto(''[Symbol.iterator]()) : undefined, + '%Symbol%': hasSymbols ? Symbol : undefined, + '%SyntaxError%': $SyntaxError, + '%ThrowTypeError%': ThrowTypeError, + '%TypedArray%': TypedArray, + '%TypeError%': $TypeError, + '%Uint8Array%': typeof Uint8Array === 'undefined' ? undefined : Uint8Array, + '%Uint8ClampedArray%': typeof Uint8ClampedArray === 'undefined' ? undefined : Uint8ClampedArray, + '%Uint16Array%': typeof Uint16Array === 'undefined' ? undefined : Uint16Array, + '%Uint32Array%': typeof Uint32Array === 'undefined' ? undefined : Uint32Array, + '%URIError%': URIError, + '%WeakMap%': typeof WeakMap === 'undefined' ? undefined : WeakMap, + '%WeakRef%': typeof WeakRef === 'undefined' ? undefined : WeakRef, + '%WeakSet%': typeof WeakSet === 'undefined' ? undefined : WeakSet +}; + +var doEval = function doEval(name) { + var value; + if (name === '%AsyncFunction%') { + value = getEvalledConstructor('async function () {}'); + } else if (name === '%GeneratorFunction%') { + value = getEvalledConstructor('function* () {}'); + } else if (name === '%AsyncGeneratorFunction%') { + value = getEvalledConstructor('async function* () {}'); + } else if (name === '%AsyncGenerator%') { + var fn = doEval('%AsyncGeneratorFunction%'); + if (fn) { + value = fn.prototype; + } + } else if (name === '%AsyncIteratorPrototype%') { + var gen = doEval('%AsyncGenerator%'); + if (gen) { + value = getProto(gen.prototype); + } + } + + INTRINSICS[name] = value; + + return value; +}; + +var LEGACY_ALIASES = { + '%ArrayBufferPrototype%': ['ArrayBuffer', 'prototype'], + '%ArrayPrototype%': ['Array', 'prototype'], + '%ArrayProto_entries%': ['Array', 'prototype', 'entries'], + '%ArrayProto_forEach%': ['Array', 'prototype', 'forEach'], + '%ArrayProto_keys%': ['Array', 'prototype', 'keys'], + '%ArrayProto_values%': ['Array', 'prototype', 'values'], + '%AsyncFunctionPrototype%': ['AsyncFunction', 'prototype'], + '%AsyncGenerator%': ['AsyncGeneratorFunction', 'prototype'], + '%AsyncGeneratorPrototype%': ['AsyncGeneratorFunction', 'prototype', 'prototype'], + '%BooleanPrototype%': ['Boolean', 'prototype'], + '%DataViewPrototype%': ['DataView', 'prototype'], + '%DatePrototype%': ['Date', 'prototype'], + '%ErrorPrototype%': ['Error', 'prototype'], + '%EvalErrorPrototype%': ['EvalError', 'prototype'], + '%Float32ArrayPrototype%': ['Float32Array', 'prototype'], + '%Float64ArrayPrototype%': ['Float64Array', 'prototype'], + '%FunctionPrototype%': ['Function', 'prototype'], + '%Generator%': ['GeneratorFunction', 'prototype'], + '%GeneratorPrototype%': ['GeneratorFunction', 'prototype', 'prototype'], + '%Int8ArrayPrototype%': ['Int8Array', 'prototype'], + '%Int16ArrayPrototype%': ['Int16Array', 'prototype'], + '%Int32ArrayPrototype%': ['Int32Array', 'prototype'], + '%JSONParse%': ['JSON', 'parse'], + '%JSONStringify%': ['JSON', 'stringify'], + '%MapPrototype%': ['Map', 'prototype'], + '%NumberPrototype%': ['Number', 'prototype'], + '%ObjectPrototype%': ['Object', 'prototype'], + '%ObjProto_toString%': ['Object', 'prototype', 'toString'], + '%ObjProto_valueOf%': ['Object', 'prototype', 'valueOf'], + '%PromisePrototype%': ['Promise', 'prototype'], + '%PromiseProto_then%': ['Promise', 'prototype', 'then'], + '%Promise_all%': ['Promise', 'all'], + '%Promise_reject%': ['Promise', 'reject'], + '%Promise_resolve%': ['Promise', 'resolve'], + '%RangeErrorPrototype%': ['RangeError', 'prototype'], + '%ReferenceErrorPrototype%': ['ReferenceError', 'prototype'], + '%RegExpPrototype%': ['RegExp', 'prototype'], + '%SetPrototype%': ['Set', 'prototype'], + '%SharedArrayBufferPrototype%': ['SharedArrayBuffer', 'prototype'], + '%StringPrototype%': ['String', 'prototype'], + '%SymbolPrototype%': ['Symbol', 'prototype'], + '%SyntaxErrorPrototype%': ['SyntaxError', 'prototype'], + '%TypedArrayPrototype%': ['TypedArray', 'prototype'], + '%TypeErrorPrototype%': ['TypeError', 'prototype'], + '%Uint8ArrayPrototype%': ['Uint8Array', 'prototype'], + '%Uint8ClampedArrayPrototype%': ['Uint8ClampedArray', 'prototype'], + '%Uint16ArrayPrototype%': ['Uint16Array', 'prototype'], + '%Uint32ArrayPrototype%': ['Uint32Array', 'prototype'], + '%URIErrorPrototype%': ['URIError', 'prototype'], + '%WeakMapPrototype%': ['WeakMap', 'prototype'], + '%WeakSetPrototype%': ['WeakSet', 'prototype'] +}; + +var bind = require('function-bind'); +var hasOwn = require('has'); +var $concat = bind.call(Function.call, Array.prototype.concat); +var $spliceApply = bind.call(Function.apply, Array.prototype.splice); +var $replace = bind.call(Function.call, String.prototype.replace); +var $strSlice = bind.call(Function.call, String.prototype.slice); +var $exec = bind.call(Function.call, RegExp.prototype.exec); + +/* adapted from https://github.com/lodash/lodash/blob/4.17.15/dist/lodash.js#L6735-L6744 */ +var rePropName = /[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g; +var reEscapeChar = /\\(\\)?/g; /** Used to match backslashes in property paths. */ +var stringToPath = function stringToPath(string) { + var first = $strSlice(string, 0, 1); + var last = $strSlice(string, -1); + if (first === '%' && last !== '%') { + throw new $SyntaxError('invalid intrinsic syntax, expected closing `%`'); + } else if (last === '%' && first !== '%') { + throw new $SyntaxError('invalid intrinsic syntax, expected opening `%`'); + } + var result = []; + $replace(string, rePropName, function (match, number, quote, subString) { + result[result.length] = quote ? $replace(subString, reEscapeChar, '$1') : number || match; + }); + return result; +}; +/* end adaptation */ + +var getBaseIntrinsic = function getBaseIntrinsic(name, allowMissing) { + var intrinsicName = name; + var alias; + if (hasOwn(LEGACY_ALIASES, intrinsicName)) { + alias = LEGACY_ALIASES[intrinsicName]; + intrinsicName = '%' + alias[0] + '%'; + } + + if (hasOwn(INTRINSICS, intrinsicName)) { + var value = INTRINSICS[intrinsicName]; + if (value === needsEval) { + value = doEval(intrinsicName); + } + if (typeof value === 'undefined' && !allowMissing) { + throw new $TypeError('intrinsic ' + name + ' exists, but is not available. Please file an issue!'); + } + + return { + alias: alias, + name: intrinsicName, + value: value + }; + } + + throw new $SyntaxError('intrinsic ' + name + ' does not exist!'); +}; + +module.exports = function GetIntrinsic(name, allowMissing) { + if (typeof name !== 'string' || name.length === 0) { + throw new $TypeError('intrinsic name must be a non-empty string'); + } + if (arguments.length > 1 && typeof allowMissing !== 'boolean') { + throw new $TypeError('"allowMissing" argument must be a boolean'); + } + + if ($exec(/^%?[^%]*%?$/, name) === null) { + throw new $SyntaxError('`%` may not be present anywhere but at the beginning and end of the intrinsic name'); + } + var parts = stringToPath(name); + var intrinsicBaseName = parts.length > 0 ? parts[0] : ''; + + var intrinsic = getBaseIntrinsic('%' + intrinsicBaseName + '%', allowMissing); + var intrinsicRealName = intrinsic.name; + var value = intrinsic.value; + var skipFurtherCaching = false; + + var alias = intrinsic.alias; + if (alias) { + intrinsicBaseName = alias[0]; + $spliceApply(parts, $concat([0, 1], alias)); + } + + for (var i = 1, isOwn = true; i < parts.length; i += 1) { + var part = parts[i]; + var first = $strSlice(part, 0, 1); + var last = $strSlice(part, -1); + if ( + ( + (first === '"' || first === "'" || first === '`') + || (last === '"' || last === "'" || last === '`') + ) + && first !== last + ) { + throw new $SyntaxError('property names with quotes must have matching quotes'); + } + if (part === 'constructor' || !isOwn) { + skipFurtherCaching = true; + } + + intrinsicBaseName += '.' + part; + intrinsicRealName = '%' + intrinsicBaseName + '%'; + + if (hasOwn(INTRINSICS, intrinsicRealName)) { + value = INTRINSICS[intrinsicRealName]; + } else if (value != null) { + if (!(part in value)) { + if (!allowMissing) { + throw new $TypeError('base intrinsic for ' + name + ' exists, but the property is not available.'); + } + return void undefined; + } + if ($gOPD && (i + 1) >= parts.length) { + var desc = $gOPD(value, part); + isOwn = !!desc; + + // By convention, when a data property is converted to an accessor + // property to emulate a data property that does not suffer from + // the override mistake, that accessor's getter is marked with + // an `originalValue` property. Here, when we detect this, we + // uphold the illusion by pretending to see that original data + // property, i.e., returning the value rather than the getter + // itself. + if (isOwn && 'get' in desc && !('originalValue' in desc.get)) { + value = desc.get; + } else { + value = value[part]; + } + } else { + isOwn = hasOwn(value, part); + value = value[part]; + } + + if (isOwn && !skipFurtherCaching) { + INTRINSICS[intrinsicRealName] = value; + } + } + } + return value; +}; diff --git a/node_modules/get-intrinsic/package.json b/node_modules/get-intrinsic/package.json new file mode 100644 index 000000000..dfde0329f --- /dev/null +++ b/node_modules/get-intrinsic/package.json @@ -0,0 +1,91 @@ +{ + "name": "get-intrinsic", + "version": "1.1.3", + "description": "Get and robustly cache all JS language-level intrinsics at first require time", + "main": "index.js", + "exports": { + ".": [ + { + "default": "./index.js" + }, + "./index.js" + ], + "./package.json": "./package.json" + }, + "scripts": { + "prepack": "npmignore --auto --commentLines=autogenerated", + "prepublish": "not-in-publish || npm run prepublishOnly", + "prepublishOnly": "safe-publish-latest", + "prelint": "evalmd README.md", + "lint": "eslint --ext=.js,.mjs .", + "pretest": "npm run lint", + "tests-only": "nyc tape 'test/**/*.js'", + "test": "npm run tests-only", + "posttest": "aud --production", + "version": "auto-changelog && git add CHANGELOG.md", + "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/ljharb/get-intrinsic.git" + }, + "keywords": [ + "javascript", + "ecmascript", + "es", + "js", + "intrinsic", + "getintrinsic", + "es-abstract" + ], + "author": "Jordan Harband ", + "funding": { + "url": "https://github.com/sponsors/ljharb" + }, + "license": "MIT", + "bugs": { + "url": "https://github.com/ljharb/get-intrinsic/issues" + }, + "homepage": "https://github.com/ljharb/get-intrinsic#readme", + "devDependencies": { + "@ljharb/eslint-config": "^21.0.0", + "aud": "^2.0.0", + "auto-changelog": "^2.4.0", + "call-bind": "^1.0.2", + "es-abstract": "^1.20.2", + "es-value-fixtures": "^1.4.2", + "eslint": "=8.8.0", + "evalmd": "^0.0.19", + "for-each": "^0.3.3", + "make-async-function": "^1.0.0", + "make-async-generator-function": "^1.0.0", + "make-generator-function": "^2.0.0", + "mock-property": "^1.0.0", + "npmignore": "^0.3.0", + "nyc": "^10.3.2", + "object-inspect": "^1.12.2", + "safe-publish-latest": "^2.0.0", + "tape": "^5.6.0" + }, + "auto-changelog": { + "output": "CHANGELOG.md", + "template": "keepachangelog", + "unreleased": false, + "commitLimit": false, + "backfillLimit": false, + "hideCredit": true + }, + "dependencies": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.3" + }, + "testling": { + "files": "test/GetIntrinsic.js" + }, + "publishConfig": { + "ignore": [ + ".github/workflows" + ] + } +} diff --git a/node_modules/get-intrinsic/test/GetIntrinsic.js b/node_modules/get-intrinsic/test/GetIntrinsic.js new file mode 100644 index 000000000..7e0ea30f6 --- /dev/null +++ b/node_modules/get-intrinsic/test/GetIntrinsic.js @@ -0,0 +1,274 @@ +'use strict'; + +var GetIntrinsic = require('../'); + +var test = require('tape'); +var forEach = require('for-each'); +var debug = require('object-inspect'); +var generatorFns = require('make-generator-function')(); +var asyncFns = require('make-async-function').list(); +var asyncGenFns = require('make-async-generator-function')(); +var mockProperty = require('mock-property'); + +var callBound = require('call-bind/callBound'); +var v = require('es-value-fixtures'); +var $gOPD = require('es-abstract/helpers/getOwnPropertyDescriptor'); +var DefinePropertyOrThrow = require('es-abstract/2021/DefinePropertyOrThrow'); + +var $isProto = callBound('%Object.prototype.isPrototypeOf%'); + +test('export', function (t) { + t.equal(typeof GetIntrinsic, 'function', 'it is a function'); + t.equal(GetIntrinsic.length, 2, 'function has length of 2'); + + t.end(); +}); + +test('throws', function (t) { + t['throws']( + function () { GetIntrinsic('not an intrinsic'); }, + SyntaxError, + 'nonexistent intrinsic throws a syntax error' + ); + + t['throws']( + function () { GetIntrinsic(''); }, + TypeError, + 'empty string intrinsic throws a type error' + ); + + t['throws']( + function () { GetIntrinsic('.'); }, + SyntaxError, + '"just a dot" intrinsic throws a syntax error' + ); + + t['throws']( + function () { GetIntrinsic('%String'); }, + SyntaxError, + 'Leading % without trailing % throws a syntax error' + ); + + t['throws']( + function () { GetIntrinsic('String%'); }, + SyntaxError, + 'Trailing % without leading % throws a syntax error' + ); + + t['throws']( + function () { GetIntrinsic("String['prototype]"); }, + SyntaxError, + 'Dynamic property access is disallowed for intrinsics (unterminated string)' + ); + + t['throws']( + function () { GetIntrinsic('%Proxy.prototype.undefined%'); }, + TypeError, + "Throws when middle part doesn't exist (%Proxy.prototype.undefined%)" + ); + + t['throws']( + function () { GetIntrinsic('%Array.prototype%garbage%'); }, + SyntaxError, + 'Throws with extra percent signs' + ); + + t['throws']( + function () { GetIntrinsic('%Array.prototype%push%'); }, + SyntaxError, + 'Throws with extra percent signs, even on an existing intrinsic' + ); + + forEach(v.nonStrings, function (nonString) { + t['throws']( + function () { GetIntrinsic(nonString); }, + TypeError, + debug(nonString) + ' is not a String' + ); + }); + + forEach(v.nonBooleans, function (nonBoolean) { + t['throws']( + function () { GetIntrinsic('%', nonBoolean); }, + TypeError, + debug(nonBoolean) + ' is not a Boolean' + ); + }); + + forEach([ + 'toString', + 'propertyIsEnumerable', + 'hasOwnProperty' + ], function (objectProtoMember) { + t['throws']( + function () { GetIntrinsic(objectProtoMember); }, + SyntaxError, + debug(objectProtoMember) + ' is not an intrinsic' + ); + }); + + t.end(); +}); + +test('base intrinsics', function (t) { + t.equal(GetIntrinsic('%Object%'), Object, '%Object% yields Object'); + t.equal(GetIntrinsic('Object'), Object, 'Object yields Object'); + t.equal(GetIntrinsic('%Array%'), Array, '%Array% yields Array'); + t.equal(GetIntrinsic('Array'), Array, 'Array yields Array'); + + t.end(); +}); + +test('dotted paths', function (t) { + t.equal(GetIntrinsic('%Object.prototype.toString%'), Object.prototype.toString, '%Object.prototype.toString% yields Object.prototype.toString'); + t.equal(GetIntrinsic('Object.prototype.toString'), Object.prototype.toString, 'Object.prototype.toString yields Object.prototype.toString'); + t.equal(GetIntrinsic('%Array.prototype.push%'), Array.prototype.push, '%Array.prototype.push% yields Array.prototype.push'); + t.equal(GetIntrinsic('Array.prototype.push'), Array.prototype.push, 'Array.prototype.push yields Array.prototype.push'); + + test('underscore paths are aliases for dotted paths', { skip: !Object.isFrozen || Object.isFrozen(Object.prototype) }, function (st) { + var original = GetIntrinsic('%ObjProto_toString%'); + + forEach([ + '%Object.prototype.toString%', + 'Object.prototype.toString', + '%ObjectPrototype.toString%', + 'ObjectPrototype.toString', + '%ObjProto_toString%', + 'ObjProto_toString' + ], function (name) { + DefinePropertyOrThrow(Object.prototype, 'toString', { + '[[Value]]': function toString() { + return original.apply(this, arguments); + } + }); + st.equal(GetIntrinsic(name), original, name + ' yields original Object.prototype.toString'); + }); + + DefinePropertyOrThrow(Object.prototype, 'toString', { '[[Value]]': original }); + st.end(); + }); + + test('dotted paths cache', { skip: !Object.isFrozen || Object.isFrozen(Object.prototype) }, function (st) { + var original = GetIntrinsic('%Object.prototype.propertyIsEnumerable%'); + + forEach([ + '%Object.prototype.propertyIsEnumerable%', + 'Object.prototype.propertyIsEnumerable', + '%ObjectPrototype.propertyIsEnumerable%', + 'ObjectPrototype.propertyIsEnumerable' + ], function (name) { + var restore = mockProperty(Object.prototype, 'propertyIsEnumerable', { + value: function propertyIsEnumerable() { + return original.apply(this, arguments); + } + }); + st.equal(GetIntrinsic(name), original, name + ' yields cached Object.prototype.propertyIsEnumerable'); + + restore(); + }); + + st.end(); + }); + + test('dotted path reports correct error', function (st) { + st['throws'](function () { + GetIntrinsic('%NonExistentIntrinsic.prototype.property%'); + }, /%NonExistentIntrinsic%/, 'The base intrinsic of %NonExistentIntrinsic.prototype.property% is %NonExistentIntrinsic%'); + + st['throws'](function () { + GetIntrinsic('%NonExistentIntrinsicPrototype.property%'); + }, /%NonExistentIntrinsicPrototype%/, 'The base intrinsic of %NonExistentIntrinsicPrototype.property% is %NonExistentIntrinsicPrototype%'); + + st.end(); + }); + + t.end(); +}); + +test('accessors', { skip: !$gOPD || typeof Map !== 'function' }, function (t) { + var actual = $gOPD(Map.prototype, 'size'); + t.ok(actual, 'Map.prototype.size has a descriptor'); + t.equal(typeof actual.get, 'function', 'Map.prototype.size has a getter function'); + t.equal(GetIntrinsic('%Map.prototype.size%'), actual.get, '%Map.prototype.size% yields the getter for it'); + t.equal(GetIntrinsic('Map.prototype.size'), actual.get, 'Map.prototype.size yields the getter for it'); + + t.end(); +}); + +test('generator functions', { skip: !generatorFns.length }, function (t) { + var $GeneratorFunction = GetIntrinsic('%GeneratorFunction%'); + var $GeneratorFunctionPrototype = GetIntrinsic('%Generator%'); + var $GeneratorPrototype = GetIntrinsic('%GeneratorPrototype%'); + + forEach(generatorFns, function (genFn) { + var fnName = genFn.name; + fnName = fnName ? "'" + fnName + "'" : 'genFn'; + + t.ok(genFn instanceof $GeneratorFunction, fnName + ' instanceof %GeneratorFunction%'); + t.ok($isProto($GeneratorFunctionPrototype, genFn), '%Generator% is prototype of ' + fnName); + t.ok($isProto($GeneratorPrototype, genFn.prototype), '%GeneratorPrototype% is prototype of ' + fnName + '.prototype'); + }); + + t.end(); +}); + +test('async functions', { skip: !asyncFns.length }, function (t) { + var $AsyncFunction = GetIntrinsic('%AsyncFunction%'); + var $AsyncFunctionPrototype = GetIntrinsic('%AsyncFunctionPrototype%'); + + forEach(asyncFns, function (asyncFn) { + var fnName = asyncFn.name; + fnName = fnName ? "'" + fnName + "'" : 'asyncFn'; + + t.ok(asyncFn instanceof $AsyncFunction, fnName + ' instanceof %AsyncFunction%'); + t.ok($isProto($AsyncFunctionPrototype, asyncFn), '%AsyncFunctionPrototype% is prototype of ' + fnName); + }); + + t.end(); +}); + +test('async generator functions', { skip: asyncGenFns.length === 0 }, function (t) { + var $AsyncGeneratorFunction = GetIntrinsic('%AsyncGeneratorFunction%'); + var $AsyncGeneratorFunctionPrototype = GetIntrinsic('%AsyncGenerator%'); + var $AsyncGeneratorPrototype = GetIntrinsic('%AsyncGeneratorPrototype%'); + + forEach(asyncGenFns, function (asyncGenFn) { + var fnName = asyncGenFn.name; + fnName = fnName ? "'" + fnName + "'" : 'asyncGenFn'; + + t.ok(asyncGenFn instanceof $AsyncGeneratorFunction, fnName + ' instanceof %AsyncGeneratorFunction%'); + t.ok($isProto($AsyncGeneratorFunctionPrototype, asyncGenFn), '%AsyncGenerator% is prototype of ' + fnName); + t.ok($isProto($AsyncGeneratorPrototype, asyncGenFn.prototype), '%AsyncGeneratorPrototype% is prototype of ' + fnName + '.prototype'); + }); + + t.end(); +}); + +test('%ThrowTypeError%', function (t) { + var $ThrowTypeError = GetIntrinsic('%ThrowTypeError%'); + + t.equal(typeof $ThrowTypeError, 'function', 'is a function'); + t['throws']( + $ThrowTypeError, + TypeError, + '%ThrowTypeError% throws a TypeError' + ); + + t.end(); +}); + +test('allowMissing', { skip: asyncGenFns.length > 0 }, function (t) { + t['throws']( + function () { GetIntrinsic('%AsyncGeneratorPrototype%'); }, + TypeError, + 'throws when missing' + ); + + t.equal( + GetIntrinsic('%AsyncGeneratorPrototype%', true), + undefined, + 'does not throw when allowMissing' + ); + + t.end(); +}); diff --git a/node_modules/has-symbols/.eslintrc b/node_modules/has-symbols/.eslintrc new file mode 100644 index 000000000..2d9a66a8a --- /dev/null +++ b/node_modules/has-symbols/.eslintrc @@ -0,0 +1,11 @@ +{ + "root": true, + + "extends": "@ljharb", + + "rules": { + "max-statements-per-line": [2, { "max": 2 }], + "no-magic-numbers": 0, + "multiline-comment-style": 0, + } +} diff --git a/node_modules/has-symbols/.github/FUNDING.yml b/node_modules/has-symbols/.github/FUNDING.yml new file mode 100644 index 000000000..04cf87e66 --- /dev/null +++ b/node_modules/has-symbols/.github/FUNDING.yml @@ -0,0 +1,12 @@ +# These are supported funding model platforms + +github: [ljharb] +patreon: # Replace with a single Patreon username +open_collective: # Replace with a single Open Collective username +ko_fi: # Replace with a single Ko-fi username +tidelift: npm/has-symbols +community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry +liberapay: # Replace with a single Liberapay username +issuehunt: # Replace with a single IssueHunt username +otechie: # Replace with a single Otechie username +custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] diff --git a/node_modules/has-symbols/.nycrc b/node_modules/has-symbols/.nycrc new file mode 100644 index 000000000..bdd626ce9 --- /dev/null +++ b/node_modules/has-symbols/.nycrc @@ -0,0 +1,9 @@ +{ + "all": true, + "check-coverage": false, + "reporter": ["text-summary", "text", "html", "json"], + "exclude": [ + "coverage", + "test" + ] +} diff --git a/node_modules/has-symbols/CHANGELOG.md b/node_modules/has-symbols/CHANGELOG.md new file mode 100644 index 000000000..cd532a2b4 --- /dev/null +++ b/node_modules/has-symbols/CHANGELOG.md @@ -0,0 +1,75 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [v1.0.3](https://github.com/inspect-js/has-symbols/compare/v1.0.2...v1.0.3) - 2022-03-01 + +### Commits + +- [actions] use `node/install` instead of `node/run`; use `codecov` action [`518b28f`](https://github.com/inspect-js/has-symbols/commit/518b28f6c5a516cbccae30794e40aa9f738b1693) +- [meta] add `bugs` and `homepage` fields; reorder package.json [`c480b13`](https://github.com/inspect-js/has-symbols/commit/c480b13fd6802b557e1cef9749872cb5fdeef744) +- [actions] reuse common workflows [`01d0ee0`](https://github.com/inspect-js/has-symbols/commit/01d0ee0a8d97c0947f5edb73eb722027a77b2b07) +- [actions] update codecov uploader [`6424ebe`](https://github.com/inspect-js/has-symbols/commit/6424ebe86b2c9c7c3d2e9bd4413a4e4f168cb275) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `auto-changelog`, `tape` [`dfa7e7f`](https://github.com/inspect-js/has-symbols/commit/dfa7e7ff38b594645d8c8222aab895157fa7e282) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `safe-publish-latest`, `tape` [`0c8d436`](https://github.com/inspect-js/has-symbols/commit/0c8d43685c45189cea9018191d4fd7eca91c9d02) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `tape` [`9026554`](https://github.com/inspect-js/has-symbols/commit/902655442a1bf88e72b42345494ef0c60f5d36ab) +- [readme] add actions and codecov badges [`eaa9682`](https://github.com/inspect-js/has-symbols/commit/eaa9682f990f481d3acf7a1c7600bec36f7b3adc) +- [Dev Deps] update `eslint`, `tape` [`bc7a3ba`](https://github.com/inspect-js/has-symbols/commit/bc7a3ba46f27b7743f8a2579732d59d1b9ac791e) +- [Dev Deps] update `eslint`, `auto-changelog` [`0ace00a`](https://github.com/inspect-js/has-symbols/commit/0ace00af08a88cdd1e6ce0d60357d941c60c2d9f) +- [meta] use `prepublishOnly` script for npm 7+ [`093f72b`](https://github.com/inspect-js/has-symbols/commit/093f72bc2b0ed00c781f444922a5034257bf561d) +- [Tests] test on all 16 minors [`9b80d3d`](https://github.com/inspect-js/has-symbols/commit/9b80d3d9102529f04c20ec5b1fcc6e38426c6b03) + +## [v1.0.2](https://github.com/inspect-js/has-symbols/compare/v1.0.1...v1.0.2) - 2021-02-27 + +### Fixed + +- [Fix] use a universal way to get the original Symbol [`#11`](https://github.com/inspect-js/has-symbols/issues/11) + +### Commits + +- [Tests] migrate tests to Github Actions [`90ae798`](https://github.com/inspect-js/has-symbols/commit/90ae79820bdfe7bc703d67f5f3c5e205f98556d3) +- [meta] do not publish github action workflow files [`29e60a1`](https://github.com/inspect-js/has-symbols/commit/29e60a1b7c25c7f1acf7acff4a9320d0d10c49b4) +- [Tests] run `nyc` on all tests [`8476b91`](https://github.com/inspect-js/has-symbols/commit/8476b915650d360915abe2522505abf4b0e8f0ae) +- [readme] fix repo URLs, remove defunct badges [`126288e`](https://github.com/inspect-js/has-symbols/commit/126288ecc1797c0a40247a6b78bcb2e0bc5d7036) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `auto-changelog`, `core-js`, `get-own-property-symbols` [`d84bdfa`](https://github.com/inspect-js/has-symbols/commit/d84bdfa48ac5188abbb4904b42614cd6c030940a) +- [Tests] fix linting errors [`0df3070`](https://github.com/inspect-js/has-symbols/commit/0df3070b981b6c9f2ee530c09189a7f5c6def839) +- [actions] add "Allow Edits" workflow [`1e6bc29`](https://github.com/inspect-js/has-symbols/commit/1e6bc29b188f32b9648657b07eda08504be5aa9c) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `tape` [`36cea2a`](https://github.com/inspect-js/has-symbols/commit/36cea2addd4e6ec435f35a2656b4e9ef82498e9b) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `tape` [`1278338`](https://github.com/inspect-js/has-symbols/commit/127833801865fbc2cc8979beb9ca869c7bfe8222) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `tape` [`1493254`](https://github.com/inspect-js/has-symbols/commit/1493254eda13db5fb8fc5e4a3e8324b3d196029d) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `core-js` [`b090bf2`](https://github.com/inspect-js/has-symbols/commit/b090bf214d3679a30edc1e2d729d466ab5183e1d) +- [actions] switch Automatic Rebase workflow to `pull_request_target` event [`4addb7a`](https://github.com/inspect-js/has-symbols/commit/4addb7ab4dc73f927ae99928d68817554fc21dc0) +- [Dev Deps] update `auto-changelog`, `tape` [`81d0baf`](https://github.com/inspect-js/has-symbols/commit/81d0baf3816096a89a8558e8043895f7a7d10d8b) +- [Dev Deps] update `auto-changelog`; add `aud` [`1a4e561`](https://github.com/inspect-js/has-symbols/commit/1a4e5612c25d91c3a03d509721d02630bc4fe3da) +- [readme] remove unused testling URLs [`3000941`](https://github.com/inspect-js/has-symbols/commit/3000941f958046e923ed8152edb1ef4a599e6fcc) +- [Tests] only audit prod deps [`692e974`](https://github.com/inspect-js/has-symbols/commit/692e9743c912410e9440207631a643a34b4741a1) +- [Dev Deps] update `@ljharb/eslint-config` [`51c946c`](https://github.com/inspect-js/has-symbols/commit/51c946c7f6baa793ec5390bb5a45cdce16b4ba76) + +## [v1.0.1](https://github.com/inspect-js/has-symbols/compare/v1.0.0...v1.0.1) - 2019-11-16 + +### Commits + +- [Tests] use shared travis-ci configs [`ce396c9`](https://github.com/inspect-js/has-symbols/commit/ce396c9419ff11c43d0da5d05cdbb79f7fb42229) +- [Tests] up to `node` `v12.4`, `v11.15`, `v10.15`, `v9.11`, `v8.15`, `v7.10`, `v6.17`, `v4.9`; use `nvm install-latest-npm` [`0690732`](https://github.com/inspect-js/has-symbols/commit/0690732801f47ab429f39ba1962f522d5c462d6b) +- [meta] add `auto-changelog` [`2163d0b`](https://github.com/inspect-js/has-symbols/commit/2163d0b7f36343076b8f947cd1667dd1750f26fc) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `core-js`, `safe-publish-latest`, `tape` [`8e0951f`](https://github.com/inspect-js/has-symbols/commit/8e0951f1a7a2e52068222b7bb73511761e6e4d9c) +- [actions] add automatic rebasing / merge commit blocking [`b09cdb7`](https://github.com/inspect-js/has-symbols/commit/b09cdb7cd7ee39e7a769878f56e2d6066f5ccd1d) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `safe-publish-latest`, `core-js`, `get-own-property-symbols`, `tape` [`1dd42cd`](https://github.com/inspect-js/has-symbols/commit/1dd42cd86183ed0c50f99b1062345c458babca91) +- [meta] create FUNDING.yml [`aa57a17`](https://github.com/inspect-js/has-symbols/commit/aa57a17b19708906d1927f821ea8e73394d84ca4) +- Only apps should have lockfiles [`a2d8bea`](https://github.com/inspect-js/has-symbols/commit/a2d8bea23a97d15c09eaf60f5b107fcf9a4d57aa) +- [Tests] use `npx aud` instead of `nsp` or `npm audit` with hoops [`9e96cb7`](https://github.com/inspect-js/has-symbols/commit/9e96cb783746cbed0c10ef78e599a8eaa7ebe193) +- [meta] add `funding` field [`a0b32cf`](https://github.com/inspect-js/has-symbols/commit/a0b32cf68e803f963c1639b6d47b0a9d6440bab0) +- [Dev Deps] update `safe-publish-latest` [`cb9f0a5`](https://github.com/inspect-js/has-symbols/commit/cb9f0a521a3a1790f1064d437edd33bb6c3d6af0) + +## v1.0.0 - 2016-09-19 + +### Commits + +- Tests. [`ecb6eb9`](https://github.com/inspect-js/has-symbols/commit/ecb6eb934e4883137f3f93b965ba5e0a98df430d) +- package.json [`88a337c`](https://github.com/inspect-js/has-symbols/commit/88a337cee0864a0da35f5d19e69ff0ef0150e46a) +- Initial commit [`42e1e55`](https://github.com/inspect-js/has-symbols/commit/42e1e5502536a2b8ac529c9443984acd14836b1c) +- Initial implementation. [`33f5cc6`](https://github.com/inspect-js/has-symbols/commit/33f5cc6cdff86e2194b081ee842bfdc63caf43fb) +- read me [`01f1170`](https://github.com/inspect-js/has-symbols/commit/01f1170188ff7cb1558aa297f6ba5b516c6d7b0c) diff --git a/node_modules/has-symbols/LICENSE b/node_modules/has-symbols/LICENSE new file mode 100644 index 000000000..df31cbf3c --- /dev/null +++ b/node_modules/has-symbols/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2016 Jordan Harband + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/node_modules/has-symbols/README.md b/node_modules/has-symbols/README.md new file mode 100644 index 000000000..33905f0fc --- /dev/null +++ b/node_modules/has-symbols/README.md @@ -0,0 +1,46 @@ +# has-symbols [![Version Badge][2]][1] + +[![github actions][actions-image]][actions-url] +[![coverage][codecov-image]][codecov-url] +[![dependency status][5]][6] +[![dev dependency status][7]][8] +[![License][license-image]][license-url] +[![Downloads][downloads-image]][downloads-url] + +[![npm badge][11]][1] + +Determine if the JS environment has Symbol support. Supports spec, or shams. + +## Example + +```js +var hasSymbols = require('has-symbols'); + +hasSymbols() === true; // if the environment has native Symbol support. Not polyfillable, not forgeable. + +var hasSymbolsKinda = require('has-symbols/shams'); +hasSymbolsKinda() === true; // if the environment has a Symbol sham that mostly follows the spec. +``` + +## Supported Symbol shams + - get-own-property-symbols [npm](https://www.npmjs.com/package/get-own-property-symbols) | [github](https://github.com/WebReflection/get-own-property-symbols) + - core-js [npm](https://www.npmjs.com/package/core-js) | [github](https://github.com/zloirock/core-js) + +## Tests +Simply clone the repo, `npm install`, and run `npm test` + +[1]: https://npmjs.org/package/has-symbols +[2]: https://versionbadg.es/inspect-js/has-symbols.svg +[5]: https://david-dm.org/inspect-js/has-symbols.svg +[6]: https://david-dm.org/inspect-js/has-symbols +[7]: https://david-dm.org/inspect-js/has-symbols/dev-status.svg +[8]: https://david-dm.org/inspect-js/has-symbols#info=devDependencies +[11]: https://nodei.co/npm/has-symbols.png?downloads=true&stars=true +[license-image]: https://img.shields.io/npm/l/has-symbols.svg +[license-url]: LICENSE +[downloads-image]: https://img.shields.io/npm/dm/has-symbols.svg +[downloads-url]: https://npm-stat.com/charts.html?package=has-symbols +[codecov-image]: https://codecov.io/gh/inspect-js/has-symbols/branch/main/graphs/badge.svg +[codecov-url]: https://app.codecov.io/gh/inspect-js/has-symbols/ +[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/inspect-js/has-symbols +[actions-url]: https://github.com/inspect-js/has-symbols/actions diff --git a/node_modules/has-symbols/index.js b/node_modules/has-symbols/index.js new file mode 100644 index 000000000..17044fa21 --- /dev/null +++ b/node_modules/has-symbols/index.js @@ -0,0 +1,13 @@ +'use strict'; + +var origSymbol = typeof Symbol !== 'undefined' && Symbol; +var hasSymbolSham = require('./shams'); + +module.exports = function hasNativeSymbols() { + if (typeof origSymbol !== 'function') { return false; } + if (typeof Symbol !== 'function') { return false; } + if (typeof origSymbol('foo') !== 'symbol') { return false; } + if (typeof Symbol('bar') !== 'symbol') { return false; } + + return hasSymbolSham(); +}; diff --git a/node_modules/has-symbols/package.json b/node_modules/has-symbols/package.json new file mode 100644 index 000000000..fe7004a10 --- /dev/null +++ b/node_modules/has-symbols/package.json @@ -0,0 +1,101 @@ +{ + "name": "has-symbols", + "version": "1.0.3", + "description": "Determine if the JS environment has Symbol support. Supports spec, or shams.", + "main": "index.js", + "scripts": { + "prepublishOnly": "safe-publish-latest", + "prepublish": "not-in-publish || npm run prepublishOnly", + "pretest": "npm run --silent lint", + "test": "npm run tests-only", + "posttest": "aud --production", + "tests-only": "npm run test:stock && npm run test:staging && npm run test:shams", + "test:stock": "nyc node test", + "test:staging": "nyc node --harmony --es-staging test", + "test:shams": "npm run --silent test:shams:getownpropertysymbols && npm run --silent test:shams:corejs", + "test:shams:corejs": "nyc node test/shams/core-js.js", + "test:shams:getownpropertysymbols": "nyc node test/shams/get-own-property-symbols.js", + "lint": "eslint --ext=js,mjs .", + "version": "auto-changelog && git add CHANGELOG.md", + "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"" + }, + "repository": { + "type": "git", + "url": "git://github.com/inspect-js/has-symbols.git" + }, + "keywords": [ + "Symbol", + "symbols", + "typeof", + "sham", + "polyfill", + "native", + "core-js", + "ES6" + ], + "author": { + "name": "Jordan Harband", + "email": "ljharb@gmail.com", + "url": "http://ljharb.codes" + }, + "contributors": [ + { + "name": "Jordan Harband", + "email": "ljharb@gmail.com", + "url": "http://ljharb.codes" + } + ], + "funding": { + "url": "https://github.com/sponsors/ljharb" + }, + "license": "MIT", + "bugs": { + "url": "https://github.com/ljharb/has-symbols/issues" + }, + "homepage": "https://github.com/ljharb/has-symbols#readme", + "devDependencies": { + "@ljharb/eslint-config": "^20.2.3", + "aud": "^2.0.0", + "auto-changelog": "^2.4.0", + "core-js": "^2.6.12", + "eslint": "=8.8.0", + "get-own-property-symbols": "^0.9.5", + "nyc": "^10.3.2", + "safe-publish-latest": "^2.0.0", + "tape": "^5.5.2" + }, + "testling": { + "files": "test/index.js", + "browsers": [ + "iexplore/6.0..latest", + "firefox/3.0..6.0", + "firefox/15.0..latest", + "firefox/nightly", + "chrome/4.0..10.0", + "chrome/20.0..latest", + "chrome/canary", + "opera/10.0..latest", + "opera/next", + "safari/4.0..latest", + "ipad/6.0..latest", + "iphone/6.0..latest", + "android-browser/4.2" + ] + }, + "engines": { + "node": ">= 0.4" + }, + "auto-changelog": { + "output": "CHANGELOG.md", + "template": "keepachangelog", + "unreleased": false, + "commitLimit": false, + "backfillLimit": false, + "hideCredit": true + }, + "greenkeeper": { + "ignore": [ + "core-js" + ] + } +} diff --git a/node_modules/has-symbols/shams.js b/node_modules/has-symbols/shams.js new file mode 100644 index 000000000..1285210ef --- /dev/null +++ b/node_modules/has-symbols/shams.js @@ -0,0 +1,42 @@ +'use strict'; + +/* eslint complexity: [2, 18], max-statements: [2, 33] */ +module.exports = function hasSymbols() { + if (typeof Symbol !== 'function' || typeof Object.getOwnPropertySymbols !== 'function') { return false; } + if (typeof Symbol.iterator === 'symbol') { return true; } + + var obj = {}; + var sym = Symbol('test'); + var symObj = Object(sym); + if (typeof sym === 'string') { return false; } + + if (Object.prototype.toString.call(sym) !== '[object Symbol]') { return false; } + if (Object.prototype.toString.call(symObj) !== '[object Symbol]') { return false; } + + // temp disabled per https://github.com/ljharb/object.assign/issues/17 + // if (sym instanceof Symbol) { return false; } + // temp disabled per https://github.com/WebReflection/get-own-property-symbols/issues/4 + // if (!(symObj instanceof Symbol)) { return false; } + + // if (typeof Symbol.prototype.toString !== 'function') { return false; } + // if (String(sym) !== Symbol.prototype.toString.call(sym)) { return false; } + + var symVal = 42; + obj[sym] = symVal; + for (sym in obj) { return false; } // eslint-disable-line no-restricted-syntax, no-unreachable-loop + if (typeof Object.keys === 'function' && Object.keys(obj).length !== 0) { return false; } + + if (typeof Object.getOwnPropertyNames === 'function' && Object.getOwnPropertyNames(obj).length !== 0) { return false; } + + var syms = Object.getOwnPropertySymbols(obj); + if (syms.length !== 1 || syms[0] !== sym) { return false; } + + if (!Object.prototype.propertyIsEnumerable.call(obj, sym)) { return false; } + + if (typeof Object.getOwnPropertyDescriptor === 'function') { + var descriptor = Object.getOwnPropertyDescriptor(obj, sym); + if (descriptor.value !== symVal || descriptor.enumerable !== true) { return false; } + } + + return true; +}; diff --git a/node_modules/has-symbols/test/index.js b/node_modules/has-symbols/test/index.js new file mode 100644 index 000000000..352129ca3 --- /dev/null +++ b/node_modules/has-symbols/test/index.js @@ -0,0 +1,22 @@ +'use strict'; + +var test = require('tape'); +var hasSymbols = require('../'); +var runSymbolTests = require('./tests'); + +test('interface', function (t) { + t.equal(typeof hasSymbols, 'function', 'is a function'); + t.equal(typeof hasSymbols(), 'boolean', 'returns a boolean'); + t.end(); +}); + +test('Symbols are supported', { skip: !hasSymbols() }, function (t) { + runSymbolTests(t); + t.end(); +}); + +test('Symbols are not supported', { skip: hasSymbols() }, function (t) { + t.equal(typeof Symbol, 'undefined', 'global Symbol is undefined'); + t.equal(typeof Object.getOwnPropertySymbols, 'undefined', 'Object.getOwnPropertySymbols does not exist'); + t.end(); +}); diff --git a/node_modules/has-symbols/test/shams/core-js.js b/node_modules/has-symbols/test/shams/core-js.js new file mode 100644 index 000000000..df5365c23 --- /dev/null +++ b/node_modules/has-symbols/test/shams/core-js.js @@ -0,0 +1,28 @@ +'use strict'; + +var test = require('tape'); + +if (typeof Symbol === 'function' && typeof Symbol() === 'symbol') { + test('has native Symbol support', function (t) { + t.equal(typeof Symbol, 'function'); + t.equal(typeof Symbol(), 'symbol'); + t.end(); + }); + return; +} + +var hasSymbols = require('../../shams'); + +test('polyfilled Symbols', function (t) { + /* eslint-disable global-require */ + t.equal(hasSymbols(), false, 'hasSymbols is false before polyfilling'); + require('core-js/fn/symbol'); + require('core-js/fn/symbol/to-string-tag'); + + require('../tests')(t); + + var hasSymbolsAfter = hasSymbols(); + t.equal(hasSymbolsAfter, true, 'hasSymbols is true after polyfilling'); + /* eslint-enable global-require */ + t.end(); +}); diff --git a/node_modules/has-symbols/test/shams/get-own-property-symbols.js b/node_modules/has-symbols/test/shams/get-own-property-symbols.js new file mode 100644 index 000000000..9191b248b --- /dev/null +++ b/node_modules/has-symbols/test/shams/get-own-property-symbols.js @@ -0,0 +1,28 @@ +'use strict'; + +var test = require('tape'); + +if (typeof Symbol === 'function' && typeof Symbol() === 'symbol') { + test('has native Symbol support', function (t) { + t.equal(typeof Symbol, 'function'); + t.equal(typeof Symbol(), 'symbol'); + t.end(); + }); + return; +} + +var hasSymbols = require('../../shams'); + +test('polyfilled Symbols', function (t) { + /* eslint-disable global-require */ + t.equal(hasSymbols(), false, 'hasSymbols is false before polyfilling'); + + require('get-own-property-symbols'); + + require('../tests')(t); + + var hasSymbolsAfter = hasSymbols(); + t.equal(hasSymbolsAfter, true, 'hasSymbols is true after polyfilling'); + /* eslint-enable global-require */ + t.end(); +}); diff --git a/node_modules/has-symbols/test/tests.js b/node_modules/has-symbols/test/tests.js new file mode 100644 index 000000000..89edd1291 --- /dev/null +++ b/node_modules/has-symbols/test/tests.js @@ -0,0 +1,56 @@ +'use strict'; + +// eslint-disable-next-line consistent-return +module.exports = function runSymbolTests(t) { + t.equal(typeof Symbol, 'function', 'global Symbol is a function'); + + if (typeof Symbol !== 'function') { return false; } + + t.notEqual(Symbol(), Symbol(), 'two symbols are not equal'); + + /* + t.equal( + Symbol.prototype.toString.call(Symbol('foo')), + Symbol.prototype.toString.call(Symbol('foo')), + 'two symbols with the same description stringify the same' + ); + */ + + /* + var foo = Symbol('foo'); + + t.notEqual( + String(foo), + String(Symbol('bar')), + 'two symbols with different descriptions do not stringify the same' + ); + */ + + t.equal(typeof Symbol.prototype.toString, 'function', 'Symbol#toString is a function'); + // t.equal(String(foo), Symbol.prototype.toString.call(foo), 'Symbol#toString equals String of the same symbol'); + + t.equal(typeof Object.getOwnPropertySymbols, 'function', 'Object.getOwnPropertySymbols is a function'); + + var obj = {}; + var sym = Symbol('test'); + var symObj = Object(sym); + t.notEqual(typeof sym, 'string', 'Symbol is not a string'); + t.equal(Object.prototype.toString.call(sym), '[object Symbol]', 'symbol primitive Object#toStrings properly'); + t.equal(Object.prototype.toString.call(symObj), '[object Symbol]', 'symbol primitive Object#toStrings properly'); + + var symVal = 42; + obj[sym] = symVal; + // eslint-disable-next-line no-restricted-syntax + for (sym in obj) { t.fail('symbol property key was found in for..in of object'); } + + t.deepEqual(Object.keys(obj), [], 'no enumerable own keys on symbol-valued object'); + t.deepEqual(Object.getOwnPropertyNames(obj), [], 'no own names on symbol-valued object'); + t.deepEqual(Object.getOwnPropertySymbols(obj), [sym], 'one own symbol on symbol-valued object'); + t.equal(Object.prototype.propertyIsEnumerable.call(obj, sym), true, 'symbol is enumerable'); + t.deepEqual(Object.getOwnPropertyDescriptor(obj, sym), { + configurable: true, + enumerable: true, + value: 42, + writable: true + }, 'property descriptor is correct'); +}; diff --git a/node_modules/has/LICENSE-MIT b/node_modules/has/LICENSE-MIT new file mode 100644 index 000000000..ae7014d38 --- /dev/null +++ b/node_modules/has/LICENSE-MIT @@ -0,0 +1,22 @@ +Copyright (c) 2013 Thiago de Arruda + +Permission is hereby granted, free of charge, to any person +obtaining a copy of this software and associated documentation +files (the "Software"), to deal in the Software without +restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +OTHER DEALINGS IN THE SOFTWARE. diff --git a/node_modules/has/README.md b/node_modules/has/README.md new file mode 100644 index 000000000..635e3a4ba --- /dev/null +++ b/node_modules/has/README.md @@ -0,0 +1,18 @@ +# has + +> Object.prototype.hasOwnProperty.call shortcut + +## Installation + +```sh +npm install --save has +``` + +## Usage + +```js +var has = require('has'); + +has({}, 'hasOwnProperty'); // false +has(Object.prototype, 'hasOwnProperty'); // true +``` diff --git a/node_modules/has/package.json b/node_modules/has/package.json new file mode 100644 index 000000000..7c4592f16 --- /dev/null +++ b/node_modules/has/package.json @@ -0,0 +1,48 @@ +{ + "name": "has", + "description": "Object.prototype.hasOwnProperty.call shortcut", + "version": "1.0.3", + "homepage": "https://github.com/tarruda/has", + "author": { + "name": "Thiago de Arruda", + "email": "tpadilha84@gmail.com" + }, + "contributors": [ + { + "name": "Jordan Harband", + "email": "ljharb@gmail.com", + "url": "http://ljharb.codes" + } + ], + "repository": { + "type": "git", + "url": "git://github.com/tarruda/has.git" + }, + "bugs": { + "url": "https://github.com/tarruda/has/issues" + }, + "license": "MIT", + "licenses": [ + { + "type": "MIT", + "url": "https://github.com/tarruda/has/blob/master/LICENSE-MIT" + } + ], + "main": "./src", + "dependencies": { + "function-bind": "^1.1.1" + }, + "devDependencies": { + "@ljharb/eslint-config": "^12.2.1", + "eslint": "^4.19.1", + "tape": "^4.9.0" + }, + "engines": { + "node": ">= 0.4.0" + }, + "scripts": { + "lint": "eslint .", + "pretest": "npm run lint", + "test": "tape test" + } +} diff --git a/node_modules/has/src/index.js b/node_modules/has/src/index.js new file mode 100644 index 000000000..dd92dd909 --- /dev/null +++ b/node_modules/has/src/index.js @@ -0,0 +1,5 @@ +'use strict'; + +var bind = require('function-bind'); + +module.exports = bind.call(Function.call, Object.prototype.hasOwnProperty); diff --git a/node_modules/has/test/index.js b/node_modules/has/test/index.js new file mode 100644 index 000000000..43d480b2c --- /dev/null +++ b/node_modules/has/test/index.js @@ -0,0 +1,10 @@ +'use strict'; + +var test = require('tape'); +var has = require('../'); + +test('has', function (t) { + t.equal(has({}, 'hasOwnProperty'), false, 'object literal does not have own property "hasOwnProperty"'); + t.equal(has(Object.prototype, 'hasOwnProperty'), true, 'Object.prototype has own property "hasOwnProperty"'); + t.end(); +}); diff --git a/node_modules/http-errors/HISTORY.md b/node_modules/http-errors/HISTORY.md new file mode 100644 index 000000000..722868429 --- /dev/null +++ b/node_modules/http-errors/HISTORY.md @@ -0,0 +1,180 @@ +2.0.0 / 2021-12-17 +================== + + * Drop support for Node.js 0.6 + * Remove `I'mateapot` export; use `ImATeapot` instead + * Remove support for status being non-first argument + * Rename `UnorderedCollection` constructor to `TooEarly` + * deps: depd@2.0.0 + - Replace internal `eval` usage with `Function` constructor + - Use instance methods on `process` to check for listeners + * deps: statuses@2.0.1 + - Fix messaging casing of `418 I'm a Teapot` + - Remove code 306 + - Rename `425 Unordered Collection` to standard `425 Too Early` + +2021-11-14 / 1.8.1 +================== + + * deps: toidentifier@1.0.1 + +2020-06-29 / 1.8.0 +================== + + * Add `isHttpError` export to determine if value is an HTTP error + * deps: setprototypeof@1.2.0 + +2019-06-24 / 1.7.3 +================== + + * deps: inherits@2.0.4 + +2019-02-18 / 1.7.2 +================== + + * deps: setprototypeof@1.1.1 + +2018-09-08 / 1.7.1 +================== + + * Fix error creating objects in some environments + +2018-07-30 / 1.7.0 +================== + + * Set constructor name when possible + * Use `toidentifier` module to make class names + * deps: statuses@'>= 1.5.0 < 2' + +2018-03-29 / 1.6.3 +================== + + * deps: depd@~1.1.2 + - perf: remove argument reassignment + * deps: setprototypeof@1.1.0 + * deps: statuses@'>= 1.4.0 < 2' + +2017-08-04 / 1.6.2 +================== + + * deps: depd@1.1.1 + - Remove unnecessary `Buffer` loading + +2017-02-20 / 1.6.1 +================== + + * deps: setprototypeof@1.0.3 + - Fix shim for old browsers + +2017-02-14 / 1.6.0 +================== + + * Accept custom 4xx and 5xx status codes in factory + * Add deprecation message to `"I'mateapot"` export + * Deprecate passing status code as anything except first argument in factory + * Deprecate using non-error status codes + * Make `message` property enumerable for `HttpError`s + +2016-11-16 / 1.5.1 +================== + + * deps: inherits@2.0.3 + - Fix issue loading in browser + * deps: setprototypeof@1.0.2 + * deps: statuses@'>= 1.3.1 < 2' + +2016-05-18 / 1.5.0 +================== + + * Support new code `421 Misdirected Request` + * Use `setprototypeof` module to replace `__proto__` setting + * deps: statuses@'>= 1.3.0 < 2' + - Add `421 Misdirected Request` + - perf: enable strict mode + * perf: enable strict mode + +2016-01-28 / 1.4.0 +================== + + * Add `HttpError` export, for `err instanceof createError.HttpError` + * deps: inherits@2.0.1 + * deps: statuses@'>= 1.2.1 < 2' + - Fix message for status 451 + - Remove incorrect nginx status code + +2015-02-02 / 1.3.1 +================== + + * Fix regression where status can be overwritten in `createError` `props` + +2015-02-01 / 1.3.0 +================== + + * Construct errors using defined constructors from `createError` + * Fix error names that are not identifiers + - `createError["I'mateapot"]` is now `createError.ImATeapot` + * Set a meaningful `name` property on constructed errors + +2014-12-09 / 1.2.8 +================== + + * Fix stack trace from exported function + * Remove `arguments.callee` usage + +2014-10-14 / 1.2.7 +================== + + * Remove duplicate line + +2014-10-02 / 1.2.6 +================== + + * Fix `expose` to be `true` for `ClientError` constructor + +2014-09-28 / 1.2.5 +================== + + * deps: statuses@1 + +2014-09-21 / 1.2.4 +================== + + * Fix dependency version to work with old `npm`s + +2014-09-21 / 1.2.3 +================== + + * deps: statuses@~1.1.0 + +2014-09-21 / 1.2.2 +================== + + * Fix publish error + +2014-09-21 / 1.2.1 +================== + + * Support Node.js 0.6 + * Use `inherits` instead of `util` + +2014-09-09 / 1.2.0 +================== + + * Fix the way inheriting functions + * Support `expose` being provided in properties argument + +2014-09-08 / 1.1.0 +================== + + * Default status to 500 + * Support provided `error` to extend + +2014-09-08 / 1.0.1 +================== + + * Fix accepting string message + +2014-09-08 / 1.0.0 +================== + + * Initial release diff --git a/node_modules/http-errors/LICENSE b/node_modules/http-errors/LICENSE new file mode 100644 index 000000000..82af4df54 --- /dev/null +++ b/node_modules/http-errors/LICENSE @@ -0,0 +1,23 @@ + +The MIT License (MIT) + +Copyright (c) 2014 Jonathan Ong me@jongleberry.com +Copyright (c) 2016 Douglas Christopher Wilson doug@somethingdoug.com + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/node_modules/http-errors/README.md b/node_modules/http-errors/README.md new file mode 100644 index 000000000..a8b7330b0 --- /dev/null +++ b/node_modules/http-errors/README.md @@ -0,0 +1,169 @@ +# http-errors + +[![NPM Version][npm-version-image]][npm-url] +[![NPM Downloads][npm-downloads-image]][node-url] +[![Node.js Version][node-image]][node-url] +[![Build Status][ci-image]][ci-url] +[![Test Coverage][coveralls-image]][coveralls-url] + +Create HTTP errors for Express, Koa, Connect, etc. with ease. + +## Install + +This is a [Node.js](https://nodejs.org/en/) module available through the +[npm registry](https://www.npmjs.com/). Installation is done using the +[`npm install` command](https://docs.npmjs.com/getting-started/installing-npm-packages-locally): + +```console +$ npm install http-errors +``` + +## Example + +```js +var createError = require('http-errors') +var express = require('express') +var app = express() + +app.use(function (req, res, next) { + if (!req.user) return next(createError(401, 'Please login to view this page.')) + next() +}) +``` + +## API + +This is the current API, currently extracted from Koa and subject to change. + +### Error Properties + +- `expose` - can be used to signal if `message` should be sent to the client, + defaulting to `false` when `status` >= 500 +- `headers` - can be an object of header names to values to be sent to the + client, defaulting to `undefined`. When defined, the key names should all + be lower-cased +- `message` - the traditional error message, which should be kept short and all + single line +- `status` - the status code of the error, mirroring `statusCode` for general + compatibility +- `statusCode` - the status code of the error, defaulting to `500` + +### createError([status], [message], [properties]) + +Create a new error object with the given message `msg`. +The error object inherits from `createError.HttpError`. + +```js +var err = createError(404, 'This video does not exist!') +``` + +- `status: 500` - the status code as a number +- `message` - the message of the error, defaulting to node's text for that status code. +- `properties` - custom properties to attach to the object + +### createError([status], [error], [properties]) + +Extend the given `error` object with `createError.HttpError` +properties. This will not alter the inheritance of the given +`error` object, and the modified `error` object is the +return value. + + + +```js +fs.readFile('foo.txt', function (err, buf) { + if (err) { + if (err.code === 'ENOENT') { + var httpError = createError(404, err, { expose: false }) + } else { + var httpError = createError(500, err) + } + } +}) +``` + +- `status` - the status code as a number +- `error` - the error object to extend +- `properties` - custom properties to attach to the object + +### createError.isHttpError(val) + +Determine if the provided `val` is an `HttpError`. This will return `true` +if the error inherits from the `HttpError` constructor of this module or +matches the "duck type" for an error this module creates. All outputs from +the `createError` factory will return `true` for this function, including +if an non-`HttpError` was passed into the factory. + +### new createError\[code || name\](\[msg]\)) + +Create a new error object with the given message `msg`. +The error object inherits from `createError.HttpError`. + +```js +var err = new createError.NotFound() +``` + +- `code` - the status code as a number +- `name` - the name of the error as a "bumpy case", i.e. `NotFound` or `InternalServerError`. + +#### List of all constructors + +|Status Code|Constructor Name | +|-----------|-----------------------------| +|400 |BadRequest | +|401 |Unauthorized | +|402 |PaymentRequired | +|403 |Forbidden | +|404 |NotFound | +|405 |MethodNotAllowed | +|406 |NotAcceptable | +|407 |ProxyAuthenticationRequired | +|408 |RequestTimeout | +|409 |Conflict | +|410 |Gone | +|411 |LengthRequired | +|412 |PreconditionFailed | +|413 |PayloadTooLarge | +|414 |URITooLong | +|415 |UnsupportedMediaType | +|416 |RangeNotSatisfiable | +|417 |ExpectationFailed | +|418 |ImATeapot | +|421 |MisdirectedRequest | +|422 |UnprocessableEntity | +|423 |Locked | +|424 |FailedDependency | +|425 |TooEarly | +|426 |UpgradeRequired | +|428 |PreconditionRequired | +|429 |TooManyRequests | +|431 |RequestHeaderFieldsTooLarge | +|451 |UnavailableForLegalReasons | +|500 |InternalServerError | +|501 |NotImplemented | +|502 |BadGateway | +|503 |ServiceUnavailable | +|504 |GatewayTimeout | +|505 |HTTPVersionNotSupported | +|506 |VariantAlsoNegotiates | +|507 |InsufficientStorage | +|508 |LoopDetected | +|509 |BandwidthLimitExceeded | +|510 |NotExtended | +|511 |NetworkAuthenticationRequired| + +## License + +[MIT](LICENSE) + +[ci-image]: https://badgen.net/github/checks/jshttp/http-errors/master?label=ci +[ci-url]: https://github.com/jshttp/http-errors/actions?query=workflow%3Aci +[coveralls-image]: https://badgen.net/coveralls/c/github/jshttp/http-errors/master +[coveralls-url]: https://coveralls.io/r/jshttp/http-errors?branch=master +[node-image]: https://badgen.net/npm/node/http-errors +[node-url]: https://nodejs.org/en/download +[npm-downloads-image]: https://badgen.net/npm/dm/http-errors +[npm-url]: https://npmjs.org/package/http-errors +[npm-version-image]: https://badgen.net/npm/v/http-errors +[travis-image]: https://badgen.net/travis/jshttp/http-errors/master +[travis-url]: https://travis-ci.org/jshttp/http-errors diff --git a/node_modules/http-errors/index.js b/node_modules/http-errors/index.js new file mode 100644 index 000000000..c425f1ee9 --- /dev/null +++ b/node_modules/http-errors/index.js @@ -0,0 +1,289 @@ +/*! + * http-errors + * Copyright(c) 2014 Jonathan Ong + * Copyright(c) 2016 Douglas Christopher Wilson + * MIT Licensed + */ + +'use strict' + +/** + * Module dependencies. + * @private + */ + +var deprecate = require('depd')('http-errors') +var setPrototypeOf = require('setprototypeof') +var statuses = require('statuses') +var inherits = require('inherits') +var toIdentifier = require('toidentifier') + +/** + * Module exports. + * @public + */ + +module.exports = createError +module.exports.HttpError = createHttpErrorConstructor() +module.exports.isHttpError = createIsHttpErrorFunction(module.exports.HttpError) + +// Populate exports for all constructors +populateConstructorExports(module.exports, statuses.codes, module.exports.HttpError) + +/** + * Get the code class of a status code. + * @private + */ + +function codeClass (status) { + return Number(String(status).charAt(0) + '00') +} + +/** + * Create a new HTTP Error. + * + * @returns {Error} + * @public + */ + +function createError () { + // so much arity going on ~_~ + var err + var msg + var status = 500 + var props = {} + for (var i = 0; i < arguments.length; i++) { + var arg = arguments[i] + var type = typeof arg + if (type === 'object' && arg instanceof Error) { + err = arg + status = err.status || err.statusCode || status + } else if (type === 'number' && i === 0) { + status = arg + } else if (type === 'string') { + msg = arg + } else if (type === 'object') { + props = arg + } else { + throw new TypeError('argument #' + (i + 1) + ' unsupported type ' + type) + } + } + + if (typeof status === 'number' && (status < 400 || status >= 600)) { + deprecate('non-error status code; use only 4xx or 5xx status codes') + } + + if (typeof status !== 'number' || + (!statuses.message[status] && (status < 400 || status >= 600))) { + status = 500 + } + + // constructor + var HttpError = createError[status] || createError[codeClass(status)] + + if (!err) { + // create error + err = HttpError + ? new HttpError(msg) + : new Error(msg || statuses.message[status]) + Error.captureStackTrace(err, createError) + } + + if (!HttpError || !(err instanceof HttpError) || err.status !== status) { + // add properties to generic error + err.expose = status < 500 + err.status = err.statusCode = status + } + + for (var key in props) { + if (key !== 'status' && key !== 'statusCode') { + err[key] = props[key] + } + } + + return err +} + +/** + * Create HTTP error abstract base class. + * @private + */ + +function createHttpErrorConstructor () { + function HttpError () { + throw new TypeError('cannot construct abstract class') + } + + inherits(HttpError, Error) + + return HttpError +} + +/** + * Create a constructor for a client error. + * @private + */ + +function createClientErrorConstructor (HttpError, name, code) { + var className = toClassName(name) + + function ClientError (message) { + // create the error object + var msg = message != null ? message : statuses.message[code] + var err = new Error(msg) + + // capture a stack trace to the construction point + Error.captureStackTrace(err, ClientError) + + // adjust the [[Prototype]] + setPrototypeOf(err, ClientError.prototype) + + // redefine the error message + Object.defineProperty(err, 'message', { + enumerable: true, + configurable: true, + value: msg, + writable: true + }) + + // redefine the error name + Object.defineProperty(err, 'name', { + enumerable: false, + configurable: true, + value: className, + writable: true + }) + + return err + } + + inherits(ClientError, HttpError) + nameFunc(ClientError, className) + + ClientError.prototype.status = code + ClientError.prototype.statusCode = code + ClientError.prototype.expose = true + + return ClientError +} + +/** + * Create function to test is a value is a HttpError. + * @private + */ + +function createIsHttpErrorFunction (HttpError) { + return function isHttpError (val) { + if (!val || typeof val !== 'object') { + return false + } + + if (val instanceof HttpError) { + return true + } + + return val instanceof Error && + typeof val.expose === 'boolean' && + typeof val.statusCode === 'number' && val.status === val.statusCode + } +} + +/** + * Create a constructor for a server error. + * @private + */ + +function createServerErrorConstructor (HttpError, name, code) { + var className = toClassName(name) + + function ServerError (message) { + // create the error object + var msg = message != null ? message : statuses.message[code] + var err = new Error(msg) + + // capture a stack trace to the construction point + Error.captureStackTrace(err, ServerError) + + // adjust the [[Prototype]] + setPrototypeOf(err, ServerError.prototype) + + // redefine the error message + Object.defineProperty(err, 'message', { + enumerable: true, + configurable: true, + value: msg, + writable: true + }) + + // redefine the error name + Object.defineProperty(err, 'name', { + enumerable: false, + configurable: true, + value: className, + writable: true + }) + + return err + } + + inherits(ServerError, HttpError) + nameFunc(ServerError, className) + + ServerError.prototype.status = code + ServerError.prototype.statusCode = code + ServerError.prototype.expose = false + + return ServerError +} + +/** + * Set the name of a function, if possible. + * @private + */ + +function nameFunc (func, name) { + var desc = Object.getOwnPropertyDescriptor(func, 'name') + + if (desc && desc.configurable) { + desc.value = name + Object.defineProperty(func, 'name', desc) + } +} + +/** + * Populate the exports object with constructors for every error class. + * @private + */ + +function populateConstructorExports (exports, codes, HttpError) { + codes.forEach(function forEachCode (code) { + var CodeError + var name = toIdentifier(statuses.message[code]) + + switch (codeClass(code)) { + case 400: + CodeError = createClientErrorConstructor(HttpError, name, code) + break + case 500: + CodeError = createServerErrorConstructor(HttpError, name, code) + break + } + + if (CodeError) { + // export the constructor + exports[code] = CodeError + exports[name] = CodeError + } + }) +} + +/** + * Get a class name from a name identifier. + * @private + */ + +function toClassName (name) { + return name.substr(-5) !== 'Error' + ? name + 'Error' + : name +} diff --git a/node_modules/http-errors/package.json b/node_modules/http-errors/package.json new file mode 100644 index 000000000..4cb6d7eda --- /dev/null +++ b/node_modules/http-errors/package.json @@ -0,0 +1,50 @@ +{ + "name": "http-errors", + "description": "Create HTTP error objects", + "version": "2.0.0", + "author": "Jonathan Ong (http://jongleberry.com)", + "contributors": [ + "Alan Plum ", + "Douglas Christopher Wilson " + ], + "license": "MIT", + "repository": "jshttp/http-errors", + "dependencies": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + }, + "devDependencies": { + "eslint": "7.32.0", + "eslint-config-standard": "14.1.1", + "eslint-plugin-import": "2.25.3", + "eslint-plugin-markdown": "2.2.1", + "eslint-plugin-node": "11.1.0", + "eslint-plugin-promise": "5.2.0", + "eslint-plugin-standard": "4.1.0", + "mocha": "9.1.3", + "nyc": "15.1.0" + }, + "engines": { + "node": ">= 0.8" + }, + "scripts": { + "lint": "eslint . && node ./scripts/lint-readme-list.js", + "test": "mocha --reporter spec --bail", + "test-ci": "nyc --reporter=lcov --reporter=text npm test", + "test-cov": "nyc --reporter=html --reporter=text npm test", + "version": "node scripts/version-history.js && git add HISTORY.md" + }, + "keywords": [ + "http", + "error" + ], + "files": [ + "index.js", + "HISTORY.md", + "LICENSE", + "README.md" + ] +} diff --git a/node_modules/iconv-lite/Changelog.md b/node_modules/iconv-lite/Changelog.md new file mode 100644 index 000000000..f252313f8 --- /dev/null +++ b/node_modules/iconv-lite/Changelog.md @@ -0,0 +1,162 @@ +# 0.4.24 / 2018-08-22 + + * Added MIK encoding (#196, by @Ivan-Kalatchev) + + +# 0.4.23 / 2018-05-07 + + * Fix deprecation warning in Node v10 due to the last usage of `new Buffer` (#185, by @felixbuenemann) + * Switched from NodeBuffer to Buffer in typings (#155 by @felixfbecker, #186 by @larssn) + + +# 0.4.22 / 2018-05-05 + + * Use older semver style for dependencies to be compatible with Node version 0.10 (#182, by @dougwilson) + * Fix tests to accomodate fixes in Node v10 (#182, by @dougwilson) + + +# 0.4.21 / 2018-04-06 + + * Fix encoding canonicalization (#156) + * Fix the paths in the "browser" field in package.json (#174 by @LMLB) + * Removed "contributors" section in package.json - see Git history instead. + + +# 0.4.20 / 2018-04-06 + + * Updated `new Buffer()` usages with recommended replacements as it's being deprecated in Node v10 (#176, #178 by @ChALkeR) + + +# 0.4.19 / 2017-09-09 + + * Fixed iso8859-1 codec regression in handling untranslatable characters (#162, caused by #147) + * Re-generated windows1255 codec, because it was updated in iconv project + * Fixed grammar in error message when iconv-lite is loaded with encoding other than utf8 + + +# 0.4.18 / 2017-06-13 + + * Fixed CESU-8 regression in Node v8. + + +# 0.4.17 / 2017-04-22 + + * Updated typescript definition file to support Angular 2 AoT mode (#153 by @larssn) + + +# 0.4.16 / 2017-04-22 + + * Added support for React Native (#150) + * Changed iso8859-1 encoding to usine internal 'binary' encoding, as it's the same thing (#147 by @mscdex) + * Fixed typo in Readme (#138 by @jiangzhuo) + * Fixed build for Node v6.10+ by making correct version comparison + * Added a warning if iconv-lite is loaded not as utf-8 (see #142) + + +# 0.4.15 / 2016-11-21 + + * Fixed typescript type definition (#137) + + +# 0.4.14 / 2016-11-20 + + * Preparation for v1.0 + * Added Node v6 and latest Node versions to Travis CI test rig + * Deprecated Node v0.8 support + * Typescript typings (@larssn) + * Fix encoding of Euro character in GB 18030 (inspired by @lygstate) + * Add ms prefix to dbcs windows encodings (@rokoroku) + + +# 0.4.13 / 2015-10-01 + + * Fix silly mistake in deprecation notice. + + +# 0.4.12 / 2015-09-26 + + * Node v4 support: + * Added CESU-8 decoding (#106) + * Added deprecation notice for `extendNodeEncodings` + * Added Travis tests for Node v4 and io.js latest (#105 by @Mithgol) + + +# 0.4.11 / 2015-07-03 + + * Added CESU-8 encoding. + + +# 0.4.10 / 2015-05-26 + + * Changed UTF-16 endianness heuristic to take into account any ASCII chars, not + just spaces. This should minimize the importance of "default" endianness. + + +# 0.4.9 / 2015-05-24 + + * Streamlined BOM handling: strip BOM by default, add BOM when encoding if + addBOM: true. Added docs to Readme. + * UTF16 now uses UTF16-LE by default. + * Fixed minor issue with big5 encoding. + * Added io.js testing on Travis; updated node-iconv version to test against. + Now we just skip testing SBCS encodings that node-iconv doesn't support. + * (internal refactoring) Updated codec interface to use classes. + * Use strict mode in all files. + + +# 0.4.8 / 2015-04-14 + + * added alias UNICODE-1-1-UTF-7 for UTF-7 encoding (#94) + + +# 0.4.7 / 2015-02-05 + + * stop official support of Node.js v0.8. Should still work, but no guarantees. + reason: Packages needed for testing are hard to get on Travis CI. + * work in environment where Object.prototype is monkey patched with enumerable + props (#89). + + +# 0.4.6 / 2015-01-12 + + * fix rare aliases of single-byte encodings (thanks @mscdex) + * double the timeout for dbcs tests to make them less flaky on travis + + +# 0.4.5 / 2014-11-20 + + * fix windows-31j and x-sjis encoding support (@nleush) + * minor fix: undefined variable reference when internal error happens + + +# 0.4.4 / 2014-07-16 + + * added encodings UTF-7 (RFC2152) and UTF-7-IMAP (RFC3501 Section 5.1.3) + * fixed streaming base64 encoding + + +# 0.4.3 / 2014-06-14 + + * added encodings UTF-16BE and UTF-16 with BOM + + +# 0.4.2 / 2014-06-12 + + * don't throw exception if `extendNodeEncodings()` is called more than once + + +# 0.4.1 / 2014-06-11 + + * codepage 808 added + + +# 0.4.0 / 2014-06-10 + + * code is rewritten from scratch + * all widespread encodings are supported + * streaming interface added + * browserify compatibility added + * (optional) extend core primitive encodings to make usage even simpler + * moved from vows to mocha as the testing framework + + diff --git a/node_modules/iconv-lite/LICENSE b/node_modules/iconv-lite/LICENSE new file mode 100644 index 000000000..d518d8376 --- /dev/null +++ b/node_modules/iconv-lite/LICENSE @@ -0,0 +1,21 @@ +Copyright (c) 2011 Alexander Shtuchkin + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + diff --git a/node_modules/iconv-lite/README.md b/node_modules/iconv-lite/README.md new file mode 100644 index 000000000..c981c3708 --- /dev/null +++ b/node_modules/iconv-lite/README.md @@ -0,0 +1,156 @@ +## Pure JS character encoding conversion [![Build Status](https://travis-ci.org/ashtuchkin/iconv-lite.svg?branch=master)](https://travis-ci.org/ashtuchkin/iconv-lite) + + * Doesn't need native code compilation. Works on Windows and in sandboxed environments like [Cloud9](http://c9.io). + * Used in popular projects like [Express.js (body_parser)](https://github.com/expressjs/body-parser), + [Grunt](http://gruntjs.com/), [Nodemailer](http://www.nodemailer.com/), [Yeoman](http://yeoman.io/) and others. + * Faster than [node-iconv](https://github.com/bnoordhuis/node-iconv) (see below for performance comparison). + * Intuitive encode/decode API + * Streaming support for Node v0.10+ + * [Deprecated] Can extend Node.js primitives (buffers, streams) to support all iconv-lite encodings. + * In-browser usage via [Browserify](https://github.com/substack/node-browserify) (~180k gzip compressed with Buffer shim included). + * Typescript [type definition file](https://github.com/ashtuchkin/iconv-lite/blob/master/lib/index.d.ts) included. + * React Native is supported (need to explicitly `npm install` two more modules: `buffer` and `stream`). + * License: MIT. + +[![NPM Stats](https://nodei.co/npm/iconv-lite.png?downloads=true&downloadRank=true)](https://npmjs.org/packages/iconv-lite/) + +## Usage +### Basic API +```javascript +var iconv = require('iconv-lite'); + +// Convert from an encoded buffer to js string. +str = iconv.decode(Buffer.from([0x68, 0x65, 0x6c, 0x6c, 0x6f]), 'win1251'); + +// Convert from js string to an encoded buffer. +buf = iconv.encode("Sample input string", 'win1251'); + +// Check if encoding is supported +iconv.encodingExists("us-ascii") +``` + +### Streaming API (Node v0.10+) +```javascript + +// Decode stream (from binary stream to js strings) +http.createServer(function(req, res) { + var converterStream = iconv.decodeStream('win1251'); + req.pipe(converterStream); + + converterStream.on('data', function(str) { + console.log(str); // Do something with decoded strings, chunk-by-chunk. + }); +}); + +// Convert encoding streaming example +fs.createReadStream('file-in-win1251.txt') + .pipe(iconv.decodeStream('win1251')) + .pipe(iconv.encodeStream('ucs2')) + .pipe(fs.createWriteStream('file-in-ucs2.txt')); + +// Sugar: all encode/decode streams have .collect(cb) method to accumulate data. +http.createServer(function(req, res) { + req.pipe(iconv.decodeStream('win1251')).collect(function(err, body) { + assert(typeof body == 'string'); + console.log(body); // full request body string + }); +}); +``` + +### [Deprecated] Extend Node.js own encodings +> NOTE: This doesn't work on latest Node versions. See [details](https://github.com/ashtuchkin/iconv-lite/wiki/Node-v4-compatibility). + +```javascript +// After this call all Node basic primitives will understand iconv-lite encodings. +iconv.extendNodeEncodings(); + +// Examples: +buf = new Buffer(str, 'win1251'); +buf.write(str, 'gbk'); +str = buf.toString('latin1'); +assert(Buffer.isEncoding('iso-8859-15')); +Buffer.byteLength(str, 'us-ascii'); + +http.createServer(function(req, res) { + req.setEncoding('big5'); + req.collect(function(err, body) { + console.log(body); + }); +}); + +fs.createReadStream("file.txt", "shift_jis"); + +// External modules are also supported (if they use Node primitives, which they probably do). +request = require('request'); +request({ + url: "http://github.com/", + encoding: "cp932" +}); + +// To remove extensions +iconv.undoExtendNodeEncodings(); +``` + +## Supported encodings + + * All node.js native encodings: utf8, ucs2 / utf16-le, ascii, binary, base64, hex. + * Additional unicode encodings: utf16, utf16-be, utf-7, utf-7-imap. + * All widespread singlebyte encodings: Windows 125x family, ISO-8859 family, + IBM/DOS codepages, Macintosh family, KOI8 family, all others supported by iconv library. + Aliases like 'latin1', 'us-ascii' also supported. + * All widespread multibyte encodings: CP932, CP936, CP949, CP950, GB2312, GBK, GB18030, Big5, Shift_JIS, EUC-JP. + +See [all supported encodings on wiki](https://github.com/ashtuchkin/iconv-lite/wiki/Supported-Encodings). + +Most singlebyte encodings are generated automatically from [node-iconv](https://github.com/bnoordhuis/node-iconv). Thank you Ben Noordhuis and libiconv authors! + +Multibyte encodings are generated from [Unicode.org mappings](http://www.unicode.org/Public/MAPPINGS/) and [WHATWG Encoding Standard mappings](http://encoding.spec.whatwg.org/). Thank you, respective authors! + + +## Encoding/decoding speed + +Comparison with node-iconv module (1000x256kb, on MacBook Pro, Core i5/2.6 GHz, Node v0.12.0). +Note: your results may vary, so please always check on your hardware. + + operation iconv@2.1.4 iconv-lite@0.4.7 + ---------------------------------------------------------- + encode('win1251') ~96 Mb/s ~320 Mb/s + decode('win1251') ~95 Mb/s ~246 Mb/s + +## BOM handling + + * Decoding: BOM is stripped by default, unless overridden by passing `stripBOM: false` in options + (f.ex. `iconv.decode(buf, enc, {stripBOM: false})`). + A callback might also be given as a `stripBOM` parameter - it'll be called if BOM character was actually found. + * If you want to detect UTF-8 BOM when decoding other encodings, use [node-autodetect-decoder-stream](https://github.com/danielgindi/node-autodetect-decoder-stream) module. + * Encoding: No BOM added, unless overridden by `addBOM: true` option. + +## UTF-16 Encodings + +This library supports UTF-16LE, UTF-16BE and UTF-16 encodings. First two are straightforward, but UTF-16 is trying to be +smart about endianness in the following ways: + * Decoding: uses BOM and 'spaces heuristic' to determine input endianness. Default is UTF-16LE, but can be + overridden with `defaultEncoding: 'utf-16be'` option. Strips BOM unless `stripBOM: false`. + * Encoding: uses UTF-16LE and writes BOM by default. Use `addBOM: false` to override. + +## Other notes + +When decoding, be sure to supply a Buffer to decode() method, otherwise [bad things usually happen](https://github.com/ashtuchkin/iconv-lite/wiki/Use-Buffers-when-decoding). +Untranslatable characters are set to � or ?. No transliteration is currently supported. +Node versions 0.10.31 and 0.11.13 are buggy, don't use them (see #65, #77). + +## Testing + +```bash +$ git clone git@github.com:ashtuchkin/iconv-lite.git +$ cd iconv-lite +$ npm install +$ npm test + +$ # To view performance: +$ node test/performance.js + +$ # To view test coverage: +$ npm run coverage +$ open coverage/lcov-report/index.html +``` diff --git a/node_modules/iconv-lite/encodings/dbcs-codec.js b/node_modules/iconv-lite/encodings/dbcs-codec.js new file mode 100644 index 000000000..1fe3e1601 --- /dev/null +++ b/node_modules/iconv-lite/encodings/dbcs-codec.js @@ -0,0 +1,555 @@ +"use strict"; +var Buffer = require("safer-buffer").Buffer; + +// Multibyte codec. In this scheme, a character is represented by 1 or more bytes. +// Our codec supports UTF-16 surrogates, extensions for GB18030 and unicode sequences. +// To save memory and loading time, we read table files only when requested. + +exports._dbcs = DBCSCodec; + +var UNASSIGNED = -1, + GB18030_CODE = -2, + SEQ_START = -10, + NODE_START = -1000, + UNASSIGNED_NODE = new Array(0x100), + DEF_CHAR = -1; + +for (var i = 0; i < 0x100; i++) + UNASSIGNED_NODE[i] = UNASSIGNED; + + +// Class DBCSCodec reads and initializes mapping tables. +function DBCSCodec(codecOptions, iconv) { + this.encodingName = codecOptions.encodingName; + if (!codecOptions) + throw new Error("DBCS codec is called without the data.") + if (!codecOptions.table) + throw new Error("Encoding '" + this.encodingName + "' has no data."); + + // Load tables. + var mappingTable = codecOptions.table(); + + + // Decode tables: MBCS -> Unicode. + + // decodeTables is a trie, encoded as an array of arrays of integers. Internal arrays are trie nodes and all have len = 256. + // Trie root is decodeTables[0]. + // Values: >= 0 -> unicode character code. can be > 0xFFFF + // == UNASSIGNED -> unknown/unassigned sequence. + // == GB18030_CODE -> this is the end of a GB18030 4-byte sequence. + // <= NODE_START -> index of the next node in our trie to process next byte. + // <= SEQ_START -> index of the start of a character code sequence, in decodeTableSeq. + this.decodeTables = []; + this.decodeTables[0] = UNASSIGNED_NODE.slice(0); // Create root node. + + // Sometimes a MBCS char corresponds to a sequence of unicode chars. We store them as arrays of integers here. + this.decodeTableSeq = []; + + // Actual mapping tables consist of chunks. Use them to fill up decode tables. + for (var i = 0; i < mappingTable.length; i++) + this._addDecodeChunk(mappingTable[i]); + + this.defaultCharUnicode = iconv.defaultCharUnicode; + + + // Encode tables: Unicode -> DBCS. + + // `encodeTable` is array mapping from unicode char to encoded char. All its values are integers for performance. + // Because it can be sparse, it is represented as array of buckets by 256 chars each. Bucket can be null. + // Values: >= 0 -> it is a normal char. Write the value (if <=256 then 1 byte, if <=65536 then 2 bytes, etc.). + // == UNASSIGNED -> no conversion found. Output a default char. + // <= SEQ_START -> it's an index in encodeTableSeq, see below. The character starts a sequence. + this.encodeTable = []; + + // `encodeTableSeq` is used when a sequence of unicode characters is encoded as a single code. We use a tree of + // objects where keys correspond to characters in sequence and leafs are the encoded dbcs values. A special DEF_CHAR key + // means end of sequence (needed when one sequence is a strict subsequence of another). + // Objects are kept separately from encodeTable to increase performance. + this.encodeTableSeq = []; + + // Some chars can be decoded, but need not be encoded. + var skipEncodeChars = {}; + if (codecOptions.encodeSkipVals) + for (var i = 0; i < codecOptions.encodeSkipVals.length; i++) { + var val = codecOptions.encodeSkipVals[i]; + if (typeof val === 'number') + skipEncodeChars[val] = true; + else + for (var j = val.from; j <= val.to; j++) + skipEncodeChars[j] = true; + } + + // Use decode trie to recursively fill out encode tables. + this._fillEncodeTable(0, 0, skipEncodeChars); + + // Add more encoding pairs when needed. + if (codecOptions.encodeAdd) { + for (var uChar in codecOptions.encodeAdd) + if (Object.prototype.hasOwnProperty.call(codecOptions.encodeAdd, uChar)) + this._setEncodeChar(uChar.charCodeAt(0), codecOptions.encodeAdd[uChar]); + } + + this.defCharSB = this.encodeTable[0][iconv.defaultCharSingleByte.charCodeAt(0)]; + if (this.defCharSB === UNASSIGNED) this.defCharSB = this.encodeTable[0]['?']; + if (this.defCharSB === UNASSIGNED) this.defCharSB = "?".charCodeAt(0); + + + // Load & create GB18030 tables when needed. + if (typeof codecOptions.gb18030 === 'function') { + this.gb18030 = codecOptions.gb18030(); // Load GB18030 ranges. + + // Add GB18030 decode tables. + var thirdByteNodeIdx = this.decodeTables.length; + var thirdByteNode = this.decodeTables[thirdByteNodeIdx] = UNASSIGNED_NODE.slice(0); + + var fourthByteNodeIdx = this.decodeTables.length; + var fourthByteNode = this.decodeTables[fourthByteNodeIdx] = UNASSIGNED_NODE.slice(0); + + for (var i = 0x81; i <= 0xFE; i++) { + var secondByteNodeIdx = NODE_START - this.decodeTables[0][i]; + var secondByteNode = this.decodeTables[secondByteNodeIdx]; + for (var j = 0x30; j <= 0x39; j++) + secondByteNode[j] = NODE_START - thirdByteNodeIdx; + } + for (var i = 0x81; i <= 0xFE; i++) + thirdByteNode[i] = NODE_START - fourthByteNodeIdx; + for (var i = 0x30; i <= 0x39; i++) + fourthByteNode[i] = GB18030_CODE + } +} + +DBCSCodec.prototype.encoder = DBCSEncoder; +DBCSCodec.prototype.decoder = DBCSDecoder; + +// Decoder helpers +DBCSCodec.prototype._getDecodeTrieNode = function(addr) { + var bytes = []; + for (; addr > 0; addr >>= 8) + bytes.push(addr & 0xFF); + if (bytes.length == 0) + bytes.push(0); + + var node = this.decodeTables[0]; + for (var i = bytes.length-1; i > 0; i--) { // Traverse nodes deeper into the trie. + var val = node[bytes[i]]; + + if (val == UNASSIGNED) { // Create new node. + node[bytes[i]] = NODE_START - this.decodeTables.length; + this.decodeTables.push(node = UNASSIGNED_NODE.slice(0)); + } + else if (val <= NODE_START) { // Existing node. + node = this.decodeTables[NODE_START - val]; + } + else + throw new Error("Overwrite byte in " + this.encodingName + ", addr: " + addr.toString(16)); + } + return node; +} + + +DBCSCodec.prototype._addDecodeChunk = function(chunk) { + // First element of chunk is the hex mbcs code where we start. + var curAddr = parseInt(chunk[0], 16); + + // Choose the decoding node where we'll write our chars. + var writeTable = this._getDecodeTrieNode(curAddr); + curAddr = curAddr & 0xFF; + + // Write all other elements of the chunk to the table. + for (var k = 1; k < chunk.length; k++) { + var part = chunk[k]; + if (typeof part === "string") { // String, write as-is. + for (var l = 0; l < part.length;) { + var code = part.charCodeAt(l++); + if (0xD800 <= code && code < 0xDC00) { // Decode surrogate + var codeTrail = part.charCodeAt(l++); + if (0xDC00 <= codeTrail && codeTrail < 0xE000) + writeTable[curAddr++] = 0x10000 + (code - 0xD800) * 0x400 + (codeTrail - 0xDC00); + else + throw new Error("Incorrect surrogate pair in " + this.encodingName + " at chunk " + chunk[0]); + } + else if (0x0FF0 < code && code <= 0x0FFF) { // Character sequence (our own encoding used) + var len = 0xFFF - code + 2; + var seq = []; + for (var m = 0; m < len; m++) + seq.push(part.charCodeAt(l++)); // Simple variation: don't support surrogates or subsequences in seq. + + writeTable[curAddr++] = SEQ_START - this.decodeTableSeq.length; + this.decodeTableSeq.push(seq); + } + else + writeTable[curAddr++] = code; // Basic char + } + } + else if (typeof part === "number") { // Integer, meaning increasing sequence starting with prev character. + var charCode = writeTable[curAddr - 1] + 1; + for (var l = 0; l < part; l++) + writeTable[curAddr++] = charCode++; + } + else + throw new Error("Incorrect type '" + typeof part + "' given in " + this.encodingName + " at chunk " + chunk[0]); + } + if (curAddr > 0xFF) + throw new Error("Incorrect chunk in " + this.encodingName + " at addr " + chunk[0] + ": too long" + curAddr); +} + +// Encoder helpers +DBCSCodec.prototype._getEncodeBucket = function(uCode) { + var high = uCode >> 8; // This could be > 0xFF because of astral characters. + if (this.encodeTable[high] === undefined) + this.encodeTable[high] = UNASSIGNED_NODE.slice(0); // Create bucket on demand. + return this.encodeTable[high]; +} + +DBCSCodec.prototype._setEncodeChar = function(uCode, dbcsCode) { + var bucket = this._getEncodeBucket(uCode); + var low = uCode & 0xFF; + if (bucket[low] <= SEQ_START) + this.encodeTableSeq[SEQ_START-bucket[low]][DEF_CHAR] = dbcsCode; // There's already a sequence, set a single-char subsequence of it. + else if (bucket[low] == UNASSIGNED) + bucket[low] = dbcsCode; +} + +DBCSCodec.prototype._setEncodeSequence = function(seq, dbcsCode) { + + // Get the root of character tree according to first character of the sequence. + var uCode = seq[0]; + var bucket = this._getEncodeBucket(uCode); + var low = uCode & 0xFF; + + var node; + if (bucket[low] <= SEQ_START) { + // There's already a sequence with - use it. + node = this.encodeTableSeq[SEQ_START-bucket[low]]; + } + else { + // There was no sequence object - allocate a new one. + node = {}; + if (bucket[low] !== UNASSIGNED) node[DEF_CHAR] = bucket[low]; // If a char was set before - make it a single-char subsequence. + bucket[low] = SEQ_START - this.encodeTableSeq.length; + this.encodeTableSeq.push(node); + } + + // Traverse the character tree, allocating new nodes as needed. + for (var j = 1; j < seq.length-1; j++) { + var oldVal = node[uCode]; + if (typeof oldVal === 'object') + node = oldVal; + else { + node = node[uCode] = {} + if (oldVal !== undefined) + node[DEF_CHAR] = oldVal + } + } + + // Set the leaf to given dbcsCode. + uCode = seq[seq.length-1]; + node[uCode] = dbcsCode; +} + +DBCSCodec.prototype._fillEncodeTable = function(nodeIdx, prefix, skipEncodeChars) { + var node = this.decodeTables[nodeIdx]; + for (var i = 0; i < 0x100; i++) { + var uCode = node[i]; + var mbCode = prefix + i; + if (skipEncodeChars[mbCode]) + continue; + + if (uCode >= 0) + this._setEncodeChar(uCode, mbCode); + else if (uCode <= NODE_START) + this._fillEncodeTable(NODE_START - uCode, mbCode << 8, skipEncodeChars); + else if (uCode <= SEQ_START) + this._setEncodeSequence(this.decodeTableSeq[SEQ_START - uCode], mbCode); + } +} + + + +// == Encoder ================================================================== + +function DBCSEncoder(options, codec) { + // Encoder state + this.leadSurrogate = -1; + this.seqObj = undefined; + + // Static data + this.encodeTable = codec.encodeTable; + this.encodeTableSeq = codec.encodeTableSeq; + this.defaultCharSingleByte = codec.defCharSB; + this.gb18030 = codec.gb18030; +} + +DBCSEncoder.prototype.write = function(str) { + var newBuf = Buffer.alloc(str.length * (this.gb18030 ? 4 : 3)), + leadSurrogate = this.leadSurrogate, + seqObj = this.seqObj, nextChar = -1, + i = 0, j = 0; + + while (true) { + // 0. Get next character. + if (nextChar === -1) { + if (i == str.length) break; + var uCode = str.charCodeAt(i++); + } + else { + var uCode = nextChar; + nextChar = -1; + } + + // 1. Handle surrogates. + if (0xD800 <= uCode && uCode < 0xE000) { // Char is one of surrogates. + if (uCode < 0xDC00) { // We've got lead surrogate. + if (leadSurrogate === -1) { + leadSurrogate = uCode; + continue; + } else { + leadSurrogate = uCode; + // Double lead surrogate found. + uCode = UNASSIGNED; + } + } else { // We've got trail surrogate. + if (leadSurrogate !== -1) { + uCode = 0x10000 + (leadSurrogate - 0xD800) * 0x400 + (uCode - 0xDC00); + leadSurrogate = -1; + } else { + // Incomplete surrogate pair - only trail surrogate found. + uCode = UNASSIGNED; + } + + } + } + else if (leadSurrogate !== -1) { + // Incomplete surrogate pair - only lead surrogate found. + nextChar = uCode; uCode = UNASSIGNED; // Write an error, then current char. + leadSurrogate = -1; + } + + // 2. Convert uCode character. + var dbcsCode = UNASSIGNED; + if (seqObj !== undefined && uCode != UNASSIGNED) { // We are in the middle of the sequence + var resCode = seqObj[uCode]; + if (typeof resCode === 'object') { // Sequence continues. + seqObj = resCode; + continue; + + } else if (typeof resCode == 'number') { // Sequence finished. Write it. + dbcsCode = resCode; + + } else if (resCode == undefined) { // Current character is not part of the sequence. + + // Try default character for this sequence + resCode = seqObj[DEF_CHAR]; + if (resCode !== undefined) { + dbcsCode = resCode; // Found. Write it. + nextChar = uCode; // Current character will be written too in the next iteration. + + } else { + // TODO: What if we have no default? (resCode == undefined) + // Then, we should write first char of the sequence as-is and try the rest recursively. + // Didn't do it for now because no encoding has this situation yet. + // Currently, just skip the sequence and write current char. + } + } + seqObj = undefined; + } + else if (uCode >= 0) { // Regular character + var subtable = this.encodeTable[uCode >> 8]; + if (subtable !== undefined) + dbcsCode = subtable[uCode & 0xFF]; + + if (dbcsCode <= SEQ_START) { // Sequence start + seqObj = this.encodeTableSeq[SEQ_START-dbcsCode]; + continue; + } + + if (dbcsCode == UNASSIGNED && this.gb18030) { + // Use GB18030 algorithm to find character(s) to write. + var idx = findIdx(this.gb18030.uChars, uCode); + if (idx != -1) { + var dbcsCode = this.gb18030.gbChars[idx] + (uCode - this.gb18030.uChars[idx]); + newBuf[j++] = 0x81 + Math.floor(dbcsCode / 12600); dbcsCode = dbcsCode % 12600; + newBuf[j++] = 0x30 + Math.floor(dbcsCode / 1260); dbcsCode = dbcsCode % 1260; + newBuf[j++] = 0x81 + Math.floor(dbcsCode / 10); dbcsCode = dbcsCode % 10; + newBuf[j++] = 0x30 + dbcsCode; + continue; + } + } + } + + // 3. Write dbcsCode character. + if (dbcsCode === UNASSIGNED) + dbcsCode = this.defaultCharSingleByte; + + if (dbcsCode < 0x100) { + newBuf[j++] = dbcsCode; + } + else if (dbcsCode < 0x10000) { + newBuf[j++] = dbcsCode >> 8; // high byte + newBuf[j++] = dbcsCode & 0xFF; // low byte + } + else { + newBuf[j++] = dbcsCode >> 16; + newBuf[j++] = (dbcsCode >> 8) & 0xFF; + newBuf[j++] = dbcsCode & 0xFF; + } + } + + this.seqObj = seqObj; + this.leadSurrogate = leadSurrogate; + return newBuf.slice(0, j); +} + +DBCSEncoder.prototype.end = function() { + if (this.leadSurrogate === -1 && this.seqObj === undefined) + return; // All clean. Most often case. + + var newBuf = Buffer.alloc(10), j = 0; + + if (this.seqObj) { // We're in the sequence. + var dbcsCode = this.seqObj[DEF_CHAR]; + if (dbcsCode !== undefined) { // Write beginning of the sequence. + if (dbcsCode < 0x100) { + newBuf[j++] = dbcsCode; + } + else { + newBuf[j++] = dbcsCode >> 8; // high byte + newBuf[j++] = dbcsCode & 0xFF; // low byte + } + } else { + // See todo above. + } + this.seqObj = undefined; + } + + if (this.leadSurrogate !== -1) { + // Incomplete surrogate pair - only lead surrogate found. + newBuf[j++] = this.defaultCharSingleByte; + this.leadSurrogate = -1; + } + + return newBuf.slice(0, j); +} + +// Export for testing +DBCSEncoder.prototype.findIdx = findIdx; + + +// == Decoder ================================================================== + +function DBCSDecoder(options, codec) { + // Decoder state + this.nodeIdx = 0; + this.prevBuf = Buffer.alloc(0); + + // Static data + this.decodeTables = codec.decodeTables; + this.decodeTableSeq = codec.decodeTableSeq; + this.defaultCharUnicode = codec.defaultCharUnicode; + this.gb18030 = codec.gb18030; +} + +DBCSDecoder.prototype.write = function(buf) { + var newBuf = Buffer.alloc(buf.length*2), + nodeIdx = this.nodeIdx, + prevBuf = this.prevBuf, prevBufOffset = this.prevBuf.length, + seqStart = -this.prevBuf.length, // idx of the start of current parsed sequence. + uCode; + + if (prevBufOffset > 0) // Make prev buf overlap a little to make it easier to slice later. + prevBuf = Buffer.concat([prevBuf, buf.slice(0, 10)]); + + for (var i = 0, j = 0; i < buf.length; i++) { + var curByte = (i >= 0) ? buf[i] : prevBuf[i + prevBufOffset]; + + // Lookup in current trie node. + var uCode = this.decodeTables[nodeIdx][curByte]; + + if (uCode >= 0) { + // Normal character, just use it. + } + else if (uCode === UNASSIGNED) { // Unknown char. + // TODO: Callback with seq. + //var curSeq = (seqStart >= 0) ? buf.slice(seqStart, i+1) : prevBuf.slice(seqStart + prevBufOffset, i+1 + prevBufOffset); + i = seqStart; // Try to parse again, after skipping first byte of the sequence ('i' will be incremented by 'for' cycle). + uCode = this.defaultCharUnicode.charCodeAt(0); + } + else if (uCode === GB18030_CODE) { + var curSeq = (seqStart >= 0) ? buf.slice(seqStart, i+1) : prevBuf.slice(seqStart + prevBufOffset, i+1 + prevBufOffset); + var ptr = (curSeq[0]-0x81)*12600 + (curSeq[1]-0x30)*1260 + (curSeq[2]-0x81)*10 + (curSeq[3]-0x30); + var idx = findIdx(this.gb18030.gbChars, ptr); + uCode = this.gb18030.uChars[idx] + ptr - this.gb18030.gbChars[idx]; + } + else if (uCode <= NODE_START) { // Go to next trie node. + nodeIdx = NODE_START - uCode; + continue; + } + else if (uCode <= SEQ_START) { // Output a sequence of chars. + var seq = this.decodeTableSeq[SEQ_START - uCode]; + for (var k = 0; k < seq.length - 1; k++) { + uCode = seq[k]; + newBuf[j++] = uCode & 0xFF; + newBuf[j++] = uCode >> 8; + } + uCode = seq[seq.length-1]; + } + else + throw new Error("iconv-lite internal error: invalid decoding table value " + uCode + " at " + nodeIdx + "/" + curByte); + + // Write the character to buffer, handling higher planes using surrogate pair. + if (uCode > 0xFFFF) { + uCode -= 0x10000; + var uCodeLead = 0xD800 + Math.floor(uCode / 0x400); + newBuf[j++] = uCodeLead & 0xFF; + newBuf[j++] = uCodeLead >> 8; + + uCode = 0xDC00 + uCode % 0x400; + } + newBuf[j++] = uCode & 0xFF; + newBuf[j++] = uCode >> 8; + + // Reset trie node. + nodeIdx = 0; seqStart = i+1; + } + + this.nodeIdx = nodeIdx; + this.prevBuf = (seqStart >= 0) ? buf.slice(seqStart) : prevBuf.slice(seqStart + prevBufOffset); + return newBuf.slice(0, j).toString('ucs2'); +} + +DBCSDecoder.prototype.end = function() { + var ret = ''; + + // Try to parse all remaining chars. + while (this.prevBuf.length > 0) { + // Skip 1 character in the buffer. + ret += this.defaultCharUnicode; + var buf = this.prevBuf.slice(1); + + // Parse remaining as usual. + this.prevBuf = Buffer.alloc(0); + this.nodeIdx = 0; + if (buf.length > 0) + ret += this.write(buf); + } + + this.nodeIdx = 0; + return ret; +} + +// Binary search for GB18030. Returns largest i such that table[i] <= val. +function findIdx(table, val) { + if (table[0] > val) + return -1; + + var l = 0, r = table.length; + while (l < r-1) { // always table[l] <= val < table[r] + var mid = l + Math.floor((r-l+1)/2); + if (table[mid] <= val) + l = mid; + else + r = mid; + } + return l; +} + diff --git a/node_modules/iconv-lite/encodings/dbcs-data.js b/node_modules/iconv-lite/encodings/dbcs-data.js new file mode 100644 index 000000000..4b6191434 --- /dev/null +++ b/node_modules/iconv-lite/encodings/dbcs-data.js @@ -0,0 +1,176 @@ +"use strict"; + +// Description of supported double byte encodings and aliases. +// Tables are not require()-d until they are needed to speed up library load. +// require()-s are direct to support Browserify. + +module.exports = { + + // == Japanese/ShiftJIS ==================================================== + // All japanese encodings are based on JIS X set of standards: + // JIS X 0201 - Single-byte encoding of ASCII + ¥ + Kana chars at 0xA1-0xDF. + // JIS X 0208 - Main set of 6879 characters, placed in 94x94 plane, to be encoded by 2 bytes. + // Has several variations in 1978, 1983, 1990 and 1997. + // JIS X 0212 - Supplementary plane of 6067 chars in 94x94 plane. 1990. Effectively dead. + // JIS X 0213 - Extension and modern replacement of 0208 and 0212. Total chars: 11233. + // 2 planes, first is superset of 0208, second - revised 0212. + // Introduced in 2000, revised 2004. Some characters are in Unicode Plane 2 (0x2xxxx) + + // Byte encodings are: + // * Shift_JIS: Compatible with 0201, uses not defined chars in top half as lead bytes for double-byte + // encoding of 0208. Lead byte ranges: 0x81-0x9F, 0xE0-0xEF; Trail byte ranges: 0x40-0x7E, 0x80-0x9E, 0x9F-0xFC. + // Windows CP932 is a superset of Shift_JIS. Some companies added more chars, notably KDDI. + // * EUC-JP: Up to 3 bytes per character. Used mostly on *nixes. + // 0x00-0x7F - lower part of 0201 + // 0x8E, 0xA1-0xDF - upper part of 0201 + // (0xA1-0xFE)x2 - 0208 plane (94x94). + // 0x8F, (0xA1-0xFE)x2 - 0212 plane (94x94). + // * JIS X 208: 7-bit, direct encoding of 0208. Byte ranges: 0x21-0x7E (94 values). Uncommon. + // Used as-is in ISO2022 family. + // * ISO2022-JP: Stateful encoding, with escape sequences to switch between ASCII, + // 0201-1976 Roman, 0208-1978, 0208-1983. + // * ISO2022-JP-1: Adds esc seq for 0212-1990. + // * ISO2022-JP-2: Adds esc seq for GB2313-1980, KSX1001-1992, ISO8859-1, ISO8859-7. + // * ISO2022-JP-3: Adds esc seq for 0201-1976 Kana set, 0213-2000 Planes 1, 2. + // * ISO2022-JP-2004: Adds 0213-2004 Plane 1. + // + // After JIS X 0213 appeared, Shift_JIS-2004, EUC-JISX0213 and ISO2022-JP-2004 followed, with just changing the planes. + // + // Overall, it seems that it's a mess :( http://www8.plala.or.jp/tkubota1/unicode-symbols-map2.html + + 'shiftjis': { + type: '_dbcs', + table: function() { return require('./tables/shiftjis.json') }, + encodeAdd: {'\u00a5': 0x5C, '\u203E': 0x7E}, + encodeSkipVals: [{from: 0xED40, to: 0xF940}], + }, + 'csshiftjis': 'shiftjis', + 'mskanji': 'shiftjis', + 'sjis': 'shiftjis', + 'windows31j': 'shiftjis', + 'ms31j': 'shiftjis', + 'xsjis': 'shiftjis', + 'windows932': 'shiftjis', + 'ms932': 'shiftjis', + '932': 'shiftjis', + 'cp932': 'shiftjis', + + 'eucjp': { + type: '_dbcs', + table: function() { return require('./tables/eucjp.json') }, + encodeAdd: {'\u00a5': 0x5C, '\u203E': 0x7E}, + }, + + // TODO: KDDI extension to Shift_JIS + // TODO: IBM CCSID 942 = CP932, but F0-F9 custom chars and other char changes. + // TODO: IBM CCSID 943 = Shift_JIS = CP932 with original Shift_JIS lower 128 chars. + + + // == Chinese/GBK ========================================================== + // http://en.wikipedia.org/wiki/GBK + // We mostly implement W3C recommendation: https://www.w3.org/TR/encoding/#gbk-encoder + + // Oldest GB2312 (1981, ~7600 chars) is a subset of CP936 + 'gb2312': 'cp936', + 'gb231280': 'cp936', + 'gb23121980': 'cp936', + 'csgb2312': 'cp936', + 'csiso58gb231280': 'cp936', + 'euccn': 'cp936', + + // Microsoft's CP936 is a subset and approximation of GBK. + 'windows936': 'cp936', + 'ms936': 'cp936', + '936': 'cp936', + 'cp936': { + type: '_dbcs', + table: function() { return require('./tables/cp936.json') }, + }, + + // GBK (~22000 chars) is an extension of CP936 that added user-mapped chars and some other. + 'gbk': { + type: '_dbcs', + table: function() { return require('./tables/cp936.json').concat(require('./tables/gbk-added.json')) }, + }, + 'xgbk': 'gbk', + 'isoir58': 'gbk', + + // GB18030 is an algorithmic extension of GBK. + // Main source: https://www.w3.org/TR/encoding/#gbk-encoder + // http://icu-project.org/docs/papers/gb18030.html + // http://source.icu-project.org/repos/icu/data/trunk/charset/data/xml/gb-18030-2000.xml + // http://www.khngai.com/chinese/charmap/tblgbk.php?page=0 + 'gb18030': { + type: '_dbcs', + table: function() { return require('./tables/cp936.json').concat(require('./tables/gbk-added.json')) }, + gb18030: function() { return require('./tables/gb18030-ranges.json') }, + encodeSkipVals: [0x80], + encodeAdd: {'€': 0xA2E3}, + }, + + 'chinese': 'gb18030', + + + // == Korean =============================================================== + // EUC-KR, KS_C_5601 and KS X 1001 are exactly the same. + 'windows949': 'cp949', + 'ms949': 'cp949', + '949': 'cp949', + 'cp949': { + type: '_dbcs', + table: function() { return require('./tables/cp949.json') }, + }, + + 'cseuckr': 'cp949', + 'csksc56011987': 'cp949', + 'euckr': 'cp949', + 'isoir149': 'cp949', + 'korean': 'cp949', + 'ksc56011987': 'cp949', + 'ksc56011989': 'cp949', + 'ksc5601': 'cp949', + + + // == Big5/Taiwan/Hong Kong ================================================ + // There are lots of tables for Big5 and cp950. Please see the following links for history: + // http://moztw.org/docs/big5/ http://www.haible.de/bruno/charsets/conversion-tables/Big5.html + // Variations, in roughly number of defined chars: + // * Windows CP 950: Microsoft variant of Big5. Canonical: http://www.unicode.org/Public/MAPPINGS/VENDORS/MICSFT/WINDOWS/CP950.TXT + // * Windows CP 951: Microsoft variant of Big5-HKSCS-2001. Seems to be never public. http://me.abelcheung.org/articles/research/what-is-cp951/ + // * Big5-2003 (Taiwan standard) almost superset of cp950. + // * Unicode-at-on (UAO) / Mozilla 1.8. Falling out of use on the Web. Not supported by other browsers. + // * Big5-HKSCS (-2001, -2004, -2008). Hong Kong standard. + // many unicode code points moved from PUA to Supplementary plane (U+2XXXX) over the years. + // Plus, it has 4 combining sequences. + // Seems that Mozilla refused to support it for 10 yrs. https://bugzilla.mozilla.org/show_bug.cgi?id=162431 https://bugzilla.mozilla.org/show_bug.cgi?id=310299 + // because big5-hkscs is the only encoding to include astral characters in non-algorithmic way. + // Implementations are not consistent within browsers; sometimes labeled as just big5. + // MS Internet Explorer switches from big5 to big5-hkscs when a patch applied. + // Great discussion & recap of what's going on https://bugzilla.mozilla.org/show_bug.cgi?id=912470#c31 + // In the encoder, it might make sense to support encoding old PUA mappings to Big5 bytes seq-s. + // Official spec: http://www.ogcio.gov.hk/en/business/tech_promotion/ccli/terms/doc/2003cmp_2008.txt + // http://www.ogcio.gov.hk/tc/business/tech_promotion/ccli/terms/doc/hkscs-2008-big5-iso.txt + // + // Current understanding of how to deal with Big5(-HKSCS) is in the Encoding Standard, http://encoding.spec.whatwg.org/#big5-encoder + // Unicode mapping (http://www.unicode.org/Public/MAPPINGS/OBSOLETE/EASTASIA/OTHER/BIG5.TXT) is said to be wrong. + + 'windows950': 'cp950', + 'ms950': 'cp950', + '950': 'cp950', + 'cp950': { + type: '_dbcs', + table: function() { return require('./tables/cp950.json') }, + }, + + // Big5 has many variations and is an extension of cp950. We use Encoding Standard's as a consensus. + 'big5': 'big5hkscs', + 'big5hkscs': { + type: '_dbcs', + table: function() { return require('./tables/cp950.json').concat(require('./tables/big5-added.json')) }, + encodeSkipVals: [0xa2cc], + }, + + 'cnbig5': 'big5hkscs', + 'csbig5': 'big5hkscs', + 'xxbig5': 'big5hkscs', +}; diff --git a/node_modules/iconv-lite/encodings/index.js b/node_modules/iconv-lite/encodings/index.js new file mode 100644 index 000000000..e30400317 --- /dev/null +++ b/node_modules/iconv-lite/encodings/index.js @@ -0,0 +1,22 @@ +"use strict"; + +// Update this array if you add/rename/remove files in this directory. +// We support Browserify by skipping automatic module discovery and requiring modules directly. +var modules = [ + require("./internal"), + require("./utf16"), + require("./utf7"), + require("./sbcs-codec"), + require("./sbcs-data"), + require("./sbcs-data-generated"), + require("./dbcs-codec"), + require("./dbcs-data"), +]; + +// Put all encoding/alias/codec definitions to single object and export it. +for (var i = 0; i < modules.length; i++) { + var module = modules[i]; + for (var enc in module) + if (Object.prototype.hasOwnProperty.call(module, enc)) + exports[enc] = module[enc]; +} diff --git a/node_modules/iconv-lite/encodings/internal.js b/node_modules/iconv-lite/encodings/internal.js new file mode 100644 index 000000000..05ce38b27 --- /dev/null +++ b/node_modules/iconv-lite/encodings/internal.js @@ -0,0 +1,188 @@ +"use strict"; +var Buffer = require("safer-buffer").Buffer; + +// Export Node.js internal encodings. + +module.exports = { + // Encodings + utf8: { type: "_internal", bomAware: true}, + cesu8: { type: "_internal", bomAware: true}, + unicode11utf8: "utf8", + + ucs2: { type: "_internal", bomAware: true}, + utf16le: "ucs2", + + binary: { type: "_internal" }, + base64: { type: "_internal" }, + hex: { type: "_internal" }, + + // Codec. + _internal: InternalCodec, +}; + +//------------------------------------------------------------------------------ + +function InternalCodec(codecOptions, iconv) { + this.enc = codecOptions.encodingName; + this.bomAware = codecOptions.bomAware; + + if (this.enc === "base64") + this.encoder = InternalEncoderBase64; + else if (this.enc === "cesu8") { + this.enc = "utf8"; // Use utf8 for decoding. + this.encoder = InternalEncoderCesu8; + + // Add decoder for versions of Node not supporting CESU-8 + if (Buffer.from('eda0bdedb2a9', 'hex').toString() !== '💩') { + this.decoder = InternalDecoderCesu8; + this.defaultCharUnicode = iconv.defaultCharUnicode; + } + } +} + +InternalCodec.prototype.encoder = InternalEncoder; +InternalCodec.prototype.decoder = InternalDecoder; + +//------------------------------------------------------------------------------ + +// We use node.js internal decoder. Its signature is the same as ours. +var StringDecoder = require('string_decoder').StringDecoder; + +if (!StringDecoder.prototype.end) // Node v0.8 doesn't have this method. + StringDecoder.prototype.end = function() {}; + + +function InternalDecoder(options, codec) { + StringDecoder.call(this, codec.enc); +} + +InternalDecoder.prototype = StringDecoder.prototype; + + +//------------------------------------------------------------------------------ +// Encoder is mostly trivial + +function InternalEncoder(options, codec) { + this.enc = codec.enc; +} + +InternalEncoder.prototype.write = function(str) { + return Buffer.from(str, this.enc); +} + +InternalEncoder.prototype.end = function() { +} + + +//------------------------------------------------------------------------------ +// Except base64 encoder, which must keep its state. + +function InternalEncoderBase64(options, codec) { + this.prevStr = ''; +} + +InternalEncoderBase64.prototype.write = function(str) { + str = this.prevStr + str; + var completeQuads = str.length - (str.length % 4); + this.prevStr = str.slice(completeQuads); + str = str.slice(0, completeQuads); + + return Buffer.from(str, "base64"); +} + +InternalEncoderBase64.prototype.end = function() { + return Buffer.from(this.prevStr, "base64"); +} + + +//------------------------------------------------------------------------------ +// CESU-8 encoder is also special. + +function InternalEncoderCesu8(options, codec) { +} + +InternalEncoderCesu8.prototype.write = function(str) { + var buf = Buffer.alloc(str.length * 3), bufIdx = 0; + for (var i = 0; i < str.length; i++) { + var charCode = str.charCodeAt(i); + // Naive implementation, but it works because CESU-8 is especially easy + // to convert from UTF-16 (which all JS strings are encoded in). + if (charCode < 0x80) + buf[bufIdx++] = charCode; + else if (charCode < 0x800) { + buf[bufIdx++] = 0xC0 + (charCode >>> 6); + buf[bufIdx++] = 0x80 + (charCode & 0x3f); + } + else { // charCode will always be < 0x10000 in javascript. + buf[bufIdx++] = 0xE0 + (charCode >>> 12); + buf[bufIdx++] = 0x80 + ((charCode >>> 6) & 0x3f); + buf[bufIdx++] = 0x80 + (charCode & 0x3f); + } + } + return buf.slice(0, bufIdx); +} + +InternalEncoderCesu8.prototype.end = function() { +} + +//------------------------------------------------------------------------------ +// CESU-8 decoder is not implemented in Node v4.0+ + +function InternalDecoderCesu8(options, codec) { + this.acc = 0; + this.contBytes = 0; + this.accBytes = 0; + this.defaultCharUnicode = codec.defaultCharUnicode; +} + +InternalDecoderCesu8.prototype.write = function(buf) { + var acc = this.acc, contBytes = this.contBytes, accBytes = this.accBytes, + res = ''; + for (var i = 0; i < buf.length; i++) { + var curByte = buf[i]; + if ((curByte & 0xC0) !== 0x80) { // Leading byte + if (contBytes > 0) { // Previous code is invalid + res += this.defaultCharUnicode; + contBytes = 0; + } + + if (curByte < 0x80) { // Single-byte code + res += String.fromCharCode(curByte); + } else if (curByte < 0xE0) { // Two-byte code + acc = curByte & 0x1F; + contBytes = 1; accBytes = 1; + } else if (curByte < 0xF0) { // Three-byte code + acc = curByte & 0x0F; + contBytes = 2; accBytes = 1; + } else { // Four or more are not supported for CESU-8. + res += this.defaultCharUnicode; + } + } else { // Continuation byte + if (contBytes > 0) { // We're waiting for it. + acc = (acc << 6) | (curByte & 0x3f); + contBytes--; accBytes++; + if (contBytes === 0) { + // Check for overlong encoding, but support Modified UTF-8 (encoding NULL as C0 80) + if (accBytes === 2 && acc < 0x80 && acc > 0) + res += this.defaultCharUnicode; + else if (accBytes === 3 && acc < 0x800) + res += this.defaultCharUnicode; + else + // Actually add character. + res += String.fromCharCode(acc); + } + } else { // Unexpected continuation byte + res += this.defaultCharUnicode; + } + } + } + this.acc = acc; this.contBytes = contBytes; this.accBytes = accBytes; + return res; +} + +InternalDecoderCesu8.prototype.end = function() { + var res = 0; + if (this.contBytes > 0) + res += this.defaultCharUnicode; + return res; +} diff --git a/node_modules/iconv-lite/encodings/sbcs-codec.js b/node_modules/iconv-lite/encodings/sbcs-codec.js new file mode 100644 index 000000000..abac5ffaa --- /dev/null +++ b/node_modules/iconv-lite/encodings/sbcs-codec.js @@ -0,0 +1,72 @@ +"use strict"; +var Buffer = require("safer-buffer").Buffer; + +// Single-byte codec. Needs a 'chars' string parameter that contains 256 or 128 chars that +// correspond to encoded bytes (if 128 - then lower half is ASCII). + +exports._sbcs = SBCSCodec; +function SBCSCodec(codecOptions, iconv) { + if (!codecOptions) + throw new Error("SBCS codec is called without the data.") + + // Prepare char buffer for decoding. + if (!codecOptions.chars || (codecOptions.chars.length !== 128 && codecOptions.chars.length !== 256)) + throw new Error("Encoding '"+codecOptions.type+"' has incorrect 'chars' (must be of len 128 or 256)"); + + if (codecOptions.chars.length === 128) { + var asciiString = ""; + for (var i = 0; i < 128; i++) + asciiString += String.fromCharCode(i); + codecOptions.chars = asciiString + codecOptions.chars; + } + + this.decodeBuf = Buffer.from(codecOptions.chars, 'ucs2'); + + // Encoding buffer. + var encodeBuf = Buffer.alloc(65536, iconv.defaultCharSingleByte.charCodeAt(0)); + + for (var i = 0; i < codecOptions.chars.length; i++) + encodeBuf[codecOptions.chars.charCodeAt(i)] = i; + + this.encodeBuf = encodeBuf; +} + +SBCSCodec.prototype.encoder = SBCSEncoder; +SBCSCodec.prototype.decoder = SBCSDecoder; + + +function SBCSEncoder(options, codec) { + this.encodeBuf = codec.encodeBuf; +} + +SBCSEncoder.prototype.write = function(str) { + var buf = Buffer.alloc(str.length); + for (var i = 0; i < str.length; i++) + buf[i] = this.encodeBuf[str.charCodeAt(i)]; + + return buf; +} + +SBCSEncoder.prototype.end = function() { +} + + +function SBCSDecoder(options, codec) { + this.decodeBuf = codec.decodeBuf; +} + +SBCSDecoder.prototype.write = function(buf) { + // Strings are immutable in JS -> we use ucs2 buffer to speed up computations. + var decodeBuf = this.decodeBuf; + var newBuf = Buffer.alloc(buf.length*2); + var idx1 = 0, idx2 = 0; + for (var i = 0; i < buf.length; i++) { + idx1 = buf[i]*2; idx2 = i*2; + newBuf[idx2] = decodeBuf[idx1]; + newBuf[idx2+1] = decodeBuf[idx1+1]; + } + return newBuf.toString('ucs2'); +} + +SBCSDecoder.prototype.end = function() { +} diff --git a/node_modules/iconv-lite/encodings/sbcs-data-generated.js b/node_modules/iconv-lite/encodings/sbcs-data-generated.js new file mode 100644 index 000000000..9b4823607 --- /dev/null +++ b/node_modules/iconv-lite/encodings/sbcs-data-generated.js @@ -0,0 +1,451 @@ +"use strict"; + +// Generated data for sbcs codec. Don't edit manually. Regenerate using generation/gen-sbcs.js script. +module.exports = { + "437": "cp437", + "737": "cp737", + "775": "cp775", + "850": "cp850", + "852": "cp852", + "855": "cp855", + "856": "cp856", + "857": "cp857", + "858": "cp858", + "860": "cp860", + "861": "cp861", + "862": "cp862", + "863": "cp863", + "864": "cp864", + "865": "cp865", + "866": "cp866", + "869": "cp869", + "874": "windows874", + "922": "cp922", + "1046": "cp1046", + "1124": "cp1124", + "1125": "cp1125", + "1129": "cp1129", + "1133": "cp1133", + "1161": "cp1161", + "1162": "cp1162", + "1163": "cp1163", + "1250": "windows1250", + "1251": "windows1251", + "1252": "windows1252", + "1253": "windows1253", + "1254": "windows1254", + "1255": "windows1255", + "1256": "windows1256", + "1257": "windows1257", + "1258": "windows1258", + "28591": "iso88591", + "28592": "iso88592", + "28593": "iso88593", + "28594": "iso88594", + "28595": "iso88595", + "28596": "iso88596", + "28597": "iso88597", + "28598": "iso88598", + "28599": "iso88599", + "28600": "iso885910", + "28601": "iso885911", + "28603": "iso885913", + "28604": "iso885914", + "28605": "iso885915", + "28606": "iso885916", + "windows874": { + "type": "_sbcs", + "chars": "€����…�����������‘’“”•–—�������� กขฃคฅฆงจฉชซฌญฎฏฐฑฒณดตถทธนบปผฝพฟภมยรฤลฦวศษสหฬอฮฯะัาำิีึืฺุู����฿เแโใไๅๆ็่้๊๋์ํ๎๏๐๑๒๓๔๕๖๗๘๙๚๛����" + }, + "win874": "windows874", + "cp874": "windows874", + "windows1250": { + "type": "_sbcs", + "chars": "€�‚�„…†‡�‰Š‹ŚŤŽŹ�‘’“”•–—�™š›śťžź ˇ˘Ł¤Ą¦§¨©Ş«¬­®Ż°±˛ł´µ¶·¸ąş»Ľ˝ľżŔÁÂĂÄĹĆÇČÉĘËĚÍÎĎĐŃŇÓÔŐÖ×ŘŮÚŰÜÝŢßŕáâăäĺćçčéęëěíîďđńňóôőö÷řůúűüýţ˙" + }, + "win1250": "windows1250", + "cp1250": "windows1250", + "windows1251": { + "type": "_sbcs", + "chars": "ЂЃ‚ѓ„…†‡€‰Љ‹ЊЌЋЏђ‘’“”•–—�™љ›њќћџ ЎўЈ¤Ґ¦§Ё©Є«¬­®Ї°±Ііґµ¶·ё№є»јЅѕїАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюя" + }, + "win1251": "windows1251", + "cp1251": "windows1251", + "windows1252": { + "type": "_sbcs", + "chars": "€�‚ƒ„…†‡ˆ‰Š‹Œ�Ž��‘’“”•–—˜™š›œ�žŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ" + }, + "win1252": "windows1252", + "cp1252": "windows1252", + "windows1253": { + "type": "_sbcs", + "chars": "€�‚ƒ„…†‡�‰�‹�����‘’“”•–—�™�›���� ΅Ά£¤¥¦§¨©�«¬­®―°±²³΄µ¶·ΈΉΊ»Ό½ΎΏΐΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡ�ΣΤΥΦΧΨΩΪΫάέήίΰαβγδεζηθικλμνξοπρςστυφχψωϊϋόύώ�" + }, + "win1253": "windows1253", + "cp1253": "windows1253", + "windows1254": { + "type": "_sbcs", + "chars": "€�‚ƒ„…†‡ˆ‰Š‹Œ����‘’“”•–—˜™š›œ��Ÿ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏĞÑÒÓÔÕÖרÙÚÛÜİŞßàáâãäåæçèéêëìíîïğñòóôõö÷øùúûüışÿ" + }, + "win1254": "windows1254", + "cp1254": "windows1254", + "windows1255": { + "type": "_sbcs", + "chars": "€�‚ƒ„…†‡ˆ‰�‹�����‘’“”•–—˜™�›���� ¡¢£₪¥¦§¨©×«¬­®¯°±²³´µ¶·¸¹÷»¼½¾¿ְֱֲֳִֵֶַָֹֺֻּֽ־ֿ׀ׁׂ׃װױײ׳״�������אבגדהוזחטיךכלםמןנסעףפץצקרשת��‎‏�" + }, + "win1255": "windows1255", + "cp1255": "windows1255", + "windows1256": { + "type": "_sbcs", + "chars": "€پ‚ƒ„…†‡ˆ‰ٹ‹Œچژڈگ‘’“”•–—ک™ڑ›œ‌‍ں ،¢£¤¥¦§¨©ھ«¬­®¯°±²³´µ¶·¸¹؛»¼½¾؟ہءآأؤإئابةتثجحخدذرزسشصض×طظعغـفقكàلâمنهوçèéêëىيîïًٌٍَôُِ÷ّùْûü‎‏ے" + }, + "win1256": "windows1256", + "cp1256": "windows1256", + "windows1257": { + "type": "_sbcs", + "chars": "€�‚�„…†‡�‰�‹�¨ˇ¸�‘’“”•–—�™�›�¯˛� �¢£¤�¦§Ø©Ŗ«¬­®Æ°±²³´µ¶·ø¹ŗ»¼½¾æĄĮĀĆÄÅĘĒČÉŹĖĢĶĪĻŠŃŅÓŌÕÖ×ŲŁŚŪÜŻŽßąįāćäåęēčéźėģķīļšńņóōõö÷ųłśūüżž˙" + }, + "win1257": "windows1257", + "cp1257": "windows1257", + "windows1258": { + "type": "_sbcs", + "chars": "€�‚ƒ„…†‡ˆ‰�‹Œ����‘’“”•–—˜™�›œ��Ÿ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂĂÄÅÆÇÈÉÊË̀ÍÎÏĐÑ̉ÓÔƠÖרÙÚÛÜỮßàáâăäåæçèéêë́íîïđṇ̃óôơö÷øùúûüư₫ÿ" + }, + "win1258": "windows1258", + "cp1258": "windows1258", + "iso88591": { + "type": "_sbcs", + "chars": "€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ" + }, + "cp28591": "iso88591", + "iso88592": { + "type": "_sbcs", + "chars": "€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ Ą˘Ł¤ĽŚ§¨ŠŞŤŹ­ŽŻ°ą˛ł´ľśˇ¸šşťź˝žżŔÁÂĂÄĹĆÇČÉĘËĚÍÎĎĐŃŇÓÔŐÖ×ŘŮÚŰÜÝŢßŕáâăäĺćçčéęëěíîďđńňóôőö÷řůúűüýţ˙" + }, + "cp28592": "iso88592", + "iso88593": { + "type": "_sbcs", + "chars": "€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ Ħ˘£¤�Ĥ§¨İŞĞĴ­�ݰħ²³´µĥ·¸ışğĵ½�żÀÁÂ�ÄĊĈÇÈÉÊËÌÍÎÏ�ÑÒÓÔĠÖ×ĜÙÚÛÜŬŜßàáâ�äċĉçèéêëìíîï�ñòóôġö÷ĝùúûüŭŝ˙" + }, + "cp28593": "iso88593", + "iso88594": { + "type": "_sbcs", + "chars": "€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ĄĸŖ¤Ĩϧ¨ŠĒĢŦ­Ž¯°ą˛ŗ´ĩšēģŧŊžŋĀÁÂÃÄÅÆĮČÉĘËĖÍÎĪĐŅŌĶÔÕÖרŲÚÛÜŨŪßāáâãäåæįčéęëėíîīđņōķôõö÷øųúûüũū˙" + }, + "cp28594": "iso88594", + "iso88595": { + "type": "_sbcs", + "chars": "€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ЁЂЃЄЅІЇЈЉЊЋЌ­ЎЏАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюя№ёђѓєѕіїјљњћќ§ўџ" + }, + "cp28595": "iso88595", + "iso88596": { + "type": "_sbcs", + "chars": "€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ���¤�������،­�������������؛���؟�ءآأؤإئابةتثجحخدذرزسشصضطظعغ�����ـفقكلمنهوىيًٌٍَُِّْ�������������" + }, + "cp28596": "iso88596", + "iso88597": { + "type": "_sbcs", + "chars": "€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ‘’£€₯¦§¨©ͺ«¬­�―°±²³΄΅Ά·ΈΉΊ»Ό½ΎΏΐΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡ�ΣΤΥΦΧΨΩΪΫάέήίΰαβγδεζηθικλμνξοπρςστυφχψωϊϋόύώ�" + }, + "cp28597": "iso88597", + "iso88598": { + "type": "_sbcs", + "chars": "€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ �¢£¤¥¦§¨©×«¬­®¯°±²³´µ¶·¸¹÷»¼½¾��������������������������������‗אבגדהוזחטיךכלםמןנסעףפץצקרשת��‎‏�" + }, + "cp28598": "iso88598", + "iso88599": { + "type": "_sbcs", + "chars": "€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏĞÑÒÓÔÕÖרÙÚÛÜİŞßàáâãäåæçèéêëìíîïğñòóôõö÷øùúûüışÿ" + }, + "cp28599": "iso88599", + "iso885910": { + "type": "_sbcs", + "chars": "€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ĄĒĢĪĨͧĻĐŠŦŽ­ŪŊ°ąēģīĩķ·ļđšŧž―ūŋĀÁÂÃÄÅÆĮČÉĘËĖÍÎÏÐŅŌÓÔÕÖŨØŲÚÛÜÝÞßāáâãäåæįčéęëėíîïðņōóôõöũøųúûüýþĸ" + }, + "cp28600": "iso885910", + "iso885911": { + "type": "_sbcs", + "chars": "€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ กขฃคฅฆงจฉชซฌญฎฏฐฑฒณดตถทธนบปผฝพฟภมยรฤลฦวศษสหฬอฮฯะัาำิีึืฺุู����฿เแโใไๅๆ็่้๊๋์ํ๎๏๐๑๒๓๔๕๖๗๘๙๚๛����" + }, + "cp28601": "iso885911", + "iso885913": { + "type": "_sbcs", + "chars": "€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ”¢£¤„¦§Ø©Ŗ«¬­®Æ°±²³“µ¶·ø¹ŗ»¼½¾æĄĮĀĆÄÅĘĒČÉŹĖĢĶĪĻŠŃŅÓŌÕÖ×ŲŁŚŪÜŻŽßąįāćäåęēčéźėģķīļšńņóōõö÷ųłśūüżž’" + }, + "cp28603": "iso885913", + "iso885914": { + "type": "_sbcs", + "chars": "€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ Ḃḃ£ĊċḊ§Ẁ©ẂḋỲ­®ŸḞḟĠġṀṁ¶ṖẁṗẃṠỳẄẅṡÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏŴÑÒÓÔÕÖṪØÙÚÛÜÝŶßàáâãäåæçèéêëìíîïŵñòóôõöṫøùúûüýŷÿ" + }, + "cp28604": "iso885914", + "iso885915": { + "type": "_sbcs", + "chars": "€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£€¥Š§š©ª«¬­®¯°±²³Žµ¶·ž¹º»ŒœŸ¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ" + }, + "cp28605": "iso885915", + "iso885916": { + "type": "_sbcs", + "chars": "€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ĄąŁ€„Чš©Ș«Ź­źŻ°±ČłŽ”¶·žčș»ŒœŸżÀÁÂĂÄĆÆÇÈÉÊËÌÍÎÏĐŃÒÓÔŐÖŚŰÙÚÛÜĘȚßàáâăäćæçèéêëìíîïđńòóôőöśűùúûüęțÿ" + }, + "cp28606": "iso885916", + "cp437": { + "type": "_sbcs", + "chars": "ÇüéâäàåçêëèïîìÄÅÉæÆôöòûùÿÖÜ¢£¥₧ƒáíóúñѪº¿⌐¬½¼¡«»░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀αßΓπΣσµτΦΘΩδ∞φε∩≡±≥≤⌠⌡÷≈°∙·√ⁿ²■ " + }, + "ibm437": "cp437", + "csibm437": "cp437", + "cp737": { + "type": "_sbcs", + "chars": "ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩαβγδεζηθικλμνξοπρσςτυφχψ░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀ωάέήϊίόύϋώΆΈΉΊΌΎΏ±≥≤ΪΫ÷≈°∙·√ⁿ²■ " + }, + "ibm737": "cp737", + "csibm737": "cp737", + "cp775": { + "type": "_sbcs", + "chars": "ĆüéāäģåćłēŖŗīŹÄÅÉæÆōöĢ¢ŚśÖÜø£Ø×¤ĀĪóŻżź”¦©®¬½¼Ł«»░▒▓│┤ĄČĘĖ╣║╗╝ĮŠ┐└┴┬├─┼ŲŪ╚╔╩╦╠═╬Žąčęėįšųūž┘┌█▄▌▐▀ÓßŌŃõÕµńĶķĻļņĒŅ’­±“¾¶§÷„°∙·¹³²■ " + }, + "ibm775": "cp775", + "csibm775": "cp775", + "cp850": { + "type": "_sbcs", + "chars": "ÇüéâäàåçêëèïîìÄÅÉæÆôöòûùÿÖÜø£Ø×ƒáíóúñѪº¿®¬½¼¡«»░▒▓│┤ÁÂÀ©╣║╗╝¢¥┐└┴┬├─┼ãÃ╚╔╩╦╠═╬¤ðÐÊËÈıÍÎÏ┘┌█▄¦Ì▀ÓßÔÒõÕµþÞÚÛÙýݯ´­±‗¾¶§÷¸°¨·¹³²■ " + }, + "ibm850": "cp850", + "csibm850": "cp850", + "cp852": { + "type": "_sbcs", + "chars": "ÇüéâäůćçłëŐőîŹÄĆÉĹĺôöĽľŚśÖÜŤťŁ×čáíóúĄąŽžĘ꬟Ⱥ«»░▒▓│┤ÁÂĚŞ╣║╗╝Żż┐└┴┬├─┼Ăă╚╔╩╦╠═╬¤đĐĎËďŇÍÎě┘┌█▄ŢŮ▀ÓßÔŃńňŠšŔÚŕŰýÝţ´­˝˛ˇ˘§÷¸°¨˙űŘř■ " + }, + "ibm852": "cp852", + "csibm852": "cp852", + "cp855": { + "type": "_sbcs", + "chars": "ђЂѓЃёЁєЄѕЅіІїЇјЈљЉњЊћЋќЌўЎџЏюЮъЪаАбБцЦдДеЕфФгГ«»░▒▓│┤хХиИ╣║╗╝йЙ┐└┴┬├─┼кК╚╔╩╦╠═╬¤лЛмМнНоОп┘┌█▄Пя▀ЯрРсСтТуУжЖвВьЬ№­ыЫзЗшШэЭщЩчЧ§■ " + }, + "ibm855": "cp855", + "csibm855": "cp855", + "cp856": { + "type": "_sbcs", + "chars": "אבגדהוזחטיךכלםמןנסעףפץצקרשת�£�×����������®¬½¼�«»░▒▓│┤���©╣║╗╝¢¥┐└┴┬├─┼��╚╔╩╦╠═╬¤���������┘┌█▄¦�▀������µ�������¯´­±‗¾¶§÷¸°¨·¹³²■ " + }, + "ibm856": "cp856", + "csibm856": "cp856", + "cp857": { + "type": "_sbcs", + "chars": "ÇüéâäàåçêëèïîıÄÅÉæÆôöòûùİÖÜø£ØŞşáíóúñÑĞ𿮬½¼¡«»░▒▓│┤ÁÂÀ©╣║╗╝¢¥┐└┴┬├─┼ãÃ╚╔╩╦╠═╬¤ºªÊËÈ�ÍÎÏ┘┌█▄¦Ì▀ÓßÔÒõÕµ�×ÚÛÙìÿ¯´­±�¾¶§÷¸°¨·¹³²■ " + }, + "ibm857": "cp857", + "csibm857": "cp857", + "cp858": { + "type": "_sbcs", + "chars": "ÇüéâäàåçêëèïîìÄÅÉæÆôöòûùÿÖÜø£Ø×ƒáíóúñѪº¿®¬½¼¡«»░▒▓│┤ÁÂÀ©╣║╗╝¢¥┐└┴┬├─┼ãÃ╚╔╩╦╠═╬¤ðÐÊËÈ€ÍÎÏ┘┌█▄¦Ì▀ÓßÔÒõÕµþÞÚÛÙýݯ´­±‗¾¶§÷¸°¨·¹³²■ " + }, + "ibm858": "cp858", + "csibm858": "cp858", + "cp860": { + "type": "_sbcs", + "chars": "ÇüéâãàÁçêÊèÍÔìÃÂÉÀÈôõòÚùÌÕÜ¢£Ù₧ÓáíóúñѪº¿Ò¬½¼¡«»░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀αßΓπΣσµτΦΘΩδ∞φε∩≡±≥≤⌠⌡÷≈°∙·√ⁿ²■ " + }, + "ibm860": "cp860", + "csibm860": "cp860", + "cp861": { + "type": "_sbcs", + "chars": "ÇüéâäàåçêëèÐðÞÄÅÉæÆôöþûÝýÖÜø£Ø₧ƒáíóúÁÍÓÚ¿⌐¬½¼¡«»░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀αßΓπΣσµτΦΘΩδ∞φε∩≡±≥≤⌠⌡÷≈°∙·√ⁿ²■ " + }, + "ibm861": "cp861", + "csibm861": "cp861", + "cp862": { + "type": "_sbcs", + "chars": "אבגדהוזחטיךכלםמןנסעףפץצקרשת¢£¥₧ƒáíóúñѪº¿⌐¬½¼¡«»░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀αßΓπΣσµτΦΘΩδ∞φε∩≡±≥≤⌠⌡÷≈°∙·√ⁿ²■ " + }, + "ibm862": "cp862", + "csibm862": "cp862", + "cp863": { + "type": "_sbcs", + "chars": "ÇüéâÂà¶çêëèïî‗À§ÉÈÊôËÏûù¤ÔÜ¢£ÙÛƒ¦´óú¨¸³¯Î⌐¬½¼¾«»░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀αßΓπΣσµτΦΘΩδ∞φε∩≡±≥≤⌠⌡÷≈°∙·√ⁿ²■ " + }, + "ibm863": "cp863", + "csibm863": "cp863", + "cp864": { + "type": "_sbcs", + "chars": "\u0000\u0001\u0002\u0003\u0004\u0005\u0006\u0007\b\t\n\u000b\f\r\u000e\u000f\u0010\u0011\u0012\u0013\u0014\u0015\u0016\u0017\u0018\u0019\u001a\u001b\u001c\u001d\u001e\u001f !\"#$٪&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~°·∙√▒─│┼┤┬├┴┐┌└┘β∞φ±½¼≈«»ﻷﻸ��ﻻﻼ� ­ﺂ£¤ﺄ��ﺎﺏﺕﺙ،ﺝﺡﺥ٠١٢٣٤٥٦٧٨٩ﻑ؛ﺱﺵﺹ؟¢ﺀﺁﺃﺅﻊﺋﺍﺑﺓﺗﺛﺟﺣﺧﺩﺫﺭﺯﺳﺷﺻﺿﻁﻅﻋﻏ¦¬÷×ﻉـﻓﻗﻛﻟﻣﻧﻫﻭﻯﻳﺽﻌﻎﻍﻡﹽّﻥﻩﻬﻰﻲﻐﻕﻵﻶﻝﻙﻱ■�" + }, + "ibm864": "cp864", + "csibm864": "cp864", + "cp865": { + "type": "_sbcs", + "chars": "ÇüéâäàåçêëèïîìÄÅÉæÆôöòûùÿÖÜø£Ø₧ƒáíóúñѪº¿⌐¬½¼¡«¤░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀αßΓπΣσµτΦΘΩδ∞φε∩≡±≥≤⌠⌡÷≈°∙·√ⁿ²■ " + }, + "ibm865": "cp865", + "csibm865": "cp865", + "cp866": { + "type": "_sbcs", + "chars": "АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмноп░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀рстуфхцчшщъыьэюяЁёЄєЇїЎў°∙·√№¤■ " + }, + "ibm866": "cp866", + "csibm866": "cp866", + "cp869": { + "type": "_sbcs", + "chars": "������Ά�·¬¦‘’Έ―ΉΊΪΌ��ΎΫ©Ώ²³ά£έήίϊΐόύΑΒΓΔΕΖΗ½ΘΙ«»░▒▓│┤ΚΛΜΝ╣║╗╝ΞΟ┐└┴┬├─┼ΠΡ╚╔╩╦╠═╬ΣΤΥΦΧΨΩαβγ┘┌█▄δε▀ζηθικλμνξοπρσςτ΄­±υφχ§ψ΅°¨ωϋΰώ■ " + }, + "ibm869": "cp869", + "csibm869": "cp869", + "cp922": { + "type": "_sbcs", + "chars": "€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®‾°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏŠÑÒÓÔÕÖרÙÚÛÜÝŽßàáâãäåæçèéêëìíîïšñòóôõö÷øùúûüýžÿ" + }, + "ibm922": "cp922", + "csibm922": "cp922", + "cp1046": { + "type": "_sbcs", + "chars": "ﺈ×÷ﹱˆ■│─┐┌└┘ﹹﹻﹽﹿﹷﺊﻰﻳﻲﻎﻏﻐﻶﻸﻺﻼ ¤ﺋﺑﺗﺛﺟﺣ،­ﺧﺳ٠١٢٣٤٥٦٧٨٩ﺷ؛ﺻﺿﻊ؟ﻋءآأؤإئابةتثجحخدذرزسشصضطﻇعغﻌﺂﺄﺎﻓـفقكلمنهوىيًٌٍَُِّْﻗﻛﻟﻵﻷﻹﻻﻣﻧﻬﻩ�" + }, + "ibm1046": "cp1046", + "csibm1046": "cp1046", + "cp1124": { + "type": "_sbcs", + "chars": "€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ЁЂҐЄЅІЇЈЉЊЋЌ­ЎЏАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюя№ёђґєѕіїјљњћќ§ўџ" + }, + "ibm1124": "cp1124", + "csibm1124": "cp1124", + "cp1125": { + "type": "_sbcs", + "chars": "АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмноп░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀рстуфхцчшщъыьэюяЁёҐґЄєІіЇї·√№¤■ " + }, + "ibm1125": "cp1125", + "csibm1125": "cp1125", + "cp1129": { + "type": "_sbcs", + "chars": "€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§œ©ª«¬­®¯°±²³Ÿµ¶·Œ¹º»¼½¾¿ÀÁÂĂÄÅÆÇÈÉÊË̀ÍÎÏĐÑ̉ÓÔƠÖרÙÚÛÜỮßàáâăäåæçèéêë́íîïđṇ̃óôơö÷øùúûüư₫ÿ" + }, + "ibm1129": "cp1129", + "csibm1129": "cp1129", + "cp1133": { + "type": "_sbcs", + "chars": "€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ກຂຄງຈສຊຍດຕຖທນບປຜຝພຟມຢຣລວຫອຮ���ຯະາຳິີຶືຸູຼັົຽ���ເແໂໃໄ່້໊໋໌ໍໆ�ໜໝ₭����������������໐໑໒໓໔໕໖໗໘໙��¢¬¦�" + }, + "ibm1133": "cp1133", + "csibm1133": "cp1133", + "cp1161": { + "type": "_sbcs", + "chars": "��������������������������������่กขฃคฅฆงจฉชซฌญฎฏฐฑฒณดตถทธนบปผฝพฟภมยรฤลฦวศษสหฬอฮฯะัาำิีึืฺุู้๊๋€฿เแโใไๅๆ็่้๊๋์ํ๎๏๐๑๒๓๔๕๖๗๘๙๚๛¢¬¦ " + }, + "ibm1161": "cp1161", + "csibm1161": "cp1161", + "cp1162": { + "type": "_sbcs", + "chars": "€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ กขฃคฅฆงจฉชซฌญฎฏฐฑฒณดตถทธนบปผฝพฟภมยรฤลฦวศษสหฬอฮฯะัาำิีึืฺุู����฿เแโใไๅๆ็่้๊๋์ํ๎๏๐๑๒๓๔๕๖๗๘๙๚๛����" + }, + "ibm1162": "cp1162", + "csibm1162": "cp1162", + "cp1163": { + "type": "_sbcs", + "chars": "€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£€¥¦§œ©ª«¬­®¯°±²³Ÿµ¶·Œ¹º»¼½¾¿ÀÁÂĂÄÅÆÇÈÉÊË̀ÍÎÏĐÑ̉ÓÔƠÖרÙÚÛÜỮßàáâăäåæçèéêë́íîïđṇ̃óôơö÷øùúûüư₫ÿ" + }, + "ibm1163": "cp1163", + "csibm1163": "cp1163", + "maccroatian": { + "type": "_sbcs", + "chars": "ÄÅÇÉÑÖÜáàâäãåçéèêëíìîïñóòôöõúùûü†°¢£§•¶ß®Š™´¨≠ŽØ∞±≤≥∆µ∂∑∏š∫ªºΩžø¿¡¬√ƒ≈ƫȅ ÀÃÕŒœĐ—“”‘’÷◊�©⁄¤‹›Æ»–·‚„‰ÂćÁčÈÍÎÏÌÓÔđÒÚÛÙıˆ˜¯πË˚¸Êæˇ" + }, + "maccyrillic": { + "type": "_sbcs", + "chars": "АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯ†°¢£§•¶І®©™Ђђ≠Ѓѓ∞±≤≥іµ∂ЈЄєЇїЉљЊњјЅ¬√ƒ≈∆«»… ЋћЌќѕ–—“”‘’÷„ЎўЏџ№Ёёяабвгдежзийклмнопрстуфхцчшщъыьэю¤" + }, + "macgreek": { + "type": "_sbcs", + "chars": "Ĺ²É³ÖÜ΅àâä΄¨çéèê룙î‰ôö¦­ùûü†ΓΔΘΛΞΠß®©ΣΪ§≠°·Α±≤≥¥ΒΕΖΗΙΚΜΦΫΨΩάΝ¬ΟΡ≈Τ«»… ΥΧΆΈœ–―“”‘’÷ΉΊΌΎέήίόΏύαβψδεφγηιξκλμνοπώρστθωςχυζϊϋΐΰ�" + }, + "maciceland": { + "type": "_sbcs", + "chars": "ÄÅÇÉÑÖÜáàâäãåçéèêëíìîïñóòôöõúùûüݰ¢£§•¶ß®©™´¨≠ÆØ∞±≤≥¥µ∂∑∏π∫ªºΩæø¿¡¬√ƒ≈∆«»… ÀÃÕŒœ–—“”‘’÷◊ÿŸ⁄¤ÐðÞþý·‚„‰ÂÊÁËÈÍÎÏÌÓÔ�ÒÚÛÙıˆ˜¯˘˙˚¸˝˛ˇ" + }, + "macroman": { + "type": "_sbcs", + "chars": "ÄÅÇÉÑÖÜáàâäãåçéèêëíìîïñóòôöõúùûü†°¢£§•¶ß®©™´¨≠ÆØ∞±≤≥¥µ∂∑∏π∫ªºΩæø¿¡¬√ƒ≈∆«»… ÀÃÕŒœ–—“”‘’÷◊ÿŸ⁄¤‹›fifl‡·‚„‰ÂÊÁËÈÍÎÏÌÓÔ�ÒÚÛÙıˆ˜¯˘˙˚¸˝˛ˇ" + }, + "macromania": { + "type": "_sbcs", + "chars": "ÄÅÇÉÑÖÜáàâäãåçéèêëíìîïñóòôöõúùûü†°¢£§•¶ß®©™´¨≠ĂŞ∞±≤≥¥µ∂∑∏π∫ªºΩăş¿¡¬√ƒ≈∆«»… ÀÃÕŒœ–—“”‘’÷◊ÿŸ⁄¤‹›Ţţ‡·‚„‰ÂÊÁËÈÍÎÏÌÓÔ�ÒÚÛÙıˆ˜¯˘˙˚¸˝˛ˇ" + }, + "macthai": { + "type": "_sbcs", + "chars": "«»…“”�•‘’� กขฃคฅฆงจฉชซฌญฎฏฐฑฒณดตถทธนบปผฝพฟภมยรฤลฦวศษสหฬอฮฯะัาำิีึืฺุู​–—฿เแโใไๅๆ็่้๊๋์ํ™๏๐๑๒๓๔๕๖๗๘๙®©����" + }, + "macturkish": { + "type": "_sbcs", + "chars": "ÄÅÇÉÑÖÜáàâäãåçéèêëíìîïñóòôöõúùûü†°¢£§•¶ß®©™´¨≠ÆØ∞±≤≥¥µ∂∑∏π∫ªºΩæø¿¡¬√ƒ≈∆«»… ÀÃÕŒœ–—“”‘’÷◊ÿŸĞğİıŞş‡·‚„‰ÂÊÁËÈÍÎÏÌÓÔ�ÒÚÛÙ�ˆ˜¯˘˙˚¸˝˛ˇ" + }, + "macukraine": { + "type": "_sbcs", + "chars": "АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯ†°Ґ£§•¶І®©™Ђђ≠Ѓѓ∞±≤≥іµґЈЄєЇїЉљЊњјЅ¬√ƒ≈∆«»… ЋћЌќѕ–—“”‘’÷„ЎўЏџ№Ёёяабвгдежзийклмнопрстуфхцчшщъыьэю¤" + }, + "koi8r": { + "type": "_sbcs", + "chars": "─│┌┐└┘├┤┬┴┼▀▄█▌▐░▒▓⌠■∙√≈≤≥ ⌡°²·÷═║╒ё╓╔╕╖╗╘╙╚╛╜╝╞╟╠╡Ё╢╣╤╥╦╧╨╩╪╫╬©юабцдефгхийклмнопярстужвьызшэщчъЮАБЦДЕФГХИЙКЛМНОПЯРСТУЖВЬЫЗШЭЩЧЪ" + }, + "koi8u": { + "type": "_sbcs", + "chars": "─│┌┐└┘├┤┬┴┼▀▄█▌▐░▒▓⌠■∙√≈≤≥ ⌡°²·÷═║╒ёє╔ії╗╘╙╚╛ґ╝╞╟╠╡ЁЄ╣ІЇ╦╧╨╩╪Ґ╬©юабцдефгхийклмнопярстужвьызшэщчъЮАБЦДЕФГХИЙКЛМНОПЯРСТУЖВЬЫЗШЭЩЧЪ" + }, + "koi8ru": { + "type": "_sbcs", + "chars": "─│┌┐└┘├┤┬┴┼▀▄█▌▐░▒▓⌠■∙√≈≤≥ ⌡°²·÷═║╒ёє╔ії╗╘╙╚╛ґў╞╟╠╡ЁЄ╣ІЇ╦╧╨╩╪ҐЎ©юабцдефгхийклмнопярстужвьызшэщчъЮАБЦДЕФГХИЙКЛМНОПЯРСТУЖВЬЫЗШЭЩЧЪ" + }, + "koi8t": { + "type": "_sbcs", + "chars": "қғ‚Ғ„…†‡�‰ҳ‹ҲҷҶ�Қ‘’“”•–—�™�›�����ӯӮё¤ӣ¦§���«¬­®�°±²Ё�Ӣ¶·�№�»���©юабцдефгхийклмнопярстужвьызшэщчъЮАБЦДЕФГХИЙКЛМНОПЯРСТУЖВЬЫЗШЭЩЧЪ" + }, + "armscii8": { + "type": "_sbcs", + "chars": "€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ �և։)(»«—.՝,-֊…՜՛՞ԱաԲբԳգԴդԵեԶզԷէԸըԹթԺժԻիԼլԽխԾծԿկՀհՁձՂղՃճՄմՅյՆնՇշՈոՉչՊպՋջՌռՍսՎվՏտՐրՑցՒւՓփՔքՕօՖֆ՚�" + }, + "rk1048": { + "type": "_sbcs", + "chars": "ЂЃ‚ѓ„…†‡€‰Љ‹ЊҚҺЏђ‘’“”•–—�™љ›њқһџ ҰұӘ¤Ө¦§Ё©Ғ«¬­®Ү°±Ііөµ¶·ё№ғ»әҢңүАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюя" + }, + "tcvn": { + "type": "_sbcs", + "chars": "\u0000ÚỤ\u0003ỪỬỮ\u0007\b\t\n\u000b\f\r\u000e\u000f\u0010ỨỰỲỶỸÝỴ\u0018\u0019\u001a\u001b\u001c\u001d\u001e\u001f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~ÀẢÃÁẠẶẬÈẺẼÉẸỆÌỈĨÍỊÒỎÕÓỌỘỜỞỠỚỢÙỦŨ ĂÂÊÔƠƯĐăâêôơưđẶ̀̀̉̃́àảãáạẲằẳẵắẴẮẦẨẪẤỀặầẩẫấậèỂẻẽéẹềểễếệìỉỄẾỒĩíịòỔỏõóọồổỗốộờởỡớợùỖủũúụừửữứựỳỷỹýỵỐ" + }, + "georgianacademy": { + "type": "_sbcs", + "chars": "€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿აბგდევზთიკლმნოპჟრსტუფქღყშჩცძწჭხჯჰჱჲჳჴჵჶçèéêëìíîïðñòóôõö÷øùúûüýþÿ" + }, + "georgianps": { + "type": "_sbcs", + "chars": "€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿აბგდევზჱთიკლმნჲოპჟრსტჳუფქღყშჩცძწჭხჴჯჰჵæçèéêëìíîïðñòóôõö÷øùúûüýþÿ" + }, + "pt154": { + "type": "_sbcs", + "chars": "ҖҒӮғ„…ҶҮҲүҠӢҢҚҺҸҗ‘’“”•–—ҳҷҡӣңқһҹ ЎўЈӨҘҰ§Ё©Ә«¬ӯ®Ҝ°ұІіҙө¶·ё№ә»јҪҫҝАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюя" + }, + "viscii": { + "type": "_sbcs", + "chars": "\u0000\u0001Ẳ\u0003\u0004ẴẪ\u0007\b\t\n\u000b\f\r\u000e\u000f\u0010\u0011\u0012\u0013Ỷ\u0015\u0016\u0017\u0018Ỹ\u001a\u001b\u001c\u001dỴ\u001f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~ẠẮẰẶẤẦẨẬẼẸẾỀỂỄỆỐỒỔỖỘỢỚỜỞỊỎỌỈỦŨỤỲÕắằặấầẩậẽẹếềểễệốồổỗỠƠộờởịỰỨỪỬơớƯÀÁÂÃẢĂẳẵÈÉÊẺÌÍĨỳĐứÒÓÔạỷừửÙÚỹỵÝỡưàáâãảăữẫèéêẻìíĩỉđựòóôõỏọụùúũủýợỮ" + }, + "iso646cn": { + "type": "_sbcs", + "chars": "\u0000\u0001\u0002\u0003\u0004\u0005\u0006\u0007\b\t\n\u000b\f\r\u000e\u000f\u0010\u0011\u0012\u0013\u0014\u0015\u0016\u0017\u0018\u0019\u001a\u001b\u001c\u001d\u001e\u001f !\"#¥%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}‾��������������������������������������������������������������������������������������������������������������������������������" + }, + "iso646jp": { + "type": "_sbcs", + "chars": "\u0000\u0001\u0002\u0003\u0004\u0005\u0006\u0007\b\t\n\u000b\f\r\u000e\u000f\u0010\u0011\u0012\u0013\u0014\u0015\u0016\u0017\u0018\u0019\u001a\u001b\u001c\u001d\u001e\u001f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[¥]^_`abcdefghijklmnopqrstuvwxyz{|}‾��������������������������������������������������������������������������������������������������������������������������������" + }, + "hproman8": { + "type": "_sbcs", + "chars": "€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ÀÂÈÊËÎÏ´ˋˆ¨˜ÙÛ₤¯Ýý°ÇçÑñ¡¿¤£¥§ƒ¢âêôûáéóúàèòùäëöüÅîØÆåíøæÄìÖÜÉïßÔÁÃãÐðÍÌÓÒÕõŠšÚŸÿÞþ·µ¶¾—¼½ªº«■»±�" + }, + "macintosh": { + "type": "_sbcs", + "chars": "ÄÅÇÉÑÖÜáàâäãåçéèêëíìîïñóòôöõúùûü†°¢£§•¶ß®©™´¨≠ÆØ∞±≤≥¥µ∂∑∏π∫ªºΩæø¿¡¬√ƒ≈∆«»… ÀÃÕŒœ–—“”‘’÷◊ÿŸ⁄¤‹›fifl‡·‚„‰ÂÊÁËÈÍÎÏÌÓÔ�ÒÚÛÙıˆ˜¯˘˙˚¸˝˛ˇ" + }, + "ascii": { + "type": "_sbcs", + "chars": "��������������������������������������������������������������������������������������������������������������������������������" + }, + "tis620": { + "type": "_sbcs", + "chars": "���������������������������������กขฃคฅฆงจฉชซฌญฎฏฐฑฒณดตถทธนบปผฝพฟภมยรฤลฦวศษสหฬอฮฯะัาำิีึืฺุู����฿เแโใไๅๆ็่้๊๋์ํ๎๏๐๑๒๓๔๕๖๗๘๙๚๛����" + } +} \ No newline at end of file diff --git a/node_modules/iconv-lite/encodings/sbcs-data.js b/node_modules/iconv-lite/encodings/sbcs-data.js new file mode 100644 index 000000000..fdb81a39a --- /dev/null +++ b/node_modules/iconv-lite/encodings/sbcs-data.js @@ -0,0 +1,174 @@ +"use strict"; + +// Manually added data to be used by sbcs codec in addition to generated one. + +module.exports = { + // Not supported by iconv, not sure why. + "10029": "maccenteuro", + "maccenteuro": { + "type": "_sbcs", + "chars": "ÄĀāÉĄÖÜáąČäčĆć鏟ĎíďĒēĖóėôöõúĚěü†°Ę£§•¶ß®©™ę¨≠ģĮįĪ≤≥īĶ∂∑łĻļĽľĹĺŅņѬ√ńŇ∆«»… ňŐÕőŌ–—“”‘’÷◊ōŔŕŘ‹›řŖŗŠ‚„šŚśÁŤťÍŽžŪÓÔūŮÚůŰűŲųÝýķŻŁżĢˇ" + }, + + "808": "cp808", + "ibm808": "cp808", + "cp808": { + "type": "_sbcs", + "chars": "АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмноп░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀рстуфхцчшщъыьэюяЁёЄєЇїЎў°∙·√№€■ " + }, + + "mik": { + "type": "_sbcs", + "chars": "АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюя└┴┬├─┼╣║╚╔╩╦╠═╬┐░▒▓│┤№§╗╝┘┌█▄▌▐▀αßΓπΣσµτΦΘΩδ∞φε∩≡±≥≤⌠⌡÷≈°∙·√ⁿ²■ " + }, + + // Aliases of generated encodings. + "ascii8bit": "ascii", + "usascii": "ascii", + "ansix34": "ascii", + "ansix341968": "ascii", + "ansix341986": "ascii", + "csascii": "ascii", + "cp367": "ascii", + "ibm367": "ascii", + "isoir6": "ascii", + "iso646us": "ascii", + "iso646irv": "ascii", + "us": "ascii", + + "latin1": "iso88591", + "latin2": "iso88592", + "latin3": "iso88593", + "latin4": "iso88594", + "latin5": "iso88599", + "latin6": "iso885910", + "latin7": "iso885913", + "latin8": "iso885914", + "latin9": "iso885915", + "latin10": "iso885916", + + "csisolatin1": "iso88591", + "csisolatin2": "iso88592", + "csisolatin3": "iso88593", + "csisolatin4": "iso88594", + "csisolatincyrillic": "iso88595", + "csisolatinarabic": "iso88596", + "csisolatingreek" : "iso88597", + "csisolatinhebrew": "iso88598", + "csisolatin5": "iso88599", + "csisolatin6": "iso885910", + + "l1": "iso88591", + "l2": "iso88592", + "l3": "iso88593", + "l4": "iso88594", + "l5": "iso88599", + "l6": "iso885910", + "l7": "iso885913", + "l8": "iso885914", + "l9": "iso885915", + "l10": "iso885916", + + "isoir14": "iso646jp", + "isoir57": "iso646cn", + "isoir100": "iso88591", + "isoir101": "iso88592", + "isoir109": "iso88593", + "isoir110": "iso88594", + "isoir144": "iso88595", + "isoir127": "iso88596", + "isoir126": "iso88597", + "isoir138": "iso88598", + "isoir148": "iso88599", + "isoir157": "iso885910", + "isoir166": "tis620", + "isoir179": "iso885913", + "isoir199": "iso885914", + "isoir203": "iso885915", + "isoir226": "iso885916", + + "cp819": "iso88591", + "ibm819": "iso88591", + + "cyrillic": "iso88595", + + "arabic": "iso88596", + "arabic8": "iso88596", + "ecma114": "iso88596", + "asmo708": "iso88596", + + "greek" : "iso88597", + "greek8" : "iso88597", + "ecma118" : "iso88597", + "elot928" : "iso88597", + + "hebrew": "iso88598", + "hebrew8": "iso88598", + + "turkish": "iso88599", + "turkish8": "iso88599", + + "thai": "iso885911", + "thai8": "iso885911", + + "celtic": "iso885914", + "celtic8": "iso885914", + "isoceltic": "iso885914", + + "tis6200": "tis620", + "tis62025291": "tis620", + "tis62025330": "tis620", + + "10000": "macroman", + "10006": "macgreek", + "10007": "maccyrillic", + "10079": "maciceland", + "10081": "macturkish", + + "cspc8codepage437": "cp437", + "cspc775baltic": "cp775", + "cspc850multilingual": "cp850", + "cspcp852": "cp852", + "cspc862latinhebrew": "cp862", + "cpgr": "cp869", + + "msee": "cp1250", + "mscyrl": "cp1251", + "msansi": "cp1252", + "msgreek": "cp1253", + "msturk": "cp1254", + "mshebr": "cp1255", + "msarab": "cp1256", + "winbaltrim": "cp1257", + + "cp20866": "koi8r", + "20866": "koi8r", + "ibm878": "koi8r", + "cskoi8r": "koi8r", + + "cp21866": "koi8u", + "21866": "koi8u", + "ibm1168": "koi8u", + + "strk10482002": "rk1048", + + "tcvn5712": "tcvn", + "tcvn57121": "tcvn", + + "gb198880": "iso646cn", + "cn": "iso646cn", + + "csiso14jisc6220ro": "iso646jp", + "jisc62201969ro": "iso646jp", + "jp": "iso646jp", + + "cshproman8": "hproman8", + "r8": "hproman8", + "roman8": "hproman8", + "xroman8": "hproman8", + "ibm1051": "hproman8", + + "mac": "macintosh", + "csmacintosh": "macintosh", +}; + diff --git a/node_modules/iconv-lite/encodings/tables/big5-added.json b/node_modules/iconv-lite/encodings/tables/big5-added.json new file mode 100644 index 000000000..3c3d3c2f7 --- /dev/null +++ b/node_modules/iconv-lite/encodings/tables/big5-added.json @@ -0,0 +1,122 @@ +[ +["8740","䏰䰲䘃䖦䕸𧉧䵷䖳𧲱䳢𧳅㮕䜶䝄䱇䱀𤊿𣘗𧍒𦺋𧃒䱗𪍑䝏䗚䲅𧱬䴇䪤䚡𦬣爥𥩔𡩣𣸆𣽡晍囻"], +["8767","綕夝𨮹㷴霴𧯯寛𡵞媤㘥𩺰嫑宷峼杮薓𩥅瑡璝㡵𡵓𣚞𦀡㻬"], +["87a1","𥣞㫵竼龗𤅡𨤍𣇪𠪊𣉞䌊蒄龖鐯䤰蘓墖靊鈘秐稲晠権袝瑌篅枂稬剏遆㓦珄𥶹瓆鿇垳䤯呌䄱𣚎堘穲𧭥讏䚮𦺈䆁𥶙箮𢒼鿈𢓁𢓉𢓌鿉蔄𣖻䂴鿊䓡𪷿拁灮鿋"], +["8840","㇀",4,"𠄌㇅𠃑𠃍㇆㇇𠃋𡿨㇈𠃊㇉㇊㇋㇌𠄎㇍㇎ĀÁǍÀĒÉĚÈŌÓǑÒ࿿Ê̄Ế࿿Ê̌ỀÊāáǎàɑēéěèīíǐìōóǒòūúǔùǖǘǚ"], +["88a1","ǜü࿿ê̄ế࿿ê̌ềêɡ⏚⏛"], +["8940","𪎩𡅅"], +["8943","攊"], +["8946","丽滝鵎釟"], +["894c","𧜵撑会伨侨兖兴农凤务动医华发变团声处备夲头学实実岚庆总斉柾栄桥济炼电纤纬纺织经统缆缷艺苏药视设询车轧轮"], +["89a1","琑糼緍楆竉刧"], +["89ab","醌碸酞肼"], +["89b0","贋胶𠧧"], +["89b5","肟黇䳍鷉鸌䰾𩷶𧀎鸊𪄳㗁"], +["89c1","溚舾甙"], +["89c5","䤑马骏龙禇𨑬𡷊𠗐𢫦两亁亀亇亿仫伷㑌侽㹈倃傈㑽㒓㒥円夅凛凼刅争剹劐匧㗇厩㕑厰㕓参吣㕭㕲㚁咓咣咴咹哐哯唘唣唨㖘唿㖥㖿嗗㗅"], +["8a40","𧶄唥"], +["8a43","𠱂𠴕𥄫喐𢳆㧬𠍁蹆𤶸𩓥䁓𨂾睺𢰸㨴䟕𨅝𦧲𤷪擝𠵼𠾴𠳕𡃴撍蹾𠺖𠰋𠽤𢲩𨉖𤓓"], +["8a64","𠵆𩩍𨃩䟴𤺧𢳂骲㩧𩗴㿭㔆𥋇𩟔𧣈𢵄鵮頕"], +["8a76","䏙𦂥撴哣𢵌𢯊𡁷㧻𡁯"], +["8aa1","𦛚𦜖𧦠擪𥁒𠱃蹨𢆡𨭌𠜱"], +["8aac","䠋𠆩㿺塳𢶍"], +["8ab2","𤗈𠓼𦂗𠽌𠶖啹䂻䎺"], +["8abb","䪴𢩦𡂝膪飵𠶜捹㧾𢝵跀嚡摼㹃"], +["8ac9","𪘁𠸉𢫏𢳉"], +["8ace","𡃈𣧂㦒㨆𨊛㕸𥹉𢃇噒𠼱𢲲𩜠㒼氽𤸻"], +["8adf","𧕴𢺋𢈈𪙛𨳍𠹺𠰴𦠜羓𡃏𢠃𢤹㗻𥇣𠺌𠾍𠺪㾓𠼰𠵇𡅏𠹌"], +["8af6","𠺫𠮩𠵈𡃀𡄽㿹𢚖搲𠾭"], +["8b40","𣏴𧘹𢯎𠵾𠵿𢱑𢱕㨘𠺘𡃇𠼮𪘲𦭐𨳒𨶙𨳊閪哌苄喹"], +["8b55","𩻃鰦骶𧝞𢷮煀腭胬尜𦕲脴㞗卟𨂽醶𠻺𠸏𠹷𠻻㗝𤷫㘉𠳖嚯𢞵𡃉𠸐𠹸𡁸𡅈𨈇𡑕𠹹𤹐𢶤婔𡀝𡀞𡃵𡃶垜𠸑"], +["8ba1","𧚔𨋍𠾵𠹻𥅾㜃𠾶𡆀𥋘𪊽𤧚𡠺𤅷𨉼墙剨㘚𥜽箲孨䠀䬬鼧䧧鰟鮍𥭴𣄽嗻㗲嚉丨夂𡯁屮靑𠂆乛亻㔾尣彑忄㣺扌攵歺氵氺灬爫丬犭𤣩罒礻糹罓𦉪㓁"], +["8bde","𦍋耂肀𦘒𦥑卝衤见𧢲讠贝钅镸长门𨸏韦页风飞饣𩠐鱼鸟黄歯龜丷𠂇阝户钢"], +["8c40","倻淾𩱳龦㷉袏𤅎灷峵䬠𥇍㕙𥴰愢𨨲辧釶熑朙玺𣊁𪄇㲋𡦀䬐磤琂冮𨜏䀉橣𪊺䈣蘏𠩯稪𩥇𨫪靕灍匤𢁾鏴盙𨧣龧矝亣俰傼丯众龨吴綋墒壐𡶶庒庙忂𢜒斋"], +["8ca1","𣏹椙橃𣱣泿"], +["8ca7","爀𤔅玌㻛𤨓嬕璹讃𥲤𥚕窓篬糃繬苸薗龩袐龪躹龫迏蕟駠鈡龬𨶹𡐿䁱䊢娚"], +["8cc9","顨杫䉶圽"], +["8cce","藖𤥻芿𧄍䲁𦵴嵻𦬕𦾾龭龮宖龯曧繛湗秊㶈䓃𣉖𢞖䎚䔶"], +["8ce6","峕𣬚諹屸㴒𣕑嵸龲煗䕘𤃬𡸣䱷㥸㑊𠆤𦱁諌侴𠈹妿腬顖𩣺弻"], +["8d40","𠮟"], +["8d42","𢇁𨥭䄂䚻𩁹㼇龳𪆵䃸㟖䛷𦱆䅼𨚲𧏿䕭㣔𥒚䕡䔛䶉䱻䵶䗪㿈𤬏㙡䓞䒽䇭崾嵈嵖㷼㠏嶤嶹㠠㠸幂庽弥徃㤈㤔㤿㥍惗愽峥㦉憷憹懏㦸戬抐拥挘㧸嚱"], +["8da1","㨃揢揻搇摚㩋擀崕嘡龟㪗斆㪽旿晓㫲暒㬢朖㭂枤栀㭘桊梄㭲㭱㭻椉楃牜楤榟榅㮼槖㯝橥橴橱檂㯬檙㯲檫檵櫔櫶殁毁毪汵沪㳋洂洆洦涁㳯涤涱渕渘温溆𨧀溻滢滚齿滨滩漤漴㵆𣽁澁澾㵪㵵熷岙㶊瀬㶑灐灔灯灿炉𠌥䏁㗱𠻘"], +["8e40","𣻗垾𦻓焾𥟠㙎榢𨯩孴穉𥣡𩓙穥穽𥦬窻窰竂竃燑𦒍䇊竚竝竪䇯咲𥰁笋筕笩𥌎𥳾箢筯莜𥮴𦱿篐萡箒箸𥴠㶭𥱥蒒篺簆簵𥳁籄粃𤢂粦晽𤕸糉糇糦籴糳糵糎"], +["8ea1","繧䔝𦹄絝𦻖璍綉綫焵綳緒𤁗𦀩緤㴓緵𡟹緥𨍭縝𦄡𦅚繮纒䌫鑬縧罀罁罇礶𦋐駡羗𦍑羣𡙡𠁨䕜𣝦䔃𨌺翺𦒉者耈耝耨耯𪂇𦳃耻耼聡𢜔䦉𦘦𣷣𦛨朥肧𨩈脇脚墰𢛶汿𦒘𤾸擧𡒊舘𡡞橓𤩥𤪕䑺舩𠬍𦩒𣵾俹𡓽蓢荢𦬊𤦧𣔰𡝳𣷸芪椛芳䇛"], +["8f40","蕋苐茚𠸖𡞴㛁𣅽𣕚艻苢茘𣺋𦶣𦬅𦮗𣗎㶿茝嗬莅䔋𦶥莬菁菓㑾𦻔橗蕚㒖𦹂𢻯葘𥯤葱㷓䓤檧葊𣲵祘蒨𦮖𦹷𦹃蓞萏莑䒠蒓蓤𥲑䉀𥳀䕃蔴嫲𦺙䔧蕳䔖枿蘖"], +["8fa1","𨘥𨘻藁𧂈蘂𡖂𧃍䕫䕪蘨㙈𡢢号𧎚虾蝱𪃸蟮𢰧螱蟚蠏噡虬桖䘏衅衆𧗠𣶹𧗤衞袜䙛袴袵揁装睷𧜏覇覊覦覩覧覼𨨥觧𧤤𧪽誜瞓釾誐𧩙竩𧬺𣾏䜓𧬸煼謌謟𥐰𥕥謿譌譍誩𤩺讐讛誯𡛟䘕衏貛𧵔𧶏貫㜥𧵓賖𧶘𧶽贒贃𡤐賛灜贑𤳉㻐起"], +["9040","趩𨀂𡀔𤦊㭼𨆼𧄌竧躭躶軃鋔輙輭𨍥𨐒辥錃𪊟𠩐辳䤪𨧞𨔽𣶻廸𣉢迹𪀔𨚼𨔁𢌥㦀𦻗逷𨔼𧪾遡𨕬𨘋邨𨜓郄𨛦邮都酧㫰醩釄粬𨤳𡺉鈎沟鉁鉢𥖹銹𨫆𣲛𨬌𥗛"], +["90a1","𠴱錬鍫𨫡𨯫炏嫃𨫢𨫥䥥鉄𨯬𨰹𨯿鍳鑛躼閅閦鐦閠濶䊹𢙺𨛘𡉼𣸮䧟氜陻隖䅬隣𦻕懚隶磵𨫠隽双䦡𦲸𠉴𦐐𩂯𩃥𤫑𡤕𣌊霱虂霶䨏䔽䖅𤫩灵孁霛靜𩇕靗孊𩇫靟鐥僐𣂷𣂼鞉鞟鞱鞾韀韒韠𥑬韮琜𩐳響韵𩐝𧥺䫑頴頳顋顦㬎𧅵㵑𠘰𤅜"], +["9140","𥜆飊颷飈飇䫿𦴧𡛓喰飡飦飬鍸餹𤨩䭲𩡗𩤅駵騌騻騐驘𥜥㛄𩂱𩯕髠髢𩬅髴䰎鬔鬭𨘀倴鬴𦦨㣃𣁽魐魀𩴾婅𡡣鮎𤉋鰂鯿鰌𩹨鷔𩾷𪆒𪆫𪃡𪄣𪇟鵾鶃𪄴鸎梈"], +["91a1","鷄𢅛𪆓𪈠𡤻𪈳鴹𪂹𪊴麐麕麞麢䴴麪麯𤍤黁㭠㧥㴝伲㞾𨰫鼂鼈䮖鐤𦶢鼗鼖鼹嚟嚊齅馸𩂋韲葿齢齩竜龎爖䮾𤥵𤦻煷𤧸𤍈𤩑玞𨯚𡣺禟𨥾𨸶鍩鏳𨩄鋬鎁鏋𨥬𤒹爗㻫睲穃烐𤑳𤏸煾𡟯炣𡢾𣖙㻇𡢅𥐯𡟸㜢𡛻𡠹㛡𡝴𡣑𥽋㜣𡛀坛𤨥𡏾𡊨"], +["9240","𡏆𡒶蔃𣚦蔃葕𤦔𧅥𣸱𥕜𣻻𧁒䓴𣛮𩦝𦼦柹㜳㰕㷧塬𡤢栐䁗𣜿𤃡𤂋𤄏𦰡哋嚞𦚱嚒𠿟𠮨𠸍鏆𨬓鎜仸儫㠙𤐶亼𠑥𠍿佋侊𥙑婨𠆫𠏋㦙𠌊𠐔㐵伩𠋀𨺳𠉵諚𠈌亘"], +["92a1","働儍侢伃𤨎𣺊佂倮偬傁俌俥偘僼兙兛兝兞湶𣖕𣸹𣺿浲𡢄𣺉冨凃𠗠䓝𠒣𠒒𠒑赺𨪜𠜎剙劤𠡳勡鍮䙺熌𤎌𠰠𤦬𡃤槑𠸝瑹㻞璙琔瑖玘䮎𤪼𤂍叐㖄爏𤃉喴𠍅响𠯆圝鉝雴鍦埝垍坿㘾壋媙𨩆𡛺𡝯𡜐娬妸銏婾嫏娒𥥆𡧳𡡡𤊕㛵洅瑃娡𥺃"], +["9340","媁𨯗𠐓鏠璌𡌃焅䥲鐈𨧻鎽㞠尞岞幞幈𡦖𡥼𣫮廍孏𡤃𡤄㜁𡢠㛝𡛾㛓脪𨩇𡶺𣑲𨦨弌弎𡤧𡞫婫𡜻孄蘔𧗽衠恾𢡠𢘫忛㺸𢖯𢖾𩂈𦽳懀𠀾𠁆𢘛憙憘恵𢲛𢴇𤛔𩅍"], +["93a1","摱𤙥𢭪㨩𢬢𣑐𩣪𢹸挷𪑛撶挱揑𤧣𢵧护𢲡搻敫楲㯴𣂎𣊭𤦉𣊫唍𣋠𡣙𩐿曎𣊉𣆳㫠䆐𥖄𨬢𥖏𡛼𥕛𥐥磮𣄃𡠪𣈴㑤𣈏𣆂𤋉暎𦴤晫䮓昰𧡰𡷫晣𣋒𣋡昞𥡲㣑𣠺𣞼㮙𣞢𣏾瓐㮖枏𤘪梶栞㯄檾㡣𣟕𤒇樳橒櫉欅𡤒攑梘橌㯗橺歗𣿀𣲚鎠鋲𨯪𨫋"], +["9440","銉𨀞𨧜鑧涥漋𤧬浧𣽿㶏渄𤀼娽渊塇洤硂焻𤌚𤉶烱牐犇犔𤞏𤜥兹𤪤𠗫瑺𣻸𣙟𤩊𤤗𥿡㼆㺱𤫟𨰣𣼵悧㻳瓌琼鎇琷䒟𦷪䕑疃㽣𤳙𤴆㽘畕癳𪗆㬙瑨𨫌𤦫𤦎㫻"], +["94a1","㷍𤩎㻿𤧅𤣳釺圲鍂𨫣𡡤僟𥈡𥇧睸𣈲眎眏睻𤚗𣞁㩞𤣰琸璛㺿𤪺𤫇䃈𤪖𦆮錇𥖁砞碍碈磒珐祙𧝁𥛣䄎禛蒖禥樭𣻺稺秴䅮𡛦䄲鈵秱𠵌𤦌𠊙𣶺𡝮㖗啫㕰㚪𠇔𠰍竢婙𢛵𥪯𥪜娍𠉛磰娪𥯆竾䇹籝籭䈑𥮳𥺼𥺦糍𤧹𡞰粎籼粮檲緜縇緓罎𦉡"], +["9540","𦅜𧭈綗𥺂䉪𦭵𠤖柖𠁎𣗏埄𦐒𦏸𤥢翝笧𠠬𥫩𥵃笌𥸎駦虅驣樜𣐿㧢𤧷𦖭騟𦖠蒀𧄧𦳑䓪脷䐂胆脉腂𦞴飃𦩂艢艥𦩑葓𦶧蘐𧈛媆䅿𡡀嬫𡢡嫤𡣘蚠蜨𣶏蠭𧐢娂"], +["95a1","衮佅袇袿裦襥襍𥚃襔𧞅𧞄𨯵𨯙𨮜𨧹㺭蒣䛵䛏㟲訽訜𩑈彍鈫𤊄旔焩烄𡡅鵭貟賩𧷜妚矃姰䍮㛔踪躧𤰉輰轊䋴汘澻𢌡䢛潹溋𡟚鯩㚵𤤯邻邗啱䤆醻鐄𨩋䁢𨫼鐧𨰝𨰻蓥訫閙閧閗閖𨴴瑅㻂𤣿𤩂𤏪㻧𣈥随𨻧𨹦𨹥㻌𤧭𤩸𣿮琒瑫㻼靁𩂰"], +["9640","桇䨝𩂓𥟟靝鍨𨦉𨰦𨬯𦎾銺嬑譩䤼珹𤈛鞛靱餸𠼦巁𨯅𤪲頟𩓚鋶𩗗釥䓀𨭐𤩧𨭤飜𨩅㼀鈪䤥萔餻饍𧬆㷽馛䭯馪驜𨭥𥣈檏騡嫾騯𩣱䮐𩥈馼䮽䮗鍽塲𡌂堢𤦸"], +["96a1","𡓨硄𢜟𣶸棅㵽鑘㤧慐𢞁𢥫愇鱏鱓鱻鰵鰐魿鯏𩸭鮟𪇵𪃾鴡䲮𤄄鸘䲰鴌𪆴𪃭𪃳𩤯鶥蒽𦸒𦿟𦮂藼䔳𦶤𦺄𦷰萠藮𦸀𣟗𦁤秢𣖜𣙀䤭𤧞㵢鏛銾鍈𠊿碹鉷鑍俤㑀遤𥕝砽硔碶硋𡝗𣇉𤥁㚚佲濚濙瀞瀞吔𤆵垻壳垊鴖埗焴㒯𤆬燫𦱀𤾗嬨𡞵𨩉"], +["9740","愌嫎娋䊼𤒈㜬䭻𨧼鎻鎸𡣖𠼝葲𦳀𡐓𤋺𢰦𤏁妔𣶷𦝁綨𦅛𦂤𤦹𤦋𨧺鋥珢㻩璴𨭣𡢟㻡𤪳櫘珳珻㻖𤨾𤪔𡟙𤩦𠎧𡐤𤧥瑈𤤖炥𤥶銄珦鍟𠓾錱𨫎𨨖鎆𨯧𥗕䤵𨪂煫"], +["97a1","𤥃𠳿嚤𠘚𠯫𠲸唂秄𡟺緾𡛂𤩐𡡒䔮鐁㜊𨫀𤦭妰𡢿𡢃𧒄媡㛢𣵛㚰鉟婹𨪁𡡢鍴㳍𠪴䪖㦊僴㵩㵌𡎜煵䋻𨈘渏𩃤䓫浗𧹏灧沯㳖𣿭𣸭渂漌㵯𠏵畑㚼㓈䚀㻚䡱姄鉮䤾轁𨰜𦯀堒埈㛖𡑒烾𤍢𤩱𢿣𡊰𢎽梹楧𡎘𣓥𧯴𣛟𨪃𣟖𣏺𤲟樚𣚭𦲷萾䓟䓎"], +["9840","𦴦𦵑𦲂𦿞漗𧄉茽𡜺菭𦲀𧁓𡟛妉媂𡞳婡婱𡤅𤇼㜭姯𡜼㛇熎鎐暚𤊥婮娫𤊓樫𣻹𧜶𤑛𤋊焝𤉙𨧡侰𦴨峂𤓎𧹍𤎽樌𤉖𡌄炦焳𤏩㶥泟勇𤩏繥姫崯㷳彜𤩝𡟟綤萦"], +["98a1","咅𣫺𣌀𠈔坾𠣕𠘙㿥𡾞𪊶瀃𩅛嵰玏糓𨩙𩐠俈翧狍猐𧫴猸猹𥛶獁獈㺩𧬘遬燵𤣲珡臶㻊県㻑沢国琙琞琟㻢㻰㻴㻺瓓㼎㽓畂畭畲疍㽼痈痜㿀癍㿗癴㿜発𤽜熈嘣覀塩䀝睃䀹条䁅㗛瞘䁪䁯属瞾矋売砘点砜䂨砹硇硑硦葈𥔵礳栃礲䄃"], +["9940","䄉禑禙辻稆込䅧窑䆲窼艹䇄竏竛䇏両筢筬筻簒簛䉠䉺类粜䊌粸䊔糭输烀𠳏総緔緐緽羮羴犟䎗耠耥笹耮耱联㷌垴炠肷胩䏭脌猪脎脒畠脔䐁㬹腖腙腚"], +["99a1","䐓堺腼膄䐥膓䐭膥埯臁臤艔䒏芦艶苊苘苿䒰荗险榊萅烵葤惣蒈䔄蒾蓡蓸蔐蔸蕒䔻蕯蕰藠䕷虲蚒蚲蛯际螋䘆䘗袮裿褤襇覑𧥧訩訸誔誴豑賔賲贜䞘塟跃䟭仮踺嗘坔蹱嗵躰䠷軎転軤軭軲辷迁迊迌逳駄䢭飠鈓䤞鈨鉘鉫銱銮銿"], +["9a40","鋣鋫鋳鋴鋽鍃鎄鎭䥅䥑麿鐗匁鐝鐭鐾䥪鑔鑹锭関䦧间阳䧥枠䨤靀䨵鞲韂噔䫤惨颹䬙飱塄餎餙冴餜餷饂饝饢䭰駅䮝騼鬏窃魩鮁鯝鯱鯴䱭鰠㝯𡯂鵉鰺"], +["9aa1","黾噐鶓鶽鷀鷼银辶鹻麬麱麽黆铜黢黱黸竈齄𠂔𠊷𠎠椚铃妬𠓗塀铁㞹𠗕𠘕𠙶𡚺块煳𠫂𠫍𠮿呪吆𠯋咞𠯻𠰻𠱓𠱥𠱼惧𠲍噺𠲵𠳝𠳭𠵯𠶲𠷈楕鰯螥𠸄𠸎𠻗𠾐𠼭𠹳尠𠾼帋𡁜𡁏𡁶朞𡁻𡂈𡂖㙇𡂿𡃓𡄯𡄻卤蒭𡋣𡍵𡌶讁𡕷𡘙𡟃𡟇乸炻𡠭𡥪"], +["9b40","𡨭𡩅𡰪𡱰𡲬𡻈拃𡻕𡼕熘桕𢁅槩㛈𢉼𢏗𢏺𢜪𢡱𢥏苽𢥧𢦓𢫕覥𢫨辠𢬎鞸𢬿顇骽𢱌"], +["9b62","𢲈𢲷𥯨𢴈𢴒𢶷𢶕𢹂𢽴𢿌𣀳𣁦𣌟𣏞徱晈暿𧩹𣕧𣗳爁𤦺矗𣘚𣜖纇𠍆墵朎"], +["9ba1","椘𣪧𧙗𥿢𣸑𣺹𧗾𢂚䣐䪸𤄙𨪚𤋮𤌍𤀻𤌴𤎖𤩅𠗊凒𠘑妟𡺨㮾𣳿𤐄𤓖垈𤙴㦛𤜯𨗨𩧉㝢𢇃譞𨭎駖𤠒𤣻𤨕爉𤫀𠱸奥𤺥𤾆𠝹軚𥀬劏圿煱𥊙𥐙𣽊𤪧喼𥑆𥑮𦭒釔㑳𥔿𧘲𥕞䜘𥕢𥕦𥟇𤤿𥡝偦㓻𣏌惞𥤃䝼𨥈𥪮𥮉𥰆𡶐垡煑澶𦄂𧰒遖𦆲𤾚譢𦐂𦑊"], +["9c40","嵛𦯷輶𦒄𡤜諪𤧶𦒈𣿯𦔒䯀𦖿𦚵𢜛鑥𥟡憕娧晉侻嚹𤔡𦛼乪𤤴陖涏𦲽㘘襷𦞙𦡮𦐑𦡞營𦣇筂𩃀𠨑𦤦鄄𦤹穅鷰𦧺騦𦨭㙟𦑩𠀡禃𦨴𦭛崬𣔙菏𦮝䛐𦲤画补𦶮墶"], +["9ca1","㜜𢖍𧁋𧇍㱔𧊀𧊅銁𢅺𧊋錰𧋦𤧐氹钟𧑐𠻸蠧裵𢤦𨑳𡞱溸𤨪𡠠㦤㚹尐秣䔿暶𩲭𩢤襃𧟌𧡘囖䃟𡘊㦡𣜯𨃨𡏅熭荦𧧝𩆨婧䲷𧂯𨦫𧧽𧨊𧬋𧵦𤅺筃祾𨀉澵𪋟樃𨌘厢𦸇鎿栶靝𨅯𨀣𦦵𡏭𣈯𨁈嶅𨰰𨂃圕頣𨥉嶫𤦈斾槕叒𤪥𣾁㰑朶𨂐𨃴𨄮𡾡𨅏"], +["9d40","𨆉𨆯𨈚𨌆𨌯𨎊㗊𨑨𨚪䣺揦𨥖砈鉕𨦸䏲𨧧䏟𨧨𨭆𨯔姸𨰉輋𨿅𩃬筑𩄐𩄼㷷𩅞𤫊运犏嚋𩓧𩗩𩖰𩖸𩜲𩣑𩥉𩥪𩧃𩨨𩬎𩵚𩶛纟𩻸𩼣䲤镇𪊓熢𪋿䶑递𪗋䶜𠲜达嗁"], +["9da1","辺𢒰边𤪓䔉繿潖檱仪㓤𨬬𧢝㜺躀𡟵𨀤𨭬𨮙𧨾𦚯㷫𧙕𣲷𥘵𥥖亚𥺁𦉘嚿𠹭踎孭𣺈𤲞揞拐𡟶𡡻攰嘭𥱊吚𥌑㷆𩶘䱽嘢嘞罉𥻘奵𣵀蝰东𠿪𠵉𣚺脗鵞贘瘻鱅癎瞹鍅吲腈苷嘥脲萘肽嗪祢噃吖𠺝㗎嘅嗱曱𨋢㘭甴嗰喺咗啲𠱁𠲖廐𥅈𠹶𢱢"], +["9e40","𠺢麫絚嗞𡁵抝靭咔賍燶酶揼掹揾啩𢭃鱲𢺳冚㓟𠶧冧呍唞唓癦踭𦢊疱肶蠄螆裇膶萜𡃁䓬猄𤜆宐茋𦢓噻𢛴𧴯𤆣𧵳𦻐𧊶酰𡇙鈈𣳼𪚩𠺬𠻹牦𡲢䝎𤿂𧿹𠿫䃺"], +["9ea1","鱝攟𢶠䣳𤟠𩵼𠿬𠸊恢𧖣𠿭"], +["9ead","𦁈𡆇熣纎鵐业丄㕷嬍沲卧㚬㧜卽㚥𤘘墚𤭮舭呋垪𥪕𠥹"], +["9ec5","㩒𢑥獴𩺬䴉鯭𣳾𩼰䱛𤾩𩖞𩿞葜𣶶𧊲𦞳𣜠挮紥𣻷𣸬㨪逈勌㹴㙺䗩𠒎癀嫰𠺶硺𧼮墧䂿噼鮋嵴癔𪐴麅䳡痹㟻愙𣃚𤏲"], +["9ef5","噝𡊩垧𤥣𩸆刴𧂮㖭汊鵼"], +["9f40","籖鬹埞𡝬屓擓𩓐𦌵𧅤蚭𠴨𦴢𤫢𠵱"], +["9f4f","凾𡼏嶎霃𡷑麁遌笟鬂峑箣扨挵髿篏鬪籾鬮籂粆鰕篼鬉鼗鰛𤤾齚啳寃俽麘俲剠㸆勑坧偖妷帒韈鶫轜呩鞴饀鞺匬愰"], +["9fa1","椬叚鰊鴂䰻陁榀傦畆𡝭駚剳"], +["9fae","酙隁酜"], +["9fb2","酑𨺗捿𦴣櫊嘑醎畺抅𠏼獏籰𥰡𣳽"], +["9fc1","𤤙盖鮝个𠳔莾衂"], +["9fc9","届槀僭坺刟巵从氱𠇲伹咜哚劚趂㗾弌㗳"], +["9fdb","歒酼龥鮗頮颴骺麨麄煺笔"], +["9fe7","毺蠘罸"], +["9feb","嘠𪙊蹷齓"], +["9ff0","跔蹏鸜踁抂𨍽踨蹵竓𤩷稾磘泪詧瘇"], +["a040","𨩚鼦泎蟖痃𪊲硓咢贌狢獱謭猂瓱賫𤪻蘯徺袠䒷"], +["a055","𡠻𦸅"], +["a058","詾𢔛"], +["a05b","惽癧髗鵄鍮鮏蟵"], +["a063","蠏賷猬霡鮰㗖犲䰇籑饊𦅙慙䰄麖慽"], +["a073","坟慯抦戹拎㩜懢厪𣏵捤栂㗒"], +["a0a1","嵗𨯂迚𨸹"], +["a0a6","僙𡵆礆匲阸𠼻䁥"], +["a0ae","矾"], +["a0b0","糂𥼚糚稭聦聣絍甅瓲覔舚朌聢𧒆聛瓰脃眤覉𦟌畓𦻑螩蟎臈螌詉貭譃眫瓸蓚㘵榲趦"], +["a0d4","覩瑨涹蟁𤀑瓧㷛煶悤憜㳑煢恷"], +["a0e2","罱𨬭牐惩䭾删㰘𣳇𥻗𧙖𥔱𡥄𡋾𩤃𦷜𧂭峁𦆭𨨏𣙷𠃮𦡆𤼎䕢嬟𦍌齐麦𦉫"], +["a3c0","␀",31,"␡"], +["c6a1","①",9,"⑴",9,"ⅰ",9,"丶丿亅亠冂冖冫勹匸卩厶夊宀巛⼳广廴彐彡攴无疒癶辵隶¨ˆヽヾゝゞ〃仝々〆〇ー[]✽ぁ",23], +["c740","す",58,"ァアィイ"], +["c7a1","ゥ",81,"А",5,"ЁЖ",4], +["c840","Л",26,"ёж",25,"⇧↸↹㇏𠃌乚𠂊刂䒑"], +["c8a1","龰冈龱𧘇"], +["c8cd","¬¦'"㈱№℡゛゜⺀⺄⺆⺇⺈⺊⺌⺍⺕⺜⺝⺥⺧⺪⺬⺮⺶⺼⺾⻆⻊⻌⻍⻏⻖⻗⻞⻣"], +["c8f5","ʃɐɛɔɵœøŋʊɪ"], +["f9fe","■"], +["fa40","𠕇鋛𠗟𣿅蕌䊵珯况㙉𤥂𨧤鍄𡧛苮𣳈砼杄拟𤤳𨦪𠊠𦮳𡌅侫𢓭倈𦴩𧪄𣘀𤪱𢔓倩𠍾徤𠎀𠍇滛𠐟偽儁㑺儎顬㝃萖𤦤𠒇兠𣎴兪𠯿𢃼𠋥𢔰𠖎𣈳𡦃宂蝽𠖳𣲙冲冸"], +["faa1","鴴凉减凑㳜凓𤪦决凢卂凭菍椾𣜭彻刋刦刼劵剗劔効勅簕蕂勠蘍𦬓包𨫞啉滙𣾀𠥔𣿬匳卄𠯢泋𡜦栛珕恊㺪㣌𡛨燝䒢卭却𨚫卾卿𡖖𡘓矦厓𨪛厠厫厮玧𥝲㽙玜叁叅汉义埾叙㪫𠮏叠𣿫𢶣叶𠱷吓灹唫晗浛呭𦭓𠵴啝咏咤䞦𡜍𠻝㶴𠵍"], +["fb40","𨦼𢚘啇䳭启琗喆喩嘅𡣗𤀺䕒𤐵暳𡂴嘷曍𣊊暤暭噍噏磱囱鞇叾圀囯园𨭦㘣𡉏坆𤆥汮炋坂㚱𦱾埦𡐖堃𡑔𤍣堦𤯵塜墪㕡壠壜𡈼壻寿坃𪅐𤉸鏓㖡够梦㛃湙"], +["fba1","𡘾娤啓𡚒蔅姉𠵎𦲁𦴪𡟜姙𡟻𡞲𦶦浱𡠨𡛕姹𦹅媫婣㛦𤦩婷㜈媖瑥嫓𦾡𢕔㶅𡤑㜲𡚸広勐孶斈孼𧨎䀄䡝𠈄寕慠𡨴𥧌𠖥寳宝䴐尅𡭄尓珎尔𡲥𦬨屉䣝岅峩峯嶋𡷹𡸷崐崘嵆𡺤岺巗苼㠭𤤁𢁉𢅳芇㠶㯂帮檊幵幺𤒼𠳓厦亷廐厨𡝱帉廴𨒂"], +["fc40","廹廻㢠廼栾鐛弍𠇁弢㫞䢮𡌺强𦢈𢏐彘𢑱彣鞽𦹮彲鍀𨨶徧嶶㵟𥉐𡽪𧃸𢙨釖𠊞𨨩怱暅𡡷㥣㷇㘹垐𢞴祱㹀悞悤悳𤦂𤦏𧩓璤僡媠慤萤慂慈𦻒憁凴𠙖憇宪𣾷"], +["fca1","𢡟懓𨮝𩥝懐㤲𢦀𢣁怣慜攞掋𠄘担𡝰拕𢸍捬𤧟㨗搸揸𡎎𡟼撐澊𢸶頔𤂌𥜝擡擥鑻㩦携㩗敍漖𤨨𤨣斅敭敟𣁾斵𤥀䬷旑䃘𡠩无旣忟𣐀昘𣇷𣇸晄𣆤𣆥晋𠹵晧𥇦晳晴𡸽𣈱𨗴𣇈𥌓矅𢣷馤朂𤎜𤨡㬫槺𣟂杞杧杢𤇍𩃭柗䓩栢湐鈼栁𣏦𦶠桝"], +["fd40","𣑯槡樋𨫟楳棃𣗍椁椀㴲㨁𣘼㮀枬楡𨩊䋼椶榘㮡𠏉荣傐槹𣙙𢄪橅𣜃檝㯳枱櫈𩆜㰍欝𠤣惞欵歴𢟍溵𣫛𠎵𡥘㝀吡𣭚毡𣻼毜氷𢒋𤣱𦭑汚舦汹𣶼䓅𣶽𤆤𤤌𤤀"], +["fda1","𣳉㛥㳫𠴲鮃𣇹𢒑羏样𦴥𦶡𦷫涖浜湼漄𤥿𤂅𦹲蔳𦽴凇沜渝萮𨬡港𣸯瑓𣾂秌湏媑𣁋濸㜍澝𣸰滺𡒗𤀽䕕鏰潄潜㵎潴𩅰㴻澟𤅄濓𤂑𤅕𤀹𣿰𣾴𤄿凟𤅖𤅗𤅀𦇝灋灾炧炁烌烕烖烟䄄㷨熴熖𤉷焫煅媈煊煮岜𤍥煏鍢𤋁焬𤑚𤨧𤨢熺𨯨炽爎"], +["fe40","鑂爕夑鑃爤鍁𥘅爮牀𤥴梽牕牗㹕𣁄栍漽犂猪猫𤠣𨠫䣭𨠄猨献珏玪𠰺𦨮珉瑉𤇢𡛧𤨤昣㛅𤦷𤦍𤧻珷琕椃𤨦琹𠗃㻗瑜𢢭瑠𨺲瑇珤瑶莹瑬㜰瑴鏱樬璂䥓𤪌"], +["fea1","𤅟𤩹𨮏孆𨰃𡢞瓈𡦈甎瓩甞𨻙𡩋寗𨺬鎅畍畊畧畮𤾂㼄𤴓疎瑝疞疴瘂瘬癑癏癯癶𦏵皐臯㟸𦤑𦤎皡皥皷盌𦾟葢𥂝𥅽𡸜眞眦着撯𥈠睘𣊬瞯𨥤𨥨𡛁矴砉𡍶𤨒棊碯磇磓隥礮𥗠磗礴碱𧘌辸袄𨬫𦂃𢘜禆褀椂禀𥡗禝𧬹礼禩渪𧄦㺨秆𩄍秔"] +] diff --git a/node_modules/iconv-lite/encodings/tables/cp936.json b/node_modules/iconv-lite/encodings/tables/cp936.json new file mode 100644 index 000000000..49ddb9a1d --- /dev/null +++ b/node_modules/iconv-lite/encodings/tables/cp936.json @@ -0,0 +1,264 @@ +[ +["0","\u0000",127,"€"], +["8140","丂丄丅丆丏丒丗丟丠両丣並丩丮丯丱丳丵丷丼乀乁乂乄乆乊乑乕乗乚乛乢乣乤乥乧乨乪",5,"乲乴",9,"乿",6,"亇亊"], +["8180","亐亖亗亙亜亝亞亣亪亯亰亱亴亶亷亸亹亼亽亾仈仌仏仐仒仚仛仜仠仢仦仧仩仭仮仯仱仴仸仹仺仼仾伀伂",6,"伋伌伒",4,"伜伝伡伣伨伩伬伭伮伱伳伵伷伹伻伾",4,"佄佅佇",5,"佒佔佖佡佢佦佨佪佫佭佮佱佲併佷佸佹佺佽侀侁侂侅來侇侊侌侎侐侒侓侕侖侘侙侚侜侞侟価侢"], +["8240","侤侫侭侰",4,"侶",8,"俀俁係俆俇俈俉俋俌俍俒",4,"俙俛俠俢俤俥俧俫俬俰俲俴俵俶俷俹俻俼俽俿",11], +["8280","個倎倐們倓倕倖倗倛倝倞倠倢倣値倧倫倯",10,"倻倽倿偀偁偂偄偅偆偉偊偋偍偐",4,"偖偗偘偙偛偝",7,"偦",5,"偭",8,"偸偹偺偼偽傁傂傃傄傆傇傉傊傋傌傎",20,"傤傦傪傫傭",4,"傳",6,"傼"], +["8340","傽",17,"僐",5,"僗僘僙僛",10,"僨僩僪僫僯僰僱僲僴僶",4,"僼",9,"儈"], +["8380","儉儊儌",5,"儓",13,"儢",28,"兂兇兊兌兎兏児兒兓兗兘兙兛兝",4,"兣兤兦內兩兪兯兲兺兾兿冃冄円冇冊冋冎冏冐冑冓冔冘冚冝冞冟冡冣冦",4,"冭冮冴冸冹冺冾冿凁凂凃凅凈凊凍凎凐凒",5], +["8440","凘凙凚凜凞凟凢凣凥",5,"凬凮凱凲凴凷凾刄刅刉刋刌刏刐刓刔刕刜刞刟刡刢刣別刦刧刪刬刯刱刲刴刵刼刾剄",5,"剋剎剏剒剓剕剗剘"], +["8480","剙剚剛剝剟剠剢剣剤剦剨剫剬剭剮剰剱剳",9,"剾劀劃",4,"劉",6,"劑劒劔",6,"劜劤劥劦劧劮劯劰労",9,"勀勁勂勄勅勆勈勊勌勍勎勏勑勓勔動勗務",5,"勠勡勢勣勥",10,"勱",7,"勻勼勽匁匂匃匄匇匉匊匋匌匎"], +["8540","匑匒匓匔匘匛匜匞匟匢匤匥匧匨匩匫匬匭匯",9,"匼匽區卂卄卆卋卌卍卐協単卙卛卝卥卨卪卬卭卲卶卹卻卼卽卾厀厁厃厇厈厊厎厏"], +["8580","厐",4,"厖厗厙厛厜厞厠厡厤厧厪厫厬厭厯",6,"厷厸厹厺厼厽厾叀參",4,"収叏叐叒叓叕叚叜叝叞叡叢叧叴叺叾叿吀吂吅吇吋吔吘吙吚吜吢吤吥吪吰吳吶吷吺吽吿呁呂呄呅呇呉呌呍呎呏呑呚呝",4,"呣呥呧呩",7,"呴呹呺呾呿咁咃咅咇咈咉咊咍咑咓咗咘咜咞咟咠咡"], +["8640","咢咥咮咰咲咵咶咷咹咺咼咾哃哅哊哋哖哘哛哠",4,"哫哬哯哰哱哴",5,"哻哾唀唂唃唄唅唈唊",4,"唒唓唕",5,"唜唝唞唟唡唥唦"], +["8680","唨唩唫唭唲唴唵唶唸唹唺唻唽啀啂啅啇啈啋",4,"啑啒啓啔啗",4,"啝啞啟啠啢啣啨啩啫啯",5,"啹啺啽啿喅喆喌喍喎喐喒喓喕喖喗喚喛喞喠",6,"喨",8,"喲喴営喸喺喼喿",4,"嗆嗇嗈嗊嗋嗎嗏嗐嗕嗗",4,"嗞嗠嗢嗧嗩嗭嗮嗰嗱嗴嗶嗸",4,"嗿嘂嘃嘄嘅"], +["8740","嘆嘇嘊嘋嘍嘐",7,"嘙嘚嘜嘝嘠嘡嘢嘥嘦嘨嘩嘪嘫嘮嘯嘰嘳嘵嘷嘸嘺嘼嘽嘾噀",11,"噏",4,"噕噖噚噛噝",4], +["8780","噣噥噦噧噭噮噯噰噲噳噴噵噷噸噹噺噽",7,"嚇",6,"嚐嚑嚒嚔",14,"嚤",10,"嚰",6,"嚸嚹嚺嚻嚽",12,"囋",8,"囕囖囘囙囜団囥",5,"囬囮囯囲図囶囷囸囻囼圀圁圂圅圇國",6], +["8840","園",9,"圝圞圠圡圢圤圥圦圧圫圱圲圴",4,"圼圽圿坁坃坄坅坆坈坉坋坒",4,"坘坙坢坣坥坧坬坮坰坱坲坴坵坸坹坺坽坾坿垀"], +["8880","垁垇垈垉垊垍",4,"垔",6,"垜垝垞垟垥垨垪垬垯垰垱垳垵垶垷垹",8,"埄",6,"埌埍埐埑埓埖埗埛埜埞埡埢埣埥",7,"埮埰埱埲埳埵埶執埻埼埾埿堁堃堄堅堈堉堊堌堎堏堐堒堓堔堖堗堘堚堛堜堝堟堢堣堥",4,"堫",4,"報堲堳場堶",7], +["8940","堾",5,"塅",6,"塎塏塐塒塓塕塖塗塙",4,"塟",5,"塦",4,"塭",16,"塿墂墄墆墇墈墊墋墌"], +["8980","墍",4,"墔",4,"墛墜墝墠",7,"墪",17,"墽墾墿壀壂壃壄壆",10,"壒壓壔壖",13,"壥",5,"壭壯壱売壴壵壷壸壺",7,"夃夅夆夈",4,"夎夐夑夒夓夗夘夛夝夞夠夡夢夣夦夨夬夰夲夳夵夶夻"], +["8a40","夽夾夿奀奃奅奆奊奌奍奐奒奓奙奛",4,"奡奣奤奦",12,"奵奷奺奻奼奾奿妀妅妉妋妌妎妏妐妑妔妕妘妚妛妜妝妟妠妡妢妦"], +["8a80","妧妬妭妰妱妳",5,"妺妼妽妿",6,"姇姈姉姌姍姎姏姕姖姙姛姞",4,"姤姦姧姩姪姫姭",11,"姺姼姽姾娀娂娊娋娍娎娏娐娒娔娕娖娗娙娚娛娝娞娡娢娤娦娧娨娪",6,"娳娵娷",4,"娽娾娿婁",4,"婇婈婋",9,"婖婗婘婙婛",5], +["8b40","婡婣婤婥婦婨婩婫",8,"婸婹婻婼婽婾媀",17,"媓",6,"媜",13,"媫媬"], +["8b80","媭",4,"媴媶媷媹",4,"媿嫀嫃",5,"嫊嫋嫍",4,"嫓嫕嫗嫙嫚嫛嫝嫞嫟嫢嫤嫥嫧嫨嫪嫬",4,"嫲",22,"嬊",11,"嬘",25,"嬳嬵嬶嬸",7,"孁",6], +["8c40","孈",7,"孒孖孞孠孡孧孨孫孭孮孯孲孴孶孷學孹孻孼孾孿宂宆宊宍宎宐宑宒宔宖実宧宨宩宬宭宮宯宱宲宷宺宻宼寀寁寃寈寉寊寋寍寎寏"], +["8c80","寑寔",8,"寠寢寣實寧審",4,"寯寱",6,"寽対尀専尃尅將專尋尌對導尐尒尓尗尙尛尞尟尠尡尣尦尨尩尪尫尭尮尯尰尲尳尵尶尷屃屄屆屇屌屍屒屓屔屖屗屘屚屛屜屝屟屢層屧",6,"屰屲",6,"屻屼屽屾岀岃",4,"岉岊岋岎岏岒岓岕岝",4,"岤",4], +["8d40","岪岮岯岰岲岴岶岹岺岻岼岾峀峂峃峅",5,"峌",5,"峓",5,"峚",6,"峢峣峧峩峫峬峮峯峱",9,"峼",4], +["8d80","崁崄崅崈",5,"崏",4,"崕崗崘崙崚崜崝崟",4,"崥崨崪崫崬崯",4,"崵",7,"崿",7,"嵈嵉嵍",10,"嵙嵚嵜嵞",10,"嵪嵭嵮嵰嵱嵲嵳嵵",12,"嶃",21,"嶚嶛嶜嶞嶟嶠"], +["8e40","嶡",21,"嶸",12,"巆",6,"巎",12,"巜巟巠巣巤巪巬巭"], +["8e80","巰巵巶巸",4,"巿帀帄帇帉帊帋帍帎帒帓帗帞",7,"帨",4,"帯帰帲",4,"帹帺帾帿幀幁幃幆",5,"幍",6,"幖",4,"幜幝幟幠幣",14,"幵幷幹幾庁庂広庅庈庉庌庍庎庒庘庛庝庡庢庣庤庨",4,"庮",4,"庴庺庻庼庽庿",6], +["8f40","廆廇廈廋",5,"廔廕廗廘廙廚廜",11,"廩廫",8,"廵廸廹廻廼廽弅弆弇弉弌弍弎弐弒弔弖弙弚弜弝弞弡弢弣弤"], +["8f80","弨弫弬弮弰弲",6,"弻弽弾弿彁",14,"彑彔彙彚彛彜彞彟彠彣彥彧彨彫彮彯彲彴彵彶彸彺彽彾彿徃徆徍徎徏徑従徔徖徚徛徝從徟徠徢",5,"復徫徬徯",5,"徶徸徹徺徻徾",4,"忇忈忊忋忎忓忔忕忚忛応忞忟忢忣忥忦忨忩忬忯忰忲忳忴忶忷忹忺忼怇"], +["9040","怈怉怋怌怐怑怓怗怘怚怞怟怢怣怤怬怭怮怰",4,"怶",4,"怽怾恀恄",6,"恌恎恏恑恓恔恖恗恘恛恜恞恟恠恡恥恦恮恱恲恴恵恷恾悀"], +["9080","悁悂悅悆悇悈悊悋悎悏悐悑悓悕悗悘悙悜悞悡悢悤悥悧悩悪悮悰悳悵悶悷悹悺悽",7,"惇惈惉惌",4,"惒惓惔惖惗惙惛惞惡",4,"惪惱惲惵惷惸惻",4,"愂愃愄愅愇愊愋愌愐",4,"愖愗愘愙愛愜愝愞愡愢愥愨愩愪愬",18,"慀",6], +["9140","慇慉態慍慏慐慒慓慔慖",6,"慞慟慠慡慣慤慥慦慩",6,"慱慲慳慴慶慸",18,"憌憍憏",4,"憕"], +["9180","憖",6,"憞",8,"憪憫憭",9,"憸",5,"憿懀懁懃",4,"應懌",4,"懓懕",16,"懧",13,"懶",8,"戀",5,"戇戉戓戔戙戜戝戞戠戣戦戧戨戩戫戭戯戰戱戲戵戶戸",4,"扂扄扅扆扊"], +["9240","扏扐払扖扗扙扚扜",6,"扤扥扨扱扲扴扵扷扸扺扻扽抁抂抃抅抆抇抈抋",5,"抔抙抜抝択抣抦抧抩抪抭抮抯抰抲抳抴抶抷抸抺抾拀拁"], +["9280","拃拋拏拑拕拝拞拠拡拤拪拫拰拲拵拸拹拺拻挀挃挄挅挆挊挋挌挍挏挐挒挓挔挕挗挘挙挜挦挧挩挬挭挮挰挱挳",5,"挻挼挾挿捀捁捄捇捈捊捑捒捓捔捖",7,"捠捤捥捦捨捪捫捬捯捰捲捳捴捵捸捹捼捽捾捿掁掃掄掅掆掋掍掑掓掔掕掗掙",6,"採掤掦掫掯掱掲掵掶掹掻掽掿揀"], +["9340","揁揂揃揅揇揈揊揋揌揑揓揔揕揗",6,"揟揢揤",4,"揫揬揮揯揰揱揳揵揷揹揺揻揼揾搃搄搆",4,"損搎搑搒搕",5,"搝搟搢搣搤"], +["9380","搥搧搨搩搫搮",5,"搵",4,"搻搼搾摀摂摃摉摋",6,"摓摕摖摗摙",4,"摟",7,"摨摪摫摬摮",9,"摻",6,"撃撆撈",8,"撓撔撗撘撚撛撜撝撟",4,"撥撦撧撨撪撫撯撱撲撳撴撶撹撻撽撾撿擁擃擄擆",6,"擏擑擓擔擕擖擙據"], +["9440","擛擜擝擟擠擡擣擥擧",24,"攁",7,"攊",7,"攓",4,"攙",8], +["9480","攢攣攤攦",4,"攬攭攰攱攲攳攷攺攼攽敀",4,"敆敇敊敋敍敎敐敒敓敔敗敘敚敜敟敠敡敤敥敧敨敩敪敭敮敯敱敳敵敶數",14,"斈斉斊斍斎斏斒斔斕斖斘斚斝斞斠斢斣斦斨斪斬斮斱",7,"斺斻斾斿旀旂旇旈旉旊旍旐旑旓旔旕旘",7,"旡旣旤旪旫"], +["9540","旲旳旴旵旸旹旻",4,"昁昄昅昇昈昉昋昍昐昑昒昖昗昘昚昛昜昞昡昢昣昤昦昩昪昫昬昮昰昲昳昷",4,"昽昿晀時晄",6,"晍晎晐晑晘"], +["9580","晙晛晜晝晞晠晢晣晥晧晩",4,"晱晲晳晵晸晹晻晼晽晿暀暁暃暅暆暈暉暊暋暍暎暏暐暒暓暔暕暘",4,"暞",8,"暩",4,"暯",4,"暵暶暷暸暺暻暼暽暿",25,"曚曞",7,"曧曨曪",5,"曱曵曶書曺曻曽朁朂會"], +["9640","朄朅朆朇朌朎朏朑朒朓朖朘朙朚朜朞朠",5,"朧朩朮朰朲朳朶朷朸朹朻朼朾朿杁杄杅杇杊杋杍杒杔杕杗",4,"杝杢杣杤杦杧杫杬杮東杴杶"], +["9680","杸杹杺杻杽枀枂枃枅枆枈枊枌枍枎枏枑枒枓枔枖枙枛枟枠枡枤枦枩枬枮枱枲枴枹",7,"柂柅",9,"柕柖柗柛柟柡柣柤柦柧柨柪柫柭柮柲柵",7,"柾栁栂栃栄栆栍栐栒栔栕栘",4,"栞栟栠栢",6,"栫",6,"栴栵栶栺栻栿桇桋桍桏桒桖",5], +["9740","桜桝桞桟桪桬",7,"桵桸",8,"梂梄梇",7,"梐梑梒梔梕梖梘",9,"梣梤梥梩梪梫梬梮梱梲梴梶梷梸"], +["9780","梹",6,"棁棃",5,"棊棌棎棏棐棑棓棔棖棗棙棛",4,"棡棢棤",9,"棯棲棳棴棶棷棸棻棽棾棿椀椂椃椄椆",4,"椌椏椑椓",11,"椡椢椣椥",7,"椮椯椱椲椳椵椶椷椸椺椻椼椾楀楁楃",16,"楕楖楘楙楛楜楟"], +["9840","楡楢楤楥楧楨楩楪楬業楯楰楲",4,"楺楻楽楾楿榁榃榅榊榋榌榎",5,"榖榗榙榚榝",9,"榩榪榬榮榯榰榲榳榵榶榸榹榺榼榽"], +["9880","榾榿槀槂",7,"構槍槏槑槒槓槕",5,"槜槝槞槡",11,"槮槯槰槱槳",9,"槾樀",9,"樋",11,"標",5,"樠樢",5,"権樫樬樭樮樰樲樳樴樶",6,"樿",4,"橅橆橈",7,"橑",6,"橚"], +["9940","橜",4,"橢橣橤橦",10,"橲",6,"橺橻橽橾橿檁檂檃檅",8,"檏檒",4,"檘",7,"檡",5], +["9980","檧檨檪檭",114,"欥欦欨",6], +["9a40","欯欰欱欳欴欵欶欸欻欼欽欿歀歁歂歄歅歈歊歋歍",11,"歚",7,"歨歩歫",13,"歺歽歾歿殀殅殈"], +["9a80","殌殎殏殐殑殔殕殗殘殙殜",4,"殢",7,"殫",7,"殶殸",6,"毀毃毄毆",4,"毌毎毐毑毘毚毜",4,"毢",7,"毬毭毮毰毱毲毴毶毷毸毺毻毼毾",6,"氈",4,"氎氒気氜氝氞氠氣氥氫氬氭氱氳氶氷氹氺氻氼氾氿汃汄汅汈汋",4,"汑汒汓汖汘"], +["9b40","汙汚汢汣汥汦汧汫",4,"汱汳汵汷汸決汻汼汿沀沄沇沊沋沍沎沑沒沕沖沗沘沚沜沝沞沠沢沨沬沯沰沴沵沶沷沺泀況泂泃泆泇泈泋泍泎泏泑泒泘"], +["9b80","泙泚泜泝泟泤泦泧泩泬泭泲泴泹泿洀洂洃洅洆洈洉洊洍洏洐洑洓洔洕洖洘洜洝洟",5,"洦洨洩洬洭洯洰洴洶洷洸洺洿浀浂浄浉浌浐浕浖浗浘浛浝浟浡浢浤浥浧浨浫浬浭浰浱浲浳浵浶浹浺浻浽",4,"涃涄涆涇涊涋涍涏涐涒涖",4,"涜涢涥涬涭涰涱涳涴涶涷涹",5,"淁淂淃淈淉淊"], +["9c40","淍淎淏淐淒淓淔淕淗淚淛淜淟淢淣淥淧淨淩淪淭淯淰淲淴淵淶淸淺淽",7,"渆渇済渉渋渏渒渓渕渘渙減渜渞渟渢渦渧渨渪測渮渰渱渳渵"], +["9c80","渶渷渹渻",7,"湅",7,"湏湐湑湒湕湗湙湚湜湝湞湠",10,"湬湭湯",14,"満溁溂溄溇溈溊",4,"溑",6,"溙溚溛溝溞溠溡溣溤溦溨溩溫溬溭溮溰溳溵溸溹溼溾溿滀滃滄滅滆滈滉滊滌滍滎滐滒滖滘滙滛滜滝滣滧滪",5], +["9d40","滰滱滲滳滵滶滷滸滺",7,"漃漄漅漇漈漊",4,"漐漑漒漖",9,"漡漢漣漥漦漧漨漬漮漰漲漴漵漷",6,"漿潀潁潂"], +["9d80","潃潄潅潈潉潊潌潎",9,"潙潚潛潝潟潠潡潣潤潥潧",5,"潯潰潱潳潵潶潷潹潻潽",6,"澅澆澇澊澋澏",12,"澝澞澟澠澢",4,"澨",10,"澴澵澷澸澺",5,"濁濃",5,"濊",6,"濓",10,"濟濢濣濤濥"], +["9e40","濦",7,"濰",32,"瀒",7,"瀜",6,"瀤",6], +["9e80","瀫",9,"瀶瀷瀸瀺",17,"灍灎灐",13,"灟",11,"灮灱灲灳灴灷灹灺灻災炁炂炃炄炆炇炈炋炌炍炏炐炑炓炗炘炚炛炞",12,"炰炲炴炵炶為炾炿烄烅烆烇烉烋",12,"烚"], +["9f40","烜烝烞烠烡烢烣烥烪烮烰",6,"烸烺烻烼烾",10,"焋",4,"焑焒焔焗焛",10,"焧",7,"焲焳焴"], +["9f80","焵焷",13,"煆煇煈煉煋煍煏",12,"煝煟",4,"煥煩",4,"煯煰煱煴煵煶煷煹煻煼煾",5,"熅",4,"熋熌熍熎熐熑熒熓熕熖熗熚",4,"熡",6,"熩熪熫熭",5,"熴熶熷熸熺",8,"燄",9,"燏",4], +["a040","燖",9,"燡燢燣燤燦燨",5,"燯",9,"燺",11,"爇",19], +["a080","爛爜爞",9,"爩爫爭爮爯爲爳爴爺爼爾牀",6,"牉牊牋牎牏牐牑牓牔牕牗牘牚牜牞牠牣牤牥牨牪牫牬牭牰牱牳牴牶牷牸牻牼牽犂犃犅",4,"犌犎犐犑犓",11,"犠",11,"犮犱犲犳犵犺",6,"狅狆狇狉狊狋狌狏狑狓狔狕狖狘狚狛"], +["a1a1"," 、。·ˉˇ¨〃々—~‖…‘’“”〔〕〈",7,"〖〗【】±×÷∶∧∨∑∏∪∩∈∷√⊥∥∠⌒⊙∫∮≡≌≈∽∝≠≮≯≤≥∞∵∴♂♀°′″℃$¤¢£‰§№☆★○●◎◇◆□■△▲※→←↑↓〓"], +["a2a1","ⅰ",9], +["a2b1","⒈",19,"⑴",19,"①",9], +["a2e5","㈠",9], +["a2f1","Ⅰ",11], +["a3a1","!"#¥%",88," ̄"], +["a4a1","ぁ",82], +["a5a1","ァ",85], +["a6a1","Α",16,"Σ",6], +["a6c1","α",16,"σ",6], +["a6e0","︵︶︹︺︿﹀︽︾﹁﹂﹃﹄"], +["a6ee","︻︼︷︸︱"], +["a6f4","︳︴"], +["a7a1","А",5,"ЁЖ",25], +["a7d1","а",5,"ёж",25], +["a840","ˊˋ˙–―‥‵℅℉↖↗↘↙∕∟∣≒≦≧⊿═",35,"▁",6], +["a880","█",7,"▓▔▕▼▽◢◣◤◥☉⊕〒〝〞"], +["a8a1","āáǎàēéěèīíǐìōóǒòūúǔùǖǘǚǜüêɑ"], +["a8bd","ńň"], +["a8c0","ɡ"], +["a8c5","ㄅ",36], +["a940","〡",8,"㊣㎎㎏㎜㎝㎞㎡㏄㏎㏑㏒㏕︰¬¦"], +["a959","℡㈱"], +["a95c","‐"], +["a960","ー゛゜ヽヾ〆ゝゞ﹉",9,"﹔﹕﹖﹗﹙",8], +["a980","﹢",4,"﹨﹩﹪﹫"], +["a996","〇"], +["a9a4","─",75], +["aa40","狜狝狟狢",5,"狪狫狵狶狹狽狾狿猀猂猄",5,"猋猌猍猏猐猑猒猔猘猙猚猟猠猣猤猦猧猨猭猯猰猲猳猵猶猺猻猼猽獀",8], +["aa80","獉獊獋獌獎獏獑獓獔獕獖獘",7,"獡",10,"獮獰獱"], +["ab40","獲",11,"獿",4,"玅玆玈玊玌玍玏玐玒玓玔玕玗玘玙玚玜玝玞玠玡玣",5,"玪玬玭玱玴玵玶玸玹玼玽玾玿珁珃",4], +["ab80","珋珌珎珒",6,"珚珛珜珝珟珡珢珣珤珦珨珪珫珬珮珯珰珱珳",4], +["ac40","珸",10,"琄琇琈琋琌琍琎琑",8,"琜",5,"琣琤琧琩琫琭琯琱琲琷",4,"琽琾琿瑀瑂",11], +["ac80","瑎",6,"瑖瑘瑝瑠",12,"瑮瑯瑱",4,"瑸瑹瑺"], +["ad40","瑻瑼瑽瑿璂璄璅璆璈璉璊璌璍璏璑",10,"璝璟",7,"璪",15,"璻",12], +["ad80","瓈",9,"瓓",8,"瓝瓟瓡瓥瓧",6,"瓰瓱瓲"], +["ae40","瓳瓵瓸",6,"甀甁甂甃甅",7,"甎甐甒甔甕甖甗甛甝甞甠",4,"甦甧甪甮甴甶甹甼甽甿畁畂畃畄畆畇畉畊畍畐畑畒畓畕畖畗畘"], +["ae80","畝",7,"畧畨畩畫",6,"畳畵當畷畺",4,"疀疁疂疄疅疇"], +["af40","疈疉疊疌疍疎疐疓疕疘疛疜疞疢疦",4,"疭疶疷疺疻疿痀痁痆痋痌痎痏痐痑痓痗痙痚痜痝痟痠痡痥痩痬痭痮痯痲痳痵痶痷痸痺痻痽痾瘂瘄瘆瘇"], +["af80","瘈瘉瘋瘍瘎瘏瘑瘒瘓瘔瘖瘚瘜瘝瘞瘡瘣瘧瘨瘬瘮瘯瘱瘲瘶瘷瘹瘺瘻瘽癁療癄"], +["b040","癅",6,"癎",5,"癕癗",4,"癝癟癠癡癢癤",6,"癬癭癮癰",7,"癹発發癿皀皁皃皅皉皊皌皍皏皐皒皔皕皗皘皚皛"], +["b080","皜",7,"皥",8,"皯皰皳皵",9,"盀盁盃啊阿埃挨哎唉哀皑癌蔼矮艾碍爱隘鞍氨安俺按暗岸胺案肮昂盎凹敖熬翱袄傲奥懊澳芭捌扒叭吧笆八疤巴拔跋靶把耙坝霸罢爸白柏百摆佰败拜稗斑班搬扳般颁板版扮拌伴瓣半办绊邦帮梆榜膀绑棒磅蚌镑傍谤苞胞包褒剥"], +["b140","盄盇盉盋盌盓盕盙盚盜盝盞盠",4,"盦",7,"盰盳盵盶盷盺盻盽盿眀眂眃眅眆眊県眎",10,"眛眜眝眞眡眣眤眥眧眪眫"], +["b180","眬眮眰",4,"眹眻眽眾眿睂睄睅睆睈",7,"睒",7,"睜薄雹保堡饱宝抱报暴豹鲍爆杯碑悲卑北辈背贝钡倍狈备惫焙被奔苯本笨崩绷甭泵蹦迸逼鼻比鄙笔彼碧蓖蔽毕毙毖币庇痹闭敝弊必辟壁臂避陛鞭边编贬扁便变卞辨辩辫遍标彪膘表鳖憋别瘪彬斌濒滨宾摈兵冰柄丙秉饼炳"], +["b240","睝睞睟睠睤睧睩睪睭",11,"睺睻睼瞁瞂瞃瞆",5,"瞏瞐瞓",11,"瞡瞣瞤瞦瞨瞫瞭瞮瞯瞱瞲瞴瞶",4], +["b280","瞼瞾矀",12,"矎",8,"矘矙矚矝",4,"矤病并玻菠播拨钵波博勃搏铂箔伯帛舶脖膊渤泊驳捕卜哺补埠不布步簿部怖擦猜裁材才财睬踩采彩菜蔡餐参蚕残惭惨灿苍舱仓沧藏操糙槽曹草厕策侧册测层蹭插叉茬茶查碴搽察岔差诧拆柴豺搀掺蝉馋谗缠铲产阐颤昌猖"], +["b340","矦矨矪矯矰矱矲矴矵矷矹矺矻矼砃",5,"砊砋砎砏砐砓砕砙砛砞砠砡砢砤砨砪砫砮砯砱砲砳砵砶砽砿硁硂硃硄硆硈硉硊硋硍硏硑硓硔硘硙硚"], +["b380","硛硜硞",11,"硯",7,"硸硹硺硻硽",6,"场尝常长偿肠厂敞畅唱倡超抄钞朝嘲潮巢吵炒车扯撤掣彻澈郴臣辰尘晨忱沉陈趁衬撑称城橙成呈乘程惩澄诚承逞骋秤吃痴持匙池迟弛驰耻齿侈尺赤翅斥炽充冲虫崇宠抽酬畴踌稠愁筹仇绸瞅丑臭初出橱厨躇锄雏滁除楚"], +["b440","碄碅碆碈碊碋碏碐碒碔碕碖碙碝碞碠碢碤碦碨",7,"碵碶碷碸確碻碼碽碿磀磂磃磄磆磇磈磌磍磎磏磑磒磓磖磗磘磚",9], +["b480","磤磥磦磧磩磪磫磭",4,"磳磵磶磸磹磻",5,"礂礃礄礆",6,"础储矗搐触处揣川穿椽传船喘串疮窗幢床闯创吹炊捶锤垂春椿醇唇淳纯蠢戳绰疵茨磁雌辞慈瓷词此刺赐次聪葱囱匆从丛凑粗醋簇促蹿篡窜摧崔催脆瘁粹淬翠村存寸磋撮搓措挫错搭达答瘩打大呆歹傣戴带殆代贷袋待逮"], +["b540","礍",5,"礔",9,"礟",4,"礥",14,"礵",4,"礽礿祂祃祄祅祇祊",8,"祔祕祘祙祡祣"], +["b580","祤祦祩祪祫祬祮祰",6,"祹祻",4,"禂禃禆禇禈禉禋禌禍禎禐禑禒怠耽担丹单郸掸胆旦氮但惮淡诞弹蛋当挡党荡档刀捣蹈倒岛祷导到稻悼道盗德得的蹬灯登等瞪凳邓堤低滴迪敌笛狄涤翟嫡抵底地蒂第帝弟递缔颠掂滇碘点典靛垫电佃甸店惦奠淀殿碉叼雕凋刁掉吊钓调跌爹碟蝶迭谍叠"], +["b640","禓",6,"禛",11,"禨",10,"禴",4,"禼禿秂秄秅秇秈秊秌秎秏秐秓秔秖秗秙",5,"秠秡秢秥秨秪"], +["b680","秬秮秱",6,"秹秺秼秾秿稁稄稅稇稈稉稊稌稏",4,"稕稖稘稙稛稜丁盯叮钉顶鼎锭定订丢东冬董懂动栋侗恫冻洞兜抖斗陡豆逗痘都督毒犊独读堵睹赌杜镀肚度渡妒端短锻段断缎堆兑队对墩吨蹲敦顿囤钝盾遁掇哆多夺垛躲朵跺舵剁惰堕蛾峨鹅俄额讹娥恶厄扼遏鄂饿恩而儿耳尔饵洱二"], +["b740","稝稟稡稢稤",14,"稴稵稶稸稺稾穀",5,"穇",9,"穒",4,"穘",16], +["b780","穩",6,"穱穲穳穵穻穼穽穾窂窅窇窉窊窋窌窎窏窐窓窔窙窚窛窞窡窢贰发罚筏伐乏阀法珐藩帆番翻樊矾钒繁凡烦反返范贩犯饭泛坊芳方肪房防妨仿访纺放菲非啡飞肥匪诽吠肺废沸费芬酚吩氛分纷坟焚汾粉奋份忿愤粪丰封枫蜂峰锋风疯烽逢冯缝讽奉凤佛否夫敷肤孵扶拂辐幅氟符伏俘服"], +["b840","窣窤窧窩窪窫窮",4,"窴",10,"竀",10,"竌",9,"竗竘竚竛竜竝竡竢竤竧",5,"竮竰竱竲竳"], +["b880","竴",4,"竻竼竾笀笁笂笅笇笉笌笍笎笐笒笓笖笗笘笚笜笝笟笡笢笣笧笩笭浮涪福袱弗甫抚辅俯釜斧脯腑府腐赴副覆赋复傅付阜父腹负富讣附妇缚咐噶嘎该改概钙盖溉干甘杆柑竿肝赶感秆敢赣冈刚钢缸肛纲岗港杠篙皋高膏羔糕搞镐稿告哥歌搁戈鸽胳疙割革葛格蛤阁隔铬个各给根跟耕更庚羹"], +["b940","笯笰笲笴笵笶笷笹笻笽笿",5,"筆筈筊筍筎筓筕筗筙筜筞筟筡筣",10,"筯筰筳筴筶筸筺筼筽筿箁箂箃箄箆",6,"箎箏"], +["b980","箑箒箓箖箘箙箚箛箞箟箠箣箤箥箮箯箰箲箳箵箶箷箹",7,"篂篃範埂耿梗工攻功恭龚供躬公宫弓巩汞拱贡共钩勾沟苟狗垢构购够辜菇咕箍估沽孤姑鼓古蛊骨谷股故顾固雇刮瓜剐寡挂褂乖拐怪棺关官冠观管馆罐惯灌贯光广逛瑰规圭硅归龟闺轨鬼诡癸桂柜跪贵刽辊滚棍锅郭国果裹过哈"], +["ba40","篅篈築篊篋篍篎篏篐篒篔",4,"篛篜篞篟篠篢篣篤篧篨篩篫篬篭篯篰篲",4,"篸篹篺篻篽篿",7,"簈簉簊簍簎簐",5,"簗簘簙"], +["ba80","簚",4,"簠",5,"簨簩簫",12,"簹",5,"籂骸孩海氦亥害骇酣憨邯韩含涵寒函喊罕翰撼捍旱憾悍焊汗汉夯杭航壕嚎豪毫郝好耗号浩呵喝荷菏核禾和何合盒貉阂河涸赫褐鹤贺嘿黑痕很狠恨哼亨横衡恒轰哄烘虹鸿洪宏弘红喉侯猴吼厚候后呼乎忽瑚壶葫胡蝴狐糊湖"], +["bb40","籃",9,"籎",36,"籵",5,"籾",9], +["bb80","粈粊",6,"粓粔粖粙粚粛粠粡粣粦粧粨粩粫粬粭粯粰粴",4,"粺粻弧虎唬护互沪户花哗华猾滑画划化话槐徊怀淮坏欢环桓还缓换患唤痪豢焕涣宦幻荒慌黄磺蝗簧皇凰惶煌晃幌恍谎灰挥辉徽恢蛔回毁悔慧卉惠晦贿秽会烩汇讳诲绘荤昏婚魂浑混豁活伙火获或惑霍货祸击圾基机畸稽积箕"], +["bc40","粿糀糂糃糄糆糉糋糎",6,"糘糚糛糝糞糡",6,"糩",5,"糰",7,"糹糺糼",13,"紋",5], +["bc80","紑",14,"紡紣紤紥紦紨紩紪紬紭紮細",6,"肌饥迹激讥鸡姬绩缉吉极棘辑籍集及急疾汲即嫉级挤几脊己蓟技冀季伎祭剂悸济寄寂计记既忌际妓继纪嘉枷夹佳家加荚颊贾甲钾假稼价架驾嫁歼监坚尖笺间煎兼肩艰奸缄茧检柬碱硷拣捡简俭剪减荐槛鉴践贱见键箭件"], +["bd40","紷",54,"絯",7], +["bd80","絸",32,"健舰剑饯渐溅涧建僵姜将浆江疆蒋桨奖讲匠酱降蕉椒礁焦胶交郊浇骄娇嚼搅铰矫侥脚狡角饺缴绞剿教酵轿较叫窖揭接皆秸街阶截劫节桔杰捷睫竭洁结解姐戒藉芥界借介疥诫届巾筋斤金今津襟紧锦仅谨进靳晋禁近烬浸"], +["be40","継",12,"綧",6,"綯",42], +["be80","線",32,"尽劲荆兢茎睛晶鲸京惊精粳经井警景颈静境敬镜径痉靖竟竞净炯窘揪究纠玖韭久灸九酒厩救旧臼舅咎就疚鞠拘狙疽居驹菊局咀矩举沮聚拒据巨具距踞锯俱句惧炬剧捐鹃娟倦眷卷绢撅攫抉掘倔爵觉决诀绝均菌钧军君峻"], +["bf40","緻",62], +["bf80","縺縼",4,"繂",4,"繈",21,"俊竣浚郡骏喀咖卡咯开揩楷凯慨刊堪勘坎砍看康慷糠扛抗亢炕考拷烤靠坷苛柯棵磕颗科壳咳可渴克刻客课肯啃垦恳坑吭空恐孔控抠口扣寇枯哭窟苦酷库裤夸垮挎跨胯块筷侩快宽款匡筐狂框矿眶旷况亏盔岿窥葵奎魁傀"], +["c040","繞",35,"纃",23,"纜纝纞"], +["c080","纮纴纻纼绖绤绬绹缊缐缞缷缹缻",6,"罃罆",9,"罒罓馈愧溃坤昆捆困括扩廓阔垃拉喇蜡腊辣啦莱来赖蓝婪栏拦篮阑兰澜谰揽览懒缆烂滥琅榔狼廊郎朗浪捞劳牢老佬姥酪烙涝勒乐雷镭蕾磊累儡垒擂肋类泪棱楞冷厘梨犁黎篱狸离漓理李里鲤礼莉荔吏栗丽厉励砾历利傈例俐"], +["c140","罖罙罛罜罝罞罠罣",4,"罫罬罭罯罰罳罵罶罷罸罺罻罼罽罿羀羂",7,"羋羍羏",4,"羕",4,"羛羜羠羢羣羥羦羨",6,"羱"], +["c180","羳",4,"羺羻羾翀翂翃翄翆翇翈翉翋翍翏",4,"翖翗翙",5,"翢翣痢立粒沥隶力璃哩俩联莲连镰廉怜涟帘敛脸链恋炼练粮凉梁粱良两辆量晾亮谅撩聊僚疗燎寥辽潦了撂镣廖料列裂烈劣猎琳林磷霖临邻鳞淋凛赁吝拎玲菱零龄铃伶羚凌灵陵岭领另令溜琉榴硫馏留刘瘤流柳六龙聋咙笼窿"], +["c240","翤翧翨翪翫翬翭翯翲翴",6,"翽翾翿耂耇耈耉耊耎耏耑耓耚耛耝耞耟耡耣耤耫",5,"耲耴耹耺耼耾聀聁聄聅聇聈聉聎聏聐聑聓聕聖聗"], +["c280","聙聛",13,"聫",5,"聲",11,"隆垄拢陇楼娄搂篓漏陋芦卢颅庐炉掳卤虏鲁麓碌露路赂鹿潞禄录陆戮驴吕铝侣旅履屡缕虑氯律率滤绿峦挛孪滦卵乱掠略抡轮伦仑沦纶论萝螺罗逻锣箩骡裸落洛骆络妈麻玛码蚂马骂嘛吗埋买麦卖迈脉瞒馒蛮满蔓曼慢漫"], +["c340","聾肁肂肅肈肊肍",5,"肔肕肗肙肞肣肦肧肨肬肰肳肵肶肸肹肻胅胇",4,"胏",6,"胘胟胠胢胣胦胮胵胷胹胻胾胿脀脁脃脄脅脇脈脋"], +["c380","脌脕脗脙脛脜脝脟",12,"脭脮脰脳脴脵脷脹",4,"脿谩芒茫盲氓忙莽猫茅锚毛矛铆卯茂冒帽貌贸么玫枚梅酶霉煤没眉媒镁每美昧寐妹媚门闷们萌蒙檬盟锰猛梦孟眯醚靡糜迷谜弥米秘觅泌蜜密幂棉眠绵冕免勉娩缅面苗描瞄藐秒渺庙妙蔑灭民抿皿敏悯闽明螟鸣铭名命谬摸"], +["c440","腀",5,"腇腉腍腎腏腒腖腗腘腛",4,"腡腢腣腤腦腨腪腫腬腯腲腳腵腶腷腸膁膃",4,"膉膋膌膍膎膐膒",5,"膙膚膞",4,"膤膥"], +["c480","膧膩膫",7,"膴",5,"膼膽膾膿臄臅臇臈臉臋臍",6,"摹蘑模膜磨摩魔抹末莫墨默沫漠寞陌谋牟某拇牡亩姆母墓暮幕募慕木目睦牧穆拿哪呐钠那娜纳氖乃奶耐奈南男难囊挠脑恼闹淖呢馁内嫩能妮霓倪泥尼拟你匿腻逆溺蔫拈年碾撵捻念娘酿鸟尿捏聂孽啮镊镍涅您柠狞凝宁"], +["c540","臔",14,"臤臥臦臨臩臫臮",4,"臵",5,"臽臿舃與",4,"舎舏舑舓舕",5,"舝舠舤舥舦舧舩舮舲舺舼舽舿"], +["c580","艀艁艂艃艅艆艈艊艌艍艎艐",7,"艙艛艜艝艞艠",7,"艩拧泞牛扭钮纽脓浓农弄奴努怒女暖虐疟挪懦糯诺哦欧鸥殴藕呕偶沤啪趴爬帕怕琶拍排牌徘湃派攀潘盘磐盼畔判叛乓庞旁耪胖抛咆刨炮袍跑泡呸胚培裴赔陪配佩沛喷盆砰抨烹澎彭蓬棚硼篷膨朋鹏捧碰坯砒霹批披劈琵毗"], +["c640","艪艫艬艭艱艵艶艷艸艻艼芀芁芃芅芆芇芉芌芐芓芔芕芖芚芛芞芠芢芣芧芲芵芶芺芻芼芿苀苂苃苅苆苉苐苖苙苚苝苢苧苨苩苪苬苭苮苰苲苳苵苶苸"], +["c680","苺苼",4,"茊茋茍茐茒茓茖茘茙茝",9,"茩茪茮茰茲茷茻茽啤脾疲皮匹痞僻屁譬篇偏片骗飘漂瓢票撇瞥拼频贫品聘乒坪苹萍平凭瓶评屏坡泼颇婆破魄迫粕剖扑铺仆莆葡菩蒲埔朴圃普浦谱曝瀑期欺栖戚妻七凄漆柒沏其棋奇歧畦崎脐齐旗祈祁骑起岂乞企启契砌器气迄弃汽泣讫掐"], +["c740","茾茿荁荂荄荅荈荊",4,"荓荕",4,"荝荢荰",6,"荹荺荾",6,"莇莈莊莋莌莍莏莐莑莔莕莖莗莙莚莝莟莡",6,"莬莭莮"], +["c780","莯莵莻莾莿菂菃菄菆菈菉菋菍菎菐菑菒菓菕菗菙菚菛菞菢菣菤菦菧菨菫菬菭恰洽牵扦钎铅千迁签仟谦乾黔钱钳前潜遣浅谴堑嵌欠歉枪呛腔羌墙蔷强抢橇锹敲悄桥瞧乔侨巧鞘撬翘峭俏窍切茄且怯窃钦侵亲秦琴勤芹擒禽寝沁青轻氢倾卿清擎晴氰情顷请庆琼穷秋丘邱球求囚酋泅趋区蛆曲躯屈驱渠"], +["c840","菮華菳",4,"菺菻菼菾菿萀萂萅萇萈萉萊萐萒",5,"萙萚萛萞",5,"萩",7,"萲",5,"萹萺萻萾",7,"葇葈葉"], +["c880","葊",6,"葒",4,"葘葝葞葟葠葢葤",4,"葪葮葯葰葲葴葷葹葻葼取娶龋趣去圈颧权醛泉全痊拳犬券劝缺炔瘸却鹊榷确雀裙群然燃冉染瓤壤攘嚷让饶扰绕惹热壬仁人忍韧任认刃妊纫扔仍日戎茸蓉荣融熔溶容绒冗揉柔肉茹蠕儒孺如辱乳汝入褥软阮蕊瑞锐闰润若弱撒洒萨腮鳃塞赛三叁"], +["c940","葽",4,"蒃蒄蒅蒆蒊蒍蒏",7,"蒘蒚蒛蒝蒞蒟蒠蒢",12,"蒰蒱蒳蒵蒶蒷蒻蒼蒾蓀蓂蓃蓅蓆蓇蓈蓋蓌蓎蓏蓒蓔蓕蓗"], +["c980","蓘",4,"蓞蓡蓢蓤蓧",4,"蓭蓮蓯蓱",10,"蓽蓾蔀蔁蔂伞散桑嗓丧搔骚扫嫂瑟色涩森僧莎砂杀刹沙纱傻啥煞筛晒珊苫杉山删煽衫闪陕擅赡膳善汕扇缮墒伤商赏晌上尚裳梢捎稍烧芍勺韶少哨邵绍奢赊蛇舌舍赦摄射慑涉社设砷申呻伸身深娠绅神沈审婶甚肾慎渗声生甥牲升绳"], +["ca40","蔃",8,"蔍蔎蔏蔐蔒蔔蔕蔖蔘蔙蔛蔜蔝蔞蔠蔢",8,"蔭",9,"蔾",4,"蕄蕅蕆蕇蕋",10], +["ca80","蕗蕘蕚蕛蕜蕝蕟",4,"蕥蕦蕧蕩",8,"蕳蕵蕶蕷蕸蕼蕽蕿薀薁省盛剩胜圣师失狮施湿诗尸虱十石拾时什食蚀实识史矢使屎驶始式示士世柿事拭誓逝势是嗜噬适仕侍释饰氏市恃室视试收手首守寿授售受瘦兽蔬枢梳殊抒输叔舒淑疏书赎孰熟薯暑曙署蜀黍鼠属术述树束戍竖墅庶数漱"], +["cb40","薂薃薆薈",6,"薐",10,"薝",6,"薥薦薧薩薫薬薭薱",5,"薸薺",6,"藂",6,"藊",4,"藑藒"], +["cb80","藔藖",5,"藝",6,"藥藦藧藨藪",14,"恕刷耍摔衰甩帅栓拴霜双爽谁水睡税吮瞬顺舜说硕朔烁斯撕嘶思私司丝死肆寺嗣四伺似饲巳松耸怂颂送宋讼诵搜艘擞嗽苏酥俗素速粟僳塑溯宿诉肃酸蒜算虽隋随绥髓碎岁穗遂隧祟孙损笋蓑梭唆缩琐索锁所塌他它她塔"], +["cc40","藹藺藼藽藾蘀",4,"蘆",10,"蘒蘓蘔蘕蘗",15,"蘨蘪",13,"蘹蘺蘻蘽蘾蘿虀"], +["cc80","虁",11,"虒虓處",4,"虛虜虝號虠虡虣",7,"獭挞蹋踏胎苔抬台泰酞太态汰坍摊贪瘫滩坛檀痰潭谭谈坦毯袒碳探叹炭汤塘搪堂棠膛唐糖倘躺淌趟烫掏涛滔绦萄桃逃淘陶讨套特藤腾疼誊梯剔踢锑提题蹄啼体替嚏惕涕剃屉天添填田甜恬舔腆挑条迢眺跳贴铁帖厅听烃"], +["cd40","虭虯虰虲",6,"蚃",6,"蚎",4,"蚔蚖",5,"蚞",4,"蚥蚦蚫蚭蚮蚲蚳蚷蚸蚹蚻",4,"蛁蛂蛃蛅蛈蛌蛍蛒蛓蛕蛖蛗蛚蛜"], +["cd80","蛝蛠蛡蛢蛣蛥蛦蛧蛨蛪蛫蛬蛯蛵蛶蛷蛺蛻蛼蛽蛿蜁蜄蜅蜆蜋蜌蜎蜏蜐蜑蜔蜖汀廷停亭庭挺艇通桐酮瞳同铜彤童桶捅筒统痛偷投头透凸秃突图徒途涂屠土吐兔湍团推颓腿蜕褪退吞屯臀拖托脱鸵陀驮驼椭妥拓唾挖哇蛙洼娃瓦袜歪外豌弯湾玩顽丸烷完碗挽晚皖惋宛婉万腕汪王亡枉网往旺望忘妄威"], +["ce40","蜙蜛蜝蜟蜠蜤蜦蜧蜨蜪蜫蜬蜭蜯蜰蜲蜳蜵蜶蜸蜹蜺蜼蜽蝀",6,"蝊蝋蝍蝏蝐蝑蝒蝔蝕蝖蝘蝚",5,"蝡蝢蝦",7,"蝯蝱蝲蝳蝵"], +["ce80","蝷蝸蝹蝺蝿螀螁螄螆螇螉螊螌螎",4,"螔螕螖螘",6,"螠",4,"巍微危韦违桅围唯惟为潍维苇萎委伟伪尾纬未蔚味畏胃喂魏位渭谓尉慰卫瘟温蚊文闻纹吻稳紊问嗡翁瓮挝蜗涡窝我斡卧握沃巫呜钨乌污诬屋无芜梧吾吴毋武五捂午舞伍侮坞戊雾晤物勿务悟误昔熙析西硒矽晰嘻吸锡牺"], +["cf40","螥螦螧螩螪螮螰螱螲螴螶螷螸螹螻螼螾螿蟁",4,"蟇蟈蟉蟌",4,"蟔",6,"蟜蟝蟞蟟蟡蟢蟣蟤蟦蟧蟨蟩蟫蟬蟭蟯",9], +["cf80","蟺蟻蟼蟽蟿蠀蠁蠂蠄",5,"蠋",7,"蠔蠗蠘蠙蠚蠜",4,"蠣稀息希悉膝夕惜熄烯溪汐犀檄袭席习媳喜铣洗系隙戏细瞎虾匣霞辖暇峡侠狭下厦夏吓掀锨先仙鲜纤咸贤衔舷闲涎弦嫌显险现献县腺馅羡宪陷限线相厢镶香箱襄湘乡翔祥详想响享项巷橡像向象萧硝霄削哮嚣销消宵淆晓"], +["d040","蠤",13,"蠳",5,"蠺蠻蠽蠾蠿衁衂衃衆",5,"衎",5,"衕衖衘衚",6,"衦衧衪衭衯衱衳衴衵衶衸衹衺"], +["d080","衻衼袀袃袆袇袉袊袌袎袏袐袑袓袔袕袗",4,"袝",4,"袣袥",5,"小孝校肖啸笑效楔些歇蝎鞋协挟携邪斜胁谐写械卸蟹懈泄泻谢屑薪芯锌欣辛新忻心信衅星腥猩惺兴刑型形邢行醒幸杏性姓兄凶胸匈汹雄熊休修羞朽嗅锈秀袖绣墟戌需虚嘘须徐许蓄酗叙旭序畜恤絮婿绪续轩喧宣悬旋玄"], +["d140","袬袮袯袰袲",4,"袸袹袺袻袽袾袿裀裃裄裇裈裊裋裌裍裏裐裑裓裖裗裚",4,"裠裡裦裧裩",6,"裲裵裶裷裺裻製裿褀褁褃",5], +["d180","褉褋",4,"褑褔",4,"褜",4,"褢褣褤褦褧褨褩褬褭褮褯褱褲褳褵褷选癣眩绚靴薛学穴雪血勋熏循旬询寻驯巡殉汛训讯逊迅压押鸦鸭呀丫芽牙蚜崖衙涯雅哑亚讶焉咽阉烟淹盐严研蜒岩延言颜阎炎沿奄掩眼衍演艳堰燕厌砚雁唁彦焰宴谚验殃央鸯秧杨扬佯疡羊洋阳氧仰痒养样漾邀腰妖瑶"], +["d240","褸",8,"襂襃襅",24,"襠",5,"襧",19,"襼"], +["d280","襽襾覀覂覄覅覇",26,"摇尧遥窑谣姚咬舀药要耀椰噎耶爷野冶也页掖业叶曳腋夜液一壹医揖铱依伊衣颐夷遗移仪胰疑沂宜姨彝椅蚁倚已乙矣以艺抑易邑屹亿役臆逸肄疫亦裔意毅忆义益溢诣议谊译异翼翌绎茵荫因殷音阴姻吟银淫寅饮尹引隐"], +["d340","覢",30,"觃觍觓觔觕觗觘觙觛觝觟觠觡觢觤觧觨觩觪觬觭觮觰觱觲觴",6], +["d380","觻",4,"訁",5,"計",21,"印英樱婴鹰应缨莹萤营荧蝇迎赢盈影颖硬映哟拥佣臃痈庸雍踊蛹咏泳涌永恿勇用幽优悠忧尤由邮铀犹油游酉有友右佑釉诱又幼迂淤于盂榆虞愚舆余俞逾鱼愉渝渔隅予娱雨与屿禹宇语羽玉域芋郁吁遇喻峪御愈欲狱育誉"], +["d440","訞",31,"訿",8,"詉",21], +["d480","詟",25,"詺",6,"浴寓裕预豫驭鸳渊冤元垣袁原援辕园员圆猿源缘远苑愿怨院曰约越跃钥岳粤月悦阅耘云郧匀陨允运蕴酝晕韵孕匝砸杂栽哉灾宰载再在咱攒暂赞赃脏葬遭糟凿藻枣早澡蚤躁噪造皂灶燥责择则泽贼怎增憎曾赠扎喳渣札轧"], +["d540","誁",7,"誋",7,"誔",46], +["d580","諃",32,"铡闸眨栅榨咋乍炸诈摘斋宅窄债寨瞻毡詹粘沾盏斩辗崭展蘸栈占战站湛绽樟章彰漳张掌涨杖丈帐账仗胀瘴障招昭找沼赵照罩兆肇召遮折哲蛰辙者锗蔗这浙珍斟真甄砧臻贞针侦枕疹诊震振镇阵蒸挣睁征狰争怔整拯正政"], +["d640","諤",34,"謈",27], +["d680","謤謥謧",30,"帧症郑证芝枝支吱蜘知肢脂汁之织职直植殖执值侄址指止趾只旨纸志挚掷至致置帜峙制智秩稚质炙痔滞治窒中盅忠钟衷终种肿重仲众舟周州洲诌粥轴肘帚咒皱宙昼骤珠株蛛朱猪诸诛逐竹烛煮拄瞩嘱主著柱助蛀贮铸筑"], +["d740","譆",31,"譧",4,"譭",25], +["d780","讇",24,"讬讱讻诇诐诪谉谞住注祝驻抓爪拽专砖转撰赚篆桩庄装妆撞壮状椎锥追赘坠缀谆准捉拙卓桌琢茁酌啄着灼浊兹咨资姿滋淄孜紫仔籽滓子自渍字鬃棕踪宗综总纵邹走奏揍租足卒族祖诅阻组钻纂嘴醉最罪尊遵昨左佐柞做作坐座"], +["d840","谸",8,"豂豃豄豅豈豊豋豍",7,"豖豗豘豙豛",5,"豣",6,"豬",6,"豴豵豶豷豻",6,"貃貄貆貇"], +["d880","貈貋貍",6,"貕貖貗貙",20,"亍丌兀丐廿卅丕亘丞鬲孬噩丨禺丿匕乇夭爻卮氐囟胤馗毓睾鼗丶亟鼐乜乩亓芈孛啬嘏仄厍厝厣厥厮靥赝匚叵匦匮匾赜卦卣刂刈刎刭刳刿剀剌剞剡剜蒯剽劂劁劐劓冂罔亻仃仉仂仨仡仫仞伛仳伢佤仵伥伧伉伫佞佧攸佚佝"], +["d940","貮",62], +["d980","賭",32,"佟佗伲伽佶佴侑侉侃侏佾佻侪佼侬侔俦俨俪俅俚俣俜俑俟俸倩偌俳倬倏倮倭俾倜倌倥倨偾偃偕偈偎偬偻傥傧傩傺僖儆僭僬僦僮儇儋仝氽佘佥俎龠汆籴兮巽黉馘冁夔勹匍訇匐凫夙兕亠兖亳衮袤亵脔裒禀嬴蠃羸冫冱冽冼"], +["da40","贎",14,"贠赑赒赗赟赥赨赩赪赬赮赯赱赲赸",8,"趂趃趆趇趈趉趌",4,"趒趓趕",9,"趠趡"], +["da80","趢趤",12,"趲趶趷趹趻趽跀跁跂跅跇跈跉跊跍跐跒跓跔凇冖冢冥讠讦讧讪讴讵讷诂诃诋诏诎诒诓诔诖诘诙诜诟诠诤诨诩诮诰诳诶诹诼诿谀谂谄谇谌谏谑谒谔谕谖谙谛谘谝谟谠谡谥谧谪谫谮谯谲谳谵谶卩卺阝阢阡阱阪阽阼陂陉陔陟陧陬陲陴隈隍隗隰邗邛邝邙邬邡邴邳邶邺"], +["db40","跕跘跙跜跠跡跢跥跦跧跩跭跮跰跱跲跴跶跼跾",6,"踆踇踈踋踍踎踐踑踒踓踕",7,"踠踡踤",4,"踫踭踰踲踳踴踶踷踸踻踼踾"], +["db80","踿蹃蹅蹆蹌",4,"蹓",5,"蹚",11,"蹧蹨蹪蹫蹮蹱邸邰郏郅邾郐郄郇郓郦郢郜郗郛郫郯郾鄄鄢鄞鄣鄱鄯鄹酃酆刍奂劢劬劭劾哿勐勖勰叟燮矍廴凵凼鬯厶弁畚巯坌垩垡塾墼壅壑圩圬圪圳圹圮圯坜圻坂坩垅坫垆坼坻坨坭坶坳垭垤垌垲埏垧垴垓垠埕埘埚埙埒垸埴埯埸埤埝"], +["dc40","蹳蹵蹷",4,"蹽蹾躀躂躃躄躆躈",6,"躑躒躓躕",6,"躝躟",11,"躭躮躰躱躳",6,"躻",7], +["dc80","軃",10,"軏",21,"堋堍埽埭堀堞堙塄堠塥塬墁墉墚墀馨鼙懿艹艽艿芏芊芨芄芎芑芗芙芫芸芾芰苈苊苣芘芷芮苋苌苁芩芴芡芪芟苄苎芤苡茉苷苤茏茇苜苴苒苘茌苻苓茑茚茆茔茕苠苕茜荑荛荜茈莒茼茴茱莛荞茯荏荇荃荟荀茗荠茭茺茳荦荥"], +["dd40","軥",62], +["dd80","輤",32,"荨茛荩荬荪荭荮莰荸莳莴莠莪莓莜莅荼莶莩荽莸荻莘莞莨莺莼菁萁菥菘堇萘萋菝菽菖萜萸萑萆菔菟萏萃菸菹菪菅菀萦菰菡葜葑葚葙葳蒇蒈葺蒉葸萼葆葩葶蒌蒎萱葭蓁蓍蓐蓦蒽蓓蓊蒿蒺蓠蒡蒹蒴蒗蓥蓣蔌甍蔸蓰蔹蔟蔺"], +["de40","轅",32,"轪辀辌辒辝辠辡辢辤辥辦辧辪辬辭辮辯農辳辴辵辷辸辺辻込辿迀迃迆"], +["de80","迉",4,"迏迒迖迗迚迠迡迣迧迬迯迱迲迴迵迶迺迻迼迾迿逇逈逌逎逓逕逘蕖蔻蓿蓼蕙蕈蕨蕤蕞蕺瞢蕃蕲蕻薤薨薇薏蕹薮薜薅薹薷薰藓藁藜藿蘧蘅蘩蘖蘼廾弈夼奁耷奕奚奘匏尢尥尬尴扌扪抟抻拊拚拗拮挢拶挹捋捃掭揶捱捺掎掴捭掬掊捩掮掼揲揸揠揿揄揞揎摒揆掾摅摁搋搛搠搌搦搡摞撄摭撖"], +["df40","這逜連逤逥逧",5,"逰",4,"逷逹逺逽逿遀遃遅遆遈",4,"過達違遖遙遚遜",5,"遤遦遧適遪遫遬遯",4,"遶",6,"遾邁"], +["df80","還邅邆邇邉邊邌",4,"邒邔邖邘邚邜邞邟邠邤邥邧邨邩邫邭邲邷邼邽邿郀摺撷撸撙撺擀擐擗擤擢攉攥攮弋忒甙弑卟叱叽叩叨叻吒吖吆呋呒呓呔呖呃吡呗呙吣吲咂咔呷呱呤咚咛咄呶呦咝哐咭哂咴哒咧咦哓哔呲咣哕咻咿哌哙哚哜咩咪咤哝哏哞唛哧唠哽唔哳唢唣唏唑唧唪啧喏喵啉啭啁啕唿啐唼"], +["e040","郂郃郆郈郉郋郌郍郒郔郕郖郘郙郚郞郟郠郣郤郥郩郪郬郮郰郱郲郳郵郶郷郹郺郻郼郿鄀鄁鄃鄅",19,"鄚鄛鄜"], +["e080","鄝鄟鄠鄡鄤",10,"鄰鄲",6,"鄺",8,"酄唷啖啵啶啷唳唰啜喋嗒喃喱喹喈喁喟啾嗖喑啻嗟喽喾喔喙嗪嗷嗉嘟嗑嗫嗬嗔嗦嗝嗄嗯嗥嗲嗳嗌嗍嗨嗵嗤辔嘞嘈嘌嘁嘤嘣嗾嘀嘧嘭噘嘹噗嘬噍噢噙噜噌噔嚆噤噱噫噻噼嚅嚓嚯囔囗囝囡囵囫囹囿圄圊圉圜帏帙帔帑帱帻帼"], +["e140","酅酇酈酑酓酔酕酖酘酙酛酜酟酠酦酧酨酫酭酳酺酻酼醀",4,"醆醈醊醎醏醓",6,"醜",5,"醤",5,"醫醬醰醱醲醳醶醷醸醹醻"], +["e180","醼",10,"釈釋釐釒",9,"針",8,"帷幄幔幛幞幡岌屺岍岐岖岈岘岙岑岚岜岵岢岽岬岫岱岣峁岷峄峒峤峋峥崂崃崧崦崮崤崞崆崛嵘崾崴崽嵬嵛嵯嵝嵫嵋嵊嵩嵴嶂嶙嶝豳嶷巅彳彷徂徇徉後徕徙徜徨徭徵徼衢彡犭犰犴犷犸狃狁狎狍狒狨狯狩狲狴狷猁狳猃狺"], +["e240","釦",62], +["e280","鈥",32,"狻猗猓猡猊猞猝猕猢猹猥猬猸猱獐獍獗獠獬獯獾舛夥飧夤夂饣饧",5,"饴饷饽馀馄馇馊馍馐馑馓馔馕庀庑庋庖庥庠庹庵庾庳赓廒廑廛廨廪膺忄忉忖忏怃忮怄忡忤忾怅怆忪忭忸怙怵怦怛怏怍怩怫怊怿怡恸恹恻恺恂"], +["e340","鉆",45,"鉵",16], +["e380","銆",7,"銏",24,"恪恽悖悚悭悝悃悒悌悛惬悻悱惝惘惆惚悴愠愦愕愣惴愀愎愫慊慵憬憔憧憷懔懵忝隳闩闫闱闳闵闶闼闾阃阄阆阈阊阋阌阍阏阒阕阖阗阙阚丬爿戕氵汔汜汊沣沅沐沔沌汨汩汴汶沆沩泐泔沭泷泸泱泗沲泠泖泺泫泮沱泓泯泾"], +["e440","銨",5,"銯",24,"鋉",31], +["e480","鋩",32,"洹洧洌浃浈洇洄洙洎洫浍洮洵洚浏浒浔洳涑浯涞涠浞涓涔浜浠浼浣渚淇淅淞渎涿淠渑淦淝淙渖涫渌涮渫湮湎湫溲湟溆湓湔渲渥湄滟溱溘滠漭滢溥溧溽溻溷滗溴滏溏滂溟潢潆潇漤漕滹漯漶潋潴漪漉漩澉澍澌潸潲潼潺濑"], +["e540","錊",51,"錿",10], +["e580","鍊",31,"鍫濉澧澹澶濂濡濮濞濠濯瀚瀣瀛瀹瀵灏灞宀宄宕宓宥宸甯骞搴寤寮褰寰蹇謇辶迓迕迥迮迤迩迦迳迨逅逄逋逦逑逍逖逡逵逶逭逯遄遑遒遐遨遘遢遛暹遴遽邂邈邃邋彐彗彖彘尻咫屐屙孱屣屦羼弪弩弭艴弼鬻屮妁妃妍妩妪妣"], +["e640","鍬",34,"鎐",27], +["e680","鎬",29,"鏋鏌鏍妗姊妫妞妤姒妲妯姗妾娅娆姝娈姣姘姹娌娉娲娴娑娣娓婀婧婊婕娼婢婵胬媪媛婷婺媾嫫媲嫒嫔媸嫠嫣嫱嫖嫦嫘嫜嬉嬗嬖嬲嬷孀尕尜孚孥孳孑孓孢驵驷驸驺驿驽骀骁骅骈骊骐骒骓骖骘骛骜骝骟骠骢骣骥骧纟纡纣纥纨纩"], +["e740","鏎",7,"鏗",54], +["e780","鐎",32,"纭纰纾绀绁绂绉绋绌绐绔绗绛绠绡绨绫绮绯绱绲缍绶绺绻绾缁缂缃缇缈缋缌缏缑缒缗缙缜缛缟缡",6,"缪缫缬缭缯",4,"缵幺畿巛甾邕玎玑玮玢玟珏珂珑玷玳珀珉珈珥珙顼琊珩珧珞玺珲琏琪瑛琦琥琨琰琮琬"], +["e840","鐯",14,"鐿",43,"鑬鑭鑮鑯"], +["e880","鑰",20,"钑钖钘铇铏铓铔铚铦铻锜锠琛琚瑁瑜瑗瑕瑙瑷瑭瑾璜璎璀璁璇璋璞璨璩璐璧瓒璺韪韫韬杌杓杞杈杩枥枇杪杳枘枧杵枨枞枭枋杷杼柰栉柘栊柩枰栌柙枵柚枳柝栀柃枸柢栎柁柽栲栳桠桡桎桢桄桤梃栝桕桦桁桧桀栾桊桉栩梵梏桴桷梓桫棂楮棼椟椠棹"], +["e940","锧锳锽镃镈镋镕镚镠镮镴镵長",7,"門",42], +["e980","閫",32,"椤棰椋椁楗棣椐楱椹楠楂楝榄楫榀榘楸椴槌榇榈槎榉楦楣楹榛榧榻榫榭槔榱槁槊槟榕槠榍槿樯槭樗樘橥槲橄樾檠橐橛樵檎橹樽樨橘橼檑檐檩檗檫猷獒殁殂殇殄殒殓殍殚殛殡殪轫轭轱轲轳轵轶轸轷轹轺轼轾辁辂辄辇辋"], +["ea40","闌",27,"闬闿阇阓阘阛阞阠阣",6,"阫阬阭阯阰阷阸阹阺阾陁陃陊陎陏陑陒陓陖陗"], +["ea80","陘陙陚陜陝陞陠陣陥陦陫陭",4,"陳陸",12,"隇隉隊辍辎辏辘辚軎戋戗戛戟戢戡戥戤戬臧瓯瓴瓿甏甑甓攴旮旯旰昊昙杲昃昕昀炅曷昝昴昱昶昵耆晟晔晁晏晖晡晗晷暄暌暧暝暾曛曜曦曩贲贳贶贻贽赀赅赆赈赉赇赍赕赙觇觊觋觌觎觏觐觑牮犟牝牦牯牾牿犄犋犍犏犒挈挲掰"], +["eb40","隌階隑隒隓隕隖隚際隝",9,"隨",7,"隱隲隴隵隷隸隺隻隿雂雃雈雊雋雐雑雓雔雖",9,"雡",6,"雫"], +["eb80","雬雭雮雰雱雲雴雵雸雺電雼雽雿霂霃霅霊霋霌霐霑霒霔霕霗",4,"霝霟霠搿擘耄毪毳毽毵毹氅氇氆氍氕氘氙氚氡氩氤氪氲攵敕敫牍牒牖爰虢刖肟肜肓肼朊肽肱肫肭肴肷胧胨胩胪胛胂胄胙胍胗朐胝胫胱胴胭脍脎胲胼朕脒豚脶脞脬脘脲腈腌腓腴腙腚腱腠腩腼腽腭腧塍媵膈膂膑滕膣膪臌朦臊膻"], +["ec40","霡",8,"霫霬霮霯霱霳",4,"霺霻霼霽霿",18,"靔靕靗靘靚靜靝靟靣靤靦靧靨靪",7], +["ec80","靲靵靷",4,"靽",7,"鞆",4,"鞌鞎鞏鞐鞓鞕鞖鞗鞙",4,"臁膦欤欷欹歃歆歙飑飒飓飕飙飚殳彀毂觳斐齑斓於旆旄旃旌旎旒旖炀炜炖炝炻烀炷炫炱烨烊焐焓焖焯焱煳煜煨煅煲煊煸煺熘熳熵熨熠燠燔燧燹爝爨灬焘煦熹戾戽扃扈扉礻祀祆祉祛祜祓祚祢祗祠祯祧祺禅禊禚禧禳忑忐"], +["ed40","鞞鞟鞡鞢鞤",6,"鞬鞮鞰鞱鞳鞵",46], +["ed80","韤韥韨韮",4,"韴韷",23,"怼恝恚恧恁恙恣悫愆愍慝憩憝懋懑戆肀聿沓泶淼矶矸砀砉砗砘砑斫砭砜砝砹砺砻砟砼砥砬砣砩硎硭硖硗砦硐硇硌硪碛碓碚碇碜碡碣碲碹碥磔磙磉磬磲礅磴礓礤礞礴龛黹黻黼盱眄眍盹眇眈眚眢眙眭眦眵眸睐睑睇睃睚睨"], +["ee40","頏",62], +["ee80","顎",32,"睢睥睿瞍睽瞀瞌瞑瞟瞠瞰瞵瞽町畀畎畋畈畛畲畹疃罘罡罟詈罨罴罱罹羁罾盍盥蠲钅钆钇钋钊钌钍钏钐钔钗钕钚钛钜钣钤钫钪钭钬钯钰钲钴钶",4,"钼钽钿铄铈",6,"铐铑铒铕铖铗铙铘铛铞铟铠铢铤铥铧铨铪"], +["ef40","顯",5,"颋颎颒颕颙颣風",37,"飏飐飔飖飗飛飜飝飠",4], +["ef80","飥飦飩",30,"铩铫铮铯铳铴铵铷铹铼铽铿锃锂锆锇锉锊锍锎锏锒",4,"锘锛锝锞锟锢锪锫锩锬锱锲锴锶锷锸锼锾锿镂锵镄镅镆镉镌镎镏镒镓镔镖镗镘镙镛镞镟镝镡镢镤",8,"镯镱镲镳锺矧矬雉秕秭秣秫稆嵇稃稂稞稔"], +["f040","餈",4,"餎餏餑",28,"餯",26], +["f080","饊",9,"饖",12,"饤饦饳饸饹饻饾馂馃馉稹稷穑黏馥穰皈皎皓皙皤瓞瓠甬鸠鸢鸨",4,"鸲鸱鸶鸸鸷鸹鸺鸾鹁鹂鹄鹆鹇鹈鹉鹋鹌鹎鹑鹕鹗鹚鹛鹜鹞鹣鹦",6,"鹱鹭鹳疒疔疖疠疝疬疣疳疴疸痄疱疰痃痂痖痍痣痨痦痤痫痧瘃痱痼痿瘐瘀瘅瘌瘗瘊瘥瘘瘕瘙"], +["f140","馌馎馚",10,"馦馧馩",47], +["f180","駙",32,"瘛瘼瘢瘠癀瘭瘰瘿瘵癃瘾瘳癍癞癔癜癖癫癯翊竦穸穹窀窆窈窕窦窠窬窨窭窳衤衩衲衽衿袂袢裆袷袼裉裢裎裣裥裱褚裼裨裾裰褡褙褓褛褊褴褫褶襁襦襻疋胥皲皴矜耒耔耖耜耠耢耥耦耧耩耨耱耋耵聃聆聍聒聩聱覃顸颀颃"], +["f240","駺",62], +["f280","騹",32,"颉颌颍颏颔颚颛颞颟颡颢颥颦虍虔虬虮虿虺虼虻蚨蚍蚋蚬蚝蚧蚣蚪蚓蚩蚶蛄蚵蛎蚰蚺蚱蚯蛉蛏蚴蛩蛱蛲蛭蛳蛐蜓蛞蛴蛟蛘蛑蜃蜇蛸蜈蜊蜍蜉蜣蜻蜞蜥蜮蜚蜾蝈蜴蜱蜩蜷蜿螂蜢蝽蝾蝻蝠蝰蝌蝮螋蝓蝣蝼蝤蝙蝥螓螯螨蟒"], +["f340","驚",17,"驲骃骉骍骎骔骕骙骦骩",6,"骲骳骴骵骹骻骽骾骿髃髄髆",4,"髍髎髏髐髒體髕髖髗髙髚髛髜"], +["f380","髝髞髠髢髣髤髥髧髨髩髪髬髮髰",8,"髺髼",6,"鬄鬅鬆蟆螈螅螭螗螃螫蟥螬螵螳蟋蟓螽蟑蟀蟊蟛蟪蟠蟮蠖蠓蟾蠊蠛蠡蠹蠼缶罂罄罅舐竺竽笈笃笄笕笊笫笏筇笸笪笙笮笱笠笥笤笳笾笞筘筚筅筵筌筝筠筮筻筢筲筱箐箦箧箸箬箝箨箅箪箜箢箫箴篑篁篌篝篚篥篦篪簌篾篼簏簖簋"], +["f440","鬇鬉",5,"鬐鬑鬒鬔",10,"鬠鬡鬢鬤",10,"鬰鬱鬳",7,"鬽鬾鬿魀魆魊魋魌魎魐魒魓魕",5], +["f480","魛",32,"簟簪簦簸籁籀臾舁舂舄臬衄舡舢舣舭舯舨舫舸舻舳舴舾艄艉艋艏艚艟艨衾袅袈裘裟襞羝羟羧羯羰羲籼敉粑粝粜粞粢粲粼粽糁糇糌糍糈糅糗糨艮暨羿翎翕翥翡翦翩翮翳糸絷綦綮繇纛麸麴赳趄趔趑趱赧赭豇豉酊酐酎酏酤"], +["f540","魼",62], +["f580","鮻",32,"酢酡酰酩酯酽酾酲酴酹醌醅醐醍醑醢醣醪醭醮醯醵醴醺豕鹾趸跫踅蹙蹩趵趿趼趺跄跖跗跚跞跎跏跛跆跬跷跸跣跹跻跤踉跽踔踝踟踬踮踣踯踺蹀踹踵踽踱蹉蹁蹂蹑蹒蹊蹰蹶蹼蹯蹴躅躏躔躐躜躞豸貂貊貅貘貔斛觖觞觚觜"], +["f640","鯜",62], +["f680","鰛",32,"觥觫觯訾謦靓雩雳雯霆霁霈霏霎霪霭霰霾龀龃龅",5,"龌黾鼋鼍隹隼隽雎雒瞿雠銎銮鋈錾鍪鏊鎏鐾鑫鱿鲂鲅鲆鲇鲈稣鲋鲎鲐鲑鲒鲔鲕鲚鲛鲞",5,"鲥",4,"鲫鲭鲮鲰",7,"鲺鲻鲼鲽鳄鳅鳆鳇鳊鳋"], +["f740","鰼",62], +["f780","鱻鱽鱾鲀鲃鲄鲉鲊鲌鲏鲓鲖鲗鲘鲙鲝鲪鲬鲯鲹鲾",4,"鳈鳉鳑鳒鳚鳛鳠鳡鳌",4,"鳓鳔鳕鳗鳘鳙鳜鳝鳟鳢靼鞅鞑鞒鞔鞯鞫鞣鞲鞴骱骰骷鹘骶骺骼髁髀髅髂髋髌髑魅魃魇魉魈魍魑飨餍餮饕饔髟髡髦髯髫髻髭髹鬈鬏鬓鬟鬣麽麾縻麂麇麈麋麒鏖麝麟黛黜黝黠黟黢黩黧黥黪黯鼢鼬鼯鼹鼷鼽鼾齄"], +["f840","鳣",62], +["f880","鴢",32], +["f940","鵃",62], +["f980","鶂",32], +["fa40","鶣",62], +["fa80","鷢",32], +["fb40","鸃",27,"鸤鸧鸮鸰鸴鸻鸼鹀鹍鹐鹒鹓鹔鹖鹙鹝鹟鹠鹡鹢鹥鹮鹯鹲鹴",9,"麀"], +["fb80","麁麃麄麅麆麉麊麌",5,"麔",8,"麞麠",5,"麧麨麩麪"], +["fc40","麫",8,"麵麶麷麹麺麼麿",4,"黅黆黇黈黊黋黌黐黒黓黕黖黗黙黚點黡黣黤黦黨黫黬黭黮黰",8,"黺黽黿",6], +["fc80","鼆",4,"鼌鼏鼑鼒鼔鼕鼖鼘鼚",5,"鼡鼣",8,"鼭鼮鼰鼱"], +["fd40","鼲",4,"鼸鼺鼼鼿",4,"齅",10,"齒",38], +["fd80","齹",5,"龁龂龍",11,"龜龝龞龡",4,"郎凉秊裏隣"], +["fe40","兀嗀﨎﨏﨑﨓﨔礼﨟蘒﨡﨣﨤﨧﨨﨩"] +] diff --git a/node_modules/iconv-lite/encodings/tables/cp949.json b/node_modules/iconv-lite/encodings/tables/cp949.json new file mode 100644 index 000000000..2022a007f --- /dev/null +++ b/node_modules/iconv-lite/encodings/tables/cp949.json @@ -0,0 +1,273 @@ +[ +["0","\u0000",127], +["8141","갂갃갅갆갋",4,"갘갞갟갡갢갣갥",6,"갮갲갳갴"], +["8161","갵갶갷갺갻갽갾갿걁",9,"걌걎",5,"걕"], +["8181","걖걗걙걚걛걝",18,"걲걳걵걶걹걻",4,"겂겇겈겍겎겏겑겒겓겕",6,"겞겢",5,"겫겭겮겱",6,"겺겾겿곀곂곃곅곆곇곉곊곋곍",7,"곖곘",7,"곢곣곥곦곩곫곭곮곲곴곷",4,"곾곿괁괂괃괅괇",4,"괎괐괒괓"], +["8241","괔괕괖괗괙괚괛괝괞괟괡",7,"괪괫괮",5], +["8261","괶괷괹괺괻괽",6,"굆굈굊",5,"굑굒굓굕굖굗"], +["8281","굙",7,"굢굤",7,"굮굯굱굲굷굸굹굺굾궀궃",4,"궊궋궍궎궏궑",10,"궞",5,"궥",17,"궸",7,"귂귃귅귆귇귉",6,"귒귔",7,"귝귞귟귡귢귣귥",18], +["8341","귺귻귽귾긂",5,"긊긌긎",5,"긕",7], +["8361","긝",18,"긲긳긵긶긹긻긼"], +["8381","긽긾긿깂깄깇깈깉깋깏깑깒깓깕깗",4,"깞깢깣깤깦깧깪깫깭깮깯깱",6,"깺깾",5,"꺆",5,"꺍",46,"꺿껁껂껃껅",6,"껎껒",5,"껚껛껝",8], +["8441","껦껧껩껪껬껮",5,"껵껶껷껹껺껻껽",8], +["8461","꼆꼉꼊꼋꼌꼎꼏꼑",18], +["8481","꼤",7,"꼮꼯꼱꼳꼵",6,"꼾꽀꽄꽅꽆꽇꽊",5,"꽑",10,"꽞",5,"꽦",18,"꽺",5,"꾁꾂꾃꾅꾆꾇꾉",6,"꾒꾓꾔꾖",5,"꾝",26,"꾺꾻꾽꾾"], +["8541","꾿꿁",5,"꿊꿌꿏",4,"꿕",6,"꿝",4], +["8561","꿢",5,"꿪",5,"꿲꿳꿵꿶꿷꿹",6,"뀂뀃"], +["8581","뀅",6,"뀍뀎뀏뀑뀒뀓뀕",6,"뀞",9,"뀩",26,"끆끇끉끋끍끏끐끑끒끖끘끚끛끜끞",29,"끾끿낁낂낃낅",6,"낎낐낒",5,"낛낝낞낣낤"], +["8641","낥낦낧낪낰낲낶낷낹낺낻낽",6,"냆냊",5,"냒"], +["8661","냓냕냖냗냙",6,"냡냢냣냤냦",10], +["8681","냱",22,"넊넍넎넏넑넔넕넖넗넚넞",4,"넦넧넩넪넫넭",6,"넶넺",5,"녂녃녅녆녇녉",6,"녒녓녖녗녙녚녛녝녞녟녡",22,"녺녻녽녾녿놁놃",4,"놊놌놎놏놐놑놕놖놗놙놚놛놝"], +["8741","놞",9,"놩",15], +["8761","놹",18,"뇍뇎뇏뇑뇒뇓뇕"], +["8781","뇖",5,"뇞뇠",7,"뇪뇫뇭뇮뇯뇱",7,"뇺뇼뇾",5,"눆눇눉눊눍",6,"눖눘눚",5,"눡",18,"눵",6,"눽",26,"뉙뉚뉛뉝뉞뉟뉡",6,"뉪",4], +["8841","뉯",4,"뉶",5,"뉽",6,"늆늇늈늊",4], +["8861","늏늒늓늕늖늗늛",4,"늢늤늧늨늩늫늭늮늯늱늲늳늵늶늷"], +["8881","늸",15,"닊닋닍닎닏닑닓",4,"닚닜닞닟닠닡닣닧닩닪닰닱닲닶닼닽닾댂댃댅댆댇댉",6,"댒댖",5,"댝",54,"덗덙덚덝덠덡덢덣"], +["8941","덦덨덪덬덭덯덲덳덵덶덷덹",6,"뎂뎆",5,"뎍"], +["8961","뎎뎏뎑뎒뎓뎕",10,"뎢",5,"뎩뎪뎫뎭"], +["8981","뎮",21,"돆돇돉돊돍돏돑돒돓돖돘돚돜돞돟돡돢돣돥돦돧돩",18,"돽",18,"됑",6,"됙됚됛됝됞됟됡",6,"됪됬",7,"됵",15], +["8a41","둅",10,"둒둓둕둖둗둙",6,"둢둤둦"], +["8a61","둧",4,"둭",18,"뒁뒂"], +["8a81","뒃",4,"뒉",19,"뒞",5,"뒥뒦뒧뒩뒪뒫뒭",7,"뒶뒸뒺",5,"듁듂듃듅듆듇듉",6,"듑듒듓듔듖",5,"듞듟듡듢듥듧",4,"듮듰듲",5,"듹",26,"딖딗딙딚딝"], +["8b41","딞",5,"딦딫",4,"딲딳딵딶딷딹",6,"땂땆"], +["8b61","땇땈땉땊땎땏땑땒땓땕",6,"땞땢",8], +["8b81","땫",52,"떢떣떥떦떧떩떬떭떮떯떲떶",4,"떾떿뗁뗂뗃뗅",6,"뗎뗒",5,"뗙",18,"뗭",18], +["8c41","똀",15,"똒똓똕똖똗똙",4], +["8c61","똞",6,"똦",5,"똭",6,"똵",5], +["8c81","똻",12,"뙉",26,"뙥뙦뙧뙩",50,"뚞뚟뚡뚢뚣뚥",5,"뚭뚮뚯뚰뚲",16], +["8d41","뛃",16,"뛕",8], +["8d61","뛞",17,"뛱뛲뛳뛵뛶뛷뛹뛺"], +["8d81","뛻",4,"뜂뜃뜄뜆",33,"뜪뜫뜭뜮뜱",6,"뜺뜼",7,"띅띆띇띉띊띋띍",6,"띖",9,"띡띢띣띥띦띧띩",6,"띲띴띶",5,"띾띿랁랂랃랅",6,"랎랓랔랕랚랛랝랞"], +["8e41","랟랡",6,"랪랮",5,"랶랷랹",8], +["8e61","럂",4,"럈럊",19], +["8e81","럞",13,"럮럯럱럲럳럵",6,"럾렂",4,"렊렋렍렎렏렑",6,"렚렜렞",5,"렦렧렩렪렫렭",6,"렶렺",5,"롁롂롃롅",11,"롒롔",7,"롞롟롡롢롣롥",6,"롮롰롲",5,"롹롺롻롽",7], +["8f41","뢅",7,"뢎",17], +["8f61","뢠",7,"뢩",6,"뢱뢲뢳뢵뢶뢷뢹",4], +["8f81","뢾뢿룂룄룆",5,"룍룎룏룑룒룓룕",7,"룞룠룢",5,"룪룫룭룮룯룱",6,"룺룼룾",5,"뤅",18,"뤙",6,"뤡",26,"뤾뤿륁륂륃륅",6,"륍륎륐륒",5], +["9041","륚륛륝륞륟륡",6,"륪륬륮",5,"륶륷륹륺륻륽"], +["9061","륾",5,"릆릈릋릌릏",15], +["9081","릟",12,"릮릯릱릲릳릵",6,"릾맀맂",5,"맊맋맍맓",4,"맚맜맟맠맢맦맧맩맪맫맭",6,"맶맻",4,"먂",5,"먉",11,"먖",33,"먺먻먽먾먿멁멃멄멅멆"], +["9141","멇멊멌멏멐멑멒멖멗멙멚멛멝",6,"멦멪",5], +["9161","멲멳멵멶멷멹",9,"몆몈몉몊몋몍",5], +["9181","몓",20,"몪몭몮몯몱몳",4,"몺몼몾",5,"뫅뫆뫇뫉",14,"뫚",33,"뫽뫾뫿묁묂묃묅",7,"묎묐묒",5,"묙묚묛묝묞묟묡",6], +["9241","묨묪묬",7,"묷묹묺묿",4,"뭆뭈뭊뭋뭌뭎뭑뭒"], +["9261","뭓뭕뭖뭗뭙",7,"뭢뭤",7,"뭭",4], +["9281","뭲",21,"뮉뮊뮋뮍뮎뮏뮑",18,"뮥뮦뮧뮩뮪뮫뮭",6,"뮵뮶뮸",7,"믁믂믃믅믆믇믉",6,"믑믒믔",35,"믺믻믽믾밁"], +["9341","밃",4,"밊밎밐밒밓밙밚밠밡밢밣밦밨밪밫밬밮밯밲밳밵"], +["9361","밶밷밹",6,"뱂뱆뱇뱈뱊뱋뱎뱏뱑",8], +["9381","뱚뱛뱜뱞",37,"벆벇벉벊벍벏",4,"벖벘벛",4,"벢벣벥벦벩",6,"벲벶",5,"벾벿볁볂볃볅",7,"볎볒볓볔볖볗볙볚볛볝",22,"볷볹볺볻볽"], +["9441","볾",5,"봆봈봊",5,"봑봒봓봕",8], +["9461","봞",5,"봥",6,"봭",12], +["9481","봺",5,"뵁",6,"뵊뵋뵍뵎뵏뵑",6,"뵚",9,"뵥뵦뵧뵩",22,"붂붃붅붆붋",4,"붒붔붖붗붘붛붝",6,"붥",10,"붱",6,"붹",24], +["9541","뷒뷓뷖뷗뷙뷚뷛뷝",11,"뷪",5,"뷱"], +["9561","뷲뷳뷵뷶뷷뷹",6,"븁븂븄븆",5,"븎븏븑븒븓"], +["9581","븕",6,"븞븠",35,"빆빇빉빊빋빍빏",4,"빖빘빜빝빞빟빢빣빥빦빧빩빫",4,"빲빶",4,"빾빿뺁뺂뺃뺅",6,"뺎뺒",5,"뺚",13,"뺩",14], +["9641","뺸",23,"뻒뻓"], +["9661","뻕뻖뻙",6,"뻡뻢뻦",5,"뻭",8], +["9681","뻶",10,"뼂",5,"뼊",13,"뼚뼞",33,"뽂뽃뽅뽆뽇뽉",6,"뽒뽓뽔뽖",44], +["9741","뾃",16,"뾕",8], +["9761","뾞",17,"뾱",7], +["9781","뾹",11,"뿆",5,"뿎뿏뿑뿒뿓뿕",6,"뿝뿞뿠뿢",89,"쀽쀾쀿"], +["9841","쁀",16,"쁒",5,"쁙쁚쁛"], +["9861","쁝쁞쁟쁡",6,"쁪",15], +["9881","쁺",21,"삒삓삕삖삗삙",6,"삢삤삦",5,"삮삱삲삷",4,"삾샂샃샄샆샇샊샋샍샎샏샑",6,"샚샞",5,"샦샧샩샪샫샭",6,"샶샸샺",5,"섁섂섃섅섆섇섉",6,"섑섒섓섔섖",5,"섡섢섥섨섩섪섫섮"], +["9941","섲섳섴섵섷섺섻섽섾섿셁",6,"셊셎",5,"셖셗"], +["9961","셙셚셛셝",6,"셦셪",5,"셱셲셳셵셶셷셹셺셻"], +["9981","셼",8,"솆",5,"솏솑솒솓솕솗",4,"솞솠솢솣솤솦솧솪솫솭솮솯솱",11,"솾",5,"쇅쇆쇇쇉쇊쇋쇍",6,"쇕쇖쇙",6,"쇡쇢쇣쇥쇦쇧쇩",6,"쇲쇴",7,"쇾쇿숁숂숃숅",6,"숎숐숒",5,"숚숛숝숞숡숢숣"], +["9a41","숤숥숦숧숪숬숮숰숳숵",16], +["9a61","쉆쉇쉉",6,"쉒쉓쉕쉖쉗쉙",6,"쉡쉢쉣쉤쉦"], +["9a81","쉧",4,"쉮쉯쉱쉲쉳쉵",6,"쉾슀슂",5,"슊",5,"슑",6,"슙슚슜슞",5,"슦슧슩슪슫슮",5,"슶슸슺",33,"싞싟싡싢싥",5,"싮싰싲싳싴싵싷싺싽싾싿쌁",6,"쌊쌋쌎쌏"], +["9b41","쌐쌑쌒쌖쌗쌙쌚쌛쌝",6,"쌦쌧쌪",8], +["9b61","쌳",17,"썆",7], +["9b81","썎",25,"썪썫썭썮썯썱썳",4,"썺썻썾",5,"쎅쎆쎇쎉쎊쎋쎍",50,"쏁",22,"쏚"], +["9c41","쏛쏝쏞쏡쏣",4,"쏪쏫쏬쏮",5,"쏶쏷쏹",5], +["9c61","쏿",8,"쐉",6,"쐑",9], +["9c81","쐛",8,"쐥",6,"쐭쐮쐯쐱쐲쐳쐵",6,"쐾",9,"쑉",26,"쑦쑧쑩쑪쑫쑭",6,"쑶쑷쑸쑺",5,"쒁",18,"쒕",6,"쒝",12], +["9d41","쒪",13,"쒹쒺쒻쒽",8], +["9d61","쓆",25], +["9d81","쓠",8,"쓪",5,"쓲쓳쓵쓶쓷쓹쓻쓼쓽쓾씂",9,"씍씎씏씑씒씓씕",6,"씝",10,"씪씫씭씮씯씱",6,"씺씼씾",5,"앆앇앋앏앐앑앒앖앚앛앜앟앢앣앥앦앧앩",6,"앲앶",5,"앾앿얁얂얃얅얆얈얉얊얋얎얐얒얓얔"], +["9e41","얖얙얚얛얝얞얟얡",7,"얪",9,"얶"], +["9e61","얷얺얿",4,"엋엍엏엒엓엕엖엗엙",6,"엢엤엦엧"], +["9e81","엨엩엪엫엯엱엲엳엵엸엹엺엻옂옃옄옉옊옋옍옎옏옑",6,"옚옝",6,"옦옧옩옪옫옯옱옲옶옸옺옼옽옾옿왂왃왅왆왇왉",6,"왒왖",5,"왞왟왡",10,"왭왮왰왲",5,"왺왻왽왾왿욁",6,"욊욌욎",5,"욖욗욙욚욛욝",6,"욦"], +["9f41","욨욪",5,"욲욳욵욶욷욻",4,"웂웄웆",5,"웎"], +["9f61","웏웑웒웓웕",6,"웞웟웢",5,"웪웫웭웮웯웱웲"], +["9f81","웳",4,"웺웻웼웾",5,"윆윇윉윊윋윍",6,"윖윘윚",5,"윢윣윥윦윧윩",6,"윲윴윶윸윹윺윻윾윿읁읂읃읅",4,"읋읎읐읙읚읛읝읞읟읡",6,"읩읪읬",7,"읶읷읹읺읻읿잀잁잂잆잋잌잍잏잒잓잕잙잛",4,"잢잧",4,"잮잯잱잲잳잵잶잷"], +["a041","잸잹잺잻잾쟂",5,"쟊쟋쟍쟏쟑",6,"쟙쟚쟛쟜"], +["a061","쟞",5,"쟥쟦쟧쟩쟪쟫쟭",13], +["a081","쟻",4,"젂젃젅젆젇젉젋",4,"젒젔젗",4,"젞젟젡젢젣젥",6,"젮젰젲",5,"젹젺젻젽젾젿졁",6,"졊졋졎",5,"졕",26,"졲졳졵졶졷졹졻",4,"좂좄좈좉좊좎",5,"좕",7,"좞좠좢좣좤"], +["a141","좥좦좧좩",18,"좾좿죀죁"], +["a161","죂죃죅죆죇죉죊죋죍",6,"죖죘죚",5,"죢죣죥"], +["a181","죦",14,"죶",5,"죾죿줁줂줃줇",4,"줎 、。·‥…¨〃­―∥\∼‘’“”〔〕〈",9,"±×÷≠≤≥∞∴°′″℃Å¢£¥♂♀∠⊥⌒∂∇≡≒§※☆★○●◎◇◆□■△▲▽▼→←↑↓↔〓≪≫√∽∝∵∫∬∈∋⊆⊇⊂⊃∪∩∧∨¬"], +["a241","줐줒",5,"줙",18], +["a261","줭",6,"줵",18], +["a281","쥈",7,"쥒쥓쥕쥖쥗쥙",6,"쥢쥤",7,"쥭쥮쥯⇒⇔∀∃´~ˇ˘˝˚˙¸˛¡¿ː∮∑∏¤℉‰◁◀▷▶♤♠♡♥♧♣⊙◈▣◐◑▒▤▥▨▧▦▩♨☏☎☜☞¶†‡↕↗↙↖↘♭♩♪♬㉿㈜№㏇™㏂㏘℡€®"], +["a341","쥱쥲쥳쥵",6,"쥽",10,"즊즋즍즎즏"], +["a361","즑",6,"즚즜즞",16], +["a381","즯",16,"짂짃짅짆짉짋",4,"짒짔짗짘짛!",58,"₩]",32," ̄"], +["a441","짞짟짡짣짥짦짨짩짪짫짮짲",5,"짺짻짽짾짿쨁쨂쨃쨄"], +["a461","쨅쨆쨇쨊쨎",5,"쨕쨖쨗쨙",12], +["a481","쨦쨧쨨쨪",28,"ㄱ",93], +["a541","쩇",4,"쩎쩏쩑쩒쩓쩕",6,"쩞쩢",5,"쩩쩪"], +["a561","쩫",17,"쩾",5,"쪅쪆"], +["a581","쪇",16,"쪙",14,"ⅰ",9], +["a5b0","Ⅰ",9], +["a5c1","Α",16,"Σ",6], +["a5e1","α",16,"σ",6], +["a641","쪨",19,"쪾쪿쫁쫂쫃쫅"], +["a661","쫆",5,"쫎쫐쫒쫔쫕쫖쫗쫚",5,"쫡",6], +["a681","쫨쫩쫪쫫쫭",6,"쫵",18,"쬉쬊─│┌┐┘└├┬┤┴┼━┃┏┓┛┗┣┳┫┻╋┠┯┨┷┿┝┰┥┸╂┒┑┚┙┖┕┎┍┞┟┡┢┦┧┩┪┭┮┱┲┵┶┹┺┽┾╀╁╃",7], +["a741","쬋",4,"쬑쬒쬓쬕쬖쬗쬙",6,"쬢",7], +["a761","쬪",22,"쭂쭃쭄"], +["a781","쭅쭆쭇쭊쭋쭍쭎쭏쭑",6,"쭚쭛쭜쭞",5,"쭥",7,"㎕㎖㎗ℓ㎘㏄㎣㎤㎥㎦㎙",9,"㏊㎍㎎㎏㏏㎈㎉㏈㎧㎨㎰",9,"㎀",4,"㎺",5,"㎐",4,"Ω㏀㏁㎊㎋㎌㏖㏅㎭㎮㎯㏛㎩㎪㎫㎬㏝㏐㏓㏃㏉㏜㏆"], +["a841","쭭",10,"쭺",14], +["a861","쮉",18,"쮝",6], +["a881","쮤",19,"쮹",11,"ÆÐªĦ"], +["a8a6","IJ"], +["a8a8","ĿŁØŒºÞŦŊ"], +["a8b1","㉠",27,"ⓐ",25,"①",14,"½⅓⅔¼¾⅛⅜⅝⅞"], +["a941","쯅",14,"쯕",10], +["a961","쯠쯡쯢쯣쯥쯦쯨쯪",18], +["a981","쯽",14,"찎찏찑찒찓찕",6,"찞찟찠찣찤æđðħıijĸŀłøœßþŧŋʼn㈀",27,"⒜",25,"⑴",14,"¹²³⁴ⁿ₁₂₃₄"], +["aa41","찥찦찪찫찭찯찱",6,"찺찿",4,"챆챇챉챊챋챍챎"], +["aa61","챏",4,"챖챚",5,"챡챢챣챥챧챩",6,"챱챲"], +["aa81","챳챴챶",29,"ぁ",82], +["ab41","첔첕첖첗첚첛첝첞첟첡",6,"첪첮",5,"첶첷첹"], +["ab61","첺첻첽",6,"쳆쳈쳊",5,"쳑쳒쳓쳕",5], +["ab81","쳛",8,"쳥",6,"쳭쳮쳯쳱",12,"ァ",85], +["ac41","쳾쳿촀촂",5,"촊촋촍촎촏촑",6,"촚촜촞촟촠"], +["ac61","촡촢촣촥촦촧촩촪촫촭",11,"촺",4], +["ac81","촿",28,"쵝쵞쵟А",5,"ЁЖ",25], +["acd1","а",5,"ёж",25], +["ad41","쵡쵢쵣쵥",6,"쵮쵰쵲",5,"쵹",7], +["ad61","춁",6,"춉",10,"춖춗춙춚춛춝춞춟"], +["ad81","춠춡춢춣춦춨춪",5,"춱",18,"췅"], +["ae41","췆",5,"췍췎췏췑",16], +["ae61","췢",5,"췩췪췫췭췮췯췱",6,"췺췼췾",4], +["ae81","츃츅츆츇츉츊츋츍",6,"츕츖츗츘츚",5,"츢츣츥츦츧츩츪츫"], +["af41","츬츭츮츯츲츴츶",19], +["af61","칊",13,"칚칛칝칞칢",5,"칪칬"], +["af81","칮",5,"칶칷칹칺칻칽",6,"캆캈캊",5,"캒캓캕캖캗캙"], +["b041","캚",5,"캢캦",5,"캮",12], +["b061","캻",5,"컂",19], +["b081","컖",13,"컦컧컩컪컭",6,"컶컺",5,"가각간갇갈갉갊감",7,"같",4,"갠갤갬갭갯갰갱갸갹갼걀걋걍걔걘걜거걱건걷걸걺검겁것겄겅겆겉겊겋게겐겔겜겝겟겠겡겨격겪견겯결겸겹겻겼경곁계곈곌곕곗고곡곤곧골곪곬곯곰곱곳공곶과곽관괄괆"], +["b141","켂켃켅켆켇켉",6,"켒켔켖",5,"켝켞켟켡켢켣"], +["b161","켥",6,"켮켲",5,"켹",11], +["b181","콅",14,"콖콗콙콚콛콝",6,"콦콨콪콫콬괌괍괏광괘괜괠괩괬괭괴괵괸괼굄굅굇굉교굔굘굡굣구국군굳굴굵굶굻굼굽굿궁궂궈궉권궐궜궝궤궷귀귁귄귈귐귑귓규균귤그극근귿글긁금급긋긍긔기긱긴긷길긺김깁깃깅깆깊까깍깎깐깔깖깜깝깟깠깡깥깨깩깬깰깸"], +["b241","콭콮콯콲콳콵콶콷콹",6,"쾁쾂쾃쾄쾆",5,"쾍"], +["b261","쾎",18,"쾢",5,"쾩"], +["b281","쾪",5,"쾱",18,"쿅",6,"깹깻깼깽꺄꺅꺌꺼꺽꺾껀껄껌껍껏껐껑께껙껜껨껫껭껴껸껼꼇꼈꼍꼐꼬꼭꼰꼲꼴꼼꼽꼿꽁꽂꽃꽈꽉꽐꽜꽝꽤꽥꽹꾀꾄꾈꾐꾑꾕꾜꾸꾹꾼꿀꿇꿈꿉꿋꿍꿎꿔꿜꿨꿩꿰꿱꿴꿸뀀뀁뀄뀌뀐뀔뀜뀝뀨끄끅끈끊끌끎끓끔끕끗끙"], +["b341","쿌",19,"쿢쿣쿥쿦쿧쿩"], +["b361","쿪",5,"쿲쿴쿶",5,"쿽쿾쿿퀁퀂퀃퀅",5], +["b381","퀋",5,"퀒",5,"퀙",19,"끝끼끽낀낄낌낍낏낑나낙낚난낟날낡낢남납낫",4,"낱낳내낵낸낼냄냅냇냈냉냐냑냔냘냠냥너넉넋넌널넒넓넘넙넛넜넝넣네넥넨넬넴넵넷넸넹녀녁년녈념녑녔녕녘녜녠노녹논놀놂놈놉놋농높놓놔놘놜놨뇌뇐뇔뇜뇝"], +["b441","퀮",5,"퀶퀷퀹퀺퀻퀽",6,"큆큈큊",5], +["b461","큑큒큓큕큖큗큙",6,"큡",10,"큮큯"], +["b481","큱큲큳큵",6,"큾큿킀킂",18,"뇟뇨뇩뇬뇰뇹뇻뇽누눅눈눋눌눔눕눗눙눠눴눼뉘뉜뉠뉨뉩뉴뉵뉼늄늅늉느늑는늘늙늚늠늡늣능늦늪늬늰늴니닉닌닐닒님닙닛닝닢다닥닦단닫",4,"닳담답닷",4,"닿대댁댄댈댐댑댓댔댕댜더덕덖던덛덜덞덟덤덥"], +["b541","킕",14,"킦킧킩킪킫킭",5], +["b561","킳킶킸킺",5,"탂탃탅탆탇탊",5,"탒탖",4], +["b581","탛탞탟탡탢탣탥",6,"탮탲",5,"탹",11,"덧덩덫덮데덱덴델뎀뎁뎃뎄뎅뎌뎐뎔뎠뎡뎨뎬도독돈돋돌돎돐돔돕돗동돛돝돠돤돨돼됐되된될됨됩됫됴두둑둔둘둠둡둣둥둬뒀뒈뒝뒤뒨뒬뒵뒷뒹듀듄듈듐듕드득든듣들듦듬듭듯등듸디딕딘딛딜딤딥딧딨딩딪따딱딴딸"], +["b641","턅",7,"턎",17], +["b661","턠",15,"턲턳턵턶턷턹턻턼턽턾"], +["b681","턿텂텆",5,"텎텏텑텒텓텕",6,"텞텠텢",5,"텩텪텫텭땀땁땃땄땅땋때땍땐땔땜땝땟땠땡떠떡떤떨떪떫떰떱떳떴떵떻떼떽뗀뗄뗌뗍뗏뗐뗑뗘뗬또똑똔똘똥똬똴뙈뙤뙨뚜뚝뚠뚤뚫뚬뚱뛔뛰뛴뛸뜀뜁뜅뜨뜩뜬뜯뜰뜸뜹뜻띄띈띌띔띕띠띤띨띰띱띳띵라락란랄람랍랏랐랑랒랖랗"], +["b741","텮",13,"텽",6,"톅톆톇톉톊"], +["b761","톋",20,"톢톣톥톦톧"], +["b781","톩",6,"톲톴톶톷톸톹톻톽톾톿퇁",14,"래랙랜랠램랩랫랬랭랴략랸럇량러럭런럴럼럽럿렀렁렇레렉렌렐렘렙렛렝려력련렬렴렵렷렸령례롄롑롓로록론롤롬롭롯롱롸롼뢍뢨뢰뢴뢸룀룁룃룅료룐룔룝룟룡루룩룬룰룸룹룻룽뤄뤘뤠뤼뤽륀륄륌륏륑류륙륜률륨륩"], +["b841","퇐",7,"퇙",17], +["b861","퇫",8,"퇵퇶퇷퇹",13], +["b881","툈툊",5,"툑",24,"륫륭르륵른를름릅릇릉릊릍릎리릭린릴림립릿링마막만많",4,"맘맙맛망맞맡맣매맥맨맬맴맵맷맸맹맺먀먁먈먕머먹먼멀멂멈멉멋멍멎멓메멕멘멜멤멥멧멨멩며멱면멸몃몄명몇몌모목몫몬몰몲몸몹못몽뫄뫈뫘뫙뫼"], +["b941","툪툫툮툯툱툲툳툵",6,"툾퉀퉂",5,"퉉퉊퉋퉌"], +["b961","퉍",14,"퉝",6,"퉥퉦퉧퉨"], +["b981","퉩",22,"튂튃튅튆튇튉튊튋튌묀묄묍묏묑묘묜묠묩묫무묵묶문묻물묽묾뭄뭅뭇뭉뭍뭏뭐뭔뭘뭡뭣뭬뮈뮌뮐뮤뮨뮬뮴뮷므믄믈믐믓미믹민믿밀밂밈밉밋밌밍및밑바",4,"받",4,"밤밥밧방밭배백밴밸뱀뱁뱃뱄뱅뱉뱌뱍뱐뱝버벅번벋벌벎범법벗"], +["ba41","튍튎튏튒튓튔튖",5,"튝튞튟튡튢튣튥",6,"튭"], +["ba61","튮튯튰튲",5,"튺튻튽튾틁틃",4,"틊틌",5], +["ba81","틒틓틕틖틗틙틚틛틝",6,"틦",9,"틲틳틵틶틷틹틺벙벚베벡벤벧벨벰벱벳벴벵벼벽변별볍볏볐병볕볘볜보복볶본볼봄봅봇봉봐봔봤봬뵀뵈뵉뵌뵐뵘뵙뵤뵨부북분붇불붉붊붐붑붓붕붙붚붜붤붰붸뷔뷕뷘뷜뷩뷰뷴뷸븀븃븅브븍븐블븜븝븟비빅빈빌빎빔빕빗빙빚빛빠빡빤"], +["bb41","틻",4,"팂팄팆",5,"팏팑팒팓팕팗",4,"팞팢팣"], +["bb61","팤팦팧팪팫팭팮팯팱",6,"팺팾",5,"퍆퍇퍈퍉"], +["bb81","퍊",31,"빨빪빰빱빳빴빵빻빼빽뺀뺄뺌뺍뺏뺐뺑뺘뺙뺨뻐뻑뻔뻗뻘뻠뻣뻤뻥뻬뼁뼈뼉뼘뼙뼛뼜뼝뽀뽁뽄뽈뽐뽑뽕뾔뾰뿅뿌뿍뿐뿔뿜뿟뿡쀼쁑쁘쁜쁠쁨쁩삐삑삔삘삠삡삣삥사삭삯산삳살삵삶삼삽삿샀상샅새색샌샐샘샙샛샜생샤"], +["bc41","퍪",17,"퍾퍿펁펂펃펅펆펇"], +["bc61","펈펉펊펋펎펒",5,"펚펛펝펞펟펡",6,"펪펬펮"], +["bc81","펯",4,"펵펶펷펹펺펻펽",6,"폆폇폊",5,"폑",5,"샥샨샬샴샵샷샹섀섄섈섐섕서",4,"섣설섦섧섬섭섯섰성섶세섹센셀셈셉셋셌셍셔셕션셜셤셥셧셨셩셰셴셸솅소속솎손솔솖솜솝솟송솥솨솩솬솰솽쇄쇈쇌쇔쇗쇘쇠쇤쇨쇰쇱쇳쇼쇽숀숄숌숍숏숑수숙순숟술숨숩숫숭"], +["bd41","폗폙",7,"폢폤",7,"폮폯폱폲폳폵폶폷"], +["bd61","폸폹폺폻폾퐀퐂",5,"퐉",13], +["bd81","퐗",5,"퐞",25,"숯숱숲숴쉈쉐쉑쉔쉘쉠쉥쉬쉭쉰쉴쉼쉽쉿슁슈슉슐슘슛슝스슥슨슬슭슴습슷승시식신싣실싫심십싯싱싶싸싹싻싼쌀쌈쌉쌌쌍쌓쌔쌕쌘쌜쌤쌥쌨쌩썅써썩썬썰썲썸썹썼썽쎄쎈쎌쏀쏘쏙쏜쏟쏠쏢쏨쏩쏭쏴쏵쏸쐈쐐쐤쐬쐰"], +["be41","퐸",7,"푁푂푃푅",14], +["be61","푔",7,"푝푞푟푡푢푣푥",7,"푮푰푱푲"], +["be81","푳",4,"푺푻푽푾풁풃",4,"풊풌풎",5,"풕",8,"쐴쐼쐽쑈쑤쑥쑨쑬쑴쑵쑹쒀쒔쒜쒸쒼쓩쓰쓱쓴쓸쓺쓿씀씁씌씐씔씜씨씩씬씰씸씹씻씽아악안앉않알앍앎앓암압앗았앙앝앞애액앤앨앰앱앳앴앵야약얀얄얇얌얍얏양얕얗얘얜얠얩어억언얹얻얼얽얾엄",6,"엌엎"], +["bf41","풞",10,"풪",14], +["bf61","풹",18,"퓍퓎퓏퓑퓒퓓퓕"], +["bf81","퓖",5,"퓝퓞퓠",7,"퓩퓪퓫퓭퓮퓯퓱",6,"퓹퓺퓼에엑엔엘엠엡엣엥여역엮연열엶엷염",5,"옅옆옇예옌옐옘옙옛옜오옥온올옭옮옰옳옴옵옷옹옻와왁완왈왐왑왓왔왕왜왝왠왬왯왱외왹왼욀욈욉욋욍요욕욘욜욤욥욧용우욱운울욹욺움웁웃웅워웍원월웜웝웠웡웨"], +["c041","퓾",5,"픅픆픇픉픊픋픍",6,"픖픘",5], +["c061","픞",25], +["c081","픸픹픺픻픾픿핁핂핃핅",6,"핎핐핒",5,"핚핛핝핞핟핡핢핣웩웬웰웸웹웽위윅윈윌윔윕윗윙유육윤율윰윱윳융윷으윽은을읊음읍읏응",7,"읜읠읨읫이익인일읽읾잃임입잇있잉잊잎자작잔잖잗잘잚잠잡잣잤장잦재잭잰잴잼잽잿쟀쟁쟈쟉쟌쟎쟐쟘쟝쟤쟨쟬저적전절젊"], +["c141","핤핦핧핪핬핮",5,"핶핷핹핺핻핽",6,"햆햊햋"], +["c161","햌햍햎햏햑",19,"햦햧"], +["c181","햨",31,"점접젓정젖제젝젠젤젬젭젯젱져젼졀졈졉졌졍졔조족존졸졺좀좁좃종좆좇좋좌좍좔좝좟좡좨좼좽죄죈죌죔죕죗죙죠죡죤죵주죽준줄줅줆줌줍줏중줘줬줴쥐쥑쥔쥘쥠쥡쥣쥬쥰쥴쥼즈즉즌즐즘즙즛증지직진짇질짊짐집짓"], +["c241","헊헋헍헎헏헑헓",4,"헚헜헞",5,"헦헧헩헪헫헭헮"], +["c261","헯",4,"헶헸헺",5,"혂혃혅혆혇혉",6,"혒"], +["c281","혖",5,"혝혞혟혡혢혣혥",7,"혮",9,"혺혻징짖짙짚짜짝짠짢짤짧짬짭짯짰짱째짹짼쨀쨈쨉쨋쨌쨍쨔쨘쨩쩌쩍쩐쩔쩜쩝쩟쩠쩡쩨쩽쪄쪘쪼쪽쫀쫄쫌쫍쫏쫑쫓쫘쫙쫠쫬쫴쬈쬐쬔쬘쬠쬡쭁쭈쭉쭌쭐쭘쭙쭝쭤쭸쭹쮜쮸쯔쯤쯧쯩찌찍찐찔찜찝찡찢찧차착찬찮찰참찹찻"], +["c341","혽혾혿홁홂홃홄홆홇홊홌홎홏홐홒홓홖홗홙홚홛홝",4], +["c361","홢",4,"홨홪",5,"홲홳홵",11], +["c381","횁횂횄횆",5,"횎횏횑횒횓횕",7,"횞횠횢",5,"횩횪찼창찾채책챈챌챔챕챗챘챙챠챤챦챨챰챵처척천철첨첩첫첬청체첵첸첼쳄쳅쳇쳉쳐쳔쳤쳬쳰촁초촉촌촐촘촙촛총촤촨촬촹최쵠쵤쵬쵭쵯쵱쵸춈추축춘출춤춥춧충춰췄췌췐취췬췰췸췹췻췽츄츈츌츔츙츠측츤츨츰츱츳층"], +["c441","횫횭횮횯횱",7,"횺횼",7,"훆훇훉훊훋"], +["c461","훍훎훏훐훒훓훕훖훘훚",5,"훡훢훣훥훦훧훩",4], +["c481","훮훯훱훲훳훴훶",5,"훾훿휁휂휃휅",11,"휒휓휔치칙친칟칠칡침칩칫칭카칵칸칼캄캅캇캉캐캑캔캘캠캡캣캤캥캬캭컁커컥컨컫컬컴컵컷컸컹케켁켄켈켐켑켓켕켜켠켤켬켭켯켰켱켸코콕콘콜콤콥콧콩콰콱콴콸쾀쾅쾌쾡쾨쾰쿄쿠쿡쿤쿨쿰쿱쿳쿵쿼퀀퀄퀑퀘퀭퀴퀵퀸퀼"], +["c541","휕휖휗휚휛휝휞휟휡",6,"휪휬휮",5,"휶휷휹"], +["c561","휺휻휽",6,"흅흆흈흊",5,"흒흓흕흚",4], +["c581","흟흢흤흦흧흨흪흫흭흮흯흱흲흳흵",6,"흾흿힀힂",5,"힊힋큄큅큇큉큐큔큘큠크큭큰클큼큽킁키킥킨킬킴킵킷킹타탁탄탈탉탐탑탓탔탕태택탠탤탬탭탯탰탱탸턍터턱턴털턺텀텁텃텄텅테텍텐텔템텝텟텡텨텬텼톄톈토톡톤톨톰톱톳통톺톼퇀퇘퇴퇸툇툉툐투툭툰툴툼툽툿퉁퉈퉜"], +["c641","힍힎힏힑",6,"힚힜힞",5], +["c6a1","퉤튀튁튄튈튐튑튕튜튠튤튬튱트특튼튿틀틂틈틉틋틔틘틜틤틥티틱틴틸팀팁팃팅파팍팎판팔팖팜팝팟팠팡팥패팩팬팰팸팹팻팼팽퍄퍅퍼퍽펀펄펌펍펏펐펑페펙펜펠펨펩펫펭펴편펼폄폅폈평폐폘폡폣포폭폰폴폼폽폿퐁"], +["c7a1","퐈퐝푀푄표푠푤푭푯푸푹푼푿풀풂품풉풋풍풔풩퓌퓐퓔퓜퓟퓨퓬퓰퓸퓻퓽프픈플픔픕픗피픽핀필핌핍핏핑하학한할핥함합핫항해핵핸핼햄햅햇했행햐향허헉헌헐헒험헙헛헝헤헥헨헬헴헵헷헹혀혁현혈혐협혓혔형혜혠"], +["c8a1","혤혭호혹혼홀홅홈홉홋홍홑화확환활홧황홰홱홴횃횅회획횐횔횝횟횡효횬횰횹횻후훅훈훌훑훔훗훙훠훤훨훰훵훼훽휀휄휑휘휙휜휠휨휩휫휭휴휵휸휼흄흇흉흐흑흔흖흗흘흙흠흡흣흥흩희흰흴흼흽힁히힉힌힐힘힙힛힝"], +["caa1","伽佳假價加可呵哥嘉嫁家暇架枷柯歌珂痂稼苛茄街袈訶賈跏軻迦駕刻却各恪慤殼珏脚覺角閣侃刊墾奸姦干幹懇揀杆柬桿澗癎看磵稈竿簡肝艮艱諫間乫喝曷渴碣竭葛褐蝎鞨勘坎堪嵌感憾戡敢柑橄減甘疳監瞰紺邯鑑鑒龕"], +["cba1","匣岬甲胛鉀閘剛堈姜岡崗康强彊慷江畺疆糠絳綱羌腔舡薑襁講鋼降鱇介价個凱塏愷愾慨改槪漑疥皆盖箇芥蓋豈鎧開喀客坑更粳羹醵倨去居巨拒据據擧渠炬祛距踞車遽鉅鋸乾件健巾建愆楗腱虔蹇鍵騫乞傑杰桀儉劍劒檢"], +["cca1","瞼鈐黔劫怯迲偈憩揭擊格檄激膈覡隔堅牽犬甄絹繭肩見譴遣鵑抉決潔結缺訣兼慊箝謙鉗鎌京俓倞傾儆勁勍卿坰境庚徑慶憬擎敬景暻更梗涇炅烱璟璥瓊痙硬磬竟競絅經耕耿脛莖警輕逕鏡頃頸驚鯨係啓堺契季屆悸戒桂械"], +["cda1","棨溪界癸磎稽系繫繼計誡谿階鷄古叩告呱固姑孤尻庫拷攷故敲暠枯槁沽痼皐睾稿羔考股膏苦苽菰藁蠱袴誥賈辜錮雇顧高鼓哭斛曲梏穀谷鵠困坤崑昆梱棍滾琨袞鯤汨滑骨供公共功孔工恐恭拱控攻珙空蚣貢鞏串寡戈果瓜"], +["cea1","科菓誇課跨過鍋顆廓槨藿郭串冠官寬慣棺款灌琯瓘管罐菅觀貫關館刮恝括适侊光匡壙廣曠洸炚狂珖筐胱鑛卦掛罫乖傀塊壞怪愧拐槐魁宏紘肱轟交僑咬喬嬌嶠巧攪敎校橋狡皎矯絞翹膠蕎蛟較轎郊餃驕鮫丘久九仇俱具勾"], +["cfa1","區口句咎嘔坵垢寇嶇廐懼拘救枸柩構歐毆毬求溝灸狗玖球瞿矩究絿耉臼舅舊苟衢謳購軀逑邱鉤銶駒驅鳩鷗龜國局菊鞠鞫麴君窘群裙軍郡堀屈掘窟宮弓穹窮芎躬倦券勸卷圈拳捲權淃眷厥獗蕨蹶闕机櫃潰詭軌饋句晷歸貴"], +["d0a1","鬼龜叫圭奎揆槻珪硅窺竅糾葵規赳逵閨勻均畇筠菌鈞龜橘克剋劇戟棘極隙僅劤勤懃斤根槿瑾筋芹菫覲謹近饉契今妗擒昑檎琴禁禽芩衾衿襟金錦伋及急扱汲級給亘兢矜肯企伎其冀嗜器圻基埼夔奇妓寄岐崎己幾忌技旗旣"], +["d1a1","朞期杞棋棄機欺氣汽沂淇玘琦琪璂璣畸畿碁磯祁祇祈祺箕紀綺羈耆耭肌記譏豈起錡錤飢饑騎騏驥麒緊佶吉拮桔金喫儺喇奈娜懦懶拏拿癩",5,"那樂",4,"諾酪駱亂卵暖欄煖爛蘭難鸞捏捺南嵐枏楠湳濫男藍襤拉"], +["d2a1","納臘蠟衲囊娘廊",4,"乃來內奈柰耐冷女年撚秊念恬拈捻寧寗努勞奴弩怒擄櫓爐瑙盧",5,"駑魯",10,"濃籠聾膿農惱牢磊腦賂雷尿壘",7,"嫩訥杻紐勒",5,"能菱陵尼泥匿溺多茶"], +["d3a1","丹亶但單團壇彖斷旦檀段湍短端簞緞蛋袒鄲鍛撻澾獺疸達啖坍憺擔曇淡湛潭澹痰聃膽蕁覃談譚錟沓畓答踏遝唐堂塘幢戇撞棠當糖螳黨代垈坮大對岱帶待戴擡玳臺袋貸隊黛宅德悳倒刀到圖堵塗導屠島嶋度徒悼挑掉搗桃"], +["d4a1","棹櫂淘渡滔濤燾盜睹禱稻萄覩賭跳蹈逃途道都鍍陶韜毒瀆牘犢獨督禿篤纛讀墩惇敦旽暾沌焞燉豚頓乭突仝冬凍動同憧東桐棟洞潼疼瞳童胴董銅兜斗杜枓痘竇荳讀豆逗頭屯臀芚遁遯鈍得嶝橙燈登等藤謄鄧騰喇懶拏癩羅"], +["d5a1","蘿螺裸邏樂洛烙珞絡落諾酪駱丹亂卵欄欒瀾爛蘭鸞剌辣嵐擥攬欖濫籃纜藍襤覽拉臘蠟廊朗浪狼琅瑯螂郞來崍徠萊冷掠略亮倆兩凉梁樑粮粱糧良諒輛量侶儷勵呂廬慮戾旅櫚濾礪藜蠣閭驢驪麗黎力曆歷瀝礫轢靂憐戀攣漣"], +["d6a1","煉璉練聯蓮輦連鍊冽列劣洌烈裂廉斂殮濂簾獵令伶囹寧岺嶺怜玲笭羚翎聆逞鈴零靈領齡例澧禮醴隷勞怒撈擄櫓潞瀘爐盧老蘆虜路輅露魯鷺鹵碌祿綠菉錄鹿麓論壟弄朧瀧瓏籠聾儡瀨牢磊賂賚賴雷了僚寮廖料燎療瞭聊蓼"], +["d7a1","遼鬧龍壘婁屢樓淚漏瘻累縷蔞褸鏤陋劉旒柳榴流溜瀏琉瑠留瘤硫謬類六戮陸侖倫崙淪綸輪律慄栗率隆勒肋凜凌楞稜綾菱陵俚利厘吏唎履悧李梨浬犁狸理璃異痢籬罹羸莉裏裡里釐離鯉吝潾燐璘藺躪隣鱗麟林淋琳臨霖砬"], +["d8a1","立笠粒摩瑪痲碼磨馬魔麻寞幕漠膜莫邈万卍娩巒彎慢挽晩曼滿漫灣瞞萬蔓蠻輓饅鰻唜抹末沫茉襪靺亡妄忘忙望網罔芒茫莽輞邙埋妹媒寐昧枚梅每煤罵買賣邁魅脈貊陌驀麥孟氓猛盲盟萌冪覓免冕勉棉沔眄眠綿緬面麵滅"], +["d9a1","蔑冥名命明暝椧溟皿瞑茗蓂螟酩銘鳴袂侮冒募姆帽慕摸摹暮某模母毛牟牡瑁眸矛耗芼茅謀謨貌木沐牧目睦穆鶩歿沒夢朦蒙卯墓妙廟描昴杳渺猫竗苗錨務巫憮懋戊拇撫无楙武毋無珷畝繆舞茂蕪誣貿霧鵡墨默們刎吻問文"], +["daa1","汶紊紋聞蚊門雯勿沕物味媚尾嵋彌微未梶楣渼湄眉米美薇謎迷靡黴岷悶愍憫敏旻旼民泯玟珉緡閔密蜜謐剝博拍搏撲朴樸泊珀璞箔粕縛膊舶薄迫雹駁伴半反叛拌搬攀斑槃泮潘班畔瘢盤盼磐磻礬絆般蟠返頒飯勃拔撥渤潑"], +["dba1","發跋醱鉢髮魃倣傍坊妨尨幇彷房放方旁昉枋榜滂磅紡肪膀舫芳蒡蚌訪謗邦防龐倍俳北培徘拜排杯湃焙盃背胚裴裵褙賠輩配陪伯佰帛柏栢白百魄幡樊煩燔番磻繁蕃藩飜伐筏罰閥凡帆梵氾汎泛犯範范法琺僻劈壁擘檗璧癖"], +["dca1","碧蘗闢霹便卞弁變辨辯邊別瞥鱉鼈丙倂兵屛幷昞昺柄棅炳甁病秉竝輧餠騈保堡報寶普步洑湺潽珤甫菩補褓譜輔伏僕匐卜宓復服福腹茯蔔複覆輹輻馥鰒本乶俸奉封峯峰捧棒烽熢琫縫蓬蜂逢鋒鳳不付俯傅剖副否咐埠夫婦"], +["dda1","孚孵富府復扶敷斧浮溥父符簿缶腐腑膚艀芙莩訃負賦賻赴趺部釜阜附駙鳧北分吩噴墳奔奮忿憤扮昐汾焚盆粉糞紛芬賁雰不佛弗彿拂崩朋棚硼繃鵬丕備匕匪卑妃婢庇悲憊扉批斐枇榧比毖毗毘沸泌琵痺砒碑秕秘粃緋翡肥"], +["dea1","脾臂菲蜚裨誹譬費鄙非飛鼻嚬嬪彬斌檳殯浜濱瀕牝玭貧賓頻憑氷聘騁乍事些仕伺似使俟僿史司唆嗣四士奢娑寫寺射巳師徙思捨斜斯柶査梭死沙泗渣瀉獅砂社祀祠私篩紗絲肆舍莎蓑蛇裟詐詞謝賜赦辭邪飼駟麝削數朔索"], +["dfa1","傘刪山散汕珊産疝算蒜酸霰乷撒殺煞薩三參杉森渗芟蔘衫揷澁鈒颯上傷像償商喪嘗孀尙峠常床庠廂想桑橡湘爽牀狀相祥箱翔裳觴詳象賞霜塞璽賽嗇塞穡索色牲生甥省笙墅壻嶼序庶徐恕抒捿敍暑曙書栖棲犀瑞筮絮緖署"], +["e0a1","胥舒薯西誓逝鋤黍鼠夕奭席惜昔晳析汐淅潟石碩蓆釋錫仙僊先善嬋宣扇敾旋渲煽琁瑄璇璿癬禪線繕羨腺膳船蘚蟬詵跣選銑鐥饍鮮卨屑楔泄洩渫舌薛褻設說雪齧剡暹殲纖蟾贍閃陝攝涉燮葉城姓宬性惺成星晟猩珹盛省筬"], +["e1a1","聖聲腥誠醒世勢歲洗稅笹細說貰召嘯塑宵小少巢所掃搔昭梳沼消溯瀟炤燒甦疏疎瘙笑篠簫素紹蔬蕭蘇訴逍遡邵銷韶騷俗屬束涑粟續謖贖速孫巽損蓀遜飡率宋悚松淞訟誦送頌刷殺灑碎鎖衰釗修受嗽囚垂壽嫂守岫峀帥愁"], +["e2a1","戍手授搜收數樹殊水洙漱燧狩獸琇璲瘦睡秀穗竪粹綏綬繡羞脩茱蒐蓚藪袖誰讐輸遂邃酬銖銹隋隧隨雖需須首髓鬚叔塾夙孰宿淑潚熟琡璹肅菽巡徇循恂旬栒楯橓殉洵淳珣盾瞬筍純脣舜荀蓴蕣詢諄醇錞順馴戌術述鉥崇崧"], +["e3a1","嵩瑟膝蝨濕拾習褶襲丞乘僧勝升承昇繩蠅陞侍匙嘶始媤尸屎屍市弑恃施是時枾柴猜矢示翅蒔蓍視試詩諡豕豺埴寔式息拭植殖湜熄篒蝕識軾食飾伸侁信呻娠宸愼新晨燼申神紳腎臣莘薪藎蜃訊身辛辰迅失室實悉審尋心沁"], +["e4a1","沈深瀋甚芯諶什十拾雙氏亞俄兒啞娥峨我牙芽莪蛾衙訝阿雅餓鴉鵝堊岳嶽幄惡愕握樂渥鄂鍔顎鰐齷安岸按晏案眼雁鞍顔鮟斡謁軋閼唵岩巖庵暗癌菴闇壓押狎鴨仰央怏昻殃秧鴦厓哀埃崖愛曖涯碍艾隘靄厄扼掖液縊腋額"], +["e5a1","櫻罌鶯鸚也倻冶夜惹揶椰爺耶若野弱掠略約若葯蒻藥躍亮佯兩凉壤孃恙揚攘敭暘梁楊樣洋瀁煬痒瘍禳穰糧羊良襄諒讓釀陽量養圄御於漁瘀禦語馭魚齬億憶抑檍臆偃堰彦焉言諺孼蘖俺儼嚴奄掩淹嶪業円予余勵呂女如廬"], +["e6a1","旅歟汝濾璵礖礪與艅茹輿轝閭餘驪麗黎亦力域役易曆歷疫繹譯轢逆驛嚥堧姸娟宴年延憐戀捐挻撚椽沇沿涎涓淵演漣烟然煙煉燃燕璉硏硯秊筵緣練縯聯衍軟輦蓮連鉛鍊鳶列劣咽悅涅烈熱裂說閱厭廉念捻染殮炎焰琰艶苒"], +["e7a1","簾閻髥鹽曄獵燁葉令囹塋寧嶺嶸影怜映暎楹榮永泳渶潁濚瀛瀯煐營獰玲瑛瑩瓔盈穎纓羚聆英詠迎鈴鍈零霙靈領乂倪例刈叡曳汭濊猊睿穢芮藝蘂禮裔詣譽豫醴銳隸霓預五伍俉傲午吾吳嗚塢墺奧娛寤悟惡懊敖旿晤梧汚澳"], +["e8a1","烏熬獒筽蜈誤鰲鼇屋沃獄玉鈺溫瑥瘟穩縕蘊兀壅擁瓮甕癰翁邕雍饔渦瓦窩窪臥蛙蝸訛婉完宛梡椀浣玩琓琬碗緩翫脘腕莞豌阮頑曰往旺枉汪王倭娃歪矮外嵬巍猥畏了僚僥凹堯夭妖姚寥寮尿嶢拗搖撓擾料曜樂橈燎燿瑤療"], +["e9a1","窈窯繇繞耀腰蓼蟯要謠遙遼邀饒慾欲浴縟褥辱俑傭冗勇埇墉容庸慂榕涌湧溶熔瑢用甬聳茸蓉踊鎔鏞龍于佑偶優又友右宇寓尤愚憂旴牛玗瑀盂祐禑禹紆羽芋藕虞迂遇郵釪隅雨雩勖彧旭昱栯煜稶郁頊云暈橒殞澐熉耘芸蕓"], +["eaa1","運隕雲韻蔚鬱亐熊雄元原員圓園垣媛嫄寃怨愿援沅洹湲源爰猿瑗苑袁轅遠阮院願鴛月越鉞位偉僞危圍委威尉慰暐渭爲瑋緯胃萎葦蔿蝟衛褘謂違韋魏乳侑儒兪劉唯喩孺宥幼幽庾悠惟愈愉揄攸有杻柔柚柳楡楢油洧流游溜"], +["eba1","濡猶猷琉瑜由留癒硫紐維臾萸裕誘諛諭踰蹂遊逾遺酉釉鍮類六堉戮毓肉育陸倫允奫尹崙淪潤玧胤贇輪鈗閏律慄栗率聿戎瀜絨融隆垠恩慇殷誾銀隱乙吟淫蔭陰音飮揖泣邑凝應膺鷹依倚儀宜意懿擬椅毅疑矣義艤薏蟻衣誼"], +["eca1","議醫二以伊利吏夷姨履已弛彛怡易李梨泥爾珥理異痍痢移罹而耳肄苡荑裏裡貽貳邇里離飴餌匿溺瀷益翊翌翼謚人仁刃印吝咽因姻寅引忍湮燐璘絪茵藺蚓認隣靭靷鱗麟一佚佾壹日溢逸鎰馹任壬妊姙恁林淋稔臨荏賃入卄"], +["eda1","立笠粒仍剩孕芿仔刺咨姉姿子字孜恣慈滋炙煮玆瓷疵磁紫者自茨蔗藉諮資雌作勺嚼斫昨灼炸爵綽芍酌雀鵲孱棧殘潺盞岑暫潛箴簪蠶雜丈仗匠場墻壯奬將帳庄張掌暲杖樟檣欌漿牆狀獐璋章粧腸臟臧莊葬蔣薔藏裝贓醬長"], +["eea1","障再哉在宰才材栽梓渽滓災縡裁財載齋齎爭箏諍錚佇低儲咀姐底抵杵楮樗沮渚狙猪疽箸紵苧菹著藷詛貯躇這邸雎齟勣吊嫡寂摘敵滴狄炙的積笛籍績翟荻謫賊赤跡蹟迪迹適鏑佃佺傳全典前剪塡塼奠專展廛悛戰栓殿氈澱"], +["efa1","煎琠田甸畑癲筌箋箭篆纏詮輾轉鈿銓錢鐫電顚顫餞切截折浙癤竊節絶占岾店漸点粘霑鮎點接摺蝶丁井亭停偵呈姃定幀庭廷征情挺政整旌晶晸柾楨檉正汀淀淨渟湞瀞炡玎珽町睛碇禎程穽精綎艇訂諪貞鄭酊釘鉦鋌錠霆靖"], +["f0a1","靜頂鼎制劑啼堤帝弟悌提梯濟祭第臍薺製諸蹄醍除際霽題齊俎兆凋助嘲弔彫措操早晁曺曹朝條棗槽漕潮照燥爪璪眺祖祚租稠窕粗糟組繰肇藻蚤詔調趙躁造遭釣阻雕鳥族簇足鏃存尊卒拙猝倧宗從悰慫棕淙琮種終綜縱腫"], +["f1a1","踪踵鍾鐘佐坐左座挫罪主住侏做姝胄呪周嗾奏宙州廚晝朱柱株注洲湊澍炷珠疇籌紂紬綢舟蛛註誅走躊輳週酎酒鑄駐竹粥俊儁准埈寯峻晙樽浚準濬焌畯竣蠢逡遵雋駿茁中仲衆重卽櫛楫汁葺增憎曾拯烝甑症繒蒸證贈之只"], +["f2a1","咫地址志持指摯支旨智枝枳止池沚漬知砥祉祗紙肢脂至芝芷蜘誌識贄趾遲直稙稷織職唇嗔塵振搢晉晋桭榛殄津溱珍瑨璡畛疹盡眞瞋秦縉縝臻蔯袗診賑軫辰進鎭陣陳震侄叱姪嫉帙桎瓆疾秩窒膣蛭質跌迭斟朕什執潗緝輯"], +["f3a1","鏶集徵懲澄且侘借叉嗟嵯差次此磋箚茶蹉車遮捉搾着窄錯鑿齪撰澯燦璨瓚竄簒纂粲纘讚贊鑽餐饌刹察擦札紮僭參塹慘慙懺斬站讒讖倉倡創唱娼廠彰愴敞昌昶暢槍滄漲猖瘡窓脹艙菖蒼債埰寀寨彩採砦綵菜蔡采釵冊柵策"], +["f4a1","責凄妻悽處倜刺剔尺慽戚拓擲斥滌瘠脊蹠陟隻仟千喘天川擅泉淺玔穿舛薦賤踐遷釧闡阡韆凸哲喆徹撤澈綴輟轍鐵僉尖沾添甛瞻簽籤詹諂堞妾帖捷牒疊睫諜貼輒廳晴淸聽菁請靑鯖切剃替涕滯締諦逮遞體初剿哨憔抄招梢"], +["f5a1","椒楚樵炒焦硝礁礎秒稍肖艸苕草蕉貂超酢醋醮促囑燭矗蜀觸寸忖村邨叢塚寵悤憁摠總聰蔥銃撮催崔最墜抽推椎楸樞湫皺秋芻萩諏趨追鄒酋醜錐錘鎚雛騶鰍丑畜祝竺筑築縮蓄蹙蹴軸逐春椿瑃出朮黜充忠沖蟲衝衷悴膵萃"], +["f6a1","贅取吹嘴娶就炊翠聚脆臭趣醉驟鷲側仄厠惻測層侈値嗤峙幟恥梔治淄熾痔痴癡稚穉緇緻置致蚩輜雉馳齒則勅飭親七柒漆侵寢枕沈浸琛砧針鍼蟄秤稱快他咤唾墮妥惰打拖朶楕舵陀馱駝倬卓啄坼度托拓擢晫柝濁濯琢琸託"], +["f7a1","鐸呑嘆坦彈憚歎灘炭綻誕奪脫探眈耽貪塔搭榻宕帑湯糖蕩兌台太怠態殆汰泰笞胎苔跆邰颱宅擇澤撑攄兎吐土討慟桶洞痛筒統通堆槌腿褪退頹偸套妬投透鬪慝特闖坡婆巴把播擺杷波派爬琶破罷芭跛頗判坂板版瓣販辦鈑"], +["f8a1","阪八叭捌佩唄悖敗沛浿牌狽稗覇貝彭澎烹膨愎便偏扁片篇編翩遍鞭騙貶坪平枰萍評吠嬖幣廢弊斃肺蔽閉陛佈包匍匏咆哺圃布怖抛抱捕暴泡浦疱砲胞脯苞葡蒲袍褒逋鋪飽鮑幅暴曝瀑爆輻俵剽彪慓杓標漂瓢票表豹飇飄驃"], +["f9a1","品稟楓諷豊風馮彼披疲皮被避陂匹弼必泌珌畢疋筆苾馝乏逼下何厦夏廈昰河瑕荷蝦賀遐霞鰕壑學虐謔鶴寒恨悍旱汗漢澣瀚罕翰閑閒限韓割轄函含咸啣喊檻涵緘艦銜陷鹹合哈盒蛤閤闔陜亢伉姮嫦巷恒抗杭桁沆港缸肛航"], +["faa1","行降項亥偕咳垓奚孩害懈楷海瀣蟹解該諧邂駭骸劾核倖幸杏荇行享向嚮珦鄕響餉饗香噓墟虛許憲櫶獻軒歇險驗奕爀赫革俔峴弦懸晛泫炫玄玹現眩睍絃絢縣舷衒見賢鉉顯孑穴血頁嫌俠協夾峽挾浹狹脅脇莢鋏頰亨兄刑型"], +["fba1","形泂滎瀅灐炯熒珩瑩荊螢衡逈邢鎣馨兮彗惠慧暳蕙蹊醯鞋乎互呼壕壺好岵弧戶扈昊晧毫浩淏湖滸澔濠濩灝狐琥瑚瓠皓祜糊縞胡芦葫蒿虎號蝴護豪鎬頀顥惑或酷婚昏混渾琿魂忽惚笏哄弘汞泓洪烘紅虹訌鴻化和嬅樺火畵"], +["fca1","禍禾花華話譁貨靴廓擴攫確碻穫丸喚奐宦幻患換歡晥桓渙煥環紈還驩鰥活滑猾豁闊凰幌徨恍惶愰慌晃晄榥況湟滉潢煌璜皇篁簧荒蝗遑隍黃匯回廻徊恢悔懷晦會檜淮澮灰獪繪膾茴蛔誨賄劃獲宖橫鐄哮嚆孝效斅曉梟涍淆"], +["fda1","爻肴酵驍侯候厚后吼喉嗅帿後朽煦珝逅勛勳塤壎焄熏燻薰訓暈薨喧暄煊萱卉喙毁彙徽揮暉煇諱輝麾休携烋畦虧恤譎鷸兇凶匈洶胸黑昕欣炘痕吃屹紇訖欠欽歆吸恰洽翕興僖凞喜噫囍姬嬉希憙憘戱晞曦熙熹熺犧禧稀羲詰"] +] diff --git a/node_modules/iconv-lite/encodings/tables/cp950.json b/node_modules/iconv-lite/encodings/tables/cp950.json new file mode 100644 index 000000000..d8bc87178 --- /dev/null +++ b/node_modules/iconv-lite/encodings/tables/cp950.json @@ -0,0 +1,177 @@ +[ +["0","\u0000",127], +["a140"," ,、。.‧;:?!︰…‥﹐﹑﹒·﹔﹕﹖﹗|–︱—︳╴︴﹏()︵︶{}︷︸〔〕︹︺【】︻︼《》︽︾〈〉︿﹀「」﹁﹂『』﹃﹄﹙﹚"], +["a1a1","﹛﹜﹝﹞‘’“”〝〞‵′#&*※§〃○●△▲◎☆★◇◆□■▽▼㊣℅¯ ̄_ˍ﹉﹊﹍﹎﹋﹌﹟﹠﹡+-×÷±√<>=≦≧≠∞≒≡﹢",4,"~∩∪⊥∠∟⊿㏒㏑∫∮∵∴♀♂⊕⊙↑↓←→↖↗↙↘∥∣/"], +["a240","\∕﹨$¥〒¢£%@℃℉﹩﹪﹫㏕㎜㎝㎞㏎㎡㎎㎏㏄°兙兛兞兝兡兣嗧瓩糎▁",7,"▏▎▍▌▋▊▉┼┴┬┤├▔─│▕┌┐└┘╭"], +["a2a1","╮╰╯═╞╪╡◢◣◥◤╱╲╳0",9,"Ⅰ",9,"〡",8,"十卄卅A",25,"a",21], +["a340","wxyzΑ",16,"Σ",6,"α",16,"σ",6,"ㄅ",10], +["a3a1","ㄐ",25,"˙ˉˊˇˋ"], +["a3e1","€"], +["a440","一乙丁七乃九了二人儿入八几刀刁力匕十卜又三下丈上丫丸凡久么也乞于亡兀刃勺千叉口土士夕大女子孑孓寸小尢尸山川工己已巳巾干廾弋弓才"], +["a4a1","丑丐不中丰丹之尹予云井互五亢仁什仃仆仇仍今介仄元允內六兮公冗凶分切刈勻勾勿化匹午升卅卞厄友及反壬天夫太夭孔少尤尺屯巴幻廿弔引心戈戶手扎支文斗斤方日曰月木欠止歹毋比毛氏水火爪父爻片牙牛犬王丙"], +["a540","世丕且丘主乍乏乎以付仔仕他仗代令仙仞充兄冉冊冬凹出凸刊加功包匆北匝仟半卉卡占卯卮去可古右召叮叩叨叼司叵叫另只史叱台句叭叻四囚外"], +["a5a1","央失奴奶孕它尼巨巧左市布平幼弁弘弗必戊打扔扒扑斥旦朮本未末札正母民氐永汁汀氾犯玄玉瓜瓦甘生用甩田由甲申疋白皮皿目矛矢石示禾穴立丞丟乒乓乩亙交亦亥仿伉伙伊伕伍伐休伏仲件任仰仳份企伋光兇兆先全"], +["a640","共再冰列刑划刎刖劣匈匡匠印危吉吏同吊吐吁吋各向名合吃后吆吒因回囝圳地在圭圬圯圩夙多夷夸妄奸妃好她如妁字存宇守宅安寺尖屹州帆并年"], +["a6a1","式弛忙忖戎戌戍成扣扛托收早旨旬旭曲曳有朽朴朱朵次此死氖汝汗汙江池汐汕污汛汍汎灰牟牝百竹米糸缶羊羽老考而耒耳聿肉肋肌臣自至臼舌舛舟艮色艾虫血行衣西阡串亨位住佇佗佞伴佛何估佐佑伽伺伸佃佔似但佣"], +["a740","作你伯低伶余佝佈佚兌克免兵冶冷別判利刪刨劫助努劬匣即卵吝吭吞吾否呎吧呆呃吳呈呂君吩告吹吻吸吮吵吶吠吼呀吱含吟听囪困囤囫坊坑址坍"], +["a7a1","均坎圾坐坏圻壯夾妝妒妨妞妣妙妖妍妤妓妊妥孝孜孚孛完宋宏尬局屁尿尾岐岑岔岌巫希序庇床廷弄弟彤形彷役忘忌志忍忱快忸忪戒我抄抗抖技扶抉扭把扼找批扳抒扯折扮投抓抑抆改攻攸旱更束李杏材村杜杖杞杉杆杠"], +["a840","杓杗步每求汞沙沁沈沉沅沛汪決沐汰沌汨沖沒汽沃汲汾汴沆汶沍沔沘沂灶灼災灸牢牡牠狄狂玖甬甫男甸皂盯矣私秀禿究系罕肖肓肝肘肛肚育良芒"], +["a8a1","芋芍見角言谷豆豕貝赤走足身車辛辰迂迆迅迄巡邑邢邪邦那酉釆里防阮阱阪阬並乖乳事些亞享京佯依侍佳使佬供例來侃佰併侈佩佻侖佾侏侑佺兔兒兕兩具其典冽函刻券刷刺到刮制剁劾劻卒協卓卑卦卷卸卹取叔受味呵"], +["a940","咖呸咕咀呻呷咄咒咆呼咐呱呶和咚呢周咋命咎固垃坷坪坩坡坦坤坼夜奉奇奈奄奔妾妻委妹妮姑姆姐姍始姓姊妯妳姒姅孟孤季宗定官宜宙宛尚屈居"], +["a9a1","屆岷岡岸岩岫岱岳帘帚帖帕帛帑幸庚店府底庖延弦弧弩往征彿彼忝忠忽念忿怏怔怯怵怖怪怕怡性怩怫怛或戕房戾所承拉拌拄抿拂抹拒招披拓拔拋拈抨抽押拐拙拇拍抵拚抱拘拖拗拆抬拎放斧於旺昔易昌昆昂明昀昏昕昊"], +["aa40","昇服朋杭枋枕東果杳杷枇枝林杯杰板枉松析杵枚枓杼杪杲欣武歧歿氓氛泣注泳沱泌泥河沽沾沼波沫法泓沸泄油況沮泗泅泱沿治泡泛泊沬泯泜泖泠"], +["aaa1","炕炎炒炊炙爬爭爸版牧物狀狎狙狗狐玩玨玟玫玥甽疝疙疚的盂盲直知矽社祀祁秉秈空穹竺糾罔羌羋者肺肥肢肱股肫肩肴肪肯臥臾舍芳芝芙芭芽芟芹花芬芥芯芸芣芰芾芷虎虱初表軋迎返近邵邸邱邶采金長門阜陀阿阻附"], +["ab40","陂隹雨青非亟亭亮信侵侯便俠俑俏保促侶俘俟俊俗侮俐俄係俚俎俞侷兗冒冑冠剎剃削前剌剋則勇勉勃勁匍南卻厚叛咬哀咨哎哉咸咦咳哇哂咽咪品"], +["aba1","哄哈咯咫咱咻咩咧咿囿垂型垠垣垢城垮垓奕契奏奎奐姜姘姿姣姨娃姥姪姚姦威姻孩宣宦室客宥封屎屏屍屋峙峒巷帝帥帟幽庠度建弈弭彥很待徊律徇後徉怒思怠急怎怨恍恰恨恢恆恃恬恫恪恤扁拜挖按拼拭持拮拽指拱拷"], +["ac40","拯括拾拴挑挂政故斫施既春昭映昧是星昨昱昤曷柿染柱柔某柬架枯柵柩柯柄柑枴柚查枸柏柞柳枰柙柢柝柒歪殃殆段毒毗氟泉洋洲洪流津洌洱洞洗"], +["aca1","活洽派洶洛泵洹洧洸洩洮洵洎洫炫為炳炬炯炭炸炮炤爰牲牯牴狩狠狡玷珊玻玲珍珀玳甚甭畏界畎畋疫疤疥疢疣癸皆皇皈盈盆盃盅省盹相眉看盾盼眇矜砂研砌砍祆祉祈祇禹禺科秒秋穿突竿竽籽紂紅紀紉紇約紆缸美羿耄"], +["ad40","耐耍耑耶胖胥胚胃胄背胡胛胎胞胤胝致舢苧范茅苣苛苦茄若茂茉苒苗英茁苜苔苑苞苓苟苯茆虐虹虻虺衍衫要觔計訂訃貞負赴赳趴軍軌述迦迢迪迥"], +["ada1","迭迫迤迨郊郎郁郃酋酊重閂限陋陌降面革韋韭音頁風飛食首香乘亳倌倍倣俯倦倥俸倩倖倆值借倚倒們俺倀倔倨俱倡個候倘俳修倭倪俾倫倉兼冤冥冢凍凌准凋剖剜剔剛剝匪卿原厝叟哨唐唁唷哼哥哲唆哺唔哩哭員唉哮哪"], +["ae40","哦唧唇哽唏圃圄埂埔埋埃堉夏套奘奚娑娘娜娟娛娓姬娠娣娩娥娌娉孫屘宰害家宴宮宵容宸射屑展屐峭峽峻峪峨峰島崁峴差席師庫庭座弱徒徑徐恙"], +["aea1","恣恥恐恕恭恩息悄悟悚悍悔悌悅悖扇拳挈拿捎挾振捕捂捆捏捉挺捐挽挪挫挨捍捌效敉料旁旅時晉晏晃晒晌晅晁書朔朕朗校核案框桓根桂桔栩梳栗桌桑栽柴桐桀格桃株桅栓栘桁殊殉殷氣氧氨氦氤泰浪涕消涇浦浸海浙涓"], +["af40","浬涉浮浚浴浩涌涊浹涅浥涔烊烘烤烙烈烏爹特狼狹狽狸狷玆班琉珮珠珪珞畔畝畜畚留疾病症疲疳疽疼疹痂疸皋皰益盍盎眩真眠眨矩砰砧砸砝破砷"], +["afa1","砥砭砠砟砲祕祐祠祟祖神祝祗祚秤秣秧租秦秩秘窄窈站笆笑粉紡紗紋紊素索純紐紕級紜納紙紛缺罟羔翅翁耆耘耕耙耗耽耿胱脂胰脅胭胴脆胸胳脈能脊胼胯臭臬舀舐航舫舨般芻茫荒荔荊茸荐草茵茴荏茲茹茶茗荀茱茨荃"], +["b040","虔蚊蚪蚓蚤蚩蚌蚣蚜衰衷袁袂衽衹記訐討訌訕訊託訓訖訏訑豈豺豹財貢起躬軒軔軏辱送逆迷退迺迴逃追逅迸邕郡郝郢酒配酌釘針釗釜釙閃院陣陡"], +["b0a1","陛陝除陘陞隻飢馬骨高鬥鬲鬼乾偺偽停假偃偌做偉健偶偎偕偵側偷偏倏偯偭兜冕凰剪副勒務勘動匐匏匙匿區匾參曼商啪啦啄啞啡啃啊唱啖問啕唯啤唸售啜唬啣唳啁啗圈國圉域堅堊堆埠埤基堂堵執培夠奢娶婁婉婦婪婀"], +["b140","娼婢婚婆婊孰寇寅寄寂宿密尉專將屠屜屝崇崆崎崛崖崢崑崩崔崙崤崧崗巢常帶帳帷康庸庶庵庾張強彗彬彩彫得徙從徘御徠徜恿患悉悠您惋悴惦悽"], +["b1a1","情悻悵惜悼惘惕惆惟悸惚惇戚戛扈掠控捲掖探接捷捧掘措捱掩掉掃掛捫推掄授掙採掬排掏掀捻捩捨捺敝敖救教敗啟敏敘敕敔斜斛斬族旋旌旎晝晚晤晨晦晞曹勗望梁梯梢梓梵桿桶梱梧梗械梃棄梭梆梅梔條梨梟梡梂欲殺"], +["b240","毫毬氫涎涼淳淙液淡淌淤添淺清淇淋涯淑涮淞淹涸混淵淅淒渚涵淚淫淘淪深淮淨淆淄涪淬涿淦烹焉焊烽烯爽牽犁猜猛猖猓猙率琅琊球理現琍瓠瓶"], +["b2a1","瓷甜產略畦畢異疏痔痕疵痊痍皎盔盒盛眷眾眼眶眸眺硫硃硎祥票祭移窒窕笠笨笛第符笙笞笮粒粗粕絆絃統紮紹紼絀細紳組累終紲紱缽羞羚翌翎習耜聊聆脯脖脣脫脩脰脤舂舵舷舶船莎莞莘荸莢莖莽莫莒莊莓莉莠荷荻荼"], +["b340","莆莧處彪蛇蛀蚶蛄蚵蛆蛋蚱蚯蛉術袞袈被袒袖袍袋覓規訪訝訣訥許設訟訛訢豉豚販責貫貨貪貧赧赦趾趺軛軟這逍通逗連速逝逐逕逞造透逢逖逛途"], +["b3a1","部郭都酗野釵釦釣釧釭釩閉陪陵陳陸陰陴陶陷陬雀雪雩章竟頂頃魚鳥鹵鹿麥麻傢傍傅備傑傀傖傘傚最凱割剴創剩勞勝勛博厥啻喀喧啼喊喝喘喂喜喪喔喇喋喃喳單喟唾喲喚喻喬喱啾喉喫喙圍堯堪場堤堰報堡堝堠壹壺奠"], +["b440","婷媚婿媒媛媧孳孱寒富寓寐尊尋就嵌嵐崴嵇巽幅帽幀幃幾廊廁廂廄弼彭復循徨惑惡悲悶惠愜愣惺愕惰惻惴慨惱愎惶愉愀愒戟扉掣掌描揀揩揉揆揍"], +["b4a1","插揣提握揖揭揮捶援揪換摒揚揹敞敦敢散斑斐斯普晰晴晶景暑智晾晷曾替期朝棺棕棠棘棗椅棟棵森棧棹棒棲棣棋棍植椒椎棉棚楮棻款欺欽殘殖殼毯氮氯氬港游湔渡渲湧湊渠渥渣減湛湘渤湖湮渭渦湯渴湍渺測湃渝渾滋"], +["b540","溉渙湎湣湄湲湩湟焙焚焦焰無然煮焜牌犄犀猶猥猴猩琺琪琳琢琥琵琶琴琯琛琦琨甥甦畫番痢痛痣痙痘痞痠登發皖皓皴盜睏短硝硬硯稍稈程稅稀窘"], +["b5a1","窗窖童竣等策筆筐筒答筍筋筏筑粟粥絞結絨絕紫絮絲絡給絢絰絳善翔翕耋聒肅腕腔腋腑腎脹腆脾腌腓腴舒舜菩萃菸萍菠菅萋菁華菱菴著萊菰萌菌菽菲菊萸萎萄菜萇菔菟虛蛟蛙蛭蛔蛛蛤蛐蛞街裁裂袱覃視註詠評詞証詁"], +["b640","詔詛詐詆訴診訶詖象貂貯貼貳貽賁費賀貴買貶貿貸越超趁跎距跋跚跑跌跛跆軻軸軼辜逮逵週逸進逶鄂郵鄉郾酣酥量鈔鈕鈣鈉鈞鈍鈐鈇鈑閔閏開閑"], +["b6a1","間閒閎隊階隋陽隅隆隍陲隄雁雅雄集雇雯雲韌項順須飧飪飯飩飲飭馮馭黃黍黑亂傭債傲傳僅傾催傷傻傯僇剿剷剽募勦勤勢勣匯嗟嗨嗓嗦嗎嗜嗇嗑嗣嗤嗯嗚嗡嗅嗆嗥嗉園圓塞塑塘塗塚塔填塌塭塊塢塒塋奧嫁嫉嫌媾媽媼"], +["b740","媳嫂媲嵩嵯幌幹廉廈弒彙徬微愚意慈感想愛惹愁愈慎慌慄慍愾愴愧愍愆愷戡戢搓搾搞搪搭搽搬搏搜搔損搶搖搗搆敬斟新暗暉暇暈暖暄暘暍會榔業"], +["b7a1","楚楷楠楔極椰概楊楨楫楞楓楹榆楝楣楛歇歲毀殿毓毽溢溯滓溶滂源溝滇滅溥溘溼溺溫滑準溜滄滔溪溧溴煎煙煩煤煉照煜煬煦煌煥煞煆煨煖爺牒猷獅猿猾瑯瑚瑕瑟瑞瑁琿瑙瑛瑜當畸瘀痰瘁痲痱痺痿痴痳盞盟睛睫睦睞督"], +["b840","睹睪睬睜睥睨睢矮碎碰碗碘碌碉硼碑碓硿祺祿禁萬禽稜稚稠稔稟稞窟窠筷節筠筮筧粱粳粵經絹綑綁綏絛置罩罪署義羨群聖聘肆肄腱腰腸腥腮腳腫"], +["b8a1","腹腺腦舅艇蒂葷落萱葵葦葫葉葬葛萼萵葡董葩葭葆虞虜號蛹蜓蜈蜇蜀蛾蛻蜂蜃蜆蜊衙裟裔裙補裘裝裡裊裕裒覜解詫該詳試詩詰誇詼詣誠話誅詭詢詮詬詹詻訾詨豢貊貉賊資賈賄貲賃賂賅跡跟跨路跳跺跪跤跦躲較載軾輊"], +["b940","辟農運遊道遂達逼違遐遇遏過遍遑逾遁鄒鄗酬酪酩釉鈷鉗鈸鈽鉀鈾鉛鉋鉤鉑鈴鉉鉍鉅鈹鈿鉚閘隘隔隕雍雋雉雊雷電雹零靖靴靶預頑頓頊頒頌飼飴"], +["b9a1","飽飾馳馱馴髡鳩麂鼎鼓鼠僧僮僥僖僭僚僕像僑僱僎僩兢凳劃劂匱厭嗾嘀嘛嘗嗽嘔嘆嘉嘍嘎嗷嘖嘟嘈嘐嗶團圖塵塾境墓墊塹墅塽壽夥夢夤奪奩嫡嫦嫩嫗嫖嫘嫣孵寞寧寡寥實寨寢寤察對屢嶄嶇幛幣幕幗幔廓廖弊彆彰徹慇"], +["ba40","愿態慷慢慣慟慚慘慵截撇摘摔撤摸摟摺摑摧搴摭摻敲斡旗旖暢暨暝榜榨榕槁榮槓構榛榷榻榫榴槐槍榭槌榦槃榣歉歌氳漳演滾漓滴漩漾漠漬漏漂漢"], +["baa1","滿滯漆漱漸漲漣漕漫漯澈漪滬漁滲滌滷熔熙煽熊熄熒爾犒犖獄獐瑤瑣瑪瑰瑭甄疑瘧瘍瘋瘉瘓盡監瞄睽睿睡磁碟碧碳碩碣禎福禍種稱窪窩竭端管箕箋筵算箝箔箏箸箇箄粹粽精綻綰綜綽綾綠緊綴網綱綺綢綿綵綸維緒緇綬"], +["bb40","罰翠翡翟聞聚肇腐膀膏膈膊腿膂臧臺與舔舞艋蓉蒿蓆蓄蒙蒞蒲蒜蓋蒸蓀蓓蒐蒼蓑蓊蜿蜜蜻蜢蜥蜴蜘蝕蜷蜩裳褂裴裹裸製裨褚裯誦誌語誣認誡誓誤"], +["bba1","說誥誨誘誑誚誧豪貍貌賓賑賒赫趙趕跼輔輒輕輓辣遠遘遜遣遙遞遢遝遛鄙鄘鄞酵酸酷酴鉸銀銅銘銖鉻銓銜銨鉼銑閡閨閩閣閥閤隙障際雌雒需靼鞅韶頗領颯颱餃餅餌餉駁骯骰髦魁魂鳴鳶鳳麼鼻齊億儀僻僵價儂儈儉儅凜"], +["bc40","劇劈劉劍劊勰厲嘮嘻嘹嘲嘿嘴嘩噓噎噗噴嘶嘯嘰墀墟增墳墜墮墩墦奭嬉嫻嬋嫵嬌嬈寮寬審寫層履嶝嶔幢幟幡廢廚廟廝廣廠彈影德徵慶慧慮慝慕憂"], +["bca1","慼慰慫慾憧憐憫憎憬憚憤憔憮戮摩摯摹撞撲撈撐撰撥撓撕撩撒撮播撫撚撬撙撢撳敵敷數暮暫暴暱樣樟槨樁樞標槽模樓樊槳樂樅槭樑歐歎殤毅毆漿潼澄潑潦潔澆潭潛潸潮澎潺潰潤澗潘滕潯潠潟熟熬熱熨牖犛獎獗瑩璋璃"], +["bd40","瑾璀畿瘠瘩瘟瘤瘦瘡瘢皚皺盤瞎瞇瞌瞑瞋磋磅確磊碾磕碼磐稿稼穀稽稷稻窯窮箭箱範箴篆篇篁箠篌糊締練緯緻緘緬緝編緣線緞緩綞緙緲緹罵罷羯"], +["bda1","翩耦膛膜膝膠膚膘蔗蔽蔚蓮蔬蔭蔓蔑蔣蔡蔔蓬蔥蓿蔆螂蝴蝶蝠蝦蝸蝨蝙蝗蝌蝓衛衝褐複褒褓褕褊誼諒談諄誕請諸課諉諂調誰論諍誶誹諛豌豎豬賠賞賦賤賬賭賢賣賜質賡赭趟趣踫踐踝踢踏踩踟踡踞躺輝輛輟輩輦輪輜輞"], +["be40","輥適遮遨遭遷鄰鄭鄧鄱醇醉醋醃鋅銻銷鋪銬鋤鋁銳銼鋒鋇鋰銲閭閱霄霆震霉靠鞍鞋鞏頡頫頜颳養餓餒餘駝駐駟駛駑駕駒駙骷髮髯鬧魅魄魷魯鴆鴉"], +["bea1","鴃麩麾黎墨齒儒儘儔儐儕冀冪凝劑劓勳噙噫噹噩噤噸噪器噥噱噯噬噢噶壁墾壇壅奮嬝嬴學寰導彊憲憑憩憊懍憶憾懊懈戰擅擁擋撻撼據擄擇擂操撿擒擔撾整曆曉暹曄曇暸樽樸樺橙橫橘樹橄橢橡橋橇樵機橈歙歷氅濂澱澡"], +["bf40","濃澤濁澧澳激澹澶澦澠澴熾燉燐燒燈燕熹燎燙燜燃燄獨璜璣璘璟璞瓢甌甍瘴瘸瘺盧盥瞠瞞瞟瞥磨磚磬磧禦積穎穆穌穋窺篙簑築篤篛篡篩篦糕糖縊"], +["bfa1","縑縈縛縣縞縝縉縐罹羲翰翱翮耨膳膩膨臻興艘艙蕊蕙蕈蕨蕩蕃蕉蕭蕪蕞螃螟螞螢融衡褪褲褥褫褡親覦諦諺諫諱謀諜諧諮諾謁謂諷諭諳諶諼豫豭貓賴蹄踱踴蹂踹踵輻輯輸輳辨辦遵遴選遲遼遺鄴醒錠錶鋸錳錯錢鋼錫錄錚"], +["c040","錐錦錡錕錮錙閻隧隨險雕霎霑霖霍霓霏靛靜靦鞘頰頸頻頷頭頹頤餐館餞餛餡餚駭駢駱骸骼髻髭鬨鮑鴕鴣鴦鴨鴒鴛默黔龍龜優償儡儲勵嚎嚀嚐嚅嚇"], +["c0a1","嚏壕壓壑壎嬰嬪嬤孺尷屨嶼嶺嶽嶸幫彌徽應懂懇懦懋戲戴擎擊擘擠擰擦擬擱擢擭斂斃曙曖檀檔檄檢檜櫛檣橾檗檐檠歜殮毚氈濘濱濟濠濛濤濫濯澀濬濡濩濕濮濰燧營燮燦燥燭燬燴燠爵牆獰獲璩環璦璨癆療癌盪瞳瞪瞰瞬"], +["c140","瞧瞭矯磷磺磴磯礁禧禪穗窿簇簍篾篷簌篠糠糜糞糢糟糙糝縮績繆縷縲繃縫總縱繅繁縴縹繈縵縿縯罄翳翼聱聲聰聯聳臆臃膺臂臀膿膽臉膾臨舉艱薪"], +["c1a1","薄蕾薜薑薔薯薛薇薨薊虧蟀蟑螳蟒蟆螫螻螺蟈蟋褻褶襄褸褽覬謎謗謙講謊謠謝謄謐豁谿豳賺賽購賸賻趨蹉蹋蹈蹊轄輾轂轅輿避遽還邁邂邀鄹醣醞醜鍍鎂錨鍵鍊鍥鍋錘鍾鍬鍛鍰鍚鍔闊闋闌闈闆隱隸雖霜霞鞠韓顆颶餵騁"], +["c240","駿鮮鮫鮪鮭鴻鴿麋黏點黜黝黛鼾齋叢嚕嚮壙壘嬸彝懣戳擴擲擾攆擺擻擷斷曜朦檳檬櫃檻檸櫂檮檯歟歸殯瀉瀋濾瀆濺瀑瀏燻燼燾燸獷獵璧璿甕癖癘"], +["c2a1","癒瞽瞿瞻瞼礎禮穡穢穠竄竅簫簧簪簞簣簡糧織繕繞繚繡繒繙罈翹翻職聶臍臏舊藏薩藍藐藉薰薺薹薦蟯蟬蟲蟠覆覲觴謨謹謬謫豐贅蹙蹣蹦蹤蹟蹕軀轉轍邇邃邈醫醬釐鎔鎊鎖鎢鎳鎮鎬鎰鎘鎚鎗闔闖闐闕離雜雙雛雞霤鞣鞦"], +["c340","鞭韹額顏題顎顓颺餾餿餽餮馥騎髁鬃鬆魏魎魍鯊鯉鯽鯈鯀鵑鵝鵠黠鼕鼬儳嚥壞壟壢寵龐廬懲懷懶懵攀攏曠曝櫥櫝櫚櫓瀛瀟瀨瀚瀝瀕瀘爆爍牘犢獸"], +["c3a1","獺璽瓊瓣疇疆癟癡矇礙禱穫穩簾簿簸簽簷籀繫繭繹繩繪羅繳羶羹羸臘藩藝藪藕藤藥藷蟻蠅蠍蟹蟾襠襟襖襞譁譜識證譚譎譏譆譙贈贊蹼蹲躇蹶蹬蹺蹴轔轎辭邊邋醱醮鏡鏑鏟鏃鏈鏜鏝鏖鏢鏍鏘鏤鏗鏨關隴難霪霧靡韜韻類"], +["c440","願顛颼饅饉騖騙鬍鯨鯧鯖鯛鶉鵡鵲鵪鵬麒麗麓麴勸嚨嚷嚶嚴嚼壤孀孃孽寶巉懸懺攘攔攙曦朧櫬瀾瀰瀲爐獻瓏癢癥礦礪礬礫竇競籌籃籍糯糰辮繽繼"], +["c4a1","纂罌耀臚艦藻藹蘑藺蘆蘋蘇蘊蠔蠕襤覺觸議譬警譯譟譫贏贍躉躁躅躂醴釋鐘鐃鏽闡霰飄饒饑馨騫騰騷騵鰓鰍鹹麵黨鼯齟齣齡儷儸囁囀囂夔屬巍懼懾攝攜斕曩櫻欄櫺殲灌爛犧瓖瓔癩矓籐纏續羼蘗蘭蘚蠣蠢蠡蠟襪襬覽譴"], +["c540","護譽贓躊躍躋轟辯醺鐮鐳鐵鐺鐸鐲鐫闢霸霹露響顧顥饗驅驃驀騾髏魔魑鰭鰥鶯鶴鷂鶸麝黯鼙齜齦齧儼儻囈囊囉孿巔巒彎懿攤權歡灑灘玀瓤疊癮癬"], +["c5a1","禳籠籟聾聽臟襲襯觼讀贖贗躑躓轡酈鑄鑑鑒霽霾韃韁顫饕驕驍髒鬚鱉鰱鰾鰻鷓鷗鼴齬齪龔囌巖戀攣攫攪曬欐瓚竊籤籣籥纓纖纔臢蘸蘿蠱變邐邏鑣鑠鑤靨顯饜驚驛驗髓體髑鱔鱗鱖鷥麟黴囑壩攬灞癱癲矗罐羈蠶蠹衢讓讒"], +["c640","讖艷贛釀鑪靂靈靄韆顰驟鬢魘鱟鷹鷺鹼鹽鼇齷齲廳欖灣籬籮蠻觀躡釁鑲鑰顱饞髖鬣黌灤矚讚鑷韉驢驥纜讜躪釅鑽鑾鑼鱷鱸黷豔鑿鸚爨驪鬱鸛鸞籲"], +["c940","乂乜凵匚厂万丌乇亍囗兀屮彳丏冇与丮亓仂仉仈冘勼卬厹圠夃夬尐巿旡殳毌气爿丱丼仨仜仩仡仝仚刌匜卌圢圣夗夯宁宄尒尻屴屳帄庀庂忉戉扐氕"], +["c9a1","氶汃氿氻犮犰玊禸肊阞伎优伬仵伔仱伀价伈伝伂伅伢伓伄仴伒冱刓刉刐劦匢匟卍厊吇囡囟圮圪圴夼妀奼妅奻奾奷奿孖尕尥屼屺屻屾巟幵庄异弚彴忕忔忏扜扞扤扡扦扢扙扠扚扥旯旮朾朹朸朻机朿朼朳氘汆汒汜汏汊汔汋"], +["ca40","汌灱牞犴犵玎甪癿穵网艸艼芀艽艿虍襾邙邗邘邛邔阢阤阠阣佖伻佢佉体佤伾佧佒佟佁佘伭伳伿佡冏冹刜刞刡劭劮匉卣卲厎厏吰吷吪呔呅吙吜吥吘"], +["caa1","吽呏呁吨吤呇囮囧囥坁坅坌坉坋坒夆奀妦妘妠妗妎妢妐妏妧妡宎宒尨尪岍岏岈岋岉岒岊岆岓岕巠帊帎庋庉庌庈庍弅弝彸彶忒忑忐忭忨忮忳忡忤忣忺忯忷忻怀忴戺抃抌抎抏抔抇扱扻扺扰抁抈扷扽扲扴攷旰旴旳旲旵杅杇"], +["cb40","杙杕杌杈杝杍杚杋毐氙氚汸汧汫沄沋沏汱汯汩沚汭沇沕沜汦汳汥汻沎灴灺牣犿犽狃狆狁犺狅玕玗玓玔玒町甹疔疕皁礽耴肕肙肐肒肜芐芏芅芎芑芓"], +["cba1","芊芃芄豸迉辿邟邡邥邞邧邠阰阨阯阭丳侘佼侅佽侀侇佶佴侉侄佷佌侗佪侚佹侁佸侐侜侔侞侒侂侕佫佮冞冼冾刵刲刳剆刱劼匊匋匼厒厔咇呿咁咑咂咈呫呺呾呥呬呴呦咍呯呡呠咘呣呧呤囷囹坯坲坭坫坱坰坶垀坵坻坳坴坢"], +["cc40","坨坽夌奅妵妺姏姎妲姌姁妶妼姃姖妱妽姀姈妴姇孢孥宓宕屄屇岮岤岠岵岯岨岬岟岣岭岢岪岧岝岥岶岰岦帗帔帙弨弢弣弤彔徂彾彽忞忥怭怦怙怲怋"], +["cca1","怴怊怗怳怚怞怬怢怍怐怮怓怑怌怉怜戔戽抭抴拑抾抪抶拊抮抳抯抻抩抰抸攽斨斻昉旼昄昒昈旻昃昋昍昅旽昑昐曶朊枅杬枎枒杶杻枘枆构杴枍枌杺枟枑枙枃杽极杸杹枔欥殀歾毞氝沓泬泫泮泙沶泔沭泧沷泐泂沺泃泆泭泲"], +["cd40","泒泝沴沊沝沀泞泀洰泍泇沰泹泏泩泑炔炘炅炓炆炄炑炖炂炚炃牪狖狋狘狉狜狒狔狚狌狑玤玡玭玦玢玠玬玝瓝瓨甿畀甾疌疘皯盳盱盰盵矸矼矹矻矺"], +["cda1","矷祂礿秅穸穻竻籵糽耵肏肮肣肸肵肭舠芠苀芫芚芘芛芵芧芮芼芞芺芴芨芡芩苂芤苃芶芢虰虯虭虮豖迒迋迓迍迖迕迗邲邴邯邳邰阹阽阼阺陃俍俅俓侲俉俋俁俔俜俙侻侳俛俇俖侺俀侹俬剄剉勀勂匽卼厗厖厙厘咺咡咭咥哏"], +["ce40","哃茍咷咮哖咶哅哆咠呰咼咢咾呲哞咰垵垞垟垤垌垗垝垛垔垘垏垙垥垚垕壴复奓姡姞姮娀姱姝姺姽姼姶姤姲姷姛姩姳姵姠姾姴姭宨屌峐峘峌峗峋峛"], +["cea1","峞峚峉峇峊峖峓峔峏峈峆峎峟峸巹帡帢帣帠帤庰庤庢庛庣庥弇弮彖徆怷怹恔恲恞恅恓恇恉恛恌恀恂恟怤恄恘恦恮扂扃拏挍挋拵挎挃拫拹挏挌拸拶挀挓挔拺挕拻拰敁敃斪斿昶昡昲昵昜昦昢昳昫昺昝昴昹昮朏朐柁柲柈枺"], +["cf40","柜枻柸柘柀枷柅柫柤柟枵柍枳柷柶柮柣柂枹柎柧柰枲柼柆柭柌枮柦柛柺柉柊柃柪柋欨殂殄殶毖毘毠氠氡洨洴洭洟洼洿洒洊泚洳洄洙洺洚洑洀洝浂"], +["cfa1","洁洘洷洃洏浀洇洠洬洈洢洉洐炷炟炾炱炰炡炴炵炩牁牉牊牬牰牳牮狊狤狨狫狟狪狦狣玅珌珂珈珅玹玶玵玴珫玿珇玾珃珆玸珋瓬瓮甮畇畈疧疪癹盄眈眃眄眅眊盷盻盺矧矨砆砑砒砅砐砏砎砉砃砓祊祌祋祅祄秕种秏秖秎窀"], +["d040","穾竑笀笁籺籸籹籿粀粁紃紈紁罘羑羍羾耇耎耏耔耷胘胇胠胑胈胂胐胅胣胙胜胊胕胉胏胗胦胍臿舡芔苙苾苹茇苨茀苕茺苫苖苴苬苡苲苵茌苻苶苰苪"], +["d0a1","苤苠苺苳苭虷虴虼虳衁衎衧衪衩觓訄訇赲迣迡迮迠郱邽邿郕郅邾郇郋郈釔釓陔陏陑陓陊陎倞倅倇倓倢倰倛俵俴倳倷倬俶俷倗倜倠倧倵倯倱倎党冔冓凊凄凅凈凎剡剚剒剞剟剕剢勍匎厞唦哢唗唒哧哳哤唚哿唄唈哫唑唅哱"], +["d140","唊哻哷哸哠唎唃唋圁圂埌堲埕埒垺埆垽垼垸垶垿埇埐垹埁夎奊娙娖娭娮娕娏娗娊娞娳孬宧宭宬尃屖屔峬峿峮峱峷崀峹帩帨庨庮庪庬弳弰彧恝恚恧"], +["d1a1","恁悢悈悀悒悁悝悃悕悛悗悇悜悎戙扆拲挐捖挬捄捅挶捃揤挹捋捊挼挩捁挴捘捔捙挭捇挳捚捑挸捗捀捈敊敆旆旃旄旂晊晟晇晑朒朓栟栚桉栲栳栻桋桏栖栱栜栵栫栭栯桎桄栴栝栒栔栦栨栮桍栺栥栠欬欯欭欱欴歭肂殈毦毤"], +["d240","毨毣毢毧氥浺浣浤浶洍浡涒浘浢浭浯涑涍淯浿涆浞浧浠涗浰浼浟涂涘洯浨涋浾涀涄洖涃浻浽浵涐烜烓烑烝烋缹烢烗烒烞烠烔烍烅烆烇烚烎烡牂牸"], +["d2a1","牷牶猀狺狴狾狶狳狻猁珓珙珥珖玼珧珣珩珜珒珛珔珝珚珗珘珨瓞瓟瓴瓵甡畛畟疰痁疻痄痀疿疶疺皊盉眝眛眐眓眒眣眑眕眙眚眢眧砣砬砢砵砯砨砮砫砡砩砳砪砱祔祛祏祜祓祒祑秫秬秠秮秭秪秜秞秝窆窉窅窋窌窊窇竘笐"], +["d340","笄笓笅笏笈笊笎笉笒粄粑粊粌粈粍粅紞紝紑紎紘紖紓紟紒紏紌罜罡罞罠罝罛羖羒翃翂翀耖耾耹胺胲胹胵脁胻脀舁舯舥茳茭荄茙荑茥荖茿荁茦茜茢"], +["d3a1","荂荎茛茪茈茼荍茖茤茠茷茯茩荇荅荌荓茞茬荋茧荈虓虒蚢蚨蚖蚍蚑蚞蚇蚗蚆蚋蚚蚅蚥蚙蚡蚧蚕蚘蚎蚝蚐蚔衃衄衭衵衶衲袀衱衿衯袃衾衴衼訒豇豗豻貤貣赶赸趵趷趶軑軓迾迵适迿迻逄迼迶郖郠郙郚郣郟郥郘郛郗郜郤酐"], +["d440","酎酏釕釢釚陜陟隼飣髟鬯乿偰偪偡偞偠偓偋偝偲偈偍偁偛偊偢倕偅偟偩偫偣偤偆偀偮偳偗偑凐剫剭剬剮勖勓匭厜啵啶唼啍啐唴唪啑啢唶唵唰啒啅"], +["d4a1","唌唲啥啎唹啈唭唻啀啋圊圇埻堔埢埶埜埴堀埭埽堈埸堋埳埏堇埮埣埲埥埬埡堎埼堐埧堁堌埱埩埰堍堄奜婠婘婕婧婞娸娵婭婐婟婥婬婓婤婗婃婝婒婄婛婈媎娾婍娹婌婰婩婇婑婖婂婜孲孮寁寀屙崞崋崝崚崠崌崨崍崦崥崏"], +["d540","崰崒崣崟崮帾帴庱庴庹庲庳弶弸徛徖徟悊悐悆悾悰悺惓惔惏惤惙惝惈悱惛悷惊悿惃惍惀挲捥掊掂捽掽掞掭掝掗掫掎捯掇掐据掯捵掜捭掮捼掤挻掟"], +["d5a1","捸掅掁掑掍捰敓旍晥晡晛晙晜晢朘桹梇梐梜桭桮梮梫楖桯梣梬梩桵桴梲梏桷梒桼桫桲梪梀桱桾梛梖梋梠梉梤桸桻梑梌梊桽欶欳欷欸殑殏殍殎殌氪淀涫涴涳湴涬淩淢涷淶淔渀淈淠淟淖涾淥淜淝淛淴淊涽淭淰涺淕淂淏淉"], +["d640","淐淲淓淽淗淍淣涻烺焍烷焗烴焌烰焄烳焐烼烿焆焓焀烸烶焋焂焎牾牻牼牿猝猗猇猑猘猊猈狿猏猞玈珶珸珵琄琁珽琇琀珺珼珿琌琋珴琈畤畣痎痒痏"], +["d6a1","痋痌痑痐皏皉盓眹眯眭眱眲眴眳眽眥眻眵硈硒硉硍硊硌砦硅硐祤祧祩祪祣祫祡离秺秸秶秷窏窔窐笵筇笴笥笰笢笤笳笘笪笝笱笫笭笯笲笸笚笣粔粘粖粣紵紽紸紶紺絅紬紩絁絇紾紿絊紻紨罣羕羜羝羛翊翋翍翐翑翇翏翉耟"], +["d740","耞耛聇聃聈脘脥脙脛脭脟脬脞脡脕脧脝脢舑舸舳舺舴舲艴莐莣莨莍荺荳莤荴莏莁莕莙荵莔莩荽莃莌莝莛莪莋荾莥莯莈莗莰荿莦莇莮荶莚虙虖蚿蚷"], +["d7a1","蛂蛁蛅蚺蚰蛈蚹蚳蚸蛌蚴蚻蚼蛃蚽蚾衒袉袕袨袢袪袚袑袡袟袘袧袙袛袗袤袬袌袓袎覂觖觙觕訰訧訬訞谹谻豜豝豽貥赽赻赹趼跂趹趿跁軘軞軝軜軗軠軡逤逋逑逜逌逡郯郪郰郴郲郳郔郫郬郩酖酘酚酓酕釬釴釱釳釸釤釹釪"], +["d840","釫釷釨釮镺閆閈陼陭陫陱陯隿靪頄飥馗傛傕傔傞傋傣傃傌傎傝偨傜傒傂傇兟凔匒匑厤厧喑喨喥喭啷噅喢喓喈喏喵喁喣喒喤啽喌喦啿喕喡喎圌堩堷"], +["d8a1","堙堞堧堣堨埵塈堥堜堛堳堿堶堮堹堸堭堬堻奡媯媔媟婺媢媞婸媦婼媥媬媕媮娷媄媊媗媃媋媩婻婽媌媜媏媓媝寪寍寋寔寑寊寎尌尰崷嵃嵫嵁嵋崿崵嵑嵎嵕崳崺嵒崽崱嵙嵂崹嵉崸崼崲崶嵀嵅幄幁彘徦徥徫惉悹惌惢惎惄愔"], +["d940","惲愊愖愅惵愓惸惼惾惁愃愘愝愐惿愄愋扊掔掱掰揎揥揨揯揃撝揳揊揠揶揕揲揵摡揟掾揝揜揄揘揓揂揇揌揋揈揰揗揙攲敧敪敤敜敨敥斌斝斞斮旐旒"], +["d9a1","晼晬晻暀晱晹晪晲朁椌棓椄棜椪棬棪棱椏棖棷棫棤棶椓椐棳棡椇棌椈楰梴椑棯棆椔棸棐棽棼棨椋椊椗棎棈棝棞棦棴棑椆棔棩椕椥棇欹欻欿欼殔殗殙殕殽毰毲毳氰淼湆湇渟湉溈渼渽湅湢渫渿湁湝湳渜渳湋湀湑渻渃渮湞"], +["da40","湨湜湡渱渨湠湱湫渹渢渰湓湥渧湸湤湷湕湹湒湦渵渶湚焠焞焯烻焮焱焣焥焢焲焟焨焺焛牋牚犈犉犆犅犋猒猋猰猢猱猳猧猲猭猦猣猵猌琮琬琰琫琖"], +["daa1","琚琡琭琱琤琣琝琩琠琲瓻甯畯畬痧痚痡痦痝痟痤痗皕皒盚睆睇睄睍睅睊睎睋睌矞矬硠硤硥硜硭硱硪确硰硩硨硞硢祴祳祲祰稂稊稃稌稄窙竦竤筊笻筄筈筌筎筀筘筅粢粞粨粡絘絯絣絓絖絧絪絏絭絜絫絒絔絩絑絟絎缾缿罥"], +["db40","罦羢羠羡翗聑聏聐胾胔腃腊腒腏腇脽腍脺臦臮臷臸臹舄舼舽舿艵茻菏菹萣菀菨萒菧菤菼菶萐菆菈菫菣莿萁菝菥菘菿菡菋菎菖菵菉萉萏菞萑萆菂菳"], +["dba1","菕菺菇菑菪萓菃菬菮菄菻菗菢萛菛菾蛘蛢蛦蛓蛣蛚蛪蛝蛫蛜蛬蛩蛗蛨蛑衈衖衕袺裗袹袸裀袾袶袼袷袽袲褁裉覕覘覗觝觚觛詎詍訹詙詀詗詘詄詅詒詈詑詊詌詏豟貁貀貺貾貰貹貵趄趀趉跘跓跍跇跖跜跏跕跙跈跗跅軯軷軺"], +["dc40","軹軦軮軥軵軧軨軶軫軱軬軴軩逭逴逯鄆鄬鄄郿郼鄈郹郻鄁鄀鄇鄅鄃酡酤酟酢酠鈁鈊鈥鈃鈚鈦鈏鈌鈀鈒釿釽鈆鈄鈧鈂鈜鈤鈙鈗鈅鈖镻閍閌閐隇陾隈"], +["dca1","隉隃隀雂雈雃雱雰靬靰靮頇颩飫鳦黹亃亄亶傽傿僆傮僄僊傴僈僂傰僁傺傱僋僉傶傸凗剺剸剻剼嗃嗛嗌嗐嗋嗊嗝嗀嗔嗄嗩喿嗒喍嗏嗕嗢嗖嗈嗲嗍嗙嗂圔塓塨塤塏塍塉塯塕塎塝塙塥塛堽塣塱壼嫇嫄嫋媺媸媱媵媰媿嫈媻嫆"], +["dd40","媷嫀嫊媴媶嫍媹媐寖寘寙尟尳嵱嵣嵊嵥嵲嵬嵞嵨嵧嵢巰幏幎幊幍幋廅廌廆廋廇彀徯徭惷慉慊愫慅愶愲愮慆愯慏愩慀戠酨戣戥戤揅揱揫搐搒搉搠搤"], +["dda1","搳摃搟搕搘搹搷搢搣搌搦搰搨摁搵搯搊搚摀搥搧搋揧搛搮搡搎敯斒旓暆暌暕暐暋暊暙暔晸朠楦楟椸楎楢楱椿楅楪椹楂楗楙楺楈楉椵楬椳椽楥棰楸椴楩楀楯楄楶楘楁楴楌椻楋椷楜楏楑椲楒椯楻椼歆歅歃歂歈歁殛嗀毻毼"], +["de40","毹毷毸溛滖滈溏滀溟溓溔溠溱溹滆滒溽滁溞滉溷溰滍溦滏溲溾滃滜滘溙溒溎溍溤溡溿溳滐滊溗溮溣煇煔煒煣煠煁煝煢煲煸煪煡煂煘煃煋煰煟煐煓"], +["dea1","煄煍煚牏犍犌犑犐犎猼獂猻猺獀獊獉瑄瑊瑋瑒瑑瑗瑀瑏瑐瑎瑂瑆瑍瑔瓡瓿瓾瓽甝畹畷榃痯瘏瘃痷痾痼痹痸瘐痻痶痭痵痽皙皵盝睕睟睠睒睖睚睩睧睔睙睭矠碇碚碔碏碄碕碅碆碡碃硹碙碀碖硻祼禂祽祹稑稘稙稒稗稕稢稓"], +["df40","稛稐窣窢窞竫筦筤筭筴筩筲筥筳筱筰筡筸筶筣粲粴粯綈綆綀綍絿綅絺綎絻綃絼綌綔綄絽綒罭罫罧罨罬羦羥羧翛翜耡腤腠腷腜腩腛腢腲朡腞腶腧腯"], +["dfa1","腄腡舝艉艄艀艂艅蓱萿葖葶葹蒏蒍葥葑葀蒆葧萰葍葽葚葙葴葳葝蔇葞萷萺萴葺葃葸萲葅萩菙葋萯葂萭葟葰萹葎葌葒葯蓅蒎萻葇萶萳葨葾葄萫葠葔葮葐蜋蜄蛷蜌蛺蛖蛵蝍蛸蜎蜉蜁蛶蜍蜅裖裋裍裎裞裛裚裌裐覅覛觟觥觤"], +["e040","觡觠觢觜触詶誆詿詡訿詷誂誄詵誃誁詴詺谼豋豊豥豤豦貆貄貅賌赨赩趑趌趎趏趍趓趔趐趒跰跠跬跱跮跐跩跣跢跧跲跫跴輆軿輁輀輅輇輈輂輋遒逿"], +["e0a1","遄遉逽鄐鄍鄏鄑鄖鄔鄋鄎酮酯鉈鉒鈰鈺鉦鈳鉥鉞銃鈮鉊鉆鉭鉬鉏鉠鉧鉯鈶鉡鉰鈱鉔鉣鉐鉲鉎鉓鉌鉖鈲閟閜閞閛隒隓隑隗雎雺雽雸雵靳靷靸靲頏頍頎颬飶飹馯馲馰馵骭骫魛鳪鳭鳧麀黽僦僔僗僨僳僛僪僝僤僓僬僰僯僣僠"], +["e140","凘劀劁勩勫匰厬嘧嘕嘌嘒嗼嘏嘜嘁嘓嘂嗺嘝嘄嗿嗹墉塼墐墘墆墁塿塴墋塺墇墑墎塶墂墈塻墔墏壾奫嫜嫮嫥嫕嫪嫚嫭嫫嫳嫢嫠嫛嫬嫞嫝嫙嫨嫟孷寠"], +["e1a1","寣屣嶂嶀嵽嶆嵺嶁嵷嶊嶉嶈嵾嵼嶍嵹嵿幘幙幓廘廑廗廎廜廕廙廒廔彄彃彯徶愬愨慁慞慱慳慒慓慲慬憀慴慔慺慛慥愻慪慡慖戩戧戫搫摍摛摝摴摶摲摳摽摵摦撦摎撂摞摜摋摓摠摐摿搿摬摫摙摥摷敳斠暡暠暟朅朄朢榱榶槉"], +["e240","榠槎榖榰榬榼榑榙榎榧榍榩榾榯榿槄榽榤槔榹槊榚槏榳榓榪榡榞槙榗榐槂榵榥槆歊歍歋殞殟殠毃毄毾滎滵滱漃漥滸漷滻漮漉潎漙漚漧漘漻漒滭漊"], +["e2a1","漶潳滹滮漭潀漰漼漵滫漇漎潃漅滽滶漹漜滼漺漟漍漞漈漡熇熐熉熀熅熂熏煻熆熁熗牄牓犗犕犓獃獍獑獌瑢瑳瑱瑵瑲瑧瑮甀甂甃畽疐瘖瘈瘌瘕瘑瘊瘔皸瞁睼瞅瞂睮瞀睯睾瞃碲碪碴碭碨硾碫碞碥碠碬碢碤禘禊禋禖禕禔禓"], +["e340","禗禈禒禐稫穊稰稯稨稦窨窫窬竮箈箜箊箑箐箖箍箌箛箎箅箘劄箙箤箂粻粿粼粺綧綷緂綣綪緁緀緅綝緎緄緆緋緌綯綹綖綼綟綦綮綩綡緉罳翢翣翥翞"], +["e3a1","耤聝聜膉膆膃膇膍膌膋舕蒗蒤蒡蒟蒺蓎蓂蒬蒮蒫蒹蒴蓁蓍蒪蒚蒱蓐蒝蒧蒻蒢蒔蓇蓌蒛蒩蒯蒨蓖蒘蒶蓏蒠蓗蓔蓒蓛蒰蒑虡蜳蜣蜨蝫蝀蜮蜞蜡蜙蜛蝃蜬蝁蜾蝆蜠蜲蜪蜭蜼蜒蜺蜱蜵蝂蜦蜧蜸蜤蜚蜰蜑裷裧裱裲裺裾裮裼裶裻"], +["e440","裰裬裫覝覡覟覞觩觫觨誫誙誋誒誏誖谽豨豩賕賏賗趖踉踂跿踍跽踊踃踇踆踅跾踀踄輐輑輎輍鄣鄜鄠鄢鄟鄝鄚鄤鄡鄛酺酲酹酳銥銤鉶銛鉺銠銔銪銍"], +["e4a1","銦銚銫鉹銗鉿銣鋮銎銂銕銢鉽銈銡銊銆銌銙銧鉾銇銩銝銋鈭隞隡雿靘靽靺靾鞃鞀鞂靻鞄鞁靿韎韍頖颭颮餂餀餇馝馜駃馹馻馺駂馽駇骱髣髧鬾鬿魠魡魟鳱鳲鳵麧僿儃儰僸儆儇僶僾儋儌僽儊劋劌勱勯噈噂噌嘵噁噊噉噆噘"], +["e540","噚噀嘳嘽嘬嘾嘸嘪嘺圚墫墝墱墠墣墯墬墥墡壿嫿嫴嫽嫷嫶嬃嫸嬂嫹嬁嬇嬅嬏屧嶙嶗嶟嶒嶢嶓嶕嶠嶜嶡嶚嶞幩幝幠幜緳廛廞廡彉徲憋憃慹憱憰憢憉"], +["e5a1","憛憓憯憭憟憒憪憡憍慦憳戭摮摰撖撠撅撗撜撏撋撊撌撣撟摨撱撘敶敺敹敻斲斳暵暰暩暲暷暪暯樀樆樗槥槸樕槱槤樠槿槬槢樛樝槾樧槲槮樔槷槧橀樈槦槻樍槼槫樉樄樘樥樏槶樦樇槴樖歑殥殣殢殦氁氀毿氂潁漦潾澇濆澒"], +["e640","澍澉澌潢潏澅潚澖潶潬澂潕潲潒潐潗澔澓潝漀潡潫潽潧澐潓澋潩潿澕潣潷潪潻熲熯熛熰熠熚熩熵熝熥熞熤熡熪熜熧熳犘犚獘獒獞獟獠獝獛獡獚獙"], +["e6a1","獢璇璉璊璆璁瑽璅璈瑼瑹甈甇畾瘥瘞瘙瘝瘜瘣瘚瘨瘛皜皝皞皛瞍瞏瞉瞈磍碻磏磌磑磎磔磈磃磄磉禚禡禠禜禢禛歶稹窲窴窳箷篋箾箬篎箯箹篊箵糅糈糌糋緷緛緪緧緗緡縃緺緦緶緱緰緮緟罶羬羰羭翭翫翪翬翦翨聤聧膣膟"], +["e740","膞膕膢膙膗舖艏艓艒艐艎艑蔤蔻蔏蔀蔩蔎蔉蔍蔟蔊蔧蔜蓻蔫蓺蔈蔌蓴蔪蓲蔕蓷蓫蓳蓼蔒蓪蓩蔖蓾蔨蔝蔮蔂蓽蔞蓶蔱蔦蓧蓨蓰蓯蓹蔘蔠蔰蔋蔙蔯虢"], +["e7a1","蝖蝣蝤蝷蟡蝳蝘蝔蝛蝒蝡蝚蝑蝞蝭蝪蝐蝎蝟蝝蝯蝬蝺蝮蝜蝥蝏蝻蝵蝢蝧蝩衚褅褌褔褋褗褘褙褆褖褑褎褉覢覤覣觭觰觬諏諆誸諓諑諔諕誻諗誾諀諅諘諃誺誽諙谾豍貏賥賟賙賨賚賝賧趠趜趡趛踠踣踥踤踮踕踛踖踑踙踦踧"], +["e840","踔踒踘踓踜踗踚輬輤輘輚輠輣輖輗遳遰遯遧遫鄯鄫鄩鄪鄲鄦鄮醅醆醊醁醂醄醀鋐鋃鋄鋀鋙銶鋏鋱鋟鋘鋩鋗鋝鋌鋯鋂鋨鋊鋈鋎鋦鋍鋕鋉鋠鋞鋧鋑鋓"], +["e8a1","銵鋡鋆銴镼閬閫閮閰隤隢雓霅霈霂靚鞊鞎鞈韐韏頞頝頦頩頨頠頛頧颲餈飺餑餔餖餗餕駜駍駏駓駔駎駉駖駘駋駗駌骳髬髫髳髲髱魆魃魧魴魱魦魶魵魰魨魤魬鳼鳺鳽鳿鳷鴇鴀鳹鳻鴈鴅鴄麃黓鼏鼐儜儓儗儚儑凞匴叡噰噠噮"], +["e940","噳噦噣噭噲噞噷圜圛壈墽壉墿墺壂墼壆嬗嬙嬛嬡嬔嬓嬐嬖嬨嬚嬠嬞寯嶬嶱嶩嶧嶵嶰嶮嶪嶨嶲嶭嶯嶴幧幨幦幯廩廧廦廨廥彋徼憝憨憖懅憴懆懁懌憺"], +["e9a1","憿憸憌擗擖擐擏擉撽撉擃擛擳擙攳敿敼斢曈暾曀曊曋曏暽暻暺曌朣樴橦橉橧樲橨樾橝橭橶橛橑樨橚樻樿橁橪橤橐橏橔橯橩橠樼橞橖橕橍橎橆歕歔歖殧殪殫毈毇氄氃氆澭濋澣濇澼濎濈潞濄澽澞濊澨瀄澥澮澺澬澪濏澿澸"], +["ea40","澢濉澫濍澯澲澰燅燂熿熸燖燀燁燋燔燊燇燏熽燘熼燆燚燛犝犞獩獦獧獬獥獫獪瑿璚璠璔璒璕璡甋疀瘯瘭瘱瘽瘳瘼瘵瘲瘰皻盦瞚瞝瞡瞜瞛瞢瞣瞕瞙"], +["eaa1","瞗磝磩磥磪磞磣磛磡磢磭磟磠禤穄穈穇窶窸窵窱窷篞篣篧篝篕篥篚篨篹篔篪篢篜篫篘篟糒糔糗糐糑縒縡縗縌縟縠縓縎縜縕縚縢縋縏縖縍縔縥縤罃罻罼罺羱翯耪耩聬膱膦膮膹膵膫膰膬膴膲膷膧臲艕艖艗蕖蕅蕫蕍蕓蕡蕘"], +["eb40","蕀蕆蕤蕁蕢蕄蕑蕇蕣蔾蕛蕱蕎蕮蕵蕕蕧蕠薌蕦蕝蕔蕥蕬虣虥虤螛螏螗螓螒螈螁螖螘蝹螇螣螅螐螑螝螄螔螜螚螉褞褦褰褭褮褧褱褢褩褣褯褬褟觱諠"], +["eba1","諢諲諴諵諝謔諤諟諰諈諞諡諨諿諯諻貑貒貐賵賮賱賰賳赬赮趥趧踳踾踸蹀蹅踶踼踽蹁踰踿躽輶輮輵輲輹輷輴遶遹遻邆郺鄳鄵鄶醓醐醑醍醏錧錞錈錟錆錏鍺錸錼錛錣錒錁鍆錭錎錍鋋錝鋺錥錓鋹鋷錴錂錤鋿錩錹錵錪錔錌"], +["ec40","錋鋾錉錀鋻錖閼闍閾閹閺閶閿閵閽隩雔霋霒霐鞙鞗鞔韰韸頵頯頲餤餟餧餩馞駮駬駥駤駰駣駪駩駧骹骿骴骻髶髺髹髷鬳鮀鮅鮇魼魾魻鮂鮓鮒鮐魺鮕"], +["eca1","魽鮈鴥鴗鴠鴞鴔鴩鴝鴘鴢鴐鴙鴟麈麆麇麮麭黕黖黺鼒鼽儦儥儢儤儠儩勴嚓嚌嚍嚆嚄嚃噾嚂噿嚁壖壔壏壒嬭嬥嬲嬣嬬嬧嬦嬯嬮孻寱寲嶷幬幪徾徻懃憵憼懧懠懥懤懨懞擯擩擣擫擤擨斁斀斶旚曒檍檖檁檥檉檟檛檡檞檇檓檎"], +["ed40","檕檃檨檤檑橿檦檚檅檌檒歛殭氉濌澩濴濔濣濜濭濧濦濞濲濝濢濨燡燱燨燲燤燰燢獳獮獯璗璲璫璐璪璭璱璥璯甐甑甒甏疄癃癈癉癇皤盩瞵瞫瞲瞷瞶"], +["eda1","瞴瞱瞨矰磳磽礂磻磼磲礅磹磾礄禫禨穜穛穖穘穔穚窾竀竁簅簏篲簀篿篻簎篴簋篳簂簉簃簁篸篽簆篰篱簐簊糨縭縼繂縳顈縸縪繉繀繇縩繌縰縻縶繄縺罅罿罾罽翴翲耬膻臄臌臊臅臇膼臩艛艚艜薃薀薏薧薕薠薋薣蕻薤薚薞"], +["ee40","蕷蕼薉薡蕺蕸蕗薎薖薆薍薙薝薁薢薂薈薅蕹蕶薘薐薟虨螾螪螭蟅螰螬螹螵螼螮蟉蟃蟂蟌螷螯蟄蟊螴螶螿螸螽蟞螲褵褳褼褾襁襒褷襂覭覯覮觲觳謞"], +["eea1","謘謖謑謅謋謢謏謒謕謇謍謈謆謜謓謚豏豰豲豱豯貕貔賹赯蹎蹍蹓蹐蹌蹇轃轀邅遾鄸醚醢醛醙醟醡醝醠鎡鎃鎯鍤鍖鍇鍼鍘鍜鍶鍉鍐鍑鍠鍭鎏鍌鍪鍹鍗鍕鍒鍏鍱鍷鍻鍡鍞鍣鍧鎀鍎鍙闇闀闉闃闅閷隮隰隬霠霟霘霝霙鞚鞡鞜"], +["ef40","鞞鞝韕韔韱顁顄顊顉顅顃餥餫餬餪餳餲餯餭餱餰馘馣馡騂駺駴駷駹駸駶駻駽駾駼騃骾髾髽鬁髼魈鮚鮨鮞鮛鮦鮡鮥鮤鮆鮢鮠鮯鴳鵁鵧鴶鴮鴯鴱鴸鴰"], +["efa1","鵅鵂鵃鴾鴷鵀鴽翵鴭麊麉麍麰黈黚黻黿鼤鼣鼢齔龠儱儭儮嚘嚜嚗嚚嚝嚙奰嬼屩屪巀幭幮懘懟懭懮懱懪懰懫懖懩擿攄擽擸攁攃擼斔旛曚曛曘櫅檹檽櫡櫆檺檶檷櫇檴檭歞毉氋瀇瀌瀍瀁瀅瀔瀎濿瀀濻瀦濼濷瀊爁燿燹爃燽獶"], +["f040","璸瓀璵瓁璾璶璻瓂甔甓癜癤癙癐癓癗癚皦皽盬矂瞺磿礌礓礔礉礐礒礑禭禬穟簜簩簙簠簟簭簝簦簨簢簥簰繜繐繖繣繘繢繟繑繠繗繓羵羳翷翸聵臑臒"], +["f0a1","臐艟艞薴藆藀藃藂薳薵薽藇藄薿藋藎藈藅薱薶藒蘤薸薷薾虩蟧蟦蟢蟛蟫蟪蟥蟟蟳蟤蟔蟜蟓蟭蟘蟣螤蟗蟙蠁蟴蟨蟝襓襋襏襌襆襐襑襉謪謧謣謳謰謵譇謯謼謾謱謥謷謦謶謮謤謻謽謺豂豵貙貘貗賾贄贂贀蹜蹢蹠蹗蹖蹞蹥蹧"], +["f140","蹛蹚蹡蹝蹩蹔轆轇轈轋鄨鄺鄻鄾醨醥醧醯醪鎵鎌鎒鎷鎛鎝鎉鎧鎎鎪鎞鎦鎕鎈鎙鎟鎍鎱鎑鎲鎤鎨鎴鎣鎥闒闓闑隳雗雚巂雟雘雝霣霢霥鞬鞮鞨鞫鞤鞪"], +["f1a1","鞢鞥韗韙韖韘韺顐顑顒颸饁餼餺騏騋騉騍騄騑騊騅騇騆髀髜鬈鬄鬅鬩鬵魊魌魋鯇鯆鯃鮿鯁鮵鮸鯓鮶鯄鮹鮽鵜鵓鵏鵊鵛鵋鵙鵖鵌鵗鵒鵔鵟鵘鵚麎麌黟鼁鼀鼖鼥鼫鼪鼩鼨齌齕儴儵劖勷厴嚫嚭嚦嚧嚪嚬壚壝壛夒嬽嬾嬿巃幰"], +["f240","徿懻攇攐攍攉攌攎斄旞旝曞櫧櫠櫌櫑櫙櫋櫟櫜櫐櫫櫏櫍櫞歠殰氌瀙瀧瀠瀖瀫瀡瀢瀣瀩瀗瀤瀜瀪爌爊爇爂爅犥犦犤犣犡瓋瓅璷瓃甖癠矉矊矄矱礝礛"], +["f2a1","礡礜礗礞禰穧穨簳簼簹簬簻糬糪繶繵繸繰繷繯繺繲繴繨罋罊羃羆羷翽翾聸臗臕艤艡艣藫藱藭藙藡藨藚藗藬藲藸藘藟藣藜藑藰藦藯藞藢蠀蟺蠃蟶蟷蠉蠌蠋蠆蟼蠈蟿蠊蠂襢襚襛襗襡襜襘襝襙覈覷覶觶譐譈譊譀譓譖譔譋譕"], +["f340","譑譂譒譗豃豷豶貚贆贇贉趬趪趭趫蹭蹸蹳蹪蹯蹻軂轒轑轏轐轓辴酀鄿醰醭鏞鏇鏏鏂鏚鏐鏹鏬鏌鏙鎩鏦鏊鏔鏮鏣鏕鏄鏎鏀鏒鏧镽闚闛雡霩霫霬霨霦"], +["f3a1","鞳鞷鞶韝韞韟顜顙顝顗颿颽颻颾饈饇饃馦馧騚騕騥騝騤騛騢騠騧騣騞騜騔髂鬋鬊鬎鬌鬷鯪鯫鯠鯞鯤鯦鯢鯰鯔鯗鯬鯜鯙鯥鯕鯡鯚鵷鶁鶊鶄鶈鵱鶀鵸鶆鶋鶌鵽鵫鵴鵵鵰鵩鶅鵳鵻鶂鵯鵹鵿鶇鵨麔麑黀黼鼭齀齁齍齖齗齘匷嚲"], +["f440","嚵嚳壣孅巆巇廮廯忀忁懹攗攖攕攓旟曨曣曤櫳櫰櫪櫨櫹櫱櫮櫯瀼瀵瀯瀷瀴瀱灂瀸瀿瀺瀹灀瀻瀳灁爓爔犨獽獼璺皫皪皾盭矌矎矏矍矲礥礣礧礨礤礩"], +["f4a1","禲穮穬穭竷籉籈籊籇籅糮繻繾纁纀羺翿聹臛臙舋艨艩蘢藿蘁藾蘛蘀藶蘄蘉蘅蘌藽蠙蠐蠑蠗蠓蠖襣襦覹觷譠譪譝譨譣譥譧譭趮躆躈躄轙轖轗轕轘轚邍酃酁醷醵醲醳鐋鐓鏻鐠鐏鐔鏾鐕鐐鐨鐙鐍鏵鐀鏷鐇鐎鐖鐒鏺鐉鏸鐊鏿"], +["f540","鏼鐌鏶鐑鐆闞闠闟霮霯鞹鞻韽韾顠顢顣顟飁飂饐饎饙饌饋饓騲騴騱騬騪騶騩騮騸騭髇髊髆鬐鬒鬑鰋鰈鯷鰅鰒鯸鱀鰇鰎鰆鰗鰔鰉鶟鶙鶤鶝鶒鶘鶐鶛"], +["f5a1","鶠鶔鶜鶪鶗鶡鶚鶢鶨鶞鶣鶿鶩鶖鶦鶧麙麛麚黥黤黧黦鼰鼮齛齠齞齝齙龑儺儹劘劗囃嚽嚾孈孇巋巏廱懽攛欂櫼欃櫸欀灃灄灊灈灉灅灆爝爚爙獾甗癪矐礭礱礯籔籓糲纊纇纈纋纆纍罍羻耰臝蘘蘪蘦蘟蘣蘜蘙蘧蘮蘡蘠蘩蘞蘥"], +["f640","蠩蠝蠛蠠蠤蠜蠫衊襭襩襮襫觺譹譸譅譺譻贐贔趯躎躌轞轛轝酆酄酅醹鐿鐻鐶鐩鐽鐼鐰鐹鐪鐷鐬鑀鐱闥闤闣霵霺鞿韡顤飉飆飀饘饖騹騽驆驄驂驁騺"], +["f6a1","騿髍鬕鬗鬘鬖鬺魒鰫鰝鰜鰬鰣鰨鰩鰤鰡鶷鶶鶼鷁鷇鷊鷏鶾鷅鷃鶻鶵鷎鶹鶺鶬鷈鶱鶭鷌鶳鷍鶲鹺麜黫黮黭鼛鼘鼚鼱齎齥齤龒亹囆囅囋奱孋孌巕巑廲攡攠攦攢欋欈欉氍灕灖灗灒爞爟犩獿瓘瓕瓙瓗癭皭礵禴穰穱籗籜籙籛籚"], +["f740","糴糱纑罏羇臞艫蘴蘵蘳蘬蘲蘶蠬蠨蠦蠪蠥襱覿覾觻譾讄讂讆讅譿贕躕躔躚躒躐躖躗轠轢酇鑌鑐鑊鑋鑏鑇鑅鑈鑉鑆霿韣顪顩飋饔饛驎驓驔驌驏驈驊"], +["f7a1","驉驒驐髐鬙鬫鬻魖魕鱆鱈鰿鱄鰹鰳鱁鰼鰷鰴鰲鰽鰶鷛鷒鷞鷚鷋鷐鷜鷑鷟鷩鷙鷘鷖鷵鷕鷝麶黰鼵鼳鼲齂齫龕龢儽劙壨壧奲孍巘蠯彏戁戃戄攩攥斖曫欑欒欏毊灛灚爢玂玁玃癰矔籧籦纕艬蘺虀蘹蘼蘱蘻蘾蠰蠲蠮蠳襶襴襳觾"], +["f840","讌讎讋讈豅贙躘轤轣醼鑢鑕鑝鑗鑞韄韅頀驖驙鬞鬟鬠鱒鱘鱐鱊鱍鱋鱕鱙鱌鱎鷻鷷鷯鷣鷫鷸鷤鷶鷡鷮鷦鷲鷰鷢鷬鷴鷳鷨鷭黂黐黲黳鼆鼜鼸鼷鼶齃齏"], +["f8a1","齱齰齮齯囓囍孎屭攭曭曮欓灟灡灝灠爣瓛瓥矕礸禷禶籪纗羉艭虃蠸蠷蠵衋讔讕躞躟躠躝醾醽釂鑫鑨鑩雥靆靃靇韇韥驞髕魙鱣鱧鱦鱢鱞鱠鸂鷾鸇鸃鸆鸅鸀鸁鸉鷿鷽鸄麠鼞齆齴齵齶囔攮斸欘欙欗欚灢爦犪矘矙礹籩籫糶纚"], +["f940","纘纛纙臠臡虆虇虈襹襺襼襻觿讘讙躥躤躣鑮鑭鑯鑱鑳靉顲饟鱨鱮鱭鸋鸍鸐鸏鸒鸑麡黵鼉齇齸齻齺齹圞灦籯蠼趲躦釃鑴鑸鑶鑵驠鱴鱳鱱鱵鸔鸓黶鼊"], +["f9a1","龤灨灥糷虪蠾蠽蠿讞貜躩軉靋顳顴飌饡馫驤驦驧鬤鸕鸗齈戇欞爧虌躨钂钀钁驩驨鬮鸙爩虋讟钃鱹麷癵驫鱺鸝灩灪麤齾齉龘碁銹裏墻恒粧嫺╔╦╗╠╬╣╚╩╝╒╤╕╞╪╡╘╧╛╓╥╖╟╫╢╙╨╜║═╭╮╰╯▓"] +] diff --git a/node_modules/iconv-lite/encodings/tables/eucjp.json b/node_modules/iconv-lite/encodings/tables/eucjp.json new file mode 100644 index 000000000..4fa61ca11 --- /dev/null +++ b/node_modules/iconv-lite/encodings/tables/eucjp.json @@ -0,0 +1,182 @@ +[ +["0","\u0000",127], +["8ea1","。",62], +["a1a1"," 、。,.・:;?!゛゜´`¨^ ̄_ヽヾゝゞ〃仝々〆〇ー―‐/\~∥|…‥‘’“”()〔〕[]{}〈",9,"+-±×÷=≠<>≦≧∞∴♂♀°′″℃¥$¢£%#&*@§☆★○●◎◇"], +["a2a1","◆□■△▲▽▼※〒→←↑↓〓"], +["a2ba","∈∋⊆⊇⊂⊃∪∩"], +["a2ca","∧∨¬⇒⇔∀∃"], +["a2dc","∠⊥⌒∂∇≡≒≪≫√∽∝∵∫∬"], +["a2f2","ʼn♯♭♪†‡¶"], +["a2fe","◯"], +["a3b0","0",9], +["a3c1","A",25], +["a3e1","a",25], +["a4a1","ぁ",82], +["a5a1","ァ",85], +["a6a1","Α",16,"Σ",6], +["a6c1","α",16,"σ",6], +["a7a1","А",5,"ЁЖ",25], +["a7d1","а",5,"ёж",25], +["a8a1","─│┌┐┘└├┬┤┴┼━┃┏┓┛┗┣┳┫┻╋┠┯┨┷┿┝┰┥┸╂"], +["ada1","①",19,"Ⅰ",9], +["adc0","㍉㌔㌢㍍㌘㌧㌃㌶㍑㍗㌍㌦㌣㌫㍊㌻㎜㎝㎞㎎㎏㏄㎡"], +["addf","㍻〝〟№㏍℡㊤",4,"㈱㈲㈹㍾㍽㍼≒≡∫∮∑√⊥∠∟⊿∵∩∪"], +["b0a1","亜唖娃阿哀愛挨姶逢葵茜穐悪握渥旭葦芦鯵梓圧斡扱宛姐虻飴絢綾鮎或粟袷安庵按暗案闇鞍杏以伊位依偉囲夷委威尉惟意慰易椅為畏異移維緯胃萎衣謂違遺医井亥域育郁磯一壱溢逸稲茨芋鰯允印咽員因姻引飲淫胤蔭"], +["b1a1","院陰隠韻吋右宇烏羽迂雨卯鵜窺丑碓臼渦嘘唄欝蔚鰻姥厩浦瓜閏噂云運雲荏餌叡営嬰影映曳栄永泳洩瑛盈穎頴英衛詠鋭液疫益駅悦謁越閲榎厭円園堰奄宴延怨掩援沿演炎焔煙燕猿縁艶苑薗遠鉛鴛塩於汚甥凹央奥往応"], +["b2a1","押旺横欧殴王翁襖鴬鴎黄岡沖荻億屋憶臆桶牡乙俺卸恩温穏音下化仮何伽価佳加可嘉夏嫁家寡科暇果架歌河火珂禍禾稼箇花苛茄荷華菓蝦課嘩貨迦過霞蚊俄峨我牙画臥芽蛾賀雅餓駕介会解回塊壊廻快怪悔恢懐戒拐改"], +["b3a1","魁晦械海灰界皆絵芥蟹開階貝凱劾外咳害崖慨概涯碍蓋街該鎧骸浬馨蛙垣柿蛎鈎劃嚇各廓拡撹格核殻獲確穫覚角赫較郭閣隔革学岳楽額顎掛笠樫橿梶鰍潟割喝恰括活渇滑葛褐轄且鰹叶椛樺鞄株兜竃蒲釜鎌噛鴨栢茅萱"], +["b4a1","粥刈苅瓦乾侃冠寒刊勘勧巻喚堪姦完官寛干幹患感慣憾換敢柑桓棺款歓汗漢澗潅環甘監看竿管簡緩缶翰肝艦莞観諌貫還鑑間閑関陥韓館舘丸含岸巌玩癌眼岩翫贋雁頑顔願企伎危喜器基奇嬉寄岐希幾忌揮机旗既期棋棄"], +["b5a1","機帰毅気汽畿祈季稀紀徽規記貴起軌輝飢騎鬼亀偽儀妓宜戯技擬欺犠疑祇義蟻誼議掬菊鞠吉吃喫桔橘詰砧杵黍却客脚虐逆丘久仇休及吸宮弓急救朽求汲泣灸球究窮笈級糾給旧牛去居巨拒拠挙渠虚許距鋸漁禦魚亨享京"], +["b6a1","供侠僑兇競共凶協匡卿叫喬境峡強彊怯恐恭挟教橋況狂狭矯胸脅興蕎郷鏡響饗驚仰凝尭暁業局曲極玉桐粁僅勤均巾錦斤欣欽琴禁禽筋緊芹菌衿襟謹近金吟銀九倶句区狗玖矩苦躯駆駈駒具愚虞喰空偶寓遇隅串櫛釧屑屈"], +["b7a1","掘窟沓靴轡窪熊隈粂栗繰桑鍬勲君薫訓群軍郡卦袈祁係傾刑兄啓圭珪型契形径恵慶慧憩掲携敬景桂渓畦稽系経継繋罫茎荊蛍計詣警軽頚鶏芸迎鯨劇戟撃激隙桁傑欠決潔穴結血訣月件倹倦健兼券剣喧圏堅嫌建憲懸拳捲"], +["b8a1","検権牽犬献研硯絹県肩見謙賢軒遣鍵険顕験鹸元原厳幻弦減源玄現絃舷言諺限乎個古呼固姑孤己庫弧戸故枯湖狐糊袴股胡菰虎誇跨鈷雇顧鼓五互伍午呉吾娯後御悟梧檎瑚碁語誤護醐乞鯉交佼侯候倖光公功効勾厚口向"], +["b9a1","后喉坑垢好孔孝宏工巧巷幸広庚康弘恒慌抗拘控攻昂晃更杭校梗構江洪浩港溝甲皇硬稿糠紅紘絞綱耕考肯肱腔膏航荒行衡講貢購郊酵鉱砿鋼閤降項香高鴻剛劫号合壕拷濠豪轟麹克刻告国穀酷鵠黒獄漉腰甑忽惚骨狛込"], +["baa1","此頃今困坤墾婚恨懇昏昆根梱混痕紺艮魂些佐叉唆嵯左差査沙瑳砂詐鎖裟坐座挫債催再最哉塞妻宰彩才採栽歳済災采犀砕砦祭斎細菜裁載際剤在材罪財冴坂阪堺榊肴咲崎埼碕鷺作削咋搾昨朔柵窄策索錯桜鮭笹匙冊刷"], +["bba1","察拶撮擦札殺薩雑皐鯖捌錆鮫皿晒三傘参山惨撒散桟燦珊産算纂蚕讃賛酸餐斬暫残仕仔伺使刺司史嗣四士始姉姿子屍市師志思指支孜斯施旨枝止死氏獅祉私糸紙紫肢脂至視詞詩試誌諮資賜雌飼歯事似侍児字寺慈持時"], +["bca1","次滋治爾璽痔磁示而耳自蒔辞汐鹿式識鴫竺軸宍雫七叱執失嫉室悉湿漆疾質実蔀篠偲柴芝屡蕊縞舎写射捨赦斜煮社紗者謝車遮蛇邪借勺尺杓灼爵酌釈錫若寂弱惹主取守手朱殊狩珠種腫趣酒首儒受呪寿授樹綬需囚収周"], +["bda1","宗就州修愁拾洲秀秋終繍習臭舟蒐衆襲讐蹴輯週酋酬集醜什住充十従戎柔汁渋獣縦重銃叔夙宿淑祝縮粛塾熟出術述俊峻春瞬竣舜駿准循旬楯殉淳準潤盾純巡遵醇順処初所暑曙渚庶緒署書薯藷諸助叙女序徐恕鋤除傷償"], +["bea1","勝匠升召哨商唱嘗奨妾娼宵将小少尚庄床廠彰承抄招掌捷昇昌昭晶松梢樟樵沼消渉湘焼焦照症省硝礁祥称章笑粧紹肖菖蒋蕉衝裳訟証詔詳象賞醤鉦鍾鐘障鞘上丈丞乗冗剰城場壌嬢常情擾条杖浄状畳穣蒸譲醸錠嘱埴飾"], +["bfa1","拭植殖燭織職色触食蝕辱尻伸信侵唇娠寝審心慎振新晋森榛浸深申疹真神秦紳臣芯薪親診身辛進針震人仁刃塵壬尋甚尽腎訊迅陣靭笥諏須酢図厨逗吹垂帥推水炊睡粋翠衰遂酔錐錘随瑞髄崇嵩数枢趨雛据杉椙菅頗雀裾"], +["c0a1","澄摺寸世瀬畝是凄制勢姓征性成政整星晴棲栖正清牲生盛精聖声製西誠誓請逝醒青静斉税脆隻席惜戚斥昔析石積籍績脊責赤跡蹟碩切拙接摂折設窃節説雪絶舌蝉仙先千占宣専尖川戦扇撰栓栴泉浅洗染潜煎煽旋穿箭線"], +["c1a1","繊羨腺舛船薦詮賎践選遷銭銑閃鮮前善漸然全禅繕膳糎噌塑岨措曾曽楚狙疏疎礎祖租粗素組蘇訴阻遡鼠僧創双叢倉喪壮奏爽宋層匝惣想捜掃挿掻操早曹巣槍槽漕燥争痩相窓糟総綜聡草荘葬蒼藻装走送遭鎗霜騒像増憎"], +["c2a1","臓蔵贈造促側則即息捉束測足速俗属賊族続卒袖其揃存孫尊損村遜他多太汰詑唾堕妥惰打柁舵楕陀駄騨体堆対耐岱帯待怠態戴替泰滞胎腿苔袋貸退逮隊黛鯛代台大第醍題鷹滝瀧卓啄宅托択拓沢濯琢託鐸濁諾茸凧蛸只"], +["c3a1","叩但達辰奪脱巽竪辿棚谷狸鱈樽誰丹単嘆坦担探旦歎淡湛炭短端箪綻耽胆蛋誕鍛団壇弾断暖檀段男談値知地弛恥智池痴稚置致蜘遅馳築畜竹筑蓄逐秩窒茶嫡着中仲宙忠抽昼柱注虫衷註酎鋳駐樗瀦猪苧著貯丁兆凋喋寵"], +["c4a1","帖帳庁弔張彫徴懲挑暢朝潮牒町眺聴脹腸蝶調諜超跳銚長頂鳥勅捗直朕沈珍賃鎮陳津墜椎槌追鎚痛通塚栂掴槻佃漬柘辻蔦綴鍔椿潰坪壷嬬紬爪吊釣鶴亭低停偵剃貞呈堤定帝底庭廷弟悌抵挺提梯汀碇禎程締艇訂諦蹄逓"], +["c5a1","邸鄭釘鼎泥摘擢敵滴的笛適鏑溺哲徹撤轍迭鉄典填天展店添纏甜貼転顛点伝殿澱田電兎吐堵塗妬屠徒斗杜渡登菟賭途都鍍砥砺努度土奴怒倒党冬凍刀唐塔塘套宕島嶋悼投搭東桃梼棟盗淘湯涛灯燈当痘祷等答筒糖統到"], +["c6a1","董蕩藤討謄豆踏逃透鐙陶頭騰闘働動同堂導憧撞洞瞳童胴萄道銅峠鴇匿得徳涜特督禿篤毒独読栃橡凸突椴届鳶苫寅酉瀞噸屯惇敦沌豚遁頓呑曇鈍奈那内乍凪薙謎灘捺鍋楢馴縄畷南楠軟難汝二尼弐迩匂賑肉虹廿日乳入"], +["c7a1","如尿韮任妊忍認濡禰祢寧葱猫熱年念捻撚燃粘乃廼之埜嚢悩濃納能脳膿農覗蚤巴把播覇杷波派琶破婆罵芭馬俳廃拝排敗杯盃牌背肺輩配倍培媒梅楳煤狽買売賠陪這蝿秤矧萩伯剥博拍柏泊白箔粕舶薄迫曝漠爆縛莫駁麦"], +["c8a1","函箱硲箸肇筈櫨幡肌畑畠八鉢溌発醗髪伐罰抜筏閥鳩噺塙蛤隼伴判半反叛帆搬斑板氾汎版犯班畔繁般藩販範釆煩頒飯挽晩番盤磐蕃蛮匪卑否妃庇彼悲扉批披斐比泌疲皮碑秘緋罷肥被誹費避非飛樋簸備尾微枇毘琵眉美"], +["c9a1","鼻柊稗匹疋髭彦膝菱肘弼必畢筆逼桧姫媛紐百謬俵彪標氷漂瓢票表評豹廟描病秒苗錨鋲蒜蛭鰭品彬斌浜瀕貧賓頻敏瓶不付埠夫婦富冨布府怖扶敷斧普浮父符腐膚芙譜負賦赴阜附侮撫武舞葡蕪部封楓風葺蕗伏副復幅服"], +["caa1","福腹複覆淵弗払沸仏物鮒分吻噴墳憤扮焚奮粉糞紛雰文聞丙併兵塀幣平弊柄並蔽閉陛米頁僻壁癖碧別瞥蔑箆偏変片篇編辺返遍便勉娩弁鞭保舗鋪圃捕歩甫補輔穂募墓慕戊暮母簿菩倣俸包呆報奉宝峰峯崩庖抱捧放方朋"], +["cba1","法泡烹砲縫胞芳萌蓬蜂褒訪豊邦鋒飽鳳鵬乏亡傍剖坊妨帽忘忙房暴望某棒冒紡肪膨謀貌貿鉾防吠頬北僕卜墨撲朴牧睦穆釦勃没殆堀幌奔本翻凡盆摩磨魔麻埋妹昧枚毎哩槙幕膜枕鮪柾鱒桝亦俣又抹末沫迄侭繭麿万慢満"], +["cca1","漫蔓味未魅巳箕岬密蜜湊蓑稔脈妙粍民眠務夢無牟矛霧鵡椋婿娘冥名命明盟迷銘鳴姪牝滅免棉綿緬面麺摸模茂妄孟毛猛盲網耗蒙儲木黙目杢勿餅尤戻籾貰問悶紋門匁也冶夜爺耶野弥矢厄役約薬訳躍靖柳薮鑓愉愈油癒"], +["cda1","諭輸唯佑優勇友宥幽悠憂揖有柚湧涌猶猷由祐裕誘遊邑郵雄融夕予余与誉輿預傭幼妖容庸揚揺擁曜楊様洋溶熔用窯羊耀葉蓉要謡踊遥陽養慾抑欲沃浴翌翼淀羅螺裸来莱頼雷洛絡落酪乱卵嵐欄濫藍蘭覧利吏履李梨理璃"], +["cea1","痢裏裡里離陸律率立葎掠略劉流溜琉留硫粒隆竜龍侶慮旅虜了亮僚両凌寮料梁涼猟療瞭稜糧良諒遼量陵領力緑倫厘林淋燐琳臨輪隣鱗麟瑠塁涙累類令伶例冷励嶺怜玲礼苓鈴隷零霊麗齢暦歴列劣烈裂廉恋憐漣煉簾練聯"], +["cfa1","蓮連錬呂魯櫓炉賂路露労婁廊弄朗楼榔浪漏牢狼篭老聾蝋郎六麓禄肋録論倭和話歪賄脇惑枠鷲亙亘鰐詫藁蕨椀湾碗腕"], +["d0a1","弌丐丕个丱丶丼丿乂乖乘亂亅豫亊舒弍于亞亟亠亢亰亳亶从仍仄仆仂仗仞仭仟价伉佚估佛佝佗佇佶侈侏侘佻佩佰侑佯來侖儘俔俟俎俘俛俑俚俐俤俥倚倨倔倪倥倅伜俶倡倩倬俾俯們倆偃假會偕偐偈做偖偬偸傀傚傅傴傲"], +["d1a1","僉僊傳僂僖僞僥僭僣僮價僵儉儁儂儖儕儔儚儡儺儷儼儻儿兀兒兌兔兢竸兩兪兮冀冂囘册冉冏冑冓冕冖冤冦冢冩冪冫决冱冲冰况冽凅凉凛几處凩凭凰凵凾刄刋刔刎刧刪刮刳刹剏剄剋剌剞剔剪剴剩剳剿剽劍劔劒剱劈劑辨"], +["d2a1","辧劬劭劼劵勁勍勗勞勣勦飭勠勳勵勸勹匆匈甸匍匐匏匕匚匣匯匱匳匸區卆卅丗卉卍凖卞卩卮夘卻卷厂厖厠厦厥厮厰厶參簒雙叟曼燮叮叨叭叺吁吽呀听吭吼吮吶吩吝呎咏呵咎呟呱呷呰咒呻咀呶咄咐咆哇咢咸咥咬哄哈咨"], +["d3a1","咫哂咤咾咼哘哥哦唏唔哽哮哭哺哢唹啀啣啌售啜啅啖啗唸唳啝喙喀咯喊喟啻啾喘喞單啼喃喩喇喨嗚嗅嗟嗄嗜嗤嗔嘔嗷嘖嗾嗽嘛嗹噎噐營嘴嘶嘲嘸噫噤嘯噬噪嚆嚀嚊嚠嚔嚏嚥嚮嚶嚴囂嚼囁囃囀囈囎囑囓囗囮囹圀囿圄圉"], +["d4a1","圈國圍圓團圖嗇圜圦圷圸坎圻址坏坩埀垈坡坿垉垓垠垳垤垪垰埃埆埔埒埓堊埖埣堋堙堝塲堡塢塋塰毀塒堽塹墅墹墟墫墺壞墻墸墮壅壓壑壗壙壘壥壜壤壟壯壺壹壻壼壽夂夊夐夛梦夥夬夭夲夸夾竒奕奐奎奚奘奢奠奧奬奩"], +["d5a1","奸妁妝佞侫妣妲姆姨姜妍姙姚娥娟娑娜娉娚婀婬婉娵娶婢婪媚媼媾嫋嫂媽嫣嫗嫦嫩嫖嫺嫻嬌嬋嬖嬲嫐嬪嬶嬾孃孅孀孑孕孚孛孥孩孰孳孵學斈孺宀它宦宸寃寇寉寔寐寤實寢寞寥寫寰寶寳尅將專對尓尠尢尨尸尹屁屆屎屓"], +["d6a1","屐屏孱屬屮乢屶屹岌岑岔妛岫岻岶岼岷峅岾峇峙峩峽峺峭嶌峪崋崕崗嵜崟崛崑崔崢崚崙崘嵌嵒嵎嵋嵬嵳嵶嶇嶄嶂嶢嶝嶬嶮嶽嶐嶷嶼巉巍巓巒巖巛巫已巵帋帚帙帑帛帶帷幄幃幀幎幗幔幟幢幤幇幵并幺麼广庠廁廂廈廐廏"], +["d7a1","廖廣廝廚廛廢廡廨廩廬廱廳廰廴廸廾弃弉彝彜弋弑弖弩弭弸彁彈彌彎弯彑彖彗彙彡彭彳彷徃徂彿徊很徑徇從徙徘徠徨徭徼忖忻忤忸忱忝悳忿怡恠怙怐怩怎怱怛怕怫怦怏怺恚恁恪恷恟恊恆恍恣恃恤恂恬恫恙悁悍惧悃悚"], +["d8a1","悄悛悖悗悒悧悋惡悸惠惓悴忰悽惆悵惘慍愕愆惶惷愀惴惺愃愡惻惱愍愎慇愾愨愧慊愿愼愬愴愽慂慄慳慷慘慙慚慫慴慯慥慱慟慝慓慵憙憖憇憬憔憚憊憑憫憮懌懊應懷懈懃懆憺懋罹懍懦懣懶懺懴懿懽懼懾戀戈戉戍戌戔戛"], +["d9a1","戞戡截戮戰戲戳扁扎扞扣扛扠扨扼抂抉找抒抓抖拔抃抔拗拑抻拏拿拆擔拈拜拌拊拂拇抛拉挌拮拱挧挂挈拯拵捐挾捍搜捏掖掎掀掫捶掣掏掉掟掵捫捩掾揩揀揆揣揉插揶揄搖搴搆搓搦搶攝搗搨搏摧摯摶摎攪撕撓撥撩撈撼"], +["daa1","據擒擅擇撻擘擂擱擧舉擠擡抬擣擯攬擶擴擲擺攀擽攘攜攅攤攣攫攴攵攷收攸畋效敖敕敍敘敞敝敲數斂斃變斛斟斫斷旃旆旁旄旌旒旛旙无旡旱杲昊昃旻杳昵昶昴昜晏晄晉晁晞晝晤晧晨晟晢晰暃暈暎暉暄暘暝曁暹曉暾暼"], +["dba1","曄暸曖曚曠昿曦曩曰曵曷朏朖朞朦朧霸朮朿朶杁朸朷杆杞杠杙杣杤枉杰枩杼杪枌枋枦枡枅枷柯枴柬枳柩枸柤柞柝柢柮枹柎柆柧檜栞框栩桀桍栲桎梳栫桙档桷桿梟梏梭梔條梛梃檮梹桴梵梠梺椏梍桾椁棊椈棘椢椦棡椌棍"], +["dca1","棔棧棕椶椒椄棗棣椥棹棠棯椨椪椚椣椡棆楹楷楜楸楫楔楾楮椹楴椽楙椰楡楞楝榁楪榲榮槐榿槁槓榾槎寨槊槝榻槃榧樮榑榠榜榕榴槞槨樂樛槿權槹槲槧樅榱樞槭樔槫樊樒櫁樣樓橄樌橲樶橸橇橢橙橦橈樸樢檐檍檠檄檢檣"], +["dda1","檗蘗檻櫃櫂檸檳檬櫞櫑櫟檪櫚櫪櫻欅蘖櫺欒欖鬱欟欸欷盜欹飮歇歃歉歐歙歔歛歟歡歸歹歿殀殄殃殍殘殕殞殤殪殫殯殲殱殳殷殼毆毋毓毟毬毫毳毯麾氈氓气氛氤氣汞汕汢汪沂沍沚沁沛汾汨汳沒沐泄泱泓沽泗泅泝沮沱沾"], +["dea1","沺泛泯泙泪洟衍洶洫洽洸洙洵洳洒洌浣涓浤浚浹浙涎涕濤涅淹渕渊涵淇淦涸淆淬淞淌淨淒淅淺淙淤淕淪淮渭湮渮渙湲湟渾渣湫渫湶湍渟湃渺湎渤滿渝游溂溪溘滉溷滓溽溯滄溲滔滕溏溥滂溟潁漑灌滬滸滾漿滲漱滯漲滌"], +["dfa1","漾漓滷澆潺潸澁澀潯潛濳潭澂潼潘澎澑濂潦澳澣澡澤澹濆澪濟濕濬濔濘濱濮濛瀉瀋濺瀑瀁瀏濾瀛瀚潴瀝瀘瀟瀰瀾瀲灑灣炙炒炯烱炬炸炳炮烟烋烝烙焉烽焜焙煥煕熈煦煢煌煖煬熏燻熄熕熨熬燗熹熾燒燉燔燎燠燬燧燵燼"], +["e0a1","燹燿爍爐爛爨爭爬爰爲爻爼爿牀牆牋牘牴牾犂犁犇犒犖犢犧犹犲狃狆狄狎狒狢狠狡狹狷倏猗猊猜猖猝猴猯猩猥猾獎獏默獗獪獨獰獸獵獻獺珈玳珎玻珀珥珮珞璢琅瑯琥珸琲琺瑕琿瑟瑙瑁瑜瑩瑰瑣瑪瑶瑾璋璞璧瓊瓏瓔珱"], +["e1a1","瓠瓣瓧瓩瓮瓲瓰瓱瓸瓷甄甃甅甌甎甍甕甓甞甦甬甼畄畍畊畉畛畆畚畩畤畧畫畭畸當疆疇畴疊疉疂疔疚疝疥疣痂疳痃疵疽疸疼疱痍痊痒痙痣痞痾痿痼瘁痰痺痲痳瘋瘍瘉瘟瘧瘠瘡瘢瘤瘴瘰瘻癇癈癆癜癘癡癢癨癩癪癧癬癰"], +["e2a1","癲癶癸發皀皃皈皋皎皖皓皙皚皰皴皸皹皺盂盍盖盒盞盡盥盧盪蘯盻眈眇眄眩眤眞眥眦眛眷眸睇睚睨睫睛睥睿睾睹瞎瞋瞑瞠瞞瞰瞶瞹瞿瞼瞽瞻矇矍矗矚矜矣矮矼砌砒礦砠礪硅碎硴碆硼碚碌碣碵碪碯磑磆磋磔碾碼磅磊磬"], +["e3a1","磧磚磽磴礇礒礑礙礬礫祀祠祗祟祚祕祓祺祿禊禝禧齋禪禮禳禹禺秉秕秧秬秡秣稈稍稘稙稠稟禀稱稻稾稷穃穗穉穡穢穩龝穰穹穽窈窗窕窘窖窩竈窰窶竅竄窿邃竇竊竍竏竕竓站竚竝竡竢竦竭竰笂笏笊笆笳笘笙笞笵笨笶筐"], +["e4a1","筺笄筍笋筌筅筵筥筴筧筰筱筬筮箝箘箟箍箜箚箋箒箏筝箙篋篁篌篏箴篆篝篩簑簔篦篥籠簀簇簓篳篷簗簍篶簣簧簪簟簷簫簽籌籃籔籏籀籐籘籟籤籖籥籬籵粃粐粤粭粢粫粡粨粳粲粱粮粹粽糀糅糂糘糒糜糢鬻糯糲糴糶糺紆"], +["e5a1","紂紜紕紊絅絋紮紲紿紵絆絳絖絎絲絨絮絏絣經綉絛綏絽綛綺綮綣綵緇綽綫總綢綯緜綸綟綰緘緝緤緞緻緲緡縅縊縣縡縒縱縟縉縋縢繆繦縻縵縹繃縷縲縺繧繝繖繞繙繚繹繪繩繼繻纃緕繽辮繿纈纉續纒纐纓纔纖纎纛纜缸缺"], +["e6a1","罅罌罍罎罐网罕罔罘罟罠罨罩罧罸羂羆羃羈羇羌羔羞羝羚羣羯羲羹羮羶羸譱翅翆翊翕翔翡翦翩翳翹飜耆耄耋耒耘耙耜耡耨耿耻聊聆聒聘聚聟聢聨聳聲聰聶聹聽聿肄肆肅肛肓肚肭冐肬胛胥胙胝胄胚胖脉胯胱脛脩脣脯腋"], +["e7a1","隋腆脾腓腑胼腱腮腥腦腴膃膈膊膀膂膠膕膤膣腟膓膩膰膵膾膸膽臀臂膺臉臍臑臙臘臈臚臟臠臧臺臻臾舁舂舅與舊舍舐舖舩舫舸舳艀艙艘艝艚艟艤艢艨艪艫舮艱艷艸艾芍芒芫芟芻芬苡苣苟苒苴苳苺莓范苻苹苞茆苜茉苙"], +["e8a1","茵茴茖茲茱荀茹荐荅茯茫茗茘莅莚莪莟莢莖茣莎莇莊荼莵荳荵莠莉莨菴萓菫菎菽萃菘萋菁菷萇菠菲萍萢萠莽萸蔆菻葭萪萼蕚蒄葷葫蒭葮蒂葩葆萬葯葹萵蓊葢蒹蒿蒟蓙蓍蒻蓚蓐蓁蓆蓖蒡蔡蓿蓴蔗蔘蔬蔟蔕蔔蓼蕀蕣蕘蕈"], +["e9a1","蕁蘂蕋蕕薀薤薈薑薊薨蕭薔薛藪薇薜蕷蕾薐藉薺藏薹藐藕藝藥藜藹蘊蘓蘋藾藺蘆蘢蘚蘰蘿虍乕虔號虧虱蚓蚣蚩蚪蚋蚌蚶蚯蛄蛆蚰蛉蠣蚫蛔蛞蛩蛬蛟蛛蛯蜒蜆蜈蜀蜃蛻蜑蜉蜍蛹蜊蜴蜿蜷蜻蜥蜩蜚蝠蝟蝸蝌蝎蝴蝗蝨蝮蝙"], +["eaa1","蝓蝣蝪蠅螢螟螂螯蟋螽蟀蟐雖螫蟄螳蟇蟆螻蟯蟲蟠蠏蠍蟾蟶蟷蠎蟒蠑蠖蠕蠢蠡蠱蠶蠹蠧蠻衄衂衒衙衞衢衫袁衾袞衵衽袵衲袂袗袒袮袙袢袍袤袰袿袱裃裄裔裘裙裝裹褂裼裴裨裲褄褌褊褓襃褞褥褪褫襁襄褻褶褸襌褝襠襞"], +["eba1","襦襤襭襪襯襴襷襾覃覈覊覓覘覡覩覦覬覯覲覺覽覿觀觚觜觝觧觴觸訃訖訐訌訛訝訥訶詁詛詒詆詈詼詭詬詢誅誂誄誨誡誑誥誦誚誣諄諍諂諚諫諳諧諤諱謔諠諢諷諞諛謌謇謚諡謖謐謗謠謳鞫謦謫謾謨譁譌譏譎證譖譛譚譫"], +["eca1","譟譬譯譴譽讀讌讎讒讓讖讙讚谺豁谿豈豌豎豐豕豢豬豸豺貂貉貅貊貍貎貔豼貘戝貭貪貽貲貳貮貶賈賁賤賣賚賽賺賻贄贅贊贇贏贍贐齎贓賍贔贖赧赭赱赳趁趙跂趾趺跏跚跖跌跛跋跪跫跟跣跼踈踉跿踝踞踐踟蹂踵踰踴蹊"], +["eda1","蹇蹉蹌蹐蹈蹙蹤蹠踪蹣蹕蹶蹲蹼躁躇躅躄躋躊躓躑躔躙躪躡躬躰軆躱躾軅軈軋軛軣軼軻軫軾輊輅輕輒輙輓輜輟輛輌輦輳輻輹轅轂輾轌轉轆轎轗轜轢轣轤辜辟辣辭辯辷迚迥迢迪迯邇迴逅迹迺逑逕逡逍逞逖逋逧逶逵逹迸"], +["eea1","遏遐遑遒逎遉逾遖遘遞遨遯遶隨遲邂遽邁邀邊邉邏邨邯邱邵郢郤扈郛鄂鄒鄙鄲鄰酊酖酘酣酥酩酳酲醋醉醂醢醫醯醪醵醴醺釀釁釉釋釐釖釟釡釛釼釵釶鈞釿鈔鈬鈕鈑鉞鉗鉅鉉鉤鉈銕鈿鉋鉐銜銖銓銛鉚鋏銹銷鋩錏鋺鍄錮"], +["efa1","錙錢錚錣錺錵錻鍜鍠鍼鍮鍖鎰鎬鎭鎔鎹鏖鏗鏨鏥鏘鏃鏝鏐鏈鏤鐚鐔鐓鐃鐇鐐鐶鐫鐵鐡鐺鑁鑒鑄鑛鑠鑢鑞鑪鈩鑰鑵鑷鑽鑚鑼鑾钁鑿閂閇閊閔閖閘閙閠閨閧閭閼閻閹閾闊濶闃闍闌闕闔闖關闡闥闢阡阨阮阯陂陌陏陋陷陜陞"], +["f0a1","陝陟陦陲陬隍隘隕隗險隧隱隲隰隴隶隸隹雎雋雉雍襍雜霍雕雹霄霆霈霓霎霑霏霖霙霤霪霰霹霽霾靄靆靈靂靉靜靠靤靦靨勒靫靱靹鞅靼鞁靺鞆鞋鞏鞐鞜鞨鞦鞣鞳鞴韃韆韈韋韜韭齏韲竟韶韵頏頌頸頤頡頷頽顆顏顋顫顯顰"], +["f1a1","顱顴顳颪颯颱颶飄飃飆飩飫餃餉餒餔餘餡餝餞餤餠餬餮餽餾饂饉饅饐饋饑饒饌饕馗馘馥馭馮馼駟駛駝駘駑駭駮駱駲駻駸騁騏騅駢騙騫騷驅驂驀驃騾驕驍驛驗驟驢驥驤驩驫驪骭骰骼髀髏髑髓體髞髟髢髣髦髯髫髮髴髱髷"], +["f2a1","髻鬆鬘鬚鬟鬢鬣鬥鬧鬨鬩鬪鬮鬯鬲魄魃魏魍魎魑魘魴鮓鮃鮑鮖鮗鮟鮠鮨鮴鯀鯊鮹鯆鯏鯑鯒鯣鯢鯤鯔鯡鰺鯲鯱鯰鰕鰔鰉鰓鰌鰆鰈鰒鰊鰄鰮鰛鰥鰤鰡鰰鱇鰲鱆鰾鱚鱠鱧鱶鱸鳧鳬鳰鴉鴈鳫鴃鴆鴪鴦鶯鴣鴟鵄鴕鴒鵁鴿鴾鵆鵈"], +["f3a1","鵝鵞鵤鵑鵐鵙鵲鶉鶇鶫鵯鵺鶚鶤鶩鶲鷄鷁鶻鶸鶺鷆鷏鷂鷙鷓鷸鷦鷭鷯鷽鸚鸛鸞鹵鹹鹽麁麈麋麌麒麕麑麝麥麩麸麪麭靡黌黎黏黐黔黜點黝黠黥黨黯黴黶黷黹黻黼黽鼇鼈皷鼕鼡鼬鼾齊齒齔齣齟齠齡齦齧齬齪齷齲齶龕龜龠"], +["f4a1","堯槇遙瑤凜熙"], +["f9a1","纊褜鍈銈蓜俉炻昱棈鋹曻彅丨仡仼伀伃伹佖侒侊侚侔俍偀倢俿倞偆偰偂傔僴僘兊兤冝冾凬刕劜劦勀勛匀匇匤卲厓厲叝﨎咜咊咩哿喆坙坥垬埈埇﨏塚增墲夋奓奛奝奣妤妺孖寀甯寘寬尞岦岺峵崧嵓﨑嵂嵭嶸嶹巐弡弴彧德"], +["faa1","忞恝悅悊惞惕愠惲愑愷愰憘戓抦揵摠撝擎敎昀昕昻昉昮昞昤晥晗晙晴晳暙暠暲暿曺朎朗杦枻桒柀栁桄棏﨓楨﨔榘槢樰橫橆橳橾櫢櫤毖氿汜沆汯泚洄涇浯涖涬淏淸淲淼渹湜渧渼溿澈澵濵瀅瀇瀨炅炫焏焄煜煆煇凞燁燾犱"], +["fba1","犾猤猪獷玽珉珖珣珒琇珵琦琪琩琮瑢璉璟甁畯皂皜皞皛皦益睆劯砡硎硤硺礰礼神祥禔福禛竑竧靖竫箞精絈絜綷綠緖繒罇羡羽茁荢荿菇菶葈蒴蕓蕙蕫﨟薰蘒﨡蠇裵訒訷詹誧誾諟諸諶譓譿賰賴贒赶﨣軏﨤逸遧郞都鄕鄧釚"], +["fca1","釗釞釭釮釤釥鈆鈐鈊鈺鉀鈼鉎鉙鉑鈹鉧銧鉷鉸鋧鋗鋙鋐﨧鋕鋠鋓錥錡鋻﨨錞鋿錝錂鍰鍗鎤鏆鏞鏸鐱鑅鑈閒隆﨩隝隯霳霻靃靍靏靑靕顗顥飯飼餧館馞驎髙髜魵魲鮏鮱鮻鰀鵰鵫鶴鸙黑"], +["fcf1","ⅰ",9,"¬¦'""], +["8fa2af","˘ˇ¸˙˝¯˛˚~΄΅"], +["8fa2c2","¡¦¿"], +["8fa2eb","ºª©®™¤№"], +["8fa6e1","ΆΈΉΊΪ"], +["8fa6e7","Ό"], +["8fa6e9","ΎΫ"], +["8fa6ec","Ώ"], +["8fa6f1","άέήίϊΐόςύϋΰώ"], +["8fa7c2","Ђ",10,"ЎЏ"], +["8fa7f2","ђ",10,"ўџ"], +["8fa9a1","ÆĐ"], +["8fa9a4","Ħ"], +["8fa9a6","IJ"], +["8fa9a8","ŁĿ"], +["8fa9ab","ŊØŒ"], +["8fa9af","ŦÞ"], +["8fa9c1","æđðħıijĸłŀʼnŋøœßŧþ"], +["8faaa1","ÁÀÄÂĂǍĀĄÅÃĆĈČÇĊĎÉÈËÊĚĖĒĘ"], +["8faaba","ĜĞĢĠĤÍÌÏÎǏİĪĮĨĴĶĹĽĻŃŇŅÑÓÒÖÔǑŐŌÕŔŘŖŚŜŠŞŤŢÚÙÜÛŬǓŰŪŲŮŨǗǛǙǕŴÝŸŶŹŽŻ"], +["8faba1","áàäâăǎāąåãćĉčçċďéèëêěėēęǵĝğ"], +["8fabbd","ġĥíìïîǐ"], +["8fabc5","īįĩĵķĺľļńňņñóòöôǒőōõŕřŗśŝšşťţúùüûŭǔűūųůũǘǜǚǖŵýÿŷźžż"], +["8fb0a1","丂丄丅丌丒丟丣两丨丫丮丯丰丵乀乁乄乇乑乚乜乣乨乩乴乵乹乿亍亖亗亝亯亹仃仐仚仛仠仡仢仨仯仱仳仵份仾仿伀伂伃伈伋伌伒伕伖众伙伮伱你伳伵伷伹伻伾佀佂佈佉佋佌佒佔佖佘佟佣佪佬佮佱佷佸佹佺佽佾侁侂侄"], +["8fb1a1","侅侉侊侌侎侐侒侓侔侗侙侚侞侟侲侷侹侻侼侽侾俀俁俅俆俈俉俋俌俍俏俒俜俠俢俰俲俼俽俿倀倁倄倇倊倌倎倐倓倗倘倛倜倝倞倢倧倮倰倲倳倵偀偁偂偅偆偊偌偎偑偒偓偗偙偟偠偢偣偦偧偪偭偰偱倻傁傃傄傆傊傎傏傐"], +["8fb2a1","傒傓傔傖傛傜傞",4,"傪傯傰傹傺傽僀僃僄僇僌僎僐僓僔僘僜僝僟僢僤僦僨僩僯僱僶僺僾儃儆儇儈儋儌儍儎僲儐儗儙儛儜儝儞儣儧儨儬儭儯儱儳儴儵儸儹兂兊兏兓兕兗兘兟兤兦兾冃冄冋冎冘冝冡冣冭冸冺冼冾冿凂"], +["8fb3a1","凈减凑凒凓凕凘凞凢凥凮凲凳凴凷刁刂刅划刓刕刖刘刢刨刱刲刵刼剅剉剕剗剘剚剜剟剠剡剦剮剷剸剹劀劂劅劊劌劓劕劖劗劘劚劜劤劥劦劧劯劰劶劷劸劺劻劽勀勄勆勈勌勏勑勔勖勛勜勡勥勨勩勪勬勰勱勴勶勷匀匃匊匋"], +["8fb4a1","匌匑匓匘匛匜匞匟匥匧匨匩匫匬匭匰匲匵匼匽匾卂卌卋卙卛卡卣卥卬卭卲卹卾厃厇厈厎厓厔厙厝厡厤厪厫厯厲厴厵厷厸厺厽叀叅叏叒叓叕叚叝叞叠另叧叵吂吓吚吡吧吨吪启吱吴吵呃呄呇呍呏呞呢呤呦呧呩呫呭呮呴呿"], +["8fb5a1","咁咃咅咈咉咍咑咕咖咜咟咡咦咧咩咪咭咮咱咷咹咺咻咿哆哊响哎哠哪哬哯哶哼哾哿唀唁唅唈唉唌唍唎唕唪唫唲唵唶唻唼唽啁啇啉啊啍啐啑啘啚啛啞啠啡啤啦啿喁喂喆喈喎喏喑喒喓喔喗喣喤喭喲喿嗁嗃嗆嗉嗋嗌嗎嗑嗒"], +["8fb6a1","嗓嗗嗘嗛嗞嗢嗩嗶嗿嘅嘈嘊嘍",5,"嘙嘬嘰嘳嘵嘷嘹嘻嘼嘽嘿噀噁噃噄噆噉噋噍噏噔噞噠噡噢噣噦噩噭噯噱噲噵嚄嚅嚈嚋嚌嚕嚙嚚嚝嚞嚟嚦嚧嚨嚩嚫嚬嚭嚱嚳嚷嚾囅囉囊囋囏囐囌囍囙囜囝囟囡囤",4,"囱囫园"], +["8fb7a1","囶囷圁圂圇圊圌圑圕圚圛圝圠圢圣圤圥圩圪圬圮圯圳圴圽圾圿坅坆坌坍坒坢坥坧坨坫坭",4,"坳坴坵坷坹坺坻坼坾垁垃垌垔垗垙垚垜垝垞垟垡垕垧垨垩垬垸垽埇埈埌埏埕埝埞埤埦埧埩埭埰埵埶埸埽埾埿堃堄堈堉埡"], +["8fb8a1","堌堍堛堞堟堠堦堧堭堲堹堿塉塌塍塏塐塕塟塡塤塧塨塸塼塿墀墁墇墈墉墊墌墍墏墐墔墖墝墠墡墢墦墩墱墲壄墼壂壈壍壎壐壒壔壖壚壝壡壢壩壳夅夆夋夌夒夓夔虁夝夡夣夤夨夯夰夳夵夶夿奃奆奒奓奙奛奝奞奟奡奣奫奭"], +["8fb9a1","奯奲奵奶她奻奼妋妌妎妒妕妗妟妤妧妭妮妯妰妳妷妺妼姁姃姄姈姊姍姒姝姞姟姣姤姧姮姯姱姲姴姷娀娄娌娍娎娒娓娞娣娤娧娨娪娭娰婄婅婇婈婌婐婕婞婣婥婧婭婷婺婻婾媋媐媓媖媙媜媞媟媠媢媧媬媱媲媳媵媸媺媻媿"], +["8fbaa1","嫄嫆嫈嫏嫚嫜嫠嫥嫪嫮嫵嫶嫽嬀嬁嬈嬗嬴嬙嬛嬝嬡嬥嬭嬸孁孋孌孒孖孞孨孮孯孼孽孾孿宁宄宆宊宎宐宑宓宔宖宨宩宬宭宯宱宲宷宺宼寀寁寍寏寖",4,"寠寯寱寴寽尌尗尞尟尣尦尩尫尬尮尰尲尵尶屙屚屜屢屣屧屨屩"], +["8fbba1","屭屰屴屵屺屻屼屽岇岈岊岏岒岝岟岠岢岣岦岪岲岴岵岺峉峋峒峝峗峮峱峲峴崁崆崍崒崫崣崤崦崧崱崴崹崽崿嵂嵃嵆嵈嵕嵑嵙嵊嵟嵠嵡嵢嵤嵪嵭嵰嵹嵺嵾嵿嶁嶃嶈嶊嶒嶓嶔嶕嶙嶛嶟嶠嶧嶫嶰嶴嶸嶹巃巇巋巐巎巘巙巠巤"], +["8fbca1","巩巸巹帀帇帍帒帔帕帘帟帠帮帨帲帵帾幋幐幉幑幖幘幛幜幞幨幪",4,"幰庀庋庎庢庤庥庨庪庬庱庳庽庾庿廆廌廋廎廑廒廔廕廜廞廥廫异弆弇弈弎弙弜弝弡弢弣弤弨弫弬弮弰弴弶弻弽弿彀彄彅彇彍彐彔彘彛彠彣彤彧"], +["8fbda1","彯彲彴彵彸彺彽彾徉徍徏徖徜徝徢徧徫徤徬徯徰徱徸忄忇忈忉忋忐",4,"忞忡忢忨忩忪忬忭忮忯忲忳忶忺忼怇怊怍怓怔怗怘怚怟怤怭怳怵恀恇恈恉恌恑恔恖恗恝恡恧恱恾恿悂悆悈悊悎悑悓悕悘悝悞悢悤悥您悰悱悷"], +["8fbea1","悻悾惂惄惈惉惊惋惎惏惔惕惙惛惝惞惢惥惲惵惸惼惽愂愇愊愌愐",4,"愖愗愙愜愞愢愪愫愰愱愵愶愷愹慁慅慆慉慞慠慬慲慸慻慼慿憀憁憃憄憋憍憒憓憗憘憜憝憟憠憥憨憪憭憸憹憼懀懁懂懎懏懕懜懝懞懟懡懢懧懩懥"], +["8fbfa1","懬懭懯戁戃戄戇戓戕戜戠戢戣戧戩戫戹戽扂扃扄扆扌扐扑扒扔扖扚扜扤扭扯扳扺扽抍抎抏抐抦抨抳抶抷抺抾抿拄拎拕拖拚拪拲拴拼拽挃挄挊挋挍挐挓挖挘挩挪挭挵挶挹挼捁捂捃捄捆捊捋捎捒捓捔捘捛捥捦捬捭捱捴捵"], +["8fc0a1","捸捼捽捿掂掄掇掊掐掔掕掙掚掞掤掦掭掮掯掽揁揅揈揎揑揓揔揕揜揠揥揪揬揲揳揵揸揹搉搊搐搒搔搘搞搠搢搤搥搩搪搯搰搵搽搿摋摏摑摒摓摔摚摛摜摝摟摠摡摣摭摳摴摻摽撅撇撏撐撑撘撙撛撝撟撡撣撦撨撬撳撽撾撿"], +["8fc1a1","擄擉擊擋擌擎擐擑擕擗擤擥擩擪擭擰擵擷擻擿攁攄攈攉攊攏攓攔攖攙攛攞攟攢攦攩攮攱攺攼攽敃敇敉敐敒敔敟敠敧敫敺敽斁斅斊斒斕斘斝斠斣斦斮斲斳斴斿旂旈旉旎旐旔旖旘旟旰旲旴旵旹旾旿昀昄昈昉昍昑昒昕昖昝"], +["8fc2a1","昞昡昢昣昤昦昩昪昫昬昮昰昱昳昹昷晀晅晆晊晌晑晎晗晘晙晛晜晠晡曻晪晫晬晾晳晵晿晷晸晹晻暀晼暋暌暍暐暒暙暚暛暜暟暠暤暭暱暲暵暻暿曀曂曃曈曌曎曏曔曛曟曨曫曬曮曺朅朇朎朓朙朜朠朢朳朾杅杇杈杌杔杕杝"], +["8fc3a1","杦杬杮杴杶杻极构枎枏枑枓枖枘枙枛枰枱枲枵枻枼枽柹柀柂柃柅柈柉柒柗柙柜柡柦柰柲柶柷桒栔栙栝栟栨栧栬栭栯栰栱栳栻栿桄桅桊桌桕桗桘桛桫桮",4,"桵桹桺桻桼梂梄梆梈梖梘梚梜梡梣梥梩梪梮梲梻棅棈棌棏"], +["8fc4a1","棐棑棓棖棙棜棝棥棨棪棫棬棭棰棱棵棶棻棼棽椆椉椊椐椑椓椖椗椱椳椵椸椻楂楅楉楎楗楛楣楤楥楦楨楩楬楰楱楲楺楻楿榀榍榒榖榘榡榥榦榨榫榭榯榷榸榺榼槅槈槑槖槗槢槥槮槯槱槳槵槾樀樁樃樏樑樕樚樝樠樤樨樰樲"], +["8fc5a1","樴樷樻樾樿橅橆橉橊橎橐橑橒橕橖橛橤橧橪橱橳橾檁檃檆檇檉檋檑檛檝檞檟檥檫檯檰檱檴檽檾檿櫆櫉櫈櫌櫐櫔櫕櫖櫜櫝櫤櫧櫬櫰櫱櫲櫼櫽欂欃欆欇欉欏欐欑欗欛欞欤欨欫欬欯欵欶欻欿歆歊歍歒歖歘歝歠歧歫歮歰歵歽"], +["8fc6a1","歾殂殅殗殛殟殠殢殣殨殩殬殭殮殰殸殹殽殾毃毄毉毌毖毚毡毣毦毧毮毱毷毹毿氂氄氅氉氍氎氐氒氙氟氦氧氨氬氮氳氵氶氺氻氿汊汋汍汏汒汔汙汛汜汫汭汯汴汶汸汹汻沅沆沇沉沔沕沗沘沜沟沰沲沴泂泆泍泏泐泑泒泔泖"], +["8fc7a1","泚泜泠泧泩泫泬泮泲泴洄洇洊洎洏洑洓洚洦洧洨汧洮洯洱洹洼洿浗浞浟浡浥浧浯浰浼涂涇涑涒涔涖涗涘涪涬涴涷涹涽涿淄淈淊淎淏淖淛淝淟淠淢淥淩淯淰淴淶淼渀渄渞渢渧渲渶渹渻渼湄湅湈湉湋湏湑湒湓湔湗湜湝湞"], +["8fc8a1","湢湣湨湳湻湽溍溓溙溠溧溭溮溱溳溻溿滀滁滃滇滈滊滍滎滏滫滭滮滹滻滽漄漈漊漌漍漖漘漚漛漦漩漪漯漰漳漶漻漼漭潏潑潒潓潗潙潚潝潞潡潢潨潬潽潾澃澇澈澋澌澍澐澒澓澔澖澚澟澠澥澦澧澨澮澯澰澵澶澼濅濇濈濊"], +["8fc9a1","濚濞濨濩濰濵濹濼濽瀀瀅瀆瀇瀍瀗瀠瀣瀯瀴瀷瀹瀼灃灄灈灉灊灋灔灕灝灞灎灤灥灬灮灵灶灾炁炅炆炔",4,"炛炤炫炰炱炴炷烊烑烓烔烕烖烘烜烤烺焃",4,"焋焌焏焞焠焫焭焯焰焱焸煁煅煆煇煊煋煐煒煗煚煜煞煠"], +["8fcaa1","煨煹熀熅熇熌熒熚熛熠熢熯熰熲熳熺熿燀燁燄燋燌燓燖燙燚燜燸燾爀爇爈爉爓爗爚爝爟爤爫爯爴爸爹牁牂牃牅牎牏牐牓牕牖牚牜牞牠牣牨牫牮牯牱牷牸牻牼牿犄犉犍犎犓犛犨犭犮犱犴犾狁狇狉狌狕狖狘狟狥狳狴狺狻"], +["8fcba1","狾猂猄猅猇猋猍猒猓猘猙猞猢猤猧猨猬猱猲猵猺猻猽獃獍獐獒獖獘獝獞獟獠獦獧獩獫獬獮獯獱獷獹獼玀玁玃玅玆玎玐玓玕玗玘玜玞玟玠玢玥玦玪玫玭玵玷玹玼玽玿珅珆珉珋珌珏珒珓珖珙珝珡珣珦珧珩珴珵珷珹珺珻珽"], +["8fcca1","珿琀琁琄琇琊琑琚琛琤琦琨",9,"琹瑀瑃瑄瑆瑇瑋瑍瑑瑒瑗瑝瑢瑦瑧瑨瑫瑭瑮瑱瑲璀璁璅璆璇璉璏璐璑璒璘璙璚璜璟璠璡璣璦璨璩璪璫璮璯璱璲璵璹璻璿瓈瓉瓌瓐瓓瓘瓚瓛瓞瓟瓤瓨瓪瓫瓯瓴瓺瓻瓼瓿甆"], +["8fcda1","甒甖甗甠甡甤甧甩甪甯甶甹甽甾甿畀畃畇畈畎畐畒畗畞畟畡畯畱畹",5,"疁疅疐疒疓疕疙疜疢疤疴疺疿痀痁痄痆痌痎痏痗痜痟痠痡痤痧痬痮痯痱痹瘀瘂瘃瘄瘇瘈瘊瘌瘏瘒瘓瘕瘖瘙瘛瘜瘝瘞瘣瘥瘦瘩瘭瘲瘳瘵瘸瘹"], +["8fcea1","瘺瘼癊癀癁癃癄癅癉癋癕癙癟癤癥癭癮癯癱癴皁皅皌皍皕皛皜皝皟皠皢",6,"皪皭皽盁盅盉盋盌盎盔盙盠盦盨盬盰盱盶盹盼眀眆眊眎眒眔眕眗眙眚眜眢眨眭眮眯眴眵眶眹眽眾睂睅睆睊睍睎睏睒睖睗睜睞睟睠睢"], +["8fcfa1","睤睧睪睬睰睲睳睴睺睽瞀瞄瞌瞍瞔瞕瞖瞚瞟瞢瞧瞪瞮瞯瞱瞵瞾矃矉矑矒矕矙矞矟矠矤矦矪矬矰矱矴矸矻砅砆砉砍砎砑砝砡砢砣砭砮砰砵砷硃硄硇硈硌硎硒硜硞硠硡硣硤硨硪确硺硾碊碏碔碘碡碝碞碟碤碨碬碭碰碱碲碳"], +["8fd0a1","碻碽碿磇磈磉磌磎磒磓磕磖磤磛磟磠磡磦磪磲磳礀磶磷磺磻磿礆礌礐礚礜礞礟礠礥礧礩礭礱礴礵礻礽礿祄祅祆祊祋祏祑祔祘祛祜祧祩祫祲祹祻祼祾禋禌禑禓禔禕禖禘禛禜禡禨禩禫禯禱禴禸离秂秄秇秈秊秏秔秖秚秝秞"], +["8fd1a1","秠秢秥秪秫秭秱秸秼稂稃稇稉稊稌稑稕稛稞稡稧稫稭稯稰稴稵稸稹稺穄穅穇穈穌穕穖穙穜穝穟穠穥穧穪穭穵穸穾窀窂窅窆窊窋窐窑窔窞窠窣窬窳窵窹窻窼竆竉竌竎竑竛竨竩竫竬竱竴竻竽竾笇笔笟笣笧笩笪笫笭笮笯笰"], +["8fd2a1","笱笴笽笿筀筁筇筎筕筠筤筦筩筪筭筯筲筳筷箄箉箎箐箑箖箛箞箠箥箬箯箰箲箵箶箺箻箼箽篂篅篈篊篔篖篗篙篚篛篨篪篲篴篵篸篹篺篼篾簁簂簃簄簆簉簋簌簎簏簙簛簠簥簦簨簬簱簳簴簶簹簺籆籊籕籑籒籓籙",5], +["8fd3a1","籡籣籧籩籭籮籰籲籹籼籽粆粇粏粔粞粠粦粰粶粷粺粻粼粿糄糇糈糉糍糏糓糔糕糗糙糚糝糦糩糫糵紃紇紈紉紏紑紒紓紖紝紞紣紦紪紭紱紼紽紾絀絁絇絈絍絑絓絗絙絚絜絝絥絧絪絰絸絺絻絿綁綂綃綅綆綈綋綌綍綑綖綗綝"], +["8fd4a1","綞綦綧綪綳綶綷綹緂",4,"緌緍緎緗緙縀緢緥緦緪緫緭緱緵緶緹緺縈縐縑縕縗縜縝縠縧縨縬縭縯縳縶縿繄繅繇繎繐繒繘繟繡繢繥繫繮繯繳繸繾纁纆纇纊纍纑纕纘纚纝纞缼缻缽缾缿罃罄罇罏罒罓罛罜罝罡罣罤罥罦罭"], +["8fd5a1","罱罽罾罿羀羋羍羏羐羑羖羗羜羡羢羦羪羭羴羼羿翀翃翈翎翏翛翟翣翥翨翬翮翯翲翺翽翾翿耇耈耊耍耎耏耑耓耔耖耝耞耟耠耤耦耬耮耰耴耵耷耹耺耼耾聀聄聠聤聦聭聱聵肁肈肎肜肞肦肧肫肸肹胈胍胏胒胔胕胗胘胠胭胮"], +["8fd6a1","胰胲胳胶胹胺胾脃脋脖脗脘脜脞脠脤脧脬脰脵脺脼腅腇腊腌腒腗腠腡腧腨腩腭腯腷膁膐膄膅膆膋膎膖膘膛膞膢膮膲膴膻臋臃臅臊臎臏臕臗臛臝臞臡臤臫臬臰臱臲臵臶臸臹臽臿舀舃舏舓舔舙舚舝舡舢舨舲舴舺艃艄艅艆"], +["8fd7a1","艋艎艏艑艖艜艠艣艧艭艴艻艽艿芀芁芃芄芇芉芊芎芑芔芖芘芚芛芠芡芣芤芧芨芩芪芮芰芲芴芷芺芼芾芿苆苐苕苚苠苢苤苨苪苭苯苶苷苽苾茀茁茇茈茊茋荔茛茝茞茟茡茢茬茭茮茰茳茷茺茼茽荂荃荄荇荍荎荑荕荖荗荰荸"], +["8fd8a1","荽荿莀莂莄莆莍莒莔莕莘莙莛莜莝莦莧莩莬莾莿菀菇菉菏菐菑菔菝荓菨菪菶菸菹菼萁萆萊萏萑萕萙莭萯萹葅葇葈葊葍葏葑葒葖葘葙葚葜葠葤葥葧葪葰葳葴葶葸葼葽蒁蒅蒒蒓蒕蒞蒦蒨蒩蒪蒯蒱蒴蒺蒽蒾蓀蓂蓇蓈蓌蓏蓓"], +["8fd9a1","蓜蓧蓪蓯蓰蓱蓲蓷蔲蓺蓻蓽蔂蔃蔇蔌蔎蔐蔜蔞蔢蔣蔤蔥蔧蔪蔫蔯蔳蔴蔶蔿蕆蕏",4,"蕖蕙蕜",6,"蕤蕫蕯蕹蕺蕻蕽蕿薁薅薆薉薋薌薏薓薘薝薟薠薢薥薧薴薶薷薸薼薽薾薿藂藇藊藋藎薭藘藚藟藠藦藨藭藳藶藼"], +["8fdaa1","藿蘀蘄蘅蘍蘎蘐蘑蘒蘘蘙蘛蘞蘡蘧蘩蘶蘸蘺蘼蘽虀虂虆虒虓虖虗虘虙虝虠",4,"虩虬虯虵虶虷虺蚍蚑蚖蚘蚚蚜蚡蚦蚧蚨蚭蚱蚳蚴蚵蚷蚸蚹蚿蛀蛁蛃蛅蛑蛒蛕蛗蛚蛜蛠蛣蛥蛧蚈蛺蛼蛽蜄蜅蜇蜋蜎蜏蜐蜓蜔蜙蜞蜟蜡蜣"], +["8fdba1","蜨蜮蜯蜱蜲蜹蜺蜼蜽蜾蝀蝃蝅蝍蝘蝝蝡蝤蝥蝯蝱蝲蝻螃",6,"螋螌螐螓螕螗螘螙螞螠螣螧螬螭螮螱螵螾螿蟁蟈蟉蟊蟎蟕蟖蟙蟚蟜蟟蟢蟣蟤蟪蟫蟭蟱蟳蟸蟺蟿蠁蠃蠆蠉蠊蠋蠐蠙蠒蠓蠔蠘蠚蠛蠜蠞蠟蠨蠭蠮蠰蠲蠵"], +["8fdca1","蠺蠼衁衃衅衈衉衊衋衎衑衕衖衘衚衜衟衠衤衩衱衹衻袀袘袚袛袜袟袠袨袪袺袽袾裀裊",4,"裑裒裓裛裞裧裯裰裱裵裷褁褆褍褎褏褕褖褘褙褚褜褠褦褧褨褰褱褲褵褹褺褾襀襂襅襆襉襏襒襗襚襛襜襡襢襣襫襮襰襳襵襺"], +["8fdda1","襻襼襽覉覍覐覔覕覛覜覟覠覥覰覴覵覶覷覼觔",4,"觥觩觫觭觱觳觶觹觽觿訄訅訇訏訑訒訔訕訞訠訢訤訦訫訬訯訵訷訽訾詀詃詅詇詉詍詎詓詖詗詘詜詝詡詥詧詵詶詷詹詺詻詾詿誀誃誆誋誏誐誒誖誗誙誟誧誩誮誯誳"], +["8fdea1","誶誷誻誾諃諆諈諉諊諑諓諔諕諗諝諟諬諰諴諵諶諼諿謅謆謋謑謜謞謟謊謭謰謷謼譂",4,"譈譒譓譔譙譍譞譣譭譶譸譹譼譾讁讄讅讋讍讏讔讕讜讞讟谸谹谽谾豅豇豉豋豏豑豓豔豗豘豛豝豙豣豤豦豨豩豭豳豵豶豻豾貆"], +["8fdfa1","貇貋貐貒貓貙貛貜貤貹貺賅賆賉賋賏賖賕賙賝賡賨賬賯賰賲賵賷賸賾賿贁贃贉贒贗贛赥赩赬赮赿趂趄趈趍趐趑趕趞趟趠趦趫趬趯趲趵趷趹趻跀跅跆跇跈跊跎跑跔跕跗跙跤跥跧跬跰趼跱跲跴跽踁踄踅踆踋踑踔踖踠踡踢"], +["8fe0a1","踣踦踧踱踳踶踷踸踹踽蹀蹁蹋蹍蹎蹏蹔蹛蹜蹝蹞蹡蹢蹩蹬蹭蹯蹰蹱蹹蹺蹻躂躃躉躐躒躕躚躛躝躞躢躧躩躭躮躳躵躺躻軀軁軃軄軇軏軑軔軜軨軮軰軱軷軹軺軭輀輂輇輈輏輐輖輗輘輞輠輡輣輥輧輨輬輭輮輴輵輶輷輺轀轁"], +["8fe1a1","轃轇轏轑",4,"轘轝轞轥辝辠辡辤辥辦辵辶辸达迀迁迆迊迋迍运迒迓迕迠迣迤迨迮迱迵迶迻迾适逄逈逌逘逛逨逩逯逪逬逭逳逴逷逿遃遄遌遛遝遢遦遧遬遰遴遹邅邈邋邌邎邐邕邗邘邙邛邠邡邢邥邰邲邳邴邶邽郌邾郃"], +["8fe2a1","郄郅郇郈郕郗郘郙郜郝郟郥郒郶郫郯郰郴郾郿鄀鄄鄅鄆鄈鄍鄐鄔鄖鄗鄘鄚鄜鄞鄠鄥鄢鄣鄧鄩鄮鄯鄱鄴鄶鄷鄹鄺鄼鄽酃酇酈酏酓酗酙酚酛酡酤酧酭酴酹酺酻醁醃醅醆醊醎醑醓醔醕醘醞醡醦醨醬醭醮醰醱醲醳醶醻醼醽醿"], +["8fe3a1","釂釃釅釓釔釗釙釚釞釤釥釩釪釬",5,"釷釹釻釽鈀鈁鈄鈅鈆鈇鈉鈊鈌鈐鈒鈓鈖鈘鈜鈝鈣鈤鈥鈦鈨鈮鈯鈰鈳鈵鈶鈸鈹鈺鈼鈾鉀鉂鉃鉆鉇鉊鉍鉎鉏鉑鉘鉙鉜鉝鉠鉡鉥鉧鉨鉩鉮鉯鉰鉵",4,"鉻鉼鉽鉿銈銉銊銍銎銒銗"], +["8fe4a1","銙銟銠銤銥銧銨銫銯銲銶銸銺銻銼銽銿",4,"鋅鋆鋇鋈鋋鋌鋍鋎鋐鋓鋕鋗鋘鋙鋜鋝鋟鋠鋡鋣鋥鋧鋨鋬鋮鋰鋹鋻鋿錀錂錈錍錑錔錕錜錝錞錟錡錤錥錧錩錪錳錴錶錷鍇鍈鍉鍐鍑鍒鍕鍗鍘鍚鍞鍤鍥鍧鍩鍪鍭鍯鍰鍱鍳鍴鍶"], +["8fe5a1","鍺鍽鍿鎀鎁鎂鎈鎊鎋鎍鎏鎒鎕鎘鎛鎞鎡鎣鎤鎦鎨鎫鎴鎵鎶鎺鎩鏁鏄鏅鏆鏇鏉",4,"鏓鏙鏜鏞鏟鏢鏦鏧鏹鏷鏸鏺鏻鏽鐁鐂鐄鐈鐉鐍鐎鐏鐕鐖鐗鐟鐮鐯鐱鐲鐳鐴鐻鐿鐽鑃鑅鑈鑊鑌鑕鑙鑜鑟鑡鑣鑨鑫鑭鑮鑯鑱鑲钄钃镸镹"], +["8fe6a1","镾閄閈閌閍閎閝閞閟閡閦閩閫閬閴閶閺閽閿闆闈闉闋闐闑闒闓闙闚闝闞闟闠闤闦阝阞阢阤阥阦阬阱阳阷阸阹阺阼阽陁陒陔陖陗陘陡陮陴陻陼陾陿隁隂隃隄隉隑隖隚隝隟隤隥隦隩隮隯隳隺雊雒嶲雘雚雝雞雟雩雯雱雺霂"], +["8fe7a1","霃霅霉霚霛霝霡霢霣霨霱霳靁靃靊靎靏靕靗靘靚靛靣靧靪靮靳靶靷靸靻靽靿鞀鞉鞕鞖鞗鞙鞚鞞鞟鞢鞬鞮鞱鞲鞵鞶鞸鞹鞺鞼鞾鞿韁韄韅韇韉韊韌韍韎韐韑韔韗韘韙韝韞韠韛韡韤韯韱韴韷韸韺頇頊頙頍頎頔頖頜頞頠頣頦"], +["8fe8a1","頫頮頯頰頲頳頵頥頾顄顇顊顑顒顓顖顗顙顚顢顣顥顦顪顬颫颭颮颰颴颷颸颺颻颿飂飅飈飌飡飣飥飦飧飪飳飶餂餇餈餑餕餖餗餚餛餜餟餢餦餧餫餱",4,"餹餺餻餼饀饁饆饇饈饍饎饔饘饙饛饜饞饟饠馛馝馟馦馰馱馲馵"], +["8fe9a1","馹馺馽馿駃駉駓駔駙駚駜駞駧駪駫駬駰駴駵駹駽駾騂騃騄騋騌騐騑騖騞騠騢騣騤騧騭騮騳騵騶騸驇驁驄驊驋驌驎驑驔驖驝骪骬骮骯骲骴骵骶骹骻骾骿髁髃髆髈髎髐髒髕髖髗髛髜髠髤髥髧髩髬髲髳髵髹髺髽髿",4], +["8feaa1","鬄鬅鬈鬉鬋鬌鬍鬎鬐鬒鬖鬙鬛鬜鬠鬦鬫鬭鬳鬴鬵鬷鬹鬺鬽魈魋魌魕魖魗魛魞魡魣魥魦魨魪",4,"魳魵魷魸魹魿鮀鮄鮅鮆鮇鮉鮊鮋鮍鮏鮐鮔鮚鮝鮞鮦鮧鮩鮬鮰鮱鮲鮷鮸鮻鮼鮾鮿鯁鯇鯈鯎鯐鯗鯘鯝鯟鯥鯧鯪鯫鯯鯳鯷鯸"], +["8feba1","鯹鯺鯽鯿鰀鰂鰋鰏鰑鰖鰘鰙鰚鰜鰞鰢鰣鰦",4,"鰱鰵鰶鰷鰽鱁鱃鱄鱅鱉鱊鱎鱏鱐鱓鱔鱖鱘鱛鱝鱞鱟鱣鱩鱪鱜鱫鱨鱮鱰鱲鱵鱷鱻鳦鳲鳷鳹鴋鴂鴑鴗鴘鴜鴝鴞鴯鴰鴲鴳鴴鴺鴼鵅鴽鵂鵃鵇鵊鵓鵔鵟鵣鵢鵥鵩鵪鵫鵰鵶鵷鵻"], +["8feca1","鵼鵾鶃鶄鶆鶊鶍鶎鶒鶓鶕鶖鶗鶘鶡鶪鶬鶮鶱鶵鶹鶼鶿鷃鷇鷉鷊鷔鷕鷖鷗鷚鷞鷟鷠鷥鷧鷩鷫鷮鷰鷳鷴鷾鸊鸂鸇鸎鸐鸑鸒鸕鸖鸙鸜鸝鹺鹻鹼麀麂麃麄麅麇麎麏麖麘麛麞麤麨麬麮麯麰麳麴麵黆黈黋黕黟黤黧黬黭黮黰黱黲黵"], +["8feda1","黸黿鼂鼃鼉鼏鼐鼑鼒鼔鼖鼗鼙鼚鼛鼟鼢鼦鼪鼫鼯鼱鼲鼴鼷鼹鼺鼼鼽鼿齁齃",4,"齓齕齖齗齘齚齝齞齨齩齭",4,"齳齵齺齽龏龐龑龒龔龖龗龞龡龢龣龥"] +] diff --git a/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json b/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json new file mode 100644 index 000000000..85c693475 --- /dev/null +++ b/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json @@ -0,0 +1 @@ +{"uChars":[128,165,169,178,184,216,226,235,238,244,248,251,253,258,276,284,300,325,329,334,364,463,465,467,469,471,473,475,477,506,594,610,712,716,730,930,938,962,970,1026,1104,1106,8209,8215,8218,8222,8231,8241,8244,8246,8252,8365,8452,8454,8458,8471,8482,8556,8570,8596,8602,8713,8720,8722,8726,8731,8737,8740,8742,8748,8751,8760,8766,8777,8781,8787,8802,8808,8816,8854,8858,8870,8896,8979,9322,9372,9548,9588,9616,9622,9634,9652,9662,9672,9676,9680,9702,9735,9738,9793,9795,11906,11909,11913,11917,11928,11944,11947,11951,11956,11960,11964,11979,12284,12292,12312,12319,12330,12351,12436,12447,12535,12543,12586,12842,12850,12964,13200,13215,13218,13253,13263,13267,13270,13384,13428,13727,13839,13851,14617,14703,14801,14816,14964,15183,15471,15585,16471,16736,17208,17325,17330,17374,17623,17997,18018,18212,18218,18301,18318,18760,18811,18814,18820,18823,18844,18848,18872,19576,19620,19738,19887,40870,59244,59336,59367,59413,59417,59423,59431,59437,59443,59452,59460,59478,59493,63789,63866,63894,63976,63986,64016,64018,64021,64025,64034,64037,64042,65074,65093,65107,65112,65127,65132,65375,65510,65536],"gbChars":[0,36,38,45,50,81,89,95,96,100,103,104,105,109,126,133,148,172,175,179,208,306,307,308,309,310,311,312,313,341,428,443,544,545,558,741,742,749,750,805,819,820,7922,7924,7925,7927,7934,7943,7944,7945,7950,8062,8148,8149,8152,8164,8174,8236,8240,8262,8264,8374,8380,8381,8384,8388,8390,8392,8393,8394,8396,8401,8406,8416,8419,8424,8437,8439,8445,8482,8485,8496,8521,8603,8936,8946,9046,9050,9063,9066,9076,9092,9100,9108,9111,9113,9131,9162,9164,9218,9219,11329,11331,11334,11336,11346,11361,11363,11366,11370,11372,11375,11389,11682,11686,11687,11692,11694,11714,11716,11723,11725,11730,11736,11982,11989,12102,12336,12348,12350,12384,12393,12395,12397,12510,12553,12851,12962,12973,13738,13823,13919,13933,14080,14298,14585,14698,15583,15847,16318,16434,16438,16481,16729,17102,17122,17315,17320,17402,17418,17859,17909,17911,17915,17916,17936,17939,17961,18664,18703,18814,18962,19043,33469,33470,33471,33484,33485,33490,33497,33501,33505,33513,33520,33536,33550,37845,37921,37948,38029,38038,38064,38065,38066,38069,38075,38076,38078,39108,39109,39113,39114,39115,39116,39265,39394,189000]} \ No newline at end of file diff --git a/node_modules/iconv-lite/encodings/tables/gbk-added.json b/node_modules/iconv-lite/encodings/tables/gbk-added.json new file mode 100644 index 000000000..8abfa9f7b --- /dev/null +++ b/node_modules/iconv-lite/encodings/tables/gbk-added.json @@ -0,0 +1,55 @@ +[ +["a140","",62], +["a180","",32], +["a240","",62], +["a280","",32], +["a2ab","",5], +["a2e3","€"], +["a2ef",""], +["a2fd",""], +["a340","",62], +["a380","",31," "], +["a440","",62], +["a480","",32], +["a4f4","",10], +["a540","",62], +["a580","",32], +["a5f7","",7], +["a640","",62], +["a680","",32], +["a6b9","",7], +["a6d9","",6], +["a6ec",""], +["a6f3",""], +["a6f6","",8], +["a740","",62], +["a780","",32], +["a7c2","",14], +["a7f2","",12], +["a896","",10], +["a8bc",""], +["a8bf","ǹ"], +["a8c1",""], +["a8ea","",20], +["a958",""], +["a95b",""], +["a95d",""], +["a989","〾⿰",11], +["a997","",12], +["a9f0","",14], +["aaa1","",93], +["aba1","",93], +["aca1","",93], +["ada1","",93], +["aea1","",93], +["afa1","",93], +["d7fa","",4], +["f8a1","",93], +["f9a1","",93], +["faa1","",93], +["fba1","",93], +["fca1","",93], +["fda1","",93], +["fe50","⺁⺄㑳㑇⺈⺋㖞㘚㘎⺌⺗㥮㤘㧏㧟㩳㧐㭎㱮㳠⺧⺪䁖䅟⺮䌷⺳⺶⺷䎱䎬⺻䏝䓖䙡䙌"], +["fe80","䜣䜩䝼䞍⻊䥇䥺䥽䦂䦃䦅䦆䦟䦛䦷䦶䲣䲟䲠䲡䱷䲢䴓",6,"䶮",93] +] diff --git a/node_modules/iconv-lite/encodings/tables/shiftjis.json b/node_modules/iconv-lite/encodings/tables/shiftjis.json new file mode 100644 index 000000000..5a3a43cf8 --- /dev/null +++ b/node_modules/iconv-lite/encodings/tables/shiftjis.json @@ -0,0 +1,125 @@ +[ +["0","\u0000",128], +["a1","。",62], +["8140"," 、。,.・:;?!゛゜´`¨^ ̄_ヽヾゝゞ〃仝々〆〇ー―‐/\~∥|…‥‘’“”()〔〕[]{}〈",9,"+-±×"], +["8180","÷=≠<>≦≧∞∴♂♀°′″℃¥$¢£%#&*@§☆★○●◎◇◆□■△▲▽▼※〒→←↑↓〓"], +["81b8","∈∋⊆⊇⊂⊃∪∩"], +["81c8","∧∨¬⇒⇔∀∃"], +["81da","∠⊥⌒∂∇≡≒≪≫√∽∝∵∫∬"], +["81f0","ʼn♯♭♪†‡¶"], +["81fc","◯"], +["824f","0",9], +["8260","A",25], +["8281","a",25], +["829f","ぁ",82], +["8340","ァ",62], +["8380","ム",22], +["839f","Α",16,"Σ",6], +["83bf","α",16,"σ",6], +["8440","А",5,"ЁЖ",25], +["8470","а",5,"ёж",7], +["8480","о",17], +["849f","─│┌┐┘└├┬┤┴┼━┃┏┓┛┗┣┳┫┻╋┠┯┨┷┿┝┰┥┸╂"], +["8740","①",19,"Ⅰ",9], +["875f","㍉㌔㌢㍍㌘㌧㌃㌶㍑㍗㌍㌦㌣㌫㍊㌻㎜㎝㎞㎎㎏㏄㎡"], +["877e","㍻"], +["8780","〝〟№㏍℡㊤",4,"㈱㈲㈹㍾㍽㍼≒≡∫∮∑√⊥∠∟⊿∵∩∪"], +["889f","亜唖娃阿哀愛挨姶逢葵茜穐悪握渥旭葦芦鯵梓圧斡扱宛姐虻飴絢綾鮎或粟袷安庵按暗案闇鞍杏以伊位依偉囲夷委威尉惟意慰易椅為畏異移維緯胃萎衣謂違遺医井亥域育郁磯一壱溢逸稲茨芋鰯允印咽員因姻引飲淫胤蔭"], +["8940","院陰隠韻吋右宇烏羽迂雨卯鵜窺丑碓臼渦嘘唄欝蔚鰻姥厩浦瓜閏噂云運雲荏餌叡営嬰影映曳栄永泳洩瑛盈穎頴英衛詠鋭液疫益駅悦謁越閲榎厭円"], +["8980","園堰奄宴延怨掩援沿演炎焔煙燕猿縁艶苑薗遠鉛鴛塩於汚甥凹央奥往応押旺横欧殴王翁襖鴬鴎黄岡沖荻億屋憶臆桶牡乙俺卸恩温穏音下化仮何伽価佳加可嘉夏嫁家寡科暇果架歌河火珂禍禾稼箇花苛茄荷華菓蝦課嘩貨迦過霞蚊俄峨我牙画臥芽蛾賀雅餓駕介会解回塊壊廻快怪悔恢懐戒拐改"], +["8a40","魁晦械海灰界皆絵芥蟹開階貝凱劾外咳害崖慨概涯碍蓋街該鎧骸浬馨蛙垣柿蛎鈎劃嚇各廓拡撹格核殻獲確穫覚角赫較郭閣隔革学岳楽額顎掛笠樫"], +["8a80","橿梶鰍潟割喝恰括活渇滑葛褐轄且鰹叶椛樺鞄株兜竃蒲釜鎌噛鴨栢茅萱粥刈苅瓦乾侃冠寒刊勘勧巻喚堪姦完官寛干幹患感慣憾換敢柑桓棺款歓汗漢澗潅環甘監看竿管簡緩缶翰肝艦莞観諌貫還鑑間閑関陥韓館舘丸含岸巌玩癌眼岩翫贋雁頑顔願企伎危喜器基奇嬉寄岐希幾忌揮机旗既期棋棄"], +["8b40","機帰毅気汽畿祈季稀紀徽規記貴起軌輝飢騎鬼亀偽儀妓宜戯技擬欺犠疑祇義蟻誼議掬菊鞠吉吃喫桔橘詰砧杵黍却客脚虐逆丘久仇休及吸宮弓急救"], +["8b80","朽求汲泣灸球究窮笈級糾給旧牛去居巨拒拠挙渠虚許距鋸漁禦魚亨享京供侠僑兇競共凶協匡卿叫喬境峡強彊怯恐恭挟教橋況狂狭矯胸脅興蕎郷鏡響饗驚仰凝尭暁業局曲極玉桐粁僅勤均巾錦斤欣欽琴禁禽筋緊芹菌衿襟謹近金吟銀九倶句区狗玖矩苦躯駆駈駒具愚虞喰空偶寓遇隅串櫛釧屑屈"], +["8c40","掘窟沓靴轡窪熊隈粂栗繰桑鍬勲君薫訓群軍郡卦袈祁係傾刑兄啓圭珪型契形径恵慶慧憩掲携敬景桂渓畦稽系経継繋罫茎荊蛍計詣警軽頚鶏芸迎鯨"], +["8c80","劇戟撃激隙桁傑欠決潔穴結血訣月件倹倦健兼券剣喧圏堅嫌建憲懸拳捲検権牽犬献研硯絹県肩見謙賢軒遣鍵険顕験鹸元原厳幻弦減源玄現絃舷言諺限乎個古呼固姑孤己庫弧戸故枯湖狐糊袴股胡菰虎誇跨鈷雇顧鼓五互伍午呉吾娯後御悟梧檎瑚碁語誤護醐乞鯉交佼侯候倖光公功効勾厚口向"], +["8d40","后喉坑垢好孔孝宏工巧巷幸広庚康弘恒慌抗拘控攻昂晃更杭校梗構江洪浩港溝甲皇硬稿糠紅紘絞綱耕考肯肱腔膏航荒行衡講貢購郊酵鉱砿鋼閤降"], +["8d80","項香高鴻剛劫号合壕拷濠豪轟麹克刻告国穀酷鵠黒獄漉腰甑忽惚骨狛込此頃今困坤墾婚恨懇昏昆根梱混痕紺艮魂些佐叉唆嵯左差査沙瑳砂詐鎖裟坐座挫債催再最哉塞妻宰彩才採栽歳済災采犀砕砦祭斎細菜裁載際剤在材罪財冴坂阪堺榊肴咲崎埼碕鷺作削咋搾昨朔柵窄策索錯桜鮭笹匙冊刷"], +["8e40","察拶撮擦札殺薩雑皐鯖捌錆鮫皿晒三傘参山惨撒散桟燦珊産算纂蚕讃賛酸餐斬暫残仕仔伺使刺司史嗣四士始姉姿子屍市師志思指支孜斯施旨枝止"], +["8e80","死氏獅祉私糸紙紫肢脂至視詞詩試誌諮資賜雌飼歯事似侍児字寺慈持時次滋治爾璽痔磁示而耳自蒔辞汐鹿式識鴫竺軸宍雫七叱執失嫉室悉湿漆疾質実蔀篠偲柴芝屡蕊縞舎写射捨赦斜煮社紗者謝車遮蛇邪借勺尺杓灼爵酌釈錫若寂弱惹主取守手朱殊狩珠種腫趣酒首儒受呪寿授樹綬需囚収周"], +["8f40","宗就州修愁拾洲秀秋終繍習臭舟蒐衆襲讐蹴輯週酋酬集醜什住充十従戎柔汁渋獣縦重銃叔夙宿淑祝縮粛塾熟出術述俊峻春瞬竣舜駿准循旬楯殉淳"], +["8f80","準潤盾純巡遵醇順処初所暑曙渚庶緒署書薯藷諸助叙女序徐恕鋤除傷償勝匠升召哨商唱嘗奨妾娼宵将小少尚庄床廠彰承抄招掌捷昇昌昭晶松梢樟樵沼消渉湘焼焦照症省硝礁祥称章笑粧紹肖菖蒋蕉衝裳訟証詔詳象賞醤鉦鍾鐘障鞘上丈丞乗冗剰城場壌嬢常情擾条杖浄状畳穣蒸譲醸錠嘱埴飾"], +["9040","拭植殖燭織職色触食蝕辱尻伸信侵唇娠寝審心慎振新晋森榛浸深申疹真神秦紳臣芯薪親診身辛進針震人仁刃塵壬尋甚尽腎訊迅陣靭笥諏須酢図厨"], +["9080","逗吹垂帥推水炊睡粋翠衰遂酔錐錘随瑞髄崇嵩数枢趨雛据杉椙菅頗雀裾澄摺寸世瀬畝是凄制勢姓征性成政整星晴棲栖正清牲生盛精聖声製西誠誓請逝醒青静斉税脆隻席惜戚斥昔析石積籍績脊責赤跡蹟碩切拙接摂折設窃節説雪絶舌蝉仙先千占宣専尖川戦扇撰栓栴泉浅洗染潜煎煽旋穿箭線"], +["9140","繊羨腺舛船薦詮賎践選遷銭銑閃鮮前善漸然全禅繕膳糎噌塑岨措曾曽楚狙疏疎礎祖租粗素組蘇訴阻遡鼠僧創双叢倉喪壮奏爽宋層匝惣想捜掃挿掻"], +["9180","操早曹巣槍槽漕燥争痩相窓糟総綜聡草荘葬蒼藻装走送遭鎗霜騒像増憎臓蔵贈造促側則即息捉束測足速俗属賊族続卒袖其揃存孫尊損村遜他多太汰詑唾堕妥惰打柁舵楕陀駄騨体堆対耐岱帯待怠態戴替泰滞胎腿苔袋貸退逮隊黛鯛代台大第醍題鷹滝瀧卓啄宅托択拓沢濯琢託鐸濁諾茸凧蛸只"], +["9240","叩但達辰奪脱巽竪辿棚谷狸鱈樽誰丹単嘆坦担探旦歎淡湛炭短端箪綻耽胆蛋誕鍛団壇弾断暖檀段男談値知地弛恥智池痴稚置致蜘遅馳築畜竹筑蓄"], +["9280","逐秩窒茶嫡着中仲宙忠抽昼柱注虫衷註酎鋳駐樗瀦猪苧著貯丁兆凋喋寵帖帳庁弔張彫徴懲挑暢朝潮牒町眺聴脹腸蝶調諜超跳銚長頂鳥勅捗直朕沈珍賃鎮陳津墜椎槌追鎚痛通塚栂掴槻佃漬柘辻蔦綴鍔椿潰坪壷嬬紬爪吊釣鶴亭低停偵剃貞呈堤定帝底庭廷弟悌抵挺提梯汀碇禎程締艇訂諦蹄逓"], +["9340","邸鄭釘鼎泥摘擢敵滴的笛適鏑溺哲徹撤轍迭鉄典填天展店添纏甜貼転顛点伝殿澱田電兎吐堵塗妬屠徒斗杜渡登菟賭途都鍍砥砺努度土奴怒倒党冬"], +["9380","凍刀唐塔塘套宕島嶋悼投搭東桃梼棟盗淘湯涛灯燈当痘祷等答筒糖統到董蕩藤討謄豆踏逃透鐙陶頭騰闘働動同堂導憧撞洞瞳童胴萄道銅峠鴇匿得徳涜特督禿篤毒独読栃橡凸突椴届鳶苫寅酉瀞噸屯惇敦沌豚遁頓呑曇鈍奈那内乍凪薙謎灘捺鍋楢馴縄畷南楠軟難汝二尼弐迩匂賑肉虹廿日乳入"], +["9440","如尿韮任妊忍認濡禰祢寧葱猫熱年念捻撚燃粘乃廼之埜嚢悩濃納能脳膿農覗蚤巴把播覇杷波派琶破婆罵芭馬俳廃拝排敗杯盃牌背肺輩配倍培媒梅"], +["9480","楳煤狽買売賠陪這蝿秤矧萩伯剥博拍柏泊白箔粕舶薄迫曝漠爆縛莫駁麦函箱硲箸肇筈櫨幡肌畑畠八鉢溌発醗髪伐罰抜筏閥鳩噺塙蛤隼伴判半反叛帆搬斑板氾汎版犯班畔繁般藩販範釆煩頒飯挽晩番盤磐蕃蛮匪卑否妃庇彼悲扉批披斐比泌疲皮碑秘緋罷肥被誹費避非飛樋簸備尾微枇毘琵眉美"], +["9540","鼻柊稗匹疋髭彦膝菱肘弼必畢筆逼桧姫媛紐百謬俵彪標氷漂瓢票表評豹廟描病秒苗錨鋲蒜蛭鰭品彬斌浜瀕貧賓頻敏瓶不付埠夫婦富冨布府怖扶敷"], +["9580","斧普浮父符腐膚芙譜負賦赴阜附侮撫武舞葡蕪部封楓風葺蕗伏副復幅服福腹複覆淵弗払沸仏物鮒分吻噴墳憤扮焚奮粉糞紛雰文聞丙併兵塀幣平弊柄並蔽閉陛米頁僻壁癖碧別瞥蔑箆偏変片篇編辺返遍便勉娩弁鞭保舗鋪圃捕歩甫補輔穂募墓慕戊暮母簿菩倣俸包呆報奉宝峰峯崩庖抱捧放方朋"], +["9640","法泡烹砲縫胞芳萌蓬蜂褒訪豊邦鋒飽鳳鵬乏亡傍剖坊妨帽忘忙房暴望某棒冒紡肪膨謀貌貿鉾防吠頬北僕卜墨撲朴牧睦穆釦勃没殆堀幌奔本翻凡盆"], +["9680","摩磨魔麻埋妹昧枚毎哩槙幕膜枕鮪柾鱒桝亦俣又抹末沫迄侭繭麿万慢満漫蔓味未魅巳箕岬密蜜湊蓑稔脈妙粍民眠務夢無牟矛霧鵡椋婿娘冥名命明盟迷銘鳴姪牝滅免棉綿緬面麺摸模茂妄孟毛猛盲網耗蒙儲木黙目杢勿餅尤戻籾貰問悶紋門匁也冶夜爺耶野弥矢厄役約薬訳躍靖柳薮鑓愉愈油癒"], +["9740","諭輸唯佑優勇友宥幽悠憂揖有柚湧涌猶猷由祐裕誘遊邑郵雄融夕予余与誉輿預傭幼妖容庸揚揺擁曜楊様洋溶熔用窯羊耀葉蓉要謡踊遥陽養慾抑欲"], +["9780","沃浴翌翼淀羅螺裸来莱頼雷洛絡落酪乱卵嵐欄濫藍蘭覧利吏履李梨理璃痢裏裡里離陸律率立葎掠略劉流溜琉留硫粒隆竜龍侶慮旅虜了亮僚両凌寮料梁涼猟療瞭稜糧良諒遼量陵領力緑倫厘林淋燐琳臨輪隣鱗麟瑠塁涙累類令伶例冷励嶺怜玲礼苓鈴隷零霊麗齢暦歴列劣烈裂廉恋憐漣煉簾練聯"], +["9840","蓮連錬呂魯櫓炉賂路露労婁廊弄朗楼榔浪漏牢狼篭老聾蝋郎六麓禄肋録論倭和話歪賄脇惑枠鷲亙亘鰐詫藁蕨椀湾碗腕"], +["989f","弌丐丕个丱丶丼丿乂乖乘亂亅豫亊舒弍于亞亟亠亢亰亳亶从仍仄仆仂仗仞仭仟价伉佚估佛佝佗佇佶侈侏侘佻佩佰侑佯來侖儘俔俟俎俘俛俑俚俐俤俥倚倨倔倪倥倅伜俶倡倩倬俾俯們倆偃假會偕偐偈做偖偬偸傀傚傅傴傲"], +["9940","僉僊傳僂僖僞僥僭僣僮價僵儉儁儂儖儕儔儚儡儺儷儼儻儿兀兒兌兔兢竸兩兪兮冀冂囘册冉冏冑冓冕冖冤冦冢冩冪冫决冱冲冰况冽凅凉凛几處凩凭"], +["9980","凰凵凾刄刋刔刎刧刪刮刳刹剏剄剋剌剞剔剪剴剩剳剿剽劍劔劒剱劈劑辨辧劬劭劼劵勁勍勗勞勣勦飭勠勳勵勸勹匆匈甸匍匐匏匕匚匣匯匱匳匸區卆卅丗卉卍凖卞卩卮夘卻卷厂厖厠厦厥厮厰厶參簒雙叟曼燮叮叨叭叺吁吽呀听吭吼吮吶吩吝呎咏呵咎呟呱呷呰咒呻咀呶咄咐咆哇咢咸咥咬哄哈咨"], +["9a40","咫哂咤咾咼哘哥哦唏唔哽哮哭哺哢唹啀啣啌售啜啅啖啗唸唳啝喙喀咯喊喟啻啾喘喞單啼喃喩喇喨嗚嗅嗟嗄嗜嗤嗔嘔嗷嘖嗾嗽嘛嗹噎噐營嘴嘶嘲嘸"], +["9a80","噫噤嘯噬噪嚆嚀嚊嚠嚔嚏嚥嚮嚶嚴囂嚼囁囃囀囈囎囑囓囗囮囹圀囿圄圉圈國圍圓團圖嗇圜圦圷圸坎圻址坏坩埀垈坡坿垉垓垠垳垤垪垰埃埆埔埒埓堊埖埣堋堙堝塲堡塢塋塰毀塒堽塹墅墹墟墫墺壞墻墸墮壅壓壑壗壙壘壥壜壤壟壯壺壹壻壼壽夂夊夐夛梦夥夬夭夲夸夾竒奕奐奎奚奘奢奠奧奬奩"], +["9b40","奸妁妝佞侫妣妲姆姨姜妍姙姚娥娟娑娜娉娚婀婬婉娵娶婢婪媚媼媾嫋嫂媽嫣嫗嫦嫩嫖嫺嫻嬌嬋嬖嬲嫐嬪嬶嬾孃孅孀孑孕孚孛孥孩孰孳孵學斈孺宀"], +["9b80","它宦宸寃寇寉寔寐寤實寢寞寥寫寰寶寳尅將專對尓尠尢尨尸尹屁屆屎屓屐屏孱屬屮乢屶屹岌岑岔妛岫岻岶岼岷峅岾峇峙峩峽峺峭嶌峪崋崕崗嵜崟崛崑崔崢崚崙崘嵌嵒嵎嵋嵬嵳嵶嶇嶄嶂嶢嶝嶬嶮嶽嶐嶷嶼巉巍巓巒巖巛巫已巵帋帚帙帑帛帶帷幄幃幀幎幗幔幟幢幤幇幵并幺麼广庠廁廂廈廐廏"], +["9c40","廖廣廝廚廛廢廡廨廩廬廱廳廰廴廸廾弃弉彝彜弋弑弖弩弭弸彁彈彌彎弯彑彖彗彙彡彭彳彷徃徂彿徊很徑徇從徙徘徠徨徭徼忖忻忤忸忱忝悳忿怡恠"], +["9c80","怙怐怩怎怱怛怕怫怦怏怺恚恁恪恷恟恊恆恍恣恃恤恂恬恫恙悁悍惧悃悚悄悛悖悗悒悧悋惡悸惠惓悴忰悽惆悵惘慍愕愆惶惷愀惴惺愃愡惻惱愍愎慇愾愨愧慊愿愼愬愴愽慂慄慳慷慘慙慚慫慴慯慥慱慟慝慓慵憙憖憇憬憔憚憊憑憫憮懌懊應懷懈懃懆憺懋罹懍懦懣懶懺懴懿懽懼懾戀戈戉戍戌戔戛"], +["9d40","戞戡截戮戰戲戳扁扎扞扣扛扠扨扼抂抉找抒抓抖拔抃抔拗拑抻拏拿拆擔拈拜拌拊拂拇抛拉挌拮拱挧挂挈拯拵捐挾捍搜捏掖掎掀掫捶掣掏掉掟掵捫"], +["9d80","捩掾揩揀揆揣揉插揶揄搖搴搆搓搦搶攝搗搨搏摧摯摶摎攪撕撓撥撩撈撼據擒擅擇撻擘擂擱擧舉擠擡抬擣擯攬擶擴擲擺攀擽攘攜攅攤攣攫攴攵攷收攸畋效敖敕敍敘敞敝敲數斂斃變斛斟斫斷旃旆旁旄旌旒旛旙无旡旱杲昊昃旻杳昵昶昴昜晏晄晉晁晞晝晤晧晨晟晢晰暃暈暎暉暄暘暝曁暹曉暾暼"], +["9e40","曄暸曖曚曠昿曦曩曰曵曷朏朖朞朦朧霸朮朿朶杁朸朷杆杞杠杙杣杤枉杰枩杼杪枌枋枦枡枅枷柯枴柬枳柩枸柤柞柝柢柮枹柎柆柧檜栞框栩桀桍栲桎"], +["9e80","梳栫桙档桷桿梟梏梭梔條梛梃檮梹桴梵梠梺椏梍桾椁棊椈棘椢椦棡椌棍棔棧棕椶椒椄棗棣椥棹棠棯椨椪椚椣椡棆楹楷楜楸楫楔楾楮椹楴椽楙椰楡楞楝榁楪榲榮槐榿槁槓榾槎寨槊槝榻槃榧樮榑榠榜榕榴槞槨樂樛槿權槹槲槧樅榱樞槭樔槫樊樒櫁樣樓橄樌橲樶橸橇橢橙橦橈樸樢檐檍檠檄檢檣"], +["9f40","檗蘗檻櫃櫂檸檳檬櫞櫑櫟檪櫚櫪櫻欅蘖櫺欒欖鬱欟欸欷盜欹飮歇歃歉歐歙歔歛歟歡歸歹歿殀殄殃殍殘殕殞殤殪殫殯殲殱殳殷殼毆毋毓毟毬毫毳毯"], +["9f80","麾氈氓气氛氤氣汞汕汢汪沂沍沚沁沛汾汨汳沒沐泄泱泓沽泗泅泝沮沱沾沺泛泯泙泪洟衍洶洫洽洸洙洵洳洒洌浣涓浤浚浹浙涎涕濤涅淹渕渊涵淇淦涸淆淬淞淌淨淒淅淺淙淤淕淪淮渭湮渮渙湲湟渾渣湫渫湶湍渟湃渺湎渤滿渝游溂溪溘滉溷滓溽溯滄溲滔滕溏溥滂溟潁漑灌滬滸滾漿滲漱滯漲滌"], +["e040","漾漓滷澆潺潸澁澀潯潛濳潭澂潼潘澎澑濂潦澳澣澡澤澹濆澪濟濕濬濔濘濱濮濛瀉瀋濺瀑瀁瀏濾瀛瀚潴瀝瀘瀟瀰瀾瀲灑灣炙炒炯烱炬炸炳炮烟烋烝"], +["e080","烙焉烽焜焙煥煕熈煦煢煌煖煬熏燻熄熕熨熬燗熹熾燒燉燔燎燠燬燧燵燼燹燿爍爐爛爨爭爬爰爲爻爼爿牀牆牋牘牴牾犂犁犇犒犖犢犧犹犲狃狆狄狎狒狢狠狡狹狷倏猗猊猜猖猝猴猯猩猥猾獎獏默獗獪獨獰獸獵獻獺珈玳珎玻珀珥珮珞璢琅瑯琥珸琲琺瑕琿瑟瑙瑁瑜瑩瑰瑣瑪瑶瑾璋璞璧瓊瓏瓔珱"], +["e140","瓠瓣瓧瓩瓮瓲瓰瓱瓸瓷甄甃甅甌甎甍甕甓甞甦甬甼畄畍畊畉畛畆畚畩畤畧畫畭畸當疆疇畴疊疉疂疔疚疝疥疣痂疳痃疵疽疸疼疱痍痊痒痙痣痞痾痿"], +["e180","痼瘁痰痺痲痳瘋瘍瘉瘟瘧瘠瘡瘢瘤瘴瘰瘻癇癈癆癜癘癡癢癨癩癪癧癬癰癲癶癸發皀皃皈皋皎皖皓皙皚皰皴皸皹皺盂盍盖盒盞盡盥盧盪蘯盻眈眇眄眩眤眞眥眦眛眷眸睇睚睨睫睛睥睿睾睹瞎瞋瞑瞠瞞瞰瞶瞹瞿瞼瞽瞻矇矍矗矚矜矣矮矼砌砒礦砠礪硅碎硴碆硼碚碌碣碵碪碯磑磆磋磔碾碼磅磊磬"], +["e240","磧磚磽磴礇礒礑礙礬礫祀祠祗祟祚祕祓祺祿禊禝禧齋禪禮禳禹禺秉秕秧秬秡秣稈稍稘稙稠稟禀稱稻稾稷穃穗穉穡穢穩龝穰穹穽窈窗窕窘窖窩竈窰"], +["e280","窶竅竄窿邃竇竊竍竏竕竓站竚竝竡竢竦竭竰笂笏笊笆笳笘笙笞笵笨笶筐筺笄筍笋筌筅筵筥筴筧筰筱筬筮箝箘箟箍箜箚箋箒箏筝箙篋篁篌篏箴篆篝篩簑簔篦篥籠簀簇簓篳篷簗簍篶簣簧簪簟簷簫簽籌籃籔籏籀籐籘籟籤籖籥籬籵粃粐粤粭粢粫粡粨粳粲粱粮粹粽糀糅糂糘糒糜糢鬻糯糲糴糶糺紆"], +["e340","紂紜紕紊絅絋紮紲紿紵絆絳絖絎絲絨絮絏絣經綉絛綏絽綛綺綮綣綵緇綽綫總綢綯緜綸綟綰緘緝緤緞緻緲緡縅縊縣縡縒縱縟縉縋縢繆繦縻縵縹繃縷"], +["e380","縲縺繧繝繖繞繙繚繹繪繩繼繻纃緕繽辮繿纈纉續纒纐纓纔纖纎纛纜缸缺罅罌罍罎罐网罕罔罘罟罠罨罩罧罸羂羆羃羈羇羌羔羞羝羚羣羯羲羹羮羶羸譱翅翆翊翕翔翡翦翩翳翹飜耆耄耋耒耘耙耜耡耨耿耻聊聆聒聘聚聟聢聨聳聲聰聶聹聽聿肄肆肅肛肓肚肭冐肬胛胥胙胝胄胚胖脉胯胱脛脩脣脯腋"], +["e440","隋腆脾腓腑胼腱腮腥腦腴膃膈膊膀膂膠膕膤膣腟膓膩膰膵膾膸膽臀臂膺臉臍臑臙臘臈臚臟臠臧臺臻臾舁舂舅與舊舍舐舖舩舫舸舳艀艙艘艝艚艟艤"], +["e480","艢艨艪艫舮艱艷艸艾芍芒芫芟芻芬苡苣苟苒苴苳苺莓范苻苹苞茆苜茉苙茵茴茖茲茱荀茹荐荅茯茫茗茘莅莚莪莟莢莖茣莎莇莊荼莵荳荵莠莉莨菴萓菫菎菽萃菘萋菁菷萇菠菲萍萢萠莽萸蔆菻葭萪萼蕚蒄葷葫蒭葮蒂葩葆萬葯葹萵蓊葢蒹蒿蒟蓙蓍蒻蓚蓐蓁蓆蓖蒡蔡蓿蓴蔗蔘蔬蔟蔕蔔蓼蕀蕣蕘蕈"], +["e540","蕁蘂蕋蕕薀薤薈薑薊薨蕭薔薛藪薇薜蕷蕾薐藉薺藏薹藐藕藝藥藜藹蘊蘓蘋藾藺蘆蘢蘚蘰蘿虍乕虔號虧虱蚓蚣蚩蚪蚋蚌蚶蚯蛄蛆蚰蛉蠣蚫蛔蛞蛩蛬"], +["e580","蛟蛛蛯蜒蜆蜈蜀蜃蛻蜑蜉蜍蛹蜊蜴蜿蜷蜻蜥蜩蜚蝠蝟蝸蝌蝎蝴蝗蝨蝮蝙蝓蝣蝪蠅螢螟螂螯蟋螽蟀蟐雖螫蟄螳蟇蟆螻蟯蟲蟠蠏蠍蟾蟶蟷蠎蟒蠑蠖蠕蠢蠡蠱蠶蠹蠧蠻衄衂衒衙衞衢衫袁衾袞衵衽袵衲袂袗袒袮袙袢袍袤袰袿袱裃裄裔裘裙裝裹褂裼裴裨裲褄褌褊褓襃褞褥褪褫襁襄褻褶褸襌褝襠襞"], +["e640","襦襤襭襪襯襴襷襾覃覈覊覓覘覡覩覦覬覯覲覺覽覿觀觚觜觝觧觴觸訃訖訐訌訛訝訥訶詁詛詒詆詈詼詭詬詢誅誂誄誨誡誑誥誦誚誣諄諍諂諚諫諳諧"], +["e680","諤諱謔諠諢諷諞諛謌謇謚諡謖謐謗謠謳鞫謦謫謾謨譁譌譏譎證譖譛譚譫譟譬譯譴譽讀讌讎讒讓讖讙讚谺豁谿豈豌豎豐豕豢豬豸豺貂貉貅貊貍貎貔豼貘戝貭貪貽貲貳貮貶賈賁賤賣賚賽賺賻贄贅贊贇贏贍贐齎贓賍贔贖赧赭赱赳趁趙跂趾趺跏跚跖跌跛跋跪跫跟跣跼踈踉跿踝踞踐踟蹂踵踰踴蹊"], +["e740","蹇蹉蹌蹐蹈蹙蹤蹠踪蹣蹕蹶蹲蹼躁躇躅躄躋躊躓躑躔躙躪躡躬躰軆躱躾軅軈軋軛軣軼軻軫軾輊輅輕輒輙輓輜輟輛輌輦輳輻輹轅轂輾轌轉轆轎轗轜"], +["e780","轢轣轤辜辟辣辭辯辷迚迥迢迪迯邇迴逅迹迺逑逕逡逍逞逖逋逧逶逵逹迸遏遐遑遒逎遉逾遖遘遞遨遯遶隨遲邂遽邁邀邊邉邏邨邯邱邵郢郤扈郛鄂鄒鄙鄲鄰酊酖酘酣酥酩酳酲醋醉醂醢醫醯醪醵醴醺釀釁釉釋釐釖釟釡釛釼釵釶鈞釿鈔鈬鈕鈑鉞鉗鉅鉉鉤鉈銕鈿鉋鉐銜銖銓銛鉚鋏銹銷鋩錏鋺鍄錮"], +["e840","錙錢錚錣錺錵錻鍜鍠鍼鍮鍖鎰鎬鎭鎔鎹鏖鏗鏨鏥鏘鏃鏝鏐鏈鏤鐚鐔鐓鐃鐇鐐鐶鐫鐵鐡鐺鑁鑒鑄鑛鑠鑢鑞鑪鈩鑰鑵鑷鑽鑚鑼鑾钁鑿閂閇閊閔閖閘閙"], +["e880","閠閨閧閭閼閻閹閾闊濶闃闍闌闕闔闖關闡闥闢阡阨阮阯陂陌陏陋陷陜陞陝陟陦陲陬隍隘隕隗險隧隱隲隰隴隶隸隹雎雋雉雍襍雜霍雕雹霄霆霈霓霎霑霏霖霙霤霪霰霹霽霾靄靆靈靂靉靜靠靤靦靨勒靫靱靹鞅靼鞁靺鞆鞋鞏鞐鞜鞨鞦鞣鞳鞴韃韆韈韋韜韭齏韲竟韶韵頏頌頸頤頡頷頽顆顏顋顫顯顰"], +["e940","顱顴顳颪颯颱颶飄飃飆飩飫餃餉餒餔餘餡餝餞餤餠餬餮餽餾饂饉饅饐饋饑饒饌饕馗馘馥馭馮馼駟駛駝駘駑駭駮駱駲駻駸騁騏騅駢騙騫騷驅驂驀驃"], +["e980","騾驕驍驛驗驟驢驥驤驩驫驪骭骰骼髀髏髑髓體髞髟髢髣髦髯髫髮髴髱髷髻鬆鬘鬚鬟鬢鬣鬥鬧鬨鬩鬪鬮鬯鬲魄魃魏魍魎魑魘魴鮓鮃鮑鮖鮗鮟鮠鮨鮴鯀鯊鮹鯆鯏鯑鯒鯣鯢鯤鯔鯡鰺鯲鯱鯰鰕鰔鰉鰓鰌鰆鰈鰒鰊鰄鰮鰛鰥鰤鰡鰰鱇鰲鱆鰾鱚鱠鱧鱶鱸鳧鳬鳰鴉鴈鳫鴃鴆鴪鴦鶯鴣鴟鵄鴕鴒鵁鴿鴾鵆鵈"], +["ea40","鵝鵞鵤鵑鵐鵙鵲鶉鶇鶫鵯鵺鶚鶤鶩鶲鷄鷁鶻鶸鶺鷆鷏鷂鷙鷓鷸鷦鷭鷯鷽鸚鸛鸞鹵鹹鹽麁麈麋麌麒麕麑麝麥麩麸麪麭靡黌黎黏黐黔黜點黝黠黥黨黯"], +["ea80","黴黶黷黹黻黼黽鼇鼈皷鼕鼡鼬鼾齊齒齔齣齟齠齡齦齧齬齪齷齲齶龕龜龠堯槇遙瑤凜熙"], +["ed40","纊褜鍈銈蓜俉炻昱棈鋹曻彅丨仡仼伀伃伹佖侒侊侚侔俍偀倢俿倞偆偰偂傔僴僘兊兤冝冾凬刕劜劦勀勛匀匇匤卲厓厲叝﨎咜咊咩哿喆坙坥垬埈埇﨏"], +["ed80","塚增墲夋奓奛奝奣妤妺孖寀甯寘寬尞岦岺峵崧嵓﨑嵂嵭嶸嶹巐弡弴彧德忞恝悅悊惞惕愠惲愑愷愰憘戓抦揵摠撝擎敎昀昕昻昉昮昞昤晥晗晙晴晳暙暠暲暿曺朎朗杦枻桒柀栁桄棏﨓楨﨔榘槢樰橫橆橳橾櫢櫤毖氿汜沆汯泚洄涇浯涖涬淏淸淲淼渹湜渧渼溿澈澵濵瀅瀇瀨炅炫焏焄煜煆煇凞燁燾犱"], +["ee40","犾猤猪獷玽珉珖珣珒琇珵琦琪琩琮瑢璉璟甁畯皂皜皞皛皦益睆劯砡硎硤硺礰礼神祥禔福禛竑竧靖竫箞精絈絜綷綠緖繒罇羡羽茁荢荿菇菶葈蒴蕓蕙"], +["ee80","蕫﨟薰蘒﨡蠇裵訒訷詹誧誾諟諸諶譓譿賰賴贒赶﨣軏﨤逸遧郞都鄕鄧釚釗釞釭釮釤釥鈆鈐鈊鈺鉀鈼鉎鉙鉑鈹鉧銧鉷鉸鋧鋗鋙鋐﨧鋕鋠鋓錥錡鋻﨨錞鋿錝錂鍰鍗鎤鏆鏞鏸鐱鑅鑈閒隆﨩隝隯霳霻靃靍靏靑靕顗顥飯飼餧館馞驎髙髜魵魲鮏鮱鮻鰀鵰鵫鶴鸙黑"], +["eeef","ⅰ",9,"¬¦'""], +["f040","",62], +["f080","",124], +["f140","",62], +["f180","",124], +["f240","",62], +["f280","",124], +["f340","",62], +["f380","",124], +["f440","",62], +["f480","",124], +["f540","",62], +["f580","",124], +["f640","",62], +["f680","",124], +["f740","",62], +["f780","",124], +["f840","",62], +["f880","",124], +["f940",""], +["fa40","ⅰ",9,"Ⅰ",9,"¬¦'"㈱№℡∵纊褜鍈銈蓜俉炻昱棈鋹曻彅丨仡仼伀伃伹佖侒侊侚侔俍偀倢俿倞偆偰偂傔僴僘兊"], +["fa80","兤冝冾凬刕劜劦勀勛匀匇匤卲厓厲叝﨎咜咊咩哿喆坙坥垬埈埇﨏塚增墲夋奓奛奝奣妤妺孖寀甯寘寬尞岦岺峵崧嵓﨑嵂嵭嶸嶹巐弡弴彧德忞恝悅悊惞惕愠惲愑愷愰憘戓抦揵摠撝擎敎昀昕昻昉昮昞昤晥晗晙晴晳暙暠暲暿曺朎朗杦枻桒柀栁桄棏﨓楨﨔榘槢樰橫橆橳橾櫢櫤毖氿汜沆汯泚洄涇浯"], +["fb40","涖涬淏淸淲淼渹湜渧渼溿澈澵濵瀅瀇瀨炅炫焏焄煜煆煇凞燁燾犱犾猤猪獷玽珉珖珣珒琇珵琦琪琩琮瑢璉璟甁畯皂皜皞皛皦益睆劯砡硎硤硺礰礼神"], +["fb80","祥禔福禛竑竧靖竫箞精絈絜綷綠緖繒罇羡羽茁荢荿菇菶葈蒴蕓蕙蕫﨟薰蘒﨡蠇裵訒訷詹誧誾諟諸諶譓譿賰賴贒赶﨣軏﨤逸遧郞都鄕鄧釚釗釞釭釮釤釥鈆鈐鈊鈺鉀鈼鉎鉙鉑鈹鉧銧鉷鉸鋧鋗鋙鋐﨧鋕鋠鋓錥錡鋻﨨錞鋿錝錂鍰鍗鎤鏆鏞鏸鐱鑅鑈閒隆﨩隝隯霳霻靃靍靏靑靕顗顥飯飼餧館馞驎髙"], +["fc40","髜魵魲鮏鮱鮻鰀鵰鵫鶴鸙黑"] +] diff --git a/node_modules/iconv-lite/encodings/utf16.js b/node_modules/iconv-lite/encodings/utf16.js new file mode 100644 index 000000000..54765aeee --- /dev/null +++ b/node_modules/iconv-lite/encodings/utf16.js @@ -0,0 +1,177 @@ +"use strict"; +var Buffer = require("safer-buffer").Buffer; + +// Note: UTF16-LE (or UCS2) codec is Node.js native. See encodings/internal.js + +// == UTF16-BE codec. ========================================================== + +exports.utf16be = Utf16BECodec; +function Utf16BECodec() { +} + +Utf16BECodec.prototype.encoder = Utf16BEEncoder; +Utf16BECodec.prototype.decoder = Utf16BEDecoder; +Utf16BECodec.prototype.bomAware = true; + + +// -- Encoding + +function Utf16BEEncoder() { +} + +Utf16BEEncoder.prototype.write = function(str) { + var buf = Buffer.from(str, 'ucs2'); + for (var i = 0; i < buf.length; i += 2) { + var tmp = buf[i]; buf[i] = buf[i+1]; buf[i+1] = tmp; + } + return buf; +} + +Utf16BEEncoder.prototype.end = function() { +} + + +// -- Decoding + +function Utf16BEDecoder() { + this.overflowByte = -1; +} + +Utf16BEDecoder.prototype.write = function(buf) { + if (buf.length == 0) + return ''; + + var buf2 = Buffer.alloc(buf.length + 1), + i = 0, j = 0; + + if (this.overflowByte !== -1) { + buf2[0] = buf[0]; + buf2[1] = this.overflowByte; + i = 1; j = 2; + } + + for (; i < buf.length-1; i += 2, j+= 2) { + buf2[j] = buf[i+1]; + buf2[j+1] = buf[i]; + } + + this.overflowByte = (i == buf.length-1) ? buf[buf.length-1] : -1; + + return buf2.slice(0, j).toString('ucs2'); +} + +Utf16BEDecoder.prototype.end = function() { +} + + +// == UTF-16 codec ============================================================= +// Decoder chooses automatically from UTF-16LE and UTF-16BE using BOM and space-based heuristic. +// Defaults to UTF-16LE, as it's prevalent and default in Node. +// http://en.wikipedia.org/wiki/UTF-16 and http://encoding.spec.whatwg.org/#utf-16le +// Decoder default can be changed: iconv.decode(buf, 'utf16', {defaultEncoding: 'utf-16be'}); + +// Encoder uses UTF-16LE and prepends BOM (which can be overridden with addBOM: false). + +exports.utf16 = Utf16Codec; +function Utf16Codec(codecOptions, iconv) { + this.iconv = iconv; +} + +Utf16Codec.prototype.encoder = Utf16Encoder; +Utf16Codec.prototype.decoder = Utf16Decoder; + + +// -- Encoding (pass-through) + +function Utf16Encoder(options, codec) { + options = options || {}; + if (options.addBOM === undefined) + options.addBOM = true; + this.encoder = codec.iconv.getEncoder('utf-16le', options); +} + +Utf16Encoder.prototype.write = function(str) { + return this.encoder.write(str); +} + +Utf16Encoder.prototype.end = function() { + return this.encoder.end(); +} + + +// -- Decoding + +function Utf16Decoder(options, codec) { + this.decoder = null; + this.initialBytes = []; + this.initialBytesLen = 0; + + this.options = options || {}; + this.iconv = codec.iconv; +} + +Utf16Decoder.prototype.write = function(buf) { + if (!this.decoder) { + // Codec is not chosen yet. Accumulate initial bytes. + this.initialBytes.push(buf); + this.initialBytesLen += buf.length; + + if (this.initialBytesLen < 16) // We need more bytes to use space heuristic (see below) + return ''; + + // We have enough bytes -> detect endianness. + var buf = Buffer.concat(this.initialBytes), + encoding = detectEncoding(buf, this.options.defaultEncoding); + this.decoder = this.iconv.getDecoder(encoding, this.options); + this.initialBytes.length = this.initialBytesLen = 0; + } + + return this.decoder.write(buf); +} + +Utf16Decoder.prototype.end = function() { + if (!this.decoder) { + var buf = Buffer.concat(this.initialBytes), + encoding = detectEncoding(buf, this.options.defaultEncoding); + this.decoder = this.iconv.getDecoder(encoding, this.options); + + var res = this.decoder.write(buf), + trail = this.decoder.end(); + + return trail ? (res + trail) : res; + } + return this.decoder.end(); +} + +function detectEncoding(buf, defaultEncoding) { + var enc = defaultEncoding || 'utf-16le'; + + if (buf.length >= 2) { + // Check BOM. + if (buf[0] == 0xFE && buf[1] == 0xFF) // UTF-16BE BOM + enc = 'utf-16be'; + else if (buf[0] == 0xFF && buf[1] == 0xFE) // UTF-16LE BOM + enc = 'utf-16le'; + else { + // No BOM found. Try to deduce encoding from initial content. + // Most of the time, the content has ASCII chars (U+00**), but the opposite (U+**00) is uncommon. + // So, we count ASCII as if it was LE or BE, and decide from that. + var asciiCharsLE = 0, asciiCharsBE = 0, // Counts of chars in both positions + _len = Math.min(buf.length - (buf.length % 2), 64); // Len is always even. + + for (var i = 0; i < _len; i += 2) { + if (buf[i] === 0 && buf[i+1] !== 0) asciiCharsBE++; + if (buf[i] !== 0 && buf[i+1] === 0) asciiCharsLE++; + } + + if (asciiCharsBE > asciiCharsLE) + enc = 'utf-16be'; + else if (asciiCharsBE < asciiCharsLE) + enc = 'utf-16le'; + } + } + + return enc; +} + + diff --git a/node_modules/iconv-lite/encodings/utf7.js b/node_modules/iconv-lite/encodings/utf7.js new file mode 100644 index 000000000..b7631c23a --- /dev/null +++ b/node_modules/iconv-lite/encodings/utf7.js @@ -0,0 +1,290 @@ +"use strict"; +var Buffer = require("safer-buffer").Buffer; + +// UTF-7 codec, according to https://tools.ietf.org/html/rfc2152 +// See also below a UTF-7-IMAP codec, according to http://tools.ietf.org/html/rfc3501#section-5.1.3 + +exports.utf7 = Utf7Codec; +exports.unicode11utf7 = 'utf7'; // Alias UNICODE-1-1-UTF-7 +function Utf7Codec(codecOptions, iconv) { + this.iconv = iconv; +}; + +Utf7Codec.prototype.encoder = Utf7Encoder; +Utf7Codec.prototype.decoder = Utf7Decoder; +Utf7Codec.prototype.bomAware = true; + + +// -- Encoding + +var nonDirectChars = /[^A-Za-z0-9'\(\),-\.\/:\? \n\r\t]+/g; + +function Utf7Encoder(options, codec) { + this.iconv = codec.iconv; +} + +Utf7Encoder.prototype.write = function(str) { + // Naive implementation. + // Non-direct chars are encoded as "+-"; single "+" char is encoded as "+-". + return Buffer.from(str.replace(nonDirectChars, function(chunk) { + return "+" + (chunk === '+' ? '' : + this.iconv.encode(chunk, 'utf16-be').toString('base64').replace(/=+$/, '')) + + "-"; + }.bind(this))); +} + +Utf7Encoder.prototype.end = function() { +} + + +// -- Decoding + +function Utf7Decoder(options, codec) { + this.iconv = codec.iconv; + this.inBase64 = false; + this.base64Accum = ''; +} + +var base64Regex = /[A-Za-z0-9\/+]/; +var base64Chars = []; +for (var i = 0; i < 256; i++) + base64Chars[i] = base64Regex.test(String.fromCharCode(i)); + +var plusChar = '+'.charCodeAt(0), + minusChar = '-'.charCodeAt(0), + andChar = '&'.charCodeAt(0); + +Utf7Decoder.prototype.write = function(buf) { + var res = "", lastI = 0, + inBase64 = this.inBase64, + base64Accum = this.base64Accum; + + // The decoder is more involved as we must handle chunks in stream. + + for (var i = 0; i < buf.length; i++) { + if (!inBase64) { // We're in direct mode. + // Write direct chars until '+' + if (buf[i] == plusChar) { + res += this.iconv.decode(buf.slice(lastI, i), "ascii"); // Write direct chars. + lastI = i+1; + inBase64 = true; + } + } else { // We decode base64. + if (!base64Chars[buf[i]]) { // Base64 ended. + if (i == lastI && buf[i] == minusChar) {// "+-" -> "+" + res += "+"; + } else { + var b64str = base64Accum + buf.slice(lastI, i).toString(); + res += this.iconv.decode(Buffer.from(b64str, 'base64'), "utf16-be"); + } + + if (buf[i] != minusChar) // Minus is absorbed after base64. + i--; + + lastI = i+1; + inBase64 = false; + base64Accum = ''; + } + } + } + + if (!inBase64) { + res += this.iconv.decode(buf.slice(lastI), "ascii"); // Write direct chars. + } else { + var b64str = base64Accum + buf.slice(lastI).toString(); + + var canBeDecoded = b64str.length - (b64str.length % 8); // Minimal chunk: 2 quads -> 2x3 bytes -> 3 chars. + base64Accum = b64str.slice(canBeDecoded); // The rest will be decoded in future. + b64str = b64str.slice(0, canBeDecoded); + + res += this.iconv.decode(Buffer.from(b64str, 'base64'), "utf16-be"); + } + + this.inBase64 = inBase64; + this.base64Accum = base64Accum; + + return res; +} + +Utf7Decoder.prototype.end = function() { + var res = ""; + if (this.inBase64 && this.base64Accum.length > 0) + res = this.iconv.decode(Buffer.from(this.base64Accum, 'base64'), "utf16-be"); + + this.inBase64 = false; + this.base64Accum = ''; + return res; +} + + +// UTF-7-IMAP codec. +// RFC3501 Sec. 5.1.3 Modified UTF-7 (http://tools.ietf.org/html/rfc3501#section-5.1.3) +// Differences: +// * Base64 part is started by "&" instead of "+" +// * Direct characters are 0x20-0x7E, except "&" (0x26) +// * In Base64, "," is used instead of "/" +// * Base64 must not be used to represent direct characters. +// * No implicit shift back from Base64 (should always end with '-') +// * String must end in non-shifted position. +// * "-&" while in base64 is not allowed. + + +exports.utf7imap = Utf7IMAPCodec; +function Utf7IMAPCodec(codecOptions, iconv) { + this.iconv = iconv; +}; + +Utf7IMAPCodec.prototype.encoder = Utf7IMAPEncoder; +Utf7IMAPCodec.prototype.decoder = Utf7IMAPDecoder; +Utf7IMAPCodec.prototype.bomAware = true; + + +// -- Encoding + +function Utf7IMAPEncoder(options, codec) { + this.iconv = codec.iconv; + this.inBase64 = false; + this.base64Accum = Buffer.alloc(6); + this.base64AccumIdx = 0; +} + +Utf7IMAPEncoder.prototype.write = function(str) { + var inBase64 = this.inBase64, + base64Accum = this.base64Accum, + base64AccumIdx = this.base64AccumIdx, + buf = Buffer.alloc(str.length*5 + 10), bufIdx = 0; + + for (var i = 0; i < str.length; i++) { + var uChar = str.charCodeAt(i); + if (0x20 <= uChar && uChar <= 0x7E) { // Direct character or '&'. + if (inBase64) { + if (base64AccumIdx > 0) { + bufIdx += buf.write(base64Accum.slice(0, base64AccumIdx).toString('base64').replace(/\//g, ',').replace(/=+$/, ''), bufIdx); + base64AccumIdx = 0; + } + + buf[bufIdx++] = minusChar; // Write '-', then go to direct mode. + inBase64 = false; + } + + if (!inBase64) { + buf[bufIdx++] = uChar; // Write direct character + + if (uChar === andChar) // Ampersand -> '&-' + buf[bufIdx++] = minusChar; + } + + } else { // Non-direct character + if (!inBase64) { + buf[bufIdx++] = andChar; // Write '&', then go to base64 mode. + inBase64 = true; + } + if (inBase64) { + base64Accum[base64AccumIdx++] = uChar >> 8; + base64Accum[base64AccumIdx++] = uChar & 0xFF; + + if (base64AccumIdx == base64Accum.length) { + bufIdx += buf.write(base64Accum.toString('base64').replace(/\//g, ','), bufIdx); + base64AccumIdx = 0; + } + } + } + } + + this.inBase64 = inBase64; + this.base64AccumIdx = base64AccumIdx; + + return buf.slice(0, bufIdx); +} + +Utf7IMAPEncoder.prototype.end = function() { + var buf = Buffer.alloc(10), bufIdx = 0; + if (this.inBase64) { + if (this.base64AccumIdx > 0) { + bufIdx += buf.write(this.base64Accum.slice(0, this.base64AccumIdx).toString('base64').replace(/\//g, ',').replace(/=+$/, ''), bufIdx); + this.base64AccumIdx = 0; + } + + buf[bufIdx++] = minusChar; // Write '-', then go to direct mode. + this.inBase64 = false; + } + + return buf.slice(0, bufIdx); +} + + +// -- Decoding + +function Utf7IMAPDecoder(options, codec) { + this.iconv = codec.iconv; + this.inBase64 = false; + this.base64Accum = ''; +} + +var base64IMAPChars = base64Chars.slice(); +base64IMAPChars[','.charCodeAt(0)] = true; + +Utf7IMAPDecoder.prototype.write = function(buf) { + var res = "", lastI = 0, + inBase64 = this.inBase64, + base64Accum = this.base64Accum; + + // The decoder is more involved as we must handle chunks in stream. + // It is forgiving, closer to standard UTF-7 (for example, '-' is optional at the end). + + for (var i = 0; i < buf.length; i++) { + if (!inBase64) { // We're in direct mode. + // Write direct chars until '&' + if (buf[i] == andChar) { + res += this.iconv.decode(buf.slice(lastI, i), "ascii"); // Write direct chars. + lastI = i+1; + inBase64 = true; + } + } else { // We decode base64. + if (!base64IMAPChars[buf[i]]) { // Base64 ended. + if (i == lastI && buf[i] == minusChar) { // "&-" -> "&" + res += "&"; + } else { + var b64str = base64Accum + buf.slice(lastI, i).toString().replace(/,/g, '/'); + res += this.iconv.decode(Buffer.from(b64str, 'base64'), "utf16-be"); + } + + if (buf[i] != minusChar) // Minus may be absorbed after base64. + i--; + + lastI = i+1; + inBase64 = false; + base64Accum = ''; + } + } + } + + if (!inBase64) { + res += this.iconv.decode(buf.slice(lastI), "ascii"); // Write direct chars. + } else { + var b64str = base64Accum + buf.slice(lastI).toString().replace(/,/g, '/'); + + var canBeDecoded = b64str.length - (b64str.length % 8); // Minimal chunk: 2 quads -> 2x3 bytes -> 3 chars. + base64Accum = b64str.slice(canBeDecoded); // The rest will be decoded in future. + b64str = b64str.slice(0, canBeDecoded); + + res += this.iconv.decode(Buffer.from(b64str, 'base64'), "utf16-be"); + } + + this.inBase64 = inBase64; + this.base64Accum = base64Accum; + + return res; +} + +Utf7IMAPDecoder.prototype.end = function() { + var res = ""; + if (this.inBase64 && this.base64Accum.length > 0) + res = this.iconv.decode(Buffer.from(this.base64Accum, 'base64'), "utf16-be"); + + this.inBase64 = false; + this.base64Accum = ''; + return res; +} + + diff --git a/node_modules/iconv-lite/lib/bom-handling.js b/node_modules/iconv-lite/lib/bom-handling.js new file mode 100644 index 000000000..105087238 --- /dev/null +++ b/node_modules/iconv-lite/lib/bom-handling.js @@ -0,0 +1,52 @@ +"use strict"; + +var BOMChar = '\uFEFF'; + +exports.PrependBOM = PrependBOMWrapper +function PrependBOMWrapper(encoder, options) { + this.encoder = encoder; + this.addBOM = true; +} + +PrependBOMWrapper.prototype.write = function(str) { + if (this.addBOM) { + str = BOMChar + str; + this.addBOM = false; + } + + return this.encoder.write(str); +} + +PrependBOMWrapper.prototype.end = function() { + return this.encoder.end(); +} + + +//------------------------------------------------------------------------------ + +exports.StripBOM = StripBOMWrapper; +function StripBOMWrapper(decoder, options) { + this.decoder = decoder; + this.pass = false; + this.options = options || {}; +} + +StripBOMWrapper.prototype.write = function(buf) { + var res = this.decoder.write(buf); + if (this.pass || !res) + return res; + + if (res[0] === BOMChar) { + res = res.slice(1); + if (typeof this.options.stripBOM === 'function') + this.options.stripBOM(); + } + + this.pass = true; + return res; +} + +StripBOMWrapper.prototype.end = function() { + return this.decoder.end(); +} + diff --git a/node_modules/iconv-lite/lib/extend-node.js b/node_modules/iconv-lite/lib/extend-node.js new file mode 100644 index 000000000..87f5394a4 --- /dev/null +++ b/node_modules/iconv-lite/lib/extend-node.js @@ -0,0 +1,217 @@ +"use strict"; +var Buffer = require("buffer").Buffer; +// Note: not polyfilled with safer-buffer on a purpose, as overrides Buffer + +// == Extend Node primitives to use iconv-lite ================================= + +module.exports = function (iconv) { + var original = undefined; // Place to keep original methods. + + // Node authors rewrote Buffer internals to make it compatible with + // Uint8Array and we cannot patch key functions since then. + // Note: this does use older Buffer API on a purpose + iconv.supportsNodeEncodingsExtension = !(Buffer.from || new Buffer(0) instanceof Uint8Array); + + iconv.extendNodeEncodings = function extendNodeEncodings() { + if (original) return; + original = {}; + + if (!iconv.supportsNodeEncodingsExtension) { + console.error("ACTION NEEDED: require('iconv-lite').extendNodeEncodings() is not supported in your version of Node"); + console.error("See more info at https://github.com/ashtuchkin/iconv-lite/wiki/Node-v4-compatibility"); + return; + } + + var nodeNativeEncodings = { + 'hex': true, 'utf8': true, 'utf-8': true, 'ascii': true, 'binary': true, + 'base64': true, 'ucs2': true, 'ucs-2': true, 'utf16le': true, 'utf-16le': true, + }; + + Buffer.isNativeEncoding = function(enc) { + return enc && nodeNativeEncodings[enc.toLowerCase()]; + } + + // -- SlowBuffer ----------------------------------------------------------- + var SlowBuffer = require('buffer').SlowBuffer; + + original.SlowBufferToString = SlowBuffer.prototype.toString; + SlowBuffer.prototype.toString = function(encoding, start, end) { + encoding = String(encoding || 'utf8').toLowerCase(); + + // Use native conversion when possible + if (Buffer.isNativeEncoding(encoding)) + return original.SlowBufferToString.call(this, encoding, start, end); + + // Otherwise, use our decoding method. + if (typeof start == 'undefined') start = 0; + if (typeof end == 'undefined') end = this.length; + return iconv.decode(this.slice(start, end), encoding); + } + + original.SlowBufferWrite = SlowBuffer.prototype.write; + SlowBuffer.prototype.write = function(string, offset, length, encoding) { + // Support both (string, offset, length, encoding) + // and the legacy (string, encoding, offset, length) + if (isFinite(offset)) { + if (!isFinite(length)) { + encoding = length; + length = undefined; + } + } else { // legacy + var swap = encoding; + encoding = offset; + offset = length; + length = swap; + } + + offset = +offset || 0; + var remaining = this.length - offset; + if (!length) { + length = remaining; + } else { + length = +length; + if (length > remaining) { + length = remaining; + } + } + encoding = String(encoding || 'utf8').toLowerCase(); + + // Use native conversion when possible + if (Buffer.isNativeEncoding(encoding)) + return original.SlowBufferWrite.call(this, string, offset, length, encoding); + + if (string.length > 0 && (length < 0 || offset < 0)) + throw new RangeError('attempt to write beyond buffer bounds'); + + // Otherwise, use our encoding method. + var buf = iconv.encode(string, encoding); + if (buf.length < length) length = buf.length; + buf.copy(this, offset, 0, length); + return length; + } + + // -- Buffer --------------------------------------------------------------- + + original.BufferIsEncoding = Buffer.isEncoding; + Buffer.isEncoding = function(encoding) { + return Buffer.isNativeEncoding(encoding) || iconv.encodingExists(encoding); + } + + original.BufferByteLength = Buffer.byteLength; + Buffer.byteLength = SlowBuffer.byteLength = function(str, encoding) { + encoding = String(encoding || 'utf8').toLowerCase(); + + // Use native conversion when possible + if (Buffer.isNativeEncoding(encoding)) + return original.BufferByteLength.call(this, str, encoding); + + // Slow, I know, but we don't have a better way yet. + return iconv.encode(str, encoding).length; + } + + original.BufferToString = Buffer.prototype.toString; + Buffer.prototype.toString = function(encoding, start, end) { + encoding = String(encoding || 'utf8').toLowerCase(); + + // Use native conversion when possible + if (Buffer.isNativeEncoding(encoding)) + return original.BufferToString.call(this, encoding, start, end); + + // Otherwise, use our decoding method. + if (typeof start == 'undefined') start = 0; + if (typeof end == 'undefined') end = this.length; + return iconv.decode(this.slice(start, end), encoding); + } + + original.BufferWrite = Buffer.prototype.write; + Buffer.prototype.write = function(string, offset, length, encoding) { + var _offset = offset, _length = length, _encoding = encoding; + // Support both (string, offset, length, encoding) + // and the legacy (string, encoding, offset, length) + if (isFinite(offset)) { + if (!isFinite(length)) { + encoding = length; + length = undefined; + } + } else { // legacy + var swap = encoding; + encoding = offset; + offset = length; + length = swap; + } + + encoding = String(encoding || 'utf8').toLowerCase(); + + // Use native conversion when possible + if (Buffer.isNativeEncoding(encoding)) + return original.BufferWrite.call(this, string, _offset, _length, _encoding); + + offset = +offset || 0; + var remaining = this.length - offset; + if (!length) { + length = remaining; + } else { + length = +length; + if (length > remaining) { + length = remaining; + } + } + + if (string.length > 0 && (length < 0 || offset < 0)) + throw new RangeError('attempt to write beyond buffer bounds'); + + // Otherwise, use our encoding method. + var buf = iconv.encode(string, encoding); + if (buf.length < length) length = buf.length; + buf.copy(this, offset, 0, length); + return length; + + // TODO: Set _charsWritten. + } + + + // -- Readable ------------------------------------------------------------- + if (iconv.supportsStreams) { + var Readable = require('stream').Readable; + + original.ReadableSetEncoding = Readable.prototype.setEncoding; + Readable.prototype.setEncoding = function setEncoding(enc, options) { + // Use our own decoder, it has the same interface. + // We cannot use original function as it doesn't handle BOM-s. + this._readableState.decoder = iconv.getDecoder(enc, options); + this._readableState.encoding = enc; + } + + Readable.prototype.collect = iconv._collect; + } + } + + // Remove iconv-lite Node primitive extensions. + iconv.undoExtendNodeEncodings = function undoExtendNodeEncodings() { + if (!iconv.supportsNodeEncodingsExtension) + return; + if (!original) + throw new Error("require('iconv-lite').undoExtendNodeEncodings(): Nothing to undo; extendNodeEncodings() is not called.") + + delete Buffer.isNativeEncoding; + + var SlowBuffer = require('buffer').SlowBuffer; + + SlowBuffer.prototype.toString = original.SlowBufferToString; + SlowBuffer.prototype.write = original.SlowBufferWrite; + + Buffer.isEncoding = original.BufferIsEncoding; + Buffer.byteLength = original.BufferByteLength; + Buffer.prototype.toString = original.BufferToString; + Buffer.prototype.write = original.BufferWrite; + + if (iconv.supportsStreams) { + var Readable = require('stream').Readable; + + Readable.prototype.setEncoding = original.ReadableSetEncoding; + delete Readable.prototype.collect; + } + + original = undefined; + } +} diff --git a/node_modules/iconv-lite/lib/index.d.ts b/node_modules/iconv-lite/lib/index.d.ts new file mode 100644 index 000000000..0547eb346 --- /dev/null +++ b/node_modules/iconv-lite/lib/index.d.ts @@ -0,0 +1,24 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. + * REQUIREMENT: This definition is dependent on the @types/node definition. + * Install with `npm install @types/node --save-dev` + *--------------------------------------------------------------------------------------------*/ + +declare module 'iconv-lite' { + export function decode(buffer: Buffer, encoding: string, options?: Options): string; + + export function encode(content: string, encoding: string, options?: Options): Buffer; + + export function encodingExists(encoding: string): boolean; + + export function decodeStream(encoding: string, options?: Options): NodeJS.ReadWriteStream; + + export function encodeStream(encoding: string, options?: Options): NodeJS.ReadWriteStream; +} + +export interface Options { + stripBOM?: boolean; + addBOM?: boolean; + defaultEncoding?: string; +} diff --git a/node_modules/iconv-lite/lib/index.js b/node_modules/iconv-lite/lib/index.js new file mode 100644 index 000000000..5391919ca --- /dev/null +++ b/node_modules/iconv-lite/lib/index.js @@ -0,0 +1,153 @@ +"use strict"; + +// Some environments don't have global Buffer (e.g. React Native). +// Solution would be installing npm modules "buffer" and "stream" explicitly. +var Buffer = require("safer-buffer").Buffer; + +var bomHandling = require("./bom-handling"), + iconv = module.exports; + +// All codecs and aliases are kept here, keyed by encoding name/alias. +// They are lazy loaded in `iconv.getCodec` from `encodings/index.js`. +iconv.encodings = null; + +// Characters emitted in case of error. +iconv.defaultCharUnicode = '�'; +iconv.defaultCharSingleByte = '?'; + +// Public API. +iconv.encode = function encode(str, encoding, options) { + str = "" + (str || ""); // Ensure string. + + var encoder = iconv.getEncoder(encoding, options); + + var res = encoder.write(str); + var trail = encoder.end(); + + return (trail && trail.length > 0) ? Buffer.concat([res, trail]) : res; +} + +iconv.decode = function decode(buf, encoding, options) { + if (typeof buf === 'string') { + if (!iconv.skipDecodeWarning) { + console.error('Iconv-lite warning: decode()-ing strings is deprecated. Refer to https://github.com/ashtuchkin/iconv-lite/wiki/Use-Buffers-when-decoding'); + iconv.skipDecodeWarning = true; + } + + buf = Buffer.from("" + (buf || ""), "binary"); // Ensure buffer. + } + + var decoder = iconv.getDecoder(encoding, options); + + var res = decoder.write(buf); + var trail = decoder.end(); + + return trail ? (res + trail) : res; +} + +iconv.encodingExists = function encodingExists(enc) { + try { + iconv.getCodec(enc); + return true; + } catch (e) { + return false; + } +} + +// Legacy aliases to convert functions +iconv.toEncoding = iconv.encode; +iconv.fromEncoding = iconv.decode; + +// Search for a codec in iconv.encodings. Cache codec data in iconv._codecDataCache. +iconv._codecDataCache = {}; +iconv.getCodec = function getCodec(encoding) { + if (!iconv.encodings) + iconv.encodings = require("../encodings"); // Lazy load all encoding definitions. + + // Canonicalize encoding name: strip all non-alphanumeric chars and appended year. + var enc = iconv._canonicalizeEncoding(encoding); + + // Traverse iconv.encodings to find actual codec. + var codecOptions = {}; + while (true) { + var codec = iconv._codecDataCache[enc]; + if (codec) + return codec; + + var codecDef = iconv.encodings[enc]; + + switch (typeof codecDef) { + case "string": // Direct alias to other encoding. + enc = codecDef; + break; + + case "object": // Alias with options. Can be layered. + for (var key in codecDef) + codecOptions[key] = codecDef[key]; + + if (!codecOptions.encodingName) + codecOptions.encodingName = enc; + + enc = codecDef.type; + break; + + case "function": // Codec itself. + if (!codecOptions.encodingName) + codecOptions.encodingName = enc; + + // The codec function must load all tables and return object with .encoder and .decoder methods. + // It'll be called only once (for each different options object). + codec = new codecDef(codecOptions, iconv); + + iconv._codecDataCache[codecOptions.encodingName] = codec; // Save it to be reused later. + return codec; + + default: + throw new Error("Encoding not recognized: '" + encoding + "' (searched as: '"+enc+"')"); + } + } +} + +iconv._canonicalizeEncoding = function(encoding) { + // Canonicalize encoding name: strip all non-alphanumeric chars and appended year. + return (''+encoding).toLowerCase().replace(/:\d{4}$|[^0-9a-z]/g, ""); +} + +iconv.getEncoder = function getEncoder(encoding, options) { + var codec = iconv.getCodec(encoding), + encoder = new codec.encoder(options, codec); + + if (codec.bomAware && options && options.addBOM) + encoder = new bomHandling.PrependBOM(encoder, options); + + return encoder; +} + +iconv.getDecoder = function getDecoder(encoding, options) { + var codec = iconv.getCodec(encoding), + decoder = new codec.decoder(options, codec); + + if (codec.bomAware && !(options && options.stripBOM === false)) + decoder = new bomHandling.StripBOM(decoder, options); + + return decoder; +} + + +// Load extensions in Node. All of them are omitted in Browserify build via 'browser' field in package.json. +var nodeVer = typeof process !== 'undefined' && process.versions && process.versions.node; +if (nodeVer) { + + // Load streaming support in Node v0.10+ + var nodeVerArr = nodeVer.split(".").map(Number); + if (nodeVerArr[0] > 0 || nodeVerArr[1] >= 10) { + require("./streams")(iconv); + } + + // Load Node primitive extensions. + require("./extend-node")(iconv); +} + +if ("Ā" != "\u0100") { + console.error("iconv-lite warning: javascript files use encoding different from utf-8. See https://github.com/ashtuchkin/iconv-lite/wiki/Javascript-source-file-encodings for more info."); +} diff --git a/node_modules/iconv-lite/lib/streams.js b/node_modules/iconv-lite/lib/streams.js new file mode 100644 index 000000000..440955295 --- /dev/null +++ b/node_modules/iconv-lite/lib/streams.js @@ -0,0 +1,121 @@ +"use strict"; + +var Buffer = require("buffer").Buffer, + Transform = require("stream").Transform; + + +// == Exports ================================================================== +module.exports = function(iconv) { + + // Additional Public API. + iconv.encodeStream = function encodeStream(encoding, options) { + return new IconvLiteEncoderStream(iconv.getEncoder(encoding, options), options); + } + + iconv.decodeStream = function decodeStream(encoding, options) { + return new IconvLiteDecoderStream(iconv.getDecoder(encoding, options), options); + } + + iconv.supportsStreams = true; + + + // Not published yet. + iconv.IconvLiteEncoderStream = IconvLiteEncoderStream; + iconv.IconvLiteDecoderStream = IconvLiteDecoderStream; + iconv._collect = IconvLiteDecoderStream.prototype.collect; +}; + + +// == Encoder stream ======================================================= +function IconvLiteEncoderStream(conv, options) { + this.conv = conv; + options = options || {}; + options.decodeStrings = false; // We accept only strings, so we don't need to decode them. + Transform.call(this, options); +} + +IconvLiteEncoderStream.prototype = Object.create(Transform.prototype, { + constructor: { value: IconvLiteEncoderStream } +}); + +IconvLiteEncoderStream.prototype._transform = function(chunk, encoding, done) { + if (typeof chunk != 'string') + return done(new Error("Iconv encoding stream needs strings as its input.")); + try { + var res = this.conv.write(chunk); + if (res && res.length) this.push(res); + done(); + } + catch (e) { + done(e); + } +} + +IconvLiteEncoderStream.prototype._flush = function(done) { + try { + var res = this.conv.end(); + if (res && res.length) this.push(res); + done(); + } + catch (e) { + done(e); + } +} + +IconvLiteEncoderStream.prototype.collect = function(cb) { + var chunks = []; + this.on('error', cb); + this.on('data', function(chunk) { chunks.push(chunk); }); + this.on('end', function() { + cb(null, Buffer.concat(chunks)); + }); + return this; +} + + +// == Decoder stream ======================================================= +function IconvLiteDecoderStream(conv, options) { + this.conv = conv; + options = options || {}; + options.encoding = this.encoding = 'utf8'; // We output strings. + Transform.call(this, options); +} + +IconvLiteDecoderStream.prototype = Object.create(Transform.prototype, { + constructor: { value: IconvLiteDecoderStream } +}); + +IconvLiteDecoderStream.prototype._transform = function(chunk, encoding, done) { + if (!Buffer.isBuffer(chunk)) + return done(new Error("Iconv decoding stream needs buffers as its input.")); + try { + var res = this.conv.write(chunk); + if (res && res.length) this.push(res, this.encoding); + done(); + } + catch (e) { + done(e); + } +} + +IconvLiteDecoderStream.prototype._flush = function(done) { + try { + var res = this.conv.end(); + if (res && res.length) this.push(res, this.encoding); + done(); + } + catch (e) { + done(e); + } +} + +IconvLiteDecoderStream.prototype.collect = function(cb) { + var res = ''; + this.on('error', cb); + this.on('data', function(chunk) { res += chunk; }); + this.on('end', function() { + cb(null, res); + }); + return this; +} + diff --git a/node_modules/iconv-lite/package.json b/node_modules/iconv-lite/package.json new file mode 100644 index 000000000..a7c74fcc2 --- /dev/null +++ b/node_modules/iconv-lite/package.json @@ -0,0 +1,46 @@ +{ + "name": "iconv-lite", + "description": "Convert character encodings in pure javascript.", + "version": "0.4.24", + "license": "MIT", + "keywords": [ + "iconv", + "convert", + "charset", + "icu" + ], + "author": "Alexander Shtuchkin ", + "main": "./lib/index.js", + "typings": "./lib/index.d.ts", + "homepage": "https://github.com/ashtuchkin/iconv-lite", + "bugs": "https://github.com/ashtuchkin/iconv-lite/issues", + "repository": { + "type": "git", + "url": "git://github.com/ashtuchkin/iconv-lite.git" + }, + "engines": { + "node": ">=0.10.0" + }, + "scripts": { + "coverage": "istanbul cover _mocha -- --grep .", + "coverage-open": "open coverage/lcov-report/index.html", + "test": "mocha --reporter spec --grep ." + }, + "browser": { + "./lib/extend-node": false, + "./lib/streams": false + }, + "devDependencies": { + "mocha": "^3.1.0", + "request": "~2.87.0", + "unorm": "*", + "errto": "*", + "async": "*", + "istanbul": "*", + "semver": "*", + "iconv": "*" + }, + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + } +} diff --git a/node_modules/ieee754/LICENSE b/node_modules/ieee754/LICENSE new file mode 100644 index 000000000..5aac82c78 --- /dev/null +++ b/node_modules/ieee754/LICENSE @@ -0,0 +1,11 @@ +Copyright 2008 Fair Oaks Labs, Inc. + +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + +3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/node_modules/ieee754/README.md b/node_modules/ieee754/README.md new file mode 100644 index 000000000..cb7527b3c --- /dev/null +++ b/node_modules/ieee754/README.md @@ -0,0 +1,51 @@ +# ieee754 [![travis][travis-image]][travis-url] [![npm][npm-image]][npm-url] [![downloads][downloads-image]][downloads-url] [![javascript style guide][standard-image]][standard-url] + +[travis-image]: https://img.shields.io/travis/feross/ieee754/master.svg +[travis-url]: https://travis-ci.org/feross/ieee754 +[npm-image]: https://img.shields.io/npm/v/ieee754.svg +[npm-url]: https://npmjs.org/package/ieee754 +[downloads-image]: https://img.shields.io/npm/dm/ieee754.svg +[downloads-url]: https://npmjs.org/package/ieee754 +[standard-image]: https://img.shields.io/badge/code_style-standard-brightgreen.svg +[standard-url]: https://standardjs.com + +[![saucelabs][saucelabs-image]][saucelabs-url] + +[saucelabs-image]: https://saucelabs.com/browser-matrix/ieee754.svg +[saucelabs-url]: https://saucelabs.com/u/ieee754 + +### Read/write IEEE754 floating point numbers from/to a Buffer or array-like object. + +## install + +``` +npm install ieee754 +``` + +## methods + +`var ieee754 = require('ieee754')` + +The `ieee754` object has the following functions: + +``` +ieee754.read = function (buffer, offset, isLE, mLen, nBytes) +ieee754.write = function (buffer, value, offset, isLE, mLen, nBytes) +``` + +The arguments mean the following: + +- buffer = the buffer +- offset = offset into the buffer +- value = value to set (only for `write`) +- isLe = is little endian? +- mLen = mantissa length +- nBytes = number of bytes + +## what is ieee754? + +The IEEE Standard for Floating-Point Arithmetic (IEEE 754) is a technical standard for floating-point computation. [Read more](http://en.wikipedia.org/wiki/IEEE_floating_point). + +## license + +BSD 3 Clause. Copyright (c) 2008, Fair Oaks Labs, Inc. diff --git a/node_modules/ieee754/index.d.ts b/node_modules/ieee754/index.d.ts new file mode 100644 index 000000000..f1e435487 --- /dev/null +++ b/node_modules/ieee754/index.d.ts @@ -0,0 +1,10 @@ +declare namespace ieee754 { + export function read( + buffer: Uint8Array, offset: number, isLE: boolean, mLen: number, + nBytes: number): number; + export function write( + buffer: Uint8Array, value: number, offset: number, isLE: boolean, + mLen: number, nBytes: number): void; + } + + export = ieee754; \ No newline at end of file diff --git a/node_modules/ieee754/index.js b/node_modules/ieee754/index.js new file mode 100644 index 000000000..81d26c343 --- /dev/null +++ b/node_modules/ieee754/index.js @@ -0,0 +1,85 @@ +/*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh */ +exports.read = function (buffer, offset, isLE, mLen, nBytes) { + var e, m + var eLen = (nBytes * 8) - mLen - 1 + var eMax = (1 << eLen) - 1 + var eBias = eMax >> 1 + var nBits = -7 + var i = isLE ? (nBytes - 1) : 0 + var d = isLE ? -1 : 1 + var s = buffer[offset + i] + + i += d + + e = s & ((1 << (-nBits)) - 1) + s >>= (-nBits) + nBits += eLen + for (; nBits > 0; e = (e * 256) + buffer[offset + i], i += d, nBits -= 8) {} + + m = e & ((1 << (-nBits)) - 1) + e >>= (-nBits) + nBits += mLen + for (; nBits > 0; m = (m * 256) + buffer[offset + i], i += d, nBits -= 8) {} + + if (e === 0) { + e = 1 - eBias + } else if (e === eMax) { + return m ? NaN : ((s ? -1 : 1) * Infinity) + } else { + m = m + Math.pow(2, mLen) + e = e - eBias + } + return (s ? -1 : 1) * m * Math.pow(2, e - mLen) +} + +exports.write = function (buffer, value, offset, isLE, mLen, nBytes) { + var e, m, c + var eLen = (nBytes * 8) - mLen - 1 + var eMax = (1 << eLen) - 1 + var eBias = eMax >> 1 + var rt = (mLen === 23 ? Math.pow(2, -24) - Math.pow(2, -77) : 0) + var i = isLE ? 0 : (nBytes - 1) + var d = isLE ? 1 : -1 + var s = value < 0 || (value === 0 && 1 / value < 0) ? 1 : 0 + + value = Math.abs(value) + + if (isNaN(value) || value === Infinity) { + m = isNaN(value) ? 1 : 0 + e = eMax + } else { + e = Math.floor(Math.log(value) / Math.LN2) + if (value * (c = Math.pow(2, -e)) < 1) { + e-- + c *= 2 + } + if (e + eBias >= 1) { + value += rt / c + } else { + value += rt * Math.pow(2, 1 - eBias) + } + if (value * c >= 2) { + e++ + c /= 2 + } + + if (e + eBias >= eMax) { + m = 0 + e = eMax + } else if (e + eBias >= 1) { + m = ((value * c) - 1) * Math.pow(2, mLen) + e = e + eBias + } else { + m = value * Math.pow(2, eBias - 1) * Math.pow(2, mLen) + e = 0 + } + } + + for (; mLen >= 8; buffer[offset + i] = m & 0xff, i += d, m /= 256, mLen -= 8) {} + + e = (e << mLen) | m + eLen += mLen + for (; eLen > 0; buffer[offset + i] = e & 0xff, i += d, e /= 256, eLen -= 8) {} + + buffer[offset + i - d] |= s * 128 +} diff --git a/node_modules/ieee754/package.json b/node_modules/ieee754/package.json new file mode 100644 index 000000000..7b2385138 --- /dev/null +++ b/node_modules/ieee754/package.json @@ -0,0 +1,52 @@ +{ + "name": "ieee754", + "description": "Read/write IEEE754 floating point numbers from/to a Buffer or array-like object", + "version": "1.2.1", + "author": { + "name": "Feross Aboukhadijeh", + "email": "feross@feross.org", + "url": "https://feross.org" + }, + "contributors": [ + "Romain Beauxis " + ], + "devDependencies": { + "airtap": "^3.0.0", + "standard": "*", + "tape": "^5.0.1" + }, + "keywords": [ + "IEEE 754", + "buffer", + "convert", + "floating point", + "ieee754" + ], + "license": "BSD-3-Clause", + "main": "index.js", + "types": "index.d.ts", + "repository": { + "type": "git", + "url": "git://github.com/feross/ieee754.git" + }, + "scripts": { + "test": "standard && npm run test-node && npm run test-browser", + "test-browser": "airtap -- test/*.js", + "test-browser-local": "airtap --local -- test/*.js", + "test-node": "tape test/*.js" + }, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] +} diff --git a/node_modules/inherits/LICENSE b/node_modules/inherits/LICENSE new file mode 100644 index 000000000..dea3013d6 --- /dev/null +++ b/node_modules/inherits/LICENSE @@ -0,0 +1,16 @@ +The ISC License + +Copyright (c) Isaac Z. Schlueter + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH +REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, +INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM +LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR +OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THIS SOFTWARE. + diff --git a/node_modules/inherits/README.md b/node_modules/inherits/README.md new file mode 100644 index 000000000..b1c566585 --- /dev/null +++ b/node_modules/inherits/README.md @@ -0,0 +1,42 @@ +Browser-friendly inheritance fully compatible with standard node.js +[inherits](http://nodejs.org/api/util.html#util_util_inherits_constructor_superconstructor). + +This package exports standard `inherits` from node.js `util` module in +node environment, but also provides alternative browser-friendly +implementation through [browser +field](https://gist.github.com/shtylman/4339901). Alternative +implementation is a literal copy of standard one located in standalone +module to avoid requiring of `util`. It also has a shim for old +browsers with no `Object.create` support. + +While keeping you sure you are using standard `inherits` +implementation in node.js environment, it allows bundlers such as +[browserify](https://github.com/substack/node-browserify) to not +include full `util` package to your client code if all you need is +just `inherits` function. It worth, because browser shim for `util` +package is large and `inherits` is often the single function you need +from it. + +It's recommended to use this package instead of +`require('util').inherits` for any code that has chances to be used +not only in node.js but in browser too. + +## usage + +```js +var inherits = require('inherits'); +// then use exactly as the standard one +``` + +## note on version ~1.0 + +Version ~1.0 had completely different motivation and is not compatible +neither with 2.0 nor with standard node.js `inherits`. + +If you are using version ~1.0 and planning to switch to ~2.0, be +careful: + +* new version uses `super_` instead of `super` for referencing + superclass +* new version overwrites current prototype while old one preserves any + existing fields on it diff --git a/node_modules/inherits/inherits.js b/node_modules/inherits/inherits.js new file mode 100644 index 000000000..f71f2d932 --- /dev/null +++ b/node_modules/inherits/inherits.js @@ -0,0 +1,9 @@ +try { + var util = require('util'); + /* istanbul ignore next */ + if (typeof util.inherits !== 'function') throw ''; + module.exports = util.inherits; +} catch (e) { + /* istanbul ignore next */ + module.exports = require('./inherits_browser.js'); +} diff --git a/node_modules/inherits/inherits_browser.js b/node_modules/inherits/inherits_browser.js new file mode 100644 index 000000000..86bbb3dc2 --- /dev/null +++ b/node_modules/inherits/inherits_browser.js @@ -0,0 +1,27 @@ +if (typeof Object.create === 'function') { + // implementation from standard node.js 'util' module + module.exports = function inherits(ctor, superCtor) { + if (superCtor) { + ctor.super_ = superCtor + ctor.prototype = Object.create(superCtor.prototype, { + constructor: { + value: ctor, + enumerable: false, + writable: true, + configurable: true + } + }) + } + }; +} else { + // old school shim for old browsers + module.exports = function inherits(ctor, superCtor) { + if (superCtor) { + ctor.super_ = superCtor + var TempCtor = function () {} + TempCtor.prototype = superCtor.prototype + ctor.prototype = new TempCtor() + ctor.prototype.constructor = ctor + } + } +} diff --git a/node_modules/inherits/package.json b/node_modules/inherits/package.json new file mode 100644 index 000000000..37b4366b8 --- /dev/null +++ b/node_modules/inherits/package.json @@ -0,0 +1,29 @@ +{ + "name": "inherits", + "description": "Browser-friendly inheritance fully compatible with standard node.js inherits()", + "version": "2.0.4", + "keywords": [ + "inheritance", + "class", + "klass", + "oop", + "object-oriented", + "inherits", + "browser", + "browserify" + ], + "main": "./inherits.js", + "browser": "./inherits_browser.js", + "repository": "git://github.com/isaacs/inherits", + "license": "ISC", + "scripts": { + "test": "tap" + }, + "devDependencies": { + "tap": "^14.2.4" + }, + "files": [ + "inherits.js", + "inherits_browser.js" + ] +} diff --git a/node_modules/ip/README.md b/node_modules/ip/README.md new file mode 100644 index 000000000..22e5819ff --- /dev/null +++ b/node_modules/ip/README.md @@ -0,0 +1,90 @@ +# IP +[![](https://badge.fury.io/js/ip.svg)](https://www.npmjs.com/package/ip) + +IP address utilities for node.js + +## Installation + +### npm +```shell +npm install ip +``` + +### git + +```shell +git clone https://github.com/indutny/node-ip.git +``` + +## Usage +Get your ip address, compare ip addresses, validate ip addresses, etc. + +```js +var ip = require('ip'); + +ip.address() // my ip address +ip.isEqual('::1', '::0:1'); // true +ip.toBuffer('127.0.0.1') // Buffer([127, 0, 0, 1]) +ip.toString(new Buffer([127, 0, 0, 1])) // 127.0.0.1 +ip.fromPrefixLen(24) // 255.255.255.0 +ip.mask('192.168.1.134', '255.255.255.0') // 192.168.1.0 +ip.cidr('192.168.1.134/26') // 192.168.1.128 +ip.not('255.255.255.0') // 0.0.0.255 +ip.or('192.168.1.134', '0.0.0.255') // 192.168.1.255 +ip.isPrivate('127.0.0.1') // true +ip.isV4Format('127.0.0.1'); // true +ip.isV6Format('::ffff:127.0.0.1'); // true + +// operate on buffers in-place +var buf = new Buffer(128); +var offset = 64; +ip.toBuffer('127.0.0.1', buf, offset); // [127, 0, 0, 1] at offset 64 +ip.toString(buf, offset, 4); // '127.0.0.1' + +// subnet information +ip.subnet('192.168.1.134', '255.255.255.192') +// { networkAddress: '192.168.1.128', +// firstAddress: '192.168.1.129', +// lastAddress: '192.168.1.190', +// broadcastAddress: '192.168.1.191', +// subnetMask: '255.255.255.192', +// subnetMaskLength: 26, +// numHosts: 62, +// length: 64, +// contains: function(addr){...} } +ip.cidrSubnet('192.168.1.134/26') +// Same as previous. + +// range checking +ip.cidrSubnet('192.168.1.134/26').contains('192.168.1.190') // true + + +// ipv4 long conversion +ip.toLong('127.0.0.1'); // 2130706433 +ip.fromLong(2130706433); // '127.0.0.1' +``` + +### License + +This software is licensed under the MIT License. + +Copyright Fedor Indutny, 2012. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/node_modules/ip/lib/ip.js b/node_modules/ip/lib/ip.js new file mode 100644 index 000000000..4b2adb5ad --- /dev/null +++ b/node_modules/ip/lib/ip.js @@ -0,0 +1,422 @@ +const ip = exports; +const { Buffer } = require('buffer'); +const os = require('os'); + +ip.toBuffer = function (ip, buff, offset) { + offset = ~~offset; + + let result; + + if (this.isV4Format(ip)) { + result = buff || Buffer.alloc(offset + 4); + ip.split(/\./g).map((byte) => { + result[offset++] = parseInt(byte, 10) & 0xff; + }); + } else if (this.isV6Format(ip)) { + const sections = ip.split(':', 8); + + let i; + for (i = 0; i < sections.length; i++) { + const isv4 = this.isV4Format(sections[i]); + let v4Buffer; + + if (isv4) { + v4Buffer = this.toBuffer(sections[i]); + sections[i] = v4Buffer.slice(0, 2).toString('hex'); + } + + if (v4Buffer && ++i < 8) { + sections.splice(i, 0, v4Buffer.slice(2, 4).toString('hex')); + } + } + + if (sections[0] === '') { + while (sections.length < 8) sections.unshift('0'); + } else if (sections[sections.length - 1] === '') { + while (sections.length < 8) sections.push('0'); + } else if (sections.length < 8) { + for (i = 0; i < sections.length && sections[i] !== ''; i++); + const argv = [i, 1]; + for (i = 9 - sections.length; i > 0; i--) { + argv.push('0'); + } + sections.splice(...argv); + } + + result = buff || Buffer.alloc(offset + 16); + for (i = 0; i < sections.length; i++) { + const word = parseInt(sections[i], 16); + result[offset++] = (word >> 8) & 0xff; + result[offset++] = word & 0xff; + } + } + + if (!result) { + throw Error(`Invalid ip address: ${ip}`); + } + + return result; +}; + +ip.toString = function (buff, offset, length) { + offset = ~~offset; + length = length || (buff.length - offset); + + let result = []; + if (length === 4) { + // IPv4 + for (let i = 0; i < length; i++) { + result.push(buff[offset + i]); + } + result = result.join('.'); + } else if (length === 16) { + // IPv6 + for (let i = 0; i < length; i += 2) { + result.push(buff.readUInt16BE(offset + i).toString(16)); + } + result = result.join(':'); + result = result.replace(/(^|:)0(:0)*:0(:|$)/, '$1::$3'); + result = result.replace(/:{3,4}/, '::'); + } + + return result; +}; + +const ipv4Regex = /^(\d{1,3}\.){3,3}\d{1,3}$/; +const ipv6Regex = /^(::)?(((\d{1,3}\.){3}(\d{1,3}){1})?([0-9a-f]){0,4}:{0,2}){1,8}(::)?$/i; + +ip.isV4Format = function (ip) { + return ipv4Regex.test(ip); +}; + +ip.isV6Format = function (ip) { + return ipv6Regex.test(ip); +}; + +function _normalizeFamily(family) { + if (family === 4) { + return 'ipv4'; + } + if (family === 6) { + return 'ipv6'; + } + return family ? family.toLowerCase() : 'ipv4'; +} + +ip.fromPrefixLen = function (prefixlen, family) { + if (prefixlen > 32) { + family = 'ipv6'; + } else { + family = _normalizeFamily(family); + } + + let len = 4; + if (family === 'ipv6') { + len = 16; + } + const buff = Buffer.alloc(len); + + for (let i = 0, n = buff.length; i < n; ++i) { + let bits = 8; + if (prefixlen < 8) { + bits = prefixlen; + } + prefixlen -= bits; + + buff[i] = ~(0xff >> bits) & 0xff; + } + + return ip.toString(buff); +}; + +ip.mask = function (addr, mask) { + addr = ip.toBuffer(addr); + mask = ip.toBuffer(mask); + + const result = Buffer.alloc(Math.max(addr.length, mask.length)); + + // Same protocol - do bitwise and + let i; + if (addr.length === mask.length) { + for (i = 0; i < addr.length; i++) { + result[i] = addr[i] & mask[i]; + } + } else if (mask.length === 4) { + // IPv6 address and IPv4 mask + // (Mask low bits) + for (i = 0; i < mask.length; i++) { + result[i] = addr[addr.length - 4 + i] & mask[i]; + } + } else { + // IPv6 mask and IPv4 addr + for (i = 0; i < result.length - 6; i++) { + result[i] = 0; + } + + // ::ffff:ipv4 + result[10] = 0xff; + result[11] = 0xff; + for (i = 0; i < addr.length; i++) { + result[i + 12] = addr[i] & mask[i + 12]; + } + i += 12; + } + for (; i < result.length; i++) { + result[i] = 0; + } + + return ip.toString(result); +}; + +ip.cidr = function (cidrString) { + const cidrParts = cidrString.split('/'); + + const addr = cidrParts[0]; + if (cidrParts.length !== 2) { + throw new Error(`invalid CIDR subnet: ${addr}`); + } + + const mask = ip.fromPrefixLen(parseInt(cidrParts[1], 10)); + + return ip.mask(addr, mask); +}; + +ip.subnet = function (addr, mask) { + const networkAddress = ip.toLong(ip.mask(addr, mask)); + + // Calculate the mask's length. + const maskBuffer = ip.toBuffer(mask); + let maskLength = 0; + + for (let i = 0; i < maskBuffer.length; i++) { + if (maskBuffer[i] === 0xff) { + maskLength += 8; + } else { + let octet = maskBuffer[i] & 0xff; + while (octet) { + octet = (octet << 1) & 0xff; + maskLength++; + } + } + } + + const numberOfAddresses = 2 ** (32 - maskLength); + + return { + networkAddress: ip.fromLong(networkAddress), + firstAddress: numberOfAddresses <= 2 + ? ip.fromLong(networkAddress) + : ip.fromLong(networkAddress + 1), + lastAddress: numberOfAddresses <= 2 + ? ip.fromLong(networkAddress + numberOfAddresses - 1) + : ip.fromLong(networkAddress + numberOfAddresses - 2), + broadcastAddress: ip.fromLong(networkAddress + numberOfAddresses - 1), + subnetMask: mask, + subnetMaskLength: maskLength, + numHosts: numberOfAddresses <= 2 + ? numberOfAddresses : numberOfAddresses - 2, + length: numberOfAddresses, + contains(other) { + return networkAddress === ip.toLong(ip.mask(other, mask)); + }, + }; +}; + +ip.cidrSubnet = function (cidrString) { + const cidrParts = cidrString.split('/'); + + const addr = cidrParts[0]; + if (cidrParts.length !== 2) { + throw new Error(`invalid CIDR subnet: ${addr}`); + } + + const mask = ip.fromPrefixLen(parseInt(cidrParts[1], 10)); + + return ip.subnet(addr, mask); +}; + +ip.not = function (addr) { + const buff = ip.toBuffer(addr); + for (let i = 0; i < buff.length; i++) { + buff[i] = 0xff ^ buff[i]; + } + return ip.toString(buff); +}; + +ip.or = function (a, b) { + a = ip.toBuffer(a); + b = ip.toBuffer(b); + + // same protocol + if (a.length === b.length) { + for (let i = 0; i < a.length; ++i) { + a[i] |= b[i]; + } + return ip.toString(a); + + // mixed protocols + } + let buff = a; + let other = b; + if (b.length > a.length) { + buff = b; + other = a; + } + + const offset = buff.length - other.length; + for (let i = offset; i < buff.length; ++i) { + buff[i] |= other[i - offset]; + } + + return ip.toString(buff); +}; + +ip.isEqual = function (a, b) { + a = ip.toBuffer(a); + b = ip.toBuffer(b); + + // Same protocol + if (a.length === b.length) { + for (let i = 0; i < a.length; i++) { + if (a[i] !== b[i]) return false; + } + return true; + } + + // Swap + if (b.length === 4) { + const t = b; + b = a; + a = t; + } + + // a - IPv4, b - IPv6 + for (let i = 0; i < 10; i++) { + if (b[i] !== 0) return false; + } + + const word = b.readUInt16BE(10); + if (word !== 0 && word !== 0xffff) return false; + + for (let i = 0; i < 4; i++) { + if (a[i] !== b[i + 12]) return false; + } + + return true; +}; + +ip.isPrivate = function (addr) { + return /^(::f{4}:)?10\.([0-9]{1,3})\.([0-9]{1,3})\.([0-9]{1,3})$/i + .test(addr) + || /^(::f{4}:)?192\.168\.([0-9]{1,3})\.([0-9]{1,3})$/i.test(addr) + || /^(::f{4}:)?172\.(1[6-9]|2\d|30|31)\.([0-9]{1,3})\.([0-9]{1,3})$/i + .test(addr) + || /^(::f{4}:)?127\.([0-9]{1,3})\.([0-9]{1,3})\.([0-9]{1,3})$/i.test(addr) + || /^(::f{4}:)?169\.254\.([0-9]{1,3})\.([0-9]{1,3})$/i.test(addr) + || /^f[cd][0-9a-f]{2}:/i.test(addr) + || /^fe80:/i.test(addr) + || /^::1$/.test(addr) + || /^::$/.test(addr); +}; + +ip.isPublic = function (addr) { + return !ip.isPrivate(addr); +}; + +ip.isLoopback = function (addr) { + return /^(::f{4}:)?127\.([0-9]{1,3})\.([0-9]{1,3})\.([0-9]{1,3})/ + .test(addr) + || /^fe80::1$/.test(addr) + || /^::1$/.test(addr) + || /^::$/.test(addr); +}; + +ip.loopback = function (family) { + // + // Default to `ipv4` + // + family = _normalizeFamily(family); + + if (family !== 'ipv4' && family !== 'ipv6') { + throw new Error('family must be ipv4 or ipv6'); + } + + return family === 'ipv4' ? '127.0.0.1' : 'fe80::1'; +}; + +// +// ### function address (name, family) +// #### @name {string|'public'|'private'} **Optional** Name or security +// of the network interface. +// #### @family {ipv4|ipv6} **Optional** IP family of the address (defaults +// to ipv4). +// +// Returns the address for the network interface on the current system with +// the specified `name`: +// * String: First `family` address of the interface. +// If not found see `undefined`. +// * 'public': the first public ip address of family. +// * 'private': the first private ip address of family. +// * undefined: First address with `ipv4` or loopback address `127.0.0.1`. +// +ip.address = function (name, family) { + const interfaces = os.networkInterfaces(); + + // + // Default to `ipv4` + // + family = _normalizeFamily(family); + + // + // If a specific network interface has been named, + // return the address. + // + if (name && name !== 'private' && name !== 'public') { + const res = interfaces[name].filter((details) => { + const itemFamily = _normalizeFamily(details.family); + return itemFamily === family; + }); + if (res.length === 0) { + return undefined; + } + return res[0].address; + } + + const all = Object.keys(interfaces).map((nic) => { + // + // Note: name will only be `public` or `private` + // when this is called. + // + const addresses = interfaces[nic].filter((details) => { + details.family = _normalizeFamily(details.family); + if (details.family !== family || ip.isLoopback(details.address)) { + return false; + } if (!name) { + return true; + } + + return name === 'public' ? ip.isPrivate(details.address) + : ip.isPublic(details.address); + }); + + return addresses.length ? addresses[0].address : undefined; + }).filter(Boolean); + + return !all.length ? ip.loopback(family) : all[0]; +}; + +ip.toLong = function (ip) { + let ipl = 0; + ip.split('.').forEach((octet) => { + ipl <<= 8; + ipl += parseInt(octet); + }); + return (ipl >>> 0); +}; + +ip.fromLong = function (ipl) { + return (`${ipl >>> 24}.${ + ipl >> 16 & 255}.${ + ipl >> 8 & 255}.${ + ipl & 255}`); +}; diff --git a/node_modules/ip/package.json b/node_modules/ip/package.json new file mode 100644 index 000000000..f0d95e9b7 --- /dev/null +++ b/node_modules/ip/package.json @@ -0,0 +1,25 @@ +{ + "name": "ip", + "version": "2.0.0", + "author": "Fedor Indutny ", + "homepage": "https://github.com/indutny/node-ip", + "repository": { + "type": "git", + "url": "http://github.com/indutny/node-ip.git" + }, + "files": [ + "lib", + "README.md" + ], + "main": "lib/ip", + "devDependencies": { + "eslint": "^8.15.0", + "mocha": "^10.0.0" + }, + "scripts": { + "lint": "eslint lib/*.js test/*.js", + "test": "npm run lint && mocha --reporter spec test/*-test.js", + "fix": "npm run lint -- --fix" + }, + "license": "MIT" +} diff --git a/node_modules/ipaddr.js/LICENSE b/node_modules/ipaddr.js/LICENSE new file mode 100644 index 000000000..f6b37b52d --- /dev/null +++ b/node_modules/ipaddr.js/LICENSE @@ -0,0 +1,19 @@ +Copyright (C) 2011-2017 whitequark + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/node_modules/ipaddr.js/README.md b/node_modules/ipaddr.js/README.md new file mode 100644 index 000000000..f57725b0f --- /dev/null +++ b/node_modules/ipaddr.js/README.md @@ -0,0 +1,233 @@ +# ipaddr.js — an IPv6 and IPv4 address manipulation library [![Build Status](https://travis-ci.org/whitequark/ipaddr.js.svg)](https://travis-ci.org/whitequark/ipaddr.js) + +ipaddr.js is a small (1.9K minified and gzipped) library for manipulating +IP addresses in JavaScript environments. It runs on both CommonJS runtimes +(e.g. [nodejs]) and in a web browser. + +ipaddr.js allows you to verify and parse string representation of an IP +address, match it against a CIDR range or range list, determine if it falls +into some reserved ranges (examples include loopback and private ranges), +and convert between IPv4 and IPv4-mapped IPv6 addresses. + +[nodejs]: http://nodejs.org + +## Installation + +`npm install ipaddr.js` + +or + +`bower install ipaddr.js` + +## API + +ipaddr.js defines one object in the global scope: `ipaddr`. In CommonJS, +it is exported from the module: + +```js +var ipaddr = require('ipaddr.js'); +``` + +The API consists of several global methods and two classes: ipaddr.IPv6 and ipaddr.IPv4. + +### Global methods + +There are three global methods defined: `ipaddr.isValid`, `ipaddr.parse` and +`ipaddr.process`. All of them receive a string as a single parameter. + +The `ipaddr.isValid` method returns `true` if the address is a valid IPv4 or +IPv6 address, and `false` otherwise. It does not throw any exceptions. + +The `ipaddr.parse` method returns an object representing the IP address, +or throws an `Error` if the passed string is not a valid representation of an +IP address. + +The `ipaddr.process` method works just like the `ipaddr.parse` one, but it +automatically converts IPv4-mapped IPv6 addresses to their IPv4 counterparts +before returning. It is useful when you have a Node.js instance listening +on an IPv6 socket, and the `net.ivp6.bindv6only` sysctl parameter (or its +equivalent on non-Linux OS) is set to 0. In this case, you can accept IPv4 +connections on your IPv6-only socket, but the remote address will be mangled. +Use `ipaddr.process` method to automatically demangle it. + +### Object representation + +Parsing methods return an object which descends from `ipaddr.IPv6` or +`ipaddr.IPv4`. These objects share some properties, but most of them differ. + +#### Shared properties + +One can determine the type of address by calling `addr.kind()`. It will return +either `"ipv6"` or `"ipv4"`. + +An address can be converted back to its string representation with `addr.toString()`. +Note that this method: + * does not return the original string used to create the object (in fact, there is + no way of getting that string) + * returns a compact representation (when it is applicable) + +A `match(range, bits)` method can be used to check if the address falls into a +certain CIDR range. +Note that an address can be (obviously) matched only against an address of the same type. + +For example: + +```js +var addr = ipaddr.parse("2001:db8:1234::1"); +var range = ipaddr.parse("2001:db8::"); + +addr.match(range, 32); // => true +``` + +Alternatively, `match` can also be called as `match([range, bits])`. In this way, +it can be used together with the `parseCIDR(string)` method, which parses an IP +address together with a CIDR range. + +For example: + +```js +var addr = ipaddr.parse("2001:db8:1234::1"); + +addr.match(ipaddr.parseCIDR("2001:db8::/32")); // => true +``` + +A `range()` method returns one of predefined names for several special ranges defined +by IP protocols. The exact names (and their respective CIDR ranges) can be looked up +in the source: [IPv6 ranges] and [IPv4 ranges]. Some common ones include `"unicast"` +(the default one) and `"reserved"`. + +You can match against your own range list by using +`ipaddr.subnetMatch(address, rangeList, defaultName)` method. It can work with a mix of IPv6 or IPv4 addresses, and accepts a name-to-subnet map as the range list. For example: + +```js +var rangeList = { + documentationOnly: [ ipaddr.parse('2001:db8::'), 32 ], + tunnelProviders: [ + [ ipaddr.parse('2001:470::'), 32 ], // he.net + [ ipaddr.parse('2001:5c0::'), 32 ] // freenet6 + ] +}; +ipaddr.subnetMatch(ipaddr.parse('2001:470:8:66::1'), rangeList, 'unknown'); // => "tunnelProviders" +``` + +The addresses can be converted to their byte representation with `toByteArray()`. +(Actually, JavaScript mostly does not know about byte buffers. They are emulated with +arrays of numbers, each in range of 0..255.) + +```js +var bytes = ipaddr.parse('2a00:1450:8007::68').toByteArray(); // ipv6.google.com +bytes // => [42, 0x00, 0x14, 0x50, 0x80, 0x07, 0x00, , 0x00, 0x68 ] +``` + +The `ipaddr.IPv4` and `ipaddr.IPv6` objects have some methods defined, too. All of them +have the same interface for both protocols, and are similar to global methods. + +`ipaddr.IPvX.isValid(string)` can be used to check if the string is a valid address +for particular protocol, and `ipaddr.IPvX.parse(string)` is the error-throwing parser. + +`ipaddr.IPvX.isValid(string)` uses the same format for parsing as the POSIX `inet_ntoa` function, which accepts unusual formats like `0xc0.168.1.1` or `0x10000000`. The function `ipaddr.IPv4.isValidFourPartDecimal(string)` validates the IPv4 address and also ensures that it is written in four-part decimal format. + +[IPv6 ranges]: https://github.com/whitequark/ipaddr.js/blob/master/src/ipaddr.coffee#L186 +[IPv4 ranges]: https://github.com/whitequark/ipaddr.js/blob/master/src/ipaddr.coffee#L71 + +#### IPv6 properties + +Sometimes you will want to convert IPv6 not to a compact string representation (with +the `::` substitution); the `toNormalizedString()` method will return an address where +all zeroes are explicit. + +For example: + +```js +var addr = ipaddr.parse("2001:0db8::0001"); +addr.toString(); // => "2001:db8::1" +addr.toNormalizedString(); // => "2001:db8:0:0:0:0:0:1" +``` + +The `isIPv4MappedAddress()` method will return `true` if this address is an IPv4-mapped +one, and `toIPv4Address()` will return an IPv4 object address. + +To access the underlying binary representation of the address, use `addr.parts`. + +```js +var addr = ipaddr.parse("2001:db8:10::1234:DEAD"); +addr.parts // => [0x2001, 0xdb8, 0x10, 0, 0, 0, 0x1234, 0xdead] +``` + +A IPv6 zone index can be accessed via `addr.zoneId`: + +```js +var addr = ipaddr.parse("2001:db8::%eth0"); +addr.zoneId // => 'eth0' +``` + +#### IPv4 properties + +`toIPv4MappedAddress()` will return a corresponding IPv4-mapped IPv6 address. + +To access the underlying representation of the address, use `addr.octets`. + +```js +var addr = ipaddr.parse("192.168.1.1"); +addr.octets // => [192, 168, 1, 1] +``` + +`prefixLengthFromSubnetMask()` will return a CIDR prefix length for a valid IPv4 netmask or +null if the netmask is not valid. + +```js +ipaddr.IPv4.parse('255.255.255.240').prefixLengthFromSubnetMask() == 28 +ipaddr.IPv4.parse('255.192.164.0').prefixLengthFromSubnetMask() == null +``` + +`subnetMaskFromPrefixLength()` will return an IPv4 netmask for a valid CIDR prefix length. + +```js +ipaddr.IPv4.subnetMaskFromPrefixLength(24) == "255.255.255.0" +ipaddr.IPv4.subnetMaskFromPrefixLength(29) == "255.255.255.248" +``` + +`broadcastAddressFromCIDR()` will return the broadcast address for a given IPv4 interface and netmask in CIDR notation. +```js +ipaddr.IPv4.broadcastAddressFromCIDR("172.0.0.1/24") == "172.0.0.255" +``` +`networkAddressFromCIDR()` will return the network address for a given IPv4 interface and netmask in CIDR notation. +```js +ipaddr.IPv4.networkAddressFromCIDR("172.0.0.1/24") == "172.0.0.0" +``` + +#### Conversion + +IPv4 and IPv6 can be converted bidirectionally to and from network byte order (MSB) byte arrays. + +The `fromByteArray()` method will take an array and create an appropriate IPv4 or IPv6 object +if the input satisfies the requirements. For IPv4 it has to be an array of four 8-bit values, +while for IPv6 it has to be an array of sixteen 8-bit values. + +For example: +```js +var addr = ipaddr.fromByteArray([0x7f, 0, 0, 1]); +addr.toString(); // => "127.0.0.1" +``` + +or + +```js +var addr = ipaddr.fromByteArray([0x20, 1, 0xd, 0xb8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]) +addr.toString(); // => "2001:db8::1" +``` + +Both objects also offer a `toByteArray()` method, which returns an array in network byte order (MSB). + +For example: +```js +var addr = ipaddr.parse("127.0.0.1"); +addr.toByteArray(); // => [0x7f, 0, 0, 1] +``` + +or + +```js +var addr = ipaddr.parse("2001:db8::1"); +addr.toByteArray(); // => [0x20, 1, 0xd, 0xb8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1] +``` diff --git a/node_modules/ipaddr.js/ipaddr.min.js b/node_modules/ipaddr.js/ipaddr.min.js new file mode 100644 index 000000000..b54a7cc42 --- /dev/null +++ b/node_modules/ipaddr.js/ipaddr.min.js @@ -0,0 +1 @@ +(function(){var r,t,n,e,i,o,a,s;t={},s=this,"undefined"!=typeof module&&null!==module&&module.exports?module.exports=t:s.ipaddr=t,a=function(r,t,n,e){var i,o;if(r.length!==t.length)throw new Error("ipaddr: cannot match CIDR for objects with different lengths");for(i=0;e>0;){if((o=n-e)<0&&(o=0),r[i]>>o!=t[i]>>o)return!1;e-=n,i+=1}return!0},t.subnetMatch=function(r,t,n){var e,i,o,a,s;null==n&&(n="unicast");for(o in t)for(!(a=t[o])[0]||a[0]instanceof Array||(a=[a]),e=0,i=a.length;e=0;t=n+=-1){if(!((e=this.octets[t])in a))return null;if(o=a[e],i&&0!==o)return null;8!==o&&(i=!0),r+=o}return 32-r},r}(),n="(0?\\d+|0x[a-f0-9]+)",e={fourOctet:new RegExp("^"+n+"\\."+n+"\\."+n+"\\."+n+"$","i"),longValue:new RegExp("^"+n+"$","i")},t.IPv4.parser=function(r){var t,n,i,o,a;if(n=function(r){return"0"===r[0]&&"x"!==r[1]?parseInt(r,8):parseInt(r)},t=r.match(e.fourOctet))return function(){var r,e,o,a;for(a=[],r=0,e=(o=t.slice(1,6)).length;r4294967295||a<0)throw new Error("ipaddr: address outside defined range");return function(){var r,t;for(t=[],o=r=0;r<=24;o=r+=8)t.push(a>>o&255);return t}().reverse()}return null},t.IPv6=function(){function r(r,t){var n,e,i,o,a,s;if(16===r.length)for(this.parts=[],n=e=0;e<=14;n=e+=2)this.parts.push(r[n]<<8|r[n+1]);else{if(8!==r.length)throw new Error("ipaddr: ipv6 part count should be 8 or 16");this.parts=r}for(i=0,o=(s=this.parts).length;it&&(r=n.index,t=n[0].length);return t<0?i:i.substring(0,r)+"::"+i.substring(r+t)},r.prototype.toByteArray=function(){var r,t,n,e,i;for(r=[],t=0,n=(i=this.parts).length;t>8),r.push(255&e);return r},r.prototype.toNormalizedString=function(){var r,t,n;return r=function(){var r,n,e,i;for(i=[],r=0,n=(e=this.parts).length;r>8,255&r,n>>8,255&n])},r.prototype.prefixLengthFromSubnetMask=function(){var r,t,n,e,i,o,a;for(a={0:16,32768:15,49152:14,57344:13,61440:12,63488:11,64512:10,65024:9,65280:8,65408:7,65472:6,65504:5,65520:4,65528:3,65532:2,65534:1,65535:0},r=0,i=!1,t=n=7;n>=0;t=n+=-1){if(!((e=this.parts[t])in a))return null;if(o=a[e],i&&0!==o)return null;16!==o&&(i=!0),r+=o}return 128-r},r}(),i="(?:[0-9a-f]+::?)+",o={zoneIndex:new RegExp("%[0-9a-z]{1,}","i"),native:new RegExp("^(::)?("+i+")?([0-9a-f]+)?(::)?(%[0-9a-z]{1,})?$","i"),transitional:new RegExp("^((?:"+i+")|(?:::)(?:"+i+")?)"+n+"\\."+n+"\\."+n+"\\."+n+"(%[0-9a-z]{1,})?$","i")},r=function(r,t){var n,e,i,a,s,p;if(r.indexOf("::")!==r.lastIndexOf("::"))return null;for((p=(r.match(o.zoneIndex)||[])[0])&&(p=p.substring(1),r=r.replace(/%.+$/,"")),n=0,e=-1;(e=r.indexOf(":",e+1))>=0;)n++;if("::"===r.substr(0,2)&&n--,"::"===r.substr(-2,2)&&n--,n>t)return null;for(s=t-n,a=":";s--;)a+="0:";return":"===(r=r.replace("::",a))[0]&&(r=r.slice(1)),":"===r[r.length-1]&&(r=r.slice(0,-1)),t=function(){var t,n,e,o;for(o=[],t=0,n=(e=r.split(":")).length;t=0&&t<=32)return e=[this.parse(n[1]),t],Object.defineProperty(e,"toString",{value:function(){return this.join("/")}}),e;throw new Error("ipaddr: string is not formatted like an IPv4 CIDR range")},t.IPv4.subnetMaskFromPrefixLength=function(r){var t,n,e;if((r=parseInt(r))<0||r>32)throw new Error("ipaddr: invalid IPv4 prefix length");for(e=[0,0,0,0],n=0,t=Math.floor(r/8);n=0&&t<=128)return e=[this.parse(n[1]),t],Object.defineProperty(e,"toString",{value:function(){return this.join("/")}}),e;throw new Error("ipaddr: string is not formatted like an IPv6 CIDR range")},t.isValid=function(r){return t.IPv6.isValid(r)||t.IPv4.isValid(r)},t.parse=function(r){if(t.IPv6.isValid(r))return t.IPv6.parse(r);if(t.IPv4.isValid(r))return t.IPv4.parse(r);throw new Error("ipaddr: the address has neither IPv6 nor IPv4 format")},t.parseCIDR=function(r){try{return t.IPv6.parseCIDR(r)}catch(n){n;try{return t.IPv4.parseCIDR(r)}catch(r){throw r,new Error("ipaddr: the address has neither IPv6 nor IPv4 CIDR format")}}},t.fromByteArray=function(r){var n;if(4===(n=r.length))return new t.IPv4(r);if(16===n)return new t.IPv6(r);throw new Error("ipaddr: the binary input is neither an IPv6 nor IPv4 address")},t.process=function(r){var t;return t=this.parse(r),"ipv6"===t.kind()&&t.isIPv4MappedAddress()?t.toIPv4Address():t}}).call(this); \ No newline at end of file diff --git a/node_modules/ipaddr.js/lib/ipaddr.js b/node_modules/ipaddr.js/lib/ipaddr.js new file mode 100644 index 000000000..18bd93b5e --- /dev/null +++ b/node_modules/ipaddr.js/lib/ipaddr.js @@ -0,0 +1,673 @@ +(function() { + var expandIPv6, ipaddr, ipv4Part, ipv4Regexes, ipv6Part, ipv6Regexes, matchCIDR, root, zoneIndex; + + ipaddr = {}; + + root = this; + + if ((typeof module !== "undefined" && module !== null) && module.exports) { + module.exports = ipaddr; + } else { + root['ipaddr'] = ipaddr; + } + + matchCIDR = function(first, second, partSize, cidrBits) { + var part, shift; + if (first.length !== second.length) { + throw new Error("ipaddr: cannot match CIDR for objects with different lengths"); + } + part = 0; + while (cidrBits > 0) { + shift = partSize - cidrBits; + if (shift < 0) { + shift = 0; + } + if (first[part] >> shift !== second[part] >> shift) { + return false; + } + cidrBits -= partSize; + part += 1; + } + return true; + }; + + ipaddr.subnetMatch = function(address, rangeList, defaultName) { + var k, len, rangeName, rangeSubnets, subnet; + if (defaultName == null) { + defaultName = 'unicast'; + } + for (rangeName in rangeList) { + rangeSubnets = rangeList[rangeName]; + if (rangeSubnets[0] && !(rangeSubnets[0] instanceof Array)) { + rangeSubnets = [rangeSubnets]; + } + for (k = 0, len = rangeSubnets.length; k < len; k++) { + subnet = rangeSubnets[k]; + if (address.kind() === subnet[0].kind()) { + if (address.match.apply(address, subnet)) { + return rangeName; + } + } + } + } + return defaultName; + }; + + ipaddr.IPv4 = (function() { + function IPv4(octets) { + var k, len, octet; + if (octets.length !== 4) { + throw new Error("ipaddr: ipv4 octet count should be 4"); + } + for (k = 0, len = octets.length; k < len; k++) { + octet = octets[k]; + if (!((0 <= octet && octet <= 255))) { + throw new Error("ipaddr: ipv4 octet should fit in 8 bits"); + } + } + this.octets = octets; + } + + IPv4.prototype.kind = function() { + return 'ipv4'; + }; + + IPv4.prototype.toString = function() { + return this.octets.join("."); + }; + + IPv4.prototype.toNormalizedString = function() { + return this.toString(); + }; + + IPv4.prototype.toByteArray = function() { + return this.octets.slice(0); + }; + + IPv4.prototype.match = function(other, cidrRange) { + var ref; + if (cidrRange === void 0) { + ref = other, other = ref[0], cidrRange = ref[1]; + } + if (other.kind() !== 'ipv4') { + throw new Error("ipaddr: cannot match ipv4 address with non-ipv4 one"); + } + return matchCIDR(this.octets, other.octets, 8, cidrRange); + }; + + IPv4.prototype.SpecialRanges = { + unspecified: [[new IPv4([0, 0, 0, 0]), 8]], + broadcast: [[new IPv4([255, 255, 255, 255]), 32]], + multicast: [[new IPv4([224, 0, 0, 0]), 4]], + linkLocal: [[new IPv4([169, 254, 0, 0]), 16]], + loopback: [[new IPv4([127, 0, 0, 0]), 8]], + carrierGradeNat: [[new IPv4([100, 64, 0, 0]), 10]], + "private": [[new IPv4([10, 0, 0, 0]), 8], [new IPv4([172, 16, 0, 0]), 12], [new IPv4([192, 168, 0, 0]), 16]], + reserved: [[new IPv4([192, 0, 0, 0]), 24], [new IPv4([192, 0, 2, 0]), 24], [new IPv4([192, 88, 99, 0]), 24], [new IPv4([198, 51, 100, 0]), 24], [new IPv4([203, 0, 113, 0]), 24], [new IPv4([240, 0, 0, 0]), 4]] + }; + + IPv4.prototype.range = function() { + return ipaddr.subnetMatch(this, this.SpecialRanges); + }; + + IPv4.prototype.toIPv4MappedAddress = function() { + return ipaddr.IPv6.parse("::ffff:" + (this.toString())); + }; + + IPv4.prototype.prefixLengthFromSubnetMask = function() { + var cidr, i, k, octet, stop, zeros, zerotable; + zerotable = { + 0: 8, + 128: 7, + 192: 6, + 224: 5, + 240: 4, + 248: 3, + 252: 2, + 254: 1, + 255: 0 + }; + cidr = 0; + stop = false; + for (i = k = 3; k >= 0; i = k += -1) { + octet = this.octets[i]; + if (octet in zerotable) { + zeros = zerotable[octet]; + if (stop && zeros !== 0) { + return null; + } + if (zeros !== 8) { + stop = true; + } + cidr += zeros; + } else { + return null; + } + } + return 32 - cidr; + }; + + return IPv4; + + })(); + + ipv4Part = "(0?\\d+|0x[a-f0-9]+)"; + + ipv4Regexes = { + fourOctet: new RegExp("^" + ipv4Part + "\\." + ipv4Part + "\\." + ipv4Part + "\\." + ipv4Part + "$", 'i'), + longValue: new RegExp("^" + ipv4Part + "$", 'i') + }; + + ipaddr.IPv4.parser = function(string) { + var match, parseIntAuto, part, shift, value; + parseIntAuto = function(string) { + if (string[0] === "0" && string[1] !== "x") { + return parseInt(string, 8); + } else { + return parseInt(string); + } + }; + if (match = string.match(ipv4Regexes.fourOctet)) { + return (function() { + var k, len, ref, results; + ref = match.slice(1, 6); + results = []; + for (k = 0, len = ref.length; k < len; k++) { + part = ref[k]; + results.push(parseIntAuto(part)); + } + return results; + })(); + } else if (match = string.match(ipv4Regexes.longValue)) { + value = parseIntAuto(match[1]); + if (value > 0xffffffff || value < 0) { + throw new Error("ipaddr: address outside defined range"); + } + return ((function() { + var k, results; + results = []; + for (shift = k = 0; k <= 24; shift = k += 8) { + results.push((value >> shift) & 0xff); + } + return results; + })()).reverse(); + } else { + return null; + } + }; + + ipaddr.IPv6 = (function() { + function IPv6(parts, zoneId) { + var i, k, l, len, part, ref; + if (parts.length === 16) { + this.parts = []; + for (i = k = 0; k <= 14; i = k += 2) { + this.parts.push((parts[i] << 8) | parts[i + 1]); + } + } else if (parts.length === 8) { + this.parts = parts; + } else { + throw new Error("ipaddr: ipv6 part count should be 8 or 16"); + } + ref = this.parts; + for (l = 0, len = ref.length; l < len; l++) { + part = ref[l]; + if (!((0 <= part && part <= 0xffff))) { + throw new Error("ipaddr: ipv6 part should fit in 16 bits"); + } + } + if (zoneId) { + this.zoneId = zoneId; + } + } + + IPv6.prototype.kind = function() { + return 'ipv6'; + }; + + IPv6.prototype.toString = function() { + return this.toNormalizedString().replace(/((^|:)(0(:|$))+)/, '::'); + }; + + IPv6.prototype.toRFC5952String = function() { + var bestMatchIndex, bestMatchLength, match, regex, string; + regex = /((^|:)(0(:|$)){2,})/g; + string = this.toNormalizedString(); + bestMatchIndex = 0; + bestMatchLength = -1; + while ((match = regex.exec(string))) { + if (match[0].length > bestMatchLength) { + bestMatchIndex = match.index; + bestMatchLength = match[0].length; + } + } + if (bestMatchLength < 0) { + return string; + } + return string.substring(0, bestMatchIndex) + '::' + string.substring(bestMatchIndex + bestMatchLength); + }; + + IPv6.prototype.toByteArray = function() { + var bytes, k, len, part, ref; + bytes = []; + ref = this.parts; + for (k = 0, len = ref.length; k < len; k++) { + part = ref[k]; + bytes.push(part >> 8); + bytes.push(part & 0xff); + } + return bytes; + }; + + IPv6.prototype.toNormalizedString = function() { + var addr, part, suffix; + addr = ((function() { + var k, len, ref, results; + ref = this.parts; + results = []; + for (k = 0, len = ref.length; k < len; k++) { + part = ref[k]; + results.push(part.toString(16)); + } + return results; + }).call(this)).join(":"); + suffix = ''; + if (this.zoneId) { + suffix = '%' + this.zoneId; + } + return addr + suffix; + }; + + IPv6.prototype.toFixedLengthString = function() { + var addr, part, suffix; + addr = ((function() { + var k, len, ref, results; + ref = this.parts; + results = []; + for (k = 0, len = ref.length; k < len; k++) { + part = ref[k]; + results.push(part.toString(16).padStart(4, '0')); + } + return results; + }).call(this)).join(":"); + suffix = ''; + if (this.zoneId) { + suffix = '%' + this.zoneId; + } + return addr + suffix; + }; + + IPv6.prototype.match = function(other, cidrRange) { + var ref; + if (cidrRange === void 0) { + ref = other, other = ref[0], cidrRange = ref[1]; + } + if (other.kind() !== 'ipv6') { + throw new Error("ipaddr: cannot match ipv6 address with non-ipv6 one"); + } + return matchCIDR(this.parts, other.parts, 16, cidrRange); + }; + + IPv6.prototype.SpecialRanges = { + unspecified: [new IPv6([0, 0, 0, 0, 0, 0, 0, 0]), 128], + linkLocal: [new IPv6([0xfe80, 0, 0, 0, 0, 0, 0, 0]), 10], + multicast: [new IPv6([0xff00, 0, 0, 0, 0, 0, 0, 0]), 8], + loopback: [new IPv6([0, 0, 0, 0, 0, 0, 0, 1]), 128], + uniqueLocal: [new IPv6([0xfc00, 0, 0, 0, 0, 0, 0, 0]), 7], + ipv4Mapped: [new IPv6([0, 0, 0, 0, 0, 0xffff, 0, 0]), 96], + rfc6145: [new IPv6([0, 0, 0, 0, 0xffff, 0, 0, 0]), 96], + rfc6052: [new IPv6([0x64, 0xff9b, 0, 0, 0, 0, 0, 0]), 96], + '6to4': [new IPv6([0x2002, 0, 0, 0, 0, 0, 0, 0]), 16], + teredo: [new IPv6([0x2001, 0, 0, 0, 0, 0, 0, 0]), 32], + reserved: [[new IPv6([0x2001, 0xdb8, 0, 0, 0, 0, 0, 0]), 32]] + }; + + IPv6.prototype.range = function() { + return ipaddr.subnetMatch(this, this.SpecialRanges); + }; + + IPv6.prototype.isIPv4MappedAddress = function() { + return this.range() === 'ipv4Mapped'; + }; + + IPv6.prototype.toIPv4Address = function() { + var high, low, ref; + if (!this.isIPv4MappedAddress()) { + throw new Error("ipaddr: trying to convert a generic ipv6 address to ipv4"); + } + ref = this.parts.slice(-2), high = ref[0], low = ref[1]; + return new ipaddr.IPv4([high >> 8, high & 0xff, low >> 8, low & 0xff]); + }; + + IPv6.prototype.prefixLengthFromSubnetMask = function() { + var cidr, i, k, part, stop, zeros, zerotable; + zerotable = { + 0: 16, + 32768: 15, + 49152: 14, + 57344: 13, + 61440: 12, + 63488: 11, + 64512: 10, + 65024: 9, + 65280: 8, + 65408: 7, + 65472: 6, + 65504: 5, + 65520: 4, + 65528: 3, + 65532: 2, + 65534: 1, + 65535: 0 + }; + cidr = 0; + stop = false; + for (i = k = 7; k >= 0; i = k += -1) { + part = this.parts[i]; + if (part in zerotable) { + zeros = zerotable[part]; + if (stop && zeros !== 0) { + return null; + } + if (zeros !== 16) { + stop = true; + } + cidr += zeros; + } else { + return null; + } + } + return 128 - cidr; + }; + + return IPv6; + + })(); + + ipv6Part = "(?:[0-9a-f]+::?)+"; + + zoneIndex = "%[0-9a-z]{1,}"; + + ipv6Regexes = { + zoneIndex: new RegExp(zoneIndex, 'i'), + "native": new RegExp("^(::)?(" + ipv6Part + ")?([0-9a-f]+)?(::)?(" + zoneIndex + ")?$", 'i'), + transitional: new RegExp(("^((?:" + ipv6Part + ")|(?:::)(?:" + ipv6Part + ")?)") + (ipv4Part + "\\." + ipv4Part + "\\." + ipv4Part + "\\." + ipv4Part) + ("(" + zoneIndex + ")?$"), 'i') + }; + + expandIPv6 = function(string, parts) { + var colonCount, lastColon, part, replacement, replacementCount, zoneId; + if (string.indexOf('::') !== string.lastIndexOf('::')) { + return null; + } + zoneId = (string.match(ipv6Regexes['zoneIndex']) || [])[0]; + if (zoneId) { + zoneId = zoneId.substring(1); + string = string.replace(/%.+$/, ''); + } + colonCount = 0; + lastColon = -1; + while ((lastColon = string.indexOf(':', lastColon + 1)) >= 0) { + colonCount++; + } + if (string.substr(0, 2) === '::') { + colonCount--; + } + if (string.substr(-2, 2) === '::') { + colonCount--; + } + if (colonCount > parts) { + return null; + } + replacementCount = parts - colonCount; + replacement = ':'; + while (replacementCount--) { + replacement += '0:'; + } + string = string.replace('::', replacement); + if (string[0] === ':') { + string = string.slice(1); + } + if (string[string.length - 1] === ':') { + string = string.slice(0, -1); + } + parts = (function() { + var k, len, ref, results; + ref = string.split(":"); + results = []; + for (k = 0, len = ref.length; k < len; k++) { + part = ref[k]; + results.push(parseInt(part, 16)); + } + return results; + })(); + return { + parts: parts, + zoneId: zoneId + }; + }; + + ipaddr.IPv6.parser = function(string) { + var addr, k, len, match, octet, octets, zoneId; + if (ipv6Regexes['native'].test(string)) { + return expandIPv6(string, 8); + } else if (match = string.match(ipv6Regexes['transitional'])) { + zoneId = match[6] || ''; + addr = expandIPv6(match[1].slice(0, -1) + zoneId, 6); + if (addr.parts) { + octets = [parseInt(match[2]), parseInt(match[3]), parseInt(match[4]), parseInt(match[5])]; + for (k = 0, len = octets.length; k < len; k++) { + octet = octets[k]; + if (!((0 <= octet && octet <= 255))) { + return null; + } + } + addr.parts.push(octets[0] << 8 | octets[1]); + addr.parts.push(octets[2] << 8 | octets[3]); + return { + parts: addr.parts, + zoneId: addr.zoneId + }; + } + } + return null; + }; + + ipaddr.IPv4.isIPv4 = ipaddr.IPv6.isIPv6 = function(string) { + return this.parser(string) !== null; + }; + + ipaddr.IPv4.isValid = function(string) { + var e; + try { + new this(this.parser(string)); + return true; + } catch (error1) { + e = error1; + return false; + } + }; + + ipaddr.IPv4.isValidFourPartDecimal = function(string) { + if (ipaddr.IPv4.isValid(string) && string.match(/^(0|[1-9]\d*)(\.(0|[1-9]\d*)){3}$/)) { + return true; + } else { + return false; + } + }; + + ipaddr.IPv6.isValid = function(string) { + var addr, e; + if (typeof string === "string" && string.indexOf(":") === -1) { + return false; + } + try { + addr = this.parser(string); + new this(addr.parts, addr.zoneId); + return true; + } catch (error1) { + e = error1; + return false; + } + }; + + ipaddr.IPv4.parse = function(string) { + var parts; + parts = this.parser(string); + if (parts === null) { + throw new Error("ipaddr: string is not formatted like ip address"); + } + return new this(parts); + }; + + ipaddr.IPv6.parse = function(string) { + var addr; + addr = this.parser(string); + if (addr.parts === null) { + throw new Error("ipaddr: string is not formatted like ip address"); + } + return new this(addr.parts, addr.zoneId); + }; + + ipaddr.IPv4.parseCIDR = function(string) { + var maskLength, match, parsed; + if (match = string.match(/^(.+)\/(\d+)$/)) { + maskLength = parseInt(match[2]); + if (maskLength >= 0 && maskLength <= 32) { + parsed = [this.parse(match[1]), maskLength]; + Object.defineProperty(parsed, 'toString', { + value: function() { + return this.join('/'); + } + }); + return parsed; + } + } + throw new Error("ipaddr: string is not formatted like an IPv4 CIDR range"); + }; + + ipaddr.IPv4.subnetMaskFromPrefixLength = function(prefix) { + var filledOctetCount, j, octets; + prefix = parseInt(prefix); + if (prefix < 0 || prefix > 32) { + throw new Error('ipaddr: invalid IPv4 prefix length'); + } + octets = [0, 0, 0, 0]; + j = 0; + filledOctetCount = Math.floor(prefix / 8); + while (j < filledOctetCount) { + octets[j] = 255; + j++; + } + if (filledOctetCount < 4) { + octets[filledOctetCount] = Math.pow(2, prefix % 8) - 1 << 8 - (prefix % 8); + } + return new this(octets); + }; + + ipaddr.IPv4.broadcastAddressFromCIDR = function(string) { + var cidr, error, i, ipInterfaceOctets, octets, subnetMaskOctets; + try { + cidr = this.parseCIDR(string); + ipInterfaceOctets = cidr[0].toByteArray(); + subnetMaskOctets = this.subnetMaskFromPrefixLength(cidr[1]).toByteArray(); + octets = []; + i = 0; + while (i < 4) { + octets.push(parseInt(ipInterfaceOctets[i], 10) | parseInt(subnetMaskOctets[i], 10) ^ 255); + i++; + } + return new this(octets); + } catch (error1) { + error = error1; + throw new Error('ipaddr: the address does not have IPv4 CIDR format'); + } + }; + + ipaddr.IPv4.networkAddressFromCIDR = function(string) { + var cidr, error, i, ipInterfaceOctets, octets, subnetMaskOctets; + try { + cidr = this.parseCIDR(string); + ipInterfaceOctets = cidr[0].toByteArray(); + subnetMaskOctets = this.subnetMaskFromPrefixLength(cidr[1]).toByteArray(); + octets = []; + i = 0; + while (i < 4) { + octets.push(parseInt(ipInterfaceOctets[i], 10) & parseInt(subnetMaskOctets[i], 10)); + i++; + } + return new this(octets); + } catch (error1) { + error = error1; + throw new Error('ipaddr: the address does not have IPv4 CIDR format'); + } + }; + + ipaddr.IPv6.parseCIDR = function(string) { + var maskLength, match, parsed; + if (match = string.match(/^(.+)\/(\d+)$/)) { + maskLength = parseInt(match[2]); + if (maskLength >= 0 && maskLength <= 128) { + parsed = [this.parse(match[1]), maskLength]; + Object.defineProperty(parsed, 'toString', { + value: function() { + return this.join('/'); + } + }); + return parsed; + } + } + throw new Error("ipaddr: string is not formatted like an IPv6 CIDR range"); + }; + + ipaddr.isValid = function(string) { + return ipaddr.IPv6.isValid(string) || ipaddr.IPv4.isValid(string); + }; + + ipaddr.parse = function(string) { + if (ipaddr.IPv6.isValid(string)) { + return ipaddr.IPv6.parse(string); + } else if (ipaddr.IPv4.isValid(string)) { + return ipaddr.IPv4.parse(string); + } else { + throw new Error("ipaddr: the address has neither IPv6 nor IPv4 format"); + } + }; + + ipaddr.parseCIDR = function(string) { + var e; + try { + return ipaddr.IPv6.parseCIDR(string); + } catch (error1) { + e = error1; + try { + return ipaddr.IPv4.parseCIDR(string); + } catch (error1) { + e = error1; + throw new Error("ipaddr: the address has neither IPv6 nor IPv4 CIDR format"); + } + } + }; + + ipaddr.fromByteArray = function(bytes) { + var length; + length = bytes.length; + if (length === 4) { + return new ipaddr.IPv4(bytes); + } else if (length === 16) { + return new ipaddr.IPv6(bytes); + } else { + throw new Error("ipaddr: the binary input is neither an IPv6 nor IPv4 address"); + } + }; + + ipaddr.process = function(string) { + var addr; + addr = this.parse(string); + if (addr.kind() === 'ipv6' && addr.isIPv4MappedAddress()) { + return addr.toIPv4Address(); + } else { + return addr; + } + }; + +}).call(this); diff --git a/node_modules/ipaddr.js/lib/ipaddr.js.d.ts b/node_modules/ipaddr.js/lib/ipaddr.js.d.ts new file mode 100644 index 000000000..52174b6b6 --- /dev/null +++ b/node_modules/ipaddr.js/lib/ipaddr.js.d.ts @@ -0,0 +1,68 @@ +declare module "ipaddr.js" { + type IPv4Range = 'unicast' | 'unspecified' | 'broadcast' | 'multicast' | 'linkLocal' | 'loopback' | 'carrierGradeNat' | 'private' | 'reserved'; + type IPv6Range = 'unicast' | 'unspecified' | 'linkLocal' | 'multicast' | 'loopback' | 'uniqueLocal' | 'ipv4Mapped' | 'rfc6145' | 'rfc6052' | '6to4' | 'teredo' | 'reserved'; + + interface RangeList { + [name: string]: [T, number] | [T, number][]; + } + + // Common methods/properties for IPv4 and IPv6 classes. + class IP { + prefixLengthFromSubnetMask(): number | null; + toByteArray(): number[]; + toNormalizedString(): string; + toString(): string; + } + + namespace Address { + export function isValid(addr: string): boolean; + export function fromByteArray(bytes: number[]): IPv4 | IPv6; + export function parse(addr: string): IPv4 | IPv6; + export function parseCIDR(mask: string): [IPv4 | IPv6, number]; + export function process(addr: string): IPv4 | IPv6; + export function subnetMatch(addr: IPv4, rangeList: RangeList, defaultName?: string): string; + export function subnetMatch(addr: IPv6, rangeList: RangeList, defaultName?: string): string; + + export class IPv4 extends IP { + static broadcastAddressFromCIDR(addr: string): IPv4; + static isIPv4(addr: string): boolean; + static isValidFourPartDecimal(addr: string): boolean; + static isValid(addr: string): boolean; + static networkAddressFromCIDR(addr: string): IPv4; + static parse(addr: string): IPv4; + static parseCIDR(addr: string): [IPv4, number]; + static subnetMaskFromPrefixLength(prefix: number): IPv4; + constructor(octets: number[]); + octets: number[] + + kind(): 'ipv4'; + match(addr: IPv4, bits: number): boolean; + match(mask: [IPv4, number]): boolean; + range(): IPv4Range; + subnetMatch(rangeList: RangeList, defaultName?: string): string; + toIPv4MappedAddress(): IPv6; + } + + export class IPv6 extends IP { + static broadcastAddressFromCIDR(addr: string): IPv6; + static isIPv6(addr: string): boolean; + static isValid(addr: string): boolean; + static parse(addr: string): IPv6; + static parseCIDR(addr: string): [IPv6, number]; + static subnetMaskFromPrefixLength(prefix: number): IPv6; + constructor(parts: number[]); + parts: number[] + zoneId?: string + + isIPv4MappedAddress(): boolean; + kind(): 'ipv6'; + match(addr: IPv6, bits: number): boolean; + match(mask: [IPv6, number]): boolean; + range(): IPv6Range; + subnetMatch(rangeList: RangeList, defaultName?: string): string; + toIPv4Address(): IPv4; + } + } + + export = Address; +} diff --git a/node_modules/ipaddr.js/package.json b/node_modules/ipaddr.js/package.json new file mode 100644 index 000000000..f4d35475d --- /dev/null +++ b/node_modules/ipaddr.js/package.json @@ -0,0 +1,35 @@ +{ + "name": "ipaddr.js", + "description": "A library for manipulating IPv4 and IPv6 addresses in JavaScript.", + "version": "1.9.1", + "author": "whitequark ", + "directories": { + "lib": "./lib" + }, + "dependencies": {}, + "devDependencies": { + "coffee-script": "~1.12.6", + "nodeunit": "^0.11.3", + "uglify-js": "~3.0.19" + }, + "scripts": { + "test": "cake build test" + }, + "files": [ + "lib/", + "LICENSE", + "ipaddr.min.js" + ], + "keywords": [ + "ip", + "ipv4", + "ipv6" + ], + "repository": "git://github.com/whitequark/ipaddr.js", + "main": "./lib/ipaddr.js", + "engines": { + "node": ">= 0.10" + }, + "license": "MIT", + "types": "./lib/ipaddr.js.d.ts" +} diff --git a/node_modules/media-typer/HISTORY.md b/node_modules/media-typer/HISTORY.md new file mode 100644 index 000000000..62c200316 --- /dev/null +++ b/node_modules/media-typer/HISTORY.md @@ -0,0 +1,22 @@ +0.3.0 / 2014-09-07 +================== + + * Support Node.js 0.6 + * Throw error when parameter format invalid on parse + +0.2.0 / 2014-06-18 +================== + + * Add `typer.format()` to format media types + +0.1.0 / 2014-06-17 +================== + + * Accept `req` as argument to `parse` + * Accept `res` as argument to `parse` + * Parse media type with extra LWS between type and first parameter + +0.0.0 / 2014-06-13 +================== + + * Initial implementation diff --git a/node_modules/media-typer/LICENSE b/node_modules/media-typer/LICENSE new file mode 100644 index 000000000..b7dce6cf9 --- /dev/null +++ b/node_modules/media-typer/LICENSE @@ -0,0 +1,22 @@ +(The MIT License) + +Copyright (c) 2014 Douglas Christopher Wilson + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +'Software'), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/node_modules/media-typer/README.md b/node_modules/media-typer/README.md new file mode 100644 index 000000000..d8df62347 --- /dev/null +++ b/node_modules/media-typer/README.md @@ -0,0 +1,81 @@ +# media-typer + +[![NPM Version][npm-image]][npm-url] +[![NPM Downloads][downloads-image]][downloads-url] +[![Node.js Version][node-version-image]][node-version-url] +[![Build Status][travis-image]][travis-url] +[![Test Coverage][coveralls-image]][coveralls-url] + +Simple RFC 6838 media type parser + +## Installation + +```sh +$ npm install media-typer +``` + +## API + +```js +var typer = require('media-typer') +``` + +### typer.parse(string) + +```js +var obj = typer.parse('image/svg+xml; charset=utf-8') +``` + +Parse a media type string. This will return an object with the following +properties (examples are shown for the string `'image/svg+xml; charset=utf-8'`): + + - `type`: The type of the media type (always lower case). Example: `'image'` + + - `subtype`: The subtype of the media type (always lower case). Example: `'svg'` + + - `suffix`: The suffix of the media type (always lower case). Example: `'xml'` + + - `parameters`: An object of the parameters in the media type (name of parameter always lower case). Example: `{charset: 'utf-8'}` + +### typer.parse(req) + +```js +var obj = typer.parse(req) +``` + +Parse the `content-type` header from the given `req`. Short-cut for +`typer.parse(req.headers['content-type'])`. + +### typer.parse(res) + +```js +var obj = typer.parse(res) +``` + +Parse the `content-type` header set on the given `res`. Short-cut for +`typer.parse(res.getHeader('content-type'))`. + +### typer.format(obj) + +```js +var obj = typer.format({type: 'image', subtype: 'svg', suffix: 'xml'}) +``` + +Format an object into a media type string. This will return a string of the +mime type for the given object. For the properties of the object, see the +documentation for `typer.parse(string)`. + +## License + +[MIT](LICENSE) + +[npm-image]: https://img.shields.io/npm/v/media-typer.svg?style=flat +[npm-url]: https://npmjs.org/package/media-typer +[node-version-image]: https://img.shields.io/badge/node.js-%3E%3D_0.6-brightgreen.svg?style=flat +[node-version-url]: http://nodejs.org/download/ +[travis-image]: https://img.shields.io/travis/jshttp/media-typer.svg?style=flat +[travis-url]: https://travis-ci.org/jshttp/media-typer +[coveralls-image]: https://img.shields.io/coveralls/jshttp/media-typer.svg?style=flat +[coveralls-url]: https://coveralls.io/r/jshttp/media-typer +[downloads-image]: https://img.shields.io/npm/dm/media-typer.svg?style=flat +[downloads-url]: https://npmjs.org/package/media-typer diff --git a/node_modules/media-typer/index.js b/node_modules/media-typer/index.js new file mode 100644 index 000000000..07f7295ee --- /dev/null +++ b/node_modules/media-typer/index.js @@ -0,0 +1,270 @@ +/*! + * media-typer + * Copyright(c) 2014 Douglas Christopher Wilson + * MIT Licensed + */ + +/** + * RegExp to match *( ";" parameter ) in RFC 2616 sec 3.7 + * + * parameter = token "=" ( token | quoted-string ) + * token = 1* + * separators = "(" | ")" | "<" | ">" | "@" + * | "," | ";" | ":" | "\" | <"> + * | "/" | "[" | "]" | "?" | "=" + * | "{" | "}" | SP | HT + * quoted-string = ( <"> *(qdtext | quoted-pair ) <"> ) + * qdtext = > + * quoted-pair = "\" CHAR + * CHAR = + * TEXT = + * LWS = [CRLF] 1*( SP | HT ) + * CRLF = CR LF + * CR = + * LF = + * SP = + * SHT = + * CTL = + * OCTET = + */ +var paramRegExp = /; *([!#$%&'\*\+\-\.0-9A-Z\^_`a-z\|~]+) *= *("(?:[ !\u0023-\u005b\u005d-\u007e\u0080-\u00ff]|\\[\u0020-\u007e])*"|[!#$%&'\*\+\-\.0-9A-Z\^_`a-z\|~]+) */g; +var textRegExp = /^[\u0020-\u007e\u0080-\u00ff]+$/ +var tokenRegExp = /^[!#$%&'\*\+\-\.0-9A-Z\^_`a-z\|~]+$/ + +/** + * RegExp to match quoted-pair in RFC 2616 + * + * quoted-pair = "\" CHAR + * CHAR = + */ +var qescRegExp = /\\([\u0000-\u007f])/g; + +/** + * RegExp to match chars that must be quoted-pair in RFC 2616 + */ +var quoteRegExp = /([\\"])/g; + +/** + * RegExp to match type in RFC 6838 + * + * type-name = restricted-name + * subtype-name = restricted-name + * restricted-name = restricted-name-first *126restricted-name-chars + * restricted-name-first = ALPHA / DIGIT + * restricted-name-chars = ALPHA / DIGIT / "!" / "#" / + * "$" / "&" / "-" / "^" / "_" + * restricted-name-chars =/ "." ; Characters before first dot always + * ; specify a facet name + * restricted-name-chars =/ "+" ; Characters after last plus always + * ; specify a structured syntax suffix + * ALPHA = %x41-5A / %x61-7A ; A-Z / a-z + * DIGIT = %x30-39 ; 0-9 + */ +var subtypeNameRegExp = /^[A-Za-z0-9][A-Za-z0-9!#$&^_.-]{0,126}$/ +var typeNameRegExp = /^[A-Za-z0-9][A-Za-z0-9!#$&^_-]{0,126}$/ +var typeRegExp = /^ *([A-Za-z0-9][A-Za-z0-9!#$&^_-]{0,126})\/([A-Za-z0-9][A-Za-z0-9!#$&^_.+-]{0,126}) *$/; + +/** + * Module exports. + */ + +exports.format = format +exports.parse = parse + +/** + * Format object to media type. + * + * @param {object} obj + * @return {string} + * @api public + */ + +function format(obj) { + if (!obj || typeof obj !== 'object') { + throw new TypeError('argument obj is required') + } + + var parameters = obj.parameters + var subtype = obj.subtype + var suffix = obj.suffix + var type = obj.type + + if (!type || !typeNameRegExp.test(type)) { + throw new TypeError('invalid type') + } + + if (!subtype || !subtypeNameRegExp.test(subtype)) { + throw new TypeError('invalid subtype') + } + + // format as type/subtype + var string = type + '/' + subtype + + // append +suffix + if (suffix) { + if (!typeNameRegExp.test(suffix)) { + throw new TypeError('invalid suffix') + } + + string += '+' + suffix + } + + // append parameters + if (parameters && typeof parameters === 'object') { + var param + var params = Object.keys(parameters).sort() + + for (var i = 0; i < params.length; i++) { + param = params[i] + + if (!tokenRegExp.test(param)) { + throw new TypeError('invalid parameter name') + } + + string += '; ' + param + '=' + qstring(parameters[param]) + } + } + + return string +} + +/** + * Parse media type to object. + * + * @param {string|object} string + * @return {Object} + * @api public + */ + +function parse(string) { + if (!string) { + throw new TypeError('argument string is required') + } + + // support req/res-like objects as argument + if (typeof string === 'object') { + string = getcontenttype(string) + } + + if (typeof string !== 'string') { + throw new TypeError('argument string is required to be a string') + } + + var index = string.indexOf(';') + var type = index !== -1 + ? string.substr(0, index) + : string + + var key + var match + var obj = splitType(type) + var params = {} + var value + + paramRegExp.lastIndex = index + + while (match = paramRegExp.exec(string)) { + if (match.index !== index) { + throw new TypeError('invalid parameter format') + } + + index += match[0].length + key = match[1].toLowerCase() + value = match[2] + + if (value[0] === '"') { + // remove quotes and escapes + value = value + .substr(1, value.length - 2) + .replace(qescRegExp, '$1') + } + + params[key] = value + } + + if (index !== -1 && index !== string.length) { + throw new TypeError('invalid parameter format') + } + + obj.parameters = params + + return obj +} + +/** + * Get content-type from req/res objects. + * + * @param {object} + * @return {Object} + * @api private + */ + +function getcontenttype(obj) { + if (typeof obj.getHeader === 'function') { + // res-like + return obj.getHeader('content-type') + } + + if (typeof obj.headers === 'object') { + // req-like + return obj.headers && obj.headers['content-type'] + } +} + +/** + * Quote a string if necessary. + * + * @param {string} val + * @return {string} + * @api private + */ + +function qstring(val) { + var str = String(val) + + // no need to quote tokens + if (tokenRegExp.test(str)) { + return str + } + + if (str.length > 0 && !textRegExp.test(str)) { + throw new TypeError('invalid parameter value') + } + + return '"' + str.replace(quoteRegExp, '\\$1') + '"' +} + +/** + * Simply "type/subtype+siffx" into parts. + * + * @param {string} string + * @return {Object} + * @api private + */ + +function splitType(string) { + var match = typeRegExp.exec(string.toLowerCase()) + + if (!match) { + throw new TypeError('invalid media type') + } + + var type = match[1] + var subtype = match[2] + var suffix + + // suffix after last + + var index = subtype.lastIndexOf('+') + if (index !== -1) { + suffix = subtype.substr(index + 1) + subtype = subtype.substr(0, index) + } + + var obj = { + type: type, + subtype: subtype, + suffix: suffix + } + + return obj +} diff --git a/node_modules/media-typer/package.json b/node_modules/media-typer/package.json new file mode 100644 index 000000000..8cf3ebcd7 --- /dev/null +++ b/node_modules/media-typer/package.json @@ -0,0 +1,26 @@ +{ + "name": "media-typer", + "description": "Simple RFC 6838 media type parser and formatter", + "version": "0.3.0", + "author": "Douglas Christopher Wilson ", + "license": "MIT", + "repository": "jshttp/media-typer", + "devDependencies": { + "istanbul": "0.3.2", + "mocha": "~1.21.4", + "should": "~4.0.4" + }, + "files": [ + "LICENSE", + "HISTORY.md", + "index.js" + ], + "engines": { + "node": ">= 0.6" + }, + "scripts": { + "test": "mocha --reporter spec --check-leaks --bail test/", + "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/", + "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/" + } +} diff --git a/node_modules/memory-pager/.travis.yml b/node_modules/memory-pager/.travis.yml new file mode 100644 index 000000000..1c4ab31e9 --- /dev/null +++ b/node_modules/memory-pager/.travis.yml @@ -0,0 +1,4 @@ +language: node_js +node_js: + - '4' + - '6' diff --git a/node_modules/memory-pager/LICENSE b/node_modules/memory-pager/LICENSE new file mode 100644 index 000000000..56fce0895 --- /dev/null +++ b/node_modules/memory-pager/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2017 Mathias Buus + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/node_modules/memory-pager/README.md b/node_modules/memory-pager/README.md new file mode 100644 index 000000000..aed176140 --- /dev/null +++ b/node_modules/memory-pager/README.md @@ -0,0 +1,65 @@ +# memory-pager + +Access memory using small fixed sized buffers instead of allocating a huge buffer. +Useful if you are implementing sparse data structures (such as large bitfield). + +![travis](https://travis-ci.org/mafintosh/memory-pager.svg?branch=master) + +``` +npm install memory-pager +``` + +## Usage + +``` js +var pager = require('paged-memory') + +var pages = pager(1024) // use 1kb per page + +var page = pages.get(10) // get page #10 + +console.log(page.offset) // 10240 +console.log(page.buffer) // a blank 1kb buffer +``` + +## API + +#### `var pages = pager(pageSize)` + +Create a new pager. `pageSize` defaults to `1024`. + +#### `var page = pages.get(pageNumber, [noAllocate])` + +Get a page. The page will be allocated at first access. + +Optionally you can set the `noAllocate` flag which will make the +method return undefined if no page has been allocated already + +A page looks like this + +``` js +{ + offset: byteOffset, + buffer: bufferWithPageSize +} +``` + +#### `pages.set(pageNumber, buffer)` + +Explicitly set the buffer for a page. + +#### `pages.updated(page)` + +Mark a page as updated. + +#### `pages.lastUpdate()` + +Get the last page that was updated. + +#### `var buf = pages.toBuffer()` + +Concat all pages allocated pages into a single buffer + +## License + +MIT diff --git a/node_modules/memory-pager/index.js b/node_modules/memory-pager/index.js new file mode 100644 index 000000000..687f346f3 --- /dev/null +++ b/node_modules/memory-pager/index.js @@ -0,0 +1,160 @@ +module.exports = Pager + +function Pager (pageSize, opts) { + if (!(this instanceof Pager)) return new Pager(pageSize, opts) + + this.length = 0 + this.updates = [] + this.path = new Uint16Array(4) + this.pages = new Array(32768) + this.maxPages = this.pages.length + this.level = 0 + this.pageSize = pageSize || 1024 + this.deduplicate = opts ? opts.deduplicate : null + this.zeros = this.deduplicate ? alloc(this.deduplicate.length) : null +} + +Pager.prototype.updated = function (page) { + while (this.deduplicate && page.buffer[page.deduplicate] === this.deduplicate[page.deduplicate]) { + page.deduplicate++ + if (page.deduplicate === this.deduplicate.length) { + page.deduplicate = 0 + if (page.buffer.equals && page.buffer.equals(this.deduplicate)) page.buffer = this.deduplicate + break + } + } + if (page.updated || !this.updates) return + page.updated = true + this.updates.push(page) +} + +Pager.prototype.lastUpdate = function () { + if (!this.updates || !this.updates.length) return null + var page = this.updates.pop() + page.updated = false + return page +} + +Pager.prototype._array = function (i, noAllocate) { + if (i >= this.maxPages) { + if (noAllocate) return + grow(this, i) + } + + factor(i, this.path) + + var arr = this.pages + + for (var j = this.level; j > 0; j--) { + var p = this.path[j] + var next = arr[p] + + if (!next) { + if (noAllocate) return + next = arr[p] = new Array(32768) + } + + arr = next + } + + return arr +} + +Pager.prototype.get = function (i, noAllocate) { + var arr = this._array(i, noAllocate) + var first = this.path[0] + var page = arr && arr[first] + + if (!page && !noAllocate) { + page = arr[first] = new Page(i, alloc(this.pageSize)) + if (i >= this.length) this.length = i + 1 + } + + if (page && page.buffer === this.deduplicate && this.deduplicate && !noAllocate) { + page.buffer = copy(page.buffer) + page.deduplicate = 0 + } + + return page +} + +Pager.prototype.set = function (i, buf) { + var arr = this._array(i, false) + var first = this.path[0] + + if (i >= this.length) this.length = i + 1 + + if (!buf || (this.zeros && buf.equals && buf.equals(this.zeros))) { + arr[first] = undefined + return + } + + if (this.deduplicate && buf.equals && buf.equals(this.deduplicate)) { + buf = this.deduplicate + } + + var page = arr[first] + var b = truncate(buf, this.pageSize) + + if (page) page.buffer = b + else arr[first] = new Page(i, b) +} + +Pager.prototype.toBuffer = function () { + var list = new Array(this.length) + var empty = alloc(this.pageSize) + var ptr = 0 + + while (ptr < list.length) { + var arr = this._array(ptr, true) + for (var i = 0; i < 32768 && ptr < list.length; i++) { + list[ptr++] = (arr && arr[i]) ? arr[i].buffer : empty + } + } + + return Buffer.concat(list) +} + +function grow (pager, index) { + while (pager.maxPages < index) { + var old = pager.pages + pager.pages = new Array(32768) + pager.pages[0] = old + pager.level++ + pager.maxPages *= 32768 + } +} + +function truncate (buf, len) { + if (buf.length === len) return buf + if (buf.length > len) return buf.slice(0, len) + var cpy = alloc(len) + buf.copy(cpy) + return cpy +} + +function alloc (size) { + if (Buffer.alloc) return Buffer.alloc(size) + var buf = new Buffer(size) + buf.fill(0) + return buf +} + +function copy (buf) { + var cpy = Buffer.allocUnsafe ? Buffer.allocUnsafe(buf.length) : new Buffer(buf.length) + buf.copy(cpy) + return cpy +} + +function Page (i, buf) { + this.offset = i * buf.length + this.buffer = buf + this.updated = false + this.deduplicate = 0 +} + +function factor (n, out) { + n = (n - (out[0] = (n & 32767))) / 32768 + n = (n - (out[1] = (n & 32767))) / 32768 + out[3] = ((n - (out[2] = (n & 32767))) / 32768) & 32767 +} diff --git a/node_modules/memory-pager/package.json b/node_modules/memory-pager/package.json new file mode 100644 index 000000000..f4847e8cd --- /dev/null +++ b/node_modules/memory-pager/package.json @@ -0,0 +1,24 @@ +{ + "name": "memory-pager", + "version": "1.5.0", + "description": "Access memory using small fixed sized buffers", + "main": "index.js", + "dependencies": {}, + "devDependencies": { + "standard": "^9.0.0", + "tape": "^4.6.3" + }, + "scripts": { + "test": "standard && tape test.js" + }, + "repository": { + "type": "git", + "url": "https://github.com/mafintosh/memory-pager.git" + }, + "author": "Mathias Buus (@mafintosh)", + "license": "MIT", + "bugs": { + "url": "https://github.com/mafintosh/memory-pager/issues" + }, + "homepage": "https://github.com/mafintosh/memory-pager" +} diff --git a/node_modules/memory-pager/test.js b/node_modules/memory-pager/test.js new file mode 100644 index 000000000..163821003 --- /dev/null +++ b/node_modules/memory-pager/test.js @@ -0,0 +1,80 @@ +var tape = require('tape') +var pager = require('./') + +tape('get page', function (t) { + var pages = pager(1024) + + var page = pages.get(0) + + t.same(page.offset, 0) + t.same(page.buffer, Buffer.alloc(1024)) + t.end() +}) + +tape('get page twice', function (t) { + var pages = pager(1024) + t.same(pages.length, 0) + + var page = pages.get(0) + + t.same(page.offset, 0) + t.same(page.buffer, Buffer.alloc(1024)) + t.same(pages.length, 1) + + var other = pages.get(0) + + t.same(other, page) + t.end() +}) + +tape('get no mutable page', function (t) { + var pages = pager(1024) + + t.ok(!pages.get(141, true)) + t.ok(pages.get(141)) + t.ok(pages.get(141, true)) + + t.end() +}) + +tape('get far out page', function (t) { + var pages = pager(1024) + + var page = pages.get(1000000) + + t.same(page.offset, 1000000 * 1024) + t.same(page.buffer, Buffer.alloc(1024)) + t.same(pages.length, 1000000 + 1) + + var other = pages.get(1) + + t.same(other.offset, 1024) + t.same(other.buffer, Buffer.alloc(1024)) + t.same(pages.length, 1000000 + 1) + t.ok(other !== page) + + t.end() +}) + +tape('updates', function (t) { + var pages = pager(1024) + + t.same(pages.lastUpdate(), null) + + var page = pages.get(10) + + page.buffer[42] = 1 + pages.updated(page) + + t.same(pages.lastUpdate(), page) + t.same(pages.lastUpdate(), null) + + page.buffer[42] = 2 + pages.updated(page) + pages.updated(page) + + t.same(pages.lastUpdate(), page) + t.same(pages.lastUpdate(), null) + + t.end() +}) diff --git a/node_modules/merge-descriptors/HISTORY.md b/node_modules/merge-descriptors/HISTORY.md new file mode 100644 index 000000000..486771f08 --- /dev/null +++ b/node_modules/merge-descriptors/HISTORY.md @@ -0,0 +1,21 @@ +1.0.1 / 2016-01-17 +================== + + * perf: enable strict mode + +1.0.0 / 2015-03-01 +================== + + * Add option to only add new descriptors + * Add simple argument validation + * Add jsdoc to source file + +0.0.2 / 2013-12-14 +================== + + * Move repository to `component` organization + +0.0.1 / 2013-10-29 +================== + + * Initial release diff --git a/node_modules/merge-descriptors/LICENSE b/node_modules/merge-descriptors/LICENSE new file mode 100644 index 000000000..274bfd82b --- /dev/null +++ b/node_modules/merge-descriptors/LICENSE @@ -0,0 +1,23 @@ +(The MIT License) + +Copyright (c) 2013 Jonathan Ong +Copyright (c) 2015 Douglas Christopher Wilson + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +'Software'), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/node_modules/merge-descriptors/README.md b/node_modules/merge-descriptors/README.md new file mode 100644 index 000000000..d593c0ebd --- /dev/null +++ b/node_modules/merge-descriptors/README.md @@ -0,0 +1,48 @@ +# Merge Descriptors + +[![NPM Version][npm-image]][npm-url] +[![NPM Downloads][downloads-image]][downloads-url] +[![Build Status][travis-image]][travis-url] +[![Test Coverage][coveralls-image]][coveralls-url] + +Merge objects using descriptors. + +```js +var thing = { + get name() { + return 'jon' + } +} + +var animal = { + +} + +merge(animal, thing) + +animal.name === 'jon' +``` + +## API + +### merge(destination, source) + +Redefines `destination`'s descriptors with `source`'s. + +### merge(destination, source, false) + +Defines `source`'s descriptors on `destination` if `destination` does not have +a descriptor by the same name. + +## License + +[MIT](LICENSE) + +[npm-image]: https://img.shields.io/npm/v/merge-descriptors.svg +[npm-url]: https://npmjs.org/package/merge-descriptors +[travis-image]: https://img.shields.io/travis/component/merge-descriptors/master.svg +[travis-url]: https://travis-ci.org/component/merge-descriptors +[coveralls-image]: https://img.shields.io/coveralls/component/merge-descriptors/master.svg +[coveralls-url]: https://coveralls.io/r/component/merge-descriptors?branch=master +[downloads-image]: https://img.shields.io/npm/dm/merge-descriptors.svg +[downloads-url]: https://npmjs.org/package/merge-descriptors diff --git a/node_modules/merge-descriptors/index.js b/node_modules/merge-descriptors/index.js new file mode 100644 index 000000000..573b132eb --- /dev/null +++ b/node_modules/merge-descriptors/index.js @@ -0,0 +1,60 @@ +/*! + * merge-descriptors + * Copyright(c) 2014 Jonathan Ong + * Copyright(c) 2015 Douglas Christopher Wilson + * MIT Licensed + */ + +'use strict' + +/** + * Module exports. + * @public + */ + +module.exports = merge + +/** + * Module variables. + * @private + */ + +var hasOwnProperty = Object.prototype.hasOwnProperty + +/** + * Merge the property descriptors of `src` into `dest` + * + * @param {object} dest Object to add descriptors to + * @param {object} src Object to clone descriptors from + * @param {boolean} [redefine=true] Redefine `dest` properties with `src` properties + * @returns {object} Reference to dest + * @public + */ + +function merge(dest, src, redefine) { + if (!dest) { + throw new TypeError('argument dest is required') + } + + if (!src) { + throw new TypeError('argument src is required') + } + + if (redefine === undefined) { + // Default to true + redefine = true + } + + Object.getOwnPropertyNames(src).forEach(function forEachOwnPropertyName(name) { + if (!redefine && hasOwnProperty.call(dest, name)) { + // Skip desriptor + return + } + + // Copy descriptor + var descriptor = Object.getOwnPropertyDescriptor(src, name) + Object.defineProperty(dest, name, descriptor) + }) + + return dest +} diff --git a/node_modules/merge-descriptors/package.json b/node_modules/merge-descriptors/package.json new file mode 100644 index 000000000..514cdbd81 --- /dev/null +++ b/node_modules/merge-descriptors/package.json @@ -0,0 +1,32 @@ +{ + "name": "merge-descriptors", + "description": "Merge objects using descriptors", + "version": "1.0.1", + "author": { + "name": "Jonathan Ong", + "email": "me@jongleberry.com", + "url": "http://jongleberry.com", + "twitter": "https://twitter.com/jongleberry" + }, + "contributors": [ + "Douglas Christopher Wilson ", + "Mike Grabowski " + ], + "license": "MIT", + "repository": "component/merge-descriptors", + "devDependencies": { + "istanbul": "0.4.1", + "mocha": "1.21.5" + }, + "files": [ + "HISTORY.md", + "LICENSE", + "README.md", + "index.js" + ], + "scripts": { + "test": "mocha --reporter spec --bail --check-leaks test/", + "test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/", + "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/" + } +} diff --git a/node_modules/methods/HISTORY.md b/node_modules/methods/HISTORY.md new file mode 100644 index 000000000..c0ecf072d --- /dev/null +++ b/node_modules/methods/HISTORY.md @@ -0,0 +1,29 @@ +1.1.2 / 2016-01-17 +================== + + * perf: enable strict mode + +1.1.1 / 2014-12-30 +================== + + * Improve `browserify` support + +1.1.0 / 2014-07-05 +================== + + * Add `CONNECT` method + +1.0.1 / 2014-06-02 +================== + + * Fix module to work with harmony transform + +1.0.0 / 2014-05-08 +================== + + * Add `PURGE` method + +0.1.0 / 2013-10-28 +================== + + * Add `http.METHODS` support diff --git a/node_modules/methods/LICENSE b/node_modules/methods/LICENSE new file mode 100644 index 000000000..220dc1a24 --- /dev/null +++ b/node_modules/methods/LICENSE @@ -0,0 +1,24 @@ +(The MIT License) + +Copyright (c) 2013-2014 TJ Holowaychuk +Copyright (c) 2015-2016 Douglas Christopher Wilson + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +'Software'), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + diff --git a/node_modules/methods/README.md b/node_modules/methods/README.md new file mode 100644 index 000000000..672a32bfe --- /dev/null +++ b/node_modules/methods/README.md @@ -0,0 +1,51 @@ +# Methods + +[![NPM Version][npm-image]][npm-url] +[![NPM Downloads][downloads-image]][downloads-url] +[![Node.js Version][node-version-image]][node-version-url] +[![Build Status][travis-image]][travis-url] +[![Test Coverage][coveralls-image]][coveralls-url] + +HTTP verbs that Node.js core's HTTP parser supports. + +This module provides an export that is just like `http.METHODS` from Node.js core, +with the following differences: + + * All method names are lower-cased. + * Contains a fallback list of methods for Node.js versions that do not have a + `http.METHODS` export (0.10 and lower). + * Provides the fallback list when using tools like `browserify` without pulling + in the `http` shim module. + +## Install + +```bash +$ npm install methods +``` + +## API + +```js +var methods = require('methods') +``` + +### methods + +This is an array of lower-cased method names that Node.js supports. If Node.js +provides the `http.METHODS` export, then this is the same array lower-cased, +otherwise it is a snapshot of the verbs from Node.js 0.10. + +## License + +[MIT](LICENSE) + +[npm-image]: https://img.shields.io/npm/v/methods.svg?style=flat +[npm-url]: https://npmjs.org/package/methods +[node-version-image]: https://img.shields.io/node/v/methods.svg?style=flat +[node-version-url]: https://nodejs.org/en/download/ +[travis-image]: https://img.shields.io/travis/jshttp/methods.svg?style=flat +[travis-url]: https://travis-ci.org/jshttp/methods +[coveralls-image]: https://img.shields.io/coveralls/jshttp/methods.svg?style=flat +[coveralls-url]: https://coveralls.io/r/jshttp/methods?branch=master +[downloads-image]: https://img.shields.io/npm/dm/methods.svg?style=flat +[downloads-url]: https://npmjs.org/package/methods diff --git a/node_modules/methods/index.js b/node_modules/methods/index.js new file mode 100644 index 000000000..667a50bde --- /dev/null +++ b/node_modules/methods/index.js @@ -0,0 +1,69 @@ +/*! + * methods + * Copyright(c) 2013-2014 TJ Holowaychuk + * Copyright(c) 2015-2016 Douglas Christopher Wilson + * MIT Licensed + */ + +'use strict'; + +/** + * Module dependencies. + * @private + */ + +var http = require('http'); + +/** + * Module exports. + * @public + */ + +module.exports = getCurrentNodeMethods() || getBasicNodeMethods(); + +/** + * Get the current Node.js methods. + * @private + */ + +function getCurrentNodeMethods() { + return http.METHODS && http.METHODS.map(function lowerCaseMethod(method) { + return method.toLowerCase(); + }); +} + +/** + * Get the "basic" Node.js methods, a snapshot from Node.js 0.10. + * @private + */ + +function getBasicNodeMethods() { + return [ + 'get', + 'post', + 'put', + 'head', + 'delete', + 'options', + 'trace', + 'copy', + 'lock', + 'mkcol', + 'move', + 'purge', + 'propfind', + 'proppatch', + 'unlock', + 'report', + 'mkactivity', + 'checkout', + 'merge', + 'm-search', + 'notify', + 'subscribe', + 'unsubscribe', + 'patch', + 'search', + 'connect' + ]; +} diff --git a/node_modules/methods/package.json b/node_modules/methods/package.json new file mode 100644 index 000000000..c4ce6f053 --- /dev/null +++ b/node_modules/methods/package.json @@ -0,0 +1,36 @@ +{ + "name": "methods", + "description": "HTTP methods that node supports", + "version": "1.1.2", + "contributors": [ + "Douglas Christopher Wilson ", + "Jonathan Ong (http://jongleberry.com)", + "TJ Holowaychuk (http://tjholowaychuk.com)" + ], + "license": "MIT", + "repository": "jshttp/methods", + "devDependencies": { + "istanbul": "0.4.1", + "mocha": "1.21.5" + }, + "files": [ + "index.js", + "HISTORY.md", + "LICENSE" + ], + "engines": { + "node": ">= 0.6" + }, + "scripts": { + "test": "mocha --reporter spec --bail --check-leaks test/", + "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/", + "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/" + }, + "browser": { + "http": false + }, + "keywords": [ + "http", + "methods" + ] +} diff --git a/node_modules/mime-db/HISTORY.md b/node_modules/mime-db/HISTORY.md new file mode 100644 index 000000000..7436f6414 --- /dev/null +++ b/node_modules/mime-db/HISTORY.md @@ -0,0 +1,507 @@ +1.52.0 / 2022-02-21 +=================== + + * Add extensions from IANA for more `image/*` types + * Add extension `.asc` to `application/pgp-keys` + * Add extensions to various XML types + * Add new upstream MIME types + +1.51.0 / 2021-11-08 +=================== + + * Add new upstream MIME types + * Mark `image/vnd.microsoft.icon` as compressible + * Mark `image/vnd.ms-dds` as compressible + +1.50.0 / 2021-09-15 +=================== + + * Add deprecated iWorks mime types and extensions + * Add new upstream MIME types + +1.49.0 / 2021-07-26 +=================== + + * Add extension `.trig` to `application/trig` + * Add new upstream MIME types + +1.48.0 / 2021-05-30 +=================== + + * Add extension `.mvt` to `application/vnd.mapbox-vector-tile` + * Add new upstream MIME types + * Mark `text/yaml` as compressible + +1.47.0 / 2021-04-01 +=================== + + * Add new upstream MIME types + * Remove ambigious extensions from IANA for `application/*+xml` types + * Update primary extension to `.es` for `application/ecmascript` + +1.46.0 / 2021-02-13 +=================== + + * Add extension `.amr` to `audio/amr` + * Add extension `.m4s` to `video/iso.segment` + * Add extension `.opus` to `audio/ogg` + * Add new upstream MIME types + +1.45.0 / 2020-09-22 +=================== + + * Add `application/ubjson` with extension `.ubj` + * Add `image/avif` with extension `.avif` + * Add `image/ktx2` with extension `.ktx2` + * Add extension `.dbf` to `application/vnd.dbf` + * Add extension `.rar` to `application/vnd.rar` + * Add extension `.td` to `application/urc-targetdesc+xml` + * Add new upstream MIME types + * Fix extension of `application/vnd.apple.keynote` to be `.key` + +1.44.0 / 2020-04-22 +=================== + + * Add charsets from IANA + * Add extension `.cjs` to `application/node` + * Add new upstream MIME types + +1.43.0 / 2020-01-05 +=================== + + * Add `application/x-keepass2` with extension `.kdbx` + * Add extension `.mxmf` to `audio/mobile-xmf` + * Add extensions from IANA for `application/*+xml` types + * Add new upstream MIME types + +1.42.0 / 2019-09-25 +=================== + + * Add `image/vnd.ms-dds` with extension `.dds` + * Add new upstream MIME types + * Remove compressible from `multipart/mixed` + +1.41.0 / 2019-08-30 +=================== + + * Add new upstream MIME types + * Add `application/toml` with extension `.toml` + * Mark `font/ttf` as compressible + +1.40.0 / 2019-04-20 +=================== + + * Add extensions from IANA for `model/*` types + * Add `text/mdx` with extension `.mdx` + +1.39.0 / 2019-04-04 +=================== + + * Add extensions `.siv` and `.sieve` to `application/sieve` + * Add new upstream MIME types + +1.38.0 / 2019-02-04 +=================== + + * Add extension `.nq` to `application/n-quads` + * Add extension `.nt` to `application/n-triples` + * Add new upstream MIME types + * Mark `text/less` as compressible + +1.37.0 / 2018-10-19 +=================== + + * Add extensions to HEIC image types + * Add new upstream MIME types + +1.36.0 / 2018-08-20 +=================== + + * Add Apple file extensions from IANA + * Add extensions from IANA for `image/*` types + * Add new upstream MIME types + +1.35.0 / 2018-07-15 +=================== + + * Add extension `.owl` to `application/rdf+xml` + * Add new upstream MIME types + - Removes extension `.woff` from `application/font-woff` + +1.34.0 / 2018-06-03 +=================== + + * Add extension `.csl` to `application/vnd.citationstyles.style+xml` + * Add extension `.es` to `application/ecmascript` + * Add new upstream MIME types + * Add `UTF-8` as default charset for `text/turtle` + * Mark all XML-derived types as compressible + +1.33.0 / 2018-02-15 +=================== + + * Add extensions from IANA for `message/*` types + * Add new upstream MIME types + * Fix some incorrect OOXML types + * Remove `application/font-woff2` + +1.32.0 / 2017-11-29 +=================== + + * Add new upstream MIME types + * Update `text/hjson` to registered `application/hjson` + * Add `text/shex` with extension `.shex` + +1.31.0 / 2017-10-25 +=================== + + * Add `application/raml+yaml` with extension `.raml` + * Add `application/wasm` with extension `.wasm` + * Add new `font` type from IANA + * Add new upstream font extensions + * Add new upstream MIME types + * Add extensions for JPEG-2000 images + +1.30.0 / 2017-08-27 +=================== + + * Add `application/vnd.ms-outlook` + * Add `application/x-arj` + * Add extension `.mjs` to `application/javascript` + * Add glTF types and extensions + * Add new upstream MIME types + * Add `text/x-org` + * Add VirtualBox MIME types + * Fix `source` records for `video/*` types that are IANA + * Update `font/opentype` to registered `font/otf` + +1.29.0 / 2017-07-10 +=================== + + * Add `application/fido.trusted-apps+json` + * Add extension `.wadl` to `application/vnd.sun.wadl+xml` + * Add new upstream MIME types + * Add `UTF-8` as default charset for `text/css` + +1.28.0 / 2017-05-14 +=================== + + * Add new upstream MIME types + * Add extension `.gz` to `application/gzip` + * Update extensions `.md` and `.markdown` to be `text/markdown` + +1.27.0 / 2017-03-16 +=================== + + * Add new upstream MIME types + * Add `image/apng` with extension `.apng` + +1.26.0 / 2017-01-14 +=================== + + * Add new upstream MIME types + * Add extension `.geojson` to `application/geo+json` + +1.25.0 / 2016-11-11 +=================== + + * Add new upstream MIME types + +1.24.0 / 2016-09-18 +=================== + + * Add `audio/mp3` + * Add new upstream MIME types + +1.23.0 / 2016-05-01 +=================== + + * Add new upstream MIME types + * Add extension `.3gpp` to `audio/3gpp` + +1.22.0 / 2016-02-15 +=================== + + * Add `text/slim` + * Add extension `.rng` to `application/xml` + * Add new upstream MIME types + * Fix extension of `application/dash+xml` to be `.mpd` + * Update primary extension to `.m4a` for `audio/mp4` + +1.21.0 / 2016-01-06 +=================== + + * Add Google document types + * Add new upstream MIME types + +1.20.0 / 2015-11-10 +=================== + + * Add `text/x-suse-ymp` + * Add new upstream MIME types + +1.19.0 / 2015-09-17 +=================== + + * Add `application/vnd.apple.pkpass` + * Add new upstream MIME types + +1.18.0 / 2015-09-03 +=================== + + * Add new upstream MIME types + +1.17.0 / 2015-08-13 +=================== + + * Add `application/x-msdos-program` + * Add `audio/g711-0` + * Add `image/vnd.mozilla.apng` + * Add extension `.exe` to `application/x-msdos-program` + +1.16.0 / 2015-07-29 +=================== + + * Add `application/vnd.uri-map` + +1.15.0 / 2015-07-13 +=================== + + * Add `application/x-httpd-php` + +1.14.0 / 2015-06-25 +=================== + + * Add `application/scim+json` + * Add `application/vnd.3gpp.ussd+xml` + * Add `application/vnd.biopax.rdf+xml` + * Add `text/x-processing` + +1.13.0 / 2015-06-07 +=================== + + * Add nginx as a source + * Add `application/x-cocoa` + * Add `application/x-java-archive-diff` + * Add `application/x-makeself` + * Add `application/x-perl` + * Add `application/x-pilot` + * Add `application/x-redhat-package-manager` + * Add `application/x-sea` + * Add `audio/x-m4a` + * Add `audio/x-realaudio` + * Add `image/x-jng` + * Add `text/mathml` + +1.12.0 / 2015-06-05 +=================== + + * Add `application/bdoc` + * Add `application/vnd.hyperdrive+json` + * Add `application/x-bdoc` + * Add extension `.rtf` to `text/rtf` + +1.11.0 / 2015-05-31 +=================== + + * Add `audio/wav` + * Add `audio/wave` + * Add extension `.litcoffee` to `text/coffeescript` + * Add extension `.sfd-hdstx` to `application/vnd.hydrostatix.sof-data` + * Add extension `.n-gage` to `application/vnd.nokia.n-gage.symbian.install` + +1.10.0 / 2015-05-19 +=================== + + * Add `application/vnd.balsamiq.bmpr` + * Add `application/vnd.microsoft.portable-executable` + * Add `application/x-ns-proxy-autoconfig` + +1.9.1 / 2015-04-19 +================== + + * Remove `.json` extension from `application/manifest+json` + - This is causing bugs downstream + +1.9.0 / 2015-04-19 +================== + + * Add `application/manifest+json` + * Add `application/vnd.micro+json` + * Add `image/vnd.zbrush.pcx` + * Add `image/x-ms-bmp` + +1.8.0 / 2015-03-13 +================== + + * Add `application/vnd.citationstyles.style+xml` + * Add `application/vnd.fastcopy-disk-image` + * Add `application/vnd.gov.sk.xmldatacontainer+xml` + * Add extension `.jsonld` to `application/ld+json` + +1.7.0 / 2015-02-08 +================== + + * Add `application/vnd.gerber` + * Add `application/vnd.msa-disk-image` + +1.6.1 / 2015-02-05 +================== + + * Community extensions ownership transferred from `node-mime` + +1.6.0 / 2015-01-29 +================== + + * Add `application/jose` + * Add `application/jose+json` + * Add `application/json-seq` + * Add `application/jwk+json` + * Add `application/jwk-set+json` + * Add `application/jwt` + * Add `application/rdap+json` + * Add `application/vnd.gov.sk.e-form+xml` + * Add `application/vnd.ims.imsccv1p3` + +1.5.0 / 2014-12-30 +================== + + * Add `application/vnd.oracle.resource+json` + * Fix various invalid MIME type entries + - `application/mbox+xml` + - `application/oscp-response` + - `application/vwg-multiplexed` + - `audio/g721` + +1.4.0 / 2014-12-21 +================== + + * Add `application/vnd.ims.imsccv1p2` + * Fix various invalid MIME type entries + - `application/vnd-acucobol` + - `application/vnd-curl` + - `application/vnd-dart` + - `application/vnd-dxr` + - `application/vnd-fdf` + - `application/vnd-mif` + - `application/vnd-sema` + - `application/vnd-wap-wmlc` + - `application/vnd.adobe.flash-movie` + - `application/vnd.dece-zip` + - `application/vnd.dvb_service` + - `application/vnd.micrografx-igx` + - `application/vnd.sealed-doc` + - `application/vnd.sealed-eml` + - `application/vnd.sealed-mht` + - `application/vnd.sealed-ppt` + - `application/vnd.sealed-tiff` + - `application/vnd.sealed-xls` + - `application/vnd.sealedmedia.softseal-html` + - `application/vnd.sealedmedia.softseal-pdf` + - `application/vnd.wap-slc` + - `application/vnd.wap-wbxml` + - `audio/vnd.sealedmedia.softseal-mpeg` + - `image/vnd-djvu` + - `image/vnd-svf` + - `image/vnd-wap-wbmp` + - `image/vnd.sealed-png` + - `image/vnd.sealedmedia.softseal-gif` + - `image/vnd.sealedmedia.softseal-jpg` + - `model/vnd-dwf` + - `model/vnd.parasolid.transmit-binary` + - `model/vnd.parasolid.transmit-text` + - `text/vnd-a` + - `text/vnd-curl` + - `text/vnd.wap-wml` + * Remove example template MIME types + - `application/example` + - `audio/example` + - `image/example` + - `message/example` + - `model/example` + - `multipart/example` + - `text/example` + - `video/example` + +1.3.1 / 2014-12-16 +================== + + * Fix missing extensions + - `application/json5` + - `text/hjson` + +1.3.0 / 2014-12-07 +================== + + * Add `application/a2l` + * Add `application/aml` + * Add `application/atfx` + * Add `application/atxml` + * Add `application/cdfx+xml` + * Add `application/dii` + * Add `application/json5` + * Add `application/lxf` + * Add `application/mf4` + * Add `application/vnd.apache.thrift.compact` + * Add `application/vnd.apache.thrift.json` + * Add `application/vnd.coffeescript` + * Add `application/vnd.enphase.envoy` + * Add `application/vnd.ims.imsccv1p1` + * Add `text/csv-schema` + * Add `text/hjson` + * Add `text/markdown` + * Add `text/yaml` + +1.2.0 / 2014-11-09 +================== + + * Add `application/cea` + * Add `application/dit` + * Add `application/vnd.gov.sk.e-form+zip` + * Add `application/vnd.tmd.mediaflex.api+xml` + * Type `application/epub+zip` is now IANA-registered + +1.1.2 / 2014-10-23 +================== + + * Rebuild database for `application/x-www-form-urlencoded` change + +1.1.1 / 2014-10-20 +================== + + * Mark `application/x-www-form-urlencoded` as compressible. + +1.1.0 / 2014-09-28 +================== + + * Add `application/font-woff2` + +1.0.3 / 2014-09-25 +================== + + * Fix engine requirement in package + +1.0.2 / 2014-09-25 +================== + + * Add `application/coap-group+json` + * Add `application/dcd` + * Add `application/vnd.apache.thrift.binary` + * Add `image/vnd.tencent.tap` + * Mark all JSON-derived types as compressible + * Update `text/vtt` data + +1.0.1 / 2014-08-30 +================== + + * Fix extension ordering + +1.0.0 / 2014-08-30 +================== + + * Add `application/atf` + * Add `application/merge-patch+json` + * Add `multipart/x-mixed-replace` + * Add `source: 'apache'` metadata + * Add `source: 'iana'` metadata + * Remove badly-assumed charset data diff --git a/node_modules/mime-db/LICENSE b/node_modules/mime-db/LICENSE new file mode 100644 index 000000000..0751cb10e --- /dev/null +++ b/node_modules/mime-db/LICENSE @@ -0,0 +1,23 @@ +(The MIT License) + +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2015-2022 Douglas Christopher Wilson + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +'Software'), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/node_modules/mime-db/README.md b/node_modules/mime-db/README.md new file mode 100644 index 000000000..5a8fcfe4d --- /dev/null +++ b/node_modules/mime-db/README.md @@ -0,0 +1,100 @@ +# mime-db + +[![NPM Version][npm-version-image]][npm-url] +[![NPM Downloads][npm-downloads-image]][npm-url] +[![Node.js Version][node-image]][node-url] +[![Build Status][ci-image]][ci-url] +[![Coverage Status][coveralls-image]][coveralls-url] + +This is a large database of mime types and information about them. +It consists of a single, public JSON file and does not include any logic, +allowing it to remain as un-opinionated as possible with an API. +It aggregates data from the following sources: + +- http://www.iana.org/assignments/media-types/media-types.xhtml +- http://svn.apache.org/repos/asf/httpd/httpd/trunk/docs/conf/mime.types +- http://hg.nginx.org/nginx/raw-file/default/conf/mime.types + +## Installation + +```bash +npm install mime-db +``` + +### Database Download + +If you're crazy enough to use this in the browser, you can just grab the +JSON file using [jsDelivr](https://www.jsdelivr.com/). It is recommended to +replace `master` with [a release tag](https://github.com/jshttp/mime-db/tags) +as the JSON format may change in the future. + +``` +https://cdn.jsdelivr.net/gh/jshttp/mime-db@master/db.json +``` + +## Usage + +```js +var db = require('mime-db') + +// grab data on .js files +var data = db['application/javascript'] +``` + +## Data Structure + +The JSON file is a map lookup for lowercased mime types. +Each mime type has the following properties: + +- `.source` - where the mime type is defined. + If not set, it's probably a custom media type. + - `apache` - [Apache common media types](http://svn.apache.org/repos/asf/httpd/httpd/trunk/docs/conf/mime.types) + - `iana` - [IANA-defined media types](http://www.iana.org/assignments/media-types/media-types.xhtml) + - `nginx` - [nginx media types](http://hg.nginx.org/nginx/raw-file/default/conf/mime.types) +- `.extensions[]` - known extensions associated with this mime type. +- `.compressible` - whether a file of this type can be gzipped. +- `.charset` - the default charset associated with this type, if any. + +If unknown, every property could be `undefined`. + +## Contributing + +To edit the database, only make PRs against `src/custom-types.json` or +`src/custom-suffix.json`. + +The `src/custom-types.json` file is a JSON object with the MIME type as the +keys and the values being an object with the following keys: + +- `compressible` - leave out if you don't know, otherwise `true`/`false` to + indicate whether the data represented by the type is typically compressible. +- `extensions` - include an array of file extensions that are associated with + the type. +- `notes` - human-readable notes about the type, typically what the type is. +- `sources` - include an array of URLs of where the MIME type and the associated + extensions are sourced from. This needs to be a [primary source](https://en.wikipedia.org/wiki/Primary_source); + links to type aggregating sites and Wikipedia are _not acceptable_. + +To update the build, run `npm run build`. + +### Adding Custom Media Types + +The best way to get new media types included in this library is to register +them with the IANA. The community registration procedure is outlined in +[RFC 6838 section 5](http://tools.ietf.org/html/rfc6838#section-5). Types +registered with the IANA are automatically pulled into this library. + +If that is not possible / feasible, they can be added directly here as a +"custom" type. To do this, it is required to have a primary source that +definitively lists the media type. If an extension is going to be listed as +associateed with this media type, the source must definitively link the +media type and extension as well. + +[ci-image]: https://badgen.net/github/checks/jshttp/mime-db/master?label=ci +[ci-url]: https://github.com/jshttp/mime-db/actions?query=workflow%3Aci +[coveralls-image]: https://badgen.net/coveralls/c/github/jshttp/mime-db/master +[coveralls-url]: https://coveralls.io/r/jshttp/mime-db?branch=master +[node-image]: https://badgen.net/npm/node/mime-db +[node-url]: https://nodejs.org/en/download +[npm-downloads-image]: https://badgen.net/npm/dm/mime-db +[npm-url]: https://npmjs.org/package/mime-db +[npm-version-image]: https://badgen.net/npm/v/mime-db diff --git a/node_modules/mime-db/db.json b/node_modules/mime-db/db.json new file mode 100644 index 000000000..eb9c42c45 --- /dev/null +++ b/node_modules/mime-db/db.json @@ -0,0 +1,8519 @@ +{ + "application/1d-interleaved-parityfec": { + "source": "iana" + }, + "application/3gpdash-qoe-report+xml": { + "source": "iana", + "charset": "UTF-8", + "compressible": true + }, + "application/3gpp-ims+xml": { + "source": "iana", + "compressible": true + }, + "application/3gpphal+json": { + "source": "iana", + "compressible": true + }, + "application/3gpphalforms+json": { + "source": "iana", + "compressible": true + }, + "application/a2l": { + "source": "iana" + }, + "application/ace+cbor": { + "source": "iana" + }, + "application/activemessage": { + "source": "iana" + }, + "application/activity+json": { + "source": "iana", + "compressible": true + }, + "application/alto-costmap+json": { + "source": "iana", + "compressible": true + }, + "application/alto-costmapfilter+json": { + "source": "iana", + "compressible": true + }, + "application/alto-directory+json": { + "source": "iana", + "compressible": true + }, + "application/alto-endpointcost+json": { + "source": "iana", + "compressible": true + }, + "application/alto-endpointcostparams+json": { + "source": "iana", + "compressible": true + }, + "application/alto-endpointprop+json": { + "source": "iana", + "compressible": true + }, + "application/alto-endpointpropparams+json": { + "source": "iana", + "compressible": true + }, + "application/alto-error+json": { + "source": "iana", + "compressible": true + }, + "application/alto-networkmap+json": { + "source": "iana", + "compressible": true + }, + "application/alto-networkmapfilter+json": { + "source": "iana", + "compressible": true + }, + "application/alto-updatestreamcontrol+json": { + "source": "iana", + "compressible": true + }, + "application/alto-updatestreamparams+json": { + "source": "iana", + "compressible": true + }, + "application/aml": { + "source": "iana" + }, + "application/andrew-inset": { + "source": "iana", + "extensions": ["ez"] + }, + "application/applefile": { + "source": "iana" + }, + "application/applixware": { + "source": "apache", + "extensions": ["aw"] + }, + "application/at+jwt": { + "source": "iana" + }, + "application/atf": { + "source": "iana" + }, + "application/atfx": { + "source": "iana" + }, + "application/atom+xml": { + "source": "iana", + "compressible": true, + "extensions": ["atom"] + }, + "application/atomcat+xml": { + "source": "iana", + "compressible": true, + "extensions": ["atomcat"] + }, + "application/atomdeleted+xml": { + "source": "iana", + "compressible": true, + "extensions": ["atomdeleted"] + }, + "application/atomicmail": { + "source": "iana" + }, + "application/atomsvc+xml": { + "source": "iana", + "compressible": true, + "extensions": ["atomsvc"] + }, + "application/atsc-dwd+xml": { + "source": "iana", + "compressible": true, + "extensions": ["dwd"] + }, + "application/atsc-dynamic-event-message": { + "source": "iana" + }, + "application/atsc-held+xml": { + "source": "iana", + "compressible": true, + "extensions": ["held"] + }, + "application/atsc-rdt+json": { + "source": "iana", + "compressible": true + }, + "application/atsc-rsat+xml": { + "source": "iana", + "compressible": true, + "extensions": ["rsat"] + }, + "application/atxml": { + "source": "iana" + }, + "application/auth-policy+xml": { + "source": "iana", + "compressible": true + }, + "application/bacnet-xdd+zip": { + "source": "iana", + "compressible": false + }, + "application/batch-smtp": { + "source": "iana" + }, + "application/bdoc": { + "compressible": false, + "extensions": ["bdoc"] + }, + "application/beep+xml": { + "source": "iana", + "charset": "UTF-8", + "compressible": true + }, + "application/calendar+json": { + "source": "iana", + "compressible": true + }, + "application/calendar+xml": { + "source": "iana", + "compressible": true, + "extensions": ["xcs"] + }, + "application/call-completion": { + "source": "iana" + }, + "application/cals-1840": { + "source": "iana" + }, + "application/captive+json": { + "source": "iana", + "compressible": true + }, + "application/cbor": { + "source": "iana" + }, + "application/cbor-seq": { + "source": "iana" + }, + "application/cccex": { + "source": "iana" + }, + "application/ccmp+xml": { + "source": "iana", + "compressible": true + }, + "application/ccxml+xml": { + "source": "iana", + "compressible": true, + "extensions": ["ccxml"] + }, + "application/cdfx+xml": { + "source": "iana", + "compressible": true, + "extensions": ["cdfx"] + }, + "application/cdmi-capability": { + "source": "iana", + "extensions": ["cdmia"] + }, + "application/cdmi-container": { + "source": "iana", + "extensions": ["cdmic"] + }, + "application/cdmi-domain": { + "source": "iana", + "extensions": ["cdmid"] + }, + "application/cdmi-object": { + "source": "iana", + "extensions": ["cdmio"] + }, + "application/cdmi-queue": { + "source": "iana", + "extensions": ["cdmiq"] + }, + "application/cdni": { + "source": "iana" + }, + "application/cea": { + "source": "iana" + }, + "application/cea-2018+xml": { + "source": "iana", + "compressible": true + }, + "application/cellml+xml": { + "source": "iana", + "compressible": true + }, + "application/cfw": { + "source": "iana" + }, + "application/city+json": { + "source": "iana", + "compressible": true + }, + "application/clr": { + "source": "iana" + }, + "application/clue+xml": { + "source": "iana", + "compressible": true + }, + "application/clue_info+xml": { + "source": "iana", + "compressible": true + }, + "application/cms": { + "source": "iana" + }, + "application/cnrp+xml": { + "source": "iana", + "compressible": true + }, + "application/coap-group+json": { + "source": "iana", + "compressible": true + }, + "application/coap-payload": { + "source": "iana" + }, + "application/commonground": { + "source": "iana" + }, + "application/conference-info+xml": { + "source": "iana", + "compressible": true + }, + "application/cose": { + "source": "iana" + }, + "application/cose-key": { + "source": "iana" + }, + "application/cose-key-set": { + "source": "iana" + }, + "application/cpl+xml": { + "source": "iana", + "compressible": true, + "extensions": ["cpl"] + }, + "application/csrattrs": { + "source": "iana" + }, + "application/csta+xml": { + "source": "iana", + "compressible": true + }, + "application/cstadata+xml": { + "source": "iana", + "compressible": true + }, + "application/csvm+json": { + "source": "iana", + "compressible": true + }, + "application/cu-seeme": { + "source": "apache", + "extensions": ["cu"] + }, + "application/cwt": { + "source": "iana" + }, + "application/cybercash": { + "source": "iana" + }, + "application/dart": { + "compressible": true + }, + "application/dash+xml": { + "source": "iana", + "compressible": true, + "extensions": ["mpd"] + }, + "application/dash-patch+xml": { + "source": "iana", + "compressible": true, + "extensions": ["mpp"] + }, + "application/dashdelta": { + "source": "iana" + }, + "application/davmount+xml": { + "source": "iana", + "compressible": true, + "extensions": ["davmount"] + }, + "application/dca-rft": { + "source": "iana" + }, + "application/dcd": { + "source": "iana" + }, + "application/dec-dx": { + "source": "iana" + }, + "application/dialog-info+xml": { + "source": "iana", + "compressible": true + }, + "application/dicom": { + "source": "iana" + }, + "application/dicom+json": { + "source": "iana", + "compressible": true + }, + "application/dicom+xml": { + "source": "iana", + "compressible": true + }, + "application/dii": { + "source": "iana" + }, + "application/dit": { + "source": "iana" + }, + "application/dns": { + "source": "iana" + }, + "application/dns+json": { + "source": "iana", + "compressible": true + }, + "application/dns-message": { + "source": "iana" + }, + "application/docbook+xml": { + "source": "apache", + "compressible": true, + "extensions": ["dbk"] + }, + "application/dots+cbor": { + "source": "iana" + }, + "application/dskpp+xml": { + "source": "iana", + "compressible": true + }, + "application/dssc+der": { + "source": "iana", + "extensions": ["dssc"] + }, + "application/dssc+xml": { + "source": "iana", + "compressible": true, + "extensions": ["xdssc"] + }, + "application/dvcs": { + "source": "iana" + }, + "application/ecmascript": { + "source": "iana", + "compressible": true, + "extensions": ["es","ecma"] + }, + "application/edi-consent": { + "source": "iana" + }, + "application/edi-x12": { + "source": "iana", + "compressible": false + }, + "application/edifact": { + "source": "iana", + "compressible": false + }, + "application/efi": { + "source": "iana" + }, + "application/elm+json": { + "source": "iana", + "charset": "UTF-8", + "compressible": true + }, + "application/elm+xml": { + "source": "iana", + "compressible": true + }, + "application/emergencycalldata.cap+xml": { + "source": "iana", + "charset": "UTF-8", + "compressible": true + }, + "application/emergencycalldata.comment+xml": { + "source": "iana", + "compressible": true + }, + "application/emergencycalldata.control+xml": { + "source": "iana", + "compressible": true + }, + "application/emergencycalldata.deviceinfo+xml": { + "source": "iana", + "compressible": true + }, + "application/emergencycalldata.ecall.msd": { + "source": "iana" + }, + "application/emergencycalldata.providerinfo+xml": { + "source": "iana", + "compressible": true + }, + "application/emergencycalldata.serviceinfo+xml": { + "source": "iana", + "compressible": true + }, + "application/emergencycalldata.subscriberinfo+xml": { + "source": "iana", + "compressible": true + }, + "application/emergencycalldata.veds+xml": { + "source": "iana", + "compressible": true + }, + "application/emma+xml": { + "source": "iana", + "compressible": true, + "extensions": ["emma"] + }, + "application/emotionml+xml": { + "source": "iana", + "compressible": true, + "extensions": ["emotionml"] + }, + "application/encaprtp": { + "source": "iana" + }, + "application/epp+xml": { + "source": "iana", + "compressible": true + }, + "application/epub+zip": { + "source": "iana", + "compressible": false, + "extensions": ["epub"] + }, + "application/eshop": { + "source": "iana" + }, + "application/exi": { + "source": "iana", + "extensions": ["exi"] + }, + "application/expect-ct-report+json": { + "source": "iana", + "compressible": true + }, + "application/express": { + "source": "iana", + "extensions": ["exp"] + }, + "application/fastinfoset": { + "source": "iana" + }, + "application/fastsoap": { + "source": "iana" + }, + "application/fdt+xml": { + "source": "iana", + "compressible": true, + "extensions": ["fdt"] + }, + "application/fhir+json": { + "source": "iana", + "charset": "UTF-8", + "compressible": true + }, + "application/fhir+xml": { + "source": "iana", + "charset": "UTF-8", + "compressible": true + }, + "application/fido.trusted-apps+json": { + "compressible": true + }, + "application/fits": { + "source": "iana" + }, + "application/flexfec": { + "source": "iana" + }, + "application/font-sfnt": { + "source": "iana" + }, + "application/font-tdpfr": { + "source": "iana", + "extensions": ["pfr"] + }, + "application/font-woff": { + "source": "iana", + "compressible": false + }, + "application/framework-attributes+xml": { + "source": "iana", + "compressible": true + }, + "application/geo+json": { + "source": "iana", + "compressible": true, + "extensions": ["geojson"] + }, + "application/geo+json-seq": { + "source": "iana" + }, + "application/geopackage+sqlite3": { + "source": "iana" + }, + "application/geoxacml+xml": { + "source": "iana", + "compressible": true + }, + "application/gltf-buffer": { + "source": "iana" + }, + "application/gml+xml": { + "source": "iana", + "compressible": true, + "extensions": ["gml"] + }, + "application/gpx+xml": { + "source": "apache", + "compressible": true, + "extensions": ["gpx"] + }, + "application/gxf": { + "source": "apache", + "extensions": ["gxf"] + }, + "application/gzip": { + "source": "iana", + "compressible": false, + "extensions": ["gz"] + }, + "application/h224": { + "source": "iana" + }, + "application/held+xml": { + "source": "iana", + "compressible": true + }, + "application/hjson": { + "extensions": ["hjson"] + }, + "application/http": { + "source": "iana" + }, + "application/hyperstudio": { + "source": "iana", + "extensions": ["stk"] + }, + "application/ibe-key-request+xml": { + "source": "iana", + "compressible": true + }, + "application/ibe-pkg-reply+xml": { + "source": "iana", + "compressible": true + }, + "application/ibe-pp-data": { + "source": "iana" + }, + "application/iges": { + "source": "iana" + }, + "application/im-iscomposing+xml": { + "source": "iana", + "charset": "UTF-8", + "compressible": true + }, + "application/index": { + "source": "iana" + }, + "application/index.cmd": { + "source": "iana" + }, + "application/index.obj": { + "source": "iana" + }, + "application/index.response": { + "source": "iana" + }, + "application/index.vnd": { + "source": "iana" + }, + "application/inkml+xml": { + "source": "iana", + "compressible": true, + "extensions": ["ink","inkml"] + }, + "application/iotp": { + "source": "iana" + }, + "application/ipfix": { + "source": "iana", + "extensions": ["ipfix"] + }, + "application/ipp": { + "source": "iana" + }, + "application/isup": { + "source": "iana" + }, + "application/its+xml": { + "source": "iana", + "compressible": true, + "extensions": ["its"] + }, + "application/java-archive": { + "source": "apache", + "compressible": false, + "extensions": ["jar","war","ear"] + }, + "application/java-serialized-object": { + "source": "apache", + "compressible": false, + "extensions": ["ser"] + }, + "application/java-vm": { + "source": "apache", + "compressible": false, + "extensions": ["class"] + }, + "application/javascript": { + "source": "iana", + "charset": "UTF-8", + "compressible": true, + "extensions": ["js","mjs"] + }, + "application/jf2feed+json": { + "source": "iana", + "compressible": true + }, + "application/jose": { + "source": "iana" + }, + "application/jose+json": { + "source": "iana", + "compressible": true + }, + "application/jrd+json": { + "source": "iana", + "compressible": true + }, + "application/jscalendar+json": { + "source": "iana", + "compressible": true + }, + "application/json": { + "source": "iana", + "charset": "UTF-8", + "compressible": true, + "extensions": ["json","map"] + }, + "application/json-patch+json": { + "source": "iana", + "compressible": true + }, + "application/json-seq": { + "source": "iana" + }, + "application/json5": { + "extensions": ["json5"] + }, + "application/jsonml+json": { + "source": "apache", + "compressible": true, + "extensions": ["jsonml"] + }, + "application/jwk+json": { + "source": "iana", + "compressible": true + }, + "application/jwk-set+json": { + "source": "iana", + "compressible": true + }, + "application/jwt": { + "source": "iana" + }, + "application/kpml-request+xml": { + "source": "iana", + "compressible": true + }, + "application/kpml-response+xml": { + "source": "iana", + "compressible": true + }, + "application/ld+json": { + "source": "iana", + "compressible": true, + "extensions": ["jsonld"] + }, + "application/lgr+xml": { + "source": "iana", + "compressible": true, + "extensions": ["lgr"] + }, + "application/link-format": { + "source": "iana" + }, + "application/load-control+xml": { + "source": "iana", + "compressible": true + }, + "application/lost+xml": { + "source": "iana", + "compressible": true, + "extensions": ["lostxml"] + }, + "application/lostsync+xml": { + "source": "iana", + "compressible": true + }, + "application/lpf+zip": { + "source": "iana", + "compressible": false + }, + "application/lxf": { + "source": "iana" + }, + "application/mac-binhex40": { + "source": "iana", + "extensions": ["hqx"] + }, + "application/mac-compactpro": { + "source": "apache", + "extensions": ["cpt"] + }, + "application/macwriteii": { + "source": "iana" + }, + "application/mads+xml": { + "source": "iana", + "compressible": true, + "extensions": ["mads"] + }, + "application/manifest+json": { + "source": "iana", + "charset": "UTF-8", + "compressible": true, + "extensions": ["webmanifest"] + }, + "application/marc": { + "source": "iana", + "extensions": ["mrc"] + }, + "application/marcxml+xml": { + "source": "iana", + "compressible": true, + "extensions": ["mrcx"] + }, + "application/mathematica": { + "source": "iana", + "extensions": ["ma","nb","mb"] + }, + "application/mathml+xml": { + "source": "iana", + "compressible": true, + "extensions": ["mathml"] + }, + "application/mathml-content+xml": { + "source": "iana", + "compressible": true + }, + "application/mathml-presentation+xml": { + "source": "iana", + "compressible": true + }, + "application/mbms-associated-procedure-description+xml": { + "source": "iana", + "compressible": true + }, + "application/mbms-deregister+xml": { + "source": "iana", + "compressible": true + }, + "application/mbms-envelope+xml": { + "source": "iana", + "compressible": true + }, + "application/mbms-msk+xml": { + "source": "iana", + "compressible": true + }, + "application/mbms-msk-response+xml": { + "source": "iana", + "compressible": true + }, + "application/mbms-protection-description+xml": { + "source": "iana", + "compressible": true + }, + "application/mbms-reception-report+xml": { + "source": "iana", + "compressible": true + }, + "application/mbms-register+xml": { + "source": "iana", + "compressible": true + }, + "application/mbms-register-response+xml": { + "source": "iana", + "compressible": true + }, + "application/mbms-schedule+xml": { + "source": "iana", + "compressible": true + }, + "application/mbms-user-service-description+xml": { + "source": "iana", + "compressible": true + }, + "application/mbox": { + "source": "iana", + "extensions": ["mbox"] + }, + "application/media-policy-dataset+xml": { + "source": "iana", + "compressible": true, + "extensions": ["mpf"] + }, + "application/media_control+xml": { + "source": "iana", + "compressible": true + }, + "application/mediaservercontrol+xml": { + "source": "iana", + "compressible": true, + "extensions": ["mscml"] + }, + "application/merge-patch+json": { + "source": "iana", + "compressible": true + }, + "application/metalink+xml": { + "source": "apache", + "compressible": true, + "extensions": ["metalink"] + }, + "application/metalink4+xml": { + "source": "iana", + "compressible": true, + "extensions": ["meta4"] + }, + "application/mets+xml": { + "source": "iana", + "compressible": true, + "extensions": ["mets"] + }, + "application/mf4": { + "source": "iana" + }, + "application/mikey": { + "source": "iana" + }, + "application/mipc": { + "source": "iana" + }, + "application/missing-blocks+cbor-seq": { + "source": "iana" + }, + "application/mmt-aei+xml": { + "source": "iana", + "compressible": true, + "extensions": ["maei"] + }, + "application/mmt-usd+xml": { + "source": "iana", + "compressible": true, + "extensions": ["musd"] + }, + "application/mods+xml": { + "source": "iana", + "compressible": true, + "extensions": ["mods"] + }, + "application/moss-keys": { + "source": "iana" + }, + "application/moss-signature": { + "source": "iana" + }, + "application/mosskey-data": { + "source": "iana" + }, + "application/mosskey-request": { + "source": "iana" + }, + "application/mp21": { + "source": "iana", + "extensions": ["m21","mp21"] + }, + "application/mp4": { + "source": "iana", + "extensions": ["mp4s","m4p"] + }, + "application/mpeg4-generic": { + "source": "iana" + }, + "application/mpeg4-iod": { + "source": "iana" + }, + "application/mpeg4-iod-xmt": { + "source": "iana" + }, + "application/mrb-consumer+xml": { + "source": "iana", + "compressible": true + }, + "application/mrb-publish+xml": { + "source": "iana", + "compressible": true + }, + "application/msc-ivr+xml": { + "source": "iana", + "charset": "UTF-8", + "compressible": true + }, + "application/msc-mixer+xml": { + "source": "iana", + "charset": "UTF-8", + "compressible": true + }, + "application/msword": { + "source": "iana", + "compressible": false, + "extensions": ["doc","dot"] + }, + "application/mud+json": { + "source": "iana", + "compressible": true + }, + "application/multipart-core": { + "source": "iana" + }, + "application/mxf": { + "source": "iana", + "extensions": ["mxf"] + }, + "application/n-quads": { + "source": "iana", + "extensions": ["nq"] + }, + "application/n-triples": { + "source": "iana", + "extensions": ["nt"] + }, + "application/nasdata": { + "source": "iana" + }, + "application/news-checkgroups": { + "source": "iana", + "charset": "US-ASCII" + }, + "application/news-groupinfo": { + "source": "iana", + "charset": "US-ASCII" + }, + "application/news-transmission": { + "source": "iana" + }, + "application/nlsml+xml": { + "source": "iana", + "compressible": true + }, + "application/node": { + "source": "iana", + "extensions": ["cjs"] + }, + "application/nss": { + "source": "iana" + }, + "application/oauth-authz-req+jwt": { + "source": "iana" + }, + "application/oblivious-dns-message": { + "source": "iana" + }, + "application/ocsp-request": { + "source": "iana" + }, + "application/ocsp-response": { + "source": "iana" + }, + "application/octet-stream": { + "source": "iana", + "compressible": false, + "extensions": ["bin","dms","lrf","mar","so","dist","distz","pkg","bpk","dump","elc","deploy","exe","dll","deb","dmg","iso","img","msi","msp","msm","buffer"] + }, + "application/oda": { + "source": "iana", + "extensions": ["oda"] + }, + "application/odm+xml": { + "source": "iana", + "compressible": true + }, + "application/odx": { + "source": "iana" + }, + "application/oebps-package+xml": { + "source": "iana", + "compressible": true, + "extensions": ["opf"] + }, + "application/ogg": { + "source": "iana", + "compressible": false, + "extensions": ["ogx"] + }, + "application/omdoc+xml": { + "source": "apache", + "compressible": true, + "extensions": ["omdoc"] + }, + "application/onenote": { + "source": "apache", + "extensions": ["onetoc","onetoc2","onetmp","onepkg"] + }, + "application/opc-nodeset+xml": { + "source": "iana", + "compressible": true + }, + "application/oscore": { + "source": "iana" + }, + "application/oxps": { + "source": "iana", + "extensions": ["oxps"] + }, + "application/p21": { + "source": "iana" + }, + "application/p21+zip": { + "source": "iana", + "compressible": false + }, + "application/p2p-overlay+xml": { + "source": "iana", + "compressible": true, + "extensions": ["relo"] + }, + "application/parityfec": { + "source": "iana" + }, + "application/passport": { + "source": "iana" + }, + "application/patch-ops-error+xml": { + "source": "iana", + "compressible": true, + "extensions": ["xer"] + }, + "application/pdf": { + "source": "iana", + "compressible": false, + "extensions": ["pdf"] + }, + "application/pdx": { + "source": "iana" + }, + "application/pem-certificate-chain": { + "source": "iana" + }, + "application/pgp-encrypted": { + "source": "iana", + "compressible": false, + "extensions": ["pgp"] + }, + "application/pgp-keys": { + "source": "iana", + "extensions": ["asc"] + }, + "application/pgp-signature": { + "source": "iana", + "extensions": ["asc","sig"] + }, + "application/pics-rules": { + "source": "apache", + "extensions": ["prf"] + }, + "application/pidf+xml": { + "source": "iana", + "charset": "UTF-8", + "compressible": true + }, + "application/pidf-diff+xml": { + "source": "iana", + "charset": "UTF-8", + "compressible": true + }, + "application/pkcs10": { + "source": "iana", + "extensions": ["p10"] + }, + "application/pkcs12": { + "source": "iana" + }, + "application/pkcs7-mime": { + "source": "iana", + "extensions": ["p7m","p7c"] + }, + "application/pkcs7-signature": { + "source": "iana", + "extensions": ["p7s"] + }, + "application/pkcs8": { + "source": "iana", + "extensions": ["p8"] + }, + "application/pkcs8-encrypted": { + "source": "iana" + }, + "application/pkix-attr-cert": { + "source": "iana", + "extensions": ["ac"] + }, + "application/pkix-cert": { + "source": "iana", + "extensions": ["cer"] + }, + "application/pkix-crl": { + "source": "iana", + "extensions": ["crl"] + }, + "application/pkix-pkipath": { + "source": "iana", + "extensions": ["pkipath"] + }, + "application/pkixcmp": { + "source": "iana", + "extensions": ["pki"] + }, + "application/pls+xml": { + "source": "iana", + "compressible": true, + "extensions": ["pls"] + }, + "application/poc-settings+xml": { + "source": "iana", + "charset": "UTF-8", + "compressible": true + }, + "application/postscript": { + "source": "iana", + "compressible": true, + "extensions": ["ai","eps","ps"] + }, + "application/ppsp-tracker+json": { + "source": "iana", + "compressible": true + }, + "application/problem+json": { + "source": "iana", + "compressible": true + }, + "application/problem+xml": { + "source": "iana", + "compressible": true + }, + "application/provenance+xml": { + "source": "iana", + "compressible": true, + "extensions": ["provx"] + }, + "application/prs.alvestrand.titrax-sheet": { + "source": "iana" + }, + "application/prs.cww": { + "source": "iana", + "extensions": ["cww"] + }, + "application/prs.cyn": { + "source": "iana", + "charset": "7-BIT" + }, + "application/prs.hpub+zip": { + "source": "iana", + "compressible": false + }, + "application/prs.nprend": { + "source": "iana" + }, + "application/prs.plucker": { + "source": "iana" + }, + "application/prs.rdf-xml-crypt": { + "source": "iana" + }, + "application/prs.xsf+xml": { + "source": "iana", + "compressible": true + }, + "application/pskc+xml": { + "source": "iana", + "compressible": true, + "extensions": ["pskcxml"] + }, + "application/pvd+json": { + "source": "iana", + "compressible": true + }, + "application/qsig": { + "source": "iana" + }, + "application/raml+yaml": { + "compressible": true, + "extensions": ["raml"] + }, + "application/raptorfec": { + "source": "iana" + }, + "application/rdap+json": { + "source": "iana", + "compressible": true + }, + "application/rdf+xml": { + "source": "iana", + "compressible": true, + "extensions": ["rdf","owl"] + }, + "application/reginfo+xml": { + "source": "iana", + "compressible": true, + "extensions": ["rif"] + }, + "application/relax-ng-compact-syntax": { + "source": "iana", + "extensions": ["rnc"] + }, + "application/remote-printing": { + "source": "iana" + }, + "application/reputon+json": { + "source": "iana", + "compressible": true + }, + "application/resource-lists+xml": { + "source": "iana", + "compressible": true, + "extensions": ["rl"] + }, + "application/resource-lists-diff+xml": { + "source": "iana", + "compressible": true, + "extensions": ["rld"] + }, + "application/rfc+xml": { + "source": "iana", + "compressible": true + }, + "application/riscos": { + "source": "iana" + }, + "application/rlmi+xml": { + "source": "iana", + "compressible": true + }, + "application/rls-services+xml": { + "source": "iana", + "compressible": true, + "extensions": ["rs"] + }, + "application/route-apd+xml": { + "source": "iana", + "compressible": true, + "extensions": ["rapd"] + }, + "application/route-s-tsid+xml": { + "source": "iana", + "compressible": true, + "extensions": ["sls"] + }, + "application/route-usd+xml": { + "source": "iana", + "compressible": true, + "extensions": ["rusd"] + }, + "application/rpki-ghostbusters": { + "source": "iana", + "extensions": ["gbr"] + }, + "application/rpki-manifest": { + "source": "iana", + "extensions": ["mft"] + }, + "application/rpki-publication": { + "source": "iana" + }, + "application/rpki-roa": { + "source": "iana", + "extensions": ["roa"] + }, + "application/rpki-updown": { + "source": "iana" + }, + "application/rsd+xml": { + "source": "apache", + "compressible": true, + "extensions": ["rsd"] + }, + "application/rss+xml": { + "source": "apache", + "compressible": true, + "extensions": ["rss"] + }, + "application/rtf": { + "source": "iana", + "compressible": true, + "extensions": ["rtf"] + }, + "application/rtploopback": { + "source": "iana" + }, + "application/rtx": { + "source": "iana" + }, + "application/samlassertion+xml": { + "source": "iana", + "compressible": true + }, + "application/samlmetadata+xml": { + "source": "iana", + "compressible": true + }, + "application/sarif+json": { + "source": "iana", + "compressible": true + }, + "application/sarif-external-properties+json": { + "source": "iana", + "compressible": true + }, + "application/sbe": { + "source": "iana" + }, + "application/sbml+xml": { + "source": "iana", + "compressible": true, + "extensions": ["sbml"] + }, + "application/scaip+xml": { + "source": "iana", + "compressible": true + }, + "application/scim+json": { + "source": "iana", + "compressible": true + }, + "application/scvp-cv-request": { + "source": "iana", + "extensions": ["scq"] + }, + "application/scvp-cv-response": { + "source": "iana", + "extensions": ["scs"] + }, + "application/scvp-vp-request": { + "source": "iana", + "extensions": ["spq"] + }, + "application/scvp-vp-response": { + "source": "iana", + "extensions": ["spp"] + }, + "application/sdp": { + "source": "iana", + "extensions": ["sdp"] + }, + "application/secevent+jwt": { + "source": "iana" + }, + "application/senml+cbor": { + "source": "iana" + }, + "application/senml+json": { + "source": "iana", + "compressible": true + }, + "application/senml+xml": { + "source": "iana", + "compressible": true, + "extensions": ["senmlx"] + }, + "application/senml-etch+cbor": { + "source": "iana" + }, + "application/senml-etch+json": { + "source": "iana", + "compressible": true + }, + "application/senml-exi": { + "source": "iana" + }, + "application/sensml+cbor": { + "source": "iana" + }, + "application/sensml+json": { + "source": "iana", + "compressible": true + }, + "application/sensml+xml": { + "source": "iana", + "compressible": true, + "extensions": ["sensmlx"] + }, + "application/sensml-exi": { + "source": "iana" + }, + "application/sep+xml": { + "source": "iana", + "compressible": true + }, + "application/sep-exi": { + "source": "iana" + }, + "application/session-info": { + "source": "iana" + }, + "application/set-payment": { + "source": "iana" + }, + "application/set-payment-initiation": { + "source": "iana", + "extensions": ["setpay"] + }, + "application/set-registration": { + "source": "iana" + }, + "application/set-registration-initiation": { + "source": "iana", + "extensions": ["setreg"] + }, + "application/sgml": { + "source": "iana" + }, + "application/sgml-open-catalog": { + "source": "iana" + }, + "application/shf+xml": { + "source": "iana", + "compressible": true, + "extensions": ["shf"] + }, + "application/sieve": { + "source": "iana", + "extensions": ["siv","sieve"] + }, + "application/simple-filter+xml": { + "source": "iana", + "compressible": true + }, + "application/simple-message-summary": { + "source": "iana" + }, + "application/simplesymbolcontainer": { + "source": "iana" + }, + "application/sipc": { + "source": "iana" + }, + "application/slate": { + "source": "iana" + }, + "application/smil": { + "source": "iana" + }, + "application/smil+xml": { + "source": "iana", + "compressible": true, + "extensions": ["smi","smil"] + }, + "application/smpte336m": { + "source": "iana" + }, + "application/soap+fastinfoset": { + "source": "iana" + }, + "application/soap+xml": { + "source": "iana", + "compressible": true + }, + "application/sparql-query": { + "source": "iana", + "extensions": ["rq"] + }, + "application/sparql-results+xml": { + "source": "iana", + "compressible": true, + "extensions": ["srx"] + }, + "application/spdx+json": { + "source": "iana", + "compressible": true + }, + "application/spirits-event+xml": { + "source": "iana", + "compressible": true + }, + "application/sql": { + "source": "iana" + }, + "application/srgs": { + "source": "iana", + "extensions": ["gram"] + }, + "application/srgs+xml": { + "source": "iana", + "compressible": true, + "extensions": ["grxml"] + }, + "application/sru+xml": { + "source": "iana", + "compressible": true, + "extensions": ["sru"] + }, + "application/ssdl+xml": { + "source": "apache", + "compressible": true, + "extensions": ["ssdl"] + }, + "application/ssml+xml": { + "source": "iana", + "compressible": true, + "extensions": ["ssml"] + }, + "application/stix+json": { + "source": "iana", + "compressible": true + }, + "application/swid+xml": { + "source": "iana", + "compressible": true, + "extensions": ["swidtag"] + }, + "application/tamp-apex-update": { + "source": "iana" + }, + "application/tamp-apex-update-confirm": { + "source": "iana" + }, + "application/tamp-community-update": { + "source": "iana" + }, + "application/tamp-community-update-confirm": { + "source": "iana" + }, + "application/tamp-error": { + "source": "iana" + }, + "application/tamp-sequence-adjust": { + "source": "iana" + }, + "application/tamp-sequence-adjust-confirm": { + "source": "iana" + }, + "application/tamp-status-query": { + "source": "iana" + }, + "application/tamp-status-response": { + "source": "iana" + }, + "application/tamp-update": { + "source": "iana" + }, + "application/tamp-update-confirm": { + "source": "iana" + }, + "application/tar": { + "compressible": true + }, + "application/taxii+json": { + "source": "iana", + "compressible": true + }, + "application/td+json": { + "source": "iana", + "compressible": true + }, + "application/tei+xml": { + "source": "iana", + "compressible": true, + "extensions": ["tei","teicorpus"] + }, + "application/tetra_isi": { + "source": "iana" + }, + "application/thraud+xml": { + "source": "iana", + "compressible": true, + "extensions": ["tfi"] + }, + "application/timestamp-query": { + "source": "iana" + }, + "application/timestamp-reply": { + "source": "iana" + }, + "application/timestamped-data": { + "source": "iana", + "extensions": ["tsd"] + }, + "application/tlsrpt+gzip": { + "source": "iana" + }, + "application/tlsrpt+json": { + "source": "iana", + "compressible": true + }, + "application/tnauthlist": { + "source": "iana" + }, + "application/token-introspection+jwt": { + "source": "iana" + }, + "application/toml": { + "compressible": true, + "extensions": ["toml"] + }, + "application/trickle-ice-sdpfrag": { + "source": "iana" + }, + "application/trig": { + "source": "iana", + "extensions": ["trig"] + }, + "application/ttml+xml": { + "source": "iana", + "compressible": true, + "extensions": ["ttml"] + }, + "application/tve-trigger": { + "source": "iana" + }, + "application/tzif": { + "source": "iana" + }, + "application/tzif-leap": { + "source": "iana" + }, + "application/ubjson": { + "compressible": false, + "extensions": ["ubj"] + }, + "application/ulpfec": { + "source": "iana" + }, + "application/urc-grpsheet+xml": { + "source": "iana", + "compressible": true + }, + "application/urc-ressheet+xml": { + "source": "iana", + "compressible": true, + "extensions": ["rsheet"] + }, + "application/urc-targetdesc+xml": { + "source": "iana", + "compressible": true, + "extensions": ["td"] + }, + "application/urc-uisocketdesc+xml": { + "source": "iana", + "compressible": true + }, + "application/vcard+json": { + "source": "iana", + "compressible": true + }, + "application/vcard+xml": { + "source": "iana", + "compressible": true + }, + "application/vemmi": { + "source": "iana" + }, + "application/vividence.scriptfile": { + "source": "apache" + }, + "application/vnd.1000minds.decision-model+xml": { + "source": "iana", + "compressible": true, + "extensions": ["1km"] + }, + "application/vnd.3gpp-prose+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.3gpp-prose-pc3ch+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.3gpp-v2x-local-service-information": { + "source": "iana" + }, + "application/vnd.3gpp.5gnas": { + "source": "iana" + }, + "application/vnd.3gpp.access-transfer-events+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.3gpp.bsf+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.3gpp.gmop+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.3gpp.gtpc": { + "source": "iana" + }, + "application/vnd.3gpp.interworking-data": { + "source": "iana" + }, + "application/vnd.3gpp.lpp": { + "source": "iana" + }, + "application/vnd.3gpp.mc-signalling-ear": { + "source": "iana" + }, + "application/vnd.3gpp.mcdata-affiliation-command+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.3gpp.mcdata-info+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.3gpp.mcdata-payload": { + "source": "iana" + }, + "application/vnd.3gpp.mcdata-service-config+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.3gpp.mcdata-signalling": { + "source": "iana" + }, + "application/vnd.3gpp.mcdata-ue-config+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.3gpp.mcdata-user-profile+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.3gpp.mcptt-affiliation-command+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.3gpp.mcptt-floor-request+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.3gpp.mcptt-info+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.3gpp.mcptt-location-info+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.3gpp.mcptt-mbms-usage-info+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.3gpp.mcptt-service-config+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.3gpp.mcptt-signed+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.3gpp.mcptt-ue-config+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.3gpp.mcptt-ue-init-config+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.3gpp.mcptt-user-profile+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.3gpp.mcvideo-affiliation-command+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.3gpp.mcvideo-affiliation-info+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.3gpp.mcvideo-info+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.3gpp.mcvideo-location-info+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.3gpp.mcvideo-mbms-usage-info+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.3gpp.mcvideo-service-config+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.3gpp.mcvideo-transmission-request+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.3gpp.mcvideo-ue-config+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.3gpp.mcvideo-user-profile+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.3gpp.mid-call+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.3gpp.ngap": { + "source": "iana" + }, + "application/vnd.3gpp.pfcp": { + "source": "iana" + }, + "application/vnd.3gpp.pic-bw-large": { + "source": "iana", + "extensions": ["plb"] + }, + "application/vnd.3gpp.pic-bw-small": { + "source": "iana", + "extensions": ["psb"] + }, + "application/vnd.3gpp.pic-bw-var": { + "source": "iana", + "extensions": ["pvb"] + }, + "application/vnd.3gpp.s1ap": { + "source": "iana" + }, + "application/vnd.3gpp.sms": { + "source": "iana" + }, + "application/vnd.3gpp.sms+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.3gpp.srvcc-ext+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.3gpp.srvcc-info+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.3gpp.state-and-event-info+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.3gpp.ussd+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.3gpp2.bcmcsinfo+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.3gpp2.sms": { + "source": "iana" + }, + "application/vnd.3gpp2.tcap": { + "source": "iana", + "extensions": ["tcap"] + }, + "application/vnd.3lightssoftware.imagescal": { + "source": "iana" + }, + "application/vnd.3m.post-it-notes": { + "source": "iana", + "extensions": ["pwn"] + }, + "application/vnd.accpac.simply.aso": { + "source": "iana", + "extensions": ["aso"] + }, + "application/vnd.accpac.simply.imp": { + "source": "iana", + "extensions": ["imp"] + }, + "application/vnd.acucobol": { + "source": "iana", + "extensions": ["acu"] + }, + "application/vnd.acucorp": { + "source": "iana", + "extensions": ["atc","acutc"] + }, + "application/vnd.adobe.air-application-installer-package+zip": { + "source": "apache", + "compressible": false, + "extensions": ["air"] + }, + "application/vnd.adobe.flash.movie": { + "source": "iana" + }, + "application/vnd.adobe.formscentral.fcdt": { + "source": "iana", + "extensions": ["fcdt"] + }, + "application/vnd.adobe.fxp": { + "source": "iana", + "extensions": ["fxp","fxpl"] + }, + "application/vnd.adobe.partial-upload": { + "source": "iana" + }, + "application/vnd.adobe.xdp+xml": { + "source": "iana", + "compressible": true, + "extensions": ["xdp"] + }, + "application/vnd.adobe.xfdf": { + "source": "iana", + "extensions": ["xfdf"] + }, + "application/vnd.aether.imp": { + "source": "iana" + }, + "application/vnd.afpc.afplinedata": { + "source": "iana" + }, + "application/vnd.afpc.afplinedata-pagedef": { + "source": "iana" + }, + "application/vnd.afpc.cmoca-cmresource": { + "source": "iana" + }, + "application/vnd.afpc.foca-charset": { + "source": "iana" + }, + "application/vnd.afpc.foca-codedfont": { + "source": "iana" + }, + "application/vnd.afpc.foca-codepage": { + "source": "iana" + }, + "application/vnd.afpc.modca": { + "source": "iana" + }, + "application/vnd.afpc.modca-cmtable": { + "source": "iana" + }, + "application/vnd.afpc.modca-formdef": { + "source": "iana" + }, + "application/vnd.afpc.modca-mediummap": { + "source": "iana" + }, + "application/vnd.afpc.modca-objectcontainer": { + "source": "iana" + }, + "application/vnd.afpc.modca-overlay": { + "source": "iana" + }, + "application/vnd.afpc.modca-pagesegment": { + "source": "iana" + }, + "application/vnd.age": { + "source": "iana", + "extensions": ["age"] + }, + "application/vnd.ah-barcode": { + "source": "iana" + }, + "application/vnd.ahead.space": { + "source": "iana", + "extensions": ["ahead"] + }, + "application/vnd.airzip.filesecure.azf": { + "source": "iana", + "extensions": ["azf"] + }, + "application/vnd.airzip.filesecure.azs": { + "source": "iana", + "extensions": ["azs"] + }, + "application/vnd.amadeus+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.amazon.ebook": { + "source": "apache", + "extensions": ["azw"] + }, + "application/vnd.amazon.mobi8-ebook": { + "source": "iana" + }, + "application/vnd.americandynamics.acc": { + "source": "iana", + "extensions": ["acc"] + }, + "application/vnd.amiga.ami": { + "source": "iana", + "extensions": ["ami"] + }, + "application/vnd.amundsen.maze+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.android.ota": { + "source": "iana" + }, + "application/vnd.android.package-archive": { + "source": "apache", + "compressible": false, + "extensions": ["apk"] + }, + "application/vnd.anki": { + "source": "iana" + }, + "application/vnd.anser-web-certificate-issue-initiation": { + "source": "iana", + "extensions": ["cii"] + }, + "application/vnd.anser-web-funds-transfer-initiation": { + "source": "apache", + "extensions": ["fti"] + }, + "application/vnd.antix.game-component": { + "source": "iana", + "extensions": ["atx"] + }, + "application/vnd.apache.arrow.file": { + "source": "iana" + }, + "application/vnd.apache.arrow.stream": { + "source": "iana" + }, + "application/vnd.apache.thrift.binary": { + "source": "iana" + }, + "application/vnd.apache.thrift.compact": { + "source": "iana" + }, + "application/vnd.apache.thrift.json": { + "source": "iana" + }, + "application/vnd.api+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.aplextor.warrp+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.apothekende.reservation+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.apple.installer+xml": { + "source": "iana", + "compressible": true, + "extensions": ["mpkg"] + }, + "application/vnd.apple.keynote": { + "source": "iana", + "extensions": ["key"] + }, + "application/vnd.apple.mpegurl": { + "source": "iana", + "extensions": ["m3u8"] + }, + "application/vnd.apple.numbers": { + "source": "iana", + "extensions": ["numbers"] + }, + "application/vnd.apple.pages": { + "source": "iana", + "extensions": ["pages"] + }, + "application/vnd.apple.pkpass": { + "compressible": false, + "extensions": ["pkpass"] + }, + "application/vnd.arastra.swi": { + "source": "iana" + }, + "application/vnd.aristanetworks.swi": { + "source": "iana", + "extensions": ["swi"] + }, + "application/vnd.artisan+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.artsquare": { + "source": "iana" + }, + "application/vnd.astraea-software.iota": { + "source": "iana", + "extensions": ["iota"] + }, + "application/vnd.audiograph": { + "source": "iana", + "extensions": ["aep"] + }, + "application/vnd.autopackage": { + "source": "iana" + }, + "application/vnd.avalon+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.avistar+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.balsamiq.bmml+xml": { + "source": "iana", + "compressible": true, + "extensions": ["bmml"] + }, + "application/vnd.balsamiq.bmpr": { + "source": "iana" + }, + "application/vnd.banana-accounting": { + "source": "iana" + }, + "application/vnd.bbf.usp.error": { + "source": "iana" + }, + "application/vnd.bbf.usp.msg": { + "source": "iana" + }, + "application/vnd.bbf.usp.msg+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.bekitzur-stech+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.bint.med-content": { + "source": "iana" + }, + "application/vnd.biopax.rdf+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.blink-idb-value-wrapper": { + "source": "iana" + }, + "application/vnd.blueice.multipass": { + "source": "iana", + "extensions": ["mpm"] + }, + "application/vnd.bluetooth.ep.oob": { + "source": "iana" + }, + "application/vnd.bluetooth.le.oob": { + "source": "iana" + }, + "application/vnd.bmi": { + "source": "iana", + "extensions": ["bmi"] + }, + "application/vnd.bpf": { + "source": "iana" + }, + "application/vnd.bpf3": { + "source": "iana" + }, + "application/vnd.businessobjects": { + "source": "iana", + "extensions": ["rep"] + }, + "application/vnd.byu.uapi+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.cab-jscript": { + "source": "iana" + }, + "application/vnd.canon-cpdl": { + "source": "iana" + }, + "application/vnd.canon-lips": { + "source": "iana" + }, + "application/vnd.capasystems-pg+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.cendio.thinlinc.clientconf": { + "source": "iana" + }, + "application/vnd.century-systems.tcp_stream": { + "source": "iana" + }, + "application/vnd.chemdraw+xml": { + "source": "iana", + "compressible": true, + "extensions": ["cdxml"] + }, + "application/vnd.chess-pgn": { + "source": "iana" + }, + "application/vnd.chipnuts.karaoke-mmd": { + "source": "iana", + "extensions": ["mmd"] + }, + "application/vnd.ciedi": { + "source": "iana" + }, + "application/vnd.cinderella": { + "source": "iana", + "extensions": ["cdy"] + }, + "application/vnd.cirpack.isdn-ext": { + "source": "iana" + }, + "application/vnd.citationstyles.style+xml": { + "source": "iana", + "compressible": true, + "extensions": ["csl"] + }, + "application/vnd.claymore": { + "source": "iana", + "extensions": ["cla"] + }, + "application/vnd.cloanto.rp9": { + "source": "iana", + "extensions": ["rp9"] + }, + "application/vnd.clonk.c4group": { + "source": "iana", + "extensions": ["c4g","c4d","c4f","c4p","c4u"] + }, + "application/vnd.cluetrust.cartomobile-config": { + "source": "iana", + "extensions": ["c11amc"] + }, + "application/vnd.cluetrust.cartomobile-config-pkg": { + "source": "iana", + "extensions": ["c11amz"] + }, + "application/vnd.coffeescript": { + "source": "iana" + }, + "application/vnd.collabio.xodocuments.document": { + "source": "iana" + }, + "application/vnd.collabio.xodocuments.document-template": { + "source": "iana" + }, + "application/vnd.collabio.xodocuments.presentation": { + "source": "iana" + }, + "application/vnd.collabio.xodocuments.presentation-template": { + "source": "iana" + }, + "application/vnd.collabio.xodocuments.spreadsheet": { + "source": "iana" + }, + "application/vnd.collabio.xodocuments.spreadsheet-template": { + "source": "iana" + }, + "application/vnd.collection+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.collection.doc+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.collection.next+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.comicbook+zip": { + "source": "iana", + "compressible": false + }, + "application/vnd.comicbook-rar": { + "source": "iana" + }, + "application/vnd.commerce-battelle": { + "source": "iana" + }, + "application/vnd.commonspace": { + "source": "iana", + "extensions": ["csp"] + }, + "application/vnd.contact.cmsg": { + "source": "iana", + "extensions": ["cdbcmsg"] + }, + "application/vnd.coreos.ignition+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.cosmocaller": { + "source": "iana", + "extensions": ["cmc"] + }, + "application/vnd.crick.clicker": { + "source": "iana", + "extensions": ["clkx"] + }, + "application/vnd.crick.clicker.keyboard": { + "source": "iana", + "extensions": ["clkk"] + }, + "application/vnd.crick.clicker.palette": { + "source": "iana", + "extensions": ["clkp"] + }, + "application/vnd.crick.clicker.template": { + "source": "iana", + "extensions": ["clkt"] + }, + "application/vnd.crick.clicker.wordbank": { + "source": "iana", + "extensions": ["clkw"] + }, + "application/vnd.criticaltools.wbs+xml": { + "source": "iana", + "compressible": true, + "extensions": ["wbs"] + }, + "application/vnd.cryptii.pipe+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.crypto-shade-file": { + "source": "iana" + }, + "application/vnd.cryptomator.encrypted": { + "source": "iana" + }, + "application/vnd.cryptomator.vault": { + "source": "iana" + }, + "application/vnd.ctc-posml": { + "source": "iana", + "extensions": ["pml"] + }, + "application/vnd.ctct.ws+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.cups-pdf": { + "source": "iana" + }, + "application/vnd.cups-postscript": { + "source": "iana" + }, + "application/vnd.cups-ppd": { + "source": "iana", + "extensions": ["ppd"] + }, + "application/vnd.cups-raster": { + "source": "iana" + }, + "application/vnd.cups-raw": { + "source": "iana" + }, + "application/vnd.curl": { + "source": "iana" + }, + "application/vnd.curl.car": { + "source": "apache", + "extensions": ["car"] + }, + "application/vnd.curl.pcurl": { + "source": "apache", + "extensions": ["pcurl"] + }, + "application/vnd.cyan.dean.root+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.cybank": { + "source": "iana" + }, + "application/vnd.cyclonedx+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.cyclonedx+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.d2l.coursepackage1p0+zip": { + "source": "iana", + "compressible": false + }, + "application/vnd.d3m-dataset": { + "source": "iana" + }, + "application/vnd.d3m-problem": { + "source": "iana" + }, + "application/vnd.dart": { + "source": "iana", + "compressible": true, + "extensions": ["dart"] + }, + "application/vnd.data-vision.rdz": { + "source": "iana", + "extensions": ["rdz"] + }, + "application/vnd.datapackage+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.dataresource+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.dbf": { + "source": "iana", + "extensions": ["dbf"] + }, + "application/vnd.debian.binary-package": { + "source": "iana" + }, + "application/vnd.dece.data": { + "source": "iana", + "extensions": ["uvf","uvvf","uvd","uvvd"] + }, + "application/vnd.dece.ttml+xml": { + "source": "iana", + "compressible": true, + "extensions": ["uvt","uvvt"] + }, + "application/vnd.dece.unspecified": { + "source": "iana", + "extensions": ["uvx","uvvx"] + }, + "application/vnd.dece.zip": { + "source": "iana", + "extensions": ["uvz","uvvz"] + }, + "application/vnd.denovo.fcselayout-link": { + "source": "iana", + "extensions": ["fe_launch"] + }, + "application/vnd.desmume.movie": { + "source": "iana" + }, + "application/vnd.dir-bi.plate-dl-nosuffix": { + "source": "iana" + }, + "application/vnd.dm.delegation+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.dna": { + "source": "iana", + "extensions": ["dna"] + }, + "application/vnd.document+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.dolby.mlp": { + "source": "apache", + "extensions": ["mlp"] + }, + "application/vnd.dolby.mobile.1": { + "source": "iana" + }, + "application/vnd.dolby.mobile.2": { + "source": "iana" + }, + "application/vnd.doremir.scorecloud-binary-document": { + "source": "iana" + }, + "application/vnd.dpgraph": { + "source": "iana", + "extensions": ["dpg"] + }, + "application/vnd.dreamfactory": { + "source": "iana", + "extensions": ["dfac"] + }, + "application/vnd.drive+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.ds-keypoint": { + "source": "apache", + "extensions": ["kpxx"] + }, + "application/vnd.dtg.local": { + "source": "iana" + }, + "application/vnd.dtg.local.flash": { + "source": "iana" + }, + "application/vnd.dtg.local.html": { + "source": "iana" + }, + "application/vnd.dvb.ait": { + "source": "iana", + "extensions": ["ait"] + }, + "application/vnd.dvb.dvbisl+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.dvb.dvbj": { + "source": "iana" + }, + "application/vnd.dvb.esgcontainer": { + "source": "iana" + }, + "application/vnd.dvb.ipdcdftnotifaccess": { + "source": "iana" + }, + "application/vnd.dvb.ipdcesgaccess": { + "source": "iana" + }, + "application/vnd.dvb.ipdcesgaccess2": { + "source": "iana" + }, + "application/vnd.dvb.ipdcesgpdd": { + "source": "iana" + }, + "application/vnd.dvb.ipdcroaming": { + "source": "iana" + }, + "application/vnd.dvb.iptv.alfec-base": { + "source": "iana" + }, + "application/vnd.dvb.iptv.alfec-enhancement": { + "source": "iana" + }, + "application/vnd.dvb.notif-aggregate-root+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.dvb.notif-container+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.dvb.notif-generic+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.dvb.notif-ia-msglist+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.dvb.notif-ia-registration-request+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.dvb.notif-ia-registration-response+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.dvb.notif-init+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.dvb.pfr": { + "source": "iana" + }, + "application/vnd.dvb.service": { + "source": "iana", + "extensions": ["svc"] + }, + "application/vnd.dxr": { + "source": "iana" + }, + "application/vnd.dynageo": { + "source": "iana", + "extensions": ["geo"] + }, + "application/vnd.dzr": { + "source": "iana" + }, + "application/vnd.easykaraoke.cdgdownload": { + "source": "iana" + }, + "application/vnd.ecdis-update": { + "source": "iana" + }, + "application/vnd.ecip.rlp": { + "source": "iana" + }, + "application/vnd.eclipse.ditto+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.ecowin.chart": { + "source": "iana", + "extensions": ["mag"] + }, + "application/vnd.ecowin.filerequest": { + "source": "iana" + }, + "application/vnd.ecowin.fileupdate": { + "source": "iana" + }, + "application/vnd.ecowin.series": { + "source": "iana" + }, + "application/vnd.ecowin.seriesrequest": { + "source": "iana" + }, + "application/vnd.ecowin.seriesupdate": { + "source": "iana" + }, + "application/vnd.efi.img": { + "source": "iana" + }, + "application/vnd.efi.iso": { + "source": "iana" + }, + "application/vnd.emclient.accessrequest+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.enliven": { + "source": "iana", + "extensions": ["nml"] + }, + "application/vnd.enphase.envoy": { + "source": "iana" + }, + "application/vnd.eprints.data+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.epson.esf": { + "source": "iana", + "extensions": ["esf"] + }, + "application/vnd.epson.msf": { + "source": "iana", + "extensions": ["msf"] + }, + "application/vnd.epson.quickanime": { + "source": "iana", + "extensions": ["qam"] + }, + "application/vnd.epson.salt": { + "source": "iana", + "extensions": ["slt"] + }, + "application/vnd.epson.ssf": { + "source": "iana", + "extensions": ["ssf"] + }, + "application/vnd.ericsson.quickcall": { + "source": "iana" + }, + "application/vnd.espass-espass+zip": { + "source": "iana", + "compressible": false + }, + "application/vnd.eszigno3+xml": { + "source": "iana", + "compressible": true, + "extensions": ["es3","et3"] + }, + "application/vnd.etsi.aoc+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.etsi.asic-e+zip": { + "source": "iana", + "compressible": false + }, + "application/vnd.etsi.asic-s+zip": { + "source": "iana", + "compressible": false + }, + "application/vnd.etsi.cug+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.etsi.iptvcommand+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.etsi.iptvdiscovery+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.etsi.iptvprofile+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.etsi.iptvsad-bc+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.etsi.iptvsad-cod+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.etsi.iptvsad-npvr+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.etsi.iptvservice+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.etsi.iptvsync+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.etsi.iptvueprofile+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.etsi.mcid+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.etsi.mheg5": { + "source": "iana" + }, + "application/vnd.etsi.overload-control-policy-dataset+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.etsi.pstn+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.etsi.sci+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.etsi.simservs+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.etsi.timestamp-token": { + "source": "iana" + }, + "application/vnd.etsi.tsl+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.etsi.tsl.der": { + "source": "iana" + }, + "application/vnd.eu.kasparian.car+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.eudora.data": { + "source": "iana" + }, + "application/vnd.evolv.ecig.profile": { + "source": "iana" + }, + "application/vnd.evolv.ecig.settings": { + "source": "iana" + }, + "application/vnd.evolv.ecig.theme": { + "source": "iana" + }, + "application/vnd.exstream-empower+zip": { + "source": "iana", + "compressible": false + }, + "application/vnd.exstream-package": { + "source": "iana" + }, + "application/vnd.ezpix-album": { + "source": "iana", + "extensions": ["ez2"] + }, + "application/vnd.ezpix-package": { + "source": "iana", + "extensions": ["ez3"] + }, + "application/vnd.f-secure.mobile": { + "source": "iana" + }, + "application/vnd.familysearch.gedcom+zip": { + "source": "iana", + "compressible": false + }, + "application/vnd.fastcopy-disk-image": { + "source": "iana" + }, + "application/vnd.fdf": { + "source": "iana", + "extensions": ["fdf"] + }, + "application/vnd.fdsn.mseed": { + "source": "iana", + "extensions": ["mseed"] + }, + "application/vnd.fdsn.seed": { + "source": "iana", + "extensions": ["seed","dataless"] + }, + "application/vnd.ffsns": { + "source": "iana" + }, + "application/vnd.ficlab.flb+zip": { + "source": "iana", + "compressible": false + }, + "application/vnd.filmit.zfc": { + "source": "iana" + }, + "application/vnd.fints": { + "source": "iana" + }, + "application/vnd.firemonkeys.cloudcell": { + "source": "iana" + }, + "application/vnd.flographit": { + "source": "iana", + "extensions": ["gph"] + }, + "application/vnd.fluxtime.clip": { + "source": "iana", + "extensions": ["ftc"] + }, + "application/vnd.font-fontforge-sfd": { + "source": "iana" + }, + "application/vnd.framemaker": { + "source": "iana", + "extensions": ["fm","frame","maker","book"] + }, + "application/vnd.frogans.fnc": { + "source": "iana", + "extensions": ["fnc"] + }, + "application/vnd.frogans.ltf": { + "source": "iana", + "extensions": ["ltf"] + }, + "application/vnd.fsc.weblaunch": { + "source": "iana", + "extensions": ["fsc"] + }, + "application/vnd.fujifilm.fb.docuworks": { + "source": "iana" + }, + "application/vnd.fujifilm.fb.docuworks.binder": { + "source": "iana" + }, + "application/vnd.fujifilm.fb.docuworks.container": { + "source": "iana" + }, + "application/vnd.fujifilm.fb.jfi+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.fujitsu.oasys": { + "source": "iana", + "extensions": ["oas"] + }, + "application/vnd.fujitsu.oasys2": { + "source": "iana", + "extensions": ["oa2"] + }, + "application/vnd.fujitsu.oasys3": { + "source": "iana", + "extensions": ["oa3"] + }, + "application/vnd.fujitsu.oasysgp": { + "source": "iana", + "extensions": ["fg5"] + }, + "application/vnd.fujitsu.oasysprs": { + "source": "iana", + "extensions": ["bh2"] + }, + "application/vnd.fujixerox.art-ex": { + "source": "iana" + }, + "application/vnd.fujixerox.art4": { + "source": "iana" + }, + "application/vnd.fujixerox.ddd": { + "source": "iana", + "extensions": ["ddd"] + }, + "application/vnd.fujixerox.docuworks": { + "source": "iana", + "extensions": ["xdw"] + }, + "application/vnd.fujixerox.docuworks.binder": { + "source": "iana", + "extensions": ["xbd"] + }, + "application/vnd.fujixerox.docuworks.container": { + "source": "iana" + }, + "application/vnd.fujixerox.hbpl": { + "source": "iana" + }, + "application/vnd.fut-misnet": { + "source": "iana" + }, + "application/vnd.futoin+cbor": { + "source": "iana" + }, + "application/vnd.futoin+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.fuzzysheet": { + "source": "iana", + "extensions": ["fzs"] + }, + "application/vnd.genomatix.tuxedo": { + "source": "iana", + "extensions": ["txd"] + }, + "application/vnd.gentics.grd+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.geo+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.geocube+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.geogebra.file": { + "source": "iana", + "extensions": ["ggb"] + }, + "application/vnd.geogebra.slides": { + "source": "iana" + }, + "application/vnd.geogebra.tool": { + "source": "iana", + "extensions": ["ggt"] + }, + "application/vnd.geometry-explorer": { + "source": "iana", + "extensions": ["gex","gre"] + }, + "application/vnd.geonext": { + "source": "iana", + "extensions": ["gxt"] + }, + "application/vnd.geoplan": { + "source": "iana", + "extensions": ["g2w"] + }, + "application/vnd.geospace": { + "source": "iana", + "extensions": ["g3w"] + }, + "application/vnd.gerber": { + "source": "iana" + }, + "application/vnd.globalplatform.card-content-mgt": { + "source": "iana" + }, + "application/vnd.globalplatform.card-content-mgt-response": { + "source": "iana" + }, + "application/vnd.gmx": { + "source": "iana", + "extensions": ["gmx"] + }, + "application/vnd.google-apps.document": { + "compressible": false, + "extensions": ["gdoc"] + }, + "application/vnd.google-apps.presentation": { + "compressible": false, + "extensions": ["gslides"] + }, + "application/vnd.google-apps.spreadsheet": { + "compressible": false, + "extensions": ["gsheet"] + }, + "application/vnd.google-earth.kml+xml": { + "source": "iana", + "compressible": true, + "extensions": ["kml"] + }, + "application/vnd.google-earth.kmz": { + "source": "iana", + "compressible": false, + "extensions": ["kmz"] + }, + "application/vnd.gov.sk.e-form+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.gov.sk.e-form+zip": { + "source": "iana", + "compressible": false + }, + "application/vnd.gov.sk.xmldatacontainer+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.grafeq": { + "source": "iana", + "extensions": ["gqf","gqs"] + }, + "application/vnd.gridmp": { + "source": "iana" + }, + "application/vnd.groove-account": { + "source": "iana", + "extensions": ["gac"] + }, + "application/vnd.groove-help": { + "source": "iana", + "extensions": ["ghf"] + }, + "application/vnd.groove-identity-message": { + "source": "iana", + "extensions": ["gim"] + }, + "application/vnd.groove-injector": { + "source": "iana", + "extensions": ["grv"] + }, + "application/vnd.groove-tool-message": { + "source": "iana", + "extensions": ["gtm"] + }, + "application/vnd.groove-tool-template": { + "source": "iana", + "extensions": ["tpl"] + }, + "application/vnd.groove-vcard": { + "source": "iana", + "extensions": ["vcg"] + }, + "application/vnd.hal+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.hal+xml": { + "source": "iana", + "compressible": true, + "extensions": ["hal"] + }, + "application/vnd.handheld-entertainment+xml": { + "source": "iana", + "compressible": true, + "extensions": ["zmm"] + }, + "application/vnd.hbci": { + "source": "iana", + "extensions": ["hbci"] + }, + "application/vnd.hc+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.hcl-bireports": { + "source": "iana" + }, + "application/vnd.hdt": { + "source": "iana" + }, + "application/vnd.heroku+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.hhe.lesson-player": { + "source": "iana", + "extensions": ["les"] + }, + "application/vnd.hl7cda+xml": { + "source": "iana", + "charset": "UTF-8", + "compressible": true + }, + "application/vnd.hl7v2+xml": { + "source": "iana", + "charset": "UTF-8", + "compressible": true + }, + "application/vnd.hp-hpgl": { + "source": "iana", + "extensions": ["hpgl"] + }, + "application/vnd.hp-hpid": { + "source": "iana", + "extensions": ["hpid"] + }, + "application/vnd.hp-hps": { + "source": "iana", + "extensions": ["hps"] + }, + "application/vnd.hp-jlyt": { + "source": "iana", + "extensions": ["jlt"] + }, + "application/vnd.hp-pcl": { + "source": "iana", + "extensions": ["pcl"] + }, + "application/vnd.hp-pclxl": { + "source": "iana", + "extensions": ["pclxl"] + }, + "application/vnd.httphone": { + "source": "iana" + }, + "application/vnd.hydrostatix.sof-data": { + "source": "iana", + "extensions": ["sfd-hdstx"] + }, + "application/vnd.hyper+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.hyper-item+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.hyperdrive+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.hzn-3d-crossword": { + "source": "iana" + }, + "application/vnd.ibm.afplinedata": { + "source": "iana" + }, + "application/vnd.ibm.electronic-media": { + "source": "iana" + }, + "application/vnd.ibm.minipay": { + "source": "iana", + "extensions": ["mpy"] + }, + "application/vnd.ibm.modcap": { + "source": "iana", + "extensions": ["afp","listafp","list3820"] + }, + "application/vnd.ibm.rights-management": { + "source": "iana", + "extensions": ["irm"] + }, + "application/vnd.ibm.secure-container": { + "source": "iana", + "extensions": ["sc"] + }, + "application/vnd.iccprofile": { + "source": "iana", + "extensions": ["icc","icm"] + }, + "application/vnd.ieee.1905": { + "source": "iana" + }, + "application/vnd.igloader": { + "source": "iana", + "extensions": ["igl"] + }, + "application/vnd.imagemeter.folder+zip": { + "source": "iana", + "compressible": false + }, + "application/vnd.imagemeter.image+zip": { + "source": "iana", + "compressible": false + }, + "application/vnd.immervision-ivp": { + "source": "iana", + "extensions": ["ivp"] + }, + "application/vnd.immervision-ivu": { + "source": "iana", + "extensions": ["ivu"] + }, + "application/vnd.ims.imsccv1p1": { + "source": "iana" + }, + "application/vnd.ims.imsccv1p2": { + "source": "iana" + }, + "application/vnd.ims.imsccv1p3": { + "source": "iana" + }, + "application/vnd.ims.lis.v2.result+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.ims.lti.v2.toolconsumerprofile+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.ims.lti.v2.toolproxy+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.ims.lti.v2.toolproxy.id+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.ims.lti.v2.toolsettings+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.ims.lti.v2.toolsettings.simple+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.informedcontrol.rms+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.informix-visionary": { + "source": "iana" + }, + "application/vnd.infotech.project": { + "source": "iana" + }, + "application/vnd.infotech.project+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.innopath.wamp.notification": { + "source": "iana" + }, + "application/vnd.insors.igm": { + "source": "iana", + "extensions": ["igm"] + }, + "application/vnd.intercon.formnet": { + "source": "iana", + "extensions": ["xpw","xpx"] + }, + "application/vnd.intergeo": { + "source": "iana", + "extensions": ["i2g"] + }, + "application/vnd.intertrust.digibox": { + "source": "iana" + }, + "application/vnd.intertrust.nncp": { + "source": "iana" + }, + "application/vnd.intu.qbo": { + "source": "iana", + "extensions": ["qbo"] + }, + "application/vnd.intu.qfx": { + "source": "iana", + "extensions": ["qfx"] + }, + "application/vnd.iptc.g2.catalogitem+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.iptc.g2.conceptitem+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.iptc.g2.knowledgeitem+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.iptc.g2.newsitem+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.iptc.g2.newsmessage+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.iptc.g2.packageitem+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.iptc.g2.planningitem+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.ipunplugged.rcprofile": { + "source": "iana", + "extensions": ["rcprofile"] + }, + "application/vnd.irepository.package+xml": { + "source": "iana", + "compressible": true, + "extensions": ["irp"] + }, + "application/vnd.is-xpr": { + "source": "iana", + "extensions": ["xpr"] + }, + "application/vnd.isac.fcs": { + "source": "iana", + "extensions": ["fcs"] + }, + "application/vnd.iso11783-10+zip": { + "source": "iana", + "compressible": false + }, + "application/vnd.jam": { + "source": "iana", + "extensions": ["jam"] + }, + "application/vnd.japannet-directory-service": { + "source": "iana" + }, + "application/vnd.japannet-jpnstore-wakeup": { + "source": "iana" + }, + "application/vnd.japannet-payment-wakeup": { + "source": "iana" + }, + "application/vnd.japannet-registration": { + "source": "iana" + }, + "application/vnd.japannet-registration-wakeup": { + "source": "iana" + }, + "application/vnd.japannet-setstore-wakeup": { + "source": "iana" + }, + "application/vnd.japannet-verification": { + "source": "iana" + }, + "application/vnd.japannet-verification-wakeup": { + "source": "iana" + }, + "application/vnd.jcp.javame.midlet-rms": { + "source": "iana", + "extensions": ["rms"] + }, + "application/vnd.jisp": { + "source": "iana", + "extensions": ["jisp"] + }, + "application/vnd.joost.joda-archive": { + "source": "iana", + "extensions": ["joda"] + }, + "application/vnd.jsk.isdn-ngn": { + "source": "iana" + }, + "application/vnd.kahootz": { + "source": "iana", + "extensions": ["ktz","ktr"] + }, + "application/vnd.kde.karbon": { + "source": "iana", + "extensions": ["karbon"] + }, + "application/vnd.kde.kchart": { + "source": "iana", + "extensions": ["chrt"] + }, + "application/vnd.kde.kformula": { + "source": "iana", + "extensions": ["kfo"] + }, + "application/vnd.kde.kivio": { + "source": "iana", + "extensions": ["flw"] + }, + "application/vnd.kde.kontour": { + "source": "iana", + "extensions": ["kon"] + }, + "application/vnd.kde.kpresenter": { + "source": "iana", + "extensions": ["kpr","kpt"] + }, + "application/vnd.kde.kspread": { + "source": "iana", + "extensions": ["ksp"] + }, + "application/vnd.kde.kword": { + "source": "iana", + "extensions": ["kwd","kwt"] + }, + "application/vnd.kenameaapp": { + "source": "iana", + "extensions": ["htke"] + }, + "application/vnd.kidspiration": { + "source": "iana", + "extensions": ["kia"] + }, + "application/vnd.kinar": { + "source": "iana", + "extensions": ["kne","knp"] + }, + "application/vnd.koan": { + "source": "iana", + "extensions": ["skp","skd","skt","skm"] + }, + "application/vnd.kodak-descriptor": { + "source": "iana", + "extensions": ["sse"] + }, + "application/vnd.las": { + "source": "iana" + }, + "application/vnd.las.las+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.las.las+xml": { + "source": "iana", + "compressible": true, + "extensions": ["lasxml"] + }, + "application/vnd.laszip": { + "source": "iana" + }, + "application/vnd.leap+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.liberty-request+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.llamagraphics.life-balance.desktop": { + "source": "iana", + "extensions": ["lbd"] + }, + "application/vnd.llamagraphics.life-balance.exchange+xml": { + "source": "iana", + "compressible": true, + "extensions": ["lbe"] + }, + "application/vnd.logipipe.circuit+zip": { + "source": "iana", + "compressible": false + }, + "application/vnd.loom": { + "source": "iana" + }, + "application/vnd.lotus-1-2-3": { + "source": "iana", + "extensions": ["123"] + }, + "application/vnd.lotus-approach": { + "source": "iana", + "extensions": ["apr"] + }, + "application/vnd.lotus-freelance": { + "source": "iana", + "extensions": ["pre"] + }, + "application/vnd.lotus-notes": { + "source": "iana", + "extensions": ["nsf"] + }, + "application/vnd.lotus-organizer": { + "source": "iana", + "extensions": ["org"] + }, + "application/vnd.lotus-screencam": { + "source": "iana", + "extensions": ["scm"] + }, + "application/vnd.lotus-wordpro": { + "source": "iana", + "extensions": ["lwp"] + }, + "application/vnd.macports.portpkg": { + "source": "iana", + "extensions": ["portpkg"] + }, + "application/vnd.mapbox-vector-tile": { + "source": "iana", + "extensions": ["mvt"] + }, + "application/vnd.marlin.drm.actiontoken+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.marlin.drm.conftoken+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.marlin.drm.license+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.marlin.drm.mdcf": { + "source": "iana" + }, + "application/vnd.mason+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.maxar.archive.3tz+zip": { + "source": "iana", + "compressible": false + }, + "application/vnd.maxmind.maxmind-db": { + "source": "iana" + }, + "application/vnd.mcd": { + "source": "iana", + "extensions": ["mcd"] + }, + "application/vnd.medcalcdata": { + "source": "iana", + "extensions": ["mc1"] + }, + "application/vnd.mediastation.cdkey": { + "source": "iana", + "extensions": ["cdkey"] + }, + "application/vnd.meridian-slingshot": { + "source": "iana" + }, + "application/vnd.mfer": { + "source": "iana", + "extensions": ["mwf"] + }, + "application/vnd.mfmp": { + "source": "iana", + "extensions": ["mfm"] + }, + "application/vnd.micro+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.micrografx.flo": { + "source": "iana", + "extensions": ["flo"] + }, + "application/vnd.micrografx.igx": { + "source": "iana", + "extensions": ["igx"] + }, + "application/vnd.microsoft.portable-executable": { + "source": "iana" + }, + "application/vnd.microsoft.windows.thumbnail-cache": { + "source": "iana" + }, + "application/vnd.miele+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.mif": { + "source": "iana", + "extensions": ["mif"] + }, + "application/vnd.minisoft-hp3000-save": { + "source": "iana" + }, + "application/vnd.mitsubishi.misty-guard.trustweb": { + "source": "iana" + }, + "application/vnd.mobius.daf": { + "source": "iana", + "extensions": ["daf"] + }, + "application/vnd.mobius.dis": { + "source": "iana", + "extensions": ["dis"] + }, + "application/vnd.mobius.mbk": { + "source": "iana", + "extensions": ["mbk"] + }, + "application/vnd.mobius.mqy": { + "source": "iana", + "extensions": ["mqy"] + }, + "application/vnd.mobius.msl": { + "source": "iana", + "extensions": ["msl"] + }, + "application/vnd.mobius.plc": { + "source": "iana", + "extensions": ["plc"] + }, + "application/vnd.mobius.txf": { + "source": "iana", + "extensions": ["txf"] + }, + "application/vnd.mophun.application": { + "source": "iana", + "extensions": ["mpn"] + }, + "application/vnd.mophun.certificate": { + "source": "iana", + "extensions": ["mpc"] + }, + "application/vnd.motorola.flexsuite": { + "source": "iana" + }, + "application/vnd.motorola.flexsuite.adsi": { + "source": "iana" + }, + "application/vnd.motorola.flexsuite.fis": { + "source": "iana" + }, + "application/vnd.motorola.flexsuite.gotap": { + "source": "iana" + }, + "application/vnd.motorola.flexsuite.kmr": { + "source": "iana" + }, + "application/vnd.motorola.flexsuite.ttc": { + "source": "iana" + }, + "application/vnd.motorola.flexsuite.wem": { + "source": "iana" + }, + "application/vnd.motorola.iprm": { + "source": "iana" + }, + "application/vnd.mozilla.xul+xml": { + "source": "iana", + "compressible": true, + "extensions": ["xul"] + }, + "application/vnd.ms-3mfdocument": { + "source": "iana" + }, + "application/vnd.ms-artgalry": { + "source": "iana", + "extensions": ["cil"] + }, + "application/vnd.ms-asf": { + "source": "iana" + }, + "application/vnd.ms-cab-compressed": { + "source": "iana", + "extensions": ["cab"] + }, + "application/vnd.ms-color.iccprofile": { + "source": "apache" + }, + "application/vnd.ms-excel": { + "source": "iana", + "compressible": false, + "extensions": ["xls","xlm","xla","xlc","xlt","xlw"] + }, + "application/vnd.ms-excel.addin.macroenabled.12": { + "source": "iana", + "extensions": ["xlam"] + }, + "application/vnd.ms-excel.sheet.binary.macroenabled.12": { + "source": "iana", + "extensions": ["xlsb"] + }, + "application/vnd.ms-excel.sheet.macroenabled.12": { + "source": "iana", + "extensions": ["xlsm"] + }, + "application/vnd.ms-excel.template.macroenabled.12": { + "source": "iana", + "extensions": ["xltm"] + }, + "application/vnd.ms-fontobject": { + "source": "iana", + "compressible": true, + "extensions": ["eot"] + }, + "application/vnd.ms-htmlhelp": { + "source": "iana", + "extensions": ["chm"] + }, + "application/vnd.ms-ims": { + "source": "iana", + "extensions": ["ims"] + }, + "application/vnd.ms-lrm": { + "source": "iana", + "extensions": ["lrm"] + }, + "application/vnd.ms-office.activex+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.ms-officetheme": { + "source": "iana", + "extensions": ["thmx"] + }, + "application/vnd.ms-opentype": { + "source": "apache", + "compressible": true + }, + "application/vnd.ms-outlook": { + "compressible": false, + "extensions": ["msg"] + }, + "application/vnd.ms-package.obfuscated-opentype": { + "source": "apache" + }, + "application/vnd.ms-pki.seccat": { + "source": "apache", + "extensions": ["cat"] + }, + "application/vnd.ms-pki.stl": { + "source": "apache", + "extensions": ["stl"] + }, + "application/vnd.ms-playready.initiator+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.ms-powerpoint": { + "source": "iana", + "compressible": false, + "extensions": ["ppt","pps","pot"] + }, + "application/vnd.ms-powerpoint.addin.macroenabled.12": { + "source": "iana", + "extensions": ["ppam"] + }, + "application/vnd.ms-powerpoint.presentation.macroenabled.12": { + "source": "iana", + "extensions": ["pptm"] + }, + "application/vnd.ms-powerpoint.slide.macroenabled.12": { + "source": "iana", + "extensions": ["sldm"] + }, + "application/vnd.ms-powerpoint.slideshow.macroenabled.12": { + "source": "iana", + "extensions": ["ppsm"] + }, + "application/vnd.ms-powerpoint.template.macroenabled.12": { + "source": "iana", + "extensions": ["potm"] + }, + "application/vnd.ms-printdevicecapabilities+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.ms-printing.printticket+xml": { + "source": "apache", + "compressible": true + }, + "application/vnd.ms-printschematicket+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.ms-project": { + "source": "iana", + "extensions": ["mpp","mpt"] + }, + "application/vnd.ms-tnef": { + "source": "iana" + }, + "application/vnd.ms-windows.devicepairing": { + "source": "iana" + }, + "application/vnd.ms-windows.nwprinting.oob": { + "source": "iana" + }, + "application/vnd.ms-windows.printerpairing": { + "source": "iana" + }, + "application/vnd.ms-windows.wsd.oob": { + "source": "iana" + }, + "application/vnd.ms-wmdrm.lic-chlg-req": { + "source": "iana" + }, + "application/vnd.ms-wmdrm.lic-resp": { + "source": "iana" + }, + "application/vnd.ms-wmdrm.meter-chlg-req": { + "source": "iana" + }, + "application/vnd.ms-wmdrm.meter-resp": { + "source": "iana" + }, + "application/vnd.ms-word.document.macroenabled.12": { + "source": "iana", + "extensions": ["docm"] + }, + "application/vnd.ms-word.template.macroenabled.12": { + "source": "iana", + "extensions": ["dotm"] + }, + "application/vnd.ms-works": { + "source": "iana", + "extensions": ["wps","wks","wcm","wdb"] + }, + "application/vnd.ms-wpl": { + "source": "iana", + "extensions": ["wpl"] + }, + "application/vnd.ms-xpsdocument": { + "source": "iana", + "compressible": false, + "extensions": ["xps"] + }, + "application/vnd.msa-disk-image": { + "source": "iana" + }, + "application/vnd.mseq": { + "source": "iana", + "extensions": ["mseq"] + }, + "application/vnd.msign": { + "source": "iana" + }, + "application/vnd.multiad.creator": { + "source": "iana" + }, + "application/vnd.multiad.creator.cif": { + "source": "iana" + }, + "application/vnd.music-niff": { + "source": "iana" + }, + "application/vnd.musician": { + "source": "iana", + "extensions": ["mus"] + }, + "application/vnd.muvee.style": { + "source": "iana", + "extensions": ["msty"] + }, + "application/vnd.mynfc": { + "source": "iana", + "extensions": ["taglet"] + }, + "application/vnd.nacamar.ybrid+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.ncd.control": { + "source": "iana" + }, + "application/vnd.ncd.reference": { + "source": "iana" + }, + "application/vnd.nearst.inv+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.nebumind.line": { + "source": "iana" + }, + "application/vnd.nervana": { + "source": "iana" + }, + "application/vnd.netfpx": { + "source": "iana" + }, + "application/vnd.neurolanguage.nlu": { + "source": "iana", + "extensions": ["nlu"] + }, + "application/vnd.nimn": { + "source": "iana" + }, + "application/vnd.nintendo.nitro.rom": { + "source": "iana" + }, + "application/vnd.nintendo.snes.rom": { + "source": "iana" + }, + "application/vnd.nitf": { + "source": "iana", + "extensions": ["ntf","nitf"] + }, + "application/vnd.noblenet-directory": { + "source": "iana", + "extensions": ["nnd"] + }, + "application/vnd.noblenet-sealer": { + "source": "iana", + "extensions": ["nns"] + }, + "application/vnd.noblenet-web": { + "source": "iana", + "extensions": ["nnw"] + }, + "application/vnd.nokia.catalogs": { + "source": "iana" + }, + "application/vnd.nokia.conml+wbxml": { + "source": "iana" + }, + "application/vnd.nokia.conml+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.nokia.iptv.config+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.nokia.isds-radio-presets": { + "source": "iana" + }, + "application/vnd.nokia.landmark+wbxml": { + "source": "iana" + }, + "application/vnd.nokia.landmark+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.nokia.landmarkcollection+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.nokia.n-gage.ac+xml": { + "source": "iana", + "compressible": true, + "extensions": ["ac"] + }, + "application/vnd.nokia.n-gage.data": { + "source": "iana", + "extensions": ["ngdat"] + }, + "application/vnd.nokia.n-gage.symbian.install": { + "source": "iana", + "extensions": ["n-gage"] + }, + "application/vnd.nokia.ncd": { + "source": "iana" + }, + "application/vnd.nokia.pcd+wbxml": { + "source": "iana" + }, + "application/vnd.nokia.pcd+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.nokia.radio-preset": { + "source": "iana", + "extensions": ["rpst"] + }, + "application/vnd.nokia.radio-presets": { + "source": "iana", + "extensions": ["rpss"] + }, + "application/vnd.novadigm.edm": { + "source": "iana", + "extensions": ["edm"] + }, + "application/vnd.novadigm.edx": { + "source": "iana", + "extensions": ["edx"] + }, + "application/vnd.novadigm.ext": { + "source": "iana", + "extensions": ["ext"] + }, + "application/vnd.ntt-local.content-share": { + "source": "iana" + }, + "application/vnd.ntt-local.file-transfer": { + "source": "iana" + }, + "application/vnd.ntt-local.ogw_remote-access": { + "source": "iana" + }, + "application/vnd.ntt-local.sip-ta_remote": { + "source": "iana" + }, + "application/vnd.ntt-local.sip-ta_tcp_stream": { + "source": "iana" + }, + "application/vnd.oasis.opendocument.chart": { + "source": "iana", + "extensions": ["odc"] + }, + "application/vnd.oasis.opendocument.chart-template": { + "source": "iana", + "extensions": ["otc"] + }, + "application/vnd.oasis.opendocument.database": { + "source": "iana", + "extensions": ["odb"] + }, + "application/vnd.oasis.opendocument.formula": { + "source": "iana", + "extensions": ["odf"] + }, + "application/vnd.oasis.opendocument.formula-template": { + "source": "iana", + "extensions": ["odft"] + }, + "application/vnd.oasis.opendocument.graphics": { + "source": "iana", + "compressible": false, + "extensions": ["odg"] + }, + "application/vnd.oasis.opendocument.graphics-template": { + "source": "iana", + "extensions": ["otg"] + }, + "application/vnd.oasis.opendocument.image": { + "source": "iana", + "extensions": ["odi"] + }, + "application/vnd.oasis.opendocument.image-template": { + "source": "iana", + "extensions": ["oti"] + }, + "application/vnd.oasis.opendocument.presentation": { + "source": "iana", + "compressible": false, + "extensions": ["odp"] + }, + "application/vnd.oasis.opendocument.presentation-template": { + "source": "iana", + "extensions": ["otp"] + }, + "application/vnd.oasis.opendocument.spreadsheet": { + "source": "iana", + "compressible": false, + "extensions": ["ods"] + }, + "application/vnd.oasis.opendocument.spreadsheet-template": { + "source": "iana", + "extensions": ["ots"] + }, + "application/vnd.oasis.opendocument.text": { + "source": "iana", + "compressible": false, + "extensions": ["odt"] + }, + "application/vnd.oasis.opendocument.text-master": { + "source": "iana", + "extensions": ["odm"] + }, + "application/vnd.oasis.opendocument.text-template": { + "source": "iana", + "extensions": ["ott"] + }, + "application/vnd.oasis.opendocument.text-web": { + "source": "iana", + "extensions": ["oth"] + }, + "application/vnd.obn": { + "source": "iana" + }, + "application/vnd.ocf+cbor": { + "source": "iana" + }, + "application/vnd.oci.image.manifest.v1+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.oftn.l10n+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.oipf.contentaccessdownload+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.oipf.contentaccessstreaming+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.oipf.cspg-hexbinary": { + "source": "iana" + }, + "application/vnd.oipf.dae.svg+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.oipf.dae.xhtml+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.oipf.mippvcontrolmessage+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.oipf.pae.gem": { + "source": "iana" + }, + "application/vnd.oipf.spdiscovery+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.oipf.spdlist+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.oipf.ueprofile+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.oipf.userprofile+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.olpc-sugar": { + "source": "iana", + "extensions": ["xo"] + }, + "application/vnd.oma-scws-config": { + "source": "iana" + }, + "application/vnd.oma-scws-http-request": { + "source": "iana" + }, + "application/vnd.oma-scws-http-response": { + "source": "iana" + }, + "application/vnd.oma.bcast.associated-procedure-parameter+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.oma.bcast.drm-trigger+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.oma.bcast.imd+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.oma.bcast.ltkm": { + "source": "iana" + }, + "application/vnd.oma.bcast.notification+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.oma.bcast.provisioningtrigger": { + "source": "iana" + }, + "application/vnd.oma.bcast.sgboot": { + "source": "iana" + }, + "application/vnd.oma.bcast.sgdd+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.oma.bcast.sgdu": { + "source": "iana" + }, + "application/vnd.oma.bcast.simple-symbol-container": { + "source": "iana" + }, + "application/vnd.oma.bcast.smartcard-trigger+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.oma.bcast.sprov+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.oma.bcast.stkm": { + "source": "iana" + }, + "application/vnd.oma.cab-address-book+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.oma.cab-feature-handler+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.oma.cab-pcc+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.oma.cab-subs-invite+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.oma.cab-user-prefs+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.oma.dcd": { + "source": "iana" + }, + "application/vnd.oma.dcdc": { + "source": "iana" + }, + "application/vnd.oma.dd2+xml": { + "source": "iana", + "compressible": true, + "extensions": ["dd2"] + }, + "application/vnd.oma.drm.risd+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.oma.group-usage-list+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.oma.lwm2m+cbor": { + "source": "iana" + }, + "application/vnd.oma.lwm2m+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.oma.lwm2m+tlv": { + "source": "iana" + }, + "application/vnd.oma.pal+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.oma.poc.detailed-progress-report+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.oma.poc.final-report+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.oma.poc.groups+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.oma.poc.invocation-descriptor+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.oma.poc.optimized-progress-report+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.oma.push": { + "source": "iana" + }, + "application/vnd.oma.scidm.messages+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.oma.xcap-directory+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.omads-email+xml": { + "source": "iana", + "charset": "UTF-8", + "compressible": true + }, + "application/vnd.omads-file+xml": { + "source": "iana", + "charset": "UTF-8", + "compressible": true + }, + "application/vnd.omads-folder+xml": { + "source": "iana", + "charset": "UTF-8", + "compressible": true + }, + "application/vnd.omaloc-supl-init": { + "source": "iana" + }, + "application/vnd.onepager": { + "source": "iana" + }, + "application/vnd.onepagertamp": { + "source": "iana" + }, + "application/vnd.onepagertamx": { + "source": "iana" + }, + "application/vnd.onepagertat": { + "source": "iana" + }, + "application/vnd.onepagertatp": { + "source": "iana" + }, + "application/vnd.onepagertatx": { + "source": "iana" + }, + "application/vnd.openblox.game+xml": { + "source": "iana", + "compressible": true, + "extensions": ["obgx"] + }, + "application/vnd.openblox.game-binary": { + "source": "iana" + }, + "application/vnd.openeye.oeb": { + "source": "iana" + }, + "application/vnd.openofficeorg.extension": { + "source": "apache", + "extensions": ["oxt"] + }, + "application/vnd.openstreetmap.data+xml": { + "source": "iana", + "compressible": true, + "extensions": ["osm"] + }, + "application/vnd.opentimestamps.ots": { + "source": "iana" + }, + "application/vnd.openxmlformats-officedocument.custom-properties+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.openxmlformats-officedocument.customxmlproperties+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.openxmlformats-officedocument.drawing+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.openxmlformats-officedocument.drawingml.chart+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.openxmlformats-officedocument.drawingml.chartshapes+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.openxmlformats-officedocument.drawingml.diagramcolors+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.openxmlformats-officedocument.drawingml.diagramdata+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.openxmlformats-officedocument.drawingml.diagramlayout+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.openxmlformats-officedocument.drawingml.diagramstyle+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.openxmlformats-officedocument.extended-properties+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.openxmlformats-officedocument.presentationml.commentauthors+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.openxmlformats-officedocument.presentationml.comments+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.openxmlformats-officedocument.presentationml.handoutmaster+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.openxmlformats-officedocument.presentationml.notesmaster+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.openxmlformats-officedocument.presentationml.notesslide+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.openxmlformats-officedocument.presentationml.presentation": { + "source": "iana", + "compressible": false, + "extensions": ["pptx"] + }, + "application/vnd.openxmlformats-officedocument.presentationml.presentation.main+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.openxmlformats-officedocument.presentationml.presprops+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.openxmlformats-officedocument.presentationml.slide": { + "source": "iana", + "extensions": ["sldx"] + }, + "application/vnd.openxmlformats-officedocument.presentationml.slide+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.openxmlformats-officedocument.presentationml.slidelayout+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.openxmlformats-officedocument.presentationml.slidemaster+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.openxmlformats-officedocument.presentationml.slideshow": { + "source": "iana", + "extensions": ["ppsx"] + }, + "application/vnd.openxmlformats-officedocument.presentationml.slideshow.main+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.openxmlformats-officedocument.presentationml.slideupdateinfo+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.openxmlformats-officedocument.presentationml.tablestyles+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.openxmlformats-officedocument.presentationml.tags+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.openxmlformats-officedocument.presentationml.template": { + "source": "iana", + "extensions": ["potx"] + }, + "application/vnd.openxmlformats-officedocument.presentationml.template.main+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.openxmlformats-officedocument.presentationml.viewprops+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.openxmlformats-officedocument.spreadsheetml.calcchain+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.openxmlformats-officedocument.spreadsheetml.chartsheet+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.openxmlformats-officedocument.spreadsheetml.comments+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.openxmlformats-officedocument.spreadsheetml.connections+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.openxmlformats-officedocument.spreadsheetml.dialogsheet+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.openxmlformats-officedocument.spreadsheetml.externallink+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.openxmlformats-officedocument.spreadsheetml.pivotcachedefinition+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.openxmlformats-officedocument.spreadsheetml.pivotcacherecords+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.openxmlformats-officedocument.spreadsheetml.pivottable+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.openxmlformats-officedocument.spreadsheetml.querytable+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.openxmlformats-officedocument.spreadsheetml.revisionheaders+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.openxmlformats-officedocument.spreadsheetml.revisionlog+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.openxmlformats-officedocument.spreadsheetml.sharedstrings+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet": { + "source": "iana", + "compressible": false, + "extensions": ["xlsx"] + }, + "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.openxmlformats-officedocument.spreadsheetml.sheetmetadata+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.openxmlformats-officedocument.spreadsheetml.table+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.openxmlformats-officedocument.spreadsheetml.tablesinglecells+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.openxmlformats-officedocument.spreadsheetml.template": { + "source": "iana", + "extensions": ["xltx"] + }, + "application/vnd.openxmlformats-officedocument.spreadsheetml.template.main+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.openxmlformats-officedocument.spreadsheetml.usernames+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.openxmlformats-officedocument.spreadsheetml.volatiledependencies+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.openxmlformats-officedocument.theme+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.openxmlformats-officedocument.themeoverride+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.openxmlformats-officedocument.vmldrawing": { + "source": "iana" + }, + "application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.openxmlformats-officedocument.wordprocessingml.document": { + "source": "iana", + "compressible": false, + "extensions": ["docx"] + }, + "application/vnd.openxmlformats-officedocument.wordprocessingml.document.glossary+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.openxmlformats-officedocument.wordprocessingml.fonttable+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.openxmlformats-officedocument.wordprocessingml.template": { + "source": "iana", + "extensions": ["dotx"] + }, + "application/vnd.openxmlformats-officedocument.wordprocessingml.template.main+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.openxmlformats-officedocument.wordprocessingml.websettings+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.openxmlformats-package.core-properties+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.openxmlformats-package.digital-signature-xmlsignature+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.openxmlformats-package.relationships+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.oracle.resource+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.orange.indata": { + "source": "iana" + }, + "application/vnd.osa.netdeploy": { + "source": "iana" + }, + "application/vnd.osgeo.mapguide.package": { + "source": "iana", + "extensions": ["mgp"] + }, + "application/vnd.osgi.bundle": { + "source": "iana" + }, + "application/vnd.osgi.dp": { + "source": "iana", + "extensions": ["dp"] + }, + "application/vnd.osgi.subsystem": { + "source": "iana", + "extensions": ["esa"] + }, + "application/vnd.otps.ct-kip+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.oxli.countgraph": { + "source": "iana" + }, + "application/vnd.pagerduty+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.palm": { + "source": "iana", + "extensions": ["pdb","pqa","oprc"] + }, + "application/vnd.panoply": { + "source": "iana" + }, + "application/vnd.paos.xml": { + "source": "iana" + }, + "application/vnd.patentdive": { + "source": "iana" + }, + "application/vnd.patientecommsdoc": { + "source": "iana" + }, + "application/vnd.pawaafile": { + "source": "iana", + "extensions": ["paw"] + }, + "application/vnd.pcos": { + "source": "iana" + }, + "application/vnd.pg.format": { + "source": "iana", + "extensions": ["str"] + }, + "application/vnd.pg.osasli": { + "source": "iana", + "extensions": ["ei6"] + }, + "application/vnd.piaccess.application-licence": { + "source": "iana" + }, + "application/vnd.picsel": { + "source": "iana", + "extensions": ["efif"] + }, + "application/vnd.pmi.widget": { + "source": "iana", + "extensions": ["wg"] + }, + "application/vnd.poc.group-advertisement+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.pocketlearn": { + "source": "iana", + "extensions": ["plf"] + }, + "application/vnd.powerbuilder6": { + "source": "iana", + "extensions": ["pbd"] + }, + "application/vnd.powerbuilder6-s": { + "source": "iana" + }, + "application/vnd.powerbuilder7": { + "source": "iana" + }, + "application/vnd.powerbuilder7-s": { + "source": "iana" + }, + "application/vnd.powerbuilder75": { + "source": "iana" + }, + "application/vnd.powerbuilder75-s": { + "source": "iana" + }, + "application/vnd.preminet": { + "source": "iana" + }, + "application/vnd.previewsystems.box": { + "source": "iana", + "extensions": ["box"] + }, + "application/vnd.proteus.magazine": { + "source": "iana", + "extensions": ["mgz"] + }, + "application/vnd.psfs": { + "source": "iana" + }, + "application/vnd.publishare-delta-tree": { + "source": "iana", + "extensions": ["qps"] + }, + "application/vnd.pvi.ptid1": { + "source": "iana", + "extensions": ["ptid"] + }, + "application/vnd.pwg-multiplexed": { + "source": "iana" + }, + "application/vnd.pwg-xhtml-print+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.qualcomm.brew-app-res": { + "source": "iana" + }, + "application/vnd.quarantainenet": { + "source": "iana" + }, + "application/vnd.quark.quarkxpress": { + "source": "iana", + "extensions": ["qxd","qxt","qwd","qwt","qxl","qxb"] + }, + "application/vnd.quobject-quoxdocument": { + "source": "iana" + }, + "application/vnd.radisys.moml+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.radisys.msml+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.radisys.msml-audit+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.radisys.msml-audit-conf+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.radisys.msml-audit-conn+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.radisys.msml-audit-dialog+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.radisys.msml-audit-stream+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.radisys.msml-conf+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.radisys.msml-dialog+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.radisys.msml-dialog-base+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.radisys.msml-dialog-fax-detect+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.radisys.msml-dialog-fax-sendrecv+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.radisys.msml-dialog-group+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.radisys.msml-dialog-speech+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.radisys.msml-dialog-transform+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.rainstor.data": { + "source": "iana" + }, + "application/vnd.rapid": { + "source": "iana" + }, + "application/vnd.rar": { + "source": "iana", + "extensions": ["rar"] + }, + "application/vnd.realvnc.bed": { + "source": "iana", + "extensions": ["bed"] + }, + "application/vnd.recordare.musicxml": { + "source": "iana", + "extensions": ["mxl"] + }, + "application/vnd.recordare.musicxml+xml": { + "source": "iana", + "compressible": true, + "extensions": ["musicxml"] + }, + "application/vnd.renlearn.rlprint": { + "source": "iana" + }, + "application/vnd.resilient.logic": { + "source": "iana" + }, + "application/vnd.restful+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.rig.cryptonote": { + "source": "iana", + "extensions": ["cryptonote"] + }, + "application/vnd.rim.cod": { + "source": "apache", + "extensions": ["cod"] + }, + "application/vnd.rn-realmedia": { + "source": "apache", + "extensions": ["rm"] + }, + "application/vnd.rn-realmedia-vbr": { + "source": "apache", + "extensions": ["rmvb"] + }, + "application/vnd.route66.link66+xml": { + "source": "iana", + "compressible": true, + "extensions": ["link66"] + }, + "application/vnd.rs-274x": { + "source": "iana" + }, + "application/vnd.ruckus.download": { + "source": "iana" + }, + "application/vnd.s3sms": { + "source": "iana" + }, + "application/vnd.sailingtracker.track": { + "source": "iana", + "extensions": ["st"] + }, + "application/vnd.sar": { + "source": "iana" + }, + "application/vnd.sbm.cid": { + "source": "iana" + }, + "application/vnd.sbm.mid2": { + "source": "iana" + }, + "application/vnd.scribus": { + "source": "iana" + }, + "application/vnd.sealed.3df": { + "source": "iana" + }, + "application/vnd.sealed.csf": { + "source": "iana" + }, + "application/vnd.sealed.doc": { + "source": "iana" + }, + "application/vnd.sealed.eml": { + "source": "iana" + }, + "application/vnd.sealed.mht": { + "source": "iana" + }, + "application/vnd.sealed.net": { + "source": "iana" + }, + "application/vnd.sealed.ppt": { + "source": "iana" + }, + "application/vnd.sealed.tiff": { + "source": "iana" + }, + "application/vnd.sealed.xls": { + "source": "iana" + }, + "application/vnd.sealedmedia.softseal.html": { + "source": "iana" + }, + "application/vnd.sealedmedia.softseal.pdf": { + "source": "iana" + }, + "application/vnd.seemail": { + "source": "iana", + "extensions": ["see"] + }, + "application/vnd.seis+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.sema": { + "source": "iana", + "extensions": ["sema"] + }, + "application/vnd.semd": { + "source": "iana", + "extensions": ["semd"] + }, + "application/vnd.semf": { + "source": "iana", + "extensions": ["semf"] + }, + "application/vnd.shade-save-file": { + "source": "iana" + }, + "application/vnd.shana.informed.formdata": { + "source": "iana", + "extensions": ["ifm"] + }, + "application/vnd.shana.informed.formtemplate": { + "source": "iana", + "extensions": ["itp"] + }, + "application/vnd.shana.informed.interchange": { + "source": "iana", + "extensions": ["iif"] + }, + "application/vnd.shana.informed.package": { + "source": "iana", + "extensions": ["ipk"] + }, + "application/vnd.shootproof+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.shopkick+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.shp": { + "source": "iana" + }, + "application/vnd.shx": { + "source": "iana" + }, + "application/vnd.sigrok.session": { + "source": "iana" + }, + "application/vnd.simtech-mindmapper": { + "source": "iana", + "extensions": ["twd","twds"] + }, + "application/vnd.siren+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.smaf": { + "source": "iana", + "extensions": ["mmf"] + }, + "application/vnd.smart.notebook": { + "source": "iana" + }, + "application/vnd.smart.teacher": { + "source": "iana", + "extensions": ["teacher"] + }, + "application/vnd.snesdev-page-table": { + "source": "iana" + }, + "application/vnd.software602.filler.form+xml": { + "source": "iana", + "compressible": true, + "extensions": ["fo"] + }, + "application/vnd.software602.filler.form-xml-zip": { + "source": "iana" + }, + "application/vnd.solent.sdkm+xml": { + "source": "iana", + "compressible": true, + "extensions": ["sdkm","sdkd"] + }, + "application/vnd.spotfire.dxp": { + "source": "iana", + "extensions": ["dxp"] + }, + "application/vnd.spotfire.sfs": { + "source": "iana", + "extensions": ["sfs"] + }, + "application/vnd.sqlite3": { + "source": "iana" + }, + "application/vnd.sss-cod": { + "source": "iana" + }, + "application/vnd.sss-dtf": { + "source": "iana" + }, + "application/vnd.sss-ntf": { + "source": "iana" + }, + "application/vnd.stardivision.calc": { + "source": "apache", + "extensions": ["sdc"] + }, + "application/vnd.stardivision.draw": { + "source": "apache", + "extensions": ["sda"] + }, + "application/vnd.stardivision.impress": { + "source": "apache", + "extensions": ["sdd"] + }, + "application/vnd.stardivision.math": { + "source": "apache", + "extensions": ["smf"] + }, + "application/vnd.stardivision.writer": { + "source": "apache", + "extensions": ["sdw","vor"] + }, + "application/vnd.stardivision.writer-global": { + "source": "apache", + "extensions": ["sgl"] + }, + "application/vnd.stepmania.package": { + "source": "iana", + "extensions": ["smzip"] + }, + "application/vnd.stepmania.stepchart": { + "source": "iana", + "extensions": ["sm"] + }, + "application/vnd.street-stream": { + "source": "iana" + }, + "application/vnd.sun.wadl+xml": { + "source": "iana", + "compressible": true, + "extensions": ["wadl"] + }, + "application/vnd.sun.xml.calc": { + "source": "apache", + "extensions": ["sxc"] + }, + "application/vnd.sun.xml.calc.template": { + "source": "apache", + "extensions": ["stc"] + }, + "application/vnd.sun.xml.draw": { + "source": "apache", + "extensions": ["sxd"] + }, + "application/vnd.sun.xml.draw.template": { + "source": "apache", + "extensions": ["std"] + }, + "application/vnd.sun.xml.impress": { + "source": "apache", + "extensions": ["sxi"] + }, + "application/vnd.sun.xml.impress.template": { + "source": "apache", + "extensions": ["sti"] + }, + "application/vnd.sun.xml.math": { + "source": "apache", + "extensions": ["sxm"] + }, + "application/vnd.sun.xml.writer": { + "source": "apache", + "extensions": ["sxw"] + }, + "application/vnd.sun.xml.writer.global": { + "source": "apache", + "extensions": ["sxg"] + }, + "application/vnd.sun.xml.writer.template": { + "source": "apache", + "extensions": ["stw"] + }, + "application/vnd.sus-calendar": { + "source": "iana", + "extensions": ["sus","susp"] + }, + "application/vnd.svd": { + "source": "iana", + "extensions": ["svd"] + }, + "application/vnd.swiftview-ics": { + "source": "iana" + }, + "application/vnd.sycle+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.syft+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.symbian.install": { + "source": "apache", + "extensions": ["sis","sisx"] + }, + "application/vnd.syncml+xml": { + "source": "iana", + "charset": "UTF-8", + "compressible": true, + "extensions": ["xsm"] + }, + "application/vnd.syncml.dm+wbxml": { + "source": "iana", + "charset": "UTF-8", + "extensions": ["bdm"] + }, + "application/vnd.syncml.dm+xml": { + "source": "iana", + "charset": "UTF-8", + "compressible": true, + "extensions": ["xdm"] + }, + "application/vnd.syncml.dm.notification": { + "source": "iana" + }, + "application/vnd.syncml.dmddf+wbxml": { + "source": "iana" + }, + "application/vnd.syncml.dmddf+xml": { + "source": "iana", + "charset": "UTF-8", + "compressible": true, + "extensions": ["ddf"] + }, + "application/vnd.syncml.dmtnds+wbxml": { + "source": "iana" + }, + "application/vnd.syncml.dmtnds+xml": { + "source": "iana", + "charset": "UTF-8", + "compressible": true + }, + "application/vnd.syncml.ds.notification": { + "source": "iana" + }, + "application/vnd.tableschema+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.tao.intent-module-archive": { + "source": "iana", + "extensions": ["tao"] + }, + "application/vnd.tcpdump.pcap": { + "source": "iana", + "extensions": ["pcap","cap","dmp"] + }, + "application/vnd.think-cell.ppttc+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.tmd.mediaflex.api+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.tml": { + "source": "iana" + }, + "application/vnd.tmobile-livetv": { + "source": "iana", + "extensions": ["tmo"] + }, + "application/vnd.tri.onesource": { + "source": "iana" + }, + "application/vnd.trid.tpt": { + "source": "iana", + "extensions": ["tpt"] + }, + "application/vnd.triscape.mxs": { + "source": "iana", + "extensions": ["mxs"] + }, + "application/vnd.trueapp": { + "source": "iana", + "extensions": ["tra"] + }, + "application/vnd.truedoc": { + "source": "iana" + }, + "application/vnd.ubisoft.webplayer": { + "source": "iana" + }, + "application/vnd.ufdl": { + "source": "iana", + "extensions": ["ufd","ufdl"] + }, + "application/vnd.uiq.theme": { + "source": "iana", + "extensions": ["utz"] + }, + "application/vnd.umajin": { + "source": "iana", + "extensions": ["umj"] + }, + "application/vnd.unity": { + "source": "iana", + "extensions": ["unityweb"] + }, + "application/vnd.uoml+xml": { + "source": "iana", + "compressible": true, + "extensions": ["uoml"] + }, + "application/vnd.uplanet.alert": { + "source": "iana" + }, + "application/vnd.uplanet.alert-wbxml": { + "source": "iana" + }, + "application/vnd.uplanet.bearer-choice": { + "source": "iana" + }, + "application/vnd.uplanet.bearer-choice-wbxml": { + "source": "iana" + }, + "application/vnd.uplanet.cacheop": { + "source": "iana" + }, + "application/vnd.uplanet.cacheop-wbxml": { + "source": "iana" + }, + "application/vnd.uplanet.channel": { + "source": "iana" + }, + "application/vnd.uplanet.channel-wbxml": { + "source": "iana" + }, + "application/vnd.uplanet.list": { + "source": "iana" + }, + "application/vnd.uplanet.list-wbxml": { + "source": "iana" + }, + "application/vnd.uplanet.listcmd": { + "source": "iana" + }, + "application/vnd.uplanet.listcmd-wbxml": { + "source": "iana" + }, + "application/vnd.uplanet.signal": { + "source": "iana" + }, + "application/vnd.uri-map": { + "source": "iana" + }, + "application/vnd.valve.source.material": { + "source": "iana" + }, + "application/vnd.vcx": { + "source": "iana", + "extensions": ["vcx"] + }, + "application/vnd.vd-study": { + "source": "iana" + }, + "application/vnd.vectorworks": { + "source": "iana" + }, + "application/vnd.vel+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.verimatrix.vcas": { + "source": "iana" + }, + "application/vnd.veritone.aion+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.veryant.thin": { + "source": "iana" + }, + "application/vnd.ves.encrypted": { + "source": "iana" + }, + "application/vnd.vidsoft.vidconference": { + "source": "iana" + }, + "application/vnd.visio": { + "source": "iana", + "extensions": ["vsd","vst","vss","vsw"] + }, + "application/vnd.visionary": { + "source": "iana", + "extensions": ["vis"] + }, + "application/vnd.vividence.scriptfile": { + "source": "iana" + }, + "application/vnd.vsf": { + "source": "iana", + "extensions": ["vsf"] + }, + "application/vnd.wap.sic": { + "source": "iana" + }, + "application/vnd.wap.slc": { + "source": "iana" + }, + "application/vnd.wap.wbxml": { + "source": "iana", + "charset": "UTF-8", + "extensions": ["wbxml"] + }, + "application/vnd.wap.wmlc": { + "source": "iana", + "extensions": ["wmlc"] + }, + "application/vnd.wap.wmlscriptc": { + "source": "iana", + "extensions": ["wmlsc"] + }, + "application/vnd.webturbo": { + "source": "iana", + "extensions": ["wtb"] + }, + "application/vnd.wfa.dpp": { + "source": "iana" + }, + "application/vnd.wfa.p2p": { + "source": "iana" + }, + "application/vnd.wfa.wsc": { + "source": "iana" + }, + "application/vnd.windows.devicepairing": { + "source": "iana" + }, + "application/vnd.wmc": { + "source": "iana" + }, + "application/vnd.wmf.bootstrap": { + "source": "iana" + }, + "application/vnd.wolfram.mathematica": { + "source": "iana" + }, + "application/vnd.wolfram.mathematica.package": { + "source": "iana" + }, + "application/vnd.wolfram.player": { + "source": "iana", + "extensions": ["nbp"] + }, + "application/vnd.wordperfect": { + "source": "iana", + "extensions": ["wpd"] + }, + "application/vnd.wqd": { + "source": "iana", + "extensions": ["wqd"] + }, + "application/vnd.wrq-hp3000-labelled": { + "source": "iana" + }, + "application/vnd.wt.stf": { + "source": "iana", + "extensions": ["stf"] + }, + "application/vnd.wv.csp+wbxml": { + "source": "iana" + }, + "application/vnd.wv.csp+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.wv.ssp+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.xacml+json": { + "source": "iana", + "compressible": true + }, + "application/vnd.xara": { + "source": "iana", + "extensions": ["xar"] + }, + "application/vnd.xfdl": { + "source": "iana", + "extensions": ["xfdl"] + }, + "application/vnd.xfdl.webform": { + "source": "iana" + }, + "application/vnd.xmi+xml": { + "source": "iana", + "compressible": true + }, + "application/vnd.xmpie.cpkg": { + "source": "iana" + }, + "application/vnd.xmpie.dpkg": { + "source": "iana" + }, + "application/vnd.xmpie.plan": { + "source": "iana" + }, + "application/vnd.xmpie.ppkg": { + "source": "iana" + }, + "application/vnd.xmpie.xlim": { + "source": "iana" + }, + "application/vnd.yamaha.hv-dic": { + "source": "iana", + "extensions": ["hvd"] + }, + "application/vnd.yamaha.hv-script": { + "source": "iana", + "extensions": ["hvs"] + }, + "application/vnd.yamaha.hv-voice": { + "source": "iana", + "extensions": ["hvp"] + }, + "application/vnd.yamaha.openscoreformat": { + "source": "iana", + "extensions": ["osf"] + }, + "application/vnd.yamaha.openscoreformat.osfpvg+xml": { + "source": "iana", + "compressible": true, + "extensions": ["osfpvg"] + }, + "application/vnd.yamaha.remote-setup": { + "source": "iana" + }, + "application/vnd.yamaha.smaf-audio": { + "source": "iana", + "extensions": ["saf"] + }, + "application/vnd.yamaha.smaf-phrase": { + "source": "iana", + "extensions": ["spf"] + }, + "application/vnd.yamaha.through-ngn": { + "source": "iana" + }, + "application/vnd.yamaha.tunnel-udpencap": { + "source": "iana" + }, + "application/vnd.yaoweme": { + "source": "iana" + }, + "application/vnd.yellowriver-custom-menu": { + "source": "iana", + "extensions": ["cmp"] + }, + "application/vnd.youtube.yt": { + "source": "iana" + }, + "application/vnd.zul": { + "source": "iana", + "extensions": ["zir","zirz"] + }, + "application/vnd.zzazz.deck+xml": { + "source": "iana", + "compressible": true, + "extensions": ["zaz"] + }, + "application/voicexml+xml": { + "source": "iana", + "compressible": true, + "extensions": ["vxml"] + }, + "application/voucher-cms+json": { + "source": "iana", + "compressible": true + }, + "application/vq-rtcpxr": { + "source": "iana" + }, + "application/wasm": { + "source": "iana", + "compressible": true, + "extensions": ["wasm"] + }, + "application/watcherinfo+xml": { + "source": "iana", + "compressible": true, + "extensions": ["wif"] + }, + "application/webpush-options+json": { + "source": "iana", + "compressible": true + }, + "application/whoispp-query": { + "source": "iana" + }, + "application/whoispp-response": { + "source": "iana" + }, + "application/widget": { + "source": "iana", + "extensions": ["wgt"] + }, + "application/winhlp": { + "source": "apache", + "extensions": ["hlp"] + }, + "application/wita": { + "source": "iana" + }, + "application/wordperfect5.1": { + "source": "iana" + }, + "application/wsdl+xml": { + "source": "iana", + "compressible": true, + "extensions": ["wsdl"] + }, + "application/wspolicy+xml": { + "source": "iana", + "compressible": true, + "extensions": ["wspolicy"] + }, + "application/x-7z-compressed": { + "source": "apache", + "compressible": false, + "extensions": ["7z"] + }, + "application/x-abiword": { + "source": "apache", + "extensions": ["abw"] + }, + "application/x-ace-compressed": { + "source": "apache", + "extensions": ["ace"] + }, + "application/x-amf": { + "source": "apache" + }, + "application/x-apple-diskimage": { + "source": "apache", + "extensions": ["dmg"] + }, + "application/x-arj": { + "compressible": false, + "extensions": ["arj"] + }, + "application/x-authorware-bin": { + "source": "apache", + "extensions": ["aab","x32","u32","vox"] + }, + "application/x-authorware-map": { + "source": "apache", + "extensions": ["aam"] + }, + "application/x-authorware-seg": { + "source": "apache", + "extensions": ["aas"] + }, + "application/x-bcpio": { + "source": "apache", + "extensions": ["bcpio"] + }, + "application/x-bdoc": { + "compressible": false, + "extensions": ["bdoc"] + }, + "application/x-bittorrent": { + "source": "apache", + "extensions": ["torrent"] + }, + "application/x-blorb": { + "source": "apache", + "extensions": ["blb","blorb"] + }, + "application/x-bzip": { + "source": "apache", + "compressible": false, + "extensions": ["bz"] + }, + "application/x-bzip2": { + "source": "apache", + "compressible": false, + "extensions": ["bz2","boz"] + }, + "application/x-cbr": { + "source": "apache", + "extensions": ["cbr","cba","cbt","cbz","cb7"] + }, + "application/x-cdlink": { + "source": "apache", + "extensions": ["vcd"] + }, + "application/x-cfs-compressed": { + "source": "apache", + "extensions": ["cfs"] + }, + "application/x-chat": { + "source": "apache", + "extensions": ["chat"] + }, + "application/x-chess-pgn": { + "source": "apache", + "extensions": ["pgn"] + }, + "application/x-chrome-extension": { + "extensions": ["crx"] + }, + "application/x-cocoa": { + "source": "nginx", + "extensions": ["cco"] + }, + "application/x-compress": { + "source": "apache" + }, + "application/x-conference": { + "source": "apache", + "extensions": ["nsc"] + }, + "application/x-cpio": { + "source": "apache", + "extensions": ["cpio"] + }, + "application/x-csh": { + "source": "apache", + "extensions": ["csh"] + }, + "application/x-deb": { + "compressible": false + }, + "application/x-debian-package": { + "source": "apache", + "extensions": ["deb","udeb"] + }, + "application/x-dgc-compressed": { + "source": "apache", + "extensions": ["dgc"] + }, + "application/x-director": { + "source": "apache", + "extensions": ["dir","dcr","dxr","cst","cct","cxt","w3d","fgd","swa"] + }, + "application/x-doom": { + "source": "apache", + "extensions": ["wad"] + }, + "application/x-dtbncx+xml": { + "source": "apache", + "compressible": true, + "extensions": ["ncx"] + }, + "application/x-dtbook+xml": { + "source": "apache", + "compressible": true, + "extensions": ["dtb"] + }, + "application/x-dtbresource+xml": { + "source": "apache", + "compressible": true, + "extensions": ["res"] + }, + "application/x-dvi": { + "source": "apache", + "compressible": false, + "extensions": ["dvi"] + }, + "application/x-envoy": { + "source": "apache", + "extensions": ["evy"] + }, + "application/x-eva": { + "source": "apache", + "extensions": ["eva"] + }, + "application/x-font-bdf": { + "source": "apache", + "extensions": ["bdf"] + }, + "application/x-font-dos": { + "source": "apache" + }, + "application/x-font-framemaker": { + "source": "apache" + }, + "application/x-font-ghostscript": { + "source": "apache", + "extensions": ["gsf"] + }, + "application/x-font-libgrx": { + "source": "apache" + }, + "application/x-font-linux-psf": { + "source": "apache", + "extensions": ["psf"] + }, + "application/x-font-pcf": { + "source": "apache", + "extensions": ["pcf"] + }, + "application/x-font-snf": { + "source": "apache", + "extensions": ["snf"] + }, + "application/x-font-speedo": { + "source": "apache" + }, + "application/x-font-sunos-news": { + "source": "apache" + }, + "application/x-font-type1": { + "source": "apache", + "extensions": ["pfa","pfb","pfm","afm"] + }, + "application/x-font-vfont": { + "source": "apache" + }, + "application/x-freearc": { + "source": "apache", + "extensions": ["arc"] + }, + "application/x-futuresplash": { + "source": "apache", + "extensions": ["spl"] + }, + "application/x-gca-compressed": { + "source": "apache", + "extensions": ["gca"] + }, + "application/x-glulx": { + "source": "apache", + "extensions": ["ulx"] + }, + "application/x-gnumeric": { + "source": "apache", + "extensions": ["gnumeric"] + }, + "application/x-gramps-xml": { + "source": "apache", + "extensions": ["gramps"] + }, + "application/x-gtar": { + "source": "apache", + "extensions": ["gtar"] + }, + "application/x-gzip": { + "source": "apache" + }, + "application/x-hdf": { + "source": "apache", + "extensions": ["hdf"] + }, + "application/x-httpd-php": { + "compressible": true, + "extensions": ["php"] + }, + "application/x-install-instructions": { + "source": "apache", + "extensions": ["install"] + }, + "application/x-iso9660-image": { + "source": "apache", + "extensions": ["iso"] + }, + "application/x-iwork-keynote-sffkey": { + "extensions": ["key"] + }, + "application/x-iwork-numbers-sffnumbers": { + "extensions": ["numbers"] + }, + "application/x-iwork-pages-sffpages": { + "extensions": ["pages"] + }, + "application/x-java-archive-diff": { + "source": "nginx", + "extensions": ["jardiff"] + }, + "application/x-java-jnlp-file": { + "source": "apache", + "compressible": false, + "extensions": ["jnlp"] + }, + "application/x-javascript": { + "compressible": true + }, + "application/x-keepass2": { + "extensions": ["kdbx"] + }, + "application/x-latex": { + "source": "apache", + "compressible": false, + "extensions": ["latex"] + }, + "application/x-lua-bytecode": { + "extensions": ["luac"] + }, + "application/x-lzh-compressed": { + "source": "apache", + "extensions": ["lzh","lha"] + }, + "application/x-makeself": { + "source": "nginx", + "extensions": ["run"] + }, + "application/x-mie": { + "source": "apache", + "extensions": ["mie"] + }, + "application/x-mobipocket-ebook": { + "source": "apache", + "extensions": ["prc","mobi"] + }, + "application/x-mpegurl": { + "compressible": false + }, + "application/x-ms-application": { + "source": "apache", + "extensions": ["application"] + }, + "application/x-ms-shortcut": { + "source": "apache", + "extensions": ["lnk"] + }, + "application/x-ms-wmd": { + "source": "apache", + "extensions": ["wmd"] + }, + "application/x-ms-wmz": { + "source": "apache", + "extensions": ["wmz"] + }, + "application/x-ms-xbap": { + "source": "apache", + "extensions": ["xbap"] + }, + "application/x-msaccess": { + "source": "apache", + "extensions": ["mdb"] + }, + "application/x-msbinder": { + "source": "apache", + "extensions": ["obd"] + }, + "application/x-mscardfile": { + "source": "apache", + "extensions": ["crd"] + }, + "application/x-msclip": { + "source": "apache", + "extensions": ["clp"] + }, + "application/x-msdos-program": { + "extensions": ["exe"] + }, + "application/x-msdownload": { + "source": "apache", + "extensions": ["exe","dll","com","bat","msi"] + }, + "application/x-msmediaview": { + "source": "apache", + "extensions": ["mvb","m13","m14"] + }, + "application/x-msmetafile": { + "source": "apache", + "extensions": ["wmf","wmz","emf","emz"] + }, + "application/x-msmoney": { + "source": "apache", + "extensions": ["mny"] + }, + "application/x-mspublisher": { + "source": "apache", + "extensions": ["pub"] + }, + "application/x-msschedule": { + "source": "apache", + "extensions": ["scd"] + }, + "application/x-msterminal": { + "source": "apache", + "extensions": ["trm"] + }, + "application/x-mswrite": { + "source": "apache", + "extensions": ["wri"] + }, + "application/x-netcdf": { + "source": "apache", + "extensions": ["nc","cdf"] + }, + "application/x-ns-proxy-autoconfig": { + "compressible": true, + "extensions": ["pac"] + }, + "application/x-nzb": { + "source": "apache", + "extensions": ["nzb"] + }, + "application/x-perl": { + "source": "nginx", + "extensions": ["pl","pm"] + }, + "application/x-pilot": { + "source": "nginx", + "extensions": ["prc","pdb"] + }, + "application/x-pkcs12": { + "source": "apache", + "compressible": false, + "extensions": ["p12","pfx"] + }, + "application/x-pkcs7-certificates": { + "source": "apache", + "extensions": ["p7b","spc"] + }, + "application/x-pkcs7-certreqresp": { + "source": "apache", + "extensions": ["p7r"] + }, + "application/x-pki-message": { + "source": "iana" + }, + "application/x-rar-compressed": { + "source": "apache", + "compressible": false, + "extensions": ["rar"] + }, + "application/x-redhat-package-manager": { + "source": "nginx", + "extensions": ["rpm"] + }, + "application/x-research-info-systems": { + "source": "apache", + "extensions": ["ris"] + }, + "application/x-sea": { + "source": "nginx", + "extensions": ["sea"] + }, + "application/x-sh": { + "source": "apache", + "compressible": true, + "extensions": ["sh"] + }, + "application/x-shar": { + "source": "apache", + "extensions": ["shar"] + }, + "application/x-shockwave-flash": { + "source": "apache", + "compressible": false, + "extensions": ["swf"] + }, + "application/x-silverlight-app": { + "source": "apache", + "extensions": ["xap"] + }, + "application/x-sql": { + "source": "apache", + "extensions": ["sql"] + }, + "application/x-stuffit": { + "source": "apache", + "compressible": false, + "extensions": ["sit"] + }, + "application/x-stuffitx": { + "source": "apache", + "extensions": ["sitx"] + }, + "application/x-subrip": { + "source": "apache", + "extensions": ["srt"] + }, + "application/x-sv4cpio": { + "source": "apache", + "extensions": ["sv4cpio"] + }, + "application/x-sv4crc": { + "source": "apache", + "extensions": ["sv4crc"] + }, + "application/x-t3vm-image": { + "source": "apache", + "extensions": ["t3"] + }, + "application/x-tads": { + "source": "apache", + "extensions": ["gam"] + }, + "application/x-tar": { + "source": "apache", + "compressible": true, + "extensions": ["tar"] + }, + "application/x-tcl": { + "source": "apache", + "extensions": ["tcl","tk"] + }, + "application/x-tex": { + "source": "apache", + "extensions": ["tex"] + }, + "application/x-tex-tfm": { + "source": "apache", + "extensions": ["tfm"] + }, + "application/x-texinfo": { + "source": "apache", + "extensions": ["texinfo","texi"] + }, + "application/x-tgif": { + "source": "apache", + "extensions": ["obj"] + }, + "application/x-ustar": { + "source": "apache", + "extensions": ["ustar"] + }, + "application/x-virtualbox-hdd": { + "compressible": true, + "extensions": ["hdd"] + }, + "application/x-virtualbox-ova": { + "compressible": true, + "extensions": ["ova"] + }, + "application/x-virtualbox-ovf": { + "compressible": true, + "extensions": ["ovf"] + }, + "application/x-virtualbox-vbox": { + "compressible": true, + "extensions": ["vbox"] + }, + "application/x-virtualbox-vbox-extpack": { + "compressible": false, + "extensions": ["vbox-extpack"] + }, + "application/x-virtualbox-vdi": { + "compressible": true, + "extensions": ["vdi"] + }, + "application/x-virtualbox-vhd": { + "compressible": true, + "extensions": ["vhd"] + }, + "application/x-virtualbox-vmdk": { + "compressible": true, + "extensions": ["vmdk"] + }, + "application/x-wais-source": { + "source": "apache", + "extensions": ["src"] + }, + "application/x-web-app-manifest+json": { + "compressible": true, + "extensions": ["webapp"] + }, + "application/x-www-form-urlencoded": { + "source": "iana", + "compressible": true + }, + "application/x-x509-ca-cert": { + "source": "iana", + "extensions": ["der","crt","pem"] + }, + "application/x-x509-ca-ra-cert": { + "source": "iana" + }, + "application/x-x509-next-ca-cert": { + "source": "iana" + }, + "application/x-xfig": { + "source": "apache", + "extensions": ["fig"] + }, + "application/x-xliff+xml": { + "source": "apache", + "compressible": true, + "extensions": ["xlf"] + }, + "application/x-xpinstall": { + "source": "apache", + "compressible": false, + "extensions": ["xpi"] + }, + "application/x-xz": { + "source": "apache", + "extensions": ["xz"] + }, + "application/x-zmachine": { + "source": "apache", + "extensions": ["z1","z2","z3","z4","z5","z6","z7","z8"] + }, + "application/x400-bp": { + "source": "iana" + }, + "application/xacml+xml": { + "source": "iana", + "compressible": true + }, + "application/xaml+xml": { + "source": "apache", + "compressible": true, + "extensions": ["xaml"] + }, + "application/xcap-att+xml": { + "source": "iana", + "compressible": true, + "extensions": ["xav"] + }, + "application/xcap-caps+xml": { + "source": "iana", + "compressible": true, + "extensions": ["xca"] + }, + "application/xcap-diff+xml": { + "source": "iana", + "compressible": true, + "extensions": ["xdf"] + }, + "application/xcap-el+xml": { + "source": "iana", + "compressible": true, + "extensions": ["xel"] + }, + "application/xcap-error+xml": { + "source": "iana", + "compressible": true + }, + "application/xcap-ns+xml": { + "source": "iana", + "compressible": true, + "extensions": ["xns"] + }, + "application/xcon-conference-info+xml": { + "source": "iana", + "compressible": true + }, + "application/xcon-conference-info-diff+xml": { + "source": "iana", + "compressible": true + }, + "application/xenc+xml": { + "source": "iana", + "compressible": true, + "extensions": ["xenc"] + }, + "application/xhtml+xml": { + "source": "iana", + "compressible": true, + "extensions": ["xhtml","xht"] + }, + "application/xhtml-voice+xml": { + "source": "apache", + "compressible": true + }, + "application/xliff+xml": { + "source": "iana", + "compressible": true, + "extensions": ["xlf"] + }, + "application/xml": { + "source": "iana", + "compressible": true, + "extensions": ["xml","xsl","xsd","rng"] + }, + "application/xml-dtd": { + "source": "iana", + "compressible": true, + "extensions": ["dtd"] + }, + "application/xml-external-parsed-entity": { + "source": "iana" + }, + "application/xml-patch+xml": { + "source": "iana", + "compressible": true + }, + "application/xmpp+xml": { + "source": "iana", + "compressible": true + }, + "application/xop+xml": { + "source": "iana", + "compressible": true, + "extensions": ["xop"] + }, + "application/xproc+xml": { + "source": "apache", + "compressible": true, + "extensions": ["xpl"] + }, + "application/xslt+xml": { + "source": "iana", + "compressible": true, + "extensions": ["xsl","xslt"] + }, + "application/xspf+xml": { + "source": "apache", + "compressible": true, + "extensions": ["xspf"] + }, + "application/xv+xml": { + "source": "iana", + "compressible": true, + "extensions": ["mxml","xhvml","xvml","xvm"] + }, + "application/yang": { + "source": "iana", + "extensions": ["yang"] + }, + "application/yang-data+json": { + "source": "iana", + "compressible": true + }, + "application/yang-data+xml": { + "source": "iana", + "compressible": true + }, + "application/yang-patch+json": { + "source": "iana", + "compressible": true + }, + "application/yang-patch+xml": { + "source": "iana", + "compressible": true + }, + "application/yin+xml": { + "source": "iana", + "compressible": true, + "extensions": ["yin"] + }, + "application/zip": { + "source": "iana", + "compressible": false, + "extensions": ["zip"] + }, + "application/zlib": { + "source": "iana" + }, + "application/zstd": { + "source": "iana" + }, + "audio/1d-interleaved-parityfec": { + "source": "iana" + }, + "audio/32kadpcm": { + "source": "iana" + }, + "audio/3gpp": { + "source": "iana", + "compressible": false, + "extensions": ["3gpp"] + }, + "audio/3gpp2": { + "source": "iana" + }, + "audio/aac": { + "source": "iana" + }, + "audio/ac3": { + "source": "iana" + }, + "audio/adpcm": { + "source": "apache", + "extensions": ["adp"] + }, + "audio/amr": { + "source": "iana", + "extensions": ["amr"] + }, + "audio/amr-wb": { + "source": "iana" + }, + "audio/amr-wb+": { + "source": "iana" + }, + "audio/aptx": { + "source": "iana" + }, + "audio/asc": { + "source": "iana" + }, + "audio/atrac-advanced-lossless": { + "source": "iana" + }, + "audio/atrac-x": { + "source": "iana" + }, + "audio/atrac3": { + "source": "iana" + }, + "audio/basic": { + "source": "iana", + "compressible": false, + "extensions": ["au","snd"] + }, + "audio/bv16": { + "source": "iana" + }, + "audio/bv32": { + "source": "iana" + }, + "audio/clearmode": { + "source": "iana" + }, + "audio/cn": { + "source": "iana" + }, + "audio/dat12": { + "source": "iana" + }, + "audio/dls": { + "source": "iana" + }, + "audio/dsr-es201108": { + "source": "iana" + }, + "audio/dsr-es202050": { + "source": "iana" + }, + "audio/dsr-es202211": { + "source": "iana" + }, + "audio/dsr-es202212": { + "source": "iana" + }, + "audio/dv": { + "source": "iana" + }, + "audio/dvi4": { + "source": "iana" + }, + "audio/eac3": { + "source": "iana" + }, + "audio/encaprtp": { + "source": "iana" + }, + "audio/evrc": { + "source": "iana" + }, + "audio/evrc-qcp": { + "source": "iana" + }, + "audio/evrc0": { + "source": "iana" + }, + "audio/evrc1": { + "source": "iana" + }, + "audio/evrcb": { + "source": "iana" + }, + "audio/evrcb0": { + "source": "iana" + }, + "audio/evrcb1": { + "source": "iana" + }, + "audio/evrcnw": { + "source": "iana" + }, + "audio/evrcnw0": { + "source": "iana" + }, + "audio/evrcnw1": { + "source": "iana" + }, + "audio/evrcwb": { + "source": "iana" + }, + "audio/evrcwb0": { + "source": "iana" + }, + "audio/evrcwb1": { + "source": "iana" + }, + "audio/evs": { + "source": "iana" + }, + "audio/flexfec": { + "source": "iana" + }, + "audio/fwdred": { + "source": "iana" + }, + "audio/g711-0": { + "source": "iana" + }, + "audio/g719": { + "source": "iana" + }, + "audio/g722": { + "source": "iana" + }, + "audio/g7221": { + "source": "iana" + }, + "audio/g723": { + "source": "iana" + }, + "audio/g726-16": { + "source": "iana" + }, + "audio/g726-24": { + "source": "iana" + }, + "audio/g726-32": { + "source": "iana" + }, + "audio/g726-40": { + "source": "iana" + }, + "audio/g728": { + "source": "iana" + }, + "audio/g729": { + "source": "iana" + }, + "audio/g7291": { + "source": "iana" + }, + "audio/g729d": { + "source": "iana" + }, + "audio/g729e": { + "source": "iana" + }, + "audio/gsm": { + "source": "iana" + }, + "audio/gsm-efr": { + "source": "iana" + }, + "audio/gsm-hr-08": { + "source": "iana" + }, + "audio/ilbc": { + "source": "iana" + }, + "audio/ip-mr_v2.5": { + "source": "iana" + }, + "audio/isac": { + "source": "apache" + }, + "audio/l16": { + "source": "iana" + }, + "audio/l20": { + "source": "iana" + }, + "audio/l24": { + "source": "iana", + "compressible": false + }, + "audio/l8": { + "source": "iana" + }, + "audio/lpc": { + "source": "iana" + }, + "audio/melp": { + "source": "iana" + }, + "audio/melp1200": { + "source": "iana" + }, + "audio/melp2400": { + "source": "iana" + }, + "audio/melp600": { + "source": "iana" + }, + "audio/mhas": { + "source": "iana" + }, + "audio/midi": { + "source": "apache", + "extensions": ["mid","midi","kar","rmi"] + }, + "audio/mobile-xmf": { + "source": "iana", + "extensions": ["mxmf"] + }, + "audio/mp3": { + "compressible": false, + "extensions": ["mp3"] + }, + "audio/mp4": { + "source": "iana", + "compressible": false, + "extensions": ["m4a","mp4a"] + }, + "audio/mp4a-latm": { + "source": "iana" + }, + "audio/mpa": { + "source": "iana" + }, + "audio/mpa-robust": { + "source": "iana" + }, + "audio/mpeg": { + "source": "iana", + "compressible": false, + "extensions": ["mpga","mp2","mp2a","mp3","m2a","m3a"] + }, + "audio/mpeg4-generic": { + "source": "iana" + }, + "audio/musepack": { + "source": "apache" + }, + "audio/ogg": { + "source": "iana", + "compressible": false, + "extensions": ["oga","ogg","spx","opus"] + }, + "audio/opus": { + "source": "iana" + }, + "audio/parityfec": { + "source": "iana" + }, + "audio/pcma": { + "source": "iana" + }, + "audio/pcma-wb": { + "source": "iana" + }, + "audio/pcmu": { + "source": "iana" + }, + "audio/pcmu-wb": { + "source": "iana" + }, + "audio/prs.sid": { + "source": "iana" + }, + "audio/qcelp": { + "source": "iana" + }, + "audio/raptorfec": { + "source": "iana" + }, + "audio/red": { + "source": "iana" + }, + "audio/rtp-enc-aescm128": { + "source": "iana" + }, + "audio/rtp-midi": { + "source": "iana" + }, + "audio/rtploopback": { + "source": "iana" + }, + "audio/rtx": { + "source": "iana" + }, + "audio/s3m": { + "source": "apache", + "extensions": ["s3m"] + }, + "audio/scip": { + "source": "iana" + }, + "audio/silk": { + "source": "apache", + "extensions": ["sil"] + }, + "audio/smv": { + "source": "iana" + }, + "audio/smv-qcp": { + "source": "iana" + }, + "audio/smv0": { + "source": "iana" + }, + "audio/sofa": { + "source": "iana" + }, + "audio/sp-midi": { + "source": "iana" + }, + "audio/speex": { + "source": "iana" + }, + "audio/t140c": { + "source": "iana" + }, + "audio/t38": { + "source": "iana" + }, + "audio/telephone-event": { + "source": "iana" + }, + "audio/tetra_acelp": { + "source": "iana" + }, + "audio/tetra_acelp_bb": { + "source": "iana" + }, + "audio/tone": { + "source": "iana" + }, + "audio/tsvcis": { + "source": "iana" + }, + "audio/uemclip": { + "source": "iana" + }, + "audio/ulpfec": { + "source": "iana" + }, + "audio/usac": { + "source": "iana" + }, + "audio/vdvi": { + "source": "iana" + }, + "audio/vmr-wb": { + "source": "iana" + }, + "audio/vnd.3gpp.iufp": { + "source": "iana" + }, + "audio/vnd.4sb": { + "source": "iana" + }, + "audio/vnd.audiokoz": { + "source": "iana" + }, + "audio/vnd.celp": { + "source": "iana" + }, + "audio/vnd.cisco.nse": { + "source": "iana" + }, + "audio/vnd.cmles.radio-events": { + "source": "iana" + }, + "audio/vnd.cns.anp1": { + "source": "iana" + }, + "audio/vnd.cns.inf1": { + "source": "iana" + }, + "audio/vnd.dece.audio": { + "source": "iana", + "extensions": ["uva","uvva"] + }, + "audio/vnd.digital-winds": { + "source": "iana", + "extensions": ["eol"] + }, + "audio/vnd.dlna.adts": { + "source": "iana" + }, + "audio/vnd.dolby.heaac.1": { + "source": "iana" + }, + "audio/vnd.dolby.heaac.2": { + "source": "iana" + }, + "audio/vnd.dolby.mlp": { + "source": "iana" + }, + "audio/vnd.dolby.mps": { + "source": "iana" + }, + "audio/vnd.dolby.pl2": { + "source": "iana" + }, + "audio/vnd.dolby.pl2x": { + "source": "iana" + }, + "audio/vnd.dolby.pl2z": { + "source": "iana" + }, + "audio/vnd.dolby.pulse.1": { + "source": "iana" + }, + "audio/vnd.dra": { + "source": "iana", + "extensions": ["dra"] + }, + "audio/vnd.dts": { + "source": "iana", + "extensions": ["dts"] + }, + "audio/vnd.dts.hd": { + "source": "iana", + "extensions": ["dtshd"] + }, + "audio/vnd.dts.uhd": { + "source": "iana" + }, + "audio/vnd.dvb.file": { + "source": "iana" + }, + "audio/vnd.everad.plj": { + "source": "iana" + }, + "audio/vnd.hns.audio": { + "source": "iana" + }, + "audio/vnd.lucent.voice": { + "source": "iana", + "extensions": ["lvp"] + }, + "audio/vnd.ms-playready.media.pya": { + "source": "iana", + "extensions": ["pya"] + }, + "audio/vnd.nokia.mobile-xmf": { + "source": "iana" + }, + "audio/vnd.nortel.vbk": { + "source": "iana" + }, + "audio/vnd.nuera.ecelp4800": { + "source": "iana", + "extensions": ["ecelp4800"] + }, + "audio/vnd.nuera.ecelp7470": { + "source": "iana", + "extensions": ["ecelp7470"] + }, + "audio/vnd.nuera.ecelp9600": { + "source": "iana", + "extensions": ["ecelp9600"] + }, + "audio/vnd.octel.sbc": { + "source": "iana" + }, + "audio/vnd.presonus.multitrack": { + "source": "iana" + }, + "audio/vnd.qcelp": { + "source": "iana" + }, + "audio/vnd.rhetorex.32kadpcm": { + "source": "iana" + }, + "audio/vnd.rip": { + "source": "iana", + "extensions": ["rip"] + }, + "audio/vnd.rn-realaudio": { + "compressible": false + }, + "audio/vnd.sealedmedia.softseal.mpeg": { + "source": "iana" + }, + "audio/vnd.vmx.cvsd": { + "source": "iana" + }, + "audio/vnd.wave": { + "compressible": false + }, + "audio/vorbis": { + "source": "iana", + "compressible": false + }, + "audio/vorbis-config": { + "source": "iana" + }, + "audio/wav": { + "compressible": false, + "extensions": ["wav"] + }, + "audio/wave": { + "compressible": false, + "extensions": ["wav"] + }, + "audio/webm": { + "source": "apache", + "compressible": false, + "extensions": ["weba"] + }, + "audio/x-aac": { + "source": "apache", + "compressible": false, + "extensions": ["aac"] + }, + "audio/x-aiff": { + "source": "apache", + "extensions": ["aif","aiff","aifc"] + }, + "audio/x-caf": { + "source": "apache", + "compressible": false, + "extensions": ["caf"] + }, + "audio/x-flac": { + "source": "apache", + "extensions": ["flac"] + }, + "audio/x-m4a": { + "source": "nginx", + "extensions": ["m4a"] + }, + "audio/x-matroska": { + "source": "apache", + "extensions": ["mka"] + }, + "audio/x-mpegurl": { + "source": "apache", + "extensions": ["m3u"] + }, + "audio/x-ms-wax": { + "source": "apache", + "extensions": ["wax"] + }, + "audio/x-ms-wma": { + "source": "apache", + "extensions": ["wma"] + }, + "audio/x-pn-realaudio": { + "source": "apache", + "extensions": ["ram","ra"] + }, + "audio/x-pn-realaudio-plugin": { + "source": "apache", + "extensions": ["rmp"] + }, + "audio/x-realaudio": { + "source": "nginx", + "extensions": ["ra"] + }, + "audio/x-tta": { + "source": "apache" + }, + "audio/x-wav": { + "source": "apache", + "extensions": ["wav"] + }, + "audio/xm": { + "source": "apache", + "extensions": ["xm"] + }, + "chemical/x-cdx": { + "source": "apache", + "extensions": ["cdx"] + }, + "chemical/x-cif": { + "source": "apache", + "extensions": ["cif"] + }, + "chemical/x-cmdf": { + "source": "apache", + "extensions": ["cmdf"] + }, + "chemical/x-cml": { + "source": "apache", + "extensions": ["cml"] + }, + "chemical/x-csml": { + "source": "apache", + "extensions": ["csml"] + }, + "chemical/x-pdb": { + "source": "apache" + }, + "chemical/x-xyz": { + "source": "apache", + "extensions": ["xyz"] + }, + "font/collection": { + "source": "iana", + "extensions": ["ttc"] + }, + "font/otf": { + "source": "iana", + "compressible": true, + "extensions": ["otf"] + }, + "font/sfnt": { + "source": "iana" + }, + "font/ttf": { + "source": "iana", + "compressible": true, + "extensions": ["ttf"] + }, + "font/woff": { + "source": "iana", + "extensions": ["woff"] + }, + "font/woff2": { + "source": "iana", + "extensions": ["woff2"] + }, + "image/aces": { + "source": "iana", + "extensions": ["exr"] + }, + "image/apng": { + "compressible": false, + "extensions": ["apng"] + }, + "image/avci": { + "source": "iana", + "extensions": ["avci"] + }, + "image/avcs": { + "source": "iana", + "extensions": ["avcs"] + }, + "image/avif": { + "source": "iana", + "compressible": false, + "extensions": ["avif"] + }, + "image/bmp": { + "source": "iana", + "compressible": true, + "extensions": ["bmp"] + }, + "image/cgm": { + "source": "iana", + "extensions": ["cgm"] + }, + "image/dicom-rle": { + "source": "iana", + "extensions": ["drle"] + }, + "image/emf": { + "source": "iana", + "extensions": ["emf"] + }, + "image/fits": { + "source": "iana", + "extensions": ["fits"] + }, + "image/g3fax": { + "source": "iana", + "extensions": ["g3"] + }, + "image/gif": { + "source": "iana", + "compressible": false, + "extensions": ["gif"] + }, + "image/heic": { + "source": "iana", + "extensions": ["heic"] + }, + "image/heic-sequence": { + "source": "iana", + "extensions": ["heics"] + }, + "image/heif": { + "source": "iana", + "extensions": ["heif"] + }, + "image/heif-sequence": { + "source": "iana", + "extensions": ["heifs"] + }, + "image/hej2k": { + "source": "iana", + "extensions": ["hej2"] + }, + "image/hsj2": { + "source": "iana", + "extensions": ["hsj2"] + }, + "image/ief": { + "source": "iana", + "extensions": ["ief"] + }, + "image/jls": { + "source": "iana", + "extensions": ["jls"] + }, + "image/jp2": { + "source": "iana", + "compressible": false, + "extensions": ["jp2","jpg2"] + }, + "image/jpeg": { + "source": "iana", + "compressible": false, + "extensions": ["jpeg","jpg","jpe"] + }, + "image/jph": { + "source": "iana", + "extensions": ["jph"] + }, + "image/jphc": { + "source": "iana", + "extensions": ["jhc"] + }, + "image/jpm": { + "source": "iana", + "compressible": false, + "extensions": ["jpm"] + }, + "image/jpx": { + "source": "iana", + "compressible": false, + "extensions": ["jpx","jpf"] + }, + "image/jxr": { + "source": "iana", + "extensions": ["jxr"] + }, + "image/jxra": { + "source": "iana", + "extensions": ["jxra"] + }, + "image/jxrs": { + "source": "iana", + "extensions": ["jxrs"] + }, + "image/jxs": { + "source": "iana", + "extensions": ["jxs"] + }, + "image/jxsc": { + "source": "iana", + "extensions": ["jxsc"] + }, + "image/jxsi": { + "source": "iana", + "extensions": ["jxsi"] + }, + "image/jxss": { + "source": "iana", + "extensions": ["jxss"] + }, + "image/ktx": { + "source": "iana", + "extensions": ["ktx"] + }, + "image/ktx2": { + "source": "iana", + "extensions": ["ktx2"] + }, + "image/naplps": { + "source": "iana" + }, + "image/pjpeg": { + "compressible": false + }, + "image/png": { + "source": "iana", + "compressible": false, + "extensions": ["png"] + }, + "image/prs.btif": { + "source": "iana", + "extensions": ["btif"] + }, + "image/prs.pti": { + "source": "iana", + "extensions": ["pti"] + }, + "image/pwg-raster": { + "source": "iana" + }, + "image/sgi": { + "source": "apache", + "extensions": ["sgi"] + }, + "image/svg+xml": { + "source": "iana", + "compressible": true, + "extensions": ["svg","svgz"] + }, + "image/t38": { + "source": "iana", + "extensions": ["t38"] + }, + "image/tiff": { + "source": "iana", + "compressible": false, + "extensions": ["tif","tiff"] + }, + "image/tiff-fx": { + "source": "iana", + "extensions": ["tfx"] + }, + "image/vnd.adobe.photoshop": { + "source": "iana", + "compressible": true, + "extensions": ["psd"] + }, + "image/vnd.airzip.accelerator.azv": { + "source": "iana", + "extensions": ["azv"] + }, + "image/vnd.cns.inf2": { + "source": "iana" + }, + "image/vnd.dece.graphic": { + "source": "iana", + "extensions": ["uvi","uvvi","uvg","uvvg"] + }, + "image/vnd.djvu": { + "source": "iana", + "extensions": ["djvu","djv"] + }, + "image/vnd.dvb.subtitle": { + "source": "iana", + "extensions": ["sub"] + }, + "image/vnd.dwg": { + "source": "iana", + "extensions": ["dwg"] + }, + "image/vnd.dxf": { + "source": "iana", + "extensions": ["dxf"] + }, + "image/vnd.fastbidsheet": { + "source": "iana", + "extensions": ["fbs"] + }, + "image/vnd.fpx": { + "source": "iana", + "extensions": ["fpx"] + }, + "image/vnd.fst": { + "source": "iana", + "extensions": ["fst"] + }, + "image/vnd.fujixerox.edmics-mmr": { + "source": "iana", + "extensions": ["mmr"] + }, + "image/vnd.fujixerox.edmics-rlc": { + "source": "iana", + "extensions": ["rlc"] + }, + "image/vnd.globalgraphics.pgb": { + "source": "iana" + }, + "image/vnd.microsoft.icon": { + "source": "iana", + "compressible": true, + "extensions": ["ico"] + }, + "image/vnd.mix": { + "source": "iana" + }, + "image/vnd.mozilla.apng": { + "source": "iana" + }, + "image/vnd.ms-dds": { + "compressible": true, + "extensions": ["dds"] + }, + "image/vnd.ms-modi": { + "source": "iana", + "extensions": ["mdi"] + }, + "image/vnd.ms-photo": { + "source": "apache", + "extensions": ["wdp"] + }, + "image/vnd.net-fpx": { + "source": "iana", + "extensions": ["npx"] + }, + "image/vnd.pco.b16": { + "source": "iana", + "extensions": ["b16"] + }, + "image/vnd.radiance": { + "source": "iana" + }, + "image/vnd.sealed.png": { + "source": "iana" + }, + "image/vnd.sealedmedia.softseal.gif": { + "source": "iana" + }, + "image/vnd.sealedmedia.softseal.jpg": { + "source": "iana" + }, + "image/vnd.svf": { + "source": "iana" + }, + "image/vnd.tencent.tap": { + "source": "iana", + "extensions": ["tap"] + }, + "image/vnd.valve.source.texture": { + "source": "iana", + "extensions": ["vtf"] + }, + "image/vnd.wap.wbmp": { + "source": "iana", + "extensions": ["wbmp"] + }, + "image/vnd.xiff": { + "source": "iana", + "extensions": ["xif"] + }, + "image/vnd.zbrush.pcx": { + "source": "iana", + "extensions": ["pcx"] + }, + "image/webp": { + "source": "apache", + "extensions": ["webp"] + }, + "image/wmf": { + "source": "iana", + "extensions": ["wmf"] + }, + "image/x-3ds": { + "source": "apache", + "extensions": ["3ds"] + }, + "image/x-cmu-raster": { + "source": "apache", + "extensions": ["ras"] + }, + "image/x-cmx": { + "source": "apache", + "extensions": ["cmx"] + }, + "image/x-freehand": { + "source": "apache", + "extensions": ["fh","fhc","fh4","fh5","fh7"] + }, + "image/x-icon": { + "source": "apache", + "compressible": true, + "extensions": ["ico"] + }, + "image/x-jng": { + "source": "nginx", + "extensions": ["jng"] + }, + "image/x-mrsid-image": { + "source": "apache", + "extensions": ["sid"] + }, + "image/x-ms-bmp": { + "source": "nginx", + "compressible": true, + "extensions": ["bmp"] + }, + "image/x-pcx": { + "source": "apache", + "extensions": ["pcx"] + }, + "image/x-pict": { + "source": "apache", + "extensions": ["pic","pct"] + }, + "image/x-portable-anymap": { + "source": "apache", + "extensions": ["pnm"] + }, + "image/x-portable-bitmap": { + "source": "apache", + "extensions": ["pbm"] + }, + "image/x-portable-graymap": { + "source": "apache", + "extensions": ["pgm"] + }, + "image/x-portable-pixmap": { + "source": "apache", + "extensions": ["ppm"] + }, + "image/x-rgb": { + "source": "apache", + "extensions": ["rgb"] + }, + "image/x-tga": { + "source": "apache", + "extensions": ["tga"] + }, + "image/x-xbitmap": { + "source": "apache", + "extensions": ["xbm"] + }, + "image/x-xcf": { + "compressible": false + }, + "image/x-xpixmap": { + "source": "apache", + "extensions": ["xpm"] + }, + "image/x-xwindowdump": { + "source": "apache", + "extensions": ["xwd"] + }, + "message/cpim": { + "source": "iana" + }, + "message/delivery-status": { + "source": "iana" + }, + "message/disposition-notification": { + "source": "iana", + "extensions": [ + "disposition-notification" + ] + }, + "message/external-body": { + "source": "iana" + }, + "message/feedback-report": { + "source": "iana" + }, + "message/global": { + "source": "iana", + "extensions": ["u8msg"] + }, + "message/global-delivery-status": { + "source": "iana", + "extensions": ["u8dsn"] + }, + "message/global-disposition-notification": { + "source": "iana", + "extensions": ["u8mdn"] + }, + "message/global-headers": { + "source": "iana", + "extensions": ["u8hdr"] + }, + "message/http": { + "source": "iana", + "compressible": false + }, + "message/imdn+xml": { + "source": "iana", + "compressible": true + }, + "message/news": { + "source": "iana" + }, + "message/partial": { + "source": "iana", + "compressible": false + }, + "message/rfc822": { + "source": "iana", + "compressible": true, + "extensions": ["eml","mime"] + }, + "message/s-http": { + "source": "iana" + }, + "message/sip": { + "source": "iana" + }, + "message/sipfrag": { + "source": "iana" + }, + "message/tracking-status": { + "source": "iana" + }, + "message/vnd.si.simp": { + "source": "iana" + }, + "message/vnd.wfa.wsc": { + "source": "iana", + "extensions": ["wsc"] + }, + "model/3mf": { + "source": "iana", + "extensions": ["3mf"] + }, + "model/e57": { + "source": "iana" + }, + "model/gltf+json": { + "source": "iana", + "compressible": true, + "extensions": ["gltf"] + }, + "model/gltf-binary": { + "source": "iana", + "compressible": true, + "extensions": ["glb"] + }, + "model/iges": { + "source": "iana", + "compressible": false, + "extensions": ["igs","iges"] + }, + "model/mesh": { + "source": "iana", + "compressible": false, + "extensions": ["msh","mesh","silo"] + }, + "model/mtl": { + "source": "iana", + "extensions": ["mtl"] + }, + "model/obj": { + "source": "iana", + "extensions": ["obj"] + }, + "model/step": { + "source": "iana" + }, + "model/step+xml": { + "source": "iana", + "compressible": true, + "extensions": ["stpx"] + }, + "model/step+zip": { + "source": "iana", + "compressible": false, + "extensions": ["stpz"] + }, + "model/step-xml+zip": { + "source": "iana", + "compressible": false, + "extensions": ["stpxz"] + }, + "model/stl": { + "source": "iana", + "extensions": ["stl"] + }, + "model/vnd.collada+xml": { + "source": "iana", + "compressible": true, + "extensions": ["dae"] + }, + "model/vnd.dwf": { + "source": "iana", + "extensions": ["dwf"] + }, + "model/vnd.flatland.3dml": { + "source": "iana" + }, + "model/vnd.gdl": { + "source": "iana", + "extensions": ["gdl"] + }, + "model/vnd.gs-gdl": { + "source": "apache" + }, + "model/vnd.gs.gdl": { + "source": "iana" + }, + "model/vnd.gtw": { + "source": "iana", + "extensions": ["gtw"] + }, + "model/vnd.moml+xml": { + "source": "iana", + "compressible": true + }, + "model/vnd.mts": { + "source": "iana", + "extensions": ["mts"] + }, + "model/vnd.opengex": { + "source": "iana", + "extensions": ["ogex"] + }, + "model/vnd.parasolid.transmit.binary": { + "source": "iana", + "extensions": ["x_b"] + }, + "model/vnd.parasolid.transmit.text": { + "source": "iana", + "extensions": ["x_t"] + }, + "model/vnd.pytha.pyox": { + "source": "iana" + }, + "model/vnd.rosette.annotated-data-model": { + "source": "iana" + }, + "model/vnd.sap.vds": { + "source": "iana", + "extensions": ["vds"] + }, + "model/vnd.usdz+zip": { + "source": "iana", + "compressible": false, + "extensions": ["usdz"] + }, + "model/vnd.valve.source.compiled-map": { + "source": "iana", + "extensions": ["bsp"] + }, + "model/vnd.vtu": { + "source": "iana", + "extensions": ["vtu"] + }, + "model/vrml": { + "source": "iana", + "compressible": false, + "extensions": ["wrl","vrml"] + }, + "model/x3d+binary": { + "source": "apache", + "compressible": false, + "extensions": ["x3db","x3dbz"] + }, + "model/x3d+fastinfoset": { + "source": "iana", + "extensions": ["x3db"] + }, + "model/x3d+vrml": { + "source": "apache", + "compressible": false, + "extensions": ["x3dv","x3dvz"] + }, + "model/x3d+xml": { + "source": "iana", + "compressible": true, + "extensions": ["x3d","x3dz"] + }, + "model/x3d-vrml": { + "source": "iana", + "extensions": ["x3dv"] + }, + "multipart/alternative": { + "source": "iana", + "compressible": false + }, + "multipart/appledouble": { + "source": "iana" + }, + "multipart/byteranges": { + "source": "iana" + }, + "multipart/digest": { + "source": "iana" + }, + "multipart/encrypted": { + "source": "iana", + "compressible": false + }, + "multipart/form-data": { + "source": "iana", + "compressible": false + }, + "multipart/header-set": { + "source": "iana" + }, + "multipart/mixed": { + "source": "iana" + }, + "multipart/multilingual": { + "source": "iana" + }, + "multipart/parallel": { + "source": "iana" + }, + "multipart/related": { + "source": "iana", + "compressible": false + }, + "multipart/report": { + "source": "iana" + }, + "multipart/signed": { + "source": "iana", + "compressible": false + }, + "multipart/vnd.bint.med-plus": { + "source": "iana" + }, + "multipart/voice-message": { + "source": "iana" + }, + "multipart/x-mixed-replace": { + "source": "iana" + }, + "text/1d-interleaved-parityfec": { + "source": "iana" + }, + "text/cache-manifest": { + "source": "iana", + "compressible": true, + "extensions": ["appcache","manifest"] + }, + "text/calendar": { + "source": "iana", + "extensions": ["ics","ifb"] + }, + "text/calender": { + "compressible": true + }, + "text/cmd": { + "compressible": true + }, + "text/coffeescript": { + "extensions": ["coffee","litcoffee"] + }, + "text/cql": { + "source": "iana" + }, + "text/cql-expression": { + "source": "iana" + }, + "text/cql-identifier": { + "source": "iana" + }, + "text/css": { + "source": "iana", + "charset": "UTF-8", + "compressible": true, + "extensions": ["css"] + }, + "text/csv": { + "source": "iana", + "compressible": true, + "extensions": ["csv"] + }, + "text/csv-schema": { + "source": "iana" + }, + "text/directory": { + "source": "iana" + }, + "text/dns": { + "source": "iana" + }, + "text/ecmascript": { + "source": "iana" + }, + "text/encaprtp": { + "source": "iana" + }, + "text/enriched": { + "source": "iana" + }, + "text/fhirpath": { + "source": "iana" + }, + "text/flexfec": { + "source": "iana" + }, + "text/fwdred": { + "source": "iana" + }, + "text/gff3": { + "source": "iana" + }, + "text/grammar-ref-list": { + "source": "iana" + }, + "text/html": { + "source": "iana", + "compressible": true, + "extensions": ["html","htm","shtml"] + }, + "text/jade": { + "extensions": ["jade"] + }, + "text/javascript": { + "source": "iana", + "compressible": true + }, + "text/jcr-cnd": { + "source": "iana" + }, + "text/jsx": { + "compressible": true, + "extensions": ["jsx"] + }, + "text/less": { + "compressible": true, + "extensions": ["less"] + }, + "text/markdown": { + "source": "iana", + "compressible": true, + "extensions": ["markdown","md"] + }, + "text/mathml": { + "source": "nginx", + "extensions": ["mml"] + }, + "text/mdx": { + "compressible": true, + "extensions": ["mdx"] + }, + "text/mizar": { + "source": "iana" + }, + "text/n3": { + "source": "iana", + "charset": "UTF-8", + "compressible": true, + "extensions": ["n3"] + }, + "text/parameters": { + "source": "iana", + "charset": "UTF-8" + }, + "text/parityfec": { + "source": "iana" + }, + "text/plain": { + "source": "iana", + "compressible": true, + "extensions": ["txt","text","conf","def","list","log","in","ini"] + }, + "text/provenance-notation": { + "source": "iana", + "charset": "UTF-8" + }, + "text/prs.fallenstein.rst": { + "source": "iana" + }, + "text/prs.lines.tag": { + "source": "iana", + "extensions": ["dsc"] + }, + "text/prs.prop.logic": { + "source": "iana" + }, + "text/raptorfec": { + "source": "iana" + }, + "text/red": { + "source": "iana" + }, + "text/rfc822-headers": { + "source": "iana" + }, + "text/richtext": { + "source": "iana", + "compressible": true, + "extensions": ["rtx"] + }, + "text/rtf": { + "source": "iana", + "compressible": true, + "extensions": ["rtf"] + }, + "text/rtp-enc-aescm128": { + "source": "iana" + }, + "text/rtploopback": { + "source": "iana" + }, + "text/rtx": { + "source": "iana" + }, + "text/sgml": { + "source": "iana", + "extensions": ["sgml","sgm"] + }, + "text/shaclc": { + "source": "iana" + }, + "text/shex": { + "source": "iana", + "extensions": ["shex"] + }, + "text/slim": { + "extensions": ["slim","slm"] + }, + "text/spdx": { + "source": "iana", + "extensions": ["spdx"] + }, + "text/strings": { + "source": "iana" + }, + "text/stylus": { + "extensions": ["stylus","styl"] + }, + "text/t140": { + "source": "iana" + }, + "text/tab-separated-values": { + "source": "iana", + "compressible": true, + "extensions": ["tsv"] + }, + "text/troff": { + "source": "iana", + "extensions": ["t","tr","roff","man","me","ms"] + }, + "text/turtle": { + "source": "iana", + "charset": "UTF-8", + "extensions": ["ttl"] + }, + "text/ulpfec": { + "source": "iana" + }, + "text/uri-list": { + "source": "iana", + "compressible": true, + "extensions": ["uri","uris","urls"] + }, + "text/vcard": { + "source": "iana", + "compressible": true, + "extensions": ["vcard"] + }, + "text/vnd.a": { + "source": "iana" + }, + "text/vnd.abc": { + "source": "iana" + }, + "text/vnd.ascii-art": { + "source": "iana" + }, + "text/vnd.curl": { + "source": "iana", + "extensions": ["curl"] + }, + "text/vnd.curl.dcurl": { + "source": "apache", + "extensions": ["dcurl"] + }, + "text/vnd.curl.mcurl": { + "source": "apache", + "extensions": ["mcurl"] + }, + "text/vnd.curl.scurl": { + "source": "apache", + "extensions": ["scurl"] + }, + "text/vnd.debian.copyright": { + "source": "iana", + "charset": "UTF-8" + }, + "text/vnd.dmclientscript": { + "source": "iana" + }, + "text/vnd.dvb.subtitle": { + "source": "iana", + "extensions": ["sub"] + }, + "text/vnd.esmertec.theme-descriptor": { + "source": "iana", + "charset": "UTF-8" + }, + "text/vnd.familysearch.gedcom": { + "source": "iana", + "extensions": ["ged"] + }, + "text/vnd.ficlab.flt": { + "source": "iana" + }, + "text/vnd.fly": { + "source": "iana", + "extensions": ["fly"] + }, + "text/vnd.fmi.flexstor": { + "source": "iana", + "extensions": ["flx"] + }, + "text/vnd.gml": { + "source": "iana" + }, + "text/vnd.graphviz": { + "source": "iana", + "extensions": ["gv"] + }, + "text/vnd.hans": { + "source": "iana" + }, + "text/vnd.hgl": { + "source": "iana" + }, + "text/vnd.in3d.3dml": { + "source": "iana", + "extensions": ["3dml"] + }, + "text/vnd.in3d.spot": { + "source": "iana", + "extensions": ["spot"] + }, + "text/vnd.iptc.newsml": { + "source": "iana" + }, + "text/vnd.iptc.nitf": { + "source": "iana" + }, + "text/vnd.latex-z": { + "source": "iana" + }, + "text/vnd.motorola.reflex": { + "source": "iana" + }, + "text/vnd.ms-mediapackage": { + "source": "iana" + }, + "text/vnd.net2phone.commcenter.command": { + "source": "iana" + }, + "text/vnd.radisys.msml-basic-layout": { + "source": "iana" + }, + "text/vnd.senx.warpscript": { + "source": "iana" + }, + "text/vnd.si.uricatalogue": { + "source": "iana" + }, + "text/vnd.sosi": { + "source": "iana" + }, + "text/vnd.sun.j2me.app-descriptor": { + "source": "iana", + "charset": "UTF-8", + "extensions": ["jad"] + }, + "text/vnd.trolltech.linguist": { + "source": "iana", + "charset": "UTF-8" + }, + "text/vnd.wap.si": { + "source": "iana" + }, + "text/vnd.wap.sl": { + "source": "iana" + }, + "text/vnd.wap.wml": { + "source": "iana", + "extensions": ["wml"] + }, + "text/vnd.wap.wmlscript": { + "source": "iana", + "extensions": ["wmls"] + }, + "text/vtt": { + "source": "iana", + "charset": "UTF-8", + "compressible": true, + "extensions": ["vtt"] + }, + "text/x-asm": { + "source": "apache", + "extensions": ["s","asm"] + }, + "text/x-c": { + "source": "apache", + "extensions": ["c","cc","cxx","cpp","h","hh","dic"] + }, + "text/x-component": { + "source": "nginx", + "extensions": ["htc"] + }, + "text/x-fortran": { + "source": "apache", + "extensions": ["f","for","f77","f90"] + }, + "text/x-gwt-rpc": { + "compressible": true + }, + "text/x-handlebars-template": { + "extensions": ["hbs"] + }, + "text/x-java-source": { + "source": "apache", + "extensions": ["java"] + }, + "text/x-jquery-tmpl": { + "compressible": true + }, + "text/x-lua": { + "extensions": ["lua"] + }, + "text/x-markdown": { + "compressible": true, + "extensions": ["mkd"] + }, + "text/x-nfo": { + "source": "apache", + "extensions": ["nfo"] + }, + "text/x-opml": { + "source": "apache", + "extensions": ["opml"] + }, + "text/x-org": { + "compressible": true, + "extensions": ["org"] + }, + "text/x-pascal": { + "source": "apache", + "extensions": ["p","pas"] + }, + "text/x-processing": { + "compressible": true, + "extensions": ["pde"] + }, + "text/x-sass": { + "extensions": ["sass"] + }, + "text/x-scss": { + "extensions": ["scss"] + }, + "text/x-setext": { + "source": "apache", + "extensions": ["etx"] + }, + "text/x-sfv": { + "source": "apache", + "extensions": ["sfv"] + }, + "text/x-suse-ymp": { + "compressible": true, + "extensions": ["ymp"] + }, + "text/x-uuencode": { + "source": "apache", + "extensions": ["uu"] + }, + "text/x-vcalendar": { + "source": "apache", + "extensions": ["vcs"] + }, + "text/x-vcard": { + "source": "apache", + "extensions": ["vcf"] + }, + "text/xml": { + "source": "iana", + "compressible": true, + "extensions": ["xml"] + }, + "text/xml-external-parsed-entity": { + "source": "iana" + }, + "text/yaml": { + "compressible": true, + "extensions": ["yaml","yml"] + }, + "video/1d-interleaved-parityfec": { + "source": "iana" + }, + "video/3gpp": { + "source": "iana", + "extensions": ["3gp","3gpp"] + }, + "video/3gpp-tt": { + "source": "iana" + }, + "video/3gpp2": { + "source": "iana", + "extensions": ["3g2"] + }, + "video/av1": { + "source": "iana" + }, + "video/bmpeg": { + "source": "iana" + }, + "video/bt656": { + "source": "iana" + }, + "video/celb": { + "source": "iana" + }, + "video/dv": { + "source": "iana" + }, + "video/encaprtp": { + "source": "iana" + }, + "video/ffv1": { + "source": "iana" + }, + "video/flexfec": { + "source": "iana" + }, + "video/h261": { + "source": "iana", + "extensions": ["h261"] + }, + "video/h263": { + "source": "iana", + "extensions": ["h263"] + }, + "video/h263-1998": { + "source": "iana" + }, + "video/h263-2000": { + "source": "iana" + }, + "video/h264": { + "source": "iana", + "extensions": ["h264"] + }, + "video/h264-rcdo": { + "source": "iana" + }, + "video/h264-svc": { + "source": "iana" + }, + "video/h265": { + "source": "iana" + }, + "video/iso.segment": { + "source": "iana", + "extensions": ["m4s"] + }, + "video/jpeg": { + "source": "iana", + "extensions": ["jpgv"] + }, + "video/jpeg2000": { + "source": "iana" + }, + "video/jpm": { + "source": "apache", + "extensions": ["jpm","jpgm"] + }, + "video/jxsv": { + "source": "iana" + }, + "video/mj2": { + "source": "iana", + "extensions": ["mj2","mjp2"] + }, + "video/mp1s": { + "source": "iana" + }, + "video/mp2p": { + "source": "iana" + }, + "video/mp2t": { + "source": "iana", + "extensions": ["ts"] + }, + "video/mp4": { + "source": "iana", + "compressible": false, + "extensions": ["mp4","mp4v","mpg4"] + }, + "video/mp4v-es": { + "source": "iana" + }, + "video/mpeg": { + "source": "iana", + "compressible": false, + "extensions": ["mpeg","mpg","mpe","m1v","m2v"] + }, + "video/mpeg4-generic": { + "source": "iana" + }, + "video/mpv": { + "source": "iana" + }, + "video/nv": { + "source": "iana" + }, + "video/ogg": { + "source": "iana", + "compressible": false, + "extensions": ["ogv"] + }, + "video/parityfec": { + "source": "iana" + }, + "video/pointer": { + "source": "iana" + }, + "video/quicktime": { + "source": "iana", + "compressible": false, + "extensions": ["qt","mov"] + }, + "video/raptorfec": { + "source": "iana" + }, + "video/raw": { + "source": "iana" + }, + "video/rtp-enc-aescm128": { + "source": "iana" + }, + "video/rtploopback": { + "source": "iana" + }, + "video/rtx": { + "source": "iana" + }, + "video/scip": { + "source": "iana" + }, + "video/smpte291": { + "source": "iana" + }, + "video/smpte292m": { + "source": "iana" + }, + "video/ulpfec": { + "source": "iana" + }, + "video/vc1": { + "source": "iana" + }, + "video/vc2": { + "source": "iana" + }, + "video/vnd.cctv": { + "source": "iana" + }, + "video/vnd.dece.hd": { + "source": "iana", + "extensions": ["uvh","uvvh"] + }, + "video/vnd.dece.mobile": { + "source": "iana", + "extensions": ["uvm","uvvm"] + }, + "video/vnd.dece.mp4": { + "source": "iana" + }, + "video/vnd.dece.pd": { + "source": "iana", + "extensions": ["uvp","uvvp"] + }, + "video/vnd.dece.sd": { + "source": "iana", + "extensions": ["uvs","uvvs"] + }, + "video/vnd.dece.video": { + "source": "iana", + "extensions": ["uvv","uvvv"] + }, + "video/vnd.directv.mpeg": { + "source": "iana" + }, + "video/vnd.directv.mpeg-tts": { + "source": "iana" + }, + "video/vnd.dlna.mpeg-tts": { + "source": "iana" + }, + "video/vnd.dvb.file": { + "source": "iana", + "extensions": ["dvb"] + }, + "video/vnd.fvt": { + "source": "iana", + "extensions": ["fvt"] + }, + "video/vnd.hns.video": { + "source": "iana" + }, + "video/vnd.iptvforum.1dparityfec-1010": { + "source": "iana" + }, + "video/vnd.iptvforum.1dparityfec-2005": { + "source": "iana" + }, + "video/vnd.iptvforum.2dparityfec-1010": { + "source": "iana" + }, + "video/vnd.iptvforum.2dparityfec-2005": { + "source": "iana" + }, + "video/vnd.iptvforum.ttsavc": { + "source": "iana" + }, + "video/vnd.iptvforum.ttsmpeg2": { + "source": "iana" + }, + "video/vnd.motorola.video": { + "source": "iana" + }, + "video/vnd.motorola.videop": { + "source": "iana" + }, + "video/vnd.mpegurl": { + "source": "iana", + "extensions": ["mxu","m4u"] + }, + "video/vnd.ms-playready.media.pyv": { + "source": "iana", + "extensions": ["pyv"] + }, + "video/vnd.nokia.interleaved-multimedia": { + "source": "iana" + }, + "video/vnd.nokia.mp4vr": { + "source": "iana" + }, + "video/vnd.nokia.videovoip": { + "source": "iana" + }, + "video/vnd.objectvideo": { + "source": "iana" + }, + "video/vnd.radgamettools.bink": { + "source": "iana" + }, + "video/vnd.radgamettools.smacker": { + "source": "iana" + }, + "video/vnd.sealed.mpeg1": { + "source": "iana" + }, + "video/vnd.sealed.mpeg4": { + "source": "iana" + }, + "video/vnd.sealed.swf": { + "source": "iana" + }, + "video/vnd.sealedmedia.softseal.mov": { + "source": "iana" + }, + "video/vnd.uvvu.mp4": { + "source": "iana", + "extensions": ["uvu","uvvu"] + }, + "video/vnd.vivo": { + "source": "iana", + "extensions": ["viv"] + }, + "video/vnd.youtube.yt": { + "source": "iana" + }, + "video/vp8": { + "source": "iana" + }, + "video/vp9": { + "source": "iana" + }, + "video/webm": { + "source": "apache", + "compressible": false, + "extensions": ["webm"] + }, + "video/x-f4v": { + "source": "apache", + "extensions": ["f4v"] + }, + "video/x-fli": { + "source": "apache", + "extensions": ["fli"] + }, + "video/x-flv": { + "source": "apache", + "compressible": false, + "extensions": ["flv"] + }, + "video/x-m4v": { + "source": "apache", + "extensions": ["m4v"] + }, + "video/x-matroska": { + "source": "apache", + "compressible": false, + "extensions": ["mkv","mk3d","mks"] + }, + "video/x-mng": { + "source": "apache", + "extensions": ["mng"] + }, + "video/x-ms-asf": { + "source": "apache", + "extensions": ["asf","asx"] + }, + "video/x-ms-vob": { + "source": "apache", + "extensions": ["vob"] + }, + "video/x-ms-wm": { + "source": "apache", + "extensions": ["wm"] + }, + "video/x-ms-wmv": { + "source": "apache", + "compressible": false, + "extensions": ["wmv"] + }, + "video/x-ms-wmx": { + "source": "apache", + "extensions": ["wmx"] + }, + "video/x-ms-wvx": { + "source": "apache", + "extensions": ["wvx"] + }, + "video/x-msvideo": { + "source": "apache", + "extensions": ["avi"] + }, + "video/x-sgi-movie": { + "source": "apache", + "extensions": ["movie"] + }, + "video/x-smv": { + "source": "apache", + "extensions": ["smv"] + }, + "x-conference/x-cooltalk": { + "source": "apache", + "extensions": ["ice"] + }, + "x-shader/x-fragment": { + "compressible": true + }, + "x-shader/x-vertex": { + "compressible": true + } +} diff --git a/node_modules/mime-db/index.js b/node_modules/mime-db/index.js new file mode 100644 index 000000000..ec2be30de --- /dev/null +++ b/node_modules/mime-db/index.js @@ -0,0 +1,12 @@ +/*! + * mime-db + * Copyright(c) 2014 Jonathan Ong + * Copyright(c) 2015-2022 Douglas Christopher Wilson + * MIT Licensed + */ + +/** + * Module exports. + */ + +module.exports = require('./db.json') diff --git a/node_modules/mime-db/package.json b/node_modules/mime-db/package.json new file mode 100644 index 000000000..32c14b846 --- /dev/null +++ b/node_modules/mime-db/package.json @@ -0,0 +1,60 @@ +{ + "name": "mime-db", + "description": "Media Type Database", + "version": "1.52.0", + "contributors": [ + "Douglas Christopher Wilson ", + "Jonathan Ong (http://jongleberry.com)", + "Robert Kieffer (http://github.com/broofa)" + ], + "license": "MIT", + "keywords": [ + "mime", + "db", + "type", + "types", + "database", + "charset", + "charsets" + ], + "repository": "jshttp/mime-db", + "devDependencies": { + "bluebird": "3.7.2", + "co": "4.6.0", + "cogent": "1.0.1", + "csv-parse": "4.16.3", + "eslint": "7.32.0", + "eslint-config-standard": "15.0.1", + "eslint-plugin-import": "2.25.4", + "eslint-plugin-markdown": "2.2.1", + "eslint-plugin-node": "11.1.0", + "eslint-plugin-promise": "5.1.1", + "eslint-plugin-standard": "4.1.0", + "gnode": "0.1.2", + "media-typer": "1.1.0", + "mocha": "9.2.1", + "nyc": "15.1.0", + "raw-body": "2.5.0", + "stream-to-array": "2.3.0" + }, + "files": [ + "HISTORY.md", + "LICENSE", + "README.md", + "db.json", + "index.js" + ], + "engines": { + "node": ">= 0.6" + }, + "scripts": { + "build": "node scripts/build", + "fetch": "node scripts/fetch-apache && gnode scripts/fetch-iana && node scripts/fetch-nginx", + "lint": "eslint .", + "test": "mocha --reporter spec --bail --check-leaks test/", + "test-ci": "nyc --reporter=lcov --reporter=text npm test", + "test-cov": "nyc --reporter=html --reporter=text npm test", + "update": "npm run fetch && npm run build", + "version": "node scripts/version-history.js && git add HISTORY.md" + } +} diff --git a/node_modules/mime-types/HISTORY.md b/node_modules/mime-types/HISTORY.md new file mode 100644 index 000000000..c5043b75b --- /dev/null +++ b/node_modules/mime-types/HISTORY.md @@ -0,0 +1,397 @@ +2.1.35 / 2022-03-12 +=================== + + * deps: mime-db@1.52.0 + - Add extensions from IANA for more `image/*` types + - Add extension `.asc` to `application/pgp-keys` + - Add extensions to various XML types + - Add new upstream MIME types + +2.1.34 / 2021-11-08 +=================== + + * deps: mime-db@1.51.0 + - Add new upstream MIME types + +2.1.33 / 2021-10-01 +=================== + + * deps: mime-db@1.50.0 + - Add deprecated iWorks mime types and extensions + - Add new upstream MIME types + +2.1.32 / 2021-07-27 +=================== + + * deps: mime-db@1.49.0 + - Add extension `.trig` to `application/trig` + - Add new upstream MIME types + +2.1.31 / 2021-06-01 +=================== + + * deps: mime-db@1.48.0 + - Add extension `.mvt` to `application/vnd.mapbox-vector-tile` + - Add new upstream MIME types + +2.1.30 / 2021-04-02 +=================== + + * deps: mime-db@1.47.0 + - Add extension `.amr` to `audio/amr` + - Remove ambigious extensions from IANA for `application/*+xml` types + - Update primary extension to `.es` for `application/ecmascript` + +2.1.29 / 2021-02-17 +=================== + + * deps: mime-db@1.46.0 + - Add extension `.amr` to `audio/amr` + - Add extension `.m4s` to `video/iso.segment` + - Add extension `.opus` to `audio/ogg` + - Add new upstream MIME types + +2.1.28 / 2021-01-01 +=================== + + * deps: mime-db@1.45.0 + - Add `application/ubjson` with extension `.ubj` + - Add `image/avif` with extension `.avif` + - Add `image/ktx2` with extension `.ktx2` + - Add extension `.dbf` to `application/vnd.dbf` + - Add extension `.rar` to `application/vnd.rar` + - Add extension `.td` to `application/urc-targetdesc+xml` + - Add new upstream MIME types + - Fix extension of `application/vnd.apple.keynote` to be `.key` + +2.1.27 / 2020-04-23 +=================== + + * deps: mime-db@1.44.0 + - Add charsets from IANA + - Add extension `.cjs` to `application/node` + - Add new upstream MIME types + +2.1.26 / 2020-01-05 +=================== + + * deps: mime-db@1.43.0 + - Add `application/x-keepass2` with extension `.kdbx` + - Add extension `.mxmf` to `audio/mobile-xmf` + - Add extensions from IANA for `application/*+xml` types + - Add new upstream MIME types + +2.1.25 / 2019-11-12 +=================== + + * deps: mime-db@1.42.0 + - Add new upstream MIME types + - Add `application/toml` with extension `.toml` + - Add `image/vnd.ms-dds` with extension `.dds` + +2.1.24 / 2019-04-20 +=================== + + * deps: mime-db@1.40.0 + - Add extensions from IANA for `model/*` types + - Add `text/mdx` with extension `.mdx` + +2.1.23 / 2019-04-17 +=================== + + * deps: mime-db@~1.39.0 + - Add extensions `.siv` and `.sieve` to `application/sieve` + - Add new upstream MIME types + +2.1.22 / 2019-02-14 +=================== + + * deps: mime-db@~1.38.0 + - Add extension `.nq` to `application/n-quads` + - Add extension `.nt` to `application/n-triples` + - Add new upstream MIME types + +2.1.21 / 2018-10-19 +=================== + + * deps: mime-db@~1.37.0 + - Add extensions to HEIC image types + - Add new upstream MIME types + +2.1.20 / 2018-08-26 +=================== + + * deps: mime-db@~1.36.0 + - Add Apple file extensions from IANA + - Add extensions from IANA for `image/*` types + - Add new upstream MIME types + +2.1.19 / 2018-07-17 +=================== + + * deps: mime-db@~1.35.0 + - Add extension `.csl` to `application/vnd.citationstyles.style+xml` + - Add extension `.es` to `application/ecmascript` + - Add extension `.owl` to `application/rdf+xml` + - Add new upstream MIME types + - Add UTF-8 as default charset for `text/turtle` + +2.1.18 / 2018-02-16 +=================== + + * deps: mime-db@~1.33.0 + - Add `application/raml+yaml` with extension `.raml` + - Add `application/wasm` with extension `.wasm` + - Add `text/shex` with extension `.shex` + - Add extensions for JPEG-2000 images + - Add extensions from IANA for `message/*` types + - Add new upstream MIME types + - Update font MIME types + - Update `text/hjson` to registered `application/hjson` + +2.1.17 / 2017-09-01 +=================== + + * deps: mime-db@~1.30.0 + - Add `application/vnd.ms-outlook` + - Add `application/x-arj` + - Add extension `.mjs` to `application/javascript` + - Add glTF types and extensions + - Add new upstream MIME types + - Add `text/x-org` + - Add VirtualBox MIME types + - Fix `source` records for `video/*` types that are IANA + - Update `font/opentype` to registered `font/otf` + +2.1.16 / 2017-07-24 +=================== + + * deps: mime-db@~1.29.0 + - Add `application/fido.trusted-apps+json` + - Add extension `.wadl` to `application/vnd.sun.wadl+xml` + - Add extension `.gz` to `application/gzip` + - Add new upstream MIME types + - Update extensions `.md` and `.markdown` to be `text/markdown` + +2.1.15 / 2017-03-23 +=================== + + * deps: mime-db@~1.27.0 + - Add new mime types + - Add `image/apng` + +2.1.14 / 2017-01-14 +=================== + + * deps: mime-db@~1.26.0 + - Add new mime types + +2.1.13 / 2016-11-18 +=================== + + * deps: mime-db@~1.25.0 + - Add new mime types + +2.1.12 / 2016-09-18 +=================== + + * deps: mime-db@~1.24.0 + - Add new mime types + - Add `audio/mp3` + +2.1.11 / 2016-05-01 +=================== + + * deps: mime-db@~1.23.0 + - Add new mime types + +2.1.10 / 2016-02-15 +=================== + + * deps: mime-db@~1.22.0 + - Add new mime types + - Fix extension of `application/dash+xml` + - Update primary extension for `audio/mp4` + +2.1.9 / 2016-01-06 +================== + + * deps: mime-db@~1.21.0 + - Add new mime types + +2.1.8 / 2015-11-30 +================== + + * deps: mime-db@~1.20.0 + - Add new mime types + +2.1.7 / 2015-09-20 +================== + + * deps: mime-db@~1.19.0 + - Add new mime types + +2.1.6 / 2015-09-03 +================== + + * deps: mime-db@~1.18.0 + - Add new mime types + +2.1.5 / 2015-08-20 +================== + + * deps: mime-db@~1.17.0 + - Add new mime types + +2.1.4 / 2015-07-30 +================== + + * deps: mime-db@~1.16.0 + - Add new mime types + +2.1.3 / 2015-07-13 +================== + + * deps: mime-db@~1.15.0 + - Add new mime types + +2.1.2 / 2015-06-25 +================== + + * deps: mime-db@~1.14.0 + - Add new mime types + +2.1.1 / 2015-06-08 +================== + + * perf: fix deopt during mapping + +2.1.0 / 2015-06-07 +================== + + * Fix incorrectly treating extension-less file name as extension + - i.e. `'path/to/json'` will no longer return `application/json` + * Fix `.charset(type)` to accept parameters + * Fix `.charset(type)` to match case-insensitive + * Improve generation of extension to MIME mapping + * Refactor internals for readability and no argument reassignment + * Prefer `application/*` MIME types from the same source + * Prefer any type over `application/octet-stream` + * deps: mime-db@~1.13.0 + - Add nginx as a source + - Add new mime types + +2.0.14 / 2015-06-06 +=================== + + * deps: mime-db@~1.12.0 + - Add new mime types + +2.0.13 / 2015-05-31 +=================== + + * deps: mime-db@~1.11.0 + - Add new mime types + +2.0.12 / 2015-05-19 +=================== + + * deps: mime-db@~1.10.0 + - Add new mime types + +2.0.11 / 2015-05-05 +=================== + + * deps: mime-db@~1.9.1 + - Add new mime types + +2.0.10 / 2015-03-13 +=================== + + * deps: mime-db@~1.8.0 + - Add new mime types + +2.0.9 / 2015-02-09 +================== + + * deps: mime-db@~1.7.0 + - Add new mime types + - Community extensions ownership transferred from `node-mime` + +2.0.8 / 2015-01-29 +================== + + * deps: mime-db@~1.6.0 + - Add new mime types + +2.0.7 / 2014-12-30 +================== + + * deps: mime-db@~1.5.0 + - Add new mime types + - Fix various invalid MIME type entries + +2.0.6 / 2014-12-30 +================== + + * deps: mime-db@~1.4.0 + - Add new mime types + - Fix various invalid MIME type entries + - Remove example template MIME types + +2.0.5 / 2014-12-29 +================== + + * deps: mime-db@~1.3.1 + - Fix missing extensions + +2.0.4 / 2014-12-10 +================== + + * deps: mime-db@~1.3.0 + - Add new mime types + +2.0.3 / 2014-11-09 +================== + + * deps: mime-db@~1.2.0 + - Add new mime types + +2.0.2 / 2014-09-28 +================== + + * deps: mime-db@~1.1.0 + - Add new mime types + - Update charsets + +2.0.1 / 2014-09-07 +================== + + * Support Node.js 0.6 + +2.0.0 / 2014-09-02 +================== + + * Use `mime-db` + * Remove `.define()` + +1.0.2 / 2014-08-04 +================== + + * Set charset=utf-8 for `text/javascript` + +1.0.1 / 2014-06-24 +================== + + * Add `text/jsx` type + +1.0.0 / 2014-05-12 +================== + + * Return `false` for unknown types + * Set charset=utf-8 for `application/json` + +0.1.0 / 2014-05-02 +================== + + * Initial release diff --git a/node_modules/mime-types/LICENSE b/node_modules/mime-types/LICENSE new file mode 100644 index 000000000..06166077b --- /dev/null +++ b/node_modules/mime-types/LICENSE @@ -0,0 +1,23 @@ +(The MIT License) + +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2015 Douglas Christopher Wilson + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +'Software'), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/node_modules/mime-types/README.md b/node_modules/mime-types/README.md new file mode 100644 index 000000000..48d2fb477 --- /dev/null +++ b/node_modules/mime-types/README.md @@ -0,0 +1,113 @@ +# mime-types + +[![NPM Version][npm-version-image]][npm-url] +[![NPM Downloads][npm-downloads-image]][npm-url] +[![Node.js Version][node-version-image]][node-version-url] +[![Build Status][ci-image]][ci-url] +[![Test Coverage][coveralls-image]][coveralls-url] + +The ultimate javascript content-type utility. + +Similar to [the `mime@1.x` module](https://www.npmjs.com/package/mime), except: + +- __No fallbacks.__ Instead of naively returning the first available type, + `mime-types` simply returns `false`, so do + `var type = mime.lookup('unrecognized') || 'application/octet-stream'`. +- No `new Mime()` business, so you could do `var lookup = require('mime-types').lookup`. +- No `.define()` functionality +- Bug fixes for `.lookup(path)` + +Otherwise, the API is compatible with `mime` 1.x. + +## Install + +This is a [Node.js](https://nodejs.org/en/) module available through the +[npm registry](https://www.npmjs.com/). Installation is done using the +[`npm install` command](https://docs.npmjs.com/getting-started/installing-npm-packages-locally): + +```sh +$ npm install mime-types +``` + +## Adding Types + +All mime types are based on [mime-db](https://www.npmjs.com/package/mime-db), +so open a PR there if you'd like to add mime types. + +## API + +```js +var mime = require('mime-types') +``` + +All functions return `false` if input is invalid or not found. + +### mime.lookup(path) + +Lookup the content-type associated with a file. + +```js +mime.lookup('json') // 'application/json' +mime.lookup('.md') // 'text/markdown' +mime.lookup('file.html') // 'text/html' +mime.lookup('folder/file.js') // 'application/javascript' +mime.lookup('folder/.htaccess') // false + +mime.lookup('cats') // false +``` + +### mime.contentType(type) + +Create a full content-type header given a content-type or extension. +When given an extension, `mime.lookup` is used to get the matching +content-type, otherwise the given content-type is used. Then if the +content-type does not already have a `charset` parameter, `mime.charset` +is used to get the default charset and add to the returned content-type. + +```js +mime.contentType('markdown') // 'text/x-markdown; charset=utf-8' +mime.contentType('file.json') // 'application/json; charset=utf-8' +mime.contentType('text/html') // 'text/html; charset=utf-8' +mime.contentType('text/html; charset=iso-8859-1') // 'text/html; charset=iso-8859-1' + +// from a full path +mime.contentType(path.extname('/path/to/file.json')) // 'application/json; charset=utf-8' +``` + +### mime.extension(type) + +Get the default extension for a content-type. + +```js +mime.extension('application/octet-stream') // 'bin' +``` + +### mime.charset(type) + +Lookup the implied default charset of a content-type. + +```js +mime.charset('text/markdown') // 'UTF-8' +``` + +### var type = mime.types[extension] + +A map of content-types by extension. + +### [extensions...] = mime.extensions[type] + +A map of extensions by content-type. + +## License + +[MIT](LICENSE) + +[ci-image]: https://badgen.net/github/checks/jshttp/mime-types/master?label=ci +[ci-url]: https://github.com/jshttp/mime-types/actions/workflows/ci.yml +[coveralls-image]: https://badgen.net/coveralls/c/github/jshttp/mime-types/master +[coveralls-url]: https://coveralls.io/r/jshttp/mime-types?branch=master +[node-version-image]: https://badgen.net/npm/node/mime-types +[node-version-url]: https://nodejs.org/en/download +[npm-downloads-image]: https://badgen.net/npm/dm/mime-types +[npm-url]: https://npmjs.org/package/mime-types +[npm-version-image]: https://badgen.net/npm/v/mime-types diff --git a/node_modules/mime-types/index.js b/node_modules/mime-types/index.js new file mode 100644 index 000000000..b9f34d599 --- /dev/null +++ b/node_modules/mime-types/index.js @@ -0,0 +1,188 @@ +/*! + * mime-types + * Copyright(c) 2014 Jonathan Ong + * Copyright(c) 2015 Douglas Christopher Wilson + * MIT Licensed + */ + +'use strict' + +/** + * Module dependencies. + * @private + */ + +var db = require('mime-db') +var extname = require('path').extname + +/** + * Module variables. + * @private + */ + +var EXTRACT_TYPE_REGEXP = /^\s*([^;\s]*)(?:;|\s|$)/ +var TEXT_TYPE_REGEXP = /^text\//i + +/** + * Module exports. + * @public + */ + +exports.charset = charset +exports.charsets = { lookup: charset } +exports.contentType = contentType +exports.extension = extension +exports.extensions = Object.create(null) +exports.lookup = lookup +exports.types = Object.create(null) + +// Populate the extensions/types maps +populateMaps(exports.extensions, exports.types) + +/** + * Get the default charset for a MIME type. + * + * @param {string} type + * @return {boolean|string} + */ + +function charset (type) { + if (!type || typeof type !== 'string') { + return false + } + + // TODO: use media-typer + var match = EXTRACT_TYPE_REGEXP.exec(type) + var mime = match && db[match[1].toLowerCase()] + + if (mime && mime.charset) { + return mime.charset + } + + // default text/* to utf-8 + if (match && TEXT_TYPE_REGEXP.test(match[1])) { + return 'UTF-8' + } + + return false +} + +/** + * Create a full Content-Type header given a MIME type or extension. + * + * @param {string} str + * @return {boolean|string} + */ + +function contentType (str) { + // TODO: should this even be in this module? + if (!str || typeof str !== 'string') { + return false + } + + var mime = str.indexOf('/') === -1 + ? exports.lookup(str) + : str + + if (!mime) { + return false + } + + // TODO: use content-type or other module + if (mime.indexOf('charset') === -1) { + var charset = exports.charset(mime) + if (charset) mime += '; charset=' + charset.toLowerCase() + } + + return mime +} + +/** + * Get the default extension for a MIME type. + * + * @param {string} type + * @return {boolean|string} + */ + +function extension (type) { + if (!type || typeof type !== 'string') { + return false + } + + // TODO: use media-typer + var match = EXTRACT_TYPE_REGEXP.exec(type) + + // get extensions + var exts = match && exports.extensions[match[1].toLowerCase()] + + if (!exts || !exts.length) { + return false + } + + return exts[0] +} + +/** + * Lookup the MIME type for a file path/extension. + * + * @param {string} path + * @return {boolean|string} + */ + +function lookup (path) { + if (!path || typeof path !== 'string') { + return false + } + + // get the extension ("ext" or ".ext" or full path) + var extension = extname('x.' + path) + .toLowerCase() + .substr(1) + + if (!extension) { + return false + } + + return exports.types[extension] || false +} + +/** + * Populate the extensions and types maps. + * @private + */ + +function populateMaps (extensions, types) { + // source preference (least -> most) + var preference = ['nginx', 'apache', undefined, 'iana'] + + Object.keys(db).forEach(function forEachMimeType (type) { + var mime = db[type] + var exts = mime.extensions + + if (!exts || !exts.length) { + return + } + + // mime -> extensions + extensions[type] = exts + + // extension -> mime + for (var i = 0; i < exts.length; i++) { + var extension = exts[i] + + if (types[extension]) { + var from = preference.indexOf(db[types[extension]].source) + var to = preference.indexOf(mime.source) + + if (types[extension] !== 'application/octet-stream' && + (from > to || (from === to && types[extension].substr(0, 12) === 'application/'))) { + // skip the remapping + continue + } + } + + // set the extension -> mime + types[extension] = type + } + }) +} diff --git a/node_modules/mime-types/package.json b/node_modules/mime-types/package.json new file mode 100644 index 000000000..bbef69645 --- /dev/null +++ b/node_modules/mime-types/package.json @@ -0,0 +1,44 @@ +{ + "name": "mime-types", + "description": "The ultimate javascript content-type utility.", + "version": "2.1.35", + "contributors": [ + "Douglas Christopher Wilson ", + "Jeremiah Senkpiel (https://searchbeam.jit.su)", + "Jonathan Ong (http://jongleberry.com)" + ], + "license": "MIT", + "keywords": [ + "mime", + "types" + ], + "repository": "jshttp/mime-types", + "dependencies": { + "mime-db": "1.52.0" + }, + "devDependencies": { + "eslint": "7.32.0", + "eslint-config-standard": "14.1.1", + "eslint-plugin-import": "2.25.4", + "eslint-plugin-markdown": "2.2.1", + "eslint-plugin-node": "11.1.0", + "eslint-plugin-promise": "5.2.0", + "eslint-plugin-standard": "4.1.0", + "mocha": "9.2.2", + "nyc": "15.1.0" + }, + "files": [ + "HISTORY.md", + "LICENSE", + "index.js" + ], + "engines": { + "node": ">= 0.6" + }, + "scripts": { + "lint": "eslint .", + "test": "mocha --reporter spec test/test.js", + "test-ci": "nyc --reporter=lcov --reporter=text npm test", + "test-cov": "nyc --reporter=html --reporter=text npm test" + } +} diff --git a/node_modules/mime/.npmignore b/node_modules/mime/.npmignore new file mode 100644 index 000000000..e69de29bb diff --git a/node_modules/mime/CHANGELOG.md b/node_modules/mime/CHANGELOG.md new file mode 100644 index 000000000..f12753505 --- /dev/null +++ b/node_modules/mime/CHANGELOG.md @@ -0,0 +1,164 @@ +# Changelog + +## v1.6.0 (24/11/2017) +*No changelog for this release.* + +--- + +## v2.0.4 (24/11/2017) +- [**closed**] Switch to mime-score module for resolving extension contention issues. [#182](https://github.com/broofa/node-mime/issues/182) +- [**closed**] Update mime-db to 1.31.0 in v1.x branch [#181](https://github.com/broofa/node-mime/issues/181) + +--- + +## v1.5.0 (22/11/2017) +- [**closed**] need ES5 version ready in npm package [#179](https://github.com/broofa/node-mime/issues/179) +- [**closed**] mime-db no trace of iWork - pages / numbers / etc. [#178](https://github.com/broofa/node-mime/issues/178) +- [**closed**] How it works in brownser ? [#176](https://github.com/broofa/node-mime/issues/176) +- [**closed**] Missing `./Mime` [#175](https://github.com/broofa/node-mime/issues/175) +- [**closed**] Vulnerable Regular Expression [#167](https://github.com/broofa/node-mime/issues/167) + +--- + +## v2.0.3 (25/09/2017) +*No changelog for this release.* + +--- + +## v1.4.1 (25/09/2017) +- [**closed**] Issue when bundling with webpack [#172](https://github.com/broofa/node-mime/issues/172) + +--- + +## v2.0.2 (15/09/2017) +- [**V2**] fs.readFileSync is not a function [#165](https://github.com/broofa/node-mime/issues/165) +- [**closed**] The extension for video/quicktime should map to .mov, not .qt [#164](https://github.com/broofa/node-mime/issues/164) +- [**V2**] [v2 Feedback request] Mime class API [#163](https://github.com/broofa/node-mime/issues/163) +- [**V2**] [v2 Feedback request] Resolving conflicts over extensions [#162](https://github.com/broofa/node-mime/issues/162) +- [**V2**] Allow callers to load module with official, full, or no defined types. [#161](https://github.com/broofa/node-mime/issues/161) +- [**V2**] Use "facets" to resolve extension conflicts [#160](https://github.com/broofa/node-mime/issues/160) +- [**V2**] Remove fs and path dependencies [#152](https://github.com/broofa/node-mime/issues/152) +- [**V2**] Default content-type should not be application/octet-stream [#139](https://github.com/broofa/node-mime/issues/139) +- [**V2**] reset mime-types [#124](https://github.com/broofa/node-mime/issues/124) +- [**V2**] Extensionless paths should return null or false [#113](https://github.com/broofa/node-mime/issues/113) + +--- + +## v2.0.1 (14/09/2017) +- [**closed**] Changelog for v2.0 does not mention breaking changes [#171](https://github.com/broofa/node-mime/issues/171) +- [**closed**] MIME breaking with 'class' declaration as it is without 'use strict mode' [#170](https://github.com/broofa/node-mime/issues/170) + +--- + +## v2.0.0 (12/09/2017) +- [**closed**] woff and woff2 [#168](https://github.com/broofa/node-mime/issues/168) + +--- + +## v1.4.0 (28/08/2017) +- [**closed**] support for ac3 voc files [#159](https://github.com/broofa/node-mime/issues/159) +- [**closed**] Help understanding change from application/xml to text/xml [#158](https://github.com/broofa/node-mime/issues/158) +- [**closed**] no longer able to override mimetype [#157](https://github.com/broofa/node-mime/issues/157) +- [**closed**] application/vnd.adobe.photoshop [#147](https://github.com/broofa/node-mime/issues/147) +- [**closed**] Directories should appear as something other than application/octet-stream [#135](https://github.com/broofa/node-mime/issues/135) +- [**closed**] requested features [#131](https://github.com/broofa/node-mime/issues/131) +- [**closed**] Make types.json loading optional? [#129](https://github.com/broofa/node-mime/issues/129) +- [**closed**] Cannot find module './types.json' [#120](https://github.com/broofa/node-mime/issues/120) +- [**V2**] .wav files show up as "audio/x-wav" instead of "audio/x-wave" [#118](https://github.com/broofa/node-mime/issues/118) +- [**closed**] Don't be a pain in the ass for node community [#108](https://github.com/broofa/node-mime/issues/108) +- [**closed**] don't make default_type global [#78](https://github.com/broofa/node-mime/issues/78) +- [**closed**] mime.extension() fails if the content-type is parameterized [#74](https://github.com/broofa/node-mime/issues/74) + +--- + +## v1.3.6 (11/05/2017) +- [**closed**] .md should be text/markdown as of March 2016 [#154](https://github.com/broofa/node-mime/issues/154) +- [**closed**] Error while installing mime [#153](https://github.com/broofa/node-mime/issues/153) +- [**closed**] application/manifest+json [#149](https://github.com/broofa/node-mime/issues/149) +- [**closed**] Dynamic adaptive streaming over HTTP (DASH) file extension typo [#141](https://github.com/broofa/node-mime/issues/141) +- [**closed**] charsets image/png undefined [#140](https://github.com/broofa/node-mime/issues/140) +- [**closed**] Mime-db dependency out of date [#130](https://github.com/broofa/node-mime/issues/130) +- [**closed**] how to support plist? [#126](https://github.com/broofa/node-mime/issues/126) +- [**closed**] how does .types file format look like? [#123](https://github.com/broofa/node-mime/issues/123) +- [**closed**] Feature: support for expanding MIME patterns [#121](https://github.com/broofa/node-mime/issues/121) +- [**closed**] DEBUG_MIME doesn't work [#117](https://github.com/broofa/node-mime/issues/117) + +--- + +## v1.3.4 (06/02/2015) +*No changelog for this release.* + +--- + +## v1.3.3 (06/02/2015) +*No changelog for this release.* + +--- + +## v1.3.1 (05/02/2015) +- [**closed**] Consider adding support for Handlebars .hbs file ending [#111](https://github.com/broofa/node-mime/issues/111) +- [**closed**] Consider adding support for hjson. [#110](https://github.com/broofa/node-mime/issues/110) +- [**closed**] Add mime type for Opus audio files [#94](https://github.com/broofa/node-mime/issues/94) +- [**closed**] Consider making the `Requesting New Types` information more visible [#77](https://github.com/broofa/node-mime/issues/77) + +--- + +## v1.3.0 (05/02/2015) +- [**closed**] Add common name? [#114](https://github.com/broofa/node-mime/issues/114) +- [**closed**] application/x-yaml [#104](https://github.com/broofa/node-mime/issues/104) +- [**closed**] Add mime type for WOFF file format 2.0 [#102](https://github.com/broofa/node-mime/issues/102) +- [**closed**] application/x-msi for .msi [#99](https://github.com/broofa/node-mime/issues/99) +- [**closed**] Add mimetype for gettext translation files [#98](https://github.com/broofa/node-mime/issues/98) +- [**closed**] collaborators [#88](https://github.com/broofa/node-mime/issues/88) +- [**closed**] getting errot in installation of mime module...any1 can help? [#87](https://github.com/broofa/node-mime/issues/87) +- [**closed**] should application/json's charset be utf8? [#86](https://github.com/broofa/node-mime/issues/86) +- [**closed**] Add "license" and "licenses" to package.json [#81](https://github.com/broofa/node-mime/issues/81) +- [**closed**] lookup with extension-less file on Windows returns wrong type [#68](https://github.com/broofa/node-mime/issues/68) + +--- + +## v1.2.11 (15/08/2013) +- [**closed**] Update mime.types [#65](https://github.com/broofa/node-mime/issues/65) +- [**closed**] Publish a new version [#63](https://github.com/broofa/node-mime/issues/63) +- [**closed**] README should state upfront that "application/octet-stream" is default for unknown extension [#55](https://github.com/broofa/node-mime/issues/55) +- [**closed**] Suggested improvement to the charset API [#52](https://github.com/broofa/node-mime/issues/52) + +--- + +## v1.2.10 (25/07/2013) +- [**closed**] Mime type for woff files should be application/font-woff and not application/x-font-woff [#62](https://github.com/broofa/node-mime/issues/62) +- [**closed**] node.types in conflict with mime.types [#51](https://github.com/broofa/node-mime/issues/51) + +--- + +## v1.2.9 (17/01/2013) +- [**closed**] Please update "mime" NPM [#49](https://github.com/broofa/node-mime/issues/49) +- [**closed**] Please add semicolon [#46](https://github.com/broofa/node-mime/issues/46) +- [**closed**] parse full mime types [#43](https://github.com/broofa/node-mime/issues/43) + +--- + +## v1.2.8 (10/01/2013) +- [**closed**] /js directory mime is application/javascript. Is it correct? [#47](https://github.com/broofa/node-mime/issues/47) +- [**closed**] Add mime types for lua code. [#45](https://github.com/broofa/node-mime/issues/45) + +--- + +## v1.2.7 (19/10/2012) +- [**closed**] cannot install 1.2.7 via npm [#41](https://github.com/broofa/node-mime/issues/41) +- [**closed**] Transfer ownership to @broofa [#36](https://github.com/broofa/node-mime/issues/36) +- [**closed**] it's wrong to set charset to UTF-8 for text [#30](https://github.com/broofa/node-mime/issues/30) +- [**closed**] Allow multiple instances of MIME types container [#27](https://github.com/broofa/node-mime/issues/27) + +--- + +## v1.2.5 (16/02/2012) +- [**closed**] When looking up a types, check hasOwnProperty [#23](https://github.com/broofa/node-mime/issues/23) +- [**closed**] Bump version to 1.2.2 [#18](https://github.com/broofa/node-mime/issues/18) +- [**closed**] No license [#16](https://github.com/broofa/node-mime/issues/16) +- [**closed**] Some types missing that are used by html5/css3 [#13](https://github.com/broofa/node-mime/issues/13) +- [**closed**] npm install fails for 1.2.1 [#12](https://github.com/broofa/node-mime/issues/12) +- [**closed**] image/pjpeg + image/x-png [#10](https://github.com/broofa/node-mime/issues/10) +- [**closed**] symlink [#8](https://github.com/broofa/node-mime/issues/8) +- [**closed**] gzip [#2](https://github.com/broofa/node-mime/issues/2) +- [**closed**] ALL CAPS filenames return incorrect mime type [#1](https://github.com/broofa/node-mime/issues/1) diff --git a/node_modules/mime/LICENSE b/node_modules/mime/LICENSE new file mode 100644 index 000000000..d3f46f7e1 --- /dev/null +++ b/node_modules/mime/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2010 Benjamin Thomas, Robert Kieffer + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/node_modules/mime/README.md b/node_modules/mime/README.md new file mode 100644 index 000000000..506fbe550 --- /dev/null +++ b/node_modules/mime/README.md @@ -0,0 +1,90 @@ +# mime + +Comprehensive MIME type mapping API based on mime-db module. + +## Install + +Install with [npm](http://github.com/isaacs/npm): + + npm install mime + +## Contributing / Testing + + npm run test + +## Command Line + + mime [path_string] + +E.g. + + > mime scripts/jquery.js + application/javascript + +## API - Queries + +### mime.lookup(path) +Get the mime type associated with a file, if no mime type is found `application/octet-stream` is returned. Performs a case-insensitive lookup using the extension in `path` (the substring after the last '/' or '.'). E.g. + +```js +var mime = require('mime'); + +mime.lookup('/path/to/file.txt'); // => 'text/plain' +mime.lookup('file.txt'); // => 'text/plain' +mime.lookup('.TXT'); // => 'text/plain' +mime.lookup('htm'); // => 'text/html' +``` + +### mime.default_type +Sets the mime type returned when `mime.lookup` fails to find the extension searched for. (Default is `application/octet-stream`.) + +### mime.extension(type) +Get the default extension for `type` + +```js +mime.extension('text/html'); // => 'html' +mime.extension('application/octet-stream'); // => 'bin' +``` + +### mime.charsets.lookup() + +Map mime-type to charset + +```js +mime.charsets.lookup('text/plain'); // => 'UTF-8' +``` + +(The logic for charset lookups is pretty rudimentary. Feel free to suggest improvements.) + +## API - Defining Custom Types + +Custom type mappings can be added on a per-project basis via the following APIs. + +### mime.define() + +Add custom mime/extension mappings + +```js +mime.define({ + 'text/x-some-format': ['x-sf', 'x-sft', 'x-sfml'], + 'application/x-my-type': ['x-mt', 'x-mtt'], + // etc ... +}); + +mime.lookup('x-sft'); // => 'text/x-some-format' +``` + +The first entry in the extensions array is returned by `mime.extension()`. E.g. + +```js +mime.extension('text/x-some-format'); // => 'x-sf' +``` + +### mime.load(filepath) + +Load mappings from an Apache ".types" format file + +```js +mime.load('./my_project.types'); +``` +The .types file format is simple - See the `types` dir for examples. diff --git a/node_modules/mime/cli.js b/node_modules/mime/cli.js new file mode 100644 index 000000000..20b1ffeb2 --- /dev/null +++ b/node_modules/mime/cli.js @@ -0,0 +1,8 @@ +#!/usr/bin/env node + +var mime = require('./mime.js'); +var file = process.argv[2]; +var type = mime.lookup(file); + +process.stdout.write(type + '\n'); + diff --git a/node_modules/mime/mime.js b/node_modules/mime/mime.js new file mode 100644 index 000000000..d7efbde70 --- /dev/null +++ b/node_modules/mime/mime.js @@ -0,0 +1,108 @@ +var path = require('path'); +var fs = require('fs'); + +function Mime() { + // Map of extension -> mime type + this.types = Object.create(null); + + // Map of mime type -> extension + this.extensions = Object.create(null); +} + +/** + * Define mimetype -> extension mappings. Each key is a mime-type that maps + * to an array of extensions associated with the type. The first extension is + * used as the default extension for the type. + * + * e.g. mime.define({'audio/ogg', ['oga', 'ogg', 'spx']}); + * + * @param map (Object) type definitions + */ +Mime.prototype.define = function (map) { + for (var type in map) { + var exts = map[type]; + for (var i = 0; i < exts.length; i++) { + if (process.env.DEBUG_MIME && this.types[exts[i]]) { + console.warn((this._loading || "define()").replace(/.*\//, ''), 'changes "' + exts[i] + '" extension type from ' + + this.types[exts[i]] + ' to ' + type); + } + + this.types[exts[i]] = type; + } + + // Default extension is the first one we encounter + if (!this.extensions[type]) { + this.extensions[type] = exts[0]; + } + } +}; + +/** + * Load an Apache2-style ".types" file + * + * This may be called multiple times (it's expected). Where files declare + * overlapping types/extensions, the last file wins. + * + * @param file (String) path of file to load. + */ +Mime.prototype.load = function(file) { + this._loading = file; + // Read file and split into lines + var map = {}, + content = fs.readFileSync(file, 'ascii'), + lines = content.split(/[\r\n]+/); + + lines.forEach(function(line) { + // Clean up whitespace/comments, and split into fields + var fields = line.replace(/\s*#.*|^\s*|\s*$/g, '').split(/\s+/); + map[fields.shift()] = fields; + }); + + this.define(map); + + this._loading = null; +}; + +/** + * Lookup a mime type based on extension + */ +Mime.prototype.lookup = function(path, fallback) { + var ext = path.replace(/^.*[\.\/\\]/, '').toLowerCase(); + + return this.types[ext] || fallback || this.default_type; +}; + +/** + * Return file extension associated with a mime type + */ +Mime.prototype.extension = function(mimeType) { + var type = mimeType.match(/^\s*([^;\s]*)(?:;|\s|$)/)[1].toLowerCase(); + return this.extensions[type]; +}; + +// Default instance +var mime = new Mime(); + +// Define built-in types +mime.define(require('./types.json')); + +// Default type +mime.default_type = mime.lookup('bin'); + +// +// Additional API specific to the default instance +// + +mime.Mime = Mime; + +/** + * Lookup a charset based on mime type. + */ +mime.charsets = { + lookup: function(mimeType, fallback) { + // Assume text types are utf8 + return (/^text\/|^application\/(javascript|json)/).test(mimeType) ? 'UTF-8' : fallback; + } +}; + +module.exports = mime; diff --git a/node_modules/mime/package.json b/node_modules/mime/package.json new file mode 100644 index 000000000..6bd24bc53 --- /dev/null +++ b/node_modules/mime/package.json @@ -0,0 +1,44 @@ +{ + "author": { + "name": "Robert Kieffer", + "url": "http://github.com/broofa", + "email": "robert@broofa.com" + }, + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + }, + "contributors": [ + { + "name": "Benjamin Thomas", + "url": "http://github.com/bentomas", + "email": "benjamin@benjaminthomas.org" + } + ], + "description": "A comprehensive library for mime-type mapping", + "license": "MIT", + "dependencies": {}, + "devDependencies": { + "github-release-notes": "0.13.1", + "mime-db": "1.31.0", + "mime-score": "1.1.0" + }, + "scripts": { + "prepare": "node src/build.js", + "changelog": "gren changelog --tags=all --generate --override", + "test": "node src/test.js" + }, + "keywords": [ + "util", + "mime" + ], + "main": "mime.js", + "name": "mime", + "repository": { + "url": "https://github.com/broofa/node-mime", + "type": "git" + }, + "version": "1.6.0" +} diff --git a/node_modules/mime/src/build.js b/node_modules/mime/src/build.js new file mode 100644 index 000000000..4928e48bc --- /dev/null +++ b/node_modules/mime/src/build.js @@ -0,0 +1,53 @@ +#!/usr/bin/env node + +'use strict'; + +const fs = require('fs'); +const path = require('path'); +const mimeScore = require('mime-score'); + +let db = require('mime-db'); +let chalk = require('chalk'); + +const STANDARD_FACET_SCORE = 900; + +const byExtension = {}; + +// Clear out any conflict extensions in mime-db +for (let type in db) { + let entry = db[type]; + entry.type = type; + + if (!entry.extensions) continue; + + entry.extensions.forEach(ext => { + if (ext in byExtension) { + const e0 = entry; + const e1 = byExtension[ext]; + e0.pri = mimeScore(e0.type, e0.source); + e1.pri = mimeScore(e1.type, e1.source); + + let drop = e0.pri < e1.pri ? e0 : e1; + let keep = e0.pri >= e1.pri ? e0 : e1; + drop.extensions = drop.extensions.filter(e => e !== ext); + + console.log(`${ext}: Keeping ${chalk.green(keep.type)} (${keep.pri}), dropping ${chalk.red(drop.type)} (${drop.pri})`); + } + byExtension[ext] = entry; + }); +} + +function writeTypesFile(types, path) { + fs.writeFileSync(path, JSON.stringify(types)); +} + +// Segregate into standard and non-standard types based on facet per +// https://tools.ietf.org/html/rfc6838#section-3.1 +const types = {}; + +Object.keys(db).sort().forEach(k => { + const entry = db[k]; + types[entry.type] = entry.extensions; +}); + +writeTypesFile(types, path.join(__dirname, '..', 'types.json')); diff --git a/node_modules/mime/src/test.js b/node_modules/mime/src/test.js new file mode 100644 index 000000000..42958a20d --- /dev/null +++ b/node_modules/mime/src/test.js @@ -0,0 +1,60 @@ +/** + * Usage: node test.js + */ + +var mime = require('../mime'); +var assert = require('assert'); +var path = require('path'); + +// +// Test mime lookups +// + +assert.equal('text/plain', mime.lookup('text.txt')); // normal file +assert.equal('text/plain', mime.lookup('TEXT.TXT')); // uppercase +assert.equal('text/plain', mime.lookup('dir/text.txt')); // dir + file +assert.equal('text/plain', mime.lookup('.text.txt')); // hidden file +assert.equal('text/plain', mime.lookup('.txt')); // nameless +assert.equal('text/plain', mime.lookup('txt')); // extension-only +assert.equal('text/plain', mime.lookup('/txt')); // extension-less () +assert.equal('text/plain', mime.lookup('\\txt')); // Windows, extension-less +assert.equal('application/octet-stream', mime.lookup('text.nope')); // unrecognized +assert.equal('fallback', mime.lookup('text.fallback', 'fallback')); // alternate default + +// +// Test extensions +// + +assert.equal('txt', mime.extension(mime.types.text)); +assert.equal('html', mime.extension(mime.types.htm)); +assert.equal('bin', mime.extension('application/octet-stream')); +assert.equal('bin', mime.extension('application/octet-stream ')); +assert.equal('html', mime.extension(' text/html; charset=UTF-8')); +assert.equal('html', mime.extension('text/html; charset=UTF-8 ')); +assert.equal('html', mime.extension('text/html; charset=UTF-8')); +assert.equal('html', mime.extension('text/html ; charset=UTF-8')); +assert.equal('html', mime.extension('text/html;charset=UTF-8')); +assert.equal('html', mime.extension('text/Html;charset=UTF-8')); +assert.equal(undefined, mime.extension('unrecognized')); + +// +// Test node.types lookups +// + +assert.equal('font/woff', mime.lookup('file.woff')); +assert.equal('application/octet-stream', mime.lookup('file.buffer')); +// TODO: Uncomment once #157 is resolved +// assert.equal('audio/mp4', mime.lookup('file.m4a')); +assert.equal('font/otf', mime.lookup('file.otf')); + +// +// Test charsets +// + +assert.equal('UTF-8', mime.charsets.lookup('text/plain')); +assert.equal('UTF-8', mime.charsets.lookup(mime.types.js)); +assert.equal('UTF-8', mime.charsets.lookup(mime.types.json)); +assert.equal(undefined, mime.charsets.lookup(mime.types.bin)); +assert.equal('fallback', mime.charsets.lookup('application/octet-stream', 'fallback')); + +console.log('\nAll tests passed'); diff --git a/node_modules/mime/types.json b/node_modules/mime/types.json new file mode 100644 index 000000000..bec78abd4 --- /dev/null +++ b/node_modules/mime/types.json @@ -0,0 +1 @@ +{"application/andrew-inset":["ez"],"application/applixware":["aw"],"application/atom+xml":["atom"],"application/atomcat+xml":["atomcat"],"application/atomsvc+xml":["atomsvc"],"application/bdoc":["bdoc"],"application/ccxml+xml":["ccxml"],"application/cdmi-capability":["cdmia"],"application/cdmi-container":["cdmic"],"application/cdmi-domain":["cdmid"],"application/cdmi-object":["cdmio"],"application/cdmi-queue":["cdmiq"],"application/cu-seeme":["cu"],"application/dash+xml":["mpd"],"application/davmount+xml":["davmount"],"application/docbook+xml":["dbk"],"application/dssc+der":["dssc"],"application/dssc+xml":["xdssc"],"application/ecmascript":["ecma"],"application/emma+xml":["emma"],"application/epub+zip":["epub"],"application/exi":["exi"],"application/font-tdpfr":["pfr"],"application/font-woff":[],"application/font-woff2":[],"application/geo+json":["geojson"],"application/gml+xml":["gml"],"application/gpx+xml":["gpx"],"application/gxf":["gxf"],"application/gzip":["gz"],"application/hyperstudio":["stk"],"application/inkml+xml":["ink","inkml"],"application/ipfix":["ipfix"],"application/java-archive":["jar","war","ear"],"application/java-serialized-object":["ser"],"application/java-vm":["class"],"application/javascript":["js","mjs"],"application/json":["json","map"],"application/json5":["json5"],"application/jsonml+json":["jsonml"],"application/ld+json":["jsonld"],"application/lost+xml":["lostxml"],"application/mac-binhex40":["hqx"],"application/mac-compactpro":["cpt"],"application/mads+xml":["mads"],"application/manifest+json":["webmanifest"],"application/marc":["mrc"],"application/marcxml+xml":["mrcx"],"application/mathematica":["ma","nb","mb"],"application/mathml+xml":["mathml"],"application/mbox":["mbox"],"application/mediaservercontrol+xml":["mscml"],"application/metalink+xml":["metalink"],"application/metalink4+xml":["meta4"],"application/mets+xml":["mets"],"application/mods+xml":["mods"],"application/mp21":["m21","mp21"],"application/mp4":["mp4s","m4p"],"application/msword":["doc","dot"],"application/mxf":["mxf"],"application/octet-stream":["bin","dms","lrf","mar","so","dist","distz","pkg","bpk","dump","elc","deploy","exe","dll","deb","dmg","iso","img","msi","msp","msm","buffer"],"application/oda":["oda"],"application/oebps-package+xml":["opf"],"application/ogg":["ogx"],"application/omdoc+xml":["omdoc"],"application/onenote":["onetoc","onetoc2","onetmp","onepkg"],"application/oxps":["oxps"],"application/patch-ops-error+xml":["xer"],"application/pdf":["pdf"],"application/pgp-encrypted":["pgp"],"application/pgp-signature":["asc","sig"],"application/pics-rules":["prf"],"application/pkcs10":["p10"],"application/pkcs7-mime":["p7m","p7c"],"application/pkcs7-signature":["p7s"],"application/pkcs8":["p8"],"application/pkix-attr-cert":["ac"],"application/pkix-cert":["cer"],"application/pkix-crl":["crl"],"application/pkix-pkipath":["pkipath"],"application/pkixcmp":["pki"],"application/pls+xml":["pls"],"application/postscript":["ai","eps","ps"],"application/prs.cww":["cww"],"application/pskc+xml":["pskcxml"],"application/raml+yaml":["raml"],"application/rdf+xml":["rdf"],"application/reginfo+xml":["rif"],"application/relax-ng-compact-syntax":["rnc"],"application/resource-lists+xml":["rl"],"application/resource-lists-diff+xml":["rld"],"application/rls-services+xml":["rs"],"application/rpki-ghostbusters":["gbr"],"application/rpki-manifest":["mft"],"application/rpki-roa":["roa"],"application/rsd+xml":["rsd"],"application/rss+xml":["rss"],"application/rtf":["rtf"],"application/sbml+xml":["sbml"],"application/scvp-cv-request":["scq"],"application/scvp-cv-response":["scs"],"application/scvp-vp-request":["spq"],"application/scvp-vp-response":["spp"],"application/sdp":["sdp"],"application/set-payment-initiation":["setpay"],"application/set-registration-initiation":["setreg"],"application/shf+xml":["shf"],"application/smil+xml":["smi","smil"],"application/sparql-query":["rq"],"application/sparql-results+xml":["srx"],"application/srgs":["gram"],"application/srgs+xml":["grxml"],"application/sru+xml":["sru"],"application/ssdl+xml":["ssdl"],"application/ssml+xml":["ssml"],"application/tei+xml":["tei","teicorpus"],"application/thraud+xml":["tfi"],"application/timestamped-data":["tsd"],"application/vnd.3gpp.pic-bw-large":["plb"],"application/vnd.3gpp.pic-bw-small":["psb"],"application/vnd.3gpp.pic-bw-var":["pvb"],"application/vnd.3gpp2.tcap":["tcap"],"application/vnd.3m.post-it-notes":["pwn"],"application/vnd.accpac.simply.aso":["aso"],"application/vnd.accpac.simply.imp":["imp"],"application/vnd.acucobol":["acu"],"application/vnd.acucorp":["atc","acutc"],"application/vnd.adobe.air-application-installer-package+zip":["air"],"application/vnd.adobe.formscentral.fcdt":["fcdt"],"application/vnd.adobe.fxp":["fxp","fxpl"],"application/vnd.adobe.xdp+xml":["xdp"],"application/vnd.adobe.xfdf":["xfdf"],"application/vnd.ahead.space":["ahead"],"application/vnd.airzip.filesecure.azf":["azf"],"application/vnd.airzip.filesecure.azs":["azs"],"application/vnd.amazon.ebook":["azw"],"application/vnd.americandynamics.acc":["acc"],"application/vnd.amiga.ami":["ami"],"application/vnd.android.package-archive":["apk"],"application/vnd.anser-web-certificate-issue-initiation":["cii"],"application/vnd.anser-web-funds-transfer-initiation":["fti"],"application/vnd.antix.game-component":["atx"],"application/vnd.apple.installer+xml":["mpkg"],"application/vnd.apple.mpegurl":["m3u8"],"application/vnd.apple.pkpass":["pkpass"],"application/vnd.aristanetworks.swi":["swi"],"application/vnd.astraea-software.iota":["iota"],"application/vnd.audiograph":["aep"],"application/vnd.blueice.multipass":["mpm"],"application/vnd.bmi":["bmi"],"application/vnd.businessobjects":["rep"],"application/vnd.chemdraw+xml":["cdxml"],"application/vnd.chipnuts.karaoke-mmd":["mmd"],"application/vnd.cinderella":["cdy"],"application/vnd.claymore":["cla"],"application/vnd.cloanto.rp9":["rp9"],"application/vnd.clonk.c4group":["c4g","c4d","c4f","c4p","c4u"],"application/vnd.cluetrust.cartomobile-config":["c11amc"],"application/vnd.cluetrust.cartomobile-config-pkg":["c11amz"],"application/vnd.commonspace":["csp"],"application/vnd.contact.cmsg":["cdbcmsg"],"application/vnd.cosmocaller":["cmc"],"application/vnd.crick.clicker":["clkx"],"application/vnd.crick.clicker.keyboard":["clkk"],"application/vnd.crick.clicker.palette":["clkp"],"application/vnd.crick.clicker.template":["clkt"],"application/vnd.crick.clicker.wordbank":["clkw"],"application/vnd.criticaltools.wbs+xml":["wbs"],"application/vnd.ctc-posml":["pml"],"application/vnd.cups-ppd":["ppd"],"application/vnd.curl.car":["car"],"application/vnd.curl.pcurl":["pcurl"],"application/vnd.dart":["dart"],"application/vnd.data-vision.rdz":["rdz"],"application/vnd.dece.data":["uvf","uvvf","uvd","uvvd"],"application/vnd.dece.ttml+xml":["uvt","uvvt"],"application/vnd.dece.unspecified":["uvx","uvvx"],"application/vnd.dece.zip":["uvz","uvvz"],"application/vnd.denovo.fcselayout-link":["fe_launch"],"application/vnd.dna":["dna"],"application/vnd.dolby.mlp":["mlp"],"application/vnd.dpgraph":["dpg"],"application/vnd.dreamfactory":["dfac"],"application/vnd.ds-keypoint":["kpxx"],"application/vnd.dvb.ait":["ait"],"application/vnd.dvb.service":["svc"],"application/vnd.dynageo":["geo"],"application/vnd.ecowin.chart":["mag"],"application/vnd.enliven":["nml"],"application/vnd.epson.esf":["esf"],"application/vnd.epson.msf":["msf"],"application/vnd.epson.quickanime":["qam"],"application/vnd.epson.salt":["slt"],"application/vnd.epson.ssf":["ssf"],"application/vnd.eszigno3+xml":["es3","et3"],"application/vnd.ezpix-album":["ez2"],"application/vnd.ezpix-package":["ez3"],"application/vnd.fdf":["fdf"],"application/vnd.fdsn.mseed":["mseed"],"application/vnd.fdsn.seed":["seed","dataless"],"application/vnd.flographit":["gph"],"application/vnd.fluxtime.clip":["ftc"],"application/vnd.framemaker":["fm","frame","maker","book"],"application/vnd.frogans.fnc":["fnc"],"application/vnd.frogans.ltf":["ltf"],"application/vnd.fsc.weblaunch":["fsc"],"application/vnd.fujitsu.oasys":["oas"],"application/vnd.fujitsu.oasys2":["oa2"],"application/vnd.fujitsu.oasys3":["oa3"],"application/vnd.fujitsu.oasysgp":["fg5"],"application/vnd.fujitsu.oasysprs":["bh2"],"application/vnd.fujixerox.ddd":["ddd"],"application/vnd.fujixerox.docuworks":["xdw"],"application/vnd.fujixerox.docuworks.binder":["xbd"],"application/vnd.fuzzysheet":["fzs"],"application/vnd.genomatix.tuxedo":["txd"],"application/vnd.geogebra.file":["ggb"],"application/vnd.geogebra.tool":["ggt"],"application/vnd.geometry-explorer":["gex","gre"],"application/vnd.geonext":["gxt"],"application/vnd.geoplan":["g2w"],"application/vnd.geospace":["g3w"],"application/vnd.gmx":["gmx"],"application/vnd.google-apps.document":["gdoc"],"application/vnd.google-apps.presentation":["gslides"],"application/vnd.google-apps.spreadsheet":["gsheet"],"application/vnd.google-earth.kml+xml":["kml"],"application/vnd.google-earth.kmz":["kmz"],"application/vnd.grafeq":["gqf","gqs"],"application/vnd.groove-account":["gac"],"application/vnd.groove-help":["ghf"],"application/vnd.groove-identity-message":["gim"],"application/vnd.groove-injector":["grv"],"application/vnd.groove-tool-message":["gtm"],"application/vnd.groove-tool-template":["tpl"],"application/vnd.groove-vcard":["vcg"],"application/vnd.hal+xml":["hal"],"application/vnd.handheld-entertainment+xml":["zmm"],"application/vnd.hbci":["hbci"],"application/vnd.hhe.lesson-player":["les"],"application/vnd.hp-hpgl":["hpgl"],"application/vnd.hp-hpid":["hpid"],"application/vnd.hp-hps":["hps"],"application/vnd.hp-jlyt":["jlt"],"application/vnd.hp-pcl":["pcl"],"application/vnd.hp-pclxl":["pclxl"],"application/vnd.hydrostatix.sof-data":["sfd-hdstx"],"application/vnd.ibm.minipay":["mpy"],"application/vnd.ibm.modcap":["afp","listafp","list3820"],"application/vnd.ibm.rights-management":["irm"],"application/vnd.ibm.secure-container":["sc"],"application/vnd.iccprofile":["icc","icm"],"application/vnd.igloader":["igl"],"application/vnd.immervision-ivp":["ivp"],"application/vnd.immervision-ivu":["ivu"],"application/vnd.insors.igm":["igm"],"application/vnd.intercon.formnet":["xpw","xpx"],"application/vnd.intergeo":["i2g"],"application/vnd.intu.qbo":["qbo"],"application/vnd.intu.qfx":["qfx"],"application/vnd.ipunplugged.rcprofile":["rcprofile"],"application/vnd.irepository.package+xml":["irp"],"application/vnd.is-xpr":["xpr"],"application/vnd.isac.fcs":["fcs"],"application/vnd.jam":["jam"],"application/vnd.jcp.javame.midlet-rms":["rms"],"application/vnd.jisp":["jisp"],"application/vnd.joost.joda-archive":["joda"],"application/vnd.kahootz":["ktz","ktr"],"application/vnd.kde.karbon":["karbon"],"application/vnd.kde.kchart":["chrt"],"application/vnd.kde.kformula":["kfo"],"application/vnd.kde.kivio":["flw"],"application/vnd.kde.kontour":["kon"],"application/vnd.kde.kpresenter":["kpr","kpt"],"application/vnd.kde.kspread":["ksp"],"application/vnd.kde.kword":["kwd","kwt"],"application/vnd.kenameaapp":["htke"],"application/vnd.kidspiration":["kia"],"application/vnd.kinar":["kne","knp"],"application/vnd.koan":["skp","skd","skt","skm"],"application/vnd.kodak-descriptor":["sse"],"application/vnd.las.las+xml":["lasxml"],"application/vnd.llamagraphics.life-balance.desktop":["lbd"],"application/vnd.llamagraphics.life-balance.exchange+xml":["lbe"],"application/vnd.lotus-1-2-3":["123"],"application/vnd.lotus-approach":["apr"],"application/vnd.lotus-freelance":["pre"],"application/vnd.lotus-notes":["nsf"],"application/vnd.lotus-organizer":["org"],"application/vnd.lotus-screencam":["scm"],"application/vnd.lotus-wordpro":["lwp"],"application/vnd.macports.portpkg":["portpkg"],"application/vnd.mcd":["mcd"],"application/vnd.medcalcdata":["mc1"],"application/vnd.mediastation.cdkey":["cdkey"],"application/vnd.mfer":["mwf"],"application/vnd.mfmp":["mfm"],"application/vnd.micrografx.flo":["flo"],"application/vnd.micrografx.igx":["igx"],"application/vnd.mif":["mif"],"application/vnd.mobius.daf":["daf"],"application/vnd.mobius.dis":["dis"],"application/vnd.mobius.mbk":["mbk"],"application/vnd.mobius.mqy":["mqy"],"application/vnd.mobius.msl":["msl"],"application/vnd.mobius.plc":["plc"],"application/vnd.mobius.txf":["txf"],"application/vnd.mophun.application":["mpn"],"application/vnd.mophun.certificate":["mpc"],"application/vnd.mozilla.xul+xml":["xul"],"application/vnd.ms-artgalry":["cil"],"application/vnd.ms-cab-compressed":["cab"],"application/vnd.ms-excel":["xls","xlm","xla","xlc","xlt","xlw"],"application/vnd.ms-excel.addin.macroenabled.12":["xlam"],"application/vnd.ms-excel.sheet.binary.macroenabled.12":["xlsb"],"application/vnd.ms-excel.sheet.macroenabled.12":["xlsm"],"application/vnd.ms-excel.template.macroenabled.12":["xltm"],"application/vnd.ms-fontobject":["eot"],"application/vnd.ms-htmlhelp":["chm"],"application/vnd.ms-ims":["ims"],"application/vnd.ms-lrm":["lrm"],"application/vnd.ms-officetheme":["thmx"],"application/vnd.ms-outlook":["msg"],"application/vnd.ms-pki.seccat":["cat"],"application/vnd.ms-pki.stl":["stl"],"application/vnd.ms-powerpoint":["ppt","pps","pot"],"application/vnd.ms-powerpoint.addin.macroenabled.12":["ppam"],"application/vnd.ms-powerpoint.presentation.macroenabled.12":["pptm"],"application/vnd.ms-powerpoint.slide.macroenabled.12":["sldm"],"application/vnd.ms-powerpoint.slideshow.macroenabled.12":["ppsm"],"application/vnd.ms-powerpoint.template.macroenabled.12":["potm"],"application/vnd.ms-project":["mpp","mpt"],"application/vnd.ms-word.document.macroenabled.12":["docm"],"application/vnd.ms-word.template.macroenabled.12":["dotm"],"application/vnd.ms-works":["wps","wks","wcm","wdb"],"application/vnd.ms-wpl":["wpl"],"application/vnd.ms-xpsdocument":["xps"],"application/vnd.mseq":["mseq"],"application/vnd.musician":["mus"],"application/vnd.muvee.style":["msty"],"application/vnd.mynfc":["taglet"],"application/vnd.neurolanguage.nlu":["nlu"],"application/vnd.nitf":["ntf","nitf"],"application/vnd.noblenet-directory":["nnd"],"application/vnd.noblenet-sealer":["nns"],"application/vnd.noblenet-web":["nnw"],"application/vnd.nokia.n-gage.data":["ngdat"],"application/vnd.nokia.n-gage.symbian.install":["n-gage"],"application/vnd.nokia.radio-preset":["rpst"],"application/vnd.nokia.radio-presets":["rpss"],"application/vnd.novadigm.edm":["edm"],"application/vnd.novadigm.edx":["edx"],"application/vnd.novadigm.ext":["ext"],"application/vnd.oasis.opendocument.chart":["odc"],"application/vnd.oasis.opendocument.chart-template":["otc"],"application/vnd.oasis.opendocument.database":["odb"],"application/vnd.oasis.opendocument.formula":["odf"],"application/vnd.oasis.opendocument.formula-template":["odft"],"application/vnd.oasis.opendocument.graphics":["odg"],"application/vnd.oasis.opendocument.graphics-template":["otg"],"application/vnd.oasis.opendocument.image":["odi"],"application/vnd.oasis.opendocument.image-template":["oti"],"application/vnd.oasis.opendocument.presentation":["odp"],"application/vnd.oasis.opendocument.presentation-template":["otp"],"application/vnd.oasis.opendocument.spreadsheet":["ods"],"application/vnd.oasis.opendocument.spreadsheet-template":["ots"],"application/vnd.oasis.opendocument.text":["odt"],"application/vnd.oasis.opendocument.text-master":["odm"],"application/vnd.oasis.opendocument.text-template":["ott"],"application/vnd.oasis.opendocument.text-web":["oth"],"application/vnd.olpc-sugar":["xo"],"application/vnd.oma.dd2+xml":["dd2"],"application/vnd.openofficeorg.extension":["oxt"],"application/vnd.openxmlformats-officedocument.presentationml.presentation":["pptx"],"application/vnd.openxmlformats-officedocument.presentationml.slide":["sldx"],"application/vnd.openxmlformats-officedocument.presentationml.slideshow":["ppsx"],"application/vnd.openxmlformats-officedocument.presentationml.template":["potx"],"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet":["xlsx"],"application/vnd.openxmlformats-officedocument.spreadsheetml.template":["xltx"],"application/vnd.openxmlformats-officedocument.wordprocessingml.document":["docx"],"application/vnd.openxmlformats-officedocument.wordprocessingml.template":["dotx"],"application/vnd.osgeo.mapguide.package":["mgp"],"application/vnd.osgi.dp":["dp"],"application/vnd.osgi.subsystem":["esa"],"application/vnd.palm":["pdb","pqa","oprc"],"application/vnd.pawaafile":["paw"],"application/vnd.pg.format":["str"],"application/vnd.pg.osasli":["ei6"],"application/vnd.picsel":["efif"],"application/vnd.pmi.widget":["wg"],"application/vnd.pocketlearn":["plf"],"application/vnd.powerbuilder6":["pbd"],"application/vnd.previewsystems.box":["box"],"application/vnd.proteus.magazine":["mgz"],"application/vnd.publishare-delta-tree":["qps"],"application/vnd.pvi.ptid1":["ptid"],"application/vnd.quark.quarkxpress":["qxd","qxt","qwd","qwt","qxl","qxb"],"application/vnd.realvnc.bed":["bed"],"application/vnd.recordare.musicxml":["mxl"],"application/vnd.recordare.musicxml+xml":["musicxml"],"application/vnd.rig.cryptonote":["cryptonote"],"application/vnd.rim.cod":["cod"],"application/vnd.rn-realmedia":["rm"],"application/vnd.rn-realmedia-vbr":["rmvb"],"application/vnd.route66.link66+xml":["link66"],"application/vnd.sailingtracker.track":["st"],"application/vnd.seemail":["see"],"application/vnd.sema":["sema"],"application/vnd.semd":["semd"],"application/vnd.semf":["semf"],"application/vnd.shana.informed.formdata":["ifm"],"application/vnd.shana.informed.formtemplate":["itp"],"application/vnd.shana.informed.interchange":["iif"],"application/vnd.shana.informed.package":["ipk"],"application/vnd.simtech-mindmapper":["twd","twds"],"application/vnd.smaf":["mmf"],"application/vnd.smart.teacher":["teacher"],"application/vnd.solent.sdkm+xml":["sdkm","sdkd"],"application/vnd.spotfire.dxp":["dxp"],"application/vnd.spotfire.sfs":["sfs"],"application/vnd.stardivision.calc":["sdc"],"application/vnd.stardivision.draw":["sda"],"application/vnd.stardivision.impress":["sdd"],"application/vnd.stardivision.math":["smf"],"application/vnd.stardivision.writer":["sdw","vor"],"application/vnd.stardivision.writer-global":["sgl"],"application/vnd.stepmania.package":["smzip"],"application/vnd.stepmania.stepchart":["sm"],"application/vnd.sun.wadl+xml":["wadl"],"application/vnd.sun.xml.calc":["sxc"],"application/vnd.sun.xml.calc.template":["stc"],"application/vnd.sun.xml.draw":["sxd"],"application/vnd.sun.xml.draw.template":["std"],"application/vnd.sun.xml.impress":["sxi"],"application/vnd.sun.xml.impress.template":["sti"],"application/vnd.sun.xml.math":["sxm"],"application/vnd.sun.xml.writer":["sxw"],"application/vnd.sun.xml.writer.global":["sxg"],"application/vnd.sun.xml.writer.template":["stw"],"application/vnd.sus-calendar":["sus","susp"],"application/vnd.svd":["svd"],"application/vnd.symbian.install":["sis","sisx"],"application/vnd.syncml+xml":["xsm"],"application/vnd.syncml.dm+wbxml":["bdm"],"application/vnd.syncml.dm+xml":["xdm"],"application/vnd.tao.intent-module-archive":["tao"],"application/vnd.tcpdump.pcap":["pcap","cap","dmp"],"application/vnd.tmobile-livetv":["tmo"],"application/vnd.trid.tpt":["tpt"],"application/vnd.triscape.mxs":["mxs"],"application/vnd.trueapp":["tra"],"application/vnd.ufdl":["ufd","ufdl"],"application/vnd.uiq.theme":["utz"],"application/vnd.umajin":["umj"],"application/vnd.unity":["unityweb"],"application/vnd.uoml+xml":["uoml"],"application/vnd.vcx":["vcx"],"application/vnd.visio":["vsd","vst","vss","vsw"],"application/vnd.visionary":["vis"],"application/vnd.vsf":["vsf"],"application/vnd.wap.wbxml":["wbxml"],"application/vnd.wap.wmlc":["wmlc"],"application/vnd.wap.wmlscriptc":["wmlsc"],"application/vnd.webturbo":["wtb"],"application/vnd.wolfram.player":["nbp"],"application/vnd.wordperfect":["wpd"],"application/vnd.wqd":["wqd"],"application/vnd.wt.stf":["stf"],"application/vnd.xara":["xar"],"application/vnd.xfdl":["xfdl"],"application/vnd.yamaha.hv-dic":["hvd"],"application/vnd.yamaha.hv-script":["hvs"],"application/vnd.yamaha.hv-voice":["hvp"],"application/vnd.yamaha.openscoreformat":["osf"],"application/vnd.yamaha.openscoreformat.osfpvg+xml":["osfpvg"],"application/vnd.yamaha.smaf-audio":["saf"],"application/vnd.yamaha.smaf-phrase":["spf"],"application/vnd.yellowriver-custom-menu":["cmp"],"application/vnd.zul":["zir","zirz"],"application/vnd.zzazz.deck+xml":["zaz"],"application/voicexml+xml":["vxml"],"application/wasm":["wasm"],"application/widget":["wgt"],"application/winhlp":["hlp"],"application/wsdl+xml":["wsdl"],"application/wspolicy+xml":["wspolicy"],"application/x-7z-compressed":["7z"],"application/x-abiword":["abw"],"application/x-ace-compressed":["ace"],"application/x-apple-diskimage":[],"application/x-arj":["arj"],"application/x-authorware-bin":["aab","x32","u32","vox"],"application/x-authorware-map":["aam"],"application/x-authorware-seg":["aas"],"application/x-bcpio":["bcpio"],"application/x-bdoc":[],"application/x-bittorrent":["torrent"],"application/x-blorb":["blb","blorb"],"application/x-bzip":["bz"],"application/x-bzip2":["bz2","boz"],"application/x-cbr":["cbr","cba","cbt","cbz","cb7"],"application/x-cdlink":["vcd"],"application/x-cfs-compressed":["cfs"],"application/x-chat":["chat"],"application/x-chess-pgn":["pgn"],"application/x-chrome-extension":["crx"],"application/x-cocoa":["cco"],"application/x-conference":["nsc"],"application/x-cpio":["cpio"],"application/x-csh":["csh"],"application/x-debian-package":["udeb"],"application/x-dgc-compressed":["dgc"],"application/x-director":["dir","dcr","dxr","cst","cct","cxt","w3d","fgd","swa"],"application/x-doom":["wad"],"application/x-dtbncx+xml":["ncx"],"application/x-dtbook+xml":["dtb"],"application/x-dtbresource+xml":["res"],"application/x-dvi":["dvi"],"application/x-envoy":["evy"],"application/x-eva":["eva"],"application/x-font-bdf":["bdf"],"application/x-font-ghostscript":["gsf"],"application/x-font-linux-psf":["psf"],"application/x-font-pcf":["pcf"],"application/x-font-snf":["snf"],"application/x-font-type1":["pfa","pfb","pfm","afm"],"application/x-freearc":["arc"],"application/x-futuresplash":["spl"],"application/x-gca-compressed":["gca"],"application/x-glulx":["ulx"],"application/x-gnumeric":["gnumeric"],"application/x-gramps-xml":["gramps"],"application/x-gtar":["gtar"],"application/x-hdf":["hdf"],"application/x-httpd-php":["php"],"application/x-install-instructions":["install"],"application/x-iso9660-image":[],"application/x-java-archive-diff":["jardiff"],"application/x-java-jnlp-file":["jnlp"],"application/x-latex":["latex"],"application/x-lua-bytecode":["luac"],"application/x-lzh-compressed":["lzh","lha"],"application/x-makeself":["run"],"application/x-mie":["mie"],"application/x-mobipocket-ebook":["prc","mobi"],"application/x-ms-application":["application"],"application/x-ms-shortcut":["lnk"],"application/x-ms-wmd":["wmd"],"application/x-ms-wmz":["wmz"],"application/x-ms-xbap":["xbap"],"application/x-msaccess":["mdb"],"application/x-msbinder":["obd"],"application/x-mscardfile":["crd"],"application/x-msclip":["clp"],"application/x-msdos-program":[],"application/x-msdownload":["com","bat"],"application/x-msmediaview":["mvb","m13","m14"],"application/x-msmetafile":["wmf","emf","emz"],"application/x-msmoney":["mny"],"application/x-mspublisher":["pub"],"application/x-msschedule":["scd"],"application/x-msterminal":["trm"],"application/x-mswrite":["wri"],"application/x-netcdf":["nc","cdf"],"application/x-ns-proxy-autoconfig":["pac"],"application/x-nzb":["nzb"],"application/x-perl":["pl","pm"],"application/x-pilot":[],"application/x-pkcs12":["p12","pfx"],"application/x-pkcs7-certificates":["p7b","spc"],"application/x-pkcs7-certreqresp":["p7r"],"application/x-rar-compressed":["rar"],"application/x-redhat-package-manager":["rpm"],"application/x-research-info-systems":["ris"],"application/x-sea":["sea"],"application/x-sh":["sh"],"application/x-shar":["shar"],"application/x-shockwave-flash":["swf"],"application/x-silverlight-app":["xap"],"application/x-sql":["sql"],"application/x-stuffit":["sit"],"application/x-stuffitx":["sitx"],"application/x-subrip":["srt"],"application/x-sv4cpio":["sv4cpio"],"application/x-sv4crc":["sv4crc"],"application/x-t3vm-image":["t3"],"application/x-tads":["gam"],"application/x-tar":["tar"],"application/x-tcl":["tcl","tk"],"application/x-tex":["tex"],"application/x-tex-tfm":["tfm"],"application/x-texinfo":["texinfo","texi"],"application/x-tgif":["obj"],"application/x-ustar":["ustar"],"application/x-virtualbox-hdd":["hdd"],"application/x-virtualbox-ova":["ova"],"application/x-virtualbox-ovf":["ovf"],"application/x-virtualbox-vbox":["vbox"],"application/x-virtualbox-vbox-extpack":["vbox-extpack"],"application/x-virtualbox-vdi":["vdi"],"application/x-virtualbox-vhd":["vhd"],"application/x-virtualbox-vmdk":["vmdk"],"application/x-wais-source":["src"],"application/x-web-app-manifest+json":["webapp"],"application/x-x509-ca-cert":["der","crt","pem"],"application/x-xfig":["fig"],"application/x-xliff+xml":["xlf"],"application/x-xpinstall":["xpi"],"application/x-xz":["xz"],"application/x-zmachine":["z1","z2","z3","z4","z5","z6","z7","z8"],"application/xaml+xml":["xaml"],"application/xcap-diff+xml":["xdf"],"application/xenc+xml":["xenc"],"application/xhtml+xml":["xhtml","xht"],"application/xml":["xml","xsl","xsd","rng"],"application/xml-dtd":["dtd"],"application/xop+xml":["xop"],"application/xproc+xml":["xpl"],"application/xslt+xml":["xslt"],"application/xspf+xml":["xspf"],"application/xv+xml":["mxml","xhvml","xvml","xvm"],"application/yang":["yang"],"application/yin+xml":["yin"],"application/zip":["zip"],"audio/3gpp":[],"audio/adpcm":["adp"],"audio/basic":["au","snd"],"audio/midi":["mid","midi","kar","rmi"],"audio/mp3":[],"audio/mp4":["m4a","mp4a"],"audio/mpeg":["mpga","mp2","mp2a","mp3","m2a","m3a"],"audio/ogg":["oga","ogg","spx"],"audio/s3m":["s3m"],"audio/silk":["sil"],"audio/vnd.dece.audio":["uva","uvva"],"audio/vnd.digital-winds":["eol"],"audio/vnd.dra":["dra"],"audio/vnd.dts":["dts"],"audio/vnd.dts.hd":["dtshd"],"audio/vnd.lucent.voice":["lvp"],"audio/vnd.ms-playready.media.pya":["pya"],"audio/vnd.nuera.ecelp4800":["ecelp4800"],"audio/vnd.nuera.ecelp7470":["ecelp7470"],"audio/vnd.nuera.ecelp9600":["ecelp9600"],"audio/vnd.rip":["rip"],"audio/wav":["wav"],"audio/wave":[],"audio/webm":["weba"],"audio/x-aac":["aac"],"audio/x-aiff":["aif","aiff","aifc"],"audio/x-caf":["caf"],"audio/x-flac":["flac"],"audio/x-m4a":[],"audio/x-matroska":["mka"],"audio/x-mpegurl":["m3u"],"audio/x-ms-wax":["wax"],"audio/x-ms-wma":["wma"],"audio/x-pn-realaudio":["ram","ra"],"audio/x-pn-realaudio-plugin":["rmp"],"audio/x-realaudio":[],"audio/x-wav":[],"audio/xm":["xm"],"chemical/x-cdx":["cdx"],"chemical/x-cif":["cif"],"chemical/x-cmdf":["cmdf"],"chemical/x-cml":["cml"],"chemical/x-csml":["csml"],"chemical/x-xyz":["xyz"],"font/collection":["ttc"],"font/otf":["otf"],"font/ttf":["ttf"],"font/woff":["woff"],"font/woff2":["woff2"],"image/apng":["apng"],"image/bmp":["bmp"],"image/cgm":["cgm"],"image/g3fax":["g3"],"image/gif":["gif"],"image/ief":["ief"],"image/jp2":["jp2","jpg2"],"image/jpeg":["jpeg","jpg","jpe"],"image/jpm":["jpm"],"image/jpx":["jpx","jpf"],"image/ktx":["ktx"],"image/png":["png"],"image/prs.btif":["btif"],"image/sgi":["sgi"],"image/svg+xml":["svg","svgz"],"image/tiff":["tiff","tif"],"image/vnd.adobe.photoshop":["psd"],"image/vnd.dece.graphic":["uvi","uvvi","uvg","uvvg"],"image/vnd.djvu":["djvu","djv"],"image/vnd.dvb.subtitle":[],"image/vnd.dwg":["dwg"],"image/vnd.dxf":["dxf"],"image/vnd.fastbidsheet":["fbs"],"image/vnd.fpx":["fpx"],"image/vnd.fst":["fst"],"image/vnd.fujixerox.edmics-mmr":["mmr"],"image/vnd.fujixerox.edmics-rlc":["rlc"],"image/vnd.ms-modi":["mdi"],"image/vnd.ms-photo":["wdp"],"image/vnd.net-fpx":["npx"],"image/vnd.wap.wbmp":["wbmp"],"image/vnd.xiff":["xif"],"image/webp":["webp"],"image/x-3ds":["3ds"],"image/x-cmu-raster":["ras"],"image/x-cmx":["cmx"],"image/x-freehand":["fh","fhc","fh4","fh5","fh7"],"image/x-icon":["ico"],"image/x-jng":["jng"],"image/x-mrsid-image":["sid"],"image/x-ms-bmp":[],"image/x-pcx":["pcx"],"image/x-pict":["pic","pct"],"image/x-portable-anymap":["pnm"],"image/x-portable-bitmap":["pbm"],"image/x-portable-graymap":["pgm"],"image/x-portable-pixmap":["ppm"],"image/x-rgb":["rgb"],"image/x-tga":["tga"],"image/x-xbitmap":["xbm"],"image/x-xpixmap":["xpm"],"image/x-xwindowdump":["xwd"],"message/rfc822":["eml","mime"],"model/gltf+json":["gltf"],"model/gltf-binary":["glb"],"model/iges":["igs","iges"],"model/mesh":["msh","mesh","silo"],"model/vnd.collada+xml":["dae"],"model/vnd.dwf":["dwf"],"model/vnd.gdl":["gdl"],"model/vnd.gtw":["gtw"],"model/vnd.mts":["mts"],"model/vnd.vtu":["vtu"],"model/vrml":["wrl","vrml"],"model/x3d+binary":["x3db","x3dbz"],"model/x3d+vrml":["x3dv","x3dvz"],"model/x3d+xml":["x3d","x3dz"],"text/cache-manifest":["appcache","manifest"],"text/calendar":["ics","ifb"],"text/coffeescript":["coffee","litcoffee"],"text/css":["css"],"text/csv":["csv"],"text/hjson":["hjson"],"text/html":["html","htm","shtml"],"text/jade":["jade"],"text/jsx":["jsx"],"text/less":["less"],"text/markdown":["markdown","md"],"text/mathml":["mml"],"text/n3":["n3"],"text/plain":["txt","text","conf","def","list","log","in","ini"],"text/prs.lines.tag":["dsc"],"text/richtext":["rtx"],"text/rtf":[],"text/sgml":["sgml","sgm"],"text/slim":["slim","slm"],"text/stylus":["stylus","styl"],"text/tab-separated-values":["tsv"],"text/troff":["t","tr","roff","man","me","ms"],"text/turtle":["ttl"],"text/uri-list":["uri","uris","urls"],"text/vcard":["vcard"],"text/vnd.curl":["curl"],"text/vnd.curl.dcurl":["dcurl"],"text/vnd.curl.mcurl":["mcurl"],"text/vnd.curl.scurl":["scurl"],"text/vnd.dvb.subtitle":["sub"],"text/vnd.fly":["fly"],"text/vnd.fmi.flexstor":["flx"],"text/vnd.graphviz":["gv"],"text/vnd.in3d.3dml":["3dml"],"text/vnd.in3d.spot":["spot"],"text/vnd.sun.j2me.app-descriptor":["jad"],"text/vnd.wap.wml":["wml"],"text/vnd.wap.wmlscript":["wmls"],"text/vtt":["vtt"],"text/x-asm":["s","asm"],"text/x-c":["c","cc","cxx","cpp","h","hh","dic"],"text/x-component":["htc"],"text/x-fortran":["f","for","f77","f90"],"text/x-handlebars-template":["hbs"],"text/x-java-source":["java"],"text/x-lua":["lua"],"text/x-markdown":["mkd"],"text/x-nfo":["nfo"],"text/x-opml":["opml"],"text/x-org":[],"text/x-pascal":["p","pas"],"text/x-processing":["pde"],"text/x-sass":["sass"],"text/x-scss":["scss"],"text/x-setext":["etx"],"text/x-sfv":["sfv"],"text/x-suse-ymp":["ymp"],"text/x-uuencode":["uu"],"text/x-vcalendar":["vcs"],"text/x-vcard":["vcf"],"text/xml":[],"text/yaml":["yaml","yml"],"video/3gpp":["3gp","3gpp"],"video/3gpp2":["3g2"],"video/h261":["h261"],"video/h263":["h263"],"video/h264":["h264"],"video/jpeg":["jpgv"],"video/jpm":["jpgm"],"video/mj2":["mj2","mjp2"],"video/mp2t":["ts"],"video/mp4":["mp4","mp4v","mpg4"],"video/mpeg":["mpeg","mpg","mpe","m1v","m2v"],"video/ogg":["ogv"],"video/quicktime":["qt","mov"],"video/vnd.dece.hd":["uvh","uvvh"],"video/vnd.dece.mobile":["uvm","uvvm"],"video/vnd.dece.pd":["uvp","uvvp"],"video/vnd.dece.sd":["uvs","uvvs"],"video/vnd.dece.video":["uvv","uvvv"],"video/vnd.dvb.file":["dvb"],"video/vnd.fvt":["fvt"],"video/vnd.mpegurl":["mxu","m4u"],"video/vnd.ms-playready.media.pyv":["pyv"],"video/vnd.uvvu.mp4":["uvu","uvvu"],"video/vnd.vivo":["viv"],"video/webm":["webm"],"video/x-f4v":["f4v"],"video/x-fli":["fli"],"video/x-flv":["flv"],"video/x-m4v":["m4v"],"video/x-matroska":["mkv","mk3d","mks"],"video/x-mng":["mng"],"video/x-ms-asf":["asf","asx"],"video/x-ms-vob":["vob"],"video/x-ms-wm":["wm"],"video/x-ms-wmv":["wmv"],"video/x-ms-wmx":["wmx"],"video/x-ms-wvx":["wvx"],"video/x-msvideo":["avi"],"video/x-sgi-movie":["movie"],"video/x-smv":["smv"],"x-conference/x-cooltalk":["ice"]} \ No newline at end of file diff --git a/node_modules/mongodb-connection-string-url/.esm-wrapper.mjs b/node_modules/mongodb-connection-string-url/.esm-wrapper.mjs new file mode 100644 index 000000000..a0f5be52e --- /dev/null +++ b/node_modules/mongodb-connection-string-url/.esm-wrapper.mjs @@ -0,0 +1,6 @@ +import mod from "./lib/index.js"; + +export default mod["default"]; +export const CommaAndColonSeparatedRecord = mod.CommaAndColonSeparatedRecord; +export const ConnectionString = mod.ConnectionString; +export const redactConnectionString = mod.redactConnectionString; diff --git a/node_modules/mongodb-connection-string-url/LICENSE b/node_modules/mongodb-connection-string-url/LICENSE new file mode 100644 index 000000000..d57f55f4e --- /dev/null +++ b/node_modules/mongodb-connection-string-url/LICENSE @@ -0,0 +1,192 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + Copyright 2020 MongoDB Inc. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + diff --git a/node_modules/mongodb-connection-string-url/README.md b/node_modules/mongodb-connection-string-url/README.md new file mode 100644 index 000000000..0eb65d00f --- /dev/null +++ b/node_modules/mongodb-connection-string-url/README.md @@ -0,0 +1,25 @@ +# mongodb-connection-string-url + +MongoDB connection strings, based on the WhatWG URL API + +```js +import ConnectionString from 'mongodb-connection-string-url'; + +const cs = new ConnectionString('mongodb://localhost'); +cs.searchParams.set('readPreference', 'secondary'); +console.log(cs.href); // 'mongodb://localhost/?readPreference=secondary' +``` + +## Deviations from the WhatWG URL package + +- URL parameters are case-insensitive +- The `.host`, `.hostname` and `.port` properties cannot be set, and reading + them does not return meaningful results (and are typed as `never`in TypeScript) +- The `.hosts` property contains a list of all hosts in the connection string +- The `.href` property cannot be set, only read +- There is an additional `.isSRV` property, set to `true` for `mongodb+srv://` +- There is an additional `.clone()` utility method on the prototype + +## LICENSE + +Apache-2.0 diff --git a/node_modules/mongodb-connection-string-url/lib/index.d.ts b/node_modules/mongodb-connection-string-url/lib/index.d.ts new file mode 100644 index 000000000..49c18ea29 --- /dev/null +++ b/node_modules/mongodb-connection-string-url/lib/index.d.ts @@ -0,0 +1,62 @@ +import { URL } from 'whatwg-url'; +import { redactConnectionString, ConnectionStringRedactionOptions } from './redact'; +export { redactConnectionString, ConnectionStringRedactionOptions }; +declare class CaseInsensitiveMap extends Map { + delete(name: K): boolean; + get(name: K): string | undefined; + has(name: K): boolean; + set(name: K, value: any): this; + _normalizeKey(name: any): K; +} +declare abstract class URLWithoutHost extends URL { + abstract get host(): never; + abstract set host(value: never); + abstract get hostname(): never; + abstract set hostname(value: never); + abstract get port(): never; + abstract set port(value: never); + abstract get href(): string; + abstract set href(value: string); +} +export interface ConnectionStringParsingOptions { + looseValidation?: boolean; +} +export declare class ConnectionString extends URLWithoutHost { + _hosts: string[]; + constructor(uri: string, options?: ConnectionStringParsingOptions); + get host(): never; + set host(_ignored: never); + get hostname(): never; + set hostname(_ignored: never); + get port(): never; + set port(_ignored: never); + get href(): string; + set href(_ignored: string); + get isSRV(): boolean; + get hosts(): string[]; + set hosts(list: string[]); + toString(): string; + clone(): ConnectionString; + redact(options?: ConnectionStringRedactionOptions): ConnectionString; + typedSearchParams(): { + append(name: keyof T & string, value: any): void; + delete(name: keyof T & string): void; + get(name: keyof T & string): string | null; + getAll(name: keyof T & string): string[]; + has(name: keyof T & string): boolean; + set(name: keyof T & string, value: any): void; + keys(): IterableIterator; + values(): IterableIterator; + entries(): IterableIterator<[keyof T & string, string]>; + _normalizeKey(name: keyof T & string): string; + [Symbol.iterator](): IterableIterator<[keyof T & string, string]>; + sort(): void; + forEach(callback: (this: THIS_ARG, value: string, name: string, searchParams: any) => void, thisArg?: THIS_ARG | undefined): void; + readonly [Symbol.toStringTag]: "URLSearchParams"; + }; +} +export declare class CommaAndColonSeparatedRecord> extends CaseInsensitiveMap { + constructor(from?: string | null); + toString(): string; +} +export default ConnectionString; diff --git a/node_modules/mongodb-connection-string-url/lib/index.js b/node_modules/mongodb-connection-string-url/lib/index.js new file mode 100644 index 000000000..8e4864d20 --- /dev/null +++ b/node_modules/mongodb-connection-string-url/lib/index.js @@ -0,0 +1,213 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.CommaAndColonSeparatedRecord = exports.ConnectionString = exports.redactConnectionString = void 0; +const whatwg_url_1 = require("whatwg-url"); +const redact_1 = require("./redact"); +Object.defineProperty(exports, "redactConnectionString", { enumerable: true, get: function () { return redact_1.redactConnectionString; } }); +const DUMMY_HOSTNAME = '__this_is_a_placeholder__'; +function connectionStringHasValidScheme(connectionString) { + return (connectionString.startsWith('mongodb://') || + connectionString.startsWith('mongodb+srv://')); +} +const HOSTS_REGEX = /^(?[^/]+):\/\/(?:(?[^:@]*)(?::(?[^@]*))?@)?(?(?!:)[^/?@]*)(?.*)/; +class CaseInsensitiveMap extends Map { + delete(name) { + return super.delete(this._normalizeKey(name)); + } + get(name) { + return super.get(this._normalizeKey(name)); + } + has(name) { + return super.has(this._normalizeKey(name)); + } + set(name, value) { + return super.set(this._normalizeKey(name), value); + } + _normalizeKey(name) { + name = `${name}`; + for (const key of this.keys()) { + if (key.toLowerCase() === name.toLowerCase()) { + name = key; + break; + } + } + return name; + } +} +function caseInsenstiveURLSearchParams(Ctor) { + return class CaseInsenstiveURLSearchParams extends Ctor { + append(name, value) { + return super.append(this._normalizeKey(name), value); + } + delete(name) { + return super.delete(this._normalizeKey(name)); + } + get(name) { + return super.get(this._normalizeKey(name)); + } + getAll(name) { + return super.getAll(this._normalizeKey(name)); + } + has(name) { + return super.has(this._normalizeKey(name)); + } + set(name, value) { + return super.set(this._normalizeKey(name), value); + } + keys() { + return super.keys(); + } + values() { + return super.values(); + } + entries() { + return super.entries(); + } + [Symbol.iterator]() { + return super[Symbol.iterator](); + } + _normalizeKey(name) { + return CaseInsensitiveMap.prototype._normalizeKey.call(this, name); + } + }; +} +class URLWithoutHost extends whatwg_url_1.URL { +} +class MongoParseError extends Error { + get name() { + return 'MongoParseError'; + } +} +class ConnectionString extends URLWithoutHost { + constructor(uri, options = {}) { + var _a; + const { looseValidation } = options; + if (!looseValidation && !connectionStringHasValidScheme(uri)) { + throw new MongoParseError('Invalid scheme, expected connection string to start with "mongodb://" or "mongodb+srv://"'); + } + const match = uri.match(HOSTS_REGEX); + if (!match) { + throw new MongoParseError(`Invalid connection string "${uri}"`); + } + const { protocol, username, password, hosts, rest } = (_a = match.groups) !== null && _a !== void 0 ? _a : {}; + if (!looseValidation) { + if (!protocol || !hosts) { + throw new MongoParseError(`Protocol and host list are required in "${uri}"`); + } + try { + decodeURIComponent(username !== null && username !== void 0 ? username : ''); + decodeURIComponent(password !== null && password !== void 0 ? password : ''); + } + catch (err) { + throw new MongoParseError(err.message); + } + const illegalCharacters = /[:/?#[\]@]/gi; + if (username === null || username === void 0 ? void 0 : username.match(illegalCharacters)) { + throw new MongoParseError(`Username contains unescaped characters ${username}`); + } + if (!username || !password) { + const uriWithoutProtocol = uri.replace(`${protocol}://`, ''); + if (uriWithoutProtocol.startsWith('@') || uriWithoutProtocol.startsWith(':')) { + throw new MongoParseError('URI contained empty userinfo section'); + } + } + if (password === null || password === void 0 ? void 0 : password.match(illegalCharacters)) { + throw new MongoParseError('Password contains unescaped characters'); + } + } + let authString = ''; + if (typeof username === 'string') + authString += username; + if (typeof password === 'string') + authString += `:${password}`; + if (authString) + authString += '@'; + try { + super(`${protocol.toLowerCase()}://${authString}${DUMMY_HOSTNAME}${rest}`); + } + catch (err) { + if (looseValidation) { + new ConnectionString(uri, { + ...options, + looseValidation: false + }); + } + if (typeof err.message === 'string') { + err.message = err.message.replace(DUMMY_HOSTNAME, hosts); + } + throw err; + } + this._hosts = hosts.split(','); + if (!looseValidation) { + if (this.isSRV && this.hosts.length !== 1) { + throw new MongoParseError('mongodb+srv URI cannot have multiple service names'); + } + if (this.isSRV && this.hosts.some(host => host.includes(':'))) { + throw new MongoParseError('mongodb+srv URI cannot have port number'); + } + } + if (!this.pathname) { + this.pathname = '/'; + } + Object.setPrototypeOf(this.searchParams, caseInsenstiveURLSearchParams(this.searchParams.constructor).prototype); + } + get host() { return DUMMY_HOSTNAME; } + set host(_ignored) { throw new Error('No single host for connection string'); } + get hostname() { return DUMMY_HOSTNAME; } + set hostname(_ignored) { throw new Error('No single host for connection string'); } + get port() { return ''; } + set port(_ignored) { throw new Error('No single host for connection string'); } + get href() { return this.toString(); } + set href(_ignored) { throw new Error('Cannot set href for connection strings'); } + get isSRV() { + return this.protocol.includes('srv'); + } + get hosts() { + return this._hosts; + } + set hosts(list) { + this._hosts = list; + } + toString() { + return super.toString().replace(DUMMY_HOSTNAME, this.hosts.join(',')); + } + clone() { + return new ConnectionString(this.toString(), { + looseValidation: true + }); + } + redact(options) { + return (0, redact_1.redactValidConnectionString)(this, options); + } + typedSearchParams() { + const sametype = false && new (caseInsenstiveURLSearchParams(whatwg_url_1.URLSearchParams))(); + return this.searchParams; + } + [Symbol.for('nodejs.util.inspect.custom')]() { + const { href, origin, protocol, username, password, hosts, pathname, search, searchParams, hash } = this; + return { href, origin, protocol, username, password, hosts, pathname, search, searchParams, hash }; + } +} +exports.ConnectionString = ConnectionString; +class CommaAndColonSeparatedRecord extends CaseInsensitiveMap { + constructor(from) { + super(); + for (const entry of (from !== null && from !== void 0 ? from : '').split(',')) { + if (!entry) + continue; + const colonIndex = entry.indexOf(':'); + if (colonIndex === -1) { + this.set(entry, ''); + } + else { + this.set(entry.slice(0, colonIndex), entry.slice(colonIndex + 1)); + } + } + } + toString() { + return [...this].map(entry => entry.join(':')).join(','); + } +} +exports.CommaAndColonSeparatedRecord = CommaAndColonSeparatedRecord; +exports.default = ConnectionString; +//# sourceMappingURL=index.js.map \ No newline at end of file diff --git a/node_modules/mongodb-connection-string-url/lib/index.js.map b/node_modules/mongodb-connection-string-url/lib/index.js.map new file mode 100644 index 000000000..d325062aa --- /dev/null +++ b/node_modules/mongodb-connection-string-url/lib/index.js.map @@ -0,0 +1 @@ +{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/mongodb-connection-string-url/lib/redact.d.ts b/node_modules/mongodb-connection-string-url/lib/redact.d.ts new file mode 100644 index 000000000..94a64defc --- /dev/null +++ b/node_modules/mongodb-connection-string-url/lib/redact.d.ts @@ -0,0 +1,7 @@ +import ConnectionString from './index'; +export interface ConnectionStringRedactionOptions { + redactUsernames?: boolean; + replacementString?: string; +} +export declare function redactValidConnectionString(inputUrl: Readonly, options?: ConnectionStringRedactionOptions): ConnectionString; +export declare function redactConnectionString(uri: string, options?: ConnectionStringRedactionOptions): string; diff --git a/node_modules/mongodb-connection-string-url/lib/redact.js b/node_modules/mongodb-connection-string-url/lib/redact.js new file mode 100644 index 000000000..26f8ec574 --- /dev/null +++ b/node_modules/mongodb-connection-string-url/lib/redact.js @@ -0,0 +1,86 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); + __setModuleDefault(result, mod); + return result; +}; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.redactConnectionString = exports.redactValidConnectionString = void 0; +const index_1 = __importStar(require("./index")); +function redactValidConnectionString(inputUrl, options) { + var _a, _b; + const url = inputUrl.clone(); + const replacementString = (_a = options === null || options === void 0 ? void 0 : options.replacementString) !== null && _a !== void 0 ? _a : '_credentials_'; + const redactUsernames = (_b = options === null || options === void 0 ? void 0 : options.redactUsernames) !== null && _b !== void 0 ? _b : true; + if ((url.username || url.password) && redactUsernames) { + url.username = replacementString; + url.password = ''; + } + else if (url.password) { + url.password = replacementString; + } + if (url.searchParams.has('authMechanismProperties')) { + const props = new index_1.CommaAndColonSeparatedRecord(url.searchParams.get('authMechanismProperties')); + if (props.get('AWS_SESSION_TOKEN')) { + props.set('AWS_SESSION_TOKEN', replacementString); + url.searchParams.set('authMechanismProperties', props.toString()); + } + } + if (url.searchParams.has('tlsCertificateKeyFilePassword')) { + url.searchParams.set('tlsCertificateKeyFilePassword', replacementString); + } + if (url.searchParams.has('proxyUsername') && redactUsernames) { + url.searchParams.set('proxyUsername', replacementString); + } + if (url.searchParams.has('proxyPassword')) { + url.searchParams.set('proxyPassword', replacementString); + } + return url; +} +exports.redactValidConnectionString = redactValidConnectionString; +function redactConnectionString(uri, options) { + var _a, _b; + const replacementString = (_a = options === null || options === void 0 ? void 0 : options.replacementString) !== null && _a !== void 0 ? _a : ''; + const redactUsernames = (_b = options === null || options === void 0 ? void 0 : options.redactUsernames) !== null && _b !== void 0 ? _b : true; + let parsed; + try { + parsed = new index_1.default(uri); + } + catch (_c) { } + if (parsed) { + options = { ...options, replacementString: '___credentials___' }; + return parsed.redact(options).toString().replace(/___credentials___/g, replacementString); + } + const R = replacementString; + const replacements = [ + uri => uri.replace(redactUsernames ? /(\/\/)(.*)(@)/g : /(\/\/[^@]+:)(.*)(@)/g, `$1${R}$3`), + uri => uri.replace(/(AWS_SESSION_TOKEN(:|%3A))([^,&]+)/gi, `$1${R}`), + uri => uri.replace(/(tlsCertificateKeyFilePassword=)([^&]+)/gi, `$1${R}`), + uri => redactUsernames ? uri.replace(/(proxyUsername=)([^&]+)/gi, `$1${R}`) : uri, + uri => uri.replace(/(proxyPassword=)([^&]+)/gi, `$1${R}`) + ]; + for (const replacer of replacements) { + uri = replacer(uri); + } + return uri; +} +exports.redactConnectionString = redactConnectionString; +//# sourceMappingURL=redact.js.map \ No newline at end of file diff --git a/node_modules/mongodb-connection-string-url/lib/redact.js.map b/node_modules/mongodb-connection-string-url/lib/redact.js.map new file mode 100644 index 000000000..24a282b9c --- /dev/null +++ b/node_modules/mongodb-connection-string-url/lib/redact.js.map @@ -0,0 +1 @@ +{"version":3,"file":"redact.js","sourceRoot":"","sources":["../src/redact.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/mongodb-connection-string-url/package.json b/node_modules/mongodb-connection-string-url/package.json new file mode 100644 index 000000000..78e78e93c --- /dev/null +++ b/node_modules/mongodb-connection-string-url/package.json @@ -0,0 +1,62 @@ +{ + "name": "mongodb-connection-string-url", + "version": "2.5.4", + "description": "MongoDB connection strings, based on the WhatWG URL API", + "keywords": [ + "password", + "prompt", + "tty" + ], + "homepage": "https://github.com/mongodb-js/mongodb-connection-string-url", + "repository": { + "type": "git", + "url": "https://github.com/mongodb-js/mongodb-connection-string-url.git" + }, + "bugs": { + "url": "https://github.com/mongodb-js/mongodb-connection-string-url/issues" + }, + "main": "lib/index.js", + "exports": { + "require": "./lib/index.js", + "import": "./.esm-wrapper.mjs" + }, + "files": [ + "LICENSE", + "lib", + "package.json", + "README.md", + ".esm-wrapper.mjs" + ], + "scripts": { + "lint": "eslint \"{src,test}/**/*.ts\"", + "test": "npm run lint && npm run build && nyc mocha --colors -r ts-node/register test/*.ts", + "build": "npm run compile-ts && gen-esm-wrapper . ./.esm-wrapper.mjs", + "prepack": "npm run build", + "compile-ts": "tsc -p tsconfig.json" + }, + "license": "Apache-2.0", + "devDependencies": { + "@types/chai": "^4.2.5", + "@types/mocha": "^8.0.3", + "@types/node": "^14.11.1", + "@typescript-eslint/eslint-plugin": "^4.2.0", + "@typescript-eslint/parser": "^4.2.0", + "chai": "^4.2.0", + "eslint": "^7.9.0", + "eslint-config-semistandard": "^15.0.1", + "eslint-config-standard": "^14.1.1", + "eslint-plugin-import": "^2.22.0", + "eslint-plugin-node": "^11.1.0", + "eslint-plugin-promise": "^4.2.1", + "eslint-plugin-standard": "^4.0.1", + "gen-esm-wrapper": "^1.1.3", + "mocha": "^8.1.3", + "nyc": "^15.1.0", + "ts-node": "^10.9.1", + "typescript": "^4.7.4" + }, + "dependencies": { + "@types/whatwg-url": "^8.2.1", + "whatwg-url": "^11.0.0" + } +} diff --git a/node_modules/mongodb/LICENSE.md b/node_modules/mongodb/LICENSE.md new file mode 100644 index 000000000..ad410e113 --- /dev/null +++ b/node_modules/mongodb/LICENSE.md @@ -0,0 +1,201 @@ +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. \ No newline at end of file diff --git a/node_modules/mongodb/README.md b/node_modules/mongodb/README.md new file mode 100644 index 000000000..1811de369 --- /dev/null +++ b/node_modules/mongodb/README.md @@ -0,0 +1,280 @@ +# MongoDB NodeJS Driver + +The official [MongoDB](https://www.mongodb.com/) driver for Node.js. + +**Upgrading to version 4? Take a look at our [upgrade guide here](https://github.com/mongodb/node-mongodb-native/blob/HEAD/etc/notes/CHANGES_4.0.0.md)!** + +## Quick Links + +| what | where | +| ------------- | ------------------------------------------------------------------------------------------------------- | +| documentation | [docs.mongodb.com/drivers/node](https://docs.mongodb.com/drivers/node) | +| api-doc | [mongodb.github.io/node-mongodb-native/](https://mongodb.github.io/node-mongodb-native/) | +| npm package | [www.npmjs.com/package/mongodb](https://www.npmjs.com/package/mongodb) | +| source | [github.com/mongodb/node-mongodb-native](https://github.com/mongodb/node-mongodb-native) | +| mongodb | [www.mongodb.com](https://www.mongodb.com) | +| changelog | [HISTORY.md](https://github.com/mongodb/node-mongodb-native/blob/HEAD/HISTORY.md) | +| upgrade to v4 | [etc/notes/CHANGES_4.0.0.md](https://github.com/mongodb/node-mongodb-native/blob/HEAD/etc/notes/CHANGES_4.0.0.md) | +| contributing | [CONTRIBUTING.md](https://github.com/mongodb/node-mongodb-native/blob/HEAD/CONTRIBUTING.md) | + +### Bugs / Feature Requests + +Think you’ve found a bug? Want to see a new feature in `node-mongodb-native`? Please open a +case in our issue management tool, JIRA: + +- Create an account and login [jira.mongodb.org](https://jira.mongodb.org). +- Navigate to the NODE project [jira.mongodb.org/browse/NODE](https://jira.mongodb.org/browse/NODE). +- Click **Create Issue** - Please provide as much information as possible about the issue type and how to reproduce it. + +Bug reports in JIRA for all driver projects (i.e. NODE, PYTHON, CSHARP, JAVA) and the +Core Server (i.e. SERVER) project are **public**. + +### Support / Feedback + +For issues with, questions about, or feedback for the Node.js driver, please look into our [support channels](https://docs.mongodb.com/manual/support). Please do not email any of the driver developers directly with issues or questions - you're more likely to get an answer on the [MongoDB Community Forums](https://community.mongodb.com/tags/c/drivers-odms-connectors/7/node-js-driver). + +### Change Log + +Change history can be found in [`HISTORY.md`](https://github.com/mongodb/node-mongodb-native/blob/HEAD/HISTORY.md). + +### Compatibility + +For version compatibility matrices, please refer to the following links: + +- [MongoDB](https://docs.mongodb.com/drivers/node/current/compatibility/#mongodb-compatibility) +- [NodeJS](https://docs.mongodb.com/drivers/node/current/compatibility/#language-compatibility) + +#### Typescript Version + +We recommend using the latest version of typescript, however we currently ensure the driver's public types compile against `typescript@4.1.6`. +This is the lowest typescript version guaranteed to work with our driver: older versions may or may not work - use at your own risk. +Since typescript [does not restrict breaking changes to major versions](https://github.com/Microsoft/TypeScript/wiki/Breaking-Changes) we consider this support best effort. +If you run into any unexpected compiler failures against our supported TypeScript versions please let us know by filing an issue on our [JIRA](https://jira.mongodb.org/browse/NODE). + +## Installation + +The recommended way to get started using the Node.js 4.x driver is by using the `npm` (Node Package Manager) to install the dependency in your project. + +After you've created your own project using `npm init`, you can run: + +```bash +npm install mongodb +# or ... +yarn add mongodb +``` + +This will download the MongoDB driver and add a dependency entry in your `package.json` file. + +If you are a Typescript user, you will need the Node.js type definitions to use the driver's definitions: + +```sh +npm install -D @types/node +``` + +## Troubleshooting + +The MongoDB driver depends on several other packages. These are: + +- [bson](https://github.com/mongodb/js-bson) +- [bson-ext](https://github.com/mongodb-js/bson-ext) +- [kerberos](https://github.com/mongodb-js/kerberos) +- [mongodb-client-encryption](https://github.com/mongodb/libmongocrypt#readme) + +Some of these packages include native C++ extensions. Consult the [trouble shooting guide here](https://github.com/mongodb/node-mongodb-native/blob/HEAD/etc/notes/native-extensions.md) if you run into issues. + +## Quick Start + +This guide will show you how to set up a simple application using Node.js and MongoDB. Its scope is only how to set up the driver and perform the simple CRUD operations. For more in-depth coverage, see the [official documentation](https://docs.mongodb.com/drivers/node/). + +### Create the `package.json` file + +First, create a directory where your application will live. + +```bash +mkdir myProject +cd myProject +``` + +Enter the following command and answer the questions to create the initial structure for your new project: + +```bash +npm init -y +``` + +Next, install the driver as a dependency. + +```bash +npm install mongodb +``` + +### Start a MongoDB Server + +For complete MongoDB installation instructions, see [the manual](https://docs.mongodb.org/manual/installation/). + +1. Download the right MongoDB version from [MongoDB](https://www.mongodb.org/downloads) +2. Create a database directory (in this case under **/data**). +3. Install and start a `mongod` process. + +```bash +mongod --dbpath=/data +``` + +You should see the **mongod** process start up and print some status information. + +### Connect to MongoDB + +Create a new **app.js** file and add the following code to try out some basic CRUD +operations using the MongoDB driver. + +Add code to connect to the server and the database **myProject**: + +> **NOTE:** All the examples below use async/await syntax. +> +> However, all async API calls support an optional callback as the final argument, +> if a callback is provided a Promise will not be returned. + +```js +const { MongoClient } = require('mongodb'); +// or as an es module: +// import { MongoClient } from 'mongodb' + +// Connection URL +const url = 'mongodb://localhost:27017'; +const client = new MongoClient(url); + +// Database Name +const dbName = 'myProject'; + +async function main() { + // Use connect method to connect to the server + await client.connect(); + console.log('Connected successfully to server'); + const db = client.db(dbName); + const collection = db.collection('documents'); + + // the following code examples can be pasted here... + + return 'done.'; +} + +main() + .then(console.log) + .catch(console.error) + .finally(() => client.close()); +``` + +Run your app from the command line with: + +```bash +node app.js +``` + +The application should print **Connected successfully to server** to the console. + +### Insert a Document + +Add to **app.js** the following function which uses the **insertMany** +method to add three documents to the **documents** collection. + +```js +const insertResult = await collection.insertMany([{ a: 1 }, { a: 2 }, { a: 3 }]); +console.log('Inserted documents =>', insertResult); +``` + +The **insertMany** command returns an object with information about the insert operations. + +### Find All Documents + +Add a query that returns all the documents. + +```js +const findResult = await collection.find({}).toArray(); +console.log('Found documents =>', findResult); +``` + +This query returns all the documents in the **documents** collection. +If you add this below the insertMany example you'll see the document's you've inserted. + +### Find Documents with a Query Filter + +Add a query filter to find only documents which meet the query criteria. + +```js +const filteredDocs = await collection.find({ a: 3 }).toArray(); +console.log('Found documents filtered by { a: 3 } =>', filteredDocs); +``` + +Only the documents which match `'a' : 3` should be returned. + +### Update a document + +The following operation updates a document in the **documents** collection. + +```js +const updateResult = await collection.updateOne({ a: 3 }, { $set: { b: 1 } }); +console.log('Updated documents =>', updateResult); +``` + +The method updates the first document where the field **a** is equal to **3** by adding a new field **b** to the document set to **1**. `updateResult` contains information about whether there was a matching document to update or not. + +### Remove a document + +Remove the document where the field **a** is equal to **3**. + +```js +const deleteResult = await collection.deleteMany({ a: 3 }); +console.log('Deleted documents =>', deleteResult); +``` + +### Index a Collection + +[Indexes](https://docs.mongodb.org/manual/indexes/) can improve your application's +performance. The following function creates an index on the **a** field in the +**documents** collection. + +```js +const indexName = await collection.createIndex({ a: 1 }); +console.log('index name =', indexName); +``` + +For more detailed information, see the [indexing strategies page](https://docs.mongodb.com/manual/applications/indexes/). + +## Error Handling + +If you need to filter certain errors from our driver we have a helpful tree of errors described in [etc/notes/errors.md](https://github.com/mongodb/node-mongodb-native/blob/HEAD/etc/notes/errors.md). + +It is our recommendation to use `instanceof` checks on errors and to avoid relying on parsing `error.message` and `error.name` strings in your code. +We guarantee `instanceof` checks will pass according to semver guidelines, but errors may be sub-classed or their messages may change at any time, even patch releases, as we see fit to increase the helpfulness of the errors. + +Any new errors we add to the driver will directly extend an existing error class and no existing error will be moved to a different parent class outside of a major release. +This means `instanceof` will always be able to accurately capture the errors that our driver throws (or returns in a callback). + +```typescript +const client = new MongoClient(url); +await client.connect(); +const collection = client.db().collection('collection'); + +try { + await collection.insertOne({ _id: 1 }); + await collection.insertOne({ _id: 1 }); // duplicate key error +} catch (error) { + if (error instanceof MongoServerError) { + console.log(`Error worth logging: ${error}`); // special case for some reason + } + throw error; // still want to crash +} +``` + +## Next Steps + +- [MongoDB Documentation](https://docs.mongodb.com/manual/) +- [MongoDB Node Driver Documentation](https://docs.mongodb.com/drivers/node/) +- [Read about Schemas](https://docs.mongodb.com/manual/core/data-modeling-introduction/) +- [Star us on GitHub](https://github.com/mongodb/node-mongodb-native) + +## License + +[Apache 2.0](LICENSE.md) + +© 2009-2012 Christian Amor Kvalheim +© 2012-present MongoDB [Contributors](https://github.com/mongodb/node-mongodb-native/blob/HEAD/CONTRIBUTORS.md) diff --git a/node_modules/mongodb/etc/prepare.js b/node_modules/mongodb/etc/prepare.js new file mode 100644 index 000000000..2039d0b33 --- /dev/null +++ b/node_modules/mongodb/etc/prepare.js @@ -0,0 +1,12 @@ +#! /usr/bin/env node +var cp = require('child_process'); +var fs = require('fs'); +var os = require('os'); + +if (fs.existsSync('src')) { + cp.spawn('npm', ['run', 'build:dts'], { stdio: 'inherit', shell: os.platform() === 'win32' }); +} else { + if (!fs.existsSync('lib')) { + console.warn('MongoDB: No compiled javascript present, the driver is not installed correctly.'); + } +} diff --git a/node_modules/mongodb/lib/admin.js b/node_modules/mongodb/lib/admin.js new file mode 100644 index 000000000..b872b998b --- /dev/null +++ b/node_modules/mongodb/lib/admin.js @@ -0,0 +1,112 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.Admin = void 0; +const add_user_1 = require("./operations/add_user"); +const execute_operation_1 = require("./operations/execute_operation"); +const list_databases_1 = require("./operations/list_databases"); +const remove_user_1 = require("./operations/remove_user"); +const run_command_1 = require("./operations/run_command"); +const validate_collection_1 = require("./operations/validate_collection"); +/** + * The **Admin** class is an internal class that allows convenient access to + * the admin functionality and commands for MongoDB. + * + * **ADMIN Cannot directly be instantiated** + * @public + * + * @example + * ```ts + * import { MongoClient } from 'mongodb'; + * + * const client = new MongoClient('mongodb://localhost:27017'); + * const admin = client.db().admin(); + * const dbInfo = await admin.listDatabases(); + * for (const db of dbInfo.databases) { + * console.log(db.name); + * } + * ``` + */ +class Admin { + /** + * Create a new Admin instance + * @internal + */ + constructor(db) { + this.s = { db }; + } + command(command, options, callback) { + if (typeof options === 'function') + (callback = options), (options = {}); + options = Object.assign({ dbName: 'admin' }, options); + return (0, execute_operation_1.executeOperation)(this.s.db.s.client, new run_command_1.RunCommandOperation(this.s.db, command, options), callback); + } + buildInfo(options, callback) { + if (typeof options === 'function') + (callback = options), (options = {}); + options = options !== null && options !== void 0 ? options : {}; + return this.command({ buildinfo: 1 }, options, callback); + } + serverInfo(options, callback) { + if (typeof options === 'function') + (callback = options), (options = {}); + options = options !== null && options !== void 0 ? options : {}; + return this.command({ buildinfo: 1 }, options, callback); + } + serverStatus(options, callback) { + if (typeof options === 'function') + (callback = options), (options = {}); + options = options !== null && options !== void 0 ? options : {}; + return this.command({ serverStatus: 1 }, options, callback); + } + ping(options, callback) { + if (typeof options === 'function') + (callback = options), (options = {}); + options = options !== null && options !== void 0 ? options : {}; + return this.command({ ping: 1 }, options, callback); + } + addUser(username, password, options, callback) { + if (typeof password === 'function') { + (callback = password), (password = undefined), (options = {}); + } + else if (typeof password !== 'string') { + if (typeof options === 'function') { + (callback = options), (options = password), (password = undefined); + } + else { + (options = password), (callback = undefined), (password = undefined); + } + } + else { + if (typeof options === 'function') + (callback = options), (options = {}); + } + options = Object.assign({ dbName: 'admin' }, options); + return (0, execute_operation_1.executeOperation)(this.s.db.s.client, new add_user_1.AddUserOperation(this.s.db, username, password, options), callback); + } + removeUser(username, options, callback) { + if (typeof options === 'function') + (callback = options), (options = {}); + options = Object.assign({ dbName: 'admin' }, options); + return (0, execute_operation_1.executeOperation)(this.s.db.s.client, new remove_user_1.RemoveUserOperation(this.s.db, username, options), callback); + } + validateCollection(collectionName, options, callback) { + if (typeof options === 'function') + (callback = options), (options = {}); + options = options !== null && options !== void 0 ? options : {}; + return (0, execute_operation_1.executeOperation)(this.s.db.s.client, new validate_collection_1.ValidateCollectionOperation(this, collectionName, options), callback); + } + listDatabases(options, callback) { + if (typeof options === 'function') + (callback = options), (options = {}); + options = options !== null && options !== void 0 ? options : {}; + return (0, execute_operation_1.executeOperation)(this.s.db.s.client, new list_databases_1.ListDatabasesOperation(this.s.db, options), callback); + } + replSetGetStatus(options, callback) { + if (typeof options === 'function') + (callback = options), (options = {}); + options = options !== null && options !== void 0 ? options : {}; + return this.command({ replSetGetStatus: 1 }, options, callback); + } +} +exports.Admin = Admin; +//# sourceMappingURL=admin.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/admin.js.map b/node_modules/mongodb/lib/admin.js.map new file mode 100644 index 000000000..4fce20809 --- /dev/null +++ b/node_modules/mongodb/lib/admin.js.map @@ -0,0 +1 @@ +{"version":3,"file":"admin.js","sourceRoot":"","sources":["../src/admin.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/bson.js b/node_modules/mongodb/lib/bson.js new file mode 100644 index 000000000..c311e59e9 --- /dev/null +++ b/node_modules/mongodb/lib/bson.js @@ -0,0 +1,71 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.resolveBSONOptions = exports.pluckBSONSerializeOptions = exports.BSON = exports.Timestamp = exports.ObjectId = exports.MinKey = exports.MaxKey = exports.Map = exports.Long = exports.Int32 = exports.Double = exports.Decimal128 = exports.DBRef = exports.Code = exports.BSONSymbol = exports.BSONRegExp = exports.Binary = exports.calculateObjectSize = exports.serialize = exports.deserialize = void 0; +/** @internal */ +// eslint-disable-next-line @typescript-eslint/no-var-requires +let BSON = require('bson'); +exports.BSON = BSON; +try { + // Ensure you always wrap an optional require in the try block NODE-3199 + exports.BSON = BSON = require('bson-ext'); +} +catch { } // eslint-disable-line +/** @internal */ +exports.deserialize = BSON.deserialize; +/** @internal */ +exports.serialize = BSON.serialize; +/** @internal */ +exports.calculateObjectSize = BSON.calculateObjectSize; +var bson_1 = require("bson"); +Object.defineProperty(exports, "Binary", { enumerable: true, get: function () { return bson_1.Binary; } }); +Object.defineProperty(exports, "BSONRegExp", { enumerable: true, get: function () { return bson_1.BSONRegExp; } }); +Object.defineProperty(exports, "BSONSymbol", { enumerable: true, get: function () { return bson_1.BSONSymbol; } }); +Object.defineProperty(exports, "Code", { enumerable: true, get: function () { return bson_1.Code; } }); +Object.defineProperty(exports, "DBRef", { enumerable: true, get: function () { return bson_1.DBRef; } }); +Object.defineProperty(exports, "Decimal128", { enumerable: true, get: function () { return bson_1.Decimal128; } }); +Object.defineProperty(exports, "Double", { enumerable: true, get: function () { return bson_1.Double; } }); +Object.defineProperty(exports, "Int32", { enumerable: true, get: function () { return bson_1.Int32; } }); +Object.defineProperty(exports, "Long", { enumerable: true, get: function () { return bson_1.Long; } }); +Object.defineProperty(exports, "Map", { enumerable: true, get: function () { return bson_1.Map; } }); +Object.defineProperty(exports, "MaxKey", { enumerable: true, get: function () { return bson_1.MaxKey; } }); +Object.defineProperty(exports, "MinKey", { enumerable: true, get: function () { return bson_1.MinKey; } }); +Object.defineProperty(exports, "ObjectId", { enumerable: true, get: function () { return bson_1.ObjectId; } }); +Object.defineProperty(exports, "Timestamp", { enumerable: true, get: function () { return bson_1.Timestamp; } }); +function pluckBSONSerializeOptions(options) { + const { fieldsAsRaw, promoteValues, promoteBuffers, promoteLongs, serializeFunctions, ignoreUndefined, bsonRegExp, raw, enableUtf8Validation } = options; + return { + fieldsAsRaw, + promoteValues, + promoteBuffers, + promoteLongs, + serializeFunctions, + ignoreUndefined, + bsonRegExp, + raw, + enableUtf8Validation + }; +} +exports.pluckBSONSerializeOptions = pluckBSONSerializeOptions; +/** + * Merge the given BSONSerializeOptions, preferring options over the parent's options, and + * substituting defaults for values not set. + * + * @internal + */ +function resolveBSONOptions(options, parent) { + var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t; + const parentOptions = parent === null || parent === void 0 ? void 0 : parent.bsonOptions; + return { + raw: (_b = (_a = options === null || options === void 0 ? void 0 : options.raw) !== null && _a !== void 0 ? _a : parentOptions === null || parentOptions === void 0 ? void 0 : parentOptions.raw) !== null && _b !== void 0 ? _b : false, + promoteLongs: (_d = (_c = options === null || options === void 0 ? void 0 : options.promoteLongs) !== null && _c !== void 0 ? _c : parentOptions === null || parentOptions === void 0 ? void 0 : parentOptions.promoteLongs) !== null && _d !== void 0 ? _d : true, + promoteValues: (_f = (_e = options === null || options === void 0 ? void 0 : options.promoteValues) !== null && _e !== void 0 ? _e : parentOptions === null || parentOptions === void 0 ? void 0 : parentOptions.promoteValues) !== null && _f !== void 0 ? _f : true, + promoteBuffers: (_h = (_g = options === null || options === void 0 ? void 0 : options.promoteBuffers) !== null && _g !== void 0 ? _g : parentOptions === null || parentOptions === void 0 ? void 0 : parentOptions.promoteBuffers) !== null && _h !== void 0 ? _h : false, + ignoreUndefined: (_k = (_j = options === null || options === void 0 ? void 0 : options.ignoreUndefined) !== null && _j !== void 0 ? _j : parentOptions === null || parentOptions === void 0 ? void 0 : parentOptions.ignoreUndefined) !== null && _k !== void 0 ? _k : false, + bsonRegExp: (_m = (_l = options === null || options === void 0 ? void 0 : options.bsonRegExp) !== null && _l !== void 0 ? _l : parentOptions === null || parentOptions === void 0 ? void 0 : parentOptions.bsonRegExp) !== null && _m !== void 0 ? _m : false, + serializeFunctions: (_p = (_o = options === null || options === void 0 ? void 0 : options.serializeFunctions) !== null && _o !== void 0 ? _o : parentOptions === null || parentOptions === void 0 ? void 0 : parentOptions.serializeFunctions) !== null && _p !== void 0 ? _p : false, + fieldsAsRaw: (_r = (_q = options === null || options === void 0 ? void 0 : options.fieldsAsRaw) !== null && _q !== void 0 ? _q : parentOptions === null || parentOptions === void 0 ? void 0 : parentOptions.fieldsAsRaw) !== null && _r !== void 0 ? _r : {}, + enableUtf8Validation: (_t = (_s = options === null || options === void 0 ? void 0 : options.enableUtf8Validation) !== null && _s !== void 0 ? _s : parentOptions === null || parentOptions === void 0 ? void 0 : parentOptions.enableUtf8Validation) !== null && _t !== void 0 ? _t : true + }; +} +exports.resolveBSONOptions = resolveBSONOptions; +//# sourceMappingURL=bson.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/bson.js.map b/node_modules/mongodb/lib/bson.js.map new file mode 100644 index 000000000..7e9c98085 --- /dev/null +++ b/node_modules/mongodb/lib/bson.js.map @@ -0,0 +1 @@ +{"version":3,"file":"bson.js","sourceRoot":"","sources":["../src/bson.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/bulk/common.js b/node_modules/mongodb/lib/bulk/common.js new file mode 100644 index 000000000..b0a5c4c31 --- /dev/null +++ b/node_modules/mongodb/lib/bulk/common.js @@ -0,0 +1,976 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.BulkOperationBase = exports.FindOperators = exports.MongoBulkWriteError = exports.mergeBatchResults = exports.WriteError = exports.WriteConcernError = exports.BulkWriteResult = exports.Batch = exports.BatchType = void 0; +const bson_1 = require("../bson"); +const error_1 = require("../error"); +const delete_1 = require("../operations/delete"); +const execute_operation_1 = require("../operations/execute_operation"); +const insert_1 = require("../operations/insert"); +const operation_1 = require("../operations/operation"); +const update_1 = require("../operations/update"); +const promise_provider_1 = require("../promise_provider"); +const utils_1 = require("../utils"); +const write_concern_1 = require("../write_concern"); +/** @internal */ +const kServerError = Symbol('serverError'); +/** @public */ +exports.BatchType = Object.freeze({ + INSERT: 1, + UPDATE: 2, + DELETE: 3 +}); +/** + * Keeps the state of a unordered batch so we can rewrite the results + * correctly after command execution + * + * @public + */ +class Batch { + constructor(batchType, originalZeroIndex) { + this.originalZeroIndex = originalZeroIndex; + this.currentIndex = 0; + this.originalIndexes = []; + this.batchType = batchType; + this.operations = []; + this.size = 0; + this.sizeBytes = 0; + } +} +exports.Batch = Batch; +/** + * @public + * The result of a bulk write. + */ +class BulkWriteResult { + /** + * Create a new BulkWriteResult instance + * @internal + */ + constructor(bulkResult) { + this.result = bulkResult; + } + /** Number of documents inserted. */ + get insertedCount() { + var _a; + return (_a = this.result.nInserted) !== null && _a !== void 0 ? _a : 0; + } + /** Number of documents matched for update. */ + get matchedCount() { + var _a; + return (_a = this.result.nMatched) !== null && _a !== void 0 ? _a : 0; + } + /** Number of documents modified. */ + get modifiedCount() { + var _a; + return (_a = this.result.nModified) !== null && _a !== void 0 ? _a : 0; + } + /** Number of documents deleted. */ + get deletedCount() { + var _a; + return (_a = this.result.nRemoved) !== null && _a !== void 0 ? _a : 0; + } + /** Number of documents upserted. */ + get upsertedCount() { + var _a; + return (_a = this.result.upserted.length) !== null && _a !== void 0 ? _a : 0; + } + /** Upserted document generated Id's, hash key is the index of the originating operation */ + get upsertedIds() { + var _a; + const upserted = {}; + for (const doc of (_a = this.result.upserted) !== null && _a !== void 0 ? _a : []) { + upserted[doc.index] = doc._id; + } + return upserted; + } + /** Inserted document generated Id's, hash key is the index of the originating operation */ + get insertedIds() { + var _a; + const inserted = {}; + for (const doc of (_a = this.result.insertedIds) !== null && _a !== void 0 ? _a : []) { + inserted[doc.index] = doc._id; + } + return inserted; + } + /** Evaluates to true if the bulk operation correctly executes */ + get ok() { + return this.result.ok; + } + /** The number of inserted documents */ + get nInserted() { + return this.result.nInserted; + } + /** Number of upserted documents */ + get nUpserted() { + return this.result.nUpserted; + } + /** Number of matched documents */ + get nMatched() { + return this.result.nMatched; + } + /** Number of documents updated physically on disk */ + get nModified() { + return this.result.nModified; + } + /** Number of removed documents */ + get nRemoved() { + return this.result.nRemoved; + } + /** Returns an array of all inserted ids */ + getInsertedIds() { + return this.result.insertedIds; + } + /** Returns an array of all upserted ids */ + getUpsertedIds() { + return this.result.upserted; + } + /** Returns the upserted id at the given index */ + getUpsertedIdAt(index) { + return this.result.upserted[index]; + } + /** Returns raw internal result */ + getRawResponse() { + return this.result; + } + /** Returns true if the bulk operation contains a write error */ + hasWriteErrors() { + return this.result.writeErrors.length > 0; + } + /** Returns the number of write errors off the bulk operation */ + getWriteErrorCount() { + return this.result.writeErrors.length; + } + /** Returns a specific write error object */ + getWriteErrorAt(index) { + return index < this.result.writeErrors.length ? this.result.writeErrors[index] : undefined; + } + /** Retrieve all write errors */ + getWriteErrors() { + return this.result.writeErrors; + } + /** Retrieve lastOp if available */ + getLastOp() { + return this.result.opTime; + } + /** Retrieve the write concern error if one exists */ + getWriteConcernError() { + if (this.result.writeConcernErrors.length === 0) { + return; + } + else if (this.result.writeConcernErrors.length === 1) { + // Return the error + return this.result.writeConcernErrors[0]; + } + else { + // Combine the errors + let errmsg = ''; + for (let i = 0; i < this.result.writeConcernErrors.length; i++) { + const err = this.result.writeConcernErrors[i]; + errmsg = errmsg + err.errmsg; + // TODO: Something better + if (i === 0) + errmsg = errmsg + ' and '; + } + return new WriteConcernError({ errmsg, code: error_1.MONGODB_ERROR_CODES.WriteConcernFailed }); + } + } + toJSON() { + return this.result; + } + toString() { + return `BulkWriteResult(${this.toJSON()})`; + } + isOk() { + return this.result.ok === 1; + } +} +exports.BulkWriteResult = BulkWriteResult; +/** + * An error representing a failure by the server to apply the requested write concern to the bulk operation. + * @public + * @category Error + */ +class WriteConcernError { + constructor(error) { + this[kServerError] = error; + } + /** Write concern error code. */ + get code() { + return this[kServerError].code; + } + /** Write concern error message. */ + get errmsg() { + return this[kServerError].errmsg; + } + /** Write concern error info. */ + get errInfo() { + return this[kServerError].errInfo; + } + /** @deprecated The `err` prop that contained a MongoServerError has been deprecated. */ + get err() { + return this[kServerError]; + } + toJSON() { + return this[kServerError]; + } + toString() { + return `WriteConcernError(${this.errmsg})`; + } +} +exports.WriteConcernError = WriteConcernError; +/** + * An error that occurred during a BulkWrite on the server. + * @public + * @category Error + */ +class WriteError { + constructor(err) { + this.err = err; + } + /** WriteError code. */ + get code() { + return this.err.code; + } + /** WriteError original bulk operation index. */ + get index() { + return this.err.index; + } + /** WriteError message. */ + get errmsg() { + return this.err.errmsg; + } + /** WriteError details. */ + get errInfo() { + return this.err.errInfo; + } + /** Returns the underlying operation that caused the error */ + getOperation() { + return this.err.op; + } + toJSON() { + return { code: this.err.code, index: this.err.index, errmsg: this.err.errmsg, op: this.err.op }; + } + toString() { + return `WriteError(${JSON.stringify(this.toJSON())})`; + } +} +exports.WriteError = WriteError; +/** Converts the number to a Long or returns it. */ +function longOrConvert(value) { + // TODO(NODE-2674): Preserve int64 sent from MongoDB + return typeof value === 'number' ? bson_1.Long.fromNumber(value) : value; +} +/** Merges results into shared data structure */ +function mergeBatchResults(batch, bulkResult, err, result) { + // If we have an error set the result to be the err object + if (err) { + result = err; + } + else if (result && result.result) { + result = result.result; + } + if (result == null) { + return; + } + // Do we have a top level error stop processing and return + if (result.ok === 0 && bulkResult.ok === 1) { + bulkResult.ok = 0; + const writeError = { + index: 0, + code: result.code || 0, + errmsg: result.message, + errInfo: result.errInfo, + op: batch.operations[0] + }; + bulkResult.writeErrors.push(new WriteError(writeError)); + return; + } + else if (result.ok === 0 && bulkResult.ok === 0) { + return; + } + // The server write command specification states that lastOp is an optional + // mongod only field that has a type of timestamp. Across various scarce specs + // where opTime is mentioned, it is an "opaque" object that can have a "ts" and + // "t" field with Timestamp and Long as their types respectively. + // The "lastOp" field of the bulk write result is never mentioned in the driver + // specifications or the bulk write spec, so we should probably just keep its + // value consistent since it seems to vary. + // See: https://github.com/mongodb/specifications/blob/master/source/driver-bulk-update.rst#results-object + if (result.opTime || result.lastOp) { + let opTime = result.lastOp || result.opTime; + // If the opTime is a Timestamp, convert it to a consistent format to be + // able to compare easily. Converting to the object from a timestamp is + // much more straightforward than the other direction. + if (opTime._bsontype === 'Timestamp') { + opTime = { ts: opTime, t: bson_1.Long.ZERO }; + } + // If there's no lastOp, just set it. + if (!bulkResult.opTime) { + bulkResult.opTime = opTime; + } + else { + // First compare the ts values and set if the opTimeTS value is greater. + const lastOpTS = longOrConvert(bulkResult.opTime.ts); + const opTimeTS = longOrConvert(opTime.ts); + if (opTimeTS.greaterThan(lastOpTS)) { + bulkResult.opTime = opTime; + } + else if (opTimeTS.equals(lastOpTS)) { + // If the ts values are equal, then compare using the t values. + const lastOpT = longOrConvert(bulkResult.opTime.t); + const opTimeT = longOrConvert(opTime.t); + if (opTimeT.greaterThan(lastOpT)) { + bulkResult.opTime = opTime; + } + } + } + } + // If we have an insert Batch type + if (isInsertBatch(batch) && result.n) { + bulkResult.nInserted = bulkResult.nInserted + result.n; + } + // If we have an insert Batch type + if (isDeleteBatch(batch) && result.n) { + bulkResult.nRemoved = bulkResult.nRemoved + result.n; + } + let nUpserted = 0; + // We have an array of upserted values, we need to rewrite the indexes + if (Array.isArray(result.upserted)) { + nUpserted = result.upserted.length; + for (let i = 0; i < result.upserted.length; i++) { + bulkResult.upserted.push({ + index: result.upserted[i].index + batch.originalZeroIndex, + _id: result.upserted[i]._id + }); + } + } + else if (result.upserted) { + nUpserted = 1; + bulkResult.upserted.push({ + index: batch.originalZeroIndex, + _id: result.upserted + }); + } + // If we have an update Batch type + if (isUpdateBatch(batch) && result.n) { + const nModified = result.nModified; + bulkResult.nUpserted = bulkResult.nUpserted + nUpserted; + bulkResult.nMatched = bulkResult.nMatched + (result.n - nUpserted); + if (typeof nModified === 'number') { + bulkResult.nModified = bulkResult.nModified + nModified; + } + else { + bulkResult.nModified = 0; + } + } + if (Array.isArray(result.writeErrors)) { + for (let i = 0; i < result.writeErrors.length; i++) { + const writeError = { + index: batch.originalIndexes[result.writeErrors[i].index], + code: result.writeErrors[i].code, + errmsg: result.writeErrors[i].errmsg, + errInfo: result.writeErrors[i].errInfo, + op: batch.operations[result.writeErrors[i].index] + }; + bulkResult.writeErrors.push(new WriteError(writeError)); + } + } + if (result.writeConcernError) { + bulkResult.writeConcernErrors.push(new WriteConcernError(result.writeConcernError)); + } +} +exports.mergeBatchResults = mergeBatchResults; +function executeCommands(bulkOperation, options, callback) { + if (bulkOperation.s.batches.length === 0) { + return callback(undefined, new BulkWriteResult(bulkOperation.s.bulkResult)); + } + const batch = bulkOperation.s.batches.shift(); + function resultHandler(err, result) { + // Error is a driver related error not a bulk op error, return early + if (err && 'message' in err && !(err instanceof error_1.MongoWriteConcernError)) { + return callback(new MongoBulkWriteError(err, new BulkWriteResult(bulkOperation.s.bulkResult))); + } + if (err instanceof error_1.MongoWriteConcernError) { + return handleMongoWriteConcernError(batch, bulkOperation.s.bulkResult, err, callback); + } + // Merge the results together + const writeResult = new BulkWriteResult(bulkOperation.s.bulkResult); + const mergeResult = mergeBatchResults(batch, bulkOperation.s.bulkResult, err, result); + if (mergeResult != null) { + return callback(undefined, writeResult); + } + if (bulkOperation.handleWriteError(callback, writeResult)) + return; + // Execute the next command in line + executeCommands(bulkOperation, options, callback); + } + const finalOptions = (0, utils_1.resolveOptions)(bulkOperation, { + ...options, + ordered: bulkOperation.isOrdered + }); + if (finalOptions.bypassDocumentValidation !== true) { + delete finalOptions.bypassDocumentValidation; + } + // Set an operationIf if provided + if (bulkOperation.operationId) { + resultHandler.operationId = bulkOperation.operationId; + } + // Is the bypassDocumentValidation options specific + if (bulkOperation.s.bypassDocumentValidation === true) { + finalOptions.bypassDocumentValidation = true; + } + // Is the checkKeys option disabled + if (bulkOperation.s.checkKeys === false) { + finalOptions.checkKeys = false; + } + if (finalOptions.retryWrites) { + if (isUpdateBatch(batch)) { + finalOptions.retryWrites = finalOptions.retryWrites && !batch.operations.some(op => op.multi); + } + if (isDeleteBatch(batch)) { + finalOptions.retryWrites = + finalOptions.retryWrites && !batch.operations.some(op => op.limit === 0); + } + } + try { + if (isInsertBatch(batch)) { + (0, execute_operation_1.executeOperation)(bulkOperation.s.collection.s.db.s.client, new insert_1.InsertOperation(bulkOperation.s.namespace, batch.operations, finalOptions), resultHandler); + } + else if (isUpdateBatch(batch)) { + (0, execute_operation_1.executeOperation)(bulkOperation.s.collection.s.db.s.client, new update_1.UpdateOperation(bulkOperation.s.namespace, batch.operations, finalOptions), resultHandler); + } + else if (isDeleteBatch(batch)) { + (0, execute_operation_1.executeOperation)(bulkOperation.s.collection.s.db.s.client, new delete_1.DeleteOperation(bulkOperation.s.namespace, batch.operations, finalOptions), resultHandler); + } + } + catch (err) { + // Force top level error + err.ok = 0; + // Merge top level error and return + mergeBatchResults(batch, bulkOperation.s.bulkResult, err, undefined); + callback(); + } +} +function handleMongoWriteConcernError(batch, bulkResult, err, callback) { + var _a, _b; + mergeBatchResults(batch, bulkResult, undefined, err.result); + callback(new MongoBulkWriteError({ + message: (_a = err.result) === null || _a === void 0 ? void 0 : _a.writeConcernError.errmsg, + code: (_b = err.result) === null || _b === void 0 ? void 0 : _b.writeConcernError.result + }, new BulkWriteResult(bulkResult))); +} +/** + * An error indicating an unsuccessful Bulk Write + * @public + * @category Error + */ +class MongoBulkWriteError extends error_1.MongoServerError { + /** Creates a new MongoBulkWriteError */ + constructor(error, result) { + var _a; + super(error); + this.writeErrors = []; + if (error instanceof WriteConcernError) + this.err = error; + else if (!(error instanceof Error)) { + this.message = error.message; + this.code = error.code; + this.writeErrors = (_a = error.writeErrors) !== null && _a !== void 0 ? _a : []; + } + this.result = result; + Object.assign(this, error); + } + get name() { + return 'MongoBulkWriteError'; + } + /** Number of documents inserted. */ + get insertedCount() { + return this.result.insertedCount; + } + /** Number of documents matched for update. */ + get matchedCount() { + return this.result.matchedCount; + } + /** Number of documents modified. */ + get modifiedCount() { + return this.result.modifiedCount; + } + /** Number of documents deleted. */ + get deletedCount() { + return this.result.deletedCount; + } + /** Number of documents upserted. */ + get upsertedCount() { + return this.result.upsertedCount; + } + /** Inserted document generated Id's, hash key is the index of the originating operation */ + get insertedIds() { + return this.result.insertedIds; + } + /** Upserted document generated Id's, hash key is the index of the originating operation */ + get upsertedIds() { + return this.result.upsertedIds; + } +} +exports.MongoBulkWriteError = MongoBulkWriteError; +/** + * A builder object that is returned from {@link BulkOperationBase#find}. + * Is used to build a write operation that involves a query filter. + * + * @public + */ +class FindOperators { + /** + * Creates a new FindOperators object. + * @internal + */ + constructor(bulkOperation) { + this.bulkOperation = bulkOperation; + } + /** Add a multiple update operation to the bulk operation */ + update(updateDocument) { + const currentOp = buildCurrentOp(this.bulkOperation); + return this.bulkOperation.addToOperationsList(exports.BatchType.UPDATE, (0, update_1.makeUpdateStatement)(currentOp.selector, updateDocument, { + ...currentOp, + multi: true + })); + } + /** Add a single update operation to the bulk operation */ + updateOne(updateDocument) { + if (!(0, utils_1.hasAtomicOperators)(updateDocument)) { + throw new error_1.MongoInvalidArgumentError('Update document requires atomic operators'); + } + const currentOp = buildCurrentOp(this.bulkOperation); + return this.bulkOperation.addToOperationsList(exports.BatchType.UPDATE, (0, update_1.makeUpdateStatement)(currentOp.selector, updateDocument, { ...currentOp, multi: false })); + } + /** Add a replace one operation to the bulk operation */ + replaceOne(replacement) { + if ((0, utils_1.hasAtomicOperators)(replacement)) { + throw new error_1.MongoInvalidArgumentError('Replacement document must not use atomic operators'); + } + const currentOp = buildCurrentOp(this.bulkOperation); + return this.bulkOperation.addToOperationsList(exports.BatchType.UPDATE, (0, update_1.makeUpdateStatement)(currentOp.selector, replacement, { ...currentOp, multi: false })); + } + /** Add a delete one operation to the bulk operation */ + deleteOne() { + const currentOp = buildCurrentOp(this.bulkOperation); + return this.bulkOperation.addToOperationsList(exports.BatchType.DELETE, (0, delete_1.makeDeleteStatement)(currentOp.selector, { ...currentOp, limit: 1 })); + } + /** Add a delete many operation to the bulk operation */ + delete() { + const currentOp = buildCurrentOp(this.bulkOperation); + return this.bulkOperation.addToOperationsList(exports.BatchType.DELETE, (0, delete_1.makeDeleteStatement)(currentOp.selector, { ...currentOp, limit: 0 })); + } + /** Upsert modifier for update bulk operation, noting that this operation is an upsert. */ + upsert() { + if (!this.bulkOperation.s.currentOp) { + this.bulkOperation.s.currentOp = {}; + } + this.bulkOperation.s.currentOp.upsert = true; + return this; + } + /** Specifies the collation for the query condition. */ + collation(collation) { + if (!this.bulkOperation.s.currentOp) { + this.bulkOperation.s.currentOp = {}; + } + this.bulkOperation.s.currentOp.collation = collation; + return this; + } + /** Specifies arrayFilters for UpdateOne or UpdateMany bulk operations. */ + arrayFilters(arrayFilters) { + if (!this.bulkOperation.s.currentOp) { + this.bulkOperation.s.currentOp = {}; + } + this.bulkOperation.s.currentOp.arrayFilters = arrayFilters; + return this; + } + /** Specifies hint for the bulk operation. */ + hint(hint) { + if (!this.bulkOperation.s.currentOp) { + this.bulkOperation.s.currentOp = {}; + } + this.bulkOperation.s.currentOp.hint = hint; + return this; + } +} +exports.FindOperators = FindOperators; +/** + * TODO(NODE-4063) + * BulkWrites merge complexity is implemented in executeCommands + * This provides a vehicle to treat bulkOperations like any other operation (hence "shim") + * We would like this logic to simply live inside the BulkWriteOperation class + * @internal + */ +class BulkWriteShimOperation extends operation_1.AbstractOperation { + constructor(bulkOperation, options) { + super(options); + this.bulkOperation = bulkOperation; + } + execute(server, session, callback) { + if (this.options.session == null) { + // An implicit session could have been created by 'executeOperation' + // So if we stick it on finalOptions here, each bulk operation + // will use this same session, it'll be passed in the same way + // an explicit session would be + this.options.session = session; + } + return executeCommands(this.bulkOperation, this.options, callback); + } +} +/** @public */ +class BulkOperationBase { + /** + * Create a new OrderedBulkOperation or UnorderedBulkOperation instance + * @internal + */ + constructor(collection, options, isOrdered) { + // determine whether bulkOperation is ordered or unordered + this.isOrdered = isOrdered; + const topology = (0, utils_1.getTopology)(collection); + options = options == null ? {} : options; + // TODO Bring from driver information in hello + // Get the namespace for the write operations + const namespace = collection.s.namespace; + // Used to mark operation as executed + const executed = false; + // Current item + const currentOp = undefined; + // Set max byte size + const hello = topology.lastHello(); + // If we have autoEncryption on, batch-splitting must be done on 2mb chunks, but single documents + // over 2mb are still allowed + const usingAutoEncryption = !!(topology.s.options && topology.s.options.autoEncrypter); + const maxBsonObjectSize = hello && hello.maxBsonObjectSize ? hello.maxBsonObjectSize : 1024 * 1024 * 16; + const maxBatchSizeBytes = usingAutoEncryption ? 1024 * 1024 * 2 : maxBsonObjectSize; + const maxWriteBatchSize = hello && hello.maxWriteBatchSize ? hello.maxWriteBatchSize : 1000; + // Calculates the largest possible size of an Array key, represented as a BSON string + // element. This calculation: + // 1 byte for BSON type + // # of bytes = length of (string representation of (maxWriteBatchSize - 1)) + // + 1 bytes for null terminator + const maxKeySize = (maxWriteBatchSize - 1).toString(10).length + 2; + // Final options for retryable writes + let finalOptions = Object.assign({}, options); + finalOptions = (0, utils_1.applyRetryableWrites)(finalOptions, collection.s.db); + // Final results + const bulkResult = { + ok: 1, + writeErrors: [], + writeConcernErrors: [], + insertedIds: [], + nInserted: 0, + nUpserted: 0, + nMatched: 0, + nModified: 0, + nRemoved: 0, + upserted: [] + }; + // Internal state + this.s = { + // Final result + bulkResult, + // Current batch state + currentBatch: undefined, + currentIndex: 0, + // ordered specific + currentBatchSize: 0, + currentBatchSizeBytes: 0, + // unordered specific + currentInsertBatch: undefined, + currentUpdateBatch: undefined, + currentRemoveBatch: undefined, + batches: [], + // Write concern + writeConcern: write_concern_1.WriteConcern.fromOptions(options), + // Max batch size options + maxBsonObjectSize, + maxBatchSizeBytes, + maxWriteBatchSize, + maxKeySize, + // Namespace + namespace, + // Topology + topology, + // Options + options: finalOptions, + // BSON options + bsonOptions: (0, bson_1.resolveBSONOptions)(options), + // Current operation + currentOp, + // Executed + executed, + // Collection + collection, + // Fundamental error + err: undefined, + // check keys + checkKeys: typeof options.checkKeys === 'boolean' ? options.checkKeys : false + }; + // bypass Validation + if (options.bypassDocumentValidation === true) { + this.s.bypassDocumentValidation = true; + } + } + /** + * Add a single insert document to the bulk operation + * + * @example + * ```ts + * const bulkOp = collection.initializeOrderedBulkOp(); + * + * // Adds three inserts to the bulkOp. + * bulkOp + * .insert({ a: 1 }) + * .insert({ b: 2 }) + * .insert({ c: 3 }); + * await bulkOp.execute(); + * ``` + */ + insert(document) { + if (document._id == null && !shouldForceServerObjectId(this)) { + document._id = new bson_1.ObjectId(); + } + return this.addToOperationsList(exports.BatchType.INSERT, document); + } + /** + * Builds a find operation for an update/updateOne/delete/deleteOne/replaceOne. + * Returns a builder object used to complete the definition of the operation. + * + * @example + * ```ts + * const bulkOp = collection.initializeOrderedBulkOp(); + * + * // Add an updateOne to the bulkOp + * bulkOp.find({ a: 1 }).updateOne({ $set: { b: 2 } }); + * + * // Add an updateMany to the bulkOp + * bulkOp.find({ c: 3 }).update({ $set: { d: 4 } }); + * + * // Add an upsert + * bulkOp.find({ e: 5 }).upsert().updateOne({ $set: { f: 6 } }); + * + * // Add a deletion + * bulkOp.find({ g: 7 }).deleteOne(); + * + * // Add a multi deletion + * bulkOp.find({ h: 8 }).delete(); + * + * // Add a replaceOne + * bulkOp.find({ i: 9 }).replaceOne({writeConcern: { j: 10 }}); + * + * // Update using a pipeline (requires Mongodb 4.2 or higher) + * bulk.find({ k: 11, y: { $exists: true }, z: { $exists: true } }).updateOne([ + * { $set: { total: { $sum: [ '$y', '$z' ] } } } + * ]); + * + * // All of the ops will now be executed + * await bulkOp.execute(); + * ``` + */ + find(selector) { + if (!selector) { + throw new error_1.MongoInvalidArgumentError('Bulk find operation must specify a selector'); + } + // Save a current selector + this.s.currentOp = { + selector: selector + }; + return new FindOperators(this); + } + /** Specifies a raw operation to perform in the bulk write. */ + raw(op) { + if (op == null || typeof op !== 'object') { + throw new error_1.MongoInvalidArgumentError('Operation must be an object with an operation key'); + } + if ('insertOne' in op) { + const forceServerObjectId = shouldForceServerObjectId(this); + if (op.insertOne && op.insertOne.document == null) { + // NOTE: provided for legacy support, but this is a malformed operation + if (forceServerObjectId !== true && op.insertOne._id == null) { + op.insertOne._id = new bson_1.ObjectId(); + } + return this.addToOperationsList(exports.BatchType.INSERT, op.insertOne); + } + if (forceServerObjectId !== true && op.insertOne.document._id == null) { + op.insertOne.document._id = new bson_1.ObjectId(); + } + return this.addToOperationsList(exports.BatchType.INSERT, op.insertOne.document); + } + if ('replaceOne' in op || 'updateOne' in op || 'updateMany' in op) { + if ('replaceOne' in op) { + if ('q' in op.replaceOne) { + throw new error_1.MongoInvalidArgumentError('Raw operations are not allowed'); + } + const updateStatement = (0, update_1.makeUpdateStatement)(op.replaceOne.filter, op.replaceOne.replacement, { ...op.replaceOne, multi: false }); + if ((0, utils_1.hasAtomicOperators)(updateStatement.u)) { + throw new error_1.MongoInvalidArgumentError('Replacement document must not use atomic operators'); + } + return this.addToOperationsList(exports.BatchType.UPDATE, updateStatement); + } + if ('updateOne' in op) { + if ('q' in op.updateOne) { + throw new error_1.MongoInvalidArgumentError('Raw operations are not allowed'); + } + const updateStatement = (0, update_1.makeUpdateStatement)(op.updateOne.filter, op.updateOne.update, { + ...op.updateOne, + multi: false + }); + if (!(0, utils_1.hasAtomicOperators)(updateStatement.u)) { + throw new error_1.MongoInvalidArgumentError('Update document requires atomic operators'); + } + return this.addToOperationsList(exports.BatchType.UPDATE, updateStatement); + } + if ('updateMany' in op) { + if ('q' in op.updateMany) { + throw new error_1.MongoInvalidArgumentError('Raw operations are not allowed'); + } + const updateStatement = (0, update_1.makeUpdateStatement)(op.updateMany.filter, op.updateMany.update, { + ...op.updateMany, + multi: true + }); + if (!(0, utils_1.hasAtomicOperators)(updateStatement.u)) { + throw new error_1.MongoInvalidArgumentError('Update document requires atomic operators'); + } + return this.addToOperationsList(exports.BatchType.UPDATE, updateStatement); + } + } + if ('deleteOne' in op) { + if ('q' in op.deleteOne) { + throw new error_1.MongoInvalidArgumentError('Raw operations are not allowed'); + } + return this.addToOperationsList(exports.BatchType.DELETE, (0, delete_1.makeDeleteStatement)(op.deleteOne.filter, { ...op.deleteOne, limit: 1 })); + } + if ('deleteMany' in op) { + if ('q' in op.deleteMany) { + throw new error_1.MongoInvalidArgumentError('Raw operations are not allowed'); + } + return this.addToOperationsList(exports.BatchType.DELETE, (0, delete_1.makeDeleteStatement)(op.deleteMany.filter, { ...op.deleteMany, limit: 0 })); + } + // otherwise an unknown operation was provided + throw new error_1.MongoInvalidArgumentError('bulkWrite only supports insertOne, updateOne, updateMany, deleteOne, deleteMany'); + } + get bsonOptions() { + return this.s.bsonOptions; + } + get writeConcern() { + return this.s.writeConcern; + } + get batches() { + const batches = [...this.s.batches]; + if (this.isOrdered) { + if (this.s.currentBatch) + batches.push(this.s.currentBatch); + } + else { + if (this.s.currentInsertBatch) + batches.push(this.s.currentInsertBatch); + if (this.s.currentUpdateBatch) + batches.push(this.s.currentUpdateBatch); + if (this.s.currentRemoveBatch) + batches.push(this.s.currentRemoveBatch); + } + return batches; + } + execute(options, callback) { + if (typeof options === 'function') + (callback = options), (options = {}); + options = options !== null && options !== void 0 ? options : {}; + if (this.s.executed) { + return handleEarlyError(new error_1.MongoBatchReExecutionError(), callback); + } + const writeConcern = write_concern_1.WriteConcern.fromOptions(options); + if (writeConcern) { + this.s.writeConcern = writeConcern; + } + // If we have current batch + if (this.isOrdered) { + if (this.s.currentBatch) + this.s.batches.push(this.s.currentBatch); + } + else { + if (this.s.currentInsertBatch) + this.s.batches.push(this.s.currentInsertBatch); + if (this.s.currentUpdateBatch) + this.s.batches.push(this.s.currentUpdateBatch); + if (this.s.currentRemoveBatch) + this.s.batches.push(this.s.currentRemoveBatch); + } + // If we have no operations in the bulk raise an error + if (this.s.batches.length === 0) { + const emptyBatchError = new error_1.MongoInvalidArgumentError('Invalid BulkOperation, Batch cannot be empty'); + return handleEarlyError(emptyBatchError, callback); + } + this.s.executed = true; + const finalOptions = { ...this.s.options, ...options }; + const operation = new BulkWriteShimOperation(this, finalOptions); + return (0, execute_operation_1.executeOperation)(this.s.collection.s.db.s.client, operation, callback); + } + /** + * Handles the write error before executing commands + * @internal + */ + handleWriteError(callback, writeResult) { + if (this.s.bulkResult.writeErrors.length > 0) { + const msg = this.s.bulkResult.writeErrors[0].errmsg + ? this.s.bulkResult.writeErrors[0].errmsg + : 'write operation failed'; + callback(new MongoBulkWriteError({ + message: msg, + code: this.s.bulkResult.writeErrors[0].code, + writeErrors: this.s.bulkResult.writeErrors + }, writeResult)); + return true; + } + const writeConcernError = writeResult.getWriteConcernError(); + if (writeConcernError) { + callback(new MongoBulkWriteError(writeConcernError, writeResult)); + return true; + } + return false; + } +} +exports.BulkOperationBase = BulkOperationBase; +Object.defineProperty(BulkOperationBase.prototype, 'length', { + enumerable: true, + get() { + return this.s.currentIndex; + } +}); +/** helper function to assist with promiseOrCallback behavior */ +function handleEarlyError(err, callback) { + var _a; + if (typeof callback === 'function') { + callback(err); + return; + } + const PromiseConstructor = (_a = promise_provider_1.PromiseProvider.get()) !== null && _a !== void 0 ? _a : Promise; + return PromiseConstructor.reject(err); +} +function shouldForceServerObjectId(bulkOperation) { + var _a, _b; + if (typeof bulkOperation.s.options.forceServerObjectId === 'boolean') { + return bulkOperation.s.options.forceServerObjectId; + } + if (typeof ((_a = bulkOperation.s.collection.s.db.options) === null || _a === void 0 ? void 0 : _a.forceServerObjectId) === 'boolean') { + return (_b = bulkOperation.s.collection.s.db.options) === null || _b === void 0 ? void 0 : _b.forceServerObjectId; + } + return false; +} +function isInsertBatch(batch) { + return batch.batchType === exports.BatchType.INSERT; +} +function isUpdateBatch(batch) { + return batch.batchType === exports.BatchType.UPDATE; +} +function isDeleteBatch(batch) { + return batch.batchType === exports.BatchType.DELETE; +} +function buildCurrentOp(bulkOp) { + let { currentOp } = bulkOp.s; + bulkOp.s.currentOp = undefined; + if (!currentOp) + currentOp = {}; + return currentOp; +} +//# sourceMappingURL=common.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/bulk/common.js.map b/node_modules/mongodb/lib/bulk/common.js.map new file mode 100644 index 000000000..8d4d2757c --- /dev/null +++ b/node_modules/mongodb/lib/bulk/common.js.map @@ -0,0 +1 @@ +{"version":3,"file":"common.js","sourceRoot":"","sources":["../../src/bulk/common.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/bulk/ordered.js b/node_modules/mongodb/lib/bulk/ordered.js new file mode 100644 index 000000000..667f724f1 --- /dev/null +++ b/node_modules/mongodb/lib/bulk/ordered.js @@ -0,0 +1,67 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.OrderedBulkOperation = void 0; +const BSON = require("../bson"); +const error_1 = require("../error"); +const common_1 = require("./common"); +/** @public */ +class OrderedBulkOperation extends common_1.BulkOperationBase { + /** @internal */ + constructor(collection, options) { + super(collection, options, true); + } + addToOperationsList(batchType, document) { + // Get the bsonSize + const bsonSize = BSON.calculateObjectSize(document, { + checkKeys: false, + // Since we don't know what the user selected for BSON options here, + // err on the safe side, and check the size with ignoreUndefined: false. + ignoreUndefined: false + }); + // Throw error if the doc is bigger than the max BSON size + if (bsonSize >= this.s.maxBsonObjectSize) + // TODO(NODE-3483): Change this to MongoBSONError + throw new error_1.MongoInvalidArgumentError(`Document is larger than the maximum size ${this.s.maxBsonObjectSize}`); + // Create a new batch object if we don't have a current one + if (this.s.currentBatch == null) { + this.s.currentBatch = new common_1.Batch(batchType, this.s.currentIndex); + } + const maxKeySize = this.s.maxKeySize; + // Check if we need to create a new batch + if ( + // New batch if we exceed the max batch op size + this.s.currentBatchSize + 1 >= this.s.maxWriteBatchSize || + // New batch if we exceed the maxBatchSizeBytes. Only matters if batch already has a doc, + // since we can't sent an empty batch + (this.s.currentBatchSize > 0 && + this.s.currentBatchSizeBytes + maxKeySize + bsonSize >= this.s.maxBatchSizeBytes) || + // New batch if the new op does not have the same op type as the current batch + this.s.currentBatch.batchType !== batchType) { + // Save the batch to the execution stack + this.s.batches.push(this.s.currentBatch); + // Create a new batch + this.s.currentBatch = new common_1.Batch(batchType, this.s.currentIndex); + // Reset the current size trackers + this.s.currentBatchSize = 0; + this.s.currentBatchSizeBytes = 0; + } + if (batchType === common_1.BatchType.INSERT) { + this.s.bulkResult.insertedIds.push({ + index: this.s.currentIndex, + _id: document._id + }); + } + // We have an array of documents + if (Array.isArray(document)) { + throw new error_1.MongoInvalidArgumentError('Operation passed in cannot be an Array'); + } + this.s.currentBatch.originalIndexes.push(this.s.currentIndex); + this.s.currentBatch.operations.push(document); + this.s.currentBatchSize += 1; + this.s.currentBatchSizeBytes += maxKeySize + bsonSize; + this.s.currentIndex += 1; + return this; + } +} +exports.OrderedBulkOperation = OrderedBulkOperation; +//# sourceMappingURL=ordered.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/bulk/ordered.js.map b/node_modules/mongodb/lib/bulk/ordered.js.map new file mode 100644 index 000000000..3f16a9906 --- /dev/null +++ b/node_modules/mongodb/lib/bulk/ordered.js.map @@ -0,0 +1 @@ +{"version":3,"file":"ordered.js","sourceRoot":"","sources":["../../src/bulk/ordered.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/bulk/unordered.js b/node_modules/mongodb/lib/bulk/unordered.js new file mode 100644 index 000000000..14b8f038f --- /dev/null +++ b/node_modules/mongodb/lib/bulk/unordered.js @@ -0,0 +1,92 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.UnorderedBulkOperation = void 0; +const BSON = require("../bson"); +const error_1 = require("../error"); +const common_1 = require("./common"); +/** @public */ +class UnorderedBulkOperation extends common_1.BulkOperationBase { + /** @internal */ + constructor(collection, options) { + super(collection, options, false); + } + handleWriteError(callback, writeResult) { + if (this.s.batches.length) { + return false; + } + return super.handleWriteError(callback, writeResult); + } + addToOperationsList(batchType, document) { + // Get the bsonSize + const bsonSize = BSON.calculateObjectSize(document, { + checkKeys: false, + // Since we don't know what the user selected for BSON options here, + // err on the safe side, and check the size with ignoreUndefined: false. + ignoreUndefined: false + }); + // Throw error if the doc is bigger than the max BSON size + if (bsonSize >= this.s.maxBsonObjectSize) { + // TODO(NODE-3483): Change this to MongoBSONError + throw new error_1.MongoInvalidArgumentError(`Document is larger than the maximum size ${this.s.maxBsonObjectSize}`); + } + // Holds the current batch + this.s.currentBatch = undefined; + // Get the right type of batch + if (batchType === common_1.BatchType.INSERT) { + this.s.currentBatch = this.s.currentInsertBatch; + } + else if (batchType === common_1.BatchType.UPDATE) { + this.s.currentBatch = this.s.currentUpdateBatch; + } + else if (batchType === common_1.BatchType.DELETE) { + this.s.currentBatch = this.s.currentRemoveBatch; + } + const maxKeySize = this.s.maxKeySize; + // Create a new batch object if we don't have a current one + if (this.s.currentBatch == null) { + this.s.currentBatch = new common_1.Batch(batchType, this.s.currentIndex); + } + // Check if we need to create a new batch + if ( + // New batch if we exceed the max batch op size + this.s.currentBatch.size + 1 >= this.s.maxWriteBatchSize || + // New batch if we exceed the maxBatchSizeBytes. Only matters if batch already has a doc, + // since we can't sent an empty batch + (this.s.currentBatch.size > 0 && + this.s.currentBatch.sizeBytes + maxKeySize + bsonSize >= this.s.maxBatchSizeBytes) || + // New batch if the new op does not have the same op type as the current batch + this.s.currentBatch.batchType !== batchType) { + // Save the batch to the execution stack + this.s.batches.push(this.s.currentBatch); + // Create a new batch + this.s.currentBatch = new common_1.Batch(batchType, this.s.currentIndex); + } + // We have an array of documents + if (Array.isArray(document)) { + throw new error_1.MongoInvalidArgumentError('Operation passed in cannot be an Array'); + } + this.s.currentBatch.operations.push(document); + this.s.currentBatch.originalIndexes.push(this.s.currentIndex); + this.s.currentIndex = this.s.currentIndex + 1; + // Save back the current Batch to the right type + if (batchType === common_1.BatchType.INSERT) { + this.s.currentInsertBatch = this.s.currentBatch; + this.s.bulkResult.insertedIds.push({ + index: this.s.bulkResult.insertedIds.length, + _id: document._id + }); + } + else if (batchType === common_1.BatchType.UPDATE) { + this.s.currentUpdateBatch = this.s.currentBatch; + } + else if (batchType === common_1.BatchType.DELETE) { + this.s.currentRemoveBatch = this.s.currentBatch; + } + // Update current batch size + this.s.currentBatch.size += 1; + this.s.currentBatch.sizeBytes += maxKeySize + bsonSize; + return this; + } +} +exports.UnorderedBulkOperation = UnorderedBulkOperation; +//# sourceMappingURL=unordered.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/bulk/unordered.js.map b/node_modules/mongodb/lib/bulk/unordered.js.map new file mode 100644 index 000000000..22bfa5d31 --- /dev/null +++ b/node_modules/mongodb/lib/bulk/unordered.js.map @@ -0,0 +1 @@ +{"version":3,"file":"unordered.js","sourceRoot":"","sources":["../../src/bulk/unordered.ts"],"names":[],"mappings":";;;AACA,gCAAgC;AAEhC,oCAAqD;AAIrD,qCAAkG;AAElG,cAAc;AACd,MAAa,sBAAuB,SAAQ,0BAAiB;IAC3D,gBAAgB;IAChB,YAAY,UAAsB,EAAE,OAAyB;QAC3D,KAAK,CAAC,UAAU,EAAE,OAAO,EAAE,KAAK,CAAC,CAAC;IACpC,CAAC;IAEQ,gBAAgB,CAAC,QAAkB,EAAE,WAA4B;QACxE,IAAI,IAAI,CAAC,CAAC,CAAC,OAAO,CAAC,MAAM,EAAE;YACzB,OAAO,KAAK,CAAC;SACd;QAED,OAAO,KAAK,CAAC,gBAAgB,CAAC,QAAQ,EAAE,WAAW,CAAC,CAAC;IACvD,CAAC;IAED,mBAAmB,CACjB,SAAoB,EACpB,QAAsD;QAEtD,mBAAmB;QACnB,MAAM,QAAQ,GAAG,IAAI,CAAC,mBAAmB,CAAC,QAAQ,EAAE;YAClD,SAAS,EAAE,KAAK;YAEhB,oEAAoE;YACpE,wEAAwE;YACxE,eAAe,EAAE,KAAK;SAChB,CAAC,CAAC;QAEV,0DAA0D;QAC1D,IAAI,QAAQ,IAAI,IAAI,CAAC,CAAC,CAAC,iBAAiB,EAAE;YACxC,iDAAiD;YACjD,MAAM,IAAI,iCAAyB,CACjC,4CAA4C,IAAI,CAAC,CAAC,CAAC,iBAAiB,EAAE,CACvE,CAAC;SACH;QAED,0BAA0B;QAC1B,IAAI,CAAC,CAAC,CAAC,YAAY,GAAG,SAAS,CAAC;QAChC,8BAA8B;QAC9B,IAAI,SAAS,KAAK,kBAAS,CAAC,MAAM,EAAE;YAClC,IAAI,CAAC,CAAC,CAAC,YAAY,GAAG,IAAI,CAAC,CAAC,CAAC,kBAAkB,CAAC;SACjD;aAAM,IAAI,SAAS,KAAK,kBAAS,CAAC,MAAM,EAAE;YACzC,IAAI,CAAC,CAAC,CAAC,YAAY,GAAG,IAAI,CAAC,CAAC,CAAC,kBAAkB,CAAC;SACjD;aAAM,IAAI,SAAS,KAAK,kBAAS,CAAC,MAAM,EAAE;YACzC,IAAI,CAAC,CAAC,CAAC,YAAY,GAAG,IAAI,CAAC,CAAC,CAAC,kBAAkB,CAAC;SACjD;QAED,MAAM,UAAU,GAAG,IAAI,CAAC,CAAC,CAAC,UAAU,CAAC;QAErC,2DAA2D;QAC3D,IAAI,IAAI,CAAC,CAAC,CAAC,YAAY,IAAI,IAAI,EAAE;YAC/B,IAAI,CAAC,CAAC,CAAC,YAAY,GAAG,IAAI,cAAK,CAAC,SAAS,EAAE,IAAI,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC;SACjE;QAED,yCAAyC;QACzC;QACE,+CAA+C;QAC/C,IAAI,CAAC,CAAC,CAAC,YAAY,CAAC,IAAI,GAAG,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,iBAAiB;YACxD,yFAAyF;YACzF,qCAAqC;YACrC,CAAC,IAAI,CAAC,CAAC,CAAC,YAAY,CAAC,IAAI,GAAG,CAAC;gBAC3B,IAAI,CAAC,CAAC,CAAC,YAAY,CAAC,SAAS,GAAG,UAAU,GAAG,QAAQ,IAAI,IAAI,CAAC,CAAC,CAAC,iBAAiB,CAAC;YACpF,8EAA8E;YAC9E,IAAI,CAAC,CAAC,CAAC,YAAY,CAAC,SAAS,KAAK,SAAS,EAC3C;YACA,wCAAwC;YACxC,IAAI,CAAC,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC;YAEzC,qBAAqB;YACrB,IAAI,CAAC,CAAC,CAAC,YAAY,GAAG,IAAI,cAAK,CAAC,SAAS,EAAE,IAAI,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC;SACjE;QAED,gCAAgC;QAChC,IAAI,KAAK,CAAC,OAAO,CAAC,QAAQ,CAAC,EAAE;YAC3B,MAAM,IAAI,iCAAyB,CAAC,wCAAwC,CAAC,CAAC;SAC/E;QAED,IAAI,CAAC,CAAC,CAAC,YAAY,CAAC,UAAU,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;QAC9C,IAAI,CAAC,CAAC,CAAC,YAAY,CAAC,eAAe,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC;QAC9D,IAAI,CAAC,CAAC,CAAC,YAAY,GAAG,IAAI,CAAC,CAAC,CAAC,YAAY,GAAG,CAAC,CAAC;QAE9C,gDAAgD;QAChD,IAAI,SAAS,KAAK,kBAAS,CAAC,MAAM,EAAE;YAClC,IAAI,CAAC,CAAC,CAAC,kBAAkB,GAAG,IAAI,CAAC,CAAC,CAAC,YAAY,CAAC;YAChD,IAAI,CAAC,CAAC,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,CAAC;gBACjC,KAAK,EAAE,IAAI,CAAC,CAAC,CAAC,UAAU,CAAC,WAAW,CAAC,MAAM;gBAC3C,GAAG,EAAG,QAAqB,CAAC,GAAG;aAChC,CAAC,CAAC;SACJ;aAAM,IAAI,SAAS,KAAK,kBAAS,CAAC,MAAM,EAAE;YACzC,IAAI,CAAC,CAAC,CAAC,kBAAkB,GAAG,IAAI,CAAC,CAAC,CAAC,YAAY,CAAC;SACjD;aAAM,IAAI,SAAS,KAAK,kBAAS,CAAC,MAAM,EAAE;YACzC,IAAI,CAAC,CAAC,CAAC,kBAAkB,GAAG,IAAI,CAAC,CAAC,CAAC,YAAY,CAAC;SACjD;QAED,4BAA4B;QAC5B,IAAI,CAAC,CAAC,CAAC,YAAY,CAAC,IAAI,IAAI,CAAC,CAAC;QAC9B,IAAI,CAAC,CAAC,CAAC,YAAY,CAAC,SAAS,IAAI,UAAU,GAAG,QAAQ,CAAC;QAEvD,OAAO,IAAI,CAAC;IACd,CAAC;CACF;AAnGD,wDAmGC"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/change_stream.js b/node_modules/mongodb/lib/change_stream.js new file mode 100644 index 000000000..49ef1bc3e --- /dev/null +++ b/node_modules/mongodb/lib/change_stream.js @@ -0,0 +1,374 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.ChangeStream = void 0; +const util_1 = require("util"); +const collection_1 = require("./collection"); +const constants_1 = require("./constants"); +const change_stream_cursor_1 = require("./cursor/change_stream_cursor"); +const db_1 = require("./db"); +const error_1 = require("./error"); +const mongo_client_1 = require("./mongo_client"); +const mongo_types_1 = require("./mongo_types"); +const utils_1 = require("./utils"); +/** @internal */ +const kCursorStream = Symbol('cursorStream'); +/** @internal */ +const kClosed = Symbol('closed'); +/** @internal */ +const kMode = Symbol('mode'); +const CHANGE_STREAM_OPTIONS = [ + 'resumeAfter', + 'startAfter', + 'startAtOperationTime', + 'fullDocument', + 'fullDocumentBeforeChange', + 'showExpandedEvents' +]; +const CHANGE_DOMAIN_TYPES = { + COLLECTION: Symbol('Collection'), + DATABASE: Symbol('Database'), + CLUSTER: Symbol('Cluster') +}; +const CHANGE_STREAM_EVENTS = [constants_1.RESUME_TOKEN_CHANGED, constants_1.END, constants_1.CLOSE]; +const NO_RESUME_TOKEN_ERROR = 'A change stream document has been received that lacks a resume token (_id).'; +const CHANGESTREAM_CLOSED_ERROR = 'ChangeStream is closed'; +/** + * Creates a new Change Stream instance. Normally created using {@link Collection#watch|Collection.watch()}. + * @public + */ +class ChangeStream extends mongo_types_1.TypedEventEmitter { + /** + * @internal + * + * @param parent - The parent object that created this change stream + * @param pipeline - An array of {@link https://docs.mongodb.com/manual/reference/operator/aggregation-pipeline/|aggregation pipeline stages} through which to pass change stream documents + */ + constructor(parent, pipeline = [], options = {}) { + super(); + /** + * @internal + * + * TODO(NODE-4320): promisify selectServer and refactor this code to be async + * + * we promisify _processErrorIteratorModeCallback until we have a promisifed version of selectServer. + */ + // eslint-disable-next-line @typescript-eslint/unbound-method + this._processErrorIteratorMode = (0, util_1.promisify)(this._processErrorIteratorModeCallback); + this.pipeline = pipeline; + this.options = options; + if (parent instanceof collection_1.Collection) { + this.type = CHANGE_DOMAIN_TYPES.COLLECTION; + } + else if (parent instanceof db_1.Db) { + this.type = CHANGE_DOMAIN_TYPES.DATABASE; + } + else if (parent instanceof mongo_client_1.MongoClient) { + this.type = CHANGE_DOMAIN_TYPES.CLUSTER; + } + else { + throw new error_1.MongoChangeStreamError('Parent provided to ChangeStream constructor must be an instance of Collection, Db, or MongoClient'); + } + this.parent = parent; + this.namespace = parent.s.namespace; + if (!this.options.readPreference && parent.readPreference) { + this.options.readPreference = parent.readPreference; + } + // Create contained Change Stream cursor + this.cursor = this._createChangeStreamCursor(options); + this[kClosed] = false; + this[kMode] = false; + // Listen for any `change` listeners being added to ChangeStream + this.on('newListener', eventName => { + if (eventName === 'change' && this.cursor && this.listenerCount('change') === 0) { + this._streamEvents(this.cursor); + } + }); + this.on('removeListener', eventName => { + var _a; + if (eventName === 'change' && this.listenerCount('change') === 0 && this.cursor) { + (_a = this[kCursorStream]) === null || _a === void 0 ? void 0 : _a.removeAllListeners('data'); + } + }); + } + /** @internal */ + get cursorStream() { + return this[kCursorStream]; + } + /** The cached resume token that is used to resume after the most recently returned change. */ + get resumeToken() { + var _a; + return (_a = this.cursor) === null || _a === void 0 ? void 0 : _a.resumeToken; + } + hasNext(callback) { + this._setIsIterator(); + // TOOD(NODE-4319): Add eslint rule preventing accidental variable shadowing + // Shadowing is intentional here. We want to override the `callback` variable + // from the outer scope so that the inner scope doesn't accidentally call the wrong callback. + return (0, utils_1.maybePromise)(callback, callback => { + (async () => { + try { + const hasNext = await this.cursor.hasNext(); + return hasNext; + } + catch (error) { + try { + await this._processErrorIteratorMode(error); + const hasNext = await this.cursor.hasNext(); + return hasNext; + } + catch (error) { + await this.close().catch(err => err); + throw error; + } + } + })().then(hasNext => callback(undefined, hasNext), error => callback(error)); + }); + } + next(callback) { + this._setIsIterator(); + // TOOD(NODE-4319): Add eslint rule preventing accidental variable shadowing + // Shadowing is intentional here. We want to override the `callback` variable + // from the outer scope so that the inner scope doesn't accidentally call the wrong callback. + return (0, utils_1.maybePromise)(callback, callback => { + (async () => { + try { + const change = await this.cursor.next(); + const processedChange = this._processChange(change !== null && change !== void 0 ? change : null); + return processedChange; + } + catch (error) { + try { + await this._processErrorIteratorMode(error); + const change = await this.cursor.next(); + const processedChange = this._processChange(change !== null && change !== void 0 ? change : null); + return processedChange; + } + catch (error) { + await this.close().catch(err => err); + throw error; + } + } + })().then(change => callback(undefined, change), error => callback(error)); + }); + } + tryNext(callback) { + this._setIsIterator(); + // TOOD(NODE-4319): Add eslint rule preventing accidental variable shadowing + // Shadowing is intentional here. We want to override the `callback` variable + // from the outer scope so that the inner scope doesn't accidentally call the wrong callback. + return (0, utils_1.maybePromise)(callback, callback => { + (async () => { + try { + const change = await this.cursor.tryNext(); + return change !== null && change !== void 0 ? change : null; + } + catch (error) { + try { + await this._processErrorIteratorMode(error); + const change = await this.cursor.tryNext(); + return change !== null && change !== void 0 ? change : null; + } + catch (error) { + await this.close().catch(err => err); + throw error; + } + } + })().then(change => callback(undefined, change), error => callback(error)); + }); + } + /** Is the cursor closed */ + get closed() { + return this[kClosed] || this.cursor.closed; + } + close(callback) { + this[kClosed] = true; + return (0, utils_1.maybePromise)(callback, cb => { + const cursor = this.cursor; + return cursor.close(err => { + this._endStream(); + return cb(err); + }); + }); + } + /** + * Return a modified Readable stream including a possible transform method. + * + * NOTE: When using a Stream to process change stream events, the stream will + * NOT automatically resume in the case a resumable error is encountered. + * + * @throws MongoChangeStreamError if the underlying cursor or the change stream is closed + */ + stream(options) { + if (this.closed) { + throw new error_1.MongoChangeStreamError(CHANGESTREAM_CLOSED_ERROR); + } + this.streamOptions = options; + return this.cursor.stream(options); + } + /** @internal */ + _setIsEmitter() { + if (this[kMode] === 'iterator') { + // TODO(NODE-3485): Replace with MongoChangeStreamModeError + throw new error_1.MongoAPIError('ChangeStream cannot be used as an EventEmitter after being used as an iterator'); + } + this[kMode] = 'emitter'; + } + /** @internal */ + _setIsIterator() { + if (this[kMode] === 'emitter') { + // TODO(NODE-3485): Replace with MongoChangeStreamModeError + throw new error_1.MongoAPIError('ChangeStream cannot be used as an iterator after being used as an EventEmitter'); + } + this[kMode] = 'iterator'; + } + /** + * Create a new change stream cursor based on self's configuration + * @internal + */ + _createChangeStreamCursor(options) { + const changeStreamStageOptions = (0, utils_1.filterOptions)(options, CHANGE_STREAM_OPTIONS); + if (this.type === CHANGE_DOMAIN_TYPES.CLUSTER) { + changeStreamStageOptions.allChangesForCluster = true; + } + const pipeline = [{ $changeStream: changeStreamStageOptions }, ...this.pipeline]; + const client = this.type === CHANGE_DOMAIN_TYPES.CLUSTER + ? this.parent + : this.type === CHANGE_DOMAIN_TYPES.DATABASE + ? this.parent.s.client + : this.type === CHANGE_DOMAIN_TYPES.COLLECTION + ? this.parent.s.db.s.client + : null; + if (client == null) { + // This should never happen because of the assertion in the constructor + throw new error_1.MongoRuntimeError(`Changestream type should only be one of cluster, database, collection. Found ${this.type.toString()}`); + } + const changeStreamCursor = new change_stream_cursor_1.ChangeStreamCursor(client, this.namespace, pipeline, options); + for (const event of CHANGE_STREAM_EVENTS) { + changeStreamCursor.on(event, e => this.emit(event, e)); + } + if (this.listenerCount(ChangeStream.CHANGE) > 0) { + this._streamEvents(changeStreamCursor); + } + return changeStreamCursor; + } + /** @internal */ + _closeEmitterModeWithError(error) { + this.emit(ChangeStream.ERROR, error); + this.close(() => { + // nothing to do + }); + } + /** @internal */ + _streamEvents(cursor) { + var _a; + this._setIsEmitter(); + const stream = (_a = this[kCursorStream]) !== null && _a !== void 0 ? _a : cursor.stream(); + this[kCursorStream] = stream; + stream.on('data', change => { + try { + const processedChange = this._processChange(change); + this.emit(ChangeStream.CHANGE, processedChange); + } + catch (error) { + this.emit(ChangeStream.ERROR, error); + } + }); + stream.on('error', error => this._processErrorStreamMode(error)); + } + /** @internal */ + _endStream() { + const cursorStream = this[kCursorStream]; + if (cursorStream) { + ['data', 'close', 'end', 'error'].forEach(event => cursorStream.removeAllListeners(event)); + cursorStream.destroy(); + } + this[kCursorStream] = undefined; + } + /** @internal */ + _processChange(change) { + if (this[kClosed]) { + // TODO(NODE-3485): Replace with MongoChangeStreamClosedError + throw new error_1.MongoAPIError(CHANGESTREAM_CLOSED_ERROR); + } + // a null change means the cursor has been notified, implicitly closing the change stream + if (change == null) { + // TODO(NODE-3485): Replace with MongoChangeStreamClosedError + throw new error_1.MongoRuntimeError(CHANGESTREAM_CLOSED_ERROR); + } + if (change && !change._id) { + throw new error_1.MongoChangeStreamError(NO_RESUME_TOKEN_ERROR); + } + // cache the resume token + this.cursor.cacheResumeToken(change._id); + // wipe the startAtOperationTime if there was one so that there won't be a conflict + // between resumeToken and startAtOperationTime if we need to reconnect the cursor + this.options.startAtOperationTime = undefined; + return change; + } + /** @internal */ + _processErrorStreamMode(changeStreamError) { + // If the change stream has been closed explicitly, do not process error. + if (this[kClosed]) + return; + if ((0, error_1.isResumableError)(changeStreamError, this.cursor.maxWireVersion)) { + this._endStream(); + this.cursor.close().catch(() => null); + const topology = (0, utils_1.getTopology)(this.parent); + topology.selectServer(this.cursor.readPreference, {}, serverSelectionError => { + if (serverSelectionError) + return this._closeEmitterModeWithError(changeStreamError); + this.cursor = this._createChangeStreamCursor(this.cursor.resumeOptions); + }); + } + else { + this._closeEmitterModeWithError(changeStreamError); + } + } + /** @internal */ + _processErrorIteratorModeCallback(changeStreamError, callback) { + if (this[kClosed]) { + // TODO(NODE-3485): Replace with MongoChangeStreamClosedError + return callback(new error_1.MongoAPIError(CHANGESTREAM_CLOSED_ERROR)); + } + if ((0, error_1.isResumableError)(changeStreamError, this.cursor.maxWireVersion)) { + this.cursor.close().catch(() => null); + const topology = (0, utils_1.getTopology)(this.parent); + topology.selectServer(this.cursor.readPreference, {}, serverSelectionError => { + // if the topology can't reconnect, close the stream + if (serverSelectionError) + return this.close(() => callback(changeStreamError)); + this.cursor = this._createChangeStreamCursor(this.cursor.resumeOptions); + callback(); + }); + } + else { + this.close(() => callback(changeStreamError)); + } + } +} +exports.ChangeStream = ChangeStream; +/** @event */ +ChangeStream.RESPONSE = constants_1.RESPONSE; +/** @event */ +ChangeStream.MORE = constants_1.MORE; +/** @event */ +ChangeStream.INIT = constants_1.INIT; +/** @event */ +ChangeStream.CLOSE = constants_1.CLOSE; +/** + * Fired for each new matching change in the specified namespace. Attaching a `change` + * event listener to a Change Stream will switch the stream into flowing mode. Data will + * then be passed as soon as it is available. + * @event + */ +ChangeStream.CHANGE = constants_1.CHANGE; +/** @event */ +ChangeStream.END = constants_1.END; +/** @event */ +ChangeStream.ERROR = constants_1.ERROR; +/** + * Emitted each time the change stream stores a new resume token. + * @event + */ +ChangeStream.RESUME_TOKEN_CHANGED = constants_1.RESUME_TOKEN_CHANGED; +//# sourceMappingURL=change_stream.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/change_stream.js.map b/node_modules/mongodb/lib/change_stream.js.map new file mode 100644 index 000000000..e379658cb --- /dev/null +++ b/node_modules/mongodb/lib/change_stream.js.map @@ -0,0 +1 @@ +{"version":3,"file":"change_stream.js","sourceRoot":"","sources":["../src/change_stream.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/cmap/auth/auth_provider.js b/node_modules/mongodb/lib/cmap/auth/auth_provider.js new file mode 100644 index 000000000..b9a840ee8 --- /dev/null +++ b/node_modules/mongodb/lib/cmap/auth/auth_provider.js @@ -0,0 +1,36 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.AuthProvider = exports.AuthContext = void 0; +const error_1 = require("../../error"); +/** Context used during authentication */ +class AuthContext { + constructor(connection, credentials, options) { + this.connection = connection; + this.credentials = credentials; + this.options = options; + } +} +exports.AuthContext = AuthContext; +class AuthProvider { + /** + * Prepare the handshake document before the initial handshake. + * + * @param handshakeDoc - The document used for the initial handshake on a connection + * @param authContext - Context for authentication flow + */ + prepare(handshakeDoc, authContext, callback) { + callback(undefined, handshakeDoc); + } + /** + * Authenticate + * + * @param context - A shared context for authentication flow + * @param callback - The callback to return the result from the authentication + */ + auth(context, callback) { + // TODO(NODE-3483): Replace this with MongoMethodOverrideError + callback(new error_1.MongoRuntimeError('`auth` method must be overridden by subclass')); + } +} +exports.AuthProvider = AuthProvider; +//# sourceMappingURL=auth_provider.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/cmap/auth/auth_provider.js.map b/node_modules/mongodb/lib/cmap/auth/auth_provider.js.map new file mode 100644 index 000000000..c03ab3749 --- /dev/null +++ b/node_modules/mongodb/lib/cmap/auth/auth_provider.js.map @@ -0,0 +1 @@ +{"version":3,"file":"auth_provider.js","sourceRoot":"","sources":["../../../src/cmap/auth/auth_provider.ts"],"names":[],"mappings":";;;AACA,uCAAgD;AAQhD,yCAAyC;AACzC,MAAa,WAAW;IAatB,YACE,UAAsB,EACtB,WAAyC,EACzC,OAA2B;QAE3B,IAAI,CAAC,UAAU,GAAG,UAAU,CAAC;QAC7B,IAAI,CAAC,WAAW,GAAG,WAAW,CAAC;QAC/B,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;IACzB,CAAC;CACF;AAtBD,kCAsBC;AAED,MAAa,YAAY;IACvB;;;;;OAKG;IACH,OAAO,CACL,YAA+B,EAC/B,WAAwB,EACxB,QAAqC;QAErC,QAAQ,CAAC,SAAS,EAAE,YAAY,CAAC,CAAC;IACpC,CAAC;IAED;;;;;OAKG;IACH,IAAI,CAAC,OAAoB,EAAE,QAAkB;QAC3C,8DAA8D;QAC9D,QAAQ,CAAC,IAAI,yBAAiB,CAAC,8CAA8C,CAAC,CAAC,CAAC;IAClF,CAAC;CACF;AAzBD,oCAyBC"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/cmap/auth/gssapi.js b/node_modules/mongodb/lib/cmap/auth/gssapi.js new file mode 100644 index 000000000..0f16b587e --- /dev/null +++ b/node_modules/mongodb/lib/cmap/auth/gssapi.js @@ -0,0 +1,190 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.resolveCname = exports.performGSSAPICanonicalizeHostName = exports.GSSAPI = exports.GSSAPICanonicalizationValue = void 0; +const dns = require("dns"); +const deps_1 = require("../../deps"); +const error_1 = require("../../error"); +const utils_1 = require("../../utils"); +const auth_provider_1 = require("./auth_provider"); +/** @public */ +exports.GSSAPICanonicalizationValue = Object.freeze({ + on: true, + off: false, + none: 'none', + forward: 'forward', + forwardAndReverse: 'forwardAndReverse' +}); +class GSSAPI extends auth_provider_1.AuthProvider { + auth(authContext, callback) { + const { connection, credentials } = authContext; + if (credentials == null) + return callback(new error_1.MongoMissingCredentialsError('Credentials required for GSSAPI authentication')); + const { username } = credentials; + function externalCommand(command, cb) { + return connection.command((0, utils_1.ns)('$external.$cmd'), command, undefined, cb); + } + makeKerberosClient(authContext, (err, client) => { + if (err) + return callback(err); + if (client == null) + return callback(new error_1.MongoMissingDependencyError('GSSAPI client missing')); + client.step('', (err, payload) => { + if (err) + return callback(err); + externalCommand(saslStart(payload), (err, result) => { + if (err) + return callback(err); + if (result == null) + return callback(); + negotiate(client, 10, result.payload, (err, payload) => { + if (err) + return callback(err); + externalCommand(saslContinue(payload, result.conversationId), (err, result) => { + if (err) + return callback(err); + if (result == null) + return callback(); + finalize(client, username, result.payload, (err, payload) => { + if (err) + return callback(err); + externalCommand({ + saslContinue: 1, + conversationId: result.conversationId, + payload + }, (err, result) => { + if (err) + return callback(err); + callback(undefined, result); + }); + }); + }); + }); + }); + }); + }); + } +} +exports.GSSAPI = GSSAPI; +function makeKerberosClient(authContext, callback) { + var _a; + const { hostAddress } = authContext.options; + const { credentials } = authContext; + if (!hostAddress || typeof hostAddress.host !== 'string' || !credentials) { + return callback(new error_1.MongoInvalidArgumentError('Connection must have host and port and credentials defined.')); + } + if ('kModuleError' in deps_1.Kerberos) { + return callback(deps_1.Kerberos['kModuleError']); + } + const { initializeClient } = deps_1.Kerberos; + const { username, password } = credentials; + const mechanismProperties = credentials.mechanismProperties; + const serviceName = (_a = mechanismProperties.SERVICE_NAME) !== null && _a !== void 0 ? _a : 'mongodb'; + performGSSAPICanonicalizeHostName(hostAddress.host, mechanismProperties, (err, host) => { + var _a; + if (err) + return callback(err); + const initOptions = {}; + if (password != null) { + Object.assign(initOptions, { user: username, password: password }); + } + const spnHost = (_a = mechanismProperties.SERVICE_HOST) !== null && _a !== void 0 ? _a : host; + let spn = `${serviceName}${process.platform === 'win32' ? '/' : '@'}${spnHost}`; + if ('SERVICE_REALM' in mechanismProperties) { + spn = `${spn}@${mechanismProperties.SERVICE_REALM}`; + } + initializeClient(spn, initOptions, (err, client) => { + // TODO(NODE-3483) + if (err) + return callback(new error_1.MongoRuntimeError(err)); + callback(undefined, client); + }); + }); +} +function saslStart(payload) { + return { + saslStart: 1, + mechanism: 'GSSAPI', + payload, + autoAuthorize: 1 + }; +} +function saslContinue(payload, conversationId) { + return { + saslContinue: 1, + conversationId, + payload + }; +} +function negotiate(client, retries, payload, callback) { + client.step(payload, (err, response) => { + // Retries exhausted, raise error + if (err && retries === 0) + return callback(err); + // Adjust number of retries and call step again + if (err) + return negotiate(client, retries - 1, payload, callback); + // Return the payload + callback(undefined, response || ''); + }); +} +function finalize(client, user, payload, callback) { + // GSS Client Unwrap + client.unwrap(payload, (err, response) => { + if (err) + return callback(err); + // Wrap the response + client.wrap(response || '', { user }, (err, wrapped) => { + if (err) + return callback(err); + // Return the payload + callback(undefined, wrapped); + }); + }); +} +function performGSSAPICanonicalizeHostName(host, mechanismProperties, callback) { + const mode = mechanismProperties.CANONICALIZE_HOST_NAME; + if (!mode || mode === exports.GSSAPICanonicalizationValue.none) { + return callback(undefined, host); + } + // If forward and reverse or true + if (mode === exports.GSSAPICanonicalizationValue.on || + mode === exports.GSSAPICanonicalizationValue.forwardAndReverse) { + // Perform the lookup of the ip address. + dns.lookup(host, (error, address) => { + // No ip found, return the error. + if (error) + return callback(error); + // Perform a reverse ptr lookup on the ip address. + dns.resolvePtr(address, (err, results) => { + // This can error as ptr records may not exist for all ips. In this case + // fallback to a cname lookup as dns.lookup() does not return the + // cname. + if (err) { + return resolveCname(host, callback); + } + // If the ptr did not error but had no results, return the host. + callback(undefined, results.length > 0 ? results[0] : host); + }); + }); + } + else { + // The case for forward is just to resolve the cname as dns.lookup() + // will not return it. + resolveCname(host, callback); + } +} +exports.performGSSAPICanonicalizeHostName = performGSSAPICanonicalizeHostName; +function resolveCname(host, callback) { + // Attempt to resolve the host name + dns.resolveCname(host, (err, r) => { + if (err) + return callback(undefined, host); + // Get the first resolve host id + if (r.length > 0) { + return callback(undefined, r[0]); + } + callback(undefined, host); + }); +} +exports.resolveCname = resolveCname; +//# sourceMappingURL=gssapi.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/cmap/auth/gssapi.js.map b/node_modules/mongodb/lib/cmap/auth/gssapi.js.map new file mode 100644 index 000000000..341c2e07a --- /dev/null +++ b/node_modules/mongodb/lib/cmap/auth/gssapi.js.map @@ -0,0 +1 @@ +{"version":3,"file":"gssapi.js","sourceRoot":"","sources":["../../../src/cmap/auth/gssapi.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/cmap/auth/mongo_credentials.js b/node_modules/mongodb/lib/cmap/auth/mongo_credentials.js new file mode 100644 index 000000000..7fe66e5b5 --- /dev/null +++ b/node_modules/mongodb/lib/cmap/auth/mongo_credentials.js @@ -0,0 +1,134 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.MongoCredentials = void 0; +const error_1 = require("../../error"); +const utils_1 = require("../../utils"); +const gssapi_1 = require("./gssapi"); +const providers_1 = require("./providers"); +// https://github.com/mongodb/specifications/blob/master/source/auth/auth.rst +function getDefaultAuthMechanism(hello) { + if (hello) { + // If hello contains saslSupportedMechs, use scram-sha-256 + // if it is available, else scram-sha-1 + if (Array.isArray(hello.saslSupportedMechs)) { + return hello.saslSupportedMechs.includes(providers_1.AuthMechanism.MONGODB_SCRAM_SHA256) + ? providers_1.AuthMechanism.MONGODB_SCRAM_SHA256 + : providers_1.AuthMechanism.MONGODB_SCRAM_SHA1; + } + // Fallback to legacy selection method. If wire version >= 3, use scram-sha-1 + if (hello.maxWireVersion >= 3) { + return providers_1.AuthMechanism.MONGODB_SCRAM_SHA1; + } + } + // Default for wireprotocol < 3 + return providers_1.AuthMechanism.MONGODB_CR; +} +/** + * A representation of the credentials used by MongoDB + * @public + */ +class MongoCredentials { + constructor(options) { + this.username = options.username; + this.password = options.password; + this.source = options.source; + if (!this.source && options.db) { + this.source = options.db; + } + this.mechanism = options.mechanism || providers_1.AuthMechanism.MONGODB_DEFAULT; + this.mechanismProperties = options.mechanismProperties || {}; + if (this.mechanism.match(/MONGODB-AWS/i)) { + if (!this.username && process.env.AWS_ACCESS_KEY_ID) { + this.username = process.env.AWS_ACCESS_KEY_ID; + } + if (!this.password && process.env.AWS_SECRET_ACCESS_KEY) { + this.password = process.env.AWS_SECRET_ACCESS_KEY; + } + if (this.mechanismProperties.AWS_SESSION_TOKEN == null && + process.env.AWS_SESSION_TOKEN != null) { + this.mechanismProperties = { + ...this.mechanismProperties, + AWS_SESSION_TOKEN: process.env.AWS_SESSION_TOKEN + }; + } + } + if ('gssapiCanonicalizeHostName' in this.mechanismProperties) { + (0, utils_1.emitWarningOnce)('gssapiCanonicalizeHostName is deprecated. Please use CANONICALIZE_HOST_NAME instead.'); + this.mechanismProperties.CANONICALIZE_HOST_NAME = + this.mechanismProperties.gssapiCanonicalizeHostName; + } + Object.freeze(this.mechanismProperties); + Object.freeze(this); + } + /** Determines if two MongoCredentials objects are equivalent */ + equals(other) { + return (this.mechanism === other.mechanism && + this.username === other.username && + this.password === other.password && + this.source === other.source); + } + /** + * If the authentication mechanism is set to "default", resolves the authMechanism + * based on the server version and server supported sasl mechanisms. + * + * @param hello - A hello response from the server + */ + resolveAuthMechanism(hello) { + // If the mechanism is not "default", then it does not need to be resolved + if (this.mechanism.match(/DEFAULT/i)) { + return new MongoCredentials({ + username: this.username, + password: this.password, + source: this.source, + mechanism: getDefaultAuthMechanism(hello), + mechanismProperties: this.mechanismProperties + }); + } + return this; + } + validate() { + var _a; + if ((this.mechanism === providers_1.AuthMechanism.MONGODB_GSSAPI || + this.mechanism === providers_1.AuthMechanism.MONGODB_CR || + this.mechanism === providers_1.AuthMechanism.MONGODB_PLAIN || + this.mechanism === providers_1.AuthMechanism.MONGODB_SCRAM_SHA1 || + this.mechanism === providers_1.AuthMechanism.MONGODB_SCRAM_SHA256) && + !this.username) { + throw new error_1.MongoMissingCredentialsError(`Username required for mechanism '${this.mechanism}'`); + } + if (providers_1.AUTH_MECHS_AUTH_SRC_EXTERNAL.has(this.mechanism)) { + if (this.source != null && this.source !== '$external') { + // TODO(NODE-3485): Replace this with a MongoAuthValidationError + throw new error_1.MongoAPIError(`Invalid source '${this.source}' for mechanism '${this.mechanism}' specified.`); + } + } + if (this.mechanism === providers_1.AuthMechanism.MONGODB_PLAIN && this.source == null) { + // TODO(NODE-3485): Replace this with a MongoAuthValidationError + throw new error_1.MongoAPIError('PLAIN Authentication Mechanism needs an auth source'); + } + if (this.mechanism === providers_1.AuthMechanism.MONGODB_X509 && this.password != null) { + if (this.password === '') { + Reflect.set(this, 'password', undefined); + return; + } + // TODO(NODE-3485): Replace this with a MongoAuthValidationError + throw new error_1.MongoAPIError(`Password not allowed for mechanism MONGODB-X509`); + } + const canonicalization = (_a = this.mechanismProperties.CANONICALIZE_HOST_NAME) !== null && _a !== void 0 ? _a : false; + if (!Object.values(gssapi_1.GSSAPICanonicalizationValue).includes(canonicalization)) { + throw new error_1.MongoAPIError(`Invalid CANONICALIZE_HOST_NAME value: ${canonicalization}`); + } + } + static merge(creds, options) { + var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l; + return new MongoCredentials({ + username: (_b = (_a = options.username) !== null && _a !== void 0 ? _a : creds === null || creds === void 0 ? void 0 : creds.username) !== null && _b !== void 0 ? _b : '', + password: (_d = (_c = options.password) !== null && _c !== void 0 ? _c : creds === null || creds === void 0 ? void 0 : creds.password) !== null && _d !== void 0 ? _d : '', + mechanism: (_f = (_e = options.mechanism) !== null && _e !== void 0 ? _e : creds === null || creds === void 0 ? void 0 : creds.mechanism) !== null && _f !== void 0 ? _f : providers_1.AuthMechanism.MONGODB_DEFAULT, + mechanismProperties: (_h = (_g = options.mechanismProperties) !== null && _g !== void 0 ? _g : creds === null || creds === void 0 ? void 0 : creds.mechanismProperties) !== null && _h !== void 0 ? _h : {}, + source: (_l = (_k = (_j = options.source) !== null && _j !== void 0 ? _j : options.db) !== null && _k !== void 0 ? _k : creds === null || creds === void 0 ? void 0 : creds.source) !== null && _l !== void 0 ? _l : 'admin' + }); + } +} +exports.MongoCredentials = MongoCredentials; +//# sourceMappingURL=mongo_credentials.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/cmap/auth/mongo_credentials.js.map b/node_modules/mongodb/lib/cmap/auth/mongo_credentials.js.map new file mode 100644 index 000000000..3f88b0fe6 --- /dev/null +++ b/node_modules/mongodb/lib/cmap/auth/mongo_credentials.js.map @@ -0,0 +1 @@ +{"version":3,"file":"mongo_credentials.js","sourceRoot":"","sources":["../../../src/cmap/auth/mongo_credentials.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/cmap/auth/mongocr.js b/node_modules/mongodb/lib/cmap/auth/mongocr.js new file mode 100644 index 000000000..f8afea2dd --- /dev/null +++ b/node_modules/mongodb/lib/cmap/auth/mongocr.js @@ -0,0 +1,44 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.MongoCR = void 0; +const crypto = require("crypto"); +const error_1 = require("../../error"); +const utils_1 = require("../../utils"); +const auth_provider_1 = require("./auth_provider"); +class MongoCR extends auth_provider_1.AuthProvider { + auth(authContext, callback) { + const { connection, credentials } = authContext; + if (!credentials) { + return callback(new error_1.MongoMissingCredentialsError('AuthContext must provide credentials.')); + } + const username = credentials.username; + const password = credentials.password; + const source = credentials.source; + connection.command((0, utils_1.ns)(`${source}.$cmd`), { getnonce: 1 }, undefined, (err, r) => { + let nonce = null; + let key = null; + // Get nonce + if (err == null) { + nonce = r.nonce; + // Use node md5 generator + let md5 = crypto.createHash('md5'); + // Generate keys used for authentication + md5.update(`${username}:mongo:${password}`, 'utf8'); + const hash_password = md5.digest('hex'); + // Final key + md5 = crypto.createHash('md5'); + md5.update(nonce + username + hash_password, 'utf8'); + key = md5.digest('hex'); + } + const authenticateCommand = { + authenticate: 1, + user: username, + nonce, + key + }; + connection.command((0, utils_1.ns)(`${source}.$cmd`), authenticateCommand, undefined, callback); + }); + } +} +exports.MongoCR = MongoCR; +//# sourceMappingURL=mongocr.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/cmap/auth/mongocr.js.map b/node_modules/mongodb/lib/cmap/auth/mongocr.js.map new file mode 100644 index 000000000..62e4f9796 --- /dev/null +++ b/node_modules/mongodb/lib/cmap/auth/mongocr.js.map @@ -0,0 +1 @@ +{"version":3,"file":"mongocr.js","sourceRoot":"","sources":["../../../src/cmap/auth/mongocr.ts"],"names":[],"mappings":";;;AAAA,iCAAiC;AAEjC,uCAA2D;AAC3D,uCAA2C;AAC3C,mDAA4D;AAE5D,MAAa,OAAQ,SAAQ,4BAAY;IAC9B,IAAI,CAAC,WAAwB,EAAE,QAAkB;QACxD,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,WAAW,CAAC;QAChD,IAAI,CAAC,WAAW,EAAE;YAChB,OAAO,QAAQ,CAAC,IAAI,oCAA4B,CAAC,uCAAuC,CAAC,CAAC,CAAC;SAC5F;QACD,MAAM,QAAQ,GAAG,WAAW,CAAC,QAAQ,CAAC;QACtC,MAAM,QAAQ,GAAG,WAAW,CAAC,QAAQ,CAAC;QACtC,MAAM,MAAM,GAAG,WAAW,CAAC,MAAM,CAAC;QAClC,UAAU,CAAC,OAAO,CAAC,IAAA,UAAE,EAAC,GAAG,MAAM,OAAO,CAAC,EAAE,EAAE,QAAQ,EAAE,CAAC,EAAE,EAAE,SAAS,EAAE,CAAC,GAAG,EAAE,CAAC,EAAE,EAAE;YAC9E,IAAI,KAAK,GAAG,IAAI,CAAC;YACjB,IAAI,GAAG,GAAG,IAAI,CAAC;YAEf,YAAY;YACZ,IAAI,GAAG,IAAI,IAAI,EAAE;gBACf,KAAK,GAAG,CAAC,CAAC,KAAK,CAAC;gBAEhB,yBAAyB;gBACzB,IAAI,GAAG,GAAG,MAAM,CAAC,UAAU,CAAC,KAAK,CAAC,CAAC;gBAEnC,wCAAwC;gBACxC,GAAG,CAAC,MAAM,CAAC,GAAG,QAAQ,UAAU,QAAQ,EAAE,EAAE,MAAM,CAAC,CAAC;gBACpD,MAAM,aAAa,GAAG,GAAG,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;gBAExC,YAAY;gBACZ,GAAG,GAAG,MAAM,CAAC,UAAU,CAAC,KAAK,CAAC,CAAC;gBAC/B,GAAG,CAAC,MAAM,CAAC,KAAK,GAAG,QAAQ,GAAG,aAAa,EAAE,MAAM,CAAC,CAAC;gBACrD,GAAG,GAAG,GAAG,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;aACzB;YAED,MAAM,mBAAmB,GAAG;gBAC1B,YAAY,EAAE,CAAC;gBACf,IAAI,EAAE,QAAQ;gBACd,KAAK;gBACL,GAAG;aACJ,CAAC;YAEF,UAAU,CAAC,OAAO,CAAC,IAAA,UAAE,EAAC,GAAG,MAAM,OAAO,CAAC,EAAE,mBAAmB,EAAE,SAAS,EAAE,QAAQ,CAAC,CAAC;QACrF,CAAC,CAAC,CAAC;IACL,CAAC;CACF;AAxCD,0BAwCC"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/cmap/auth/mongodb_aws.js b/node_modules/mongodb/lib/cmap/auth/mongodb_aws.js new file mode 100644 index 000000000..ba0679fd1 --- /dev/null +++ b/node_modules/mongodb/lib/cmap/auth/mongodb_aws.js @@ -0,0 +1,204 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.MongoDBAWS = void 0; +const crypto = require("crypto"); +const http = require("http"); +const url = require("url"); +const BSON = require("../../bson"); +const deps_1 = require("../../deps"); +const error_1 = require("../../error"); +const utils_1 = require("../../utils"); +const auth_provider_1 = require("./auth_provider"); +const mongo_credentials_1 = require("./mongo_credentials"); +const providers_1 = require("./providers"); +const ASCII_N = 110; +const AWS_RELATIVE_URI = 'http://169.254.170.2'; +const AWS_EC2_URI = 'http://169.254.169.254'; +const AWS_EC2_PATH = '/latest/meta-data/iam/security-credentials'; +const bsonOptions = { + promoteLongs: true, + promoteValues: true, + promoteBuffers: false, + bsonRegExp: false +}; +class MongoDBAWS extends auth_provider_1.AuthProvider { + auth(authContext, callback) { + const { connection, credentials } = authContext; + if (!credentials) { + return callback(new error_1.MongoMissingCredentialsError('AuthContext must provide credentials.')); + } + if ('kModuleError' in deps_1.aws4) { + return callback(deps_1.aws4['kModuleError']); + } + const { sign } = deps_1.aws4; + if ((0, utils_1.maxWireVersion)(connection) < 9) { + callback(new error_1.MongoCompatibilityError('MONGODB-AWS authentication requires MongoDB version 4.4 or later')); + return; + } + if (!credentials.username) { + makeTempCredentials(credentials, (err, tempCredentials) => { + if (err || !tempCredentials) + return callback(err); + authContext.credentials = tempCredentials; + this.auth(authContext, callback); + }); + return; + } + const accessKeyId = credentials.username; + const secretAccessKey = credentials.password; + const sessionToken = credentials.mechanismProperties.AWS_SESSION_TOKEN; + // If all three defined, include sessionToken, else include username and pass, else no credentials + const awsCredentials = accessKeyId && secretAccessKey && sessionToken + ? { accessKeyId, secretAccessKey, sessionToken } + : accessKeyId && secretAccessKey + ? { accessKeyId, secretAccessKey } + : undefined; + const db = credentials.source; + crypto.randomBytes(32, (err, nonce) => { + if (err) { + callback(err); + return; + } + const saslStart = { + saslStart: 1, + mechanism: 'MONGODB-AWS', + payload: BSON.serialize({ r: nonce, p: ASCII_N }, bsonOptions) + }; + connection.command((0, utils_1.ns)(`${db}.$cmd`), saslStart, undefined, (err, res) => { + if (err) + return callback(err); + const serverResponse = BSON.deserialize(res.payload.buffer, bsonOptions); + const host = serverResponse.h; + const serverNonce = serverResponse.s.buffer; + if (serverNonce.length !== 64) { + callback( + // TODO(NODE-3483) + new error_1.MongoRuntimeError(`Invalid server nonce length ${serverNonce.length}, expected 64`)); + return; + } + if (serverNonce.compare(nonce, 0, nonce.length, 0, nonce.length) !== 0) { + // TODO(NODE-3483) + callback(new error_1.MongoRuntimeError('Server nonce does not begin with client nonce')); + return; + } + if (host.length < 1 || host.length > 255 || host.indexOf('..') !== -1) { + // TODO(NODE-3483) + callback(new error_1.MongoRuntimeError(`Server returned an invalid host: "${host}"`)); + return; + } + const body = 'Action=GetCallerIdentity&Version=2011-06-15'; + const options = sign({ + method: 'POST', + host, + region: deriveRegion(serverResponse.h), + service: 'sts', + headers: { + 'Content-Type': 'application/x-www-form-urlencoded', + 'Content-Length': body.length, + 'X-MongoDB-Server-Nonce': serverNonce.toString('base64'), + 'X-MongoDB-GS2-CB-Flag': 'n' + }, + path: '/', + body + }, awsCredentials); + const payload = { + a: options.headers.Authorization, + d: options.headers['X-Amz-Date'] + }; + if (sessionToken) { + payload.t = sessionToken; + } + const saslContinue = { + saslContinue: 1, + conversationId: 1, + payload: BSON.serialize(payload, bsonOptions) + }; + connection.command((0, utils_1.ns)(`${db}.$cmd`), saslContinue, undefined, callback); + }); + }); + } +} +exports.MongoDBAWS = MongoDBAWS; +function makeTempCredentials(credentials, callback) { + function done(creds) { + if (!creds.AccessKeyId || !creds.SecretAccessKey || !creds.Token) { + callback(new error_1.MongoMissingCredentialsError('Could not obtain temporary MONGODB-AWS credentials')); + return; + } + callback(undefined, new mongo_credentials_1.MongoCredentials({ + username: creds.AccessKeyId, + password: creds.SecretAccessKey, + source: credentials.source, + mechanism: providers_1.AuthMechanism.MONGODB_AWS, + mechanismProperties: { + AWS_SESSION_TOKEN: creds.Token + } + })); + } + // If the environment variable AWS_CONTAINER_CREDENTIALS_RELATIVE_URI + // is set then drivers MUST assume that it was set by an AWS ECS agent + if (process.env.AWS_CONTAINER_CREDENTIALS_RELATIVE_URI) { + request(`${AWS_RELATIVE_URI}${process.env.AWS_CONTAINER_CREDENTIALS_RELATIVE_URI}`, undefined, (err, res) => { + if (err) + return callback(err); + done(res); + }); + return; + } + // Otherwise assume we are on an EC2 instance + // get a token + request(`${AWS_EC2_URI}/latest/api/token`, { method: 'PUT', json: false, headers: { 'X-aws-ec2-metadata-token-ttl-seconds': 30 } }, (err, token) => { + if (err) + return callback(err); + // get role name + request(`${AWS_EC2_URI}/${AWS_EC2_PATH}`, { json: false, headers: { 'X-aws-ec2-metadata-token': token } }, (err, roleName) => { + if (err) + return callback(err); + // get temp credentials + request(`${AWS_EC2_URI}/${AWS_EC2_PATH}/${roleName}`, { headers: { 'X-aws-ec2-metadata-token': token } }, (err, creds) => { + if (err) + return callback(err); + done(creds); + }); + }); + }); +} +function deriveRegion(host) { + const parts = host.split('.'); + if (parts.length === 1 || parts[1] === 'amazonaws') { + return 'us-east-1'; + } + return parts[1]; +} +function request(uri, _options, callback) { + const options = Object.assign({ + method: 'GET', + timeout: 10000, + json: true + }, url.parse(uri), _options); + const req = http.request(options, res => { + res.setEncoding('utf8'); + let data = ''; + res.on('data', d => (data += d)); + res.on('end', () => { + if (options.json === false) { + callback(undefined, data); + return; + } + try { + const parsed = JSON.parse(data); + callback(undefined, parsed); + } + catch (err) { + // TODO(NODE-3483) + callback(new error_1.MongoRuntimeError(`Invalid JSON response: "${data}"`)); + } + }); + }); + req.on('timeout', () => { + req.destroy(new error_1.MongoAWSError(`AWS request to ${uri} timed out after ${options.timeout} ms`)); + }); + req.on('error', err => callback(err)); + req.end(); +} +//# sourceMappingURL=mongodb_aws.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/cmap/auth/mongodb_aws.js.map b/node_modules/mongodb/lib/cmap/auth/mongodb_aws.js.map new file mode 100644 index 000000000..f88f08b05 --- /dev/null +++ b/node_modules/mongodb/lib/cmap/auth/mongodb_aws.js.map @@ -0,0 +1 @@ +{"version":3,"file":"mongodb_aws.js","sourceRoot":"","sources":["../../../src/cmap/auth/mongodb_aws.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/cmap/auth/plain.js b/node_modules/mongodb/lib/cmap/auth/plain.js new file mode 100644 index 000000000..e7153a58c --- /dev/null +++ b/node_modules/mongodb/lib/cmap/auth/plain.js @@ -0,0 +1,27 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.Plain = void 0; +const bson_1 = require("../../bson"); +const error_1 = require("../../error"); +const utils_1 = require("../../utils"); +const auth_provider_1 = require("./auth_provider"); +class Plain extends auth_provider_1.AuthProvider { + auth(authContext, callback) { + const { connection, credentials } = authContext; + if (!credentials) { + return callback(new error_1.MongoMissingCredentialsError('AuthContext must provide credentials.')); + } + const username = credentials.username; + const password = credentials.password; + const payload = new bson_1.Binary(Buffer.from(`\x00${username}\x00${password}`)); + const command = { + saslStart: 1, + mechanism: 'PLAIN', + payload: payload, + autoAuthorize: 1 + }; + connection.command((0, utils_1.ns)('$external.$cmd'), command, undefined, callback); + } +} +exports.Plain = Plain; +//# sourceMappingURL=plain.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/cmap/auth/plain.js.map b/node_modules/mongodb/lib/cmap/auth/plain.js.map new file mode 100644 index 000000000..a03580a35 --- /dev/null +++ b/node_modules/mongodb/lib/cmap/auth/plain.js.map @@ -0,0 +1 @@ +{"version":3,"file":"plain.js","sourceRoot":"","sources":["../../../src/cmap/auth/plain.ts"],"names":[],"mappings":";;;AAAA,qCAAoC;AACpC,uCAA2D;AAC3D,uCAA2C;AAC3C,mDAA4D;AAE5D,MAAa,KAAM,SAAQ,4BAAY;IAC5B,IAAI,CAAC,WAAwB,EAAE,QAAkB;QACxD,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,WAAW,CAAC;QAChD,IAAI,CAAC,WAAW,EAAE;YAChB,OAAO,QAAQ,CAAC,IAAI,oCAA4B,CAAC,uCAAuC,CAAC,CAAC,CAAC;SAC5F;QACD,MAAM,QAAQ,GAAG,WAAW,CAAC,QAAQ,CAAC;QACtC,MAAM,QAAQ,GAAG,WAAW,CAAC,QAAQ,CAAC;QAEtC,MAAM,OAAO,GAAG,IAAI,aAAM,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,QAAQ,OAAO,QAAQ,EAAE,CAAC,CAAC,CAAC;QAC1E,MAAM,OAAO,GAAG;YACd,SAAS,EAAE,CAAC;YACZ,SAAS,EAAE,OAAO;YAClB,OAAO,EAAE,OAAO;YAChB,aAAa,EAAE,CAAC;SACjB,CAAC;QAEF,UAAU,CAAC,OAAO,CAAC,IAAA,UAAE,EAAC,gBAAgB,CAAC,EAAE,OAAO,EAAE,SAAS,EAAE,QAAQ,CAAC,CAAC;IACzE,CAAC;CACF;AAnBD,sBAmBC"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/cmap/auth/providers.js b/node_modules/mongodb/lib/cmap/auth/providers.js new file mode 100644 index 000000000..d287765f0 --- /dev/null +++ b/node_modules/mongodb/lib/cmap/auth/providers.js @@ -0,0 +1,21 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.AUTH_MECHS_AUTH_SRC_EXTERNAL = exports.AuthMechanism = void 0; +/** @public */ +exports.AuthMechanism = Object.freeze({ + MONGODB_AWS: 'MONGODB-AWS', + MONGODB_CR: 'MONGODB-CR', + MONGODB_DEFAULT: 'DEFAULT', + MONGODB_GSSAPI: 'GSSAPI', + MONGODB_PLAIN: 'PLAIN', + MONGODB_SCRAM_SHA1: 'SCRAM-SHA-1', + MONGODB_SCRAM_SHA256: 'SCRAM-SHA-256', + MONGODB_X509: 'MONGODB-X509' +}); +/** @internal */ +exports.AUTH_MECHS_AUTH_SRC_EXTERNAL = new Set([ + exports.AuthMechanism.MONGODB_GSSAPI, + exports.AuthMechanism.MONGODB_AWS, + exports.AuthMechanism.MONGODB_X509 +]); +//# sourceMappingURL=providers.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/cmap/auth/providers.js.map b/node_modules/mongodb/lib/cmap/auth/providers.js.map new file mode 100644 index 000000000..48b58e79e --- /dev/null +++ b/node_modules/mongodb/lib/cmap/auth/providers.js.map @@ -0,0 +1 @@ +{"version":3,"file":"providers.js","sourceRoot":"","sources":["../../../src/cmap/auth/providers.ts"],"names":[],"mappings":";;;AAAA,cAAc;AACD,QAAA,aAAa,GAAG,MAAM,CAAC,MAAM,CAAC;IACzC,WAAW,EAAE,aAAa;IAC1B,UAAU,EAAE,YAAY;IACxB,eAAe,EAAE,SAAS;IAC1B,cAAc,EAAE,QAAQ;IACxB,aAAa,EAAE,OAAO;IACtB,kBAAkB,EAAE,aAAa;IACjC,oBAAoB,EAAE,eAAe;IACrC,YAAY,EAAE,cAAc;CACpB,CAAC,CAAC;AAKZ,gBAAgB;AACH,QAAA,4BAA4B,GAAG,IAAI,GAAG,CAAgB;IACjE,qBAAa,CAAC,cAAc;IAC5B,qBAAa,CAAC,WAAW;IACzB,qBAAa,CAAC,YAAY;CAC3B,CAAC,CAAC"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/cmap/auth/scram.js b/node_modules/mongodb/lib/cmap/auth/scram.js new file mode 100644 index 000000000..00a77ac00 --- /dev/null +++ b/node_modules/mongodb/lib/cmap/auth/scram.js @@ -0,0 +1,288 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.ScramSHA256 = exports.ScramSHA1 = void 0; +const crypto = require("crypto"); +const bson_1 = require("../../bson"); +const deps_1 = require("../../deps"); +const error_1 = require("../../error"); +const utils_1 = require("../../utils"); +const auth_provider_1 = require("./auth_provider"); +const providers_1 = require("./providers"); +class ScramSHA extends auth_provider_1.AuthProvider { + constructor(cryptoMethod) { + super(); + this.cryptoMethod = cryptoMethod || 'sha1'; + } + prepare(handshakeDoc, authContext, callback) { + const cryptoMethod = this.cryptoMethod; + const credentials = authContext.credentials; + if (!credentials) { + return callback(new error_1.MongoMissingCredentialsError('AuthContext must provide credentials.')); + } + if (cryptoMethod === 'sha256' && deps_1.saslprep == null) { + (0, utils_1.emitWarning)('Warning: no saslprep library specified. Passwords will not be sanitized'); + } + crypto.randomBytes(24, (err, nonce) => { + if (err) { + return callback(err); + } + // store the nonce for later use + Object.assign(authContext, { nonce }); + const request = Object.assign({}, handshakeDoc, { + speculativeAuthenticate: Object.assign(makeFirstMessage(cryptoMethod, credentials, nonce), { + db: credentials.source + }) + }); + callback(undefined, request); + }); + } + auth(authContext, callback) { + const response = authContext.response; + if (response && response.speculativeAuthenticate) { + continueScramConversation(this.cryptoMethod, response.speculativeAuthenticate, authContext, callback); + return; + } + executeScram(this.cryptoMethod, authContext, callback); + } +} +function cleanUsername(username) { + return username.replace('=', '=3D').replace(',', '=2C'); +} +function clientFirstMessageBare(username, nonce) { + // NOTE: This is done b/c Javascript uses UTF-16, but the server is hashing in UTF-8. + // Since the username is not sasl-prep-d, we need to do this here. + return Buffer.concat([ + Buffer.from('n=', 'utf8'), + Buffer.from(username, 'utf8'), + Buffer.from(',r=', 'utf8'), + Buffer.from(nonce.toString('base64'), 'utf8') + ]); +} +function makeFirstMessage(cryptoMethod, credentials, nonce) { + const username = cleanUsername(credentials.username); + const mechanism = cryptoMethod === 'sha1' ? providers_1.AuthMechanism.MONGODB_SCRAM_SHA1 : providers_1.AuthMechanism.MONGODB_SCRAM_SHA256; + // NOTE: This is done b/c Javascript uses UTF-16, but the server is hashing in UTF-8. + // Since the username is not sasl-prep-d, we need to do this here. + return { + saslStart: 1, + mechanism, + payload: new bson_1.Binary(Buffer.concat([Buffer.from('n,,', 'utf8'), clientFirstMessageBare(username, nonce)])), + autoAuthorize: 1, + options: { skipEmptyExchange: true } + }; +} +function executeScram(cryptoMethod, authContext, callback) { + const { connection, credentials } = authContext; + if (!credentials) { + return callback(new error_1.MongoMissingCredentialsError('AuthContext must provide credentials.')); + } + if (!authContext.nonce) { + return callback(new error_1.MongoInvalidArgumentError('AuthContext must contain a valid nonce property')); + } + const nonce = authContext.nonce; + const db = credentials.source; + const saslStartCmd = makeFirstMessage(cryptoMethod, credentials, nonce); + connection.command((0, utils_1.ns)(`${db}.$cmd`), saslStartCmd, undefined, (_err, result) => { + const err = resolveError(_err, result); + if (err) { + return callback(err); + } + continueScramConversation(cryptoMethod, result, authContext, callback); + }); +} +function continueScramConversation(cryptoMethod, response, authContext, callback) { + const connection = authContext.connection; + const credentials = authContext.credentials; + if (!credentials) { + return callback(new error_1.MongoMissingCredentialsError('AuthContext must provide credentials.')); + } + if (!authContext.nonce) { + return callback(new error_1.MongoInvalidArgumentError('Unable to continue SCRAM without valid nonce')); + } + const nonce = authContext.nonce; + const db = credentials.source; + const username = cleanUsername(credentials.username); + const password = credentials.password; + let processedPassword; + if (cryptoMethod === 'sha256') { + processedPassword = 'kModuleError' in deps_1.saslprep ? password : (0, deps_1.saslprep)(password); + } + else { + try { + processedPassword = passwordDigest(username, password); + } + catch (e) { + return callback(e); + } + } + const payload = Buffer.isBuffer(response.payload) + ? new bson_1.Binary(response.payload) + : response.payload; + const dict = parsePayload(payload.value()); + const iterations = parseInt(dict.i, 10); + if (iterations && iterations < 4096) { + callback( + // TODO(NODE-3483) + new error_1.MongoRuntimeError(`Server returned an invalid iteration count ${iterations}`), false); + return; + } + const salt = dict.s; + const rnonce = dict.r; + if (rnonce.startsWith('nonce')) { + // TODO(NODE-3483) + callback(new error_1.MongoRuntimeError(`Server returned an invalid nonce: ${rnonce}`), false); + return; + } + // Set up start of proof + const withoutProof = `c=biws,r=${rnonce}`; + const saltedPassword = HI(processedPassword, Buffer.from(salt, 'base64'), iterations, cryptoMethod); + const clientKey = HMAC(cryptoMethod, saltedPassword, 'Client Key'); + const serverKey = HMAC(cryptoMethod, saltedPassword, 'Server Key'); + const storedKey = H(cryptoMethod, clientKey); + const authMessage = [clientFirstMessageBare(username, nonce), payload.value(), withoutProof].join(','); + const clientSignature = HMAC(cryptoMethod, storedKey, authMessage); + const clientProof = `p=${xor(clientKey, clientSignature)}`; + const clientFinal = [withoutProof, clientProof].join(','); + const serverSignature = HMAC(cryptoMethod, serverKey, authMessage); + const saslContinueCmd = { + saslContinue: 1, + conversationId: response.conversationId, + payload: new bson_1.Binary(Buffer.from(clientFinal)) + }; + connection.command((0, utils_1.ns)(`${db}.$cmd`), saslContinueCmd, undefined, (_err, r) => { + const err = resolveError(_err, r); + if (err) { + return callback(err); + } + const parsedResponse = parsePayload(r.payload.value()); + if (!compareDigest(Buffer.from(parsedResponse.v, 'base64'), serverSignature)) { + callback(new error_1.MongoRuntimeError('Server returned an invalid signature')); + return; + } + if (!r || r.done !== false) { + return callback(err, r); + } + const retrySaslContinueCmd = { + saslContinue: 1, + conversationId: r.conversationId, + payload: Buffer.alloc(0) + }; + connection.command((0, utils_1.ns)(`${db}.$cmd`), retrySaslContinueCmd, undefined, callback); + }); +} +function parsePayload(payload) { + const dict = {}; + const parts = payload.split(','); + for (let i = 0; i < parts.length; i++) { + const valueParts = parts[i].split('='); + dict[valueParts[0]] = valueParts[1]; + } + return dict; +} +function passwordDigest(username, password) { + if (typeof username !== 'string') { + throw new error_1.MongoInvalidArgumentError('Username must be a string'); + } + if (typeof password !== 'string') { + throw new error_1.MongoInvalidArgumentError('Password must be a string'); + } + if (password.length === 0) { + throw new error_1.MongoInvalidArgumentError('Password cannot be empty'); + } + let md5; + try { + md5 = crypto.createHash('md5'); + } + catch (err) { + if (crypto.getFips()) { + // This error is (slightly) more helpful than what comes from OpenSSL directly, e.g. + // 'Error: error:060800C8:digital envelope routines:EVP_DigestInit_ex:disabled for FIPS' + throw new Error('Auth mechanism SCRAM-SHA-1 is not supported in FIPS mode'); + } + throw err; + } + md5.update(`${username}:mongo:${password}`, 'utf8'); + return md5.digest('hex'); +} +// XOR two buffers +function xor(a, b) { + if (!Buffer.isBuffer(a)) { + a = Buffer.from(a); + } + if (!Buffer.isBuffer(b)) { + b = Buffer.from(b); + } + const length = Math.max(a.length, b.length); + const res = []; + for (let i = 0; i < length; i += 1) { + res.push(a[i] ^ b[i]); + } + return Buffer.from(res).toString('base64'); +} +function H(method, text) { + return crypto.createHash(method).update(text).digest(); +} +function HMAC(method, key, text) { + return crypto.createHmac(method, key).update(text).digest(); +} +let _hiCache = {}; +let _hiCacheCount = 0; +function _hiCachePurge() { + _hiCache = {}; + _hiCacheCount = 0; +} +const hiLengthMap = { + sha256: 32, + sha1: 20 +}; +function HI(data, salt, iterations, cryptoMethod) { + // omit the work if already generated + const key = [data, salt.toString('base64'), iterations].join('_'); + if (_hiCache[key] != null) { + return _hiCache[key]; + } + // generate the salt + const saltedData = crypto.pbkdf2Sync(data, salt, iterations, hiLengthMap[cryptoMethod], cryptoMethod); + // cache a copy to speed up the next lookup, but prevent unbounded cache growth + if (_hiCacheCount >= 200) { + _hiCachePurge(); + } + _hiCache[key] = saltedData; + _hiCacheCount += 1; + return saltedData; +} +function compareDigest(lhs, rhs) { + if (lhs.length !== rhs.length) { + return false; + } + if (typeof crypto.timingSafeEqual === 'function') { + return crypto.timingSafeEqual(lhs, rhs); + } + let result = 0; + for (let i = 0; i < lhs.length; i++) { + result |= lhs[i] ^ rhs[i]; + } + return result === 0; +} +function resolveError(err, result) { + if (err) + return err; + if (result) { + if (result.$err || result.errmsg) + return new error_1.MongoServerError(result); + } + return; +} +class ScramSHA1 extends ScramSHA { + constructor() { + super('sha1'); + } +} +exports.ScramSHA1 = ScramSHA1; +class ScramSHA256 extends ScramSHA { + constructor() { + super('sha256'); + } +} +exports.ScramSHA256 = ScramSHA256; +//# sourceMappingURL=scram.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/cmap/auth/scram.js.map b/node_modules/mongodb/lib/cmap/auth/scram.js.map new file mode 100644 index 000000000..c94940db2 --- /dev/null +++ b/node_modules/mongodb/lib/cmap/auth/scram.js.map @@ -0,0 +1 @@ +{"version":3,"file":"scram.js","sourceRoot":"","sources":["../../../src/cmap/auth/scram.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/cmap/auth/x509.js b/node_modules/mongodb/lib/cmap/auth/x509.js new file mode 100644 index 000000000..02fe38539 --- /dev/null +++ b/node_modules/mongodb/lib/cmap/auth/x509.js @@ -0,0 +1,39 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.X509 = void 0; +const error_1 = require("../../error"); +const utils_1 = require("../../utils"); +const auth_provider_1 = require("./auth_provider"); +class X509 extends auth_provider_1.AuthProvider { + prepare(handshakeDoc, authContext, callback) { + const { credentials } = authContext; + if (!credentials) { + return callback(new error_1.MongoMissingCredentialsError('AuthContext must provide credentials.')); + } + Object.assign(handshakeDoc, { + speculativeAuthenticate: x509AuthenticateCommand(credentials) + }); + callback(undefined, handshakeDoc); + } + auth(authContext, callback) { + const connection = authContext.connection; + const credentials = authContext.credentials; + if (!credentials) { + return callback(new error_1.MongoMissingCredentialsError('AuthContext must provide credentials.')); + } + const response = authContext.response; + if (response && response.speculativeAuthenticate) { + return callback(); + } + connection.command((0, utils_1.ns)('$external.$cmd'), x509AuthenticateCommand(credentials), undefined, callback); + } +} +exports.X509 = X509; +function x509AuthenticateCommand(credentials) { + const command = { authenticate: 1, mechanism: 'MONGODB-X509' }; + if (credentials.username) { + command.user = credentials.username; + } + return command; +} +//# sourceMappingURL=x509.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/cmap/auth/x509.js.map b/node_modules/mongodb/lib/cmap/auth/x509.js.map new file mode 100644 index 000000000..84af5792f --- /dev/null +++ b/node_modules/mongodb/lib/cmap/auth/x509.js.map @@ -0,0 +1 @@ +{"version":3,"file":"x509.js","sourceRoot":"","sources":["../../../src/cmap/auth/x509.ts"],"names":[],"mappings":";;;AACA,uCAA2D;AAC3D,uCAA2C;AAE3C,mDAA4D;AAG5D,MAAa,IAAK,SAAQ,4BAAY;IAC3B,OAAO,CACd,YAA+B,EAC/B,WAAwB,EACxB,QAAkB;QAElB,MAAM,EAAE,WAAW,EAAE,GAAG,WAAW,CAAC;QACpC,IAAI,CAAC,WAAW,EAAE;YAChB,OAAO,QAAQ,CAAC,IAAI,oCAA4B,CAAC,uCAAuC,CAAC,CAAC,CAAC;SAC5F;QACD,MAAM,CAAC,MAAM,CAAC,YAAY,EAAE;YAC1B,uBAAuB,EAAE,uBAAuB,CAAC,WAAW,CAAC;SAC9D,CAAC,CAAC;QAEH,QAAQ,CAAC,SAAS,EAAE,YAAY,CAAC,CAAC;IACpC,CAAC;IAEQ,IAAI,CAAC,WAAwB,EAAE,QAAkB;QACxD,MAAM,UAAU,GAAG,WAAW,CAAC,UAAU,CAAC;QAC1C,MAAM,WAAW,GAAG,WAAW,CAAC,WAAW,CAAC;QAC5C,IAAI,CAAC,WAAW,EAAE;YAChB,OAAO,QAAQ,CAAC,IAAI,oCAA4B,CAAC,uCAAuC,CAAC,CAAC,CAAC;SAC5F;QACD,MAAM,QAAQ,GAAG,WAAW,CAAC,QAAQ,CAAC;QAEtC,IAAI,QAAQ,IAAI,QAAQ,CAAC,uBAAuB,EAAE;YAChD,OAAO,QAAQ,EAAE,CAAC;SACnB;QAED,UAAU,CAAC,OAAO,CAChB,IAAA,UAAE,EAAC,gBAAgB,CAAC,EACpB,uBAAuB,CAAC,WAAW,CAAC,EACpC,SAAS,EACT,QAAQ,CACT,CAAC;IACJ,CAAC;CACF;AApCD,oBAoCC;AAED,SAAS,uBAAuB,CAAC,WAA6B;IAC5D,MAAM,OAAO,GAAa,EAAE,YAAY,EAAE,CAAC,EAAE,SAAS,EAAE,cAAc,EAAE,CAAC;IACzE,IAAI,WAAW,CAAC,QAAQ,EAAE;QACxB,OAAO,CAAC,IAAI,GAAG,WAAW,CAAC,QAAQ,CAAC;KACrC;IAED,OAAO,OAAO,CAAC;AACjB,CAAC"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/cmap/command_monitoring_events.js b/node_modules/mongodb/lib/cmap/command_monitoring_events.js new file mode 100644 index 000000000..7bcfe3f5a --- /dev/null +++ b/node_modules/mongodb/lib/cmap/command_monitoring_events.js @@ -0,0 +1,243 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.CommandFailedEvent = exports.CommandSucceededEvent = exports.CommandStartedEvent = void 0; +const constants_1 = require("../constants"); +const utils_1 = require("../utils"); +const commands_1 = require("./commands"); +/** + * An event indicating the start of a given + * @public + * @category Event + */ +class CommandStartedEvent { + /** + * Create a started event + * + * @internal + * @param pool - the pool that originated the command + * @param command - the command + */ + constructor(connection, command) { + const cmd = extractCommand(command); + const commandName = extractCommandName(cmd); + const { address, connectionId, serviceId } = extractConnectionDetails(connection); + // TODO: remove in major revision, this is not spec behavior + if (SENSITIVE_COMMANDS.has(commandName)) { + this.commandObj = {}; + this.commandObj[commandName] = true; + } + this.address = address; + this.connectionId = connectionId; + this.serviceId = serviceId; + this.requestId = command.requestId; + this.databaseName = databaseName(command); + this.commandName = commandName; + this.command = maybeRedact(commandName, cmd, cmd); + } + /* @internal */ + get hasServiceId() { + return !!this.serviceId; + } +} +exports.CommandStartedEvent = CommandStartedEvent; +/** + * An event indicating the success of a given command + * @public + * @category Event + */ +class CommandSucceededEvent { + /** + * Create a succeeded event + * + * @internal + * @param pool - the pool that originated the command + * @param command - the command + * @param reply - the reply for this command from the server + * @param started - a high resolution tuple timestamp of when the command was first sent, to calculate duration + */ + constructor(connection, command, reply, started) { + const cmd = extractCommand(command); + const commandName = extractCommandName(cmd); + const { address, connectionId, serviceId } = extractConnectionDetails(connection); + this.address = address; + this.connectionId = connectionId; + this.serviceId = serviceId; + this.requestId = command.requestId; + this.commandName = commandName; + this.duration = (0, utils_1.calculateDurationInMs)(started); + this.reply = maybeRedact(commandName, cmd, extractReply(command, reply)); + } + /* @internal */ + get hasServiceId() { + return !!this.serviceId; + } +} +exports.CommandSucceededEvent = CommandSucceededEvent; +/** + * An event indicating the failure of a given command + * @public + * @category Event + */ +class CommandFailedEvent { + /** + * Create a failure event + * + * @internal + * @param pool - the pool that originated the command + * @param command - the command + * @param error - the generated error or a server error response + * @param started - a high resolution tuple timestamp of when the command was first sent, to calculate duration + */ + constructor(connection, command, error, started) { + const cmd = extractCommand(command); + const commandName = extractCommandName(cmd); + const { address, connectionId, serviceId } = extractConnectionDetails(connection); + this.address = address; + this.connectionId = connectionId; + this.serviceId = serviceId; + this.requestId = command.requestId; + this.commandName = commandName; + this.duration = (0, utils_1.calculateDurationInMs)(started); + this.failure = maybeRedact(commandName, cmd, error); + } + /* @internal */ + get hasServiceId() { + return !!this.serviceId; + } +} +exports.CommandFailedEvent = CommandFailedEvent; +/** Commands that we want to redact because of the sensitive nature of their contents */ +const SENSITIVE_COMMANDS = new Set([ + 'authenticate', + 'saslStart', + 'saslContinue', + 'getnonce', + 'createUser', + 'updateUser', + 'copydbgetnonce', + 'copydbsaslstart', + 'copydb' +]); +const HELLO_COMMANDS = new Set(['hello', constants_1.LEGACY_HELLO_COMMAND, constants_1.LEGACY_HELLO_COMMAND_CAMEL_CASE]); +// helper methods +const extractCommandName = (commandDoc) => Object.keys(commandDoc)[0]; +const namespace = (command) => command.ns; +const databaseName = (command) => command.ns.split('.')[0]; +const collectionName = (command) => command.ns.split('.')[1]; +const maybeRedact = (commandName, commandDoc, result) => SENSITIVE_COMMANDS.has(commandName) || + (HELLO_COMMANDS.has(commandName) && commandDoc.speculativeAuthenticate) + ? {} + : result; +const LEGACY_FIND_QUERY_MAP = { + $query: 'filter', + $orderby: 'sort', + $hint: 'hint', + $comment: 'comment', + $maxScan: 'maxScan', + $max: 'max', + $min: 'min', + $returnKey: 'returnKey', + $showDiskLoc: 'showRecordId', + $maxTimeMS: 'maxTimeMS', + $snapshot: 'snapshot' +}; +const LEGACY_FIND_OPTIONS_MAP = { + numberToSkip: 'skip', + numberToReturn: 'batchSize', + returnFieldSelector: 'projection' +}; +const OP_QUERY_KEYS = [ + 'tailable', + 'oplogReplay', + 'noCursorTimeout', + 'awaitData', + 'partial', + 'exhaust' +]; +/** Extract the actual command from the query, possibly up-converting if it's a legacy format */ +function extractCommand(command) { + var _a; + if (command instanceof commands_1.Msg) { + return (0, utils_1.deepCopy)(command.command); + } + if ((_a = command.query) === null || _a === void 0 ? void 0 : _a.$query) { + let result; + if (command.ns === 'admin.$cmd') { + // up-convert legacy command + result = Object.assign({}, command.query.$query); + } + else { + // up-convert legacy find command + result = { find: collectionName(command) }; + Object.keys(LEGACY_FIND_QUERY_MAP).forEach(key => { + if (command.query[key] != null) { + result[LEGACY_FIND_QUERY_MAP[key]] = (0, utils_1.deepCopy)(command.query[key]); + } + }); + } + Object.keys(LEGACY_FIND_OPTIONS_MAP).forEach(key => { + const legacyKey = key; + if (command[legacyKey] != null) { + result[LEGACY_FIND_OPTIONS_MAP[legacyKey]] = (0, utils_1.deepCopy)(command[legacyKey]); + } + }); + OP_QUERY_KEYS.forEach(key => { + if (command[key]) { + result[key] = command[key]; + } + }); + if (command.pre32Limit != null) { + result.limit = command.pre32Limit; + } + if (command.query.$explain) { + return { explain: result }; + } + return result; + } + const clonedQuery = {}; + const clonedCommand = {}; + if (command.query) { + for (const k in command.query) { + clonedQuery[k] = (0, utils_1.deepCopy)(command.query[k]); + } + clonedCommand.query = clonedQuery; + } + for (const k in command) { + if (k === 'query') + continue; + clonedCommand[k] = (0, utils_1.deepCopy)(command[k]); + } + return command.query ? clonedQuery : clonedCommand; +} +function extractReply(command, reply) { + if (!reply) { + return reply; + } + if (command instanceof commands_1.Msg) { + return (0, utils_1.deepCopy)(reply.result ? reply.result : reply); + } + // is this a legacy find command? + if (command.query && command.query.$query != null) { + return { + ok: 1, + cursor: { + id: (0, utils_1.deepCopy)(reply.cursorId), + ns: namespace(command), + firstBatch: (0, utils_1.deepCopy)(reply.documents) + } + }; + } + return (0, utils_1.deepCopy)(reply.result ? reply.result : reply); +} +function extractConnectionDetails(connection) { + let connectionId; + if ('id' in connection) { + connectionId = connection.id; + } + return { + address: connection.address, + serviceId: connection.serviceId, + connectionId + }; +} +//# sourceMappingURL=command_monitoring_events.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/cmap/command_monitoring_events.js.map b/node_modules/mongodb/lib/cmap/command_monitoring_events.js.map new file mode 100644 index 000000000..e88e96ff2 --- /dev/null +++ b/node_modules/mongodb/lib/cmap/command_monitoring_events.js.map @@ -0,0 +1 @@ +{"version":3,"file":"command_monitoring_events.js","sourceRoot":"","sources":["../../src/cmap/command_monitoring_events.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/cmap/commands.js b/node_modules/mongodb/lib/cmap/commands.js new file mode 100644 index 000000000..1fce711c6 --- /dev/null +++ b/node_modules/mongodb/lib/cmap/commands.js @@ -0,0 +1,481 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.BinMsg = exports.Msg = exports.Response = exports.Query = void 0; +const BSON = require("../bson"); +const error_1 = require("../error"); +const read_preference_1 = require("../read_preference"); +const utils_1 = require("../utils"); +const constants_1 = require("./wire_protocol/constants"); +// Incrementing request id +let _requestId = 0; +// Query flags +const OPTS_TAILABLE_CURSOR = 2; +const OPTS_SECONDARY = 4; +const OPTS_OPLOG_REPLAY = 8; +const OPTS_NO_CURSOR_TIMEOUT = 16; +const OPTS_AWAIT_DATA = 32; +const OPTS_EXHAUST = 64; +const OPTS_PARTIAL = 128; +// Response flags +const CURSOR_NOT_FOUND = 1; +const QUERY_FAILURE = 2; +const SHARD_CONFIG_STALE = 4; +const AWAIT_CAPABLE = 8; +/************************************************************** + * QUERY + **************************************************************/ +/** @internal */ +class Query { + constructor(ns, query, options) { + // Basic options needed to be passed in + // TODO(NODE-3483): Replace with MongoCommandError + if (ns == null) + throw new error_1.MongoRuntimeError('Namespace must be specified for query'); + // TODO(NODE-3483): Replace with MongoCommandError + if (query == null) + throw new error_1.MongoRuntimeError('A query document must be specified for query'); + // Validate that we are not passing 0x00 in the collection name + if (ns.indexOf('\x00') !== -1) { + // TODO(NODE-3483): Use MongoNamespace static method + throw new error_1.MongoRuntimeError('Namespace cannot contain a null character'); + } + // Basic options + this.ns = ns; + this.query = query; + // Additional options + this.numberToSkip = options.numberToSkip || 0; + this.numberToReturn = options.numberToReturn || 0; + this.returnFieldSelector = options.returnFieldSelector || undefined; + this.requestId = Query.getRequestId(); + // special case for pre-3.2 find commands, delete ASAP + this.pre32Limit = options.pre32Limit; + // Serialization option + this.serializeFunctions = + typeof options.serializeFunctions === 'boolean' ? options.serializeFunctions : false; + this.ignoreUndefined = + typeof options.ignoreUndefined === 'boolean' ? options.ignoreUndefined : false; + this.maxBsonSize = options.maxBsonSize || 1024 * 1024 * 16; + this.checkKeys = typeof options.checkKeys === 'boolean' ? options.checkKeys : false; + this.batchSize = this.numberToReturn; + // Flags + this.tailable = false; + this.secondaryOk = typeof options.secondaryOk === 'boolean' ? options.secondaryOk : false; + this.oplogReplay = false; + this.noCursorTimeout = false; + this.awaitData = false; + this.exhaust = false; + this.partial = false; + } + /** Assign next request Id. */ + incRequestId() { + this.requestId = _requestId++; + } + /** Peek next request Id. */ + nextRequestId() { + return _requestId + 1; + } + /** Increment then return next request Id. */ + static getRequestId() { + return ++_requestId; + } + // Uses a single allocated buffer for the process, avoiding multiple memory allocations + toBin() { + const buffers = []; + let projection = null; + // Set up the flags + let flags = 0; + if (this.tailable) { + flags |= OPTS_TAILABLE_CURSOR; + } + if (this.secondaryOk) { + flags |= OPTS_SECONDARY; + } + if (this.oplogReplay) { + flags |= OPTS_OPLOG_REPLAY; + } + if (this.noCursorTimeout) { + flags |= OPTS_NO_CURSOR_TIMEOUT; + } + if (this.awaitData) { + flags |= OPTS_AWAIT_DATA; + } + if (this.exhaust) { + flags |= OPTS_EXHAUST; + } + if (this.partial) { + flags |= OPTS_PARTIAL; + } + // If batchSize is different to this.numberToReturn + if (this.batchSize !== this.numberToReturn) + this.numberToReturn = this.batchSize; + // Allocate write protocol header buffer + const header = Buffer.alloc(4 * 4 + // Header + 4 + // Flags + Buffer.byteLength(this.ns) + + 1 + // namespace + 4 + // numberToSkip + 4 // numberToReturn + ); + // Add header to buffers + buffers.push(header); + // Serialize the query + const query = BSON.serialize(this.query, { + checkKeys: this.checkKeys, + serializeFunctions: this.serializeFunctions, + ignoreUndefined: this.ignoreUndefined + }); + // Add query document + buffers.push(query); + if (this.returnFieldSelector && Object.keys(this.returnFieldSelector).length > 0) { + // Serialize the projection document + projection = BSON.serialize(this.returnFieldSelector, { + checkKeys: this.checkKeys, + serializeFunctions: this.serializeFunctions, + ignoreUndefined: this.ignoreUndefined + }); + // Add projection document + buffers.push(projection); + } + // Total message size + const totalLength = header.length + query.length + (projection ? projection.length : 0); + // Set up the index + let index = 4; + // Write total document length + header[3] = (totalLength >> 24) & 0xff; + header[2] = (totalLength >> 16) & 0xff; + header[1] = (totalLength >> 8) & 0xff; + header[0] = totalLength & 0xff; + // Write header information requestId + header[index + 3] = (this.requestId >> 24) & 0xff; + header[index + 2] = (this.requestId >> 16) & 0xff; + header[index + 1] = (this.requestId >> 8) & 0xff; + header[index] = this.requestId & 0xff; + index = index + 4; + // Write header information responseTo + header[index + 3] = (0 >> 24) & 0xff; + header[index + 2] = (0 >> 16) & 0xff; + header[index + 1] = (0 >> 8) & 0xff; + header[index] = 0 & 0xff; + index = index + 4; + // Write header information OP_QUERY + header[index + 3] = (constants_1.OP_QUERY >> 24) & 0xff; + header[index + 2] = (constants_1.OP_QUERY >> 16) & 0xff; + header[index + 1] = (constants_1.OP_QUERY >> 8) & 0xff; + header[index] = constants_1.OP_QUERY & 0xff; + index = index + 4; + // Write header information flags + header[index + 3] = (flags >> 24) & 0xff; + header[index + 2] = (flags >> 16) & 0xff; + header[index + 1] = (flags >> 8) & 0xff; + header[index] = flags & 0xff; + index = index + 4; + // Write collection name + index = index + header.write(this.ns, index, 'utf8') + 1; + header[index - 1] = 0; + // Write header information flags numberToSkip + header[index + 3] = (this.numberToSkip >> 24) & 0xff; + header[index + 2] = (this.numberToSkip >> 16) & 0xff; + header[index + 1] = (this.numberToSkip >> 8) & 0xff; + header[index] = this.numberToSkip & 0xff; + index = index + 4; + // Write header information flags numberToReturn + header[index + 3] = (this.numberToReturn >> 24) & 0xff; + header[index + 2] = (this.numberToReturn >> 16) & 0xff; + header[index + 1] = (this.numberToReturn >> 8) & 0xff; + header[index] = this.numberToReturn & 0xff; + index = index + 4; + // Return the buffers + return buffers; + } +} +exports.Query = Query; +/** @internal */ +class Response { + constructor(message, msgHeader, msgBody, opts) { + this.documents = new Array(0); + this.parsed = false; + this.raw = message; + this.data = msgBody; + this.opts = opts !== null && opts !== void 0 ? opts : { + promoteLongs: true, + promoteValues: true, + promoteBuffers: false, + bsonRegExp: false + }; + // Read the message header + this.length = msgHeader.length; + this.requestId = msgHeader.requestId; + this.responseTo = msgHeader.responseTo; + this.opCode = msgHeader.opCode; + this.fromCompressed = msgHeader.fromCompressed; + // Flag values + this.promoteLongs = typeof this.opts.promoteLongs === 'boolean' ? this.opts.promoteLongs : true; + this.promoteValues = + typeof this.opts.promoteValues === 'boolean' ? this.opts.promoteValues : true; + this.promoteBuffers = + typeof this.opts.promoteBuffers === 'boolean' ? this.opts.promoteBuffers : false; + this.bsonRegExp = typeof this.opts.bsonRegExp === 'boolean' ? this.opts.bsonRegExp : false; + } + isParsed() { + return this.parsed; + } + parse(options) { + var _a, _b, _c, _d; + // Don't parse again if not needed + if (this.parsed) + return; + options = options !== null && options !== void 0 ? options : {}; + // Allow the return of raw documents instead of parsing + const raw = options.raw || false; + const documentsReturnedIn = options.documentsReturnedIn || null; + const promoteLongs = (_a = options.promoteLongs) !== null && _a !== void 0 ? _a : this.opts.promoteLongs; + const promoteValues = (_b = options.promoteValues) !== null && _b !== void 0 ? _b : this.opts.promoteValues; + const promoteBuffers = (_c = options.promoteBuffers) !== null && _c !== void 0 ? _c : this.opts.promoteBuffers; + const bsonRegExp = (_d = options.bsonRegExp) !== null && _d !== void 0 ? _d : this.opts.bsonRegExp; + let bsonSize; + // Set up the options + const _options = { + promoteLongs, + promoteValues, + promoteBuffers, + bsonRegExp + }; + // Position within OP_REPLY at which documents start + // (See https://docs.mongodb.com/manual/reference/mongodb-wire-protocol/#wire-op-reply) + this.index = 20; + // Read the message body + this.responseFlags = this.data.readInt32LE(0); + this.cursorId = new BSON.Long(this.data.readInt32LE(4), this.data.readInt32LE(8)); + this.startingFrom = this.data.readInt32LE(12); + this.numberReturned = this.data.readInt32LE(16); + // Preallocate document array + this.documents = new Array(this.numberReturned); + this.cursorNotFound = (this.responseFlags & CURSOR_NOT_FOUND) !== 0; + this.queryFailure = (this.responseFlags & QUERY_FAILURE) !== 0; + this.shardConfigStale = (this.responseFlags & SHARD_CONFIG_STALE) !== 0; + this.awaitCapable = (this.responseFlags & AWAIT_CAPABLE) !== 0; + // Parse Body + for (let i = 0; i < this.numberReturned; i++) { + bsonSize = + this.data[this.index] | + (this.data[this.index + 1] << 8) | + (this.data[this.index + 2] << 16) | + (this.data[this.index + 3] << 24); + // If we have raw results specified slice the return document + if (raw) { + this.documents[i] = this.data.slice(this.index, this.index + bsonSize); + } + else { + this.documents[i] = BSON.deserialize(this.data.slice(this.index, this.index + bsonSize), _options); + } + // Adjust the index + this.index = this.index + bsonSize; + } + if (this.documents.length === 1 && documentsReturnedIn != null && raw) { + const fieldsAsRaw = {}; + fieldsAsRaw[documentsReturnedIn] = true; + _options.fieldsAsRaw = fieldsAsRaw; + const doc = BSON.deserialize(this.documents[0], _options); + this.documents = [doc]; + } + // Set parsed + this.parsed = true; + } +} +exports.Response = Response; +// Implementation of OP_MSG spec: +// https://github.com/mongodb/specifications/blob/master/source/message/OP_MSG.rst +// +// struct Section { +// uint8 payloadType; +// union payload { +// document document; // payloadType == 0 +// struct sequence { // payloadType == 1 +// int32 size; +// cstring identifier; +// document* documents; +// }; +// }; +// }; +// struct OP_MSG { +// struct MsgHeader { +// int32 messageLength; +// int32 requestID; +// int32 responseTo; +// int32 opCode = 2013; +// }; +// uint32 flagBits; +// Section+ sections; +// [uint32 checksum;] +// }; +// Msg Flags +const OPTS_CHECKSUM_PRESENT = 1; +const OPTS_MORE_TO_COME = 2; +const OPTS_EXHAUST_ALLOWED = 1 << 16; +/** @internal */ +class Msg { + constructor(ns, command, options) { + // Basic options needed to be passed in + if (command == null) + throw new error_1.MongoInvalidArgumentError('Query document must be specified for query'); + // Basic options + this.ns = ns; + this.command = command; + this.command.$db = (0, utils_1.databaseNamespace)(ns); + if (options.readPreference && options.readPreference.mode !== read_preference_1.ReadPreference.PRIMARY) { + this.command.$readPreference = options.readPreference.toJSON(); + } + // Ensure empty options + this.options = options !== null && options !== void 0 ? options : {}; + // Additional options + this.requestId = options.requestId ? options.requestId : Msg.getRequestId(); + // Serialization option + this.serializeFunctions = + typeof options.serializeFunctions === 'boolean' ? options.serializeFunctions : false; + this.ignoreUndefined = + typeof options.ignoreUndefined === 'boolean' ? options.ignoreUndefined : false; + this.checkKeys = typeof options.checkKeys === 'boolean' ? options.checkKeys : false; + this.maxBsonSize = options.maxBsonSize || 1024 * 1024 * 16; + // flags + this.checksumPresent = false; + this.moreToCome = options.moreToCome || false; + this.exhaustAllowed = + typeof options.exhaustAllowed === 'boolean' ? options.exhaustAllowed : false; + } + toBin() { + const buffers = []; + let flags = 0; + if (this.checksumPresent) { + flags |= OPTS_CHECKSUM_PRESENT; + } + if (this.moreToCome) { + flags |= OPTS_MORE_TO_COME; + } + if (this.exhaustAllowed) { + flags |= OPTS_EXHAUST_ALLOWED; + } + const header = Buffer.alloc(4 * 4 + // Header + 4 // Flags + ); + buffers.push(header); + let totalLength = header.length; + const command = this.command; + totalLength += this.makeDocumentSegment(buffers, command); + header.writeInt32LE(totalLength, 0); // messageLength + header.writeInt32LE(this.requestId, 4); // requestID + header.writeInt32LE(0, 8); // responseTo + header.writeInt32LE(constants_1.OP_MSG, 12); // opCode + header.writeUInt32LE(flags, 16); // flags + return buffers; + } + makeDocumentSegment(buffers, document) { + const payloadTypeBuffer = Buffer.alloc(1); + payloadTypeBuffer[0] = 0; + const documentBuffer = this.serializeBson(document); + buffers.push(payloadTypeBuffer); + buffers.push(documentBuffer); + return payloadTypeBuffer.length + documentBuffer.length; + } + serializeBson(document) { + return BSON.serialize(document, { + checkKeys: this.checkKeys, + serializeFunctions: this.serializeFunctions, + ignoreUndefined: this.ignoreUndefined + }); + } + static getRequestId() { + _requestId = (_requestId + 1) & 0x7fffffff; + return _requestId; + } +} +exports.Msg = Msg; +/** @internal */ +class BinMsg { + constructor(message, msgHeader, msgBody, opts) { + this.parsed = false; + this.raw = message; + this.data = msgBody; + this.opts = opts !== null && opts !== void 0 ? opts : { + promoteLongs: true, + promoteValues: true, + promoteBuffers: false, + bsonRegExp: false + }; + // Read the message header + this.length = msgHeader.length; + this.requestId = msgHeader.requestId; + this.responseTo = msgHeader.responseTo; + this.opCode = msgHeader.opCode; + this.fromCompressed = msgHeader.fromCompressed; + // Read response flags + this.responseFlags = msgBody.readInt32LE(0); + this.checksumPresent = (this.responseFlags & OPTS_CHECKSUM_PRESENT) !== 0; + this.moreToCome = (this.responseFlags & OPTS_MORE_TO_COME) !== 0; + this.exhaustAllowed = (this.responseFlags & OPTS_EXHAUST_ALLOWED) !== 0; + this.promoteLongs = typeof this.opts.promoteLongs === 'boolean' ? this.opts.promoteLongs : true; + this.promoteValues = + typeof this.opts.promoteValues === 'boolean' ? this.opts.promoteValues : true; + this.promoteBuffers = + typeof this.opts.promoteBuffers === 'boolean' ? this.opts.promoteBuffers : false; + this.bsonRegExp = typeof this.opts.bsonRegExp === 'boolean' ? this.opts.bsonRegExp : false; + this.documents = []; + } + isParsed() { + return this.parsed; + } + parse(options) { + var _a, _b, _c, _d; + // Don't parse again if not needed + if (this.parsed) + return; + options = options !== null && options !== void 0 ? options : {}; + this.index = 4; + // Allow the return of raw documents instead of parsing + const raw = options.raw || false; + const documentsReturnedIn = options.documentsReturnedIn || null; + const promoteLongs = (_a = options.promoteLongs) !== null && _a !== void 0 ? _a : this.opts.promoteLongs; + const promoteValues = (_b = options.promoteValues) !== null && _b !== void 0 ? _b : this.opts.promoteValues; + const promoteBuffers = (_c = options.promoteBuffers) !== null && _c !== void 0 ? _c : this.opts.promoteBuffers; + const bsonRegExp = (_d = options.bsonRegExp) !== null && _d !== void 0 ? _d : this.opts.bsonRegExp; + const validation = this.parseBsonSerializationOptions(options); + // Set up the options + const bsonOptions = { + promoteLongs, + promoteValues, + promoteBuffers, + bsonRegExp, + validation + // Due to the strictness of the BSON libraries validation option we need this cast + }; + while (this.index < this.data.length) { + const payloadType = this.data.readUInt8(this.index++); + if (payloadType === 0) { + const bsonSize = this.data.readUInt32LE(this.index); + const bin = this.data.slice(this.index, this.index + bsonSize); + this.documents.push(raw ? bin : BSON.deserialize(bin, bsonOptions)); + this.index += bsonSize; + } + else if (payloadType === 1) { + // It was decided that no driver makes use of payload type 1 + // TODO(NODE-3483): Replace with MongoDeprecationError + throw new error_1.MongoRuntimeError('OP_MSG Payload Type 1 detected unsupported protocol'); + } + } + if (this.documents.length === 1 && documentsReturnedIn != null && raw) { + const fieldsAsRaw = {}; + fieldsAsRaw[documentsReturnedIn] = true; + bsonOptions.fieldsAsRaw = fieldsAsRaw; + const doc = BSON.deserialize(this.documents[0], bsonOptions); + this.documents = [doc]; + } + this.parsed = true; + } + parseBsonSerializationOptions({ enableUtf8Validation }) { + if (enableUtf8Validation === false) { + return { utf8: false }; + } + return { utf8: { writeErrors: false } }; + } +} +exports.BinMsg = BinMsg; +//# sourceMappingURL=commands.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/cmap/commands.js.map b/node_modules/mongodb/lib/cmap/commands.js.map new file mode 100644 index 000000000..1dea16601 --- /dev/null +++ b/node_modules/mongodb/lib/cmap/commands.js.map @@ -0,0 +1 @@ +{"version":3,"file":"commands.js","sourceRoot":"","sources":["../../src/cmap/commands.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/cmap/connect.js b/node_modules/mongodb/lib/cmap/connect.js new file mode 100644 index 000000000..8a6029a6c --- /dev/null +++ b/node_modules/mongodb/lib/cmap/connect.js @@ -0,0 +1,398 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LEGAL_TCP_SOCKET_OPTIONS = exports.LEGAL_TLS_SOCKET_OPTIONS = exports.prepareHandshakeDocument = exports.connect = void 0; +const net = require("net"); +const socks_1 = require("socks"); +const tls = require("tls"); +const bson_1 = require("../bson"); +const constants_1 = require("../constants"); +const error_1 = require("../error"); +const utils_1 = require("../utils"); +const auth_provider_1 = require("./auth/auth_provider"); +const gssapi_1 = require("./auth/gssapi"); +const mongocr_1 = require("./auth/mongocr"); +const mongodb_aws_1 = require("./auth/mongodb_aws"); +const plain_1 = require("./auth/plain"); +const providers_1 = require("./auth/providers"); +const scram_1 = require("./auth/scram"); +const x509_1 = require("./auth/x509"); +const connection_1 = require("./connection"); +const constants_2 = require("./wire_protocol/constants"); +const AUTH_PROVIDERS = new Map([ + [providers_1.AuthMechanism.MONGODB_AWS, new mongodb_aws_1.MongoDBAWS()], + [providers_1.AuthMechanism.MONGODB_CR, new mongocr_1.MongoCR()], + [providers_1.AuthMechanism.MONGODB_GSSAPI, new gssapi_1.GSSAPI()], + [providers_1.AuthMechanism.MONGODB_PLAIN, new plain_1.Plain()], + [providers_1.AuthMechanism.MONGODB_SCRAM_SHA1, new scram_1.ScramSHA1()], + [providers_1.AuthMechanism.MONGODB_SCRAM_SHA256, new scram_1.ScramSHA256()], + [providers_1.AuthMechanism.MONGODB_X509, new x509_1.X509()] +]); +function connect(options, callback) { + makeConnection({ ...options, existingSocket: undefined }, (err, socket) => { + var _a; + if (err || !socket) { + return callback(err); + } + let ConnectionType = (_a = options.connectionType) !== null && _a !== void 0 ? _a : connection_1.Connection; + if (options.autoEncrypter) { + ConnectionType = connection_1.CryptoConnection; + } + performInitialHandshake(new ConnectionType(socket, options), options, callback); + }); +} +exports.connect = connect; +function checkSupportedServer(hello, options) { + var _a; + const serverVersionHighEnough = hello && + (typeof hello.maxWireVersion === 'number' || hello.maxWireVersion instanceof bson_1.Int32) && + hello.maxWireVersion >= constants_2.MIN_SUPPORTED_WIRE_VERSION; + const serverVersionLowEnough = hello && + (typeof hello.minWireVersion === 'number' || hello.minWireVersion instanceof bson_1.Int32) && + hello.minWireVersion <= constants_2.MAX_SUPPORTED_WIRE_VERSION; + if (serverVersionHighEnough) { + if (serverVersionLowEnough) { + return null; + } + const message = `Server at ${options.hostAddress} reports minimum wire version ${JSON.stringify(hello.minWireVersion)}, but this version of the Node.js Driver requires at most ${constants_2.MAX_SUPPORTED_WIRE_VERSION} (MongoDB ${constants_2.MAX_SUPPORTED_SERVER_VERSION})`; + return new error_1.MongoCompatibilityError(message); + } + const message = `Server at ${options.hostAddress} reports maximum wire version ${(_a = JSON.stringify(hello.maxWireVersion)) !== null && _a !== void 0 ? _a : 0}, but this version of the Node.js Driver requires at least ${constants_2.MIN_SUPPORTED_WIRE_VERSION} (MongoDB ${constants_2.MIN_SUPPORTED_SERVER_VERSION})`; + return new error_1.MongoCompatibilityError(message); +} +function performInitialHandshake(conn, options, _callback) { + const callback = function (err, ret) { + if (err && conn) { + conn.destroy(); + } + _callback(err, ret); + }; + const credentials = options.credentials; + if (credentials) { + if (!(credentials.mechanism === providers_1.AuthMechanism.MONGODB_DEFAULT) && + !AUTH_PROVIDERS.get(credentials.mechanism)) { + callback(new error_1.MongoInvalidArgumentError(`AuthMechanism '${credentials.mechanism}' not supported`)); + return; + } + } + const authContext = new auth_provider_1.AuthContext(conn, credentials, options); + prepareHandshakeDocument(authContext, (err, handshakeDoc) => { + if (err || !handshakeDoc) { + return callback(err); + } + const handshakeOptions = Object.assign({}, options); + if (typeof options.connectTimeoutMS === 'number') { + // The handshake technically is a monitoring check, so its socket timeout should be connectTimeoutMS + handshakeOptions.socketTimeoutMS = options.connectTimeoutMS; + } + const start = new Date().getTime(); + conn.command((0, utils_1.ns)('admin.$cmd'), handshakeDoc, handshakeOptions, (err, response) => { + if (err) { + callback(err); + return; + } + if ((response === null || response === void 0 ? void 0 : response.ok) === 0) { + callback(new error_1.MongoServerError(response)); + return; + } + if (!('isWritablePrimary' in response)) { + // Provide hello-style response document. + response.isWritablePrimary = response[constants_1.LEGACY_HELLO_COMMAND]; + } + if (response.helloOk) { + conn.helloOk = true; + } + const supportedServerErr = checkSupportedServer(response, options); + if (supportedServerErr) { + callback(supportedServerErr); + return; + } + if (options.loadBalanced) { + if (!response.serviceId) { + return callback(new error_1.MongoCompatibilityError('Driver attempted to initialize in load balancing mode, ' + + 'but the server does not support this mode.')); + } + } + // NOTE: This is metadata attached to the connection while porting away from + // handshake being done in the `Server` class. Likely, it should be + // relocated, or at very least restructured. + conn.hello = response; + conn.lastHelloMS = new Date().getTime() - start; + if (!response.arbiterOnly && credentials) { + // store the response on auth context + authContext.response = response; + const resolvedCredentials = credentials.resolveAuthMechanism(response); + const provider = AUTH_PROVIDERS.get(resolvedCredentials.mechanism); + if (!provider) { + return callback(new error_1.MongoInvalidArgumentError(`No AuthProvider for ${resolvedCredentials.mechanism} defined.`)); + } + provider.auth(authContext, err => { + if (err) { + if (err instanceof error_1.MongoError) { + err.addErrorLabel(error_1.MongoErrorLabel.HandshakeError); + if ((0, error_1.needsRetryableWriteLabel)(err, response.maxWireVersion)) { + err.addErrorLabel(error_1.MongoErrorLabel.RetryableWriteError); + } + } + return callback(err); + } + callback(undefined, conn); + }); + return; + } + callback(undefined, conn); + }); + }); +} +/** + * @internal + * + * This function is only exposed for testing purposes. + */ +function prepareHandshakeDocument(authContext, callback) { + const options = authContext.options; + const compressors = options.compressors ? options.compressors : []; + const { serverApi } = authContext.connection; + const handshakeDoc = { + [(serverApi === null || serverApi === void 0 ? void 0 : serverApi.version) ? 'hello' : constants_1.LEGACY_HELLO_COMMAND]: true, + helloOk: true, + client: options.metadata || (0, utils_1.makeClientMetadata)(options), + compression: compressors + }; + if (options.loadBalanced === true) { + handshakeDoc.loadBalanced = true; + } + const credentials = authContext.credentials; + if (credentials) { + if (credentials.mechanism === providers_1.AuthMechanism.MONGODB_DEFAULT && credentials.username) { + handshakeDoc.saslSupportedMechs = `${credentials.source}.${credentials.username}`; + const provider = AUTH_PROVIDERS.get(providers_1.AuthMechanism.MONGODB_SCRAM_SHA256); + if (!provider) { + // This auth mechanism is always present. + return callback(new error_1.MongoInvalidArgumentError(`No AuthProvider for ${providers_1.AuthMechanism.MONGODB_SCRAM_SHA256} defined.`)); + } + return provider.prepare(handshakeDoc, authContext, callback); + } + const provider = AUTH_PROVIDERS.get(credentials.mechanism); + if (!provider) { + return callback(new error_1.MongoInvalidArgumentError(`No AuthProvider for ${credentials.mechanism} defined.`)); + } + return provider.prepare(handshakeDoc, authContext, callback); + } + callback(undefined, handshakeDoc); +} +exports.prepareHandshakeDocument = prepareHandshakeDocument; +/** @public */ +exports.LEGAL_TLS_SOCKET_OPTIONS = [ + 'ALPNProtocols', + 'ca', + 'cert', + 'checkServerIdentity', + 'ciphers', + 'crl', + 'ecdhCurve', + 'key', + 'minDHSize', + 'passphrase', + 'pfx', + 'rejectUnauthorized', + 'secureContext', + 'secureProtocol', + 'servername', + 'session' +]; +/** @public */ +exports.LEGAL_TCP_SOCKET_OPTIONS = [ + 'family', + 'hints', + 'localAddress', + 'localPort', + 'lookup' +]; +function parseConnectOptions(options) { + const hostAddress = options.hostAddress; + if (!hostAddress) + throw new error_1.MongoInvalidArgumentError('Option "hostAddress" is required'); + const result = {}; + for (const name of exports.LEGAL_TCP_SOCKET_OPTIONS) { + if (options[name] != null) { + result[name] = options[name]; + } + } + if (typeof hostAddress.socketPath === 'string') { + result.path = hostAddress.socketPath; + return result; + } + else if (typeof hostAddress.host === 'string') { + result.host = hostAddress.host; + result.port = hostAddress.port; + return result; + } + else { + // This should never happen since we set up HostAddresses + // But if we don't throw here the socket could hang until timeout + // TODO(NODE-3483) + throw new error_1.MongoRuntimeError(`Unexpected HostAddress ${JSON.stringify(hostAddress)}`); + } +} +function parseSslOptions(options) { + const result = parseConnectOptions(options); + // Merge in valid SSL options + for (const name of exports.LEGAL_TLS_SOCKET_OPTIONS) { + if (options[name] != null) { + result[name] = options[name]; + } + } + if (options.existingSocket) { + result.socket = options.existingSocket; + } + // Set default sni servername to be the same as host + if (result.servername == null && result.host && !net.isIP(result.host)) { + result.servername = result.host; + } + return result; +} +const SOCKET_ERROR_EVENT_LIST = ['error', 'close', 'timeout', 'parseError']; +const SOCKET_ERROR_EVENTS = new Set(SOCKET_ERROR_EVENT_LIST); +function makeConnection(options, _callback) { + var _a, _b, _c, _d, _e, _f, _g, _h, _j; + const useTLS = (_a = options.tls) !== null && _a !== void 0 ? _a : false; + const keepAlive = (_b = options.keepAlive) !== null && _b !== void 0 ? _b : true; + const socketTimeoutMS = (_d = (_c = options.socketTimeoutMS) !== null && _c !== void 0 ? _c : Reflect.get(options, 'socketTimeout')) !== null && _d !== void 0 ? _d : 0; + const noDelay = (_e = options.noDelay) !== null && _e !== void 0 ? _e : true; + const connectTimeoutMS = (_f = options.connectTimeoutMS) !== null && _f !== void 0 ? _f : 30000; + const rejectUnauthorized = (_g = options.rejectUnauthorized) !== null && _g !== void 0 ? _g : true; + const keepAliveInitialDelay = (_j = (((_h = options.keepAliveInitialDelay) !== null && _h !== void 0 ? _h : 120000) > socketTimeoutMS + ? Math.round(socketTimeoutMS / 2) + : options.keepAliveInitialDelay)) !== null && _j !== void 0 ? _j : 120000; + const existingSocket = options.existingSocket; + let socket; + const callback = function (err, ret) { + if (err && socket) { + socket.destroy(); + } + _callback(err, ret); + }; + if (options.proxyHost != null) { + // Currently, only Socks5 is supported. + return makeSocks5Connection({ + ...options, + connectTimeoutMS // Should always be present for Socks5 + }, callback); + } + if (useTLS) { + const tlsSocket = tls.connect(parseSslOptions(options)); + if (typeof tlsSocket.disableRenegotiation === 'function') { + tlsSocket.disableRenegotiation(); + } + socket = tlsSocket; + } + else if (existingSocket) { + // In the TLS case, parseSslOptions() sets options.socket to existingSocket, + // so we only need to handle the non-TLS case here (where existingSocket + // gives us all we need out of the box). + socket = existingSocket; + } + else { + socket = net.createConnection(parseConnectOptions(options)); + } + socket.setKeepAlive(keepAlive, keepAliveInitialDelay); + socket.setTimeout(connectTimeoutMS); + socket.setNoDelay(noDelay); + const connectEvent = useTLS ? 'secureConnect' : 'connect'; + let cancellationHandler; + function errorHandler(eventName) { + return (err) => { + SOCKET_ERROR_EVENTS.forEach(event => socket.removeAllListeners(event)); + if (cancellationHandler && options.cancellationToken) { + options.cancellationToken.removeListener('cancel', cancellationHandler); + } + socket.removeListener(connectEvent, connectHandler); + callback(connectionFailureError(eventName, err)); + }; + } + function connectHandler() { + SOCKET_ERROR_EVENTS.forEach(event => socket.removeAllListeners(event)); + if (cancellationHandler && options.cancellationToken) { + options.cancellationToken.removeListener('cancel', cancellationHandler); + } + if ('authorizationError' in socket) { + if (socket.authorizationError && rejectUnauthorized) { + return callback(socket.authorizationError); + } + } + socket.setTimeout(socketTimeoutMS); + callback(undefined, socket); + } + SOCKET_ERROR_EVENTS.forEach(event => socket.once(event, errorHandler(event))); + if (options.cancellationToken) { + cancellationHandler = errorHandler('cancel'); + options.cancellationToken.once('cancel', cancellationHandler); + } + if (existingSocket) { + process.nextTick(connectHandler); + } + else { + socket.once(connectEvent, connectHandler); + } +} +function makeSocks5Connection(options, callback) { + var _a, _b; + const hostAddress = utils_1.HostAddress.fromHostPort((_a = options.proxyHost) !== null && _a !== void 0 ? _a : '', // proxyHost is guaranteed to set here + (_b = options.proxyPort) !== null && _b !== void 0 ? _b : 1080); + // First, connect to the proxy server itself: + makeConnection({ + ...options, + hostAddress, + tls: false, + proxyHost: undefined + }, (err, rawSocket) => { + if (err) { + return callback(err); + } + const destination = parseConnectOptions(options); + if (typeof destination.host !== 'string' || typeof destination.port !== 'number') { + return callback(new error_1.MongoInvalidArgumentError('Can only make Socks5 connections to TCP hosts')); + } + // Then, establish the Socks5 proxy connection: + socks_1.SocksClient.createConnection({ + existing_socket: rawSocket, + timeout: options.connectTimeoutMS, + command: 'connect', + destination: { + host: destination.host, + port: destination.port + }, + proxy: { + // host and port are ignored because we pass existing_socket + host: 'iLoveJavaScript', + port: 0, + type: 5, + userId: options.proxyUsername || undefined, + password: options.proxyPassword || undefined + } + }).then(({ socket }) => { + // Finally, now treat the resulting duplex stream as the + // socket over which we send and receive wire protocol messages: + makeConnection({ + ...options, + existingSocket: socket, + proxyHost: undefined + }, callback); + }, error => callback(connectionFailureError('error', error))); + }); +} +function connectionFailureError(type, err) { + switch (type) { + case 'error': + return new error_1.MongoNetworkError(err); + case 'timeout': + return new error_1.MongoNetworkTimeoutError('connection timed out'); + case 'close': + return new error_1.MongoNetworkError('connection closed'); + case 'cancel': + return new error_1.MongoNetworkError('connection establishment was cancelled'); + default: + return new error_1.MongoNetworkError('unknown network error'); + } +} +//# sourceMappingURL=connect.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/cmap/connect.js.map b/node_modules/mongodb/lib/cmap/connect.js.map new file mode 100644 index 000000000..6c90b72f3 --- /dev/null +++ b/node_modules/mongodb/lib/cmap/connect.js.map @@ -0,0 +1 @@ +{"version":3,"file":"connect.js","sourceRoot":"","sources":["../../src/cmap/connect.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/cmap/connection.js b/node_modules/mongodb/lib/cmap/connection.js new file mode 100644 index 000000000..cf345b96f --- /dev/null +++ b/node_modules/mongodb/lib/cmap/connection.js @@ -0,0 +1,470 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.hasSessionSupport = exports.CryptoConnection = exports.Connection = void 0; +const timers_1 = require("timers"); +const constants_1 = require("../constants"); +const error_1 = require("../error"); +const mongo_types_1 = require("../mongo_types"); +const sessions_1 = require("../sessions"); +const utils_1 = require("../utils"); +const command_monitoring_events_1 = require("./command_monitoring_events"); +const commands_1 = require("./commands"); +const message_stream_1 = require("./message_stream"); +const stream_description_1 = require("./stream_description"); +const shared_1 = require("./wire_protocol/shared"); +/** @internal */ +const kStream = Symbol('stream'); +/** @internal */ +const kQueue = Symbol('queue'); +/** @internal */ +const kMessageStream = Symbol('messageStream'); +/** @internal */ +const kGeneration = Symbol('generation'); +/** @internal */ +const kLastUseTime = Symbol('lastUseTime'); +/** @internal */ +const kClusterTime = Symbol('clusterTime'); +/** @internal */ +const kDescription = Symbol('description'); +/** @internal */ +const kHello = Symbol('hello'); +/** @internal */ +const kAutoEncrypter = Symbol('autoEncrypter'); +/** @internal */ +const kDelayedTimeoutId = Symbol('delayedTimeoutId'); +/** @internal */ +class Connection extends mongo_types_1.TypedEventEmitter { + constructor(stream, options) { + var _a, _b; + super(); + this.id = options.id; + this.address = streamIdentifier(stream, options); + this.socketTimeoutMS = (_a = options.socketTimeoutMS) !== null && _a !== void 0 ? _a : 0; + this.monitorCommands = options.monitorCommands; + this.serverApi = options.serverApi; + this.closed = false; + this.destroyed = false; + this[kHello] = null; + this[kClusterTime] = null; + this[kDescription] = new stream_description_1.StreamDescription(this.address, options); + this[kGeneration] = options.generation; + this[kLastUseTime] = (0, utils_1.now)(); + // setup parser stream and message handling + this[kQueue] = new Map(); + this[kMessageStream] = new message_stream_1.MessageStream({ + ...options, + maxBsonMessageSize: (_b = this.hello) === null || _b === void 0 ? void 0 : _b.maxBsonMessageSize + }); + this[kStream] = stream; + this[kDelayedTimeoutId] = null; + this[kMessageStream].on('message', message => this.onMessage(message)); + this[kMessageStream].on('error', error => this.onError(error)); + this[kStream].on('close', () => this.onClose()); + this[kStream].on('timeout', () => this.onTimeout()); + this[kStream].on('error', () => { + /* ignore errors, listen to `close` instead */ + }); + // hook the message stream up to the passed in stream + this[kStream].pipe(this[kMessageStream]); + this[kMessageStream].pipe(this[kStream]); + } + get description() { + return this[kDescription]; + } + get hello() { + return this[kHello]; + } + // the `connect` method stores the result of the handshake hello on the connection + set hello(response) { + this[kDescription].receiveResponse(response); + this[kDescription] = Object.freeze(this[kDescription]); + // TODO: remove this, and only use the `StreamDescription` in the future + this[kHello] = response; + } + // Set the whether the message stream is for a monitoring connection. + set isMonitoringConnection(value) { + this[kMessageStream].isMonitoringConnection = value; + } + get isMonitoringConnection() { + return this[kMessageStream].isMonitoringConnection; + } + get serviceId() { + var _a; + return (_a = this.hello) === null || _a === void 0 ? void 0 : _a.serviceId; + } + get loadBalanced() { + return this.description.loadBalanced; + } + get generation() { + return this[kGeneration] || 0; + } + set generation(generation) { + this[kGeneration] = generation; + } + get idleTime() { + return (0, utils_1.calculateDurationInMs)(this[kLastUseTime]); + } + get clusterTime() { + return this[kClusterTime]; + } + get stream() { + return this[kStream]; + } + markAvailable() { + this[kLastUseTime] = (0, utils_1.now)(); + } + onError(error) { + if (this.closed) { + return; + } + this[kStream].destroy(error); + this.closed = true; + for (const op of this[kQueue].values()) { + op.cb(error); + } + this[kQueue].clear(); + this.emit(Connection.CLOSE); + } + onClose() { + if (this.closed) { + return; + } + this.closed = true; + const message = `connection ${this.id} to ${this.address} closed`; + for (const op of this[kQueue].values()) { + op.cb(new error_1.MongoNetworkError(message)); + } + this[kQueue].clear(); + this.emit(Connection.CLOSE); + } + onTimeout() { + if (this.closed) { + return; + } + this[kDelayedTimeoutId] = (0, timers_1.setTimeout)(() => { + this[kStream].destroy(); + this.closed = true; + const message = `connection ${this.id} to ${this.address} timed out`; + const beforeHandshake = this.hello == null; + for (const op of this[kQueue].values()) { + op.cb(new error_1.MongoNetworkTimeoutError(message, { beforeHandshake })); + } + this[kQueue].clear(); + this.emit(Connection.CLOSE); + }, 1).unref(); // No need for this timer to hold the event loop open + } + onMessage(message) { + const delayedTimeoutId = this[kDelayedTimeoutId]; + if (delayedTimeoutId != null) { + (0, timers_1.clearTimeout)(delayedTimeoutId); + this[kDelayedTimeoutId] = null; + } + // always emit the message, in case we are streaming + this.emit('message', message); + const operationDescription = this[kQueue].get(message.responseTo); + if (!operationDescription) { + return; + } + const callback = operationDescription.cb; + // SERVER-45775: For exhaust responses we should be able to use the same requestId to + // track response, however the server currently synthetically produces remote requests + // making the `responseTo` change on each response + this[kQueue].delete(message.responseTo); + if ('moreToCome' in message && message.moreToCome) { + // requeue the callback for next synthetic request + this[kQueue].set(message.requestId, operationDescription); + } + else if (operationDescription.socketTimeoutOverride) { + this[kStream].setTimeout(this.socketTimeoutMS); + } + try { + // Pass in the entire description because it has BSON parsing options + message.parse(operationDescription); + } + catch (err) { + // If this error is generated by our own code, it will already have the correct class applied + // if it is not, then it is coming from a catastrophic data parse failure or the BSON library + // in either case, it should not be wrapped + callback(err); + return; + } + if (message.documents[0]) { + const document = message.documents[0]; + const session = operationDescription.session; + if (session) { + (0, sessions_1.updateSessionFromResponse)(session, document); + } + if (document.$clusterTime) { + this[kClusterTime] = document.$clusterTime; + this.emit(Connection.CLUSTER_TIME_RECEIVED, document.$clusterTime); + } + if (operationDescription.command) { + if (document.writeConcernError) { + callback(new error_1.MongoWriteConcernError(document.writeConcernError, document)); + return; + } + if (document.ok === 0 || document.$err || document.errmsg || document.code) { + callback(new error_1.MongoServerError(document)); + return; + } + } + else { + // Pre 3.2 support + if (document.ok === 0 || document.$err || document.errmsg) { + callback(new error_1.MongoServerError(document)); + return; + } + } + } + callback(undefined, message.documents[0]); + } + destroy(options, callback) { + if (typeof options === 'function') { + callback = options; + options = { force: false }; + } + this.removeAllListeners(Connection.PINNED); + this.removeAllListeners(Connection.UNPINNED); + options = Object.assign({ force: false }, options); + if (this[kStream] == null || this.destroyed) { + this.destroyed = true; + if (typeof callback === 'function') { + callback(); + } + return; + } + if (options.force) { + this[kStream].destroy(); + this.destroyed = true; + if (typeof callback === 'function') { + callback(); + } + return; + } + this[kStream].end(() => { + this.destroyed = true; + if (typeof callback === 'function') { + callback(); + } + }); + } + command(ns, cmd, options, callback) { + const readPreference = (0, shared_1.getReadPreference)(cmd, options); + const shouldUseOpMsg = supportsOpMsg(this); + const session = options === null || options === void 0 ? void 0 : options.session; + let clusterTime = this.clusterTime; + let finalCmd = Object.assign({}, cmd); + if (this.serverApi) { + const { version, strict, deprecationErrors } = this.serverApi; + finalCmd.apiVersion = version; + if (strict != null) + finalCmd.apiStrict = strict; + if (deprecationErrors != null) + finalCmd.apiDeprecationErrors = deprecationErrors; + } + if (hasSessionSupport(this) && session) { + if (session.clusterTime && + clusterTime && + session.clusterTime.clusterTime.greaterThan(clusterTime.clusterTime)) { + clusterTime = session.clusterTime; + } + const err = (0, sessions_1.applySession)(session, finalCmd, options); + if (err) { + return callback(err); + } + } + // if we have a known cluster time, gossip it + if (clusterTime) { + finalCmd.$clusterTime = clusterTime; + } + if ((0, shared_1.isSharded)(this) && !shouldUseOpMsg && readPreference && readPreference.mode !== 'primary') { + finalCmd = { + $query: finalCmd, + $readPreference: readPreference.toJSON() + }; + } + const commandOptions = Object.assign({ + command: true, + numberToSkip: 0, + numberToReturn: -1, + checkKeys: false, + // This value is not overridable + secondaryOk: readPreference.secondaryOk() + }, options); + const cmdNs = `${ns.db}.$cmd`; + const message = shouldUseOpMsg + ? new commands_1.Msg(cmdNs, finalCmd, commandOptions) + : new commands_1.Query(cmdNs, finalCmd, commandOptions); + try { + write(this, message, commandOptions, callback); + } + catch (err) { + callback(err); + } + } +} +exports.Connection = Connection; +/** @event */ +Connection.COMMAND_STARTED = constants_1.COMMAND_STARTED; +/** @event */ +Connection.COMMAND_SUCCEEDED = constants_1.COMMAND_SUCCEEDED; +/** @event */ +Connection.COMMAND_FAILED = constants_1.COMMAND_FAILED; +/** @event */ +Connection.CLUSTER_TIME_RECEIVED = constants_1.CLUSTER_TIME_RECEIVED; +/** @event */ +Connection.CLOSE = constants_1.CLOSE; +/** @event */ +Connection.MESSAGE = constants_1.MESSAGE; +/** @event */ +Connection.PINNED = constants_1.PINNED; +/** @event */ +Connection.UNPINNED = constants_1.UNPINNED; +/** @internal */ +class CryptoConnection extends Connection { + constructor(stream, options) { + super(stream, options); + this[kAutoEncrypter] = options.autoEncrypter; + } + /** @internal @override */ + command(ns, cmd, options, callback) { + const autoEncrypter = this[kAutoEncrypter]; + if (!autoEncrypter) { + return callback(new error_1.MongoMissingDependencyError('No AutoEncrypter available for encryption')); + } + const serverWireVersion = (0, utils_1.maxWireVersion)(this); + if (serverWireVersion === 0) { + // This means the initial handshake hasn't happened yet + return super.command(ns, cmd, options, callback); + } + if (serverWireVersion < 8) { + callback(new error_1.MongoCompatibilityError('Auto-encryption requires a minimum MongoDB version of 4.2')); + return; + } + // Save sort or indexKeys based on the command being run + // the encrypt API serializes our JS objects to BSON to pass to the native code layer + // and then deserializes the encrypted result, the protocol level components + // of the command (ex. sort) are then converted to JS objects potentially losing + // import key order information. These fields are never encrypted so we can save the values + // from before the encryption and replace them after encryption has been performed + const sort = cmd.find || cmd.findAndModify ? cmd.sort : null; + const indexKeys = cmd.createIndexes + ? cmd.indexes.map((index) => index.key) + : null; + autoEncrypter.encrypt(ns.toString(), cmd, options, (err, encrypted) => { + if (err || encrypted == null) { + callback(err, null); + return; + } + // Replace the saved values + if (sort != null && (cmd.find || cmd.findAndModify)) { + encrypted.sort = sort; + } + if (indexKeys != null && cmd.createIndexes) { + for (const [offset, index] of indexKeys.entries()) { + encrypted.indexes[offset].key = index; + } + } + super.command(ns, encrypted, options, (err, response) => { + if (err || response == null) { + callback(err, response); + return; + } + autoEncrypter.decrypt(response, options, callback); + }); + }); + } +} +exports.CryptoConnection = CryptoConnection; +/** @internal */ +function hasSessionSupport(conn) { + const description = conn.description; + return description.logicalSessionTimeoutMinutes != null || !!description.loadBalanced; +} +exports.hasSessionSupport = hasSessionSupport; +function supportsOpMsg(conn) { + const description = conn.description; + if (description == null) { + return false; + } + return (0, utils_1.maxWireVersion)(conn) >= 6 && !description.__nodejs_mock_server__; +} +function streamIdentifier(stream, options) { + if (options.proxyHost) { + // If proxy options are specified, the properties of `stream` itself + // will not accurately reflect what endpoint this is connected to. + return options.hostAddress.toString(); + } + const { remoteAddress, remotePort } = stream; + if (typeof remoteAddress === 'string' && typeof remotePort === 'number') { + return utils_1.HostAddress.fromHostPort(remoteAddress, remotePort).toString(); + } + return (0, utils_1.uuidV4)().toString('hex'); +} +function write(conn, command, options, callback) { + options = options !== null && options !== void 0 ? options : {}; + const operationDescription = { + requestId: command.requestId, + cb: callback, + session: options.session, + noResponse: typeof options.noResponse === 'boolean' ? options.noResponse : false, + documentsReturnedIn: options.documentsReturnedIn, + command: !!options.command, + // for BSON parsing + promoteLongs: typeof options.promoteLongs === 'boolean' ? options.promoteLongs : true, + promoteValues: typeof options.promoteValues === 'boolean' ? options.promoteValues : true, + promoteBuffers: typeof options.promoteBuffers === 'boolean' ? options.promoteBuffers : false, + bsonRegExp: typeof options.bsonRegExp === 'boolean' ? options.bsonRegExp : false, + enableUtf8Validation: typeof options.enableUtf8Validation === 'boolean' ? options.enableUtf8Validation : true, + raw: typeof options.raw === 'boolean' ? options.raw : false, + started: 0 + }; + if (conn[kDescription] && conn[kDescription].compressor) { + operationDescription.agreedCompressor = conn[kDescription].compressor; + if (conn[kDescription].zlibCompressionLevel) { + operationDescription.zlibCompressionLevel = conn[kDescription].zlibCompressionLevel; + } + } + if (typeof options.socketTimeoutMS === 'number') { + operationDescription.socketTimeoutOverride = true; + conn[kStream].setTimeout(options.socketTimeoutMS); + } + // if command monitoring is enabled we need to modify the callback here + if (conn.monitorCommands) { + conn.emit(Connection.COMMAND_STARTED, new command_monitoring_events_1.CommandStartedEvent(conn, command)); + operationDescription.started = (0, utils_1.now)(); + operationDescription.cb = (err, reply) => { + if (err) { + conn.emit(Connection.COMMAND_FAILED, new command_monitoring_events_1.CommandFailedEvent(conn, command, err, operationDescription.started)); + } + else { + if (reply && (reply.ok === 0 || reply.$err)) { + conn.emit(Connection.COMMAND_FAILED, new command_monitoring_events_1.CommandFailedEvent(conn, command, reply, operationDescription.started)); + } + else { + conn.emit(Connection.COMMAND_SUCCEEDED, new command_monitoring_events_1.CommandSucceededEvent(conn, command, reply, operationDescription.started)); + } + } + if (typeof callback === 'function') { + callback(err, reply); + } + }; + } + if (!operationDescription.noResponse) { + conn[kQueue].set(operationDescription.requestId, operationDescription); + } + try { + conn[kMessageStream].writeCommand(command, operationDescription); + } + catch (e) { + if (!operationDescription.noResponse) { + conn[kQueue].delete(operationDescription.requestId); + operationDescription.cb(e); + return; + } + } + if (operationDescription.noResponse) { + operationDescription.cb(); + } +} +//# sourceMappingURL=connection.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/cmap/connection.js.map b/node_modules/mongodb/lib/cmap/connection.js.map new file mode 100644 index 000000000..abb395715 --- /dev/null +++ b/node_modules/mongodb/lib/cmap/connection.js.map @@ -0,0 +1 @@ +{"version":3,"file":"connection.js","sourceRoot":"","sources":["../../src/cmap/connection.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/cmap/connection_pool.js b/node_modules/mongodb/lib/cmap/connection_pool.js new file mode 100644 index 000000000..659013311 --- /dev/null +++ b/node_modules/mongodb/lib/cmap/connection_pool.js @@ -0,0 +1,550 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.ConnectionPool = exports.PoolState = void 0; +const Denque = require("denque"); +const timers_1 = require("timers"); +const constants_1 = require("../constants"); +const error_1 = require("../error"); +const logger_1 = require("../logger"); +const mongo_types_1 = require("../mongo_types"); +const utils_1 = require("../utils"); +const connect_1 = require("./connect"); +const connection_1 = require("./connection"); +const connection_pool_events_1 = require("./connection_pool_events"); +const errors_1 = require("./errors"); +const metrics_1 = require("./metrics"); +/** @internal */ +const kLogger = Symbol('logger'); +/** @internal */ +const kConnections = Symbol('connections'); +/** @internal */ +const kPending = Symbol('pending'); +/** @internal */ +const kCheckedOut = Symbol('checkedOut'); +/** @internal */ +const kMinPoolSizeTimer = Symbol('minPoolSizeTimer'); +/** @internal */ +const kGeneration = Symbol('generation'); +/** @internal */ +const kServiceGenerations = Symbol('serviceGenerations'); +/** @internal */ +const kConnectionCounter = Symbol('connectionCounter'); +/** @internal */ +const kCancellationToken = Symbol('cancellationToken'); +/** @internal */ +const kWaitQueue = Symbol('waitQueue'); +/** @internal */ +const kCancelled = Symbol('cancelled'); +/** @internal */ +const kMetrics = Symbol('metrics'); +/** @internal */ +const kProcessingWaitQueue = Symbol('processingWaitQueue'); +/** @internal */ +const kPoolState = Symbol('poolState'); +/** @internal */ +exports.PoolState = Object.freeze({ + paused: 'paused', + ready: 'ready', + closed: 'closed' +}); +/** + * A pool of connections which dynamically resizes, and emit events related to pool activity + * @internal + */ +class ConnectionPool extends mongo_types_1.TypedEventEmitter { + /** @internal */ + constructor(options) { + var _a, _b, _c, _d, _e; + super(); + this.options = Object.freeze({ + ...options, + connectionType: connection_1.Connection, + maxPoolSize: (_a = options.maxPoolSize) !== null && _a !== void 0 ? _a : 100, + minPoolSize: (_b = options.minPoolSize) !== null && _b !== void 0 ? _b : 0, + maxConnecting: (_c = options.maxConnecting) !== null && _c !== void 0 ? _c : 2, + maxIdleTimeMS: (_d = options.maxIdleTimeMS) !== null && _d !== void 0 ? _d : 0, + waitQueueTimeoutMS: (_e = options.waitQueueTimeoutMS) !== null && _e !== void 0 ? _e : 0, + autoEncrypter: options.autoEncrypter, + metadata: options.metadata + }); + if (this.options.minPoolSize > this.options.maxPoolSize) { + throw new error_1.MongoInvalidArgumentError('Connection pool minimum size must not be greater than maximum pool size'); + } + this[kPoolState] = exports.PoolState.paused; + this[kLogger] = new logger_1.Logger('ConnectionPool'); + this[kConnections] = new Denque(); + this[kPending] = 0; + this[kCheckedOut] = 0; + this[kMinPoolSizeTimer] = undefined; + this[kGeneration] = 0; + this[kServiceGenerations] = new Map(); + this[kConnectionCounter] = (0, utils_1.makeCounter)(1); + this[kCancellationToken] = new mongo_types_1.CancellationToken(); + this[kCancellationToken].setMaxListeners(Infinity); + this[kWaitQueue] = new Denque(); + this[kMetrics] = new metrics_1.ConnectionPoolMetrics(); + this[kProcessingWaitQueue] = false; + process.nextTick(() => { + this.emit(ConnectionPool.CONNECTION_POOL_CREATED, new connection_pool_events_1.ConnectionPoolCreatedEvent(this)); + }); + } + /** The address of the endpoint the pool is connected to */ + get address() { + return this.options.hostAddress.toString(); + } + /** + * Check if the pool has been closed + * + * TODO(NODE-3263): We can remove this property once shell no longer needs it + */ + get closed() { + return this[kPoolState] === exports.PoolState.closed; + } + /** An integer representing the SDAM generation of the pool */ + get generation() { + return this[kGeneration]; + } + /** An integer expressing how many total connections (available + pending + in use) the pool currently has */ + get totalConnectionCount() { + return (this.availableConnectionCount + this.pendingConnectionCount + this.currentCheckedOutCount); + } + /** An integer expressing how many connections are currently available in the pool. */ + get availableConnectionCount() { + return this[kConnections].length; + } + get pendingConnectionCount() { + return this[kPending]; + } + get currentCheckedOutCount() { + return this[kCheckedOut]; + } + get waitQueueSize() { + return this[kWaitQueue].length; + } + get loadBalanced() { + return this.options.loadBalanced; + } + get serviceGenerations() { + return this[kServiceGenerations]; + } + /** + * Get the metrics information for the pool when a wait queue timeout occurs. + */ + waitQueueErrorMetrics() { + return this[kMetrics].info(this.options.maxPoolSize); + } + /** + * Set the pool state to "ready" + */ + ready() { + if (this[kPoolState] !== exports.PoolState.paused) { + return; + } + this[kPoolState] = exports.PoolState.ready; + this.emit(ConnectionPool.CONNECTION_POOL_READY, new connection_pool_events_1.ConnectionPoolReadyEvent(this)); + (0, timers_1.clearTimeout)(this[kMinPoolSizeTimer]); + this.ensureMinPoolSize(); + } + /** + * Check a connection out of this pool. The connection will continue to be tracked, but no reference to it + * will be held by the pool. This means that if a connection is checked out it MUST be checked back in or + * explicitly destroyed by the new owner. + */ + checkOut(callback) { + this.emit(ConnectionPool.CONNECTION_CHECK_OUT_STARTED, new connection_pool_events_1.ConnectionCheckOutStartedEvent(this)); + const waitQueueMember = { callback }; + const waitQueueTimeoutMS = this.options.waitQueueTimeoutMS; + if (waitQueueTimeoutMS) { + waitQueueMember.timer = (0, timers_1.setTimeout)(() => { + waitQueueMember[kCancelled] = true; + waitQueueMember.timer = undefined; + this.emit(ConnectionPool.CONNECTION_CHECK_OUT_FAILED, new connection_pool_events_1.ConnectionCheckOutFailedEvent(this, 'timeout')); + waitQueueMember.callback(new errors_1.WaitQueueTimeoutError(this.loadBalanced + ? this.waitQueueErrorMetrics() + : 'Timed out while checking out a connection from connection pool', this.address)); + }, waitQueueTimeoutMS); + } + this[kWaitQueue].push(waitQueueMember); + process.nextTick(() => this.processWaitQueue()); + } + /** + * Check a connection into the pool. + * + * @param connection - The connection to check in + */ + checkIn(connection) { + const poolClosed = this.closed; + const stale = this.connectionIsStale(connection); + const willDestroy = !!(poolClosed || stale || connection.closed); + if (!willDestroy) { + connection.markAvailable(); + this[kConnections].unshift(connection); + } + this[kCheckedOut]--; + this.emit(ConnectionPool.CONNECTION_CHECKED_IN, new connection_pool_events_1.ConnectionCheckedInEvent(this, connection)); + if (willDestroy) { + const reason = connection.closed ? 'error' : poolClosed ? 'poolClosed' : 'stale'; + this.destroyConnection(connection, reason); + } + process.nextTick(() => this.processWaitQueue()); + } + /** + * Clear the pool + * + * Pool reset is handled by incrementing the pool's generation count. Any existing connection of a + * previous generation will eventually be pruned during subsequent checkouts. + */ + clear(serviceId) { + if (this.closed) { + return; + } + // handle load balanced case + if (this.loadBalanced && serviceId) { + const sid = serviceId.toHexString(); + const generation = this.serviceGenerations.get(sid); + // Only need to worry if the generation exists, since it should + // always be there but typescript needs the check. + if (generation == null) { + throw new error_1.MongoRuntimeError('Service generations are required in load balancer mode.'); + } + else { + // Increment the generation for the service id. + this.serviceGenerations.set(sid, generation + 1); + } + this.emit(ConnectionPool.CONNECTION_POOL_CLEARED, new connection_pool_events_1.ConnectionPoolClearedEvent(this, serviceId)); + return; + } + // handle non load-balanced case + this[kGeneration] += 1; + const alreadyPaused = this[kPoolState] === exports.PoolState.paused; + this[kPoolState] = exports.PoolState.paused; + this.clearMinPoolSizeTimer(); + if (!alreadyPaused) { + this.emit(ConnectionPool.CONNECTION_POOL_CLEARED, new connection_pool_events_1.ConnectionPoolClearedEvent(this)); + } + this.processWaitQueue(); + } + close(_options, _cb) { + let options = _options; + const callback = (_cb !== null && _cb !== void 0 ? _cb : _options); + if (typeof options === 'function') { + options = {}; + } + options = Object.assign({ force: false }, options); + if (this.closed) { + return callback(); + } + // immediately cancel any in-flight connections + this[kCancellationToken].emit('cancel'); + // end the connection counter + if (typeof this[kConnectionCounter].return === 'function') { + this[kConnectionCounter].return(undefined); + } + this[kPoolState] = exports.PoolState.closed; + this.clearMinPoolSizeTimer(); + this.processWaitQueue(); + (0, utils_1.eachAsync)(this[kConnections].toArray(), (conn, cb) => { + this.emit(ConnectionPool.CONNECTION_CLOSED, new connection_pool_events_1.ConnectionClosedEvent(this, conn, 'poolClosed')); + conn.destroy(options, cb); + }, err => { + this[kConnections].clear(); + this.emit(ConnectionPool.CONNECTION_POOL_CLOSED, new connection_pool_events_1.ConnectionPoolClosedEvent(this)); + callback(err); + }); + } + /** + * Runs a lambda with an implicitly checked out connection, checking that connection back in when the lambda + * has completed by calling back. + * + * NOTE: please note the required signature of `fn` + * + * @remarks When in load balancer mode, connections can be pinned to cursors or transactions. + * In these cases we pass the connection in to this method to ensure it is used and a new + * connection is not checked out. + * + * @param conn - A pinned connection for use in load balancing mode. + * @param fn - A function which operates on a managed connection + * @param callback - The original callback + */ + withConnection(conn, fn, callback) { + if (conn) { + // use the provided connection, and do _not_ check it in after execution + fn(undefined, conn, (fnErr, result) => { + if (typeof callback === 'function') { + if (fnErr) { + callback(fnErr); + } + else { + callback(undefined, result); + } + } + }); + return; + } + this.checkOut((err, conn) => { + // don't callback with `err` here, we might want to act upon it inside `fn` + fn(err, conn, (fnErr, result) => { + if (typeof callback === 'function') { + if (fnErr) { + callback(fnErr); + } + else { + callback(undefined, result); + } + } + if (conn) { + this.checkIn(conn); + } + }); + }); + } + /** Clear the min pool size timer */ + clearMinPoolSizeTimer() { + const minPoolSizeTimer = this[kMinPoolSizeTimer]; + if (minPoolSizeTimer) { + (0, timers_1.clearTimeout)(minPoolSizeTimer); + } + } + destroyConnection(connection, reason) { + this.emit(ConnectionPool.CONNECTION_CLOSED, new connection_pool_events_1.ConnectionClosedEvent(this, connection, reason)); + // destroy the connection + process.nextTick(() => connection.destroy()); + } + connectionIsStale(connection) { + const serviceId = connection.serviceId; + if (this.loadBalanced && serviceId) { + const sid = serviceId.toHexString(); + const generation = this.serviceGenerations.get(sid); + return connection.generation !== generation; + } + return connection.generation !== this[kGeneration]; + } + connectionIsIdle(connection) { + return !!(this.options.maxIdleTimeMS && connection.idleTime > this.options.maxIdleTimeMS); + } + connectionIsPerished(connection) { + const isStale = this.connectionIsStale(connection); + const isIdle = this.connectionIsIdle(connection); + if (!isStale && !isIdle && !connection.closed) { + return false; + } + const reason = connection.closed ? 'error' : isStale ? 'stale' : 'idle'; + this.destroyConnection(connection, reason); + return true; + } + createConnection(callback) { + const connectOptions = { + ...this.options, + id: this[kConnectionCounter].next().value, + generation: this[kGeneration], + cancellationToken: this[kCancellationToken] + }; + this[kPending]++; + // This is our version of a "virtual" no-I/O connection as the spec requires + this.emit(ConnectionPool.CONNECTION_CREATED, new connection_pool_events_1.ConnectionCreatedEvent(this, { id: connectOptions.id })); + (0, connect_1.connect)(connectOptions, (err, connection) => { + if (err || !connection) { + this[kLogger].debug(`connection attempt failed with error [${JSON.stringify(err)}]`); + this[kPending]--; + callback(err !== null && err !== void 0 ? err : new error_1.MongoRuntimeError('Connection creation failed without error')); + return; + } + // The pool might have closed since we started trying to create a connection + if (this[kPoolState] !== exports.PoolState.ready) { + this[kPending]--; + connection.destroy({ force: true }); + callback(this.closed ? new errors_1.PoolClosedError(this) : new errors_1.PoolClearedError(this)); + return; + } + // forward all events from the connection to the pool + for (const event of [...constants_1.APM_EVENTS, connection_1.Connection.CLUSTER_TIME_RECEIVED]) { + connection.on(event, (e) => this.emit(event, e)); + } + if (this.loadBalanced) { + connection.on(connection_1.Connection.PINNED, pinType => this[kMetrics].markPinned(pinType)); + connection.on(connection_1.Connection.UNPINNED, pinType => this[kMetrics].markUnpinned(pinType)); + const serviceId = connection.serviceId; + if (serviceId) { + let generation; + const sid = serviceId.toHexString(); + if ((generation = this.serviceGenerations.get(sid))) { + connection.generation = generation; + } + else { + this.serviceGenerations.set(sid, 0); + connection.generation = 0; + } + } + } + connection.markAvailable(); + this.emit(ConnectionPool.CONNECTION_READY, new connection_pool_events_1.ConnectionReadyEvent(this, connection)); + this[kPending]--; + callback(undefined, connection); + return; + }); + } + ensureMinPoolSize() { + const minPoolSize = this.options.minPoolSize; + if (this[kPoolState] !== exports.PoolState.ready || minPoolSize === 0) { + return; + } + for (let i = 0; i < this[kConnections].length; i++) { + const connection = this[kConnections].peekAt(i); + if (connection && this.connectionIsPerished(connection)) { + this[kConnections].removeOne(i); + } + } + if (this.totalConnectionCount < minPoolSize && + this.pendingConnectionCount < this.options.maxConnecting) { + // NOTE: ensureMinPoolSize should not try to get all the pending + // connection permits because that potentially delays the availability of + // the connection to a checkout request + this.createConnection((err, connection) => { + if (!err && connection) { + this[kConnections].push(connection); + process.nextTick(() => this.processWaitQueue()); + } + if (this[kPoolState] === exports.PoolState.ready) { + (0, timers_1.clearTimeout)(this[kMinPoolSizeTimer]); + this[kMinPoolSizeTimer] = (0, timers_1.setTimeout)(() => this.ensureMinPoolSize(), 10); + } + }); + } + else { + (0, timers_1.clearTimeout)(this[kMinPoolSizeTimer]); + this[kMinPoolSizeTimer] = (0, timers_1.setTimeout)(() => this.ensureMinPoolSize(), 100); + } + } + processWaitQueue() { + if (this[kProcessingWaitQueue]) { + return; + } + this[kProcessingWaitQueue] = true; + while (this.waitQueueSize) { + const waitQueueMember = this[kWaitQueue].peekFront(); + if (!waitQueueMember) { + this[kWaitQueue].shift(); + continue; + } + if (waitQueueMember[kCancelled]) { + this[kWaitQueue].shift(); + continue; + } + if (this[kPoolState] !== exports.PoolState.ready) { + const reason = this.closed ? 'poolClosed' : 'connectionError'; + const error = this.closed ? new errors_1.PoolClosedError(this) : new errors_1.PoolClearedError(this); + this.emit(ConnectionPool.CONNECTION_CHECK_OUT_FAILED, new connection_pool_events_1.ConnectionCheckOutFailedEvent(this, reason)); + if (waitQueueMember.timer) { + (0, timers_1.clearTimeout)(waitQueueMember.timer); + } + this[kWaitQueue].shift(); + waitQueueMember.callback(error); + continue; + } + if (!this.availableConnectionCount) { + break; + } + const connection = this[kConnections].shift(); + if (!connection) { + break; + } + if (!this.connectionIsPerished(connection)) { + this[kCheckedOut]++; + this.emit(ConnectionPool.CONNECTION_CHECKED_OUT, new connection_pool_events_1.ConnectionCheckedOutEvent(this, connection)); + if (waitQueueMember.timer) { + (0, timers_1.clearTimeout)(waitQueueMember.timer); + } + this[kWaitQueue].shift(); + waitQueueMember.callback(undefined, connection); + } + } + const { maxPoolSize, maxConnecting } = this.options; + while (this.waitQueueSize > 0 && + this.pendingConnectionCount < maxConnecting && + (maxPoolSize === 0 || this.totalConnectionCount < maxPoolSize)) { + const waitQueueMember = this[kWaitQueue].shift(); + if (!waitQueueMember || waitQueueMember[kCancelled]) { + continue; + } + this.createConnection((err, connection) => { + if (waitQueueMember[kCancelled]) { + if (!err && connection) { + this[kConnections].push(connection); + } + } + else { + if (err) { + this.emit(ConnectionPool.CONNECTION_CHECK_OUT_FAILED, new connection_pool_events_1.ConnectionCheckOutFailedEvent(this, 'connectionError')); + } + else if (connection) { + this[kCheckedOut]++; + this.emit(ConnectionPool.CONNECTION_CHECKED_OUT, new connection_pool_events_1.ConnectionCheckedOutEvent(this, connection)); + } + if (waitQueueMember.timer) { + (0, timers_1.clearTimeout)(waitQueueMember.timer); + } + waitQueueMember.callback(err, connection); + } + process.nextTick(() => this.processWaitQueue()); + }); + } + this[kProcessingWaitQueue] = false; + } +} +exports.ConnectionPool = ConnectionPool; +/** + * Emitted when the connection pool is created. + * @event + */ +ConnectionPool.CONNECTION_POOL_CREATED = constants_1.CONNECTION_POOL_CREATED; +/** + * Emitted once when the connection pool is closed + * @event + */ +ConnectionPool.CONNECTION_POOL_CLOSED = constants_1.CONNECTION_POOL_CLOSED; +/** + * Emitted each time the connection pool is cleared and it's generation incremented + * @event + */ +ConnectionPool.CONNECTION_POOL_CLEARED = constants_1.CONNECTION_POOL_CLEARED; +/** + * Emitted each time the connection pool is marked ready + * @event + */ +ConnectionPool.CONNECTION_POOL_READY = constants_1.CONNECTION_POOL_READY; +/** + * Emitted when a connection is created. + * @event + */ +ConnectionPool.CONNECTION_CREATED = constants_1.CONNECTION_CREATED; +/** + * Emitted when a connection becomes established, and is ready to use + * @event + */ +ConnectionPool.CONNECTION_READY = constants_1.CONNECTION_READY; +/** + * Emitted when a connection is closed + * @event + */ +ConnectionPool.CONNECTION_CLOSED = constants_1.CONNECTION_CLOSED; +/** + * Emitted when an attempt to check out a connection begins + * @event + */ +ConnectionPool.CONNECTION_CHECK_OUT_STARTED = constants_1.CONNECTION_CHECK_OUT_STARTED; +/** + * Emitted when an attempt to check out a connection fails + * @event + */ +ConnectionPool.CONNECTION_CHECK_OUT_FAILED = constants_1.CONNECTION_CHECK_OUT_FAILED; +/** + * Emitted each time a connection is successfully checked out of the connection pool + * @event + */ +ConnectionPool.CONNECTION_CHECKED_OUT = constants_1.CONNECTION_CHECKED_OUT; +/** + * Emitted each time a connection is successfully checked into the connection pool + * @event + */ +ConnectionPool.CONNECTION_CHECKED_IN = constants_1.CONNECTION_CHECKED_IN; +//# sourceMappingURL=connection_pool.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/cmap/connection_pool.js.map b/node_modules/mongodb/lib/cmap/connection_pool.js.map new file mode 100644 index 000000000..42fe88f48 --- /dev/null +++ b/node_modules/mongodb/lib/cmap/connection_pool.js.map @@ -0,0 +1 @@ +{"version":3,"file":"connection_pool.js","sourceRoot":"","sources":["../../src/cmap/connection_pool.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/cmap/connection_pool_events.js b/node_modules/mongodb/lib/cmap/connection_pool_events.js new file mode 100644 index 000000000..7d8439613 --- /dev/null +++ b/node_modules/mongodb/lib/cmap/connection_pool_events.js @@ -0,0 +1,159 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.ConnectionPoolClearedEvent = exports.ConnectionCheckedInEvent = exports.ConnectionCheckedOutEvent = exports.ConnectionCheckOutFailedEvent = exports.ConnectionCheckOutStartedEvent = exports.ConnectionClosedEvent = exports.ConnectionReadyEvent = exports.ConnectionCreatedEvent = exports.ConnectionPoolClosedEvent = exports.ConnectionPoolReadyEvent = exports.ConnectionPoolCreatedEvent = exports.ConnectionPoolMonitoringEvent = void 0; +/** + * The base export class for all monitoring events published from the connection pool + * @public + * @category Event + */ +class ConnectionPoolMonitoringEvent { + /** @internal */ + constructor(pool) { + this.time = new Date(); + this.address = pool.address; + } +} +exports.ConnectionPoolMonitoringEvent = ConnectionPoolMonitoringEvent; +/** + * An event published when a connection pool is created + * @public + * @category Event + */ +class ConnectionPoolCreatedEvent extends ConnectionPoolMonitoringEvent { + /** @internal */ + constructor(pool) { + super(pool); + this.options = pool.options; + } +} +exports.ConnectionPoolCreatedEvent = ConnectionPoolCreatedEvent; +/** + * An event published when a connection pool is ready + * @public + * @category Event + */ +class ConnectionPoolReadyEvent extends ConnectionPoolMonitoringEvent { + /** @internal */ + constructor(pool) { + super(pool); + } +} +exports.ConnectionPoolReadyEvent = ConnectionPoolReadyEvent; +/** + * An event published when a connection pool is closed + * @public + * @category Event + */ +class ConnectionPoolClosedEvent extends ConnectionPoolMonitoringEvent { + /** @internal */ + constructor(pool) { + super(pool); + } +} +exports.ConnectionPoolClosedEvent = ConnectionPoolClosedEvent; +/** + * An event published when a connection pool creates a new connection + * @public + * @category Event + */ +class ConnectionCreatedEvent extends ConnectionPoolMonitoringEvent { + /** @internal */ + constructor(pool, connection) { + super(pool); + this.connectionId = connection.id; + } +} +exports.ConnectionCreatedEvent = ConnectionCreatedEvent; +/** + * An event published when a connection is ready for use + * @public + * @category Event + */ +class ConnectionReadyEvent extends ConnectionPoolMonitoringEvent { + /** @internal */ + constructor(pool, connection) { + super(pool); + this.connectionId = connection.id; + } +} +exports.ConnectionReadyEvent = ConnectionReadyEvent; +/** + * An event published when a connection is closed + * @public + * @category Event + */ +class ConnectionClosedEvent extends ConnectionPoolMonitoringEvent { + /** @internal */ + constructor(pool, connection, reason) { + super(pool); + this.connectionId = connection.id; + this.reason = reason || 'unknown'; + this.serviceId = connection.serviceId; + } +} +exports.ConnectionClosedEvent = ConnectionClosedEvent; +/** + * An event published when a request to check a connection out begins + * @public + * @category Event + */ +class ConnectionCheckOutStartedEvent extends ConnectionPoolMonitoringEvent { + /** @internal */ + constructor(pool) { + super(pool); + } +} +exports.ConnectionCheckOutStartedEvent = ConnectionCheckOutStartedEvent; +/** + * An event published when a request to check a connection out fails + * @public + * @category Event + */ +class ConnectionCheckOutFailedEvent extends ConnectionPoolMonitoringEvent { + /** @internal */ + constructor(pool, reason) { + super(pool); + this.reason = reason; + } +} +exports.ConnectionCheckOutFailedEvent = ConnectionCheckOutFailedEvent; +/** + * An event published when a connection is checked out of the connection pool + * @public + * @category Event + */ +class ConnectionCheckedOutEvent extends ConnectionPoolMonitoringEvent { + /** @internal */ + constructor(pool, connection) { + super(pool); + this.connectionId = connection.id; + } +} +exports.ConnectionCheckedOutEvent = ConnectionCheckedOutEvent; +/** + * An event published when a connection is checked into the connection pool + * @public + * @category Event + */ +class ConnectionCheckedInEvent extends ConnectionPoolMonitoringEvent { + /** @internal */ + constructor(pool, connection) { + super(pool); + this.connectionId = connection.id; + } +} +exports.ConnectionCheckedInEvent = ConnectionCheckedInEvent; +/** + * An event published when a connection pool is cleared + * @public + * @category Event + */ +class ConnectionPoolClearedEvent extends ConnectionPoolMonitoringEvent { + /** @internal */ + constructor(pool, serviceId) { + super(pool); + this.serviceId = serviceId; + } +} +exports.ConnectionPoolClearedEvent = ConnectionPoolClearedEvent; +//# sourceMappingURL=connection_pool_events.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/cmap/connection_pool_events.js.map b/node_modules/mongodb/lib/cmap/connection_pool_events.js.map new file mode 100644 index 000000000..712686346 --- /dev/null +++ b/node_modules/mongodb/lib/cmap/connection_pool_events.js.map @@ -0,0 +1 @@ +{"version":3,"file":"connection_pool_events.js","sourceRoot":"","sources":["../../src/cmap/connection_pool_events.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/cmap/errors.js b/node_modules/mongodb/lib/cmap/errors.js new file mode 100644 index 000000000..0b77b2fe9 --- /dev/null +++ b/node_modules/mongodb/lib/cmap/errors.js @@ -0,0 +1,49 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.WaitQueueTimeoutError = exports.PoolClearedError = exports.PoolClosedError = void 0; +const error_1 = require("../error"); +/** + * An error indicating a connection pool is closed + * @category Error + */ +class PoolClosedError extends error_1.MongoDriverError { + constructor(pool) { + super('Attempted to check out a connection from closed connection pool'); + this.address = pool.address; + } + get name() { + return 'MongoPoolClosedError'; + } +} +exports.PoolClosedError = PoolClosedError; +/** + * An error indicating a connection pool is currently paused + * @category Error + */ +class PoolClearedError extends error_1.MongoNetworkError { + constructor(pool) { + // TODO(NODE-3135): pass in original pool-clearing error and use in message + // "failed with: " + super(`Connection pool for ${pool.address} was cleared because another operation failed`); + this.address = pool.address; + } + get name() { + return 'MongoPoolClearedError'; + } +} +exports.PoolClearedError = PoolClearedError; +/** + * An error thrown when a request to check out a connection times out + * @category Error + */ +class WaitQueueTimeoutError extends error_1.MongoDriverError { + constructor(message, address) { + super(message); + this.address = address; + } + get name() { + return 'MongoWaitQueueTimeoutError'; + } +} +exports.WaitQueueTimeoutError = WaitQueueTimeoutError; +//# sourceMappingURL=errors.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/cmap/errors.js.map b/node_modules/mongodb/lib/cmap/errors.js.map new file mode 100644 index 000000000..1c15abccb --- /dev/null +++ b/node_modules/mongodb/lib/cmap/errors.js.map @@ -0,0 +1 @@ +{"version":3,"file":"errors.js","sourceRoot":"","sources":["../../src/cmap/errors.ts"],"names":[],"mappings":";;;AAAA,oCAA+D;AAG/D;;;GAGG;AACH,MAAa,eAAgB,SAAQ,wBAAgB;IAInD,YAAY,IAAoB;QAC9B,KAAK,CAAC,iEAAiE,CAAC,CAAC;QACzE,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC;IAC9B,CAAC;IAED,IAAa,IAAI;QACf,OAAO,sBAAsB,CAAC;IAChC,CAAC;CACF;AAZD,0CAYC;AAED;;;GAGG;AACH,MAAa,gBAAiB,SAAQ,yBAAiB;IAIrD,YAAY,IAAoB;QAC9B,2EAA2E;QAC3E,yDAAyD;QACzD,KAAK,CAAC,uBAAuB,IAAI,CAAC,OAAO,+CAA+C,CAAC,CAAC;QAC1F,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC;IAC9B,CAAC;IAED,IAAa,IAAI;QACf,OAAO,uBAAuB,CAAC;IACjC,CAAC;CACF;AAdD,4CAcC;AAED;;;GAGG;AACH,MAAa,qBAAsB,SAAQ,wBAAgB;IAIzD,YAAY,OAAe,EAAE,OAAe;QAC1C,KAAK,CAAC,OAAO,CAAC,CAAC;QACf,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;IACzB,CAAC;IAED,IAAa,IAAI;QACf,OAAO,4BAA4B,CAAC;IACtC,CAAC;CACF;AAZD,sDAYC"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/cmap/message_stream.js b/node_modules/mongodb/lib/cmap/message_stream.js new file mode 100644 index 000000000..de7e7d7a5 --- /dev/null +++ b/node_modules/mongodb/lib/cmap/message_stream.js @@ -0,0 +1,175 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.MessageStream = void 0; +const stream_1 = require("stream"); +const error_1 = require("../error"); +const utils_1 = require("../utils"); +const commands_1 = require("./commands"); +const compression_1 = require("./wire_protocol/compression"); +const constants_1 = require("./wire_protocol/constants"); +const MESSAGE_HEADER_SIZE = 16; +const COMPRESSION_DETAILS_SIZE = 9; // originalOpcode + uncompressedSize, compressorID +const kDefaultMaxBsonMessageSize = 1024 * 1024 * 16 * 4; +/** @internal */ +const kBuffer = Symbol('buffer'); +/** + * A duplex stream that is capable of reading and writing raw wire protocol messages, with + * support for optional compression + * @internal + */ +class MessageStream extends stream_1.Duplex { + constructor(options = {}) { + super(options); + /** @internal */ + this.isMonitoringConnection = false; + this.maxBsonMessageSize = options.maxBsonMessageSize || kDefaultMaxBsonMessageSize; + this[kBuffer] = new utils_1.BufferPool(); + } + get buffer() { + return this[kBuffer]; + } + _write(chunk, _, callback) { + this[kBuffer].append(chunk); + processIncomingData(this, callback); + } + _read( /* size */) { + // NOTE: This implementation is empty because we explicitly push data to be read + // when `writeMessage` is called. + return; + } + writeCommand(command, operationDescription) { + // TODO: agreed compressor should live in `StreamDescription` + const compressorName = operationDescription && operationDescription.agreedCompressor + ? operationDescription.agreedCompressor + : 'none'; + if (compressorName === 'none' || !canCompress(command)) { + const data = command.toBin(); + this.push(Array.isArray(data) ? Buffer.concat(data) : data); + return; + } + // otherwise, compress the message + const concatenatedOriginalCommandBuffer = Buffer.concat(command.toBin()); + const messageToBeCompressed = concatenatedOriginalCommandBuffer.slice(MESSAGE_HEADER_SIZE); + // Extract information needed for OP_COMPRESSED from the uncompressed message + const originalCommandOpCode = concatenatedOriginalCommandBuffer.readInt32LE(12); + // Compress the message body + (0, compression_1.compress)({ options: operationDescription }, messageToBeCompressed, (err, compressedMessage) => { + if (err || !compressedMessage) { + operationDescription.cb(err); + return; + } + // Create the msgHeader of OP_COMPRESSED + const msgHeader = Buffer.alloc(MESSAGE_HEADER_SIZE); + msgHeader.writeInt32LE(MESSAGE_HEADER_SIZE + COMPRESSION_DETAILS_SIZE + compressedMessage.length, 0); // messageLength + msgHeader.writeInt32LE(command.requestId, 4); // requestID + msgHeader.writeInt32LE(0, 8); // responseTo (zero) + msgHeader.writeInt32LE(constants_1.OP_COMPRESSED, 12); // opCode + // Create the compression details of OP_COMPRESSED + const compressionDetails = Buffer.alloc(COMPRESSION_DETAILS_SIZE); + compressionDetails.writeInt32LE(originalCommandOpCode, 0); // originalOpcode + compressionDetails.writeInt32LE(messageToBeCompressed.length, 4); // Size of the uncompressed compressedMessage, excluding the MsgHeader + compressionDetails.writeUInt8(compression_1.Compressor[compressorName], 8); // compressorID + this.push(Buffer.concat([msgHeader, compressionDetails, compressedMessage])); + }); + } +} +exports.MessageStream = MessageStream; +// Return whether a command contains an uncompressible command term +// Will return true if command contains no uncompressible command terms +function canCompress(command) { + const commandDoc = command instanceof commands_1.Msg ? command.command : command.query; + const commandName = Object.keys(commandDoc)[0]; + return !compression_1.uncompressibleCommands.has(commandName); +} +function processIncomingData(stream, callback) { + const buffer = stream[kBuffer]; + if (buffer.length < 4) { + callback(); + return; + } + const sizeOfMessage = buffer.peek(4).readInt32LE(); + if (sizeOfMessage < 0) { + callback(new error_1.MongoParseError(`Invalid message size: ${sizeOfMessage}`)); + return; + } + if (sizeOfMessage > stream.maxBsonMessageSize) { + callback(new error_1.MongoParseError(`Invalid message size: ${sizeOfMessage}, max allowed: ${stream.maxBsonMessageSize}`)); + return; + } + if (sizeOfMessage > buffer.length) { + callback(); + return; + } + const message = buffer.read(sizeOfMessage); + const messageHeader = { + length: message.readInt32LE(0), + requestId: message.readInt32LE(4), + responseTo: message.readInt32LE(8), + opCode: message.readInt32LE(12) + }; + const monitorHasAnotherHello = () => { + if (stream.isMonitoringConnection) { + // Can we read the next message size? + if (buffer.length >= 4) { + const sizeOfMessage = buffer.peek(4).readInt32LE(); + if (sizeOfMessage <= buffer.length) { + return true; + } + } + } + return false; + }; + let ResponseType = messageHeader.opCode === constants_1.OP_MSG ? commands_1.BinMsg : commands_1.Response; + if (messageHeader.opCode !== constants_1.OP_COMPRESSED) { + const messageBody = message.slice(MESSAGE_HEADER_SIZE); + // If we are a monitoring connection message stream and + // there is more in the buffer that can be read, skip processing since we + // want the last hello command response that is in the buffer. + if (monitorHasAnotherHello()) { + processIncomingData(stream, callback); + } + else { + stream.emit('message', new ResponseType(message, messageHeader, messageBody)); + if (buffer.length >= 4) { + processIncomingData(stream, callback); + } + else { + callback(); + } + } + return; + } + messageHeader.fromCompressed = true; + messageHeader.opCode = message.readInt32LE(MESSAGE_HEADER_SIZE); + messageHeader.length = message.readInt32LE(MESSAGE_HEADER_SIZE + 4); + const compressorID = message[MESSAGE_HEADER_SIZE + 8]; + const compressedBuffer = message.slice(MESSAGE_HEADER_SIZE + 9); + // recalculate based on wrapped opcode + ResponseType = messageHeader.opCode === constants_1.OP_MSG ? commands_1.BinMsg : commands_1.Response; + (0, compression_1.decompress)(compressorID, compressedBuffer, (err, messageBody) => { + if (err || !messageBody) { + callback(err); + return; + } + if (messageBody.length !== messageHeader.length) { + callback(new error_1.MongoDecompressionError('Message body and message header must be the same length')); + return; + } + // If we are a monitoring connection message stream and + // there is more in the buffer that can be read, skip processing since we + // want the last hello command response that is in the buffer. + if (monitorHasAnotherHello()) { + processIncomingData(stream, callback); + } + else { + stream.emit('message', new ResponseType(message, messageHeader, messageBody)); + if (buffer.length >= 4) { + processIncomingData(stream, callback); + } + else { + callback(); + } + } + }); +} +//# sourceMappingURL=message_stream.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/cmap/message_stream.js.map b/node_modules/mongodb/lib/cmap/message_stream.js.map new file mode 100644 index 000000000..892b31e69 --- /dev/null +++ b/node_modules/mongodb/lib/cmap/message_stream.js.map @@ -0,0 +1 @@ +{"version":3,"file":"message_stream.js","sourceRoot":"","sources":["../../src/cmap/message_stream.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/cmap/metrics.js b/node_modules/mongodb/lib/cmap/metrics.js new file mode 100644 index 000000000..89c221091 --- /dev/null +++ b/node_modules/mongodb/lib/cmap/metrics.js @@ -0,0 +1,62 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.ConnectionPoolMetrics = void 0; +/** @internal */ +class ConnectionPoolMetrics { + constructor() { + this.txnConnections = 0; + this.cursorConnections = 0; + this.otherConnections = 0; + } + /** + * Mark a connection as pinned for a specific operation. + */ + markPinned(pinType) { + if (pinType === ConnectionPoolMetrics.TXN) { + this.txnConnections += 1; + } + else if (pinType === ConnectionPoolMetrics.CURSOR) { + this.cursorConnections += 1; + } + else { + this.otherConnections += 1; + } + } + /** + * Unmark a connection as pinned for an operation. + */ + markUnpinned(pinType) { + if (pinType === ConnectionPoolMetrics.TXN) { + this.txnConnections -= 1; + } + else if (pinType === ConnectionPoolMetrics.CURSOR) { + this.cursorConnections -= 1; + } + else { + this.otherConnections -= 1; + } + } + /** + * Return information about the cmap metrics as a string. + */ + info(maxPoolSize) { + return ('Timed out while checking out a connection from connection pool: ' + + `maxPoolSize: ${maxPoolSize}, ` + + `connections in use by cursors: ${this.cursorConnections}, ` + + `connections in use by transactions: ${this.txnConnections}, ` + + `connections in use by other operations: ${this.otherConnections}`); + } + /** + * Reset the metrics to the initial values. + */ + reset() { + this.txnConnections = 0; + this.cursorConnections = 0; + this.otherConnections = 0; + } +} +exports.ConnectionPoolMetrics = ConnectionPoolMetrics; +ConnectionPoolMetrics.TXN = 'txn'; +ConnectionPoolMetrics.CURSOR = 'cursor'; +ConnectionPoolMetrics.OTHER = 'other'; +//# sourceMappingURL=metrics.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/cmap/metrics.js.map b/node_modules/mongodb/lib/cmap/metrics.js.map new file mode 100644 index 000000000..270cefe79 --- /dev/null +++ b/node_modules/mongodb/lib/cmap/metrics.js.map @@ -0,0 +1 @@ +{"version":3,"file":"metrics.js","sourceRoot":"","sources":["../../src/cmap/metrics.ts"],"names":[],"mappings":";;;AAAA,gBAAgB;AAChB,MAAa,qBAAqB;IAAlC;QAKE,mBAAc,GAAG,CAAC,CAAC;QACnB,sBAAiB,GAAG,CAAC,CAAC;QACtB,qBAAgB,GAAG,CAAC,CAAC;IAiDvB,CAAC;IA/CC;;OAEG;IACH,UAAU,CAAC,OAAe;QACxB,IAAI,OAAO,KAAK,qBAAqB,CAAC,GAAG,EAAE;YACzC,IAAI,CAAC,cAAc,IAAI,CAAC,CAAC;SAC1B;aAAM,IAAI,OAAO,KAAK,qBAAqB,CAAC,MAAM,EAAE;YACnD,IAAI,CAAC,iBAAiB,IAAI,CAAC,CAAC;SAC7B;aAAM;YACL,IAAI,CAAC,gBAAgB,IAAI,CAAC,CAAC;SAC5B;IACH,CAAC;IAED;;OAEG;IACH,YAAY,CAAC,OAAe;QAC1B,IAAI,OAAO,KAAK,qBAAqB,CAAC,GAAG,EAAE;YACzC,IAAI,CAAC,cAAc,IAAI,CAAC,CAAC;SAC1B;aAAM,IAAI,OAAO,KAAK,qBAAqB,CAAC,MAAM,EAAE;YACnD,IAAI,CAAC,iBAAiB,IAAI,CAAC,CAAC;SAC7B;aAAM;YACL,IAAI,CAAC,gBAAgB,IAAI,CAAC,CAAC;SAC5B;IACH,CAAC;IAED;;OAEG;IACH,IAAI,CAAC,WAAmB;QACtB,OAAO,CACL,kEAAkE;YAClE,gBAAgB,WAAW,IAAI;YAC/B,kCAAkC,IAAI,CAAC,iBAAiB,IAAI;YAC5D,uCAAuC,IAAI,CAAC,cAAc,IAAI;YAC9D,2CAA2C,IAAI,CAAC,gBAAgB,EAAE,CACnE,CAAC;IACJ,CAAC;IAED;;OAEG;IACH,KAAK;QACH,IAAI,CAAC,cAAc,GAAG,CAAC,CAAC;QACxB,IAAI,CAAC,iBAAiB,GAAG,CAAC,CAAC;QAC3B,IAAI,CAAC,gBAAgB,GAAG,CAAC,CAAC;IAC5B,CAAC;;AAvDH,sDAwDC;AAvDiB,yBAAG,GAAG,KAAc,CAAC;AACrB,4BAAM,GAAG,QAAiB,CAAC;AAC3B,2BAAK,GAAG,OAAgB,CAAC"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/cmap/stream_description.js b/node_modules/mongodb/lib/cmap/stream_description.js new file mode 100644 index 000000000..4d4eb3293 --- /dev/null +++ b/node_modules/mongodb/lib/cmap/stream_description.js @@ -0,0 +1,51 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.StreamDescription = void 0; +const common_1 = require("../sdam/common"); +const server_description_1 = require("../sdam/server_description"); +const RESPONSE_FIELDS = [ + 'minWireVersion', + 'maxWireVersion', + 'maxBsonObjectSize', + 'maxMessageSizeBytes', + 'maxWriteBatchSize', + 'logicalSessionTimeoutMinutes' +]; +/** @public */ +class StreamDescription { + constructor(address, options) { + this.address = address; + this.type = common_1.ServerType.Unknown; + this.minWireVersion = undefined; + this.maxWireVersion = undefined; + this.maxBsonObjectSize = 16777216; + this.maxMessageSizeBytes = 48000000; + this.maxWriteBatchSize = 100000; + this.logicalSessionTimeoutMinutes = options === null || options === void 0 ? void 0 : options.logicalSessionTimeoutMinutes; + this.loadBalanced = !!(options === null || options === void 0 ? void 0 : options.loadBalanced); + this.compressors = + options && options.compressors && Array.isArray(options.compressors) + ? options.compressors + : []; + } + receiveResponse(response) { + if (response == null) { + return; + } + this.type = (0, server_description_1.parseServerType)(response); + for (const field of RESPONSE_FIELDS) { + if (response[field] != null) { + this[field] = response[field]; + } + // testing case + if ('__nodejs_mock_server__' in response) { + this.__nodejs_mock_server__ = response['__nodejs_mock_server__']; + } + } + if (response.compression) { + this.compressor = this.compressors.filter(c => { var _a; return (_a = response.compression) === null || _a === void 0 ? void 0 : _a.includes(c); })[0]; + } + } +} +exports.StreamDescription = StreamDescription; +//# sourceMappingURL=stream_description.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/cmap/stream_description.js.map b/node_modules/mongodb/lib/cmap/stream_description.js.map new file mode 100644 index 000000000..1cebe013f --- /dev/null +++ b/node_modules/mongodb/lib/cmap/stream_description.js.map @@ -0,0 +1 @@ +{"version":3,"file":"stream_description.js","sourceRoot":"","sources":["../../src/cmap/stream_description.ts"],"names":[],"mappings":";;;AACA,2CAA4C;AAC5C,mEAA6D;AAG7D,MAAM,eAAe,GAAG;IACtB,gBAAgB;IAChB,gBAAgB;IAChB,mBAAmB;IACnB,qBAAqB;IACrB,mBAAmB;IACnB,8BAA8B;CACtB,CAAC;AASX,cAAc;AACd,MAAa,iBAAiB;IAiB5B,YAAY,OAAe,EAAE,OAAkC;QAC7D,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;QACvB,IAAI,CAAC,IAAI,GAAG,mBAAU,CAAC,OAAO,CAAC;QAC/B,IAAI,CAAC,cAAc,GAAG,SAAS,CAAC;QAChC,IAAI,CAAC,cAAc,GAAG,SAAS,CAAC;QAChC,IAAI,CAAC,iBAAiB,GAAG,QAAQ,CAAC;QAClC,IAAI,CAAC,mBAAmB,GAAG,QAAQ,CAAC;QACpC,IAAI,CAAC,iBAAiB,GAAG,MAAM,CAAC;QAChC,IAAI,CAAC,4BAA4B,GAAG,OAAO,aAAP,OAAO,uBAAP,OAAO,CAAE,4BAA4B,CAAC;QAC1E,IAAI,CAAC,YAAY,GAAG,CAAC,CAAC,CAAA,OAAO,aAAP,OAAO,uBAAP,OAAO,CAAE,YAAY,CAAA,CAAC;QAC5C,IAAI,CAAC,WAAW;YACd,OAAO,IAAI,OAAO,CAAC,WAAW,IAAI,KAAK,CAAC,OAAO,CAAC,OAAO,CAAC,WAAW,CAAC;gBAClE,CAAC,CAAC,OAAO,CAAC,WAAW;gBACrB,CAAC,CAAC,EAAE,CAAC;IACX,CAAC;IAED,eAAe,CAAC,QAAyB;QACvC,IAAI,QAAQ,IAAI,IAAI,EAAE;YACpB,OAAO;SACR;QACD,IAAI,CAAC,IAAI,GAAG,IAAA,oCAAe,EAAC,QAAQ,CAAC,CAAC;QACtC,KAAK,MAAM,KAAK,IAAI,eAAe,EAAE;YACnC,IAAI,QAAQ,CAAC,KAAK,CAAC,IAAI,IAAI,EAAE;gBAC3B,IAAI,CAAC,KAAK,CAAC,GAAG,QAAQ,CAAC,KAAK,CAAC,CAAC;aAC/B;YAED,eAAe;YACf,IAAI,wBAAwB,IAAI,QAAQ,EAAE;gBACxC,IAAI,CAAC,sBAAsB,GAAG,QAAQ,CAAC,wBAAwB,CAAC,CAAC;aAClE;SACF;QAED,IAAI,QAAQ,CAAC,WAAW,EAAE;YACxB,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,WAAC,OAAA,MAAA,QAAQ,CAAC,WAAW,0CAAE,QAAQ,CAAC,CAAC,CAAC,CAAA,EAAA,CAAC,CAAC,CAAC,CAAC,CAAC;SACtF;IACH,CAAC;CACF;AArDD,8CAqDC"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/cmap/wire_protocol/compression.js b/node_modules/mongodb/lib/cmap/wire_protocol/compression.js new file mode 100644 index 000000000..e198be865 --- /dev/null +++ b/node_modules/mongodb/lib/cmap/wire_protocol/compression.js @@ -0,0 +1,96 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.decompress = exports.compress = exports.uncompressibleCommands = exports.Compressor = void 0; +const zlib = require("zlib"); +const constants_1 = require("../../constants"); +const deps_1 = require("../../deps"); +const error_1 = require("../../error"); +/** @public */ +exports.Compressor = Object.freeze({ + none: 0, + snappy: 1, + zlib: 2, + zstd: 3 +}); +exports.uncompressibleCommands = new Set([ + constants_1.LEGACY_HELLO_COMMAND, + 'saslStart', + 'saslContinue', + 'getnonce', + 'authenticate', + 'createUser', + 'updateUser', + 'copydbSaslStart', + 'copydbgetnonce', + 'copydb' +]); +const MAX_COMPRESSOR_ID = 3; +const ZSTD_COMPRESSION_LEVEL = 3; +// Facilitate compressing a message using an agreed compressor +function compress(self, dataToBeCompressed, callback) { + const zlibOptions = {}; + switch (self.options.agreedCompressor) { + case 'snappy': { + if ('kModuleError' in deps_1.Snappy) { + return callback(deps_1.Snappy['kModuleError']); + } + if (deps_1.Snappy[deps_1.PKG_VERSION].major <= 6) { + deps_1.Snappy.compress(dataToBeCompressed, callback); + } + else { + deps_1.Snappy.compress(dataToBeCompressed).then(buffer => callback(undefined, buffer), error => callback(error)); + } + break; + } + case 'zlib': + // Determine zlibCompressionLevel + if (self.options.zlibCompressionLevel) { + zlibOptions.level = self.options.zlibCompressionLevel; + } + zlib.deflate(dataToBeCompressed, zlibOptions, callback); + break; + case 'zstd': + if ('kModuleError' in deps_1.ZStandard) { + return callback(deps_1.ZStandard['kModuleError']); + } + deps_1.ZStandard.compress(dataToBeCompressed, ZSTD_COMPRESSION_LEVEL).then(buffer => callback(undefined, buffer), error => callback(error)); + break; + default: + throw new error_1.MongoInvalidArgumentError(`Unknown compressor ${self.options.agreedCompressor} failed to compress`); + } +} +exports.compress = compress; +// Decompress a message using the given compressor +function decompress(compressorID, compressedData, callback) { + if (compressorID < 0 || compressorID > MAX_COMPRESSOR_ID) { + throw new error_1.MongoDecompressionError(`Server sent message compressed using an unsupported compressor. (Received compressor ID ${compressorID})`); + } + switch (compressorID) { + case exports.Compressor.snappy: { + if ('kModuleError' in deps_1.Snappy) { + return callback(deps_1.Snappy['kModuleError']); + } + if (deps_1.Snappy[deps_1.PKG_VERSION].major <= 6) { + deps_1.Snappy.uncompress(compressedData, { asBuffer: true }, callback); + } + else { + deps_1.Snappy.uncompress(compressedData, { asBuffer: true }).then(buffer => callback(undefined, buffer), error => callback(error)); + } + break; + } + case exports.Compressor.zstd: { + if ('kModuleError' in deps_1.ZStandard) { + return callback(deps_1.ZStandard['kModuleError']); + } + deps_1.ZStandard.decompress(compressedData).then(buffer => callback(undefined, buffer), error => callback(error)); + break; + } + case exports.Compressor.zlib: + zlib.inflate(compressedData, callback); + break; + default: + callback(undefined, compressedData); + } +} +exports.decompress = decompress; +//# sourceMappingURL=compression.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/cmap/wire_protocol/compression.js.map b/node_modules/mongodb/lib/cmap/wire_protocol/compression.js.map new file mode 100644 index 000000000..e2ecbbd3e --- /dev/null +++ b/node_modules/mongodb/lib/cmap/wire_protocol/compression.js.map @@ -0,0 +1 @@ +{"version":3,"file":"compression.js","sourceRoot":"","sources":["../../../src/cmap/wire_protocol/compression.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/cmap/wire_protocol/constants.js b/node_modules/mongodb/lib/cmap/wire_protocol/constants.js new file mode 100644 index 000000000..ab10958c4 --- /dev/null +++ b/node_modules/mongodb/lib/cmap/wire_protocol/constants.js @@ -0,0 +1,15 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.OP_MSG = exports.OP_COMPRESSED = exports.OP_DELETE = exports.OP_QUERY = exports.OP_INSERT = exports.OP_UPDATE = exports.OP_REPLY = exports.MAX_SUPPORTED_WIRE_VERSION = exports.MIN_SUPPORTED_WIRE_VERSION = exports.MAX_SUPPORTED_SERVER_VERSION = exports.MIN_SUPPORTED_SERVER_VERSION = void 0; +exports.MIN_SUPPORTED_SERVER_VERSION = '3.6'; +exports.MAX_SUPPORTED_SERVER_VERSION = '6.0'; +exports.MIN_SUPPORTED_WIRE_VERSION = 6; +exports.MAX_SUPPORTED_WIRE_VERSION = 17; +exports.OP_REPLY = 1; +exports.OP_UPDATE = 2001; +exports.OP_INSERT = 2002; +exports.OP_QUERY = 2004; +exports.OP_DELETE = 2006; +exports.OP_COMPRESSED = 2012; +exports.OP_MSG = 2013; +//# sourceMappingURL=constants.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/cmap/wire_protocol/constants.js.map b/node_modules/mongodb/lib/cmap/wire_protocol/constants.js.map new file mode 100644 index 000000000..8974600c4 --- /dev/null +++ b/node_modules/mongodb/lib/cmap/wire_protocol/constants.js.map @@ -0,0 +1 @@ +{"version":3,"file":"constants.js","sourceRoot":"","sources":["../../../src/cmap/wire_protocol/constants.ts"],"names":[],"mappings":";;;AAAa,QAAA,4BAA4B,GAAG,KAAK,CAAC;AACrC,QAAA,4BAA4B,GAAG,KAAK,CAAC;AACrC,QAAA,0BAA0B,GAAG,CAAC,CAAC;AAC/B,QAAA,0BAA0B,GAAG,EAAE,CAAC;AAChC,QAAA,QAAQ,GAAG,CAAC,CAAC;AACb,QAAA,SAAS,GAAG,IAAI,CAAC;AACjB,QAAA,SAAS,GAAG,IAAI,CAAC;AACjB,QAAA,QAAQ,GAAG,IAAI,CAAC;AAChB,QAAA,SAAS,GAAG,IAAI,CAAC;AACjB,QAAA,aAAa,GAAG,IAAI,CAAC;AACrB,QAAA,MAAM,GAAG,IAAI,CAAC"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/cmap/wire_protocol/shared.js b/node_modules/mongodb/lib/cmap/wire_protocol/shared.js new file mode 100644 index 000000000..b5d127828 --- /dev/null +++ b/node_modules/mongodb/lib/cmap/wire_protocol/shared.js @@ -0,0 +1,55 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.isSharded = exports.applyCommonQueryOptions = exports.getReadPreference = void 0; +const error_1 = require("../../error"); +const read_preference_1 = require("../../read_preference"); +const common_1 = require("../../sdam/common"); +const topology_description_1 = require("../../sdam/topology_description"); +function getReadPreference(cmd, options) { + // Default to command version of the readPreference + let readPreference = cmd.readPreference || read_preference_1.ReadPreference.primary; + // If we have an option readPreference override the command one + if (options === null || options === void 0 ? void 0 : options.readPreference) { + readPreference = options.readPreference; + } + if (typeof readPreference === 'string') { + readPreference = read_preference_1.ReadPreference.fromString(readPreference); + } + if (!(readPreference instanceof read_preference_1.ReadPreference)) { + throw new error_1.MongoInvalidArgumentError('Option "readPreference" must be a ReadPreference instance'); + } + return readPreference; +} +exports.getReadPreference = getReadPreference; +function applyCommonQueryOptions(queryOptions, options) { + Object.assign(queryOptions, { + raw: typeof options.raw === 'boolean' ? options.raw : false, + promoteLongs: typeof options.promoteLongs === 'boolean' ? options.promoteLongs : true, + promoteValues: typeof options.promoteValues === 'boolean' ? options.promoteValues : true, + promoteBuffers: typeof options.promoteBuffers === 'boolean' ? options.promoteBuffers : false, + bsonRegExp: typeof options.bsonRegExp === 'boolean' ? options.bsonRegExp : false, + enableUtf8Validation: typeof options.enableUtf8Validation === 'boolean' ? options.enableUtf8Validation : true + }); + if (options.session) { + queryOptions.session = options.session; + } + return queryOptions; +} +exports.applyCommonQueryOptions = applyCommonQueryOptions; +function isSharded(topologyOrServer) { + if (topologyOrServer == null) { + return false; + } + if (topologyOrServer.description && topologyOrServer.description.type === common_1.ServerType.Mongos) { + return true; + } + // NOTE: This is incredibly inefficient, and should be removed once command construction + // happens based on `Server` not `Topology`. + if (topologyOrServer.description && topologyOrServer.description instanceof topology_description_1.TopologyDescription) { + const servers = Array.from(topologyOrServer.description.servers.values()); + return servers.some((server) => server.type === common_1.ServerType.Mongos); + } + return false; +} +exports.isSharded = isSharded; +//# sourceMappingURL=shared.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/cmap/wire_protocol/shared.js.map b/node_modules/mongodb/lib/cmap/wire_protocol/shared.js.map new file mode 100644 index 000000000..2d5b2275f --- /dev/null +++ b/node_modules/mongodb/lib/cmap/wire_protocol/shared.js.map @@ -0,0 +1 @@ +{"version":3,"file":"shared.js","sourceRoot":"","sources":["../../../src/cmap/wire_protocol/shared.ts"],"names":[],"mappings":";;;AACA,uCAAwD;AAExD,2DAAuD;AACvD,8CAA+C;AAI/C,0EAAsE;AAQtE,SAAgB,iBAAiB,CAAC,GAAa,EAAE,OAA8B;IAC7E,mDAAmD;IACnD,IAAI,cAAc,GAAG,GAAG,CAAC,cAAc,IAAI,gCAAc,CAAC,OAAO,CAAC;IAClE,+DAA+D;IAC/D,IAAI,OAAO,aAAP,OAAO,uBAAP,OAAO,CAAE,cAAc,EAAE;QAC3B,cAAc,GAAG,OAAO,CAAC,cAAc,CAAC;KACzC;IAED,IAAI,OAAO,cAAc,KAAK,QAAQ,EAAE;QACtC,cAAc,GAAG,gCAAc,CAAC,UAAU,CAAC,cAAc,CAAC,CAAC;KAC5D;IAED,IAAI,CAAC,CAAC,cAAc,YAAY,gCAAc,CAAC,EAAE;QAC/C,MAAM,IAAI,iCAAyB,CACjC,2DAA2D,CAC5D,CAAC;KACH;IAED,OAAO,cAAc,CAAC;AACxB,CAAC;AAnBD,8CAmBC;AAED,SAAgB,uBAAuB,CACrC,YAA4B,EAC5B,OAAuB;IAEvB,MAAM,CAAC,MAAM,CAAC,YAAY,EAAE;QAC1B,GAAG,EAAE,OAAO,OAAO,CAAC,GAAG,KAAK,SAAS,CAAC,CAAC,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,KAAK;QAC3D,YAAY,EAAE,OAAO,OAAO,CAAC,YAAY,KAAK,SAAS,CAAC,CAAC,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC,CAAC,IAAI;QACrF,aAAa,EAAE,OAAO,OAAO,CAAC,aAAa,KAAK,SAAS,CAAC,CAAC,CAAC,OAAO,CAAC,aAAa,CAAC,CAAC,CAAC,IAAI;QACxF,cAAc,EAAE,OAAO,OAAO,CAAC,cAAc,KAAK,SAAS,CAAC,CAAC,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC,CAAC,KAAK;QAC5F,UAAU,EAAE,OAAO,OAAO,CAAC,UAAU,KAAK,SAAS,CAAC,CAAC,CAAC,OAAO,CAAC,UAAU,CAAC,CAAC,CAAC,KAAK;QAChF,oBAAoB,EAClB,OAAO,OAAO,CAAC,oBAAoB,KAAK,SAAS,CAAC,CAAC,CAAC,OAAO,CAAC,oBAAoB,CAAC,CAAC,CAAC,IAAI;KAC1F,CAAC,CAAC;IAEH,IAAI,OAAO,CAAC,OAAO,EAAE;QACnB,YAAY,CAAC,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC;KACxC;IAED,OAAO,YAAY,CAAC;AACtB,CAAC;AAnBD,0DAmBC;AAED,SAAgB,SAAS,CAAC,gBAAiD;IACzE,IAAI,gBAAgB,IAAI,IAAI,EAAE;QAC5B,OAAO,KAAK,CAAC;KACd;IAED,IAAI,gBAAgB,CAAC,WAAW,IAAI,gBAAgB,CAAC,WAAW,CAAC,IAAI,KAAK,mBAAU,CAAC,MAAM,EAAE;QAC3F,OAAO,IAAI,CAAC;KACb;IAED,wFAAwF;IACxF,kDAAkD;IAClD,IAAI,gBAAgB,CAAC,WAAW,IAAI,gBAAgB,CAAC,WAAW,YAAY,0CAAmB,EAAE;QAC/F,MAAM,OAAO,GAAwB,KAAK,CAAC,IAAI,CAAC,gBAAgB,CAAC,WAAW,CAAC,OAAO,CAAC,MAAM,EAAE,CAAC,CAAC;QAC/F,OAAO,OAAO,CAAC,IAAI,CAAC,CAAC,MAAyB,EAAE,EAAE,CAAC,MAAM,CAAC,IAAI,KAAK,mBAAU,CAAC,MAAM,CAAC,CAAC;KACvF;IAED,OAAO,KAAK,CAAC;AACf,CAAC;AAjBD,8BAiBC"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/collection.js b/node_modules/mongodb/lib/collection.js new file mode 100644 index 000000000..de8e4b57b --- /dev/null +++ b/node_modules/mongodb/lib/collection.js @@ -0,0 +1,535 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.Collection = void 0; +const bson_1 = require("./bson"); +const ordered_1 = require("./bulk/ordered"); +const unordered_1 = require("./bulk/unordered"); +const change_stream_1 = require("./change_stream"); +const aggregation_cursor_1 = require("./cursor/aggregation_cursor"); +const find_cursor_1 = require("./cursor/find_cursor"); +const list_indexes_cursor_1 = require("./cursor/list_indexes_cursor"); +const error_1 = require("./error"); +const bulk_write_1 = require("./operations/bulk_write"); +const count_1 = require("./operations/count"); +const count_documents_1 = require("./operations/count_documents"); +const delete_1 = require("./operations/delete"); +const distinct_1 = require("./operations/distinct"); +const drop_1 = require("./operations/drop"); +const estimated_document_count_1 = require("./operations/estimated_document_count"); +const execute_operation_1 = require("./operations/execute_operation"); +const find_and_modify_1 = require("./operations/find_and_modify"); +const indexes_1 = require("./operations/indexes"); +const insert_1 = require("./operations/insert"); +const is_capped_1 = require("./operations/is_capped"); +const map_reduce_1 = require("./operations/map_reduce"); +const options_operation_1 = require("./operations/options_operation"); +const rename_1 = require("./operations/rename"); +const stats_1 = require("./operations/stats"); +const update_1 = require("./operations/update"); +const read_concern_1 = require("./read_concern"); +const read_preference_1 = require("./read_preference"); +const utils_1 = require("./utils"); +const write_concern_1 = require("./write_concern"); +/** + * The **Collection** class is an internal class that embodies a MongoDB collection + * allowing for insert/find/update/delete and other command operation on that MongoDB collection. + * + * **COLLECTION Cannot directly be instantiated** + * @public + * + * @example + * ```ts + * import { MongoClient } from 'mongodb'; + * + * interface Pet { + * name: string; + * kind: 'dog' | 'cat' | 'fish'; + * } + * + * const client = new MongoClient('mongodb://localhost:27017'); + * const pets = client.db().collection('pets'); + * + * const petCursor = pets.find(); + * + * for await (const pet of petCursor) { + * console.log(`${pet.name} is a ${pet.kind}!`); + * } + * ``` + */ +class Collection { + /** + * Create a new Collection instance + * @internal + */ + constructor(db, name, options) { + var _a, _b; + (0, utils_1.checkCollectionName)(name); + // Internal state + this.s = { + db, + options, + namespace: new utils_1.MongoDBNamespace(db.databaseName, name), + pkFactory: (_b = (_a = db.options) === null || _a === void 0 ? void 0 : _a.pkFactory) !== null && _b !== void 0 ? _b : utils_1.DEFAULT_PK_FACTORY, + readPreference: read_preference_1.ReadPreference.fromOptions(options), + bsonOptions: (0, bson_1.resolveBSONOptions)(options, db), + readConcern: read_concern_1.ReadConcern.fromOptions(options), + writeConcern: write_concern_1.WriteConcern.fromOptions(options) + }; + } + /** + * The name of the database this collection belongs to + */ + get dbName() { + return this.s.namespace.db; + } + /** + * The name of this collection + */ + get collectionName() { + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + return this.s.namespace.collection; + } + /** + * The namespace of this collection, in the format `${this.dbName}.${this.collectionName}` + */ + get namespace() { + return this.s.namespace.toString(); + } + /** + * The current readConcern of the collection. If not explicitly defined for + * this collection, will be inherited from the parent DB + */ + get readConcern() { + if (this.s.readConcern == null) { + return this.s.db.readConcern; + } + return this.s.readConcern; + } + /** + * The current readPreference of the collection. If not explicitly defined for + * this collection, will be inherited from the parent DB + */ + get readPreference() { + if (this.s.readPreference == null) { + return this.s.db.readPreference; + } + return this.s.readPreference; + } + get bsonOptions() { + return this.s.bsonOptions; + } + /** + * The current writeConcern of the collection. If not explicitly defined for + * this collection, will be inherited from the parent DB + */ + get writeConcern() { + if (this.s.writeConcern == null) { + return this.s.db.writeConcern; + } + return this.s.writeConcern; + } + /** The current index hint for the collection */ + get hint() { + return this.s.collectionHint; + } + set hint(v) { + this.s.collectionHint = (0, utils_1.normalizeHintField)(v); + } + insertOne(doc, options, callback) { + if (typeof options === 'function') { + callback = options; + options = {}; + } + // CSFLE passes in { w: 'majority' } to ensure the lib works in both 3.x and 4.x + // we support that option style here only + if (options && Reflect.get(options, 'w')) { + options.writeConcern = write_concern_1.WriteConcern.fromOptions(Reflect.get(options, 'w')); + } + return (0, execute_operation_1.executeOperation)(this.s.db.s.client, new insert_1.InsertOneOperation(this, doc, (0, utils_1.resolveOptions)(this, options)), callback); + } + insertMany(docs, options, callback) { + if (typeof options === 'function') + (callback = options), (options = {}); + options = options ? Object.assign({}, options) : { ordered: true }; + return (0, execute_operation_1.executeOperation)(this.s.db.s.client, new insert_1.InsertManyOperation(this, docs, (0, utils_1.resolveOptions)(this, options)), callback); + } + bulkWrite(operations, options, callback) { + if (typeof options === 'function') + (callback = options), (options = {}); + options = options || { ordered: true }; + if (!Array.isArray(operations)) { + throw new error_1.MongoInvalidArgumentError('Argument "operations" must be an array of documents'); + } + return (0, execute_operation_1.executeOperation)(this.s.db.s.client, new bulk_write_1.BulkWriteOperation(this, operations, (0, utils_1.resolveOptions)(this, options)), callback); + } + updateOne(filter, update, options, callback) { + if (typeof options === 'function') + (callback = options), (options = {}); + return (0, execute_operation_1.executeOperation)(this.s.db.s.client, new update_1.UpdateOneOperation(this, filter, update, (0, utils_1.resolveOptions)(this, options)), callback); + } + replaceOne(filter, replacement, options, callback) { + if (typeof options === 'function') + (callback = options), (options = {}); + return (0, execute_operation_1.executeOperation)(this.s.db.s.client, new update_1.ReplaceOneOperation(this, filter, replacement, (0, utils_1.resolveOptions)(this, options)), callback); + } + updateMany(filter, update, options, callback) { + if (typeof options === 'function') + (callback = options), (options = {}); + return (0, execute_operation_1.executeOperation)(this.s.db.s.client, new update_1.UpdateManyOperation(this, filter, update, (0, utils_1.resolveOptions)(this, options)), callback); + } + deleteOne(filter, options, callback) { + if (typeof options === 'function') + (callback = options), (options = {}); + return (0, execute_operation_1.executeOperation)(this.s.db.s.client, new delete_1.DeleteOneOperation(this, filter, (0, utils_1.resolveOptions)(this, options)), callback); + } + deleteMany(filter, options, callback) { + if (filter == null) { + filter = {}; + options = {}; + callback = undefined; + } + else if (typeof filter === 'function') { + callback = filter; + filter = {}; + options = {}; + } + else if (typeof options === 'function') { + callback = options; + options = {}; + } + return (0, execute_operation_1.executeOperation)(this.s.db.s.client, new delete_1.DeleteManyOperation(this, filter, (0, utils_1.resolveOptions)(this, options)), callback); + } + rename(newName, options, callback) { + if (typeof options === 'function') + (callback = options), (options = {}); + // Intentionally, we do not inherit options from parent for this operation. + return (0, execute_operation_1.executeOperation)(this.s.db.s.client, new rename_1.RenameOperation(this, newName, { + ...options, + readPreference: read_preference_1.ReadPreference.PRIMARY + }), callback); + } + drop(options, callback) { + if (typeof options === 'function') + (callback = options), (options = {}); + options = options !== null && options !== void 0 ? options : {}; + return (0, execute_operation_1.executeOperation)(this.s.db.s.client, new drop_1.DropCollectionOperation(this.s.db, this.collectionName, options), callback); + } + findOne(filter, options, callback) { + if (callback != null && typeof callback !== 'function') { + throw new error_1.MongoInvalidArgumentError('Third parameter to `findOne()` must be a callback or undefined'); + } + if (typeof filter === 'function') { + callback = filter; + filter = {}; + options = {}; + } + if (typeof options === 'function') { + callback = options; + options = {}; + } + const finalFilter = filter !== null && filter !== void 0 ? filter : {}; + const finalOptions = options !== null && options !== void 0 ? options : {}; + return this.find(finalFilter, finalOptions).limit(-1).batchSize(1).next(callback); + } + find(filter, options) { + if (arguments.length > 2) { + throw new error_1.MongoInvalidArgumentError('Method "collection.find()" accepts at most two arguments'); + } + if (typeof options === 'function') { + throw new error_1.MongoInvalidArgumentError('Argument "options" must not be function'); + } + return new find_cursor_1.FindCursor(this.s.db.s.client, this.s.namespace, filter, (0, utils_1.resolveOptions)(this, options)); + } + options(options, callback) { + if (typeof options === 'function') + (callback = options), (options = {}); + return (0, execute_operation_1.executeOperation)(this.s.db.s.client, new options_operation_1.OptionsOperation(this, (0, utils_1.resolveOptions)(this, options)), callback); + } + isCapped(options, callback) { + if (typeof options === 'function') + (callback = options), (options = {}); + return (0, execute_operation_1.executeOperation)(this.s.db.s.client, new is_capped_1.IsCappedOperation(this, (0, utils_1.resolveOptions)(this, options)), callback); + } + createIndex(indexSpec, options, callback) { + if (typeof options === 'function') + (callback = options), (options = {}); + return (0, execute_operation_1.executeOperation)(this.s.db.s.client, new indexes_1.CreateIndexOperation(this, this.collectionName, indexSpec, (0, utils_1.resolveOptions)(this, options)), callback); + } + createIndexes(indexSpecs, options, callback) { + if (typeof options === 'function') + (callback = options), (options = {}); + options = options ? Object.assign({}, options) : {}; + if (typeof options.maxTimeMS !== 'number') + delete options.maxTimeMS; + return (0, execute_operation_1.executeOperation)(this.s.db.s.client, new indexes_1.CreateIndexesOperation(this, this.collectionName, indexSpecs, (0, utils_1.resolveOptions)(this, options)), callback); + } + dropIndex(indexName, options, callback) { + if (typeof options === 'function') + (callback = options), (options = {}); + options = (0, utils_1.resolveOptions)(this, options); + // Run only against primary + options.readPreference = read_preference_1.ReadPreference.primary; + return (0, execute_operation_1.executeOperation)(this.s.db.s.client, new indexes_1.DropIndexOperation(this, indexName, options), callback); + } + dropIndexes(options, callback) { + if (typeof options === 'function') + (callback = options), (options = {}); + return (0, execute_operation_1.executeOperation)(this.s.db.s.client, new indexes_1.DropIndexesOperation(this, (0, utils_1.resolveOptions)(this, options)), callback); + } + /** + * Get the list of all indexes information for the collection. + * + * @param options - Optional settings for the command + */ + listIndexes(options) { + return new list_indexes_cursor_1.ListIndexesCursor(this, (0, utils_1.resolveOptions)(this, options)); + } + indexExists(indexes, options, callback) { + if (typeof options === 'function') + (callback = options), (options = {}); + return (0, execute_operation_1.executeOperation)(this.s.db.s.client, new indexes_1.IndexExistsOperation(this, indexes, (0, utils_1.resolveOptions)(this, options)), callback); + } + indexInformation(options, callback) { + if (typeof options === 'function') + (callback = options), (options = {}); + return (0, execute_operation_1.executeOperation)(this.s.db.s.client, new indexes_1.IndexInformationOperation(this.s.db, this.collectionName, (0, utils_1.resolveOptions)(this, options)), callback); + } + estimatedDocumentCount(options, callback) { + if (typeof options === 'function') + (callback = options), (options = {}); + return (0, execute_operation_1.executeOperation)(this.s.db.s.client, new estimated_document_count_1.EstimatedDocumentCountOperation(this, (0, utils_1.resolveOptions)(this, options)), callback); + } + countDocuments(filter, options, callback) { + if (filter == null) { + (filter = {}), (options = {}), (callback = undefined); + } + else if (typeof filter === 'function') { + (callback = filter), (filter = {}), (options = {}); + } + else { + if (arguments.length === 2) { + if (typeof options === 'function') + (callback = options), (options = {}); + } + } + filter !== null && filter !== void 0 ? filter : (filter = {}); + return (0, execute_operation_1.executeOperation)(this.s.db.s.client, new count_documents_1.CountDocumentsOperation(this, filter, (0, utils_1.resolveOptions)(this, options)), callback); + } + // Implementation + distinct(key, filter, options, callback) { + if (typeof filter === 'function') { + (callback = filter), (filter = {}), (options = {}); + } + else { + if (arguments.length === 3 && typeof options === 'function') { + (callback = options), (options = {}); + } + } + filter !== null && filter !== void 0 ? filter : (filter = {}); + return (0, execute_operation_1.executeOperation)(this.s.db.s.client, new distinct_1.DistinctOperation(this, key, filter, (0, utils_1.resolveOptions)(this, options)), callback); + } + indexes(options, callback) { + if (typeof options === 'function') + (callback = options), (options = {}); + return (0, execute_operation_1.executeOperation)(this.s.db.s.client, new indexes_1.IndexesOperation(this, (0, utils_1.resolveOptions)(this, options)), callback); + } + stats(options, callback) { + if (typeof options === 'function') + (callback = options), (options = {}); + options = options !== null && options !== void 0 ? options : {}; + return (0, execute_operation_1.executeOperation)(this.s.db.s.client, new stats_1.CollStatsOperation(this, options), callback); + } + findOneAndDelete(filter, options, callback) { + if (typeof options === 'function') + (callback = options), (options = {}); + return (0, execute_operation_1.executeOperation)(this.s.db.s.client, new find_and_modify_1.FindOneAndDeleteOperation(this, filter, (0, utils_1.resolveOptions)(this, options)), callback); + } + findOneAndReplace(filter, replacement, options, callback) { + if (typeof options === 'function') + (callback = options), (options = {}); + return (0, execute_operation_1.executeOperation)(this.s.db.s.client, new find_and_modify_1.FindOneAndReplaceOperation(this, filter, replacement, (0, utils_1.resolveOptions)(this, options)), callback); + } + findOneAndUpdate(filter, update, options, callback) { + if (typeof options === 'function') + (callback = options), (options = {}); + return (0, execute_operation_1.executeOperation)(this.s.db.s.client, new find_and_modify_1.FindOneAndUpdateOperation(this, filter, update, (0, utils_1.resolveOptions)(this, options)), callback); + } + /** + * Execute an aggregation framework pipeline against the collection, needs MongoDB \>= 2.2 + * + * @param pipeline - An array of aggregation pipelines to execute + * @param options - Optional settings for the command + */ + aggregate(pipeline = [], options) { + if (arguments.length > 2) { + throw new error_1.MongoInvalidArgumentError('Method "collection.aggregate()" accepts at most two arguments'); + } + if (!Array.isArray(pipeline)) { + throw new error_1.MongoInvalidArgumentError('Argument "pipeline" must be an array of aggregation stages'); + } + if (typeof options === 'function') { + throw new error_1.MongoInvalidArgumentError('Argument "options" must not be function'); + } + return new aggregation_cursor_1.AggregationCursor(this.s.db.s.client, this.s.namespace, pipeline, (0, utils_1.resolveOptions)(this, options)); + } + /** + * Create a new Change Stream, watching for new changes (insertions, updates, replacements, deletions, and invalidations) in this collection. + * + * @remarks + * watch() accepts two generic arguments for distinct usecases: + * - The first is to override the schema that may be defined for this specific collection + * - The second is to override the shape of the change stream document entirely, if it is not provided the type will default to ChangeStreamDocument of the first argument + * @example + * By just providing the first argument I can type the change to be `ChangeStreamDocument<{ _id: number }>` + * ```ts + * collection.watch<{ _id: number }>() + * .on('change', change => console.log(change._id.toFixed(4))); + * ``` + * + * @example + * Passing a second argument provides a way to reflect the type changes caused by an advanced pipeline. + * Here, we are using a pipeline to have MongoDB filter for insert changes only and add a comment. + * No need start from scratch on the ChangeStreamInsertDocument type! + * By using an intersection we can save time and ensure defaults remain the same type! + * ```ts + * collection + * .watch & { comment: string }>([ + * { $addFields: { comment: 'big changes' } }, + * { $match: { operationType: 'insert' } } + * ]) + * .on('change', change => { + * change.comment.startsWith('big'); + * change.operationType === 'insert'; + * // No need to narrow in code because the generics did that for us! + * expectType(change.fullDocument); + * }); + * ``` + * + * @param pipeline - An array of {@link https://docs.mongodb.com/manual/reference/operator/aggregation-pipeline/|aggregation pipeline stages} through which to pass change stream documents. This allows for filtering (using $match) and manipulating the change stream documents. + * @param options - Optional settings for the command + * @typeParam TLocal - Type of the data being detected by the change stream + * @typeParam TChange - Type of the whole change stream document emitted + */ + watch(pipeline = [], options = {}) { + // Allow optionally not specifying a pipeline + if (!Array.isArray(pipeline)) { + options = pipeline; + pipeline = []; + } + return new change_stream_1.ChangeStream(this, pipeline, (0, utils_1.resolveOptions)(this, options)); + } + mapReduce(map, reduce, options, callback) { + (0, utils_1.emitWarningOnce)('collection.mapReduce is deprecated. Use the aggregation pipeline instead. Visit https://docs.mongodb.com/manual/reference/map-reduce-to-aggregation-pipeline for more information on how to translate map-reduce operations to the aggregation pipeline.'); + if ('function' === typeof options) + (callback = options), (options = {}); + // Out must always be defined (make sure we don't break weirdly on pre 1.8+ servers) + // TODO NODE-3339: Figure out if this is still necessary given we no longer officially support pre-1.8 + if ((options === null || options === void 0 ? void 0 : options.out) == null) { + throw new error_1.MongoInvalidArgumentError('Option "out" must be defined, see mongodb docs for possible values'); + } + if ('function' === typeof map) { + map = map.toString(); + } + if ('function' === typeof reduce) { + reduce = reduce.toString(); + } + if ('function' === typeof options.finalize) { + options.finalize = options.finalize.toString(); + } + return (0, execute_operation_1.executeOperation)(this.s.db.s.client, new map_reduce_1.MapReduceOperation(this, map, reduce, (0, utils_1.resolveOptions)(this, options)), callback); + } + /** + * Initiate an Out of order batch write operation. All operations will be buffered into insert/update/remove commands executed out of order. + * + * @throws MongoNotConnectedError + * @remarks + * **NOTE:** MongoClient must be connected prior to calling this method due to a known limitation in this legacy implemenation. + * However, `collection.bulkWrite()` provides an equivalent API that does not require prior connecting. + */ + initializeUnorderedBulkOp(options) { + return new unordered_1.UnorderedBulkOperation(this, (0, utils_1.resolveOptions)(this, options)); + } + /** + * Initiate an In order bulk write operation. Operations will be serially executed in the order they are added, creating a new operation for each switch in types. + * + * @throws MongoNotConnectedError + * @remarks + * **NOTE:** MongoClient must be connected prior to calling this method due to a known limitation in this legacy implemenation. + * However, `collection.bulkWrite()` provides an equivalent API that does not require prior connecting. + */ + initializeOrderedBulkOp(options) { + return new ordered_1.OrderedBulkOperation(this, (0, utils_1.resolveOptions)(this, options)); + } + /** Get the db scoped logger */ + getLogger() { + return this.s.db.s.logger; + } + get logger() { + return this.s.db.s.logger; + } + /** + * Inserts a single document or a an array of documents into MongoDB. If documents passed in do not contain the **_id** field, + * one will be added to each of the documents missing it by the driver, mutating the document. This behavior + * can be overridden by setting the **forceServerObjectId** flag. + * + * @deprecated Use insertOne, insertMany or bulkWrite instead. Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance + * @param docs - The documents to insert + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + insert(docs, options, callback) { + (0, utils_1.emitWarningOnce)('collection.insert is deprecated. Use insertOne, insertMany or bulkWrite instead.'); + if (typeof options === 'function') + (callback = options), (options = {}); + options = options || { ordered: false }; + docs = !Array.isArray(docs) ? [docs] : docs; + if (options.keepGoing === true) { + options.ordered = false; + } + return this.insertMany(docs, options, callback); + } + /** + * Updates documents. + * + * @deprecated use updateOne, updateMany or bulkWrite. Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance + * @param filter - The filter for the update operation. + * @param update - The update operations to be applied to the documents + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + update(filter, update, options, callback) { + (0, utils_1.emitWarningOnce)('collection.update is deprecated. Use updateOne, updateMany, or bulkWrite instead.'); + if (typeof options === 'function') + (callback = options), (options = {}); + options = options !== null && options !== void 0 ? options : {}; + return this.updateMany(filter, update, options, callback); + } + /** + * Remove documents. + * + * @deprecated use deleteOne, deleteMany or bulkWrite. Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance + * @param filter - The filter for the remove operation. + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + remove(filter, options, callback) { + (0, utils_1.emitWarningOnce)('collection.remove is deprecated. Use deleteOne, deleteMany, or bulkWrite instead.'); + if (typeof options === 'function') + (callback = options), (options = {}); + options = options !== null && options !== void 0 ? options : {}; + return this.deleteMany(filter, options, callback); + } + count(filter, options, callback) { + if (typeof filter === 'function') { + (callback = filter), (filter = {}), (options = {}); + } + else { + if (typeof options === 'function') + (callback = options), (options = {}); + } + filter !== null && filter !== void 0 ? filter : (filter = {}); + return (0, execute_operation_1.executeOperation)(this.s.db.s.client, new count_1.CountOperation(utils_1.MongoDBNamespace.fromString(this.namespace), filter, (0, utils_1.resolveOptions)(this, options)), callback); + } +} +exports.Collection = Collection; +//# sourceMappingURL=collection.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/collection.js.map b/node_modules/mongodb/lib/collection.js.map new file mode 100644 index 000000000..27de05035 --- /dev/null +++ b/node_modules/mongodb/lib/collection.js.map @@ -0,0 +1 @@ +{"version":3,"file":"collection.js","sourceRoot":"","sources":["../src/collection.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/connection_string.js b/node_modules/mongodb/lib/connection_string.js new file mode 100644 index 000000000..a02b7483b --- /dev/null +++ b/node_modules/mongodb/lib/connection_string.js @@ -0,0 +1,1098 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.FEATURE_FLAGS = exports.DEFAULT_OPTIONS = exports.OPTIONS = exports.parseOptions = exports.checkTLSOptions = exports.resolveSRVRecord = void 0; +const dns = require("dns"); +const fs = require("fs"); +const mongodb_connection_string_url_1 = require("mongodb-connection-string-url"); +const url_1 = require("url"); +const mongo_credentials_1 = require("./cmap/auth/mongo_credentials"); +const providers_1 = require("./cmap/auth/providers"); +const compression_1 = require("./cmap/wire_protocol/compression"); +const encrypter_1 = require("./encrypter"); +const error_1 = require("./error"); +const logger_1 = require("./logger"); +const mongo_client_1 = require("./mongo_client"); +const promise_provider_1 = require("./promise_provider"); +const read_concern_1 = require("./read_concern"); +const read_preference_1 = require("./read_preference"); +const utils_1 = require("./utils"); +const write_concern_1 = require("./write_concern"); +const VALID_TXT_RECORDS = ['authSource', 'replicaSet', 'loadBalanced']; +const LB_SINGLE_HOST_ERROR = 'loadBalanced option only supported with a single host in the URI'; +const LB_REPLICA_SET_ERROR = 'loadBalanced option not supported with a replicaSet option'; +const LB_DIRECT_CONNECTION_ERROR = 'loadBalanced option not supported when directConnection is provided'; +/** + * Determines whether a provided address matches the provided parent domain in order + * to avoid certain attack vectors. + * + * @param srvAddress - The address to check against a domain + * @param parentDomain - The domain to check the provided address against + * @returns Whether the provided address matches the parent domain + */ +function matchesParentDomain(srvAddress, parentDomain) { + const regex = /^.*?\./; + const srv = `.${srvAddress.replace(regex, '')}`; + const parent = `.${parentDomain.replace(regex, '')}`; + return srv.endsWith(parent); +} +/** + * Lookup a `mongodb+srv` connection string, combine the parts and reparse it as a normal + * connection string. + * + * @param uri - The connection string to parse + * @param options - Optional user provided connection string options + */ +function resolveSRVRecord(options, callback) { + if (typeof options.srvHost !== 'string') { + return callback(new error_1.MongoAPIError('Option "srvHost" must not be empty')); + } + if (options.srvHost.split('.').length < 3) { + // TODO(NODE-3484): Replace with MongoConnectionStringError + return callback(new error_1.MongoAPIError('URI must include hostname, domain name, and tld')); + } + // Resolve the SRV record and use the result as the list of hosts to connect to. + const lookupAddress = options.srvHost; + dns.resolveSrv(`_${options.srvServiceName}._tcp.${lookupAddress}`, (err, addresses) => { + if (err) + return callback(err); + if (addresses.length === 0) { + return callback(new error_1.MongoAPIError('No addresses found at host')); + } + for (const { name } of addresses) { + if (!matchesParentDomain(name, lookupAddress)) { + return callback(new error_1.MongoAPIError('Server record does not share hostname with parent URI')); + } + } + const hostAddresses = addresses.map(r => { var _a; return utils_1.HostAddress.fromString(`${r.name}:${(_a = r.port) !== null && _a !== void 0 ? _a : 27017}`); }); + const lbError = validateLoadBalancedOptions(hostAddresses, options, true); + if (lbError) { + return callback(lbError); + } + // Resolve TXT record and add options from there if they exist. + dns.resolveTxt(lookupAddress, (err, record) => { + var _a, _b, _c; + if (err) { + if (err.code !== 'ENODATA' && err.code !== 'ENOTFOUND') { + return callback(err); + } + } + else { + if (record.length > 1) { + return callback(new error_1.MongoParseError('Multiple text records not allowed')); + } + const txtRecordOptions = new url_1.URLSearchParams(record[0].join('')); + const txtRecordOptionKeys = [...txtRecordOptions.keys()]; + if (txtRecordOptionKeys.some(key => !VALID_TXT_RECORDS.includes(key))) { + return callback(new error_1.MongoParseError(`Text record may only set any of: ${VALID_TXT_RECORDS.join(', ')}`)); + } + if (VALID_TXT_RECORDS.some(option => txtRecordOptions.get(option) === '')) { + return callback(new error_1.MongoParseError('Cannot have empty URI params in DNS TXT Record')); + } + const source = (_a = txtRecordOptions.get('authSource')) !== null && _a !== void 0 ? _a : undefined; + const replicaSet = (_b = txtRecordOptions.get('replicaSet')) !== null && _b !== void 0 ? _b : undefined; + const loadBalanced = (_c = txtRecordOptions.get('loadBalanced')) !== null && _c !== void 0 ? _c : undefined; + if (!options.userSpecifiedAuthSource && + source && + options.credentials && + !providers_1.AUTH_MECHS_AUTH_SRC_EXTERNAL.has(options.credentials.mechanism)) { + options.credentials = mongo_credentials_1.MongoCredentials.merge(options.credentials, { source }); + } + if (!options.userSpecifiedReplicaSet && replicaSet) { + options.replicaSet = replicaSet; + } + if (loadBalanced === 'true') { + options.loadBalanced = true; + } + if (options.replicaSet && options.srvMaxHosts > 0) { + return callback(new error_1.MongoParseError('Cannot combine replicaSet option with srvMaxHosts')); + } + const lbError = validateLoadBalancedOptions(hostAddresses, options, true); + if (lbError) { + return callback(lbError); + } + } + callback(undefined, hostAddresses); + }); + }); +} +exports.resolveSRVRecord = resolveSRVRecord; +/** + * Checks if TLS options are valid + * + * @param options - The options used for options parsing + * @throws MongoParseError if TLS options are invalid + */ +function checkTLSOptions(options) { + if (!options) + return; + const check = (a, b) => { + if (Reflect.has(options, a) && Reflect.has(options, b)) { + throw new error_1.MongoParseError(`The '${a}' option cannot be used with '${b}'`); + } + }; + check('tlsInsecure', 'tlsAllowInvalidCertificates'); + check('tlsInsecure', 'tlsAllowInvalidHostnames'); + check('tlsInsecure', 'tlsDisableCertificateRevocationCheck'); + check('tlsInsecure', 'tlsDisableOCSPEndpointCheck'); + check('tlsAllowInvalidCertificates', 'tlsDisableCertificateRevocationCheck'); + check('tlsAllowInvalidCertificates', 'tlsDisableOCSPEndpointCheck'); + check('tlsDisableCertificateRevocationCheck', 'tlsDisableOCSPEndpointCheck'); +} +exports.checkTLSOptions = checkTLSOptions; +const TRUTHS = new Set(['true', 't', '1', 'y', 'yes']); +const FALSEHOODS = new Set(['false', 'f', '0', 'n', 'no', '-1']); +function getBoolean(name, value) { + if (typeof value === 'boolean') + return value; + const valueString = String(value).toLowerCase(); + if (TRUTHS.has(valueString)) { + if (valueString !== 'true') { + (0, utils_1.emitWarningOnce)(`deprecated value for ${name} : ${valueString} - please update to ${name} : true instead`); + } + return true; + } + if (FALSEHOODS.has(valueString)) { + if (valueString !== 'false') { + (0, utils_1.emitWarningOnce)(`deprecated value for ${name} : ${valueString} - please update to ${name} : false instead`); + } + return false; + } + throw new error_1.MongoParseError(`Expected ${name} to be stringified boolean value, got: ${value}`); +} +function getInt(name, value) { + if (typeof value === 'number') + return Math.trunc(value); + const parsedValue = Number.parseInt(String(value), 10); + if (!Number.isNaN(parsedValue)) + return parsedValue; + throw new error_1.MongoParseError(`Expected ${name} to be stringified int value, got: ${value}`); +} +function getUint(name, value) { + const parsedValue = getInt(name, value); + if (parsedValue < 0) { + throw new error_1.MongoParseError(`${name} can only be a positive int value, got: ${value}`); + } + return parsedValue; +} +function* entriesFromString(value) { + const keyValuePairs = value.split(','); + for (const keyValue of keyValuePairs) { + const [key, value] = keyValue.split(':'); + if (value == null) { + throw new error_1.MongoParseError('Cannot have undefined values in key value pairs'); + } + yield [key, value]; + } +} +class CaseInsensitiveMap extends Map { + constructor(entries = []) { + super(entries.map(([k, v]) => [k.toLowerCase(), v])); + } + has(k) { + return super.has(k.toLowerCase()); + } + get(k) { + return super.get(k.toLowerCase()); + } + set(k, v) { + return super.set(k.toLowerCase(), v); + } + delete(k) { + return super.delete(k.toLowerCase()); + } +} +function parseOptions(uri, mongoClient = undefined, options = {}) { + if (mongoClient != null && !(mongoClient instanceof mongo_client_1.MongoClient)) { + options = mongoClient; + mongoClient = undefined; + } + const url = new mongodb_connection_string_url_1.default(uri); + const { hosts, isSRV } = url; + const mongoOptions = Object.create(null); + // Feature flags + for (const flag of Object.getOwnPropertySymbols(options)) { + if (exports.FEATURE_FLAGS.has(flag)) { + mongoOptions[flag] = options[flag]; + } + } + mongoOptions.hosts = isSRV ? [] : hosts.map(utils_1.HostAddress.fromString); + const urlOptions = new CaseInsensitiveMap(); + if (url.pathname !== '/' && url.pathname !== '') { + const dbName = decodeURIComponent(url.pathname[0] === '/' ? url.pathname.slice(1) : url.pathname); + if (dbName) { + urlOptions.set('dbName', [dbName]); + } + } + if (url.username !== '') { + const auth = { + username: decodeURIComponent(url.username) + }; + if (typeof url.password === 'string') { + auth.password = decodeURIComponent(url.password); + } + urlOptions.set('auth', [auth]); + } + for (const key of url.searchParams.keys()) { + const values = [...url.searchParams.getAll(key)]; + if (values.includes('')) { + throw new error_1.MongoAPIError('URI cannot contain options with no value'); + } + if (!urlOptions.has(key)) { + urlOptions.set(key, values); + } + } + const objectOptions = new CaseInsensitiveMap(Object.entries(options).filter(([, v]) => v != null)); + // Validate options that can only be provided by one of uri or object + if (urlOptions.has('serverApi')) { + throw new error_1.MongoParseError('URI cannot contain `serverApi`, it can only be passed to the client'); + } + if (objectOptions.has('loadBalanced')) { + throw new error_1.MongoParseError('loadBalanced is only a valid option in the URI'); + } + // All option collection + const allOptions = new CaseInsensitiveMap(); + const allKeys = new Set([ + ...urlOptions.keys(), + ...objectOptions.keys(), + ...exports.DEFAULT_OPTIONS.keys() + ]); + for (const key of allKeys) { + const values = []; + const objectOptionValue = objectOptions.get(key); + if (objectOptionValue != null) { + values.push(objectOptionValue); + } + const urlValue = urlOptions.get(key); + if (urlValue != null) { + values.push(...urlValue); + } + const defaultOptionsValue = exports.DEFAULT_OPTIONS.get(key); + if (defaultOptionsValue != null) { + values.push(defaultOptionsValue); + } + allOptions.set(key, values); + } + if (allOptions.has('tlsCertificateKeyFile') && !allOptions.has('tlsCertificateFile')) { + allOptions.set('tlsCertificateFile', allOptions.get('tlsCertificateKeyFile')); + } + if (allOptions.has('tls') || allOptions.has('ssl')) { + const tlsAndSslOpts = (allOptions.get('tls') || []) + .concat(allOptions.get('ssl') || []) + .map(getBoolean.bind(null, 'tls/ssl')); + if (new Set(tlsAndSslOpts).size !== 1) { + throw new error_1.MongoParseError('All values of tls/ssl must be the same.'); + } + } + const unsupportedOptions = (0, utils_1.setDifference)(allKeys, Array.from(Object.keys(exports.OPTIONS)).map(s => s.toLowerCase())); + if (unsupportedOptions.size !== 0) { + const optionWord = unsupportedOptions.size > 1 ? 'options' : 'option'; + const isOrAre = unsupportedOptions.size > 1 ? 'are' : 'is'; + throw new error_1.MongoParseError(`${optionWord} ${Array.from(unsupportedOptions).join(', ')} ${isOrAre} not supported`); + } + // Option parsing and setting + for (const [key, descriptor] of Object.entries(exports.OPTIONS)) { + const values = allOptions.get(key); + if (!values || values.length === 0) + continue; + setOption(mongoOptions, key, descriptor, values); + } + if (mongoOptions.credentials) { + const isGssapi = mongoOptions.credentials.mechanism === providers_1.AuthMechanism.MONGODB_GSSAPI; + const isX509 = mongoOptions.credentials.mechanism === providers_1.AuthMechanism.MONGODB_X509; + const isAws = mongoOptions.credentials.mechanism === providers_1.AuthMechanism.MONGODB_AWS; + if ((isGssapi || isX509) && + allOptions.has('authSource') && + mongoOptions.credentials.source !== '$external') { + // If authSource was explicitly given and its incorrect, we error + throw new error_1.MongoParseError(`${mongoOptions.credentials} can only have authSource set to '$external'`); + } + if (!(isGssapi || isX509 || isAws) && mongoOptions.dbName && !allOptions.has('authSource')) { + // inherit the dbName unless GSSAPI or X509, then silently ignore dbName + // and there was no specific authSource given + mongoOptions.credentials = mongo_credentials_1.MongoCredentials.merge(mongoOptions.credentials, { + source: mongoOptions.dbName + }); + } + if (isAws && mongoOptions.credentials.username && !mongoOptions.credentials.password) { + throw new error_1.MongoMissingCredentialsError(`When using ${mongoOptions.credentials.mechanism} password must be set when a username is specified`); + } + mongoOptions.credentials.validate(); + // Check if the only auth related option provided was authSource, if so we can remove credentials + if (mongoOptions.credentials.password === '' && + mongoOptions.credentials.username === '' && + mongoOptions.credentials.mechanism === providers_1.AuthMechanism.MONGODB_DEFAULT && + Object.keys(mongoOptions.credentials.mechanismProperties).length === 0) { + delete mongoOptions.credentials; + } + } + if (!mongoOptions.dbName) { + // dbName default is applied here because of the credential validation above + mongoOptions.dbName = 'test'; + } + checkTLSOptions(mongoOptions); + if (options.promiseLibrary) { + promise_provider_1.PromiseProvider.set(options.promiseLibrary); + } + const lbError = validateLoadBalancedOptions(hosts, mongoOptions, isSRV); + if (lbError) { + throw lbError; + } + if (mongoClient && mongoOptions.autoEncryption) { + encrypter_1.Encrypter.checkForMongoCrypt(); + mongoOptions.encrypter = new encrypter_1.Encrypter(mongoClient, uri, options); + mongoOptions.autoEncrypter = mongoOptions.encrypter.autoEncrypter; + } + // Potential SRV Overrides and SRV connection string validations + mongoOptions.userSpecifiedAuthSource = + objectOptions.has('authSource') || urlOptions.has('authSource'); + mongoOptions.userSpecifiedReplicaSet = + objectOptions.has('replicaSet') || urlOptions.has('replicaSet'); + if (isSRV) { + // SRV Record is resolved upon connecting + mongoOptions.srvHost = hosts[0]; + if (mongoOptions.directConnection) { + throw new error_1.MongoAPIError('SRV URI does not support directConnection'); + } + if (mongoOptions.srvMaxHosts > 0 && typeof mongoOptions.replicaSet === 'string') { + throw new error_1.MongoParseError('Cannot use srvMaxHosts option with replicaSet'); + } + // SRV turns on TLS by default, but users can override and turn it off + const noUserSpecifiedTLS = !objectOptions.has('tls') && !urlOptions.has('tls'); + const noUserSpecifiedSSL = !objectOptions.has('ssl') && !urlOptions.has('ssl'); + if (noUserSpecifiedTLS && noUserSpecifiedSSL) { + mongoOptions.tls = true; + } + } + else { + const userSpecifiedSrvOptions = urlOptions.has('srvMaxHosts') || + objectOptions.has('srvMaxHosts') || + urlOptions.has('srvServiceName') || + objectOptions.has('srvServiceName'); + if (userSpecifiedSrvOptions) { + throw new error_1.MongoParseError('Cannot use srvMaxHosts or srvServiceName with a non-srv connection string'); + } + } + if (mongoOptions.directConnection && mongoOptions.hosts.length !== 1) { + throw new error_1.MongoParseError('directConnection option requires exactly one host'); + } + if (!mongoOptions.proxyHost && + (mongoOptions.proxyPort || mongoOptions.proxyUsername || mongoOptions.proxyPassword)) { + throw new error_1.MongoParseError('Must specify proxyHost if other proxy options are passed'); + } + if ((mongoOptions.proxyUsername && !mongoOptions.proxyPassword) || + (!mongoOptions.proxyUsername && mongoOptions.proxyPassword)) { + throw new error_1.MongoParseError('Can only specify both of proxy username/password or neither'); + } + const proxyOptions = ['proxyHost', 'proxyPort', 'proxyUsername', 'proxyPassword'].map(key => { var _a; return (_a = urlOptions.get(key)) !== null && _a !== void 0 ? _a : []; }); + if (proxyOptions.some(options => options.length > 1)) { + throw new error_1.MongoParseError('Proxy options cannot be specified multiple times in the connection string'); + } + return mongoOptions; +} +exports.parseOptions = parseOptions; +function validateLoadBalancedOptions(hosts, mongoOptions, isSrv) { + if (mongoOptions.loadBalanced) { + if (hosts.length > 1) { + return new error_1.MongoParseError(LB_SINGLE_HOST_ERROR); + } + if (mongoOptions.replicaSet) { + return new error_1.MongoParseError(LB_REPLICA_SET_ERROR); + } + if (mongoOptions.directConnection) { + return new error_1.MongoParseError(LB_DIRECT_CONNECTION_ERROR); + } + if (isSrv && mongoOptions.srvMaxHosts > 0) { + return new error_1.MongoParseError('Cannot limit srv hosts with loadBalanced enabled'); + } + } + return; +} +function setOption(mongoOptions, key, descriptor, values) { + const { target, type, transform, deprecated } = descriptor; + const name = target !== null && target !== void 0 ? target : key; + if (deprecated) { + const deprecatedMsg = typeof deprecated === 'string' ? `: ${deprecated}` : ''; + (0, utils_1.emitWarning)(`${key} is a deprecated option${deprecatedMsg}`); + } + switch (type) { + case 'boolean': + mongoOptions[name] = getBoolean(name, values[0]); + break; + case 'int': + mongoOptions[name] = getInt(name, values[0]); + break; + case 'uint': + mongoOptions[name] = getUint(name, values[0]); + break; + case 'string': + if (values[0] == null) { + break; + } + mongoOptions[name] = String(values[0]); + break; + case 'record': + if (!(0, utils_1.isRecord)(values[0])) { + throw new error_1.MongoParseError(`${name} must be an object`); + } + mongoOptions[name] = values[0]; + break; + case 'any': + mongoOptions[name] = values[0]; + break; + default: { + if (!transform) { + throw new error_1.MongoParseError('Descriptors missing a type must define a transform'); + } + const transformValue = transform({ name, options: mongoOptions, values }); + mongoOptions[name] = transformValue; + break; + } + } +} +exports.OPTIONS = { + appName: { + target: 'metadata', + transform({ options, values: [value] }) { + return (0, utils_1.makeClientMetadata)({ ...options.driverInfo, appName: String(value) }); + } + }, + auth: { + target: 'credentials', + transform({ name, options, values: [value] }) { + if (!(0, utils_1.isRecord)(value, ['username', 'password'])) { + throw new error_1.MongoParseError(`${name} must be an object with 'username' and 'password' properties`); + } + return mongo_credentials_1.MongoCredentials.merge(options.credentials, { + username: value.username, + password: value.password + }); + } + }, + authMechanism: { + target: 'credentials', + transform({ options, values: [value] }) { + var _a, _b; + const mechanisms = Object.values(providers_1.AuthMechanism); + const [mechanism] = mechanisms.filter(m => m.match(RegExp(String.raw `\b${value}\b`, 'i'))); + if (!mechanism) { + throw new error_1.MongoParseError(`authMechanism one of ${mechanisms}, got ${value}`); + } + let source = (_a = options.credentials) === null || _a === void 0 ? void 0 : _a.source; + if (mechanism === providers_1.AuthMechanism.MONGODB_PLAIN || + providers_1.AUTH_MECHS_AUTH_SRC_EXTERNAL.has(mechanism)) { + // some mechanisms have '$external' as the Auth Source + source = '$external'; + } + let password = (_b = options.credentials) === null || _b === void 0 ? void 0 : _b.password; + if (mechanism === providers_1.AuthMechanism.MONGODB_X509 && password === '') { + password = undefined; + } + return mongo_credentials_1.MongoCredentials.merge(options.credentials, { + mechanism, + source, + password + }); + } + }, + authMechanismProperties: { + target: 'credentials', + transform({ options, values: [optionValue] }) { + if (typeof optionValue === 'string') { + const mechanismProperties = Object.create(null); + for (const [key, value] of entriesFromString(optionValue)) { + try { + mechanismProperties[key] = getBoolean(key, value); + } + catch { + mechanismProperties[key] = value; + } + } + return mongo_credentials_1.MongoCredentials.merge(options.credentials, { + mechanismProperties + }); + } + if (!(0, utils_1.isRecord)(optionValue)) { + throw new error_1.MongoParseError('AuthMechanismProperties must be an object'); + } + return mongo_credentials_1.MongoCredentials.merge(options.credentials, { mechanismProperties: optionValue }); + } + }, + authSource: { + target: 'credentials', + transform({ options, values: [value] }) { + const source = String(value); + return mongo_credentials_1.MongoCredentials.merge(options.credentials, { source }); + } + }, + autoEncryption: { + type: 'record' + }, + bsonRegExp: { + type: 'boolean' + }, + serverApi: { + target: 'serverApi', + transform({ values: [version] }) { + const serverApiToValidate = typeof version === 'string' ? { version } : version; + const versionToValidate = serverApiToValidate && serverApiToValidate.version; + if (!versionToValidate) { + throw new error_1.MongoParseError(`Invalid \`serverApi\` property; must specify a version from the following enum: ["${Object.values(mongo_client_1.ServerApiVersion).join('", "')}"]`); + } + if (!Object.values(mongo_client_1.ServerApiVersion).some(v => v === versionToValidate)) { + throw new error_1.MongoParseError(`Invalid server API version=${versionToValidate}; must be in the following enum: ["${Object.values(mongo_client_1.ServerApiVersion).join('", "')}"]`); + } + return serverApiToValidate; + } + }, + checkKeys: { + type: 'boolean' + }, + compressors: { + default: 'none', + target: 'compressors', + transform({ values }) { + const compressionList = new Set(); + for (const compVal of values) { + const compValArray = typeof compVal === 'string' ? compVal.split(',') : compVal; + if (!Array.isArray(compValArray)) { + throw new error_1.MongoInvalidArgumentError('compressors must be an array or a comma-delimited list of strings'); + } + for (const c of compValArray) { + if (Object.keys(compression_1.Compressor).includes(String(c))) { + compressionList.add(String(c)); + } + else { + throw new error_1.MongoInvalidArgumentError(`${c} is not a valid compression mechanism. Must be one of: ${Object.keys(compression_1.Compressor)}.`); + } + } + } + return [...compressionList]; + } + }, + connectTimeoutMS: { + default: 30000, + type: 'uint' + }, + dbName: { + type: 'string' + }, + directConnection: { + default: false, + type: 'boolean' + }, + driverInfo: { + target: 'metadata', + default: (0, utils_1.makeClientMetadata)(), + transform({ options, values: [value] }) { + var _a, _b; + if (!(0, utils_1.isRecord)(value)) + throw new error_1.MongoParseError('DriverInfo must be an object'); + return (0, utils_1.makeClientMetadata)({ + driverInfo: value, + appName: (_b = (_a = options.metadata) === null || _a === void 0 ? void 0 : _a.application) === null || _b === void 0 ? void 0 : _b.name + }); + } + }, + enableUtf8Validation: { type: 'boolean', default: true }, + family: { + transform({ name, values: [value] }) { + const transformValue = getInt(name, value); + if (transformValue === 4 || transformValue === 6) { + return transformValue; + } + throw new error_1.MongoParseError(`Option 'family' must be 4 or 6 got ${transformValue}.`); + } + }, + fieldsAsRaw: { + type: 'record' + }, + forceServerObjectId: { + default: false, + type: 'boolean' + }, + fsync: { + deprecated: 'Please use journal instead', + target: 'writeConcern', + transform({ name, options, values: [value] }) { + const wc = write_concern_1.WriteConcern.fromOptions({ + writeConcern: { + ...options.writeConcern, + fsync: getBoolean(name, value) + } + }); + if (!wc) + throw new error_1.MongoParseError(`Unable to make a writeConcern from fsync=${value}`); + return wc; + } + }, + heartbeatFrequencyMS: { + default: 10000, + type: 'uint' + }, + ignoreUndefined: { + type: 'boolean' + }, + j: { + deprecated: 'Please use journal instead', + target: 'writeConcern', + transform({ name, options, values: [value] }) { + const wc = write_concern_1.WriteConcern.fromOptions({ + writeConcern: { + ...options.writeConcern, + journal: getBoolean(name, value) + } + }); + if (!wc) + throw new error_1.MongoParseError(`Unable to make a writeConcern from journal=${value}`); + return wc; + } + }, + journal: { + target: 'writeConcern', + transform({ name, options, values: [value] }) { + const wc = write_concern_1.WriteConcern.fromOptions({ + writeConcern: { + ...options.writeConcern, + journal: getBoolean(name, value) + } + }); + if (!wc) + throw new error_1.MongoParseError(`Unable to make a writeConcern from journal=${value}`); + return wc; + } + }, + keepAlive: { + default: true, + type: 'boolean' + }, + keepAliveInitialDelay: { + default: 120000, + type: 'uint' + }, + loadBalanced: { + default: false, + type: 'boolean' + }, + localThresholdMS: { + default: 15, + type: 'uint' + }, + logger: { + default: new logger_1.Logger('MongoClient'), + transform({ values: [value] }) { + if (value instanceof logger_1.Logger) { + return value; + } + (0, utils_1.emitWarning)('Alternative loggers might not be supported'); + // TODO: make Logger an interface that others can implement, make usage consistent in driver + // DRIVERS-1204 + return; + } + }, + loggerLevel: { + target: 'logger', + transform({ values: [value] }) { + return new logger_1.Logger('MongoClient', { loggerLevel: value }); + } + }, + maxConnecting: { + default: 2, + transform({ name, values: [value] }) { + const maxConnecting = getUint(name, value); + if (maxConnecting === 0) { + throw new error_1.MongoInvalidArgumentError('maxConnecting must be > 0 if specified'); + } + return maxConnecting; + } + }, + maxIdleTimeMS: { + default: 0, + type: 'uint' + }, + maxPoolSize: { + default: 100, + type: 'uint' + }, + maxStalenessSeconds: { + target: 'readPreference', + transform({ name, options, values: [value] }) { + const maxStalenessSeconds = getUint(name, value); + if (options.readPreference) { + return read_preference_1.ReadPreference.fromOptions({ + readPreference: { ...options.readPreference, maxStalenessSeconds } + }); + } + else { + return new read_preference_1.ReadPreference('secondary', undefined, { maxStalenessSeconds }); + } + } + }, + minInternalBufferSize: { + type: 'uint' + }, + minPoolSize: { + default: 0, + type: 'uint' + }, + minHeartbeatFrequencyMS: { + default: 500, + type: 'uint' + }, + monitorCommands: { + default: false, + type: 'boolean' + }, + name: { + target: 'driverInfo', + transform({ values: [value], options }) { + return { ...options.driverInfo, name: String(value) }; + } + }, + noDelay: { + default: true, + type: 'boolean' + }, + pkFactory: { + default: utils_1.DEFAULT_PK_FACTORY, + transform({ values: [value] }) { + if ((0, utils_1.isRecord)(value, ['createPk']) && typeof value.createPk === 'function') { + return value; + } + throw new error_1.MongoParseError(`Option pkFactory must be an object with a createPk function, got ${value}`); + } + }, + promiseLibrary: { + deprecated: true, + type: 'any' + }, + promoteBuffers: { + type: 'boolean' + }, + promoteLongs: { + type: 'boolean' + }, + promoteValues: { + type: 'boolean' + }, + proxyHost: { + type: 'string' + }, + proxyPassword: { + type: 'string' + }, + proxyPort: { + type: 'uint' + }, + proxyUsername: { + type: 'string' + }, + raw: { + default: false, + type: 'boolean' + }, + readConcern: { + transform({ values: [value], options }) { + if (value instanceof read_concern_1.ReadConcern || (0, utils_1.isRecord)(value, ['level'])) { + return read_concern_1.ReadConcern.fromOptions({ ...options.readConcern, ...value }); + } + throw new error_1.MongoParseError(`ReadConcern must be an object, got ${JSON.stringify(value)}`); + } + }, + readConcernLevel: { + target: 'readConcern', + transform({ values: [level], options }) { + return read_concern_1.ReadConcern.fromOptions({ + ...options.readConcern, + level: level + }); + } + }, + readPreference: { + default: read_preference_1.ReadPreference.primary, + transform({ values: [value], options }) { + var _a, _b, _c; + if (value instanceof read_preference_1.ReadPreference) { + return read_preference_1.ReadPreference.fromOptions({ + readPreference: { ...options.readPreference, ...value }, + ...value + }); + } + if ((0, utils_1.isRecord)(value, ['mode'])) { + const rp = read_preference_1.ReadPreference.fromOptions({ + readPreference: { ...options.readPreference, ...value }, + ...value + }); + if (rp) + return rp; + else + throw new error_1.MongoParseError(`Cannot make read preference from ${JSON.stringify(value)}`); + } + if (typeof value === 'string') { + const rpOpts = { + hedge: (_a = options.readPreference) === null || _a === void 0 ? void 0 : _a.hedge, + maxStalenessSeconds: (_b = options.readPreference) === null || _b === void 0 ? void 0 : _b.maxStalenessSeconds + }; + return new read_preference_1.ReadPreference(value, (_c = options.readPreference) === null || _c === void 0 ? void 0 : _c.tags, rpOpts); + } + throw new error_1.MongoParseError(`Unknown ReadPreference value: ${value}`); + } + }, + readPreferenceTags: { + target: 'readPreference', + transform({ values, options }) { + const tags = Array.isArray(values[0]) + ? values[0] + : values; + const readPreferenceTags = []; + for (const tag of tags) { + const readPreferenceTag = Object.create(null); + if (typeof tag === 'string') { + for (const [k, v] of entriesFromString(tag)) { + readPreferenceTag[k] = v; + } + } + if ((0, utils_1.isRecord)(tag)) { + for (const [k, v] of Object.entries(tag)) { + readPreferenceTag[k] = v; + } + } + readPreferenceTags.push(readPreferenceTag); + } + return read_preference_1.ReadPreference.fromOptions({ + readPreference: options.readPreference, + readPreferenceTags + }); + } + }, + replicaSet: { + type: 'string' + }, + retryReads: { + default: true, + type: 'boolean' + }, + retryWrites: { + default: true, + type: 'boolean' + }, + serializeFunctions: { + type: 'boolean' + }, + serverSelectionTimeoutMS: { + default: 30000, + type: 'uint' + }, + servername: { + type: 'string' + }, + socketTimeoutMS: { + default: 0, + type: 'uint' + }, + srvMaxHosts: { + type: 'uint', + default: 0 + }, + srvServiceName: { + type: 'string', + default: 'mongodb' + }, + ssl: { + target: 'tls', + type: 'boolean' + }, + sslCA: { + target: 'ca', + transform({ values: [value] }) { + return fs.readFileSync(String(value), { encoding: 'ascii' }); + } + }, + sslCRL: { + target: 'crl', + transform({ values: [value] }) { + return fs.readFileSync(String(value), { encoding: 'ascii' }); + } + }, + sslCert: { + target: 'cert', + transform({ values: [value] }) { + return fs.readFileSync(String(value), { encoding: 'ascii' }); + } + }, + sslKey: { + target: 'key', + transform({ values: [value] }) { + return fs.readFileSync(String(value), { encoding: 'ascii' }); + } + }, + sslPass: { + deprecated: true, + target: 'passphrase', + type: 'string' + }, + sslValidate: { + target: 'rejectUnauthorized', + type: 'boolean' + }, + tls: { + type: 'boolean' + }, + tlsAllowInvalidCertificates: { + target: 'rejectUnauthorized', + transform({ name, values: [value] }) { + // allowInvalidCertificates is the inverse of rejectUnauthorized + return !getBoolean(name, value); + } + }, + tlsAllowInvalidHostnames: { + target: 'checkServerIdentity', + transform({ name, values: [value] }) { + // tlsAllowInvalidHostnames means setting the checkServerIdentity function to a noop + return getBoolean(name, value) ? () => undefined : undefined; + } + }, + tlsCAFile: { + target: 'ca', + transform({ values: [value] }) { + return fs.readFileSync(String(value), { encoding: 'ascii' }); + } + }, + tlsCertificateFile: { + target: 'cert', + transform({ values: [value] }) { + return fs.readFileSync(String(value), { encoding: 'ascii' }); + } + }, + tlsCertificateKeyFile: { + target: 'key', + transform({ values: [value] }) { + return fs.readFileSync(String(value), { encoding: 'ascii' }); + } + }, + tlsCertificateKeyFilePassword: { + target: 'passphrase', + type: 'any' + }, + tlsInsecure: { + transform({ name, options, values: [value] }) { + const tlsInsecure = getBoolean(name, value); + if (tlsInsecure) { + options.checkServerIdentity = () => undefined; + options.rejectUnauthorized = false; + } + else { + options.checkServerIdentity = options.tlsAllowInvalidHostnames + ? () => undefined + : undefined; + options.rejectUnauthorized = options.tlsAllowInvalidCertificates ? false : true; + } + return tlsInsecure; + } + }, + w: { + target: 'writeConcern', + transform({ values: [value], options }) { + return write_concern_1.WriteConcern.fromOptions({ writeConcern: { ...options.writeConcern, w: value } }); + } + }, + waitQueueTimeoutMS: { + default: 0, + type: 'uint' + }, + writeConcern: { + target: 'writeConcern', + transform({ values: [value], options }) { + if ((0, utils_1.isRecord)(value) || value instanceof write_concern_1.WriteConcern) { + return write_concern_1.WriteConcern.fromOptions({ + writeConcern: { + ...options.writeConcern, + ...value + } + }); + } + else if (value === 'majority' || typeof value === 'number') { + return write_concern_1.WriteConcern.fromOptions({ + writeConcern: { + ...options.writeConcern, + w: value + } + }); + } + throw new error_1.MongoParseError(`Invalid WriteConcern cannot parse: ${JSON.stringify(value)}`); + } + }, + wtimeout: { + deprecated: 'Please use wtimeoutMS instead', + target: 'writeConcern', + transform({ values: [value], options }) { + const wc = write_concern_1.WriteConcern.fromOptions({ + writeConcern: { + ...options.writeConcern, + wtimeout: getUint('wtimeout', value) + } + }); + if (wc) + return wc; + throw new error_1.MongoParseError(`Cannot make WriteConcern from wtimeout`); + } + }, + wtimeoutMS: { + target: 'writeConcern', + transform({ values: [value], options }) { + const wc = write_concern_1.WriteConcern.fromOptions({ + writeConcern: { + ...options.writeConcern, + wtimeoutMS: getUint('wtimeoutMS', value) + } + }); + if (wc) + return wc; + throw new error_1.MongoParseError(`Cannot make WriteConcern from wtimeout`); + } + }, + zlibCompressionLevel: { + default: 0, + type: 'int' + }, + // Custom types for modifying core behavior + connectionType: { type: 'any' }, + srvPoller: { type: 'any' }, + // Accepted NodeJS Options + minDHSize: { type: 'any' }, + pskCallback: { type: 'any' }, + secureContext: { type: 'any' }, + enableTrace: { type: 'any' }, + requestCert: { type: 'any' }, + rejectUnauthorized: { type: 'any' }, + checkServerIdentity: { type: 'any' }, + ALPNProtocols: { type: 'any' }, + SNICallback: { type: 'any' }, + session: { type: 'any' }, + requestOCSP: { type: 'any' }, + localAddress: { type: 'any' }, + localPort: { type: 'any' }, + hints: { type: 'any' }, + lookup: { type: 'any' }, + ca: { type: 'any' }, + cert: { type: 'any' }, + ciphers: { type: 'any' }, + crl: { type: 'any' }, + ecdhCurve: { type: 'any' }, + key: { type: 'any' }, + passphrase: { type: 'any' }, + pfx: { type: 'any' }, + secureProtocol: { type: 'any' }, + index: { type: 'any' }, + // Legacy Options, these are unused but left here to avoid errors with CSFLE lib + useNewUrlParser: { type: 'boolean' }, + useUnifiedTopology: { type: 'boolean' } +}; +exports.DEFAULT_OPTIONS = new CaseInsensitiveMap(Object.entries(exports.OPTIONS) + .filter(([, descriptor]) => descriptor.default != null) + .map(([k, d]) => [k, d.default])); +/** + * Set of permitted feature flags + * @internal + */ +exports.FEATURE_FLAGS = new Set([Symbol.for('@@mdb.skipPingOnConnect')]); +//# sourceMappingURL=connection_string.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/connection_string.js.map b/node_modules/mongodb/lib/connection_string.js.map new file mode 100644 index 000000000..e480f38c3 --- /dev/null +++ b/node_modules/mongodb/lib/connection_string.js.map @@ -0,0 +1 @@ +{"version":3,"file":"connection_string.js","sourceRoot":"","sources":["../src/connection_string.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/constants.js b/node_modules/mongodb/lib/constants.js new file mode 100644 index 000000000..f3b151f2d --- /dev/null +++ b/node_modules/mongodb/lib/constants.js @@ -0,0 +1,131 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.TOPOLOGY_EVENTS = exports.CMAP_EVENTS = exports.HEARTBEAT_EVENTS = exports.RESUME_TOKEN_CHANGED = exports.END = exports.CHANGE = exports.INIT = exports.MORE = exports.RESPONSE = exports.SERVER_HEARTBEAT_FAILED = exports.SERVER_HEARTBEAT_SUCCEEDED = exports.SERVER_HEARTBEAT_STARTED = exports.COMMAND_FAILED = exports.COMMAND_SUCCEEDED = exports.COMMAND_STARTED = exports.CLUSTER_TIME_RECEIVED = exports.CONNECTION_CHECKED_IN = exports.CONNECTION_CHECKED_OUT = exports.CONNECTION_CHECK_OUT_FAILED = exports.CONNECTION_CHECK_OUT_STARTED = exports.CONNECTION_CLOSED = exports.CONNECTION_READY = exports.CONNECTION_CREATED = exports.CONNECTION_POOL_READY = exports.CONNECTION_POOL_CLEARED = exports.CONNECTION_POOL_CLOSED = exports.CONNECTION_POOL_CREATED = exports.TOPOLOGY_DESCRIPTION_CHANGED = exports.TOPOLOGY_CLOSED = exports.TOPOLOGY_OPENING = exports.SERVER_DESCRIPTION_CHANGED = exports.SERVER_CLOSED = exports.SERVER_OPENING = exports.DESCRIPTION_RECEIVED = exports.UNPINNED = exports.PINNED = exports.MESSAGE = exports.ENDED = exports.CLOSED = exports.CONNECT = exports.OPEN = exports.CLOSE = exports.TIMEOUT = exports.ERROR = exports.SYSTEM_JS_COLLECTION = exports.SYSTEM_COMMAND_COLLECTION = exports.SYSTEM_USER_COLLECTION = exports.SYSTEM_PROFILE_COLLECTION = exports.SYSTEM_INDEX_COLLECTION = exports.SYSTEM_NAMESPACE_COLLECTION = void 0; +exports.LEGACY_HELLO_COMMAND_CAMEL_CASE = exports.LEGACY_HELLO_COMMAND = exports.MONGO_CLIENT_EVENTS = exports.LOCAL_SERVER_EVENTS = exports.SERVER_RELAY_EVENTS = exports.APM_EVENTS = void 0; +exports.SYSTEM_NAMESPACE_COLLECTION = 'system.namespaces'; +exports.SYSTEM_INDEX_COLLECTION = 'system.indexes'; +exports.SYSTEM_PROFILE_COLLECTION = 'system.profile'; +exports.SYSTEM_USER_COLLECTION = 'system.users'; +exports.SYSTEM_COMMAND_COLLECTION = '$cmd'; +exports.SYSTEM_JS_COLLECTION = 'system.js'; +// events +exports.ERROR = 'error'; +exports.TIMEOUT = 'timeout'; +exports.CLOSE = 'close'; +exports.OPEN = 'open'; +exports.CONNECT = 'connect'; +exports.CLOSED = 'closed'; +exports.ENDED = 'ended'; +exports.MESSAGE = 'message'; +exports.PINNED = 'pinned'; +exports.UNPINNED = 'unpinned'; +exports.DESCRIPTION_RECEIVED = 'descriptionReceived'; +exports.SERVER_OPENING = 'serverOpening'; +exports.SERVER_CLOSED = 'serverClosed'; +exports.SERVER_DESCRIPTION_CHANGED = 'serverDescriptionChanged'; +exports.TOPOLOGY_OPENING = 'topologyOpening'; +exports.TOPOLOGY_CLOSED = 'topologyClosed'; +exports.TOPOLOGY_DESCRIPTION_CHANGED = 'topologyDescriptionChanged'; +exports.CONNECTION_POOL_CREATED = 'connectionPoolCreated'; +exports.CONNECTION_POOL_CLOSED = 'connectionPoolClosed'; +exports.CONNECTION_POOL_CLEARED = 'connectionPoolCleared'; +exports.CONNECTION_POOL_READY = 'connectionPoolReady'; +exports.CONNECTION_CREATED = 'connectionCreated'; +exports.CONNECTION_READY = 'connectionReady'; +exports.CONNECTION_CLOSED = 'connectionClosed'; +exports.CONNECTION_CHECK_OUT_STARTED = 'connectionCheckOutStarted'; +exports.CONNECTION_CHECK_OUT_FAILED = 'connectionCheckOutFailed'; +exports.CONNECTION_CHECKED_OUT = 'connectionCheckedOut'; +exports.CONNECTION_CHECKED_IN = 'connectionCheckedIn'; +exports.CLUSTER_TIME_RECEIVED = 'clusterTimeReceived'; +exports.COMMAND_STARTED = 'commandStarted'; +exports.COMMAND_SUCCEEDED = 'commandSucceeded'; +exports.COMMAND_FAILED = 'commandFailed'; +exports.SERVER_HEARTBEAT_STARTED = 'serverHeartbeatStarted'; +exports.SERVER_HEARTBEAT_SUCCEEDED = 'serverHeartbeatSucceeded'; +exports.SERVER_HEARTBEAT_FAILED = 'serverHeartbeatFailed'; +exports.RESPONSE = 'response'; +exports.MORE = 'more'; +exports.INIT = 'init'; +exports.CHANGE = 'change'; +exports.END = 'end'; +exports.RESUME_TOKEN_CHANGED = 'resumeTokenChanged'; +/** @public */ +exports.HEARTBEAT_EVENTS = Object.freeze([ + exports.SERVER_HEARTBEAT_STARTED, + exports.SERVER_HEARTBEAT_SUCCEEDED, + exports.SERVER_HEARTBEAT_FAILED +]); +/** @public */ +exports.CMAP_EVENTS = Object.freeze([ + exports.CONNECTION_POOL_CREATED, + exports.CONNECTION_POOL_READY, + exports.CONNECTION_POOL_CLEARED, + exports.CONNECTION_POOL_CLOSED, + exports.CONNECTION_CREATED, + exports.CONNECTION_READY, + exports.CONNECTION_CLOSED, + exports.CONNECTION_CHECK_OUT_STARTED, + exports.CONNECTION_CHECK_OUT_FAILED, + exports.CONNECTION_CHECKED_OUT, + exports.CONNECTION_CHECKED_IN +]); +/** @public */ +exports.TOPOLOGY_EVENTS = Object.freeze([ + exports.SERVER_OPENING, + exports.SERVER_CLOSED, + exports.SERVER_DESCRIPTION_CHANGED, + exports.TOPOLOGY_OPENING, + exports.TOPOLOGY_CLOSED, + exports.TOPOLOGY_DESCRIPTION_CHANGED, + exports.ERROR, + exports.TIMEOUT, + exports.CLOSE +]); +/** @public */ +exports.APM_EVENTS = Object.freeze([ + exports.COMMAND_STARTED, + exports.COMMAND_SUCCEEDED, + exports.COMMAND_FAILED +]); +/** + * All events that we relay to the `Topology` + * @internal + */ +exports.SERVER_RELAY_EVENTS = Object.freeze([ + exports.SERVER_HEARTBEAT_STARTED, + exports.SERVER_HEARTBEAT_SUCCEEDED, + exports.SERVER_HEARTBEAT_FAILED, + exports.COMMAND_STARTED, + exports.COMMAND_SUCCEEDED, + exports.COMMAND_FAILED, + ...exports.CMAP_EVENTS +]); +/** + * All events we listen to from `Server` instances, but do not forward to the client + * @internal + */ +exports.LOCAL_SERVER_EVENTS = Object.freeze([ + exports.CONNECT, + exports.DESCRIPTION_RECEIVED, + exports.CLOSED, + exports.ENDED +]); +/** @public */ +exports.MONGO_CLIENT_EVENTS = Object.freeze([ + ...exports.CMAP_EVENTS, + ...exports.APM_EVENTS, + ...exports.TOPOLOGY_EVENTS, + ...exports.HEARTBEAT_EVENTS +]); +/** + * @internal + * The legacy hello command that was deprecated in MongoDB 5.0. + */ +exports.LEGACY_HELLO_COMMAND = 'ismaster'; +/** + * @internal + * The legacy hello command that was deprecated in MongoDB 5.0. + */ +exports.LEGACY_HELLO_COMMAND_CAMEL_CASE = 'isMaster'; +//# sourceMappingURL=constants.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/constants.js.map b/node_modules/mongodb/lib/constants.js.map new file mode 100644 index 000000000..483983ab6 --- /dev/null +++ b/node_modules/mongodb/lib/constants.js.map @@ -0,0 +1 @@ +{"version":3,"file":"constants.js","sourceRoot":"","sources":["../src/constants.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/cursor/abstract_cursor.js b/node_modules/mongodb/lib/cursor/abstract_cursor.js new file mode 100644 index 000000000..2034f54d2 --- /dev/null +++ b/node_modules/mongodb/lib/cursor/abstract_cursor.js @@ -0,0 +1,646 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.assertUninitialized = exports.next = exports.AbstractCursor = exports.CURSOR_FLAGS = void 0; +const stream_1 = require("stream"); +const bson_1 = require("../bson"); +const error_1 = require("../error"); +const mongo_types_1 = require("../mongo_types"); +const execute_operation_1 = require("../operations/execute_operation"); +const get_more_1 = require("../operations/get_more"); +const kill_cursors_1 = require("../operations/kill_cursors"); +const read_concern_1 = require("../read_concern"); +const read_preference_1 = require("../read_preference"); +const sessions_1 = require("../sessions"); +const utils_1 = require("../utils"); +/** @internal */ +const kId = Symbol('id'); +/** @internal */ +const kDocuments = Symbol('documents'); +/** @internal */ +const kServer = Symbol('server'); +/** @internal */ +const kNamespace = Symbol('namespace'); +/** @internal */ +const kClient = Symbol('client'); +/** @internal */ +const kSession = Symbol('session'); +/** @internal */ +const kOptions = Symbol('options'); +/** @internal */ +const kTransform = Symbol('transform'); +/** @internal */ +const kInitialized = Symbol('initialized'); +/** @internal */ +const kClosed = Symbol('closed'); +/** @internal */ +const kKilled = Symbol('killed'); +/** @internal */ +const kInit = Symbol('kInit'); +/** @public */ +exports.CURSOR_FLAGS = [ + 'tailable', + 'oplogReplay', + 'noCursorTimeout', + 'awaitData', + 'exhaust', + 'partial' +]; +/** @public */ +class AbstractCursor extends mongo_types_1.TypedEventEmitter { + /** @internal */ + constructor(client, namespace, options = {}) { + super(); + if (!client.s.isMongoClient) { + throw new error_1.MongoRuntimeError('Cursor must be constructed with MongoClient'); + } + this[kClient] = client; + this[kNamespace] = namespace; + this[kDocuments] = []; + this[kInitialized] = false; + this[kClosed] = false; + this[kKilled] = false; + this[kOptions] = { + readPreference: options.readPreference && options.readPreference instanceof read_preference_1.ReadPreference + ? options.readPreference + : read_preference_1.ReadPreference.primary, + ...(0, bson_1.pluckBSONSerializeOptions)(options) + }; + const readConcern = read_concern_1.ReadConcern.fromOptions(options); + if (readConcern) { + this[kOptions].readConcern = readConcern; + } + if (typeof options.batchSize === 'number') { + this[kOptions].batchSize = options.batchSize; + } + // we check for undefined specifically here to allow falsy values + // eslint-disable-next-line no-restricted-syntax + if (options.comment !== undefined) { + this[kOptions].comment = options.comment; + } + if (typeof options.maxTimeMS === 'number') { + this[kOptions].maxTimeMS = options.maxTimeMS; + } + if (typeof options.maxAwaitTimeMS === 'number') { + this[kOptions].maxAwaitTimeMS = options.maxAwaitTimeMS; + } + if (options.session instanceof sessions_1.ClientSession) { + this[kSession] = options.session; + } + else { + this[kSession] = this[kClient].startSession({ owner: this, explicit: false }); + } + } + get id() { + return this[kId]; + } + /** @internal */ + get client() { + return this[kClient]; + } + /** @internal */ + get server() { + return this[kServer]; + } + get namespace() { + return this[kNamespace]; + } + get readPreference() { + return this[kOptions].readPreference; + } + get readConcern() { + return this[kOptions].readConcern; + } + /** @internal */ + get session() { + return this[kSession]; + } + set session(clientSession) { + this[kSession] = clientSession; + } + /** @internal */ + get cursorOptions() { + return this[kOptions]; + } + get closed() { + return this[kClosed]; + } + get killed() { + return this[kKilled]; + } + get loadBalanced() { + var _a; + return !!((_a = this[kClient].topology) === null || _a === void 0 ? void 0 : _a.loadBalanced); + } + /** Returns current buffered documents length */ + bufferedCount() { + return this[kDocuments].length; + } + /** Returns current buffered documents */ + readBufferedDocuments(number) { + return this[kDocuments].splice(0, number !== null && number !== void 0 ? number : this[kDocuments].length); + } + [Symbol.asyncIterator]() { + return { + next: () => this.next().then(value => value != null ? { value, done: false } : { value: undefined, done: true }) + }; + } + stream(options) { + if (options === null || options === void 0 ? void 0 : options.transform) { + const transform = options.transform; + const readable = new ReadableCursorStream(this); + return readable.pipe(new stream_1.Transform({ + objectMode: true, + highWaterMark: 1, + transform(chunk, _, callback) { + try { + const transformed = transform(chunk); + callback(undefined, transformed); + } + catch (err) { + callback(err); + } + } + })); + } + return new ReadableCursorStream(this); + } + hasNext(callback) { + return (0, utils_1.maybePromise)(callback, done => { + if (this[kId] === bson_1.Long.ZERO) { + return done(undefined, false); + } + if (this[kDocuments].length) { + return done(undefined, true); + } + next(this, true, (err, doc) => { + if (err) + return done(err); + if (doc) { + this[kDocuments].unshift(doc); + done(undefined, true); + return; + } + done(undefined, false); + }); + }); + } + next(callback) { + return (0, utils_1.maybePromise)(callback, done => { + if (this[kId] === bson_1.Long.ZERO) { + return done(new error_1.MongoCursorExhaustedError()); + } + next(this, true, done); + }); + } + tryNext(callback) { + return (0, utils_1.maybePromise)(callback, done => { + if (this[kId] === bson_1.Long.ZERO) { + return done(new error_1.MongoCursorExhaustedError()); + } + next(this, false, done); + }); + } + forEach(iterator, callback) { + if (typeof iterator !== 'function') { + throw new error_1.MongoInvalidArgumentError('Argument "iterator" must be a function'); + } + return (0, utils_1.maybePromise)(callback, done => { + const transform = this[kTransform]; + const fetchDocs = () => { + next(this, true, (err, doc) => { + if (err || doc == null) + return done(err); + let result; + // NOTE: no need to transform because `next` will do this automatically + try { + result = iterator(doc); // TODO(NODE-3283): Improve transform typing + } + catch (error) { + return done(error); + } + if (result === false) + return done(); + // these do need to be transformed since they are copying the rest of the batch + const internalDocs = this[kDocuments].splice(0, this[kDocuments].length); + for (let i = 0; i < internalDocs.length; ++i) { + try { + result = iterator((transform ? transform(internalDocs[i]) : internalDocs[i]) // TODO(NODE-3283): Improve transform typing + ); + } + catch (error) { + return done(error); + } + if (result === false) + return done(); + } + fetchDocs(); + }); + }; + fetchDocs(); + }); + } + close(options, callback) { + if (typeof options === 'function') + (callback = options), (options = {}); + options = options !== null && options !== void 0 ? options : {}; + const needsToEmitClosed = !this[kClosed]; + this[kClosed] = true; + return (0, utils_1.maybePromise)(callback, done => cleanupCursor(this, { needsToEmitClosed }, done)); + } + toArray(callback) { + return (0, utils_1.maybePromise)(callback, done => { + const docs = []; + const transform = this[kTransform]; + const fetchDocs = () => { + // NOTE: if we add a `nextBatch` then we should use it here + next(this, true, (err, doc) => { + if (err) + return done(err); + if (doc == null) + return done(undefined, docs); + // NOTE: no need to transform because `next` will do this automatically + docs.push(doc); + // these do need to be transformed since they are copying the rest of the batch + const internalDocs = (transform + ? this[kDocuments].splice(0, this[kDocuments].length).map(transform) + : this[kDocuments].splice(0, this[kDocuments].length)); // TODO(NODE-3283): Improve transform typing + if (internalDocs) { + docs.push(...internalDocs); + } + fetchDocs(); + }); + }; + fetchDocs(); + }); + } + /** + * Add a cursor flag to the cursor + * + * @param flag - The flag to set, must be one of following ['tailable', 'oplogReplay', 'noCursorTimeout', 'awaitData', 'partial' -. + * @param value - The flag boolean value. + */ + addCursorFlag(flag, value) { + assertUninitialized(this); + if (!exports.CURSOR_FLAGS.includes(flag)) { + throw new error_1.MongoInvalidArgumentError(`Flag ${flag} is not one of ${exports.CURSOR_FLAGS}`); + } + if (typeof value !== 'boolean') { + throw new error_1.MongoInvalidArgumentError(`Flag ${flag} must be a boolean value`); + } + this[kOptions][flag] = value; + return this; + } + /** + * Map all documents using the provided function + * If there is a transform set on the cursor, that will be called first and the result passed to + * this function's transform. + * + * @remarks + * **Note for Typescript Users:** adding a transform changes the return type of the iteration of this cursor, + * it **does not** return a new instance of a cursor. This means when calling map, + * you should always assign the result to a new variable in order to get a correctly typed cursor variable. + * Take note of the following example: + * + * @example + * ```typescript + * const cursor: FindCursor = coll.find(); + * const mappedCursor: FindCursor = cursor.map(doc => Object.keys(doc).length); + * const keyCounts: number[] = await mappedCursor.toArray(); // cursor.toArray() still returns Document[] + * ``` + * @param transform - The mapping transformation method. + */ + map(transform) { + assertUninitialized(this); + const oldTransform = this[kTransform]; // TODO(NODE-3283): Improve transform typing + if (oldTransform) { + this[kTransform] = doc => { + return transform(oldTransform(doc)); + }; + } + else { + this[kTransform] = transform; + } + return this; + } + /** + * Set the ReadPreference for the cursor. + * + * @param readPreference - The new read preference for the cursor. + */ + withReadPreference(readPreference) { + assertUninitialized(this); + if (readPreference instanceof read_preference_1.ReadPreference) { + this[kOptions].readPreference = readPreference; + } + else if (typeof readPreference === 'string') { + this[kOptions].readPreference = read_preference_1.ReadPreference.fromString(readPreference); + } + else { + throw new error_1.MongoInvalidArgumentError(`Invalid read preference: ${readPreference}`); + } + return this; + } + /** + * Set the ReadPreference for the cursor. + * + * @param readPreference - The new read preference for the cursor. + */ + withReadConcern(readConcern) { + assertUninitialized(this); + const resolvedReadConcern = read_concern_1.ReadConcern.fromOptions({ readConcern }); + if (resolvedReadConcern) { + this[kOptions].readConcern = resolvedReadConcern; + } + return this; + } + /** + * Set a maxTimeMS on the cursor query, allowing for hard timeout limits on queries (Only supported on MongoDB 2.6 or higher) + * + * @param value - Number of milliseconds to wait before aborting the query. + */ + maxTimeMS(value) { + assertUninitialized(this); + if (typeof value !== 'number') { + throw new error_1.MongoInvalidArgumentError('Argument for maxTimeMS must be a number'); + } + this[kOptions].maxTimeMS = value; + return this; + } + /** + * Set the batch size for the cursor. + * + * @param value - The number of documents to return per batch. See {@link https://docs.mongodb.com/manual/reference/command/find/|find command documentation}. + */ + batchSize(value) { + assertUninitialized(this); + if (this[kOptions].tailable) { + throw new error_1.MongoTailableCursorError('Tailable cursor does not support batchSize'); + } + if (typeof value !== 'number') { + throw new error_1.MongoInvalidArgumentError('Operation "batchSize" requires an integer'); + } + this[kOptions].batchSize = value; + return this; + } + /** + * Rewind this cursor to its uninitialized state. Any options that are present on the cursor will + * remain in effect. Iterating this cursor will cause new queries to be sent to the server, even + * if the resultant data has already been retrieved by this cursor. + */ + rewind() { + if (!this[kInitialized]) { + return; + } + this[kId] = undefined; + this[kDocuments] = []; + this[kClosed] = false; + this[kKilled] = false; + this[kInitialized] = false; + const session = this[kSession]; + if (session) { + // We only want to end this session if we created it, and it hasn't ended yet + if (session.explicit === false) { + if (!session.hasEnded) { + session.endSession().catch(() => null); + } + this[kSession] = this.client.startSession({ owner: this, explicit: false }); + } + } + } + /** @internal */ + _getMore(batchSize, callback) { + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + const getMoreOperation = new get_more_1.GetMoreOperation(this[kNamespace], this[kId], this[kServer], { + ...this[kOptions], + session: this[kSession], + batchSize + }); + (0, execute_operation_1.executeOperation)(this[kClient], getMoreOperation, callback); + } + /** + * @internal + * + * This function is exposed for the unified test runner's createChangeStream + * operation. We cannot refactor to use the abstract _initialize method without + * a significant refactor. + */ + [kInit](callback) { + this._initialize(this[kSession], (err, state) => { + if (state) { + const response = state.response; + this[kServer] = state.server; + if (response.cursor) { + // TODO(NODE-2674): Preserve int64 sent from MongoDB + this[kId] = + typeof response.cursor.id === 'number' + ? bson_1.Long.fromNumber(response.cursor.id) + : response.cursor.id; + if (response.cursor.ns) { + this[kNamespace] = (0, utils_1.ns)(response.cursor.ns); + } + this[kDocuments] = response.cursor.firstBatch; + } + // When server responses return without a cursor document, we close this cursor + // and return the raw server response. This is often the case for explain commands + // for example + if (this[kId] == null) { + this[kId] = bson_1.Long.ZERO; + // TODO(NODE-3286): ExecutionResult needs to accept a generic parameter + this[kDocuments] = [state.response]; + } + } + // the cursor is now initialized, even if an error occurred or it is dead + this[kInitialized] = true; + if (err || cursorIsDead(this)) { + return cleanupCursor(this, { error: err }, () => callback(err, nextDocument(this))); + } + callback(); + }); + } +} +exports.AbstractCursor = AbstractCursor; +/** @event */ +AbstractCursor.CLOSE = 'close'; +function nextDocument(cursor) { + if (cursor[kDocuments] == null || !cursor[kDocuments].length) { + return null; + } + const doc = cursor[kDocuments].shift(); + if (doc) { + const transform = cursor[kTransform]; + if (transform) { + return transform(doc); + } + return doc; + } + return null; +} +/** + * @param cursor - the cursor on which to call `next` + * @param blocking - a boolean indicating whether or not the cursor should `block` until data + * is available. Generally, this flag is set to `false` because if the getMore returns no documents, + * the cursor has been exhausted. In certain scenarios (ChangeStreams, tailable await cursors and + * `tryNext`, for example) blocking is necessary because a getMore returning no documents does + * not indicate the end of the cursor. + * @param callback - callback to return the result to the caller + * @returns + */ +function next(cursor, blocking, callback) { + const cursorId = cursor[kId]; + if (cursor.closed) { + return callback(undefined, null); + } + if (cursor[kDocuments] && cursor[kDocuments].length) { + callback(undefined, nextDocument(cursor)); + return; + } + if (cursorId == null) { + // All cursors must operate within a session, one must be made implicitly if not explicitly provided + cursor[kInit]((err, value) => { + if (err) + return callback(err); + if (value) { + return callback(undefined, value); + } + return next(cursor, blocking, callback); + }); + return; + } + if (cursorIsDead(cursor)) { + return cleanupCursor(cursor, undefined, () => callback(undefined, null)); + } + // otherwise need to call getMore + const batchSize = cursor[kOptions].batchSize || 1000; + cursor._getMore(batchSize, (err, response) => { + if (response) { + const cursorId = typeof response.cursor.id === 'number' + ? bson_1.Long.fromNumber(response.cursor.id) + : response.cursor.id; + cursor[kDocuments] = response.cursor.nextBatch; + cursor[kId] = cursorId; + } + if (err || cursorIsDead(cursor)) { + return cleanupCursor(cursor, { error: err }, () => callback(err, nextDocument(cursor))); + } + if (cursor[kDocuments].length === 0 && blocking === false) { + return callback(undefined, null); + } + next(cursor, blocking, callback); + }); +} +exports.next = next; +function cursorIsDead(cursor) { + const cursorId = cursor[kId]; + return !!cursorId && cursorId.isZero(); +} +function cleanupCursor(cursor, options, callback) { + var _a; + const cursorId = cursor[kId]; + const cursorNs = cursor[kNamespace]; + const server = cursor[kServer]; + const session = cursor[kSession]; + const error = options === null || options === void 0 ? void 0 : options.error; + const needsToEmitClosed = (_a = options === null || options === void 0 ? void 0 : options.needsToEmitClosed) !== null && _a !== void 0 ? _a : cursor[kDocuments].length === 0; + if (error) { + if (cursor.loadBalanced && error instanceof error_1.MongoNetworkError) { + return completeCleanup(); + } + } + if (cursorId == null || server == null || cursorId.isZero() || cursorNs == null) { + if (needsToEmitClosed) { + cursor[kClosed] = true; + cursor[kId] = bson_1.Long.ZERO; + cursor.emit(AbstractCursor.CLOSE); + } + if (session) { + if (session.owner === cursor) { + return session.endSession({ error }, callback); + } + if (!session.inTransaction()) { + (0, sessions_1.maybeClearPinnedConnection)(session, { error }); + } + } + return callback(); + } + function completeCleanup() { + if (session) { + if (session.owner === cursor) { + return session.endSession({ error }, () => { + cursor.emit(AbstractCursor.CLOSE); + callback(); + }); + } + if (!session.inTransaction()) { + (0, sessions_1.maybeClearPinnedConnection)(session, { error }); + } + } + cursor.emit(AbstractCursor.CLOSE); + return callback(); + } + cursor[kKilled] = true; + return (0, execute_operation_1.executeOperation)(cursor[kClient], new kill_cursors_1.KillCursorsOperation(cursorId, cursorNs, server, { session }), completeCleanup); +} +/** @internal */ +function assertUninitialized(cursor) { + if (cursor[kInitialized]) { + throw new error_1.MongoCursorInUseError(); + } +} +exports.assertUninitialized = assertUninitialized; +class ReadableCursorStream extends stream_1.Readable { + constructor(cursor) { + super({ + objectMode: true, + autoDestroy: false, + highWaterMark: 1 + }); + this._readInProgress = false; + this._cursor = cursor; + } + // eslint-disable-next-line @typescript-eslint/no-unused-vars + _read(size) { + if (!this._readInProgress) { + this._readInProgress = true; + this._readNext(); + } + } + _destroy(error, callback) { + this._cursor.close(err => process.nextTick(callback, err || error)); + } + _readNext() { + next(this._cursor, true, (err, result) => { + if (err) { + // NOTE: This is questionable, but we have a test backing the behavior. It seems the + // desired behavior is that a stream ends cleanly when a user explicitly closes + // a client during iteration. Alternatively, we could do the "right" thing and + // propagate the error message by removing this special case. + if (err.message.match(/server is closed/)) { + this._cursor.close().catch(() => null); + return this.push(null); + } + // NOTE: This is also perhaps questionable. The rationale here is that these errors tend + // to be "operation interrupted", where a cursor has been closed but there is an + // active getMore in-flight. This used to check if the cursor was killed but once + // that changed to happen in cleanup legitimate errors would not destroy the + // stream. There are change streams test specifically test these cases. + if (err.message.match(/interrupted/)) { + return this.push(null); + } + return this.destroy(err); + } + if (result == null) { + this.push(null); + } + else if (this.destroyed) { + this._cursor.close().catch(() => null); + } + else { + if (this.push(result)) { + return this._readNext(); + } + this._readInProgress = false; + } + }); + } +} +//# sourceMappingURL=abstract_cursor.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/cursor/abstract_cursor.js.map b/node_modules/mongodb/lib/cursor/abstract_cursor.js.map new file mode 100644 index 000000000..6401a562b --- /dev/null +++ b/node_modules/mongodb/lib/cursor/abstract_cursor.js.map @@ -0,0 +1 @@ +{"version":3,"file":"abstract_cursor.js","sourceRoot":"","sources":["../../src/cursor/abstract_cursor.ts"],"names":[],"mappings":";;;AAAA,mCAA6C;AAE7C,kCAA0F;AAC1F,oCAQkB;AAElB,gDAAmE;AACnE,uEAAoF;AACpF,qDAA0D;AAC1D,6DAAkE;AAClE,kDAA+D;AAC/D,wDAAwE;AAExE,0CAAwE;AACxE,oCAAwE;AAExE,gBAAgB;AAChB,MAAM,GAAG,GAAG,MAAM,CAAC,IAAI,CAAC,CAAC;AACzB,gBAAgB;AAChB,MAAM,UAAU,GAAG,MAAM,CAAC,WAAW,CAAC,CAAC;AACvC,gBAAgB;AAChB,MAAM,OAAO,GAAG,MAAM,CAAC,QAAQ,CAAC,CAAC;AACjC,gBAAgB;AAChB,MAAM,UAAU,GAAG,MAAM,CAAC,WAAW,CAAC,CAAC;AACvC,gBAAgB;AAChB,MAAM,OAAO,GAAG,MAAM,CAAC,QAAQ,CAAC,CAAC;AACjC,gBAAgB;AAChB,MAAM,QAAQ,GAAG,MAAM,CAAC,SAAS,CAAC,CAAC;AACnC,gBAAgB;AAChB,MAAM,QAAQ,GAAG,MAAM,CAAC,SAAS,CAAC,CAAC;AACnC,gBAAgB;AAChB,MAAM,UAAU,GAAG,MAAM,CAAC,WAAW,CAAC,CAAC;AACvC,gBAAgB;AAChB,MAAM,YAAY,GAAG,MAAM,CAAC,aAAa,CAAC,CAAC;AAC3C,gBAAgB;AAChB,MAAM,OAAO,GAAG,MAAM,CAAC,QAAQ,CAAC,CAAC;AACjC,gBAAgB;AAChB,MAAM,OAAO,GAAG,MAAM,CAAC,QAAQ,CAAC,CAAC;AACjC,gBAAgB;AAChB,MAAM,KAAK,GAAG,MAAM,CAAC,OAAO,CAAC,CAAC;AAE9B,cAAc;AACD,QAAA,YAAY,GAAG;IAC1B,UAAU;IACV,aAAa;IACb,iBAAiB;IACjB,WAAW;IACX,SAAS;IACT,SAAS;CACD,CAAC;AAiFX,cAAc;AACd,MAAsB,cAGpB,SAAQ,+BAA+B;IA2BvC,gBAAgB;IAChB,YACE,MAAmB,EACnB,SAA2B,EAC3B,UAAiC,EAAE;QAEnC,KAAK,EAAE,CAAC;QAER,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,aAAa,EAAE;YAC3B,MAAM,IAAI,yBAAiB,CAAC,6CAA6C,CAAC,CAAC;SAC5E;QACD,IAAI,CAAC,OAAO,CAAC,GAAG,MAAM,CAAC;QACvB,IAAI,CAAC,UAAU,CAAC,GAAG,SAAS,CAAC;QAC7B,IAAI,CAAC,UAAU,CAAC,GAAG,EAAE,CAAC;QACtB,IAAI,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC;QAC3B,IAAI,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC;QACtB,IAAI,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC;QACtB,IAAI,CAAC,QAAQ,CAAC,GAAG;YACf,cAAc,EACZ,OAAO,CAAC,cAAc,IAAI,OAAO,CAAC,cAAc,YAAY,gCAAc;gBACxE,CAAC,CAAC,OAAO,CAAC,cAAc;gBACxB,CAAC,CAAC,gCAAc,CAAC,OAAO;YAC5B,GAAG,IAAA,gCAAyB,EAAC,OAAO,CAAC;SACtC,CAAC;QAEF,MAAM,WAAW,GAAG,0BAAW,CAAC,WAAW,CAAC,OAAO,CAAC,CAAC;QACrD,IAAI,WAAW,EAAE;YACf,IAAI,CAAC,QAAQ,CAAC,CAAC,WAAW,GAAG,WAAW,CAAC;SAC1C;QAED,IAAI,OAAO,OAAO,CAAC,SAAS,KAAK,QAAQ,EAAE;YACzC,IAAI,CAAC,QAAQ,CAAC,CAAC,SAAS,GAAG,OAAO,CAAC,SAAS,CAAC;SAC9C;QAED,iEAAiE;QACjE,gDAAgD;QAChD,IAAI,OAAO,CAAC,OAAO,KAAK,SAAS,EAAE;YACjC,IAAI,CAAC,QAAQ,CAAC,CAAC,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC;SAC1C;QAED,IAAI,OAAO,OAAO,CAAC,SAAS,KAAK,QAAQ,EAAE;YACzC,IAAI,CAAC,QAAQ,CAAC,CAAC,SAAS,GAAG,OAAO,CAAC,SAAS,CAAC;SAC9C;QAED,IAAI,OAAO,OAAO,CAAC,cAAc,KAAK,QAAQ,EAAE;YAC9C,IAAI,CAAC,QAAQ,CAAC,CAAC,cAAc,GAAG,OAAO,CAAC,cAAc,CAAC;SACxD;QAED,IAAI,OAAO,CAAC,OAAO,YAAY,wBAAa,EAAE;YAC5C,IAAI,CAAC,QAAQ,CAAC,GAAG,OAAO,CAAC,OAAO,CAAC;SAClC;aAAM;YACL,IAAI,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,OAAO,CAAC,CAAC,YAAY,CAAC,EAAE,KAAK,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC,CAAC;SAC/E;IACH,CAAC;IAED,IAAI,EAAE;QACJ,OAAO,IAAI,CAAC,GAAG,CAAC,CAAC;IACnB,CAAC;IAED,gBAAgB;IAChB,IAAI,MAAM;QACR,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC;IACvB,CAAC;IAED,gBAAgB;IAChB,IAAI,MAAM;QACR,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC;IACvB,CAAC;IAED,IAAI,SAAS;QACX,OAAO,IAAI,CAAC,UAAU,CAAC,CAAC;IAC1B,CAAC;IAED,IAAI,cAAc;QAChB,OAAO,IAAI,CAAC,QAAQ,CAAC,CAAC,cAAc,CAAC;IACvC,CAAC;IAED,IAAI,WAAW;QACb,OAAO,IAAI,CAAC,QAAQ,CAAC,CAAC,WAAW,CAAC;IACpC,CAAC;IAED,gBAAgB;IAChB,IAAI,OAAO;QACT,OAAO,IAAI,CAAC,QAAQ,CAAC,CAAC;IACxB,CAAC;IAED,IAAI,OAAO,CAAC,aAA4B;QACtC,IAAI,CAAC,QAAQ,CAAC,GAAG,aAAa,CAAC;IACjC,CAAC;IAED,gBAAgB;IAChB,IAAI,aAAa;QACf,OAAO,IAAI,CAAC,QAAQ,CAAC,CAAC;IACxB,CAAC;IAED,IAAI,MAAM;QACR,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC;IACvB,CAAC;IAED,IAAI,MAAM;QACR,OAAO,IAAI,CAAC,OAAO,CAAC,CAAC;IACvB,CAAC;IAED,IAAI,YAAY;;QACd,OAAO,CAAC,CAAC,CAAA,MAAA,IAAI,CAAC,OAAO,CAAC,CAAC,QAAQ,0CAAE,YAAY,CAAA,CAAC;IAChD,CAAC;IAED,gDAAgD;IAChD,aAAa;QACX,OAAO,IAAI,CAAC,UAAU,CAAC,CAAC,MAAM,CAAC;IACjC,CAAC;IAED,yCAAyC;IACzC,qBAAqB,CAAC,MAAe;QACnC,OAAO,IAAI,CAAC,UAAU,CAAC,CAAC,MAAM,CAAC,CAAC,EAAE,MAAM,aAAN,MAAM,cAAN,MAAM,GAAI,IAAI,CAAC,UAAU,CAAC,CAAC,MAAM,CAAC,CAAC;IACvE,CAAC;IAED,CAAC,MAAM,CAAC,aAAa,CAAC;QACpB,OAAO;YACL,IAAI,EAAE,GAAG,EAAE,CACT,IAAI,CAAC,IAAI,EAAE,CAAC,IAAI,CAAC,KAAK,CAAC,EAAE,CACvB,KAAK,IAAI,IAAI,CAAC,CAAC,CAAC,EAAE,KAAK,EAAE,IAAI,EAAE,KAAK,EAAE,CAAC,CAAC,CAAC,EAAE,KAAK,EAAE,SAAS,EAAE,IAAI,EAAE,IAAI,EAAE,CAC1E;SACJ,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,OAA6B;QAClC,IAAI,OAAO,aAAP,OAAO,uBAAP,OAAO,CAAE,SAAS,EAAE;YACtB,MAAM,SAAS,GAAG,OAAO,CAAC,SAAS,CAAC;YACpC,MAAM,QAAQ,GAAG,IAAI,oBAAoB,CAAC,IAAI,CAAC,CAAC;YAEhD,OAAO,QAAQ,CAAC,IAAI,CAClB,IAAI,kBAAS,CAAC;gBACZ,UAAU,EAAE,IAAI;gBAChB,aAAa,EAAE,CAAC;gBAChB,SAAS,CAAC,KAAK,EAAE,CAAC,EAAE,QAAQ;oBAC1B,IAAI;wBACF,MAAM,WAAW,GAAG,SAAS,CAAC,KAAK,CAAC,CAAC;wBACrC,QAAQ,CAAC,SAAS,EAAE,WAAW,CAAC,CAAC;qBAClC;oBAAC,OAAO,GAAG,EAAE;wBACZ,QAAQ,CAAC,GAAG,CAAC,CAAC;qBACf;gBACH,CAAC;aACF,CAAC,CACH,CAAC;SACH;QAED,OAAO,IAAI,oBAAoB,CAAC,IAAI,CAAC,CAAC;IACxC,CAAC;IAKD,OAAO,CAAC,QAA4B;QAClC,OAAO,IAAA,oBAAY,EAAC,QAAQ,EAAE,IAAI,CAAC,EAAE;YACnC,IAAI,IAAI,CAAC,GAAG,CAAC,KAAK,WAAI,CAAC,IAAI,EAAE;gBAC3B,OAAO,IAAI,CAAC,SAAS,EAAE,KAAK,CAAC,CAAC;aAC/B;YAED,IAAI,IAAI,CAAC,UAAU,CAAC,CAAC,MAAM,EAAE;gBAC3B,OAAO,IAAI,CAAC,SAAS,EAAE,IAAI,CAAC,CAAC;aAC9B;YAED,IAAI,CAAU,IAAI,EAAE,IAAI,EAAE,CAAC,GAAG,EAAE,GAAG,EAAE,EAAE;gBACrC,IAAI,GAAG;oBAAE,OAAO,IAAI,CAAC,GAAG,CAAC,CAAC;gBAE1B,IAAI,GAAG,EAAE;oBACP,IAAI,CAAC,UAAU,CAAC,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC;oBAC9B,IAAI,CAAC,SAAS,EAAE,IAAI,CAAC,CAAC;oBACtB,OAAO;iBACR;gBAED,IAAI,CAAC,SAAS,EAAE,KAAK,CAAC,CAAC;YACzB,CAAC,CAAC,CAAC;QACL,CAAC,CAAC,CAAC;IACL,CAAC;IAQD,IAAI,CAAC,QAAmC;QACtC,OAAO,IAAA,oBAAY,EAAC,QAAQ,EAAE,IAAI,CAAC,EAAE;YACnC,IAAI,IAAI,CAAC,GAAG,CAAC,KAAK,WAAI,CAAC,IAAI,EAAE;gBAC3B,OAAO,IAAI,CAAC,IAAI,iCAAyB,EAAE,CAAC,CAAC;aAC9C;YAED,IAAI,CAAC,IAAI,EAAE,IAAI,EAAE,IAAI,CAAC,CAAC;QACzB,CAAC,CAAC,CAAC;IACL,CAAC;IAQD,OAAO,CAAC,QAAmC;QACzC,OAAO,IAAA,oBAAY,EAAC,QAAQ,EAAE,IAAI,CAAC,EAAE;YACnC,IAAI,IAAI,CAAC,GAAG,CAAC,KAAK,WAAI,CAAC,IAAI,EAAE;gBAC3B,OAAO,IAAI,CAAC,IAAI,iCAAyB,EAAE,CAAC,CAAC;aAC9C;YAED,IAAI,CAAC,IAAI,EAAE,KAAK,EAAE,IAAI,CAAC,CAAC;QAC1B,CAAC,CAAC,CAAC;IACL,CAAC;IAWD,OAAO,CACL,QAA0C,EAC1C,QAAyB;QAEzB,IAAI,OAAO,QAAQ,KAAK,UAAU,EAAE;YAClC,MAAM,IAAI,iCAAyB,CAAC,wCAAwC,CAAC,CAAC;SAC/E;QACD,OAAO,IAAA,oBAAY,EAAC,QAAQ,EAAE,IAAI,CAAC,EAAE;YACnC,MAAM,SAAS,GAAG,IAAI,CAAC,UAAU,CAAC,CAAC;YACnC,MAAM,SAAS,GAAG,GAAG,EAAE;gBACrB,IAAI,CAAU,IAAI,EAAE,IAAI,EAAE,CAAC,GAAG,EAAE,GAAG,EAAE,EAAE;oBACrC,IAAI,GAAG,IAAI,GAAG,IAAI,IAAI;wBAAE,OAAO,IAAI,CAAC,GAAG,CAAC,CAAC;oBACzC,IAAI,MAAM,CAAC;oBACX,uEAAuE;oBACvE,IAAI;wBACF,MAAM,GAAG,QAAQ,CAAC,GAAG,CAAC,CAAC,CAAC,4CAA4C;qBACrE;oBAAC,OAAO,KAAK,EAAE;wBACd,OAAO,IAAI,CAAC,KAAK,CAAC,CAAC;qBACpB;oBAED,IAAI,MAAM,KAAK,KAAK;wBAAE,OAAO,IAAI,EAAE,CAAC;oBAEpC,+EAA+E;oBAC/E,MAAM,YAAY,GAAG,IAAI,CAAC,UAAU,CAAC,CAAC,MAAM,CAAC,CAAC,EAAE,IAAI,CAAC,UAAU,CAAC,CAAC,MAAM,CAAC,CAAC;oBACzE,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,YAAY,CAAC,MAAM,EAAE,EAAE,CAAC,EAAE;wBAC5C,IAAI;4BACF,MAAM,GAAG,QAAQ,CACf,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,CAAC,CAAY,CAAC,4CAA4C;6BACnH,CAAC;yBACH;wBAAC,OAAO,KAAK,EAAE;4BACd,OAAO,IAAI,CAAC,KAAK,CAAC,CAAC;yBACpB;wBACD,IAAI,MAAM,KAAK,KAAK;4BAAE,OAAO,IAAI,EAAE,CAAC;qBACrC;oBAED,SAAS,EAAE,CAAC;gBACd,CAAC,CAAC,CAAC;YACL,CAAC,CAAC;YAEF,SAAS,EAAE,CAAC;QACd,CAAC,CAAC,CAAC;IACL,CAAC;IAaD,KAAK,CAAC,OAAuC,EAAE,QAAmB;QAChE,IAAI,OAAO,OAAO,KAAK,UAAU;YAAE,CAAC,QAAQ,GAAG,OAAO,CAAC,EAAE,CAAC,OAAO,GAAG,EAAE,CAAC,CAAC;QACxE,OAAO,GAAG,OAAO,aAAP,OAAO,cAAP,OAAO,GAAI,EAAE,CAAC;QAExB,MAAM,iBAAiB,GAAG,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QACzC,IAAI,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC;QAErB,OAAO,IAAA,oBAAY,EAAC,QAAQ,EAAE,IAAI,CAAC,EAAE,CAAC,aAAa,CAAC,IAAI,EAAE,EAAE,iBAAiB,EAAE,EAAE,IAAI,CAAC,CAAC,CAAC;IAC1F,CAAC;IAaD,OAAO,CAAC,QAA8B;QACpC,OAAO,IAAA,oBAAY,EAAC,QAAQ,EAAE,IAAI,CAAC,EAAE;YACnC,MAAM,IAAI,GAAc,EAAE,CAAC;YAC3B,MAAM,SAAS,GAAG,IAAI,CAAC,UAAU,CAAC,CAAC;YACnC,MAAM,SAAS,GAAG,GAAG,EAAE;gBACrB,2DAA2D;gBAC3D,IAAI,CAAU,IAAI,EAAE,IAAI,EAAE,CAAC,GAAG,EAAE,GAAG,EAAE,EAAE;oBACrC,IAAI,GAAG;wBAAE,OAAO,IAAI,CAAC,GAAG,CAAC,CAAC;oBAC1B,IAAI,GAAG,IAAI,IAAI;wBAAE,OAAO,IAAI,CAAC,SAAS,EAAE,IAAI,CAAC,CAAC;oBAE9C,uEAAuE;oBACvE,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;oBAEf,+EAA+E;oBAC/E,MAAM,YAAY,GAAG,CACnB,SAAS;wBACP,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,MAAM,CAAC,CAAC,EAAE,IAAI,CAAC,UAAU,CAAC,CAAC,MAAM,CAAC,CAAC,GAAG,CAAC,SAAS,CAAC;wBACpE,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,MAAM,CAAC,CAAC,EAAE,IAAI,CAAC,UAAU,CAAC,CAAC,MAAM,CAAC,CAC3C,CAAC,CAAC,4CAA4C;oBAE5D,IAAI,YAAY,EAAE;wBAChB,IAAI,CAAC,IAAI,CAAC,GAAG,YAAY,CAAC,CAAC;qBAC5B;oBAED,SAAS,EAAE,CAAC;gBACd,CAAC,CAAC,CAAC;YACL,CAAC,CAAC;YAEF,SAAS,EAAE,CAAC;QACd,CAAC,CAAC,CAAC;IACL,CAAC;IAED;;;;;OAKG;IACH,aAAa,CAAC,IAAgB,EAAE,KAAc;QAC5C,mBAAmB,CAAC,IAAI,CAAC,CAAC;QAC1B,IAAI,CAAC,oBAAY,CAAC,QAAQ,CAAC,IAAI,CAAC,EAAE;YAChC,MAAM,IAAI,iCAAyB,CAAC,QAAQ,IAAI,kBAAkB,oBAAY,EAAE,CAAC,CAAC;SACnF;QAED,IAAI,OAAO,KAAK,KAAK,SAAS,EAAE;YAC9B,MAAM,IAAI,iCAAyB,CAAC,QAAQ,IAAI,0BAA0B,CAAC,CAAC;SAC7E;QAED,IAAI,CAAC,QAAQ,CAAC,CAAC,IAAI,CAAC,GAAG,KAAK,CAAC;QAC7B,OAAO,IAAI,CAAC;IACd,CAAC;IAED;;;;;;;;;;;;;;;;;;OAkBG;IACH,GAAG,CAAU,SAA8B;QACzC,mBAAmB,CAAC,IAAI,CAAC,CAAC;QAC1B,MAAM,YAAY,GAAG,IAAI,CAAC,UAAU,CAA8B,CAAC,CAAC,4CAA4C;QAChH,IAAI,YAAY,EAAE;YAChB,IAAI,CAAC,UAAU,CAAC,GAAG,GAAG,CAAC,EAAE;gBACvB,OAAO,SAAS,CAAC,YAAY,CAAC,GAAG,CAAC,CAAC,CAAC;YACtC,CAAC,CAAC;SACH;aAAM;YACL,IAAI,CAAC,UAAU,CAAC,GAAG,SAAS,CAAC;SAC9B;QAED,OAAO,IAAoC,CAAC;IAC9C,CAAC;IAED;;;;OAIG;IACH,kBAAkB,CAAC,cAAkC;QACnD,mBAAmB,CAAC,IAAI,CAAC,CAAC;QAC1B,IAAI,cAAc,YAAY,gCAAc,EAAE;YAC5C,IAAI,CAAC,QAAQ,CAAC,CAAC,cAAc,GAAG,cAAc,CAAC;SAChD;aAAM,IAAI,OAAO,cAAc,KAAK,QAAQ,EAAE;YAC7C,IAAI,CAAC,QAAQ,CAAC,CAAC,cAAc,GAAG,gCAAc,CAAC,UAAU,CAAC,cAAc,CAAC,CAAC;SAC3E;aAAM;YACL,MAAM,IAAI,iCAAyB,CAAC,4BAA4B,cAAc,EAAE,CAAC,CAAC;SACnF;QAED,OAAO,IAAI,CAAC;IACd,CAAC;IAED;;;;OAIG;IACH,eAAe,CAAC,WAA4B;QAC1C,mBAAmB,CAAC,IAAI,CAAC,CAAC;QAC1B,MAAM,mBAAmB,GAAG,0BAAW,CAAC,WAAW,CAAC,EAAE,WAAW,EAAE,CAAC,CAAC;QACrE,IAAI,mBAAmB,EAAE;YACvB,IAAI,CAAC,QAAQ,CAAC,CAAC,WAAW,GAAG,mBAAmB,CAAC;SAClD;QAED,OAAO,IAAI,CAAC;IACd,CAAC;IAED;;;;OAIG;IACH,SAAS,CAAC,KAAa;QACrB,mBAAmB,CAAC,IAAI,CAAC,CAAC;QAC1B,IAAI,OAAO,KAAK,KAAK,QAAQ,EAAE;YAC7B,MAAM,IAAI,iCAAyB,CAAC,yCAAyC,CAAC,CAAC;SAChF;QAED,IAAI,CAAC,QAAQ,CAAC,CAAC,SAAS,GAAG,KAAK,CAAC;QACjC,OAAO,IAAI,CAAC;IACd,CAAC;IAED;;;;OAIG;IACH,SAAS,CAAC,KAAa;QACrB,mBAAmB,CAAC,IAAI,CAAC,CAAC;QAC1B,IAAI,IAAI,CAAC,QAAQ,CAAC,CAAC,QAAQ,EAAE;YAC3B,MAAM,IAAI,gCAAwB,CAAC,4CAA4C,CAAC,CAAC;SAClF;QAED,IAAI,OAAO,KAAK,KAAK,QAAQ,EAAE;YAC7B,MAAM,IAAI,iCAAyB,CAAC,2CAA2C,CAAC,CAAC;SAClF;QAED,IAAI,CAAC,QAAQ,CAAC,CAAC,SAAS,GAAG,KAAK,CAAC;QACjC,OAAO,IAAI,CAAC;IACd,CAAC;IAED;;;;OAIG;IACH,MAAM;QACJ,IAAI,CAAC,IAAI,CAAC,YAAY,CAAC,EAAE;YACvB,OAAO;SACR;QAED,IAAI,CAAC,GAAG,CAAC,GAAG,SAAS,CAAC;QACtB,IAAI,CAAC,UAAU,CAAC,GAAG,EAAE,CAAC;QACtB,IAAI,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC;QACtB,IAAI,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC;QACtB,IAAI,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC;QAE3B,MAAM,OAAO,GAAG,IAAI,CAAC,QAAQ,CAAC,CAAC;QAC/B,IAAI,OAAO,EAAE;YACX,6EAA6E;YAC7E,IAAI,OAAO,CAAC,QAAQ,KAAK,KAAK,EAAE;gBAC9B,IAAI,CAAC,OAAO,CAAC,QAAQ,EAAE;oBACrB,OAAO,CAAC,UAAU,EAAE,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,CAAC;iBACxC;gBACD,IAAI,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,MAAM,CAAC,YAAY,CAAC,EAAE,KAAK,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC,CAAC;aAC7E;SACF;IACH,CAAC;IAaD,gBAAgB;IAChB,QAAQ,CAAC,SAAiB,EAAE,QAA4B;QACtD,oEAAoE;QACpE,MAAM,gBAAgB,GAAG,IAAI,2BAAgB,CAAC,IAAI,CAAC,UAAU,CAAC,EAAE,IAAI,CAAC,GAAG,CAAE,EAAE,IAAI,CAAC,OAAO,CAAE,EAAE;YAC1F,GAAG,IAAI,CAAC,QAAQ,CAAC;YACjB,OAAO,EAAE,IAAI,CAAC,QAAQ,CAAC;YACvB,SAAS;SACV,CAAC,CAAC;QAEH,IAAA,oCAAgB,EAAC,IAAI,CAAC,OAAO,CAAC,EAAE,gBAAgB,EAAE,QAAQ,CAAC,CAAC;IAC9D,CAAC;IAED;;;;;;OAMG;IACH,CAAC,KAAK,CAAC,CAAC,QAAkC;QACxC,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC,GAAG,EAAE,KAAK,EAAE,EAAE;YAC9C,IAAI,KAAK,EAAE;gBACT,MAAM,QAAQ,GAAG,KAAK,CAAC,QAAQ,CAAC;gBAChC,IAAI,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC,MAAM,CAAC;gBAE7B,IAAI,QAAQ,CAAC,MAAM,EAAE;oBACnB,oDAAoD;oBACpD,IAAI,CAAC,GAAG,CAAC;wBACP,OAAO,QAAQ,CAAC,MAAM,CAAC,EAAE,KAAK,QAAQ;4BACpC,CAAC,CAAC,WAAI,CAAC,UAAU,CAAC,QAAQ,CAAC,MAAM,CAAC,EAAE,CAAC;4BACrC,CAAC,CAAC,QAAQ,CAAC,MAAM,CAAC,EAAE,CAAC;oBAEzB,IAAI,QAAQ,CAAC,MAAM,CAAC,EAAE,EAAE;wBACtB,IAAI,CAAC,UAAU,CAAC,GAAG,IAAA,UAAE,EAAC,QAAQ,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC;qBAC3C;oBAED,IAAI,CAAC,UAAU,CAAC,GAAG,QAAQ,CAAC,MAAM,CAAC,UAAU,CAAC;iBAC/C;gBAED,+EAA+E;gBAC/E,kFAAkF;gBAClF,cAAc;gBACd,IAAI,IAAI,CAAC,GAAG,CAAC,IAAI,IAAI,EAAE;oBACrB,IAAI,CAAC,GAAG,CAAC,GAAG,WAAI,CAAC,IAAI,CAAC;oBACtB,uEAAuE;oBACvE,IAAI,CAAC,UAAU,CAAC,GAAG,CAAC,KAAK,CAAC,QAA0B,CAAC,CAAC;iBACvD;aACF;YAED,yEAAyE;YACzE,IAAI,CAAC,YAAY,CAAC,GAAG,IAAI,CAAC;YAE1B,IAAI,GAAG,IAAI,YAAY,CAAC,IAAI,CAAC,EAAE;gBAC7B,OAAO,aAAa,CAAC,IAAI,EAAE,EAAE,KAAK,EAAE,GAAG,EAAE,EAAE,GAAG,EAAE,CAAC,QAAQ,CAAC,GAAG,EAAE,YAAY,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;aACrF;YAED,QAAQ,EAAE,CAAC;QACb,CAAC,CAAC,CAAC;IACL,CAAC;;AA5jBH,wCA6jBC;AAliBC,aAAa;AACG,oBAAK,GAAG,OAAgB,CAAC;AAmiB3C,SAAS,YAAY,CAAI,MAAsB;IAC7C,IAAI,MAAM,CAAC,UAAU,CAAC,IAAI,IAAI,IAAI,CAAC,MAAM,CAAC,UAAU,CAAC,CAAC,MAAM,EAAE;QAC5D,OAAO,IAAI,CAAC;KACb;IAED,MAAM,GAAG,GAAG,MAAM,CAAC,UAAU,CAAC,CAAC,KAAK,EAAE,CAAC;IACvC,IAAI,GAAG,EAAE;QACP,MAAM,SAAS,GAAG,MAAM,CAAC,UAAU,CAAC,CAAC;QACrC,IAAI,SAAS,EAAE;YACb,OAAO,SAAS,CAAC,GAAG,CAAM,CAAC;SAC5B;QAED,OAAO,GAAG,CAAC;KACZ;IAED,OAAO,IAAI,CAAC;AACd,CAAC;AAED;;;;;;;;;GASG;AACH,SAAgB,IAAI,CAClB,MAAyB,EACzB,QAAiB,EACjB,QAA4B;IAE5B,MAAM,QAAQ,GAAG,MAAM,CAAC,GAAG,CAAC,CAAC;IAC7B,IAAI,MAAM,CAAC,MAAM,EAAE;QACjB,OAAO,QAAQ,CAAC,SAAS,EAAE,IAAI,CAAC,CAAC;KAClC;IAED,IAAI,MAAM,CAAC,UAAU,CAAC,IAAI,MAAM,CAAC,UAAU,CAAC,CAAC,MAAM,EAAE;QACnD,QAAQ,CAAC,SAAS,EAAE,YAAY,CAAI,MAAM,CAAC,CAAC,CAAC;QAC7C,OAAO;KACR;IAED,IAAI,QAAQ,IAAI,IAAI,EAAE;QACpB,oGAAoG;QACpG,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,GAAG,EAAE,KAAK,EAAE,EAAE;YAC3B,IAAI,GAAG;gBAAE,OAAO,QAAQ,CAAC,GAAG,CAAC,CAAC;YAC9B,IAAI,KAAK,EAAE;gBACT,OAAO,QAAQ,CAAC,SAAS,EAAE,KAAK,CAAC,CAAC;aACnC;YACD,OAAO,IAAI,CAAC,MAAM,EAAE,QAAQ,EAAE,QAAQ,CAAC,CAAC;QAC1C,CAAC,CAAC,CAAC;QAEH,OAAO;KACR;IAED,IAAI,YAAY,CAAC,MAAM,CAAC,EAAE;QACxB,OAAO,aAAa,CAAC,MAAM,EAAE,SAAS,EAAE,GAAG,EAAE,CAAC,QAAQ,CAAC,SAAS,EAAE,IAAI,CAAC,CAAC,CAAC;KAC1E;IAED,iCAAiC;IACjC,MAAM,SAAS,GAAG,MAAM,CAAC,QAAQ,CAAC,CAAC,SAAS,IAAI,IAAI,CAAC;IACrD,MAAM,CAAC,QAAQ,CAAC,SAAS,EAAE,CAAC,GAAG,EAAE,QAAQ,EAAE,EAAE;QAC3C,IAAI,QAAQ,EAAE;YACZ,MAAM,QAAQ,GACZ,OAAO,QAAQ,CAAC,MAAM,CAAC,EAAE,KAAK,QAAQ;gBACpC,CAAC,CAAC,WAAI,CAAC,UAAU,CAAC,QAAQ,CAAC,MAAM,CAAC,EAAE,CAAC;gBACrC,CAAC,CAAC,QAAQ,CAAC,MAAM,CAAC,EAAE,CAAC;YAEzB,MAAM,CAAC,UAAU,CAAC,GAAG,QAAQ,CAAC,MAAM,CAAC,SAAS,CAAC;YAC/C,MAAM,CAAC,GAAG,CAAC,GAAG,QAAQ,CAAC;SACxB;QAED,IAAI,GAAG,IAAI,YAAY,CAAC,MAAM,CAAC,EAAE;YAC/B,OAAO,aAAa,CAAC,MAAM,EAAE,EAAE,KAAK,EAAE,GAAG,EAAE,EAAE,GAAG,EAAE,CAAC,QAAQ,CAAC,GAAG,EAAE,YAAY,CAAI,MAAM,CAAC,CAAC,CAAC,CAAC;SAC5F;QAED,IAAI,MAAM,CAAC,UAAU,CAAC,CAAC,MAAM,KAAK,CAAC,IAAI,QAAQ,KAAK,KAAK,EAAE;YACzD,OAAO,QAAQ,CAAC,SAAS,EAAE,IAAI,CAAC,CAAC;SAClC;QAED,IAAI,CAAC,MAAM,EAAE,QAAQ,EAAE,QAAQ,CAAC,CAAC;IACnC,CAAC,CAAC,CAAC;AACL,CAAC;AAvDD,oBAuDC;AAED,SAAS,YAAY,CAAC,MAAsB;IAC1C,MAAM,QAAQ,GAAG,MAAM,CAAC,GAAG,CAAC,CAAC;IAC7B,OAAO,CAAC,CAAC,QAAQ,IAAI,QAAQ,CAAC,MAAM,EAAE,CAAC;AACzC,CAAC;AAED,SAAS,aAAa,CACpB,MAAsB,EACtB,OAAkF,EAClF,QAAkB;;IAElB,MAAM,QAAQ,GAAG,MAAM,CAAC,GAAG,CAAC,CAAC;IAC7B,MAAM,QAAQ,GAAG,MAAM,CAAC,UAAU,CAAC,CAAC;IACpC,MAAM,MAAM,GAAG,MAAM,CAAC,OAAO,CAAC,CAAC;IAC/B,MAAM,OAAO,GAAG,MAAM,CAAC,QAAQ,CAAC,CAAC;IACjC,MAAM,KAAK,GAAG,OAAO,aAAP,OAAO,uBAAP,OAAO,CAAE,KAAK,CAAC;IAC7B,MAAM,iBAAiB,GAAG,MAAA,OAAO,aAAP,OAAO,uBAAP,OAAO,CAAE,iBAAiB,mCAAI,MAAM,CAAC,UAAU,CAAC,CAAC,MAAM,KAAK,CAAC,CAAC;IAExF,IAAI,KAAK,EAAE;QACT,IAAI,MAAM,CAAC,YAAY,IAAI,KAAK,YAAY,yBAAiB,EAAE;YAC7D,OAAO,eAAe,EAAE,CAAC;SAC1B;KACF;IAED,IAAI,QAAQ,IAAI,IAAI,IAAI,MAAM,IAAI,IAAI,IAAI,QAAQ,CAAC,MAAM,EAAE,IAAI,QAAQ,IAAI,IAAI,EAAE;QAC/E,IAAI,iBAAiB,EAAE;YACrB,MAAM,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC;YACvB,MAAM,CAAC,GAAG,CAAC,GAAG,WAAI,CAAC,IAAI,CAAC;YACxB,MAAM,CAAC,IAAI,CAAC,cAAc,CAAC,KAAK,CAAC,CAAC;SACnC;QAED,IAAI,OAAO,EAAE;YACX,IAAI,OAAO,CAAC,KAAK,KAAK,MAAM,EAAE;gBAC5B,OAAO,OAAO,CAAC,UAAU,CAAC,EAAE,KAAK,EAAE,EAAE,QAAQ,CAAC,CAAC;aAChD;YAED,IAAI,CAAC,OAAO,CAAC,aAAa,EAAE,EAAE;gBAC5B,IAAA,qCAA0B,EAAC,OAAO,EAAE,EAAE,KAAK,EAAE,CAAC,CAAC;aAChD;SACF;QAED,OAAO,QAAQ,EAAE,CAAC;KACnB;IAED,SAAS,eAAe;QACtB,IAAI,OAAO,EAAE;YACX,IAAI,OAAO,CAAC,KAAK,KAAK,MAAM,EAAE;gBAC5B,OAAO,OAAO,CAAC,UAAU,CAAC,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE;oBACxC,MAAM,CAAC,IAAI,CAAC,cAAc,CAAC,KAAK,CAAC,CAAC;oBAClC,QAAQ,EAAE,CAAC;gBACb,CAAC,CAAC,CAAC;aACJ;YAED,IAAI,CAAC,OAAO,CAAC,aAAa,EAAE,EAAE;gBAC5B,IAAA,qCAA0B,EAAC,OAAO,EAAE,EAAE,KAAK,EAAE,CAAC,CAAC;aAChD;SACF;QAED,MAAM,CAAC,IAAI,CAAC,cAAc,CAAC,KAAK,CAAC,CAAC;QAClC,OAAO,QAAQ,EAAE,CAAC;IACpB,CAAC;IAED,MAAM,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC;IAEvB,OAAO,IAAA,oCAAgB,EACrB,MAAM,CAAC,OAAO,CAAC,EACf,IAAI,mCAAoB,CAAC,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,EAAE,OAAO,EAAE,CAAC,EACjE,eAAe,CAChB,CAAC;AACJ,CAAC;AAED,gBAAgB;AAChB,SAAgB,mBAAmB,CAAC,MAAsB;IACxD,IAAI,MAAM,CAAC,YAAY,CAAC,EAAE;QACxB,MAAM,IAAI,6BAAqB,EAAE,CAAC;KACnC;AACH,CAAC;AAJD,kDAIC;AAED,MAAM,oBAAqB,SAAQ,iBAAQ;IAIzC,YAAY,MAAsB;QAChC,KAAK,CAAC;YACJ,UAAU,EAAE,IAAI;YAChB,WAAW,EAAE,KAAK;YAClB,aAAa,EAAE,CAAC;SACjB,CAAC,CAAC;QAPG,oBAAe,GAAG,KAAK,CAAC;QAQ9B,IAAI,CAAC,OAAO,GAAG,MAAM,CAAC;IACxB,CAAC;IAED,6DAA6D;IACpD,KAAK,CAAC,IAAY;QACzB,IAAI,CAAC,IAAI,CAAC,eAAe,EAAE;YACzB,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC;YAC5B,IAAI,CAAC,SAAS,EAAE,CAAC;SAClB;IACH,CAAC;IAEQ,QAAQ,CAAC,KAAmB,EAAE,QAAwC;QAC7E,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,OAAO,CAAC,QAAQ,CAAC,QAAQ,EAAE,GAAG,IAAI,KAAK,CAAC,CAAC,CAAC;IACtE,CAAC;IAEO,SAAS;QACf,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE,IAAI,EAAE,CAAC,GAAG,EAAE,MAAM,EAAE,EAAE;YACvC,IAAI,GAAG,EAAE;gBACP,oFAAoF;gBACpF,qFAAqF;gBACrF,oFAAoF;gBACpF,mEAAmE;gBACnE,IAAI,GAAG,CAAC,OAAO,CAAC,KAAK,CAAC,kBAAkB,CAAC,EAAE;oBACzC,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,CAAC;oBACvC,OAAO,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;iBACxB;gBAED,wFAAwF;gBACxF,sFAAsF;gBACtF,uFAAuF;gBACvF,kFAAkF;gBAClF,6EAA6E;gBAC7E,IAAI,GAAG,CAAC,OAAO,CAAC,KAAK,CAAC,aAAa,CAAC,EAAE;oBACpC,OAAO,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;iBACxB;gBAED,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC;aAC1B;YAED,IAAI,MAAM,IAAI,IAAI,EAAE;gBAClB,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;aACjB;iBAAM,IAAI,IAAI,CAAC,SAAS,EAAE;gBACzB,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,CAAC;aACxC;iBAAM;gBACL,IAAI,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,EAAE;oBACrB,OAAO,IAAI,CAAC,SAAS,EAAE,CAAC;iBACzB;gBAED,IAAI,CAAC,eAAe,GAAG,KAAK,CAAC;aAC9B;QACH,CAAC,CAAC,CAAC;IACL,CAAC;CACF"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/cursor/aggregation_cursor.js b/node_modules/mongodb/lib/cursor/aggregation_cursor.js new file mode 100644 index 000000000..ad77c58a0 --- /dev/null +++ b/node_modules/mongodb/lib/cursor/aggregation_cursor.js @@ -0,0 +1,172 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.AggregationCursor = void 0; +const aggregate_1 = require("../operations/aggregate"); +const execute_operation_1 = require("../operations/execute_operation"); +const utils_1 = require("../utils"); +const abstract_cursor_1 = require("./abstract_cursor"); +/** @internal */ +const kPipeline = Symbol('pipeline'); +/** @internal */ +const kOptions = Symbol('options'); +/** + * The **AggregationCursor** class is an internal class that embodies an aggregation cursor on MongoDB + * allowing for iteration over the results returned from the underlying query. It supports + * one by one document iteration, conversion to an array or can be iterated as a Node 4.X + * or higher stream + * @public + */ +class AggregationCursor extends abstract_cursor_1.AbstractCursor { + /** @internal */ + constructor(client, namespace, pipeline = [], options = {}) { + super(client, namespace, options); + this[kPipeline] = pipeline; + this[kOptions] = options; + } + get pipeline() { + return this[kPipeline]; + } + clone() { + const clonedOptions = (0, utils_1.mergeOptions)({}, this[kOptions]); + delete clonedOptions.session; + return new AggregationCursor(this.client, this.namespace, this[kPipeline], { + ...clonedOptions + }); + } + map(transform) { + return super.map(transform); + } + /** @internal */ + _initialize(session, callback) { + const aggregateOperation = new aggregate_1.AggregateOperation(this.namespace, this[kPipeline], { + ...this[kOptions], + ...this.cursorOptions, + session + }); + (0, execute_operation_1.executeOperation)(this.client, aggregateOperation, (err, response) => { + if (err || response == null) + return callback(err); + // TODO: NODE-2882 + callback(undefined, { server: aggregateOperation.server, session, response }); + }); + } + explain(verbosity, callback) { + if (typeof verbosity === 'function') + (callback = verbosity), (verbosity = true); + if (verbosity == null) + verbosity = true; + return (0, execute_operation_1.executeOperation)(this.client, new aggregate_1.AggregateOperation(this.namespace, this[kPipeline], { + ...this[kOptions], + ...this.cursorOptions, + explain: verbosity + }), callback); + } + group($group) { + (0, abstract_cursor_1.assertUninitialized)(this); + this[kPipeline].push({ $group }); + return this; + } + /** Add a limit stage to the aggregation pipeline */ + limit($limit) { + (0, abstract_cursor_1.assertUninitialized)(this); + this[kPipeline].push({ $limit }); + return this; + } + /** Add a match stage to the aggregation pipeline */ + match($match) { + (0, abstract_cursor_1.assertUninitialized)(this); + this[kPipeline].push({ $match }); + return this; + } + /** Add an out stage to the aggregation pipeline */ + out($out) { + (0, abstract_cursor_1.assertUninitialized)(this); + this[kPipeline].push({ $out }); + return this; + } + /** + * Add a project stage to the aggregation pipeline + * + * @remarks + * In order to strictly type this function you must provide an interface + * that represents the effect of your projection on the result documents. + * + * By default chaining a projection to your cursor changes the returned type to the generic {@link Document} type. + * You should specify a parameterized type to have assertions on your final results. + * + * @example + * ```typescript + * // Best way + * const docs: AggregationCursor<{ a: number }> = cursor.project<{ a: number }>({ _id: 0, a: true }); + * // Flexible way + * const docs: AggregationCursor = cursor.project({ _id: 0, a: true }); + * ``` + * + * @remarks + * In order to strictly type this function you must provide an interface + * that represents the effect of your projection on the result documents. + * + * **Note for Typescript Users:** adding a transform changes the return type of the iteration of this cursor, + * it **does not** return a new instance of a cursor. This means when calling project, + * you should always assign the result to a new variable in order to get a correctly typed cursor variable. + * Take note of the following example: + * + * @example + * ```typescript + * const cursor: AggregationCursor<{ a: number; b: string }> = coll.aggregate([]); + * const projectCursor = cursor.project<{ a: number }>({ _id: 0, a: true }); + * const aPropOnlyArray: {a: number}[] = await projectCursor.toArray(); + * + * // or always use chaining and save the final cursor + * + * const cursor = coll.aggregate().project<{ a: string }>({ + * _id: 0, + * a: { $convert: { input: '$a', to: 'string' } + * }}); + * ``` + */ + project($project) { + (0, abstract_cursor_1.assertUninitialized)(this); + this[kPipeline].push({ $project }); + return this; + } + /** Add a lookup stage to the aggregation pipeline */ + lookup($lookup) { + (0, abstract_cursor_1.assertUninitialized)(this); + this[kPipeline].push({ $lookup }); + return this; + } + /** Add a redact stage to the aggregation pipeline */ + redact($redact) { + (0, abstract_cursor_1.assertUninitialized)(this); + this[kPipeline].push({ $redact }); + return this; + } + /** Add a skip stage to the aggregation pipeline */ + skip($skip) { + (0, abstract_cursor_1.assertUninitialized)(this); + this[kPipeline].push({ $skip }); + return this; + } + /** Add a sort stage to the aggregation pipeline */ + sort($sort) { + (0, abstract_cursor_1.assertUninitialized)(this); + this[kPipeline].push({ $sort }); + return this; + } + /** Add a unwind stage to the aggregation pipeline */ + unwind($unwind) { + (0, abstract_cursor_1.assertUninitialized)(this); + this[kPipeline].push({ $unwind }); + return this; + } + // deprecated methods + /** @deprecated Add a geoNear stage to the aggregation pipeline */ + geoNear($geoNear) { + (0, abstract_cursor_1.assertUninitialized)(this); + this[kPipeline].push({ $geoNear }); + return this; + } +} +exports.AggregationCursor = AggregationCursor; +//# sourceMappingURL=aggregation_cursor.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/cursor/aggregation_cursor.js.map b/node_modules/mongodb/lib/cursor/aggregation_cursor.js.map new file mode 100644 index 000000000..442a18cb1 --- /dev/null +++ b/node_modules/mongodb/lib/cursor/aggregation_cursor.js.map @@ -0,0 +1 @@ +{"version":3,"file":"aggregation_cursor.js","sourceRoot":"","sources":["../../src/cursor/aggregation_cursor.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/cursor/change_stream_cursor.js b/node_modules/mongodb/lib/cursor/change_stream_cursor.js new file mode 100644 index 000000000..471fb6cd3 --- /dev/null +++ b/node_modules/mongodb/lib/cursor/change_stream_cursor.js @@ -0,0 +1,115 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.ChangeStreamCursor = void 0; +const change_stream_1 = require("../change_stream"); +const constants_1 = require("../constants"); +const aggregate_1 = require("../operations/aggregate"); +const execute_operation_1 = require("../operations/execute_operation"); +const utils_1 = require("../utils"); +const abstract_cursor_1 = require("./abstract_cursor"); +/** @internal */ +class ChangeStreamCursor extends abstract_cursor_1.AbstractCursor { + constructor(client, namespace, pipeline = [], options = {}) { + super(client, namespace, options); + this.pipeline = pipeline; + this.options = options; + this._resumeToken = null; + this.startAtOperationTime = options.startAtOperationTime; + if (options.startAfter) { + this.resumeToken = options.startAfter; + } + else if (options.resumeAfter) { + this.resumeToken = options.resumeAfter; + } + } + set resumeToken(token) { + this._resumeToken = token; + this.emit(change_stream_1.ChangeStream.RESUME_TOKEN_CHANGED, token); + } + get resumeToken() { + return this._resumeToken; + } + get resumeOptions() { + const options = { + ...this.options + }; + for (const key of ['resumeAfter', 'startAfter', 'startAtOperationTime']) { + delete options[key]; + } + if (this.resumeToken != null) { + if (this.options.startAfter && !this.hasReceived) { + options.startAfter = this.resumeToken; + } + else { + options.resumeAfter = this.resumeToken; + } + } + else if (this.startAtOperationTime != null && (0, utils_1.maxWireVersion)(this.server) >= 7) { + options.startAtOperationTime = this.startAtOperationTime; + } + return options; + } + cacheResumeToken(resumeToken) { + if (this.bufferedCount() === 0 && this.postBatchResumeToken) { + this.resumeToken = this.postBatchResumeToken; + } + else { + this.resumeToken = resumeToken; + } + this.hasReceived = true; + } + _processBatch(response) { + const cursor = response.cursor; + if (cursor.postBatchResumeToken) { + this.postBatchResumeToken = response.cursor.postBatchResumeToken; + const batch = 'firstBatch' in response.cursor ? response.cursor.firstBatch : response.cursor.nextBatch; + if (batch.length === 0) { + this.resumeToken = cursor.postBatchResumeToken; + } + } + } + clone() { + return new ChangeStreamCursor(this.client, this.namespace, this.pipeline, { + ...this.cursorOptions + }); + } + _initialize(session, callback) { + const aggregateOperation = new aggregate_1.AggregateOperation(this.namespace, this.pipeline, { + ...this.cursorOptions, + ...this.options, + session + }); + (0, execute_operation_1.executeOperation)(session.client, aggregateOperation, (err, response) => { + if (err || response == null) { + return callback(err); + } + const server = aggregateOperation.server; + this.maxWireVersion = (0, utils_1.maxWireVersion)(server); + if (this.startAtOperationTime == null && + this.resumeAfter == null && + this.startAfter == null && + this.maxWireVersion >= 7) { + this.startAtOperationTime = response.operationTime; + } + this._processBatch(response); + this.emit(constants_1.INIT, response); + this.emit(constants_1.RESPONSE); + // TODO: NODE-2882 + callback(undefined, { server, session, response }); + }); + } + _getMore(batchSize, callback) { + super._getMore(batchSize, (err, response) => { + if (err) { + return callback(err); + } + this.maxWireVersion = (0, utils_1.maxWireVersion)(this.server); + this._processBatch(response); + this.emit(change_stream_1.ChangeStream.MORE, response); + this.emit(change_stream_1.ChangeStream.RESPONSE); + callback(err, response); + }); + } +} +exports.ChangeStreamCursor = ChangeStreamCursor; +//# sourceMappingURL=change_stream_cursor.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/cursor/change_stream_cursor.js.map b/node_modules/mongodb/lib/cursor/change_stream_cursor.js.map new file mode 100644 index 000000000..259e3ded1 --- /dev/null +++ b/node_modules/mongodb/lib/cursor/change_stream_cursor.js.map @@ -0,0 +1 @@ +{"version":3,"file":"change_stream_cursor.js","sourceRoot":"","sources":["../../src/cursor/change_stream_cursor.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/cursor/find_cursor.js b/node_modules/mongodb/lib/cursor/find_cursor.js new file mode 100644 index 000000000..072bf789d --- /dev/null +++ b/node_modules/mongodb/lib/cursor/find_cursor.js @@ -0,0 +1,382 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.FindCursor = exports.FLAGS = void 0; +const error_1 = require("../error"); +const count_1 = require("../operations/count"); +const execute_operation_1 = require("../operations/execute_operation"); +const find_1 = require("../operations/find"); +const sort_1 = require("../sort"); +const utils_1 = require("../utils"); +const abstract_cursor_1 = require("./abstract_cursor"); +/** @internal */ +const kFilter = Symbol('filter'); +/** @internal */ +const kNumReturned = Symbol('numReturned'); +/** @internal */ +const kBuiltOptions = Symbol('builtOptions'); +/** @public Flags allowed for cursor */ +exports.FLAGS = [ + 'tailable', + 'oplogReplay', + 'noCursorTimeout', + 'awaitData', + 'exhaust', + 'partial' +]; +/** @public */ +class FindCursor extends abstract_cursor_1.AbstractCursor { + /** @internal */ + constructor(client, namespace, filter, options = {}) { + super(client, namespace, options); + this[kFilter] = filter || {}; + this[kBuiltOptions] = options; + if (options.sort != null) { + this[kBuiltOptions].sort = (0, sort_1.formatSort)(options.sort); + } + } + clone() { + const clonedOptions = (0, utils_1.mergeOptions)({}, this[kBuiltOptions]); + delete clonedOptions.session; + return new FindCursor(this.client, this.namespace, this[kFilter], { + ...clonedOptions + }); + } + map(transform) { + return super.map(transform); + } + /** @internal */ + _initialize(session, callback) { + const findOperation = new find_1.FindOperation(undefined, this.namespace, this[kFilter], { + ...this[kBuiltOptions], + ...this.cursorOptions, + session + }); + (0, execute_operation_1.executeOperation)(this.client, findOperation, (err, response) => { + if (err || response == null) + return callback(err); + // TODO: We only need this for legacy queries that do not support `limit`, maybe + // the value should only be saved in those cases. + if (response.cursor) { + this[kNumReturned] = response.cursor.firstBatch.length; + } + else { + this[kNumReturned] = response.documents ? response.documents.length : 0; + } + // TODO: NODE-2882 + callback(undefined, { server: findOperation.server, session, response }); + }); + } + /** @internal */ + _getMore(batchSize, callback) { + // NOTE: this is to support client provided limits in pre-command servers + const numReturned = this[kNumReturned]; + if (numReturned) { + const limit = this[kBuiltOptions].limit; + batchSize = + limit && limit > 0 && numReturned + batchSize > limit ? limit - numReturned : batchSize; + if (batchSize <= 0) { + return this.close(callback); + } + } + super._getMore(batchSize, (err, response) => { + if (err) + return callback(err); + // TODO: wrap this in some logic to prevent it from happening if we don't need this support + if (response) { + this[kNumReturned] = this[kNumReturned] + response.cursor.nextBatch.length; + } + callback(undefined, response); + }); + } + count(options, callback) { + (0, utils_1.emitWarningOnce)('cursor.count is deprecated and will be removed in the next major version, please use `collection.estimatedDocumentCount` or `collection.countDocuments` instead '); + if (typeof options === 'boolean') { + throw new error_1.MongoInvalidArgumentError('Invalid first parameter to count'); + } + if (typeof options === 'function') + (callback = options), (options = {}); + options = options !== null && options !== void 0 ? options : {}; + return (0, execute_operation_1.executeOperation)(this.client, new count_1.CountOperation(this.namespace, this[kFilter], { + ...this[kBuiltOptions], + ...this.cursorOptions, + ...options + }), callback); + } + explain(verbosity, callback) { + if (typeof verbosity === 'function') + (callback = verbosity), (verbosity = true); + if (verbosity == null) + verbosity = true; + return (0, execute_operation_1.executeOperation)(this.client, new find_1.FindOperation(undefined, this.namespace, this[kFilter], { + ...this[kBuiltOptions], + ...this.cursorOptions, + explain: verbosity + }), callback); + } + /** Set the cursor query */ + filter(filter) { + (0, abstract_cursor_1.assertUninitialized)(this); + this[kFilter] = filter; + return this; + } + /** + * Set the cursor hint + * + * @param hint - If specified, then the query system will only consider plans using the hinted index. + */ + hint(hint) { + (0, abstract_cursor_1.assertUninitialized)(this); + this[kBuiltOptions].hint = hint; + return this; + } + /** + * Set the cursor min + * + * @param min - Specify a $min value to specify the inclusive lower bound for a specific index in order to constrain the results of find(). The $min specifies the lower bound for all keys of a specific index in order. + */ + min(min) { + (0, abstract_cursor_1.assertUninitialized)(this); + this[kBuiltOptions].min = min; + return this; + } + /** + * Set the cursor max + * + * @param max - Specify a $max value to specify the exclusive upper bound for a specific index in order to constrain the results of find(). The $max specifies the upper bound for all keys of a specific index in order. + */ + max(max) { + (0, abstract_cursor_1.assertUninitialized)(this); + this[kBuiltOptions].max = max; + return this; + } + /** + * Set the cursor returnKey. + * If set to true, modifies the cursor to only return the index field or fields for the results of the query, rather than documents. + * If set to true and the query does not use an index to perform the read operation, the returned documents will not contain any fields. + * + * @param value - the returnKey value. + */ + returnKey(value) { + (0, abstract_cursor_1.assertUninitialized)(this); + this[kBuiltOptions].returnKey = value; + return this; + } + /** + * Modifies the output of a query by adding a field $recordId to matching documents. $recordId is the internal key which uniquely identifies a document in a collection. + * + * @param value - The $showDiskLoc option has now been deprecated and replaced with the showRecordId field. $showDiskLoc will still be accepted for OP_QUERY stye find. + */ + showRecordId(value) { + (0, abstract_cursor_1.assertUninitialized)(this); + this[kBuiltOptions].showRecordId = value; + return this; + } + /** + * Add a query modifier to the cursor query + * + * @param name - The query modifier (must start with $, such as $orderby etc) + * @param value - The modifier value. + */ + addQueryModifier(name, value) { + (0, abstract_cursor_1.assertUninitialized)(this); + if (name[0] !== '$') { + throw new error_1.MongoInvalidArgumentError(`${name} is not a valid query modifier`); + } + // Strip of the $ + const field = name.substr(1); + // NOTE: consider some TS magic for this + switch (field) { + case 'comment': + this[kBuiltOptions].comment = value; + break; + case 'explain': + this[kBuiltOptions].explain = value; + break; + case 'hint': + this[kBuiltOptions].hint = value; + break; + case 'max': + this[kBuiltOptions].max = value; + break; + case 'maxTimeMS': + this[kBuiltOptions].maxTimeMS = value; + break; + case 'min': + this[kBuiltOptions].min = value; + break; + case 'orderby': + this[kBuiltOptions].sort = (0, sort_1.formatSort)(value); + break; + case 'query': + this[kFilter] = value; + break; + case 'returnKey': + this[kBuiltOptions].returnKey = value; + break; + case 'showDiskLoc': + this[kBuiltOptions].showRecordId = value; + break; + default: + throw new error_1.MongoInvalidArgumentError(`Invalid query modifier: ${name}`); + } + return this; + } + /** + * Add a comment to the cursor query allowing for tracking the comment in the log. + * + * @param value - The comment attached to this query. + */ + comment(value) { + (0, abstract_cursor_1.assertUninitialized)(this); + this[kBuiltOptions].comment = value; + return this; + } + /** + * Set a maxAwaitTimeMS on a tailing cursor query to allow to customize the timeout value for the option awaitData (Only supported on MongoDB 3.2 or higher, ignored otherwise) + * + * @param value - Number of milliseconds to wait before aborting the tailed query. + */ + maxAwaitTimeMS(value) { + (0, abstract_cursor_1.assertUninitialized)(this); + if (typeof value !== 'number') { + throw new error_1.MongoInvalidArgumentError('Argument for maxAwaitTimeMS must be a number'); + } + this[kBuiltOptions].maxAwaitTimeMS = value; + return this; + } + /** + * Set a maxTimeMS on the cursor query, allowing for hard timeout limits on queries (Only supported on MongoDB 2.6 or higher) + * + * @param value - Number of milliseconds to wait before aborting the query. + */ + maxTimeMS(value) { + (0, abstract_cursor_1.assertUninitialized)(this); + if (typeof value !== 'number') { + throw new error_1.MongoInvalidArgumentError('Argument for maxTimeMS must be a number'); + } + this[kBuiltOptions].maxTimeMS = value; + return this; + } + /** + * Add a project stage to the aggregation pipeline + * + * @remarks + * In order to strictly type this function you must provide an interface + * that represents the effect of your projection on the result documents. + * + * By default chaining a projection to your cursor changes the returned type to the generic + * {@link Document} type. + * You should specify a parameterized type to have assertions on your final results. + * + * @example + * ```typescript + * // Best way + * const docs: FindCursor<{ a: number }> = cursor.project<{ a: number }>({ _id: 0, a: true }); + * // Flexible way + * const docs: FindCursor = cursor.project({ _id: 0, a: true }); + * ``` + * + * @remarks + * + * **Note for Typescript Users:** adding a transform changes the return type of the iteration of this cursor, + * it **does not** return a new instance of a cursor. This means when calling project, + * you should always assign the result to a new variable in order to get a correctly typed cursor variable. + * Take note of the following example: + * + * @example + * ```typescript + * const cursor: FindCursor<{ a: number; b: string }> = coll.find(); + * const projectCursor = cursor.project<{ a: number }>({ _id: 0, a: true }); + * const aPropOnlyArray: {a: number}[] = await projectCursor.toArray(); + * + * // or always use chaining and save the final cursor + * + * const cursor = coll.find().project<{ a: string }>({ + * _id: 0, + * a: { $convert: { input: '$a', to: 'string' } + * }}); + * ``` + */ + project(value) { + (0, abstract_cursor_1.assertUninitialized)(this); + this[kBuiltOptions].projection = value; + return this; + } + /** + * Sets the sort order of the cursor query. + * + * @param sort - The key or keys set for the sort. + * @param direction - The direction of the sorting (1 or -1). + */ + sort(sort, direction) { + (0, abstract_cursor_1.assertUninitialized)(this); + if (this[kBuiltOptions].tailable) { + throw new error_1.MongoTailableCursorError('Tailable cursor does not support sorting'); + } + this[kBuiltOptions].sort = (0, sort_1.formatSort)(sort, direction); + return this; + } + /** + * Allows disk use for blocking sort operations exceeding 100MB memory. (MongoDB 3.2 or higher) + * + * @remarks + * {@link https://docs.mongodb.com/manual/reference/command/find/#find-cmd-allowdiskuse | find command allowDiskUse documentation} + */ + allowDiskUse(allow = true) { + (0, abstract_cursor_1.assertUninitialized)(this); + if (!this[kBuiltOptions].sort) { + throw new error_1.MongoInvalidArgumentError('Option "allowDiskUse" requires a sort specification'); + } + // As of 6.0 the default is true. This allows users to get back to the old behaviour. + if (!allow) { + this[kBuiltOptions].allowDiskUse = false; + return this; + } + this[kBuiltOptions].allowDiskUse = true; + return this; + } + /** + * Set the collation options for the cursor. + * + * @param value - The cursor collation options (MongoDB 3.4 or higher) settings for update operation (see 3.4 documentation for available fields). + */ + collation(value) { + (0, abstract_cursor_1.assertUninitialized)(this); + this[kBuiltOptions].collation = value; + return this; + } + /** + * Set the limit for the cursor. + * + * @param value - The limit for the cursor query. + */ + limit(value) { + (0, abstract_cursor_1.assertUninitialized)(this); + if (this[kBuiltOptions].tailable) { + throw new error_1.MongoTailableCursorError('Tailable cursor does not support limit'); + } + if (typeof value !== 'number') { + throw new error_1.MongoInvalidArgumentError('Operation "limit" requires an integer'); + } + this[kBuiltOptions].limit = value; + return this; + } + /** + * Set the skip for the cursor. + * + * @param value - The skip for the cursor query. + */ + skip(value) { + (0, abstract_cursor_1.assertUninitialized)(this); + if (this[kBuiltOptions].tailable) { + throw new error_1.MongoTailableCursorError('Tailable cursor does not support skip'); + } + if (typeof value !== 'number') { + throw new error_1.MongoInvalidArgumentError('Operation "skip" requires an integer'); + } + this[kBuiltOptions].skip = value; + return this; + } +} +exports.FindCursor = FindCursor; +//# sourceMappingURL=find_cursor.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/cursor/find_cursor.js.map b/node_modules/mongodb/lib/cursor/find_cursor.js.map new file mode 100644 index 000000000..83595a744 --- /dev/null +++ b/node_modules/mongodb/lib/cursor/find_cursor.js.map @@ -0,0 +1 @@ +{"version":3,"file":"find_cursor.js","sourceRoot":"","sources":["../../src/cursor/find_cursor.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/cursor/list_collections_cursor.js b/node_modules/mongodb/lib/cursor/list_collections_cursor.js new file mode 100644 index 000000000..883474b08 --- /dev/null +++ b/node_modules/mongodb/lib/cursor/list_collections_cursor.js @@ -0,0 +1,37 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.ListCollectionsCursor = void 0; +const execute_operation_1 = require("../operations/execute_operation"); +const list_collections_1 = require("../operations/list_collections"); +const abstract_cursor_1 = require("./abstract_cursor"); +/** @public */ +class ListCollectionsCursor extends abstract_cursor_1.AbstractCursor { + constructor(db, filter, options) { + super(db.s.client, db.s.namespace, options); + this.parent = db; + this.filter = filter; + this.options = options; + } + clone() { + return new ListCollectionsCursor(this.parent, this.filter, { + ...this.options, + ...this.cursorOptions + }); + } + /** @internal */ + _initialize(session, callback) { + const operation = new list_collections_1.ListCollectionsOperation(this.parent, this.filter, { + ...this.cursorOptions, + ...this.options, + session + }); + (0, execute_operation_1.executeOperation)(this.parent.s.client, operation, (err, response) => { + if (err || response == null) + return callback(err); + // TODO: NODE-2882 + callback(undefined, { server: operation.server, session, response }); + }); + } +} +exports.ListCollectionsCursor = ListCollectionsCursor; +//# sourceMappingURL=list_collections_cursor.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/cursor/list_collections_cursor.js.map b/node_modules/mongodb/lib/cursor/list_collections_cursor.js.map new file mode 100644 index 000000000..2f8ecbe33 --- /dev/null +++ b/node_modules/mongodb/lib/cursor/list_collections_cursor.js.map @@ -0,0 +1 @@ +{"version":3,"file":"list_collections_cursor.js","sourceRoot":"","sources":["../../src/cursor/list_collections_cursor.ts"],"names":[],"mappings":";;;AAEA,uEAAoF;AACpF,qEAIwC;AAGxC,uDAAmD;AAEnD,cAAc;AACd,MAAa,qBAIX,SAAQ,gCAAiB;IAKzB,YAAY,EAAM,EAAE,MAAgB,EAAE,OAAgC;QACpE,KAAK,CAAC,EAAE,CAAC,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,CAAC,SAAS,EAAE,OAAO,CAAC,CAAC;QAC5C,IAAI,CAAC,MAAM,GAAG,EAAE,CAAC;QACjB,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;QACrB,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;IACzB,CAAC;IAED,KAAK;QACH,OAAO,IAAI,qBAAqB,CAAC,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,MAAM,EAAE;YACzD,GAAG,IAAI,CAAC,OAAO;YACf,GAAG,IAAI,CAAC,aAAa;SACtB,CAAC,CAAC;IACL,CAAC;IAED,gBAAgB;IAChB,WAAW,CAAC,OAAkC,EAAE,QAAmC;QACjF,MAAM,SAAS,GAAG,IAAI,2CAAwB,CAAC,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,MAAM,EAAE;YACvE,GAAG,IAAI,CAAC,aAAa;YACrB,GAAG,IAAI,CAAC,OAAO;YACf,OAAO;SACR,CAAC,CAAC;QAEH,IAAA,oCAAgB,EAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,EAAE,SAAS,EAAE,CAAC,GAAG,EAAE,QAAQ,EAAE,EAAE;YAClE,IAAI,GAAG,IAAI,QAAQ,IAAI,IAAI;gBAAE,OAAO,QAAQ,CAAC,GAAG,CAAC,CAAC;YAElD,kBAAkB;YAClB,QAAQ,CAAC,SAAS,EAAE,EAAE,MAAM,EAAE,SAAS,CAAC,MAAM,EAAE,OAAO,EAAE,QAAQ,EAAE,CAAC,CAAC;QACvE,CAAC,CAAC,CAAC;IACL,CAAC;CACF;AAtCD,sDAsCC"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/cursor/list_indexes_cursor.js b/node_modules/mongodb/lib/cursor/list_indexes_cursor.js new file mode 100644 index 000000000..7d62d78fd --- /dev/null +++ b/node_modules/mongodb/lib/cursor/list_indexes_cursor.js @@ -0,0 +1,36 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.ListIndexesCursor = void 0; +const execute_operation_1 = require("../operations/execute_operation"); +const indexes_1 = require("../operations/indexes"); +const abstract_cursor_1 = require("./abstract_cursor"); +/** @public */ +class ListIndexesCursor extends abstract_cursor_1.AbstractCursor { + constructor(collection, options) { + super(collection.s.db.s.client, collection.s.namespace, options); + this.parent = collection; + this.options = options; + } + clone() { + return new ListIndexesCursor(this.parent, { + ...this.options, + ...this.cursorOptions + }); + } + /** @internal */ + _initialize(session, callback) { + const operation = new indexes_1.ListIndexesOperation(this.parent, { + ...this.cursorOptions, + ...this.options, + session + }); + (0, execute_operation_1.executeOperation)(this.parent.s.db.s.client, operation, (err, response) => { + if (err || response == null) + return callback(err); + // TODO: NODE-2882 + callback(undefined, { server: operation.server, session, response }); + }); + } +} +exports.ListIndexesCursor = ListIndexesCursor; +//# sourceMappingURL=list_indexes_cursor.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/cursor/list_indexes_cursor.js.map b/node_modules/mongodb/lib/cursor/list_indexes_cursor.js.map new file mode 100644 index 000000000..f17b57685 --- /dev/null +++ b/node_modules/mongodb/lib/cursor/list_indexes_cursor.js.map @@ -0,0 +1 @@ +{"version":3,"file":"list_indexes_cursor.js","sourceRoot":"","sources":["../../src/cursor/list_indexes_cursor.ts"],"names":[],"mappings":";;;AACA,uEAAoF;AACpF,mDAAiF;AAGjF,uDAAmD;AAEnD,cAAc;AACd,MAAa,iBAAkB,SAAQ,gCAAc;IAInD,YAAY,UAAsB,EAAE,OAA4B;QAC9D,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,MAAM,EAAE,UAAU,CAAC,CAAC,CAAC,SAAS,EAAE,OAAO,CAAC,CAAC;QACjE,IAAI,CAAC,MAAM,GAAG,UAAU,CAAC;QACzB,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;IACzB,CAAC;IAED,KAAK;QACH,OAAO,IAAI,iBAAiB,CAAC,IAAI,CAAC,MAAM,EAAE;YACxC,GAAG,IAAI,CAAC,OAAO;YACf,GAAG,IAAI,CAAC,aAAa;SACtB,CAAC,CAAC;IACL,CAAC;IAED,gBAAgB;IAChB,WAAW,CAAC,OAAkC,EAAE,QAAmC;QACjF,MAAM,SAAS,GAAG,IAAI,8BAAoB,CAAC,IAAI,CAAC,MAAM,EAAE;YACtD,GAAG,IAAI,CAAC,aAAa;YACrB,GAAG,IAAI,CAAC,OAAO;YACf,OAAO;SACR,CAAC,CAAC;QAEH,IAAA,oCAAgB,EAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,MAAM,EAAE,SAAS,EAAE,CAAC,GAAG,EAAE,QAAQ,EAAE,EAAE;YACvE,IAAI,GAAG,IAAI,QAAQ,IAAI,IAAI;gBAAE,OAAO,QAAQ,CAAC,GAAG,CAAC,CAAC;YAElD,kBAAkB;YAClB,QAAQ,CAAC,SAAS,EAAE,EAAE,MAAM,EAAE,SAAS,CAAC,MAAM,EAAE,OAAO,EAAE,QAAQ,EAAE,CAAC,CAAC;QACvE,CAAC,CAAC,CAAC;IACL,CAAC;CACF;AAhCD,8CAgCC"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/db.js b/node_modules/mongodb/lib/db.js new file mode 100644 index 000000000..a9e5af5ed --- /dev/null +++ b/node_modules/mongodb/lib/db.js @@ -0,0 +1,337 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.Db = void 0; +const admin_1 = require("./admin"); +const bson_1 = require("./bson"); +const change_stream_1 = require("./change_stream"); +const collection_1 = require("./collection"); +const CONSTANTS = require("./constants"); +const aggregation_cursor_1 = require("./cursor/aggregation_cursor"); +const list_collections_cursor_1 = require("./cursor/list_collections_cursor"); +const error_1 = require("./error"); +const logger_1 = require("./logger"); +const add_user_1 = require("./operations/add_user"); +const collections_1 = require("./operations/collections"); +const create_collection_1 = require("./operations/create_collection"); +const drop_1 = require("./operations/drop"); +const execute_operation_1 = require("./operations/execute_operation"); +const indexes_1 = require("./operations/indexes"); +const profiling_level_1 = require("./operations/profiling_level"); +const remove_user_1 = require("./operations/remove_user"); +const rename_1 = require("./operations/rename"); +const run_command_1 = require("./operations/run_command"); +const set_profiling_level_1 = require("./operations/set_profiling_level"); +const stats_1 = require("./operations/stats"); +const read_concern_1 = require("./read_concern"); +const read_preference_1 = require("./read_preference"); +const utils_1 = require("./utils"); +const write_concern_1 = require("./write_concern"); +// Allowed parameters +const DB_OPTIONS_ALLOW_LIST = [ + 'writeConcern', + 'readPreference', + 'readPreferenceTags', + 'native_parser', + 'forceServerObjectId', + 'pkFactory', + 'serializeFunctions', + 'raw', + 'authSource', + 'ignoreUndefined', + 'readConcern', + 'retryMiliSeconds', + 'numberOfRetries', + 'loggerLevel', + 'logger', + 'promoteBuffers', + 'promoteLongs', + 'bsonRegExp', + 'enableUtf8Validation', + 'promoteValues', + 'compression', + 'retryWrites' +]; +/** + * The **Db** class is a class that represents a MongoDB Database. + * @public + * + * @example + * ```ts + * import { MongoClient } from 'mongodb'; + * + * interface Pet { + * name: string; + * kind: 'dog' | 'cat' | 'fish'; + * } + * + * const client = new MongoClient('mongodb://localhost:27017'); + * const db = client.db(); + * + * // Create a collection that validates our union + * await db.createCollection('pets', { + * validator: { $expr: { $in: ['$kind', ['dog', 'cat', 'fish']] } } + * }) + * ``` + */ +class Db { + /** + * Creates a new Db instance + * + * @param client - The MongoClient for the database. + * @param databaseName - The name of the database this instance represents. + * @param options - Optional settings for Db construction + */ + constructor(client, databaseName, options) { + var _a; + options = options !== null && options !== void 0 ? options : {}; + // Filter the options + options = (0, utils_1.filterOptions)(options, DB_OPTIONS_ALLOW_LIST); + // Ensure we have a valid db name + validateDatabaseName(databaseName); + // Internal state of the db object + this.s = { + // Client + client, + // Options + options, + // Logger instance + logger: new logger_1.Logger('Db', options), + // Unpack read preference + readPreference: read_preference_1.ReadPreference.fromOptions(options), + // Merge bson options + bsonOptions: (0, bson_1.resolveBSONOptions)(options, client), + // Set up the primary key factory or fallback to ObjectId + pkFactory: (_a = options === null || options === void 0 ? void 0 : options.pkFactory) !== null && _a !== void 0 ? _a : utils_1.DEFAULT_PK_FACTORY, + // ReadConcern + readConcern: read_concern_1.ReadConcern.fromOptions(options), + writeConcern: write_concern_1.WriteConcern.fromOptions(options), + // Namespace + namespace: new utils_1.MongoDBNamespace(databaseName) + }; + } + get databaseName() { + return this.s.namespace.db; + } + // Options + get options() { + return this.s.options; + } + /** + * slaveOk specified + * @deprecated Use secondaryOk instead + */ + get slaveOk() { + return this.secondaryOk; + } + /** + * Check if a secondary can be used (because the read preference is *not* set to primary) + */ + get secondaryOk() { + var _a; + return ((_a = this.s.readPreference) === null || _a === void 0 ? void 0 : _a.preference) !== 'primary' || false; + } + get readConcern() { + return this.s.readConcern; + } + /** + * The current readPreference of the Db. If not explicitly defined for + * this Db, will be inherited from the parent MongoClient + */ + get readPreference() { + if (this.s.readPreference == null) { + return this.s.client.readPreference; + } + return this.s.readPreference; + } + get bsonOptions() { + return this.s.bsonOptions; + } + // get the write Concern + get writeConcern() { + return this.s.writeConcern; + } + get namespace() { + return this.s.namespace.toString(); + } + createCollection(name, options, callback) { + if (typeof options === 'function') + (callback = options), (options = {}); + return (0, execute_operation_1.executeOperation)(this.s.client, new create_collection_1.CreateCollectionOperation(this, name, (0, utils_1.resolveOptions)(this, options)), callback); + } + command(command, options, callback) { + if (typeof options === 'function') + (callback = options), (options = {}); + // Intentionally, we do not inherit options from parent for this operation. + return (0, execute_operation_1.executeOperation)(this.s.client, new run_command_1.RunCommandOperation(this, command, options !== null && options !== void 0 ? options : {}), callback); + } + /** + * Execute an aggregation framework pipeline against the database, needs MongoDB \>= 3.6 + * + * @param pipeline - An array of aggregation stages to be executed + * @param options - Optional settings for the command + */ + aggregate(pipeline = [], options) { + if (arguments.length > 2) { + throw new error_1.MongoInvalidArgumentError('Method "db.aggregate()" accepts at most two arguments'); + } + if (typeof pipeline === 'function') { + throw new error_1.MongoInvalidArgumentError('Argument "pipeline" must not be function'); + } + if (typeof options === 'function') { + throw new error_1.MongoInvalidArgumentError('Argument "options" must not be function'); + } + return new aggregation_cursor_1.AggregationCursor(this.s.client, this.s.namespace, pipeline, (0, utils_1.resolveOptions)(this, options)); + } + /** Return the Admin db instance */ + admin() { + return new admin_1.Admin(this); + } + /** + * Returns a reference to a MongoDB Collection. If it does not exist it will be created implicitly. + * + * @param name - the collection name we wish to access. + * @returns return the new Collection instance + */ + collection(name, options = {}) { + if (typeof options === 'function') { + throw new error_1.MongoInvalidArgumentError('The callback form of this helper has been removed.'); + } + const finalOptions = (0, utils_1.resolveOptions)(this, options); + return new collection_1.Collection(this, name, finalOptions); + } + stats(options, callback) { + if (typeof options === 'function') + (callback = options), (options = {}); + return (0, execute_operation_1.executeOperation)(this.s.client, new stats_1.DbStatsOperation(this, (0, utils_1.resolveOptions)(this, options)), callback); + } + listCollections(filter = {}, options = {}) { + return new list_collections_cursor_1.ListCollectionsCursor(this, filter, (0, utils_1.resolveOptions)(this, options)); + } + renameCollection(fromCollection, toCollection, options, callback) { + if (typeof options === 'function') + (callback = options), (options = {}); + // Intentionally, we do not inherit options from parent for this operation. + options = { ...options, readPreference: read_preference_1.ReadPreference.PRIMARY }; + // Add return new collection + options.new_collection = true; + return (0, execute_operation_1.executeOperation)(this.s.client, new rename_1.RenameOperation(this.collection(fromCollection), toCollection, options), callback); + } + dropCollection(name, options, callback) { + if (typeof options === 'function') + (callback = options), (options = {}); + return (0, execute_operation_1.executeOperation)(this.s.client, new drop_1.DropCollectionOperation(this, name, (0, utils_1.resolveOptions)(this, options)), callback); + } + dropDatabase(options, callback) { + if (typeof options === 'function') + (callback = options), (options = {}); + return (0, execute_operation_1.executeOperation)(this.s.client, new drop_1.DropDatabaseOperation(this, (0, utils_1.resolveOptions)(this, options)), callback); + } + collections(options, callback) { + if (typeof options === 'function') + (callback = options), (options = {}); + return (0, execute_operation_1.executeOperation)(this.s.client, new collections_1.CollectionsOperation(this, (0, utils_1.resolveOptions)(this, options)), callback); + } + createIndex(name, indexSpec, options, callback) { + if (typeof options === 'function') + (callback = options), (options = {}); + return (0, execute_operation_1.executeOperation)(this.s.client, new indexes_1.CreateIndexOperation(this, name, indexSpec, (0, utils_1.resolveOptions)(this, options)), callback); + } + addUser(username, password, options, callback) { + if (typeof password === 'function') { + (callback = password), (password = undefined), (options = {}); + } + else if (typeof password !== 'string') { + if (typeof options === 'function') { + (callback = options), (options = password), (password = undefined); + } + else { + (options = password), (callback = undefined), (password = undefined); + } + } + else { + if (typeof options === 'function') + (callback = options), (options = {}); + } + return (0, execute_operation_1.executeOperation)(this.s.client, new add_user_1.AddUserOperation(this, username, password, (0, utils_1.resolveOptions)(this, options)), callback); + } + removeUser(username, options, callback) { + if (typeof options === 'function') + (callback = options), (options = {}); + return (0, execute_operation_1.executeOperation)(this.s.client, new remove_user_1.RemoveUserOperation(this, username, (0, utils_1.resolveOptions)(this, options)), callback); + } + setProfilingLevel(level, options, callback) { + if (typeof options === 'function') + (callback = options), (options = {}); + return (0, execute_operation_1.executeOperation)(this.s.client, new set_profiling_level_1.SetProfilingLevelOperation(this, level, (0, utils_1.resolveOptions)(this, options)), callback); + } + profilingLevel(options, callback) { + if (typeof options === 'function') + (callback = options), (options = {}); + return (0, execute_operation_1.executeOperation)(this.s.client, new profiling_level_1.ProfilingLevelOperation(this, (0, utils_1.resolveOptions)(this, options)), callback); + } + indexInformation(name, options, callback) { + if (typeof options === 'function') + (callback = options), (options = {}); + return (0, execute_operation_1.executeOperation)(this.s.client, new indexes_1.IndexInformationOperation(this, name, (0, utils_1.resolveOptions)(this, options)), callback); + } + /** + * Unref all sockets + * @deprecated This function is deprecated and will be removed in the next major version. + */ + unref() { + (0, utils_1.getTopology)(this).unref(); + } + /** + * Create a new Change Stream, watching for new changes (insertions, updates, + * replacements, deletions, and invalidations) in this database. Will ignore all + * changes to system collections. + * + * @remarks + * watch() accepts two generic arguments for distinct usecases: + * - The first is to provide the schema that may be defined for all the collections within this database + * - The second is to override the shape of the change stream document entirely, if it is not provided the type will default to ChangeStreamDocument of the first argument + * + * @param pipeline - An array of {@link https://docs.mongodb.com/manual/reference/operator/aggregation-pipeline/|aggregation pipeline stages} through which to pass change stream documents. This allows for filtering (using $match) and manipulating the change stream documents. + * @param options - Optional settings for the command + * @typeParam TSchema - Type of the data being detected by the change stream + * @typeParam TChange - Type of the whole change stream document emitted + */ + watch(pipeline = [], options = {}) { + // Allow optionally not specifying a pipeline + if (!Array.isArray(pipeline)) { + options = pipeline; + pipeline = []; + } + return new change_stream_1.ChangeStream(this, pipeline, (0, utils_1.resolveOptions)(this, options)); + } + /** Return the db logger */ + getLogger() { + return this.s.logger; + } + get logger() { + return this.s.logger; + } +} +exports.Db = Db; +Db.SYSTEM_NAMESPACE_COLLECTION = CONSTANTS.SYSTEM_NAMESPACE_COLLECTION; +Db.SYSTEM_INDEX_COLLECTION = CONSTANTS.SYSTEM_INDEX_COLLECTION; +Db.SYSTEM_PROFILE_COLLECTION = CONSTANTS.SYSTEM_PROFILE_COLLECTION; +Db.SYSTEM_USER_COLLECTION = CONSTANTS.SYSTEM_USER_COLLECTION; +Db.SYSTEM_COMMAND_COLLECTION = CONSTANTS.SYSTEM_COMMAND_COLLECTION; +Db.SYSTEM_JS_COLLECTION = CONSTANTS.SYSTEM_JS_COLLECTION; +// TODO(NODE-3484): Refactor into MongoDBNamespace +// Validate the database name +function validateDatabaseName(databaseName) { + if (typeof databaseName !== 'string') + throw new error_1.MongoInvalidArgumentError('Database name must be a string'); + if (databaseName.length === 0) + throw new error_1.MongoInvalidArgumentError('Database name cannot be the empty string'); + if (databaseName === '$external') + return; + const invalidChars = [' ', '.', '$', '/', '\\']; + for (let i = 0; i < invalidChars.length; i++) { + if (databaseName.indexOf(invalidChars[i]) !== -1) + throw new error_1.MongoAPIError(`database names cannot contain the character '${invalidChars[i]}'`); + } +} +//# sourceMappingURL=db.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/db.js.map b/node_modules/mongodb/lib/db.js.map new file mode 100644 index 000000000..fcc199994 --- /dev/null +++ b/node_modules/mongodb/lib/db.js.map @@ -0,0 +1 @@ +{"version":3,"file":"db.js","sourceRoot":"","sources":["../src/db.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/deps.js b/node_modules/mongodb/lib/deps.js new file mode 100644 index 000000000..6a73e6322 --- /dev/null +++ b/node_modules/mongodb/lib/deps.js @@ -0,0 +1,63 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.AutoEncryptionLoggerLevel = exports.aws4 = exports.saslprep = exports.Snappy = exports.ZStandard = exports.Kerberos = exports.PKG_VERSION = void 0; +const error_1 = require("./error"); +const utils_1 = require("./utils"); +exports.PKG_VERSION = Symbol('kPkgVersion'); +function makeErrorModule(error) { + const props = error ? { kModuleError: error } : {}; + return new Proxy(props, { + get: (_, key) => { + if (key === 'kModuleError') { + return error; + } + throw error; + }, + set: () => { + throw error; + } + }); +} +exports.Kerberos = makeErrorModule(new error_1.MongoMissingDependencyError('Optional module `kerberos` not found. Please install it to enable kerberos authentication')); +try { + // Ensure you always wrap an optional require in the try block NODE-3199 + exports.Kerberos = require('kerberos'); +} +catch { } // eslint-disable-line +exports.ZStandard = makeErrorModule(new error_1.MongoMissingDependencyError('Optional module `@mongodb-js/zstd` not found. Please install it to enable zstd compression')); +try { + exports.ZStandard = require('@mongodb-js/zstd'); +} +catch { } // eslint-disable-line +exports.Snappy = makeErrorModule(new error_1.MongoMissingDependencyError('Optional module `snappy` not found. Please install it to enable snappy compression')); +try { + // Ensure you always wrap an optional require in the try block NODE-3199 + exports.Snappy = require('snappy'); + try { + exports.Snappy[exports.PKG_VERSION] = (0, utils_1.parsePackageVersion)(require('snappy/package.json')); + } + catch { } // eslint-disable-line +} +catch { } // eslint-disable-line +exports.saslprep = makeErrorModule(new error_1.MongoMissingDependencyError('Optional module `saslprep` not found.' + + ' Please install it to enable Stringprep Profile for User Names and Passwords')); +try { + // Ensure you always wrap an optional require in the try block NODE-3199 + exports.saslprep = require('saslprep'); +} +catch { } // eslint-disable-line +exports.aws4 = makeErrorModule(new error_1.MongoMissingDependencyError('Optional module `aws4` not found. Please install it to enable AWS authentication')); +try { + // Ensure you always wrap an optional require in the try block NODE-3199 + exports.aws4 = require('aws4'); +} +catch { } // eslint-disable-line +/** @public */ +exports.AutoEncryptionLoggerLevel = Object.freeze({ + FatalError: 0, + Error: 1, + Warning: 2, + Info: 3, + Trace: 4 +}); +//# sourceMappingURL=deps.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/deps.js.map b/node_modules/mongodb/lib/deps.js.map new file mode 100644 index 000000000..cd11aec10 --- /dev/null +++ b/node_modules/mongodb/lib/deps.js.map @@ -0,0 +1 @@ +{"version":3,"file":"deps.js","sourceRoot":"","sources":["../src/deps.ts"],"names":[],"mappings":";;;AAGA,mCAAsD;AAEtD,mCAAwD;AAE3C,QAAA,WAAW,GAAG,MAAM,CAAC,aAAa,CAAC,CAAC;AAEjD,SAAS,eAAe,CAAC,KAAU;IACjC,MAAM,KAAK,GAAG,KAAK,CAAC,CAAC,CAAC,EAAE,YAAY,EAAE,KAAK,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;IACnD,OAAO,IAAI,KAAK,CAAC,KAAK,EAAE;QACtB,GAAG,EAAE,CAAC,CAAM,EAAE,GAAQ,EAAE,EAAE;YACxB,IAAI,GAAG,KAAK,cAAc,EAAE;gBAC1B,OAAO,KAAK,CAAC;aACd;YACD,MAAM,KAAK,CAAC;QACd,CAAC;QACD,GAAG,EAAE,GAAG,EAAE;YACR,MAAM,KAAK,CAAC;QACd,CAAC;KACF,CAAC,CAAC;AACL,CAAC;AAEU,QAAA,QAAQ,GACjB,eAAe,CACb,IAAI,mCAA2B,CAC7B,2FAA2F,CAC5F,CACF,CAAC;AAEJ,IAAI;IACF,wEAAwE;IACxE,gBAAQ,GAAG,OAAO,CAAC,UAAU,CAAC,CAAC;CAChC;AAAC,MAAM,GAAE,CAAC,sBAAsB;AAwBtB,QAAA,SAAS,GAClB,eAAe,CACb,IAAI,mCAA2B,CAC7B,4FAA4F,CAC7F,CACF,CAAC;AAEJ,IAAI;IACF,iBAAS,GAAG,OAAO,CAAC,kBAAkB,CAAC,CAAC;CACzC;AAAC,MAAM,GAAE,CAAC,sBAAsB;AAgCtB,QAAA,MAAM,GAA8D,eAAe,CAC5F,IAAI,mCAA2B,CAC7B,oFAAoF,CACrF,CACF,CAAC;AAEF,IAAI;IACF,wEAAwE;IACxE,cAAM,GAAG,OAAO,CAAC,QAAQ,CAAC,CAAC;IAC3B,IAAI;QACD,cAAc,CAAC,mBAAW,CAAC,GAAG,IAAA,2BAAmB,EAAC,OAAO,CAAC,qBAAqB,CAAC,CAAC,CAAC;KACpF;IAAC,MAAM,GAAE,CAAC,sBAAsB;CAClC;AAAC,MAAM,GAAE,CAAC,sBAAsB;AAEtB,QAAA,QAAQ,GACjB,eAAe,CACb,IAAI,mCAA2B,CAC7B,uCAAuC;IACrC,8EAA8E,CACjF,CACF,CAAC;AAEJ,IAAI;IACF,wEAAwE;IACxE,gBAAQ,GAAG,OAAO,CAAC,UAAU,CAAC,CAAC;CAChC;AAAC,MAAM,GAAE,CAAC,sBAAsB;AA2CtB,QAAA,IAAI,GAAyD,eAAe,CACrF,IAAI,mCAA2B,CAC7B,kFAAkF,CACnF,CACF,CAAC;AAEF,IAAI;IACF,wEAAwE;IACxE,YAAI,GAAG,OAAO,CAAC,MAAM,CAAC,CAAC;CACxB;AAAC,MAAM,GAAE,CAAC,sBAAsB;AAEjC,cAAc;AACD,QAAA,yBAAyB,GAAG,MAAM,CAAC,MAAM,CAAC;IACrD,UAAU,EAAE,CAAC;IACb,KAAK,EAAE,CAAC;IACR,OAAO,EAAE,CAAC;IACV,IAAI,EAAE,CAAC;IACP,KAAK,EAAE,CAAC;CACA,CAAC,CAAC"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/encrypter.js b/node_modules/mongodb/lib/encrypter.js new file mode 100644 index 000000000..c04fba551 --- /dev/null +++ b/node_modules/mongodb/lib/encrypter.js @@ -0,0 +1,109 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.Encrypter = void 0; +/* eslint-disable @typescript-eslint/no-var-requires */ +const bson_1 = require("./bson"); +const constants_1 = require("./constants"); +const error_1 = require("./error"); +const mongo_client_1 = require("./mongo_client"); +const utils_1 = require("./utils"); +let AutoEncrypterClass; +/** @internal */ +const kInternalClient = Symbol('internalClient'); +/** @internal */ +class Encrypter { + constructor(client, uri, options) { + if (typeof options.autoEncryption !== 'object') { + throw new error_1.MongoInvalidArgumentError('Option "autoEncryption" must be specified'); + } + // initialize to null, if we call getInternalClient, we may set this it is important to not overwrite those function calls. + this[kInternalClient] = null; + this.bypassAutoEncryption = !!options.autoEncryption.bypassAutoEncryption; + this.needsConnecting = false; + if (options.maxPoolSize === 0 && options.autoEncryption.keyVaultClient == null) { + options.autoEncryption.keyVaultClient = client; + } + else if (options.autoEncryption.keyVaultClient == null) { + options.autoEncryption.keyVaultClient = this.getInternalClient(client, uri, options); + } + if (this.bypassAutoEncryption) { + options.autoEncryption.metadataClient = undefined; + } + else if (options.maxPoolSize === 0) { + options.autoEncryption.metadataClient = client; + } + else { + options.autoEncryption.metadataClient = this.getInternalClient(client, uri, options); + } + if (options.proxyHost) { + options.autoEncryption.proxyOptions = { + proxyHost: options.proxyHost, + proxyPort: options.proxyPort, + proxyUsername: options.proxyUsername, + proxyPassword: options.proxyPassword + }; + } + options.autoEncryption.bson = Object.create(null); + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + options.autoEncryption.bson.serialize = bson_1.serialize; + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + options.autoEncryption.bson.deserialize = bson_1.deserialize; + this.autoEncrypter = new AutoEncrypterClass(client, options.autoEncryption); + } + getInternalClient(client, uri, options) { + // TODO(NODE-4144): Remove new variable for type narrowing + let internalClient = this[kInternalClient]; + if (internalClient == null) { + const clonedOptions = {}; + for (const key of [ + ...Object.getOwnPropertyNames(options), + ...Object.getOwnPropertySymbols(options) + ]) { + if (['autoEncryption', 'minPoolSize', 'servers', 'caseTranslate', 'dbName'].includes(key)) + continue; + Reflect.set(clonedOptions, key, Reflect.get(options, key)); + } + clonedOptions.minPoolSize = 0; + internalClient = new mongo_client_1.MongoClient(uri, clonedOptions); + this[kInternalClient] = internalClient; + for (const eventName of constants_1.MONGO_CLIENT_EVENTS) { + for (const listener of client.listeners(eventName)) { + internalClient.on(eventName, listener); + } + } + client.on('newListener', (eventName, listener) => { + internalClient === null || internalClient === void 0 ? void 0 : internalClient.on(eventName, listener); + }); + this.needsConnecting = true; + } + return internalClient; + } + connectInternalClient(callback) { + // TODO(NODE-4144): Remove new variable for type narrowing + const internalClient = this[kInternalClient]; + if (this.needsConnecting && internalClient != null) { + this.needsConnecting = false; + return internalClient.connect(callback); + } + return callback(); + } + close(client, force, callback) { + this.autoEncrypter.teardown(!!force, e => { + const internalClient = this[kInternalClient]; + if (internalClient != null && client !== internalClient) { + return internalClient.close(force, callback); + } + callback(e); + }); + } + static checkForMongoCrypt() { + const mongodbClientEncryption = (0, utils_1.getMongoDBClientEncryption)(); + if (mongodbClientEncryption == null) { + throw new error_1.MongoMissingDependencyError('Auto-encryption requested, but the module is not installed. ' + + 'Please add `mongodb-client-encryption` as a dependency of your project'); + } + AutoEncrypterClass = mongodbClientEncryption.extension(require('../lib/index')).AutoEncrypter; + } +} +exports.Encrypter = Encrypter; +//# sourceMappingURL=encrypter.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/encrypter.js.map b/node_modules/mongodb/lib/encrypter.js.map new file mode 100644 index 000000000..ab6dbc0c1 --- /dev/null +++ b/node_modules/mongodb/lib/encrypter.js.map @@ -0,0 +1 @@ +{"version":3,"file":"encrypter.js","sourceRoot":"","sources":["../src/encrypter.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/error.js b/node_modules/mongodb/lib/error.js new file mode 100644 index 000000000..365f5467a --- /dev/null +++ b/node_modules/mongodb/lib/error.js @@ -0,0 +1,801 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.isResumableError = exports.isNetworkTimeoutError = exports.isSDAMUnrecoverableError = exports.isNodeShuttingDownError = exports.isRetryableReadError = exports.isRetryableWriteError = exports.needsRetryableWriteLabel = exports.MongoWriteConcernError = exports.MongoServerSelectionError = exports.MongoSystemError = exports.MongoMissingDependencyError = exports.MongoMissingCredentialsError = exports.MongoCompatibilityError = exports.MongoInvalidArgumentError = exports.MongoParseError = exports.MongoNetworkTimeoutError = exports.MongoNetworkError = exports.isNetworkErrorBeforeHandshake = exports.MongoTopologyClosedError = exports.MongoCursorExhaustedError = exports.MongoServerClosedError = exports.MongoCursorInUseError = exports.MongoUnexpectedServerResponseError = exports.MongoGridFSChunkError = exports.MongoGridFSStreamError = exports.MongoTailableCursorError = exports.MongoChangeStreamError = exports.MongoAWSError = exports.MongoKerberosError = exports.MongoExpiredSessionError = exports.MongoTransactionError = exports.MongoNotConnectedError = exports.MongoDecompressionError = exports.MongoBatchReExecutionError = exports.MongoRuntimeError = exports.MongoAPIError = exports.MongoDriverError = exports.MongoServerError = exports.MongoError = exports.MongoErrorLabel = exports.GET_MORE_RESUMABLE_CODES = exports.MONGODB_ERROR_CODES = exports.NODE_IS_RECOVERING_ERROR_MESSAGE = exports.LEGACY_NOT_PRIMARY_OR_SECONDARY_ERROR_MESSAGE = exports.LEGACY_NOT_WRITABLE_PRIMARY_ERROR_MESSAGE = void 0; +/** @internal */ +const kErrorLabels = Symbol('errorLabels'); +/** + * @internal + * The legacy error message from the server that indicates the node is not a writable primary + * https://github.com/mongodb/specifications/blob/b07c26dc40d04ac20349f989db531c9845fdd755/source/server-discovery-and-monitoring/server-discovery-and-monitoring.rst#not-writable-primary-and-node-is-recovering + */ +exports.LEGACY_NOT_WRITABLE_PRIMARY_ERROR_MESSAGE = new RegExp('not master', 'i'); +/** + * @internal + * The legacy error message from the server that indicates the node is not a primary or secondary + * https://github.com/mongodb/specifications/blob/b07c26dc40d04ac20349f989db531c9845fdd755/source/server-discovery-and-monitoring/server-discovery-and-monitoring.rst#not-writable-primary-and-node-is-recovering + */ +exports.LEGACY_NOT_PRIMARY_OR_SECONDARY_ERROR_MESSAGE = new RegExp('not master or secondary', 'i'); +/** + * @internal + * The error message from the server that indicates the node is recovering + * https://github.com/mongodb/specifications/blob/b07c26dc40d04ac20349f989db531c9845fdd755/source/server-discovery-and-monitoring/server-discovery-and-monitoring.rst#not-writable-primary-and-node-is-recovering + */ +exports.NODE_IS_RECOVERING_ERROR_MESSAGE = new RegExp('node is recovering', 'i'); +/** @internal MongoDB Error Codes */ +exports.MONGODB_ERROR_CODES = Object.freeze({ + HostUnreachable: 6, + HostNotFound: 7, + NetworkTimeout: 89, + ShutdownInProgress: 91, + PrimarySteppedDown: 189, + ExceededTimeLimit: 262, + SocketException: 9001, + NotWritablePrimary: 10107, + InterruptedAtShutdown: 11600, + InterruptedDueToReplStateChange: 11602, + NotPrimaryNoSecondaryOk: 13435, + NotPrimaryOrSecondary: 13436, + StaleShardVersion: 63, + StaleEpoch: 150, + StaleConfig: 13388, + RetryChangeStream: 234, + FailedToSatisfyReadPreference: 133, + CursorNotFound: 43, + LegacyNotPrimary: 10058, + WriteConcernFailed: 64, + NamespaceNotFound: 26, + IllegalOperation: 20, + MaxTimeMSExpired: 50, + UnknownReplWriteConcern: 79, + UnsatisfiableWriteConcern: 100 +}); +// From spec@https://github.com/mongodb/specifications/blob/f93d78191f3db2898a59013a7ed5650352ef6da8/source/change-streams/change-streams.rst#resumable-error +exports.GET_MORE_RESUMABLE_CODES = new Set([ + exports.MONGODB_ERROR_CODES.HostUnreachable, + exports.MONGODB_ERROR_CODES.HostNotFound, + exports.MONGODB_ERROR_CODES.NetworkTimeout, + exports.MONGODB_ERROR_CODES.ShutdownInProgress, + exports.MONGODB_ERROR_CODES.PrimarySteppedDown, + exports.MONGODB_ERROR_CODES.ExceededTimeLimit, + exports.MONGODB_ERROR_CODES.SocketException, + exports.MONGODB_ERROR_CODES.NotWritablePrimary, + exports.MONGODB_ERROR_CODES.InterruptedAtShutdown, + exports.MONGODB_ERROR_CODES.InterruptedDueToReplStateChange, + exports.MONGODB_ERROR_CODES.NotPrimaryNoSecondaryOk, + exports.MONGODB_ERROR_CODES.NotPrimaryOrSecondary, + exports.MONGODB_ERROR_CODES.StaleShardVersion, + exports.MONGODB_ERROR_CODES.StaleEpoch, + exports.MONGODB_ERROR_CODES.StaleConfig, + exports.MONGODB_ERROR_CODES.RetryChangeStream, + exports.MONGODB_ERROR_CODES.FailedToSatisfyReadPreference, + exports.MONGODB_ERROR_CODES.CursorNotFound +]); +/** @public */ +exports.MongoErrorLabel = Object.freeze({ + RetryableWriteError: 'RetryableWriteError', + TransientTransactionError: 'TransientTransactionError', + UnknownTransactionCommitResult: 'UnknownTransactionCommitResult', + ResumableChangeStreamError: 'ResumableChangeStreamError', + HandshakeError: 'HandshakeError', + ResetPool: 'ResetPool' +}); +/** + * @public + * @category Error + * + * @privateRemarks + * CSFLE has a dependency on this error, it uses the constructor with a string argument + */ +class MongoError extends Error { + constructor(message) { + if (message instanceof Error) { + super(message.message); + this.cause = message; + } + else { + super(message); + } + this[kErrorLabels] = new Set(); + } + get name() { + return 'MongoError'; + } + /** Legacy name for server error responses */ + get errmsg() { + return this.message; + } + /** + * Checks the error to see if it has an error label + * + * @param label - The error label to check for + * @returns returns true if the error has the provided error label + */ + hasErrorLabel(label) { + return this[kErrorLabels].has(label); + } + addErrorLabel(label) { + this[kErrorLabels].add(label); + } + get errorLabels() { + return Array.from(this[kErrorLabels]); + } +} +exports.MongoError = MongoError; +/** + * An error coming from the mongo server + * + * @public + * @category Error + */ +class MongoServerError extends MongoError { + constructor(message) { + super(message.message || message.errmsg || message.$err || 'n/a'); + if (message.errorLabels) { + this[kErrorLabels] = new Set(message.errorLabels); + } + for (const name in message) { + if (name !== 'errorLabels' && name !== 'errmsg' && name !== 'message') + this[name] = message[name]; + } + } + get name() { + return 'MongoServerError'; + } +} +exports.MongoServerError = MongoServerError; +/** + * An error generated by the driver + * + * @public + * @category Error + */ +class MongoDriverError extends MongoError { + constructor(message) { + super(message); + } + get name() { + return 'MongoDriverError'; + } +} +exports.MongoDriverError = MongoDriverError; +/** + * An error generated when the driver API is used incorrectly + * + * @privateRemarks + * Should **never** be directly instantiated + * + * @public + * @category Error + */ +class MongoAPIError extends MongoDriverError { + constructor(message) { + super(message); + } + get name() { + return 'MongoAPIError'; + } +} +exports.MongoAPIError = MongoAPIError; +/** + * An error generated when the driver encounters unexpected input + * or reaches an unexpected/invalid internal state + * + * @privateRemarks + * Should **never** be directly instantiated. + * + * @public + * @category Error + */ +class MongoRuntimeError extends MongoDriverError { + constructor(message) { + super(message); + } + get name() { + return 'MongoRuntimeError'; + } +} +exports.MongoRuntimeError = MongoRuntimeError; +/** + * An error generated when a batch command is re-executed after one of the commands in the batch + * has failed + * + * @public + * @category Error + */ +class MongoBatchReExecutionError extends MongoAPIError { + constructor(message = 'This batch has already been executed, create new batch to execute') { + super(message); + } + get name() { + return 'MongoBatchReExecutionError'; + } +} +exports.MongoBatchReExecutionError = MongoBatchReExecutionError; +/** + * An error generated when the driver fails to decompress + * data received from the server. + * + * @public + * @category Error + */ +class MongoDecompressionError extends MongoRuntimeError { + constructor(message) { + super(message); + } + get name() { + return 'MongoDecompressionError'; + } +} +exports.MongoDecompressionError = MongoDecompressionError; +/** + * An error thrown when the user attempts to operate on a database or collection through a MongoClient + * that has not yet successfully called the "connect" method + * + * @public + * @category Error + */ +class MongoNotConnectedError extends MongoAPIError { + constructor(message) { + super(message); + } + get name() { + return 'MongoNotConnectedError'; + } +} +exports.MongoNotConnectedError = MongoNotConnectedError; +/** + * An error generated when the user makes a mistake in the usage of transactions. + * (e.g. attempting to commit a transaction with a readPreference other than primary) + * + * @public + * @category Error + */ +class MongoTransactionError extends MongoAPIError { + constructor(message) { + super(message); + } + get name() { + return 'MongoTransactionError'; + } +} +exports.MongoTransactionError = MongoTransactionError; +/** + * An error generated when the user attempts to operate + * on a session that has expired or has been closed. + * + * @public + * @category Error + */ +class MongoExpiredSessionError extends MongoAPIError { + constructor(message = 'Cannot use a session that has ended') { + super(message); + } + get name() { + return 'MongoExpiredSessionError'; + } +} +exports.MongoExpiredSessionError = MongoExpiredSessionError; +/** + * A error generated when the user attempts to authenticate + * via Kerberos, but fails to connect to the Kerberos client. + * + * @public + * @category Error + */ +class MongoKerberosError extends MongoRuntimeError { + constructor(message) { + super(message); + } + get name() { + return 'MongoKerberosError'; + } +} +exports.MongoKerberosError = MongoKerberosError; +/** + * A error generated when the user attempts to authenticate + * via AWS, but fails + * + * @public + * @category Error + */ +class MongoAWSError extends MongoRuntimeError { + constructor(message) { + super(message); + } + get name() { + return 'MongoAWSError'; + } +} +exports.MongoAWSError = MongoAWSError; +/** + * An error generated when a ChangeStream operation fails to execute. + * + * @public + * @category Error + */ +class MongoChangeStreamError extends MongoRuntimeError { + constructor(message) { + super(message); + } + get name() { + return 'MongoChangeStreamError'; + } +} +exports.MongoChangeStreamError = MongoChangeStreamError; +/** + * An error thrown when the user calls a function or method not supported on a tailable cursor + * + * @public + * @category Error + */ +class MongoTailableCursorError extends MongoAPIError { + constructor(message = 'Tailable cursor does not support this operation') { + super(message); + } + get name() { + return 'MongoTailableCursorError'; + } +} +exports.MongoTailableCursorError = MongoTailableCursorError; +/** An error generated when a GridFSStream operation fails to execute. + * + * @public + * @category Error + */ +class MongoGridFSStreamError extends MongoRuntimeError { + constructor(message) { + super(message); + } + get name() { + return 'MongoGridFSStreamError'; + } +} +exports.MongoGridFSStreamError = MongoGridFSStreamError; +/** + * An error generated when a malformed or invalid chunk is + * encountered when reading from a GridFSStream. + * + * @public + * @category Error + */ +class MongoGridFSChunkError extends MongoRuntimeError { + constructor(message) { + super(message); + } + get name() { + return 'MongoGridFSChunkError'; + } +} +exports.MongoGridFSChunkError = MongoGridFSChunkError; +/** + * An error generated when a **parsable** unexpected response comes from the server. + * This is generally an error where the driver in a state expecting a certain behavior to occur in + * the next message from MongoDB but it receives something else. + * This error **does not** represent an issue with wire message formatting. + * + * #### Example + * When an operation fails, it is the driver's job to retry it. It must perform serverSelection + * again to make sure that it attempts the operation against a server in a good state. If server + * selection returns a server that does not support retryable operations, this error is used. + * This scenario is unlikely as retryable support would also have been determined on the first attempt + * but it is possible the state change could report a selectable server that does not support retries. + * + * @public + * @category Error + */ +class MongoUnexpectedServerResponseError extends MongoRuntimeError { + constructor(message) { + super(message); + } + get name() { + return 'MongoUnexpectedServerResponseError'; + } +} +exports.MongoUnexpectedServerResponseError = MongoUnexpectedServerResponseError; +/** + * An error thrown when the user attempts to add options to a cursor that has already been + * initialized + * + * @public + * @category Error + */ +class MongoCursorInUseError extends MongoAPIError { + constructor(message = 'Cursor is already initialized') { + super(message); + } + get name() { + return 'MongoCursorInUseError'; + } +} +exports.MongoCursorInUseError = MongoCursorInUseError; +/** + * An error generated when an attempt is made to operate + * on a closed/closing server. + * + * @public + * @category Error + */ +class MongoServerClosedError extends MongoAPIError { + constructor(message = 'Server is closed') { + super(message); + } + get name() { + return 'MongoServerClosedError'; + } +} +exports.MongoServerClosedError = MongoServerClosedError; +/** + * An error thrown when an attempt is made to read from a cursor that has been exhausted + * + * @public + * @category Error + */ +class MongoCursorExhaustedError extends MongoAPIError { + constructor(message) { + super(message || 'Cursor is exhausted'); + } + get name() { + return 'MongoCursorExhaustedError'; + } +} +exports.MongoCursorExhaustedError = MongoCursorExhaustedError; +/** + * An error generated when an attempt is made to operate on a + * dropped, or otherwise unavailable, database. + * + * @public + * @category Error + */ +class MongoTopologyClosedError extends MongoAPIError { + constructor(message = 'Topology is closed') { + super(message); + } + get name() { + return 'MongoTopologyClosedError'; + } +} +exports.MongoTopologyClosedError = MongoTopologyClosedError; +/** @internal */ +const kBeforeHandshake = Symbol('beforeHandshake'); +function isNetworkErrorBeforeHandshake(err) { + return err[kBeforeHandshake] === true; +} +exports.isNetworkErrorBeforeHandshake = isNetworkErrorBeforeHandshake; +/** + * An error indicating an issue with the network, including TCP errors and timeouts. + * @public + * @category Error + */ +class MongoNetworkError extends MongoError { + constructor(message, options) { + super(message); + if (options && typeof options.beforeHandshake === 'boolean') { + this[kBeforeHandshake] = options.beforeHandshake; + } + } + get name() { + return 'MongoNetworkError'; + } +} +exports.MongoNetworkError = MongoNetworkError; +/** + * An error indicating a network timeout occurred + * @public + * @category Error + * + * @privateRemarks + * CSFLE has a dependency on this error with an instanceof check + */ +class MongoNetworkTimeoutError extends MongoNetworkError { + constructor(message, options) { + super(message, options); + } + get name() { + return 'MongoNetworkTimeoutError'; + } +} +exports.MongoNetworkTimeoutError = MongoNetworkTimeoutError; +/** + * An error used when attempting to parse a value (like a connection string) + * @public + * @category Error + */ +class MongoParseError extends MongoDriverError { + constructor(message) { + super(message); + } + get name() { + return 'MongoParseError'; + } +} +exports.MongoParseError = MongoParseError; +/** + * An error generated when the user supplies malformed or unexpected arguments + * or when a required argument or field is not provided. + * + * + * @public + * @category Error + */ +class MongoInvalidArgumentError extends MongoAPIError { + constructor(message) { + super(message); + } + get name() { + return 'MongoInvalidArgumentError'; + } +} +exports.MongoInvalidArgumentError = MongoInvalidArgumentError; +/** + * An error generated when a feature that is not enabled or allowed for the current server + * configuration is used + * + * + * @public + * @category Error + */ +class MongoCompatibilityError extends MongoAPIError { + constructor(message) { + super(message); + } + get name() { + return 'MongoCompatibilityError'; + } +} +exports.MongoCompatibilityError = MongoCompatibilityError; +/** + * An error generated when the user fails to provide authentication credentials before attempting + * to connect to a mongo server instance. + * + * + * @public + * @category Error + */ +class MongoMissingCredentialsError extends MongoAPIError { + constructor(message) { + super(message); + } + get name() { + return 'MongoMissingCredentialsError'; + } +} +exports.MongoMissingCredentialsError = MongoMissingCredentialsError; +/** + * An error generated when a required module or dependency is not present in the local environment + * + * @public + * @category Error + */ +class MongoMissingDependencyError extends MongoAPIError { + constructor(message) { + super(message); + } + get name() { + return 'MongoMissingDependencyError'; + } +} +exports.MongoMissingDependencyError = MongoMissingDependencyError; +/** + * An error signifying a general system issue + * @public + * @category Error + */ +class MongoSystemError extends MongoError { + constructor(message, reason) { + var _a; + if (reason && reason.error) { + super(reason.error.message || reason.error); + } + else { + super(message); + } + if (reason) { + this.reason = reason; + } + this.code = (_a = reason.error) === null || _a === void 0 ? void 0 : _a.code; + } + get name() { + return 'MongoSystemError'; + } +} +exports.MongoSystemError = MongoSystemError; +/** + * An error signifying a client-side server selection error + * @public + * @category Error + */ +class MongoServerSelectionError extends MongoSystemError { + constructor(message, reason) { + super(message, reason); + } + get name() { + return 'MongoServerSelectionError'; + } +} +exports.MongoServerSelectionError = MongoServerSelectionError; +function makeWriteConcernResultObject(input) { + const output = Object.assign({}, input); + if (output.ok === 0) { + output.ok = 1; + delete output.errmsg; + delete output.code; + delete output.codeName; + } + return output; +} +/** + * An error thrown when the server reports a writeConcernError + * @public + * @category Error + */ +class MongoWriteConcernError extends MongoServerError { + constructor(message, result) { + if (result && Array.isArray(result.errorLabels)) { + message.errorLabels = result.errorLabels; + } + super(message); + this.errInfo = message.errInfo; + if (result != null) { + this.result = makeWriteConcernResultObject(result); + } + } + get name() { + return 'MongoWriteConcernError'; + } +} +exports.MongoWriteConcernError = MongoWriteConcernError; +// https://github.com/mongodb/specifications/blob/master/source/retryable-reads/retryable-reads.rst#retryable-error +const RETRYABLE_READ_ERROR_CODES = new Set([ + exports.MONGODB_ERROR_CODES.HostUnreachable, + exports.MONGODB_ERROR_CODES.HostNotFound, + exports.MONGODB_ERROR_CODES.NetworkTimeout, + exports.MONGODB_ERROR_CODES.ShutdownInProgress, + exports.MONGODB_ERROR_CODES.PrimarySteppedDown, + exports.MONGODB_ERROR_CODES.SocketException, + exports.MONGODB_ERROR_CODES.NotWritablePrimary, + exports.MONGODB_ERROR_CODES.InterruptedAtShutdown, + exports.MONGODB_ERROR_CODES.InterruptedDueToReplStateChange, + exports.MONGODB_ERROR_CODES.NotPrimaryNoSecondaryOk, + exports.MONGODB_ERROR_CODES.NotPrimaryOrSecondary +]); +// see: https://github.com/mongodb/specifications/blob/master/source/retryable-writes/retryable-writes.rst#terms +const RETRYABLE_WRITE_ERROR_CODES = new Set([ + ...RETRYABLE_READ_ERROR_CODES, + exports.MONGODB_ERROR_CODES.ExceededTimeLimit +]); +function needsRetryableWriteLabel(error, maxWireVersion) { + var _a, _b, _c; + // pre-4.4 server, then the driver adds an error label for every valid case + // execute operation will only inspect the label, code/message logic is handled here + if (error instanceof MongoNetworkError) { + return true; + } + if (error instanceof MongoError) { + if ((maxWireVersion >= 9 || error.hasErrorLabel(exports.MongoErrorLabel.RetryableWriteError)) && + !error.hasErrorLabel(exports.MongoErrorLabel.HandshakeError)) { + // If we already have the error label no need to add it again. 4.4+ servers add the label. + // In the case where we have a handshake error, need to fall down to the logic checking + // the codes. + return false; + } + } + if (error instanceof MongoWriteConcernError) { + return RETRYABLE_WRITE_ERROR_CODES.has((_c = (_b = (_a = error.result) === null || _a === void 0 ? void 0 : _a.code) !== null && _b !== void 0 ? _b : error.code) !== null && _c !== void 0 ? _c : 0); + } + if (error instanceof MongoError && typeof error.code === 'number') { + return RETRYABLE_WRITE_ERROR_CODES.has(error.code); + } + const isNotWritablePrimaryError = exports.LEGACY_NOT_WRITABLE_PRIMARY_ERROR_MESSAGE.test(error.message); + if (isNotWritablePrimaryError) { + return true; + } + const isNodeIsRecoveringError = exports.NODE_IS_RECOVERING_ERROR_MESSAGE.test(error.message); + if (isNodeIsRecoveringError) { + return true; + } + return false; +} +exports.needsRetryableWriteLabel = needsRetryableWriteLabel; +function isRetryableWriteError(error) { + return error.hasErrorLabel(exports.MongoErrorLabel.RetryableWriteError); +} +exports.isRetryableWriteError = isRetryableWriteError; +/** Determines whether an error is something the driver should attempt to retry */ +function isRetryableReadError(error) { + const hasRetryableErrorCode = typeof error.code === 'number' ? RETRYABLE_READ_ERROR_CODES.has(error.code) : false; + if (hasRetryableErrorCode) { + return true; + } + if (error instanceof MongoNetworkError) { + return true; + } + const isNotWritablePrimaryError = exports.LEGACY_NOT_WRITABLE_PRIMARY_ERROR_MESSAGE.test(error.message); + if (isNotWritablePrimaryError) { + return true; + } + const isNodeIsRecoveringError = exports.NODE_IS_RECOVERING_ERROR_MESSAGE.test(error.message); + if (isNodeIsRecoveringError) { + return true; + } + return false; +} +exports.isRetryableReadError = isRetryableReadError; +const SDAM_RECOVERING_CODES = new Set([ + exports.MONGODB_ERROR_CODES.ShutdownInProgress, + exports.MONGODB_ERROR_CODES.PrimarySteppedDown, + exports.MONGODB_ERROR_CODES.InterruptedAtShutdown, + exports.MONGODB_ERROR_CODES.InterruptedDueToReplStateChange, + exports.MONGODB_ERROR_CODES.NotPrimaryOrSecondary +]); +const SDAM_NOT_PRIMARY_CODES = new Set([ + exports.MONGODB_ERROR_CODES.NotWritablePrimary, + exports.MONGODB_ERROR_CODES.NotPrimaryNoSecondaryOk, + exports.MONGODB_ERROR_CODES.LegacyNotPrimary +]); +const SDAM_NODE_SHUTTING_DOWN_ERROR_CODES = new Set([ + exports.MONGODB_ERROR_CODES.InterruptedAtShutdown, + exports.MONGODB_ERROR_CODES.ShutdownInProgress +]); +function isRecoveringError(err) { + if (typeof err.code === 'number') { + // If any error code exists, we ignore the error.message + return SDAM_RECOVERING_CODES.has(err.code); + } + return (exports.LEGACY_NOT_PRIMARY_OR_SECONDARY_ERROR_MESSAGE.test(err.message) || + exports.NODE_IS_RECOVERING_ERROR_MESSAGE.test(err.message)); +} +function isNotWritablePrimaryError(err) { + if (typeof err.code === 'number') { + // If any error code exists, we ignore the error.message + return SDAM_NOT_PRIMARY_CODES.has(err.code); + } + if (isRecoveringError(err)) { + return false; + } + return exports.LEGACY_NOT_WRITABLE_PRIMARY_ERROR_MESSAGE.test(err.message); +} +function isNodeShuttingDownError(err) { + return !!(typeof err.code === 'number' && SDAM_NODE_SHUTTING_DOWN_ERROR_CODES.has(err.code)); +} +exports.isNodeShuttingDownError = isNodeShuttingDownError; +/** + * Determines whether SDAM can recover from a given error. If it cannot + * then the pool will be cleared, and server state will completely reset + * locally. + * + * @see https://github.com/mongodb/specifications/blob/master/source/server-discovery-and-monitoring/server-discovery-and-monitoring.rst#not-master-and-node-is-recovering + */ +function isSDAMUnrecoverableError(error) { + // NOTE: null check is here for a strictly pre-CMAP world, a timeout or + // close event are considered unrecoverable + if (error instanceof MongoParseError || error == null) { + return true; + } + return isRecoveringError(error) || isNotWritablePrimaryError(error); +} +exports.isSDAMUnrecoverableError = isSDAMUnrecoverableError; +function isNetworkTimeoutError(err) { + return !!(err instanceof MongoNetworkError && err.message.match(/timed out/)); +} +exports.isNetworkTimeoutError = isNetworkTimeoutError; +function isResumableError(error, wireVersion) { + if (error == null || !(error instanceof MongoError)) { + return false; + } + if (error instanceof MongoNetworkError) { + return true; + } + if (wireVersion != null && wireVersion >= 9) { + // DRIVERS-1308: For 4.4 drivers running against 4.4 servers, drivers will add a special case to treat the CursorNotFound error code as resumable + if (error.code === exports.MONGODB_ERROR_CODES.CursorNotFound) { + return true; + } + return error.hasErrorLabel(exports.MongoErrorLabel.ResumableChangeStreamError); + } + if (typeof error.code === 'number') { + return exports.GET_MORE_RESUMABLE_CODES.has(error.code); + } + return false; +} +exports.isResumableError = isResumableError; +//# sourceMappingURL=error.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/error.js.map b/node_modules/mongodb/lib/error.js.map new file mode 100644 index 000000000..f865825ec --- /dev/null +++ b/node_modules/mongodb/lib/error.js.map @@ -0,0 +1 @@ +{"version":3,"file":"error.js","sourceRoot":"","sources":["../src/error.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/explain.js b/node_modules/mongodb/lib/explain.js new file mode 100644 index 000000000..bc55e1fee --- /dev/null +++ b/node_modules/mongodb/lib/explain.js @@ -0,0 +1,35 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.Explain = exports.ExplainVerbosity = void 0; +const error_1 = require("./error"); +/** @public */ +exports.ExplainVerbosity = Object.freeze({ + queryPlanner: 'queryPlanner', + queryPlannerExtended: 'queryPlannerExtended', + executionStats: 'executionStats', + allPlansExecution: 'allPlansExecution' +}); +/** @internal */ +class Explain { + constructor(verbosity) { + if (typeof verbosity === 'boolean') { + this.verbosity = verbosity + ? exports.ExplainVerbosity.allPlansExecution + : exports.ExplainVerbosity.queryPlanner; + } + else { + this.verbosity = verbosity; + } + } + static fromOptions(options) { + if ((options === null || options === void 0 ? void 0 : options.explain) == null) + return; + const explain = options.explain; + if (typeof explain === 'boolean' || typeof explain === 'string') { + return new Explain(explain); + } + throw new error_1.MongoInvalidArgumentError('Field "explain" must be a string or a boolean'); + } +} +exports.Explain = Explain; +//# sourceMappingURL=explain.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/explain.js.map b/node_modules/mongodb/lib/explain.js.map new file mode 100644 index 000000000..ae503b22b --- /dev/null +++ b/node_modules/mongodb/lib/explain.js.map @@ -0,0 +1 @@ +{"version":3,"file":"explain.js","sourceRoot":"","sources":["../src/explain.ts"],"names":[],"mappings":";;;AAAA,mCAAoD;AAEpD,cAAc;AACD,QAAA,gBAAgB,GAAG,MAAM,CAAC,MAAM,CAAC;IAC5C,YAAY,EAAE,cAAc;IAC5B,oBAAoB,EAAE,sBAAsB;IAC5C,cAAc,EAAE,gBAAgB;IAChC,iBAAiB,EAAE,mBAAmB;CAC9B,CAAC,CAAC;AAmBZ,gBAAgB;AAChB,MAAa,OAAO;IAGlB,YAAY,SAA+B;QACzC,IAAI,OAAO,SAAS,KAAK,SAAS,EAAE;YAClC,IAAI,CAAC,SAAS,GAAG,SAAS;gBACxB,CAAC,CAAC,wBAAgB,CAAC,iBAAiB;gBACpC,CAAC,CAAC,wBAAgB,CAAC,YAAY,CAAC;SACnC;aAAM;YACL,IAAI,CAAC,SAAS,GAAG,SAAS,CAAC;SAC5B;IACH,CAAC;IAED,MAAM,CAAC,WAAW,CAAC,OAAwB;QACzC,IAAI,CAAA,OAAO,aAAP,OAAO,uBAAP,OAAO,CAAE,OAAO,KAAI,IAAI;YAAE,OAAO;QAErC,MAAM,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC;QAChC,IAAI,OAAO,OAAO,KAAK,SAAS,IAAI,OAAO,OAAO,KAAK,QAAQ,EAAE;YAC/D,OAAO,IAAI,OAAO,CAAC,OAAO,CAAC,CAAC;SAC7B;QAED,MAAM,IAAI,iCAAyB,CAAC,+CAA+C,CAAC,CAAC;IACvF,CAAC;CACF;AAvBD,0BAuBC"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/gridfs/download.js b/node_modules/mongodb/lib/gridfs/download.js new file mode 100644 index 000000000..83a249caa --- /dev/null +++ b/node_modules/mongodb/lib/gridfs/download.js @@ -0,0 +1,318 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.GridFSBucketReadStream = void 0; +const stream_1 = require("stream"); +const error_1 = require("../error"); +/** + * A readable stream that enables you to read buffers from GridFS. + * + * Do not instantiate this class directly. Use `openDownloadStream()` instead. + * @public + */ +class GridFSBucketReadStream extends stream_1.Readable { + /** + * @param chunks - Handle for chunks collection + * @param files - Handle for files collection + * @param readPreference - The read preference to use + * @param filter - The filter to use to find the file document + * @internal + */ + constructor(chunks, files, readPreference, filter, options) { + super(); + this.s = { + bytesToTrim: 0, + bytesToSkip: 0, + bytesRead: 0, + chunks, + expected: 0, + files, + filter, + init: false, + expectedEnd: 0, + options: { + start: 0, + end: 0, + ...options + }, + readPreference + }; + } + /** + * Reads from the cursor and pushes to the stream. + * Private Impl, do not call directly + * @internal + */ + _read() { + if (this.destroyed) + return; + waitForFile(this, () => doRead(this)); + } + /** + * Sets the 0-based offset in bytes to start streaming from. Throws + * an error if this stream has entered flowing mode + * (e.g. if you've already called `on('data')`) + * + * @param start - 0-based offset in bytes to start streaming from + */ + start(start = 0) { + throwIfInitialized(this); + this.s.options.start = start; + return this; + } + /** + * Sets the 0-based offset in bytes to start streaming from. Throws + * an error if this stream has entered flowing mode + * (e.g. if you've already called `on('data')`) + * + * @param end - Offset in bytes to stop reading at + */ + end(end = 0) { + throwIfInitialized(this); + this.s.options.end = end; + return this; + } + /** + * Marks this stream as aborted (will never push another `data` event) + * and kills the underlying cursor. Will emit the 'end' event, and then + * the 'close' event once the cursor is successfully killed. + * + * @param callback - called when the cursor is successfully closed or an error occurred. + */ + abort(callback) { + this.push(null); + this.destroyed = true; + if (this.s.cursor) { + this.s.cursor.close(error => { + this.emit(GridFSBucketReadStream.CLOSE); + callback && callback(error); + }); + } + else { + if (!this.s.init) { + // If not initialized, fire close event because we will never + // get a cursor + this.emit(GridFSBucketReadStream.CLOSE); + } + callback && callback(); + } + } +} +exports.GridFSBucketReadStream = GridFSBucketReadStream; +/** + * An error occurred + * @event + */ +GridFSBucketReadStream.ERROR = 'error'; +/** + * Fires when the stream loaded the file document corresponding to the provided id. + * @event + */ +GridFSBucketReadStream.FILE = 'file'; +/** + * Emitted when a chunk of data is available to be consumed. + * @event + */ +GridFSBucketReadStream.DATA = 'data'; +/** + * Fired when the stream is exhausted (no more data events). + * @event + */ +GridFSBucketReadStream.END = 'end'; +/** + * Fired when the stream is exhausted and the underlying cursor is killed + * @event + */ +GridFSBucketReadStream.CLOSE = 'close'; +function throwIfInitialized(stream) { + if (stream.s.init) { + throw new error_1.MongoGridFSStreamError('Options cannot be changed after the stream is initialized'); + } +} +function doRead(stream) { + if (stream.destroyed) + return; + if (!stream.s.cursor) + return; + if (!stream.s.file) + return; + stream.s.cursor.next((error, doc) => { + if (stream.destroyed) { + return; + } + if (error) { + stream.emit(GridFSBucketReadStream.ERROR, error); + return; + } + if (!doc) { + stream.push(null); + process.nextTick(() => { + if (!stream.s.cursor) + return; + stream.s.cursor.close(error => { + if (error) { + stream.emit(GridFSBucketReadStream.ERROR, error); + return; + } + stream.emit(GridFSBucketReadStream.CLOSE); + }); + }); + return; + } + if (!stream.s.file) + return; + const bytesRemaining = stream.s.file.length - stream.s.bytesRead; + const expectedN = stream.s.expected++; + const expectedLength = Math.min(stream.s.file.chunkSize, bytesRemaining); + if (doc.n > expectedN) { + return stream.emit(GridFSBucketReadStream.ERROR, new error_1.MongoGridFSChunkError(`ChunkIsMissing: Got unexpected n: ${doc.n}, expected: ${expectedN}`)); + } + if (doc.n < expectedN) { + return stream.emit(GridFSBucketReadStream.ERROR, new error_1.MongoGridFSChunkError(`ExtraChunk: Got unexpected n: ${doc.n}, expected: ${expectedN}`)); + } + let buf = Buffer.isBuffer(doc.data) ? doc.data : doc.data.buffer; + if (buf.byteLength !== expectedLength) { + if (bytesRemaining <= 0) { + return stream.emit(GridFSBucketReadStream.ERROR, new error_1.MongoGridFSChunkError(`ExtraChunk: Got unexpected n: ${doc.n}, expected file length ${stream.s.file.length} bytes but already read ${stream.s.bytesRead} bytes`)); + } + return stream.emit(GridFSBucketReadStream.ERROR, new error_1.MongoGridFSChunkError(`ChunkIsWrongSize: Got unexpected length: ${buf.byteLength}, expected: ${expectedLength}`)); + } + stream.s.bytesRead += buf.byteLength; + if (buf.byteLength === 0) { + return stream.push(null); + } + let sliceStart = null; + let sliceEnd = null; + if (stream.s.bytesToSkip != null) { + sliceStart = stream.s.bytesToSkip; + stream.s.bytesToSkip = 0; + } + const atEndOfStream = expectedN === stream.s.expectedEnd - 1; + const bytesLeftToRead = stream.s.options.end - stream.s.bytesToSkip; + if (atEndOfStream && stream.s.bytesToTrim != null) { + sliceEnd = stream.s.file.chunkSize - stream.s.bytesToTrim; + } + else if (stream.s.options.end && bytesLeftToRead < doc.data.byteLength) { + sliceEnd = bytesLeftToRead; + } + if (sliceStart != null || sliceEnd != null) { + buf = buf.slice(sliceStart || 0, sliceEnd || buf.byteLength); + } + stream.push(buf); + return; + }); +} +function init(stream) { + const findOneOptions = {}; + if (stream.s.readPreference) { + findOneOptions.readPreference = stream.s.readPreference; + } + if (stream.s.options && stream.s.options.sort) { + findOneOptions.sort = stream.s.options.sort; + } + if (stream.s.options && stream.s.options.skip) { + findOneOptions.skip = stream.s.options.skip; + } + stream.s.files.findOne(stream.s.filter, findOneOptions, (error, doc) => { + if (error) { + return stream.emit(GridFSBucketReadStream.ERROR, error); + } + if (!doc) { + const identifier = stream.s.filter._id + ? stream.s.filter._id.toString() + : stream.s.filter.filename; + const errmsg = `FileNotFound: file ${identifier} was not found`; + // TODO(NODE-3483) + const err = new error_1.MongoRuntimeError(errmsg); + err.code = 'ENOENT'; // TODO: NODE-3338 set property as part of constructor + return stream.emit(GridFSBucketReadStream.ERROR, err); + } + // If document is empty, kill the stream immediately and don't + // execute any reads + if (doc.length <= 0) { + stream.push(null); + return; + } + if (stream.destroyed) { + // If user destroys the stream before we have a cursor, wait + // until the query is done to say we're 'closed' because we can't + // cancel a query. + stream.emit(GridFSBucketReadStream.CLOSE); + return; + } + try { + stream.s.bytesToSkip = handleStartOption(stream, doc, stream.s.options); + } + catch (error) { + return stream.emit(GridFSBucketReadStream.ERROR, error); + } + const filter = { files_id: doc._id }; + // Currently (MongoDB 3.4.4) skip function does not support the index, + // it needs to retrieve all the documents first and then skip them. (CS-25811) + // As work around we use $gte on the "n" field. + if (stream.s.options && stream.s.options.start != null) { + const skip = Math.floor(stream.s.options.start / doc.chunkSize); + if (skip > 0) { + filter['n'] = { $gte: skip }; + } + } + stream.s.cursor = stream.s.chunks.find(filter).sort({ n: 1 }); + if (stream.s.readPreference) { + stream.s.cursor.withReadPreference(stream.s.readPreference); + } + stream.s.expectedEnd = Math.ceil(doc.length / doc.chunkSize); + stream.s.file = doc; + try { + stream.s.bytesToTrim = handleEndOption(stream, doc, stream.s.cursor, stream.s.options); + } + catch (error) { + return stream.emit(GridFSBucketReadStream.ERROR, error); + } + stream.emit(GridFSBucketReadStream.FILE, doc); + return; + }); +} +function waitForFile(stream, callback) { + if (stream.s.file) { + return callback(); + } + if (!stream.s.init) { + init(stream); + stream.s.init = true; + } + stream.once('file', () => { + callback(); + }); +} +function handleStartOption(stream, doc, options) { + if (options && options.start != null) { + if (options.start > doc.length) { + throw new error_1.MongoInvalidArgumentError(`Stream start (${options.start}) must not be more than the length of the file (${doc.length})`); + } + if (options.start < 0) { + throw new error_1.MongoInvalidArgumentError(`Stream start (${options.start}) must not be negative`); + } + if (options.end != null && options.end < options.start) { + throw new error_1.MongoInvalidArgumentError(`Stream start (${options.start}) must not be greater than stream end (${options.end})`); + } + stream.s.bytesRead = Math.floor(options.start / doc.chunkSize) * doc.chunkSize; + stream.s.expected = Math.floor(options.start / doc.chunkSize); + return options.start - stream.s.bytesRead; + } + throw new error_1.MongoInvalidArgumentError('Start option must be defined'); +} +function handleEndOption(stream, doc, cursor, options) { + if (options && options.end != null) { + if (options.end > doc.length) { + throw new error_1.MongoInvalidArgumentError(`Stream end (${options.end}) must not be more than the length of the file (${doc.length})`); + } + if (options.start == null || options.start < 0) { + throw new error_1.MongoInvalidArgumentError(`Stream end (${options.end}) must not be negative`); + } + const start = options.start != null ? Math.floor(options.start / doc.chunkSize) : 0; + cursor.limit(Math.ceil(options.end / doc.chunkSize) - start); + stream.s.expectedEnd = Math.ceil(options.end / doc.chunkSize); + return Math.ceil(options.end / doc.chunkSize) * doc.chunkSize - options.end; + } + throw new error_1.MongoInvalidArgumentError('End option must be defined'); +} +//# sourceMappingURL=download.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/gridfs/download.js.map b/node_modules/mongodb/lib/gridfs/download.js.map new file mode 100644 index 000000000..9843b1afc --- /dev/null +++ b/node_modules/mongodb/lib/gridfs/download.js.map @@ -0,0 +1 @@ +{"version":3,"file":"download.js","sourceRoot":"","sources":["../../src/gridfs/download.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/gridfs/index.js b/node_modules/mongodb/lib/gridfs/index.js new file mode 100644 index 000000000..cfe89d060 --- /dev/null +++ b/node_modules/mongodb/lib/gridfs/index.js @@ -0,0 +1,152 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.GridFSBucket = void 0; +const error_1 = require("../error"); +const mongo_types_1 = require("../mongo_types"); +const utils_1 = require("../utils"); +const write_concern_1 = require("../write_concern"); +const download_1 = require("./download"); +const upload_1 = require("./upload"); +const DEFAULT_GRIDFS_BUCKET_OPTIONS = { + bucketName: 'fs', + chunkSizeBytes: 255 * 1024 +}; +/** + * Constructor for a streaming GridFS interface + * @public + */ +class GridFSBucket extends mongo_types_1.TypedEventEmitter { + constructor(db, options) { + super(); + this.setMaxListeners(0); + const privateOptions = { + ...DEFAULT_GRIDFS_BUCKET_OPTIONS, + ...options, + writeConcern: write_concern_1.WriteConcern.fromOptions(options) + }; + this.s = { + db, + options: privateOptions, + _chunksCollection: db.collection(privateOptions.bucketName + '.chunks'), + _filesCollection: db.collection(privateOptions.bucketName + '.files'), + checkedIndexes: false, + calledOpenUploadStream: false + }; + } + /** + * Returns a writable stream (GridFSBucketWriteStream) for writing + * buffers to GridFS. The stream's 'id' property contains the resulting + * file's id. + * + * @param filename - The value of the 'filename' key in the files doc + * @param options - Optional settings. + */ + openUploadStream(filename, options) { + return new upload_1.GridFSBucketWriteStream(this, filename, options); + } + /** + * Returns a writable stream (GridFSBucketWriteStream) for writing + * buffers to GridFS for a custom file id. The stream's 'id' property contains the resulting + * file's id. + */ + openUploadStreamWithId(id, filename, options) { + return new upload_1.GridFSBucketWriteStream(this, filename, { ...options, id }); + } + /** Returns a readable stream (GridFSBucketReadStream) for streaming file data from GridFS. */ + openDownloadStream(id, options) { + return new download_1.GridFSBucketReadStream(this.s._chunksCollection, this.s._filesCollection, this.s.options.readPreference, { _id: id }, options); + } + delete(id, callback) { + return (0, utils_1.maybePromise)(callback, callback => { + return this.s._filesCollection.deleteOne({ _id: id }, (error, res) => { + if (error) { + return callback(error); + } + return this.s._chunksCollection.deleteMany({ files_id: id }, error => { + if (error) { + return callback(error); + } + // Delete orphaned chunks before returning FileNotFound + if (!(res === null || res === void 0 ? void 0 : res.deletedCount)) { + // TODO(NODE-3483): Replace with more appropriate error + // Consider creating new error MongoGridFSFileNotFoundError + return callback(new error_1.MongoRuntimeError(`File not found for id ${id}`)); + } + return callback(); + }); + }); + }); + } + /** Convenience wrapper around find on the files collection */ + find(filter, options) { + filter !== null && filter !== void 0 ? filter : (filter = {}); + options = options !== null && options !== void 0 ? options : {}; + return this.s._filesCollection.find(filter, options); + } + /** + * Returns a readable stream (GridFSBucketReadStream) for streaming the + * file with the given name from GridFS. If there are multiple files with + * the same name, this will stream the most recent file with the given name + * (as determined by the `uploadDate` field). You can set the `revision` + * option to change this behavior. + */ + openDownloadStreamByName(filename, options) { + let sort = { uploadDate: -1 }; + let skip = undefined; + if (options && options.revision != null) { + if (options.revision >= 0) { + sort = { uploadDate: 1 }; + skip = options.revision; + } + else { + skip = -options.revision - 1; + } + } + return new download_1.GridFSBucketReadStream(this.s._chunksCollection, this.s._filesCollection, this.s.options.readPreference, { filename }, { ...options, sort, skip }); + } + rename(id, filename, callback) { + return (0, utils_1.maybePromise)(callback, callback => { + const filter = { _id: id }; + const update = { $set: { filename } }; + return this.s._filesCollection.updateOne(filter, update, (error, res) => { + if (error) { + return callback(error); + } + if (!(res === null || res === void 0 ? void 0 : res.matchedCount)) { + return callback(new error_1.MongoRuntimeError(`File with id ${id} not found`)); + } + return callback(); + }); + }); + } + drop(callback) { + return (0, utils_1.maybePromise)(callback, callback => { + return this.s._filesCollection.drop(error => { + if (error) { + return callback(error); + } + return this.s._chunksCollection.drop(error => { + if (error) { + return callback(error); + } + return callback(); + }); + }); + }); + } + /** Get the Db scoped logger. */ + getLogger() { + return this.s.db.s.logger; + } +} +exports.GridFSBucket = GridFSBucket; +/** + * When the first call to openUploadStream is made, the upload stream will + * check to see if it needs to create the proper indexes on the chunks and + * files collections. This event is fired either when 1) it determines that + * no index creation is necessary, 2) when it successfully creates the + * necessary indexes. + * @event + */ +GridFSBucket.INDEX = 'index'; +//# sourceMappingURL=index.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/gridfs/index.js.map b/node_modules/mongodb/lib/gridfs/index.js.map new file mode 100644 index 000000000..b33d42963 --- /dev/null +++ b/node_modules/mongodb/lib/gridfs/index.js.map @@ -0,0 +1 @@ +{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/gridfs/index.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/gridfs/upload.js b/node_modules/mongodb/lib/gridfs/upload.js new file mode 100644 index 000000000..43c4b0558 --- /dev/null +++ b/node_modules/mongodb/lib/gridfs/upload.js @@ -0,0 +1,377 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.GridFSBucketWriteStream = void 0; +const stream_1 = require("stream"); +const bson_1 = require("../bson"); +const error_1 = require("../error"); +const utils_1 = require("../utils"); +const write_concern_1 = require("./../write_concern"); +/** + * A writable stream that enables you to write buffers to GridFS. + * + * Do not instantiate this class directly. Use `openUploadStream()` instead. + * @public + */ +class GridFSBucketWriteStream extends stream_1.Writable { + /** + * @param bucket - Handle for this stream's corresponding bucket + * @param filename - The value of the 'filename' key in the files doc + * @param options - Optional settings. + * @internal + */ + constructor(bucket, filename, options) { + super(); + options = options !== null && options !== void 0 ? options : {}; + this.bucket = bucket; + this.chunks = bucket.s._chunksCollection; + this.filename = filename; + this.files = bucket.s._filesCollection; + this.options = options; + this.writeConcern = write_concern_1.WriteConcern.fromOptions(options) || bucket.s.options.writeConcern; + // Signals the write is all done + this.done = false; + this.id = options.id ? options.id : new bson_1.ObjectId(); + // properly inherit the default chunksize from parent + this.chunkSizeBytes = options.chunkSizeBytes || this.bucket.s.options.chunkSizeBytes; + this.bufToStore = Buffer.alloc(this.chunkSizeBytes); + this.length = 0; + this.n = 0; + this.pos = 0; + this.state = { + streamEnd: false, + outstandingRequests: 0, + errored: false, + aborted: false + }; + if (!this.bucket.s.calledOpenUploadStream) { + this.bucket.s.calledOpenUploadStream = true; + checkIndexes(this, () => { + this.bucket.s.checkedIndexes = true; + this.bucket.emit('index'); + }); + } + } + write(chunk, encodingOrCallback, callback) { + const encoding = typeof encodingOrCallback === 'function' ? undefined : encodingOrCallback; + callback = typeof encodingOrCallback === 'function' ? encodingOrCallback : callback; + return waitForIndexes(this, () => doWrite(this, chunk, encoding, callback)); + } + abort(callback) { + return (0, utils_1.maybePromise)(callback, callback => { + if (this.state.streamEnd) { + // TODO(NODE-3485): Replace with MongoGridFSStreamClosed + return callback(new error_1.MongoAPIError('Cannot abort a stream that has already completed')); + } + if (this.state.aborted) { + // TODO(NODE-3485): Replace with MongoGridFSStreamClosed + return callback(new error_1.MongoAPIError('Cannot call abort() on a stream twice')); + } + this.state.aborted = true; + this.chunks.deleteMany({ files_id: this.id }, error => callback(error)); + }); + } + end(chunkOrCallback, encodingOrCallback, callback) { + const chunk = typeof chunkOrCallback === 'function' ? undefined : chunkOrCallback; + const encoding = typeof encodingOrCallback === 'function' ? undefined : encodingOrCallback; + callback = + typeof chunkOrCallback === 'function' + ? chunkOrCallback + : typeof encodingOrCallback === 'function' + ? encodingOrCallback + : callback; + if (this.state.streamEnd || checkAborted(this, callback)) + return this; + this.state.streamEnd = true; + if (callback) { + this.once(GridFSBucketWriteStream.FINISH, (result) => { + if (callback) + callback(undefined, result); + }); + } + if (!chunk) { + waitForIndexes(this, () => !!writeRemnant(this)); + return this; + } + this.write(chunk, encoding, () => { + writeRemnant(this); + }); + return this; + } +} +exports.GridFSBucketWriteStream = GridFSBucketWriteStream; +/** @event */ +GridFSBucketWriteStream.CLOSE = 'close'; +/** @event */ +GridFSBucketWriteStream.ERROR = 'error'; +/** + * `end()` was called and the write stream successfully wrote the file metadata and all the chunks to MongoDB. + * @event + */ +GridFSBucketWriteStream.FINISH = 'finish'; +function __handleError(stream, error, callback) { + if (stream.state.errored) { + return; + } + stream.state.errored = true; + if (callback) { + return callback(error); + } + stream.emit(GridFSBucketWriteStream.ERROR, error); +} +function createChunkDoc(filesId, n, data) { + return { + _id: new bson_1.ObjectId(), + files_id: filesId, + n, + data + }; +} +function checkChunksIndex(stream, callback) { + stream.chunks.listIndexes().toArray((error, indexes) => { + let index; + if (error) { + // Collection doesn't exist so create index + if (error instanceof error_1.MongoError && error.code === error_1.MONGODB_ERROR_CODES.NamespaceNotFound) { + index = { files_id: 1, n: 1 }; + stream.chunks.createIndex(index, { background: false, unique: true }, error => { + if (error) { + return callback(error); + } + callback(); + }); + return; + } + return callback(error); + } + let hasChunksIndex = false; + if (indexes) { + indexes.forEach((index) => { + if (index.key) { + const keys = Object.keys(index.key); + if (keys.length === 2 && index.key.files_id === 1 && index.key.n === 1) { + hasChunksIndex = true; + } + } + }); + } + if (hasChunksIndex) { + callback(); + } + else { + index = { files_id: 1, n: 1 }; + const writeConcernOptions = getWriteOptions(stream); + stream.chunks.createIndex(index, { + ...writeConcernOptions, + background: true, + unique: true + }, callback); + } + }); +} +function checkDone(stream, callback) { + if (stream.done) + return true; + if (stream.state.streamEnd && stream.state.outstandingRequests === 0 && !stream.state.errored) { + // Set done so we do not trigger duplicate createFilesDoc + stream.done = true; + // Create a new files doc + const filesDoc = createFilesDoc(stream.id, stream.length, stream.chunkSizeBytes, stream.filename, stream.options.contentType, stream.options.aliases, stream.options.metadata); + if (checkAborted(stream, callback)) { + return false; + } + stream.files.insertOne(filesDoc, getWriteOptions(stream), (error) => { + if (error) { + return __handleError(stream, error, callback); + } + stream.emit(GridFSBucketWriteStream.FINISH, filesDoc); + stream.emit(GridFSBucketWriteStream.CLOSE); + }); + return true; + } + return false; +} +function checkIndexes(stream, callback) { + stream.files.findOne({}, { projection: { _id: 1 } }, (error, doc) => { + if (error) { + return callback(error); + } + if (doc) { + return callback(); + } + stream.files.listIndexes().toArray((error, indexes) => { + let index; + if (error) { + // Collection doesn't exist so create index + if (error instanceof error_1.MongoError && error.code === error_1.MONGODB_ERROR_CODES.NamespaceNotFound) { + index = { filename: 1, uploadDate: 1 }; + stream.files.createIndex(index, { background: false }, (error) => { + if (error) { + return callback(error); + } + checkChunksIndex(stream, callback); + }); + return; + } + return callback(error); + } + let hasFileIndex = false; + if (indexes) { + indexes.forEach((index) => { + const keys = Object.keys(index.key); + if (keys.length === 2 && index.key.filename === 1 && index.key.uploadDate === 1) { + hasFileIndex = true; + } + }); + } + if (hasFileIndex) { + checkChunksIndex(stream, callback); + } + else { + index = { filename: 1, uploadDate: 1 }; + const writeConcernOptions = getWriteOptions(stream); + stream.files.createIndex(index, { + ...writeConcernOptions, + background: false + }, (error) => { + if (error) { + return callback(error); + } + checkChunksIndex(stream, callback); + }); + } + }); + }); +} +function createFilesDoc(_id, length, chunkSize, filename, contentType, aliases, metadata) { + const ret = { + _id, + length, + chunkSize, + uploadDate: new Date(), + filename + }; + if (contentType) { + ret.contentType = contentType; + } + if (aliases) { + ret.aliases = aliases; + } + if (metadata) { + ret.metadata = metadata; + } + return ret; +} +function doWrite(stream, chunk, encoding, callback) { + if (checkAborted(stream, callback)) { + return false; + } + const inputBuf = Buffer.isBuffer(chunk) ? chunk : Buffer.from(chunk, encoding); + stream.length += inputBuf.length; + // Input is small enough to fit in our buffer + if (stream.pos + inputBuf.length < stream.chunkSizeBytes) { + inputBuf.copy(stream.bufToStore, stream.pos); + stream.pos += inputBuf.length; + callback && callback(); + // Note that we reverse the typical semantics of write's return value + // to be compatible with node's `.pipe()` function. + // True means client can keep writing. + return true; + } + // Otherwise, buffer is too big for current chunk, so we need to flush + // to MongoDB. + let inputBufRemaining = inputBuf.length; + let spaceRemaining = stream.chunkSizeBytes - stream.pos; + let numToCopy = Math.min(spaceRemaining, inputBuf.length); + let outstandingRequests = 0; + while (inputBufRemaining > 0) { + const inputBufPos = inputBuf.length - inputBufRemaining; + inputBuf.copy(stream.bufToStore, stream.pos, inputBufPos, inputBufPos + numToCopy); + stream.pos += numToCopy; + spaceRemaining -= numToCopy; + let doc; + if (spaceRemaining === 0) { + doc = createChunkDoc(stream.id, stream.n, Buffer.from(stream.bufToStore)); + ++stream.state.outstandingRequests; + ++outstandingRequests; + if (checkAborted(stream, callback)) { + return false; + } + stream.chunks.insertOne(doc, getWriteOptions(stream), (error) => { + if (error) { + return __handleError(stream, error); + } + --stream.state.outstandingRequests; + --outstandingRequests; + if (!outstandingRequests) { + stream.emit('drain', doc); + callback && callback(); + checkDone(stream); + } + }); + spaceRemaining = stream.chunkSizeBytes; + stream.pos = 0; + ++stream.n; + } + inputBufRemaining -= numToCopy; + numToCopy = Math.min(spaceRemaining, inputBufRemaining); + } + // Note that we reverse the typical semantics of write's return value + // to be compatible with node's `.pipe()` function. + // False means the client should wait for the 'drain' event. + return false; +} +function getWriteOptions(stream) { + const obj = {}; + if (stream.writeConcern) { + obj.writeConcern = { + w: stream.writeConcern.w, + wtimeout: stream.writeConcern.wtimeout, + j: stream.writeConcern.j + }; + } + return obj; +} +function waitForIndexes(stream, callback) { + if (stream.bucket.s.checkedIndexes) { + return callback(false); + } + stream.bucket.once('index', () => { + callback(true); + }); + return true; +} +function writeRemnant(stream, callback) { + // Buffer is empty, so don't bother to insert + if (stream.pos === 0) { + return checkDone(stream, callback); + } + ++stream.state.outstandingRequests; + // Create a new buffer to make sure the buffer isn't bigger than it needs + // to be. + const remnant = Buffer.alloc(stream.pos); + stream.bufToStore.copy(remnant, 0, 0, stream.pos); + const doc = createChunkDoc(stream.id, stream.n, remnant); + // If the stream was aborted, do not write remnant + if (checkAborted(stream, callback)) { + return false; + } + stream.chunks.insertOne(doc, getWriteOptions(stream), (error) => { + if (error) { + return __handleError(stream, error); + } + --stream.state.outstandingRequests; + checkDone(stream); + }); + return true; +} +function checkAborted(stream, callback) { + if (stream.state.aborted) { + if (typeof callback === 'function') { + // TODO(NODE-3485): Replace with MongoGridFSStreamClosedError + callback(new error_1.MongoAPIError('Stream has been aborted')); + } + return true; + } + return false; +} +//# sourceMappingURL=upload.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/gridfs/upload.js.map b/node_modules/mongodb/lib/gridfs/upload.js.map new file mode 100644 index 000000000..07606568c --- /dev/null +++ b/node_modules/mongodb/lib/gridfs/upload.js.map @@ -0,0 +1 @@ +{"version":3,"file":"upload.js","sourceRoot":"","sources":["../../src/gridfs/upload.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/index.js b/node_modules/mongodb/lib/index.js new file mode 100644 index 000000000..c47aee32a --- /dev/null +++ b/node_modules/mongodb/lib/index.js @@ -0,0 +1,175 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.AbstractCursor = exports.MongoWriteConcernError = exports.MongoUnexpectedServerResponseError = exports.MongoTransactionError = exports.MongoTopologyClosedError = exports.MongoTailableCursorError = exports.MongoSystemError = exports.MongoServerSelectionError = exports.MongoServerError = exports.MongoServerClosedError = exports.MongoRuntimeError = exports.MongoParseError = exports.MongoNotConnectedError = exports.MongoNetworkTimeoutError = exports.MongoNetworkError = exports.MongoMissingDependencyError = exports.MongoMissingCredentialsError = exports.MongoKerberosError = exports.MongoInvalidArgumentError = exports.MongoGridFSStreamError = exports.MongoGridFSChunkError = exports.MongoExpiredSessionError = exports.MongoError = exports.MongoDriverError = exports.MongoDecompressionError = exports.MongoCursorInUseError = exports.MongoCursorExhaustedError = exports.MongoCompatibilityError = exports.MongoChangeStreamError = exports.MongoBatchReExecutionError = exports.MongoAWSError = exports.MongoAPIError = exports.MongoBulkWriteError = exports.ObjectID = exports.ChangeStreamCursor = exports.Timestamp = exports.ObjectId = exports.MinKey = exports.MaxKey = exports.Map = exports.Long = exports.Int32 = exports.Double = exports.Decimal128 = exports.DBRef = exports.Code = exports.BSONSymbol = exports.BSONRegExp = exports.Binary = exports.BSON = void 0; +exports.ConnectionPoolCreatedEvent = exports.ConnectionPoolClosedEvent = exports.ConnectionPoolClearedEvent = exports.ConnectionCreatedEvent = exports.ConnectionClosedEvent = exports.ConnectionCheckOutStartedEvent = exports.ConnectionCheckOutFailedEvent = exports.ConnectionCheckedOutEvent = exports.ConnectionCheckedInEvent = exports.CommandSucceededEvent = exports.CommandStartedEvent = exports.CommandFailedEvent = exports.WriteConcern = exports.ReadPreference = exports.ReadConcern = exports.TopologyType = exports.ServerType = exports.ReadPreferenceMode = exports.ReadConcernLevel = exports.ProfilingLevel = exports.ReturnDocument = exports.BSONType = exports.ServerApiVersion = exports.LoggerLevel = exports.ExplainVerbosity = exports.MongoErrorLabel = exports.AutoEncryptionLoggerLevel = exports.CURSOR_FLAGS = exports.Compressor = exports.AuthMechanism = exports.GSSAPICanonicalizationValue = exports.BatchType = exports.Promise = exports.UnorderedBulkOperation = exports.OrderedBulkOperation = exports.MongoClient = exports.Logger = exports.ListIndexesCursor = exports.ListCollectionsCursor = exports.GridFSBucketWriteStream = exports.GridFSBucketReadStream = exports.GridFSBucket = exports.FindCursor = exports.Db = exports.Collection = exports.ClientSession = exports.ChangeStream = exports.CancellationToken = exports.AggregationCursor = exports.Admin = void 0; +exports.SrvPollingEvent = exports.TopologyOpeningEvent = exports.TopologyDescriptionChangedEvent = exports.TopologyClosedEvent = exports.ServerOpeningEvent = exports.ServerHeartbeatSucceededEvent = exports.ServerHeartbeatStartedEvent = exports.ServerHeartbeatFailedEvent = exports.ServerDescriptionChangedEvent = exports.ServerClosedEvent = exports.ConnectionReadyEvent = exports.ConnectionPoolReadyEvent = exports.ConnectionPoolMonitoringEvent = void 0; +const admin_1 = require("./admin"); +Object.defineProperty(exports, "Admin", { enumerable: true, get: function () { return admin_1.Admin; } }); +const bson_1 = require("./bson"); +const ordered_1 = require("./bulk/ordered"); +Object.defineProperty(exports, "OrderedBulkOperation", { enumerable: true, get: function () { return ordered_1.OrderedBulkOperation; } }); +const unordered_1 = require("./bulk/unordered"); +Object.defineProperty(exports, "UnorderedBulkOperation", { enumerable: true, get: function () { return unordered_1.UnorderedBulkOperation; } }); +const change_stream_1 = require("./change_stream"); +Object.defineProperty(exports, "ChangeStream", { enumerable: true, get: function () { return change_stream_1.ChangeStream; } }); +const collection_1 = require("./collection"); +Object.defineProperty(exports, "Collection", { enumerable: true, get: function () { return collection_1.Collection; } }); +const abstract_cursor_1 = require("./cursor/abstract_cursor"); +Object.defineProperty(exports, "AbstractCursor", { enumerable: true, get: function () { return abstract_cursor_1.AbstractCursor; } }); +const aggregation_cursor_1 = require("./cursor/aggregation_cursor"); +Object.defineProperty(exports, "AggregationCursor", { enumerable: true, get: function () { return aggregation_cursor_1.AggregationCursor; } }); +const find_cursor_1 = require("./cursor/find_cursor"); +Object.defineProperty(exports, "FindCursor", { enumerable: true, get: function () { return find_cursor_1.FindCursor; } }); +const list_collections_cursor_1 = require("./cursor/list_collections_cursor"); +Object.defineProperty(exports, "ListCollectionsCursor", { enumerable: true, get: function () { return list_collections_cursor_1.ListCollectionsCursor; } }); +const list_indexes_cursor_1 = require("./cursor/list_indexes_cursor"); +Object.defineProperty(exports, "ListIndexesCursor", { enumerable: true, get: function () { return list_indexes_cursor_1.ListIndexesCursor; } }); +const db_1 = require("./db"); +Object.defineProperty(exports, "Db", { enumerable: true, get: function () { return db_1.Db; } }); +const gridfs_1 = require("./gridfs"); +Object.defineProperty(exports, "GridFSBucket", { enumerable: true, get: function () { return gridfs_1.GridFSBucket; } }); +const download_1 = require("./gridfs/download"); +Object.defineProperty(exports, "GridFSBucketReadStream", { enumerable: true, get: function () { return download_1.GridFSBucketReadStream; } }); +const upload_1 = require("./gridfs/upload"); +Object.defineProperty(exports, "GridFSBucketWriteStream", { enumerable: true, get: function () { return upload_1.GridFSBucketWriteStream; } }); +const logger_1 = require("./logger"); +Object.defineProperty(exports, "Logger", { enumerable: true, get: function () { return logger_1.Logger; } }); +const mongo_client_1 = require("./mongo_client"); +Object.defineProperty(exports, "MongoClient", { enumerable: true, get: function () { return mongo_client_1.MongoClient; } }); +const mongo_types_1 = require("./mongo_types"); +Object.defineProperty(exports, "CancellationToken", { enumerable: true, get: function () { return mongo_types_1.CancellationToken; } }); +const promise_provider_1 = require("./promise_provider"); +Object.defineProperty(exports, "Promise", { enumerable: true, get: function () { return promise_provider_1.PromiseProvider; } }); +const sessions_1 = require("./sessions"); +Object.defineProperty(exports, "ClientSession", { enumerable: true, get: function () { return sessions_1.ClientSession; } }); +/** @internal */ +var bson_2 = require("./bson"); +Object.defineProperty(exports, "BSON", { enumerable: true, get: function () { return bson_2.BSON; } }); +var bson_3 = require("./bson"); +Object.defineProperty(exports, "Binary", { enumerable: true, get: function () { return bson_3.Binary; } }); +Object.defineProperty(exports, "BSONRegExp", { enumerable: true, get: function () { return bson_3.BSONRegExp; } }); +Object.defineProperty(exports, "BSONSymbol", { enumerable: true, get: function () { return bson_3.BSONSymbol; } }); +Object.defineProperty(exports, "Code", { enumerable: true, get: function () { return bson_3.Code; } }); +Object.defineProperty(exports, "DBRef", { enumerable: true, get: function () { return bson_3.DBRef; } }); +Object.defineProperty(exports, "Decimal128", { enumerable: true, get: function () { return bson_3.Decimal128; } }); +Object.defineProperty(exports, "Double", { enumerable: true, get: function () { return bson_3.Double; } }); +Object.defineProperty(exports, "Int32", { enumerable: true, get: function () { return bson_3.Int32; } }); +Object.defineProperty(exports, "Long", { enumerable: true, get: function () { return bson_3.Long; } }); +Object.defineProperty(exports, "Map", { enumerable: true, get: function () { return bson_3.Map; } }); +Object.defineProperty(exports, "MaxKey", { enumerable: true, get: function () { return bson_3.MaxKey; } }); +Object.defineProperty(exports, "MinKey", { enumerable: true, get: function () { return bson_3.MinKey; } }); +Object.defineProperty(exports, "ObjectId", { enumerable: true, get: function () { return bson_3.ObjectId; } }); +Object.defineProperty(exports, "Timestamp", { enumerable: true, get: function () { return bson_3.Timestamp; } }); +var change_stream_cursor_1 = require("./cursor/change_stream_cursor"); +Object.defineProperty(exports, "ChangeStreamCursor", { enumerable: true, get: function () { return change_stream_cursor_1.ChangeStreamCursor; } }); +/** + * @public + * @deprecated Please use `ObjectId` + */ +exports.ObjectID = bson_1.ObjectId; +var common_1 = require("./bulk/common"); +Object.defineProperty(exports, "MongoBulkWriteError", { enumerable: true, get: function () { return common_1.MongoBulkWriteError; } }); +var error_1 = require("./error"); +Object.defineProperty(exports, "MongoAPIError", { enumerable: true, get: function () { return error_1.MongoAPIError; } }); +Object.defineProperty(exports, "MongoAWSError", { enumerable: true, get: function () { return error_1.MongoAWSError; } }); +Object.defineProperty(exports, "MongoBatchReExecutionError", { enumerable: true, get: function () { return error_1.MongoBatchReExecutionError; } }); +Object.defineProperty(exports, "MongoChangeStreamError", { enumerable: true, get: function () { return error_1.MongoChangeStreamError; } }); +Object.defineProperty(exports, "MongoCompatibilityError", { enumerable: true, get: function () { return error_1.MongoCompatibilityError; } }); +Object.defineProperty(exports, "MongoCursorExhaustedError", { enumerable: true, get: function () { return error_1.MongoCursorExhaustedError; } }); +Object.defineProperty(exports, "MongoCursorInUseError", { enumerable: true, get: function () { return error_1.MongoCursorInUseError; } }); +Object.defineProperty(exports, "MongoDecompressionError", { enumerable: true, get: function () { return error_1.MongoDecompressionError; } }); +Object.defineProperty(exports, "MongoDriverError", { enumerable: true, get: function () { return error_1.MongoDriverError; } }); +Object.defineProperty(exports, "MongoError", { enumerable: true, get: function () { return error_1.MongoError; } }); +Object.defineProperty(exports, "MongoExpiredSessionError", { enumerable: true, get: function () { return error_1.MongoExpiredSessionError; } }); +Object.defineProperty(exports, "MongoGridFSChunkError", { enumerable: true, get: function () { return error_1.MongoGridFSChunkError; } }); +Object.defineProperty(exports, "MongoGridFSStreamError", { enumerable: true, get: function () { return error_1.MongoGridFSStreamError; } }); +Object.defineProperty(exports, "MongoInvalidArgumentError", { enumerable: true, get: function () { return error_1.MongoInvalidArgumentError; } }); +Object.defineProperty(exports, "MongoKerberosError", { enumerable: true, get: function () { return error_1.MongoKerberosError; } }); +Object.defineProperty(exports, "MongoMissingCredentialsError", { enumerable: true, get: function () { return error_1.MongoMissingCredentialsError; } }); +Object.defineProperty(exports, "MongoMissingDependencyError", { enumerable: true, get: function () { return error_1.MongoMissingDependencyError; } }); +Object.defineProperty(exports, "MongoNetworkError", { enumerable: true, get: function () { return error_1.MongoNetworkError; } }); +Object.defineProperty(exports, "MongoNetworkTimeoutError", { enumerable: true, get: function () { return error_1.MongoNetworkTimeoutError; } }); +Object.defineProperty(exports, "MongoNotConnectedError", { enumerable: true, get: function () { return error_1.MongoNotConnectedError; } }); +Object.defineProperty(exports, "MongoParseError", { enumerable: true, get: function () { return error_1.MongoParseError; } }); +Object.defineProperty(exports, "MongoRuntimeError", { enumerable: true, get: function () { return error_1.MongoRuntimeError; } }); +Object.defineProperty(exports, "MongoServerClosedError", { enumerable: true, get: function () { return error_1.MongoServerClosedError; } }); +Object.defineProperty(exports, "MongoServerError", { enumerable: true, get: function () { return error_1.MongoServerError; } }); +Object.defineProperty(exports, "MongoServerSelectionError", { enumerable: true, get: function () { return error_1.MongoServerSelectionError; } }); +Object.defineProperty(exports, "MongoSystemError", { enumerable: true, get: function () { return error_1.MongoSystemError; } }); +Object.defineProperty(exports, "MongoTailableCursorError", { enumerable: true, get: function () { return error_1.MongoTailableCursorError; } }); +Object.defineProperty(exports, "MongoTopologyClosedError", { enumerable: true, get: function () { return error_1.MongoTopologyClosedError; } }); +Object.defineProperty(exports, "MongoTransactionError", { enumerable: true, get: function () { return error_1.MongoTransactionError; } }); +Object.defineProperty(exports, "MongoUnexpectedServerResponseError", { enumerable: true, get: function () { return error_1.MongoUnexpectedServerResponseError; } }); +Object.defineProperty(exports, "MongoWriteConcernError", { enumerable: true, get: function () { return error_1.MongoWriteConcernError; } }); +// enums +var common_2 = require("./bulk/common"); +Object.defineProperty(exports, "BatchType", { enumerable: true, get: function () { return common_2.BatchType; } }); +var gssapi_1 = require("./cmap/auth/gssapi"); +Object.defineProperty(exports, "GSSAPICanonicalizationValue", { enumerable: true, get: function () { return gssapi_1.GSSAPICanonicalizationValue; } }); +var providers_1 = require("./cmap/auth/providers"); +Object.defineProperty(exports, "AuthMechanism", { enumerable: true, get: function () { return providers_1.AuthMechanism; } }); +var compression_1 = require("./cmap/wire_protocol/compression"); +Object.defineProperty(exports, "Compressor", { enumerable: true, get: function () { return compression_1.Compressor; } }); +var abstract_cursor_2 = require("./cursor/abstract_cursor"); +Object.defineProperty(exports, "CURSOR_FLAGS", { enumerable: true, get: function () { return abstract_cursor_2.CURSOR_FLAGS; } }); +var deps_1 = require("./deps"); +Object.defineProperty(exports, "AutoEncryptionLoggerLevel", { enumerable: true, get: function () { return deps_1.AutoEncryptionLoggerLevel; } }); +var error_2 = require("./error"); +Object.defineProperty(exports, "MongoErrorLabel", { enumerable: true, get: function () { return error_2.MongoErrorLabel; } }); +var explain_1 = require("./explain"); +Object.defineProperty(exports, "ExplainVerbosity", { enumerable: true, get: function () { return explain_1.ExplainVerbosity; } }); +var logger_2 = require("./logger"); +Object.defineProperty(exports, "LoggerLevel", { enumerable: true, get: function () { return logger_2.LoggerLevel; } }); +var mongo_client_2 = require("./mongo_client"); +Object.defineProperty(exports, "ServerApiVersion", { enumerable: true, get: function () { return mongo_client_2.ServerApiVersion; } }); +var mongo_types_2 = require("./mongo_types"); +Object.defineProperty(exports, "BSONType", { enumerable: true, get: function () { return mongo_types_2.BSONType; } }); +var find_and_modify_1 = require("./operations/find_and_modify"); +Object.defineProperty(exports, "ReturnDocument", { enumerable: true, get: function () { return find_and_modify_1.ReturnDocument; } }); +var set_profiling_level_1 = require("./operations/set_profiling_level"); +Object.defineProperty(exports, "ProfilingLevel", { enumerable: true, get: function () { return set_profiling_level_1.ProfilingLevel; } }); +var read_concern_1 = require("./read_concern"); +Object.defineProperty(exports, "ReadConcernLevel", { enumerable: true, get: function () { return read_concern_1.ReadConcernLevel; } }); +var read_preference_1 = require("./read_preference"); +Object.defineProperty(exports, "ReadPreferenceMode", { enumerable: true, get: function () { return read_preference_1.ReadPreferenceMode; } }); +var common_3 = require("./sdam/common"); +Object.defineProperty(exports, "ServerType", { enumerable: true, get: function () { return common_3.ServerType; } }); +Object.defineProperty(exports, "TopologyType", { enumerable: true, get: function () { return common_3.TopologyType; } }); +// Helper classes +var read_concern_2 = require("./read_concern"); +Object.defineProperty(exports, "ReadConcern", { enumerable: true, get: function () { return read_concern_2.ReadConcern; } }); +var read_preference_2 = require("./read_preference"); +Object.defineProperty(exports, "ReadPreference", { enumerable: true, get: function () { return read_preference_2.ReadPreference; } }); +var write_concern_1 = require("./write_concern"); +Object.defineProperty(exports, "WriteConcern", { enumerable: true, get: function () { return write_concern_1.WriteConcern; } }); +// events +var command_monitoring_events_1 = require("./cmap/command_monitoring_events"); +Object.defineProperty(exports, "CommandFailedEvent", { enumerable: true, get: function () { return command_monitoring_events_1.CommandFailedEvent; } }); +Object.defineProperty(exports, "CommandStartedEvent", { enumerable: true, get: function () { return command_monitoring_events_1.CommandStartedEvent; } }); +Object.defineProperty(exports, "CommandSucceededEvent", { enumerable: true, get: function () { return command_monitoring_events_1.CommandSucceededEvent; } }); +var connection_pool_events_1 = require("./cmap/connection_pool_events"); +Object.defineProperty(exports, "ConnectionCheckedInEvent", { enumerable: true, get: function () { return connection_pool_events_1.ConnectionCheckedInEvent; } }); +Object.defineProperty(exports, "ConnectionCheckedOutEvent", { enumerable: true, get: function () { return connection_pool_events_1.ConnectionCheckedOutEvent; } }); +Object.defineProperty(exports, "ConnectionCheckOutFailedEvent", { enumerable: true, get: function () { return connection_pool_events_1.ConnectionCheckOutFailedEvent; } }); +Object.defineProperty(exports, "ConnectionCheckOutStartedEvent", { enumerable: true, get: function () { return connection_pool_events_1.ConnectionCheckOutStartedEvent; } }); +Object.defineProperty(exports, "ConnectionClosedEvent", { enumerable: true, get: function () { return connection_pool_events_1.ConnectionClosedEvent; } }); +Object.defineProperty(exports, "ConnectionCreatedEvent", { enumerable: true, get: function () { return connection_pool_events_1.ConnectionCreatedEvent; } }); +Object.defineProperty(exports, "ConnectionPoolClearedEvent", { enumerable: true, get: function () { return connection_pool_events_1.ConnectionPoolClearedEvent; } }); +Object.defineProperty(exports, "ConnectionPoolClosedEvent", { enumerable: true, get: function () { return connection_pool_events_1.ConnectionPoolClosedEvent; } }); +Object.defineProperty(exports, "ConnectionPoolCreatedEvent", { enumerable: true, get: function () { return connection_pool_events_1.ConnectionPoolCreatedEvent; } }); +Object.defineProperty(exports, "ConnectionPoolMonitoringEvent", { enumerable: true, get: function () { return connection_pool_events_1.ConnectionPoolMonitoringEvent; } }); +Object.defineProperty(exports, "ConnectionPoolReadyEvent", { enumerable: true, get: function () { return connection_pool_events_1.ConnectionPoolReadyEvent; } }); +Object.defineProperty(exports, "ConnectionReadyEvent", { enumerable: true, get: function () { return connection_pool_events_1.ConnectionReadyEvent; } }); +var events_1 = require("./sdam/events"); +Object.defineProperty(exports, "ServerClosedEvent", { enumerable: true, get: function () { return events_1.ServerClosedEvent; } }); +Object.defineProperty(exports, "ServerDescriptionChangedEvent", { enumerable: true, get: function () { return events_1.ServerDescriptionChangedEvent; } }); +Object.defineProperty(exports, "ServerHeartbeatFailedEvent", { enumerable: true, get: function () { return events_1.ServerHeartbeatFailedEvent; } }); +Object.defineProperty(exports, "ServerHeartbeatStartedEvent", { enumerable: true, get: function () { return events_1.ServerHeartbeatStartedEvent; } }); +Object.defineProperty(exports, "ServerHeartbeatSucceededEvent", { enumerable: true, get: function () { return events_1.ServerHeartbeatSucceededEvent; } }); +Object.defineProperty(exports, "ServerOpeningEvent", { enumerable: true, get: function () { return events_1.ServerOpeningEvent; } }); +Object.defineProperty(exports, "TopologyClosedEvent", { enumerable: true, get: function () { return events_1.TopologyClosedEvent; } }); +Object.defineProperty(exports, "TopologyDescriptionChangedEvent", { enumerable: true, get: function () { return events_1.TopologyDescriptionChangedEvent; } }); +Object.defineProperty(exports, "TopologyOpeningEvent", { enumerable: true, get: function () { return events_1.TopologyOpeningEvent; } }); +var srv_polling_1 = require("./sdam/srv_polling"); +Object.defineProperty(exports, "SrvPollingEvent", { enumerable: true, get: function () { return srv_polling_1.SrvPollingEvent; } }); +//# sourceMappingURL=index.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/index.js.map b/node_modules/mongodb/lib/index.js.map new file mode 100644 index 000000000..c9a53bf10 --- /dev/null +++ b/node_modules/mongodb/lib/index.js.map @@ -0,0 +1 @@ +{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/logger.js b/node_modules/mongodb/lib/logger.js new file mode 100644 index 000000000..03e036e7c --- /dev/null +++ b/node_modules/mongodb/lib/logger.js @@ -0,0 +1,217 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.Logger = exports.LoggerLevel = void 0; +const util_1 = require("util"); +const error_1 = require("./error"); +const utils_1 = require("./utils"); +// Filters for classes +const classFilters = {}; +let filteredClasses = {}; +let level; +// Save the process id +const pid = process.pid; +// current logger +// eslint-disable-next-line no-console +let currentLogger = console.warn; +/** @public */ +exports.LoggerLevel = Object.freeze({ + ERROR: 'error', + WARN: 'warn', + INFO: 'info', + DEBUG: 'debug', + error: 'error', + warn: 'warn', + info: 'info', + debug: 'debug' +}); +/** + * @public + */ +class Logger { + /** + * Creates a new Logger instance + * + * @param className - The Class name associated with the logging instance + * @param options - Optional logging settings + */ + constructor(className, options) { + options = options !== null && options !== void 0 ? options : {}; + // Current reference + this.className = className; + // Current logger + if (!(options.logger instanceof Logger) && typeof options.logger === 'function') { + currentLogger = options.logger; + } + // Set level of logging, default is error + if (options.loggerLevel) { + level = options.loggerLevel || exports.LoggerLevel.ERROR; + } + // Add all class names + if (filteredClasses[this.className] == null) { + classFilters[this.className] = true; + } + } + /** + * Log a message at the debug level + * + * @param message - The message to log + * @param object - Additional meta data to log + */ + debug(message, object) { + if (this.isDebug() && + ((Object.keys(filteredClasses).length > 0 && filteredClasses[this.className]) || + (Object.keys(filteredClasses).length === 0 && classFilters[this.className]))) { + const dateTime = new Date().getTime(); + const msg = (0, util_1.format)('[%s-%s:%s] %s %s', 'DEBUG', this.className, pid, dateTime, message); + const state = { + type: exports.LoggerLevel.DEBUG, + message, + className: this.className, + pid, + date: dateTime + }; + if (object) + state.meta = object; + currentLogger(msg, state); + } + } + /** + * Log a message at the warn level + * + * @param message - The message to log + * @param object - Additional meta data to log + */ + warn(message, object) { + if (this.isWarn() && + ((Object.keys(filteredClasses).length > 0 && filteredClasses[this.className]) || + (Object.keys(filteredClasses).length === 0 && classFilters[this.className]))) { + const dateTime = new Date().getTime(); + const msg = (0, util_1.format)('[%s-%s:%s] %s %s', 'WARN', this.className, pid, dateTime, message); + const state = { + type: exports.LoggerLevel.WARN, + message, + className: this.className, + pid, + date: dateTime + }; + if (object) + state.meta = object; + currentLogger(msg, state); + } + } + /** + * Log a message at the info level + * + * @param message - The message to log + * @param object - Additional meta data to log + */ + info(message, object) { + if (this.isInfo() && + ((Object.keys(filteredClasses).length > 0 && filteredClasses[this.className]) || + (Object.keys(filteredClasses).length === 0 && classFilters[this.className]))) { + const dateTime = new Date().getTime(); + const msg = (0, util_1.format)('[%s-%s:%s] %s %s', 'INFO', this.className, pid, dateTime, message); + const state = { + type: exports.LoggerLevel.INFO, + message, + className: this.className, + pid, + date: dateTime + }; + if (object) + state.meta = object; + currentLogger(msg, state); + } + } + /** + * Log a message at the error level + * + * @param message - The message to log + * @param object - Additional meta data to log + */ + error(message, object) { + if (this.isError() && + ((Object.keys(filteredClasses).length > 0 && filteredClasses[this.className]) || + (Object.keys(filteredClasses).length === 0 && classFilters[this.className]))) { + const dateTime = new Date().getTime(); + const msg = (0, util_1.format)('[%s-%s:%s] %s %s', 'ERROR', this.className, pid, dateTime, message); + const state = { + type: exports.LoggerLevel.ERROR, + message, + className: this.className, + pid, + date: dateTime + }; + if (object) + state.meta = object; + currentLogger(msg, state); + } + } + /** Is the logger set at info level */ + isInfo() { + return level === exports.LoggerLevel.INFO || level === exports.LoggerLevel.DEBUG; + } + /** Is the logger set at error level */ + isError() { + return level === exports.LoggerLevel.ERROR || level === exports.LoggerLevel.INFO || level === exports.LoggerLevel.DEBUG; + } + /** Is the logger set at error level */ + isWarn() { + return (level === exports.LoggerLevel.ERROR || + level === exports.LoggerLevel.WARN || + level === exports.LoggerLevel.INFO || + level === exports.LoggerLevel.DEBUG); + } + /** Is the logger set at debug level */ + isDebug() { + return level === exports.LoggerLevel.DEBUG; + } + /** Resets the logger to default settings, error and no filtered classes */ + static reset() { + level = exports.LoggerLevel.ERROR; + filteredClasses = {}; + } + /** Get the current logger function */ + static currentLogger() { + return currentLogger; + } + /** + * Set the current logger function + * + * @param logger - Custom logging function + */ + static setCurrentLogger(logger) { + if (typeof logger !== 'function') { + throw new error_1.MongoInvalidArgumentError('Current logger must be a function'); + } + currentLogger = logger; + } + /** + * Filter log messages for a particular class + * + * @param type - The type of filter (currently only class) + * @param values - The filters to apply + */ + static filter(type, values) { + if (type === 'class' && Array.isArray(values)) { + filteredClasses = {}; + values.forEach(x => (filteredClasses[x] = true)); + } + } + /** + * Set the current log level + * + * @param newLevel - Set current log level (debug, warn, info, error) + */ + static setLevel(newLevel) { + if (newLevel !== exports.LoggerLevel.INFO && + newLevel !== exports.LoggerLevel.ERROR && + newLevel !== exports.LoggerLevel.DEBUG && + newLevel !== exports.LoggerLevel.WARN) { + throw new error_1.MongoInvalidArgumentError(`Argument "newLevel" should be one of ${(0, utils_1.enumToString)(exports.LoggerLevel)}`); + } + level = newLevel; + } +} +exports.Logger = Logger; +//# sourceMappingURL=logger.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/logger.js.map b/node_modules/mongodb/lib/logger.js.map new file mode 100644 index 000000000..4bd0592f8 --- /dev/null +++ b/node_modules/mongodb/lib/logger.js.map @@ -0,0 +1 @@ +{"version":3,"file":"logger.js","sourceRoot":"","sources":["../src/logger.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/mongo_client.js b/node_modules/mongodb/lib/mongo_client.js new file mode 100644 index 000000000..7a5baf348 --- /dev/null +++ b/node_modules/mongodb/lib/mongo_client.js @@ -0,0 +1,292 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.MongoClient = exports.ServerApiVersion = void 0; +const bson_1 = require("./bson"); +const change_stream_1 = require("./change_stream"); +const connection_string_1 = require("./connection_string"); +const db_1 = require("./db"); +const error_1 = require("./error"); +const mongo_types_1 = require("./mongo_types"); +const connect_1 = require("./operations/connect"); +const promise_provider_1 = require("./promise_provider"); +const read_preference_1 = require("./read_preference"); +const server_selection_1 = require("./sdam/server_selection"); +const sessions_1 = require("./sessions"); +const utils_1 = require("./utils"); +/** @public */ +exports.ServerApiVersion = Object.freeze({ + v1: '1' +}); +/** @internal */ +const kOptions = Symbol('options'); +/** + * The **MongoClient** class is a class that allows for making Connections to MongoDB. + * @public + * + * @remarks + * The programmatically provided options take precedence over the URI options. + * + * @example + * ```ts + * import { MongoClient } from 'mongodb'; + * + * // Enable command monitoring for debugging + * const client = new MongoClient('mongodb://localhost:27017', { monitorCommands: true }); + * + * client.on('commandStarted', started => console.log(started)); + * client.db().collection('pets'); + * await client.insertOne({ name: 'spot', kind: 'dog' }); + * ``` + */ +class MongoClient extends mongo_types_1.TypedEventEmitter { + constructor(url, options) { + super(); + this[kOptions] = (0, connection_string_1.parseOptions)(url, this, options); + // eslint-disable-next-line @typescript-eslint/no-this-alias + const client = this; + // The internal state + this.s = { + url, + bsonOptions: (0, bson_1.resolveBSONOptions)(this[kOptions]), + namespace: (0, utils_1.ns)('admin'), + hasBeenClosed: false, + sessionPool: new sessions_1.ServerSessionPool(this), + activeSessions: new Set(), + get options() { + return client[kOptions]; + }, + get readConcern() { + return client[kOptions].readConcern; + }, + get writeConcern() { + return client[kOptions].writeConcern; + }, + get readPreference() { + return client[kOptions].readPreference; + }, + get logger() { + return client[kOptions].logger; + }, + get isMongoClient() { + return true; + } + }; + } + get options() { + return Object.freeze({ ...this[kOptions] }); + } + get serverApi() { + return this[kOptions].serverApi && Object.freeze({ ...this[kOptions].serverApi }); + } + /** + * Intended for APM use only + * @internal + */ + get monitorCommands() { + return this[kOptions].monitorCommands; + } + set monitorCommands(value) { + this[kOptions].monitorCommands = value; + } + get autoEncrypter() { + return this[kOptions].autoEncrypter; + } + get readConcern() { + return this.s.readConcern; + } + get writeConcern() { + return this.s.writeConcern; + } + get readPreference() { + return this.s.readPreference; + } + get bsonOptions() { + return this.s.bsonOptions; + } + get logger() { + return this.s.logger; + } + connect(callback) { + if (callback && typeof callback !== 'function') { + throw new error_1.MongoInvalidArgumentError('Method `connect` only accepts a callback'); + } + return (0, utils_1.maybePromise)(callback, cb => { + (0, connect_1.connect)(this, this[kOptions], err => { + if (err) + return cb(err); + cb(undefined, this); + }); + }); + } + close(forceOrCallback, callback) { + // There's no way to set hasBeenClosed back to false + Object.defineProperty(this.s, 'hasBeenClosed', { + value: true, + enumerable: true, + configurable: false, + writable: false + }); + if (typeof forceOrCallback === 'function') { + callback = forceOrCallback; + } + const force = typeof forceOrCallback === 'boolean' ? forceOrCallback : false; + return (0, utils_1.maybePromise)(callback, callback => { + if (this.topology == null) { + // Do not connect just to end sessions + return callback(); + } + const activeSessionEnds = Array.from(this.s.activeSessions, session => session.endSession()); + this.s.activeSessions.clear(); + Promise.all(activeSessionEnds) + .then(() => { + if (this.topology == null) { + return; + } + // If we would attempt to select a server and get nothing back we short circuit + // to avoid the server selection timeout. + const selector = (0, server_selection_1.readPreferenceServerSelector)(read_preference_1.ReadPreference.primaryPreferred); + const topologyDescription = this.topology.description; + const serverDescriptions = Array.from(topologyDescription.servers.values()); + const servers = selector(topologyDescription, serverDescriptions); + if (servers.length === 0) { + return; + } + const endSessions = Array.from(this.s.sessionPool.sessions, ({ id }) => id); + if (endSessions.length === 0) + return; + return this.db('admin') + .command({ endSessions }, { readPreference: read_preference_1.ReadPreference.primaryPreferred, noResponse: true }) + .catch(() => null); // outcome does not matter + }) + .then(() => { + if (this.topology == null) { + return; + } + // clear out references to old topology + const topology = this.topology; + this.topology = undefined; + return new Promise((resolve, reject) => { + topology.close({ force }, error => { + if (error) + return reject(error); + const { encrypter } = this[kOptions]; + if (encrypter) { + return encrypter.close(this, force, error => { + if (error) + return reject(error); + resolve(); + }); + } + resolve(); + }); + }); + }) + .then(() => callback(), error => callback(error)); + }); + } + /** + * Create a new Db instance sharing the current socket connections. + * + * @param dbName - The name of the database we want to use. If not provided, use database name from connection string. + * @param options - Optional settings for Db construction + */ + db(dbName, options) { + options = options !== null && options !== void 0 ? options : {}; + // Default to db from connection string if not provided + if (!dbName) { + dbName = this.options.dbName; + } + // Copy the options and add out internal override of the not shared flag + const finalOptions = Object.assign({}, this[kOptions], options); + // Return the db object + const db = new db_1.Db(this, dbName, finalOptions); + // Return the database + return db; + } + static connect(url, options, callback) { + var _a; + if (typeof options === 'function') + (callback = options), (options = {}); + options = options !== null && options !== void 0 ? options : {}; + try { + // Create client + const mongoClient = new MongoClient(url, options); + // Execute the connect method + if (callback) { + return mongoClient.connect(callback); + } + else { + return mongoClient.connect(); + } + } + catch (error) { + if (callback) { + return callback(error); + } + else { + const PromiseConstructor = (_a = promise_provider_1.PromiseProvider.get()) !== null && _a !== void 0 ? _a : Promise; + return PromiseConstructor.reject(error); + } + } + } + startSession(options) { + const session = new sessions_1.ClientSession(this, this.s.sessionPool, { explicit: true, ...options }, this[kOptions]); + this.s.activeSessions.add(session); + session.once('ended', () => { + this.s.activeSessions.delete(session); + }); + return session; + } + withSession(optionsOrOperation, callback) { + var _a; + const options = { + // Always define an owner + owner: Symbol(), + // If it's an object inherit the options + ...(typeof optionsOrOperation === 'object' ? optionsOrOperation : {}) + }; + const withSessionCallback = typeof optionsOrOperation === 'function' ? optionsOrOperation : callback; + if (withSessionCallback == null) { + throw new error_1.MongoInvalidArgumentError('Missing required callback parameter'); + } + const session = this.startSession(options); + const PromiseConstructor = (_a = promise_provider_1.PromiseProvider.get()) !== null && _a !== void 0 ? _a : Promise; + return PromiseConstructor.resolve() + .then(() => withSessionCallback(session)) + .then(() => { + // Do not return the result of callback + }) + .finally(() => { + session.endSession().catch(() => null); + }); + } + /** + * Create a new Change Stream, watching for new changes (insertions, updates, + * replacements, deletions, and invalidations) in this cluster. Will ignore all + * changes to system collections, as well as the local, admin, and config databases. + * + * @remarks + * watch() accepts two generic arguments for distinct usecases: + * - The first is to provide the schema that may be defined for all the data within the current cluster + * - The second is to override the shape of the change stream document entirely, if it is not provided the type will default to ChangeStreamDocument of the first argument + * + * @param pipeline - An array of {@link https://docs.mongodb.com/manual/reference/operator/aggregation-pipeline/|aggregation pipeline stages} through which to pass change stream documents. This allows for filtering (using $match) and manipulating the change stream documents. + * @param options - Optional settings for the command + * @typeParam TSchema - Type of the data being detected by the change stream + * @typeParam TChange - Type of the whole change stream document emitted + */ + watch(pipeline = [], options = {}) { + // Allow optionally not specifying a pipeline + if (!Array.isArray(pipeline)) { + options = pipeline; + pipeline = []; + } + return new change_stream_1.ChangeStream(this, pipeline, (0, utils_1.resolveOptions)(this, options)); + } + /** Return the mongo client logger */ + getLogger() { + return this.s.logger; + } +} +exports.MongoClient = MongoClient; +//# sourceMappingURL=mongo_client.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/mongo_client.js.map b/node_modules/mongodb/lib/mongo_client.js.map new file mode 100644 index 000000000..285e491e7 --- /dev/null +++ b/node_modules/mongodb/lib/mongo_client.js.map @@ -0,0 +1 @@ +{"version":3,"file":"mongo_client.js","sourceRoot":"","sources":["../src/mongo_client.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/mongo_types.js b/node_modules/mongodb/lib/mongo_types.js new file mode 100644 index 000000000..7cd40483f --- /dev/null +++ b/node_modules/mongodb/lib/mongo_types.js @@ -0,0 +1,41 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.CancellationToken = exports.TypedEventEmitter = exports.BSONType = void 0; +const events_1 = require("events"); +/** @public */ +exports.BSONType = Object.freeze({ + double: 1, + string: 2, + object: 3, + array: 4, + binData: 5, + undefined: 6, + objectId: 7, + bool: 8, + date: 9, + null: 10, + regex: 11, + dbPointer: 12, + javascript: 13, + symbol: 14, + javascriptWithScope: 15, + int: 16, + timestamp: 17, + long: 18, + decimal: 19, + minKey: -1, + maxKey: 127 +}); +/** + * Typescript type safe event emitter + * @public + */ +// eslint-disable-next-line @typescript-eslint/no-unused-vars +class TypedEventEmitter extends events_1.EventEmitter { +} +exports.TypedEventEmitter = TypedEventEmitter; +/** @public */ +class CancellationToken extends TypedEventEmitter { +} +exports.CancellationToken = CancellationToken; +//# sourceMappingURL=mongo_types.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/mongo_types.js.map b/node_modules/mongodb/lib/mongo_types.js.map new file mode 100644 index 000000000..e1221e563 --- /dev/null +++ b/node_modules/mongodb/lib/mongo_types.js.map @@ -0,0 +1 @@ +{"version":3,"file":"mongo_types.js","sourceRoot":"","sources":["../src/mongo_types.ts"],"names":[],"mappings":";;;AACA,mCAAsC;AAmKtC,cAAc;AACD,QAAA,QAAQ,GAAG,MAAM,CAAC,MAAM,CAAC;IACpC,MAAM,EAAE,CAAC;IACT,MAAM,EAAE,CAAC;IACT,MAAM,EAAE,CAAC;IACT,KAAK,EAAE,CAAC;IACR,OAAO,EAAE,CAAC;IACV,SAAS,EAAE,CAAC;IACZ,QAAQ,EAAE,CAAC;IACX,IAAI,EAAE,CAAC;IACP,IAAI,EAAE,CAAC;IACP,IAAI,EAAE,EAAE;IACR,KAAK,EAAE,EAAE;IACT,SAAS,EAAE,EAAE;IACb,UAAU,EAAE,EAAE;IACd,MAAM,EAAE,EAAE;IACV,mBAAmB,EAAE,EAAE;IACvB,GAAG,EAAE,EAAE;IACP,SAAS,EAAE,EAAE;IACb,IAAI,EAAE,EAAE;IACR,OAAO,EAAE,EAAE;IACX,MAAM,EAAE,CAAC,CAAC;IACV,MAAM,EAAE,GAAG;CACH,CAAC,CAAC;AAyQZ;;;GAGG;AACH,6DAA6D;AAC7D,MAAa,iBAAoD,SAAQ,qBAAY;CAAG;AAAxF,8CAAwF;AAExF,cAAc;AACd,MAAa,iBAAkB,SAAQ,iBAAqC;CAAG;AAA/E,8CAA+E"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/add_user.js b/node_modules/mongodb/lib/operations/add_user.js new file mode 100644 index 000000000..0ef426bb3 --- /dev/null +++ b/node_modules/mongodb/lib/operations/add_user.js @@ -0,0 +1,72 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.AddUserOperation = void 0; +const crypto = require("crypto"); +const error_1 = require("../error"); +const utils_1 = require("../utils"); +const command_1 = require("./command"); +const operation_1 = require("./operation"); +/** @internal */ +class AddUserOperation extends command_1.CommandOperation { + constructor(db, username, password, options) { + super(db, options); + this.db = db; + this.username = username; + this.password = password; + this.options = options !== null && options !== void 0 ? options : {}; + } + execute(server, session, callback) { + const db = this.db; + const username = this.username; + const password = this.password; + const options = this.options; + // Error out if digestPassword set + if (options.digestPassword != null) { + return callback(new error_1.MongoInvalidArgumentError('Option "digestPassword" not supported via addUser, use db.command(...) instead')); + } + let roles; + if (!options.roles || (Array.isArray(options.roles) && options.roles.length === 0)) { + (0, utils_1.emitWarningOnce)('Creating a user without roles is deprecated. Defaults to "root" if db is "admin" or "dbOwner" otherwise'); + if (db.databaseName.toLowerCase() === 'admin') { + roles = ['root']; + } + else { + roles = ['dbOwner']; + } + } + else { + roles = Array.isArray(options.roles) ? options.roles : [options.roles]; + } + let topology; + try { + topology = (0, utils_1.getTopology)(db); + } + catch (error) { + return callback(error); + } + const digestPassword = topology.lastHello().maxWireVersion >= 7; + let userPassword = password; + if (!digestPassword) { + // Use node md5 generator + const md5 = crypto.createHash('md5'); + // Generate keys used for authentication + md5.update(`${username}:mongo:${password}`); + userPassword = md5.digest('hex'); + } + // Build the command to execute + const command = { + createUser: username, + customData: options.customData || {}, + roles: roles, + digestPassword + }; + // No password + if (typeof password === 'string') { + command.pwd = userPassword; + } + super.executeCommand(server, session, command, callback); + } +} +exports.AddUserOperation = AddUserOperation; +(0, operation_1.defineAspects)(AddUserOperation, [operation_1.Aspect.WRITE_OPERATION]); +//# sourceMappingURL=add_user.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/add_user.js.map b/node_modules/mongodb/lib/operations/add_user.js.map new file mode 100644 index 000000000..c102b8a16 --- /dev/null +++ b/node_modules/mongodb/lib/operations/add_user.js.map @@ -0,0 +1 @@ +{"version":3,"file":"add_user.js","sourceRoot":"","sources":["../../src/operations/add_user.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/aggregate.js b/node_modules/mongodb/lib/operations/aggregate.js new file mode 100644 index 000000000..33b513600 --- /dev/null +++ b/node_modules/mongodb/lib/operations/aggregate.js @@ -0,0 +1,90 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.AggregateOperation = exports.DB_AGGREGATE_COLLECTION = void 0; +const error_1 = require("../error"); +const utils_1 = require("../utils"); +const command_1 = require("./command"); +const operation_1 = require("./operation"); +/** @internal */ +exports.DB_AGGREGATE_COLLECTION = 1; +const MIN_WIRE_VERSION_$OUT_READ_CONCERN_SUPPORT = 8; +/** @internal */ +class AggregateOperation extends command_1.CommandOperation { + constructor(ns, pipeline, options) { + super(undefined, { ...options, dbName: ns.db }); + this.options = options !== null && options !== void 0 ? options : {}; + // Covers when ns.collection is null, undefined or the empty string, use DB_AGGREGATE_COLLECTION + this.target = ns.collection || exports.DB_AGGREGATE_COLLECTION; + this.pipeline = pipeline; + // determine if we have a write stage, override read preference if so + this.hasWriteStage = false; + if (typeof (options === null || options === void 0 ? void 0 : options.out) === 'string') { + this.pipeline = this.pipeline.concat({ $out: options.out }); + this.hasWriteStage = true; + } + else if (pipeline.length > 0) { + const finalStage = pipeline[pipeline.length - 1]; + if (finalStage.$out || finalStage.$merge) { + this.hasWriteStage = true; + } + } + if (this.hasWriteStage) { + this.trySecondaryWrite = true; + } + if (this.explain && this.writeConcern) { + throw new error_1.MongoInvalidArgumentError('Option "explain" cannot be used on an aggregate call with writeConcern'); + } + if ((options === null || options === void 0 ? void 0 : options.cursor) != null && typeof options.cursor !== 'object') { + throw new error_1.MongoInvalidArgumentError('Cursor options must be an object'); + } + } + get canRetryRead() { + return !this.hasWriteStage; + } + addToPipeline(stage) { + this.pipeline.push(stage); + } + execute(server, session, callback) { + const options = this.options; + const serverWireVersion = (0, utils_1.maxWireVersion)(server); + const command = { aggregate: this.target, pipeline: this.pipeline }; + if (this.hasWriteStage && serverWireVersion < MIN_WIRE_VERSION_$OUT_READ_CONCERN_SUPPORT) { + this.readConcern = undefined; + } + if (serverWireVersion >= 5) { + if (this.hasWriteStage && this.writeConcern) { + Object.assign(command, { writeConcern: this.writeConcern }); + } + } + if (options.bypassDocumentValidation === true) { + command.bypassDocumentValidation = options.bypassDocumentValidation; + } + if (typeof options.allowDiskUse === 'boolean') { + command.allowDiskUse = options.allowDiskUse; + } + if (options.hint) { + command.hint = options.hint; + } + if (options.let) { + command.let = options.let; + } + // we check for undefined specifically here to allow falsy values + // eslint-disable-next-line no-restricted-syntax + if (options.comment !== undefined) { + command.comment = options.comment; + } + command.cursor = options.cursor || {}; + if (options.batchSize && !this.hasWriteStage) { + command.cursor.batchSize = options.batchSize; + } + super.executeCommand(server, session, command, callback); + } +} +exports.AggregateOperation = AggregateOperation; +(0, operation_1.defineAspects)(AggregateOperation, [ + operation_1.Aspect.READ_OPERATION, + operation_1.Aspect.RETRYABLE, + operation_1.Aspect.EXPLAINABLE, + operation_1.Aspect.CURSOR_CREATING +]); +//# sourceMappingURL=aggregate.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/aggregate.js.map b/node_modules/mongodb/lib/operations/aggregate.js.map new file mode 100644 index 000000000..a8dc5fcfb --- /dev/null +++ b/node_modules/mongodb/lib/operations/aggregate.js.map @@ -0,0 +1 @@ +{"version":3,"file":"aggregate.js","sourceRoot":"","sources":["../../src/operations/aggregate.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/bulk_write.js b/node_modules/mongodb/lib/operations/bulk_write.js new file mode 100644 index 000000000..cab8ab7e2 --- /dev/null +++ b/node_modules/mongodb/lib/operations/bulk_write.js @@ -0,0 +1,43 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.BulkWriteOperation = void 0; +const operation_1 = require("./operation"); +/** @internal */ +class BulkWriteOperation extends operation_1.AbstractOperation { + constructor(collection, operations, options) { + super(options); + this.options = options; + this.collection = collection; + this.operations = operations; + } + execute(server, session, callback) { + const coll = this.collection; + const operations = this.operations; + const options = { ...this.options, ...this.bsonOptions, readPreference: this.readPreference }; + // Create the bulk operation + const bulk = options.ordered === false + ? coll.initializeUnorderedBulkOp(options) + : coll.initializeOrderedBulkOp(options); + // for each op go through and add to the bulk + try { + for (let i = 0; i < operations.length; i++) { + bulk.raw(operations[i]); + } + } + catch (err) { + return callback(err); + } + // Execute the bulk + bulk.execute({ ...options, session }, (err, r) => { + // We have connection level error + if (!r && err) { + return callback(err); + } + // Return the results + callback(undefined, r); + }); + } +} +exports.BulkWriteOperation = BulkWriteOperation; +(0, operation_1.defineAspects)(BulkWriteOperation, [operation_1.Aspect.WRITE_OPERATION]); +//# sourceMappingURL=bulk_write.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/bulk_write.js.map b/node_modules/mongodb/lib/operations/bulk_write.js.map new file mode 100644 index 000000000..e49d9459c --- /dev/null +++ b/node_modules/mongodb/lib/operations/bulk_write.js.map @@ -0,0 +1 @@ +{"version":3,"file":"bulk_write.js","sourceRoot":"","sources":["../../src/operations/bulk_write.ts"],"names":[],"mappings":";;;AAUA,2CAAuE;AAEvE,gBAAgB;AAChB,MAAa,kBAAmB,SAAQ,6BAAkC;IAKxE,YACE,UAAsB,EACtB,UAAmC,EACnC,OAAyB;QAEzB,KAAK,CAAC,OAAO,CAAC,CAAC;QACf,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;QACvB,IAAI,CAAC,UAAU,GAAG,UAAU,CAAC;QAC7B,IAAI,CAAC,UAAU,GAAG,UAAU,CAAC;IAC/B,CAAC;IAEQ,OAAO,CACd,MAAc,EACd,OAAkC,EAClC,QAAmC;QAEnC,MAAM,IAAI,GAAG,IAAI,CAAC,UAAU,CAAC;QAC7B,MAAM,UAAU,GAAG,IAAI,CAAC,UAAU,CAAC;QACnC,MAAM,OAAO,GAAG,EAAE,GAAG,IAAI,CAAC,OAAO,EAAE,GAAG,IAAI,CAAC,WAAW,EAAE,cAAc,EAAE,IAAI,CAAC,cAAc,EAAE,CAAC;QAE9F,4BAA4B;QAC5B,MAAM,IAAI,GACR,OAAO,CAAC,OAAO,KAAK,KAAK;YACvB,CAAC,CAAC,IAAI,CAAC,yBAAyB,CAAC,OAAO,CAAC;YACzC,CAAC,CAAC,IAAI,CAAC,uBAAuB,CAAC,OAAO,CAAC,CAAC;QAE5C,6CAA6C;QAC7C,IAAI;YACF,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,UAAU,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;gBAC1C,IAAI,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC;aACzB;SACF;QAAC,OAAO,GAAG,EAAE;YACZ,OAAO,QAAQ,CAAC,GAAG,CAAC,CAAC;SACtB;QAED,mBAAmB;QACnB,IAAI,CAAC,OAAO,CAAC,EAAE,GAAG,OAAO,EAAE,OAAO,EAAE,EAAE,CAAC,GAAG,EAAE,CAAC,EAAE,EAAE;YAC/C,iCAAiC;YACjC,IAAI,CAAC,CAAC,IAAI,GAAG,EAAE;gBACb,OAAO,QAAQ,CAAC,GAAG,CAAC,CAAC;aACtB;YAED,qBAAqB;YACrB,QAAQ,CAAC,SAAS,EAAE,CAAC,CAAC,CAAC;QACzB,CAAC,CAAC,CAAC;IACL,CAAC;CACF;AAnDD,gDAmDC;AAED,IAAA,yBAAa,EAAC,kBAAkB,EAAE,CAAC,kBAAM,CAAC,eAAe,CAAC,CAAC,CAAC"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/collections.js b/node_modules/mongodb/lib/operations/collections.js new file mode 100644 index 000000000..d0a1b1fd8 --- /dev/null +++ b/node_modules/mongodb/lib/operations/collections.js @@ -0,0 +1,29 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.CollectionsOperation = void 0; +const collection_1 = require("../collection"); +const operation_1 = require("./operation"); +/** @internal */ +class CollectionsOperation extends operation_1.AbstractOperation { + constructor(db, options) { + super(options); + this.options = options; + this.db = db; + } + execute(server, session, callback) { + const db = this.db; + // Let's get the collection names + db.listCollections({}, { ...this.options, nameOnly: true, readPreference: this.readPreference, session }).toArray((err, documents) => { + if (err || !documents) + return callback(err); + // Filter collections removing any illegal ones + documents = documents.filter(doc => doc.name.indexOf('$') === -1); + // Return the collection objects + callback(undefined, documents.map(d => { + return new collection_1.Collection(db, d.name, db.s.options); + })); + }); + } +} +exports.CollectionsOperation = CollectionsOperation; +//# sourceMappingURL=collections.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/collections.js.map b/node_modules/mongodb/lib/operations/collections.js.map new file mode 100644 index 000000000..960c51a66 --- /dev/null +++ b/node_modules/mongodb/lib/operations/collections.js.map @@ -0,0 +1 @@ +{"version":3,"file":"collections.js","sourceRoot":"","sources":["../../src/operations/collections.ts"],"names":[],"mappings":";;;AAAA,8CAA2C;AAK3C,2CAAkE;AAMlE,gBAAgB;AAChB,MAAa,oBAAqB,SAAQ,6BAA+B;IAIvE,YAAY,EAAM,EAAE,OAA2B;QAC7C,KAAK,CAAC,OAAO,CAAC,CAAC;QACf,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;QACvB,IAAI,CAAC,EAAE,GAAG,EAAE,CAAC;IACf,CAAC;IAEQ,OAAO,CACd,MAAc,EACd,OAAkC,EAClC,QAAgC;QAEhC,MAAM,EAAE,GAAG,IAAI,CAAC,EAAE,CAAC;QAEnB,iCAAiC;QACjC,EAAE,CAAC,eAAe,CAChB,EAAE,EACF,EAAE,GAAG,IAAI,CAAC,OAAO,EAAE,QAAQ,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,cAAc,EAAE,OAAO,EAAE,CAClF,CAAC,OAAO,CAAC,CAAC,GAAG,EAAE,SAAS,EAAE,EAAE;YAC3B,IAAI,GAAG,IAAI,CAAC,SAAS;gBAAE,OAAO,QAAQ,CAAC,GAAG,CAAC,CAAC;YAC5C,+CAA+C;YAC/C,SAAS,GAAG,SAAS,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;YAElE,gCAAgC;YAChC,QAAQ,CACN,SAAS,EACT,SAAS,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE;gBAChB,OAAO,IAAI,uBAAU,CAAC,EAAE,EAAE,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC;YAClD,CAAC,CAAC,CACH,CAAC;QACJ,CAAC,CAAC,CAAC;IACL,CAAC;CACF;AAnCD,oDAmCC"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/command.js b/node_modules/mongodb/lib/operations/command.js new file mode 100644 index 000000000..55ce871ee --- /dev/null +++ b/node_modules/mongodb/lib/operations/command.js @@ -0,0 +1,95 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.CommandOperation = void 0; +const error_1 = require("../error"); +const explain_1 = require("../explain"); +const read_concern_1 = require("../read_concern"); +const server_selection_1 = require("../sdam/server_selection"); +const utils_1 = require("../utils"); +const write_concern_1 = require("../write_concern"); +const operation_1 = require("./operation"); +const SUPPORTS_WRITE_CONCERN_AND_COLLATION = 5; +/** @internal */ +class CommandOperation extends operation_1.AbstractOperation { + constructor(parent, options) { + super(options); + this.options = options !== null && options !== void 0 ? options : {}; + // NOTE: this was explicitly added for the add/remove user operations, it's likely + // something we'd want to reconsider. Perhaps those commands can use `Admin` + // as a parent? + const dbNameOverride = (options === null || options === void 0 ? void 0 : options.dbName) || (options === null || options === void 0 ? void 0 : options.authdb); + if (dbNameOverride) { + this.ns = new utils_1.MongoDBNamespace(dbNameOverride, '$cmd'); + } + else { + this.ns = parent + ? parent.s.namespace.withCollection('$cmd') + : new utils_1.MongoDBNamespace('admin', '$cmd'); + } + this.readConcern = read_concern_1.ReadConcern.fromOptions(options); + this.writeConcern = write_concern_1.WriteConcern.fromOptions(options); + // TODO(NODE-2056): make logger another "inheritable" property + if (parent && parent.logger) { + this.logger = parent.logger; + } + if (this.hasAspect(operation_1.Aspect.EXPLAINABLE)) { + this.explain = explain_1.Explain.fromOptions(options); + } + else if ((options === null || options === void 0 ? void 0 : options.explain) != null) { + throw new error_1.MongoInvalidArgumentError(`Option "explain" is not supported on this command`); + } + } + get canRetryWrite() { + if (this.hasAspect(operation_1.Aspect.EXPLAINABLE)) { + return this.explain == null; + } + return true; + } + executeCommand(server, session, cmd, callback) { + // TODO: consider making this a non-enumerable property + this.server = server; + const options = { + ...this.options, + ...this.bsonOptions, + readPreference: this.readPreference, + session + }; + const serverWireVersion = (0, utils_1.maxWireVersion)(server); + const inTransaction = this.session && this.session.inTransaction(); + if (this.readConcern && (0, utils_1.commandSupportsReadConcern)(cmd) && !inTransaction) { + Object.assign(cmd, { readConcern: this.readConcern }); + } + if (this.trySecondaryWrite && serverWireVersion < server_selection_1.MIN_SECONDARY_WRITE_WIRE_VERSION) { + options.omitReadPreference = true; + } + if (options.collation && serverWireVersion < SUPPORTS_WRITE_CONCERN_AND_COLLATION) { + callback(new error_1.MongoCompatibilityError(`Server ${server.name}, which reports wire version ${serverWireVersion}, does not support collation`)); + return; + } + if (this.writeConcern && this.hasAspect(operation_1.Aspect.WRITE_OPERATION) && !inTransaction) { + Object.assign(cmd, { writeConcern: this.writeConcern }); + } + if (serverWireVersion >= SUPPORTS_WRITE_CONCERN_AND_COLLATION) { + if (options.collation && + typeof options.collation === 'object' && + !this.hasAspect(operation_1.Aspect.SKIP_COLLATION)) { + Object.assign(cmd, { collation: options.collation }); + } + } + if (typeof options.maxTimeMS === 'number') { + cmd.maxTimeMS = options.maxTimeMS; + } + if (this.hasAspect(operation_1.Aspect.EXPLAINABLE) && this.explain) { + if (serverWireVersion < 6 && cmd.aggregate) { + // Prior to 3.6, with aggregate, verbosity is ignored, and we must pass in "explain: true" + cmd.explain = true; + } + else { + cmd = (0, utils_1.decorateWithExplain)(cmd, this.explain); + } + } + server.command(this.ns, cmd, options, callback); + } +} +exports.CommandOperation = CommandOperation; +//# sourceMappingURL=command.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/command.js.map b/node_modules/mongodb/lib/operations/command.js.map new file mode 100644 index 000000000..5f49482f9 --- /dev/null +++ b/node_modules/mongodb/lib/operations/command.js.map @@ -0,0 +1 @@ +{"version":3,"file":"command.js","sourceRoot":"","sources":["../../src/operations/command.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/common_functions.js b/node_modules/mongodb/lib/operations/common_functions.js new file mode 100644 index 000000000..60ac62d5e --- /dev/null +++ b/node_modules/mongodb/lib/operations/common_functions.js @@ -0,0 +1,71 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.prepareDocs = exports.indexInformation = void 0; +const error_1 = require("../error"); +const utils_1 = require("../utils"); +function indexInformation(db, name, _optionsOrCallback, _callback) { + let options = _optionsOrCallback; + let callback = _callback; + if ('function' === typeof _optionsOrCallback) { + callback = _optionsOrCallback; + options = {}; + } + // If we specified full information + const full = options.full == null ? false : options.full; + let topology; + try { + topology = (0, utils_1.getTopology)(db); + } + catch (error) { + return callback(error); + } + // Did the user destroy the topology + if (topology.isDestroyed()) + return callback(new error_1.MongoTopologyClosedError()); + // Process all the results from the index command and collection + function processResults(indexes) { + // Contains all the information + const info = {}; + // Process all the indexes + for (let i = 0; i < indexes.length; i++) { + const index = indexes[i]; + // Let's unpack the object + info[index.name] = []; + for (const name in index.key) { + info[index.name].push([name, index.key[name]]); + } + } + return info; + } + // Get the list of indexes of the specified collection + db.collection(name) + .listIndexes(options) + .toArray((err, indexes) => { + if (err) + return callback(err); + if (!Array.isArray(indexes)) + return callback(undefined, []); + if (full) + return callback(undefined, indexes); + callback(undefined, processResults(indexes)); + }); +} +exports.indexInformation = indexInformation; +function prepareDocs(coll, docs, options) { + var _a; + const forceServerObjectId = typeof options.forceServerObjectId === 'boolean' + ? options.forceServerObjectId + : (_a = coll.s.db.options) === null || _a === void 0 ? void 0 : _a.forceServerObjectId; + // no need to modify the docs if server sets the ObjectId + if (forceServerObjectId === true) { + return docs; + } + return docs.map(doc => { + if (doc._id == null) { + doc._id = coll.s.pkFactory.createPk(); + } + return doc; + }); +} +exports.prepareDocs = prepareDocs; +//# sourceMappingURL=common_functions.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/common_functions.js.map b/node_modules/mongodb/lib/operations/common_functions.js.map new file mode 100644 index 000000000..60d1acb09 --- /dev/null +++ b/node_modules/mongodb/lib/operations/common_functions.js.map @@ -0,0 +1 @@ +{"version":3,"file":"common_functions.js","sourceRoot":"","sources":["../../src/operations/common_functions.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/connect.js b/node_modules/mongodb/lib/operations/connect.js new file mode 100644 index 000000000..eb7abc874 --- /dev/null +++ b/node_modules/mongodb/lib/operations/connect.js @@ -0,0 +1,85 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.connect = void 0; +const connection_string_1 = require("../connection_string"); +const constants_1 = require("../constants"); +const error_1 = require("../error"); +const topology_1 = require("../sdam/topology"); +function connect(mongoClient, options, callback) { + if (!callback) { + throw new error_1.MongoInvalidArgumentError('Callback function must be provided'); + } + // If a connection already been established, we can terminate early + if (mongoClient.topology && mongoClient.topology.isConnected()) { + return callback(undefined, mongoClient); + } + const logger = mongoClient.logger; + const connectCallback = err => { + const warningMessage = 'seed list contains no mongos proxies, replicaset connections requires ' + + 'the parameter replicaSet to be supplied in the URI or options object, ' + + 'mongodb://server:port/db?replicaSet=name'; + if (err && err.message === 'no mongos proxies found in seed list') { + if (logger.isWarn()) { + logger.warn(warningMessage); + } + // Return a more specific error message for MongoClient.connect + // TODO(NODE-3483) + return callback(new error_1.MongoRuntimeError(warningMessage)); + } + callback(err, mongoClient); + }; + if (typeof options.srvHost === 'string') { + return (0, connection_string_1.resolveSRVRecord)(options, (err, hosts) => { + if (err || !hosts) + return callback(err); + for (const [index, host] of hosts.entries()) { + options.hosts[index] = host; + } + return createTopology(mongoClient, options, connectCallback); + }); + } + return createTopology(mongoClient, options, connectCallback); +} +exports.connect = connect; +function createTopology(mongoClient, options, callback) { + // Create the topology + const topology = new topology_1.Topology(options.hosts, options); + // Events can be emitted before initialization is complete so we have to + // save the reference to the topology on the client ASAP if the event handlers need to access it + mongoClient.topology = topology; + topology.client = mongoClient; + topology.once(topology_1.Topology.OPEN, () => mongoClient.emit('open', mongoClient)); + for (const event of constants_1.MONGO_CLIENT_EVENTS) { + topology.on(event, (...args) => mongoClient.emit(event, ...args)); + } + // initialize CSFLE if requested + if (mongoClient.autoEncrypter) { + mongoClient.autoEncrypter.init(err => { + if (err) { + return callback(err); + } + topology.connect(options, err => { + if (err) { + topology.close({ force: true }); + return callback(err); + } + options.encrypter.connectInternalClient(error => { + if (error) + return callback(error); + callback(undefined, topology); + }); + }); + }); + return; + } + // otherwise connect normally + topology.connect(options, err => { + if (err) { + topology.close({ force: true }); + return callback(err); + } + callback(undefined, topology); + return; + }); +} +//# sourceMappingURL=connect.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/connect.js.map b/node_modules/mongodb/lib/operations/connect.js.map new file mode 100644 index 000000000..f39e04be5 --- /dev/null +++ b/node_modules/mongodb/lib/operations/connect.js.map @@ -0,0 +1 @@ +{"version":3,"file":"connect.js","sourceRoot":"","sources":["../../src/operations/connect.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/count.js b/node_modules/mongodb/lib/operations/count.js new file mode 100644 index 000000000..706dde671 --- /dev/null +++ b/node_modules/mongodb/lib/operations/count.js @@ -0,0 +1,39 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.CountOperation = void 0; +const command_1 = require("./command"); +const operation_1 = require("./operation"); +/** @internal */ +class CountOperation extends command_1.CommandOperation { + constructor(namespace, filter, options) { + super({ s: { namespace: namespace } }, options); + this.options = options; + this.collectionName = namespace.collection; + this.query = filter; + } + execute(server, session, callback) { + const options = this.options; + const cmd = { + count: this.collectionName, + query: this.query + }; + if (typeof options.limit === 'number') { + cmd.limit = options.limit; + } + if (typeof options.skip === 'number') { + cmd.skip = options.skip; + } + if (options.hint != null) { + cmd.hint = options.hint; + } + if (typeof options.maxTimeMS === 'number') { + cmd.maxTimeMS = options.maxTimeMS; + } + super.executeCommand(server, session, cmd, (err, result) => { + callback(err, result ? result.n : 0); + }); + } +} +exports.CountOperation = CountOperation; +(0, operation_1.defineAspects)(CountOperation, [operation_1.Aspect.READ_OPERATION, operation_1.Aspect.RETRYABLE]); +//# sourceMappingURL=count.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/count.js.map b/node_modules/mongodb/lib/operations/count.js.map new file mode 100644 index 000000000..aeee5fd7c --- /dev/null +++ b/node_modules/mongodb/lib/operations/count.js.map @@ -0,0 +1 @@ +{"version":3,"file":"count.js","sourceRoot":"","sources":["../../src/operations/count.ts"],"names":[],"mappings":";;;AAKA,uCAAsE;AACtE,2CAAoD;AAcpD,gBAAgB;AAChB,MAAa,cAAe,SAAQ,0BAAwB;IAK1D,YAAY,SAA2B,EAAE,MAAgB,EAAE,OAAqB;QAC9E,KAAK,CAAC,EAAE,CAAC,EAAE,EAAE,SAAS,EAAE,SAAS,EAAE,EAA2B,EAAE,OAAO,CAAC,CAAC;QAEzE,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;QACvB,IAAI,CAAC,cAAc,GAAG,SAAS,CAAC,UAAU,CAAC;QAC3C,IAAI,CAAC,KAAK,GAAG,MAAM,CAAC;IACtB,CAAC;IAEQ,OAAO,CACd,MAAc,EACd,OAAkC,EAClC,QAA0B;QAE1B,MAAM,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC;QAC7B,MAAM,GAAG,GAAa;YACpB,KAAK,EAAE,IAAI,CAAC,cAAc;YAC1B,KAAK,EAAE,IAAI,CAAC,KAAK;SAClB,CAAC;QAEF,IAAI,OAAO,OAAO,CAAC,KAAK,KAAK,QAAQ,EAAE;YACrC,GAAG,CAAC,KAAK,GAAG,OAAO,CAAC,KAAK,CAAC;SAC3B;QAED,IAAI,OAAO,OAAO,CAAC,IAAI,KAAK,QAAQ,EAAE;YACpC,GAAG,CAAC,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC;SACzB;QAED,IAAI,OAAO,CAAC,IAAI,IAAI,IAAI,EAAE;YACxB,GAAG,CAAC,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC;SACzB;QAED,IAAI,OAAO,OAAO,CAAC,SAAS,KAAK,QAAQ,EAAE;YACzC,GAAG,CAAC,SAAS,GAAG,OAAO,CAAC,SAAS,CAAC;SACnC;QAED,KAAK,CAAC,cAAc,CAAC,MAAM,EAAE,OAAO,EAAE,GAAG,EAAE,CAAC,GAAG,EAAE,MAAM,EAAE,EAAE;YACzD,QAAQ,CAAC,GAAG,EAAE,MAAM,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QACvC,CAAC,CAAC,CAAC;IACL,CAAC;CACF;AA5CD,wCA4CC;AAED,IAAA,yBAAa,EAAC,cAAc,EAAE,CAAC,kBAAM,CAAC,cAAc,EAAE,kBAAM,CAAC,SAAS,CAAC,CAAC,CAAC"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/count_documents.js b/node_modules/mongodb/lib/operations/count_documents.js new file mode 100644 index 000000000..562c9c068 --- /dev/null +++ b/node_modules/mongodb/lib/operations/count_documents.js @@ -0,0 +1,37 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.CountDocumentsOperation = void 0; +const aggregate_1 = require("./aggregate"); +/** @internal */ +class CountDocumentsOperation extends aggregate_1.AggregateOperation { + constructor(collection, query, options) { + const pipeline = []; + pipeline.push({ $match: query }); + if (typeof options.skip === 'number') { + pipeline.push({ $skip: options.skip }); + } + if (typeof options.limit === 'number') { + pipeline.push({ $limit: options.limit }); + } + pipeline.push({ $group: { _id: 1, n: { $sum: 1 } } }); + super(collection.s.namespace, pipeline, options); + } + execute(server, session, callback) { + super.execute(server, session, (err, result) => { + if (err || !result) { + callback(err); + return; + } + // NOTE: We're avoiding creating a cursor here to reduce the callstack. + const response = result; + if (response.cursor == null || response.cursor.firstBatch == null) { + callback(undefined, 0); + return; + } + const docs = response.cursor.firstBatch; + callback(undefined, docs.length ? docs[0].n : 0); + }); + } +} +exports.CountDocumentsOperation = CountDocumentsOperation; +//# sourceMappingURL=count_documents.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/count_documents.js.map b/node_modules/mongodb/lib/operations/count_documents.js.map new file mode 100644 index 000000000..bc1ce7b67 --- /dev/null +++ b/node_modules/mongodb/lib/operations/count_documents.js.map @@ -0,0 +1 @@ +{"version":3,"file":"count_documents.js","sourceRoot":"","sources":["../../src/operations/count_documents.ts"],"names":[],"mappings":";;;AAKA,2CAAmE;AAUnE,gBAAgB;AAChB,MAAa,uBAAwB,SAAQ,8BAA0B;IACrE,YAAY,UAAsB,EAAE,KAAe,EAAE,OAA8B;QACjF,MAAM,QAAQ,GAAG,EAAE,CAAC;QACpB,QAAQ,CAAC,IAAI,CAAC,EAAE,MAAM,EAAE,KAAK,EAAE,CAAC,CAAC;QAEjC,IAAI,OAAO,OAAO,CAAC,IAAI,KAAK,QAAQ,EAAE;YACpC,QAAQ,CAAC,IAAI,CAAC,EAAE,KAAK,EAAE,OAAO,CAAC,IAAI,EAAE,CAAC,CAAC;SACxC;QAED,IAAI,OAAO,OAAO,CAAC,KAAK,KAAK,QAAQ,EAAE;YACrC,QAAQ,CAAC,IAAI,CAAC,EAAE,MAAM,EAAE,OAAO,CAAC,KAAK,EAAE,CAAC,CAAC;SAC1C;QAED,QAAQ,CAAC,IAAI,CAAC,EAAE,MAAM,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,CAAC,EAAE,EAAE,IAAI,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,CAAC;QAEtD,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,EAAE,QAAQ,EAAE,OAAO,CAAC,CAAC;IACnD,CAAC;IAEQ,OAAO,CACd,MAAc,EACd,OAAkC,EAClC,QAA0B;QAE1B,KAAK,CAAC,OAAO,CAAC,MAAM,EAAE,OAAO,EAAE,CAAC,GAAG,EAAE,MAAM,EAAE,EAAE;YAC7C,IAAI,GAAG,IAAI,CAAC,MAAM,EAAE;gBAClB,QAAQ,CAAC,GAAG,CAAC,CAAC;gBACd,OAAO;aACR;YAED,uEAAuE;YACvE,MAAM,QAAQ,GAAG,MAA6B,CAAC;YAC/C,IAAI,QAAQ,CAAC,MAAM,IAAI,IAAI,IAAI,QAAQ,CAAC,MAAM,CAAC,UAAU,IAAI,IAAI,EAAE;gBACjE,QAAQ,CAAC,SAAS,EAAE,CAAC,CAAC,CAAC;gBACvB,OAAO;aACR;YAED,MAAM,IAAI,GAAG,QAAQ,CAAC,MAAM,CAAC,UAAU,CAAC;YACxC,QAAQ,CAAC,SAAS,EAAE,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QACnD,CAAC,CAAC,CAAC;IACL,CAAC;CACF;AAxCD,0DAwCC"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/create_collection.js b/node_modules/mongodb/lib/operations/create_collection.js new file mode 100644 index 000000000..4d6c8a50e --- /dev/null +++ b/node_modules/mongodb/lib/operations/create_collection.js @@ -0,0 +1,100 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.CreateCollectionOperation = void 0; +const collection_1 = require("../collection"); +const command_1 = require("./command"); +const indexes_1 = require("./indexes"); +const operation_1 = require("./operation"); +const ILLEGAL_COMMAND_FIELDS = new Set([ + 'w', + 'wtimeout', + 'j', + 'fsync', + 'autoIndexId', + 'pkFactory', + 'raw', + 'readPreference', + 'session', + 'readConcern', + 'writeConcern', + 'raw', + 'fieldsAsRaw', + 'promoteLongs', + 'promoteValues', + 'promoteBuffers', + 'bsonRegExp', + 'serializeFunctions', + 'ignoreUndefined', + 'enableUtf8Validation' +]); +/** @internal */ +class CreateCollectionOperation extends command_1.CommandOperation { + constructor(db, name, options = {}) { + super(db, options); + this.options = options; + this.db = db; + this.name = name; + } + execute(server, session, callback) { + (async () => { + var _a, _b, _c, _d, _e, _f; + const db = this.db; + const name = this.name; + const options = this.options; + const encryptedFields = (_a = options.encryptedFields) !== null && _a !== void 0 ? _a : (_c = (_b = db.s.client.options.autoEncryption) === null || _b === void 0 ? void 0 : _b.encryptedFieldsMap) === null || _c === void 0 ? void 0 : _c[`${db.databaseName}.${name}`]; + if (encryptedFields) { + // Create auxilliary collections for queryable encryption support. + const escCollection = (_d = encryptedFields.escCollection) !== null && _d !== void 0 ? _d : `enxcol_.${name}.esc`; + const eccCollection = (_e = encryptedFields.eccCollection) !== null && _e !== void 0 ? _e : `enxcol_.${name}.ecc`; + const ecocCollection = (_f = encryptedFields.ecocCollection) !== null && _f !== void 0 ? _f : `enxcol_.${name}.ecoc`; + for (const collectionName of [escCollection, eccCollection, ecocCollection]) { + const createOp = new CreateCollectionOperation(db, collectionName, { + clusteredIndex: { + key: { _id: 1 }, + unique: true + } + }); + await createOp.executeWithoutEncryptedFieldsCheck(server, session); + } + if (!options.encryptedFields) { + this.options = { ...this.options, encryptedFields }; + } + } + const coll = await this.executeWithoutEncryptedFieldsCheck(server, session); + if (encryptedFields) { + // Create the required index for queryable encryption support. + const createIndexOp = new indexes_1.CreateIndexOperation(db, name, { __safeContent__: 1 }, {}); + await new Promise((resolve, reject) => { + createIndexOp.execute(server, session, err => (err ? reject(err) : resolve())); + }); + } + return coll; + })().then(coll => callback(undefined, coll), err => callback(err)); + } + executeWithoutEncryptedFieldsCheck(server, session) { + return new Promise((resolve, reject) => { + const db = this.db; + const name = this.name; + const options = this.options; + const done = err => { + if (err) { + return reject(err); + } + resolve(new collection_1.Collection(db, name, options)); + }; + const cmd = { create: name }; + for (const n in options) { + if (options[n] != null && + typeof options[n] !== 'function' && + !ILLEGAL_COMMAND_FIELDS.has(n)) { + cmd[n] = options[n]; + } + } + // otherwise just execute the command + super.executeCommand(server, session, cmd, done); + }); + } +} +exports.CreateCollectionOperation = CreateCollectionOperation; +(0, operation_1.defineAspects)(CreateCollectionOperation, [operation_1.Aspect.WRITE_OPERATION]); +//# sourceMappingURL=create_collection.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/create_collection.js.map b/node_modules/mongodb/lib/operations/create_collection.js.map new file mode 100644 index 000000000..d84b54248 --- /dev/null +++ b/node_modules/mongodb/lib/operations/create_collection.js.map @@ -0,0 +1 @@ +{"version":3,"file":"create_collection.js","sourceRoot":"","sources":["../../src/operations/create_collection.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/delete.js b/node_modules/mongodb/lib/operations/delete.js new file mode 100644 index 000000000..34cd24a10 --- /dev/null +++ b/node_modules/mongodb/lib/operations/delete.js @@ -0,0 +1,135 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.makeDeleteStatement = exports.DeleteManyOperation = exports.DeleteOneOperation = exports.DeleteOperation = void 0; +const error_1 = require("../error"); +const utils_1 = require("../utils"); +const command_1 = require("./command"); +const operation_1 = require("./operation"); +/** @internal */ +class DeleteOperation extends command_1.CommandOperation { + constructor(ns, statements, options) { + super(undefined, options); + this.options = options; + this.ns = ns; + this.statements = statements; + } + get canRetryWrite() { + if (super.canRetryWrite === false) { + return false; + } + return this.statements.every(op => (op.limit != null ? op.limit > 0 : true)); + } + execute(server, session, callback) { + var _a; + const options = (_a = this.options) !== null && _a !== void 0 ? _a : {}; + const ordered = typeof options.ordered === 'boolean' ? options.ordered : true; + const command = { + delete: this.ns.collection, + deletes: this.statements, + ordered + }; + if (options.let) { + command.let = options.let; + } + // we check for undefined specifically here to allow falsy values + // eslint-disable-next-line no-restricted-syntax + if (options.comment !== undefined) { + command.comment = options.comment; + } + if (options.explain != null && (0, utils_1.maxWireVersion)(server) < 3) { + return callback + ? callback(new error_1.MongoCompatibilityError(`Server ${server.name} does not support explain on delete`)) + : undefined; + } + const unacknowledgedWrite = this.writeConcern && this.writeConcern.w === 0; + if (unacknowledgedWrite || (0, utils_1.maxWireVersion)(server) < 5) { + if (this.statements.find((o) => o.hint)) { + callback(new error_1.MongoCompatibilityError(`Servers < 3.4 do not support hint on delete`)); + return; + } + } + const statementWithCollation = this.statements.find(statement => !!statement.collation); + if (statementWithCollation && (0, utils_1.collationNotSupported)(server, statementWithCollation)) { + callback(new error_1.MongoCompatibilityError(`Server ${server.name} does not support collation`)); + return; + } + super.executeCommand(server, session, command, callback); + } +} +exports.DeleteOperation = DeleteOperation; +class DeleteOneOperation extends DeleteOperation { + constructor(collection, filter, options) { + super(collection.s.namespace, [makeDeleteStatement(filter, { ...options, limit: 1 })], options); + } + execute(server, session, callback) { + super.execute(server, session, (err, res) => { + var _a, _b; + if (err || res == null) + return callback(err); + if (res.code) + return callback(new error_1.MongoServerError(res)); + if (res.writeErrors) + return callback(new error_1.MongoServerError(res.writeErrors[0])); + if (this.explain) + return callback(undefined, res); + callback(undefined, { + acknowledged: (_b = ((_a = this.writeConcern) === null || _a === void 0 ? void 0 : _a.w) !== 0) !== null && _b !== void 0 ? _b : true, + deletedCount: res.n + }); + }); + } +} +exports.DeleteOneOperation = DeleteOneOperation; +class DeleteManyOperation extends DeleteOperation { + constructor(collection, filter, options) { + super(collection.s.namespace, [makeDeleteStatement(filter, options)], options); + } + execute(server, session, callback) { + super.execute(server, session, (err, res) => { + var _a, _b; + if (err || res == null) + return callback(err); + if (res.code) + return callback(new error_1.MongoServerError(res)); + if (res.writeErrors) + return callback(new error_1.MongoServerError(res.writeErrors[0])); + if (this.explain) + return callback(undefined, res); + callback(undefined, { + acknowledged: (_b = ((_a = this.writeConcern) === null || _a === void 0 ? void 0 : _a.w) !== 0) !== null && _b !== void 0 ? _b : true, + deletedCount: res.n + }); + }); + } +} +exports.DeleteManyOperation = DeleteManyOperation; +function makeDeleteStatement(filter, options) { + const op = { + q: filter, + limit: typeof options.limit === 'number' ? options.limit : 0 + }; + if (options.single === true) { + op.limit = 1; + } + if (options.collation) { + op.collation = options.collation; + } + if (options.hint) { + op.hint = options.hint; + } + return op; +} +exports.makeDeleteStatement = makeDeleteStatement; +(0, operation_1.defineAspects)(DeleteOperation, [operation_1.Aspect.RETRYABLE, operation_1.Aspect.WRITE_OPERATION]); +(0, operation_1.defineAspects)(DeleteOneOperation, [ + operation_1.Aspect.RETRYABLE, + operation_1.Aspect.WRITE_OPERATION, + operation_1.Aspect.EXPLAINABLE, + operation_1.Aspect.SKIP_COLLATION +]); +(0, operation_1.defineAspects)(DeleteManyOperation, [ + operation_1.Aspect.WRITE_OPERATION, + operation_1.Aspect.EXPLAINABLE, + operation_1.Aspect.SKIP_COLLATION +]); +//# sourceMappingURL=delete.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/delete.js.map b/node_modules/mongodb/lib/operations/delete.js.map new file mode 100644 index 000000000..e716dfe5e --- /dev/null +++ b/node_modules/mongodb/lib/operations/delete.js.map @@ -0,0 +1 @@ +{"version":3,"file":"delete.js","sourceRoot":"","sources":["../../src/operations/delete.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/distinct.js b/node_modules/mongodb/lib/operations/distinct.js new file mode 100644 index 000000000..8e9dd9455 --- /dev/null +++ b/node_modules/mongodb/lib/operations/distinct.js @@ -0,0 +1,67 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.DistinctOperation = void 0; +const utils_1 = require("../utils"); +const command_1 = require("./command"); +const operation_1 = require("./operation"); +/** + * Return a list of distinct values for the given key across a collection. + * @internal + */ +class DistinctOperation extends command_1.CommandOperation { + /** + * Construct a Distinct operation. + * + * @param collection - Collection instance. + * @param key - Field of the document to find distinct values for. + * @param query - The query for filtering the set of documents to which we apply the distinct filter. + * @param options - Optional settings. See Collection.prototype.distinct for a list of options. + */ + constructor(collection, key, query, options) { + super(collection, options); + this.options = options !== null && options !== void 0 ? options : {}; + this.collection = collection; + this.key = key; + this.query = query; + } + execute(server, session, callback) { + const coll = this.collection; + const key = this.key; + const query = this.query; + const options = this.options; + // Distinct command + const cmd = { + distinct: coll.collectionName, + key: key, + query: query + }; + // Add maxTimeMS if defined + if (typeof options.maxTimeMS === 'number') { + cmd.maxTimeMS = options.maxTimeMS; + } + // we check for undefined specifically here to allow falsy values + // eslint-disable-next-line no-restricted-syntax + if (typeof options.comment !== 'undefined') { + cmd.comment = options.comment; + } + // Do we have a readConcern specified + (0, utils_1.decorateWithReadConcern)(cmd, coll, options); + // Have we specified collation + try { + (0, utils_1.decorateWithCollation)(cmd, coll, options); + } + catch (err) { + return callback(err); + } + super.executeCommand(server, session, cmd, (err, result) => { + if (err) { + callback(err); + return; + } + callback(undefined, this.explain ? result : result.values); + }); + } +} +exports.DistinctOperation = DistinctOperation; +(0, operation_1.defineAspects)(DistinctOperation, [operation_1.Aspect.READ_OPERATION, operation_1.Aspect.RETRYABLE, operation_1.Aspect.EXPLAINABLE]); +//# sourceMappingURL=distinct.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/distinct.js.map b/node_modules/mongodb/lib/operations/distinct.js.map new file mode 100644 index 000000000..39dc73ba9 --- /dev/null +++ b/node_modules/mongodb/lib/operations/distinct.js.map @@ -0,0 +1 @@ +{"version":3,"file":"distinct.js","sourceRoot":"","sources":["../../src/operations/distinct.ts"],"names":[],"mappings":";;;AAIA,oCAAoF;AACpF,uCAAsE;AACtE,2CAAoD;AAKpD;;;GAGG;AACH,MAAa,iBAAkB,SAAQ,0BAAuB;IAQ5D;;;;;;;OAOG;IACH,YAAY,UAAsB,EAAE,GAAW,EAAE,KAAe,EAAE,OAAyB;QACzF,KAAK,CAAC,UAAU,EAAE,OAAO,CAAC,CAAC;QAE3B,IAAI,CAAC,OAAO,GAAG,OAAO,aAAP,OAAO,cAAP,OAAO,GAAI,EAAE,CAAC;QAC7B,IAAI,CAAC,UAAU,GAAG,UAAU,CAAC;QAC7B,IAAI,CAAC,GAAG,GAAG,GAAG,CAAC;QACf,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;IACrB,CAAC;IAEQ,OAAO,CACd,MAAc,EACd,OAAkC,EAClC,QAAyB;QAEzB,MAAM,IAAI,GAAG,IAAI,CAAC,UAAU,CAAC;QAC7B,MAAM,GAAG,GAAG,IAAI,CAAC,GAAG,CAAC;QACrB,MAAM,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC;QACzB,MAAM,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC;QAE7B,mBAAmB;QACnB,MAAM,GAAG,GAAa;YACpB,QAAQ,EAAE,IAAI,CAAC,cAAc;YAC7B,GAAG,EAAE,GAAG;YACR,KAAK,EAAE,KAAK;SACb,CAAC;QAEF,2BAA2B;QAC3B,IAAI,OAAO,OAAO,CAAC,SAAS,KAAK,QAAQ,EAAE;YACzC,GAAG,CAAC,SAAS,GAAG,OAAO,CAAC,SAAS,CAAC;SACnC;QAED,iEAAiE;QACjE,gDAAgD;QAChD,IAAI,OAAO,OAAO,CAAC,OAAO,KAAK,WAAW,EAAE;YAC1C,GAAG,CAAC,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC;SAC/B;QAED,qCAAqC;QACrC,IAAA,+BAAuB,EAAC,GAAG,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC;QAE5C,8BAA8B;QAC9B,IAAI;YACF,IAAA,6BAAqB,EAAC,GAAG,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC;SAC3C;QAAC,OAAO,GAAG,EAAE;YACZ,OAAO,QAAQ,CAAC,GAAG,CAAC,CAAC;SACtB;QAED,KAAK,CAAC,cAAc,CAAC,MAAM,EAAE,OAAO,EAAE,GAAG,EAAE,CAAC,GAAG,EAAE,MAAM,EAAE,EAAE;YACzD,IAAI,GAAG,EAAE;gBACP,QAAQ,CAAC,GAAG,CAAC,CAAC;gBACd,OAAO;aACR;YAED,QAAQ,CAAC,SAAS,EAAE,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;QAC7D,CAAC,CAAC,CAAC;IACL,CAAC;CACF;AAxED,8CAwEC;AAED,IAAA,yBAAa,EAAC,iBAAiB,EAAE,CAAC,kBAAM,CAAC,cAAc,EAAE,kBAAM,CAAC,SAAS,EAAE,kBAAM,CAAC,WAAW,CAAC,CAAC,CAAC"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/drop.js b/node_modules/mongodb/lib/operations/drop.js new file mode 100644 index 000000000..c0cbcf2f4 --- /dev/null +++ b/node_modules/mongodb/lib/operations/drop.js @@ -0,0 +1,84 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.DropDatabaseOperation = exports.DropCollectionOperation = void 0; +const error_1 = require("../error"); +const command_1 = require("./command"); +const operation_1 = require("./operation"); +/** @internal */ +class DropCollectionOperation extends command_1.CommandOperation { + constructor(db, name, options = {}) { + super(db, options); + this.db = db; + this.options = options; + this.name = name; + } + execute(server, session, callback) { + (async () => { + var _a, _b, _c, _d; + const db = this.db; + const options = this.options; + const name = this.name; + const encryptedFieldsMap = (_a = db.s.client.options.autoEncryption) === null || _a === void 0 ? void 0 : _a.encryptedFieldsMap; + let encryptedFields = (_b = options.encryptedFields) !== null && _b !== void 0 ? _b : encryptedFieldsMap === null || encryptedFieldsMap === void 0 ? void 0 : encryptedFieldsMap[`${db.databaseName}.${name}`]; + if (!encryptedFields && encryptedFieldsMap) { + // If the MongoClient was configued with an encryptedFieldsMap, + // and no encryptedFields config was available in it or explicitly + // passed as an argument, the spec tells us to look one up using + // listCollections(). + const listCollectionsResult = await db + .listCollections({ name }, { nameOnly: false }) + .toArray(); + encryptedFields = (_d = (_c = listCollectionsResult === null || listCollectionsResult === void 0 ? void 0 : listCollectionsResult[0]) === null || _c === void 0 ? void 0 : _c.options) === null || _d === void 0 ? void 0 : _d.encryptedFields; + } + if (encryptedFields) { + const escCollection = encryptedFields.escCollection || `enxcol_.${name}.esc`; + const eccCollection = encryptedFields.eccCollection || `enxcol_.${name}.ecc`; + const ecocCollection = encryptedFields.ecocCollection || `enxcol_.${name}.ecoc`; + for (const collectionName of [escCollection, eccCollection, ecocCollection]) { + // Drop auxilliary collections, ignoring potential NamespaceNotFound errors. + const dropOp = new DropCollectionOperation(db, collectionName); + try { + await dropOp.executeWithoutEncryptedFieldsCheck(server, session); + } + catch (err) { + if (!(err instanceof error_1.MongoServerError) || + err.code !== error_1.MONGODB_ERROR_CODES.NamespaceNotFound) { + throw err; + } + } + } + } + return await this.executeWithoutEncryptedFieldsCheck(server, session); + })().then(result => callback(undefined, result), err => callback(err)); + } + executeWithoutEncryptedFieldsCheck(server, session) { + return new Promise((resolve, reject) => { + super.executeCommand(server, session, { drop: this.name }, (err, result) => { + if (err) + return reject(err); + resolve(!!result.ok); + }); + }); + } +} +exports.DropCollectionOperation = DropCollectionOperation; +/** @internal */ +class DropDatabaseOperation extends command_1.CommandOperation { + constructor(db, options) { + super(db, options); + this.options = options; + } + execute(server, session, callback) { + super.executeCommand(server, session, { dropDatabase: 1 }, (err, result) => { + if (err) + return callback(err); + if (result.ok) + return callback(undefined, true); + callback(undefined, false); + }); + } +} +exports.DropDatabaseOperation = DropDatabaseOperation; +(0, operation_1.defineAspects)(DropCollectionOperation, [operation_1.Aspect.WRITE_OPERATION]); +(0, operation_1.defineAspects)(DropDatabaseOperation, [operation_1.Aspect.WRITE_OPERATION]); +//# sourceMappingURL=drop.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/drop.js.map b/node_modules/mongodb/lib/operations/drop.js.map new file mode 100644 index 000000000..6f6e283b4 --- /dev/null +++ b/node_modules/mongodb/lib/operations/drop.js.map @@ -0,0 +1 @@ +{"version":3,"file":"drop.js","sourceRoot":"","sources":["../../src/operations/drop.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/estimated_document_count.js b/node_modules/mongodb/lib/operations/estimated_document_count.js new file mode 100644 index 000000000..1cd7f60bf --- /dev/null +++ b/node_modules/mongodb/lib/operations/estimated_document_count.js @@ -0,0 +1,38 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.EstimatedDocumentCountOperation = void 0; +const command_1 = require("./command"); +const operation_1 = require("./operation"); +/** @internal */ +class EstimatedDocumentCountOperation extends command_1.CommandOperation { + constructor(collection, options = {}) { + super(collection, options); + this.options = options; + this.collectionName = collection.collectionName; + } + execute(server, session, callback) { + const cmd = { count: this.collectionName }; + if (typeof this.options.maxTimeMS === 'number') { + cmd.maxTimeMS = this.options.maxTimeMS; + } + // we check for undefined specifically here to allow falsy values + // eslint-disable-next-line no-restricted-syntax + if (this.options.comment !== undefined) { + cmd.comment = this.options.comment; + } + super.executeCommand(server, session, cmd, (err, response) => { + if (err) { + callback(err); + return; + } + callback(undefined, (response === null || response === void 0 ? void 0 : response.n) || 0); + }); + } +} +exports.EstimatedDocumentCountOperation = EstimatedDocumentCountOperation; +(0, operation_1.defineAspects)(EstimatedDocumentCountOperation, [ + operation_1.Aspect.READ_OPERATION, + operation_1.Aspect.RETRYABLE, + operation_1.Aspect.CURSOR_CREATING +]); +//# sourceMappingURL=estimated_document_count.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/estimated_document_count.js.map b/node_modules/mongodb/lib/operations/estimated_document_count.js.map new file mode 100644 index 000000000..e325a23d5 --- /dev/null +++ b/node_modules/mongodb/lib/operations/estimated_document_count.js.map @@ -0,0 +1 @@ +{"version":3,"file":"estimated_document_count.js","sourceRoot":"","sources":["../../src/operations/estimated_document_count.ts"],"names":[],"mappings":";;;AAKA,uCAAsE;AACtE,2CAAoD;AAYpD,gBAAgB;AAChB,MAAa,+BAAgC,SAAQ,0BAAwB;IAI3E,YAAY,UAAsB,EAAE,UAAyC,EAAE;QAC7E,KAAK,CAAC,UAAU,EAAE,OAAO,CAAC,CAAC;QAC3B,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;QACvB,IAAI,CAAC,cAAc,GAAG,UAAU,CAAC,cAAc,CAAC;IAClD,CAAC;IAEQ,OAAO,CACd,MAAc,EACd,OAAkC,EAClC,QAA0B;QAE1B,MAAM,GAAG,GAAa,EAAE,KAAK,EAAE,IAAI,CAAC,cAAc,EAAE,CAAC;QAErD,IAAI,OAAO,IAAI,CAAC,OAAO,CAAC,SAAS,KAAK,QAAQ,EAAE;YAC9C,GAAG,CAAC,SAAS,GAAG,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC;SACxC;QAED,iEAAiE;QACjE,gDAAgD;QAChD,IAAI,IAAI,CAAC,OAAO,CAAC,OAAO,KAAK,SAAS,EAAE;YACtC,GAAG,CAAC,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC;SACpC;QAED,KAAK,CAAC,cAAc,CAAC,MAAM,EAAE,OAAO,EAAE,GAAG,EAAE,CAAC,GAAG,EAAE,QAAQ,EAAE,EAAE;YAC3D,IAAI,GAAG,EAAE;gBACP,QAAQ,CAAC,GAAG,CAAC,CAAC;gBACd,OAAO;aACR;YAED,QAAQ,CAAC,SAAS,EAAE,CAAA,QAAQ,aAAR,QAAQ,uBAAR,QAAQ,CAAE,CAAC,KAAI,CAAC,CAAC,CAAC;QACxC,CAAC,CAAC,CAAC;IACL,CAAC;CACF;AApCD,0EAoCC;AAED,IAAA,yBAAa,EAAC,+BAA+B,EAAE;IAC7C,kBAAM,CAAC,cAAc;IACrB,kBAAM,CAAC,SAAS;IAChB,kBAAM,CAAC,eAAe;CACvB,CAAC,CAAC"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/eval.js b/node_modules/mongodb/lib/operations/eval.js new file mode 100644 index 000000000..7227ce458 --- /dev/null +++ b/node_modules/mongodb/lib/operations/eval.js @@ -0,0 +1,55 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.EvalOperation = void 0; +const bson_1 = require("../bson"); +const error_1 = require("../error"); +const read_preference_1 = require("../read_preference"); +const command_1 = require("./command"); +/** @internal */ +class EvalOperation extends command_1.CommandOperation { + constructor(db, code, parameters, options) { + super(db, options); + this.options = options !== null && options !== void 0 ? options : {}; + this.code = code; + this.parameters = parameters; + // force primary read preference + Object.defineProperty(this, 'readPreference', { + value: read_preference_1.ReadPreference.primary, + configurable: false, + writable: false + }); + } + execute(server, session, callback) { + let finalCode = this.code; + let finalParameters = []; + // If not a code object translate to one + if (!(finalCode && finalCode._bsontype === 'Code')) { + finalCode = new bson_1.Code(finalCode); + } + // Ensure the parameters are correct + if (this.parameters != null && typeof this.parameters !== 'function') { + finalParameters = Array.isArray(this.parameters) ? this.parameters : [this.parameters]; + } + // Create execution selector + const cmd = { $eval: finalCode, args: finalParameters }; + // Check if the nolock parameter is passed in + if (this.options.nolock) { + cmd.nolock = this.options.nolock; + } + // Execute the command + super.executeCommand(server, session, cmd, (err, result) => { + if (err) + return callback(err); + if (result && result.ok === 1) { + return callback(undefined, result.retval); + } + if (result) { + callback(new error_1.MongoServerError({ message: `eval failed: ${result.errmsg}` })); + return; + } + callback(err, result); + }); + } +} +exports.EvalOperation = EvalOperation; +//# sourceMappingURL=eval.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/eval.js.map b/node_modules/mongodb/lib/operations/eval.js.map new file mode 100644 index 000000000..de1692de4 --- /dev/null +++ b/node_modules/mongodb/lib/operations/eval.js.map @@ -0,0 +1 @@ +{"version":3,"file":"eval.js","sourceRoot":"","sources":["../../src/operations/eval.ts"],"names":[],"mappings":";;;AAAA,kCAAyC;AAGzC,oCAA4C;AAC5C,wDAAoD;AAIpD,uCAAsE;AAOtE,gBAAgB;AAChB,MAAa,aAAc,SAAQ,0BAA0B;IAK3D,YACE,EAAmB,EACnB,IAAU,EACV,UAAkC,EAClC,OAAqB;QAErB,KAAK,CAAC,EAAE,EAAE,OAAO,CAAC,CAAC;QAEnB,IAAI,CAAC,OAAO,GAAG,OAAO,aAAP,OAAO,cAAP,OAAO,GAAI,EAAE,CAAC;QAC7B,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;QACjB,IAAI,CAAC,UAAU,GAAG,UAAU,CAAC;QAC7B,gCAAgC;QAChC,MAAM,CAAC,cAAc,CAAC,IAAI,EAAE,gBAAgB,EAAE;YAC5C,KAAK,EAAE,gCAAc,CAAC,OAAO;YAC7B,YAAY,EAAE,KAAK;YACnB,QAAQ,EAAE,KAAK;SAChB,CAAC,CAAC;IACL,CAAC;IAEQ,OAAO,CACd,MAAc,EACd,OAAkC,EAClC,QAA4B;QAE5B,IAAI,SAAS,GAAG,IAAI,CAAC,IAAI,CAAC;QAC1B,IAAI,eAAe,GAAe,EAAE,CAAC;QAErC,wCAAwC;QACxC,IAAI,CAAC,CAAC,SAAS,IAAK,SAA8C,CAAC,SAAS,KAAK,MAAM,CAAC,EAAE;YACxF,SAAS,GAAG,IAAI,WAAI,CAAC,SAAkB,CAAC,CAAC;SAC1C;QAED,oCAAoC;QACpC,IAAI,IAAI,CAAC,UAAU,IAAI,IAAI,IAAI,OAAO,IAAI,CAAC,UAAU,KAAK,UAAU,EAAE;YACpE,eAAe,GAAG,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;SACxF;QAED,4BAA4B;QAC5B,MAAM,GAAG,GAAa,EAAE,KAAK,EAAE,SAAS,EAAE,IAAI,EAAE,eAAe,EAAE,CAAC;QAElE,6CAA6C;QAC7C,IAAI,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE;YACvB,GAAG,CAAC,MAAM,GAAG,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC;SAClC;QAED,sBAAsB;QACtB,KAAK,CAAC,cAAc,CAAC,MAAM,EAAE,OAAO,EAAE,GAAG,EAAE,CAAC,GAAG,EAAE,MAAM,EAAE,EAAE;YACzD,IAAI,GAAG;gBAAE,OAAO,QAAQ,CAAC,GAAG,CAAC,CAAC;YAC9B,IAAI,MAAM,IAAI,MAAM,CAAC,EAAE,KAAK,CAAC,EAAE;gBAC7B,OAAO,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAC,MAAM,CAAC,CAAC;aAC3C;YAED,IAAI,MAAM,EAAE;gBACV,QAAQ,CAAC,IAAI,wBAAgB,CAAC,EAAE,OAAO,EAAE,gBAAgB,MAAM,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,CAAC;gBAC7E,OAAO;aACR;YAED,QAAQ,CAAC,GAAG,EAAE,MAAM,CAAC,CAAC;QACxB,CAAC,CAAC,CAAC;IACL,CAAC;CACF;AAjED,sCAiEC"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/execute_operation.js b/node_modules/mongodb/lib/operations/execute_operation.js new file mode 100644 index 000000000..e9a242715 --- /dev/null +++ b/node_modules/mongodb/lib/operations/execute_operation.js @@ -0,0 +1,185 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.executeOperation = void 0; +const error_1 = require("../error"); +const read_preference_1 = require("../read_preference"); +const server_selection_1 = require("../sdam/server_selection"); +const utils_1 = require("../utils"); +const operation_1 = require("./operation"); +const MMAPv1_RETRY_WRITES_ERROR_CODE = error_1.MONGODB_ERROR_CODES.IllegalOperation; +const MMAPv1_RETRY_WRITES_ERROR_MESSAGE = 'This MongoDB deployment does not support retryable writes. Please add retryWrites=false to your connection string.'; +function executeOperation(client, operation, callback) { + if (!(operation instanceof operation_1.AbstractOperation)) { + // TODO(NODE-3483): Extend MongoRuntimeError + throw new error_1.MongoRuntimeError('This method requires a valid operation instance'); + } + return (0, utils_1.maybePromise)(callback, callback => { + const topology = client.topology; + if (topology == null) { + if (client.s.hasBeenClosed) { + return callback(new error_1.MongoNotConnectedError('Client must be connected before running operations')); + } + client.s.options[Symbol.for('@@mdb.skipPingOnConnect')] = true; + return client.connect(error => { + delete client.s.options[Symbol.for('@@mdb.skipPingOnConnect')]; + if (error) { + return callback(error); + } + return executeOperation(client, operation, callback); + }); + } + if (topology.shouldCheckForSessionSupport()) { + return topology.selectServer(read_preference_1.ReadPreference.primaryPreferred, {}, err => { + if (err) + return callback(err); + executeOperation(client, operation, callback); + }); + } + // The driver sessions spec mandates that we implicitly create sessions for operations + // that are not explicitly provided with a session. + let session = operation.session; + let owner; + if (topology.hasSessionSupport()) { + if (session == null) { + owner = Symbol(); + session = client.startSession({ owner, explicit: false }); + } + else if (session.hasEnded) { + return callback(new error_1.MongoExpiredSessionError('Use of expired sessions is not permitted')); + } + else if (session.snapshotEnabled && !topology.capabilities.supportsSnapshotReads) { + return callback(new error_1.MongoCompatibilityError('Snapshot reads require MongoDB 5.0 or later')); + } + } + else { + // no session support + if (session && session.explicit) { + // If the user passed an explicit session and we are still, after server selection, + // trying to run against a topology that doesn't support sessions we error out. + return callback(new error_1.MongoCompatibilityError('Current topology does not support sessions')); + } + else if (session && !session.explicit) { + // We do not have to worry about ending the session because the server session has not been acquired yet + delete operation.options.session; + operation.clearSession(); + session = undefined; + } + } + try { + executeWithServerSelection(topology, session, operation, (error, result) => { + if ((session === null || session === void 0 ? void 0 : session.owner) != null && session.owner === owner) { + return session.endSession(endSessionError => callback(endSessionError !== null && endSessionError !== void 0 ? endSessionError : error, result)); + } + callback(error, result); + }); + } + catch (error) { + if ((session === null || session === void 0 ? void 0 : session.owner) != null && session.owner === owner) { + session.endSession().catch(() => null); + } + throw error; + } + }); +} +exports.executeOperation = executeOperation; +function executeWithServerSelection(topology, session, operation, callback) { + var _a, _b; + const readPreference = (_a = operation.readPreference) !== null && _a !== void 0 ? _a : read_preference_1.ReadPreference.primary; + const inTransaction = !!(session === null || session === void 0 ? void 0 : session.inTransaction()); + if (inTransaction && !readPreference.equals(read_preference_1.ReadPreference.primary)) { + return callback(new error_1.MongoTransactionError(`Read preference in a transaction must be primary, not: ${readPreference.mode}`)); + } + if ((session === null || session === void 0 ? void 0 : session.isPinned) && session.transaction.isCommitted && !operation.bypassPinningCheck) { + session.unpin(); + } + let selector; + if (operation.hasAspect(operation_1.Aspect.MUST_SELECT_SAME_SERVER)) { + // GetMore and KillCursor operations must always select the same server, but run through + // server selection to potentially force monitor checks if the server is + // in an unknown state. + selector = (0, server_selection_1.sameServerSelector)((_b = operation.server) === null || _b === void 0 ? void 0 : _b.description); + } + else if (operation.trySecondaryWrite) { + // If operation should try to write to secondary use the custom server selector + // otherwise provide the read preference. + selector = (0, server_selection_1.secondaryWritableServerSelector)(topology.commonWireVersion, readPreference); + } + else { + selector = readPreference; + } + const serverSelectionOptions = { session }; + function retryOperation(originalError) { + const isWriteOperation = operation.hasAspect(operation_1.Aspect.WRITE_OPERATION); + const isReadOperation = operation.hasAspect(operation_1.Aspect.READ_OPERATION); + if (isWriteOperation && originalError.code === MMAPv1_RETRY_WRITES_ERROR_CODE) { + return callback(new error_1.MongoServerError({ + message: MMAPv1_RETRY_WRITES_ERROR_MESSAGE, + errmsg: MMAPv1_RETRY_WRITES_ERROR_MESSAGE, + originalError + })); + } + if (isWriteOperation && !(0, error_1.isRetryableWriteError)(originalError)) { + return callback(originalError); + } + if (isReadOperation && !(0, error_1.isRetryableReadError)(originalError)) { + return callback(originalError); + } + if (originalError instanceof error_1.MongoNetworkError && + (session === null || session === void 0 ? void 0 : session.isPinned) && + !session.inTransaction() && + operation.hasAspect(operation_1.Aspect.CURSOR_CREATING)) { + // If we have a cursor and the initial command fails with a network error, + // we can retry it on another connection. So we need to check it back in, clear the + // pool for the service id, and retry again. + session.unpin({ force: true, forceClear: true }); + } + // select a new server, and attempt to retry the operation + topology.selectServer(selector, serverSelectionOptions, (error, server) => { + if (!error && isWriteOperation && !(0, utils_1.supportsRetryableWrites)(server)) { + return callback(new error_1.MongoUnexpectedServerResponseError('Selected server does not support retryable writes')); + } + if (error || !server) { + return callback(error !== null && error !== void 0 ? error : new error_1.MongoUnexpectedServerResponseError('Server selection failed without error')); + } + operation.execute(server, session, callback); + }); + } + if (readPreference && + !readPreference.equals(read_preference_1.ReadPreference.primary) && + (session === null || session === void 0 ? void 0 : session.inTransaction())) { + callback(new error_1.MongoTransactionError(`Read preference in a transaction must be primary, not: ${readPreference.mode}`)); + return; + } + // select a server, and execute the operation against it + topology.selectServer(selector, serverSelectionOptions, (error, server) => { + if (error || !server) { + return callback(error); + } + if (session && operation.hasAspect(operation_1.Aspect.RETRYABLE)) { + const willRetryRead = topology.s.options.retryReads && !inTransaction && operation.canRetryRead; + const willRetryWrite = topology.s.options.retryWrites && + !inTransaction && + (0, utils_1.supportsRetryableWrites)(server) && + operation.canRetryWrite; + const hasReadAspect = operation.hasAspect(operation_1.Aspect.READ_OPERATION); + const hasWriteAspect = operation.hasAspect(operation_1.Aspect.WRITE_OPERATION); + if ((hasReadAspect && willRetryRead) || (hasWriteAspect && willRetryWrite)) { + if (hasWriteAspect && willRetryWrite) { + operation.options.willRetryWrite = true; + session.incrementTransactionNumber(); + } + return operation.execute(server, session, (error, result) => { + if (error instanceof error_1.MongoError) { + return retryOperation(error); + } + else if (error) { + return callback(error); + } + callback(undefined, result); + }); + } + } + return operation.execute(server, session, callback); + }); +} +//# sourceMappingURL=execute_operation.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/execute_operation.js.map b/node_modules/mongodb/lib/operations/execute_operation.js.map new file mode 100644 index 000000000..cf63e23f8 --- /dev/null +++ b/node_modules/mongodb/lib/operations/execute_operation.js.map @@ -0,0 +1 @@ +{"version":3,"file":"execute_operation.js","sourceRoot":"","sources":["../../src/operations/execute_operation.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/find.js b/node_modules/mongodb/lib/operations/find.js new file mode 100644 index 000000000..ca1b1273e --- /dev/null +++ b/node_modules/mongodb/lib/operations/find.js @@ -0,0 +1,165 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.FindOperation = void 0; +const error_1 = require("../error"); +const read_concern_1 = require("../read_concern"); +const sort_1 = require("../sort"); +const utils_1 = require("../utils"); +const command_1 = require("./command"); +const operation_1 = require("./operation"); +const SUPPORTS_WRITE_CONCERN_AND_COLLATION = 5; +/** @internal */ +class FindOperation extends command_1.CommandOperation { + constructor(collection, ns, filter = {}, options = {}) { + super(collection, options); + this.options = options; + this.ns = ns; + if (typeof filter !== 'object' || Array.isArray(filter)) { + throw new error_1.MongoInvalidArgumentError('Query filter must be a plain object or ObjectId'); + } + // If the filter is a buffer, validate that is a valid BSON document + if (Buffer.isBuffer(filter)) { + const objectSize = filter[0] | (filter[1] << 8) | (filter[2] << 16) | (filter[3] << 24); + if (objectSize !== filter.length) { + throw new error_1.MongoInvalidArgumentError(`Query filter raw message size does not match message header size [${filter.length}] != [${objectSize}]`); + } + } + // special case passing in an ObjectId as a filter + this.filter = filter != null && filter._bsontype === 'ObjectID' ? { _id: filter } : filter; + } + execute(server, session, callback) { + this.server = server; + const serverWireVersion = (0, utils_1.maxWireVersion)(server); + const options = this.options; + if (options.allowDiskUse != null && serverWireVersion < 4) { + callback(new error_1.MongoCompatibilityError('Option "allowDiskUse" is not supported on MongoDB < 3.2')); + return; + } + if (options.collation && serverWireVersion < SUPPORTS_WRITE_CONCERN_AND_COLLATION) { + callback(new error_1.MongoCompatibilityError(`Server ${server.name}, which reports wire version ${serverWireVersion}, does not support collation`)); + return; + } + let findCommand = makeFindCommand(this.ns, this.filter, options); + if (this.explain) { + findCommand = (0, utils_1.decorateWithExplain)(findCommand, this.explain); + } + server.command(this.ns, findCommand, { + ...this.options, + ...this.bsonOptions, + documentsReturnedIn: 'firstBatch', + session + }, callback); + } +} +exports.FindOperation = FindOperation; +function makeFindCommand(ns, filter, options) { + const findCommand = { + find: ns.collection, + filter + }; + if (options.sort) { + findCommand.sort = (0, sort_1.formatSort)(options.sort); + } + if (options.projection) { + let projection = options.projection; + if (projection && Array.isArray(projection)) { + projection = projection.length + ? projection.reduce((result, field) => { + result[field] = 1; + return result; + }, {}) + : { _id: 1 }; + } + findCommand.projection = projection; + } + if (options.hint) { + findCommand.hint = (0, utils_1.normalizeHintField)(options.hint); + } + if (typeof options.skip === 'number') { + findCommand.skip = options.skip; + } + if (typeof options.limit === 'number') { + if (options.limit < 0) { + findCommand.limit = -options.limit; + findCommand.singleBatch = true; + } + else { + findCommand.limit = options.limit; + } + } + if (typeof options.batchSize === 'number') { + if (options.batchSize < 0) { + if (options.limit && + options.limit !== 0 && + Math.abs(options.batchSize) < Math.abs(options.limit)) { + findCommand.limit = -options.batchSize; + } + findCommand.singleBatch = true; + } + else { + findCommand.batchSize = options.batchSize; + } + } + if (typeof options.singleBatch === 'boolean') { + findCommand.singleBatch = options.singleBatch; + } + // we check for undefined specifically here to allow falsy values + // eslint-disable-next-line no-restricted-syntax + if (options.comment !== undefined) { + findCommand.comment = options.comment; + } + if (typeof options.maxTimeMS === 'number') { + findCommand.maxTimeMS = options.maxTimeMS; + } + const readConcern = read_concern_1.ReadConcern.fromOptions(options); + if (readConcern) { + findCommand.readConcern = readConcern.toJSON(); + } + if (options.max) { + findCommand.max = options.max; + } + if (options.min) { + findCommand.min = options.min; + } + if (typeof options.returnKey === 'boolean') { + findCommand.returnKey = options.returnKey; + } + if (typeof options.showRecordId === 'boolean') { + findCommand.showRecordId = options.showRecordId; + } + if (typeof options.tailable === 'boolean') { + findCommand.tailable = options.tailable; + } + if (typeof options.oplogReplay === 'boolean') { + findCommand.oplogReplay = options.oplogReplay; + } + if (typeof options.timeout === 'boolean') { + findCommand.noCursorTimeout = !options.timeout; + } + else if (typeof options.noCursorTimeout === 'boolean') { + findCommand.noCursorTimeout = options.noCursorTimeout; + } + if (typeof options.awaitData === 'boolean') { + findCommand.awaitData = options.awaitData; + } + if (typeof options.allowPartialResults === 'boolean') { + findCommand.allowPartialResults = options.allowPartialResults; + } + if (options.collation) { + findCommand.collation = options.collation; + } + if (typeof options.allowDiskUse === 'boolean') { + findCommand.allowDiskUse = options.allowDiskUse; + } + if (options.let) { + findCommand.let = options.let; + } + return findCommand; +} +(0, operation_1.defineAspects)(FindOperation, [ + operation_1.Aspect.READ_OPERATION, + operation_1.Aspect.RETRYABLE, + operation_1.Aspect.EXPLAINABLE, + operation_1.Aspect.CURSOR_CREATING +]); +//# sourceMappingURL=find.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/find.js.map b/node_modules/mongodb/lib/operations/find.js.map new file mode 100644 index 000000000..b497fde76 --- /dev/null +++ b/node_modules/mongodb/lib/operations/find.js.map @@ -0,0 +1 @@ +{"version":3,"file":"find.js","sourceRoot":"","sources":["../../src/operations/find.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/find_and_modify.js b/node_modules/mongodb/lib/operations/find_and_modify.js new file mode 100644 index 000000000..525bdc692 --- /dev/null +++ b/node_modules/mongodb/lib/operations/find_and_modify.js @@ -0,0 +1,156 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.FindOneAndUpdateOperation = exports.FindOneAndReplaceOperation = exports.FindOneAndDeleteOperation = exports.ReturnDocument = void 0; +const error_1 = require("../error"); +const read_preference_1 = require("../read_preference"); +const sort_1 = require("../sort"); +const utils_1 = require("../utils"); +const command_1 = require("./command"); +const operation_1 = require("./operation"); +/** @public */ +exports.ReturnDocument = Object.freeze({ + BEFORE: 'before', + AFTER: 'after' +}); +function configureFindAndModifyCmdBaseUpdateOpts(cmdBase, options) { + cmdBase.new = options.returnDocument === exports.ReturnDocument.AFTER; + cmdBase.upsert = options.upsert === true; + if (options.bypassDocumentValidation === true) { + cmdBase.bypassDocumentValidation = options.bypassDocumentValidation; + } + return cmdBase; +} +/** @internal */ +class FindAndModifyOperation extends command_1.CommandOperation { + constructor(collection, query, options) { + super(collection, options); + this.options = options !== null && options !== void 0 ? options : {}; + this.cmdBase = { + remove: false, + new: false, + upsert: false + }; + const sort = (0, sort_1.formatSort)(options.sort); + if (sort) { + this.cmdBase.sort = sort; + } + if (options.projection) { + this.cmdBase.fields = options.projection; + } + if (options.maxTimeMS) { + this.cmdBase.maxTimeMS = options.maxTimeMS; + } + // Decorate the findAndModify command with the write Concern + if (options.writeConcern) { + this.cmdBase.writeConcern = options.writeConcern; + } + if (options.let) { + this.cmdBase.let = options.let; + } + // we check for undefined specifically here to allow falsy values + // eslint-disable-next-line no-restricted-syntax + if (options.comment !== undefined) { + this.cmdBase.comment = options.comment; + } + // force primary read preference + this.readPreference = read_preference_1.ReadPreference.primary; + this.collection = collection; + this.query = query; + } + execute(server, session, callback) { + var _a; + const coll = this.collection; + const query = this.query; + const options = { ...this.options, ...this.bsonOptions }; + // Create findAndModify command object + const cmd = { + findAndModify: coll.collectionName, + query: query, + ...this.cmdBase + }; + // Have we specified collation + try { + (0, utils_1.decorateWithCollation)(cmd, coll, options); + } + catch (err) { + return callback(err); + } + if (options.hint) { + // TODO: once this method becomes a CommandOperation we will have the server + // in place to check. + const unacknowledgedWrite = ((_a = this.writeConcern) === null || _a === void 0 ? void 0 : _a.w) === 0; + if (unacknowledgedWrite || (0, utils_1.maxWireVersion)(server) < 8) { + callback(new error_1.MongoCompatibilityError('The current topology does not support a hint on findAndModify commands')); + return; + } + cmd.hint = options.hint; + } + if (this.explain && (0, utils_1.maxWireVersion)(server) < 4) { + callback(new error_1.MongoCompatibilityError(`Server ${server.name} does not support explain on findAndModify`)); + return; + } + // Execute the command + super.executeCommand(server, session, cmd, (err, result) => { + if (err) + return callback(err); + return callback(undefined, result); + }); + } +} +/** @internal */ +class FindOneAndDeleteOperation extends FindAndModifyOperation { + constructor(collection, filter, options) { + // Basic validation + if (filter == null || typeof filter !== 'object') { + throw new error_1.MongoInvalidArgumentError('Argument "filter" must be an object'); + } + super(collection, filter, options); + this.cmdBase.remove = true; + } +} +exports.FindOneAndDeleteOperation = FindOneAndDeleteOperation; +/** @internal */ +class FindOneAndReplaceOperation extends FindAndModifyOperation { + constructor(collection, filter, replacement, options) { + if (filter == null || typeof filter !== 'object') { + throw new error_1.MongoInvalidArgumentError('Argument "filter" must be an object'); + } + if (replacement == null || typeof replacement !== 'object') { + throw new error_1.MongoInvalidArgumentError('Argument "replacement" must be an object'); + } + if ((0, utils_1.hasAtomicOperators)(replacement)) { + throw new error_1.MongoInvalidArgumentError('Replacement document must not contain atomic operators'); + } + super(collection, filter, options); + this.cmdBase.update = replacement; + configureFindAndModifyCmdBaseUpdateOpts(this.cmdBase, options); + } +} +exports.FindOneAndReplaceOperation = FindOneAndReplaceOperation; +/** @internal */ +class FindOneAndUpdateOperation extends FindAndModifyOperation { + constructor(collection, filter, update, options) { + if (filter == null || typeof filter !== 'object') { + throw new error_1.MongoInvalidArgumentError('Argument "filter" must be an object'); + } + if (update == null || typeof update !== 'object') { + throw new error_1.MongoInvalidArgumentError('Argument "update" must be an object'); + } + if (!(0, utils_1.hasAtomicOperators)(update)) { + throw new error_1.MongoInvalidArgumentError('Update document requires atomic operators'); + } + super(collection, filter, options); + this.cmdBase.update = update; + configureFindAndModifyCmdBaseUpdateOpts(this.cmdBase, options); + if (options.arrayFilters) { + this.cmdBase.arrayFilters = options.arrayFilters; + } + } +} +exports.FindOneAndUpdateOperation = FindOneAndUpdateOperation; +(0, operation_1.defineAspects)(FindAndModifyOperation, [ + operation_1.Aspect.WRITE_OPERATION, + operation_1.Aspect.RETRYABLE, + operation_1.Aspect.EXPLAINABLE +]); +//# sourceMappingURL=find_and_modify.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/find_and_modify.js.map b/node_modules/mongodb/lib/operations/find_and_modify.js.map new file mode 100644 index 000000000..2d6262aff --- /dev/null +++ b/node_modules/mongodb/lib/operations/find_and_modify.js.map @@ -0,0 +1 @@ +{"version":3,"file":"find_and_modify.js","sourceRoot":"","sources":["../../src/operations/find_and_modify.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/get_more.js b/node_modules/mongodb/lib/operations/get_more.js new file mode 100644 index 000000000..94ba64ed9 --- /dev/null +++ b/node_modules/mongodb/lib/operations/get_more.js @@ -0,0 +1,58 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.GetMoreOperation = void 0; +const error_1 = require("../error"); +const utils_1 = require("../utils"); +const operation_1 = require("./operation"); +/** @internal */ +class GetMoreOperation extends operation_1.AbstractOperation { + constructor(ns, cursorId, server, options) { + super(options); + this.options = options; + this.ns = ns; + this.cursorId = cursorId; + this.server = server; + } + /** + * Although there is a server already associated with the get more operation, the signature + * for execute passes a server so we will just use that one. + */ + execute(server, session, callback) { + if (server !== this.server) { + return callback(new error_1.MongoRuntimeError('Getmore must run on the same server operation began on')); + } + if (this.cursorId == null || this.cursorId.isZero()) { + return callback(new error_1.MongoRuntimeError('Unable to iterate cursor with no id')); + } + const collection = this.ns.collection; + if (collection == null) { + // Cursors should have adopted the namespace returned by MongoDB + // which should always defined a collection name (even a pseudo one, ex. db.aggregate()) + return callback(new error_1.MongoRuntimeError('A collection name must be determined before getMore')); + } + const getMoreCmd = { + getMore: this.cursorId, + collection + }; + if (typeof this.options.batchSize === 'number') { + getMoreCmd.batchSize = Math.abs(this.options.batchSize); + } + if (typeof this.options.maxAwaitTimeMS === 'number') { + getMoreCmd.maxTimeMS = this.options.maxAwaitTimeMS; + } + // we check for undefined specifically here to allow falsy values + // eslint-disable-next-line no-restricted-syntax + if (this.options.comment !== undefined && (0, utils_1.maxWireVersion)(server) >= 9) { + getMoreCmd.comment = this.options.comment; + } + const commandOptions = { + returnFieldSelector: null, + documentsReturnedIn: 'nextBatch', + ...this.options + }; + server.command(this.ns, getMoreCmd, commandOptions, callback); + } +} +exports.GetMoreOperation = GetMoreOperation; +(0, operation_1.defineAspects)(GetMoreOperation, [operation_1.Aspect.READ_OPERATION, operation_1.Aspect.MUST_SELECT_SAME_SERVER]); +//# sourceMappingURL=get_more.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/get_more.js.map b/node_modules/mongodb/lib/operations/get_more.js.map new file mode 100644 index 000000000..3803d986f --- /dev/null +++ b/node_modules/mongodb/lib/operations/get_more.js.map @@ -0,0 +1 @@ +{"version":3,"file":"get_more.js","sourceRoot":"","sources":["../../src/operations/get_more.ts"],"names":[],"mappings":";;;AACA,oCAA6C;AAG7C,oCAAsE;AACtE,2CAAyF;AA+BzF,gBAAgB;AAChB,MAAa,gBAAiB,SAAQ,6BAAiB;IAIrD,YAAY,EAAoB,EAAE,QAAc,EAAE,MAAc,EAAE,OAAuB;QACvF,KAAK,CAAC,OAAO,CAAC,CAAC;QAEf,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;QACvB,IAAI,CAAC,EAAE,GAAG,EAAE,CAAC;QACb,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;QACzB,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;IACvB,CAAC;IAED;;;OAGG;IACM,OAAO,CACd,MAAc,EACd,OAAkC,EAClC,QAA4B;QAE5B,IAAI,MAAM,KAAK,IAAI,CAAC,MAAM,EAAE;YAC1B,OAAO,QAAQ,CACb,IAAI,yBAAiB,CAAC,wDAAwD,CAAC,CAChF,CAAC;SACH;QAED,IAAI,IAAI,CAAC,QAAQ,IAAI,IAAI,IAAI,IAAI,CAAC,QAAQ,CAAC,MAAM,EAAE,EAAE;YACnD,OAAO,QAAQ,CAAC,IAAI,yBAAiB,CAAC,qCAAqC,CAAC,CAAC,CAAC;SAC/E;QAED,MAAM,UAAU,GAAG,IAAI,CAAC,EAAE,CAAC,UAAU,CAAC;QACtC,IAAI,UAAU,IAAI,IAAI,EAAE;YACtB,gEAAgE;YAChE,wFAAwF;YACxF,OAAO,QAAQ,CAAC,IAAI,yBAAiB,CAAC,qDAAqD,CAAC,CAAC,CAAC;SAC/F;QAED,MAAM,UAAU,GAAmB;YACjC,OAAO,EAAE,IAAI,CAAC,QAAQ;YACtB,UAAU;SACX,CAAC;QAEF,IAAI,OAAO,IAAI,CAAC,OAAO,CAAC,SAAS,KAAK,QAAQ,EAAE;YAC9C,UAAU,CAAC,SAAS,GAAG,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC,CAAC;SACzD;QAED,IAAI,OAAO,IAAI,CAAC,OAAO,CAAC,cAAc,KAAK,QAAQ,EAAE;YACnD,UAAU,CAAC,SAAS,GAAG,IAAI,CAAC,OAAO,CAAC,cAAc,CAAC;SACpD;QAED,iEAAiE;QACjE,gDAAgD;QAChD,IAAI,IAAI,CAAC,OAAO,CAAC,OAAO,KAAK,SAAS,IAAI,IAAA,sBAAc,EAAC,MAAM,CAAC,IAAI,CAAC,EAAE;YACrE,UAAU,CAAC,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC;SAC3C;QAED,MAAM,cAAc,GAAG;YACrB,mBAAmB,EAAE,IAAI;YACzB,mBAAmB,EAAE,WAAW;YAChC,GAAG,IAAI,CAAC,OAAO;SAChB,CAAC;QAEF,MAAM,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE,EAAE,UAAU,EAAE,cAAc,EAAE,QAAQ,CAAC,CAAC;IAChE,CAAC;CACF;AAlED,4CAkEC;AAED,IAAA,yBAAa,EAAC,gBAAgB,EAAE,CAAC,kBAAM,CAAC,cAAc,EAAE,kBAAM,CAAC,uBAAuB,CAAC,CAAC,CAAC"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/indexes.js b/node_modules/mongodb/lib/operations/indexes.js new file mode 100644 index 000000000..d17ba2b9a --- /dev/null +++ b/node_modules/mongodb/lib/operations/indexes.js @@ -0,0 +1,270 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.IndexInformationOperation = exports.IndexExistsOperation = exports.ListIndexesOperation = exports.DropIndexesOperation = exports.DropIndexOperation = exports.EnsureIndexOperation = exports.CreateIndexOperation = exports.CreateIndexesOperation = exports.IndexesOperation = void 0; +const error_1 = require("../error"); +const read_preference_1 = require("../read_preference"); +const utils_1 = require("../utils"); +const command_1 = require("./command"); +const common_functions_1 = require("./common_functions"); +const operation_1 = require("./operation"); +const VALID_INDEX_OPTIONS = new Set([ + 'background', + 'unique', + 'name', + 'partialFilterExpression', + 'sparse', + 'hidden', + 'expireAfterSeconds', + 'storageEngine', + 'collation', + 'version', + // text indexes + 'weights', + 'default_language', + 'language_override', + 'textIndexVersion', + // 2d-sphere indexes + '2dsphereIndexVersion', + // 2d indexes + 'bits', + 'min', + 'max', + // geoHaystack Indexes + 'bucketSize', + // wildcard indexes + 'wildcardProjection' +]); +function isIndexDirection(x) { + return (typeof x === 'number' || x === '2d' || x === '2dsphere' || x === 'text' || x === 'geoHaystack'); +} +function isSingleIndexTuple(t) { + return Array.isArray(t) && t.length === 2 && isIndexDirection(t[1]); +} +function makeIndexSpec(indexSpec, options) { + var _a; + const key = new Map(); + const indexSpecs = !Array.isArray(indexSpec) || isSingleIndexTuple(indexSpec) ? [indexSpec] : indexSpec; + // Iterate through array and handle different types + for (const spec of indexSpecs) { + if (typeof spec === 'string') { + key.set(spec, 1); + } + else if (Array.isArray(spec)) { + key.set(spec[0], (_a = spec[1]) !== null && _a !== void 0 ? _a : 1); + } + else if (spec instanceof Map) { + for (const [property, value] of spec) { + key.set(property, value); + } + } + else if ((0, utils_1.isObject)(spec)) { + for (const [property, value] of Object.entries(spec)) { + key.set(property, value); + } + } + } + return { ...options, key }; +} +/** @internal */ +class IndexesOperation extends operation_1.AbstractOperation { + constructor(collection, options) { + super(options); + this.options = options; + this.collection = collection; + } + execute(server, session, callback) { + const coll = this.collection; + const options = this.options; + (0, common_functions_1.indexInformation)(coll.s.db, coll.collectionName, { full: true, ...options, readPreference: this.readPreference, session }, callback); + } +} +exports.IndexesOperation = IndexesOperation; +/** @internal */ +class CreateIndexesOperation extends command_1.CommandOperation { + constructor(parent, collectionName, indexes, options) { + super(parent, options); + this.options = options !== null && options !== void 0 ? options : {}; + this.collectionName = collectionName; + this.indexes = indexes.map(userIndex => { + // Ensure the key is a Map to preserve index key ordering + const key = userIndex.key instanceof Map ? userIndex.key : new Map(Object.entries(userIndex.key)); + const name = userIndex.name != null ? userIndex.name : Array.from(key).flat().join('_'); + const validIndexOptions = Object.fromEntries(Object.entries({ ...userIndex }).filter(([optionName]) => VALID_INDEX_OPTIONS.has(optionName))); + return { + ...validIndexOptions, + name, + key + }; + }); + } + execute(server, session, callback) { + const options = this.options; + const indexes = this.indexes; + const serverWireVersion = (0, utils_1.maxWireVersion)(server); + const cmd = { createIndexes: this.collectionName, indexes }; + if (options.commitQuorum != null) { + if (serverWireVersion < 9) { + callback(new error_1.MongoCompatibilityError('Option `commitQuorum` for `createIndexes` not supported on servers < 4.4')); + return; + } + cmd.commitQuorum = options.commitQuorum; + } + // collation is set on each index, it should not be defined at the root + this.options.collation = undefined; + super.executeCommand(server, session, cmd, err => { + if (err) { + callback(err); + return; + } + const indexNames = indexes.map(index => index.name || ''); + callback(undefined, indexNames); + }); + } +} +exports.CreateIndexesOperation = CreateIndexesOperation; +/** @internal */ +class CreateIndexOperation extends CreateIndexesOperation { + constructor(parent, collectionName, indexSpec, options) { + super(parent, collectionName, [makeIndexSpec(indexSpec, options)], options); + } + execute(server, session, callback) { + super.execute(server, session, (err, indexNames) => { + if (err || !indexNames) + return callback(err); + return callback(undefined, indexNames[0]); + }); + } +} +exports.CreateIndexOperation = CreateIndexOperation; +/** @internal */ +class EnsureIndexOperation extends CreateIndexOperation { + constructor(db, collectionName, indexSpec, options) { + super(db, collectionName, indexSpec, options); + this.readPreference = read_preference_1.ReadPreference.primary; + this.db = db; + this.collectionName = collectionName; + } + execute(server, session, callback) { + const indexName = this.indexes[0].name; + const cursor = this.db.collection(this.collectionName).listIndexes({ session }); + cursor.toArray((err, indexes) => { + /// ignore "NamespaceNotFound" errors + if (err && err.code !== error_1.MONGODB_ERROR_CODES.NamespaceNotFound) { + return callback(err); + } + if (indexes) { + indexes = Array.isArray(indexes) ? indexes : [indexes]; + if (indexes.some(index => index.name === indexName)) { + callback(undefined, indexName); + return; + } + } + super.execute(server, session, callback); + }); + } +} +exports.EnsureIndexOperation = EnsureIndexOperation; +/** @internal */ +class DropIndexOperation extends command_1.CommandOperation { + constructor(collection, indexName, options) { + super(collection, options); + this.options = options !== null && options !== void 0 ? options : {}; + this.collection = collection; + this.indexName = indexName; + } + execute(server, session, callback) { + const cmd = { dropIndexes: this.collection.collectionName, index: this.indexName }; + super.executeCommand(server, session, cmd, callback); + } +} +exports.DropIndexOperation = DropIndexOperation; +/** @internal */ +class DropIndexesOperation extends DropIndexOperation { + constructor(collection, options) { + super(collection, '*', options); + } + execute(server, session, callback) { + super.execute(server, session, err => { + if (err) + return callback(err, false); + callback(undefined, true); + }); + } +} +exports.DropIndexesOperation = DropIndexesOperation; +/** @internal */ +class ListIndexesOperation extends command_1.CommandOperation { + constructor(collection, options) { + super(collection, options); + this.options = options !== null && options !== void 0 ? options : {}; + this.collectionNamespace = collection.s.namespace; + } + execute(server, session, callback) { + const serverWireVersion = (0, utils_1.maxWireVersion)(server); + const cursor = this.options.batchSize ? { batchSize: this.options.batchSize } : {}; + const command = { listIndexes: this.collectionNamespace.collection, cursor }; + // we check for undefined specifically here to allow falsy values + // eslint-disable-next-line no-restricted-syntax + if (serverWireVersion >= 9 && this.options.comment !== undefined) { + command.comment = this.options.comment; + } + super.executeCommand(server, session, command, callback); + } +} +exports.ListIndexesOperation = ListIndexesOperation; +/** @internal */ +class IndexExistsOperation extends operation_1.AbstractOperation { + constructor(collection, indexes, options) { + super(options); + this.options = options; + this.collection = collection; + this.indexes = indexes; + } + execute(server, session, callback) { + const coll = this.collection; + const indexes = this.indexes; + (0, common_functions_1.indexInformation)(coll.s.db, coll.collectionName, { ...this.options, readPreference: this.readPreference, session }, (err, indexInformation) => { + // If we have an error return + if (err != null) + return callback(err); + // Let's check for the index names + if (!Array.isArray(indexes)) + return callback(undefined, indexInformation[indexes] != null); + // Check in list of indexes + for (let i = 0; i < indexes.length; i++) { + if (indexInformation[indexes[i]] == null) { + return callback(undefined, false); + } + } + // All keys found return true + return callback(undefined, true); + }); + } +} +exports.IndexExistsOperation = IndexExistsOperation; +/** @internal */ +class IndexInformationOperation extends operation_1.AbstractOperation { + constructor(db, name, options) { + super(options); + this.options = options !== null && options !== void 0 ? options : {}; + this.db = db; + this.name = name; + } + execute(server, session, callback) { + const db = this.db; + const name = this.name; + (0, common_functions_1.indexInformation)(db, name, { ...this.options, readPreference: this.readPreference, session }, callback); + } +} +exports.IndexInformationOperation = IndexInformationOperation; +(0, operation_1.defineAspects)(ListIndexesOperation, [ + operation_1.Aspect.READ_OPERATION, + operation_1.Aspect.RETRYABLE, + operation_1.Aspect.CURSOR_CREATING +]); +(0, operation_1.defineAspects)(CreateIndexesOperation, [operation_1.Aspect.WRITE_OPERATION]); +(0, operation_1.defineAspects)(CreateIndexOperation, [operation_1.Aspect.WRITE_OPERATION]); +(0, operation_1.defineAspects)(EnsureIndexOperation, [operation_1.Aspect.WRITE_OPERATION]); +(0, operation_1.defineAspects)(DropIndexOperation, [operation_1.Aspect.WRITE_OPERATION]); +(0, operation_1.defineAspects)(DropIndexesOperation, [operation_1.Aspect.WRITE_OPERATION]); +//# sourceMappingURL=indexes.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/indexes.js.map b/node_modules/mongodb/lib/operations/indexes.js.map new file mode 100644 index 000000000..6dfc339f5 --- /dev/null +++ b/node_modules/mongodb/lib/operations/indexes.js.map @@ -0,0 +1 @@ +{"version":3,"file":"indexes.js","sourceRoot":"","sources":["../../src/operations/indexes.ts"],"names":[],"mappings":";;;AAGA,oCAA0F;AAE1F,wDAAoD;AAGpD,oCAAgF;AAChF,uCAKmB;AACnB,yDAA+E;AAC/E,2CAAuE;AAEvE,MAAM,mBAAmB,GAAG,IAAI,GAAG,CAAC;IAClC,YAAY;IACZ,QAAQ;IACR,MAAM;IACN,yBAAyB;IACzB,QAAQ;IACR,QAAQ;IACR,oBAAoB;IACpB,eAAe;IACf,WAAW;IACX,SAAS;IAET,eAAe;IACf,SAAS;IACT,kBAAkB;IAClB,mBAAmB;IACnB,kBAAkB;IAElB,oBAAoB;IACpB,sBAAsB;IAEtB,aAAa;IACb,MAAM;IACN,KAAK;IACL,KAAK;IAEL,sBAAsB;IACtB,YAAY;IAEZ,mBAAmB;IACnB,oBAAoB;CACrB,CAAC,CAAC;AAIH,SAAS,gBAAgB,CAAC,CAAU;IAClC,OAAO,CACL,OAAO,CAAC,KAAK,QAAQ,IAAI,CAAC,KAAK,IAAI,IAAI,CAAC,KAAK,UAAU,IAAI,CAAC,KAAK,MAAM,IAAI,CAAC,KAAK,aAAa,CAC/F,CAAC;AACJ,CAAC;AA8ED,SAAS,kBAAkB,CAAC,CAAU;IACpC,OAAO,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,MAAM,KAAK,CAAC,IAAI,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACtE,CAAC;AAED,SAAS,aAAa,CACpB,SAA6B,EAC7B,OAA8B;;IAE9B,MAAM,GAAG,GAAgC,IAAI,GAAG,EAAE,CAAC;IAEnD,MAAM,UAAU,GACd,CAAC,KAAK,CAAC,OAAO,CAAC,SAAS,CAAC,IAAI,kBAAkB,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC;IAEvF,mDAAmD;IACnD,KAAK,MAAM,IAAI,IAAI,UAAU,EAAE;QAC7B,IAAI,OAAO,IAAI,KAAK,QAAQ,EAAE;YAC5B,GAAG,CAAC,GAAG,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC;SAClB;aAAM,IAAI,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE;YAC9B,GAAG,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,MAAA,IAAI,CAAC,CAAC,CAAC,mCAAI,CAAC,CAAC,CAAC;SAChC;aAAM,IAAI,IAAI,YAAY,GAAG,EAAE;YAC9B,KAAK,MAAM,CAAC,QAAQ,EAAE,KAAK,CAAC,IAAI,IAAI,EAAE;gBACpC,GAAG,CAAC,GAAG,CAAC,QAAQ,EAAE,KAAK,CAAC,CAAC;aAC1B;SACF;aAAM,IAAI,IAAA,gBAAQ,EAAC,IAAI,CAAC,EAAE;YACzB,KAAK,MAAM,CAAC,QAAQ,EAAE,KAAK,CAAC,IAAI,MAAM,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE;gBACpD,GAAG,CAAC,GAAG,CAAC,QAAQ,EAAE,KAAK,CAAC,CAAC;aAC1B;SACF;KACF;IAED,OAAO,EAAE,GAAG,OAAO,EAAE,GAAG,EAAE,CAAC;AAC7B,CAAC;AAED,gBAAgB;AAChB,MAAa,gBAAiB,SAAQ,6BAA6B;IAIjE,YAAY,UAAsB,EAAE,OAAgC;QAClE,KAAK,CAAC,OAAO,CAAC,CAAC;QACf,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;QACvB,IAAI,CAAC,UAAU,GAAG,UAAU,CAAC;IAC/B,CAAC;IAEQ,OAAO,CACd,MAAc,EACd,OAAkC,EAClC,QAA8B;QAE9B,MAAM,IAAI,GAAG,IAAI,CAAC,UAAU,CAAC;QAC7B,MAAM,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC;QAE7B,IAAA,mCAAgB,EACd,IAAI,CAAC,CAAC,CAAC,EAAE,EACT,IAAI,CAAC,cAAc,EACnB,EAAE,IAAI,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,cAAc,EAAE,IAAI,CAAC,cAAc,EAAE,OAAO,EAAE,EACxE,QAAQ,CACT,CAAC;IACJ,CAAC;CACF;AAzBD,4CAyBC;AAED,gBAAgB;AAChB,MAAa,sBAEX,SAAQ,0BAAmB;IAK3B,YACE,MAAuB,EACvB,cAAsB,EACtB,OAA2B,EAC3B,OAA8B;QAE9B,KAAK,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;QAEvB,IAAI,CAAC,OAAO,GAAG,OAAO,aAAP,OAAO,cAAP,OAAO,GAAI,EAAE,CAAC;QAC7B,IAAI,CAAC,cAAc,GAAG,cAAc,CAAC;QACrC,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC,GAAG,CAAC,SAAS,CAAC,EAAE;YACrC,yDAAyD;YACzD,MAAM,GAAG,GACP,SAAS,CAAC,GAAG,YAAY,GAAG,CAAC,CAAC,CAAC,SAAS,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,GAAG,CAAC,MAAM,CAAC,OAAO,CAAC,SAAS,CAAC,GAAG,CAAC,CAAC,CAAC;YACxF,MAAM,IAAI,GAAG,SAAS,CAAC,IAAI,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,EAAE,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;YACxF,MAAM,iBAAiB,GAAG,MAAM,CAAC,WAAW,CAC1C,MAAM,CAAC,OAAO,CAAC,EAAE,GAAG,SAAS,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,UAAU,CAAC,EAAE,EAAE,CACvD,mBAAmB,CAAC,GAAG,CAAC,UAAU,CAAC,CACpC,CACF,CAAC;YACF,OAAO;gBACL,GAAG,iBAAiB;gBACpB,IAAI;gBACJ,GAAG;aACJ,CAAC;QACJ,CAAC,CAAC,CAAC;IACL,CAAC;IAEQ,OAAO,CACd,MAAc,EACd,OAAkC,EAClC,QAAqB;QAErB,MAAM,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC;QAC7B,MAAM,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC;QAE7B,MAAM,iBAAiB,GAAG,IAAA,sBAAc,EAAC,MAAM,CAAC,CAAC;QAEjD,MAAM,GAAG,GAAa,EAAE,aAAa,EAAE,IAAI,CAAC,cAAc,EAAE,OAAO,EAAE,CAAC;QAEtE,IAAI,OAAO,CAAC,YAAY,IAAI,IAAI,EAAE;YAChC,IAAI,iBAAiB,GAAG,CAAC,EAAE;gBACzB,QAAQ,CACN,IAAI,+BAAuB,CACzB,0EAA0E,CAC3E,CACF,CAAC;gBACF,OAAO;aACR;YACD,GAAG,CAAC,YAAY,GAAG,OAAO,CAAC,YAAY,CAAC;SACzC;QAED,uEAAuE;QACvE,IAAI,CAAC,OAAO,CAAC,SAAS,GAAG,SAAS,CAAC;QAEnC,KAAK,CAAC,cAAc,CAAC,MAAM,EAAE,OAAO,EAAE,GAAG,EAAE,GAAG,CAAC,EAAE;YAC/C,IAAI,GAAG,EAAE;gBACP,QAAQ,CAAC,GAAG,CAAC,CAAC;gBACd,OAAO;aACR;YAED,MAAM,UAAU,GAAG,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,EAAE,CAAC,KAAK,CAAC,IAAI,IAAI,EAAE,CAAC,CAAC;YAC1D,QAAQ,CAAC,SAAS,EAAE,UAAe,CAAC,CAAC;QACvC,CAAC,CAAC,CAAC;IACL,CAAC;CACF;AAxED,wDAwEC;AAED,gBAAgB;AAChB,MAAa,oBAAqB,SAAQ,sBAA8B;IACtE,YACE,MAAuB,EACvB,cAAsB,EACtB,SAA6B,EAC7B,OAA8B;QAE9B,KAAK,CAAC,MAAM,EAAE,cAAc,EAAE,CAAC,aAAa,CAAC,SAAS,EAAE,OAAO,CAAC,CAAC,EAAE,OAAO,CAAC,CAAC;IAC9E,CAAC;IACQ,OAAO,CACd,MAAc,EACd,OAAkC,EAClC,QAA0B;QAE1B,KAAK,CAAC,OAAO,CAAC,MAAM,EAAE,OAAO,EAAE,CAAC,GAAG,EAAE,UAAU,EAAE,EAAE;YACjD,IAAI,GAAG,IAAI,CAAC,UAAU;gBAAE,OAAO,QAAQ,CAAC,GAAG,CAAC,CAAC;YAC7C,OAAO,QAAQ,CAAC,SAAS,EAAE,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC;QAC5C,CAAC,CAAC,CAAC;IACL,CAAC;CACF;AAnBD,oDAmBC;AAED,gBAAgB;AAChB,MAAa,oBAAqB,SAAQ,oBAAoB;IAG5D,YACE,EAAM,EACN,cAAsB,EACtB,SAA6B,EAC7B,OAA8B;QAE9B,KAAK,CAAC,EAAE,EAAE,cAAc,EAAE,SAAS,EAAE,OAAO,CAAC,CAAC;QAE9C,IAAI,CAAC,cAAc,GAAG,gCAAc,CAAC,OAAO,CAAC;QAC7C,IAAI,CAAC,EAAE,GAAG,EAAE,CAAC;QACb,IAAI,CAAC,cAAc,GAAG,cAAc,CAAC;IACvC,CAAC;IAEQ,OAAO,CAAC,MAAc,EAAE,OAAkC,EAAE,QAAkB;QACrF,MAAM,SAAS,GAAG,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC;QACvC,MAAM,MAAM,GAAG,IAAI,CAAC,EAAE,CAAC,UAAU,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC,WAAW,CAAC,EAAE,OAAO,EAAE,CAAC,CAAC;QAChF,MAAM,CAAC,OAAO,CAAC,CAAC,GAAG,EAAE,OAAO,EAAE,EAAE;YAC9B,qCAAqC;YACrC,IAAI,GAAG,IAAK,GAAwB,CAAC,IAAI,KAAK,2BAAmB,CAAC,iBAAiB,EAAE;gBACnF,OAAO,QAAQ,CAAC,GAAG,CAAC,CAAC;aACtB;YAED,IAAI,OAAO,EAAE;gBACX,OAAO,GAAG,KAAK,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC;gBACvD,IAAI,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC,KAAK,CAAC,IAAI,KAAK,SAAS,CAAC,EAAE;oBACnD,QAAQ,CAAC,SAAS,EAAE,SAAS,CAAC,CAAC;oBAC/B,OAAO;iBACR;aACF;YAED,KAAK,CAAC,OAAO,CAAC,MAAM,EAAE,OAAO,EAAE,QAAQ,CAAC,CAAC;QAC3C,CAAC,CAAC,CAAC;IACL,CAAC;CACF;AApCD,oDAoCC;AAKD,gBAAgB;AAChB,MAAa,kBAAmB,SAAQ,0BAA0B;IAKhE,YAAY,UAAsB,EAAE,SAAiB,EAAE,OAA4B;QACjF,KAAK,CAAC,UAAU,EAAE,OAAO,CAAC,CAAC;QAE3B,IAAI,CAAC,OAAO,GAAG,OAAO,aAAP,OAAO,cAAP,OAAO,GAAI,EAAE,CAAC;QAC7B,IAAI,CAAC,UAAU,GAAG,UAAU,CAAC;QAC7B,IAAI,CAAC,SAAS,GAAG,SAAS,CAAC;IAC7B,CAAC;IAEQ,OAAO,CACd,MAAc,EACd,OAAkC,EAClC,QAA4B;QAE5B,MAAM,GAAG,GAAG,EAAE,WAAW,EAAE,IAAI,CAAC,UAAU,CAAC,cAAc,EAAE,KAAK,EAAE,IAAI,CAAC,SAAS,EAAE,CAAC;QACnF,KAAK,CAAC,cAAc,CAAC,MAAM,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,CAAC,CAAC;IACvD,CAAC;CACF;AArBD,gDAqBC;AAED,gBAAgB;AAChB,MAAa,oBAAqB,SAAQ,kBAAkB;IAC1D,YAAY,UAAsB,EAAE,OAA2B;QAC7D,KAAK,CAAC,UAAU,EAAE,GAAG,EAAE,OAAO,CAAC,CAAC;IAClC,CAAC;IAEQ,OAAO,CAAC,MAAc,EAAE,OAAkC,EAAE,QAAkB;QACrF,KAAK,CAAC,OAAO,CAAC,MAAM,EAAE,OAAO,EAAE,GAAG,CAAC,EAAE;YACnC,IAAI,GAAG;gBAAE,OAAO,QAAQ,CAAC,GAAG,EAAE,KAAK,CAAC,CAAC;YACrC,QAAQ,CAAC,SAAS,EAAE,IAAI,CAAC,CAAC;QAC5B,CAAC,CAAC,CAAC;IACL,CAAC;CACF;AAXD,oDAWC;AAQD,gBAAgB;AAChB,MAAa,oBAAqB,SAAQ,0BAA0B;IAIlE,YAAY,UAAsB,EAAE,OAA4B;QAC9D,KAAK,CAAC,UAAU,EAAE,OAAO,CAAC,CAAC;QAE3B,IAAI,CAAC,OAAO,GAAG,OAAO,aAAP,OAAO,cAAP,OAAO,GAAI,EAAE,CAAC;QAC7B,IAAI,CAAC,mBAAmB,GAAG,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;IACpD,CAAC;IAEQ,OAAO,CACd,MAAc,EACd,OAAkC,EAClC,QAA4B;QAE5B,MAAM,iBAAiB,GAAG,IAAA,sBAAc,EAAC,MAAM,CAAC,CAAC;QAEjD,MAAM,MAAM,GAAG,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,SAAS,EAAE,IAAI,CAAC,OAAO,CAAC,SAAS,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;QAEnF,MAAM,OAAO,GAAa,EAAE,WAAW,EAAE,IAAI,CAAC,mBAAmB,CAAC,UAAU,EAAE,MAAM,EAAE,CAAC;QAEvF,iEAAiE;QACjE,gDAAgD;QAChD,IAAI,iBAAiB,IAAI,CAAC,IAAI,IAAI,CAAC,OAAO,CAAC,OAAO,KAAK,SAAS,EAAE;YAChE,OAAO,CAAC,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC;SACxC;QAED,KAAK,CAAC,cAAc,CAAC,MAAM,EAAE,OAAO,EAAE,OAAO,EAAE,QAAQ,CAAC,CAAC;IAC3D,CAAC;CACF;AA9BD,oDA8BC;AAED,gBAAgB;AAChB,MAAa,oBAAqB,SAAQ,6BAA0B;IAKlE,YACE,UAAsB,EACtB,OAA0B,EAC1B,OAAgC;QAEhC,KAAK,CAAC,OAAO,CAAC,CAAC;QACf,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;QACvB,IAAI,CAAC,UAAU,GAAG,UAAU,CAAC;QAC7B,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;IACzB,CAAC;IAEQ,OAAO,CACd,MAAc,EACd,OAAkC,EAClC,QAA2B;QAE3B,MAAM,IAAI,GAAG,IAAI,CAAC,UAAU,CAAC;QAC7B,MAAM,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC;QAE7B,IAAA,mCAAgB,EACd,IAAI,CAAC,CAAC,CAAC,EAAE,EACT,IAAI,CAAC,cAAc,EACnB,EAAE,GAAG,IAAI,CAAC,OAAO,EAAE,cAAc,EAAE,IAAI,CAAC,cAAc,EAAE,OAAO,EAAE,EACjE,CAAC,GAAG,EAAE,gBAAgB,EAAE,EAAE;YACxB,6BAA6B;YAC7B,IAAI,GAAG,IAAI,IAAI;gBAAE,OAAO,QAAQ,CAAC,GAAG,CAAC,CAAC;YACtC,kCAAkC;YAClC,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,OAAO,CAAC;gBAAE,OAAO,QAAQ,CAAC,SAAS,EAAE,gBAAgB,CAAC,OAAO,CAAC,IAAI,IAAI,CAAC,CAAC;YAC3F,2BAA2B;YAC3B,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;gBACvC,IAAI,gBAAgB,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,IAAI,IAAI,EAAE;oBACxC,OAAO,QAAQ,CAAC,SAAS,EAAE,KAAK,CAAC,CAAC;iBACnC;aACF;YAED,6BAA6B;YAC7B,OAAO,QAAQ,CAAC,SAAS,EAAE,IAAI,CAAC,CAAC;QACnC,CAAC,CACF,CAAC;IACJ,CAAC;CACF;AA7CD,oDA6CC;AAED,gBAAgB;AAChB,MAAa,yBAA0B,SAAQ,6BAA2B;IAKxE,YAAY,EAAM,EAAE,IAAY,EAAE,OAAiC;QACjE,KAAK,CAAC,OAAO,CAAC,CAAC;QACf,IAAI,CAAC,OAAO,GAAG,OAAO,aAAP,OAAO,cAAP,OAAO,GAAI,EAAE,CAAC;QAC7B,IAAI,CAAC,EAAE,GAAG,EAAE,CAAC;QACb,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;IACnB,CAAC;IAEQ,OAAO,CACd,MAAc,EACd,OAAkC,EAClC,QAA4B;QAE5B,MAAM,EAAE,GAAG,IAAI,CAAC,EAAE,CAAC;QACnB,MAAM,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;QAEvB,IAAA,mCAAgB,EACd,EAAE,EACF,IAAI,EACJ,EAAE,GAAG,IAAI,CAAC,OAAO,EAAE,cAAc,EAAE,IAAI,CAAC,cAAc,EAAE,OAAO,EAAE,EACjE,QAAQ,CACT,CAAC;IACJ,CAAC;CACF;AA3BD,8DA2BC;AAED,IAAA,yBAAa,EAAC,oBAAoB,EAAE;IAClC,kBAAM,CAAC,cAAc;IACrB,kBAAM,CAAC,SAAS;IAChB,kBAAM,CAAC,eAAe;CACvB,CAAC,CAAC;AACH,IAAA,yBAAa,EAAC,sBAAsB,EAAE,CAAC,kBAAM,CAAC,eAAe,CAAC,CAAC,CAAC;AAChE,IAAA,yBAAa,EAAC,oBAAoB,EAAE,CAAC,kBAAM,CAAC,eAAe,CAAC,CAAC,CAAC;AAC9D,IAAA,yBAAa,EAAC,oBAAoB,EAAE,CAAC,kBAAM,CAAC,eAAe,CAAC,CAAC,CAAC;AAC9D,IAAA,yBAAa,EAAC,kBAAkB,EAAE,CAAC,kBAAM,CAAC,eAAe,CAAC,CAAC,CAAC;AAC5D,IAAA,yBAAa,EAAC,oBAAoB,EAAE,CAAC,kBAAM,CAAC,eAAe,CAAC,CAAC,CAAC"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/insert.js b/node_modules/mongodb/lib/operations/insert.js new file mode 100644 index 000000000..aa617b487 --- /dev/null +++ b/node_modules/mongodb/lib/operations/insert.js @@ -0,0 +1,99 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.InsertManyOperation = exports.InsertOneOperation = exports.InsertOperation = void 0; +const error_1 = require("../error"); +const write_concern_1 = require("../write_concern"); +const bulk_write_1 = require("./bulk_write"); +const command_1 = require("./command"); +const common_functions_1 = require("./common_functions"); +const operation_1 = require("./operation"); +/** @internal */ +class InsertOperation extends command_1.CommandOperation { + constructor(ns, documents, options) { + var _a; + super(undefined, options); + this.options = { ...options, checkKeys: (_a = options.checkKeys) !== null && _a !== void 0 ? _a : false }; + this.ns = ns; + this.documents = documents; + } + execute(server, session, callback) { + var _a; + const options = (_a = this.options) !== null && _a !== void 0 ? _a : {}; + const ordered = typeof options.ordered === 'boolean' ? options.ordered : true; + const command = { + insert: this.ns.collection, + documents: this.documents, + ordered + }; + if (typeof options.bypassDocumentValidation === 'boolean') { + command.bypassDocumentValidation = options.bypassDocumentValidation; + } + // we check for undefined specifically here to allow falsy values + // eslint-disable-next-line no-restricted-syntax + if (options.comment !== undefined) { + command.comment = options.comment; + } + super.executeCommand(server, session, command, callback); + } +} +exports.InsertOperation = InsertOperation; +class InsertOneOperation extends InsertOperation { + constructor(collection, doc, options) { + super(collection.s.namespace, (0, common_functions_1.prepareDocs)(collection, [doc], options), options); + } + execute(server, session, callback) { + super.execute(server, session, (err, res) => { + var _a, _b; + if (err || res == null) + return callback(err); + if (res.code) + return callback(new error_1.MongoServerError(res)); + if (res.writeErrors) { + // This should be a WriteError but we can't change it now because of error hierarchy + return callback(new error_1.MongoServerError(res.writeErrors[0])); + } + callback(undefined, { + acknowledged: (_b = ((_a = this.writeConcern) === null || _a === void 0 ? void 0 : _a.w) !== 0) !== null && _b !== void 0 ? _b : true, + insertedId: this.documents[0]._id + }); + }); + } +} +exports.InsertOneOperation = InsertOneOperation; +/** @internal */ +class InsertManyOperation extends operation_1.AbstractOperation { + constructor(collection, docs, options) { + super(options); + if (!Array.isArray(docs)) { + throw new error_1.MongoInvalidArgumentError('Argument "docs" must be an array of documents'); + } + this.options = options; + this.collection = collection; + this.docs = docs; + } + execute(server, session, callback) { + const coll = this.collection; + const options = { ...this.options, ...this.bsonOptions, readPreference: this.readPreference }; + const writeConcern = write_concern_1.WriteConcern.fromOptions(options); + const bulkWriteOperation = new bulk_write_1.BulkWriteOperation(coll, (0, common_functions_1.prepareDocs)(coll, this.docs, options).map(document => ({ insertOne: { document } })), options); + bulkWriteOperation.execute(server, session, (err, res) => { + var _a; + if (err || res == null) { + if (err && err.message === 'Operation must be an object with an operation key') { + err = new error_1.MongoInvalidArgumentError('Collection.insertMany() cannot be called with an array that has null/undefined values'); + } + return callback(err); + } + callback(undefined, { + acknowledged: (_a = (writeConcern === null || writeConcern === void 0 ? void 0 : writeConcern.w) !== 0) !== null && _a !== void 0 ? _a : true, + insertedCount: res.insertedCount, + insertedIds: res.insertedIds + }); + }); + } +} +exports.InsertManyOperation = InsertManyOperation; +(0, operation_1.defineAspects)(InsertOperation, [operation_1.Aspect.RETRYABLE, operation_1.Aspect.WRITE_OPERATION]); +(0, operation_1.defineAspects)(InsertOneOperation, [operation_1.Aspect.RETRYABLE, operation_1.Aspect.WRITE_OPERATION]); +(0, operation_1.defineAspects)(InsertManyOperation, [operation_1.Aspect.WRITE_OPERATION]); +//# sourceMappingURL=insert.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/insert.js.map b/node_modules/mongodb/lib/operations/insert.js.map new file mode 100644 index 000000000..67a93dde3 --- /dev/null +++ b/node_modules/mongodb/lib/operations/insert.js.map @@ -0,0 +1 @@ +{"version":3,"file":"insert.js","sourceRoot":"","sources":["../../src/operations/insert.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/is_capped.js b/node_modules/mongodb/lib/operations/is_capped.js new file mode 100644 index 000000000..dd2917a6d --- /dev/null +++ b/node_modules/mongodb/lib/operations/is_capped.js @@ -0,0 +1,30 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.IsCappedOperation = void 0; +const error_1 = require("../error"); +const operation_1 = require("./operation"); +/** @internal */ +class IsCappedOperation extends operation_1.AbstractOperation { + constructor(collection, options) { + super(options); + this.options = options; + this.collection = collection; + } + execute(server, session, callback) { + const coll = this.collection; + coll.s.db + .listCollections({ name: coll.collectionName }, { ...this.options, nameOnly: false, readPreference: this.readPreference, session }) + .toArray((err, collections) => { + if (err || !collections) + return callback(err); + if (collections.length === 0) { + // TODO(NODE-3485) + return callback(new error_1.MongoAPIError(`collection ${coll.namespace} not found`)); + } + const collOptions = collections[0].options; + callback(undefined, !!(collOptions && collOptions.capped)); + }); + } +} +exports.IsCappedOperation = IsCappedOperation; +//# sourceMappingURL=is_capped.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/is_capped.js.map b/node_modules/mongodb/lib/operations/is_capped.js.map new file mode 100644 index 000000000..13a584207 --- /dev/null +++ b/node_modules/mongodb/lib/operations/is_capped.js.map @@ -0,0 +1 @@ +{"version":3,"file":"is_capped.js","sourceRoot":"","sources":["../../src/operations/is_capped.ts"],"names":[],"mappings":";;;AACA,oCAAyC;AAIzC,2CAAkE;AAElE,gBAAgB;AAChB,MAAa,iBAAkB,SAAQ,6BAA0B;IAI/D,YAAY,UAAsB,EAAE,OAAyB;QAC3D,KAAK,CAAC,OAAO,CAAC,CAAC;QACf,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;QACvB,IAAI,CAAC,UAAU,GAAG,UAAU,CAAC;IAC/B,CAAC;IAEQ,OAAO,CACd,MAAc,EACd,OAAkC,EAClC,QAA2B;QAE3B,MAAM,IAAI,GAAG,IAAI,CAAC,UAAU,CAAC;QAE7B,IAAI,CAAC,CAAC,CAAC,EAAE;aACN,eAAe,CACd,EAAE,IAAI,EAAE,IAAI,CAAC,cAAc,EAAE,EAC7B,EAAE,GAAG,IAAI,CAAC,OAAO,EAAE,QAAQ,EAAE,KAAK,EAAE,cAAc,EAAE,IAAI,CAAC,cAAc,EAAE,OAAO,EAAE,CACnF;aACA,OAAO,CAAC,CAAC,GAAG,EAAE,WAAW,EAAE,EAAE;YAC5B,IAAI,GAAG,IAAI,CAAC,WAAW;gBAAE,OAAO,QAAQ,CAAC,GAAG,CAAC,CAAC;YAC9C,IAAI,WAAW,CAAC,MAAM,KAAK,CAAC,EAAE;gBAC5B,kBAAkB;gBAClB,OAAO,QAAQ,CAAC,IAAI,qBAAa,CAAC,cAAc,IAAI,CAAC,SAAS,YAAY,CAAC,CAAC,CAAC;aAC9E;YAED,MAAM,WAAW,GAAG,WAAW,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC;YAC3C,QAAQ,CAAC,SAAS,EAAE,CAAC,CAAC,CAAC,WAAW,IAAI,WAAW,CAAC,MAAM,CAAC,CAAC,CAAC;QAC7D,CAAC,CAAC,CAAC;IACP,CAAC;CACF;AAjCD,8CAiCC"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/kill_cursors.js b/node_modules/mongodb/lib/operations/kill_cursors.js new file mode 100644 index 000000000..63d6e3e6f --- /dev/null +++ b/node_modules/mongodb/lib/operations/kill_cursors.js @@ -0,0 +1,32 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.KillCursorsOperation = void 0; +const error_1 = require("../error"); +const operation_1 = require("./operation"); +class KillCursorsOperation extends operation_1.AbstractOperation { + constructor(cursorId, ns, server, options) { + super(options); + this.ns = ns; + this.cursorId = cursorId; + this.server = server; + } + execute(server, session, callback) { + if (server !== this.server) { + return callback(new error_1.MongoRuntimeError('Killcursor must run on the same server operation began on')); + } + const killCursors = this.ns.collection; + if (killCursors == null) { + // Cursors should have adopted the namespace returned by MongoDB + // which should always defined a collection name (even a pseudo one, ex. db.aggregate()) + return callback(new error_1.MongoRuntimeError('A collection name must be determined before killCursors')); + } + const killCursorsCommand = { + killCursors, + cursors: [this.cursorId] + }; + server.command(this.ns, killCursorsCommand, { session }, () => callback()); + } +} +exports.KillCursorsOperation = KillCursorsOperation; +(0, operation_1.defineAspects)(KillCursorsOperation, [operation_1.Aspect.MUST_SELECT_SAME_SERVER]); +//# sourceMappingURL=kill_cursors.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/kill_cursors.js.map b/node_modules/mongodb/lib/operations/kill_cursors.js.map new file mode 100644 index 000000000..022ad6874 --- /dev/null +++ b/node_modules/mongodb/lib/operations/kill_cursors.js.map @@ -0,0 +1 @@ +{"version":3,"file":"kill_cursors.js","sourceRoot":"","sources":["../../src/operations/kill_cursors.ts"],"names":[],"mappings":";;;AACA,oCAA6C;AAI7C,2CAAyF;AAYzF,MAAa,oBAAqB,SAAQ,6BAAiB;IAGzD,YAAY,QAAc,EAAE,EAAoB,EAAE,MAAc,EAAE,OAAyB;QACzF,KAAK,CAAC,OAAO,CAAC,CAAC;QACf,IAAI,CAAC,EAAE,GAAG,EAAE,CAAC;QACb,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;QACzB,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;IACvB,CAAC;IAED,OAAO,CAAC,MAAc,EAAE,OAAkC,EAAE,QAAwB;QAClF,IAAI,MAAM,KAAK,IAAI,CAAC,MAAM,EAAE;YAC1B,OAAO,QAAQ,CACb,IAAI,yBAAiB,CAAC,2DAA2D,CAAC,CACnF,CAAC;SACH;QAED,MAAM,WAAW,GAAG,IAAI,CAAC,EAAE,CAAC,UAAU,CAAC;QACvC,IAAI,WAAW,IAAI,IAAI,EAAE;YACvB,gEAAgE;YAChE,wFAAwF;YACxF,OAAO,QAAQ,CACb,IAAI,yBAAiB,CAAC,yDAAyD,CAAC,CACjF,CAAC;SACH;QAED,MAAM,kBAAkB,GAAuB;YAC7C,WAAW;YACX,OAAO,EAAE,CAAC,IAAI,CAAC,QAAQ,CAAC;SACzB,CAAC;QAEF,MAAM,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE,EAAE,kBAAkB,EAAE,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,CAAC,QAAQ,EAAE,CAAC,CAAC;IAC7E,CAAC;CACF;AAjCD,oDAiCC;AAED,IAAA,yBAAa,EAAC,oBAAoB,EAAE,CAAC,kBAAM,CAAC,uBAAuB,CAAC,CAAC,CAAC"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/list_collections.js b/node_modules/mongodb/lib/operations/list_collections.js new file mode 100644 index 000000000..4badea166 --- /dev/null +++ b/node_modules/mongodb/lib/operations/list_collections.js @@ -0,0 +1,46 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.ListCollectionsOperation = void 0; +const utils_1 = require("../utils"); +const command_1 = require("./command"); +const operation_1 = require("./operation"); +/** @internal */ +class ListCollectionsOperation extends command_1.CommandOperation { + constructor(db, filter, options) { + super(db, options); + this.options = options !== null && options !== void 0 ? options : {}; + this.db = db; + this.filter = filter; + this.nameOnly = !!this.options.nameOnly; + this.authorizedCollections = !!this.options.authorizedCollections; + if (typeof this.options.batchSize === 'number') { + this.batchSize = this.options.batchSize; + } + } + execute(server, session, callback) { + return super.executeCommand(server, session, this.generateCommand((0, utils_1.maxWireVersion)(server)), callback); + } + /* This is here for the purpose of unit testing the final command that gets sent. */ + generateCommand(wireVersion) { + const command = { + listCollections: 1, + filter: this.filter, + cursor: this.batchSize ? { batchSize: this.batchSize } : {}, + nameOnly: this.nameOnly, + authorizedCollections: this.authorizedCollections + }; + // we check for undefined specifically here to allow falsy values + // eslint-disable-next-line no-restricted-syntax + if (wireVersion >= 9 && this.options.comment !== undefined) { + command.comment = this.options.comment; + } + return command; + } +} +exports.ListCollectionsOperation = ListCollectionsOperation; +(0, operation_1.defineAspects)(ListCollectionsOperation, [ + operation_1.Aspect.READ_OPERATION, + operation_1.Aspect.RETRYABLE, + operation_1.Aspect.CURSOR_CREATING +]); +//# sourceMappingURL=list_collections.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/list_collections.js.map b/node_modules/mongodb/lib/operations/list_collections.js.map new file mode 100644 index 000000000..615be1329 --- /dev/null +++ b/node_modules/mongodb/lib/operations/list_collections.js.map @@ -0,0 +1 @@ +{"version":3,"file":"list_collections.js","sourceRoot":"","sources":["../../src/operations/list_collections.ts"],"names":[],"mappings":";;;AAIA,oCAAoD;AACpD,uCAAsE;AACtE,2CAAoD;AAYpD,gBAAgB;AAChB,MAAa,wBAAyB,SAAQ,0BAA0B;IAQtE,YAAY,EAAM,EAAE,MAAgB,EAAE,OAAgC;QACpE,KAAK,CAAC,EAAE,EAAE,OAAO,CAAC,CAAC;QAEnB,IAAI,CAAC,OAAO,GAAG,OAAO,aAAP,OAAO,cAAP,OAAO,GAAI,EAAE,CAAC;QAC7B,IAAI,CAAC,EAAE,GAAG,EAAE,CAAC;QACb,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;QACrB,IAAI,CAAC,QAAQ,GAAG,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC;QACxC,IAAI,CAAC,qBAAqB,GAAG,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,qBAAqB,CAAC;QAElE,IAAI,OAAO,IAAI,CAAC,OAAO,CAAC,SAAS,KAAK,QAAQ,EAAE;YAC9C,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC;SACzC;IACH,CAAC;IAEQ,OAAO,CACd,MAAc,EACd,OAAkC,EAClC,QAA4B;QAE5B,OAAO,KAAK,CAAC,cAAc,CACzB,MAAM,EACN,OAAO,EACP,IAAI,CAAC,eAAe,CAAC,IAAA,sBAAc,EAAC,MAAM,CAAC,CAAC,EAC5C,QAAQ,CACT,CAAC;IACJ,CAAC;IAED,oFAAoF;IACpF,eAAe,CAAC,WAAmB;QACjC,MAAM,OAAO,GAAa;YACxB,eAAe,EAAE,CAAC;YAClB,MAAM,EAAE,IAAI,CAAC,MAAM;YACnB,MAAM,EAAE,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,SAAS,EAAE,IAAI,CAAC,SAAS,EAAE,CAAC,CAAC,CAAC,EAAE;YAC3D,QAAQ,EAAE,IAAI,CAAC,QAAQ;YACvB,qBAAqB,EAAE,IAAI,CAAC,qBAAqB;SAClD,CAAC;QAEF,iEAAiE;QACjE,gDAAgD;QAChD,IAAI,WAAW,IAAI,CAAC,IAAI,IAAI,CAAC,OAAO,CAAC,OAAO,KAAK,SAAS,EAAE;YAC1D,OAAO,CAAC,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC;SACxC;QAED,OAAO,OAAO,CAAC;IACjB,CAAC;CACF;AArDD,4DAqDC;AAcD,IAAA,yBAAa,EAAC,wBAAwB,EAAE;IACtC,kBAAM,CAAC,cAAc;IACrB,kBAAM,CAAC,SAAS;IAChB,kBAAM,CAAC,eAAe;CACvB,CAAC,CAAC"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/list_databases.js b/node_modules/mongodb/lib/operations/list_databases.js new file mode 100644 index 000000000..967ab4e40 --- /dev/null +++ b/node_modules/mongodb/lib/operations/list_databases.js @@ -0,0 +1,35 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.ListDatabasesOperation = void 0; +const utils_1 = require("../utils"); +const command_1 = require("./command"); +const operation_1 = require("./operation"); +/** @internal */ +class ListDatabasesOperation extends command_1.CommandOperation { + constructor(db, options) { + super(db, options); + this.options = options !== null && options !== void 0 ? options : {}; + this.ns = new utils_1.MongoDBNamespace('admin', '$cmd'); + } + execute(server, session, callback) { + const cmd = { listDatabases: 1 }; + if (this.options.nameOnly) { + cmd.nameOnly = Number(cmd.nameOnly); + } + if (this.options.filter) { + cmd.filter = this.options.filter; + } + if (typeof this.options.authorizedDatabases === 'boolean') { + cmd.authorizedDatabases = this.options.authorizedDatabases; + } + // we check for undefined specifically here to allow falsy values + // eslint-disable-next-line no-restricted-syntax + if ((0, utils_1.maxWireVersion)(server) >= 9 && this.options.comment !== undefined) { + cmd.comment = this.options.comment; + } + super.executeCommand(server, session, cmd, callback); + } +} +exports.ListDatabasesOperation = ListDatabasesOperation; +(0, operation_1.defineAspects)(ListDatabasesOperation, [operation_1.Aspect.READ_OPERATION, operation_1.Aspect.RETRYABLE]); +//# sourceMappingURL=list_databases.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/list_databases.js.map b/node_modules/mongodb/lib/operations/list_databases.js.map new file mode 100644 index 000000000..8ea522d41 --- /dev/null +++ b/node_modules/mongodb/lib/operations/list_databases.js.map @@ -0,0 +1 @@ +{"version":3,"file":"list_databases.js","sourceRoot":"","sources":["../../src/operations/list_databases.ts"],"names":[],"mappings":";;;AAIA,oCAAsE;AACtE,uCAAsE;AACtE,2CAAoD;AAoBpD,gBAAgB;AAChB,MAAa,sBAAuB,SAAQ,0BAAqC;IAG/E,YAAY,EAAM,EAAE,OAA8B;QAChD,KAAK,CAAC,EAAE,EAAE,OAAO,CAAC,CAAC;QACnB,IAAI,CAAC,OAAO,GAAG,OAAO,aAAP,OAAO,cAAP,OAAO,GAAI,EAAE,CAAC;QAC7B,IAAI,CAAC,EAAE,GAAG,IAAI,wBAAgB,CAAC,OAAO,EAAE,MAAM,CAAC,CAAC;IAClD,CAAC;IAEQ,OAAO,CACd,MAAc,EACd,OAAkC,EAClC,QAAuC;QAEvC,MAAM,GAAG,GAAa,EAAE,aAAa,EAAE,CAAC,EAAE,CAAC;QAC3C,IAAI,IAAI,CAAC,OAAO,CAAC,QAAQ,EAAE;YACzB,GAAG,CAAC,QAAQ,GAAG,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC;SACrC;QAED,IAAI,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE;YACvB,GAAG,CAAC,MAAM,GAAG,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC;SAClC;QAED,IAAI,OAAO,IAAI,CAAC,OAAO,CAAC,mBAAmB,KAAK,SAAS,EAAE;YACzD,GAAG,CAAC,mBAAmB,GAAG,IAAI,CAAC,OAAO,CAAC,mBAAmB,CAAC;SAC5D;QAED,iEAAiE;QACjE,gDAAgD;QAChD,IAAI,IAAA,sBAAc,EAAC,MAAM,CAAC,IAAI,CAAC,IAAI,IAAI,CAAC,OAAO,CAAC,OAAO,KAAK,SAAS,EAAE;YACrE,GAAG,CAAC,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC;SACpC;QAED,KAAK,CAAC,cAAc,CAAC,MAAM,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,CAAC,CAAC;IACvD,CAAC;CACF;AAnCD,wDAmCC;AAED,IAAA,yBAAa,EAAC,sBAAsB,EAAE,CAAC,kBAAM,CAAC,cAAc,EAAE,kBAAM,CAAC,SAAS,CAAC,CAAC,CAAC"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/map_reduce.js b/node_modules/mongodb/lib/operations/map_reduce.js new file mode 100644 index 000000000..43f63a43f --- /dev/null +++ b/node_modules/mongodb/lib/operations/map_reduce.js @@ -0,0 +1,166 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.MapReduceOperation = void 0; +const bson_1 = require("../bson"); +const error_1 = require("../error"); +const read_preference_1 = require("../read_preference"); +const utils_1 = require("../utils"); +const command_1 = require("./command"); +const operation_1 = require("./operation"); +const exclusionList = [ + 'explain', + 'readPreference', + 'readConcern', + 'session', + 'bypassDocumentValidation', + 'writeConcern', + 'raw', + 'fieldsAsRaw', + 'promoteLongs', + 'promoteValues', + 'promoteBuffers', + 'bsonRegExp', + 'serializeFunctions', + 'ignoreUndefined', + 'enableUtf8Validation', + 'scope' // this option is reformatted thus exclude the original +]; +/** + * Run Map Reduce across a collection. Be aware that the inline option for out will return an array of results not a collection. + * @internal + */ +class MapReduceOperation extends command_1.CommandOperation { + /** + * Constructs a MapReduce operation. + * + * @param collection - Collection instance. + * @param map - The mapping function. + * @param reduce - The reduce function. + * @param options - Optional settings. See Collection.prototype.mapReduce for a list of options. + */ + constructor(collection, map, reduce, options) { + super(collection, options); + this.options = options !== null && options !== void 0 ? options : {}; + this.collection = collection; + this.map = map; + this.reduce = reduce; + } + execute(server, session, callback) { + const coll = this.collection; + const map = this.map; + const reduce = this.reduce; + let options = this.options; + const mapCommandHash = { + mapReduce: coll.collectionName, + map: map, + reduce: reduce + }; + if (options.scope) { + mapCommandHash.scope = processScope(options.scope); + } + // Add any other options passed in + for (const n in options) { + // Only include if not in exclusion list + if (exclusionList.indexOf(n) === -1) { + mapCommandHash[n] = options[n]; + } + } + options = Object.assign({}, options); + // If we have a read preference and inline is not set as output fail hard + if (this.readPreference.mode === read_preference_1.ReadPreferenceMode.primary && + options.out && + options.out.inline !== 1 && + options.out !== 'inline') { + // Force readPreference to primary + options.readPreference = read_preference_1.ReadPreference.primary; + // Decorate command with writeConcern if supported + (0, utils_1.applyWriteConcern)(mapCommandHash, { db: coll.s.db, collection: coll }, options); + } + else { + (0, utils_1.decorateWithReadConcern)(mapCommandHash, coll, options); + } + // Is bypassDocumentValidation specified + if (options.bypassDocumentValidation === true) { + mapCommandHash.bypassDocumentValidation = options.bypassDocumentValidation; + } + // Have we specified collation + try { + (0, utils_1.decorateWithCollation)(mapCommandHash, coll, options); + } + catch (err) { + return callback(err); + } + if (this.explain && (0, utils_1.maxWireVersion)(server) < 9) { + callback(new error_1.MongoCompatibilityError(`Server ${server.name} does not support explain on mapReduce`)); + return; + } + // Execute command + super.executeCommand(server, session, mapCommandHash, (err, result) => { + if (err) + return callback(err); + // Check if we have an error + if (1 !== result.ok || result.err || result.errmsg) { + return callback(new error_1.MongoServerError(result)); + } + // If an explain option was executed, don't process the server results + if (this.explain) + return callback(undefined, result); + // Create statistics value + const stats = {}; + if (result.timeMillis) + stats['processtime'] = result.timeMillis; + if (result.counts) + stats['counts'] = result.counts; + if (result.timing) + stats['timing'] = result.timing; + // invoked with inline? + if (result.results) { + // If we wish for no verbosity + if (options['verbose'] == null || !options['verbose']) { + return callback(undefined, result.results); + } + return callback(undefined, { results: result.results, stats: stats }); + } + // The returned collection + let collection = null; + // If we have an object it's a different db + if (result.result != null && typeof result.result === 'object') { + const doc = result.result; + // Return a collection from another db + collection = coll.s.db.s.client.db(doc.db, coll.s.db.s.options).collection(doc.collection); + } + else { + // Create a collection object that wraps the result collection + collection = coll.s.db.collection(result.result); + } + // If we wish for no verbosity + if (options['verbose'] == null || !options['verbose']) { + return callback(err, collection); + } + // Return stats as third set of values + callback(err, { collection, stats }); + }); + } +} +exports.MapReduceOperation = MapReduceOperation; +/** Functions that are passed as scope args must be converted to Code instances. */ +function processScope(scope) { + if (!(0, utils_1.isObject)(scope) || scope._bsontype === 'ObjectID') { + return scope; + } + const newScope = {}; + for (const key of Object.keys(scope)) { + if ('function' === typeof scope[key]) { + newScope[key] = new bson_1.Code(String(scope[key])); + } + else if (scope[key]._bsontype === 'Code') { + newScope[key] = scope[key]; + } + else { + newScope[key] = processScope(scope[key]); + } + } + return newScope; +} +(0, operation_1.defineAspects)(MapReduceOperation, [operation_1.Aspect.EXPLAINABLE]); +//# sourceMappingURL=map_reduce.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/map_reduce.js.map b/node_modules/mongodb/lib/operations/map_reduce.js.map new file mode 100644 index 000000000..0cab777c7 --- /dev/null +++ b/node_modules/mongodb/lib/operations/map_reduce.js.map @@ -0,0 +1 @@ +{"version":3,"file":"map_reduce.js","sourceRoot":"","sources":["../../src/operations/map_reduce.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/operation.js b/node_modules/mongodb/lib/operations/operation.js new file mode 100644 index 000000000..2f6c54fba --- /dev/null +++ b/node_modules/mongodb/lib/operations/operation.js @@ -0,0 +1,70 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.defineAspects = exports.AbstractOperation = exports.Aspect = void 0; +const bson_1 = require("../bson"); +const read_preference_1 = require("../read_preference"); +exports.Aspect = { + READ_OPERATION: Symbol('READ_OPERATION'), + WRITE_OPERATION: Symbol('WRITE_OPERATION'), + RETRYABLE: Symbol('RETRYABLE'), + EXPLAINABLE: Symbol('EXPLAINABLE'), + SKIP_COLLATION: Symbol('SKIP_COLLATION'), + CURSOR_CREATING: Symbol('CURSOR_CREATING'), + MUST_SELECT_SAME_SERVER: Symbol('MUST_SELECT_SAME_SERVER') +}; +/** @internal */ +const kSession = Symbol('session'); +/** + * This class acts as a parent class for any operation and is responsible for setting this.options, + * as well as setting and getting a session. + * Additionally, this class implements `hasAspect`, which determines whether an operation has + * a specific aspect. + * @internal + */ +class AbstractOperation { + constructor(options = {}) { + var _a; + this.readPreference = this.hasAspect(exports.Aspect.WRITE_OPERATION) + ? read_preference_1.ReadPreference.primary + : (_a = read_preference_1.ReadPreference.fromOptions(options)) !== null && _a !== void 0 ? _a : read_preference_1.ReadPreference.primary; + // Pull the BSON serialize options from the already-resolved options + this.bsonOptions = (0, bson_1.resolveBSONOptions)(options); + this[kSession] = options.session != null ? options.session : undefined; + this.options = options; + this.bypassPinningCheck = !!options.bypassPinningCheck; + this.trySecondaryWrite = false; + } + hasAspect(aspect) { + const ctor = this.constructor; + if (ctor.aspects == null) { + return false; + } + return ctor.aspects.has(aspect); + } + get session() { + return this[kSession]; + } + clearSession() { + this[kSession] = undefined; + } + get canRetryRead() { + return true; + } + get canRetryWrite() { + return true; + } +} +exports.AbstractOperation = AbstractOperation; +function defineAspects(operation, aspects) { + if (!Array.isArray(aspects) && !(aspects instanceof Set)) { + aspects = [aspects]; + } + aspects = new Set(aspects); + Object.defineProperty(operation, 'aspects', { + value: aspects, + writable: false + }); + return aspects; +} +exports.defineAspects = defineAspects; +//# sourceMappingURL=operation.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/operation.js.map b/node_modules/mongodb/lib/operations/operation.js.map new file mode 100644 index 000000000..b5d2ae070 --- /dev/null +++ b/node_modules/mongodb/lib/operations/operation.js.map @@ -0,0 +1 @@ +{"version":3,"file":"operation.js","sourceRoot":"","sources":["../../src/operations/operation.ts"],"names":[],"mappings":";;;AAAA,kCAA6E;AAC7E,wDAAwE;AAK3D,QAAA,MAAM,GAAG;IACpB,cAAc,EAAE,MAAM,CAAC,gBAAgB,CAAC;IACxC,eAAe,EAAE,MAAM,CAAC,iBAAiB,CAAC;IAC1C,SAAS,EAAE,MAAM,CAAC,WAAW,CAAC;IAC9B,WAAW,EAAE,MAAM,CAAC,aAAa,CAAC;IAClC,cAAc,EAAE,MAAM,CAAC,gBAAgB,CAAC;IACxC,eAAe,EAAE,MAAM,CAAC,iBAAiB,CAAC;IAC1C,uBAAuB,EAAE,MAAM,CAAC,yBAAyB,CAAC;CAClD,CAAC;AAuBX,gBAAgB;AAChB,MAAM,QAAQ,GAAG,MAAM,CAAC,SAAS,CAAC,CAAC;AAEnC;;;;;;GAMG;AACH,MAAsB,iBAAiB;IAerC,YAAY,UAA4B,EAAE;;QACxC,IAAI,CAAC,cAAc,GAAG,IAAI,CAAC,SAAS,CAAC,cAAM,CAAC,eAAe,CAAC;YAC1D,CAAC,CAAC,gCAAc,CAAC,OAAO;YACxB,CAAC,CAAC,MAAA,gCAAc,CAAC,WAAW,CAAC,OAAO,CAAC,mCAAI,gCAAc,CAAC,OAAO,CAAC;QAElE,oEAAoE;QACpE,IAAI,CAAC,WAAW,GAAG,IAAA,yBAAkB,EAAC,OAAO,CAAC,CAAC;QAE/C,IAAI,CAAC,QAAQ,CAAC,GAAG,OAAO,CAAC,OAAO,IAAI,IAAI,CAAC,CAAC,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;QAEvE,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;QACvB,IAAI,CAAC,kBAAkB,GAAG,CAAC,CAAC,OAAO,CAAC,kBAAkB,CAAC;QACvD,IAAI,CAAC,iBAAiB,GAAG,KAAK,CAAC;IACjC,CAAC;IAQD,SAAS,CAAC,MAAc;QACtB,MAAM,IAAI,GAAG,IAAI,CAAC,WAAmC,CAAC;QACtD,IAAI,IAAI,CAAC,OAAO,IAAI,IAAI,EAAE;YACxB,OAAO,KAAK,CAAC;SACd;QAED,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC;IAClC,CAAC;IAED,IAAI,OAAO;QACT,OAAO,IAAI,CAAC,QAAQ,CAAC,CAAC;IACxB,CAAC;IAED,YAAY;QACV,IAAI,CAAC,QAAQ,CAAC,GAAG,SAAS,CAAC;IAC7B,CAAC;IAED,IAAI,YAAY;QACd,OAAO,IAAI,CAAC;IACd,CAAC;IAED,IAAI,aAAa;QACf,OAAO,IAAI,CAAC;IACd,CAAC;CACF;AA5DD,8CA4DC;AAED,SAAgB,aAAa,CAC3B,SAA+B,EAC/B,OAAwC;IAExC,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,OAAO,YAAY,GAAG,CAAC,EAAE;QACxD,OAAO,GAAG,CAAC,OAAO,CAAC,CAAC;KACrB;IAED,OAAO,GAAG,IAAI,GAAG,CAAC,OAAO,CAAC,CAAC;IAC3B,MAAM,CAAC,cAAc,CAAC,SAAS,EAAE,SAAS,EAAE;QAC1C,KAAK,EAAE,OAAO;QACd,QAAQ,EAAE,KAAK;KAChB,CAAC,CAAC;IAEH,OAAO,OAAO,CAAC;AACjB,CAAC;AAfD,sCAeC"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/options_operation.js b/node_modules/mongodb/lib/operations/options_operation.js new file mode 100644 index 000000000..f07f104dc --- /dev/null +++ b/node_modules/mongodb/lib/operations/options_operation.js @@ -0,0 +1,29 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.OptionsOperation = void 0; +const error_1 = require("../error"); +const operation_1 = require("./operation"); +/** @internal */ +class OptionsOperation extends operation_1.AbstractOperation { + constructor(collection, options) { + super(options); + this.options = options; + this.collection = collection; + } + execute(server, session, callback) { + const coll = this.collection; + coll.s.db + .listCollections({ name: coll.collectionName }, { ...this.options, nameOnly: false, readPreference: this.readPreference, session }) + .toArray((err, collections) => { + if (err || !collections) + return callback(err); + if (collections.length === 0) { + // TODO(NODE-3485) + return callback(new error_1.MongoAPIError(`collection ${coll.namespace} not found`)); + } + callback(err, collections[0].options); + }); + } +} +exports.OptionsOperation = OptionsOperation; +//# sourceMappingURL=options_operation.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/options_operation.js.map b/node_modules/mongodb/lib/operations/options_operation.js.map new file mode 100644 index 000000000..9d6b05c00 --- /dev/null +++ b/node_modules/mongodb/lib/operations/options_operation.js.map @@ -0,0 +1 @@ +{"version":3,"file":"options_operation.js","sourceRoot":"","sources":["../../src/operations/options_operation.ts"],"names":[],"mappings":";;;AAEA,oCAAyC;AAIzC,2CAAkE;AAElE,gBAAgB;AAChB,MAAa,gBAAiB,SAAQ,6BAA2B;IAI/D,YAAY,UAAsB,EAAE,OAAyB;QAC3D,KAAK,CAAC,OAAO,CAAC,CAAC;QACf,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;QACvB,IAAI,CAAC,UAAU,GAAG,UAAU,CAAC;IAC/B,CAAC;IAEQ,OAAO,CACd,MAAc,EACd,OAAkC,EAClC,QAA4B;QAE5B,MAAM,IAAI,GAAG,IAAI,CAAC,UAAU,CAAC;QAE7B,IAAI,CAAC,CAAC,CAAC,EAAE;aACN,eAAe,CACd,EAAE,IAAI,EAAE,IAAI,CAAC,cAAc,EAAE,EAC7B,EAAE,GAAG,IAAI,CAAC,OAAO,EAAE,QAAQ,EAAE,KAAK,EAAE,cAAc,EAAE,IAAI,CAAC,cAAc,EAAE,OAAO,EAAE,CACnF;aACA,OAAO,CAAC,CAAC,GAAG,EAAE,WAAW,EAAE,EAAE;YAC5B,IAAI,GAAG,IAAI,CAAC,WAAW;gBAAE,OAAO,QAAQ,CAAC,GAAG,CAAC,CAAC;YAC9C,IAAI,WAAW,CAAC,MAAM,KAAK,CAAC,EAAE;gBAC5B,kBAAkB;gBAClB,OAAO,QAAQ,CAAC,IAAI,qBAAa,CAAC,cAAc,IAAI,CAAC,SAAS,YAAY,CAAC,CAAC,CAAC;aAC9E;YAED,QAAQ,CAAC,GAAG,EAAE,WAAW,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC;QACxC,CAAC,CAAC,CAAC;IACP,CAAC;CACF;AAhCD,4CAgCC"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/profiling_level.js b/node_modules/mongodb/lib/operations/profiling_level.js new file mode 100644 index 000000000..33802dfa2 --- /dev/null +++ b/node_modules/mongodb/lib/operations/profiling_level.js @@ -0,0 +1,33 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.ProfilingLevelOperation = void 0; +const error_1 = require("../error"); +const command_1 = require("./command"); +/** @internal */ +class ProfilingLevelOperation extends command_1.CommandOperation { + constructor(db, options) { + super(db, options); + this.options = options; + } + execute(server, session, callback) { + super.executeCommand(server, session, { profile: -1 }, (err, doc) => { + if (err == null && doc.ok === 1) { + const was = doc.was; + if (was === 0) + return callback(undefined, 'off'); + if (was === 1) + return callback(undefined, 'slow_only'); + if (was === 2) + return callback(undefined, 'all'); + // TODO(NODE-3483) + return callback(new error_1.MongoRuntimeError(`Illegal profiling level value ${was}`)); + } + else { + // TODO(NODE-3483): Consider MongoUnexpectedServerResponseError + err != null ? callback(err) : callback(new error_1.MongoRuntimeError('Error with profile command')); + } + }); + } +} +exports.ProfilingLevelOperation = ProfilingLevelOperation; +//# sourceMappingURL=profiling_level.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/profiling_level.js.map b/node_modules/mongodb/lib/operations/profiling_level.js.map new file mode 100644 index 000000000..8630fdc00 --- /dev/null +++ b/node_modules/mongodb/lib/operations/profiling_level.js.map @@ -0,0 +1 @@ +{"version":3,"file":"profiling_level.js","sourceRoot":"","sources":["../../src/operations/profiling_level.ts"],"names":[],"mappings":";;;AACA,oCAA6C;AAI7C,uCAAsE;AAKtE,gBAAgB;AAChB,MAAa,uBAAwB,SAAQ,0BAAwB;IAGnE,YAAY,EAAM,EAAE,OAA8B;QAChD,KAAK,CAAC,EAAE,EAAE,OAAO,CAAC,CAAC;QACnB,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;IACzB,CAAC;IAEQ,OAAO,CACd,MAAc,EACd,OAAkC,EAClC,QAA0B;QAE1B,KAAK,CAAC,cAAc,CAAC,MAAM,EAAE,OAAO,EAAE,EAAE,OAAO,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,GAAG,EAAE,GAAG,EAAE,EAAE;YAClE,IAAI,GAAG,IAAI,IAAI,IAAI,GAAG,CAAC,EAAE,KAAK,CAAC,EAAE;gBAC/B,MAAM,GAAG,GAAG,GAAG,CAAC,GAAG,CAAC;gBACpB,IAAI,GAAG,KAAK,CAAC;oBAAE,OAAO,QAAQ,CAAC,SAAS,EAAE,KAAK,CAAC,CAAC;gBACjD,IAAI,GAAG,KAAK,CAAC;oBAAE,OAAO,QAAQ,CAAC,SAAS,EAAE,WAAW,CAAC,CAAC;gBACvD,IAAI,GAAG,KAAK,CAAC;oBAAE,OAAO,QAAQ,CAAC,SAAS,EAAE,KAAK,CAAC,CAAC;gBACjD,kBAAkB;gBAClB,OAAO,QAAQ,CAAC,IAAI,yBAAiB,CAAC,iCAAiC,GAAG,EAAE,CAAC,CAAC,CAAC;aAChF;iBAAM;gBACL,+DAA+D;gBAC/D,GAAG,IAAI,IAAI,CAAC,CAAC,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,IAAI,yBAAiB,CAAC,4BAA4B,CAAC,CAAC,CAAC;aAC7F;QACH,CAAC,CAAC,CAAC;IACL,CAAC;CACF;AA3BD,0DA2BC"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/remove_user.js b/node_modules/mongodb/lib/operations/remove_user.js new file mode 100644 index 000000000..daab3ebff --- /dev/null +++ b/node_modules/mongodb/lib/operations/remove_user.js @@ -0,0 +1,21 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.RemoveUserOperation = void 0; +const command_1 = require("./command"); +const operation_1 = require("./operation"); +/** @internal */ +class RemoveUserOperation extends command_1.CommandOperation { + constructor(db, username, options) { + super(db, options); + this.options = options; + this.username = username; + } + execute(server, session, callback) { + super.executeCommand(server, session, { dropUser: this.username }, err => { + callback(err, err ? false : true); + }); + } +} +exports.RemoveUserOperation = RemoveUserOperation; +(0, operation_1.defineAspects)(RemoveUserOperation, [operation_1.Aspect.WRITE_OPERATION]); +//# sourceMappingURL=remove_user.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/remove_user.js.map b/node_modules/mongodb/lib/operations/remove_user.js.map new file mode 100644 index 000000000..d689529ab --- /dev/null +++ b/node_modules/mongodb/lib/operations/remove_user.js.map @@ -0,0 +1 @@ +{"version":3,"file":"remove_user.js","sourceRoot":"","sources":["../../src/operations/remove_user.ts"],"names":[],"mappings":";;;AAIA,uCAAsE;AACtE,2CAAoD;AAKpD,gBAAgB;AAChB,MAAa,mBAAoB,SAAQ,0BAAyB;IAIhE,YAAY,EAAM,EAAE,QAAgB,EAAE,OAA0B;QAC9D,KAAK,CAAC,EAAE,EAAE,OAAO,CAAC,CAAC;QACnB,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;QACvB,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;IAC3B,CAAC;IAEQ,OAAO,CACd,MAAc,EACd,OAAkC,EAClC,QAA2B;QAE3B,KAAK,CAAC,cAAc,CAAC,MAAM,EAAE,OAAO,EAAE,EAAE,QAAQ,EAAE,IAAI,CAAC,QAAQ,EAAE,EAAE,GAAG,CAAC,EAAE;YACvE,QAAQ,CAAC,GAAG,EAAE,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC;QACpC,CAAC,CAAC,CAAC;IACL,CAAC;CACF;AAnBD,kDAmBC;AAED,IAAA,yBAAa,EAAC,mBAAmB,EAAE,CAAC,kBAAM,CAAC,eAAe,CAAC,CAAC,CAAC"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/rename.js b/node_modules/mongodb/lib/operations/rename.js new file mode 100644 index 000000000..06ec124d2 --- /dev/null +++ b/node_modules/mongodb/lib/operations/rename.js @@ -0,0 +1,46 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.RenameOperation = void 0; +const collection_1 = require("../collection"); +const error_1 = require("../error"); +const utils_1 = require("../utils"); +const operation_1 = require("./operation"); +const run_command_1 = require("./run_command"); +/** @internal */ +class RenameOperation extends run_command_1.RunAdminCommandOperation { + constructor(collection, newName, options) { + // Check the collection name + (0, utils_1.checkCollectionName)(newName); + // Build the command + const renameCollection = collection.namespace; + const toCollection = collection.s.namespace.withCollection(newName).toString(); + const dropTarget = typeof options.dropTarget === 'boolean' ? options.dropTarget : false; + const cmd = { renameCollection: renameCollection, to: toCollection, dropTarget: dropTarget }; + super(collection, cmd, options); + this.options = options; + this.collection = collection; + this.newName = newName; + } + execute(server, session, callback) { + const coll = this.collection; + super.execute(server, session, (err, doc) => { + if (err) + return callback(err); + // We have an error + if (doc === null || doc === void 0 ? void 0 : doc.errmsg) { + return callback(new error_1.MongoServerError(doc)); + } + let newColl; + try { + newColl = new collection_1.Collection(coll.s.db, this.newName, coll.s.options); + } + catch (err) { + return callback(err); + } + return callback(undefined, newColl); + }); + } +} +exports.RenameOperation = RenameOperation; +(0, operation_1.defineAspects)(RenameOperation, [operation_1.Aspect.WRITE_OPERATION]); +//# sourceMappingURL=rename.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/rename.js.map b/node_modules/mongodb/lib/operations/rename.js.map new file mode 100644 index 000000000..03255d1cd --- /dev/null +++ b/node_modules/mongodb/lib/operations/rename.js.map @@ -0,0 +1 @@ +{"version":3,"file":"rename.js","sourceRoot":"","sources":["../../src/operations/rename.ts"],"names":[],"mappings":";;;AACA,8CAA2C;AAC3C,oCAA4C;AAG5C,oCAAyD;AAEzD,2CAAoD;AACpD,+CAAyD;AAUzD,gBAAgB;AAChB,MAAa,eAAgB,SAAQ,sCAAwB;IAK3D,YAAY,UAAsB,EAAE,OAAe,EAAE,OAAsB;QACzE,4BAA4B;QAC5B,IAAA,2BAAmB,EAAC,OAAO,CAAC,CAAC;QAE7B,oBAAoB;QACpB,MAAM,gBAAgB,GAAG,UAAU,CAAC,SAAS,CAAC;QAC9C,MAAM,YAAY,GAAG,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC,cAAc,CAAC,OAAO,CAAC,CAAC,QAAQ,EAAE,CAAC;QAC/E,MAAM,UAAU,GAAG,OAAO,OAAO,CAAC,UAAU,KAAK,SAAS,CAAC,CAAC,CAAC,OAAO,CAAC,UAAU,CAAC,CAAC,CAAC,KAAK,CAAC;QACxF,MAAM,GAAG,GAAG,EAAE,gBAAgB,EAAE,gBAAgB,EAAE,EAAE,EAAE,YAAY,EAAE,UAAU,EAAE,UAAU,EAAE,CAAC;QAE7F,KAAK,CAAC,UAAU,EAAE,GAAG,EAAE,OAAO,CAAC,CAAC;QAChC,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;QACvB,IAAI,CAAC,UAAU,GAAG,UAAU,CAAC;QAC7B,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;IACzB,CAAC;IAEQ,OAAO,CACd,MAAc,EACd,OAAkC,EAClC,QAA8B;QAE9B,MAAM,IAAI,GAAG,IAAI,CAAC,UAAU,CAAC;QAE7B,KAAK,CAAC,OAAO,CAAC,MAAM,EAAE,OAAO,EAAE,CAAC,GAAG,EAAE,GAAG,EAAE,EAAE;YAC1C,IAAI,GAAG;gBAAE,OAAO,QAAQ,CAAC,GAAG,CAAC,CAAC;YAC9B,mBAAmB;YACnB,IAAI,GAAG,aAAH,GAAG,uBAAH,GAAG,CAAE,MAAM,EAAE;gBACf,OAAO,QAAQ,CAAC,IAAI,wBAAgB,CAAC,GAAG,CAAC,CAAC,CAAC;aAC5C;YAED,IAAI,OAA6B,CAAC;YAClC,IAAI;gBACF,OAAO,GAAG,IAAI,uBAAU,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,IAAI,CAAC,OAAO,EAAE,IAAI,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC;aACnE;YAAC,OAAO,GAAG,EAAE;gBACZ,OAAO,QAAQ,CAAC,GAAG,CAAC,CAAC;aACtB;YAED,OAAO,QAAQ,CAAC,SAAS,EAAE,OAAO,CAAC,CAAC;QACtC,CAAC,CAAC,CAAC;IACL,CAAC;CACF;AA7CD,0CA6CC;AAED,IAAA,yBAAa,EAAC,eAAe,EAAE,CAAC,kBAAM,CAAC,eAAe,CAAC,CAAC,CAAC"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/run_command.js b/node_modules/mongodb/lib/operations/run_command.js new file mode 100644 index 000000000..3ebab39a4 --- /dev/null +++ b/node_modules/mongodb/lib/operations/run_command.js @@ -0,0 +1,26 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.RunAdminCommandOperation = exports.RunCommandOperation = void 0; +const utils_1 = require("../utils"); +const command_1 = require("./command"); +/** @internal */ +class RunCommandOperation extends command_1.CommandOperation { + constructor(parent, command, options) { + super(parent, options); + this.options = options !== null && options !== void 0 ? options : {}; + this.command = command; + } + execute(server, session, callback) { + const command = this.command; + this.executeCommand(server, session, command, callback); + } +} +exports.RunCommandOperation = RunCommandOperation; +class RunAdminCommandOperation extends RunCommandOperation { + constructor(parent, command, options) { + super(parent, command, options); + this.ns = new utils_1.MongoDBNamespace('admin'); + } +} +exports.RunAdminCommandOperation = RunAdminCommandOperation; +//# sourceMappingURL=run_command.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/run_command.js.map b/node_modules/mongodb/lib/operations/run_command.js.map new file mode 100644 index 000000000..f698f3449 --- /dev/null +++ b/node_modules/mongodb/lib/operations/run_command.js.map @@ -0,0 +1 @@ +{"version":3,"file":"run_command.js","sourceRoot":"","sources":["../../src/operations/run_command.ts"],"names":[],"mappings":";;;AAGA,oCAAsD;AACtD,uCAAuF;AAKvF,gBAAgB;AAChB,MAAa,mBAAkC,SAAQ,0BAAmB;IAIxE,YAAY,MAAmC,EAAE,OAAiB,EAAE,OAA2B;QAC7F,KAAK,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;QACvB,IAAI,CAAC,OAAO,GAAG,OAAO,aAAP,OAAO,cAAP,OAAO,GAAI,EAAE,CAAC;QAC7B,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;IACzB,CAAC;IAEQ,OAAO,CACd,MAAc,EACd,OAAkC,EAClC,QAAqB;QAErB,MAAM,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC;QAC7B,IAAI,CAAC,cAAc,CAAC,MAAM,EAAE,OAAO,EAAE,OAAO,EAAE,QAAQ,CAAC,CAAC;IAC1D,CAAC;CACF;AAlBD,kDAkBC;AAED,MAAa,wBAAuC,SAAQ,mBAAsB;IAChF,YAAY,MAAmC,EAAE,OAAiB,EAAE,OAA2B;QAC7F,KAAK,CAAC,MAAM,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC;QAChC,IAAI,CAAC,EAAE,GAAG,IAAI,wBAAgB,CAAC,OAAO,CAAC,CAAC;IAC1C,CAAC;CACF;AALD,4DAKC"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/set_profiling_level.js b/node_modules/mongodb/lib/operations/set_profiling_level.js new file mode 100644 index 000000000..4ff83297d --- /dev/null +++ b/node_modules/mongodb/lib/operations/set_profiling_level.js @@ -0,0 +1,51 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SetProfilingLevelOperation = exports.ProfilingLevel = void 0; +const error_1 = require("../error"); +const utils_1 = require("../utils"); +const command_1 = require("./command"); +const levelValues = new Set(['off', 'slow_only', 'all']); +/** @public */ +exports.ProfilingLevel = Object.freeze({ + off: 'off', + slowOnly: 'slow_only', + all: 'all' +}); +/** @internal */ +class SetProfilingLevelOperation extends command_1.CommandOperation { + constructor(db, level, options) { + super(db, options); + this.options = options; + switch (level) { + case exports.ProfilingLevel.off: + this.profile = 0; + break; + case exports.ProfilingLevel.slowOnly: + this.profile = 1; + break; + case exports.ProfilingLevel.all: + this.profile = 2; + break; + default: + this.profile = 0; + break; + } + this.level = level; + } + execute(server, session, callback) { + const level = this.level; + if (!levelValues.has(level)) { + return callback(new error_1.MongoInvalidArgumentError(`Profiling level must be one of "${(0, utils_1.enumToString)(exports.ProfilingLevel)}"`)); + } + // TODO(NODE-3483): Determine error to put here + super.executeCommand(server, session, { profile: this.profile }, (err, doc) => { + if (err == null && doc.ok === 1) + return callback(undefined, level); + return err != null + ? callback(err) + : callback(new error_1.MongoRuntimeError('Error with profile command')); + }); + } +} +exports.SetProfilingLevelOperation = SetProfilingLevelOperation; +//# sourceMappingURL=set_profiling_level.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/set_profiling_level.js.map b/node_modules/mongodb/lib/operations/set_profiling_level.js.map new file mode 100644 index 000000000..4928b6165 --- /dev/null +++ b/node_modules/mongodb/lib/operations/set_profiling_level.js.map @@ -0,0 +1 @@ +{"version":3,"file":"set_profiling_level.js","sourceRoot":"","sources":["../../src/operations/set_profiling_level.ts"],"names":[],"mappings":";;;AACA,oCAAwE;AAIxE,oCAAwC;AACxC,uCAAsE;AAEtE,MAAM,WAAW,GAAG,IAAI,GAAG,CAAC,CAAC,KAAK,EAAE,WAAW,EAAE,KAAK,CAAC,CAAC,CAAC;AAEzD,cAAc;AACD,QAAA,cAAc,GAAG,MAAM,CAAC,MAAM,CAAC;IAC1C,GAAG,EAAE,KAAK;IACV,QAAQ,EAAE,WAAW;IACrB,GAAG,EAAE,KAAK;CACF,CAAC,CAAC;AAQZ,gBAAgB;AAChB,MAAa,0BAA2B,SAAQ,0BAAgC;IAK9E,YAAY,EAAM,EAAE,KAAqB,EAAE,OAAiC;QAC1E,KAAK,CAAC,EAAE,EAAE,OAAO,CAAC,CAAC;QACnB,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;QACvB,QAAQ,KAAK,EAAE;YACb,KAAK,sBAAc,CAAC,GAAG;gBACrB,IAAI,CAAC,OAAO,GAAG,CAAC,CAAC;gBACjB,MAAM;YACR,KAAK,sBAAc,CAAC,QAAQ;gBAC1B,IAAI,CAAC,OAAO,GAAG,CAAC,CAAC;gBACjB,MAAM;YACR,KAAK,sBAAc,CAAC,GAAG;gBACrB,IAAI,CAAC,OAAO,GAAG,CAAC,CAAC;gBACjB,MAAM;YACR;gBACE,IAAI,CAAC,OAAO,GAAG,CAAC,CAAC;gBACjB,MAAM;SACT;QAED,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;IACrB,CAAC;IAEQ,OAAO,CACd,MAAc,EACd,OAAkC,EAClC,QAAkC;QAElC,MAAM,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC;QAEzB,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC,KAAK,CAAC,EAAE;YAC3B,OAAO,QAAQ,CACb,IAAI,iCAAyB,CAC3B,mCAAmC,IAAA,oBAAY,EAAC,sBAAc,CAAC,GAAG,CACnE,CACF,CAAC;SACH;QAED,+CAA+C;QAC/C,KAAK,CAAC,cAAc,CAAC,MAAM,EAAE,OAAO,EAAE,EAAE,OAAO,EAAE,IAAI,CAAC,OAAO,EAAE,EAAE,CAAC,GAAG,EAAE,GAAG,EAAE,EAAE;YAC5E,IAAI,GAAG,IAAI,IAAI,IAAI,GAAG,CAAC,EAAE,KAAK,CAAC;gBAAE,OAAO,QAAQ,CAAC,SAAS,EAAE,KAAK,CAAC,CAAC;YACnE,OAAO,GAAG,IAAI,IAAI;gBAChB,CAAC,CAAC,QAAQ,CAAC,GAAG,CAAC;gBACf,CAAC,CAAC,QAAQ,CAAC,IAAI,yBAAiB,CAAC,4BAA4B,CAAC,CAAC,CAAC;QACpE,CAAC,CAAC,CAAC;IACL,CAAC;CACF;AAjDD,gEAiDC"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/stats.js b/node_modules/mongodb/lib/operations/stats.js new file mode 100644 index 000000000..21b736dfc --- /dev/null +++ b/node_modules/mongodb/lib/operations/stats.js @@ -0,0 +1,48 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.DbStatsOperation = exports.CollStatsOperation = void 0; +const command_1 = require("./command"); +const operation_1 = require("./operation"); +/** + * Get all the collection statistics. + * @internal + */ +class CollStatsOperation extends command_1.CommandOperation { + /** + * Construct a Stats operation. + * + * @param collection - Collection instance + * @param options - Optional settings. See Collection.prototype.stats for a list of options. + */ + constructor(collection, options) { + super(collection, options); + this.options = options !== null && options !== void 0 ? options : {}; + this.collectionName = collection.collectionName; + } + execute(server, session, callback) { + const command = { collStats: this.collectionName }; + if (this.options.scale != null) { + command.scale = this.options.scale; + } + super.executeCommand(server, session, command, callback); + } +} +exports.CollStatsOperation = CollStatsOperation; +/** @internal */ +class DbStatsOperation extends command_1.CommandOperation { + constructor(db, options) { + super(db, options); + this.options = options; + } + execute(server, session, callback) { + const command = { dbStats: true }; + if (this.options.scale != null) { + command.scale = this.options.scale; + } + super.executeCommand(server, session, command, callback); + } +} +exports.DbStatsOperation = DbStatsOperation; +(0, operation_1.defineAspects)(CollStatsOperation, [operation_1.Aspect.READ_OPERATION]); +(0, operation_1.defineAspects)(DbStatsOperation, [operation_1.Aspect.READ_OPERATION]); +//# sourceMappingURL=stats.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/stats.js.map b/node_modules/mongodb/lib/operations/stats.js.map new file mode 100644 index 000000000..aca364553 --- /dev/null +++ b/node_modules/mongodb/lib/operations/stats.js.map @@ -0,0 +1 @@ +{"version":3,"file":"stats.js","sourceRoot":"","sources":["../../src/operations/stats.ts"],"names":[],"mappings":";;;AAMA,uCAAsE;AACtE,2CAAoD;AAQpD;;;GAGG;AACH,MAAa,kBAAmB,SAAQ,0BAA0B;IAIhE;;;;;OAKG;IACH,YAAY,UAAsB,EAAE,OAA0B;QAC5D,KAAK,CAAC,UAAU,EAAE,OAAO,CAAC,CAAC;QAC3B,IAAI,CAAC,OAAO,GAAG,OAAO,aAAP,OAAO,cAAP,OAAO,GAAI,EAAE,CAAC;QAC7B,IAAI,CAAC,cAAc,GAAG,UAAU,CAAC,cAAc,CAAC;IAClD,CAAC;IAEQ,OAAO,CACd,MAAc,EACd,OAAkC,EAClC,QAA6B;QAE7B,MAAM,OAAO,GAAa,EAAE,SAAS,EAAE,IAAI,CAAC,cAAc,EAAE,CAAC;QAC7D,IAAI,IAAI,CAAC,OAAO,CAAC,KAAK,IAAI,IAAI,EAAE;YAC9B,OAAO,CAAC,KAAK,GAAG,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC;SACpC;QAED,KAAK,CAAC,cAAc,CAAC,MAAM,EAAE,OAAO,EAAE,OAAO,EAAE,QAAQ,CAAC,CAAC;IAC3D,CAAC;CACF;AA5BD,gDA4BC;AAQD,gBAAgB;AAChB,MAAa,gBAAiB,SAAQ,0BAA0B;IAG9D,YAAY,EAAM,EAAE,OAAuB;QACzC,KAAK,CAAC,EAAE,EAAE,OAAO,CAAC,CAAC;QACnB,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;IACzB,CAAC;IAEQ,OAAO,CACd,MAAc,EACd,OAAkC,EAClC,QAA4B;QAE5B,MAAM,OAAO,GAAa,EAAE,OAAO,EAAE,IAAI,EAAE,CAAC;QAC5C,IAAI,IAAI,CAAC,OAAO,CAAC,KAAK,IAAI,IAAI,EAAE;YAC9B,OAAO,CAAC,KAAK,GAAG,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC;SACpC;QAED,KAAK,CAAC,cAAc,CAAC,MAAM,EAAE,OAAO,EAAE,OAAO,EAAE,QAAQ,CAAC,CAAC;IAC3D,CAAC;CACF;AApBD,4CAoBC;AAiMD,IAAA,yBAAa,EAAC,kBAAkB,EAAE,CAAC,kBAAM,CAAC,cAAc,CAAC,CAAC,CAAC;AAC3D,IAAA,yBAAa,EAAC,gBAAgB,EAAE,CAAC,kBAAM,CAAC,cAAc,CAAC,CAAC,CAAC"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/update.js b/node_modules/mongodb/lib/operations/update.js new file mode 100644 index 000000000..03c825ec7 --- /dev/null +++ b/node_modules/mongodb/lib/operations/update.js @@ -0,0 +1,200 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.makeUpdateStatement = exports.ReplaceOneOperation = exports.UpdateManyOperation = exports.UpdateOneOperation = exports.UpdateOperation = void 0; +const error_1 = require("../error"); +const utils_1 = require("../utils"); +const command_1 = require("./command"); +const operation_1 = require("./operation"); +/** @internal */ +class UpdateOperation extends command_1.CommandOperation { + constructor(ns, statements, options) { + super(undefined, options); + this.options = options; + this.ns = ns; + this.statements = statements; + } + get canRetryWrite() { + if (super.canRetryWrite === false) { + return false; + } + return this.statements.every(op => op.multi == null || op.multi === false); + } + execute(server, session, callback) { + var _a; + const options = (_a = this.options) !== null && _a !== void 0 ? _a : {}; + const ordered = typeof options.ordered === 'boolean' ? options.ordered : true; + const command = { + update: this.ns.collection, + updates: this.statements, + ordered + }; + if (typeof options.bypassDocumentValidation === 'boolean') { + command.bypassDocumentValidation = options.bypassDocumentValidation; + } + if (options.let) { + command.let = options.let; + } + // we check for undefined specifically here to allow falsy values + // eslint-disable-next-line no-restricted-syntax + if (options.comment !== undefined) { + command.comment = options.comment; + } + const statementWithCollation = this.statements.find(statement => !!statement.collation); + if ((0, utils_1.collationNotSupported)(server, options) || + (statementWithCollation && (0, utils_1.collationNotSupported)(server, statementWithCollation))) { + callback(new error_1.MongoCompatibilityError(`Server ${server.name} does not support collation`)); + return; + } + const unacknowledgedWrite = this.writeConcern && this.writeConcern.w === 0; + if (unacknowledgedWrite || (0, utils_1.maxWireVersion)(server) < 5) { + if (this.statements.find((o) => o.hint)) { + callback(new error_1.MongoCompatibilityError(`Servers < 3.4 do not support hint on update`)); + return; + } + } + if (this.explain && (0, utils_1.maxWireVersion)(server) < 3) { + callback(new error_1.MongoCompatibilityError(`Server ${server.name} does not support explain on update`)); + return; + } + if (this.statements.some(statement => !!statement.arrayFilters) && (0, utils_1.maxWireVersion)(server) < 6) { + callback(new error_1.MongoCompatibilityError('Option "arrayFilters" is only supported on MongoDB 3.6+')); + return; + } + super.executeCommand(server, session, command, callback); + } +} +exports.UpdateOperation = UpdateOperation; +/** @internal */ +class UpdateOneOperation extends UpdateOperation { + constructor(collection, filter, update, options) { + super(collection.s.namespace, [makeUpdateStatement(filter, update, { ...options, multi: false })], options); + if (!(0, utils_1.hasAtomicOperators)(update)) { + throw new error_1.MongoInvalidArgumentError('Update document requires atomic operators'); + } + } + execute(server, session, callback) { + super.execute(server, session, (err, res) => { + var _a, _b; + if (err || !res) + return callback(err); + if (this.explain != null) + return callback(undefined, res); + if (res.code) + return callback(new error_1.MongoServerError(res)); + if (res.writeErrors) + return callback(new error_1.MongoServerError(res.writeErrors[0])); + callback(undefined, { + acknowledged: (_b = ((_a = this.writeConcern) === null || _a === void 0 ? void 0 : _a.w) !== 0) !== null && _b !== void 0 ? _b : true, + modifiedCount: res.nModified != null ? res.nModified : res.n, + upsertedId: Array.isArray(res.upserted) && res.upserted.length > 0 ? res.upserted[0]._id : null, + upsertedCount: Array.isArray(res.upserted) && res.upserted.length ? res.upserted.length : 0, + matchedCount: Array.isArray(res.upserted) && res.upserted.length > 0 ? 0 : res.n + }); + }); + } +} +exports.UpdateOneOperation = UpdateOneOperation; +/** @internal */ +class UpdateManyOperation extends UpdateOperation { + constructor(collection, filter, update, options) { + super(collection.s.namespace, [makeUpdateStatement(filter, update, { ...options, multi: true })], options); + if (!(0, utils_1.hasAtomicOperators)(update)) { + throw new error_1.MongoInvalidArgumentError('Update document requires atomic operators'); + } + } + execute(server, session, callback) { + super.execute(server, session, (err, res) => { + var _a, _b; + if (err || !res) + return callback(err); + if (this.explain != null) + return callback(undefined, res); + if (res.code) + return callback(new error_1.MongoServerError(res)); + if (res.writeErrors) + return callback(new error_1.MongoServerError(res.writeErrors[0])); + callback(undefined, { + acknowledged: (_b = ((_a = this.writeConcern) === null || _a === void 0 ? void 0 : _a.w) !== 0) !== null && _b !== void 0 ? _b : true, + modifiedCount: res.nModified != null ? res.nModified : res.n, + upsertedId: Array.isArray(res.upserted) && res.upserted.length > 0 ? res.upserted[0]._id : null, + upsertedCount: Array.isArray(res.upserted) && res.upserted.length ? res.upserted.length : 0, + matchedCount: Array.isArray(res.upserted) && res.upserted.length > 0 ? 0 : res.n + }); + }); + } +} +exports.UpdateManyOperation = UpdateManyOperation; +/** @internal */ +class ReplaceOneOperation extends UpdateOperation { + constructor(collection, filter, replacement, options) { + super(collection.s.namespace, [makeUpdateStatement(filter, replacement, { ...options, multi: false })], options); + if ((0, utils_1.hasAtomicOperators)(replacement)) { + throw new error_1.MongoInvalidArgumentError('Replacement document must not contain atomic operators'); + } + } + execute(server, session, callback) { + super.execute(server, session, (err, res) => { + var _a, _b; + if (err || !res) + return callback(err); + if (this.explain != null) + return callback(undefined, res); + if (res.code) + return callback(new error_1.MongoServerError(res)); + if (res.writeErrors) + return callback(new error_1.MongoServerError(res.writeErrors[0])); + callback(undefined, { + acknowledged: (_b = ((_a = this.writeConcern) === null || _a === void 0 ? void 0 : _a.w) !== 0) !== null && _b !== void 0 ? _b : true, + modifiedCount: res.nModified != null ? res.nModified : res.n, + upsertedId: Array.isArray(res.upserted) && res.upserted.length > 0 ? res.upserted[0]._id : null, + upsertedCount: Array.isArray(res.upserted) && res.upserted.length ? res.upserted.length : 0, + matchedCount: Array.isArray(res.upserted) && res.upserted.length > 0 ? 0 : res.n + }); + }); + } +} +exports.ReplaceOneOperation = ReplaceOneOperation; +function makeUpdateStatement(filter, update, options) { + if (filter == null || typeof filter !== 'object') { + throw new error_1.MongoInvalidArgumentError('Selector must be a valid JavaScript object'); + } + if (update == null || typeof update !== 'object') { + throw new error_1.MongoInvalidArgumentError('Document must be a valid JavaScript object'); + } + const op = { q: filter, u: update }; + if (typeof options.upsert === 'boolean') { + op.upsert = options.upsert; + } + if (options.multi) { + op.multi = options.multi; + } + if (options.hint) { + op.hint = options.hint; + } + if (options.arrayFilters) { + op.arrayFilters = options.arrayFilters; + } + if (options.collation) { + op.collation = options.collation; + } + return op; +} +exports.makeUpdateStatement = makeUpdateStatement; +(0, operation_1.defineAspects)(UpdateOperation, [operation_1.Aspect.RETRYABLE, operation_1.Aspect.WRITE_OPERATION, operation_1.Aspect.SKIP_COLLATION]); +(0, operation_1.defineAspects)(UpdateOneOperation, [ + operation_1.Aspect.RETRYABLE, + operation_1.Aspect.WRITE_OPERATION, + operation_1.Aspect.EXPLAINABLE, + operation_1.Aspect.SKIP_COLLATION +]); +(0, operation_1.defineAspects)(UpdateManyOperation, [ + operation_1.Aspect.WRITE_OPERATION, + operation_1.Aspect.EXPLAINABLE, + operation_1.Aspect.SKIP_COLLATION +]); +(0, operation_1.defineAspects)(ReplaceOneOperation, [ + operation_1.Aspect.RETRYABLE, + operation_1.Aspect.WRITE_OPERATION, + operation_1.Aspect.SKIP_COLLATION +]); +//# sourceMappingURL=update.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/update.js.map b/node_modules/mongodb/lib/operations/update.js.map new file mode 100644 index 000000000..913879b84 --- /dev/null +++ b/node_modules/mongodb/lib/operations/update.js.map @@ -0,0 +1 @@ +{"version":3,"file":"update.js","sourceRoot":"","sources":["../../src/operations/update.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/validate_collection.js b/node_modules/mongodb/lib/operations/validate_collection.js new file mode 100644 index 000000000..1a7c978ec --- /dev/null +++ b/node_modules/mongodb/lib/operations/validate_collection.js @@ -0,0 +1,41 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.ValidateCollectionOperation = void 0; +const error_1 = require("../error"); +const command_1 = require("./command"); +/** @internal */ +class ValidateCollectionOperation extends command_1.CommandOperation { + constructor(admin, collectionName, options) { + // Decorate command with extra options + const command = { validate: collectionName }; + const keys = Object.keys(options); + for (let i = 0; i < keys.length; i++) { + if (Object.prototype.hasOwnProperty.call(options, keys[i]) && keys[i] !== 'session') { + command[keys[i]] = options[keys[i]]; + } + } + super(admin.s.db, options); + this.options = options; + this.command = command; + this.collectionName = collectionName; + } + execute(server, session, callback) { + const collectionName = this.collectionName; + super.executeCommand(server, session, this.command, (err, doc) => { + if (err != null) + return callback(err); + // TODO(NODE-3483): Replace these with MongoUnexpectedServerResponseError + if (doc.ok === 0) + return callback(new error_1.MongoRuntimeError('Error with validate command')); + if (doc.result != null && typeof doc.result !== 'string') + return callback(new error_1.MongoRuntimeError('Error with validation data')); + if (doc.result != null && doc.result.match(/exception|corrupt/) != null) + return callback(new error_1.MongoRuntimeError(`Invalid collection ${collectionName}`)); + if (doc.valid != null && !doc.valid) + return callback(new error_1.MongoRuntimeError(`Invalid collection ${collectionName}`)); + return callback(undefined, doc); + }); + } +} +exports.ValidateCollectionOperation = ValidateCollectionOperation; +//# sourceMappingURL=validate_collection.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/operations/validate_collection.js.map b/node_modules/mongodb/lib/operations/validate_collection.js.map new file mode 100644 index 000000000..9d72c4185 --- /dev/null +++ b/node_modules/mongodb/lib/operations/validate_collection.js.map @@ -0,0 +1 @@ +{"version":3,"file":"validate_collection.js","sourceRoot":"","sources":["../../src/operations/validate_collection.ts"],"names":[],"mappings":";;;AAEA,oCAA6C;AAI7C,uCAAsE;AAQtE,gBAAgB;AAChB,MAAa,2BAA4B,SAAQ,0BAA0B;IAKzE,YAAY,KAAY,EAAE,cAAsB,EAAE,OAAkC;QAClF,sCAAsC;QACtC,MAAM,OAAO,GAAa,EAAE,QAAQ,EAAE,cAAc,EAAE,CAAC;QACvD,MAAM,IAAI,GAAG,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QAClC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;YACpC,IAAI,MAAM,CAAC,SAAS,CAAC,cAAc,CAAC,IAAI,CAAC,OAAO,EAAE,IAAI,CAAC,CAAC,CAAC,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,KAAK,SAAS,EAAE;gBACnF,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAI,OAAoB,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC;aACnD;SACF;QAED,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,EAAE,OAAO,CAAC,CAAC;QAC3B,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;QACvB,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;QACvB,IAAI,CAAC,cAAc,GAAG,cAAc,CAAC;IACvC,CAAC;IAEQ,OAAO,CACd,MAAc,EACd,OAAkC,EAClC,QAA4B;QAE5B,MAAM,cAAc,GAAG,IAAI,CAAC,cAAc,CAAC;QAE3C,KAAK,CAAC,cAAc,CAAC,MAAM,EAAE,OAAO,EAAE,IAAI,CAAC,OAAO,EAAE,CAAC,GAAG,EAAE,GAAG,EAAE,EAAE;YAC/D,IAAI,GAAG,IAAI,IAAI;gBAAE,OAAO,QAAQ,CAAC,GAAG,CAAC,CAAC;YAEtC,yEAAyE;YACzE,IAAI,GAAG,CAAC,EAAE,KAAK,CAAC;gBAAE,OAAO,QAAQ,CAAC,IAAI,yBAAiB,CAAC,6BAA6B,CAAC,CAAC,CAAC;YACxF,IAAI,GAAG,CAAC,MAAM,IAAI,IAAI,IAAI,OAAO,GAAG,CAAC,MAAM,KAAK,QAAQ;gBACtD,OAAO,QAAQ,CAAC,IAAI,yBAAiB,CAAC,4BAA4B,CAAC,CAAC,CAAC;YACvE,IAAI,GAAG,CAAC,MAAM,IAAI,IAAI,IAAI,GAAG,CAAC,MAAM,CAAC,KAAK,CAAC,mBAAmB,CAAC,IAAI,IAAI;gBACrE,OAAO,QAAQ,CAAC,IAAI,yBAAiB,CAAC,sBAAsB,cAAc,EAAE,CAAC,CAAC,CAAC;YACjF,IAAI,GAAG,CAAC,KAAK,IAAI,IAAI,IAAI,CAAC,GAAG,CAAC,KAAK;gBACjC,OAAO,QAAQ,CAAC,IAAI,yBAAiB,CAAC,sBAAsB,cAAc,EAAE,CAAC,CAAC,CAAC;YAEjF,OAAO,QAAQ,CAAC,SAAS,EAAE,GAAG,CAAC,CAAC;QAClC,CAAC,CAAC,CAAC;IACL,CAAC;CACF;AA3CD,kEA2CC"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/promise_provider.js b/node_modules/mongodb/lib/promise_provider.js new file mode 100644 index 000000000..4c4d28c86 --- /dev/null +++ b/node_modules/mongodb/lib/promise_provider.js @@ -0,0 +1,51 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.PromiseProvider = void 0; +const error_1 = require("./error"); +/** @internal */ +const kPromise = Symbol('promise'); +const store = { + [kPromise]: null +}; +/** + * Global promise store allowing user-provided promises + * @deprecated Setting a custom promise library is deprecated the next major version will use the global Promise constructor only. + * @public + */ +class PromiseProvider { + /** + * Validates the passed in promise library + * @deprecated Setting a custom promise library is deprecated the next major version will use the global Promise constructor only. + */ + static validate(lib) { + if (typeof lib !== 'function') + throw new error_1.MongoInvalidArgumentError(`Promise must be a function, got ${lib}`); + return !!lib; + } + /** + * Sets the promise library + * @deprecated Setting a custom promise library is deprecated the next major version will use the global Promise constructor only. + */ + static set(lib) { + // eslint-disable-next-line no-restricted-syntax + if (lib === null) { + // Check explicitly against null since `.set()` (no args) should fall through to validate + store[kPromise] = null; + return; + } + if (!PromiseProvider.validate(lib)) { + // validate + return; + } + store[kPromise] = lib; + } + /** + * Get the stored promise library, or resolves passed in + * @deprecated Setting a custom promise library is deprecated the next major version will use the global Promise constructor only. + */ + static get() { + return store[kPromise]; + } +} +exports.PromiseProvider = PromiseProvider; +//# sourceMappingURL=promise_provider.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/promise_provider.js.map b/node_modules/mongodb/lib/promise_provider.js.map new file mode 100644 index 000000000..b69273075 --- /dev/null +++ b/node_modules/mongodb/lib/promise_provider.js.map @@ -0,0 +1 @@ +{"version":3,"file":"promise_provider.js","sourceRoot":"","sources":["../src/promise_provider.ts"],"names":[],"mappings":";;;AAAA,mCAAoD;AAEpD,gBAAgB;AAChB,MAAM,QAAQ,GAAG,MAAM,CAAC,SAAS,CAAC,CAAC;AAMnC,MAAM,KAAK,GAAiB;IAC1B,CAAC,QAAQ,CAAC,EAAE,IAAI;CACjB,CAAC;AAEF;;;;GAIG;AACH,MAAa,eAAe;IAC1B;;;OAGG;IACH,MAAM,CAAC,QAAQ,CAAC,GAAY;QAC1B,IAAI,OAAO,GAAG,KAAK,UAAU;YAC3B,MAAM,IAAI,iCAAyB,CAAC,mCAAmC,GAAG,EAAE,CAAC,CAAC;QAChF,OAAO,CAAC,CAAC,GAAG,CAAC;IACf,CAAC;IAED;;;OAGG;IACH,MAAM,CAAC,GAAG,CAAC,GAA8B;QACvC,gDAAgD;QAChD,IAAI,GAAG,KAAK,IAAI,EAAE;YAChB,yFAAyF;YACzF,KAAK,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC;YACvB,OAAO;SACR;QAED,IAAI,CAAC,eAAe,CAAC,QAAQ,CAAC,GAAG,CAAC,EAAE;YAClC,WAAW;YACX,OAAO;SACR;QACD,KAAK,CAAC,QAAQ,CAAC,GAAG,GAAG,CAAC;IACxB,CAAC;IAED;;;OAGG;IACH,MAAM,CAAC,GAAG;QACR,OAAO,KAAK,CAAC,QAAQ,CAAC,CAAC;IACzB,CAAC;CACF;AArCD,0CAqCC"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/read_concern.js b/node_modules/mongodb/lib/read_concern.js new file mode 100644 index 000000000..9b1e067a9 --- /dev/null +++ b/node_modules/mongodb/lib/read_concern.js @@ -0,0 +1,74 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.ReadConcern = exports.ReadConcernLevel = void 0; +/** @public */ +exports.ReadConcernLevel = Object.freeze({ + local: 'local', + majority: 'majority', + linearizable: 'linearizable', + available: 'available', + snapshot: 'snapshot' +}); +/** + * The MongoDB ReadConcern, which allows for control of the consistency and isolation properties + * of the data read from replica sets and replica set shards. + * @public + * + * @see https://docs.mongodb.com/manual/reference/read-concern/index.html + */ +class ReadConcern { + /** Constructs a ReadConcern from the read concern level.*/ + constructor(level) { + var _a; + /** + * A spec test exists that allows level to be any string. + * "invalid readConcern with out stage" + * @see ./test/spec/crud/v2/aggregate-out-readConcern.json + * @see https://github.com/mongodb/specifications/blob/master/source/read-write-concern/read-write-concern.rst#unknown-levels-and-additional-options-for-string-based-readconcerns + */ + this.level = (_a = exports.ReadConcernLevel[level]) !== null && _a !== void 0 ? _a : level; + } + /** + * Construct a ReadConcern given an options object. + * + * @param options - The options object from which to extract the write concern. + */ + static fromOptions(options) { + if (options == null) { + return; + } + if (options.readConcern) { + const { readConcern } = options; + if (readConcern instanceof ReadConcern) { + return readConcern; + } + else if (typeof readConcern === 'string') { + return new ReadConcern(readConcern); + } + else if ('level' in readConcern && readConcern.level) { + return new ReadConcern(readConcern.level); + } + } + if (options.level) { + return new ReadConcern(options.level); + } + return; + } + static get MAJORITY() { + return exports.ReadConcernLevel.majority; + } + static get AVAILABLE() { + return exports.ReadConcernLevel.available; + } + static get LINEARIZABLE() { + return exports.ReadConcernLevel.linearizable; + } + static get SNAPSHOT() { + return exports.ReadConcernLevel.snapshot; + } + toJSON() { + return { level: this.level }; + } +} +exports.ReadConcern = ReadConcern; +//# sourceMappingURL=read_concern.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/read_concern.js.map b/node_modules/mongodb/lib/read_concern.js.map new file mode 100644 index 000000000..3f74a96e6 --- /dev/null +++ b/node_modules/mongodb/lib/read_concern.js.map @@ -0,0 +1 @@ +{"version":3,"file":"read_concern.js","sourceRoot":"","sources":["../src/read_concern.ts"],"names":[],"mappings":";;;AAEA,cAAc;AACD,QAAA,gBAAgB,GAAG,MAAM,CAAC,MAAM,CAAC;IAC5C,KAAK,EAAE,OAAO;IACd,QAAQ,EAAE,UAAU;IACpB,YAAY,EAAE,cAAc;IAC5B,SAAS,EAAE,WAAW;IACtB,QAAQ,EAAE,UAAU;CACZ,CAAC,CAAC;AAQZ;;;;;;GAMG;AACH,MAAa,WAAW;IAGtB,2DAA2D;IAC3D,YAAY,KAAuB;;QACjC;;;;;WAKG;QACH,IAAI,CAAC,KAAK,GAAG,MAAA,wBAAgB,CAAC,KAAK,CAAC,mCAAI,KAAK,CAAC;IAChD,CAAC;IAED;;;;OAIG;IACH,MAAM,CAAC,WAAW,CAAC,OAGlB;QACC,IAAI,OAAO,IAAI,IAAI,EAAE;YACnB,OAAO;SACR;QAED,IAAI,OAAO,CAAC,WAAW,EAAE;YACvB,MAAM,EAAE,WAAW,EAAE,GAAG,OAAO,CAAC;YAChC,IAAI,WAAW,YAAY,WAAW,EAAE;gBACtC,OAAO,WAAW,CAAC;aACpB;iBAAM,IAAI,OAAO,WAAW,KAAK,QAAQ,EAAE;gBAC1C,OAAO,IAAI,WAAW,CAAC,WAAW,CAAC,CAAC;aACrC;iBAAM,IAAI,OAAO,IAAI,WAAW,IAAI,WAAW,CAAC,KAAK,EAAE;gBACtD,OAAO,IAAI,WAAW,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC;aAC3C;SACF;QAED,IAAI,OAAO,CAAC,KAAK,EAAE;YACjB,OAAO,IAAI,WAAW,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC;SACvC;QACD,OAAO;IACT,CAAC;IAED,MAAM,KAAK,QAAQ;QACjB,OAAO,wBAAgB,CAAC,QAAQ,CAAC;IACnC,CAAC;IAED,MAAM,KAAK,SAAS;QAClB,OAAO,wBAAgB,CAAC,SAAS,CAAC;IACpC,CAAC;IAED,MAAM,KAAK,YAAY;QACrB,OAAO,wBAAgB,CAAC,YAAY,CAAC;IACvC,CAAC;IAED,MAAM,KAAK,QAAQ;QACjB,OAAO,wBAAgB,CAAC,QAAQ,CAAC;IACnC,CAAC;IAED,MAAM;QACJ,OAAO,EAAE,KAAK,EAAE,IAAI,CAAC,KAAK,EAAE,CAAC;IAC/B,CAAC;CACF;AA/DD,kCA+DC"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/read_preference.js b/node_modules/mongodb/lib/read_preference.js new file mode 100644 index 000000000..6df80eff8 --- /dev/null +++ b/node_modules/mongodb/lib/read_preference.js @@ -0,0 +1,204 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.ReadPreference = exports.ReadPreferenceMode = void 0; +const error_1 = require("./error"); +/** @public */ +exports.ReadPreferenceMode = Object.freeze({ + primary: 'primary', + primaryPreferred: 'primaryPreferred', + secondary: 'secondary', + secondaryPreferred: 'secondaryPreferred', + nearest: 'nearest' +}); +/** + * The **ReadPreference** class is a class that represents a MongoDB ReadPreference and is + * used to construct connections. + * @public + * + * @see https://docs.mongodb.com/manual/core/read-preference/ + */ +class ReadPreference { + /** + * @param mode - A string describing the read preference mode (primary|primaryPreferred|secondary|secondaryPreferred|nearest) + * @param tags - A tag set used to target reads to members with the specified tag(s). tagSet is not available if using read preference mode primary. + * @param options - Additional read preference options + */ + constructor(mode, tags, options) { + if (!ReadPreference.isValid(mode)) { + throw new error_1.MongoInvalidArgumentError(`Invalid read preference mode ${JSON.stringify(mode)}`); + } + if (options == null && typeof tags === 'object' && !Array.isArray(tags)) { + options = tags; + tags = undefined; + } + else if (tags && !Array.isArray(tags)) { + throw new error_1.MongoInvalidArgumentError('ReadPreference tags must be an array'); + } + this.mode = mode; + this.tags = tags; + this.hedge = options === null || options === void 0 ? void 0 : options.hedge; + this.maxStalenessSeconds = undefined; + this.minWireVersion = undefined; + options = options !== null && options !== void 0 ? options : {}; + if (options.maxStalenessSeconds != null) { + if (options.maxStalenessSeconds <= 0) { + throw new error_1.MongoInvalidArgumentError('maxStalenessSeconds must be a positive integer'); + } + this.maxStalenessSeconds = options.maxStalenessSeconds; + // NOTE: The minimum required wire version is 5 for this read preference. If the existing + // topology has a lower value then a MongoError will be thrown during server selection. + this.minWireVersion = 5; + } + if (this.mode === ReadPreference.PRIMARY) { + if (this.tags && Array.isArray(this.tags) && this.tags.length > 0) { + throw new error_1.MongoInvalidArgumentError('Primary read preference cannot be combined with tags'); + } + if (this.maxStalenessSeconds) { + throw new error_1.MongoInvalidArgumentError('Primary read preference cannot be combined with maxStalenessSeconds'); + } + if (this.hedge) { + throw new error_1.MongoInvalidArgumentError('Primary read preference cannot be combined with hedge'); + } + } + } + // Support the deprecated `preference` property introduced in the porcelain layer + get preference() { + return this.mode; + } + static fromString(mode) { + return new ReadPreference(mode); + } + /** + * Construct a ReadPreference given an options object. + * + * @param options - The options object from which to extract the read preference. + */ + static fromOptions(options) { + var _a, _b, _c; + if (!options) + return; + const readPreference = (_a = options.readPreference) !== null && _a !== void 0 ? _a : (_b = options.session) === null || _b === void 0 ? void 0 : _b.transaction.options.readPreference; + const readPreferenceTags = options.readPreferenceTags; + if (readPreference == null) { + return; + } + if (typeof readPreference === 'string') { + return new ReadPreference(readPreference, readPreferenceTags, { + maxStalenessSeconds: options.maxStalenessSeconds, + hedge: options.hedge + }); + } + else if (!(readPreference instanceof ReadPreference) && typeof readPreference === 'object') { + const mode = readPreference.mode || readPreference.preference; + if (mode && typeof mode === 'string') { + return new ReadPreference(mode, (_c = readPreference.tags) !== null && _c !== void 0 ? _c : readPreferenceTags, { + maxStalenessSeconds: readPreference.maxStalenessSeconds, + hedge: options.hedge + }); + } + } + if (readPreferenceTags) { + readPreference.tags = readPreferenceTags; + } + return readPreference; + } + /** + * Replaces options.readPreference with a ReadPreference instance + */ + static translate(options) { + if (options.readPreference == null) + return options; + const r = options.readPreference; + if (typeof r === 'string') { + options.readPreference = new ReadPreference(r); + } + else if (r && !(r instanceof ReadPreference) && typeof r === 'object') { + const mode = r.mode || r.preference; + if (mode && typeof mode === 'string') { + options.readPreference = new ReadPreference(mode, r.tags, { + maxStalenessSeconds: r.maxStalenessSeconds + }); + } + } + else if (!(r instanceof ReadPreference)) { + throw new error_1.MongoInvalidArgumentError(`Invalid read preference: ${r}`); + } + return options; + } + /** + * Validate if a mode is legal + * + * @param mode - The string representing the read preference mode. + */ + static isValid(mode) { + const VALID_MODES = new Set([ + ReadPreference.PRIMARY, + ReadPreference.PRIMARY_PREFERRED, + ReadPreference.SECONDARY, + ReadPreference.SECONDARY_PREFERRED, + ReadPreference.NEAREST, + null + ]); + return VALID_MODES.has(mode); + } + /** + * Validate if a mode is legal + * + * @param mode - The string representing the read preference mode. + */ + isValid(mode) { + return ReadPreference.isValid(typeof mode === 'string' ? mode : this.mode); + } + /** + * Indicates that this readPreference needs the "secondaryOk" bit when sent over the wire + * @deprecated Use secondaryOk instead + * @see https://docs.mongodb.com/manual/reference/mongodb-wire-protocol/#op-query + */ + slaveOk() { + return this.secondaryOk(); + } + /** + * Indicates that this readPreference needs the "SecondaryOk" bit when sent over the wire + * @see https://docs.mongodb.com/manual/reference/mongodb-wire-protocol/#op-query + */ + secondaryOk() { + const NEEDS_SECONDARYOK = new Set([ + ReadPreference.PRIMARY_PREFERRED, + ReadPreference.SECONDARY, + ReadPreference.SECONDARY_PREFERRED, + ReadPreference.NEAREST + ]); + return NEEDS_SECONDARYOK.has(this.mode); + } + /** + * Check if the two ReadPreferences are equivalent + * + * @param readPreference - The read preference with which to check equality + */ + equals(readPreference) { + return readPreference.mode === this.mode; + } + /** Return JSON representation */ + toJSON() { + const readPreference = { mode: this.mode }; + if (Array.isArray(this.tags)) + readPreference.tags = this.tags; + if (this.maxStalenessSeconds) + readPreference.maxStalenessSeconds = this.maxStalenessSeconds; + if (this.hedge) + readPreference.hedge = this.hedge; + return readPreference; + } +} +exports.ReadPreference = ReadPreference; +ReadPreference.PRIMARY = exports.ReadPreferenceMode.primary; +ReadPreference.PRIMARY_PREFERRED = exports.ReadPreferenceMode.primaryPreferred; +ReadPreference.SECONDARY = exports.ReadPreferenceMode.secondary; +ReadPreference.SECONDARY_PREFERRED = exports.ReadPreferenceMode.secondaryPreferred; +ReadPreference.NEAREST = exports.ReadPreferenceMode.nearest; +ReadPreference.primary = new ReadPreference(exports.ReadPreferenceMode.primary); +ReadPreference.primaryPreferred = new ReadPreference(exports.ReadPreferenceMode.primaryPreferred); +ReadPreference.secondary = new ReadPreference(exports.ReadPreferenceMode.secondary); +ReadPreference.secondaryPreferred = new ReadPreference(exports.ReadPreferenceMode.secondaryPreferred); +ReadPreference.nearest = new ReadPreference(exports.ReadPreferenceMode.nearest); +//# sourceMappingURL=read_preference.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/read_preference.js.map b/node_modules/mongodb/lib/read_preference.js.map new file mode 100644 index 000000000..120e51ea0 --- /dev/null +++ b/node_modules/mongodb/lib/read_preference.js.map @@ -0,0 +1 @@ +{"version":3,"file":"read_preference.js","sourceRoot":"","sources":["../src/read_preference.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/sdam/common.js b/node_modules/mongodb/lib/sdam/common.js new file mode 100644 index 000000000..60b96aa30 --- /dev/null +++ b/node_modules/mongodb/lib/sdam/common.js @@ -0,0 +1,56 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports._advanceClusterTime = exports.drainTimerQueue = exports.ServerType = exports.TopologyType = exports.STATE_CONNECTED = exports.STATE_CONNECTING = exports.STATE_CLOSED = exports.STATE_CLOSING = void 0; +const timers_1 = require("timers"); +// shared state names +exports.STATE_CLOSING = 'closing'; +exports.STATE_CLOSED = 'closed'; +exports.STATE_CONNECTING = 'connecting'; +exports.STATE_CONNECTED = 'connected'; +/** + * An enumeration of topology types we know about + * @public + */ +exports.TopologyType = Object.freeze({ + Single: 'Single', + ReplicaSetNoPrimary: 'ReplicaSetNoPrimary', + ReplicaSetWithPrimary: 'ReplicaSetWithPrimary', + Sharded: 'Sharded', + Unknown: 'Unknown', + LoadBalanced: 'LoadBalanced' +}); +/** + * An enumeration of server types we know about + * @public + */ +exports.ServerType = Object.freeze({ + Standalone: 'Standalone', + Mongos: 'Mongos', + PossiblePrimary: 'PossiblePrimary', + RSPrimary: 'RSPrimary', + RSSecondary: 'RSSecondary', + RSArbiter: 'RSArbiter', + RSOther: 'RSOther', + RSGhost: 'RSGhost', + Unknown: 'Unknown', + LoadBalancer: 'LoadBalancer' +}); +/** @internal */ +function drainTimerQueue(queue) { + queue.forEach(timers_1.clearTimeout); + queue.clear(); +} +exports.drainTimerQueue = drainTimerQueue; +/** Shared function to determine clusterTime for a given topology or session */ +function _advanceClusterTime(entity, $clusterTime) { + if (entity.clusterTime == null) { + entity.clusterTime = $clusterTime; + } + else { + if ($clusterTime.clusterTime.greaterThan(entity.clusterTime.clusterTime)) { + entity.clusterTime = $clusterTime; + } + } +} +exports._advanceClusterTime = _advanceClusterTime; +//# sourceMappingURL=common.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/sdam/common.js.map b/node_modules/mongodb/lib/sdam/common.js.map new file mode 100644 index 000000000..95a76c42d --- /dev/null +++ b/node_modules/mongodb/lib/sdam/common.js.map @@ -0,0 +1 @@ +{"version":3,"file":"common.js","sourceRoot":"","sources":["../../src/sdam/common.ts"],"names":[],"mappings":";;;AAAA,mCAAsC;AAMtC,qBAAqB;AACR,QAAA,aAAa,GAAG,SAAS,CAAC;AAC1B,QAAA,YAAY,GAAG,QAAQ,CAAC;AACxB,QAAA,gBAAgB,GAAG,YAAY,CAAC;AAChC,QAAA,eAAe,GAAG,WAAW,CAAC;AAE3C;;;GAGG;AACU,QAAA,YAAY,GAAG,MAAM,CAAC,MAAM,CAAC;IACxC,MAAM,EAAE,QAAQ;IAChB,mBAAmB,EAAE,qBAAqB;IAC1C,qBAAqB,EAAE,uBAAuB;IAC9C,OAAO,EAAE,SAAS;IAClB,OAAO,EAAE,SAAS;IAClB,YAAY,EAAE,cAAc;CACpB,CAAC,CAAC;AAKZ;;;GAGG;AACU,QAAA,UAAU,GAAG,MAAM,CAAC,MAAM,CAAC;IACtC,UAAU,EAAE,YAAY;IACxB,MAAM,EAAE,QAAQ;IAChB,eAAe,EAAE,iBAAiB;IAClC,SAAS,EAAE,WAAW;IACtB,WAAW,EAAE,aAAa;IAC1B,SAAS,EAAE,WAAW;IACtB,OAAO,EAAE,SAAS;IAClB,OAAO,EAAE,SAAS;IAClB,OAAO,EAAE,SAAS;IAClB,YAAY,EAAE,cAAc;CACpB,CAAC,CAAC;AAQZ,gBAAgB;AAChB,SAAgB,eAAe,CAAC,KAAiB;IAC/C,KAAK,CAAC,OAAO,CAAC,qBAAY,CAAC,CAAC;IAC5B,KAAK,CAAC,KAAK,EAAE,CAAC;AAChB,CAAC;AAHD,0CAGC;AAWD,+EAA+E;AAC/E,SAAgB,mBAAmB,CACjC,MAAgC,EAChC,YAAyB;IAEzB,IAAI,MAAM,CAAC,WAAW,IAAI,IAAI,EAAE;QAC9B,MAAM,CAAC,WAAW,GAAG,YAAY,CAAC;KACnC;SAAM;QACL,IAAI,YAAY,CAAC,WAAW,CAAC,WAAW,CAAC,MAAM,CAAC,WAAW,CAAC,WAAW,CAAC,EAAE;YACxE,MAAM,CAAC,WAAW,GAAG,YAAY,CAAC;SACnC;KACF;AACH,CAAC;AAXD,kDAWC"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/sdam/events.js b/node_modules/mongodb/lib/sdam/events.js new file mode 100644 index 000000000..9943108b1 --- /dev/null +++ b/node_modules/mongodb/lib/sdam/events.js @@ -0,0 +1,125 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.ServerHeartbeatFailedEvent = exports.ServerHeartbeatSucceededEvent = exports.ServerHeartbeatStartedEvent = exports.TopologyClosedEvent = exports.TopologyOpeningEvent = exports.TopologyDescriptionChangedEvent = exports.ServerClosedEvent = exports.ServerOpeningEvent = exports.ServerDescriptionChangedEvent = void 0; +/** + * Emitted when server description changes, but does NOT include changes to the RTT. + * @public + * @category Event + */ +class ServerDescriptionChangedEvent { + /** @internal */ + constructor(topologyId, address, previousDescription, newDescription) { + this.topologyId = topologyId; + this.address = address; + this.previousDescription = previousDescription; + this.newDescription = newDescription; + } +} +exports.ServerDescriptionChangedEvent = ServerDescriptionChangedEvent; +/** + * Emitted when server is initialized. + * @public + * @category Event + */ +class ServerOpeningEvent { + /** @internal */ + constructor(topologyId, address) { + this.topologyId = topologyId; + this.address = address; + } +} +exports.ServerOpeningEvent = ServerOpeningEvent; +/** + * Emitted when server is closed. + * @public + * @category Event + */ +class ServerClosedEvent { + /** @internal */ + constructor(topologyId, address) { + this.topologyId = topologyId; + this.address = address; + } +} +exports.ServerClosedEvent = ServerClosedEvent; +/** + * Emitted when topology description changes. + * @public + * @category Event + */ +class TopologyDescriptionChangedEvent { + /** @internal */ + constructor(topologyId, previousDescription, newDescription) { + this.topologyId = topologyId; + this.previousDescription = previousDescription; + this.newDescription = newDescription; + } +} +exports.TopologyDescriptionChangedEvent = TopologyDescriptionChangedEvent; +/** + * Emitted when topology is initialized. + * @public + * @category Event + */ +class TopologyOpeningEvent { + /** @internal */ + constructor(topologyId) { + this.topologyId = topologyId; + } +} +exports.TopologyOpeningEvent = TopologyOpeningEvent; +/** + * Emitted when topology is closed. + * @public + * @category Event + */ +class TopologyClosedEvent { + /** @internal */ + constructor(topologyId) { + this.topologyId = topologyId; + } +} +exports.TopologyClosedEvent = TopologyClosedEvent; +/** + * Emitted when the server monitor’s hello command is started - immediately before + * the hello command is serialized into raw BSON and written to the socket. + * + * @public + * @category Event + */ +class ServerHeartbeatStartedEvent { + /** @internal */ + constructor(connectionId) { + this.connectionId = connectionId; + } +} +exports.ServerHeartbeatStartedEvent = ServerHeartbeatStartedEvent; +/** + * Emitted when the server monitor’s hello succeeds. + * @public + * @category Event + */ +class ServerHeartbeatSucceededEvent { + /** @internal */ + constructor(connectionId, duration, reply) { + this.connectionId = connectionId; + this.duration = duration; + this.reply = reply !== null && reply !== void 0 ? reply : {}; + } +} +exports.ServerHeartbeatSucceededEvent = ServerHeartbeatSucceededEvent; +/** + * Emitted when the server monitor’s hello fails, either with an “ok: 0” or a socket exception. + * @public + * @category Event + */ +class ServerHeartbeatFailedEvent { + /** @internal */ + constructor(connectionId, duration, failure) { + this.connectionId = connectionId; + this.duration = duration; + this.failure = failure; + } +} +exports.ServerHeartbeatFailedEvent = ServerHeartbeatFailedEvent; +//# sourceMappingURL=events.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/sdam/events.js.map b/node_modules/mongodb/lib/sdam/events.js.map new file mode 100644 index 000000000..734a42575 --- /dev/null +++ b/node_modules/mongodb/lib/sdam/events.js.map @@ -0,0 +1 @@ +{"version":3,"file":"events.js","sourceRoot":"","sources":["../../src/sdam/events.ts"],"names":[],"mappings":";;;AAIA;;;;GAIG;AACH,MAAa,6BAA6B;IAUxC,gBAAgB;IAChB,YACE,UAAkB,EAClB,OAAe,EACf,mBAAsC,EACtC,cAAiC;QAEjC,IAAI,CAAC,UAAU,GAAG,UAAU,CAAC;QAC7B,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;QACvB,IAAI,CAAC,mBAAmB,GAAG,mBAAmB,CAAC;QAC/C,IAAI,CAAC,cAAc,GAAG,cAAc,CAAC;IACvC,CAAC;CACF;AAtBD,sEAsBC;AAED;;;;GAIG;AACH,MAAa,kBAAkB;IAM7B,gBAAgB;IAChB,YAAY,UAAkB,EAAE,OAAe;QAC7C,IAAI,CAAC,UAAU,GAAG,UAAU,CAAC;QAC7B,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;IACzB,CAAC;CACF;AAXD,gDAWC;AAED;;;;GAIG;AACH,MAAa,iBAAiB;IAM5B,gBAAgB;IAChB,YAAY,UAAkB,EAAE,OAAe;QAC7C,IAAI,CAAC,UAAU,GAAG,UAAU,CAAC;QAC7B,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;IACzB,CAAC;CACF;AAXD,8CAWC;AAED;;;;GAIG;AACH,MAAa,+BAA+B;IAQ1C,gBAAgB;IAChB,YACE,UAAkB,EAClB,mBAAwC,EACxC,cAAmC;QAEnC,IAAI,CAAC,UAAU,GAAG,UAAU,CAAC;QAC7B,IAAI,CAAC,mBAAmB,GAAG,mBAAmB,CAAC;QAC/C,IAAI,CAAC,cAAc,GAAG,cAAc,CAAC;IACvC,CAAC;CACF;AAlBD,0EAkBC;AAED;;;;GAIG;AACH,MAAa,oBAAoB;IAI/B,gBAAgB;IAChB,YAAY,UAAkB;QAC5B,IAAI,CAAC,UAAU,GAAG,UAAU,CAAC;IAC/B,CAAC;CACF;AARD,oDAQC;AAED;;;;GAIG;AACH,MAAa,mBAAmB;IAI9B,gBAAgB;IAChB,YAAY,UAAkB;QAC5B,IAAI,CAAC,UAAU,GAAG,UAAU,CAAC;IAC/B,CAAC;CACF;AARD,kDAQC;AAED;;;;;;GAMG;AACH,MAAa,2BAA2B;IAItC,gBAAgB;IAChB,YAAY,YAAoB;QAC9B,IAAI,CAAC,YAAY,GAAG,YAAY,CAAC;IACnC,CAAC;CACF;AARD,kEAQC;AAED;;;;GAIG;AACH,MAAa,6BAA6B;IAQxC,gBAAgB;IAChB,YAAY,YAAoB,EAAE,QAAgB,EAAE,KAAsB;QACxE,IAAI,CAAC,YAAY,GAAG,YAAY,CAAC;QACjC,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;QACzB,IAAI,CAAC,KAAK,GAAG,KAAK,aAAL,KAAK,cAAL,KAAK,GAAI,EAAE,CAAC;IAC3B,CAAC;CACF;AAdD,sEAcC;AAED;;;;GAIG;AACH,MAAa,0BAA0B;IAQrC,gBAAgB;IAChB,YAAY,YAAoB,EAAE,QAAgB,EAAE,OAAc;QAChE,IAAI,CAAC,YAAY,GAAG,YAAY,CAAC;QACjC,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;QACzB,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;IACzB,CAAC;CACF;AAdD,gEAcC"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/sdam/monitor.js b/node_modules/mongodb/lib/sdam/monitor.js new file mode 100644 index 000000000..9cad2087e --- /dev/null +++ b/node_modules/mongodb/lib/sdam/monitor.js @@ -0,0 +1,413 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.MonitorInterval = exports.RTTPinger = exports.Monitor = void 0; +const timers_1 = require("timers"); +const bson_1 = require("../bson"); +const connect_1 = require("../cmap/connect"); +const connection_1 = require("../cmap/connection"); +const constants_1 = require("../constants"); +const error_1 = require("../error"); +const mongo_types_1 = require("../mongo_types"); +const utils_1 = require("../utils"); +const common_1 = require("./common"); +const events_1 = require("./events"); +const server_1 = require("./server"); +/** @internal */ +const kServer = Symbol('server'); +/** @internal */ +const kMonitorId = Symbol('monitorId'); +/** @internal */ +const kConnection = Symbol('connection'); +/** @internal */ +const kCancellationToken = Symbol('cancellationToken'); +/** @internal */ +const kRTTPinger = Symbol('rttPinger'); +/** @internal */ +const kRoundTripTime = Symbol('roundTripTime'); +const STATE_IDLE = 'idle'; +const STATE_MONITORING = 'monitoring'; +const stateTransition = (0, utils_1.makeStateMachine)({ + [common_1.STATE_CLOSING]: [common_1.STATE_CLOSING, STATE_IDLE, common_1.STATE_CLOSED], + [common_1.STATE_CLOSED]: [common_1.STATE_CLOSED, STATE_MONITORING], + [STATE_IDLE]: [STATE_IDLE, STATE_MONITORING, common_1.STATE_CLOSING], + [STATE_MONITORING]: [STATE_MONITORING, STATE_IDLE, common_1.STATE_CLOSING] +}); +const INVALID_REQUEST_CHECK_STATES = new Set([common_1.STATE_CLOSING, common_1.STATE_CLOSED, STATE_MONITORING]); +function isInCloseState(monitor) { + return monitor.s.state === common_1.STATE_CLOSED || monitor.s.state === common_1.STATE_CLOSING; +} +/** @internal */ +class Monitor extends mongo_types_1.TypedEventEmitter { + constructor(server, options) { + var _a, _b, _c; + super(); + this[kServer] = server; + this[kConnection] = undefined; + this[kCancellationToken] = new mongo_types_1.CancellationToken(); + this[kCancellationToken].setMaxListeners(Infinity); + this[kMonitorId] = undefined; + this.s = { + state: common_1.STATE_CLOSED + }; + this.address = server.description.address; + this.options = Object.freeze({ + connectTimeoutMS: (_a = options.connectTimeoutMS) !== null && _a !== void 0 ? _a : 10000, + heartbeatFrequencyMS: (_b = options.heartbeatFrequencyMS) !== null && _b !== void 0 ? _b : 10000, + minHeartbeatFrequencyMS: (_c = options.minHeartbeatFrequencyMS) !== null && _c !== void 0 ? _c : 500 + }); + const cancellationToken = this[kCancellationToken]; + // TODO: refactor this to pull it directly from the pool, requires new ConnectionPool integration + const connectOptions = Object.assign({ + id: '', + generation: server.s.pool.generation, + connectionType: connection_1.Connection, + cancellationToken, + hostAddress: server.description.hostAddress + }, options, + // force BSON serialization options + { + raw: false, + promoteLongs: true, + promoteValues: true, + promoteBuffers: true + }); + // ensure no authentication is used for monitoring + delete connectOptions.credentials; + if (connectOptions.autoEncrypter) { + delete connectOptions.autoEncrypter; + } + this.connectOptions = Object.freeze(connectOptions); + } + get connection() { + return this[kConnection]; + } + connect() { + if (this.s.state !== common_1.STATE_CLOSED) { + return; + } + // start + const heartbeatFrequencyMS = this.options.heartbeatFrequencyMS; + const minHeartbeatFrequencyMS = this.options.minHeartbeatFrequencyMS; + this[kMonitorId] = new MonitorInterval(monitorServer(this), { + heartbeatFrequencyMS: heartbeatFrequencyMS, + minHeartbeatFrequencyMS: minHeartbeatFrequencyMS, + immediate: true + }); + } + requestCheck() { + var _a; + if (INVALID_REQUEST_CHECK_STATES.has(this.s.state)) { + return; + } + (_a = this[kMonitorId]) === null || _a === void 0 ? void 0 : _a.wake(); + } + reset() { + const topologyVersion = this[kServer].description.topologyVersion; + if (isInCloseState(this) || topologyVersion == null) { + return; + } + stateTransition(this, common_1.STATE_CLOSING); + resetMonitorState(this); + // restart monitor + stateTransition(this, STATE_IDLE); + // restart monitoring + const heartbeatFrequencyMS = this.options.heartbeatFrequencyMS; + const minHeartbeatFrequencyMS = this.options.minHeartbeatFrequencyMS; + this[kMonitorId] = new MonitorInterval(monitorServer(this), { + heartbeatFrequencyMS: heartbeatFrequencyMS, + minHeartbeatFrequencyMS: minHeartbeatFrequencyMS + }); + } + close() { + if (isInCloseState(this)) { + return; + } + stateTransition(this, common_1.STATE_CLOSING); + resetMonitorState(this); + // close monitor + this.emit('close'); + stateTransition(this, common_1.STATE_CLOSED); + } +} +exports.Monitor = Monitor; +function resetMonitorState(monitor) { + var _a, _b, _c; + (_a = monitor[kMonitorId]) === null || _a === void 0 ? void 0 : _a.stop(); + monitor[kMonitorId] = undefined; + (_b = monitor[kRTTPinger]) === null || _b === void 0 ? void 0 : _b.close(); + monitor[kRTTPinger] = undefined; + monitor[kCancellationToken].emit('cancel'); + (_c = monitor[kConnection]) === null || _c === void 0 ? void 0 : _c.destroy({ force: true }); + monitor[kConnection] = undefined; +} +function checkServer(monitor, callback) { + let start = (0, utils_1.now)(); + monitor.emit(server_1.Server.SERVER_HEARTBEAT_STARTED, new events_1.ServerHeartbeatStartedEvent(monitor.address)); + function failureHandler(err) { + var _a; + (_a = monitor[kConnection]) === null || _a === void 0 ? void 0 : _a.destroy({ force: true }); + monitor[kConnection] = undefined; + monitor.emit(server_1.Server.SERVER_HEARTBEAT_FAILED, new events_1.ServerHeartbeatFailedEvent(monitor.address, (0, utils_1.calculateDurationInMs)(start), err)); + const error = !(err instanceof error_1.MongoError) ? new error_1.MongoError(err) : err; + error.addErrorLabel(error_1.MongoErrorLabel.ResetPool); + monitor.emit('resetServer', error); + callback(err); + } + const connection = monitor[kConnection]; + if (connection && !connection.closed) { + const { serverApi, helloOk } = connection; + const connectTimeoutMS = monitor.options.connectTimeoutMS; + const maxAwaitTimeMS = monitor.options.heartbeatFrequencyMS; + const topologyVersion = monitor[kServer].description.topologyVersion; + const isAwaitable = topologyVersion != null; + const cmd = { + [(serverApi === null || serverApi === void 0 ? void 0 : serverApi.version) || helloOk ? 'hello' : constants_1.LEGACY_HELLO_COMMAND]: true, + ...(isAwaitable && topologyVersion + ? { maxAwaitTimeMS, topologyVersion: makeTopologyVersion(topologyVersion) } + : {}) + }; + const options = isAwaitable + ? { + socketTimeoutMS: connectTimeoutMS ? connectTimeoutMS + maxAwaitTimeMS : 0, + exhaustAllowed: true + } + : { socketTimeoutMS: connectTimeoutMS }; + if (isAwaitable && monitor[kRTTPinger] == null) { + monitor[kRTTPinger] = new RTTPinger(monitor[kCancellationToken], Object.assign({ heartbeatFrequencyMS: monitor.options.heartbeatFrequencyMS }, monitor.connectOptions)); + } + connection.command((0, utils_1.ns)('admin.$cmd'), cmd, options, (err, hello) => { + var _a; + if (err) { + return failureHandler(err); + } + if (!('isWritablePrimary' in hello)) { + // Provide hello-style response document. + hello.isWritablePrimary = hello[constants_1.LEGACY_HELLO_COMMAND]; + } + const rttPinger = monitor[kRTTPinger]; + const duration = isAwaitable && rttPinger ? rttPinger.roundTripTime : (0, utils_1.calculateDurationInMs)(start); + monitor.emit(server_1.Server.SERVER_HEARTBEAT_SUCCEEDED, new events_1.ServerHeartbeatSucceededEvent(monitor.address, duration, hello)); + // if we are using the streaming protocol then we immediately issue another `started` + // event, otherwise the "check" is complete and return to the main monitor loop + if (isAwaitable && hello.topologyVersion) { + monitor.emit(server_1.Server.SERVER_HEARTBEAT_STARTED, new events_1.ServerHeartbeatStartedEvent(monitor.address)); + start = (0, utils_1.now)(); + } + else { + (_a = monitor[kRTTPinger]) === null || _a === void 0 ? void 0 : _a.close(); + monitor[kRTTPinger] = undefined; + callback(undefined, hello); + } + }); + return; + } + // connecting does an implicit `hello` + (0, connect_1.connect)(monitor.connectOptions, (err, conn) => { + if (err) { + monitor[kConnection] = undefined; + failureHandler(err); + return; + } + if (conn) { + // Tell the connection that we are using the streaming protocol so that the + // connection's message stream will only read the last hello on the buffer. + conn.isMonitoringConnection = true; + if (isInCloseState(monitor)) { + conn.destroy({ force: true }); + return; + } + monitor[kConnection] = conn; + monitor.emit(server_1.Server.SERVER_HEARTBEAT_SUCCEEDED, new events_1.ServerHeartbeatSucceededEvent(monitor.address, (0, utils_1.calculateDurationInMs)(start), conn.hello)); + callback(undefined, conn.hello); + } + }); +} +function monitorServer(monitor) { + return (callback) => { + stateTransition(monitor, STATE_MONITORING); + function done() { + if (!isInCloseState(monitor)) { + stateTransition(monitor, STATE_IDLE); + } + callback(); + } + checkServer(monitor, (err, hello) => { + if (err) { + // otherwise an error occurred on initial discovery, also bail + if (monitor[kServer].description.type === common_1.ServerType.Unknown) { + return done(); + } + } + // if the check indicates streaming is supported, immediately reschedule monitoring + if (hello && hello.topologyVersion) { + (0, timers_1.setTimeout)(() => { + var _a; + if (!isInCloseState(monitor)) { + (_a = monitor[kMonitorId]) === null || _a === void 0 ? void 0 : _a.wake(); + } + }, 0); + } + done(); + }); + }; +} +function makeTopologyVersion(tv) { + return { + processId: tv.processId, + // tests mock counter as just number, but in a real situation counter should always be a Long + // TODO(NODE-2674): Preserve int64 sent from MongoDB + counter: bson_1.Long.isLong(tv.counter) ? tv.counter : bson_1.Long.fromNumber(tv.counter) + }; +} +/** @internal */ +class RTTPinger { + constructor(cancellationToken, options) { + this[kConnection] = undefined; + this[kCancellationToken] = cancellationToken; + this[kRoundTripTime] = 0; + this.closed = false; + const heartbeatFrequencyMS = options.heartbeatFrequencyMS; + this[kMonitorId] = (0, timers_1.setTimeout)(() => measureRoundTripTime(this, options), heartbeatFrequencyMS); + } + get roundTripTime() { + return this[kRoundTripTime]; + } + close() { + var _a; + this.closed = true; + (0, timers_1.clearTimeout)(this[kMonitorId]); + (_a = this[kConnection]) === null || _a === void 0 ? void 0 : _a.destroy({ force: true }); + this[kConnection] = undefined; + } +} +exports.RTTPinger = RTTPinger; +function measureRoundTripTime(rttPinger, options) { + const start = (0, utils_1.now)(); + options.cancellationToken = rttPinger[kCancellationToken]; + const heartbeatFrequencyMS = options.heartbeatFrequencyMS; + if (rttPinger.closed) { + return; + } + function measureAndReschedule(conn) { + if (rttPinger.closed) { + conn === null || conn === void 0 ? void 0 : conn.destroy({ force: true }); + return; + } + if (rttPinger[kConnection] == null) { + rttPinger[kConnection] = conn; + } + rttPinger[kRoundTripTime] = (0, utils_1.calculateDurationInMs)(start); + rttPinger[kMonitorId] = (0, timers_1.setTimeout)(() => measureRoundTripTime(rttPinger, options), heartbeatFrequencyMS); + } + const connection = rttPinger[kConnection]; + if (connection == null) { + (0, connect_1.connect)(options, (err, conn) => { + if (err) { + rttPinger[kConnection] = undefined; + rttPinger[kRoundTripTime] = 0; + return; + } + measureAndReschedule(conn); + }); + return; + } + connection.command((0, utils_1.ns)('admin.$cmd'), { [constants_1.LEGACY_HELLO_COMMAND]: 1 }, undefined, err => { + if (err) { + rttPinger[kConnection] = undefined; + rttPinger[kRoundTripTime] = 0; + return; + } + measureAndReschedule(); + }); +} +/** + * @internal + */ +class MonitorInterval { + constructor(fn, options = {}) { + var _a, _b; + this.isExpeditedCheckScheduled = false; + this.stopped = false; + this._executeAndReschedule = () => { + this.isExpeditedCheckScheduled = false; + this.lastCallTime = this.clock(); + this.fn(err => { + if (err) + throw err; + this._reschedule(this.heartbeatFrequencyMS); + }); + }; + this.fn = fn; + this.lastCallTime = 0; + this.heartbeatFrequencyMS = (_a = options.heartbeatFrequencyMS) !== null && _a !== void 0 ? _a : 1000; + this.minHeartbeatFrequencyMS = (_b = options.minHeartbeatFrequencyMS) !== null && _b !== void 0 ? _b : 500; + this.clock = typeof options.clock === 'function' ? options.clock : utils_1.now; + if (options.immediate) { + this._executeAndReschedule(); + } + else { + this.lastCallTime = this.clock(); + this._reschedule(undefined); + } + } + wake() { + const currentTime = this.clock(); + const nextScheduledCallTime = this.lastCallTime + this.heartbeatFrequencyMS; + const timeUntilNextCall = nextScheduledCallTime - currentTime; + // For the streaming protocol: there is nothing obviously stopping this + // interval from being woken up again while we are waiting "infinitely" + // for `fn` to be called again`. Since the function effectively + // never completes, the `timeUntilNextCall` will continue to grow + // negatively unbounded, so it will never trigger a reschedule here. + // This is possible in virtualized environments like AWS Lambda where our + // clock is unreliable. In these cases the timer is "running" but never + // actually completes, so we want to execute immediately and then attempt + // to reschedule. + if (timeUntilNextCall < 0) { + this._executeAndReschedule(); + return; + } + // debounce multiple calls to wake within the `minInterval` + if (this.isExpeditedCheckScheduled) { + return; + } + // reschedule a call as soon as possible, ensuring the call never happens + // faster than the `minInterval` + if (timeUntilNextCall > this.minHeartbeatFrequencyMS) { + this._reschedule(this.minHeartbeatFrequencyMS); + this.isExpeditedCheckScheduled = true; + } + } + stop() { + this.stopped = true; + if (this.timerId) { + (0, timers_1.clearTimeout)(this.timerId); + this.timerId = undefined; + } + this.lastCallTime = 0; + this.isExpeditedCheckScheduled = false; + } + toString() { + return JSON.stringify(this); + } + toJSON() { + return { + timerId: this.timerId != null ? 'set' : 'cleared', + lastCallTime: this.lastCallTime, + isExpeditedCheckScheduled: this.isExpeditedCheckScheduled, + stopped: this.stopped, + heartbeatFrequencyMS: this.heartbeatFrequencyMS, + minHeartbeatFrequencyMS: this.minHeartbeatFrequencyMS + }; + } + _reschedule(ms) { + if (this.stopped) + return; + if (this.timerId) { + (0, timers_1.clearTimeout)(this.timerId); + } + this.timerId = (0, timers_1.setTimeout)(this._executeAndReschedule, ms || this.heartbeatFrequencyMS); + } +} +exports.MonitorInterval = MonitorInterval; +//# sourceMappingURL=monitor.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/sdam/monitor.js.map b/node_modules/mongodb/lib/sdam/monitor.js.map new file mode 100644 index 000000000..b252e6b35 --- /dev/null +++ b/node_modules/mongodb/lib/sdam/monitor.js.map @@ -0,0 +1 @@ +{"version":3,"file":"monitor.js","sourceRoot":"","sources":["../../src/sdam/monitor.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/sdam/server.js b/node_modules/mongodb/lib/sdam/server.js new file mode 100644 index 000000000..e8e953f7a --- /dev/null +++ b/node_modules/mongodb/lib/sdam/server.js @@ -0,0 +1,355 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.Server = void 0; +const connection_1 = require("../cmap/connection"); +const connection_pool_1 = require("../cmap/connection_pool"); +const errors_1 = require("../cmap/errors"); +const constants_1 = require("../constants"); +const error_1 = require("../error"); +const logger_1 = require("../logger"); +const mongo_types_1 = require("../mongo_types"); +const transactions_1 = require("../transactions"); +const utils_1 = require("../utils"); +const common_1 = require("./common"); +const monitor_1 = require("./monitor"); +const server_description_1 = require("./server_description"); +const stateTransition = (0, utils_1.makeStateMachine)({ + [common_1.STATE_CLOSED]: [common_1.STATE_CLOSED, common_1.STATE_CONNECTING], + [common_1.STATE_CONNECTING]: [common_1.STATE_CONNECTING, common_1.STATE_CLOSING, common_1.STATE_CONNECTED, common_1.STATE_CLOSED], + [common_1.STATE_CONNECTED]: [common_1.STATE_CONNECTED, common_1.STATE_CLOSING, common_1.STATE_CLOSED], + [common_1.STATE_CLOSING]: [common_1.STATE_CLOSING, common_1.STATE_CLOSED] +}); +/** @internal */ +const kMonitor = Symbol('monitor'); +/** @internal */ +class Server extends mongo_types_1.TypedEventEmitter { + /** + * Create a server + */ + constructor(topology, description, options) { + super(); + this.serverApi = options.serverApi; + const poolOptions = { hostAddress: description.hostAddress, ...options }; + this.s = { + description, + options, + logger: new logger_1.Logger('Server'), + state: common_1.STATE_CLOSED, + topology, + pool: new connection_pool_1.ConnectionPool(poolOptions), + operationCount: 0 + }; + for (const event of [...constants_1.CMAP_EVENTS, ...constants_1.APM_EVENTS]) { + this.s.pool.on(event, (e) => this.emit(event, e)); + } + this.s.pool.on(connection_1.Connection.CLUSTER_TIME_RECEIVED, (clusterTime) => { + this.clusterTime = clusterTime; + }); + if (this.loadBalanced) { + this[kMonitor] = null; + // monitoring is disabled in load balancing mode + return; + } + // create the monitor + // TODO(NODE-4144): Remove new variable for type narrowing + const monitor = new monitor_1.Monitor(this, this.s.options); + this[kMonitor] = monitor; + for (const event of constants_1.HEARTBEAT_EVENTS) { + monitor.on(event, (e) => this.emit(event, e)); + } + monitor.on('resetServer', (error) => markServerUnknown(this, error)); + monitor.on(Server.SERVER_HEARTBEAT_SUCCEEDED, (event) => { + this.emit(Server.DESCRIPTION_RECEIVED, new server_description_1.ServerDescription(this.description.hostAddress, event.reply, { + roundTripTime: calculateRoundTripTime(this.description.roundTripTime, event.duration) + })); + if (this.s.state === common_1.STATE_CONNECTING) { + stateTransition(this, common_1.STATE_CONNECTED); + this.emit(Server.CONNECT, this); + } + }); + } + get clusterTime() { + return this.s.topology.clusterTime; + } + set clusterTime(clusterTime) { + this.s.topology.clusterTime = clusterTime; + } + get description() { + return this.s.description; + } + get name() { + return this.s.description.address; + } + get autoEncrypter() { + if (this.s.options && this.s.options.autoEncrypter) { + return this.s.options.autoEncrypter; + } + return; + } + get loadBalanced() { + return this.s.topology.description.type === common_1.TopologyType.LoadBalanced; + } + /** + * Initiate server connect + */ + connect() { + var _a; + if (this.s.state !== common_1.STATE_CLOSED) { + return; + } + stateTransition(this, common_1.STATE_CONNECTING); + // If in load balancer mode we automatically set the server to + // a load balancer. It never transitions out of this state and + // has no monitor. + if (!this.loadBalanced) { + (_a = this[kMonitor]) === null || _a === void 0 ? void 0 : _a.connect(); + } + else { + stateTransition(this, common_1.STATE_CONNECTED); + this.emit(Server.CONNECT, this); + } + } + /** Destroy the server connection */ + destroy(options, callback) { + var _a; + if (typeof options === 'function') + (callback = options), (options = {}); + options = Object.assign({}, { force: false }, options); + if (this.s.state === common_1.STATE_CLOSED) { + if (typeof callback === 'function') { + callback(); + } + return; + } + stateTransition(this, common_1.STATE_CLOSING); + if (!this.loadBalanced) { + (_a = this[kMonitor]) === null || _a === void 0 ? void 0 : _a.close(); + } + this.s.pool.close(options, err => { + stateTransition(this, common_1.STATE_CLOSED); + this.emit('closed'); + if (typeof callback === 'function') { + callback(err); + } + }); + } + /** + * Immediately schedule monitoring of this server. If there already an attempt being made + * this will be a no-op. + */ + requestCheck() { + var _a; + if (!this.loadBalanced) { + (_a = this[kMonitor]) === null || _a === void 0 ? void 0 : _a.requestCheck(); + } + } + /** + * Execute a command + * @internal + */ + command(ns, cmd, options, callback) { + if (callback == null) { + throw new error_1.MongoInvalidArgumentError('Callback must be provided'); + } + if (ns.db == null || typeof ns === 'string') { + throw new error_1.MongoInvalidArgumentError('Namespace must not be a string'); + } + if (this.s.state === common_1.STATE_CLOSING || this.s.state === common_1.STATE_CLOSED) { + callback(new error_1.MongoServerClosedError()); + return; + } + // Clone the options + const finalOptions = Object.assign({}, options, { wireProtocolCommand: false }); + // There are cases where we need to flag the read preference not to get sent in + // the command, such as pre-5.0 servers attempting to perform an aggregate write + // with a non-primary read preference. In this case the effective read preference + // (primary) is not the same as the provided and must be removed completely. + if (finalOptions.omitReadPreference) { + delete finalOptions.readPreference; + } + // error if collation not supported + if ((0, utils_1.collationNotSupported)(this, cmd)) { + callback(new error_1.MongoCompatibilityError(`Server ${this.name} does not support collation`)); + return; + } + const session = finalOptions.session; + const conn = session === null || session === void 0 ? void 0 : session.pinnedConnection; + // NOTE: This is a hack! We can't retrieve the connections used for executing an operation + // (and prevent them from being checked back in) at the point of operation execution. + // This should be considered as part of the work for NODE-2882 + // NOTE: + // When incrementing operation count, it's important that we increment it before we + // attempt to check out a connection from the pool. This ensures that operations that + // are waiting for a connection are included in the operation count. Load balanced + // mode will only ever have a single server, so the operation count doesn't matter. + // Incrementing the operation count above the logic to handle load balanced mode would + // require special logic to decrement it again, or would double increment (the load + // balanced code makes a recursive call). Instead, we increment the count after this + // check. + if (this.loadBalanced && session && conn == null && isPinnableCommand(cmd, session)) { + this.s.pool.checkOut((err, checkedOut) => { + if (err || checkedOut == null) { + if (callback) + return callback(err); + return; + } + session.pin(checkedOut); + this.command(ns, cmd, finalOptions, callback); + }); + return; + } + this.s.operationCount += 1; + this.s.pool.withConnection(conn, (err, conn, cb) => { + if (err || !conn) { + this.s.operationCount -= 1; + if (!(err instanceof errors_1.PoolClearedError)) { + markServerUnknown(this, err); + } + else { + err.addErrorLabel(error_1.MongoErrorLabel.RetryableWriteError); + } + return cb(err); + } + conn.command(ns, cmd, finalOptions, makeOperationHandler(this, conn, cmd, finalOptions, (error, response) => { + this.s.operationCount -= 1; + cb(error, response); + })); + }, callback); + } +} +exports.Server = Server; +/** @event */ +Server.SERVER_HEARTBEAT_STARTED = constants_1.SERVER_HEARTBEAT_STARTED; +/** @event */ +Server.SERVER_HEARTBEAT_SUCCEEDED = constants_1.SERVER_HEARTBEAT_SUCCEEDED; +/** @event */ +Server.SERVER_HEARTBEAT_FAILED = constants_1.SERVER_HEARTBEAT_FAILED; +/** @event */ +Server.CONNECT = constants_1.CONNECT; +/** @event */ +Server.DESCRIPTION_RECEIVED = constants_1.DESCRIPTION_RECEIVED; +/** @event */ +Server.CLOSED = constants_1.CLOSED; +/** @event */ +Server.ENDED = constants_1.ENDED; +function calculateRoundTripTime(oldRtt, duration) { + if (oldRtt === -1) { + return duration; + } + const alpha = 0.2; + return alpha * duration + (1 - alpha) * oldRtt; +} +function markServerUnknown(server, error) { + var _a; + // Load balancer servers can never be marked unknown. + if (server.loadBalanced) { + return; + } + if (error instanceof error_1.MongoNetworkError && !(error instanceof error_1.MongoNetworkTimeoutError)) { + (_a = server[kMonitor]) === null || _a === void 0 ? void 0 : _a.reset(); + } + server.emit(Server.DESCRIPTION_RECEIVED, new server_description_1.ServerDescription(server.description.hostAddress, undefined, { error })); +} +function isPinnableCommand(cmd, session) { + if (session) { + return (session.inTransaction() || + 'aggregate' in cmd || + 'find' in cmd || + 'getMore' in cmd || + 'listCollections' in cmd || + 'listIndexes' in cmd); + } + return false; +} +function connectionIsStale(pool, connection) { + if (connection.serviceId) { + return (connection.generation !== pool.serviceGenerations.get(connection.serviceId.toHexString())); + } + return connection.generation !== pool.generation; +} +function shouldHandleStateChangeError(server, err) { + const etv = err.topologyVersion; + const stv = server.description.topologyVersion; + return (0, server_description_1.compareTopologyVersion)(stv, etv) < 0; +} +function inActiveTransaction(session, cmd) { + return session && session.inTransaction() && !(0, transactions_1.isTransactionCommand)(cmd); +} +/** this checks the retryWrites option passed down from the client options, it + * does not check if the server supports retryable writes */ +function isRetryableWritesEnabled(topology) { + return topology.s.options.retryWrites !== false; +} +function makeOperationHandler(server, connection, cmd, options, callback) { + const session = options === null || options === void 0 ? void 0 : options.session; + return function handleOperationResult(error, result) { + if (result != null) { + return callback(undefined, result); + } + if (!error) { + return callback(new error_1.MongoUnexpectedServerResponseError('Empty response with no error')); + } + if (!(error instanceof error_1.MongoError)) { + // Node.js or some other error we have not special handling for + return callback(error); + } + if (connectionIsStale(server.s.pool, connection)) { + return callback(error); + } + if (error instanceof error_1.MongoNetworkError) { + if (session && !session.hasEnded && session.serverSession) { + session.serverSession.isDirty = true; + } + // inActiveTransaction check handles commit and abort. + if (inActiveTransaction(session, cmd) && + !error.hasErrorLabel(error_1.MongoErrorLabel.TransientTransactionError)) { + error.addErrorLabel(error_1.MongoErrorLabel.TransientTransactionError); + } + if ((isRetryableWritesEnabled(server.s.topology) || (0, transactions_1.isTransactionCommand)(cmd)) && + (0, utils_1.supportsRetryableWrites)(server) && + !inActiveTransaction(session, cmd)) { + error.addErrorLabel(error_1.MongoErrorLabel.RetryableWriteError); + } + if (!(error instanceof error_1.MongoNetworkTimeoutError) || (0, error_1.isNetworkErrorBeforeHandshake)(error)) { + // In load balanced mode we never mark the server as unknown and always + // clear for the specific service id. + if (!server.loadBalanced) { + error.addErrorLabel(error_1.MongoErrorLabel.ResetPool); + markServerUnknown(server, error); + } + else { + server.s.pool.clear(connection.serviceId); + } + } + } + else { + if ((isRetryableWritesEnabled(server.s.topology) || (0, transactions_1.isTransactionCommand)(cmd)) && + (0, error_1.needsRetryableWriteLabel)(error, (0, utils_1.maxWireVersion)(server)) && + !inActiveTransaction(session, cmd)) { + error.addErrorLabel(error_1.MongoErrorLabel.RetryableWriteError); + } + if ((0, error_1.isSDAMUnrecoverableError)(error)) { + if (shouldHandleStateChangeError(server, error)) { + const shouldClearPool = (0, utils_1.maxWireVersion)(server) <= 7 || (0, error_1.isNodeShuttingDownError)(error); + if (server.loadBalanced && shouldClearPool) { + server.s.pool.clear(connection.serviceId); + } + if (!server.loadBalanced) { + if (shouldClearPool) { + error.addErrorLabel(error_1.MongoErrorLabel.ResetPool); + } + markServerUnknown(server, error); + process.nextTick(() => server.requestCheck()); + } + } + } + } + if (session && + session.isPinned && + error.hasErrorLabel(error_1.MongoErrorLabel.TransientTransactionError)) { + session.unpin({ force: true }); + } + return callback(error); + }; +} +//# sourceMappingURL=server.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/sdam/server.js.map b/node_modules/mongodb/lib/sdam/server.js.map new file mode 100644 index 000000000..2c6a7d6c1 --- /dev/null +++ b/node_modules/mongodb/lib/sdam/server.js.map @@ -0,0 +1 @@ +{"version":3,"file":"server.js","sourceRoot":"","sources":["../../src/sdam/server.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/sdam/server_description.js b/node_modules/mongodb/lib/sdam/server_description.js new file mode 100644 index 000000000..2815dbbfd --- /dev/null +++ b/node_modules/mongodb/lib/sdam/server_description.js @@ -0,0 +1,190 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.compareTopologyVersion = exports.parseServerType = exports.ServerDescription = void 0; +const bson_1 = require("../bson"); +const error_1 = require("../error"); +const utils_1 = require("../utils"); +const common_1 = require("./common"); +const WRITABLE_SERVER_TYPES = new Set([ + common_1.ServerType.RSPrimary, + common_1.ServerType.Standalone, + common_1.ServerType.Mongos, + common_1.ServerType.LoadBalancer +]); +const DATA_BEARING_SERVER_TYPES = new Set([ + common_1.ServerType.RSPrimary, + common_1.ServerType.RSSecondary, + common_1.ServerType.Mongos, + common_1.ServerType.Standalone, + common_1.ServerType.LoadBalancer +]); +/** + * The client's view of a single server, based on the most recent hello outcome. + * + * Internal type, not meant to be directly instantiated + * @public + */ +class ServerDescription { + /** + * Create a ServerDescription + * @internal + * + * @param address - The address of the server + * @param hello - An optional hello response for this server + */ + constructor(address, hello, options = {}) { + var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z; + if (address == null || address === '') { + throw new error_1.MongoRuntimeError('ServerDescription must be provided with a non-empty address'); + } + this.address = + typeof address === 'string' + ? utils_1.HostAddress.fromString(address).toString() // Use HostAddress to normalize + : address.toString(); + this.type = parseServerType(hello, options); + this.hosts = (_b = (_a = hello === null || hello === void 0 ? void 0 : hello.hosts) === null || _a === void 0 ? void 0 : _a.map((host) => host.toLowerCase())) !== null && _b !== void 0 ? _b : []; + this.passives = (_d = (_c = hello === null || hello === void 0 ? void 0 : hello.passives) === null || _c === void 0 ? void 0 : _c.map((host) => host.toLowerCase())) !== null && _d !== void 0 ? _d : []; + this.arbiters = (_f = (_e = hello === null || hello === void 0 ? void 0 : hello.arbiters) === null || _e === void 0 ? void 0 : _e.map((host) => host.toLowerCase())) !== null && _f !== void 0 ? _f : []; + this.tags = (_g = hello === null || hello === void 0 ? void 0 : hello.tags) !== null && _g !== void 0 ? _g : {}; + this.minWireVersion = (_h = hello === null || hello === void 0 ? void 0 : hello.minWireVersion) !== null && _h !== void 0 ? _h : 0; + this.maxWireVersion = (_j = hello === null || hello === void 0 ? void 0 : hello.maxWireVersion) !== null && _j !== void 0 ? _j : 0; + this.roundTripTime = (_k = options === null || options === void 0 ? void 0 : options.roundTripTime) !== null && _k !== void 0 ? _k : -1; + this.lastUpdateTime = (0, utils_1.now)(); + this.lastWriteDate = (_m = (_l = hello === null || hello === void 0 ? void 0 : hello.lastWrite) === null || _l === void 0 ? void 0 : _l.lastWriteDate) !== null && _m !== void 0 ? _m : 0; + this.error = (_o = options.error) !== null && _o !== void 0 ? _o : null; + // TODO(NODE-2674): Preserve int64 sent from MongoDB + this.topologyVersion = (_r = (_q = (_p = this.error) === null || _p === void 0 ? void 0 : _p.topologyVersion) !== null && _q !== void 0 ? _q : hello === null || hello === void 0 ? void 0 : hello.topologyVersion) !== null && _r !== void 0 ? _r : null; + this.setName = (_s = hello === null || hello === void 0 ? void 0 : hello.setName) !== null && _s !== void 0 ? _s : null; + this.setVersion = (_t = hello === null || hello === void 0 ? void 0 : hello.setVersion) !== null && _t !== void 0 ? _t : null; + this.electionId = (_u = hello === null || hello === void 0 ? void 0 : hello.electionId) !== null && _u !== void 0 ? _u : null; + this.logicalSessionTimeoutMinutes = (_v = hello === null || hello === void 0 ? void 0 : hello.logicalSessionTimeoutMinutes) !== null && _v !== void 0 ? _v : null; + this.primary = (_w = hello === null || hello === void 0 ? void 0 : hello.primary) !== null && _w !== void 0 ? _w : null; + this.me = (_y = (_x = hello === null || hello === void 0 ? void 0 : hello.me) === null || _x === void 0 ? void 0 : _x.toLowerCase()) !== null && _y !== void 0 ? _y : null; + this.$clusterTime = (_z = hello === null || hello === void 0 ? void 0 : hello.$clusterTime) !== null && _z !== void 0 ? _z : null; + } + get hostAddress() { + return utils_1.HostAddress.fromString(this.address); + } + get allHosts() { + return this.hosts.concat(this.arbiters).concat(this.passives); + } + /** Is this server available for reads*/ + get isReadable() { + return this.type === common_1.ServerType.RSSecondary || this.isWritable; + } + /** Is this server data bearing */ + get isDataBearing() { + return DATA_BEARING_SERVER_TYPES.has(this.type); + } + /** Is this server available for writes */ + get isWritable() { + return WRITABLE_SERVER_TYPES.has(this.type); + } + get host() { + const chopLength = `:${this.port}`.length; + return this.address.slice(0, -chopLength); + } + get port() { + const port = this.address.split(':').pop(); + return port ? Number.parseInt(port, 10) : 27017; + } + /** + * Determines if another `ServerDescription` is equal to this one per the rules defined + * in the {@link https://github.com/mongodb/specifications/blob/master/source/server-discovery-and-monitoring/server-discovery-and-monitoring.rst#serverdescription|SDAM spec} + */ + equals(other) { + // Despite using the comparator that would determine a nullish topologyVersion as greater than + // for equality we should only always perform direct equality comparison + const topologyVersionsEqual = this.topologyVersion === (other === null || other === void 0 ? void 0 : other.topologyVersion) || + compareTopologyVersion(this.topologyVersion, other === null || other === void 0 ? void 0 : other.topologyVersion) === 0; + const electionIdsEqual = this.electionId != null && (other === null || other === void 0 ? void 0 : other.electionId) != null + ? (0, utils_1.compareObjectId)(this.electionId, other.electionId) === 0 + : this.electionId === (other === null || other === void 0 ? void 0 : other.electionId); + return (other != null && + (0, utils_1.errorStrictEqual)(this.error, other.error) && + this.type === other.type && + this.minWireVersion === other.minWireVersion && + (0, utils_1.arrayStrictEqual)(this.hosts, other.hosts) && + tagsStrictEqual(this.tags, other.tags) && + this.setName === other.setName && + this.setVersion === other.setVersion && + electionIdsEqual && + this.primary === other.primary && + this.logicalSessionTimeoutMinutes === other.logicalSessionTimeoutMinutes && + topologyVersionsEqual); + } +} +exports.ServerDescription = ServerDescription; +// Parses a `hello` message and determines the server type +function parseServerType(hello, options) { + if (options === null || options === void 0 ? void 0 : options.loadBalanced) { + return common_1.ServerType.LoadBalancer; + } + if (!hello || !hello.ok) { + return common_1.ServerType.Unknown; + } + if (hello.isreplicaset) { + return common_1.ServerType.RSGhost; + } + if (hello.msg && hello.msg === 'isdbgrid') { + return common_1.ServerType.Mongos; + } + if (hello.setName) { + if (hello.hidden) { + return common_1.ServerType.RSOther; + } + else if (hello.isWritablePrimary) { + return common_1.ServerType.RSPrimary; + } + else if (hello.secondary) { + return common_1.ServerType.RSSecondary; + } + else if (hello.arbiterOnly) { + return common_1.ServerType.RSArbiter; + } + else { + return common_1.ServerType.RSOther; + } + } + return common_1.ServerType.Standalone; +} +exports.parseServerType = parseServerType; +function tagsStrictEqual(tags, tags2) { + const tagsKeys = Object.keys(tags); + const tags2Keys = Object.keys(tags2); + return (tagsKeys.length === tags2Keys.length && + tagsKeys.every((key) => tags2[key] === tags[key])); +} +/** + * Compares two topology versions. + * + * 1. If the response topologyVersion is unset or the ServerDescription's + * topologyVersion is null, the client MUST assume the response is more recent. + * 1. If the response's topologyVersion.processId is not equal to the + * ServerDescription's, the client MUST assume the response is more recent. + * 1. If the response's topologyVersion.processId is equal to the + * ServerDescription's, the client MUST use the counter field to determine + * which topologyVersion is more recent. + * + * ```ts + * currentTv < newTv === -1 + * currentTv === newTv === 0 + * currentTv > newTv === 1 + * ``` + */ +function compareTopologyVersion(currentTv, newTv) { + if (currentTv == null || newTv == null) { + return -1; + } + if (!currentTv.processId.equals(newTv.processId)) { + return -1; + } + // TODO(NODE-2674): Preserve int64 sent from MongoDB + const currentCounter = bson_1.Long.isLong(currentTv.counter) + ? currentTv.counter + : bson_1.Long.fromNumber(currentTv.counter); + const newCounter = bson_1.Long.isLong(newTv.counter) ? newTv.counter : bson_1.Long.fromNumber(newTv.counter); + return currentCounter.compare(newCounter); +} +exports.compareTopologyVersion = compareTopologyVersion; +//# sourceMappingURL=server_description.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/sdam/server_description.js.map b/node_modules/mongodb/lib/sdam/server_description.js.map new file mode 100644 index 000000000..2974522c1 --- /dev/null +++ b/node_modules/mongodb/lib/sdam/server_description.js.map @@ -0,0 +1 @@ +{"version":3,"file":"server_description.js","sourceRoot":"","sources":["../../src/sdam/server_description.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/sdam/server_selection.js b/node_modules/mongodb/lib/sdam/server_selection.js new file mode 100644 index 000000000..1d3c878ec --- /dev/null +++ b/node_modules/mongodb/lib/sdam/server_selection.js @@ -0,0 +1,228 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.readPreferenceServerSelector = exports.secondaryWritableServerSelector = exports.sameServerSelector = exports.writableServerSelector = exports.MIN_SECONDARY_WRITE_WIRE_VERSION = void 0; +const error_1 = require("../error"); +const read_preference_1 = require("../read_preference"); +const common_1 = require("./common"); +// max staleness constants +const IDLE_WRITE_PERIOD = 10000; +const SMALLEST_MAX_STALENESS_SECONDS = 90; +// Minimum version to try writes on secondaries. +exports.MIN_SECONDARY_WRITE_WIRE_VERSION = 13; +/** + * Returns a server selector that selects for writable servers + */ +function writableServerSelector() { + return (topologyDescription, servers) => latencyWindowReducer(topologyDescription, servers.filter((s) => s.isWritable)); +} +exports.writableServerSelector = writableServerSelector; +/** + * The purpose of this selector is to select the same server, only + * if it is in a state that it can have commands sent to it. + */ +function sameServerSelector(description) { + return (topologyDescription, servers) => { + if (!description) + return []; + // Filter the servers to match the provided description only if + // the type is not unknown. + return servers.filter(sd => { + return sd.address === description.address && sd.type !== common_1.ServerType.Unknown; + }); + }; +} +exports.sameServerSelector = sameServerSelector; +/** + * Returns a server selector that uses a read preference to select a + * server potentially for a write on a secondary. + */ +function secondaryWritableServerSelector(wireVersion, readPreference) { + // If server version < 5.0, read preference always primary. + // If server version >= 5.0... + // - If read preference is supplied, use that. + // - If no read preference is supplied, use primary. + if (!readPreference || + !wireVersion || + (wireVersion && wireVersion < exports.MIN_SECONDARY_WRITE_WIRE_VERSION)) { + return readPreferenceServerSelector(read_preference_1.ReadPreference.primary); + } + return readPreferenceServerSelector(readPreference); +} +exports.secondaryWritableServerSelector = secondaryWritableServerSelector; +/** + * Reduces the passed in array of servers by the rules of the "Max Staleness" specification + * found here: https://github.com/mongodb/specifications/blob/master/source/max-staleness/max-staleness.rst + * + * @param readPreference - The read preference providing max staleness guidance + * @param topologyDescription - The topology description + * @param servers - The list of server descriptions to be reduced + * @returns The list of servers that satisfy the requirements of max staleness + */ +function maxStalenessReducer(readPreference, topologyDescription, servers) { + if (readPreference.maxStalenessSeconds == null || readPreference.maxStalenessSeconds < 0) { + return servers; + } + const maxStaleness = readPreference.maxStalenessSeconds; + const maxStalenessVariance = (topologyDescription.heartbeatFrequencyMS + IDLE_WRITE_PERIOD) / 1000; + if (maxStaleness < maxStalenessVariance) { + throw new error_1.MongoInvalidArgumentError(`Option "maxStalenessSeconds" must be at least ${maxStalenessVariance} seconds`); + } + if (maxStaleness < SMALLEST_MAX_STALENESS_SECONDS) { + throw new error_1.MongoInvalidArgumentError(`Option "maxStalenessSeconds" must be at least ${SMALLEST_MAX_STALENESS_SECONDS} seconds`); + } + if (topologyDescription.type === common_1.TopologyType.ReplicaSetWithPrimary) { + const primary = Array.from(topologyDescription.servers.values()).filter(primaryFilter)[0]; + return servers.reduce((result, server) => { + var _a; + const stalenessMS = server.lastUpdateTime - + server.lastWriteDate - + (primary.lastUpdateTime - primary.lastWriteDate) + + topologyDescription.heartbeatFrequencyMS; + const staleness = stalenessMS / 1000; + const maxStalenessSeconds = (_a = readPreference.maxStalenessSeconds) !== null && _a !== void 0 ? _a : 0; + if (staleness <= maxStalenessSeconds) { + result.push(server); + } + return result; + }, []); + } + if (topologyDescription.type === common_1.TopologyType.ReplicaSetNoPrimary) { + if (servers.length === 0) { + return servers; + } + const sMax = servers.reduce((max, s) => s.lastWriteDate > max.lastWriteDate ? s : max); + return servers.reduce((result, server) => { + var _a; + const stalenessMS = sMax.lastWriteDate - server.lastWriteDate + topologyDescription.heartbeatFrequencyMS; + const staleness = stalenessMS / 1000; + const maxStalenessSeconds = (_a = readPreference.maxStalenessSeconds) !== null && _a !== void 0 ? _a : 0; + if (staleness <= maxStalenessSeconds) { + result.push(server); + } + return result; + }, []); + } + return servers; +} +/** + * Determines whether a server's tags match a given set of tags + * + * @param tagSet - The requested tag set to match + * @param serverTags - The server's tags + */ +function tagSetMatch(tagSet, serverTags) { + const keys = Object.keys(tagSet); + const serverTagKeys = Object.keys(serverTags); + for (let i = 0; i < keys.length; ++i) { + const key = keys[i]; + if (serverTagKeys.indexOf(key) === -1 || serverTags[key] !== tagSet[key]) { + return false; + } + } + return true; +} +/** + * Reduces a set of server descriptions based on tags requested by the read preference + * + * @param readPreference - The read preference providing the requested tags + * @param servers - The list of server descriptions to reduce + * @returns The list of servers matching the requested tags + */ +function tagSetReducer(readPreference, servers) { + if (readPreference.tags == null || + (Array.isArray(readPreference.tags) && readPreference.tags.length === 0)) { + return servers; + } + for (let i = 0; i < readPreference.tags.length; ++i) { + const tagSet = readPreference.tags[i]; + const serversMatchingTagset = servers.reduce((matched, server) => { + if (tagSetMatch(tagSet, server.tags)) + matched.push(server); + return matched; + }, []); + if (serversMatchingTagset.length) { + return serversMatchingTagset; + } + } + return []; +} +/** + * Reduces a list of servers to ensure they fall within an acceptable latency window. This is + * further specified in the "Server Selection" specification, found here: + * https://github.com/mongodb/specifications/blob/master/source/server-selection/server-selection.rst + * + * @param topologyDescription - The topology description + * @param servers - The list of servers to reduce + * @returns The servers which fall within an acceptable latency window + */ +function latencyWindowReducer(topologyDescription, servers) { + const low = servers.reduce((min, server) => min === -1 ? server.roundTripTime : Math.min(server.roundTripTime, min), -1); + const high = low + topologyDescription.localThresholdMS; + return servers.reduce((result, server) => { + if (server.roundTripTime <= high && server.roundTripTime >= low) + result.push(server); + return result; + }, []); +} +// filters +function primaryFilter(server) { + return server.type === common_1.ServerType.RSPrimary; +} +function secondaryFilter(server) { + return server.type === common_1.ServerType.RSSecondary; +} +function nearestFilter(server) { + return server.type === common_1.ServerType.RSSecondary || server.type === common_1.ServerType.RSPrimary; +} +function knownFilter(server) { + return server.type !== common_1.ServerType.Unknown; +} +function loadBalancerFilter(server) { + return server.type === common_1.ServerType.LoadBalancer; +} +/** + * Returns a function which selects servers based on a provided read preference + * + * @param readPreference - The read preference to select with + */ +function readPreferenceServerSelector(readPreference) { + if (!readPreference.isValid()) { + throw new error_1.MongoInvalidArgumentError('Invalid read preference specified'); + } + return (topologyDescription, servers) => { + const commonWireVersion = topologyDescription.commonWireVersion; + if (commonWireVersion && + readPreference.minWireVersion && + readPreference.minWireVersion > commonWireVersion) { + throw new error_1.MongoCompatibilityError(`Minimum wire version '${readPreference.minWireVersion}' required, but found '${commonWireVersion}'`); + } + if (topologyDescription.type === common_1.TopologyType.LoadBalanced) { + return servers.filter(loadBalancerFilter); + } + if (topologyDescription.type === common_1.TopologyType.Unknown) { + return []; + } + if (topologyDescription.type === common_1.TopologyType.Single || + topologyDescription.type === common_1.TopologyType.Sharded) { + return latencyWindowReducer(topologyDescription, servers.filter(knownFilter)); + } + const mode = readPreference.mode; + if (mode === read_preference_1.ReadPreference.PRIMARY) { + return servers.filter(primaryFilter); + } + if (mode === read_preference_1.ReadPreference.PRIMARY_PREFERRED) { + const result = servers.filter(primaryFilter); + if (result.length) { + return result; + } + } + const filter = mode === read_preference_1.ReadPreference.NEAREST ? nearestFilter : secondaryFilter; + const selectedServers = latencyWindowReducer(topologyDescription, tagSetReducer(readPreference, maxStalenessReducer(readPreference, topologyDescription, servers.filter(filter)))); + if (mode === read_preference_1.ReadPreference.SECONDARY_PREFERRED && selectedServers.length === 0) { + return servers.filter(primaryFilter); + } + return selectedServers; + }; +} +exports.readPreferenceServerSelector = readPreferenceServerSelector; +//# sourceMappingURL=server_selection.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/sdam/server_selection.js.map b/node_modules/mongodb/lib/sdam/server_selection.js.map new file mode 100644 index 000000000..f8a94927b --- /dev/null +++ b/node_modules/mongodb/lib/sdam/server_selection.js.map @@ -0,0 +1 @@ +{"version":3,"file":"server_selection.js","sourceRoot":"","sources":["../../src/sdam/server_selection.ts"],"names":[],"mappings":";;;AAAA,oCAA8E;AAC9E,wDAAoD;AACpD,qCAAoD;AAIpD,0BAA0B;AAC1B,MAAM,iBAAiB,GAAG,KAAK,CAAC;AAChC,MAAM,8BAA8B,GAAG,EAAE,CAAC;AAE1C,iDAAiD;AACpC,QAAA,gCAAgC,GAAG,EAAE,CAAC;AAQnD;;GAEG;AACH,SAAgB,sBAAsB;IACpC,OAAO,CACL,mBAAwC,EACxC,OAA4B,EACP,EAAE,CACvB,oBAAoB,CAClB,mBAAmB,EACnB,OAAO,CAAC,MAAM,CAAC,CAAC,CAAoB,EAAE,EAAE,CAAC,CAAC,CAAC,UAAU,CAAC,CACvD,CAAC;AACN,CAAC;AATD,wDASC;AAED;;;GAGG;AACH,SAAgB,kBAAkB,CAAC,WAA+B;IAChE,OAAO,CACL,mBAAwC,EACxC,OAA4B,EACP,EAAE;QACvB,IAAI,CAAC,WAAW;YAAE,OAAO,EAAE,CAAC;QAC5B,+DAA+D;QAC/D,2BAA2B;QAC3B,OAAO,OAAO,CAAC,MAAM,CAAC,EAAE,CAAC,EAAE;YACzB,OAAO,EAAE,CAAC,OAAO,KAAK,WAAW,CAAC,OAAO,IAAI,EAAE,CAAC,IAAI,KAAK,mBAAU,CAAC,OAAO,CAAC;QAC9E,CAAC,CAAC,CAAC;IACL,CAAC,CAAC;AACJ,CAAC;AAZD,gDAYC;AAED;;;GAGG;AACH,SAAgB,+BAA+B,CAC7C,WAAoB,EACpB,cAA+B;IAE/B,2DAA2D;IAC3D,8BAA8B;IAC9B,8CAA8C;IAC9C,oDAAoD;IACpD,IACE,CAAC,cAAc;QACf,CAAC,WAAW;QACZ,CAAC,WAAW,IAAI,WAAW,GAAG,wCAAgC,CAAC,EAC/D;QACA,OAAO,4BAA4B,CAAC,gCAAc,CAAC,OAAO,CAAC,CAAC;KAC7D;IACD,OAAO,4BAA4B,CAAC,cAAc,CAAC,CAAC;AACtD,CAAC;AAhBD,0EAgBC;AAED;;;;;;;;GAQG;AACH,SAAS,mBAAmB,CAC1B,cAA8B,EAC9B,mBAAwC,EACxC,OAA4B;IAE5B,IAAI,cAAc,CAAC,mBAAmB,IAAI,IAAI,IAAI,cAAc,CAAC,mBAAmB,GAAG,CAAC,EAAE;QACxF,OAAO,OAAO,CAAC;KAChB;IAED,MAAM,YAAY,GAAG,cAAc,CAAC,mBAAmB,CAAC;IACxD,MAAM,oBAAoB,GACxB,CAAC,mBAAmB,CAAC,oBAAoB,GAAG,iBAAiB,CAAC,GAAG,IAAI,CAAC;IACxE,IAAI,YAAY,GAAG,oBAAoB,EAAE;QACvC,MAAM,IAAI,iCAAyB,CACjC,iDAAiD,oBAAoB,UAAU,CAChF,CAAC;KACH;IAED,IAAI,YAAY,GAAG,8BAA8B,EAAE;QACjD,MAAM,IAAI,iCAAyB,CACjC,iDAAiD,8BAA8B,UAAU,CAC1F,CAAC;KACH;IAED,IAAI,mBAAmB,CAAC,IAAI,KAAK,qBAAY,CAAC,qBAAqB,EAAE;QACnE,MAAM,OAAO,GAAsB,KAAK,CAAC,IAAI,CAAC,mBAAmB,CAAC,OAAO,CAAC,MAAM,EAAE,CAAC,CAAC,MAAM,CACxF,aAAa,CACd,CAAC,CAAC,CAAC,CAAC;QAEL,OAAO,OAAO,CAAC,MAAM,CAAC,CAAC,MAA2B,EAAE,MAAyB,EAAE,EAAE;;YAC/E,MAAM,WAAW,GACf,MAAM,CAAC,cAAc;gBACrB,MAAM,CAAC,aAAa;gBACpB,CAAC,OAAO,CAAC,cAAc,GAAG,OAAO,CAAC,aAAa,CAAC;gBAChD,mBAAmB,CAAC,oBAAoB,CAAC;YAE3C,MAAM,SAAS,GAAG,WAAW,GAAG,IAAI,CAAC;YACrC,MAAM,mBAAmB,GAAG,MAAA,cAAc,CAAC,mBAAmB,mCAAI,CAAC,CAAC;YACpE,IAAI,SAAS,IAAI,mBAAmB,EAAE;gBACpC,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;aACrB;YAED,OAAO,MAAM,CAAC;QAChB,CAAC,EAAE,EAAE,CAAC,CAAC;KACR;IAED,IAAI,mBAAmB,CAAC,IAAI,KAAK,qBAAY,CAAC,mBAAmB,EAAE;QACjE,IAAI,OAAO,CAAC,MAAM,KAAK,CAAC,EAAE;YACxB,OAAO,OAAO,CAAC;SAChB;QAED,MAAM,IAAI,GAAG,OAAO,CAAC,MAAM,CAAC,CAAC,GAAsB,EAAE,CAAoB,EAAE,EAAE,CAC3E,CAAC,CAAC,aAAa,GAAG,GAAG,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAC9C,CAAC;QAEF,OAAO,OAAO,CAAC,MAAM,CAAC,CAAC,MAA2B,EAAE,MAAyB,EAAE,EAAE;;YAC/E,MAAM,WAAW,GACf,IAAI,CAAC,aAAa,GAAG,MAAM,CAAC,aAAa,GAAG,mBAAmB,CAAC,oBAAoB,CAAC;YAEvF,MAAM,SAAS,GAAG,WAAW,GAAG,IAAI,CAAC;YACrC,MAAM,mBAAmB,GAAG,MAAA,cAAc,CAAC,mBAAmB,mCAAI,CAAC,CAAC;YACpE,IAAI,SAAS,IAAI,mBAAmB,EAAE;gBACpC,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;aACrB;YAED,OAAO,MAAM,CAAC;QAChB,CAAC,EAAE,EAAE,CAAC,CAAC;KACR;IAED,OAAO,OAAO,CAAC;AACjB,CAAC;AAED;;;;;GAKG;AACH,SAAS,WAAW,CAAC,MAAc,EAAE,UAAkB;IACrD,MAAM,IAAI,GAAG,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;IACjC,MAAM,aAAa,GAAG,MAAM,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;IAC9C,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,MAAM,EAAE,EAAE,CAAC,EAAE;QACpC,MAAM,GAAG,GAAG,IAAI,CAAC,CAAC,CAAC,CAAC;QACpB,IAAI,aAAa,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,IAAI,UAAU,CAAC,GAAG,CAAC,KAAK,MAAM,CAAC,GAAG,CAAC,EAAE;YACxE,OAAO,KAAK,CAAC;SACd;KACF;IAED,OAAO,IAAI,CAAC;AACd,CAAC;AAED;;;;;;GAMG;AACH,SAAS,aAAa,CACpB,cAA8B,EAC9B,OAA4B;IAE5B,IACE,cAAc,CAAC,IAAI,IAAI,IAAI;QAC3B,CAAC,KAAK,CAAC,OAAO,CAAC,cAAc,CAAC,IAAI,CAAC,IAAI,cAAc,CAAC,IAAI,CAAC,MAAM,KAAK,CAAC,CAAC,EACxE;QACA,OAAO,OAAO,CAAC;KAChB;IAED,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,cAAc,CAAC,IAAI,CAAC,MAAM,EAAE,EAAE,CAAC,EAAE;QACnD,MAAM,MAAM,GAAG,cAAc,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;QACtC,MAAM,qBAAqB,GAAG,OAAO,CAAC,MAAM,CAC1C,CAAC,OAA4B,EAAE,MAAyB,EAAE,EAAE;YAC1D,IAAI,WAAW,CAAC,MAAM,EAAE,MAAM,CAAC,IAAI,CAAC;gBAAE,OAAO,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;YAC3D,OAAO,OAAO,CAAC;QACjB,CAAC,EACD,EAAE,CACH,CAAC;QAEF,IAAI,qBAAqB,CAAC,MAAM,EAAE;YAChC,OAAO,qBAAqB,CAAC;SAC9B;KACF;IAED,OAAO,EAAE,CAAC;AACZ,CAAC;AAED;;;;;;;;GAQG;AACH,SAAS,oBAAoB,CAC3B,mBAAwC,EACxC,OAA4B;IAE5B,MAAM,GAAG,GAAG,OAAO,CAAC,MAAM,CACxB,CAAC,GAAW,EAAE,MAAyB,EAAE,EAAE,CACzC,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,aAAa,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,MAAM,CAAC,aAAa,EAAE,GAAG,CAAC,EACzE,CAAC,CAAC,CACH,CAAC;IAEF,MAAM,IAAI,GAAG,GAAG,GAAG,mBAAmB,CAAC,gBAAgB,CAAC;IACxD,OAAO,OAAO,CAAC,MAAM,CAAC,CAAC,MAA2B,EAAE,MAAyB,EAAE,EAAE;QAC/E,IAAI,MAAM,CAAC,aAAa,IAAI,IAAI,IAAI,MAAM,CAAC,aAAa,IAAI,GAAG;YAAE,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;QACrF,OAAO,MAAM,CAAC;IAChB,CAAC,EAAE,EAAE,CAAC,CAAC;AACT,CAAC;AAED,UAAU;AACV,SAAS,aAAa,CAAC,MAAyB;IAC9C,OAAO,MAAM,CAAC,IAAI,KAAK,mBAAU,CAAC,SAAS,CAAC;AAC9C,CAAC;AAED,SAAS,eAAe,CAAC,MAAyB;IAChD,OAAO,MAAM,CAAC,IAAI,KAAK,mBAAU,CAAC,WAAW,CAAC;AAChD,CAAC;AAED,SAAS,aAAa,CAAC,MAAyB;IAC9C,OAAO,MAAM,CAAC,IAAI,KAAK,mBAAU,CAAC,WAAW,IAAI,MAAM,CAAC,IAAI,KAAK,mBAAU,CAAC,SAAS,CAAC;AACxF,CAAC;AAED,SAAS,WAAW,CAAC,MAAyB;IAC5C,OAAO,MAAM,CAAC,IAAI,KAAK,mBAAU,CAAC,OAAO,CAAC;AAC5C,CAAC;AAED,SAAS,kBAAkB,CAAC,MAAyB;IACnD,OAAO,MAAM,CAAC,IAAI,KAAK,mBAAU,CAAC,YAAY,CAAC;AACjD,CAAC;AAED;;;;GAIG;AACH,SAAgB,4BAA4B,CAAC,cAA8B;IACzE,IAAI,CAAC,cAAc,CAAC,OAAO,EAAE,EAAE;QAC7B,MAAM,IAAI,iCAAyB,CAAC,mCAAmC,CAAC,CAAC;KAC1E;IAED,OAAO,CACL,mBAAwC,EACxC,OAA4B,EACP,EAAE;QACvB,MAAM,iBAAiB,GAAG,mBAAmB,CAAC,iBAAiB,CAAC;QAChE,IACE,iBAAiB;YACjB,cAAc,CAAC,cAAc;YAC7B,cAAc,CAAC,cAAc,GAAG,iBAAiB,EACjD;YACA,MAAM,IAAI,+BAAuB,CAC/B,yBAAyB,cAAc,CAAC,cAAc,0BAA0B,iBAAiB,GAAG,CACrG,CAAC;SACH;QAED,IAAI,mBAAmB,CAAC,IAAI,KAAK,qBAAY,CAAC,YAAY,EAAE;YAC1D,OAAO,OAAO,CAAC,MAAM,CAAC,kBAAkB,CAAC,CAAC;SAC3C;QAED,IAAI,mBAAmB,CAAC,IAAI,KAAK,qBAAY,CAAC,OAAO,EAAE;YACrD,OAAO,EAAE,CAAC;SACX;QAED,IACE,mBAAmB,CAAC,IAAI,KAAK,qBAAY,CAAC,MAAM;YAChD,mBAAmB,CAAC,IAAI,KAAK,qBAAY,CAAC,OAAO,EACjD;YACA,OAAO,oBAAoB,CAAC,mBAAmB,EAAE,OAAO,CAAC,MAAM,CAAC,WAAW,CAAC,CAAC,CAAC;SAC/E;QAED,MAAM,IAAI,GAAG,cAAc,CAAC,IAAI,CAAC;QACjC,IAAI,IAAI,KAAK,gCAAc,CAAC,OAAO,EAAE;YACnC,OAAO,OAAO,CAAC,MAAM,CAAC,aAAa,CAAC,CAAC;SACtC;QAED,IAAI,IAAI,KAAK,gCAAc,CAAC,iBAAiB,EAAE;YAC7C,MAAM,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,aAAa,CAAC,CAAC;YAC7C,IAAI,MAAM,CAAC,MAAM,EAAE;gBACjB,OAAO,MAAM,CAAC;aACf;SACF;QAED,MAAM,MAAM,GAAG,IAAI,KAAK,gCAAc,CAAC,OAAO,CAAC,CAAC,CAAC,aAAa,CAAC,CAAC,CAAC,eAAe,CAAC;QACjF,MAAM,eAAe,GAAG,oBAAoB,CAC1C,mBAAmB,EACnB,aAAa,CACX,cAAc,EACd,mBAAmB,CAAC,cAAc,EAAE,mBAAmB,EAAE,OAAO,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,CACjF,CACF,CAAC;QAEF,IAAI,IAAI,KAAK,gCAAc,CAAC,mBAAmB,IAAI,eAAe,CAAC,MAAM,KAAK,CAAC,EAAE;YAC/E,OAAO,OAAO,CAAC,MAAM,CAAC,aAAa,CAAC,CAAC;SACtC;QAED,OAAO,eAAe,CAAC;IACzB,CAAC,CAAC;AACJ,CAAC;AA9DD,oEA8DC"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/sdam/srv_polling.js b/node_modules/mongodb/lib/sdam/srv_polling.js new file mode 100644 index 000000000..341557339 --- /dev/null +++ b/node_modules/mongodb/lib/sdam/srv_polling.js @@ -0,0 +1,122 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SrvPoller = exports.SrvPollingEvent = void 0; +const dns = require("dns"); +const timers_1 = require("timers"); +const error_1 = require("../error"); +const logger_1 = require("../logger"); +const mongo_types_1 = require("../mongo_types"); +const utils_1 = require("../utils"); +/** + * Determines whether a provided address matches the provided parent domain in order + * to avoid certain attack vectors. + * + * @param srvAddress - The address to check against a domain + * @param parentDomain - The domain to check the provided address against + * @returns Whether the provided address matches the parent domain + */ +function matchesParentDomain(srvAddress, parentDomain) { + const regex = /^.*?\./; + const srv = `.${srvAddress.replace(regex, '')}`; + const parent = `.${parentDomain.replace(regex, '')}`; + return srv.endsWith(parent); +} +/** + * @internal + * @category Event + */ +class SrvPollingEvent { + constructor(srvRecords) { + this.srvRecords = srvRecords; + } + hostnames() { + return new Set(this.srvRecords.map(r => utils_1.HostAddress.fromSrvRecord(r).toString())); + } +} +exports.SrvPollingEvent = SrvPollingEvent; +/** @internal */ +class SrvPoller extends mongo_types_1.TypedEventEmitter { + constructor(options) { + var _a, _b, _c; + super(); + if (!options || !options.srvHost) { + throw new error_1.MongoRuntimeError('Options for SrvPoller must exist and include srvHost'); + } + this.srvHost = options.srvHost; + this.srvMaxHosts = (_a = options.srvMaxHosts) !== null && _a !== void 0 ? _a : 0; + this.srvServiceName = (_b = options.srvServiceName) !== null && _b !== void 0 ? _b : 'mongodb'; + this.rescanSrvIntervalMS = 60000; + this.heartbeatFrequencyMS = (_c = options.heartbeatFrequencyMS) !== null && _c !== void 0 ? _c : 10000; + this.logger = new logger_1.Logger('srvPoller', options); + this.haMode = false; + this.generation = 0; + this._timeout = undefined; + } + get srvAddress() { + return `_${this.srvServiceName}._tcp.${this.srvHost}`; + } + get intervalMS() { + return this.haMode ? this.heartbeatFrequencyMS : this.rescanSrvIntervalMS; + } + start() { + if (!this._timeout) { + this.schedule(); + } + } + stop() { + if (this._timeout) { + (0, timers_1.clearTimeout)(this._timeout); + this.generation += 1; + this._timeout = undefined; + } + } + schedule() { + if (this._timeout) { + (0, timers_1.clearTimeout)(this._timeout); + } + this._timeout = (0, timers_1.setTimeout)(() => this._poll(), this.intervalMS); + } + success(srvRecords) { + this.haMode = false; + this.schedule(); + this.emit(SrvPoller.SRV_RECORD_DISCOVERY, new SrvPollingEvent(srvRecords)); + } + failure(message, obj) { + this.logger.warn(message, obj); + this.haMode = true; + this.schedule(); + } + parentDomainMismatch(srvRecord) { + this.logger.warn(`parent domain mismatch on SRV record (${srvRecord.name}:${srvRecord.port})`, srvRecord); + } + _poll() { + const generation = this.generation; + dns.resolveSrv(this.srvAddress, (err, srvRecords) => { + if (generation !== this.generation) { + return; + } + if (err) { + this.failure('DNS error', err); + return; + } + const finalAddresses = []; + for (const record of srvRecords) { + if (matchesParentDomain(record.name, this.srvHost)) { + finalAddresses.push(record); + } + else { + this.parentDomainMismatch(record); + } + } + if (!finalAddresses.length) { + this.failure('No valid addresses found at host'); + return; + } + this.success(finalAddresses); + }); + } +} +exports.SrvPoller = SrvPoller; +/** @event */ +SrvPoller.SRV_RECORD_DISCOVERY = 'srvRecordDiscovery'; +//# sourceMappingURL=srv_polling.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/sdam/srv_polling.js.map b/node_modules/mongodb/lib/sdam/srv_polling.js.map new file mode 100644 index 000000000..a8d970953 --- /dev/null +++ b/node_modules/mongodb/lib/sdam/srv_polling.js.map @@ -0,0 +1 @@ +{"version":3,"file":"srv_polling.js","sourceRoot":"","sources":["../../src/sdam/srv_polling.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/sdam/topology.js b/node_modules/mongodb/lib/sdam/topology.js new file mode 100644 index 000000000..634bb6adc --- /dev/null +++ b/node_modules/mongodb/lib/sdam/topology.js @@ -0,0 +1,655 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.ServerCapabilities = exports.Topology = void 0; +const Denque = require("denque"); +const timers_1 = require("timers"); +const util_1 = require("util"); +const bson_1 = require("../bson"); +const connection_string_1 = require("../connection_string"); +const constants_1 = require("../constants"); +const error_1 = require("../error"); +const mongo_types_1 = require("../mongo_types"); +const read_preference_1 = require("../read_preference"); +const utils_1 = require("../utils"); +const common_1 = require("./common"); +const events_1 = require("./events"); +const server_1 = require("./server"); +const server_description_1 = require("./server_description"); +const server_selection_1 = require("./server_selection"); +const srv_polling_1 = require("./srv_polling"); +const topology_description_1 = require("./topology_description"); +// Global state +let globalTopologyCounter = 0; +const stateTransition = (0, utils_1.makeStateMachine)({ + [common_1.STATE_CLOSED]: [common_1.STATE_CLOSED, common_1.STATE_CONNECTING], + [common_1.STATE_CONNECTING]: [common_1.STATE_CONNECTING, common_1.STATE_CLOSING, common_1.STATE_CONNECTED, common_1.STATE_CLOSED], + [common_1.STATE_CONNECTED]: [common_1.STATE_CONNECTED, common_1.STATE_CLOSING, common_1.STATE_CLOSED], + [common_1.STATE_CLOSING]: [common_1.STATE_CLOSING, common_1.STATE_CLOSED] +}); +/** @internal */ +const kCancelled = Symbol('cancelled'); +/** @internal */ +const kWaitQueue = Symbol('waitQueue'); +/** + * A container of server instances representing a connection to a MongoDB topology. + * @internal + */ +class Topology extends mongo_types_1.TypedEventEmitter { + /** + * @param seedlist - a list of HostAddress instances to connect to + */ + constructor(seeds, options) { + var _a; + super(); + // Legacy CSFLE support + this.bson = Object.create(null); + this.bson.serialize = bson_1.serialize; + this.bson.deserialize = bson_1.deserialize; + // Options should only be undefined in tests, MongoClient will always have defined options + options = options !== null && options !== void 0 ? options : { + hosts: [utils_1.HostAddress.fromString('localhost:27017')], + ...Object.fromEntries(connection_string_1.DEFAULT_OPTIONS.entries()), + ...Object.fromEntries(connection_string_1.FEATURE_FLAGS.entries()) + }; + if (typeof seeds === 'string') { + seeds = [utils_1.HostAddress.fromString(seeds)]; + } + else if (!Array.isArray(seeds)) { + seeds = [seeds]; + } + const seedlist = []; + for (const seed of seeds) { + if (typeof seed === 'string') { + seedlist.push(utils_1.HostAddress.fromString(seed)); + } + else if (seed instanceof utils_1.HostAddress) { + seedlist.push(seed); + } + else { + // FIXME(NODE-3483): May need to be a MongoParseError + throw new error_1.MongoRuntimeError(`Topology cannot be constructed from ${JSON.stringify(seed)}`); + } + } + const topologyType = topologyTypeFromOptions(options); + const topologyId = globalTopologyCounter++; + const selectedHosts = options.srvMaxHosts == null || + options.srvMaxHosts === 0 || + options.srvMaxHosts >= seedlist.length + ? seedlist + : (0, utils_1.shuffle)(seedlist, options.srvMaxHosts); + const serverDescriptions = new Map(); + for (const hostAddress of selectedHosts) { + serverDescriptions.set(hostAddress.toString(), new server_description_1.ServerDescription(hostAddress)); + } + this[kWaitQueue] = new Denque(); + this.s = { + // the id of this topology + id: topologyId, + // passed in options + options, + // initial seedlist of servers to connect to + seedlist, + // initial state + state: common_1.STATE_CLOSED, + // the topology description + description: new topology_description_1.TopologyDescription(topologyType, serverDescriptions, options.replicaSet, undefined, undefined, undefined, options), + serverSelectionTimeoutMS: options.serverSelectionTimeoutMS, + heartbeatFrequencyMS: options.heartbeatFrequencyMS, + minHeartbeatFrequencyMS: options.minHeartbeatFrequencyMS, + // a map of server instances to normalized addresses + servers: new Map(), + credentials: options === null || options === void 0 ? void 0 : options.credentials, + clusterTime: undefined, + // timer management + connectionTimers: new Set(), + detectShardedTopology: ev => this.detectShardedTopology(ev), + detectSrvRecords: ev => this.detectSrvRecords(ev) + }; + if (options.srvHost && !options.loadBalanced) { + this.s.srvPoller = + (_a = options.srvPoller) !== null && _a !== void 0 ? _a : new srv_polling_1.SrvPoller({ + heartbeatFrequencyMS: this.s.heartbeatFrequencyMS, + srvHost: options.srvHost, + srvMaxHosts: options.srvMaxHosts, + srvServiceName: options.srvServiceName + }); + this.on(Topology.TOPOLOGY_DESCRIPTION_CHANGED, this.s.detectShardedTopology); + } + } + detectShardedTopology(event) { + var _a, _b, _c; + const previousType = event.previousDescription.type; + const newType = event.newDescription.type; + const transitionToSharded = previousType !== common_1.TopologyType.Sharded && newType === common_1.TopologyType.Sharded; + const srvListeners = (_a = this.s.srvPoller) === null || _a === void 0 ? void 0 : _a.listeners(srv_polling_1.SrvPoller.SRV_RECORD_DISCOVERY); + const listeningToSrvPolling = !!(srvListeners === null || srvListeners === void 0 ? void 0 : srvListeners.includes(this.s.detectSrvRecords)); + if (transitionToSharded && !listeningToSrvPolling) { + (_b = this.s.srvPoller) === null || _b === void 0 ? void 0 : _b.on(srv_polling_1.SrvPoller.SRV_RECORD_DISCOVERY, this.s.detectSrvRecords); + (_c = this.s.srvPoller) === null || _c === void 0 ? void 0 : _c.start(); + } + } + detectSrvRecords(ev) { + const previousTopologyDescription = this.s.description; + this.s.description = this.s.description.updateFromSrvPollingEvent(ev, this.s.options.srvMaxHosts); + if (this.s.description === previousTopologyDescription) { + // Nothing changed, so return + return; + } + updateServers(this); + this.emit(Topology.TOPOLOGY_DESCRIPTION_CHANGED, new events_1.TopologyDescriptionChangedEvent(this.s.id, previousTopologyDescription, this.s.description)); + } + /** + * @returns A `TopologyDescription` for this topology + */ + get description() { + return this.s.description; + } + get loadBalanced() { + return this.s.options.loadBalanced; + } + get capabilities() { + return new ServerCapabilities(this.lastHello()); + } + connect(options, callback) { + var _a; + if (typeof options === 'function') + (callback = options), (options = {}); + options = options !== null && options !== void 0 ? options : {}; + if (this.s.state === common_1.STATE_CONNECTED) { + if (typeof callback === 'function') { + callback(); + } + return; + } + stateTransition(this, common_1.STATE_CONNECTING); + // emit SDAM monitoring events + this.emit(Topology.TOPOLOGY_OPENING, new events_1.TopologyOpeningEvent(this.s.id)); + // emit an event for the topology change + this.emit(Topology.TOPOLOGY_DESCRIPTION_CHANGED, new events_1.TopologyDescriptionChangedEvent(this.s.id, new topology_description_1.TopologyDescription(common_1.TopologyType.Unknown), // initial is always Unknown + this.s.description)); + // connect all known servers, then attempt server selection to connect + const serverDescriptions = Array.from(this.s.description.servers.values()); + this.s.servers = new Map(serverDescriptions.map(serverDescription => [ + serverDescription.address, + createAndConnectServer(this, serverDescription) + ])); + // In load balancer mode we need to fake a server description getting + // emitted from the monitor, since the monitor doesn't exist. + if (this.s.options.loadBalanced) { + for (const description of serverDescriptions) { + const newDescription = new server_description_1.ServerDescription(description.hostAddress, undefined, { + loadBalanced: this.s.options.loadBalanced + }); + this.serverUpdateHandler(newDescription); + } + } + const exitWithError = (error) => callback ? callback(error) : this.emit(Topology.ERROR, error); + const readPreference = (_a = options.readPreference) !== null && _a !== void 0 ? _a : read_preference_1.ReadPreference.primary; + this.selectServer((0, server_selection_1.readPreferenceServerSelector)(readPreference), options, (err, server) => { + if (err) { + return this.close({ force: false }, () => exitWithError(err)); + } + // TODO: NODE-2471 + const skipPingOnConnect = this.s.options[Symbol.for('@@mdb.skipPingOnConnect')] === true; + if (!skipPingOnConnect && server && this.s.credentials) { + server.command((0, utils_1.ns)('admin.$cmd'), { ping: 1 }, {}, err => { + if (err) { + return exitWithError(err); + } + stateTransition(this, common_1.STATE_CONNECTED); + this.emit(Topology.OPEN, this); + this.emit(Topology.CONNECT, this); + callback === null || callback === void 0 ? void 0 : callback(undefined, this); + }); + return; + } + stateTransition(this, common_1.STATE_CONNECTED); + this.emit(Topology.OPEN, this); + this.emit(Topology.CONNECT, this); + callback === null || callback === void 0 ? void 0 : callback(undefined, this); + }); + } + close(options, callback) { + if (typeof options === 'function') { + callback = options; + options = {}; + } + if (typeof options === 'boolean') { + options = { force: options }; + } + options = options !== null && options !== void 0 ? options : {}; + if (this.s.state === common_1.STATE_CLOSED || this.s.state === common_1.STATE_CLOSING) { + return callback === null || callback === void 0 ? void 0 : callback(); + } + const destroyedServers = Array.from(this.s.servers.values(), server => { + return (0, util_1.promisify)(destroyServer)(server, this, options); + }); + Promise.all(destroyedServers) + .then(() => { + this.s.servers.clear(); + stateTransition(this, common_1.STATE_CLOSING); + drainWaitQueue(this[kWaitQueue], new error_1.MongoTopologyClosedError()); + (0, common_1.drainTimerQueue)(this.s.connectionTimers); + if (this.s.srvPoller) { + this.s.srvPoller.stop(); + this.s.srvPoller.removeListener(srv_polling_1.SrvPoller.SRV_RECORD_DISCOVERY, this.s.detectSrvRecords); + } + this.removeListener(Topology.TOPOLOGY_DESCRIPTION_CHANGED, this.s.detectShardedTopology); + stateTransition(this, common_1.STATE_CLOSED); + // emit an event for close + this.emit(Topology.TOPOLOGY_CLOSED, new events_1.TopologyClosedEvent(this.s.id)); + }) + .finally(() => callback === null || callback === void 0 ? void 0 : callback()); + } + /** + * Selects a server according to the selection predicate provided + * + * @param selector - An optional selector to select servers by, defaults to a random selection within a latency window + * @param options - Optional settings related to server selection + * @param callback - The callback used to indicate success or failure + * @returns An instance of a `Server` meeting the criteria of the predicate provided + */ + selectServer(selector, options, callback) { + let serverSelector; + if (typeof selector !== 'function') { + if (typeof selector === 'string') { + serverSelector = (0, server_selection_1.readPreferenceServerSelector)(read_preference_1.ReadPreference.fromString(selector)); + } + else { + let readPreference; + if (selector instanceof read_preference_1.ReadPreference) { + readPreference = selector; + } + else { + read_preference_1.ReadPreference.translate(options); + readPreference = options.readPreference || read_preference_1.ReadPreference.primary; + } + serverSelector = (0, server_selection_1.readPreferenceServerSelector)(readPreference); + } + } + else { + serverSelector = selector; + } + options = Object.assign({}, { serverSelectionTimeoutMS: this.s.serverSelectionTimeoutMS }, options); + const isSharded = this.description.type === common_1.TopologyType.Sharded; + const session = options.session; + const transaction = session && session.transaction; + if (isSharded && transaction && transaction.server) { + callback(undefined, transaction.server); + return; + } + const waitQueueMember = { + serverSelector, + transaction, + callback + }; + const serverSelectionTimeoutMS = options.serverSelectionTimeoutMS; + if (serverSelectionTimeoutMS) { + waitQueueMember.timer = (0, timers_1.setTimeout)(() => { + waitQueueMember[kCancelled] = true; + waitQueueMember.timer = undefined; + const timeoutError = new error_1.MongoServerSelectionError(`Server selection timed out after ${serverSelectionTimeoutMS} ms`, this.description); + waitQueueMember.callback(timeoutError); + }, serverSelectionTimeoutMS); + } + this[kWaitQueue].push(waitQueueMember); + processWaitQueue(this); + } + // Sessions related methods + /** + * @returns Whether the topology should initiate selection to determine session support + */ + shouldCheckForSessionSupport() { + if (this.description.type === common_1.TopologyType.Single) { + return !this.description.hasKnownServers; + } + return !this.description.hasDataBearingServers; + } + /** + * @returns Whether sessions are supported on the current topology + */ + hasSessionSupport() { + return this.loadBalanced || this.description.logicalSessionTimeoutMinutes != null; + } + /** + * Update the internal TopologyDescription with a ServerDescription + * + * @param serverDescription - The server to update in the internal list of server descriptions + */ + serverUpdateHandler(serverDescription) { + if (!this.s.description.hasServer(serverDescription.address)) { + return; + } + // ignore this server update if its from an outdated topologyVersion + if (isStaleServerDescription(this.s.description, serverDescription)) { + return; + } + // these will be used for monitoring events later + const previousTopologyDescription = this.s.description; + const previousServerDescription = this.s.description.servers.get(serverDescription.address); + if (!previousServerDescription) { + return; + } + // Driver Sessions Spec: "Whenever a driver receives a cluster time from + // a server it MUST compare it to the current highest seen cluster time + // for the deployment. If the new cluster time is higher than the + // highest seen cluster time it MUST become the new highest seen cluster + // time. Two cluster times are compared using only the BsonTimestamp + // value of the clusterTime embedded field." + const clusterTime = serverDescription.$clusterTime; + if (clusterTime) { + (0, common_1._advanceClusterTime)(this, clusterTime); + } + // If we already know all the information contained in this updated description, then + // we don't need to emit SDAM events, but still need to update the description, in order + // to keep client-tracked attributes like last update time and round trip time up to date + const equalDescriptions = previousServerDescription && previousServerDescription.equals(serverDescription); + // first update the TopologyDescription + this.s.description = this.s.description.update(serverDescription); + if (this.s.description.compatibilityError) { + this.emit(Topology.ERROR, new error_1.MongoCompatibilityError(this.s.description.compatibilityError)); + return; + } + // emit monitoring events for this change + if (!equalDescriptions) { + const newDescription = this.s.description.servers.get(serverDescription.address); + if (newDescription) { + this.emit(Topology.SERVER_DESCRIPTION_CHANGED, new events_1.ServerDescriptionChangedEvent(this.s.id, serverDescription.address, previousServerDescription, newDescription)); + } + } + // update server list from updated descriptions + updateServers(this, serverDescription); + // attempt to resolve any outstanding server selection attempts + if (this[kWaitQueue].length > 0) { + processWaitQueue(this); + } + if (!equalDescriptions) { + this.emit(Topology.TOPOLOGY_DESCRIPTION_CHANGED, new events_1.TopologyDescriptionChangedEvent(this.s.id, previousTopologyDescription, this.s.description)); + } + } + auth(credentials, callback) { + if (typeof credentials === 'function') + (callback = credentials), (credentials = undefined); + if (typeof callback === 'function') + callback(undefined, true); + } + get clientMetadata() { + return this.s.options.metadata; + } + isConnected() { + return this.s.state === common_1.STATE_CONNECTED; + } + isDestroyed() { + return this.s.state === common_1.STATE_CLOSED; + } + /** + * @deprecated This function is deprecated and will be removed in the next major version. + */ + unref() { + (0, utils_1.emitWarning)('`unref` is a noop and will be removed in the next major version'); + } + // NOTE: There are many places in code where we explicitly check the last hello + // to do feature support detection. This should be done any other way, but for + // now we will just return the first hello seen, which should suffice. + lastHello() { + const serverDescriptions = Array.from(this.description.servers.values()); + if (serverDescriptions.length === 0) + return {}; + const sd = serverDescriptions.filter((sd) => sd.type !== common_1.ServerType.Unknown)[0]; + const result = sd || { maxWireVersion: this.description.commonWireVersion }; + return result; + } + get commonWireVersion() { + return this.description.commonWireVersion; + } + get logicalSessionTimeoutMinutes() { + return this.description.logicalSessionTimeoutMinutes; + } + get clusterTime() { + return this.s.clusterTime; + } + set clusterTime(clusterTime) { + this.s.clusterTime = clusterTime; + } +} +exports.Topology = Topology; +/** @event */ +Topology.SERVER_OPENING = constants_1.SERVER_OPENING; +/** @event */ +Topology.SERVER_CLOSED = constants_1.SERVER_CLOSED; +/** @event */ +Topology.SERVER_DESCRIPTION_CHANGED = constants_1.SERVER_DESCRIPTION_CHANGED; +/** @event */ +Topology.TOPOLOGY_OPENING = constants_1.TOPOLOGY_OPENING; +/** @event */ +Topology.TOPOLOGY_CLOSED = constants_1.TOPOLOGY_CLOSED; +/** @event */ +Topology.TOPOLOGY_DESCRIPTION_CHANGED = constants_1.TOPOLOGY_DESCRIPTION_CHANGED; +/** @event */ +Topology.ERROR = constants_1.ERROR; +/** @event */ +Topology.OPEN = constants_1.OPEN; +/** @event */ +Topology.CONNECT = constants_1.CONNECT; +/** @event */ +Topology.CLOSE = constants_1.CLOSE; +/** @event */ +Topology.TIMEOUT = constants_1.TIMEOUT; +/** Destroys a server, and removes all event listeners from the instance */ +function destroyServer(server, topology, options, callback) { + options = options !== null && options !== void 0 ? options : {}; + for (const event of constants_1.LOCAL_SERVER_EVENTS) { + server.removeAllListeners(event); + } + server.destroy(options, () => { + topology.emit(Topology.SERVER_CLOSED, new events_1.ServerClosedEvent(topology.s.id, server.description.address)); + for (const event of constants_1.SERVER_RELAY_EVENTS) { + server.removeAllListeners(event); + } + if (typeof callback === 'function') { + callback(); + } + }); +} +/** Predicts the TopologyType from options */ +function topologyTypeFromOptions(options) { + if (options === null || options === void 0 ? void 0 : options.directConnection) { + return common_1.TopologyType.Single; + } + if (options === null || options === void 0 ? void 0 : options.replicaSet) { + return common_1.TopologyType.ReplicaSetNoPrimary; + } + if (options === null || options === void 0 ? void 0 : options.loadBalanced) { + return common_1.TopologyType.LoadBalanced; + } + return common_1.TopologyType.Unknown; +} +/** + * Creates new server instances and attempts to connect them + * + * @param topology - The topology that this server belongs to + * @param serverDescription - The description for the server to initialize and connect to + */ +function createAndConnectServer(topology, serverDescription) { + topology.emit(Topology.SERVER_OPENING, new events_1.ServerOpeningEvent(topology.s.id, serverDescription.address)); + const server = new server_1.Server(topology, serverDescription, topology.s.options); + for (const event of constants_1.SERVER_RELAY_EVENTS) { + server.on(event, (e) => topology.emit(event, e)); + } + server.on(server_1.Server.DESCRIPTION_RECEIVED, description => topology.serverUpdateHandler(description)); + server.connect(); + return server; +} +/** + * @param topology - Topology to update. + * @param incomingServerDescription - New server description. + */ +function updateServers(topology, incomingServerDescription) { + // update the internal server's description + if (incomingServerDescription && topology.s.servers.has(incomingServerDescription.address)) { + const server = topology.s.servers.get(incomingServerDescription.address); + if (server) { + server.s.description = incomingServerDescription; + if (incomingServerDescription.error instanceof error_1.MongoError && + incomingServerDescription.error.hasErrorLabel(error_1.MongoErrorLabel.ResetPool)) { + server.s.pool.clear(); + } + else if (incomingServerDescription.error == null) { + const newTopologyType = topology.s.description.type; + const shouldMarkPoolReady = incomingServerDescription.isDataBearing || + (incomingServerDescription.type !== common_1.ServerType.Unknown && + newTopologyType === common_1.TopologyType.Single); + if (shouldMarkPoolReady) { + server.s.pool.ready(); + } + } + } + } + // add new servers for all descriptions we currently don't know about locally + for (const serverDescription of topology.description.servers.values()) { + if (!topology.s.servers.has(serverDescription.address)) { + const server = createAndConnectServer(topology, serverDescription); + topology.s.servers.set(serverDescription.address, server); + } + } + // for all servers no longer known, remove their descriptions and destroy their instances + for (const entry of topology.s.servers) { + const serverAddress = entry[0]; + if (topology.description.hasServer(serverAddress)) { + continue; + } + if (!topology.s.servers.has(serverAddress)) { + continue; + } + const server = topology.s.servers.get(serverAddress); + topology.s.servers.delete(serverAddress); + // prepare server for garbage collection + if (server) { + destroyServer(server, topology); + } + } +} +function drainWaitQueue(queue, err) { + while (queue.length) { + const waitQueueMember = queue.shift(); + if (!waitQueueMember) { + continue; + } + if (waitQueueMember.timer) { + (0, timers_1.clearTimeout)(waitQueueMember.timer); + } + if (!waitQueueMember[kCancelled]) { + waitQueueMember.callback(err); + } + } +} +function processWaitQueue(topology) { + if (topology.s.state === common_1.STATE_CLOSED) { + drainWaitQueue(topology[kWaitQueue], new error_1.MongoTopologyClosedError()); + return; + } + const isSharded = topology.description.type === common_1.TopologyType.Sharded; + const serverDescriptions = Array.from(topology.description.servers.values()); + const membersToProcess = topology[kWaitQueue].length; + for (let i = 0; i < membersToProcess; ++i) { + const waitQueueMember = topology[kWaitQueue].shift(); + if (!waitQueueMember) { + continue; + } + if (waitQueueMember[kCancelled]) { + continue; + } + let selectedDescriptions; + try { + const serverSelector = waitQueueMember.serverSelector; + selectedDescriptions = serverSelector + ? serverSelector(topology.description, serverDescriptions) + : serverDescriptions; + } + catch (e) { + if (waitQueueMember.timer) { + (0, timers_1.clearTimeout)(waitQueueMember.timer); + } + waitQueueMember.callback(e); + continue; + } + let selectedServer; + if (selectedDescriptions.length === 0) { + topology[kWaitQueue].push(waitQueueMember); + continue; + } + else if (selectedDescriptions.length === 1) { + selectedServer = topology.s.servers.get(selectedDescriptions[0].address); + } + else { + const descriptions = (0, utils_1.shuffle)(selectedDescriptions, 2); + const server1 = topology.s.servers.get(descriptions[0].address); + const server2 = topology.s.servers.get(descriptions[1].address); + selectedServer = + server1 && server2 && server1.s.operationCount < server2.s.operationCount + ? server1 + : server2; + } + if (!selectedServer) { + waitQueueMember.callback(new error_1.MongoServerSelectionError('server selection returned a server description but the server was not found in the topology', topology.description)); + return; + } + const transaction = waitQueueMember.transaction; + if (isSharded && transaction && transaction.isActive && selectedServer) { + transaction.pinServer(selectedServer); + } + if (waitQueueMember.timer) { + (0, timers_1.clearTimeout)(waitQueueMember.timer); + } + waitQueueMember.callback(undefined, selectedServer); + } + if (topology[kWaitQueue].length > 0) { + // ensure all server monitors attempt monitoring soon + for (const [, server] of topology.s.servers) { + process.nextTick(function scheduleServerCheck() { + return server.requestCheck(); + }); + } + } +} +function isStaleServerDescription(topologyDescription, incomingServerDescription) { + const currentServerDescription = topologyDescription.servers.get(incomingServerDescription.address); + const currentTopologyVersion = currentServerDescription === null || currentServerDescription === void 0 ? void 0 : currentServerDescription.topologyVersion; + return ((0, server_description_1.compareTopologyVersion)(currentTopologyVersion, incomingServerDescription.topologyVersion) > 0); +} +/** @public */ +class ServerCapabilities { + constructor(hello) { + this.minWireVersion = hello.minWireVersion || 0; + this.maxWireVersion = hello.maxWireVersion || 0; + } + get hasAggregationCursor() { + return this.maxWireVersion >= 1; + } + get hasWriteCommands() { + return this.maxWireVersion >= 2; + } + get hasTextSearch() { + return this.minWireVersion >= 0; + } + get hasAuthCommands() { + return this.maxWireVersion >= 1; + } + get hasListCollectionsCommand() { + return this.maxWireVersion >= 3; + } + get hasListIndexesCommand() { + return this.maxWireVersion >= 3; + } + get supportsSnapshotReads() { + return this.maxWireVersion >= 13; + } + get commandsTakeWriteConcern() { + return this.maxWireVersion >= 5; + } + get commandsTakeCollation() { + return this.maxWireVersion >= 5; + } +} +exports.ServerCapabilities = ServerCapabilities; +//# sourceMappingURL=topology.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/sdam/topology.js.map b/node_modules/mongodb/lib/sdam/topology.js.map new file mode 100644 index 000000000..a53d27104 --- /dev/null +++ b/node_modules/mongodb/lib/sdam/topology.js.map @@ -0,0 +1 @@ +{"version":3,"file":"topology.js","sourceRoot":"","sources":["../../src/sdam/topology.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/sdam/topology_description.js b/node_modules/mongodb/lib/sdam/topology_description.js new file mode 100644 index 000000000..0ec7e5988 --- /dev/null +++ b/node_modules/mongodb/lib/sdam/topology_description.js @@ -0,0 +1,340 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.TopologyDescription = void 0; +const WIRE_CONSTANTS = require("../cmap/wire_protocol/constants"); +const error_1 = require("../error"); +const utils_1 = require("../utils"); +const common_1 = require("./common"); +const server_description_1 = require("./server_description"); +// constants related to compatibility checks +const MIN_SUPPORTED_SERVER_VERSION = WIRE_CONSTANTS.MIN_SUPPORTED_SERVER_VERSION; +const MAX_SUPPORTED_SERVER_VERSION = WIRE_CONSTANTS.MAX_SUPPORTED_SERVER_VERSION; +const MIN_SUPPORTED_WIRE_VERSION = WIRE_CONSTANTS.MIN_SUPPORTED_WIRE_VERSION; +const MAX_SUPPORTED_WIRE_VERSION = WIRE_CONSTANTS.MAX_SUPPORTED_WIRE_VERSION; +const MONGOS_OR_UNKNOWN = new Set([common_1.ServerType.Mongos, common_1.ServerType.Unknown]); +const MONGOS_OR_STANDALONE = new Set([common_1.ServerType.Mongos, common_1.ServerType.Standalone]); +const NON_PRIMARY_RS_MEMBERS = new Set([ + common_1.ServerType.RSSecondary, + common_1.ServerType.RSArbiter, + common_1.ServerType.RSOther +]); +/** + * Representation of a deployment of servers + * @public + */ +class TopologyDescription { + /** + * Create a TopologyDescription + */ + constructor(topologyType, serverDescriptions = null, setName = null, maxSetVersion = null, maxElectionId = null, commonWireVersion = null, options = null) { + var _a, _b; + options = options !== null && options !== void 0 ? options : {}; + this.type = topologyType !== null && topologyType !== void 0 ? topologyType : common_1.TopologyType.Unknown; + this.servers = serverDescriptions !== null && serverDescriptions !== void 0 ? serverDescriptions : new Map(); + this.stale = false; + this.compatible = true; + this.heartbeatFrequencyMS = (_a = options.heartbeatFrequencyMS) !== null && _a !== void 0 ? _a : 0; + this.localThresholdMS = (_b = options.localThresholdMS) !== null && _b !== void 0 ? _b : 15; + this.setName = setName !== null && setName !== void 0 ? setName : null; + this.maxElectionId = maxElectionId !== null && maxElectionId !== void 0 ? maxElectionId : null; + this.maxSetVersion = maxSetVersion !== null && maxSetVersion !== void 0 ? maxSetVersion : null; + this.commonWireVersion = commonWireVersion !== null && commonWireVersion !== void 0 ? commonWireVersion : 0; + // determine server compatibility + for (const serverDescription of this.servers.values()) { + // Load balancer mode is always compatible. + if (serverDescription.type === common_1.ServerType.Unknown || + serverDescription.type === common_1.ServerType.LoadBalancer) { + continue; + } + if (serverDescription.minWireVersion > MAX_SUPPORTED_WIRE_VERSION) { + this.compatible = false; + this.compatibilityError = `Server at ${serverDescription.address} requires wire version ${serverDescription.minWireVersion}, but this version of the driver only supports up to ${MAX_SUPPORTED_WIRE_VERSION} (MongoDB ${MAX_SUPPORTED_SERVER_VERSION})`; + } + if (serverDescription.maxWireVersion < MIN_SUPPORTED_WIRE_VERSION) { + this.compatible = false; + this.compatibilityError = `Server at ${serverDescription.address} reports wire version ${serverDescription.maxWireVersion}, but this version of the driver requires at least ${MIN_SUPPORTED_WIRE_VERSION} (MongoDB ${MIN_SUPPORTED_SERVER_VERSION}).`; + break; + } + } + // Whenever a client updates the TopologyDescription from a hello response, it MUST set + // TopologyDescription.logicalSessionTimeoutMinutes to the smallest logicalSessionTimeoutMinutes + // value among ServerDescriptions of all data-bearing server types. If any have a null + // logicalSessionTimeoutMinutes, then TopologyDescription.logicalSessionTimeoutMinutes MUST be + // set to null. + this.logicalSessionTimeoutMinutes = null; + for (const [, server] of this.servers) { + if (server.isReadable) { + if (server.logicalSessionTimeoutMinutes == null) { + // If any of the servers have a null logicalSessionsTimeout, then the whole topology does + this.logicalSessionTimeoutMinutes = null; + break; + } + if (this.logicalSessionTimeoutMinutes == null) { + // First server with a non null logicalSessionsTimeout + this.logicalSessionTimeoutMinutes = server.logicalSessionTimeoutMinutes; + continue; + } + // Always select the smaller of the: + // current server logicalSessionsTimeout and the topologies logicalSessionsTimeout + this.logicalSessionTimeoutMinutes = Math.min(this.logicalSessionTimeoutMinutes, server.logicalSessionTimeoutMinutes); + } + } + } + /** + * Returns a new TopologyDescription based on the SrvPollingEvent + * @internal + */ + updateFromSrvPollingEvent(ev, srvMaxHosts = 0) { + /** The SRV addresses defines the set of addresses we should be using */ + const incomingHostnames = ev.hostnames(); + const currentHostnames = new Set(this.servers.keys()); + const hostnamesToAdd = new Set(incomingHostnames); + const hostnamesToRemove = new Set(); + for (const hostname of currentHostnames) { + // filter hostnamesToAdd (made from incomingHostnames) down to what is *not* present in currentHostnames + hostnamesToAdd.delete(hostname); + if (!incomingHostnames.has(hostname)) { + // If the SRV Records no longer include this hostname + // we have to stop using it + hostnamesToRemove.add(hostname); + } + } + if (hostnamesToAdd.size === 0 && hostnamesToRemove.size === 0) { + // No new hosts to add and none to remove + return this; + } + const serverDescriptions = new Map(this.servers); + for (const removedHost of hostnamesToRemove) { + serverDescriptions.delete(removedHost); + } + if (hostnamesToAdd.size > 0) { + if (srvMaxHosts === 0) { + // Add all! + for (const hostToAdd of hostnamesToAdd) { + serverDescriptions.set(hostToAdd, new server_description_1.ServerDescription(hostToAdd)); + } + } + else if (serverDescriptions.size < srvMaxHosts) { + // Add only the amount needed to get us back to srvMaxHosts + const selectedHosts = (0, utils_1.shuffle)(hostnamesToAdd, srvMaxHosts - serverDescriptions.size); + for (const selectedHostToAdd of selectedHosts) { + serverDescriptions.set(selectedHostToAdd, new server_description_1.ServerDescription(selectedHostToAdd)); + } + } + } + return new TopologyDescription(this.type, serverDescriptions, this.setName, this.maxSetVersion, this.maxElectionId, this.commonWireVersion, { heartbeatFrequencyMS: this.heartbeatFrequencyMS, localThresholdMS: this.localThresholdMS }); + } + /** + * Returns a copy of this description updated with a given ServerDescription + * @internal + */ + update(serverDescription) { + const address = serverDescription.address; + // potentially mutated values + let { type: topologyType, setName, maxSetVersion, maxElectionId, commonWireVersion } = this; + const serverType = serverDescription.type; + const serverDescriptions = new Map(this.servers); + // update common wire version + if (serverDescription.maxWireVersion !== 0) { + if (commonWireVersion == null) { + commonWireVersion = serverDescription.maxWireVersion; + } + else { + commonWireVersion = Math.min(commonWireVersion, serverDescription.maxWireVersion); + } + } + if (typeof serverDescription.setName === 'string' && + typeof setName === 'string' && + serverDescription.setName !== setName) { + if (topologyType === common_1.TopologyType.Single) { + // "Single" Topology with setName mismatch is direct connection usage, mark unknown do not remove + serverDescription = new server_description_1.ServerDescription(address); + } + else { + serverDescriptions.delete(address); + } + } + // update the actual server description + serverDescriptions.set(address, serverDescription); + if (topologyType === common_1.TopologyType.Single) { + // once we are defined as single, that never changes + return new TopologyDescription(common_1.TopologyType.Single, serverDescriptions, setName, maxSetVersion, maxElectionId, commonWireVersion, { heartbeatFrequencyMS: this.heartbeatFrequencyMS, localThresholdMS: this.localThresholdMS }); + } + if (topologyType === common_1.TopologyType.Unknown) { + if (serverType === common_1.ServerType.Standalone && this.servers.size !== 1) { + serverDescriptions.delete(address); + } + else { + topologyType = topologyTypeForServerType(serverType); + } + } + if (topologyType === common_1.TopologyType.Sharded) { + if (!MONGOS_OR_UNKNOWN.has(serverType)) { + serverDescriptions.delete(address); + } + } + if (topologyType === common_1.TopologyType.ReplicaSetNoPrimary) { + if (MONGOS_OR_STANDALONE.has(serverType)) { + serverDescriptions.delete(address); + } + if (serverType === common_1.ServerType.RSPrimary) { + const result = updateRsFromPrimary(serverDescriptions, serverDescription, setName, maxSetVersion, maxElectionId); + topologyType = result[0]; + setName = result[1]; + maxSetVersion = result[2]; + maxElectionId = result[3]; + } + else if (NON_PRIMARY_RS_MEMBERS.has(serverType)) { + const result = updateRsNoPrimaryFromMember(serverDescriptions, serverDescription, setName); + topologyType = result[0]; + setName = result[1]; + } + } + if (topologyType === common_1.TopologyType.ReplicaSetWithPrimary) { + if (MONGOS_OR_STANDALONE.has(serverType)) { + serverDescriptions.delete(address); + topologyType = checkHasPrimary(serverDescriptions); + } + else if (serverType === common_1.ServerType.RSPrimary) { + const result = updateRsFromPrimary(serverDescriptions, serverDescription, setName, maxSetVersion, maxElectionId); + topologyType = result[0]; + setName = result[1]; + maxSetVersion = result[2]; + maxElectionId = result[3]; + } + else if (NON_PRIMARY_RS_MEMBERS.has(serverType)) { + topologyType = updateRsWithPrimaryFromMember(serverDescriptions, serverDescription, setName); + } + else { + topologyType = checkHasPrimary(serverDescriptions); + } + } + return new TopologyDescription(topologyType, serverDescriptions, setName, maxSetVersion, maxElectionId, commonWireVersion, { heartbeatFrequencyMS: this.heartbeatFrequencyMS, localThresholdMS: this.localThresholdMS }); + } + get error() { + const descriptionsWithError = Array.from(this.servers.values()).filter((sd) => sd.error); + if (descriptionsWithError.length > 0) { + return descriptionsWithError[0].error; + } + return null; + } + /** + * Determines if the topology description has any known servers + */ + get hasKnownServers() { + return Array.from(this.servers.values()).some((sd) => sd.type !== common_1.ServerType.Unknown); + } + /** + * Determines if this topology description has a data-bearing server available. + */ + get hasDataBearingServers() { + return Array.from(this.servers.values()).some((sd) => sd.isDataBearing); + } + /** + * Determines if the topology has a definition for the provided address + * @internal + */ + hasServer(address) { + return this.servers.has(address); + } +} +exports.TopologyDescription = TopologyDescription; +function topologyTypeForServerType(serverType) { + switch (serverType) { + case common_1.ServerType.Standalone: + return common_1.TopologyType.Single; + case common_1.ServerType.Mongos: + return common_1.TopologyType.Sharded; + case common_1.ServerType.RSPrimary: + return common_1.TopologyType.ReplicaSetWithPrimary; + case common_1.ServerType.RSOther: + case common_1.ServerType.RSSecondary: + return common_1.TopologyType.ReplicaSetNoPrimary; + default: + return common_1.TopologyType.Unknown; + } +} +function updateRsFromPrimary(serverDescriptions, serverDescription, setName = null, maxSetVersion = null, maxElectionId = null) { + setName = setName || serverDescription.setName; + if (setName !== serverDescription.setName) { + serverDescriptions.delete(serverDescription.address); + return [checkHasPrimary(serverDescriptions), setName, maxSetVersion, maxElectionId]; + } + const electionId = serverDescription.electionId ? serverDescription.electionId : null; + if (serverDescription.setVersion && electionId) { + if (maxSetVersion && maxElectionId) { + if (maxSetVersion > serverDescription.setVersion || + (0, utils_1.compareObjectId)(maxElectionId, electionId) > 0) { + // this primary is stale, we must remove it + serverDescriptions.set(serverDescription.address, new server_description_1.ServerDescription(serverDescription.address)); + return [checkHasPrimary(serverDescriptions), setName, maxSetVersion, maxElectionId]; + } + } + maxElectionId = serverDescription.electionId; + } + if (serverDescription.setVersion != null && + (maxSetVersion == null || serverDescription.setVersion > maxSetVersion)) { + maxSetVersion = serverDescription.setVersion; + } + // We've heard from the primary. Is it the same primary as before? + for (const [address, server] of serverDescriptions) { + if (server.type === common_1.ServerType.RSPrimary && server.address !== serverDescription.address) { + // Reset old primary's type to Unknown. + serverDescriptions.set(address, new server_description_1.ServerDescription(server.address)); + // There can only be one primary + break; + } + } + // Discover new hosts from this primary's response. + serverDescription.allHosts.forEach((address) => { + if (!serverDescriptions.has(address)) { + serverDescriptions.set(address, new server_description_1.ServerDescription(address)); + } + }); + // Remove hosts not in the response. + const currentAddresses = Array.from(serverDescriptions.keys()); + const responseAddresses = serverDescription.allHosts; + currentAddresses + .filter((addr) => responseAddresses.indexOf(addr) === -1) + .forEach((address) => { + serverDescriptions.delete(address); + }); + return [checkHasPrimary(serverDescriptions), setName, maxSetVersion, maxElectionId]; +} +function updateRsWithPrimaryFromMember(serverDescriptions, serverDescription, setName = null) { + if (setName == null) { + // TODO(NODE-3483): should be an appropriate runtime error + throw new error_1.MongoRuntimeError('Argument "setName" is required if connected to a replica set'); + } + if (setName !== serverDescription.setName || + (serverDescription.me && serverDescription.address !== serverDescription.me)) { + serverDescriptions.delete(serverDescription.address); + } + return checkHasPrimary(serverDescriptions); +} +function updateRsNoPrimaryFromMember(serverDescriptions, serverDescription, setName = null) { + const topologyType = common_1.TopologyType.ReplicaSetNoPrimary; + setName = setName !== null && setName !== void 0 ? setName : serverDescription.setName; + if (setName !== serverDescription.setName) { + serverDescriptions.delete(serverDescription.address); + return [topologyType, setName]; + } + serverDescription.allHosts.forEach((address) => { + if (!serverDescriptions.has(address)) { + serverDescriptions.set(address, new server_description_1.ServerDescription(address)); + } + }); + if (serverDescription.me && serverDescription.address !== serverDescription.me) { + serverDescriptions.delete(serverDescription.address); + } + return [topologyType, setName]; +} +function checkHasPrimary(serverDescriptions) { + for (const serverDescription of serverDescriptions.values()) { + if (serverDescription.type === common_1.ServerType.RSPrimary) { + return common_1.TopologyType.ReplicaSetWithPrimary; + } + } + return common_1.TopologyType.ReplicaSetNoPrimary; +} +//# sourceMappingURL=topology_description.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/sdam/topology_description.js.map b/node_modules/mongodb/lib/sdam/topology_description.js.map new file mode 100644 index 000000000..07a78b2c1 --- /dev/null +++ b/node_modules/mongodb/lib/sdam/topology_description.js.map @@ -0,0 +1 @@ +{"version":3,"file":"topology_description.js","sourceRoot":"","sources":["../../src/sdam/topology_description.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/sessions.js b/node_modules/mongodb/lib/sessions.js new file mode 100644 index 000000000..6382d051a --- /dev/null +++ b/node_modules/mongodb/lib/sessions.js @@ -0,0 +1,747 @@ +"use strict"; +var _a; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.updateSessionFromResponse = exports.applySession = exports.ServerSessionPool = exports.ServerSession = exports.maybeClearPinnedConnection = exports.ClientSession = void 0; +const bson_1 = require("./bson"); +const metrics_1 = require("./cmap/metrics"); +const shared_1 = require("./cmap/wire_protocol/shared"); +const constants_1 = require("./constants"); +const error_1 = require("./error"); +const mongo_types_1 = require("./mongo_types"); +const execute_operation_1 = require("./operations/execute_operation"); +const run_command_1 = require("./operations/run_command"); +const promise_provider_1 = require("./promise_provider"); +const read_concern_1 = require("./read_concern"); +const read_preference_1 = require("./read_preference"); +const common_1 = require("./sdam/common"); +const transactions_1 = require("./transactions"); +const utils_1 = require("./utils"); +const minWireVersionForShardedTransactions = 8; +/** @internal */ +const kServerSession = Symbol('serverSession'); +/** @internal */ +const kSnapshotTime = Symbol('snapshotTime'); +/** @internal */ +const kSnapshotEnabled = Symbol('snapshotEnabled'); +/** @internal */ +const kPinnedConnection = Symbol('pinnedConnection'); +/** @internal Accumulates total number of increments to add to txnNumber when applying session to command */ +const kTxnNumberIncrement = Symbol('txnNumberIncrement'); +/** + * A class representing a client session on the server + * + * NOTE: not meant to be instantiated directly. + * @public + */ +class ClientSession extends mongo_types_1.TypedEventEmitter { + /** + * Create a client session. + * @internal + * @param client - The current client + * @param sessionPool - The server session pool (Internal Class) + * @param options - Optional settings + * @param clientOptions - Optional settings provided when creating a MongoClient + */ + constructor(client, sessionPool, options, clientOptions) { + super(); + /** @internal */ + this[_a] = false; + if (client == null) { + // TODO(NODE-3483) + throw new error_1.MongoRuntimeError('ClientSession requires a MongoClient'); + } + if (sessionPool == null || !(sessionPool instanceof ServerSessionPool)) { + // TODO(NODE-3483) + throw new error_1.MongoRuntimeError('ClientSession requires a ServerSessionPool'); + } + options = options !== null && options !== void 0 ? options : {}; + if (options.snapshot === true) { + this[kSnapshotEnabled] = true; + if (options.causalConsistency === true) { + throw new error_1.MongoInvalidArgumentError('Properties "causalConsistency" and "snapshot" are mutually exclusive'); + } + } + this.client = client; + this.sessionPool = sessionPool; + this.hasEnded = false; + this.clientOptions = clientOptions; + this.explicit = !!options.explicit; + this[kServerSession] = this.explicit ? this.sessionPool.acquire() : null; + this[kTxnNumberIncrement] = 0; + this.supports = { + causalConsistency: options.snapshot !== true && options.causalConsistency !== false + }; + this.clusterTime = options.initialClusterTime; + this.operationTime = undefined; + this.owner = options.owner; + this.defaultTransactionOptions = Object.assign({}, options.defaultTransactionOptions); + this.transaction = new transactions_1.Transaction(); + } + /** The server id associated with this session */ + get id() { + var _b; + return (_b = this[kServerSession]) === null || _b === void 0 ? void 0 : _b.id; + } + get serverSession() { + let serverSession = this[kServerSession]; + if (serverSession == null) { + if (this.explicit) { + throw new error_1.MongoRuntimeError('Unexpected null serverSession for an explicit session'); + } + if (this.hasEnded) { + throw new error_1.MongoRuntimeError('Unexpected null serverSession for an ended implicit session'); + } + serverSession = this.sessionPool.acquire(); + this[kServerSession] = serverSession; + } + return serverSession; + } + /** Whether or not this session is configured for snapshot reads */ + get snapshotEnabled() { + return this[kSnapshotEnabled]; + } + get loadBalanced() { + var _b; + return ((_b = this.client.topology) === null || _b === void 0 ? void 0 : _b.description.type) === common_1.TopologyType.LoadBalanced; + } + /** @internal */ + get pinnedConnection() { + return this[kPinnedConnection]; + } + /** @internal */ + pin(conn) { + if (this[kPinnedConnection]) { + throw TypeError('Cannot pin multiple connections to the same session'); + } + this[kPinnedConnection] = conn; + conn.emit(constants_1.PINNED, this.inTransaction() ? metrics_1.ConnectionPoolMetrics.TXN : metrics_1.ConnectionPoolMetrics.CURSOR); + } + /** @internal */ + unpin(options) { + if (this.loadBalanced) { + return maybeClearPinnedConnection(this, options); + } + this.transaction.unpinServer(); + } + get isPinned() { + return this.loadBalanced ? !!this[kPinnedConnection] : this.transaction.isPinned; + } + endSession(options, callback) { + if (typeof options === 'function') + (callback = options), (options = {}); + const finalOptions = { force: true, ...options }; + return (0, utils_1.maybePromise)(callback, done => { + if (this.hasEnded) { + maybeClearPinnedConnection(this, finalOptions); + return done(); + } + const completeEndSession = () => { + maybeClearPinnedConnection(this, finalOptions); + const serverSession = this[kServerSession]; + if (serverSession != null) { + // release the server session back to the pool + this.sessionPool.release(serverSession); + // Make sure a new serverSession never makes it onto this ClientSession + Object.defineProperty(this, kServerSession, { + value: ServerSession.clone(serverSession), + writable: false + }); + } + // mark the session as ended, and emit a signal + this.hasEnded = true; + this.emit('ended', this); + // spec indicates that we should ignore all errors for `endSessions` + done(); + }; + if (this.inTransaction()) { + // If we've reached endSession and the transaction is still active + // by default we abort it + this.abortTransaction(err => { + if (err) + return done(err); + completeEndSession(); + }); + return; + } + completeEndSession(); + }); + } + /** + * Advances the operationTime for a ClientSession. + * + * @param operationTime - the `BSON.Timestamp` of the operation type it is desired to advance to + */ + advanceOperationTime(operationTime) { + if (this.operationTime == null) { + this.operationTime = operationTime; + return; + } + if (operationTime.greaterThan(this.operationTime)) { + this.operationTime = operationTime; + } + } + /** + * Advances the clusterTime for a ClientSession to the provided clusterTime of another ClientSession + * + * @param clusterTime - the $clusterTime returned by the server from another session in the form of a document containing the `BSON.Timestamp` clusterTime and signature + */ + advanceClusterTime(clusterTime) { + var _b, _c; + if (!clusterTime || typeof clusterTime !== 'object') { + throw new error_1.MongoInvalidArgumentError('input cluster time must be an object'); + } + if (!clusterTime.clusterTime || clusterTime.clusterTime._bsontype !== 'Timestamp') { + throw new error_1.MongoInvalidArgumentError('input cluster time "clusterTime" property must be a valid BSON Timestamp'); + } + if (!clusterTime.signature || + ((_b = clusterTime.signature.hash) === null || _b === void 0 ? void 0 : _b._bsontype) !== 'Binary' || + (typeof clusterTime.signature.keyId !== 'number' && + ((_c = clusterTime.signature.keyId) === null || _c === void 0 ? void 0 : _c._bsontype) !== 'Long') // apparently we decode the key to number? + ) { + throw new error_1.MongoInvalidArgumentError('input cluster time must have a valid "signature" property with BSON Binary hash and BSON Long keyId'); + } + (0, common_1._advanceClusterTime)(this, clusterTime); + } + /** + * Used to determine if this session equals another + * + * @param session - The session to compare to + */ + equals(session) { + if (!(session instanceof ClientSession)) { + return false; + } + if (this.id == null || session.id == null) { + return false; + } + return this.id.id.buffer.equals(session.id.id.buffer); + } + /** + * Increment the transaction number on the internal ServerSession + * + * @privateRemarks + * This helper increments a value stored on the client session that will be + * added to the serverSession's txnNumber upon applying it to a command. + * This is because the serverSession is lazily acquired after a connection is obtained + */ + incrementTransactionNumber() { + this[kTxnNumberIncrement] += 1; + } + /** @returns whether this session is currently in a transaction or not */ + inTransaction() { + return this.transaction.isActive; + } + /** + * Starts a new transaction with the given options. + * + * @param options - Options for the transaction + */ + startTransaction(options) { + var _b, _c, _d, _e, _f, _g, _h, _j, _k, _l; + if (this[kSnapshotEnabled]) { + throw new error_1.MongoCompatibilityError('Transactions are not supported in snapshot sessions'); + } + if (this.inTransaction()) { + throw new error_1.MongoTransactionError('Transaction already in progress'); + } + if (this.isPinned && this.transaction.isCommitted) { + this.unpin(); + } + const topologyMaxWireVersion = (0, utils_1.maxWireVersion)(this.client.topology); + if ((0, shared_1.isSharded)(this.client.topology) && + topologyMaxWireVersion != null && + topologyMaxWireVersion < minWireVersionForShardedTransactions) { + throw new error_1.MongoCompatibilityError('Transactions are not supported on sharded clusters in MongoDB < 4.2.'); + } + // increment txnNumber + this.incrementTransactionNumber(); + // create transaction state + this.transaction = new transactions_1.Transaction({ + readConcern: (_c = (_b = options === null || options === void 0 ? void 0 : options.readConcern) !== null && _b !== void 0 ? _b : this.defaultTransactionOptions.readConcern) !== null && _c !== void 0 ? _c : (_d = this.clientOptions) === null || _d === void 0 ? void 0 : _d.readConcern, + writeConcern: (_f = (_e = options === null || options === void 0 ? void 0 : options.writeConcern) !== null && _e !== void 0 ? _e : this.defaultTransactionOptions.writeConcern) !== null && _f !== void 0 ? _f : (_g = this.clientOptions) === null || _g === void 0 ? void 0 : _g.writeConcern, + readPreference: (_j = (_h = options === null || options === void 0 ? void 0 : options.readPreference) !== null && _h !== void 0 ? _h : this.defaultTransactionOptions.readPreference) !== null && _j !== void 0 ? _j : (_k = this.clientOptions) === null || _k === void 0 ? void 0 : _k.readPreference, + maxCommitTimeMS: (_l = options === null || options === void 0 ? void 0 : options.maxCommitTimeMS) !== null && _l !== void 0 ? _l : this.defaultTransactionOptions.maxCommitTimeMS + }); + this.transaction.transition(transactions_1.TxnState.STARTING_TRANSACTION); + } + commitTransaction(callback) { + return (0, utils_1.maybePromise)(callback, cb => endTransaction(this, 'commitTransaction', cb)); + } + abortTransaction(callback) { + return (0, utils_1.maybePromise)(callback, cb => endTransaction(this, 'abortTransaction', cb)); + } + /** + * This is here to ensure that ClientSession is never serialized to BSON. + */ + toBSON() { + throw new error_1.MongoRuntimeError('ClientSession cannot be serialized to BSON.'); + } + /** + * Runs a provided callback within a transaction, retrying either the commitTransaction operation + * or entire transaction as needed (and when the error permits) to better ensure that + * the transaction can complete successfully. + * + * **IMPORTANT:** This method requires the user to return a Promise, and `await` all operations. + * Any callbacks that do not return a Promise will result in undefined behavior. + * + * @remarks + * This function: + * - Will return the command response from the final commitTransaction if every operation is successful (can be used as a truthy object) + * - Will return `undefined` if the transaction is explicitly aborted with `await session.abortTransaction()` + * - Will throw if one of the operations throws or `throw` statement is used inside the `withTransaction` callback + * + * Checkout a descriptive example here: + * @see https://www.mongodb.com/developer/quickstart/node-transactions/ + * + * @param fn - callback to run within a transaction + * @param options - optional settings for the transaction + * @returns A raw command response or undefined + */ + withTransaction(fn, options) { + const startTime = (0, utils_1.now)(); + return attemptTransaction(this, startTime, fn, options); + } +} +exports.ClientSession = ClientSession; +_a = kSnapshotEnabled; +const MAX_WITH_TRANSACTION_TIMEOUT = 120000; +const NON_DETERMINISTIC_WRITE_CONCERN_ERRORS = new Set([ + 'CannotSatisfyWriteConcern', + 'UnknownReplWriteConcern', + 'UnsatisfiableWriteConcern' +]); +function hasNotTimedOut(startTime, max) { + return (0, utils_1.calculateDurationInMs)(startTime) < max; +} +function isUnknownTransactionCommitResult(err) { + const isNonDeterministicWriteConcernError = err instanceof error_1.MongoServerError && + err.codeName && + NON_DETERMINISTIC_WRITE_CONCERN_ERRORS.has(err.codeName); + return (isMaxTimeMSExpiredError(err) || + (!isNonDeterministicWriteConcernError && + err.code !== error_1.MONGODB_ERROR_CODES.UnsatisfiableWriteConcern && + err.code !== error_1.MONGODB_ERROR_CODES.UnknownReplWriteConcern)); +} +function maybeClearPinnedConnection(session, options) { + // unpin a connection if it has been pinned + const conn = session[kPinnedConnection]; + const error = options === null || options === void 0 ? void 0 : options.error; + if (session.inTransaction() && + error && + error instanceof error_1.MongoError && + error.hasErrorLabel(error_1.MongoErrorLabel.TransientTransactionError)) { + return; + } + const topology = session.client.topology; + // NOTE: the spec talks about what to do on a network error only, but the tests seem to + // to validate that we don't unpin on _all_ errors? + if (conn && topology != null) { + const servers = Array.from(topology.s.servers.values()); + const loadBalancer = servers[0]; + if ((options === null || options === void 0 ? void 0 : options.error) == null || (options === null || options === void 0 ? void 0 : options.force)) { + loadBalancer.s.pool.checkIn(conn); + conn.emit(constants_1.UNPINNED, session.transaction.state !== transactions_1.TxnState.NO_TRANSACTION + ? metrics_1.ConnectionPoolMetrics.TXN + : metrics_1.ConnectionPoolMetrics.CURSOR); + if (options === null || options === void 0 ? void 0 : options.forceClear) { + loadBalancer.s.pool.clear(conn.serviceId); + } + } + session[kPinnedConnection] = undefined; + } +} +exports.maybeClearPinnedConnection = maybeClearPinnedConnection; +function isMaxTimeMSExpiredError(err) { + if (err == null || !(err instanceof error_1.MongoServerError)) { + return false; + } + return (err.code === error_1.MONGODB_ERROR_CODES.MaxTimeMSExpired || + (err.writeConcernError && err.writeConcernError.code === error_1.MONGODB_ERROR_CODES.MaxTimeMSExpired)); +} +function attemptTransactionCommit(session, startTime, fn, options) { + return session.commitTransaction().catch((err) => { + if (err instanceof error_1.MongoError && + hasNotTimedOut(startTime, MAX_WITH_TRANSACTION_TIMEOUT) && + !isMaxTimeMSExpiredError(err)) { + if (err.hasErrorLabel(error_1.MongoErrorLabel.UnknownTransactionCommitResult)) { + return attemptTransactionCommit(session, startTime, fn, options); + } + if (err.hasErrorLabel(error_1.MongoErrorLabel.TransientTransactionError)) { + return attemptTransaction(session, startTime, fn, options); + } + } + throw err; + }); +} +const USER_EXPLICIT_TXN_END_STATES = new Set([ + transactions_1.TxnState.NO_TRANSACTION, + transactions_1.TxnState.TRANSACTION_COMMITTED, + transactions_1.TxnState.TRANSACTION_ABORTED +]); +function userExplicitlyEndedTransaction(session) { + return USER_EXPLICIT_TXN_END_STATES.has(session.transaction.state); +} +function attemptTransaction(session, startTime, fn, options) { + var _b; + session.startTransaction(options); + let promise; + try { + promise = fn(session); + } + catch (err) { + const PromiseConstructor = (_b = promise_provider_1.PromiseProvider.get()) !== null && _b !== void 0 ? _b : Promise; + promise = PromiseConstructor.reject(err); + } + if (!(0, utils_1.isPromiseLike)(promise)) { + session.abortTransaction().catch(() => null); + throw new error_1.MongoInvalidArgumentError('Function provided to `withTransaction` must return a Promise'); + } + return promise.then(() => { + if (userExplicitlyEndedTransaction(session)) { + return; + } + return attemptTransactionCommit(session, startTime, fn, options); + }, err => { + function maybeRetryOrThrow(err) { + if (err instanceof error_1.MongoError && + err.hasErrorLabel(error_1.MongoErrorLabel.TransientTransactionError) && + hasNotTimedOut(startTime, MAX_WITH_TRANSACTION_TIMEOUT)) { + return attemptTransaction(session, startTime, fn, options); + } + if (isMaxTimeMSExpiredError(err)) { + err.addErrorLabel(error_1.MongoErrorLabel.UnknownTransactionCommitResult); + } + throw err; + } + if (session.inTransaction()) { + return session.abortTransaction().then(() => maybeRetryOrThrow(err)); + } + return maybeRetryOrThrow(err); + }); +} +function endTransaction(session, commandName, callback) { + // handle any initial problematic cases + const txnState = session.transaction.state; + if (txnState === transactions_1.TxnState.NO_TRANSACTION) { + callback(new error_1.MongoTransactionError('No transaction started')); + return; + } + if (commandName === 'commitTransaction') { + if (txnState === transactions_1.TxnState.STARTING_TRANSACTION || + txnState === transactions_1.TxnState.TRANSACTION_COMMITTED_EMPTY) { + // the transaction was never started, we can safely exit here + session.transaction.transition(transactions_1.TxnState.TRANSACTION_COMMITTED_EMPTY); + callback(); + return; + } + if (txnState === transactions_1.TxnState.TRANSACTION_ABORTED) { + callback(new error_1.MongoTransactionError('Cannot call commitTransaction after calling abortTransaction')); + return; + } + } + else { + if (txnState === transactions_1.TxnState.STARTING_TRANSACTION) { + // the transaction was never started, we can safely exit here + session.transaction.transition(transactions_1.TxnState.TRANSACTION_ABORTED); + callback(); + return; + } + if (txnState === transactions_1.TxnState.TRANSACTION_ABORTED) { + callback(new error_1.MongoTransactionError('Cannot call abortTransaction twice')); + return; + } + if (txnState === transactions_1.TxnState.TRANSACTION_COMMITTED || + txnState === transactions_1.TxnState.TRANSACTION_COMMITTED_EMPTY) { + callback(new error_1.MongoTransactionError('Cannot call abortTransaction after calling commitTransaction')); + return; + } + } + // construct and send the command + const command = { [commandName]: 1 }; + // apply a writeConcern if specified + let writeConcern; + if (session.transaction.options.writeConcern) { + writeConcern = Object.assign({}, session.transaction.options.writeConcern); + } + else if (session.clientOptions && session.clientOptions.writeConcern) { + writeConcern = { w: session.clientOptions.writeConcern.w }; + } + if (txnState === transactions_1.TxnState.TRANSACTION_COMMITTED) { + writeConcern = Object.assign({ wtimeout: 10000 }, writeConcern, { w: 'majority' }); + } + if (writeConcern) { + Object.assign(command, { writeConcern }); + } + if (commandName === 'commitTransaction' && session.transaction.options.maxTimeMS) { + Object.assign(command, { maxTimeMS: session.transaction.options.maxTimeMS }); + } + function commandHandler(error, result) { + if (commandName !== 'commitTransaction') { + session.transaction.transition(transactions_1.TxnState.TRANSACTION_ABORTED); + if (session.loadBalanced) { + maybeClearPinnedConnection(session, { force: false }); + } + // The spec indicates that we should ignore all errors on `abortTransaction` + return callback(); + } + session.transaction.transition(transactions_1.TxnState.TRANSACTION_COMMITTED); + if (error instanceof error_1.MongoError) { + if (error.hasErrorLabel(error_1.MongoErrorLabel.RetryableWriteError) || + error instanceof error_1.MongoWriteConcernError || + isMaxTimeMSExpiredError(error)) { + if (isUnknownTransactionCommitResult(error)) { + error.addErrorLabel(error_1.MongoErrorLabel.UnknownTransactionCommitResult); + // per txns spec, must unpin session in this case + session.unpin({ error }); + } + } + else if (error.hasErrorLabel(error_1.MongoErrorLabel.TransientTransactionError)) { + session.unpin({ error }); + } + } + callback(error, result); + } + if (session.transaction.recoveryToken) { + command.recoveryToken = session.transaction.recoveryToken; + } + // send the command + (0, execute_operation_1.executeOperation)(session.client, new run_command_1.RunAdminCommandOperation(undefined, command, { + session, + readPreference: read_preference_1.ReadPreference.primary, + bypassPinningCheck: true + }), (error, result) => { + if (command.abortTransaction) { + // always unpin on abort regardless of command outcome + session.unpin(); + } + if (error instanceof error_1.MongoError && error.hasErrorLabel(error_1.MongoErrorLabel.RetryableWriteError)) { + // SPEC-1185: apply majority write concern when retrying commitTransaction + if (command.commitTransaction) { + // per txns spec, must unpin session in this case + session.unpin({ force: true }); + command.writeConcern = Object.assign({ wtimeout: 10000 }, command.writeConcern, { + w: 'majority' + }); + } + return (0, execute_operation_1.executeOperation)(session.client, new run_command_1.RunAdminCommandOperation(undefined, command, { + session, + readPreference: read_preference_1.ReadPreference.primary, + bypassPinningCheck: true + }), commandHandler); + } + commandHandler(error, result); + }); +} +/** + * Reflects the existence of a session on the server. Can be reused by the session pool. + * WARNING: not meant to be instantiated directly. For internal use only. + * @public + */ +class ServerSession { + /** @internal */ + constructor() { + this.id = { id: new bson_1.Binary((0, utils_1.uuidV4)(), bson_1.Binary.SUBTYPE_UUID) }; + this.lastUse = (0, utils_1.now)(); + this.txnNumber = 0; + this.isDirty = false; + } + /** + * Determines if the server session has timed out. + * + * @param sessionTimeoutMinutes - The server's "logicalSessionTimeoutMinutes" + */ + hasTimedOut(sessionTimeoutMinutes) { + // Take the difference of the lastUse timestamp and now, which will result in a value in + // milliseconds, and then convert milliseconds to minutes to compare to `sessionTimeoutMinutes` + const idleTimeMinutes = Math.round((((0, utils_1.calculateDurationInMs)(this.lastUse) % 86400000) % 3600000) / 60000); + return idleTimeMinutes > sessionTimeoutMinutes - 1; + } + /** + * @internal + * Cloning meant to keep a readable reference to the server session data + * after ClientSession has ended + */ + static clone(serverSession) { + const arrayBuffer = new ArrayBuffer(16); + const idBytes = Buffer.from(arrayBuffer); + idBytes.set(serverSession.id.id.buffer); + const id = new bson_1.Binary(idBytes, serverSession.id.id.sub_type); + // Manual prototype construction to avoid modifying the constructor of this class + return Object.setPrototypeOf({ + id: { id }, + lastUse: serverSession.lastUse, + txnNumber: serverSession.txnNumber, + isDirty: serverSession.isDirty + }, ServerSession.prototype); + } +} +exports.ServerSession = ServerSession; +/** + * Maintains a pool of Server Sessions. + * For internal use only + * @internal + */ +class ServerSessionPool { + constructor(client) { + if (client == null) { + throw new error_1.MongoRuntimeError('ServerSessionPool requires a MongoClient'); + } + this.client = client; + this.sessions = []; + } + /** + * Acquire a Server Session from the pool. + * Iterates through each session in the pool, removing any stale sessions + * along the way. The first non-stale session found is removed from the + * pool and returned. If no non-stale session is found, a new ServerSession is created. + */ + acquire() { + var _b, _c, _d; + const sessionTimeoutMinutes = (_c = (_b = this.client.topology) === null || _b === void 0 ? void 0 : _b.logicalSessionTimeoutMinutes) !== null && _c !== void 0 ? _c : 10; + let session = null; + // Try to obtain from session pool + while (this.sessions.length > 0) { + const potentialSession = this.sessions.shift(); + if (potentialSession != null && + (!!((_d = this.client.topology) === null || _d === void 0 ? void 0 : _d.loadBalanced) || + !potentialSession.hasTimedOut(sessionTimeoutMinutes))) { + session = potentialSession; + break; + } + } + // If nothing valid came from the pool make a new one + if (session == null) { + session = new ServerSession(); + } + return session; + } + /** + * Release a session to the session pool + * Adds the session back to the session pool if the session has not timed out yet. + * This method also removes any stale sessions from the pool. + * + * @param session - The session to release to the pool + */ + release(session) { + var _b, _c, _d; + const sessionTimeoutMinutes = (_c = (_b = this.client.topology) === null || _b === void 0 ? void 0 : _b.logicalSessionTimeoutMinutes) !== null && _c !== void 0 ? _c : 10; + if (((_d = this.client.topology) === null || _d === void 0 ? void 0 : _d.loadBalanced) && !sessionTimeoutMinutes) { + this.sessions.unshift(session); + } + if (!sessionTimeoutMinutes) { + return; + } + while (this.sessions.length) { + const pooledSession = this.sessions[this.sessions.length - 1]; + if (pooledSession.hasTimedOut(sessionTimeoutMinutes)) { + this.sessions.pop(); + } + else { + break; + } + } + if (!session.hasTimedOut(sessionTimeoutMinutes)) { + if (session.isDirty) { + return; + } + // otherwise, readd this session to the session pool + this.sessions.unshift(session); + } + } +} +exports.ServerSessionPool = ServerSessionPool; +/** + * Optionally decorate a command with sessions specific keys + * + * @param session - the session tracking transaction state + * @param command - the command to decorate + * @param options - Optional settings passed to calling operation + * + * @internal + */ +function applySession(session, command, options) { + var _b, _c; + if (session.hasEnded) { + return new error_1.MongoExpiredSessionError(); + } + // May acquire serverSession here + const serverSession = session.serverSession; + if (serverSession == null) { + return new error_1.MongoRuntimeError('Unable to acquire server session'); + } + if (((_b = options.writeConcern) === null || _b === void 0 ? void 0 : _b.w) === 0) { + if (session && session.explicit) { + // Error if user provided an explicit session to an unacknowledged write (SPEC-1019) + return new error_1.MongoAPIError('Cannot have explicit session with unacknowledged writes'); + } + return; + } + // mark the last use of this session, and apply the `lsid` + serverSession.lastUse = (0, utils_1.now)(); + command.lsid = serverSession.id; + const inTxnOrTxnCommand = session.inTransaction() || (0, transactions_1.isTransactionCommand)(command); + const isRetryableWrite = !!options.willRetryWrite; + if (isRetryableWrite || inTxnOrTxnCommand) { + serverSession.txnNumber += session[kTxnNumberIncrement]; + session[kTxnNumberIncrement] = 0; + // TODO(NODE-2674): Preserve int64 sent from MongoDB + command.txnNumber = bson_1.Long.fromNumber(serverSession.txnNumber); + } + if (!inTxnOrTxnCommand) { + if (session.transaction.state !== transactions_1.TxnState.NO_TRANSACTION) { + session.transaction.transition(transactions_1.TxnState.NO_TRANSACTION); + } + if (session.supports.causalConsistency && + session.operationTime && + (0, utils_1.commandSupportsReadConcern)(command, options)) { + command.readConcern = command.readConcern || {}; + Object.assign(command.readConcern, { afterClusterTime: session.operationTime }); + } + else if (session[kSnapshotEnabled]) { + command.readConcern = command.readConcern || { level: read_concern_1.ReadConcernLevel.snapshot }; + if (session[kSnapshotTime] != null) { + Object.assign(command.readConcern, { atClusterTime: session[kSnapshotTime] }); + } + } + return; + } + // now attempt to apply transaction-specific sessions data + // `autocommit` must always be false to differentiate from retryable writes + command.autocommit = false; + if (session.transaction.state === transactions_1.TxnState.STARTING_TRANSACTION) { + session.transaction.transition(transactions_1.TxnState.TRANSACTION_IN_PROGRESS); + command.startTransaction = true; + const readConcern = session.transaction.options.readConcern || ((_c = session === null || session === void 0 ? void 0 : session.clientOptions) === null || _c === void 0 ? void 0 : _c.readConcern); + if (readConcern) { + command.readConcern = readConcern; + } + if (session.supports.causalConsistency && session.operationTime) { + command.readConcern = command.readConcern || {}; + Object.assign(command.readConcern, { afterClusterTime: session.operationTime }); + } + } + return; +} +exports.applySession = applySession; +function updateSessionFromResponse(session, document) { + var _b; + if (document.$clusterTime) { + (0, common_1._advanceClusterTime)(session, document.$clusterTime); + } + if (document.operationTime && session && session.supports.causalConsistency) { + session.advanceOperationTime(document.operationTime); + } + if (document.recoveryToken && session && session.inTransaction()) { + session.transaction._recoveryToken = document.recoveryToken; + } + if ((session === null || session === void 0 ? void 0 : session[kSnapshotEnabled]) && session[kSnapshotTime] == null) { + // find and aggregate commands return atClusterTime on the cursor + // distinct includes it in the response body + const atClusterTime = ((_b = document.cursor) === null || _b === void 0 ? void 0 : _b.atClusterTime) || document.atClusterTime; + if (atClusterTime) { + session[kSnapshotTime] = atClusterTime; + } + } +} +exports.updateSessionFromResponse = updateSessionFromResponse; +//# sourceMappingURL=sessions.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/sessions.js.map b/node_modules/mongodb/lib/sessions.js.map new file mode 100644 index 000000000..9d769a87c --- /dev/null +++ b/node_modules/mongodb/lib/sessions.js.map @@ -0,0 +1 @@ +{"version":3,"file":"sessions.js","sourceRoot":"","sources":["../src/sessions.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/sort.js b/node_modules/mongodb/lib/sort.js new file mode 100644 index 000000000..c04b6b54c --- /dev/null +++ b/node_modules/mongodb/lib/sort.js @@ -0,0 +1,97 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.formatSort = void 0; +const error_1 = require("./error"); +/** @internal */ +function prepareDirection(direction = 1) { + const value = `${direction}`.toLowerCase(); + if (isMeta(direction)) + return direction; + switch (value) { + case 'ascending': + case 'asc': + case '1': + return 1; + case 'descending': + case 'desc': + case '-1': + return -1; + default: + throw new error_1.MongoInvalidArgumentError(`Invalid sort direction: ${JSON.stringify(direction)}`); + } +} +/** @internal */ +function isMeta(t) { + return typeof t === 'object' && t != null && '$meta' in t && typeof t.$meta === 'string'; +} +/** @internal */ +function isPair(t) { + if (Array.isArray(t) && t.length === 2) { + try { + prepareDirection(t[1]); + return true; + } + catch (e) { + return false; + } + } + return false; +} +function isDeep(t) { + return Array.isArray(t) && Array.isArray(t[0]); +} +function isMap(t) { + return t instanceof Map && t.size > 0; +} +/** @internal */ +function pairToMap(v) { + return new Map([[`${v[0]}`, prepareDirection([v[1]])]]); +} +/** @internal */ +function deepToMap(t) { + const sortEntries = t.map(([k, v]) => [`${k}`, prepareDirection(v)]); + return new Map(sortEntries); +} +/** @internal */ +function stringsToMap(t) { + const sortEntries = t.map(key => [`${key}`, 1]); + return new Map(sortEntries); +} +/** @internal */ +function objectToMap(t) { + const sortEntries = Object.entries(t).map(([k, v]) => [ + `${k}`, + prepareDirection(v) + ]); + return new Map(sortEntries); +} +/** @internal */ +function mapToMap(t) { + const sortEntries = Array.from(t).map(([k, v]) => [ + `${k}`, + prepareDirection(v) + ]); + return new Map(sortEntries); +} +/** converts a Sort type into a type that is valid for the server (SortForCmd) */ +function formatSort(sort, direction) { + if (sort == null) + return undefined; + if (typeof sort === 'string') + return new Map([[sort, prepareDirection(direction)]]); + if (typeof sort !== 'object') { + throw new error_1.MongoInvalidArgumentError(`Invalid sort format: ${JSON.stringify(sort)} Sort must be a valid object`); + } + if (!Array.isArray(sort)) { + return isMap(sort) ? mapToMap(sort) : Object.keys(sort).length ? objectToMap(sort) : undefined; + } + if (!sort.length) + return undefined; + if (isDeep(sort)) + return deepToMap(sort); + if (isPair(sort)) + return pairToMap(sort); + return stringsToMap(sort); +} +exports.formatSort = formatSort; +//# sourceMappingURL=sort.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/sort.js.map b/node_modules/mongodb/lib/sort.js.map new file mode 100644 index 000000000..4072af4c8 --- /dev/null +++ b/node_modules/mongodb/lib/sort.js.map @@ -0,0 +1 @@ +{"version":3,"file":"sort.js","sourceRoot":"","sources":["../src/sort.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/transactions.js b/node_modules/mongodb/lib/transactions.js new file mode 100644 index 000000000..4982eb449 --- /dev/null +++ b/node_modules/mongodb/lib/transactions.js @@ -0,0 +1,138 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.isTransactionCommand = exports.Transaction = exports.TxnState = void 0; +const error_1 = require("./error"); +const read_concern_1 = require("./read_concern"); +const read_preference_1 = require("./read_preference"); +const write_concern_1 = require("./write_concern"); +/** @internal */ +exports.TxnState = Object.freeze({ + NO_TRANSACTION: 'NO_TRANSACTION', + STARTING_TRANSACTION: 'STARTING_TRANSACTION', + TRANSACTION_IN_PROGRESS: 'TRANSACTION_IN_PROGRESS', + TRANSACTION_COMMITTED: 'TRANSACTION_COMMITTED', + TRANSACTION_COMMITTED_EMPTY: 'TRANSACTION_COMMITTED_EMPTY', + TRANSACTION_ABORTED: 'TRANSACTION_ABORTED' +}); +const stateMachine = { + [exports.TxnState.NO_TRANSACTION]: [exports.TxnState.NO_TRANSACTION, exports.TxnState.STARTING_TRANSACTION], + [exports.TxnState.STARTING_TRANSACTION]: [ + exports.TxnState.TRANSACTION_IN_PROGRESS, + exports.TxnState.TRANSACTION_COMMITTED, + exports.TxnState.TRANSACTION_COMMITTED_EMPTY, + exports.TxnState.TRANSACTION_ABORTED + ], + [exports.TxnState.TRANSACTION_IN_PROGRESS]: [ + exports.TxnState.TRANSACTION_IN_PROGRESS, + exports.TxnState.TRANSACTION_COMMITTED, + exports.TxnState.TRANSACTION_ABORTED + ], + [exports.TxnState.TRANSACTION_COMMITTED]: [ + exports.TxnState.TRANSACTION_COMMITTED, + exports.TxnState.TRANSACTION_COMMITTED_EMPTY, + exports.TxnState.STARTING_TRANSACTION, + exports.TxnState.NO_TRANSACTION + ], + [exports.TxnState.TRANSACTION_ABORTED]: [exports.TxnState.STARTING_TRANSACTION, exports.TxnState.NO_TRANSACTION], + [exports.TxnState.TRANSACTION_COMMITTED_EMPTY]: [ + exports.TxnState.TRANSACTION_COMMITTED_EMPTY, + exports.TxnState.NO_TRANSACTION + ] +}; +const ACTIVE_STATES = new Set([ + exports.TxnState.STARTING_TRANSACTION, + exports.TxnState.TRANSACTION_IN_PROGRESS +]); +const COMMITTED_STATES = new Set([ + exports.TxnState.TRANSACTION_COMMITTED, + exports.TxnState.TRANSACTION_COMMITTED_EMPTY, + exports.TxnState.TRANSACTION_ABORTED +]); +/** + * @public + * A class maintaining state related to a server transaction. Internal Only + */ +class Transaction { + /** Create a transaction @internal */ + constructor(options) { + options = options !== null && options !== void 0 ? options : {}; + this.state = exports.TxnState.NO_TRANSACTION; + this.options = {}; + const writeConcern = write_concern_1.WriteConcern.fromOptions(options); + if (writeConcern) { + if (writeConcern.w === 0) { + throw new error_1.MongoTransactionError('Transactions do not support unacknowledged write concern'); + } + this.options.writeConcern = writeConcern; + } + if (options.readConcern) { + this.options.readConcern = read_concern_1.ReadConcern.fromOptions(options); + } + if (options.readPreference) { + this.options.readPreference = read_preference_1.ReadPreference.fromOptions(options); + } + if (options.maxCommitTimeMS) { + this.options.maxTimeMS = options.maxCommitTimeMS; + } + // TODO: This isn't technically necessary + this._pinnedServer = undefined; + this._recoveryToken = undefined; + } + /** @internal */ + get server() { + return this._pinnedServer; + } + get recoveryToken() { + return this._recoveryToken; + } + get isPinned() { + return !!this.server; + } + /** @returns Whether the transaction has started */ + get isStarting() { + return this.state === exports.TxnState.STARTING_TRANSACTION; + } + /** + * @returns Whether this session is presently in a transaction + */ + get isActive() { + return ACTIVE_STATES.has(this.state); + } + get isCommitted() { + return COMMITTED_STATES.has(this.state); + } + /** + * Transition the transaction in the state machine + * @internal + * @param nextState - The new state to transition to + */ + transition(nextState) { + const nextStates = stateMachine[this.state]; + if (nextStates && nextStates.includes(nextState)) { + this.state = nextState; + if (this.state === exports.TxnState.NO_TRANSACTION || + this.state === exports.TxnState.STARTING_TRANSACTION || + this.state === exports.TxnState.TRANSACTION_ABORTED) { + this.unpinServer(); + } + return; + } + throw new error_1.MongoRuntimeError(`Attempted illegal state transition from [${this.state}] to [${nextState}]`); + } + /** @internal */ + pinServer(server) { + if (this.isActive) { + this._pinnedServer = server; + } + } + /** @internal */ + unpinServer() { + this._pinnedServer = undefined; + } +} +exports.Transaction = Transaction; +function isTransactionCommand(command) { + return !!(command.commitTransaction || command.abortTransaction); +} +exports.isTransactionCommand = isTransactionCommand; +//# sourceMappingURL=transactions.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/transactions.js.map b/node_modules/mongodb/lib/transactions.js.map new file mode 100644 index 000000000..5e261e908 --- /dev/null +++ b/node_modules/mongodb/lib/transactions.js.map @@ -0,0 +1 @@ +{"version":3,"file":"transactions.js","sourceRoot":"","sources":["../src/transactions.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/utils.js b/node_modules/mongodb/lib/utils.js new file mode 100644 index 000000000..1869e397f --- /dev/null +++ b/node_modules/mongodb/lib/utils.js @@ -0,0 +1,1032 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.getMongoDBClientEncryption = exports.commandSupportsReadConcern = exports.shuffle = exports.parsePackageVersion = exports.supportsRetryableWrites = exports.enumToString = exports.emitWarningOnce = exports.emitWarning = exports.MONGODB_WARNING_CODE = exports.DEFAULT_PK_FACTORY = exports.HostAddress = exports.BufferPool = exports.deepCopy = exports.isRecord = exports.setDifference = exports.isHello = exports.isSuperset = exports.resolveOptions = exports.hasAtomicOperators = exports.calculateDurationInMs = exports.now = exports.makeClientMetadata = exports.makeStateMachine = exports.errorStrictEqual = exports.arrayStrictEqual = exports.eachAsyncSeries = exports.eachAsync = exports.collationNotSupported = exports.maxWireVersion = exports.uuidV4 = exports.databaseNamespace = exports.maybePromise = exports.makeCounter = exports.MongoDBNamespace = exports.ns = exports.deprecateOptions = exports.defaultMsgHandler = exports.getTopology = exports.decorateWithExplain = exports.decorateWithReadConcern = exports.decorateWithCollation = exports.isPromiseLike = exports.applyWriteConcern = exports.applyRetryableWrites = exports.filterOptions = exports.mergeOptions = exports.isObject = exports.normalizeHintField = exports.checkCollectionName = exports.MAX_JS_INT = void 0; +exports.compareObjectId = void 0; +const crypto = require("crypto"); +const os = require("os"); +const url_1 = require("url"); +const bson_1 = require("./bson"); +const constants_1 = require("./cmap/wire_protocol/constants"); +const constants_2 = require("./constants"); +const error_1 = require("./error"); +const promise_provider_1 = require("./promise_provider"); +const read_concern_1 = require("./read_concern"); +const read_preference_1 = require("./read_preference"); +const common_1 = require("./sdam/common"); +const write_concern_1 = require("./write_concern"); +exports.MAX_JS_INT = Number.MAX_SAFE_INTEGER + 1; +/** + * Throws if collectionName is not a valid mongodb collection namespace. + * @internal + */ +function checkCollectionName(collectionName) { + if ('string' !== typeof collectionName) { + throw new error_1.MongoInvalidArgumentError('Collection name must be a String'); + } + if (!collectionName || collectionName.indexOf('..') !== -1) { + throw new error_1.MongoInvalidArgumentError('Collection names cannot be empty'); + } + if (collectionName.indexOf('$') !== -1 && + collectionName.match(/((^\$cmd)|(oplog\.\$main))/) == null) { + // TODO(NODE-3483): Use MongoNamespace static method + throw new error_1.MongoInvalidArgumentError("Collection names must not contain '$'"); + } + if (collectionName.match(/^\.|\.$/) != null) { + // TODO(NODE-3483): Use MongoNamespace static method + throw new error_1.MongoInvalidArgumentError("Collection names must not start or end with '.'"); + } + // Validate that we are not passing 0x00 in the collection name + if (collectionName.indexOf('\x00') !== -1) { + // TODO(NODE-3483): Use MongoNamespace static method + throw new error_1.MongoInvalidArgumentError('Collection names cannot contain a null character'); + } +} +exports.checkCollectionName = checkCollectionName; +/** + * Ensure Hint field is in a shape we expect: + * - object of index names mapping to 1 or -1 + * - just an index name + * @internal + */ +function normalizeHintField(hint) { + let finalHint = undefined; + if (typeof hint === 'string') { + finalHint = hint; + } + else if (Array.isArray(hint)) { + finalHint = {}; + hint.forEach(param => { + finalHint[param] = 1; + }); + } + else if (hint != null && typeof hint === 'object') { + finalHint = {}; + for (const name in hint) { + finalHint[name] = hint[name]; + } + } + return finalHint; +} +exports.normalizeHintField = normalizeHintField; +const TO_STRING = (object) => Object.prototype.toString.call(object); +/** + * Checks if arg is an Object: + * - **NOTE**: the check is based on the `[Symbol.toStringTag]() === 'Object'` + * @internal + */ +function isObject(arg) { + return '[object Object]' === TO_STRING(arg); +} +exports.isObject = isObject; +/** @internal */ +function mergeOptions(target, source) { + return { ...target, ...source }; +} +exports.mergeOptions = mergeOptions; +/** @internal */ +function filterOptions(options, names) { + const filterOptions = {}; + for (const name in options) { + if (names.includes(name)) { + filterOptions[name] = options[name]; + } + } + // Filtered options + return filterOptions; +} +exports.filterOptions = filterOptions; +/** + * Applies retryWrites: true to a command if retryWrites is set on the command's database. + * @internal + * + * @param target - The target command to which we will apply retryWrites. + * @param db - The database from which we can inherit a retryWrites value. + */ +function applyRetryableWrites(target, db) { + var _a; + if (db && ((_a = db.s.options) === null || _a === void 0 ? void 0 : _a.retryWrites)) { + target.retryWrites = true; + } + return target; +} +exports.applyRetryableWrites = applyRetryableWrites; +/** + * Applies a write concern to a command based on well defined inheritance rules, optionally + * detecting support for the write concern in the first place. + * @internal + * + * @param target - the target command we will be applying the write concern to + * @param sources - sources where we can inherit default write concerns from + * @param options - optional settings passed into a command for write concern overrides + */ +function applyWriteConcern(target, sources, options) { + options = options !== null && options !== void 0 ? options : {}; + const db = sources.db; + const coll = sources.collection; + if (options.session && options.session.inTransaction()) { + // writeConcern is not allowed within a multi-statement transaction + if (target.writeConcern) { + delete target.writeConcern; + } + return target; + } + const writeConcern = write_concern_1.WriteConcern.fromOptions(options); + if (writeConcern) { + return Object.assign(target, { writeConcern }); + } + if (coll && coll.writeConcern) { + return Object.assign(target, { writeConcern: Object.assign({}, coll.writeConcern) }); + } + if (db && db.writeConcern) { + return Object.assign(target, { writeConcern: Object.assign({}, db.writeConcern) }); + } + return target; +} +exports.applyWriteConcern = applyWriteConcern; +/** + * Checks if a given value is a Promise + * + * @typeParam T - The result type of maybePromise + * @param maybePromise - An object that could be a promise + * @returns true if the provided value is a Promise + */ +function isPromiseLike(maybePromise) { + return !!maybePromise && typeof maybePromise.then === 'function'; +} +exports.isPromiseLike = isPromiseLike; +/** + * Applies collation to a given command. + * @internal + * + * @param command - the command on which to apply collation + * @param target - target of command + * @param options - options containing collation settings + */ +function decorateWithCollation(command, target, options) { + const capabilities = getTopology(target).capabilities; + if (options.collation && typeof options.collation === 'object') { + if (capabilities && capabilities.commandsTakeCollation) { + command.collation = options.collation; + } + else { + throw new error_1.MongoCompatibilityError(`Current topology does not support collation`); + } + } +} +exports.decorateWithCollation = decorateWithCollation; +/** + * Applies a read concern to a given command. + * @internal + * + * @param command - the command on which to apply the read concern + * @param coll - the parent collection of the operation calling this method + */ +function decorateWithReadConcern(command, coll, options) { + if (options && options.session && options.session.inTransaction()) { + return; + } + const readConcern = Object.assign({}, command.readConcern || {}); + if (coll.s.readConcern) { + Object.assign(readConcern, coll.s.readConcern); + } + if (Object.keys(readConcern).length > 0) { + Object.assign(command, { readConcern: readConcern }); + } +} +exports.decorateWithReadConcern = decorateWithReadConcern; +/** + * Applies an explain to a given command. + * @internal + * + * @param command - the command on which to apply the explain + * @param options - the options containing the explain verbosity + */ +function decorateWithExplain(command, explain) { + if (command.explain) { + return command; + } + return { explain: command, verbosity: explain.verbosity }; +} +exports.decorateWithExplain = decorateWithExplain; +/** + * A helper function to get the topology from a given provider. Throws + * if the topology cannot be found. + * @throws MongoNotConnectedError + * @internal + */ +function getTopology(provider) { + // MongoClient or ClientSession or AbstractCursor + if ('topology' in provider && provider.topology) { + return provider.topology; + } + else if ('s' in provider && 'client' in provider.s && provider.s.client.topology) { + return provider.s.client.topology; + } + else if ('s' in provider && 'db' in provider.s && provider.s.db.s.client.topology) { + return provider.s.db.s.client.topology; + } + throw new error_1.MongoNotConnectedError('MongoClient must be connected to perform this operation'); +} +exports.getTopology = getTopology; +/** + * Default message handler for generating deprecation warnings. + * @internal + * + * @param name - function name + * @param option - option name + * @returns warning message + */ +function defaultMsgHandler(name, option) { + return `${name} option [${option}] is deprecated and will be removed in a later version.`; +} +exports.defaultMsgHandler = defaultMsgHandler; +/** + * Deprecates a given function's options. + * @internal + * + * @param this - the bound class if this is a method + * @param config - configuration for deprecation + * @param fn - the target function of deprecation + * @returns modified function that warns once per deprecated option, and executes original function + */ +function deprecateOptions(config, fn) { + if (process.noDeprecation === true) { + return fn; + } + const msgHandler = config.msgHandler ? config.msgHandler : defaultMsgHandler; + const optionsWarned = new Set(); + function deprecated(...args) { + const options = args[config.optionsIndex]; + // ensure options is a valid, non-empty object, otherwise short-circuit + if (!isObject(options) || Object.keys(options).length === 0) { + return fn.bind(this)(...args); // call the function, no change + } + // interrupt the function call with a warning + for (const deprecatedOption of config.deprecatedOptions) { + if (deprecatedOption in options && !optionsWarned.has(deprecatedOption)) { + optionsWarned.add(deprecatedOption); + const msg = msgHandler(config.name, deprecatedOption); + emitWarning(msg); + if (this && 'getLogger' in this) { + const logger = this.getLogger(); + if (logger) { + logger.warn(msg); + } + } + } + } + return fn.bind(this)(...args); + } + // These lines copied from https://github.com/nodejs/node/blob/25e5ae41688676a5fd29b2e2e7602168eee4ceb5/lib/internal/util.js#L73-L80 + // The wrapper will keep the same prototype as fn to maintain prototype chain + Object.setPrototypeOf(deprecated, fn); + if (fn.prototype) { + // Setting this (rather than using Object.setPrototype, as above) ensures + // that calling the unwrapped constructor gives an instanceof the wrapped + // constructor. + deprecated.prototype = fn.prototype; + } + return deprecated; +} +exports.deprecateOptions = deprecateOptions; +/** @internal */ +function ns(ns) { + return MongoDBNamespace.fromString(ns); +} +exports.ns = ns; +/** @public */ +class MongoDBNamespace { + /** + * Create a namespace object + * + * @param db - database name + * @param collection - collection name + */ + constructor(db, collection) { + this.db = db; + this.collection = collection === '' ? undefined : collection; + } + toString() { + return this.collection ? `${this.db}.${this.collection}` : this.db; + } + withCollection(collection) { + return new MongoDBNamespace(this.db, collection); + } + static fromString(namespace) { + if (typeof namespace !== 'string' || namespace === '') { + // TODO(NODE-3483): Replace with MongoNamespaceError + throw new error_1.MongoRuntimeError(`Cannot parse namespace from "${namespace}"`); + } + const [db, ...collectionParts] = namespace.split('.'); + const collection = collectionParts.join('.'); + return new MongoDBNamespace(db, collection === '' ? undefined : collection); + } +} +exports.MongoDBNamespace = MongoDBNamespace; +/** @internal */ +function* makeCounter(seed = 0) { + let count = seed; + while (true) { + const newCount = count; + count += 1; + yield newCount; + } +} +exports.makeCounter = makeCounter; +/** + * Helper function for either accepting a callback, or returning a promise + * @internal + * + * @param callback - The last function argument in exposed method, controls if a Promise is returned + * @param wrapper - A function that wraps the callback + * @returns Returns void if a callback is supplied, else returns a Promise. + */ +function maybePromise(callback, wrapper) { + var _a; + const PromiseConstructor = (_a = promise_provider_1.PromiseProvider.get()) !== null && _a !== void 0 ? _a : Promise; + let result; + if (typeof callback !== 'function') { + result = new PromiseConstructor((resolve, reject) => { + callback = (err, res) => { + if (err) + return reject(err); + resolve(res); + }; + }); + } + wrapper((err, res) => { + if (err != null) { + try { + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + callback(err); + } + catch (error) { + process.nextTick(() => { + throw error; + }); + } + return; + } + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + callback(err, res); + }); + return result; +} +exports.maybePromise = maybePromise; +/** @internal */ +function databaseNamespace(ns) { + return ns.split('.')[0]; +} +exports.databaseNamespace = databaseNamespace; +/** + * Synchronously Generate a UUIDv4 + * @internal + */ +function uuidV4() { + const result = crypto.randomBytes(16); + result[6] = (result[6] & 0x0f) | 0x40; + result[8] = (result[8] & 0x3f) | 0x80; + return result; +} +exports.uuidV4 = uuidV4; +/** + * A helper function for determining `maxWireVersion` between legacy and new topology instances + * @internal + */ +function maxWireVersion(topologyOrServer) { + if (topologyOrServer) { + if (topologyOrServer.loadBalanced) { + // Since we do not have a monitor, we assume the load balanced server is always + // pointed at the latest mongodb version. There is a risk that for on-prem + // deployments that don't upgrade immediately that this could alert to the + // application that a feature is avaiable that is actually not. + return constants_1.MAX_SUPPORTED_WIRE_VERSION; + } + if (topologyOrServer.hello) { + return topologyOrServer.hello.maxWireVersion; + } + if ('lastHello' in topologyOrServer && typeof topologyOrServer.lastHello === 'function') { + const lastHello = topologyOrServer.lastHello(); + if (lastHello) { + return lastHello.maxWireVersion; + } + } + if (topologyOrServer.description && + 'maxWireVersion' in topologyOrServer.description && + topologyOrServer.description.maxWireVersion != null) { + return topologyOrServer.description.maxWireVersion; + } + } + return 0; +} +exports.maxWireVersion = maxWireVersion; +/** + * Checks that collation is supported by server. + * @internal + * + * @param server - to check against + * @param cmd - object where collation may be specified + */ +function collationNotSupported(server, cmd) { + return cmd && cmd.collation && maxWireVersion(server) < 5; +} +exports.collationNotSupported = collationNotSupported; +/** + * Applies the function `eachFn` to each item in `arr`, in parallel. + * @internal + * + * @param arr - An array of items to asynchronously iterate over + * @param eachFn - A function to call on each item of the array. The callback signature is `(item, callback)`, where the callback indicates iteration is complete. + * @param callback - The callback called after every item has been iterated + */ +function eachAsync(arr, eachFn, callback) { + arr = arr || []; + let idx = 0; + let awaiting = 0; + for (idx = 0; idx < arr.length; ++idx) { + awaiting++; + eachFn(arr[idx], eachCallback); + } + if (awaiting === 0) { + callback(); + return; + } + function eachCallback(err) { + awaiting--; + if (err) { + callback(err); + return; + } + if (idx === arr.length && awaiting <= 0) { + callback(); + } + } +} +exports.eachAsync = eachAsync; +/** @internal */ +function eachAsyncSeries(arr, eachFn, callback) { + arr = arr || []; + let idx = 0; + let awaiting = arr.length; + if (awaiting === 0) { + callback(); + return; + } + function eachCallback(err) { + idx++; + awaiting--; + if (err) { + callback(err); + return; + } + if (idx === arr.length && awaiting <= 0) { + callback(); + return; + } + eachFn(arr[idx], eachCallback); + } + eachFn(arr[idx], eachCallback); +} +exports.eachAsyncSeries = eachAsyncSeries; +/** @internal */ +function arrayStrictEqual(arr, arr2) { + if (!Array.isArray(arr) || !Array.isArray(arr2)) { + return false; + } + return arr.length === arr2.length && arr.every((elt, idx) => elt === arr2[idx]); +} +exports.arrayStrictEqual = arrayStrictEqual; +/** @internal */ +function errorStrictEqual(lhs, rhs) { + if (lhs === rhs) { + return true; + } + if (!lhs || !rhs) { + return lhs === rhs; + } + if ((lhs == null && rhs != null) || (lhs != null && rhs == null)) { + return false; + } + if (lhs.constructor.name !== rhs.constructor.name) { + return false; + } + if (lhs.message !== rhs.message) { + return false; + } + return true; +} +exports.errorStrictEqual = errorStrictEqual; +/** @internal */ +function makeStateMachine(stateTable) { + return function stateTransition(target, newState) { + const legalStates = stateTable[target.s.state]; + if (legalStates && legalStates.indexOf(newState) < 0) { + throw new error_1.MongoRuntimeError(`illegal state transition from [${target.s.state}] => [${newState}], allowed: [${legalStates}]`); + } + target.emit('stateChanged', target.s.state, newState); + target.s.state = newState; + }; +} +exports.makeStateMachine = makeStateMachine; +// eslint-disable-next-line @typescript-eslint/no-var-requires +const NODE_DRIVER_VERSION = require('../package.json').version; +function makeClientMetadata(options) { + options = options !== null && options !== void 0 ? options : {}; + const metadata = { + driver: { + name: 'nodejs', + version: NODE_DRIVER_VERSION + }, + os: { + type: os.type(), + name: process.platform, + architecture: process.arch, + version: os.release() + }, + platform: `Node.js ${process.version}, ${os.endianness()} (unified)` + }; + // support optionally provided wrapping driver info + if (options.driverInfo) { + if (options.driverInfo.name) { + metadata.driver.name = `${metadata.driver.name}|${options.driverInfo.name}`; + } + if (options.driverInfo.version) { + metadata.version = `${metadata.driver.version}|${options.driverInfo.version}`; + } + if (options.driverInfo.platform) { + metadata.platform = `${metadata.platform}|${options.driverInfo.platform}`; + } + } + if (options.appName) { + // MongoDB requires the appName not exceed a byte length of 128 + const buffer = Buffer.from(options.appName); + metadata.application = { + name: buffer.byteLength > 128 ? buffer.slice(0, 128).toString('utf8') : options.appName + }; + } + return metadata; +} +exports.makeClientMetadata = makeClientMetadata; +/** @internal */ +function now() { + const hrtime = process.hrtime(); + return Math.floor(hrtime[0] * 1000 + hrtime[1] / 1000000); +} +exports.now = now; +/** @internal */ +function calculateDurationInMs(started) { + if (typeof started !== 'number') { + throw new error_1.MongoInvalidArgumentError('Numeric value required to calculate duration'); + } + const elapsed = now() - started; + return elapsed < 0 ? 0 : elapsed; +} +exports.calculateDurationInMs = calculateDurationInMs; +/** @internal */ +function hasAtomicOperators(doc) { + if (Array.isArray(doc)) { + for (const document of doc) { + if (hasAtomicOperators(document)) { + return true; + } + } + return false; + } + const keys = Object.keys(doc); + return keys.length > 0 && keys[0][0] === '$'; +} +exports.hasAtomicOperators = hasAtomicOperators; +/** + * Merge inherited properties from parent into options, prioritizing values from options, + * then values from parent. + * @internal + */ +function resolveOptions(parent, options) { + var _a, _b, _c; + const result = Object.assign({}, options, (0, bson_1.resolveBSONOptions)(options, parent)); + // Users cannot pass a readConcern/writeConcern to operations in a transaction + const session = options === null || options === void 0 ? void 0 : options.session; + if (!(session === null || session === void 0 ? void 0 : session.inTransaction())) { + const readConcern = (_a = read_concern_1.ReadConcern.fromOptions(options)) !== null && _a !== void 0 ? _a : parent === null || parent === void 0 ? void 0 : parent.readConcern; + if (readConcern) { + result.readConcern = readConcern; + } + const writeConcern = (_b = write_concern_1.WriteConcern.fromOptions(options)) !== null && _b !== void 0 ? _b : parent === null || parent === void 0 ? void 0 : parent.writeConcern; + if (writeConcern) { + result.writeConcern = writeConcern; + } + } + const readPreference = (_c = read_preference_1.ReadPreference.fromOptions(options)) !== null && _c !== void 0 ? _c : parent === null || parent === void 0 ? void 0 : parent.readPreference; + if (readPreference) { + result.readPreference = readPreference; + } + return result; +} +exports.resolveOptions = resolveOptions; +function isSuperset(set, subset) { + set = Array.isArray(set) ? new Set(set) : set; + subset = Array.isArray(subset) ? new Set(subset) : subset; + for (const elem of subset) { + if (!set.has(elem)) { + return false; + } + } + return true; +} +exports.isSuperset = isSuperset; +/** + * Checks if the document is a Hello request + * @internal + */ +function isHello(doc) { + return doc[constants_2.LEGACY_HELLO_COMMAND] || doc.hello ? true : false; +} +exports.isHello = isHello; +/** Returns the items that are uniquely in setA */ +function setDifference(setA, setB) { + const difference = new Set(setA); + for (const elem of setB) { + difference.delete(elem); + } + return difference; +} +exports.setDifference = setDifference; +const HAS_OWN = (object, prop) => Object.prototype.hasOwnProperty.call(object, prop); +function isRecord(value, requiredKeys = undefined) { + if (!isObject(value)) { + return false; + } + const ctor = value.constructor; + if (ctor && ctor.prototype) { + if (!isObject(ctor.prototype)) { + return false; + } + // Check to see if some method exists from the Object exists + if (!HAS_OWN(ctor.prototype, 'isPrototypeOf')) { + return false; + } + } + if (requiredKeys) { + const keys = Object.keys(value); + return isSuperset(keys, requiredKeys); + } + return true; +} +exports.isRecord = isRecord; +/** + * Make a deep copy of an object + * + * NOTE: This is not meant to be the perfect implementation of a deep copy, + * but instead something that is good enough for the purposes of + * command monitoring. + */ +function deepCopy(value) { + if (value == null) { + return value; + } + else if (Array.isArray(value)) { + return value.map(item => deepCopy(item)); + } + else if (isRecord(value)) { + const res = {}; + for (const key in value) { + res[key] = deepCopy(value[key]); + } + return res; + } + const ctor = value.constructor; + if (ctor) { + switch (ctor.name.toLowerCase()) { + case 'date': + return new ctor(Number(value)); + case 'map': + return new Map(value); + case 'set': + return new Set(value); + case 'buffer': + return Buffer.from(value); + } + } + return value; +} +exports.deepCopy = deepCopy; +/** @internal */ +const kBuffers = Symbol('buffers'); +/** @internal */ +const kLength = Symbol('length'); +/** + * A pool of Buffers which allow you to read them as if they were one + * @internal + */ +class BufferPool { + constructor() { + this[kBuffers] = []; + this[kLength] = 0; + } + get length() { + return this[kLength]; + } + /** Adds a buffer to the internal buffer pool list */ + append(buffer) { + this[kBuffers].push(buffer); + this[kLength] += buffer.length; + } + /** Returns the requested number of bytes without consuming them */ + peek(size) { + return this.read(size, false); + } + /** Reads the requested number of bytes, optionally consuming them */ + read(size, consume = true) { + if (typeof size !== 'number' || size < 0) { + throw new error_1.MongoInvalidArgumentError('Argument "size" must be a non-negative number'); + } + if (size > this[kLength]) { + return Buffer.alloc(0); + } + let result; + // read the whole buffer + if (size === this.length) { + result = Buffer.concat(this[kBuffers]); + if (consume) { + this[kBuffers] = []; + this[kLength] = 0; + } + } + // size is within first buffer, no need to concat + else if (size <= this[kBuffers][0].length) { + result = this[kBuffers][0].slice(0, size); + if (consume) { + this[kBuffers][0] = this[kBuffers][0].slice(size); + this[kLength] -= size; + } + } + // size is beyond first buffer, need to track and copy + else { + result = Buffer.allocUnsafe(size); + let idx; + let offset = 0; + let bytesToCopy = size; + for (idx = 0; idx < this[kBuffers].length; ++idx) { + let bytesCopied; + if (bytesToCopy > this[kBuffers][idx].length) { + bytesCopied = this[kBuffers][idx].copy(result, offset, 0); + offset += bytesCopied; + } + else { + bytesCopied = this[kBuffers][idx].copy(result, offset, 0, bytesToCopy); + if (consume) { + this[kBuffers][idx] = this[kBuffers][idx].slice(bytesCopied); + } + offset += bytesCopied; + break; + } + bytesToCopy -= bytesCopied; + } + // compact the internal buffer array + if (consume) { + this[kBuffers] = this[kBuffers].slice(idx); + this[kLength] -= size; + } + } + return result; + } +} +exports.BufferPool = BufferPool; +/** @public */ +class HostAddress { + constructor(hostString) { + this.host = undefined; + this.port = undefined; + this.socketPath = undefined; + this.isIPv6 = false; + const escapedHost = hostString.split(' ').join('%20'); // escape spaces, for socket path hosts + if (escapedHost.endsWith('.sock')) { + // heuristically determine if we're working with a domain socket + this.socketPath = decodeURIComponent(escapedHost); + return; + } + const urlString = `iLoveJS://${escapedHost}`; + let url; + try { + url = new url_1.URL(urlString); + } + catch (urlError) { + const runtimeError = new error_1.MongoRuntimeError(`Unable to parse ${escapedHost} with URL`); + runtimeError.cause = urlError; + throw runtimeError; + } + const hostname = url.hostname; + const port = url.port; + let normalized = decodeURIComponent(hostname).toLowerCase(); + if (normalized.startsWith('[') && normalized.endsWith(']')) { + this.isIPv6 = true; + normalized = normalized.substring(1, hostname.length - 1); + } + this.host = normalized.toLowerCase(); + if (typeof port === 'number') { + this.port = port; + } + else if (typeof port === 'string' && port !== '') { + this.port = Number.parseInt(port, 10); + } + else { + this.port = 27017; + } + if (this.port === 0) { + throw new error_1.MongoParseError('Invalid port (zero) with hostname'); + } + Object.freeze(this); + } + [Symbol.for('nodejs.util.inspect.custom')]() { + return this.inspect(); + } + inspect() { + return `new HostAddress('${this.toString()}')`; + } + toString() { + if (typeof this.host === 'string') { + if (this.isIPv6) { + return `[${this.host}]:${this.port}`; + } + return `${this.host}:${this.port}`; + } + return `${this.socketPath}`; + } + static fromString(s) { + return new HostAddress(s); + } + static fromHostPort(host, port) { + if (host.includes(':')) { + host = `[${host}]`; // IPv6 address + } + return HostAddress.fromString(`${host}:${port}`); + } + static fromSrvRecord({ name, port }) { + return HostAddress.fromHostPort(name, port); + } +} +exports.HostAddress = HostAddress; +exports.DEFAULT_PK_FACTORY = { + // We prefer not to rely on ObjectId having a createPk method + createPk() { + return new bson_1.ObjectId(); + } +}; +/** + * When the driver used emitWarning the code will be equal to this. + * @public + * + * @example + * ```ts + * process.on('warning', (warning) => { + * if (warning.code === MONGODB_WARNING_CODE) console.error('Ah an important warning! :)') + * }) + * ``` + */ +exports.MONGODB_WARNING_CODE = 'MONGODB DRIVER'; +/** @internal */ +function emitWarning(message) { + return process.emitWarning(message, { code: exports.MONGODB_WARNING_CODE }); +} +exports.emitWarning = emitWarning; +const emittedWarnings = new Set(); +/** + * Will emit a warning once for the duration of the application. + * Uses the message to identify if it has already been emitted + * so using string interpolation can cause multiple emits + * @internal + */ +function emitWarningOnce(message) { + if (!emittedWarnings.has(message)) { + emittedWarnings.add(message); + return emitWarning(message); + } +} +exports.emitWarningOnce = emitWarningOnce; +/** + * Takes a JS object and joins the values into a string separated by ', ' + */ +function enumToString(en) { + return Object.values(en).join(', '); +} +exports.enumToString = enumToString; +/** + * Determine if a server supports retryable writes. + * + * @internal + */ +function supportsRetryableWrites(server) { + if (!server) { + return false; + } + if (server.loadBalanced) { + // Loadbalanced topologies will always support retry writes + return true; + } + if (server.description.logicalSessionTimeoutMinutes != null) { + // that supports sessions + if (server.description.type !== common_1.ServerType.Standalone) { + // and that is not a standalone + return true; + } + } + return false; +} +exports.supportsRetryableWrites = supportsRetryableWrites; +function parsePackageVersion({ version }) { + const [major, minor, patch] = version.split('.').map((n) => Number.parseInt(n, 10)); + return { major, minor, patch }; +} +exports.parsePackageVersion = parsePackageVersion; +/** + * Fisher–Yates Shuffle + * + * Reference: https://bost.ocks.org/mike/shuffle/ + * @param sequence - items to be shuffled + * @param limit - Defaults to `0`. If nonzero shuffle will slice the randomized array e.g, `.slice(0, limit)` otherwise will return the entire randomized array. + */ +function shuffle(sequence, limit = 0) { + const items = Array.from(sequence); // shallow copy in order to never shuffle the input + if (limit > items.length) { + throw new error_1.MongoRuntimeError('Limit must be less than the number of items'); + } + let remainingItemsToShuffle = items.length; + const lowerBound = limit % items.length === 0 ? 1 : items.length - limit; + while (remainingItemsToShuffle > lowerBound) { + // Pick a remaining element + const randomIndex = Math.floor(Math.random() * remainingItemsToShuffle); + remainingItemsToShuffle -= 1; + // And swap it with the current element + const swapHold = items[remainingItemsToShuffle]; + items[remainingItemsToShuffle] = items[randomIndex]; + items[randomIndex] = swapHold; + } + return limit % items.length === 0 ? items : items.slice(lowerBound); +} +exports.shuffle = shuffle; +// TODO: this should be codified in command construction +// @see https://github.com/mongodb/specifications/blob/master/source/read-write-concern/read-write-concern.rst#read-concern +function commandSupportsReadConcern(command, options) { + if (command.aggregate || command.count || command.distinct || command.find || command.geoNear) { + return true; + } + if (command.mapReduce && + options && + options.out && + (options.out.inline === 1 || options.out === 'inline')) { + return true; + } + return false; +} +exports.commandSupportsReadConcern = commandSupportsReadConcern; +/** A utility function to get the instance of mongodb-client-encryption, if it exists. */ +function getMongoDBClientEncryption() { + let mongodbClientEncryption = null; + // NOTE(NODE-4254): This is to get around the circular dependency between + // mongodb-client-encryption and the driver in the test scenarios. + if (typeof process.env.MONGODB_CLIENT_ENCRYPTION_OVERRIDE === 'string' && + process.env.MONGODB_CLIENT_ENCRYPTION_OVERRIDE.length > 0) { + try { + // NOTE(NODE-3199): Ensure you always wrap an optional require literally in the try block + // Cannot be moved to helper utility function, bundlers search and replace the actual require call + // in a way that makes this line throw at bundle time, not runtime, catching here will make bundling succeed + mongodbClientEncryption = require(process.env.MONGODB_CLIENT_ENCRYPTION_OVERRIDE); + } + catch { + // ignore + } + } + else { + try { + // NOTE(NODE-3199): Ensure you always wrap an optional require literally in the try block + // Cannot be moved to helper utility function, bundlers search and replace the actual require call + // in a way that makes this line throw at bundle time, not runtime, catching here will make bundling succeed + mongodbClientEncryption = require('mongodb-client-encryption'); + } + catch { + // ignore + } + } + return mongodbClientEncryption; +} +exports.getMongoDBClientEncryption = getMongoDBClientEncryption; +/** + * Compare objectIds. `null` is always less + * - `+1 = oid1 is greater than oid2` + * - `-1 = oid1 is less than oid2` + * - `+0 = oid1 is equal oid2` + */ +function compareObjectId(oid1, oid2) { + if (oid1 == null && oid2 == null) { + return 0; + } + if (oid1 == null) { + return -1; + } + if (oid2 == null) { + return 1; + } + return oid1.id.compare(oid2.id); +} +exports.compareObjectId = compareObjectId; +//# sourceMappingURL=utils.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/utils.js.map b/node_modules/mongodb/lib/utils.js.map new file mode 100644 index 000000000..9d7e511dd --- /dev/null +++ b/node_modules/mongodb/lib/utils.js.map @@ -0,0 +1 @@ +{"version":3,"file":"utils.js","sourceRoot":"","sources":["../src/utils.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/mongodb/lib/write_concern.js b/node_modules/mongodb/lib/write_concern.js new file mode 100644 index 000000000..4816b00eb --- /dev/null +++ b/node_modules/mongodb/lib/write_concern.js @@ -0,0 +1,71 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.WriteConcern = exports.WRITE_CONCERN_KEYS = void 0; +exports.WRITE_CONCERN_KEYS = ['w', 'wtimeout', 'j', 'journal', 'fsync']; +/** + * A MongoDB WriteConcern, which describes the level of acknowledgement + * requested from MongoDB for write operations. + * @public + * + * @see https://docs.mongodb.com/manual/reference/write-concern/ + */ +class WriteConcern { + /** + * Constructs a WriteConcern from the write concern properties. + * @param w - request acknowledgment that the write operation has propagated to a specified number of mongod instances or to mongod instances with specified tags. + * @param wtimeout - specify a time limit to prevent write operations from blocking indefinitely + * @param j - request acknowledgment that the write operation has been written to the on-disk journal + * @param fsync - equivalent to the j option + */ + constructor(w, wtimeout, j, fsync) { + if (w != null) { + if (!Number.isNaN(Number(w))) { + this.w = Number(w); + } + else { + this.w = w; + } + } + if (wtimeout != null) { + this.wtimeout = wtimeout; + } + if (j != null) { + this.j = j; + } + if (fsync != null) { + this.fsync = fsync; + } + } + /** Construct a WriteConcern given an options object. */ + static fromOptions(options, inherit) { + if (options == null) + return undefined; + inherit = inherit !== null && inherit !== void 0 ? inherit : {}; + let opts; + if (typeof options === 'string' || typeof options === 'number') { + opts = { w: options }; + } + else if (options instanceof WriteConcern) { + opts = options; + } + else { + opts = options.writeConcern; + } + const parentOpts = inherit instanceof WriteConcern ? inherit : inherit.writeConcern; + const { w = undefined, wtimeout = undefined, j = undefined, fsync = undefined, journal = undefined, wtimeoutMS = undefined } = { + ...parentOpts, + ...opts + }; + if (w != null || + wtimeout != null || + wtimeoutMS != null || + j != null || + journal != null || + fsync != null) { + return new WriteConcern(w, wtimeout !== null && wtimeout !== void 0 ? wtimeout : wtimeoutMS, j !== null && j !== void 0 ? j : journal, fsync); + } + return undefined; + } +} +exports.WriteConcern = WriteConcern; +//# sourceMappingURL=write_concern.js.map \ No newline at end of file diff --git a/node_modules/mongodb/lib/write_concern.js.map b/node_modules/mongodb/lib/write_concern.js.map new file mode 100644 index 000000000..c2e21b7e1 --- /dev/null +++ b/node_modules/mongodb/lib/write_concern.js.map @@ -0,0 +1 @@ +{"version":3,"file":"write_concern.js","sourceRoot":"","sources":["../src/write_concern.ts"],"names":[],"mappings":";;;AA2Ba,QAAA,kBAAkB,GAAG,CAAC,GAAG,EAAE,UAAU,EAAE,GAAG,EAAE,SAAS,EAAE,OAAO,CAAC,CAAC;AAE7E;;;;;;GAMG;AACH,MAAa,YAAY;IAUvB;;;;;;OAMG;IACH,YAAY,CAAK,EAAE,QAAiB,EAAE,CAAW,EAAE,KAAmB;QACpE,IAAI,CAAC,IAAI,IAAI,EAAE;YACb,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,EAAE;gBAC5B,IAAI,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC;aACpB;iBAAM;gBACL,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC;aACZ;SACF;QACD,IAAI,QAAQ,IAAI,IAAI,EAAE;YACpB,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;SAC1B;QACD,IAAI,CAAC,IAAI,IAAI,EAAE;YACb,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC;SACZ;QACD,IAAI,KAAK,IAAI,IAAI,EAAE;YACjB,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;SACpB;IACH,CAAC;IAED,wDAAwD;IACxD,MAAM,CAAC,WAAW,CAChB,OAAgD,EAChD,OAA4C;QAE5C,IAAI,OAAO,IAAI,IAAI;YAAE,OAAO,SAAS,CAAC;QACtC,OAAO,GAAG,OAAO,aAAP,OAAO,cAAP,OAAO,GAAI,EAAE,CAAC;QACxB,IAAI,IAAqD,CAAC;QAC1D,IAAI,OAAO,OAAO,KAAK,QAAQ,IAAI,OAAO,OAAO,KAAK,QAAQ,EAAE;YAC9D,IAAI,GAAG,EAAE,CAAC,EAAE,OAAO,EAAE,CAAC;SACvB;aAAM,IAAI,OAAO,YAAY,YAAY,EAAE;YAC1C,IAAI,GAAG,OAAO,CAAC;SAChB;aAAM;YACL,IAAI,GAAG,OAAO,CAAC,YAAY,CAAC;SAC7B;QACD,MAAM,UAAU,GACd,OAAO,YAAY,YAAY,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,OAAO,CAAC,YAAY,CAAC;QAEnE,MAAM,EACJ,CAAC,GAAG,SAAS,EACb,QAAQ,GAAG,SAAS,EACpB,CAAC,GAAG,SAAS,EACb,KAAK,GAAG,SAAS,EACjB,OAAO,GAAG,SAAS,EACnB,UAAU,GAAG,SAAS,EACvB,GAAG;YACF,GAAG,UAAU;YACb,GAAG,IAAI;SACR,CAAC;QACF,IACE,CAAC,IAAI,IAAI;YACT,QAAQ,IAAI,IAAI;YAChB,UAAU,IAAI,IAAI;YAClB,CAAC,IAAI,IAAI;YACT,OAAO,IAAI,IAAI;YACf,KAAK,IAAI,IAAI,EACb;YACA,OAAO,IAAI,YAAY,CAAC,CAAC,EAAE,QAAQ,aAAR,QAAQ,cAAR,QAAQ,GAAI,UAAU,EAAE,CAAC,aAAD,CAAC,cAAD,CAAC,GAAI,OAAO,EAAE,KAAK,CAAC,CAAC;SACzE;QACD,OAAO,SAAS,CAAC;IACnB,CAAC;CACF;AA7ED,oCA6EC"} \ No newline at end of file diff --git a/node_modules/mongodb/mongodb.d.ts b/node_modules/mongodb/mongodb.d.ts new file mode 100644 index 000000000..bbb005677 --- /dev/null +++ b/node_modules/mongodb/mongodb.d.ts @@ -0,0 +1,6876 @@ +/// + +import { Binary } from 'bson'; +import { BSONRegExp } from 'bson'; +import { BSONSymbol } from 'bson'; +import { Code } from 'bson'; +import type { ConnectionOptions as ConnectionOptions_2 } from 'tls'; +import { DBRef } from 'bson'; +import { Decimal128 } from 'bson'; +import Denque = require('denque'); +import type { deserialize as deserialize_2 } from 'bson'; +import type { DeserializeOptions } from 'bson'; +import * as dns from 'dns'; +import { Document } from 'bson'; +import { Double } from 'bson'; +import { Duplex } from 'stream'; +import { DuplexOptions } from 'stream'; +import { EventEmitter } from 'events'; +import { Int32 } from 'bson'; +import { Long } from 'bson'; +import { Map as Map_2 } from 'bson'; +import { MaxKey } from 'bson'; +import { MinKey } from 'bson'; +import { ObjectId } from 'bson'; +import type { ObjectIdLike } from 'bson'; +import { Readable } from 'stream'; +import type { serialize as serialize_2 } from 'bson'; +import type { SerializeOptions } from 'bson'; +import type { Socket } from 'net'; +import type { SrvRecord } from 'dns'; +import type { TcpNetConnectOpts } from 'net'; +import { Timestamp } from 'bson'; +import type { TLSSocket } from 'tls'; +import type { TLSSocketOptions } from 'tls'; +import { Writable } from 'stream'; + +/** @public */ +export declare abstract class AbstractCursor extends TypedEventEmitter { + /* Excluded from this release type: [kId] */ + /* Excluded from this release type: [kSession] */ + /* Excluded from this release type: [kServer] */ + /* Excluded from this release type: [kNamespace] */ + /* Excluded from this release type: [kDocuments] */ + /* Excluded from this release type: [kClient] */ + /* Excluded from this release type: [kTransform] */ + /* Excluded from this release type: [kInitialized] */ + /* Excluded from this release type: [kClosed] */ + /* Excluded from this release type: [kKilled] */ + /* Excluded from this release type: [kOptions] */ + /** @event */ + static readonly CLOSE: "close"; + /* Excluded from this release type: __constructor */ + get id(): Long | undefined; + /* Excluded from this release type: client */ + /* Excluded from this release type: server */ + get namespace(): MongoDBNamespace; + get readPreference(): ReadPreference; + get readConcern(): ReadConcern | undefined; + /* Excluded from this release type: session */ + /* Excluded from this release type: session */ + /* Excluded from this release type: cursorOptions */ + get closed(): boolean; + get killed(): boolean; + get loadBalanced(): boolean; + /** Returns current buffered documents length */ + bufferedCount(): number; + /** Returns current buffered documents */ + readBufferedDocuments(number?: number): TSchema[]; + [Symbol.asyncIterator](): AsyncIterator; + stream(options?: CursorStreamOptions): Readable & AsyncIterable; + hasNext(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + hasNext(callback: Callback): void; + /** Get the next available document from the cursor, returns null if no more documents are available. */ + next(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + next(callback: Callback): void; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + next(callback?: Callback): Promise | void; + /** + * Try to get the next available document from the cursor or `null` if an empty batch is returned + */ + tryNext(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + tryNext(callback: Callback): void; + /** + * Iterates over all the documents for this cursor using the iterator, callback pattern. + * + * @param iterator - The iteration callback. + * @param callback - The end callback. + */ + forEach(iterator: (doc: TSchema) => boolean | void): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + forEach(iterator: (doc: TSchema) => boolean | void, callback: Callback): void; + close(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + close(callback: Callback): void; + /** + * @deprecated options argument is deprecated + */ + close(options: CursorCloseOptions): Promise; + /** + * @deprecated options argument is deprecated. Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance + */ + close(options: CursorCloseOptions, callback: Callback): void; + /** + * Returns an array of documents. The caller is responsible for making sure that there + * is enough memory to store the results. Note that the array only contains partial + * results when this cursor had been previously accessed. In that case, + * cursor.rewind() can be used to reset the cursor. + * + * @param callback - The result callback. + */ + toArray(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + toArray(callback: Callback): void; + /** + * Add a cursor flag to the cursor + * + * @param flag - The flag to set, must be one of following ['tailable', 'oplogReplay', 'noCursorTimeout', 'awaitData', 'partial' -. + * @param value - The flag boolean value. + */ + addCursorFlag(flag: CursorFlag, value: boolean): this; + /** + * Map all documents using the provided function + * If there is a transform set on the cursor, that will be called first and the result passed to + * this function's transform. + * + * @remarks + * **Note for Typescript Users:** adding a transform changes the return type of the iteration of this cursor, + * it **does not** return a new instance of a cursor. This means when calling map, + * you should always assign the result to a new variable in order to get a correctly typed cursor variable. + * Take note of the following example: + * + * @example + * ```typescript + * const cursor: FindCursor = coll.find(); + * const mappedCursor: FindCursor = cursor.map(doc => Object.keys(doc).length); + * const keyCounts: number[] = await mappedCursor.toArray(); // cursor.toArray() still returns Document[] + * ``` + * @param transform - The mapping transformation method. + */ + map(transform: (doc: TSchema) => T): AbstractCursor; + /** + * Set the ReadPreference for the cursor. + * + * @param readPreference - The new read preference for the cursor. + */ + withReadPreference(readPreference: ReadPreferenceLike): this; + /** + * Set the ReadPreference for the cursor. + * + * @param readPreference - The new read preference for the cursor. + */ + withReadConcern(readConcern: ReadConcernLike): this; + /** + * Set a maxTimeMS on the cursor query, allowing for hard timeout limits on queries (Only supported on MongoDB 2.6 or higher) + * + * @param value - Number of milliseconds to wait before aborting the query. + */ + maxTimeMS(value: number): this; + /** + * Set the batch size for the cursor. + * + * @param value - The number of documents to return per batch. See {@link https://docs.mongodb.com/manual/reference/command/find/|find command documentation}. + */ + batchSize(value: number): this; + /** + * Rewind this cursor to its uninitialized state. Any options that are present on the cursor will + * remain in effect. Iterating this cursor will cause new queries to be sent to the server, even + * if the resultant data has already been retrieved by this cursor. + */ + rewind(): void; + /** + * Returns a new uninitialized copy of this cursor, with options matching those that have been set on the current instance + */ + abstract clone(): AbstractCursor; + /* Excluded from this release type: _initialize */ + /* Excluded from this release type: _getMore */ + /* Excluded from this release type: [kInit] */ +} + +/** @public */ +export declare type AbstractCursorEvents = { + [AbstractCursor.CLOSE](): void; +}; + +/** @public */ +export declare interface AbstractCursorOptions extends BSONSerializeOptions { + session?: ClientSession; + readPreference?: ReadPreferenceLike; + readConcern?: ReadConcernLike; + /** + * Specifies the number of documents to return in each response from MongoDB + */ + batchSize?: number; + /** + * When applicable `maxTimeMS` controls the amount of time the initial command + * that constructs a cursor should take. (ex. find, aggregate, listCollections) + */ + maxTimeMS?: number; + /** + * When applicable `maxAwaitTimeMS` controls the amount of time subsequent getMores + * that a cursor uses to fetch more data should take. (ex. cursor.next()) + */ + maxAwaitTimeMS?: number; + /** + * Comment to apply to the operation. + * + * In server versions pre-4.4, 'comment' must be string. A server + * error will be thrown if any other type is provided. + * + * In server versions 4.4 and above, 'comment' can be any valid BSON type. + */ + comment?: unknown; + /** + * By default, MongoDB will automatically close a cursor when the + * client has exhausted all results in the cursor. However, for [capped collections](https://www.mongodb.com/docs/manual/core/capped-collections) + * you may use a Tailable Cursor that remains open after the client exhausts + * the results in the initial cursor. + */ + tailable?: boolean; + /** + * If awaitData is set to true, when the cursor reaches the end of the capped collection, + * MongoDB blocks the query thread for a period of time waiting for new data to arrive. + * When new data is inserted into the capped collection, the blocked thread is signaled + * to wake up and return the next batch to the client. + */ + awaitData?: boolean; + noCursorTimeout?: boolean; +} + +/* Excluded from this release type: AbstractOperation */ + +/** @public */ +export declare type AcceptedFields = { + readonly [key in KeysOfAType]?: AssignableType; +}; + +/** @public */ +export declare type AddToSetOperators = { + $each?: Array>; +}; + +/** @public */ +export declare interface AddUserOptions extends CommandOperationOptions { + /** @deprecated Please use db.command('createUser', ...) instead for this option */ + digestPassword?: null; + /** Roles associated with the created user */ + roles?: string | string[] | RoleSpecification | RoleSpecification[]; + /** Custom data associated with the user (only Mongodb 2.6 or higher) */ + customData?: Document; +} + +/** + * The **Admin** class is an internal class that allows convenient access to + * the admin functionality and commands for MongoDB. + * + * **ADMIN Cannot directly be instantiated** + * @public + * + * @example + * ```ts + * import { MongoClient } from 'mongodb'; + * + * const client = new MongoClient('mongodb://localhost:27017'); + * const admin = client.db().admin(); + * const dbInfo = await admin.listDatabases(); + * for (const db of dbInfo.databases) { + * console.log(db.name); + * } + * ``` + */ +export declare class Admin { + /* Excluded from this release type: s */ + /* Excluded from this release type: __constructor */ + /** + * Execute a command + * + * @param command - The command to execute + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + command(command: Document): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + command(command: Document, callback: Callback): void; + command(command: Document, options: RunCommandOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + command(command: Document, options: RunCommandOptions, callback: Callback): void; + /** + * Retrieve the server build information + * + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + buildInfo(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + buildInfo(callback: Callback): void; + buildInfo(options: CommandOperationOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + buildInfo(options: CommandOperationOptions, callback: Callback): void; + /** + * Retrieve the server build information + * + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + serverInfo(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + serverInfo(callback: Callback): void; + serverInfo(options: CommandOperationOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + serverInfo(options: CommandOperationOptions, callback: Callback): void; + /** + * Retrieve this db's server status. + * + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + serverStatus(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + serverStatus(callback: Callback): void; + serverStatus(options: CommandOperationOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + serverStatus(options: CommandOperationOptions, callback: Callback): void; + /** + * Ping the MongoDB server and retrieve results + * + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + ping(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + ping(callback: Callback): void; + ping(options: CommandOperationOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + ping(options: CommandOperationOptions, callback: Callback): void; + /** + * Add a user to the database + * + * @param username - The username for the new user + * @param password - An optional password for the new user + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + addUser(username: string): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + addUser(username: string, callback: Callback): void; + addUser(username: string, password: string): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + addUser(username: string, password: string, callback: Callback): void; + addUser(username: string, options: AddUserOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + addUser(username: string, options: AddUserOptions, callback: Callback): void; + addUser(username: string, password: string, options: AddUserOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + addUser(username: string, password: string, options: AddUserOptions, callback: Callback): void; + /** + * Remove a user from a database + * + * @param username - The username to remove + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + removeUser(username: string): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + removeUser(username: string, callback: Callback): void; + removeUser(username: string, options: RemoveUserOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + removeUser(username: string, options: RemoveUserOptions, callback: Callback): void; + /** + * Validate an existing collection + * + * @param collectionName - The name of the collection to validate. + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + validateCollection(collectionName: string): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + validateCollection(collectionName: string, callback: Callback): void; + validateCollection(collectionName: string, options: ValidateCollectionOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + validateCollection(collectionName: string, options: ValidateCollectionOptions, callback: Callback): void; + /** + * List the available databases + * + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + listDatabases(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + listDatabases(callback: Callback): void; + listDatabases(options: ListDatabasesOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + listDatabases(options: ListDatabasesOptions, callback: Callback): void; + /** + * Get ReplicaSet status + * + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + replSetGetStatus(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + replSetGetStatus(callback: Callback): void; + replSetGetStatus(options: CommandOperationOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + replSetGetStatus(options: CommandOperationOptions, callback: Callback): void; +} + +/* Excluded from this release type: AdminPrivate */ + +/* Excluded from this release type: AggregateOperation */ + +/** @public */ +export declare interface AggregateOptions extends CommandOperationOptions { + /** allowDiskUse lets the server know if it can use disk to store temporary results for the aggregation (requires mongodb 2.6 \>). */ + allowDiskUse?: boolean; + /** The number of documents to return per batch. See [aggregation documentation](https://docs.mongodb.com/manual/reference/command/aggregate). */ + batchSize?: number; + /** Allow driver to bypass schema validation in MongoDB 3.2 or higher. */ + bypassDocumentValidation?: boolean; + /** Return the query as cursor, on 2.6 \> it returns as a real cursor on pre 2.6 it returns as an emulated cursor. */ + cursor?: Document; + /** specifies a cumulative time limit in milliseconds for processing operations on the cursor. MongoDB interrupts the operation at the earliest following interrupt point. */ + maxTimeMS?: number; + /** The maximum amount of time for the server to wait on new documents to satisfy a tailable cursor query. */ + maxAwaitTimeMS?: number; + /** Specify collation. */ + collation?: CollationOptions; + /** Add an index selection hint to an aggregation command */ + hint?: Hint; + /** Map of parameter names and values that can be accessed using $$var (requires MongoDB 5.0). */ + let?: Document; + out?: string; +} + +/** + * The **AggregationCursor** class is an internal class that embodies an aggregation cursor on MongoDB + * allowing for iteration over the results returned from the underlying query. It supports + * one by one document iteration, conversion to an array or can be iterated as a Node 4.X + * or higher stream + * @public + */ +export declare class AggregationCursor extends AbstractCursor { + /* Excluded from this release type: [kPipeline] */ + /* Excluded from this release type: [kOptions] */ + /* Excluded from this release type: __constructor */ + get pipeline(): Document[]; + clone(): AggregationCursor; + map(transform: (doc: TSchema) => T): AggregationCursor; + /* Excluded from this release type: _initialize */ + /** Execute the explain for the cursor */ + explain(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + explain(callback: Callback): void; + explain(verbosity: ExplainVerbosityLike): Promise; + /** Add a group stage to the aggregation pipeline */ + group($group: Document): AggregationCursor; + /** Add a limit stage to the aggregation pipeline */ + limit($limit: number): this; + /** Add a match stage to the aggregation pipeline */ + match($match: Document): this; + /** Add an out stage to the aggregation pipeline */ + out($out: { + db: string; + coll: string; + } | string): this; + /** + * Add a project stage to the aggregation pipeline + * + * @remarks + * In order to strictly type this function you must provide an interface + * that represents the effect of your projection on the result documents. + * + * By default chaining a projection to your cursor changes the returned type to the generic {@link Document} type. + * You should specify a parameterized type to have assertions on your final results. + * + * @example + * ```typescript + * // Best way + * const docs: AggregationCursor<{ a: number }> = cursor.project<{ a: number }>({ _id: 0, a: true }); + * // Flexible way + * const docs: AggregationCursor = cursor.project({ _id: 0, a: true }); + * ``` + * + * @remarks + * In order to strictly type this function you must provide an interface + * that represents the effect of your projection on the result documents. + * + * **Note for Typescript Users:** adding a transform changes the return type of the iteration of this cursor, + * it **does not** return a new instance of a cursor. This means when calling project, + * you should always assign the result to a new variable in order to get a correctly typed cursor variable. + * Take note of the following example: + * + * @example + * ```typescript + * const cursor: AggregationCursor<{ a: number; b: string }> = coll.aggregate([]); + * const projectCursor = cursor.project<{ a: number }>({ _id: 0, a: true }); + * const aPropOnlyArray: {a: number}[] = await projectCursor.toArray(); + * + * // or always use chaining and save the final cursor + * + * const cursor = coll.aggregate().project<{ a: string }>({ + * _id: 0, + * a: { $convert: { input: '$a', to: 'string' } + * }}); + * ``` + */ + project($project: Document): AggregationCursor; + /** Add a lookup stage to the aggregation pipeline */ + lookup($lookup: Document): this; + /** Add a redact stage to the aggregation pipeline */ + redact($redact: Document): this; + /** Add a skip stage to the aggregation pipeline */ + skip($skip: number): this; + /** Add a sort stage to the aggregation pipeline */ + sort($sort: Sort): this; + /** Add a unwind stage to the aggregation pipeline */ + unwind($unwind: Document | string): this; + /** @deprecated Add a geoNear stage to the aggregation pipeline */ + geoNear($geoNear: Document): this; +} + +/** @public */ +export declare interface AggregationCursorOptions extends AbstractCursorOptions, AggregateOptions { +} + +/** + * It is possible to search using alternative types in mongodb e.g. + * string types can be searched using a regex in mongo + * array types can be searched using their element type + * @public + */ +export declare type AlternativeType = T extends ReadonlyArray ? T | RegExpOrString : RegExpOrString; + +/** @public */ +export declare type AnyBulkWriteOperation = { + insertOne: InsertOneModel; +} | { + replaceOne: ReplaceOneModel; +} | { + updateOne: UpdateOneModel; +} | { + updateMany: UpdateManyModel; +} | { + deleteOne: DeleteOneModel; +} | { + deleteMany: DeleteManyModel; +}; + +/** @public */ +export declare type AnyError = MongoError | Error; + +/** @public */ +export declare type ArrayElement = Type extends ReadonlyArray ? Item : never; + +/** @public */ +export declare type ArrayOperator = { + $each?: Array>; + $slice?: number; + $position?: number; + $sort?: Sort; +}; + +/** @public */ +export declare interface Auth { + /** The username for auth */ + username?: string; + /** The password for auth */ + password?: string; +} + +/** @public */ +export declare const AuthMechanism: Readonly<{ + readonly MONGODB_AWS: "MONGODB-AWS"; + readonly MONGODB_CR: "MONGODB-CR"; + readonly MONGODB_DEFAULT: "DEFAULT"; + readonly MONGODB_GSSAPI: "GSSAPI"; + readonly MONGODB_PLAIN: "PLAIN"; + readonly MONGODB_SCRAM_SHA1: "SCRAM-SHA-1"; + readonly MONGODB_SCRAM_SHA256: "SCRAM-SHA-256"; + readonly MONGODB_X509: "MONGODB-X509"; +}>; + +/** @public */ +export declare type AuthMechanism = typeof AuthMechanism[keyof typeof AuthMechanism]; + +/** @public */ +export declare interface AuthMechanismProperties extends Document { + SERVICE_HOST?: string; + SERVICE_NAME?: string; + SERVICE_REALM?: string; + CANONICALIZE_HOST_NAME?: GSSAPICanonicalizationValue; + AWS_SESSION_TOKEN?: string; +} + +/** @public */ +export declare interface AutoEncrypter { + new (client: MongoClient, options: AutoEncryptionOptions): AutoEncrypter; + init(cb: Callback): void; + teardown(force: boolean, callback: Callback): void; + encrypt(ns: string, cmd: Document, options: any, callback: Callback): void; + decrypt(cmd: Document, options: any, callback: Callback): void; + /** @experimental */ + readonly cryptSharedLibVersionInfo: { + version: bigint; + versionStr: string; + } | null; +} + +/** @public */ +export declare const AutoEncryptionLoggerLevel: Readonly<{ + readonly FatalError: 0; + readonly Error: 1; + readonly Warning: 2; + readonly Info: 3; + readonly Trace: 4; +}>; + +/** @public */ +export declare type AutoEncryptionLoggerLevel = typeof AutoEncryptionLoggerLevel[keyof typeof AutoEncryptionLoggerLevel]; + +/** @public */ +export declare interface AutoEncryptionOptions { + /* Excluded from this release type: bson */ + /* Excluded from this release type: metadataClient */ + /** A `MongoClient` used to fetch keys from a key vault */ + keyVaultClient?: MongoClient; + /** The namespace where keys are stored in the key vault */ + keyVaultNamespace?: string; + /** Configuration options that are used by specific KMS providers during key generation, encryption, and decryption. */ + kmsProviders?: { + /** Configuration options for using 'aws' as your KMS provider */ + aws?: { + /** The access key used for the AWS KMS provider */ + accessKeyId: string; + /** The secret access key used for the AWS KMS provider */ + secretAccessKey: string; + /** + * An optional AWS session token that will be used as the + * X-Amz-Security-Token header for AWS requests. + */ + sessionToken?: string; + }; + /** Configuration options for using 'local' as your KMS provider */ + local?: { + /** + * The master key used to encrypt/decrypt data keys. + * A 96-byte long Buffer or base64 encoded string. + */ + key: Buffer | string; + }; + /** Configuration options for using 'azure' as your KMS provider */ + azure?: { + /** The tenant ID identifies the organization for the account */ + tenantId: string; + /** The client ID to authenticate a registered application */ + clientId: string; + /** The client secret to authenticate a registered application */ + clientSecret: string; + /** + * If present, a host with optional port. E.g. "example.com" or "example.com:443". + * This is optional, and only needed if customer is using a non-commercial Azure instance + * (e.g. a government or China account, which use different URLs). + * Defaults to "login.microsoftonline.com" + */ + identityPlatformEndpoint?: string | undefined; + }; + /** Configuration options for using 'gcp' as your KMS provider */ + gcp?: { + /** The service account email to authenticate */ + email: string; + /** A PKCS#8 encrypted key. This can either be a base64 string or a binary representation */ + privateKey: string | Buffer; + /** + * If present, a host with optional port. E.g. "example.com" or "example.com:443". + * Defaults to "oauth2.googleapis.com" + */ + endpoint?: string | undefined; + }; + /** + * Configuration options for using 'kmip' as your KMS provider + */ + kmip?: { + /** + * The output endpoint string. + * The endpoint consists of a hostname and port separated by a colon. + * E.g. "example.com:123". A port is always present. + */ + endpoint?: string; + }; + }; + /** + * A map of namespaces to a local JSON schema for encryption + * + * **NOTE**: Supplying options.schemaMap provides more security than relying on JSON Schemas obtained from the server. + * It protects against a malicious server advertising a false JSON Schema, which could trick the client into sending decrypted data that should be encrypted. + * Schemas supplied in the schemaMap only apply to configuring automatic encryption for client side encryption. + * Other validation rules in the JSON schema will not be enforced by the driver and will result in an error. + */ + schemaMap?: Document; + /** @experimental Public Technical Preview: Supply a schema for the encrypted fields in the document */ + encryptedFieldsMap?: Document; + /** Allows the user to bypass auto encryption, maintaining implicit decryption */ + bypassAutoEncryption?: boolean; + /** @experimental Public Technical Preview: Allows users to bypass query analysis */ + bypassQueryAnalysis?: boolean; + options?: { + /** An optional hook to catch logging messages from the underlying encryption engine */ + logger?: (level: AutoEncryptionLoggerLevel, message: string) => void; + }; + extraOptions?: { + /** + * A local process the driver communicates with to determine how to encrypt values in a command. + * Defaults to "mongodb://%2Fvar%2Fmongocryptd.sock" if domain sockets are available or "mongodb://localhost:27020" otherwise + */ + mongocryptdURI?: string; + /** If true, autoEncryption will not attempt to spawn a mongocryptd before connecting */ + mongocryptdBypassSpawn?: boolean; + /** The path to the mongocryptd executable on the system */ + mongocryptdSpawnPath?: string; + /** Command line arguments to use when auto-spawning a mongocryptd */ + mongocryptdSpawnArgs?: string[]; + /** + * Full path to a MongoDB Crypt shared library to be used (instead of mongocryptd). + * + * This needs to be the path to the file itself, not a directory. + * It can be an absolute or relative path. If the path is relative and + * its first component is `$ORIGIN`, it will be replaced by the directory + * containing the mongodb-client-encryption native addon file. Otherwise, + * the path will be interpreted relative to the current working directory. + * + * Currently, loading different MongoDB Crypt shared library files from different + * MongoClients in the same process is not supported. + * + * If this option is provided and no MongoDB Crypt shared library could be loaded + * from the specified location, creating the MongoClient will fail. + * + * If this option is not provided and `cryptSharedLibRequired` is not specified, + * the AutoEncrypter will attempt to spawn and/or use mongocryptd according + * to the mongocryptd-specific `extraOptions` options. + * + * Specifying a path prevents mongocryptd from being used as a fallback. + * + * Requires the MongoDB Crypt shared library, available in MongoDB 6.0 or higher. + */ + cryptSharedLibPath?: string; + /** + * If specified, never use mongocryptd and instead fail when the MongoDB Crypt + * shared library could not be loaded. + * + * This is always true when `cryptSharedLibPath` is specified. + * + * Requires the MongoDB Crypt shared library, available in MongoDB 6.0 or higher. + */ + cryptSharedLibRequired?: boolean; + /* Excluded from this release type: cryptSharedLibSearchPaths */ + }; + proxyOptions?: ProxyOptions; + /** The TLS options to use connecting to the KMS provider */ + tlsOptions?: { + aws?: AutoEncryptionTlsOptions; + local?: AutoEncryptionTlsOptions; + azure?: AutoEncryptionTlsOptions; + gcp?: AutoEncryptionTlsOptions; + kmip?: AutoEncryptionTlsOptions; + }; +} + +/** @public */ +export declare interface AutoEncryptionTlsOptions { + /** + * Specifies the location of a local .pem file that contains + * either the client's TLS/SSL certificate and key or only the + * client's TLS/SSL key when tlsCertificateFile is used to + * provide the certificate. + */ + tlsCertificateKeyFile?: string; + /** + * Specifies the password to de-crypt the tlsCertificateKeyFile. + */ + tlsCertificateKeyFilePassword?: string; + /** + * Specifies the location of a local .pem file that contains the + * root certificate chain from the Certificate Authority. + * This file is used to validate the certificate presented by the + * KMS provider. + */ + tlsCAFile?: string; +} + +/** + * Keeps the state of a unordered batch so we can rewrite the results + * correctly after command execution + * + * @public + */ +export declare class Batch { + originalZeroIndex: number; + currentIndex: number; + originalIndexes: number[]; + batchType: BatchType; + operations: T[]; + size: number; + sizeBytes: number; + constructor(batchType: BatchType, originalZeroIndex: number); +} + +/** @public */ +export declare const BatchType: Readonly<{ + readonly INSERT: 1; + readonly UPDATE: 2; + readonly DELETE: 3; +}>; + +/** @public */ +export declare type BatchType = typeof BatchType[keyof typeof BatchType]; + +export { Binary } + +/* Excluded from this release type: BinMsg */ + +/** @public */ +export declare type BitwiseFilter = number /** numeric bit mask */ | Binary /** BinData bit mask */ | ReadonlyArray; + +/* Excluded from this release type: BSON */ +export { BSONRegExp } + +/** + * BSON Serialization options. + * @public + */ +export declare interface BSONSerializeOptions extends Omit, Omit { + /** Return BSON filled buffers from operations */ + raw?: boolean; + /** Enable utf8 validation when deserializing BSON documents. Defaults to true. */ + enableUtf8Validation?: boolean; +} + +export { BSONSymbol } + +/** @public */ +export declare const BSONType: Readonly<{ + readonly double: 1; + readonly string: 2; + readonly object: 3; + readonly array: 4; + readonly binData: 5; + readonly undefined: 6; + readonly objectId: 7; + readonly bool: 8; + readonly date: 9; + readonly null: 10; + readonly regex: 11; + readonly dbPointer: 12; + readonly javascript: 13; + readonly symbol: 14; + readonly javascriptWithScope: 15; + readonly int: 16; + readonly timestamp: 17; + readonly long: 18; + readonly decimal: 19; + readonly minKey: -1; + readonly maxKey: 127; +}>; + +/** @public */ +export declare type BSONType = typeof BSONType[keyof typeof BSONType]; + +/** @public */ +export declare type BSONTypeAlias = keyof typeof BSONType; + +/* Excluded from this release type: BufferPool */ + +/** @public */ +export declare abstract class BulkOperationBase { + isOrdered: boolean; + /* Excluded from this release type: s */ + operationId?: number; + /* Excluded from this release type: __constructor */ + /** + * Add a single insert document to the bulk operation + * + * @example + * ```ts + * const bulkOp = collection.initializeOrderedBulkOp(); + * + * // Adds three inserts to the bulkOp. + * bulkOp + * .insert({ a: 1 }) + * .insert({ b: 2 }) + * .insert({ c: 3 }); + * await bulkOp.execute(); + * ``` + */ + insert(document: Document): BulkOperationBase; + /** + * Builds a find operation for an update/updateOne/delete/deleteOne/replaceOne. + * Returns a builder object used to complete the definition of the operation. + * + * @example + * ```ts + * const bulkOp = collection.initializeOrderedBulkOp(); + * + * // Add an updateOne to the bulkOp + * bulkOp.find({ a: 1 }).updateOne({ $set: { b: 2 } }); + * + * // Add an updateMany to the bulkOp + * bulkOp.find({ c: 3 }).update({ $set: { d: 4 } }); + * + * // Add an upsert + * bulkOp.find({ e: 5 }).upsert().updateOne({ $set: { f: 6 } }); + * + * // Add a deletion + * bulkOp.find({ g: 7 }).deleteOne(); + * + * // Add a multi deletion + * bulkOp.find({ h: 8 }).delete(); + * + * // Add a replaceOne + * bulkOp.find({ i: 9 }).replaceOne({writeConcern: { j: 10 }}); + * + * // Update using a pipeline (requires Mongodb 4.2 or higher) + * bulk.find({ k: 11, y: { $exists: true }, z: { $exists: true } }).updateOne([ + * { $set: { total: { $sum: [ '$y', '$z' ] } } } + * ]); + * + * // All of the ops will now be executed + * await bulkOp.execute(); + * ``` + */ + find(selector: Document): FindOperators; + /** Specifies a raw operation to perform in the bulk write. */ + raw(op: AnyBulkWriteOperation): this; + get bsonOptions(): BSONSerializeOptions; + get writeConcern(): WriteConcern | undefined; + get batches(): Batch[]; + execute(options?: BulkWriteOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + execute(callback: Callback): void; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + execute(options: BulkWriteOptions | undefined, callback: Callback): void; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + execute(options?: BulkWriteOptions | Callback, callback?: Callback): Promise | void; + /* Excluded from this release type: handleWriteError */ + abstract addToOperationsList(batchType: BatchType, document: Document | UpdateStatement | DeleteStatement): this; +} + +/* Excluded from this release type: BulkOperationPrivate */ + +/** @public */ +export declare interface BulkResult { + ok: number; + writeErrors: WriteError[]; + writeConcernErrors: WriteConcernError[]; + insertedIds: Document[]; + nInserted: number; + nUpserted: number; + nMatched: number; + nModified: number; + nRemoved: number; + upserted: Document[]; + opTime?: Document; +} + +/** @public */ +export declare interface BulkWriteOperationError { + index: number; + code: number; + errmsg: string; + errInfo: Document; + op: Document | UpdateStatement | DeleteStatement; +} + +/** @public */ +export declare interface BulkWriteOptions extends CommandOperationOptions { + /** Allow driver to bypass schema validation in MongoDB 3.2 or higher. */ + bypassDocumentValidation?: boolean; + /** If true, when an insert fails, don't execute the remaining writes. If false, continue with remaining inserts when one fails. */ + ordered?: boolean; + /** @deprecated use `ordered` instead */ + keepGoing?: boolean; + /** Force server to assign _id values instead of driver. */ + forceServerObjectId?: boolean; + /** Map of parameter names and values that can be accessed using $$var (requires MongoDB 5.0). */ + let?: Document; +} + +/** + * @public + * The result of a bulk write. + */ +export declare class BulkWriteResult { + result: BulkResult; + /* Excluded from this release type: __constructor */ + /** Number of documents inserted. */ + get insertedCount(): number; + /** Number of documents matched for update. */ + get matchedCount(): number; + /** Number of documents modified. */ + get modifiedCount(): number; + /** Number of documents deleted. */ + get deletedCount(): number; + /** Number of documents upserted. */ + get upsertedCount(): number; + /** Upserted document generated Id's, hash key is the index of the originating operation */ + get upsertedIds(): { + [key: number]: any; + }; + /** Inserted document generated Id's, hash key is the index of the originating operation */ + get insertedIds(): { + [key: number]: any; + }; + /** Evaluates to true if the bulk operation correctly executes */ + get ok(): number; + /** The number of inserted documents */ + get nInserted(): number; + /** Number of upserted documents */ + get nUpserted(): number; + /** Number of matched documents */ + get nMatched(): number; + /** Number of documents updated physically on disk */ + get nModified(): number; + /** Number of removed documents */ + get nRemoved(): number; + /** Returns an array of all inserted ids */ + getInsertedIds(): Document[]; + /** Returns an array of all upserted ids */ + getUpsertedIds(): Document[]; + /** Returns the upserted id at the given index */ + getUpsertedIdAt(index: number): Document | undefined; + /** Returns raw internal result */ + getRawResponse(): Document; + /** Returns true if the bulk operation contains a write error */ + hasWriteErrors(): boolean; + /** Returns the number of write errors off the bulk operation */ + getWriteErrorCount(): number; + /** Returns a specific write error object */ + getWriteErrorAt(index: number): WriteError | undefined; + /** Retrieve all write errors */ + getWriteErrors(): WriteError[]; + /** Retrieve lastOp if available */ + getLastOp(): Document | undefined; + /** Retrieve the write concern error if one exists */ + getWriteConcernError(): WriteConcernError | undefined; + toJSON(): BulkResult; + toString(): string; + isOk(): boolean; +} + +/** + * MongoDB Driver style callback + * @public + */ +export declare type Callback = (error?: AnyError, result?: T) => void; + +/** @public */ +export declare class CancellationToken extends TypedEventEmitter<{ + cancel(): void; +}> { +} + +/** + * Creates a new Change Stream instance. Normally created using {@link Collection#watch|Collection.watch()}. + * @public + */ +export declare class ChangeStream> extends TypedEventEmitter> { + pipeline: Document[]; + options: ChangeStreamOptions; + parent: MongoClient | Db | Collection; + namespace: MongoDBNamespace; + type: symbol; + /* Excluded from this release type: cursor */ + streamOptions?: CursorStreamOptions; + /* Excluded from this release type: [kCursorStream] */ + /* Excluded from this release type: [kClosed] */ + /* Excluded from this release type: [kMode] */ + /** @event */ + static readonly RESPONSE: "response"; + /** @event */ + static readonly MORE: "more"; + /** @event */ + static readonly INIT: "init"; + /** @event */ + static readonly CLOSE: "close"; + /** + * Fired for each new matching change in the specified namespace. Attaching a `change` + * event listener to a Change Stream will switch the stream into flowing mode. Data will + * then be passed as soon as it is available. + * @event + */ + static readonly CHANGE: "change"; + /** @event */ + static readonly END: "end"; + /** @event */ + static readonly ERROR: "error"; + /** + * Emitted each time the change stream stores a new resume token. + * @event + */ + static readonly RESUME_TOKEN_CHANGED: "resumeTokenChanged"; + /* Excluded from this release type: __constructor */ + /* Excluded from this release type: cursorStream */ + /** The cached resume token that is used to resume after the most recently returned change. */ + get resumeToken(): ResumeToken; + /** Check if there is any document still available in the Change Stream */ + hasNext(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + hasNext(callback: Callback): void; + /** Get the next available document from the Change Stream. */ + next(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + next(callback: Callback): void; + /** + * Try to get the next available document from the Change Stream's cursor or `null` if an empty batch is returned + */ + tryNext(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + tryNext(callback: Callback): void; + /** Is the cursor closed */ + get closed(): boolean; + /** Close the Change Stream */ + close(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + close(callback: Callback): void; + /** + * Return a modified Readable stream including a possible transform method. + * + * NOTE: When using a Stream to process change stream events, the stream will + * NOT automatically resume in the case a resumable error is encountered. + * + * @throws MongoChangeStreamError if the underlying cursor or the change stream is closed + */ + stream(options?: CursorStreamOptions): Readable & AsyncIterable; + /* Excluded from this release type: _setIsEmitter */ + /* Excluded from this release type: _setIsIterator */ + /* Excluded from this release type: _createChangeStreamCursor */ + /* Excluded from this release type: _closeEmitterModeWithError */ + /* Excluded from this release type: _streamEvents */ + /* Excluded from this release type: _endStream */ + /* Excluded from this release type: _processChange */ + /* Excluded from this release type: _processErrorStreamMode */ + /* Excluded from this release type: _processErrorIteratorMode */ + /* Excluded from this release type: _processErrorIteratorModeCallback */ +} + +/* Excluded from this release type: ChangeStreamAggregateRawResult */ + +/** + * Only present when the `showExpandedEvents` flag is enabled. + * @public + * @see https://www.mongodb.com/docs/manual/reference/change-events/ + */ +export declare interface ChangeStreamCollModDocument extends ChangeStreamDocumentCommon, ChangeStreamDocumentCollectionUUID { + /** Describes the type of operation represented in this change notification */ + operationType: 'modify'; +} + +/** + * @public + * @see https://www.mongodb.com/docs/manual/reference/change-events/ + */ +export declare interface ChangeStreamCreateDocument extends ChangeStreamDocumentCommon, ChangeStreamDocumentCollectionUUID { + /** Describes the type of operation represented in this change notification */ + operationType: 'create'; +} + +/** + * Only present when the `showExpandedEvents` flag is enabled. + * @public + * @see https://www.mongodb.com/docs/manual/reference/change-events/ + */ +export declare interface ChangeStreamCreateIndexDocument extends ChangeStreamDocumentCommon, ChangeStreamDocumentCollectionUUID, ChangeStreamDocumentOperationDescription { + /** Describes the type of operation represented in this change notification */ + operationType: 'createIndexes'; +} + +/* Excluded from this release type: ChangeStreamCursor */ + +/* Excluded from this release type: ChangeStreamCursorOptions */ + +/** + * @public + * @see https://www.mongodb.com/docs/manual/reference/change-events/#delete-event + */ +export declare interface ChangeStreamDeleteDocument extends ChangeStreamDocumentCommon, ChangeStreamDocumentKey, ChangeStreamDocumentCollectionUUID { + /** Describes the type of operation represented in this change notification */ + operationType: 'delete'; + /** Namespace the delete event occured on */ + ns: ChangeStreamNameSpace; + /** + * Contains the pre-image of the modified or deleted document if the + * pre-image is available for the change event and either 'required' or + * 'whenAvailable' was specified for the 'fullDocumentBeforeChange' option + * when creating the change stream. If 'whenAvailable' was specified but the + * pre-image is unavailable, this will be explicitly set to null. + */ + fullDocumentBeforeChange?: TSchema; +} + +/** @public */ +export declare type ChangeStreamDocument = ChangeStreamInsertDocument | ChangeStreamUpdateDocument | ChangeStreamReplaceDocument | ChangeStreamDeleteDocument | ChangeStreamDropDocument | ChangeStreamRenameDocument | ChangeStreamDropDatabaseDocument | ChangeStreamInvalidateDocument | ChangeStreamCreateIndexDocument | ChangeStreamCreateDocument | ChangeStreamCollModDocument | ChangeStreamDropIndexDocument | ChangeStreamShardCollectionDocument | ChangeStreamReshardCollectionDocument | ChangeStreamRefineCollectionShardKeyDocument; + +/** @public */ +export declare interface ChangeStreamDocumentCollectionUUID { + /** + * The UUID (Binary subtype 4) of the collection that the operation was performed on. + * + * Only present when the `showExpandedEvents` flag is enabled. + * + * **NOTE:** collectionUUID will be converted to a NodeJS Buffer if the promoteBuffers + * flag is enabled. + * + * @sinceServerVersion 6.1.0 + */ + collectionUUID: Binary; +} + +/** @public */ +export declare interface ChangeStreamDocumentCommon { + /** + * The id functions as an opaque token for use when resuming an interrupted + * change stream. + */ + _id: ResumeToken; + /** + * The timestamp from the oplog entry associated with the event. + * For events that happened as part of a multi-document transaction, the associated change stream + * notifications will have the same clusterTime value, namely the time when the transaction was committed. + * On a sharded cluster, events that occur on different shards can have the same clusterTime but be + * associated with different transactions or even not be associated with any transaction. + * To identify events for a single transaction, you can use the combination of lsid and txnNumber in the change stream event document. + */ + clusterTime?: Timestamp; + /** + * The transaction number. + * Only present if the operation is part of a multi-document transaction. + * + * **NOTE:** txnNumber can be a Long if promoteLongs is set to false + */ + txnNumber?: number; + /** + * The identifier for the session associated with the transaction. + * Only present if the operation is part of a multi-document transaction. + */ + lsid?: ServerSessionId; +} + +/** @public */ +export declare interface ChangeStreamDocumentKey { + /** + * For unsharded collections this contains a single field `_id`. + * For sharded collections, this will contain all the components of the shard key + */ + documentKey: { + _id: InferIdType; + [shardKey: string]: any; + }; +} + +/** @public */ +export declare interface ChangeStreamDocumentOperationDescription { + /** + * An description of the operation. + * + * Only present when the `showExpandedEvents` flag is enabled. + * + * @sinceServerVersion 6.1.0 + */ + operationDescription?: Document; +} + +/** + * @public + * @see https://www.mongodb.com/docs/manual/reference/change-events/#dropdatabase-event + */ +export declare interface ChangeStreamDropDatabaseDocument extends ChangeStreamDocumentCommon { + /** Describes the type of operation represented in this change notification */ + operationType: 'dropDatabase'; + /** The database dropped */ + ns: { + db: string; + }; +} + +/** + * @public + * @see https://www.mongodb.com/docs/manual/reference/change-events/#drop-event + */ +export declare interface ChangeStreamDropDocument extends ChangeStreamDocumentCommon, ChangeStreamDocumentCollectionUUID { + /** Describes the type of operation represented in this change notification */ + operationType: 'drop'; + /** Namespace the drop event occured on */ + ns: ChangeStreamNameSpace; +} + +/** + * Only present when the `showExpandedEvents` flag is enabled. + * @public + * @see https://www.mongodb.com/docs/manual/reference/change-events/ + */ +export declare interface ChangeStreamDropIndexDocument extends ChangeStreamDocumentCommon, ChangeStreamDocumentCollectionUUID, ChangeStreamDocumentOperationDescription { + /** Describes the type of operation represented in this change notification */ + operationType: 'dropIndexes'; +} + +/** @public */ +export declare type ChangeStreamEvents> = { + resumeTokenChanged(token: ResumeToken): void; + init(response: any): void; + more(response?: any): void; + response(): void; + end(): void; + error(error: Error): void; + change(change: TChange): void; +} & AbstractCursorEvents; + +/** + * @public + * @see https://www.mongodb.com/docs/manual/reference/change-events/#insert-event + */ +export declare interface ChangeStreamInsertDocument extends ChangeStreamDocumentCommon, ChangeStreamDocumentKey, ChangeStreamDocumentCollectionUUID { + /** Describes the type of operation represented in this change notification */ + operationType: 'insert'; + /** This key will contain the document being inserted */ + fullDocument: TSchema; + /** Namespace the insert event occured on */ + ns: ChangeStreamNameSpace; +} + +/** + * @public + * @see https://www.mongodb.com/docs/manual/reference/change-events/#invalidate-event + */ +export declare interface ChangeStreamInvalidateDocument extends ChangeStreamDocumentCommon { + /** Describes the type of operation represented in this change notification */ + operationType: 'invalidate'; +} + +/** @public */ +export declare interface ChangeStreamNameSpace { + db: string; + coll: string; +} + +/** + * Options that can be passed to a ChangeStream. Note that startAfter, resumeAfter, and startAtOperationTime are all mutually exclusive, and the server will error if more than one is specified. + * @public + */ +export declare interface ChangeStreamOptions extends AggregateOptions { + /** + * Allowed values: 'updateLookup', 'whenAvailable', 'required'. + * + * When set to 'updateLookup', the change notification for partial updates + * will include both a delta describing the changes to the document as well + * as a copy of the entire document that was changed from some time after + * the change occurred. + * + * When set to 'whenAvailable', configures the change stream to return the + * post-image of the modified document for replace and update change events + * if the post-image for this event is available. + * + * When set to 'required', the same behavior as 'whenAvailable' except that + * an error is raised if the post-image is not available. + */ + fullDocument?: string; + /** + * Allowed values: 'whenAvailable', 'required', 'off'. + * + * The default is to not send a value, which is equivalent to 'off'. + * + * When set to 'whenAvailable', configures the change stream to return the + * pre-image of the modified document for replace, update, and delete change + * events if it is available. + * + * When set to 'required', the same behavior as 'whenAvailable' except that + * an error is raised if the pre-image is not available. + */ + fullDocumentBeforeChange?: string; + /** The maximum amount of time for the server to wait on new documents to satisfy a change stream query. */ + maxAwaitTimeMS?: number; + /** + * Allows you to start a changeStream after a specified event. + * @see https://docs.mongodb.com/manual/changeStreams/#resumeafter-for-change-streams + */ + resumeAfter?: ResumeToken; + /** + * Similar to resumeAfter, but will allow you to start after an invalidated event. + * @see https://docs.mongodb.com/manual/changeStreams/#startafter-for-change-streams + */ + startAfter?: ResumeToken; + /** Will start the changeStream after the specified operationTime. */ + startAtOperationTime?: OperationTime; + /** + * The number of documents to return per batch. + * @see https://docs.mongodb.com/manual/reference/command/aggregate + */ + batchSize?: number; + /** + * When enabled, configures the change stream to include extra change events. + * + * - createIndexes + * - dropIndexes + * - modify + * - create + * - shardCollection + * - reshardCollection + * - refineCollectionShardKey + */ + showExpandedEvents?: boolean; +} + +/** + * @public + * @see https://www.mongodb.com/docs/manual/reference/change-events/ + */ +export declare interface ChangeStreamRefineCollectionShardKeyDocument extends ChangeStreamDocumentCommon, ChangeStreamDocumentCollectionUUID, ChangeStreamDocumentOperationDescription { + /** Describes the type of operation represented in this change notification */ + operationType: 'refineCollectionShardKey'; +} + +/** + * @public + * @see https://www.mongodb.com/docs/manual/reference/change-events/#rename-event + */ +export declare interface ChangeStreamRenameDocument extends ChangeStreamDocumentCommon, ChangeStreamDocumentCollectionUUID { + /** Describes the type of operation represented in this change notification */ + operationType: 'rename'; + /** The new name for the `ns.coll` collection */ + to: { + db: string; + coll: string; + }; + /** The "from" namespace that the rename occured on */ + ns: ChangeStreamNameSpace; +} + +/** + * @public + * @see https://www.mongodb.com/docs/manual/reference/change-events/#replace-event + */ +export declare interface ChangeStreamReplaceDocument extends ChangeStreamDocumentCommon, ChangeStreamDocumentKey { + /** Describes the type of operation represented in this change notification */ + operationType: 'replace'; + /** The fullDocument of a replace event represents the document after the insert of the replacement document */ + fullDocument: TSchema; + /** Namespace the replace event occured on */ + ns: ChangeStreamNameSpace; + /** + * Contains the pre-image of the modified or deleted document if the + * pre-image is available for the change event and either 'required' or + * 'whenAvailable' was specified for the 'fullDocumentBeforeChange' option + * when creating the change stream. If 'whenAvailable' was specified but the + * pre-image is unavailable, this will be explicitly set to null. + */ + fullDocumentBeforeChange?: TSchema; +} + +/** + * @public + * @see https://www.mongodb.com/docs/manual/reference/change-events/ + */ +export declare interface ChangeStreamReshardCollectionDocument extends ChangeStreamDocumentCommon, ChangeStreamDocumentCollectionUUID, ChangeStreamDocumentOperationDescription { + /** Describes the type of operation represented in this change notification */ + operationType: 'reshardCollection'; +} + +/** + * @public + * @see https://www.mongodb.com/docs/manual/reference/change-events/ + */ +export declare interface ChangeStreamShardCollectionDocument extends ChangeStreamDocumentCommon, ChangeStreamDocumentCollectionUUID, ChangeStreamDocumentOperationDescription { + /** Describes the type of operation represented in this change notification */ + operationType: 'shardCollection'; +} + +/** + * @public + * @see https://www.mongodb.com/docs/manual/reference/change-events/#update-event + */ +export declare interface ChangeStreamUpdateDocument extends ChangeStreamDocumentCommon, ChangeStreamDocumentKey, ChangeStreamDocumentCollectionUUID { + /** Describes the type of operation represented in this change notification */ + operationType: 'update'; + /** + * This is only set if `fullDocument` is set to `'updateLookup'` + * Contains the point-in-time post-image of the modified document if the + * post-image is available and either 'required' or 'whenAvailable' was + * specified for the 'fullDocument' option when creating the change stream. + */ + fullDocument?: TSchema; + /** Contains a description of updated and removed fields in this operation */ + updateDescription: UpdateDescription; + /** Namespace the update event occured on */ + ns: ChangeStreamNameSpace; + /** + * Contains the pre-image of the modified or deleted document if the + * pre-image is available for the change event and either 'required' or + * 'whenAvailable' was specified for the 'fullDocumentBeforeChange' option + * when creating the change stream. If 'whenAvailable' was specified but the + * pre-image is unavailable, this will be explicitly set to null. + */ + fullDocumentBeforeChange?: TSchema; +} + +/** @public */ +export declare interface ClientMetadata { + driver: { + name: string; + version: string; + }; + os: { + type: string; + name: NodeJS.Platform; + architecture: string; + version: string; + }; + platform: string; + version?: string; + application?: { + name: string; + }; +} + +/** @public */ +export declare interface ClientMetadataOptions { + driverInfo?: { + name?: string; + version?: string; + platform?: string; + }; + appName?: string; +} + +/** + * A class representing a client session on the server + * + * NOTE: not meant to be instantiated directly. + * @public + */ +export declare class ClientSession extends TypedEventEmitter { + /* Excluded from this release type: client */ + /* Excluded from this release type: sessionPool */ + hasEnded: boolean; + clientOptions?: MongoOptions; + supports: { + causalConsistency: boolean; + }; + clusterTime?: ClusterTime; + operationTime?: Timestamp; + explicit: boolean; + /* Excluded from this release type: owner */ + defaultTransactionOptions: TransactionOptions; + transaction: Transaction; + /* Excluded from this release type: [kServerSession] */ + /* Excluded from this release type: [kSnapshotTime] */ + /* Excluded from this release type: [kSnapshotEnabled] */ + /* Excluded from this release type: [kPinnedConnection] */ + /* Excluded from this release type: [kTxnNumberIncrement] */ + /* Excluded from this release type: __constructor */ + /** The server id associated with this session */ + get id(): ServerSessionId | undefined; + get serverSession(): ServerSession; + /** Whether or not this session is configured for snapshot reads */ + get snapshotEnabled(): boolean; + get loadBalanced(): boolean; + /* Excluded from this release type: pinnedConnection */ + /* Excluded from this release type: pin */ + /* Excluded from this release type: unpin */ + get isPinned(): boolean; + /** + * Ends this session on the server + * + * @param options - Optional settings. Currently reserved for future use + * @param callback - Optional callback for completion of this operation + */ + endSession(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + endSession(callback: Callback): void; + endSession(options: EndSessionOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + endSession(options: EndSessionOptions, callback: Callback): void; + /** + * Advances the operationTime for a ClientSession. + * + * @param operationTime - the `BSON.Timestamp` of the operation type it is desired to advance to + */ + advanceOperationTime(operationTime: Timestamp): void; + /** + * Advances the clusterTime for a ClientSession to the provided clusterTime of another ClientSession + * + * @param clusterTime - the $clusterTime returned by the server from another session in the form of a document containing the `BSON.Timestamp` clusterTime and signature + */ + advanceClusterTime(clusterTime: ClusterTime): void; + /** + * Used to determine if this session equals another + * + * @param session - The session to compare to + */ + equals(session: ClientSession): boolean; + /** + * Increment the transaction number on the internal ServerSession + * + * @privateRemarks + * This helper increments a value stored on the client session that will be + * added to the serverSession's txnNumber upon applying it to a command. + * This is because the serverSession is lazily acquired after a connection is obtained + */ + incrementTransactionNumber(): void; + /** @returns whether this session is currently in a transaction or not */ + inTransaction(): boolean; + /** + * Starts a new transaction with the given options. + * + * @param options - Options for the transaction + */ + startTransaction(options?: TransactionOptions): void; + /** + * Commits the currently active transaction in this session. + * + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + commitTransaction(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + commitTransaction(callback: Callback): void; + /** + * Aborts the currently active transaction in this session. + * + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + abortTransaction(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + abortTransaction(callback: Callback): void; + /** + * This is here to ensure that ClientSession is never serialized to BSON. + */ + toBSON(): never; + /** + * Runs a provided callback within a transaction, retrying either the commitTransaction operation + * or entire transaction as needed (and when the error permits) to better ensure that + * the transaction can complete successfully. + * + * **IMPORTANT:** This method requires the user to return a Promise, and `await` all operations. + * Any callbacks that do not return a Promise will result in undefined behavior. + * + * @remarks + * This function: + * - Will return the command response from the final commitTransaction if every operation is successful (can be used as a truthy object) + * - Will return `undefined` if the transaction is explicitly aborted with `await session.abortTransaction()` + * - Will throw if one of the operations throws or `throw` statement is used inside the `withTransaction` callback + * + * Checkout a descriptive example here: + * @see https://www.mongodb.com/developer/quickstart/node-transactions/ + * + * @param fn - callback to run within a transaction + * @param options - optional settings for the transaction + * @returns A raw command response or undefined + */ + withTransaction(fn: WithTransactionCallback, options?: TransactionOptions): Promise; +} + +/** @public */ +export declare type ClientSessionEvents = { + ended(session: ClientSession): void; +}; + +/** @public */ +export declare interface ClientSessionOptions { + /** Whether causal consistency should be enabled on this session */ + causalConsistency?: boolean; + /** Whether all read operations should be read from the same snapshot for this session (NOTE: not compatible with `causalConsistency=true`) */ + snapshot?: boolean; + /** The default TransactionOptions to use for transactions started on this session. */ + defaultTransactionOptions?: TransactionOptions; + /* Excluded from this release type: owner */ + /* Excluded from this release type: explicit */ + /* Excluded from this release type: initialClusterTime */ +} + +/** @public */ +export declare interface CloseOptions { + force?: boolean; +} + +/** @public + * Configuration options for clustered collections + * @see https://www.mongodb.com/docs/manual/core/clustered-collections/ + */ +export declare interface ClusteredCollectionOptions extends Document { + name?: string; + key: Document; + unique: boolean; +} + +/** @public */ +export declare interface ClusterTime { + clusterTime: Timestamp; + signature: { + hash: Binary; + keyId: Long; + }; +} + +export { Code } + +/** @public */ +export declare interface CollationOptions { + locale: string; + caseLevel?: boolean; + caseFirst?: string; + strength?: number; + numericOrdering?: boolean; + alternate?: string; + maxVariable?: string; + backwards?: boolean; + normalization?: boolean; +} + +/** + * The **Collection** class is an internal class that embodies a MongoDB collection + * allowing for insert/find/update/delete and other command operation on that MongoDB collection. + * + * **COLLECTION Cannot directly be instantiated** + * @public + * + * @example + * ```ts + * import { MongoClient } from 'mongodb'; + * + * interface Pet { + * name: string; + * kind: 'dog' | 'cat' | 'fish'; + * } + * + * const client = new MongoClient('mongodb://localhost:27017'); + * const pets = client.db().collection('pets'); + * + * const petCursor = pets.find(); + * + * for await (const pet of petCursor) { + * console.log(`${pet.name} is a ${pet.kind}!`); + * } + * ``` + */ +export declare class Collection { + /* Excluded from this release type: s */ + /* Excluded from this release type: __constructor */ + /** + * The name of the database this collection belongs to + */ + get dbName(): string; + /** + * The name of this collection + */ + get collectionName(): string; + /** + * The namespace of this collection, in the format `${this.dbName}.${this.collectionName}` + */ + get namespace(): string; + /** + * The current readConcern of the collection. If not explicitly defined for + * this collection, will be inherited from the parent DB + */ + get readConcern(): ReadConcern | undefined; + /** + * The current readPreference of the collection. If not explicitly defined for + * this collection, will be inherited from the parent DB + */ + get readPreference(): ReadPreference | undefined; + get bsonOptions(): BSONSerializeOptions; + /** + * The current writeConcern of the collection. If not explicitly defined for + * this collection, will be inherited from the parent DB + */ + get writeConcern(): WriteConcern | undefined; + /** The current index hint for the collection */ + get hint(): Hint | undefined; + set hint(v: Hint | undefined); + /** + * Inserts a single document into MongoDB. If documents passed in do not contain the **_id** field, + * one will be added to each of the documents missing it by the driver, mutating the document. This behavior + * can be overridden by setting the **forceServerObjectId** flag. + * + * @param doc - The document to insert + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + insertOne(doc: OptionalUnlessRequiredId): Promise>; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + insertOne(doc: OptionalUnlessRequiredId, callback: Callback>): void; + insertOne(doc: OptionalUnlessRequiredId, options: InsertOneOptions): Promise>; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + insertOne(doc: OptionalUnlessRequiredId, options: InsertOneOptions, callback: Callback>): void; + /** + * Inserts an array of documents into MongoDB. If documents passed in do not contain the **_id** field, + * one will be added to each of the documents missing it by the driver, mutating the document. This behavior + * can be overridden by setting the **forceServerObjectId** flag. + * + * @param docs - The documents to insert + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + insertMany(docs: OptionalUnlessRequiredId[]): Promise>; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + insertMany(docs: OptionalUnlessRequiredId[], callback: Callback>): void; + insertMany(docs: OptionalUnlessRequiredId[], options: BulkWriteOptions): Promise>; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + insertMany(docs: OptionalUnlessRequiredId[], options: BulkWriteOptions, callback: Callback>): void; + /** + * Perform a bulkWrite operation without a fluent API + * + * Legal operation types are + * - `insertOne` + * - `replaceOne` + * - `updateOne` + * - `updateMany` + * - `deleteOne` + * - `deleteMany` + * + * Please note that raw operations are no longer accepted as of driver version 4.0. + * + * If documents passed in do not contain the **_id** field, + * one will be added to each of the documents missing it by the driver, mutating the document. This behavior + * can be overridden by setting the **forceServerObjectId** flag. + * + * @param operations - Bulk operations to perform + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + * @throws MongoDriverError if operations is not an array + */ + bulkWrite(operations: AnyBulkWriteOperation[]): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + bulkWrite(operations: AnyBulkWriteOperation[], callback: Callback): void; + bulkWrite(operations: AnyBulkWriteOperation[], options: BulkWriteOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + bulkWrite(operations: AnyBulkWriteOperation[], options: BulkWriteOptions, callback: Callback): void; + /** + * Update a single document in a collection + * + * @param filter - The filter used to select the document to update + * @param update - The update operations to be applied to the document + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + updateOne(filter: Filter, update: UpdateFilter | Partial): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + updateOne(filter: Filter, update: UpdateFilter | Partial, callback: Callback): void; + updateOne(filter: Filter, update: UpdateFilter | Partial, options: UpdateOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + updateOne(filter: Filter, update: UpdateFilter | Partial, options: UpdateOptions, callback: Callback): void; + /** + * Replace a document in a collection with another document + * + * @param filter - The filter used to select the document to replace + * @param replacement - The Document that replaces the matching document + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + replaceOne(filter: Filter, replacement: WithoutId): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + replaceOne(filter: Filter, replacement: WithoutId, callback: Callback): void; + replaceOne(filter: Filter, replacement: WithoutId, options: ReplaceOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + replaceOne(filter: Filter, replacement: WithoutId, options: ReplaceOptions, callback: Callback): void; + /** + * Update multiple documents in a collection + * + * @param filter - The filter used to select the documents to update + * @param update - The update operations to be applied to the documents + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + updateMany(filter: Filter, update: UpdateFilter): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + updateMany(filter: Filter, update: UpdateFilter, callback: Callback): void; + updateMany(filter: Filter, update: UpdateFilter, options: UpdateOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + updateMany(filter: Filter, update: UpdateFilter, options: UpdateOptions, callback: Callback): void; + /** + * Delete a document from a collection + * + * @param filter - The filter used to select the document to remove + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + deleteOne(filter: Filter): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + deleteOne(filter: Filter, callback: Callback): void; + deleteOne(filter: Filter, options: DeleteOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + deleteOne(filter: Filter, options: DeleteOptions, callback?: Callback): void; + /** + * Delete multiple documents from a collection + * + * @param filter - The filter used to select the documents to remove + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + deleteMany(filter: Filter): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + deleteMany(filter: Filter, callback: Callback): void; + deleteMany(filter: Filter, options: DeleteOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + deleteMany(filter: Filter, options: DeleteOptions, callback: Callback): void; + /** + * Rename the collection. + * + * @remarks + * This operation does not inherit options from the Db or MongoClient. + * + * @param newName - New name of of the collection. + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + rename(newName: string): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + rename(newName: string, callback: Callback): void; + rename(newName: string, options: RenameOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + rename(newName: string, options: RenameOptions, callback: Callback): void; + /** + * Drop the collection from the database, removing it permanently. New accesses will create a new collection. + * + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + drop(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + drop(callback: Callback): void; + drop(options: DropCollectionOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + drop(options: DropCollectionOptions, callback: Callback): void; + /** + * Fetches the first document that matches the filter + * + * @param filter - Query for find Operation + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + findOne(): Promise | null>; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + findOne(callback: Callback | null>): void; + findOne(filter: Filter): Promise | null>; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + findOne(filter: Filter, callback: Callback | null>): void; + findOne(filter: Filter, options: FindOptions): Promise | null>; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + findOne(filter: Filter, options: FindOptions, callback: Callback | null>): void; + findOne(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + findOne(callback: Callback): void; + findOne(filter: Filter): Promise; + findOne(filter: Filter, options?: FindOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + findOne(filter: Filter, options?: FindOptions, callback?: Callback): void; + /** + * Creates a cursor for a filter that can be used to iterate over results from MongoDB + * + * @param filter - The filter predicate. If unspecified, then all documents in the collection will match the predicate + */ + find(): FindCursor>; + find(filter: Filter, options?: FindOptions): FindCursor>; + find(filter: Filter, options?: FindOptions): FindCursor; + /** + * Returns the options of the collection. + * + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + options(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + options(callback: Callback): void; + options(options: OperationOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + options(options: OperationOptions, callback: Callback): void; + /** + * Returns if the collection is a capped collection + * + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + isCapped(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + isCapped(callback: Callback): void; + isCapped(options: OperationOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + isCapped(options: OperationOptions, callback: Callback): void; + /** + * Creates an index on the db and collection collection. + * + * @param indexSpec - The field name or index specification to create an index for + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + * + * @example + * ```ts + * const collection = client.db('foo').collection('bar'); + * + * await collection.createIndex({ a: 1, b: -1 }); + * + * // Alternate syntax for { c: 1, d: -1 } that ensures order of indexes + * await collection.createIndex([ [c, 1], [d, -1] ]); + * + * // Equivalent to { e: 1 } + * await collection.createIndex('e'); + * + * // Equivalent to { f: 1, g: 1 } + * await collection.createIndex(['f', 'g']) + * + * // Equivalent to { h: 1, i: -1 } + * await collection.createIndex([ { h: 1 }, { i: -1 } ]); + * + * // Equivalent to { j: 1, k: -1, l: 2d } + * await collection.createIndex(['j', ['k', -1], { l: '2d' }]) + * ``` + */ + createIndex(indexSpec: IndexSpecification): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + createIndex(indexSpec: IndexSpecification, callback: Callback): void; + createIndex(indexSpec: IndexSpecification, options: CreateIndexesOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + createIndex(indexSpec: IndexSpecification, options: CreateIndexesOptions, callback: Callback): void; + /** + * Creates multiple indexes in the collection, this method is only supported for + * MongoDB 2.6 or higher. Earlier version of MongoDB will throw a command not supported + * error. + * + * **Note**: Unlike {@link Collection#createIndex| createIndex}, this function takes in raw index specifications. + * Index specifications are defined {@link http://docs.mongodb.org/manual/reference/command/createIndexes/| here}. + * + * @param indexSpecs - An array of index specifications to be created + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + * + * @example + * ```ts + * const collection = client.db('foo').collection('bar'); + * await collection.createIndexes([ + * // Simple index on field fizz + * { + * key: { fizz: 1 }, + * } + * // wildcard index + * { + * key: { '$**': 1 } + * }, + * // named index on darmok and jalad + * { + * key: { darmok: 1, jalad: -1 } + * name: 'tanagra' + * } + * ]); + * ``` + */ + createIndexes(indexSpecs: IndexDescription[]): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + createIndexes(indexSpecs: IndexDescription[], callback: Callback): void; + createIndexes(indexSpecs: IndexDescription[], options: CreateIndexesOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + createIndexes(indexSpecs: IndexDescription[], options: CreateIndexesOptions, callback: Callback): void; + /** + * Drops an index from this collection. + * + * @param indexName - Name of the index to drop. + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + dropIndex(indexName: string): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + dropIndex(indexName: string, callback: Callback): void; + dropIndex(indexName: string, options: DropIndexesOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + dropIndex(indexName: string, options: DropIndexesOptions, callback: Callback): void; + /** + * Drops all indexes from this collection. + * + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + dropIndexes(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + dropIndexes(callback: Callback): void; + dropIndexes(options: DropIndexesOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + dropIndexes(options: DropIndexesOptions, callback: Callback): void; + /** + * Get the list of all indexes information for the collection. + * + * @param options - Optional settings for the command + */ + listIndexes(options?: ListIndexesOptions): ListIndexesCursor; + /** + * Checks if one or more indexes exist on the collection, fails on first non-existing index + * + * @param indexes - One or more index names to check. + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + indexExists(indexes: string | string[]): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + indexExists(indexes: string | string[], callback: Callback): void; + indexExists(indexes: string | string[], options: IndexInformationOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + indexExists(indexes: string | string[], options: IndexInformationOptions, callback: Callback): void; + /** + * Retrieves this collections index info. + * + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + indexInformation(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + indexInformation(callback: Callback): void; + indexInformation(options: IndexInformationOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + indexInformation(options: IndexInformationOptions, callback: Callback): void; + /** + * Gets an estimate of the count of documents in a collection using collection metadata. + * This will always run a count command on all server versions. + * + * due to an oversight in versions 5.0.0-5.0.8 of MongoDB, the count command, + * which estimatedDocumentCount uses in its implementation, was not included in v1 of + * the Stable API, and so users of the Stable API with estimatedDocumentCount are + * recommended to upgrade their server version to 5.0.9+ or set apiStrict: false to avoid + * encountering errors. + * + * @see {@link https://www.mongodb.com/docs/manual/reference/command/count/#behavior|Count: Behavior} + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + estimatedDocumentCount(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + estimatedDocumentCount(callback: Callback): void; + estimatedDocumentCount(options: EstimatedDocumentCountOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + estimatedDocumentCount(options: EstimatedDocumentCountOptions, callback: Callback): void; + /** + * Gets the number of documents matching the filter. + * For a fast count of the total documents in a collection see {@link Collection#estimatedDocumentCount| estimatedDocumentCount}. + * **Note**: When migrating from {@link Collection#count| count} to {@link Collection#countDocuments| countDocuments} + * the following query operators must be replaced: + * + * | Operator | Replacement | + * | -------- | ----------- | + * | `$where` | [`$expr`][1] | + * | `$near` | [`$geoWithin`][2] with [`$center`][3] | + * | `$nearSphere` | [`$geoWithin`][2] with [`$centerSphere`][4] | + * + * [1]: https://docs.mongodb.com/manual/reference/operator/query/expr/ + * [2]: https://docs.mongodb.com/manual/reference/operator/query/geoWithin/ + * [3]: https://docs.mongodb.com/manual/reference/operator/query/center/#op._S_center + * [4]: https://docs.mongodb.com/manual/reference/operator/query/centerSphere/#op._S_centerSphere + * + * @param filter - The filter for the count + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + * + * @see https://docs.mongodb.com/manual/reference/operator/query/expr/ + * @see https://docs.mongodb.com/manual/reference/operator/query/geoWithin/ + * @see https://docs.mongodb.com/manual/reference/operator/query/center/#op._S_center + * @see https://docs.mongodb.com/manual/reference/operator/query/centerSphere/#op._S_centerSphere + */ + countDocuments(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + countDocuments(callback: Callback): void; + countDocuments(filter: Filter): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + countDocuments(callback: Callback): void; + countDocuments(filter: Filter, options: CountDocumentsOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + countDocuments(filter: Filter, options: CountDocumentsOptions, callback: Callback): void; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + countDocuments(filter: Filter, callback: Callback): void; + /** + * The distinct command returns a list of distinct values for the given key across a collection. + * + * @param key - Field of the document to find distinct values for + * @param filter - The filter for filtering the set of documents to which we apply the distinct filter. + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + distinct>(key: Key): Promise[Key]>>>; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + distinct>(key: Key, callback: Callback[Key]>>>): void; + distinct>(key: Key, filter: Filter): Promise[Key]>>>; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + distinct>(key: Key, filter: Filter, callback: Callback[Key]>>>): void; + distinct>(key: Key, filter: Filter, options: DistinctOptions): Promise[Key]>>>; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + distinct>(key: Key, filter: Filter, options: DistinctOptions, callback: Callback[Key]>>>): void; + distinct(key: string): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + distinct(key: string, callback: Callback): void; + distinct(key: string, filter: Filter): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + distinct(key: string, filter: Filter, callback: Callback): void; + distinct(key: string, filter: Filter, options: DistinctOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + distinct(key: string, filter: Filter, options: DistinctOptions, callback: Callback): void; + /** + * Retrieve all the indexes on the collection. + * + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + indexes(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + indexes(callback: Callback): void; + indexes(options: IndexInformationOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + indexes(options: IndexInformationOptions, callback: Callback): void; + /** + * Get all the collection statistics. + * + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + stats(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + stats(callback: Callback): void; + stats(options: CollStatsOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + stats(options: CollStatsOptions, callback: Callback): void; + /** + * Find a document and delete it in one atomic operation. Requires a write lock for the duration of the operation. + * + * @param filter - The filter used to select the document to remove + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + findOneAndDelete(filter: Filter): Promise>; + findOneAndDelete(filter: Filter, options: FindOneAndDeleteOptions): Promise>; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + findOneAndDelete(filter: Filter, callback: Callback>): void; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + findOneAndDelete(filter: Filter, options: FindOneAndDeleteOptions, callback: Callback>): void; + /** + * Find a document and replace it in one atomic operation. Requires a write lock for the duration of the operation. + * + * @param filter - The filter used to select the document to replace + * @param replacement - The Document that replaces the matching document + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + findOneAndReplace(filter: Filter, replacement: WithoutId): Promise>; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + findOneAndReplace(filter: Filter, replacement: WithoutId, callback: Callback>): void; + findOneAndReplace(filter: Filter, replacement: WithoutId, options: FindOneAndReplaceOptions): Promise>; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + findOneAndReplace(filter: Filter, replacement: WithoutId, options: FindOneAndReplaceOptions, callback: Callback>): void; + /** + * Find a document and update it in one atomic operation. Requires a write lock for the duration of the operation. + * + * @param filter - The filter used to select the document to update + * @param update - Update operations to be performed on the document + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + findOneAndUpdate(filter: Filter, update: UpdateFilter): Promise>; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + findOneAndUpdate(filter: Filter, update: UpdateFilter, callback: Callback>): void; + findOneAndUpdate(filter: Filter, update: UpdateFilter, options: FindOneAndUpdateOptions): Promise>; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + findOneAndUpdate(filter: Filter, update: UpdateFilter, options: FindOneAndUpdateOptions, callback: Callback>): void; + /** + * Execute an aggregation framework pipeline against the collection, needs MongoDB \>= 2.2 + * + * @param pipeline - An array of aggregation pipelines to execute + * @param options - Optional settings for the command + */ + aggregate(pipeline?: Document[], options?: AggregateOptions): AggregationCursor; + /** + * Create a new Change Stream, watching for new changes (insertions, updates, replacements, deletions, and invalidations) in this collection. + * + * @remarks + * watch() accepts two generic arguments for distinct usecases: + * - The first is to override the schema that may be defined for this specific collection + * - The second is to override the shape of the change stream document entirely, if it is not provided the type will default to ChangeStreamDocument of the first argument + * @example + * By just providing the first argument I can type the change to be `ChangeStreamDocument<{ _id: number }>` + * ```ts + * collection.watch<{ _id: number }>() + * .on('change', change => console.log(change._id.toFixed(4))); + * ``` + * + * @example + * Passing a second argument provides a way to reflect the type changes caused by an advanced pipeline. + * Here, we are using a pipeline to have MongoDB filter for insert changes only and add a comment. + * No need start from scratch on the ChangeStreamInsertDocument type! + * By using an intersection we can save time and ensure defaults remain the same type! + * ```ts + * collection + * .watch & { comment: string }>([ + * { $addFields: { comment: 'big changes' } }, + * { $match: { operationType: 'insert' } } + * ]) + * .on('change', change => { + * change.comment.startsWith('big'); + * change.operationType === 'insert'; + * // No need to narrow in code because the generics did that for us! + * expectType(change.fullDocument); + * }); + * ``` + * + * @param pipeline - An array of {@link https://docs.mongodb.com/manual/reference/operator/aggregation-pipeline/|aggregation pipeline stages} through which to pass change stream documents. This allows for filtering (using $match) and manipulating the change stream documents. + * @param options - Optional settings for the command + * @typeParam TLocal - Type of the data being detected by the change stream + * @typeParam TChange - Type of the whole change stream document emitted + */ + watch>(pipeline?: Document[], options?: ChangeStreamOptions): ChangeStream; + /** + * Run Map Reduce across a collection. Be aware that the inline option for out will return an array of results not a collection. + * + * @deprecated collection.mapReduce is deprecated. Use the aggregation pipeline instead. Visit https://docs.mongodb.com/manual/reference/map-reduce-to-aggregation-pipeline for more information on how to translate map-reduce operations to the aggregation pipeline. + * @param map - The mapping function. + * @param reduce - The reduce function. + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + mapReduce(map: string | MapFunction, reduce: string | ReduceFunction): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + mapReduce(map: string | MapFunction, reduce: string | ReduceFunction, callback: Callback): void; + mapReduce(map: string | MapFunction, reduce: string | ReduceFunction, options: MapReduceOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + mapReduce(map: string | MapFunction, reduce: string | ReduceFunction, options: MapReduceOptions, callback: Callback): void; + /** + * Initiate an Out of order batch write operation. All operations will be buffered into insert/update/remove commands executed out of order. + * + * @throws MongoNotConnectedError + * @remarks + * **NOTE:** MongoClient must be connected prior to calling this method due to a known limitation in this legacy implemenation. + * However, `collection.bulkWrite()` provides an equivalent API that does not require prior connecting. + */ + initializeUnorderedBulkOp(options?: BulkWriteOptions): UnorderedBulkOperation; + /** + * Initiate an In order bulk write operation. Operations will be serially executed in the order they are added, creating a new operation for each switch in types. + * + * @throws MongoNotConnectedError + * @remarks + * **NOTE:** MongoClient must be connected prior to calling this method due to a known limitation in this legacy implemenation. + * However, `collection.bulkWrite()` provides an equivalent API that does not require prior connecting. + */ + initializeOrderedBulkOp(options?: BulkWriteOptions): OrderedBulkOperation; + /** Get the db scoped logger */ + getLogger(): Logger; + get logger(): Logger; + /** + * Inserts a single document or a an array of documents into MongoDB. If documents passed in do not contain the **_id** field, + * one will be added to each of the documents missing it by the driver, mutating the document. This behavior + * can be overridden by setting the **forceServerObjectId** flag. + * + * @deprecated Use insertOne, insertMany or bulkWrite instead. Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance + * @param docs - The documents to insert + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + insert(docs: OptionalUnlessRequiredId[], options: BulkWriteOptions, callback: Callback>): Promise> | void; + /** + * Updates documents. + * + * @deprecated use updateOne, updateMany or bulkWrite. Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance + * @param filter - The filter for the update operation. + * @param update - The update operations to be applied to the documents + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + update(filter: Filter, update: UpdateFilter, options: UpdateOptions, callback: Callback): Promise | void; + /** + * Remove documents. + * + * @deprecated use deleteOne, deleteMany or bulkWrite. Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance + * @param filter - The filter for the remove operation. + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + remove(filter: Filter, options: DeleteOptions, callback: Callback): Promise | void; + /** + * An estimated count of matching documents in the db to a filter. + * + * **NOTE:** This method has been deprecated, since it does not provide an accurate count of the documents + * in a collection. To obtain an accurate count of documents in the collection, use {@link Collection#countDocuments| countDocuments}. + * To obtain an estimated count of all documents in the collection, use {@link Collection#estimatedDocumentCount| estimatedDocumentCount}. + * + * @deprecated use {@link Collection#countDocuments| countDocuments} or {@link Collection#estimatedDocumentCount| estimatedDocumentCount} instead + * + * @param filter - The filter for the count. + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + count(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + count(callback: Callback): void; + count(filter: Filter): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + count(filter: Filter, callback: Callback): void; + count(filter: Filter, options: CountOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + count(filter: Filter, options: CountOptions, callback: Callback): Promise | void; +} + +/** @public */ +export declare interface CollectionInfo extends Document { + name: string; + type?: string; + options?: Document; + info?: { + readOnly?: false; + uuid?: Binary; + }; + idIndex?: Document; +} + +/** @public */ +export declare interface CollectionOptions extends BSONSerializeOptions, WriteConcernOptions, LoggerOptions { + /** + * @deprecated Use readPreference instead + */ + slaveOk?: boolean; + /** Specify a read concern for the collection. (only MongoDB 3.2 or higher supported) */ + readConcern?: ReadConcernLike; + /** The preferred read preference (ReadPreference.PRIMARY, ReadPreference.PRIMARY_PREFERRED, ReadPreference.SECONDARY, ReadPreference.SECONDARY_PREFERRED, ReadPreference.NEAREST). */ + readPreference?: ReadPreferenceLike; +} + +/* Excluded from this release type: CollectionPrivate */ + +/** + * @public + * @see https://docs.mongodb.org/manual/reference/command/collStats/ + */ +export declare interface CollStats extends Document { + /** Namespace */ + ns: string; + /** Number of documents */ + count: number; + /** Collection size in bytes */ + size: number; + /** Average object size in bytes */ + avgObjSize: number; + /** (Pre)allocated space for the collection in bytes */ + storageSize: number; + /** Number of extents (contiguously allocated chunks of datafile space) */ + numExtents: number; + /** Number of indexes */ + nindexes: number; + /** Size of the most recently created extent in bytes */ + lastExtentSize: number; + /** Padding can speed up updates if documents grow */ + paddingFactor: number; + /** A number that indicates the user-set flags on the collection. userFlags only appears when using the mmapv1 storage engine */ + userFlags?: number; + /** Total index size in bytes */ + totalIndexSize: number; + /** Size of specific indexes in bytes */ + indexSizes: { + _id_: number; + [index: string]: number; + }; + /** `true` if the collection is capped */ + capped: boolean; + /** The maximum number of documents that may be present in a capped collection */ + max: number; + /** The maximum size of a capped collection */ + maxSize: number; + /** This document contains data reported directly by the WiredTiger engine and other data for internal diagnostic use */ + wiredTiger?: WiredTigerData; + /** The fields in this document are the names of the indexes, while the values themselves are documents that contain statistics for the index provided by the storage engine */ + indexDetails?: any; + ok: number; + /** The amount of storage available for reuse. The scale argument affects this value. */ + freeStorageSize?: number; + /** An array that contains the names of the indexes that are currently being built on the collection */ + indexBuilds?: number; + /** The sum of the storageSize and totalIndexSize. The scale argument affects this value */ + totalSize: number; + /** The scale value used by the command. */ + scaleFactor: number; +} + +/** @public */ +export declare interface CollStatsOptions extends CommandOperationOptions { + /** Divide the returned sizes by scale value. */ + scale?: number; +} + +/** + * An event indicating the failure of a given command + * @public + * @category Event + */ +export declare class CommandFailedEvent { + address: string; + connectionId?: string | number; + requestId: number; + duration: number; + commandName: string; + failure: Error; + serviceId?: ObjectId; + /* Excluded from this release type: __constructor */ + get hasServiceId(): boolean; +} + +/* Excluded from this release type: CommandOperation */ + +/** @public */ +export declare interface CommandOperationOptions extends OperationOptions, WriteConcernOptions, ExplainOptions { + /** @deprecated This option does nothing */ + fullResponse?: boolean; + /** Specify a read concern and level for the collection. (only MongoDB 3.2 or higher supported) */ + readConcern?: ReadConcernLike; + /** Collation */ + collation?: CollationOptions; + maxTimeMS?: number; + /** + * Comment to apply to the operation. + * + * In server versions pre-4.4, 'comment' must be string. A server + * error will be thrown if any other type is provided. + * + * In server versions 4.4 and above, 'comment' can be any valid BSON type. + */ + comment?: unknown; + /** Should retry failed writes */ + retryWrites?: boolean; + dbName?: string; + authdb?: string; + noResponse?: boolean; +} + +/* Excluded from this release type: CommandOptions */ + +/** + * An event indicating the start of a given + * @public + * @category Event + */ +export declare class CommandStartedEvent { + commandObj?: Document; + requestId: number; + databaseName: string; + commandName: string; + command: Document; + address: string; + connectionId?: string | number; + serviceId?: ObjectId; + /* Excluded from this release type: __constructor */ + get hasServiceId(): boolean; +} + +/** + * An event indicating the success of a given command + * @public + * @category Event + */ +export declare class CommandSucceededEvent { + address: string; + connectionId?: string | number; + requestId: number; + duration: number; + commandName: string; + reply: unknown; + serviceId?: ObjectId; + /* Excluded from this release type: __constructor */ + get hasServiceId(): boolean; +} + +/** @public */ +export declare type CommonEvents = 'newListener' | 'removeListener'; + +/** @public */ +export declare const Compressor: Readonly<{ + readonly none: 0; + readonly snappy: 1; + readonly zlib: 2; + readonly zstd: 3; +}>; + +/** @public */ +export declare type Compressor = typeof Compressor[CompressorName]; + +/** @public */ +export declare type CompressorName = keyof typeof Compressor; + +/** @public */ +export declare type Condition = AlternativeType | FilterOperators>; + +/* Excluded from this release type: Connection */ + +/** + * An event published when a connection is checked into the connection pool + * @public + * @category Event + */ +export declare class ConnectionCheckedInEvent extends ConnectionPoolMonitoringEvent { + /** The id of the connection */ + connectionId: number | ''; + /* Excluded from this release type: __constructor */ +} + +/** + * An event published when a connection is checked out of the connection pool + * @public + * @category Event + */ +export declare class ConnectionCheckedOutEvent extends ConnectionPoolMonitoringEvent { + /** The id of the connection */ + connectionId: number | ''; + /* Excluded from this release type: __constructor */ +} + +/** + * An event published when a request to check a connection out fails + * @public + * @category Event + */ +export declare class ConnectionCheckOutFailedEvent extends ConnectionPoolMonitoringEvent { + /** The reason the attempt to check out failed */ + reason: AnyError | string; + /* Excluded from this release type: __constructor */ +} + +/** + * An event published when a request to check a connection out begins + * @public + * @category Event + */ +export declare class ConnectionCheckOutStartedEvent extends ConnectionPoolMonitoringEvent { + /* Excluded from this release type: __constructor */ +} + +/** + * An event published when a connection is closed + * @public + * @category Event + */ +export declare class ConnectionClosedEvent extends ConnectionPoolMonitoringEvent { + /** The id of the connection */ + connectionId: number | ''; + /** The reason the connection was closed */ + reason: string; + serviceId?: ObjectId; + /* Excluded from this release type: __constructor */ +} + +/** + * An event published when a connection pool creates a new connection + * @public + * @category Event + */ +export declare class ConnectionCreatedEvent extends ConnectionPoolMonitoringEvent { + /** A monotonically increasing, per-pool id for the newly created connection */ + connectionId: number | ''; + /* Excluded from this release type: __constructor */ +} + +/** @public */ +export declare type ConnectionEvents = { + commandStarted(event: CommandStartedEvent): void; + commandSucceeded(event: CommandSucceededEvent): void; + commandFailed(event: CommandFailedEvent): void; + clusterTimeReceived(clusterTime: Document): void; + close(): void; + message(message: any): void; + pinned(pinType: string): void; + unpinned(pinType: string): void; +}; + +/** @public */ +export declare interface ConnectionOptions extends SupportedNodeConnectionOptions, StreamDescriptionOptions, ProxyOptions { + id: number | ''; + generation: number; + hostAddress: HostAddress; + autoEncrypter?: AutoEncrypter; + serverApi?: ServerApi; + monitorCommands: boolean; + /* Excluded from this release type: connectionType */ + credentials?: MongoCredentials; + connectTimeoutMS?: number; + tls: boolean; + keepAlive?: boolean; + keepAliveInitialDelay?: number; + noDelay?: boolean; + socketTimeoutMS?: number; + cancellationToken?: CancellationToken; + metadata: ClientMetadata; +} + +/* Excluded from this release type: ConnectionPool */ + +/** + * An event published when a connection pool is cleared + * @public + * @category Event + */ +export declare class ConnectionPoolClearedEvent extends ConnectionPoolMonitoringEvent { + /* Excluded from this release type: serviceId */ + /* Excluded from this release type: __constructor */ +} + +/** + * An event published when a connection pool is closed + * @public + * @category Event + */ +export declare class ConnectionPoolClosedEvent extends ConnectionPoolMonitoringEvent { + /* Excluded from this release type: __constructor */ +} + +/** + * An event published when a connection pool is created + * @public + * @category Event + */ +export declare class ConnectionPoolCreatedEvent extends ConnectionPoolMonitoringEvent { + /** The options used to create this connection pool */ + options?: ConnectionPoolOptions; + /* Excluded from this release type: __constructor */ +} + +/** @public */ +export declare type ConnectionPoolEvents = { + connectionPoolCreated(event: ConnectionPoolCreatedEvent): void; + connectionPoolReady(event: ConnectionPoolReadyEvent): void; + connectionPoolClosed(event: ConnectionPoolClosedEvent): void; + connectionPoolCleared(event: ConnectionPoolClearedEvent): void; + connectionCreated(event: ConnectionCreatedEvent): void; + connectionReady(event: ConnectionReadyEvent): void; + connectionClosed(event: ConnectionClosedEvent): void; + connectionCheckOutStarted(event: ConnectionCheckOutStartedEvent): void; + connectionCheckOutFailed(event: ConnectionCheckOutFailedEvent): void; + connectionCheckedOut(event: ConnectionCheckedOutEvent): void; + connectionCheckedIn(event: ConnectionCheckedInEvent): void; +} & Omit; + +/* Excluded from this release type: ConnectionPoolMetrics */ + +/** + * The base export class for all monitoring events published from the connection pool + * @public + * @category Event + */ +export declare class ConnectionPoolMonitoringEvent { + /** A timestamp when the event was created */ + time: Date; + /** The address (host/port pair) of the pool */ + address: string; + /* Excluded from this release type: __constructor */ +} + +/** @public */ +export declare interface ConnectionPoolOptions extends Omit { + /** The maximum number of connections that may be associated with a pool at a given time. This includes in use and available connections. */ + maxPoolSize: number; + /** The minimum number of connections that MUST exist at any moment in a single connection pool. */ + minPoolSize: number; + /** The maximum number of connections that may be in the process of being established concurrently by the connection pool. */ + maxConnecting: number; + /** The maximum amount of time a connection should remain idle in the connection pool before being marked idle. */ + maxIdleTimeMS: number; + /** The maximum amount of time operation execution should wait for a connection to become available. The default is 0 which means there is no limit. */ + waitQueueTimeoutMS: number; + /** If we are in load balancer mode. */ + loadBalanced: boolean; +} + +/** + * An event published when a connection pool is ready + * @public + * @category Event + */ +export declare class ConnectionPoolReadyEvent extends ConnectionPoolMonitoringEvent { + /* Excluded from this release type: __constructor */ +} + +/** + * An event published when a connection is ready for use + * @public + * @category Event + */ +export declare class ConnectionReadyEvent extends ConnectionPoolMonitoringEvent { + /** The id of the connection */ + connectionId: number | ''; + /* Excluded from this release type: __constructor */ +} + +/** @public */ +export declare interface ConnectOptions { + readPreference?: ReadPreference; +} + +/** @public */ +export declare interface CountDocumentsOptions extends AggregateOptions { + /** The number of documents to skip. */ + skip?: number; + /** The maximum amounts to count before aborting. */ + limit?: number; +} + +/** @public */ +export declare interface CountOptions extends CommandOperationOptions { + /** The number of documents to skip. */ + skip?: number; + /** The maximum amounts to count before aborting. */ + limit?: number; + /** Number of milliseconds to wait before aborting the query. */ + maxTimeMS?: number; + /** An index name hint for the query. */ + hint?: string | Document; +} + +/** @public */ +export declare interface CreateCollectionOptions extends CommandOperationOptions { + /** Returns an error if the collection does not exist */ + strict?: boolean; + /** Create a capped collection */ + capped?: boolean; + /** @deprecated Create an index on the _id field of the document, True by default on MongoDB 2.6 - 3.0 */ + autoIndexId?: boolean; + /** The size of the capped collection in bytes */ + size?: number; + /** The maximum number of documents in the capped collection */ + max?: number; + /** Available for the MMAPv1 storage engine only to set the usePowerOf2Sizes and the noPadding flag */ + flags?: number; + /** Allows users to specify configuration to the storage engine on a per-collection basis when creating a collection on MongoDB 3.0 or higher */ + storageEngine?: Document; + /** Allows users to specify validation rules or expressions for the collection. For more information, see Document Validation on MongoDB 3.2 or higher */ + validator?: Document; + /** Determines how strictly MongoDB applies the validation rules to existing documents during an update on MongoDB 3.2 or higher */ + validationLevel?: string; + /** Determines whether to error on invalid documents or just warn about the violations but allow invalid documents to be inserted on MongoDB 3.2 or higher */ + validationAction?: string; + /** Allows users to specify a default configuration for indexes when creating a collection on MongoDB 3.2 or higher */ + indexOptionDefaults?: Document; + /** The name of the source collection or view from which to create the view. The name is not the full namespace of the collection or view; i.e. does not include the database name and implies the same database as the view to create on MongoDB 3.4 or higher */ + viewOn?: string; + /** An array that consists of the aggregation pipeline stage. Creates the view by applying the specified pipeline to the viewOn collection or view on MongoDB 3.4 or higher */ + pipeline?: Document[]; + /** A primary key factory function for generation of custom _id keys. */ + pkFactory?: PkFactory; + /** A document specifying configuration options for timeseries collections. */ + timeseries?: TimeSeriesCollectionOptions; + /** A document specifying configuration options for clustered collections. For MongoDB 5.3 and above. */ + clusteredIndex?: ClusteredCollectionOptions; + /** The number of seconds after which a document in a timeseries or clustered collection expires. */ + expireAfterSeconds?: number; + /** @experimental */ + encryptedFields?: Document; + /** + * If set, enables pre-update and post-update document events to be included for any + * change streams that listen on this collection. + */ + changeStreamPreAndPostImages?: { + enabled: boolean; + }; +} + +/** @public */ +export declare interface CreateIndexesOptions extends CommandOperationOptions { + /** Creates the index in the background, yielding whenever possible. */ + background?: boolean; + /** Creates an unique index. */ + unique?: boolean; + /** Override the autogenerated index name (useful if the resulting name is larger than 128 bytes) */ + name?: string; + /** Creates a partial index based on the given filter object (MongoDB 3.2 or higher) */ + partialFilterExpression?: Document; + /** Creates a sparse index. */ + sparse?: boolean; + /** Allows you to expire data on indexes applied to a data (MongoDB 2.2 or higher) */ + expireAfterSeconds?: number; + /** Allows users to configure the storage engine on a per-index basis when creating an index. (MongoDB 3.0 or higher) */ + storageEngine?: Document; + /** (MongoDB 4.4. or higher) Specifies how many data-bearing members of a replica set, including the primary, must complete the index builds successfully before the primary marks the indexes as ready. This option accepts the same values for the "w" field in a write concern plus "votingMembers", which indicates all voting data-bearing nodes. */ + commitQuorum?: number | string; + /** Specifies the index version number, either 0 or 1. */ + version?: number; + weights?: Document; + default_language?: string; + language_override?: string; + textIndexVersion?: number; + '2dsphereIndexVersion'?: number; + bits?: number; + /** For geospatial indexes set the lower bound for the co-ordinates. */ + min?: number; + /** For geospatial indexes set the high bound for the co-ordinates. */ + max?: number; + bucketSize?: number; + wildcardProjection?: Document; + /** Specifies that the index should exist on the target collection but should not be used by the query planner when executing operations. (MongoDB 4.4 or higher) */ + hidden?: boolean; +} + +/** @public */ +export declare const CURSOR_FLAGS: readonly ["tailable", "oplogReplay", "noCursorTimeout", "awaitData", "exhaust", "partial"]; + +/** @public + * @deprecated This interface is deprecated */ +export declare interface CursorCloseOptions { + /** Bypass calling killCursors when closing the cursor. */ + /** @deprecated the skipKillCursors option is deprecated */ + skipKillCursors?: boolean; +} + +/** @public */ +export declare type CursorFlag = typeof CURSOR_FLAGS[number]; + +/** @public */ +export declare interface CursorStreamOptions { + /** A transformation method applied to each document emitted by the stream */ + transform?(this: void, doc: Document): Document; +} + +/** + * The **Db** class is a class that represents a MongoDB Database. + * @public + * + * @example + * ```ts + * import { MongoClient } from 'mongodb'; + * + * interface Pet { + * name: string; + * kind: 'dog' | 'cat' | 'fish'; + * } + * + * const client = new MongoClient('mongodb://localhost:27017'); + * const db = client.db(); + * + * // Create a collection that validates our union + * await db.createCollection('pets', { + * validator: { $expr: { $in: ['$kind', ['dog', 'cat', 'fish']] } } + * }) + * ``` + */ +export declare class Db { + /* Excluded from this release type: s */ + static SYSTEM_NAMESPACE_COLLECTION: string; + static SYSTEM_INDEX_COLLECTION: string; + static SYSTEM_PROFILE_COLLECTION: string; + static SYSTEM_USER_COLLECTION: string; + static SYSTEM_COMMAND_COLLECTION: string; + static SYSTEM_JS_COLLECTION: string; + /** + * Creates a new Db instance + * + * @param client - The MongoClient for the database. + * @param databaseName - The name of the database this instance represents. + * @param options - Optional settings for Db construction + */ + constructor(client: MongoClient, databaseName: string, options?: DbOptions); + get databaseName(): string; + get options(): DbOptions | undefined; + /** + * slaveOk specified + * @deprecated Use secondaryOk instead + */ + get slaveOk(): boolean; + /** + * Check if a secondary can be used (because the read preference is *not* set to primary) + */ + get secondaryOk(): boolean; + get readConcern(): ReadConcern | undefined; + /** + * The current readPreference of the Db. If not explicitly defined for + * this Db, will be inherited from the parent MongoClient + */ + get readPreference(): ReadPreference; + get bsonOptions(): BSONSerializeOptions; + get writeConcern(): WriteConcern | undefined; + get namespace(): string; + /** + * Create a new collection on a server with the specified options. Use this to create capped collections. + * More information about command options available at https://docs.mongodb.com/manual/reference/command/create/ + * + * @param name - The name of the collection to create + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + createCollection(name: string, options?: CreateCollectionOptions): Promise>; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + createCollection(name: string, callback: Callback>): void; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + createCollection(name: string, options: CreateCollectionOptions | undefined, callback: Callback>): void; + /** + * Execute a command + * + * @remarks + * This command does not inherit options from the MongoClient. + * + * @param command - The command to run + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + command(command: Document): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + command(command: Document, callback: Callback): void; + command(command: Document, options: RunCommandOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + command(command: Document, options: RunCommandOptions, callback: Callback): void; + /** + * Execute an aggregation framework pipeline against the database, needs MongoDB \>= 3.6 + * + * @param pipeline - An array of aggregation stages to be executed + * @param options - Optional settings for the command + */ + aggregate(pipeline?: Document[], options?: AggregateOptions): AggregationCursor; + /** Return the Admin db instance */ + admin(): Admin; + /** + * Returns a reference to a MongoDB Collection. If it does not exist it will be created implicitly. + * + * @param name - the collection name we wish to access. + * @returns return the new Collection instance + */ + collection(name: string, options?: CollectionOptions): Collection; + /** + * Get all the db statistics. + * + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + stats(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + stats(callback: Callback): void; + stats(options: DbStatsOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + stats(options: DbStatsOptions, callback: Callback): void; + /** + * List all collections of this database with optional filter + * + * @param filter - Query to filter collections by + * @param options - Optional settings for the command + */ + listCollections(filter: Document, options: Exclude & { + nameOnly: true; + }): ListCollectionsCursor>; + listCollections(filter: Document, options: Exclude & { + nameOnly: false; + }): ListCollectionsCursor; + listCollections | CollectionInfo = Pick | CollectionInfo>(filter?: Document, options?: ListCollectionsOptions): ListCollectionsCursor; + /** + * Rename a collection. + * + * @remarks + * This operation does not inherit options from the MongoClient. + * + * @param fromCollection - Name of current collection to rename + * @param toCollection - New name of of the collection + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + renameCollection(fromCollection: string, toCollection: string): Promise>; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + renameCollection(fromCollection: string, toCollection: string, callback: Callback>): void; + renameCollection(fromCollection: string, toCollection: string, options: RenameOptions): Promise>; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + renameCollection(fromCollection: string, toCollection: string, options: RenameOptions, callback: Callback>): void; + /** + * Drop a collection from the database, removing it permanently. New accesses will create a new collection. + * + * @param name - Name of collection to drop + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + dropCollection(name: string): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + dropCollection(name: string, callback: Callback): void; + dropCollection(name: string, options: DropCollectionOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + dropCollection(name: string, options: DropCollectionOptions, callback: Callback): void; + /** + * Drop a database, removing it permanently from the server. + * + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + dropDatabase(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + dropDatabase(callback: Callback): void; + dropDatabase(options: DropDatabaseOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + dropDatabase(options: DropDatabaseOptions, callback: Callback): void; + /** + * Fetch all collections for the current db. + * + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + collections(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + collections(callback: Callback): void; + collections(options: ListCollectionsOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + collections(options: ListCollectionsOptions, callback: Callback): void; + /** + * Creates an index on the db and collection. + * + * @param name - Name of the collection to create the index on. + * @param indexSpec - Specify the field to index, or an index specification + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + createIndex(name: string, indexSpec: IndexSpecification): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + createIndex(name: string, indexSpec: IndexSpecification, callback: Callback): void; + createIndex(name: string, indexSpec: IndexSpecification, options: CreateIndexesOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + createIndex(name: string, indexSpec: IndexSpecification, options: CreateIndexesOptions, callback: Callback): void; + /** + * Add a user to the database + * + * @param username - The username for the new user + * @param password - An optional password for the new user + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + addUser(username: string): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + addUser(username: string, callback: Callback): void; + addUser(username: string, password: string): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + addUser(username: string, password: string, callback: Callback): void; + addUser(username: string, options: AddUserOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + addUser(username: string, options: AddUserOptions, callback: Callback): void; + addUser(username: string, password: string, options: AddUserOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + addUser(username: string, password: string, options: AddUserOptions, callback: Callback): void; + /** + * Remove a user from a database + * + * @param username - The username to remove + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + removeUser(username: string): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + removeUser(username: string, callback: Callback): void; + removeUser(username: string, options: RemoveUserOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + removeUser(username: string, options: RemoveUserOptions, callback: Callback): void; + /** + * Set the current profiling level of MongoDB + * + * @param level - The new profiling level (off, slow_only, all). + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + setProfilingLevel(level: ProfilingLevel): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + setProfilingLevel(level: ProfilingLevel, callback: Callback): void; + setProfilingLevel(level: ProfilingLevel, options: SetProfilingLevelOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + setProfilingLevel(level: ProfilingLevel, options: SetProfilingLevelOptions, callback: Callback): void; + /** + * Retrieve the current profiling Level for MongoDB + * + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + profilingLevel(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + profilingLevel(callback: Callback): void; + profilingLevel(options: ProfilingLevelOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + profilingLevel(options: ProfilingLevelOptions, callback: Callback): void; + /** + * Retrieves this collections index info. + * + * @param name - The name of the collection. + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + indexInformation(name: string): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + indexInformation(name: string, callback: Callback): void; + indexInformation(name: string, options: IndexInformationOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + indexInformation(name: string, options: IndexInformationOptions, callback: Callback): void; + /** + * Unref all sockets + * @deprecated This function is deprecated and will be removed in the next major version. + */ + unref(): void; + /** + * Create a new Change Stream, watching for new changes (insertions, updates, + * replacements, deletions, and invalidations) in this database. Will ignore all + * changes to system collections. + * + * @remarks + * watch() accepts two generic arguments for distinct usecases: + * - The first is to provide the schema that may be defined for all the collections within this database + * - The second is to override the shape of the change stream document entirely, if it is not provided the type will default to ChangeStreamDocument of the first argument + * + * @param pipeline - An array of {@link https://docs.mongodb.com/manual/reference/operator/aggregation-pipeline/|aggregation pipeline stages} through which to pass change stream documents. This allows for filtering (using $match) and manipulating the change stream documents. + * @param options - Optional settings for the command + * @typeParam TSchema - Type of the data being detected by the change stream + * @typeParam TChange - Type of the whole change stream document emitted + */ + watch>(pipeline?: Document[], options?: ChangeStreamOptions): ChangeStream; + /** Return the db logger */ + getLogger(): Logger; + get logger(): Logger; +} + +/* Excluded from this release type: DB_AGGREGATE_COLLECTION */ + +/** @public */ +export declare interface DbOptions extends BSONSerializeOptions, WriteConcernOptions, LoggerOptions { + /** If the database authentication is dependent on another databaseName. */ + authSource?: string; + /** Force server to assign _id values instead of driver. */ + forceServerObjectId?: boolean; + /** The preferred read preference (ReadPreference.PRIMARY, ReadPreference.PRIMARY_PREFERRED, ReadPreference.SECONDARY, ReadPreference.SECONDARY_PREFERRED, ReadPreference.NEAREST). */ + readPreference?: ReadPreferenceLike; + /** A primary key factory object for generation of custom _id keys. */ + pkFactory?: PkFactory; + /** Specify a read concern for the collection. (only MongoDB 3.2 or higher supported) */ + readConcern?: ReadConcern; + /** Should retry failed writes */ + retryWrites?: boolean; +} + +/* Excluded from this release type: DbPrivate */ +export { DBRef } + +/** @public */ +export declare interface DbStatsOptions extends CommandOperationOptions { + /** Divide the returned sizes by scale value. */ + scale?: number; +} + +export { Decimal128 } + +/** @public */ +export declare interface DeleteManyModel { + /** The filter to limit the deleted documents. */ + filter: Filter; + /** Specifies a collation. */ + collation?: CollationOptions; + /** The index to use. If specified, then the query system will only consider plans using the hinted index. */ + hint?: Hint; +} + +/** @public */ +export declare interface DeleteOneModel { + /** The filter to limit the deleted documents. */ + filter: Filter; + /** Specifies a collation. */ + collation?: CollationOptions; + /** The index to use. If specified, then the query system will only consider plans using the hinted index. */ + hint?: Hint; +} + +/** @public */ +export declare interface DeleteOptions extends CommandOperationOptions, WriteConcernOptions { + /** If true, when an insert fails, don't execute the remaining writes. If false, continue with remaining inserts when one fails. */ + ordered?: boolean; + /** Specifies the collation to use for the operation */ + collation?: CollationOptions; + /** Specify that the update query should only consider plans using the hinted index */ + hint?: string | Document; + /** Map of parameter names and values that can be accessed using $$var (requires MongoDB 5.0). */ + let?: Document; + /** @deprecated use `removeOne` or `removeMany` to implicitly specify the limit */ + single?: boolean; +} + +/** @public */ +export declare interface DeleteResult { + /** Indicates whether this write result was acknowledged. If not, then all other members of this result will be undefined. */ + acknowledged: boolean; + /** The number of documents that were deleted */ + deletedCount: number; +} + +/** @public */ +export declare interface DeleteStatement { + /** The query that matches documents to delete. */ + q: Document; + /** The number of matching documents to delete. */ + limit: number; + /** Specifies the collation to use for the operation. */ + collation?: CollationOptions; + /** A document or string that specifies the index to use to support the query predicate. */ + hint?: Hint; +} + +/* Excluded from this release type: deserialize */ + +/** @public */ +export declare interface DestroyOptions { + /** Force the destruction. */ + force?: boolean; +} + +/** @public */ +export declare type DistinctOptions = CommandOperationOptions; + +export { Document } + +export { Double } + +/** @public */ +export declare interface DriverInfo { + name?: string; + version?: string; + platform?: string; +} + +/** @public */ +export declare interface DropCollectionOptions extends CommandOperationOptions { + /** @experimental */ + encryptedFields?: Document; +} + +/** @public */ +export declare type DropDatabaseOptions = CommandOperationOptions; + +/** @public */ +export declare type DropIndexesOptions = CommandOperationOptions; + +/* Excluded from this release type: Encrypter */ + +/* Excluded from this release type: EncrypterOptions */ + +/** @public */ +export declare interface EndSessionOptions { + /* Excluded from this release type: error */ + force?: boolean; + forceClear?: boolean; +} + +/** TypeScript Omit (Exclude to be specific) does not work for objects with an "any" indexed type, and breaks discriminated unions @public */ +export declare type EnhancedOmit = string extends keyof TRecordOrUnion ? TRecordOrUnion : TRecordOrUnion extends any ? Pick> : never; + +/** @public */ +export declare interface ErrorDescription extends Document { + message?: string; + errmsg?: string; + $err?: string; + errorLabels?: string[]; + errInfo?: Document; +} + +/** @public */ +export declare interface EstimatedDocumentCountOptions extends CommandOperationOptions { + /** + * The maximum amount of time to allow the operation to run. + * + * This option is sent only if the caller explicitly provides a value. The default is to not send a value. + */ + maxTimeMS?: number; +} + +/** @public */ +export declare interface EvalOptions extends CommandOperationOptions { + nolock?: boolean; +} + +/** @public */ +export declare type EventEmitterWithState = { + /* Excluded from this release type: stateChanged */ +}; + +/** + * Event description type + * @public + */ +export declare type EventsDescription = Record; + +/* Excluded from this release type: ExecutionResult */ + +/* Excluded from this release type: Explain */ + +/** @public */ +export declare interface ExplainOptions { + /** Specifies the verbosity mode for the explain output. */ + explain?: ExplainVerbosityLike; +} + +/** @public */ +export declare const ExplainVerbosity: Readonly<{ + readonly queryPlanner: "queryPlanner"; + readonly queryPlannerExtended: "queryPlannerExtended"; + readonly executionStats: "executionStats"; + readonly allPlansExecution: "allPlansExecution"; +}>; + +/** @public */ +export declare type ExplainVerbosity = string; + +/** + * For backwards compatibility, true is interpreted as "allPlansExecution" + * and false as "queryPlanner". Prior to server version 3.6, aggregate() + * ignores the verbosity parameter and executes in "queryPlanner". + * @public + */ +export declare type ExplainVerbosityLike = ExplainVerbosity | boolean; + +/** A MongoDB filter can be some portion of the schema or a set of operators @public */ +export declare type Filter = Partial | ({ + [Property in Join>, '.'>]?: Condition, Property>>; +} & RootFilterOperators>); + +/** @public */ +export declare type FilterOperations = T extends Record ? { + [key in keyof T]?: FilterOperators; +} : FilterOperators; + +/** @public */ +export declare interface FilterOperators extends NonObjectIdLikeDocument { + $eq?: TValue; + $gt?: TValue; + $gte?: TValue; + $in?: ReadonlyArray; + $lt?: TValue; + $lte?: TValue; + $ne?: TValue; + $nin?: ReadonlyArray; + $not?: TValue extends string ? FilterOperators | RegExp : FilterOperators; + /** + * When `true`, `$exists` matches the documents that contain the field, + * including documents where the field value is null. + */ + $exists?: boolean; + $type?: BSONType | BSONTypeAlias; + $expr?: Record; + $jsonSchema?: Record; + $mod?: TValue extends number ? [number, number] : never; + $regex?: TValue extends string ? RegExp | BSONRegExp | string : never; + $options?: TValue extends string ? string : never; + $geoIntersects?: { + $geometry: Document; + }; + $geoWithin?: Document; + $near?: Document; + $nearSphere?: Document; + $maxDistance?: number; + $all?: ReadonlyArray; + $elemMatch?: Document; + $size?: TValue extends ReadonlyArray ? number : never; + $bitsAllClear?: BitwiseFilter; + $bitsAllSet?: BitwiseFilter; + $bitsAnyClear?: BitwiseFilter; + $bitsAnySet?: BitwiseFilter; + $rand?: Record; +} + +/** @public */ +export declare type FinalizeFunction = (key: TKey, reducedValue: TValue) => TValue; + +/** @public */ +export declare class FindCursor extends AbstractCursor { + /* Excluded from this release type: [kFilter] */ + /* Excluded from this release type: [kNumReturned] */ + /* Excluded from this release type: [kBuiltOptions] */ + /* Excluded from this release type: __constructor */ + clone(): FindCursor; + map(transform: (doc: TSchema) => T): FindCursor; + /* Excluded from this release type: _initialize */ + /* Excluded from this release type: _getMore */ + /** + * Get the count of documents for this cursor + * @deprecated Use `collection.estimatedDocumentCount` or `collection.countDocuments` instead + */ + count(): Promise; + /** @deprecated Use `collection.estimatedDocumentCount` or `collection.countDocuments` instead. Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + count(callback: Callback): void; + /** @deprecated Use `collection.estimatedDocumentCount` or `collection.countDocuments` instead. */ + count(options: CountOptions): Promise; + /** @deprecated Use `collection.estimatedDocumentCount` or `collection.countDocuments` instead. Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + count(options: CountOptions, callback: Callback): void; + /** Execute the explain for the cursor */ + explain(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + explain(callback: Callback): void; + explain(verbosity?: ExplainVerbosityLike): Promise; + /** Set the cursor query */ + filter(filter: Document): this; + /** + * Set the cursor hint + * + * @param hint - If specified, then the query system will only consider plans using the hinted index. + */ + hint(hint: Hint): this; + /** + * Set the cursor min + * + * @param min - Specify a $min value to specify the inclusive lower bound for a specific index in order to constrain the results of find(). The $min specifies the lower bound for all keys of a specific index in order. + */ + min(min: Document): this; + /** + * Set the cursor max + * + * @param max - Specify a $max value to specify the exclusive upper bound for a specific index in order to constrain the results of find(). The $max specifies the upper bound for all keys of a specific index in order. + */ + max(max: Document): this; + /** + * Set the cursor returnKey. + * If set to true, modifies the cursor to only return the index field or fields for the results of the query, rather than documents. + * If set to true and the query does not use an index to perform the read operation, the returned documents will not contain any fields. + * + * @param value - the returnKey value. + */ + returnKey(value: boolean): this; + /** + * Modifies the output of a query by adding a field $recordId to matching documents. $recordId is the internal key which uniquely identifies a document in a collection. + * + * @param value - The $showDiskLoc option has now been deprecated and replaced with the showRecordId field. $showDiskLoc will still be accepted for OP_QUERY stye find. + */ + showRecordId(value: boolean): this; + /** + * Add a query modifier to the cursor query + * + * @param name - The query modifier (must start with $, such as $orderby etc) + * @param value - The modifier value. + */ + addQueryModifier(name: string, value: string | boolean | number | Document): this; + /** + * Add a comment to the cursor query allowing for tracking the comment in the log. + * + * @param value - The comment attached to this query. + */ + comment(value: string): this; + /** + * Set a maxAwaitTimeMS on a tailing cursor query to allow to customize the timeout value for the option awaitData (Only supported on MongoDB 3.2 or higher, ignored otherwise) + * + * @param value - Number of milliseconds to wait before aborting the tailed query. + */ + maxAwaitTimeMS(value: number): this; + /** + * Set a maxTimeMS on the cursor query, allowing for hard timeout limits on queries (Only supported on MongoDB 2.6 or higher) + * + * @param value - Number of milliseconds to wait before aborting the query. + */ + maxTimeMS(value: number): this; + /** + * Add a project stage to the aggregation pipeline + * + * @remarks + * In order to strictly type this function you must provide an interface + * that represents the effect of your projection on the result documents. + * + * By default chaining a projection to your cursor changes the returned type to the generic + * {@link Document} type. + * You should specify a parameterized type to have assertions on your final results. + * + * @example + * ```typescript + * // Best way + * const docs: FindCursor<{ a: number }> = cursor.project<{ a: number }>({ _id: 0, a: true }); + * // Flexible way + * const docs: FindCursor = cursor.project({ _id: 0, a: true }); + * ``` + * + * @remarks + * + * **Note for Typescript Users:** adding a transform changes the return type of the iteration of this cursor, + * it **does not** return a new instance of a cursor. This means when calling project, + * you should always assign the result to a new variable in order to get a correctly typed cursor variable. + * Take note of the following example: + * + * @example + * ```typescript + * const cursor: FindCursor<{ a: number; b: string }> = coll.find(); + * const projectCursor = cursor.project<{ a: number }>({ _id: 0, a: true }); + * const aPropOnlyArray: {a: number}[] = await projectCursor.toArray(); + * + * // or always use chaining and save the final cursor + * + * const cursor = coll.find().project<{ a: string }>({ + * _id: 0, + * a: { $convert: { input: '$a', to: 'string' } + * }}); + * ``` + */ + project(value: Document): FindCursor; + /** + * Sets the sort order of the cursor query. + * + * @param sort - The key or keys set for the sort. + * @param direction - The direction of the sorting (1 or -1). + */ + sort(sort: Sort | string, direction?: SortDirection): this; + /** + * Allows disk use for blocking sort operations exceeding 100MB memory. (MongoDB 3.2 or higher) + * + * @remarks + * {@link https://docs.mongodb.com/manual/reference/command/find/#find-cmd-allowdiskuse | find command allowDiskUse documentation} + */ + allowDiskUse(allow?: boolean): this; + /** + * Set the collation options for the cursor. + * + * @param value - The cursor collation options (MongoDB 3.4 or higher) settings for update operation (see 3.4 documentation for available fields). + */ + collation(value: CollationOptions): this; + /** + * Set the limit for the cursor. + * + * @param value - The limit for the cursor query. + */ + limit(value: number): this; + /** + * Set the skip for the cursor. + * + * @param value - The skip for the cursor query. + */ + skip(value: number): this; +} + +/** @public */ +export declare interface FindOneAndDeleteOptions extends CommandOperationOptions { + /** An optional hint for query optimization. See the {@link https://docs.mongodb.com/manual/reference/command/update/#update-command-hint|update command} reference for more information.*/ + hint?: Document; + /** Limits the fields to return for all matching documents. */ + projection?: Document; + /** Determines which document the operation modifies if the query selects multiple documents. */ + sort?: Sort; + /** Map of parameter names and values that can be accessed using $$var (requires MongoDB 5.0). */ + let?: Document; +} + +/** @public */ +export declare interface FindOneAndReplaceOptions extends CommandOperationOptions { + /** Allow driver to bypass schema validation in MongoDB 3.2 or higher. */ + bypassDocumentValidation?: boolean; + /** An optional hint for query optimization. See the {@link https://docs.mongodb.com/manual/reference/command/update/#update-command-hint|update command} reference for more information.*/ + hint?: Document; + /** Limits the fields to return for all matching documents. */ + projection?: Document; + /** When set to 'after', returns the updated document rather than the original. The default is 'before'. */ + returnDocument?: ReturnDocument; + /** Determines which document the operation modifies if the query selects multiple documents. */ + sort?: Sort; + /** Upsert the document if it does not exist. */ + upsert?: boolean; + /** Map of parameter names and values that can be accessed using $$var (requires MongoDB 5.0). */ + let?: Document; +} + +/** @public */ +export declare interface FindOneAndUpdateOptions extends CommandOperationOptions { + /** Optional list of array filters referenced in filtered positional operators */ + arrayFilters?: Document[]; + /** Allow driver to bypass schema validation in MongoDB 3.2 or higher. */ + bypassDocumentValidation?: boolean; + /** An optional hint for query optimization. See the {@link https://docs.mongodb.com/manual/reference/command/update/#update-command-hint|update command} reference for more information.*/ + hint?: Document; + /** Limits the fields to return for all matching documents. */ + projection?: Document; + /** When set to 'after', returns the updated document rather than the original. The default is 'before'. */ + returnDocument?: ReturnDocument; + /** Determines which document the operation modifies if the query selects multiple documents. */ + sort?: Sort; + /** Upsert the document if it does not exist. */ + upsert?: boolean; + /** Map of parameter names and values that can be accessed using $$var (requires MongoDB 5.0). */ + let?: Document; +} + +/** + * A builder object that is returned from {@link BulkOperationBase#find}. + * Is used to build a write operation that involves a query filter. + * + * @public + */ +export declare class FindOperators { + bulkOperation: BulkOperationBase; + /* Excluded from this release type: __constructor */ + /** Add a multiple update operation to the bulk operation */ + update(updateDocument: Document | Document[]): BulkOperationBase; + /** Add a single update operation to the bulk operation */ + updateOne(updateDocument: Document | Document[]): BulkOperationBase; + /** Add a replace one operation to the bulk operation */ + replaceOne(replacement: Document): BulkOperationBase; + /** Add a delete one operation to the bulk operation */ + deleteOne(): BulkOperationBase; + /** Add a delete many operation to the bulk operation */ + delete(): BulkOperationBase; + /** Upsert modifier for update bulk operation, noting that this operation is an upsert. */ + upsert(): this; + /** Specifies the collation for the query condition. */ + collation(collation: CollationOptions): this; + /** Specifies arrayFilters for UpdateOne or UpdateMany bulk operations. */ + arrayFilters(arrayFilters: Document[]): this; + /** Specifies hint for the bulk operation. */ + hint(hint: Hint): this; +} + +/** + * @public + * @typeParam TSchema - Unused schema definition, deprecated usage, only specify `FindOptions` with no generic + */ +export declare interface FindOptions extends CommandOperationOptions { + /** Sets the limit of documents returned in the query. */ + limit?: number; + /** Set to sort the documents coming back from the query. Array of indexes, `[['a', 1]]` etc. */ + sort?: Sort; + /** The fields to return in the query. Object of fields to either include or exclude (one of, not both), `{'a':1, 'b': 1}` **or** `{'a': 0, 'b': 0}` */ + projection?: Document; + /** Set to skip N documents ahead in your query (useful for pagination). */ + skip?: number; + /** Tell the query to use specific indexes in the query. Object of indexes to use, `{'_id':1}` */ + hint?: Hint; + /** Specify if the cursor can timeout. */ + timeout?: boolean; + /** Specify if the cursor is tailable. */ + tailable?: boolean; + /** Specify if the cursor is a tailable-await cursor. Requires `tailable` to be true */ + awaitData?: boolean; + /** Set the batchSize for the getMoreCommand when iterating over the query results. */ + batchSize?: number; + /** If true, returns only the index keys in the resulting documents. */ + returnKey?: boolean; + /** The inclusive lower bound for a specific index */ + min?: Document; + /** The exclusive upper bound for a specific index */ + max?: Document; + /** Number of milliseconds to wait before aborting the query. */ + maxTimeMS?: number; + /** The maximum amount of time for the server to wait on new documents to satisfy a tailable cursor query. Requires `tailable` and `awaitData` to be true */ + maxAwaitTimeMS?: number; + /** The server normally times out idle cursors after an inactivity period (10 minutes) to prevent excess memory use. Set this option to prevent that. */ + noCursorTimeout?: boolean; + /** Specify collation (MongoDB 3.4 or higher) settings for update operation (see 3.4 documentation for available fields). */ + collation?: CollationOptions; + /** Allows disk use for blocking sort operations exceeding 100MB memory. (MongoDB 3.2 or higher) */ + allowDiskUse?: boolean; + /** Determines whether to close the cursor after the first batch. Defaults to false. */ + singleBatch?: boolean; + /** For queries against a sharded collection, allows the command (or subsequent getMore commands) to return partial results, rather than an error, if one or more queried shards are unavailable. */ + allowPartialResults?: boolean; + /** Determines whether to return the record identifier for each document. If true, adds a field $recordId to the returned documents. */ + showRecordId?: boolean; + /** Map of parameter names and values that can be accessed using $$var (requires MongoDB 5.0). */ + let?: Document; + /** + * Option to enable an optimized code path for queries looking for a particular range of `ts` values in the oplog. Requires `tailable` to be true. + * @deprecated Starting from MongoDB 4.4 this flag is not needed and will be ignored. + */ + oplogReplay?: boolean; +} + +/** @public */ +export declare type Flatten = Type extends ReadonlyArray ? Item : Type; + +/** @public */ +export declare type GenericListener = (...args: any[]) => void; + +/* Excluded from this release type: GetMoreOptions */ + +/** + * Constructor for a streaming GridFS interface + * @public + */ +export declare class GridFSBucket extends TypedEventEmitter { + /* Excluded from this release type: s */ + /** + * When the first call to openUploadStream is made, the upload stream will + * check to see if it needs to create the proper indexes on the chunks and + * files collections. This event is fired either when 1) it determines that + * no index creation is necessary, 2) when it successfully creates the + * necessary indexes. + * @event + */ + static readonly INDEX: "index"; + constructor(db: Db, options?: GridFSBucketOptions); + /** + * Returns a writable stream (GridFSBucketWriteStream) for writing + * buffers to GridFS. The stream's 'id' property contains the resulting + * file's id. + * + * @param filename - The value of the 'filename' key in the files doc + * @param options - Optional settings. + */ + openUploadStream(filename: string, options?: GridFSBucketWriteStreamOptions): GridFSBucketWriteStream; + /** + * Returns a writable stream (GridFSBucketWriteStream) for writing + * buffers to GridFS for a custom file id. The stream's 'id' property contains the resulting + * file's id. + */ + openUploadStreamWithId(id: ObjectId, filename: string, options?: GridFSBucketWriteStreamOptions): GridFSBucketWriteStream; + /** Returns a readable stream (GridFSBucketReadStream) for streaming file data from GridFS. */ + openDownloadStream(id: ObjectId, options?: GridFSBucketReadStreamOptions): GridFSBucketReadStream; + /** + * Deletes a file with the given id + * + * @param id - The id of the file doc + */ + delete(id: ObjectId): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + delete(id: ObjectId, callback: Callback): void; + /** Convenience wrapper around find on the files collection */ + find(filter?: Filter, options?: FindOptions): FindCursor; + /** + * Returns a readable stream (GridFSBucketReadStream) for streaming the + * file with the given name from GridFS. If there are multiple files with + * the same name, this will stream the most recent file with the given name + * (as determined by the `uploadDate` field). You can set the `revision` + * option to change this behavior. + */ + openDownloadStreamByName(filename: string, options?: GridFSBucketReadStreamOptionsWithRevision): GridFSBucketReadStream; + /** + * Renames the file with the given _id to the given string + * + * @param id - the id of the file to rename + * @param filename - new name for the file + */ + rename(id: ObjectId, filename: string): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + rename(id: ObjectId, filename: string, callback: Callback): void; + /** Removes this bucket's files collection, followed by its chunks collection. */ + drop(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + drop(callback: Callback): void; + /** Get the Db scoped logger. */ + getLogger(): Logger; +} + +/** @public */ +export declare type GridFSBucketEvents = { + index(): void; +}; + +/** @public */ +export declare interface GridFSBucketOptions extends WriteConcernOptions { + /** The 'files' and 'chunks' collections will be prefixed with the bucket name followed by a dot. */ + bucketName?: string; + /** Number of bytes stored in each chunk. Defaults to 255KB */ + chunkSizeBytes?: number; + /** Read preference to be passed to read operations */ + readPreference?: ReadPreference; +} + +/* Excluded from this release type: GridFSBucketPrivate */ + +/** + * A readable stream that enables you to read buffers from GridFS. + * + * Do not instantiate this class directly. Use `openDownloadStream()` instead. + * @public + */ +export declare class GridFSBucketReadStream extends Readable implements NodeJS.ReadableStream { + /* Excluded from this release type: s */ + /** + * An error occurred + * @event + */ + static readonly ERROR: "error"; + /** + * Fires when the stream loaded the file document corresponding to the provided id. + * @event + */ + static readonly FILE: "file"; + /** + * Emitted when a chunk of data is available to be consumed. + * @event + */ + static readonly DATA: "data"; + /** + * Fired when the stream is exhausted (no more data events). + * @event + */ + static readonly END: "end"; + /** + * Fired when the stream is exhausted and the underlying cursor is killed + * @event + */ + static readonly CLOSE: "close"; + /* Excluded from this release type: __constructor */ + /* Excluded from this release type: _read */ + /** + * Sets the 0-based offset in bytes to start streaming from. Throws + * an error if this stream has entered flowing mode + * (e.g. if you've already called `on('data')`) + * + * @param start - 0-based offset in bytes to start streaming from + */ + start(start?: number): this; + /** + * Sets the 0-based offset in bytes to start streaming from. Throws + * an error if this stream has entered flowing mode + * (e.g. if you've already called `on('data')`) + * + * @param end - Offset in bytes to stop reading at + */ + end(end?: number): this; + /** + * Marks this stream as aborted (will never push another `data` event) + * and kills the underlying cursor. Will emit the 'end' event, and then + * the 'close' event once the cursor is successfully killed. + * + * @param callback - called when the cursor is successfully closed or an error occurred. + */ + abort(callback?: Callback): void; +} + +/** @public */ +export declare interface GridFSBucketReadStreamOptions { + sort?: Sort; + skip?: number; + /** 0-based offset in bytes to start streaming from */ + start?: number; + /** 0-based offset in bytes to stop streaming before */ + end?: number; +} + +/** @public */ +export declare interface GridFSBucketReadStreamOptionsWithRevision extends GridFSBucketReadStreamOptions { + /** The revision number relative to the oldest file with the given filename. 0 + * gets you the oldest file, 1 gets you the 2nd oldest, -1 gets you the + * newest. */ + revision?: number; +} + +/* Excluded from this release type: GridFSBucketReadStreamPrivate */ + +/** + * A writable stream that enables you to write buffers to GridFS. + * + * Do not instantiate this class directly. Use `openUploadStream()` instead. + * @public + */ +export declare class GridFSBucketWriteStream extends Writable implements NodeJS.WritableStream { + bucket: GridFSBucket; + chunks: Collection; + filename: string; + files: Collection; + options: GridFSBucketWriteStreamOptions; + done: boolean; + id: ObjectId; + chunkSizeBytes: number; + bufToStore: Buffer; + length: number; + n: number; + pos: number; + state: { + streamEnd: boolean; + outstandingRequests: number; + errored: boolean; + aborted: boolean; + }; + writeConcern?: WriteConcern; + /** @event */ + static readonly CLOSE = "close"; + /** @event */ + static readonly ERROR = "error"; + /** + * `end()` was called and the write stream successfully wrote the file metadata and all the chunks to MongoDB. + * @event + */ + static readonly FINISH = "finish"; + /* Excluded from this release type: __constructor */ + /** + * Write a buffer to the stream. + * + * @param chunk - Buffer to write + * @param encodingOrCallback - Optional encoding for the buffer + * @param callback - Function to call when the chunk was added to the buffer, or if the entire chunk was persisted to MongoDB if this chunk caused a flush. + * @returns False if this write required flushing a chunk to MongoDB. True otherwise. + */ + write(chunk: Buffer | string): boolean; + write(chunk: Buffer | string, callback: Callback): boolean; + write(chunk: Buffer | string, encoding: BufferEncoding | undefined): boolean; + write(chunk: Buffer | string, encoding: BufferEncoding | undefined, callback: Callback): boolean; + /** + * Places this write stream into an aborted state (all future writes fail) + * and deletes all chunks that have already been written. + * + * @param callback - called when chunks are successfully removed or error occurred + */ + abort(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + abort(callback: Callback): void; + /** + * Tells the stream that no more data will be coming in. The stream will + * persist the remaining data to MongoDB, write the files document, and + * then emit a 'finish' event. + * + * @param chunk - Buffer to write + * @param encoding - Optional encoding for the buffer + * @param callback - Function to call when all files and chunks have been persisted to MongoDB + */ + end(): this; + end(chunk: Buffer): this; + end(callback: Callback): this; + end(chunk: Buffer, callback: Callback): this; + end(chunk: Buffer, encoding: BufferEncoding): this; + end(chunk: Buffer, encoding: BufferEncoding | undefined, callback: Callback): this; +} + +/** @public */ +export declare interface GridFSBucketWriteStreamOptions extends WriteConcernOptions { + /** Overwrite this bucket's chunkSizeBytes for this file */ + chunkSizeBytes?: number; + /** Custom file id for the GridFS file. */ + id?: ObjectId; + /** Object to store in the file document's `metadata` field */ + metadata?: Document; + /** String to store in the file document's `contentType` field */ + contentType?: string; + /** Array of strings to store in the file document's `aliases` field */ + aliases?: string[]; +} + +/** @public */ +export declare interface GridFSChunk { + _id: ObjectId; + files_id: ObjectId; + n: number; + data: Buffer | Uint8Array; +} + +/** @public */ +export declare interface GridFSFile { + _id: ObjectId; + length: number; + chunkSize: number; + filename: string; + contentType?: string; + aliases?: string[]; + metadata?: Document; + uploadDate: Date; +} + +/** @public */ +export declare const GSSAPICanonicalizationValue: Readonly<{ + readonly on: true; + readonly off: false; + readonly none: "none"; + readonly forward: "forward"; + readonly forwardAndReverse: "forwardAndReverse"; +}>; + +/** @public */ +export declare type GSSAPICanonicalizationValue = typeof GSSAPICanonicalizationValue[keyof typeof GSSAPICanonicalizationValue]; + +/** @public */ +export declare interface HedgeOptions { + /** Explicitly enable or disable hedged reads. */ + enabled?: boolean; +} + +/** @public */ +export declare type Hint = string | Document; + +/** @public */ +export declare class HostAddress { + host: string | undefined; + port: number | undefined; + socketPath: string | undefined; + isIPv6: boolean; + constructor(hostString: string); + inspect(): string; + toString(): string; + static fromString(this: void, s: string): HostAddress; + static fromHostPort(host: string, port: number): HostAddress; + static fromSrvRecord({ name, port }: SrvRecord): HostAddress; +} + +/** @public */ +export declare interface IndexDescription extends Pick { + collation?: CollationOptions; + name?: string; + key: { + [key: string]: IndexDirection; + } | Map; +} + +/** @public */ +export declare type IndexDirection = -1 | 1 | '2d' | '2dsphere' | 'text' | 'geoHaystack' | number; + +/** @public */ +export declare interface IndexInformationOptions { + full?: boolean; + readPreference?: ReadPreference; + session?: ClientSession; +} + +/** @public */ +export declare type IndexSpecification = OneOrMore>; + +/** Given an object shaped type, return the type of the _id field or default to ObjectId @public */ +export declare type InferIdType = TSchema extends { + _id: infer IdType; +} ? Record extends IdType ? never : IdType : TSchema extends { + _id?: infer IdType; +} ? unknown extends IdType ? ObjectId : IdType : ObjectId; + +/** @public */ +export declare interface InsertManyResult { + /** Indicates whether this write result was acknowledged. If not, then all other members of this result will be undefined */ + acknowledged: boolean; + /** The number of inserted documents for this operations */ + insertedCount: number; + /** Map of the index of the inserted document to the id of the inserted document */ + insertedIds: { + [key: number]: InferIdType; + }; +} + +/** @public */ +export declare interface InsertOneModel { + /** The document to insert. */ + document: OptionalId; +} + +/** @public */ +export declare interface InsertOneOptions extends CommandOperationOptions { + /** Allow driver to bypass schema validation in MongoDB 3.2 or higher. */ + bypassDocumentValidation?: boolean; + /** Force server to assign _id values instead of driver. */ + forceServerObjectId?: boolean; +} + +/** @public */ +export declare interface InsertOneResult { + /** Indicates whether this write result was acknowledged. If not, then all other members of this result will be undefined */ + acknowledged: boolean; + /** The identifier that was inserted. If the server generated the identifier, this value will be null as the driver does not have access to that data */ + insertedId: InferIdType; +} + +export { Int32 } + +/** @public */ +export declare type IntegerType = number | Int32 | Long; + +/* Excluded from this release type: InternalAbstractCursorOptions */ + +/** @public */ +export declare type IsAny = true extends false & Type ? ResultIfAny : ResultIfNotAny; + +/** + * Helper types for dot-notation filter attributes + */ +/** @public */ +export declare type Join = T extends [] ? '' : T extends [string | number] ? `${T[0]}` : T extends [string | number, ...infer R] ? `${T[0]}${D}${Join}` : string; + +/* Excluded from this release type: kBeforeHandshake */ + +/* Excluded from this release type: kBuffer */ + +/* Excluded from this release type: kBuffers */ + +/* Excluded from this release type: kBuiltOptions */ + +/* Excluded from this release type: kCancellationToken */ + +/* Excluded from this release type: kCancellationToken_2 */ + +/* Excluded from this release type: kCancelled */ + +/* Excluded from this release type: kCancelled_2 */ + +/* Excluded from this release type: kCheckedOut */ + +/* Excluded from this release type: kClient */ + +/* Excluded from this release type: kClosed */ + +/* Excluded from this release type: kClosed_2 */ + +/* Excluded from this release type: kClusterTime */ + +/* Excluded from this release type: kConnection */ + +/* Excluded from this release type: kConnectionCounter */ + +/* Excluded from this release type: kConnections */ + +/* Excluded from this release type: kCursorStream */ + +/* Excluded from this release type: kDelayedTimeoutId */ + +/* Excluded from this release type: kDescription */ + +/* Excluded from this release type: kDocuments */ + +/* Excluded from this release type: kErrorLabels */ + +/** @public */ +export declare type KeysOfAType = { + [key in keyof TSchema]: NonNullable extends Type ? key : never; +}[keyof TSchema]; + +/** @public */ +export declare type KeysOfOtherType = { + [key in keyof TSchema]: NonNullable extends Type ? never : key; +}[keyof TSchema]; + +/* Excluded from this release type: kFilter */ + +/* Excluded from this release type: kGeneration */ + +/* Excluded from this release type: kGeneration_2 */ + +/* Excluded from this release type: kHello */ + +/* Excluded from this release type: kId */ + +/* Excluded from this release type: kInit */ + +/* Excluded from this release type: kInitialized */ + +/* Excluded from this release type: kInternalClient */ + +/* Excluded from this release type: kKilled */ + +/* Excluded from this release type: kLastUseTime */ + +/* Excluded from this release type: kLength */ + +/* Excluded from this release type: kLogger */ + +/* Excluded from this release type: kMessageStream */ + +/* Excluded from this release type: kMetrics */ + +/* Excluded from this release type: kMinPoolSizeTimer */ + +/* Excluded from this release type: kMode */ + +/* Excluded from this release type: kMonitor */ + +/* Excluded from this release type: kMonitorId */ + +/* Excluded from this release type: kNamespace */ + +/* Excluded from this release type: kNumReturned */ + +/* Excluded from this release type: kOptions */ + +/* Excluded from this release type: kOptions_2 */ + +/* Excluded from this release type: kOptions_3 */ + +/* Excluded from this release type: kPending */ + +/* Excluded from this release type: kPinnedConnection */ + +/* Excluded from this release type: kPipeline */ + +/* Excluded from this release type: kPoolState */ + +/* Excluded from this release type: kProcessingWaitQueue */ + +/* Excluded from this release type: kQueue */ + +/* Excluded from this release type: kRoundTripTime */ + +/* Excluded from this release type: kRTTPinger */ + +/* Excluded from this release type: kServer */ + +/* Excluded from this release type: kServer_2 */ + +/* Excluded from this release type: kServerError */ + +/* Excluded from this release type: kServerSession */ + +/* Excluded from this release type: kServiceGenerations */ + +/* Excluded from this release type: kSession */ + +/* Excluded from this release type: kSession_2 */ + +/* Excluded from this release type: kSnapshotEnabled */ + +/* Excluded from this release type: kSnapshotTime */ + +/* Excluded from this release type: kStream */ + +/* Excluded from this release type: kTransform */ + +/* Excluded from this release type: kTxnNumberIncrement */ + +/* Excluded from this release type: kWaitQueue */ + +/* Excluded from this release type: kWaitQueue_2 */ + +/** @public */ +export declare const LEGAL_TCP_SOCKET_OPTIONS: readonly ["family", "hints", "localAddress", "localPort", "lookup"]; + +/** @public */ +export declare const LEGAL_TLS_SOCKET_OPTIONS: readonly ["ALPNProtocols", "ca", "cert", "checkServerIdentity", "ciphers", "crl", "ecdhCurve", "key", "minDHSize", "passphrase", "pfx", "rejectUnauthorized", "secureContext", "secureProtocol", "servername", "session"]; + +/** @public */ +export declare class ListCollectionsCursor | CollectionInfo = Pick | CollectionInfo> extends AbstractCursor { + parent: Db; + filter: Document; + options?: ListCollectionsOptions; + constructor(db: Db, filter: Document, options?: ListCollectionsOptions); + clone(): ListCollectionsCursor; + /* Excluded from this release type: _initialize */ +} + +/** @public */ +export declare interface ListCollectionsOptions extends CommandOperationOptions { + /** Since 4.0: If true, will only return the collection name in the response, and will omit additional info */ + nameOnly?: boolean; + /** Since 4.0: If true and nameOnly is true, allows a user without the required privilege (i.e. listCollections action on the database) to run the command when access control is enforced. */ + authorizedCollections?: boolean; + /** The batchSize for the returned command cursor or if pre 2.8 the systems batch collection */ + batchSize?: number; +} + +/** @public */ +export declare interface ListDatabasesOptions extends CommandOperationOptions { + /** A query predicate that determines which databases are listed */ + filter?: Document; + /** A flag to indicate whether the command should return just the database names, or return both database names and size information */ + nameOnly?: boolean; + /** A flag that determines which databases are returned based on the user privileges when access control is enabled */ + authorizedDatabases?: boolean; +} + +/** @public */ +export declare interface ListDatabasesResult { + databases: ({ + name: string; + sizeOnDisk?: number; + empty?: boolean; + } & Document)[]; + totalSize?: number; + totalSizeMb?: number; + ok: 1 | 0; +} + +/** @public */ +export declare class ListIndexesCursor extends AbstractCursor { + parent: Collection; + options?: ListIndexesOptions; + constructor(collection: Collection, options?: ListIndexesOptions); + clone(): ListIndexesCursor; + /* Excluded from this release type: _initialize */ +} + +/** @public */ +export declare interface ListIndexesOptions extends CommandOperationOptions { + /** The batchSize for the returned command cursor or if pre 2.8 the systems batch collection */ + batchSize?: number; +} + +/** + * @public + */ +export declare class Logger { + className: string; + /** + * Creates a new Logger instance + * + * @param className - The Class name associated with the logging instance + * @param options - Optional logging settings + */ + constructor(className: string, options?: LoggerOptions); + /** + * Log a message at the debug level + * + * @param message - The message to log + * @param object - Additional meta data to log + */ + debug(message: string, object?: unknown): void; + /** + * Log a message at the warn level + * + * @param message - The message to log + * @param object - Additional meta data to log + */ + warn(message: string, object?: unknown): void; + /** + * Log a message at the info level + * + * @param message - The message to log + * @param object - Additional meta data to log + */ + info(message: string, object?: unknown): void; + /** + * Log a message at the error level + * + * @param message - The message to log + * @param object - Additional meta data to log + */ + error(message: string, object?: unknown): void; + /** Is the logger set at info level */ + isInfo(): boolean; + /** Is the logger set at error level */ + isError(): boolean; + /** Is the logger set at error level */ + isWarn(): boolean; + /** Is the logger set at debug level */ + isDebug(): boolean; + /** Resets the logger to default settings, error and no filtered classes */ + static reset(): void; + /** Get the current logger function */ + static currentLogger(): LoggerFunction; + /** + * Set the current logger function + * + * @param logger - Custom logging function + */ + static setCurrentLogger(logger: LoggerFunction): void; + /** + * Filter log messages for a particular class + * + * @param type - The type of filter (currently only class) + * @param values - The filters to apply + */ + static filter(type: string, values: string[]): void; + /** + * Set the current log level + * + * @param newLevel - Set current log level (debug, warn, info, error) + */ + static setLevel(newLevel: LoggerLevel): void; +} + +/** @public */ +export declare type LoggerFunction = (message?: any, ...optionalParams: any[]) => void; + +/** @public */ +export declare const LoggerLevel: Readonly<{ + readonly ERROR: "error"; + readonly WARN: "warn"; + readonly INFO: "info"; + readonly DEBUG: "debug"; + readonly error: "error"; + readonly warn: "warn"; + readonly info: "info"; + readonly debug: "debug"; +}>; + +/** @public */ +export declare type LoggerLevel = typeof LoggerLevel[keyof typeof LoggerLevel]; + +/** @public */ +export declare interface LoggerOptions { + logger?: LoggerFunction; + loggerLevel?: LoggerLevel; +} + +export { Long } + +export { Map_2 as Map } + +/** @public */ +export declare type MapFunction = (this: TSchema) => void; + +/** @public */ +export declare interface MapReduceOptions extends CommandOperationOptions { + /** Sets the output target for the map reduce job. */ + out?: 'inline' | { + inline: 1; + } | { + replace: string; + } | { + merge: string; + } | { + reduce: string; + }; + /** Query filter object. */ + query?: Document; + /** Sorts the input objects using this key. Useful for optimization, like sorting by the emit key for fewer reduces. */ + sort?: Sort; + /** Number of objects to return from collection. */ + limit?: number; + /** Keep temporary data. */ + keeptemp?: boolean; + /** Finalize function. */ + finalize?: FinalizeFunction | string; + /** Can pass in variables that can be access from map/reduce/finalize. */ + scope?: Document; + /** It is possible to make the execution stay in JS. Provided in MongoDB \> 2.0.X. */ + jsMode?: boolean; + /** Provide statistics on job execution time. */ + verbose?: boolean; + /** Allow driver to bypass schema validation in MongoDB 3.2 or higher. */ + bypassDocumentValidation?: boolean; +} + +/** @public */ +export declare type MatchKeysAndValues = Readonly<{ + [Property in Join, '.'>]?: PropertyType; +} & { + [Property in `${NestedPathsOfType}.$${`[${string}]` | ''}`]?: ArrayElement>; +} & { + [Property in `${NestedPathsOfType[]>}.$${`[${string}]` | ''}.${string}`]?: any; +}>; + +export { MaxKey } + +/* Excluded from this release type: MessageHeader */ + +/* Excluded from this release type: MessageStream */ + +/* Excluded from this release type: MessageStreamOptions */ +export { MinKey } + +/** @public */ +export declare interface ModifyResult { + value: WithId | null; + lastErrorObject?: Document; + ok: 0 | 1; +} + +/** @public */ +export declare const MONGO_CLIENT_EVENTS: readonly ["connectionPoolCreated", "connectionPoolReady", "connectionPoolCleared", "connectionPoolClosed", "connectionCreated", "connectionReady", "connectionClosed", "connectionCheckOutStarted", "connectionCheckOutFailed", "connectionCheckedOut", "connectionCheckedIn", "commandStarted", "commandSucceeded", "commandFailed", "serverOpening", "serverClosed", "serverDescriptionChanged", "topologyOpening", "topologyClosed", "topologyDescriptionChanged", "error", "timeout", "close", "serverHeartbeatStarted", "serverHeartbeatSucceeded", "serverHeartbeatFailed"]; + +/** + * An error generated when the driver API is used incorrectly + * + * @privateRemarks + * Should **never** be directly instantiated + * + * @public + * @category Error + */ +export declare class MongoAPIError extends MongoDriverError { + constructor(message: string); + get name(): string; +} + +/** + * A error generated when the user attempts to authenticate + * via AWS, but fails + * + * @public + * @category Error + */ +export declare class MongoAWSError extends MongoRuntimeError { + constructor(message: string); + get name(): string; +} + +/** + * An error generated when a batch command is re-executed after one of the commands in the batch + * has failed + * + * @public + * @category Error + */ +export declare class MongoBatchReExecutionError extends MongoAPIError { + constructor(message?: string); + get name(): string; +} + +/** + * An error indicating an unsuccessful Bulk Write + * @public + * @category Error + */ +export declare class MongoBulkWriteError extends MongoServerError { + result: BulkWriteResult; + writeErrors: OneOrMore; + err?: WriteConcernError; + /** Creates a new MongoBulkWriteError */ + constructor(error: { + message: string; + code: number; + writeErrors?: WriteError[]; + } | WriteConcernError | AnyError, result: BulkWriteResult); + get name(): string; + /** Number of documents inserted. */ + get insertedCount(): number; + /** Number of documents matched for update. */ + get matchedCount(): number; + /** Number of documents modified. */ + get modifiedCount(): number; + /** Number of documents deleted. */ + get deletedCount(): number; + /** Number of documents upserted. */ + get upsertedCount(): number; + /** Inserted document generated Id's, hash key is the index of the originating operation */ + get insertedIds(): { + [key: number]: any; + }; + /** Upserted document generated Id's, hash key is the index of the originating operation */ + get upsertedIds(): { + [key: number]: any; + }; +} + +/** + * An error generated when a ChangeStream operation fails to execute. + * + * @public + * @category Error + */ +export declare class MongoChangeStreamError extends MongoRuntimeError { + constructor(message: string); + get name(): string; +} + +/** + * The **MongoClient** class is a class that allows for making Connections to MongoDB. + * @public + * + * @remarks + * The programmatically provided options take precedence over the URI options. + * + * @example + * ```ts + * import { MongoClient } from 'mongodb'; + * + * // Enable command monitoring for debugging + * const client = new MongoClient('mongodb://localhost:27017', { monitorCommands: true }); + * + * client.on('commandStarted', started => console.log(started)); + * client.db().collection('pets'); + * await client.insertOne({ name: 'spot', kind: 'dog' }); + * ``` + */ +export declare class MongoClient extends TypedEventEmitter { + /* Excluded from this release type: s */ + /* Excluded from this release type: topology */ + /* Excluded from this release type: [kOptions] */ + constructor(url: string, options?: MongoClientOptions); + get options(): Readonly; + get serverApi(): Readonly; + /* Excluded from this release type: monitorCommands */ + /* Excluded from this release type: monitorCommands */ + get autoEncrypter(): AutoEncrypter | undefined; + get readConcern(): ReadConcern | undefined; + get writeConcern(): WriteConcern | undefined; + get readPreference(): ReadPreference; + get bsonOptions(): BSONSerializeOptions; + get logger(): Logger; + /** + * Connect to MongoDB using a url + * + * @see docs.mongodb.org/manual/reference/connection-string/ + */ + connect(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + connect(callback: Callback): void; + /** + * Close the db and its underlying connections + * + * @param force - Force close, emitting no events + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + close(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + close(callback: Callback): void; + close(force: boolean): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + close(force: boolean, callback: Callback): void; + /** + * Create a new Db instance sharing the current socket connections. + * + * @param dbName - The name of the database we want to use. If not provided, use database name from connection string. + * @param options - Optional settings for Db construction + */ + db(dbName?: string, options?: DbOptions): Db; + /** + * Connect to MongoDB using a url + * + * @remarks + * The programmatically provided options take precedence over the URI options. + * + * @see https://docs.mongodb.org/manual/reference/connection-string/ + */ + static connect(url: string): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + static connect(url: string, callback: Callback): void; + static connect(url: string, options: MongoClientOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + static connect(url: string, options: MongoClientOptions, callback: Callback): void; + /** Starts a new session on the server */ + startSession(): ClientSession; + startSession(options: ClientSessionOptions): ClientSession; + /** + * Runs a given operation with an implicitly created session. The lifetime of the session + * will be handled without the need for user interaction. + * + * NOTE: presently the operation MUST return a Promise (either explicit or implicitly as an async function) + * + * @param options - Optional settings for the command + * @param callback - An callback to execute with an implicitly created session + */ + withSession(callback: WithSessionCallback): Promise; + withSession(options: ClientSessionOptions, callback: WithSessionCallback): Promise; + /** + * Create a new Change Stream, watching for new changes (insertions, updates, + * replacements, deletions, and invalidations) in this cluster. Will ignore all + * changes to system collections, as well as the local, admin, and config databases. + * + * @remarks + * watch() accepts two generic arguments for distinct usecases: + * - The first is to provide the schema that may be defined for all the data within the current cluster + * - The second is to override the shape of the change stream document entirely, if it is not provided the type will default to ChangeStreamDocument of the first argument + * + * @param pipeline - An array of {@link https://docs.mongodb.com/manual/reference/operator/aggregation-pipeline/|aggregation pipeline stages} through which to pass change stream documents. This allows for filtering (using $match) and manipulating the change stream documents. + * @param options - Optional settings for the command + * @typeParam TSchema - Type of the data being detected by the change stream + * @typeParam TChange - Type of the whole change stream document emitted + */ + watch>(pipeline?: Document[], options?: ChangeStreamOptions): ChangeStream; + /** Return the mongo client logger */ + getLogger(): Logger; +} + +/** @public */ +export declare type MongoClientEvents = Pick & { + open(mongoClient: MongoClient): void; +}; + +/** + * Describes all possible URI query options for the mongo client + * @public + * @see https://docs.mongodb.com/manual/reference/connection-string + */ +export declare interface MongoClientOptions extends BSONSerializeOptions, SupportedNodeConnectionOptions { + /** Specifies the name of the replica set, if the mongod is a member of a replica set. */ + replicaSet?: string; + /** Enables or disables TLS/SSL for the connection. */ + tls?: boolean; + /** A boolean to enable or disables TLS/SSL for the connection. (The ssl option is equivalent to the tls option.) */ + ssl?: boolean; + /** Specifies the location of a local TLS Certificate */ + tlsCertificateFile?: string; + /** Specifies the location of a local .pem file that contains either the client's TLS/SSL certificate and key or only the client's TLS/SSL key when tlsCertificateFile is used to provide the certificate. */ + tlsCertificateKeyFile?: string; + /** Specifies the password to de-crypt the tlsCertificateKeyFile. */ + tlsCertificateKeyFilePassword?: string; + /** Specifies the location of a local .pem file that contains the root certificate chain from the Certificate Authority. This file is used to validate the certificate presented by the mongod/mongos instance. */ + tlsCAFile?: string; + /** Bypasses validation of the certificates presented by the mongod/mongos instance */ + tlsAllowInvalidCertificates?: boolean; + /** Disables hostname validation of the certificate presented by the mongod/mongos instance. */ + tlsAllowInvalidHostnames?: boolean; + /** Disables various certificate validations. */ + tlsInsecure?: boolean; + /** The time in milliseconds to attempt a connection before timing out. */ + connectTimeoutMS?: number; + /** The time in milliseconds to attempt a send or receive on a socket before the attempt times out. */ + socketTimeoutMS?: number; + /** An array or comma-delimited string of compressors to enable network compression for communication between this client and a mongod/mongos instance. */ + compressors?: CompressorName[] | string; + /** An integer that specifies the compression level if using zlib for network compression. */ + zlibCompressionLevel?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | undefined; + /** The maximum number of hosts to connect to when using an srv connection string, a setting of `0` means unlimited hosts */ + srvMaxHosts?: number; + /** + * Modifies the srv URI to look like: + * + * `_{srvServiceName}._tcp.{hostname}.{domainname}` + * + * Querying this DNS URI is expected to respond with SRV records + */ + srvServiceName?: string; + /** The maximum number of connections in the connection pool. */ + maxPoolSize?: number; + /** The minimum number of connections in the connection pool. */ + minPoolSize?: number; + /** The maximum number of connections that may be in the process of being established concurrently by the connection pool. */ + maxConnecting?: number; + /** The maximum number of milliseconds that a connection can remain idle in the pool before being removed and closed. */ + maxIdleTimeMS?: number; + /** The maximum time in milliseconds that a thread can wait for a connection to become available. */ + waitQueueTimeoutMS?: number; + /** Specify a read concern for the collection (only MongoDB 3.2 or higher supported) */ + readConcern?: ReadConcernLike; + /** The level of isolation */ + readConcernLevel?: ReadConcernLevel; + /** Specifies the read preferences for this connection */ + readPreference?: ReadPreferenceMode | ReadPreference; + /** Specifies, in seconds, how stale a secondary can be before the client stops using it for read operations. */ + maxStalenessSeconds?: number; + /** Specifies the tags document as a comma-separated list of colon-separated key-value pairs. */ + readPreferenceTags?: TagSet[]; + /** The auth settings for when connection to server. */ + auth?: Auth; + /** Specify the database name associated with the user’s credentials. */ + authSource?: string; + /** Specify the authentication mechanism that MongoDB will use to authenticate the connection. */ + authMechanism?: AuthMechanism; + /** Specify properties for the specified authMechanism as a comma-separated list of colon-separated key-value pairs. */ + authMechanismProperties?: AuthMechanismProperties; + /** The size (in milliseconds) of the latency window for selecting among multiple suitable MongoDB instances. */ + localThresholdMS?: number; + /** Specifies how long (in milliseconds) to block for server selection before throwing an exception. */ + serverSelectionTimeoutMS?: number; + /** heartbeatFrequencyMS controls when the driver checks the state of the MongoDB deployment. Specify the interval (in milliseconds) between checks, counted from the end of the previous check until the beginning of the next one. */ + heartbeatFrequencyMS?: number; + /** Sets the minimum heartbeat frequency. In the event that the driver has to frequently re-check a server's availability, it will wait at least this long since the previous check to avoid wasted effort. */ + minHeartbeatFrequencyMS?: number; + /** The name of the application that created this MongoClient instance. MongoDB 3.4 and newer will print this value in the server log upon establishing each connection. It is also recorded in the slow query log and profile collections */ + appName?: string; + /** Enables retryable reads. */ + retryReads?: boolean; + /** Enable retryable writes. */ + retryWrites?: boolean; + /** Allow a driver to force a Single topology type with a connection string containing one host */ + directConnection?: boolean; + /** Instruct the driver it is connecting to a load balancer fronting a mongos like service */ + loadBalanced?: boolean; + /** + * The write concern w value + * @deprecated Please use the `writeConcern` option instead + */ + w?: W; + /** + * The write concern timeout + * @deprecated Please use the `writeConcern` option instead + */ + wtimeoutMS?: number; + /** + * The journal write concern + * @deprecated Please use the `writeConcern` option instead + */ + journal?: boolean; + /** + * A MongoDB WriteConcern, which describes the level of acknowledgement + * requested from MongoDB for write operations. + * + * @see https://docs.mongodb.com/manual/reference/write-concern/ + */ + writeConcern?: WriteConcern | WriteConcernSettings; + /** Validate mongod server certificate against Certificate Authority */ + sslValidate?: boolean; + /** SSL Certificate file path. */ + sslCA?: string; + /** SSL Certificate file path. */ + sslCert?: string; + /** SSL Key file file path. */ + sslKey?: string; + /** SSL Certificate pass phrase. */ + sslPass?: string; + /** SSL Certificate revocation list file path. */ + sslCRL?: string; + /** TCP Connection no delay */ + noDelay?: boolean; + /** TCP Connection keep alive enabled */ + keepAlive?: boolean; + /** The number of milliseconds to wait before initiating keepAlive on the TCP socket */ + keepAliveInitialDelay?: number; + /** Force server to assign `_id` values instead of driver */ + forceServerObjectId?: boolean; + /** Return document results as raw BSON buffers */ + raw?: boolean; + /** A primary key factory function for generation of custom `_id` keys */ + pkFactory?: PkFactory; + /** + * A Promise library class the application wishes to use such as Bluebird, must be ES6 compatible + * @deprecated Setting a custom promise library is deprecated the next major version will use the global Promise constructor only. + */ + promiseLibrary?: any; + /** The logging level */ + loggerLevel?: LoggerLevel; + /** Custom logger object */ + logger?: Logger; + /** Enable command monitoring for this client */ + monitorCommands?: boolean; + /** Server API version */ + serverApi?: ServerApi | ServerApiVersion; + /** + * Optionally enable client side auto encryption + * + * @remarks + * Automatic encryption is an enterprise only feature that only applies to operations on a collection. Automatic encryption is not supported for operations on a database or view, and operations that are not bypassed will result in error + * (see [libmongocrypt: Auto Encryption Allow-List](https://github.com/mongodb/specifications/blob/master/source/client-side-encryption/client-side-encryption.rst#libmongocrypt-auto-encryption-allow-list)). To bypass automatic encryption for all operations, set bypassAutoEncryption=true in AutoEncryptionOpts. + * + * Automatic encryption requires the authenticated user to have the [listCollections privilege action](https://docs.mongodb.com/manual/reference/command/listCollections/#dbcmd.listCollections). + * + * If a MongoClient with a limited connection pool size (i.e a non-zero maxPoolSize) is configured with AutoEncryptionOptions, a separate internal MongoClient is created if any of the following are true: + * - AutoEncryptionOptions.keyVaultClient is not passed. + * - AutoEncryptionOptions.bypassAutomaticEncryption is false. + * + * If an internal MongoClient is created, it is configured with the same options as the parent MongoClient except minPoolSize is set to 0 and AutoEncryptionOptions is omitted. + */ + autoEncryption?: AutoEncryptionOptions; + /** Allows a wrapping driver to amend the client metadata generated by the driver to include information about the wrapping driver */ + driverInfo?: DriverInfo; + /** Configures a Socks5 proxy host used for creating TCP connections. */ + proxyHost?: string; + /** Configures a Socks5 proxy port used for creating TCP connections. */ + proxyPort?: number; + /** Configures a Socks5 proxy username when the proxy in proxyHost requires username/password authentication. */ + proxyUsername?: string; + /** Configures a Socks5 proxy password when the proxy in proxyHost requires username/password authentication. */ + proxyPassword?: string; + /* Excluded from this release type: srvPoller */ + /* Excluded from this release type: connectionType */ + /* Excluded from this release type: __index */ +} + +/* Excluded from this release type: MongoClientPrivate */ + +/** + * An error generated when a feature that is not enabled or allowed for the current server + * configuration is used + * + * + * @public + * @category Error + */ +export declare class MongoCompatibilityError extends MongoAPIError { + constructor(message: string); + get name(): string; +} + +/** + * A representation of the credentials used by MongoDB + * @public + */ +export declare class MongoCredentials { + /** The username used for authentication */ + readonly username: string; + /** The password used for authentication */ + readonly password: string; + /** The database that the user should authenticate against */ + readonly source: string; + /** The method used to authenticate */ + readonly mechanism: AuthMechanism; + /** Special properties used by some types of auth mechanisms */ + readonly mechanismProperties: AuthMechanismProperties; + constructor(options: MongoCredentialsOptions); + /** Determines if two MongoCredentials objects are equivalent */ + equals(other: MongoCredentials): boolean; + /** + * If the authentication mechanism is set to "default", resolves the authMechanism + * based on the server version and server supported sasl mechanisms. + * + * @param hello - A hello response from the server + */ + resolveAuthMechanism(hello?: Document): MongoCredentials; + validate(): void; + static merge(creds: MongoCredentials | undefined, options: Partial): MongoCredentials; +} + +/** @public */ +export declare interface MongoCredentialsOptions { + username: string; + password: string; + source: string; + db?: string; + mechanism?: AuthMechanism; + mechanismProperties: AuthMechanismProperties; +} + +/** + * An error thrown when an attempt is made to read from a cursor that has been exhausted + * + * @public + * @category Error + */ +export declare class MongoCursorExhaustedError extends MongoAPIError { + constructor(message?: string); + get name(): string; +} + +/** + * An error thrown when the user attempts to add options to a cursor that has already been + * initialized + * + * @public + * @category Error + */ +export declare class MongoCursorInUseError extends MongoAPIError { + constructor(message?: string); + get name(): string; +} + +/** @public */ +export declare class MongoDBNamespace { + db: string; + collection: string | undefined; + /** + * Create a namespace object + * + * @param db - database name + * @param collection - collection name + */ + constructor(db: string, collection?: string); + toString(): string; + withCollection(collection: string): MongoDBNamespace; + static fromString(namespace?: string): MongoDBNamespace; +} + +/** + * An error generated when the driver fails to decompress + * data received from the server. + * + * @public + * @category Error + */ +export declare class MongoDecompressionError extends MongoRuntimeError { + constructor(message: string); + get name(): string; +} + +/** + * An error generated by the driver + * + * @public + * @category Error + */ +export declare class MongoDriverError extends MongoError { + constructor(message: string); + get name(): string; +} + +/** + * @public + * @category Error + * + * @privateRemarks + * CSFLE has a dependency on this error, it uses the constructor with a string argument + */ +export declare class MongoError extends Error { + /* Excluded from this release type: [kErrorLabels] */ + /** + * This is a number in MongoServerError and a string in MongoDriverError + * @privateRemarks + * Define the type override on the subclasses when we can use the override keyword + */ + code?: number | string; + topologyVersion?: TopologyVersion; + cause?: Error; + constructor(message: string | Error); + get name(): string; + /** Legacy name for server error responses */ + get errmsg(): string; + /** + * Checks the error to see if it has an error label + * + * @param label - The error label to check for + * @returns returns true if the error has the provided error label + */ + hasErrorLabel(label: string): boolean; + addErrorLabel(label: string): void; + get errorLabels(): string[]; +} + +/** @public */ +export declare const MongoErrorLabel: Readonly<{ + readonly RetryableWriteError: "RetryableWriteError"; + readonly TransientTransactionError: "TransientTransactionError"; + readonly UnknownTransactionCommitResult: "UnknownTransactionCommitResult"; + readonly ResumableChangeStreamError: "ResumableChangeStreamError"; + readonly HandshakeError: "HandshakeError"; + readonly ResetPool: "ResetPool"; +}>; + +/** @public */ +export declare type MongoErrorLabel = typeof MongoErrorLabel[keyof typeof MongoErrorLabel]; + +/** + * An error generated when the user attempts to operate + * on a session that has expired or has been closed. + * + * @public + * @category Error + */ +export declare class MongoExpiredSessionError extends MongoAPIError { + constructor(message?: string); + get name(): string; +} + +/** + * An error generated when a malformed or invalid chunk is + * encountered when reading from a GridFSStream. + * + * @public + * @category Error + */ +export declare class MongoGridFSChunkError extends MongoRuntimeError { + constructor(message: string); + get name(): string; +} + +/** An error generated when a GridFSStream operation fails to execute. + * + * @public + * @category Error + */ +export declare class MongoGridFSStreamError extends MongoRuntimeError { + constructor(message: string); + get name(): string; +} + +/** + * An error generated when the user supplies malformed or unexpected arguments + * or when a required argument or field is not provided. + * + * + * @public + * @category Error + */ +export declare class MongoInvalidArgumentError extends MongoAPIError { + constructor(message: string); + get name(): string; +} + +/** + * A error generated when the user attempts to authenticate + * via Kerberos, but fails to connect to the Kerberos client. + * + * @public + * @category Error + */ +export declare class MongoKerberosError extends MongoRuntimeError { + constructor(message: string); + get name(): string; +} + +/** + * An error generated when the user fails to provide authentication credentials before attempting + * to connect to a mongo server instance. + * + * + * @public + * @category Error + */ +export declare class MongoMissingCredentialsError extends MongoAPIError { + constructor(message: string); + get name(): string; +} + +/** + * An error generated when a required module or dependency is not present in the local environment + * + * @public + * @category Error + */ +export declare class MongoMissingDependencyError extends MongoAPIError { + constructor(message: string); + get name(): string; +} + +/** + * An error indicating an issue with the network, including TCP errors and timeouts. + * @public + * @category Error + */ +export declare class MongoNetworkError extends MongoError { + /* Excluded from this release type: [kBeforeHandshake] */ + constructor(message: string | Error, options?: MongoNetworkErrorOptions); + get name(): string; +} + +/** @public */ +export declare interface MongoNetworkErrorOptions { + /** Indicates the timeout happened before a connection handshake completed */ + beforeHandshake: boolean; +} + +/** + * An error indicating a network timeout occurred + * @public + * @category Error + * + * @privateRemarks + * CSFLE has a dependency on this error with an instanceof check + */ +export declare class MongoNetworkTimeoutError extends MongoNetworkError { + constructor(message: string, options?: MongoNetworkErrorOptions); + get name(): string; +} + +/** + * An error thrown when the user attempts to operate on a database or collection through a MongoClient + * that has not yet successfully called the "connect" method + * + * @public + * @category Error + */ +export declare class MongoNotConnectedError extends MongoAPIError { + constructor(message: string); + get name(): string; +} + +/** + * Mongo Client Options + * @public + */ +export declare interface MongoOptions extends Required>, SupportedNodeConnectionOptions { + hosts: HostAddress[]; + srvHost?: string; + credentials?: MongoCredentials; + readPreference: ReadPreference; + readConcern: ReadConcern; + loadBalanced: boolean; + serverApi: ServerApi; + compressors: CompressorName[]; + writeConcern: WriteConcern; + dbName: string; + metadata: ClientMetadata; + autoEncrypter?: AutoEncrypter; + proxyHost?: string; + proxyPort?: number; + proxyUsername?: string; + proxyPassword?: string; + /* Excluded from this release type: connectionType */ + /* Excluded from this release type: encrypter */ + /* Excluded from this release type: userSpecifiedAuthSource */ + /* Excluded from this release type: userSpecifiedReplicaSet */ + /** + * # NOTE ABOUT TLS Options + * + * If set TLS enabled, equivalent to setting the ssl option. + * + * ### Additional options: + * + * | nodejs option | MongoDB equivalent | type | + * |:---------------------|--------------------------------------------------------- |:---------------------------------------| + * | `ca` | `sslCA`, `tlsCAFile` | `string \| Buffer \| Buffer[]` | + * | `crl` | `sslCRL` | `string \| Buffer \| Buffer[]` | + * | `cert` | `sslCert`, `tlsCertificateFile`, `tlsCertificateKeyFile` | `string \| Buffer \| Buffer[]` | + * | `key` | `sslKey`, `tlsCertificateKeyFile` | `string \| Buffer \| KeyObject[]` | + * | `passphrase` | `sslPass`, `tlsCertificateKeyFilePassword` | `string` | + * | `rejectUnauthorized` | `sslValidate` | `boolean` | + * + */ + tls: boolean; + /* Excluded from this release type: __index */ +} + +/** + * An error used when attempting to parse a value (like a connection string) + * @public + * @category Error + */ +export declare class MongoParseError extends MongoDriverError { + constructor(message: string); + get name(): string; +} + +/** + * An error generated when the driver encounters unexpected input + * or reaches an unexpected/invalid internal state + * + * @privateRemarks + * Should **never** be directly instantiated. + * + * @public + * @category Error + */ +export declare class MongoRuntimeError extends MongoDriverError { + constructor(message: string); + get name(): string; +} + +/** + * An error generated when an attempt is made to operate + * on a closed/closing server. + * + * @public + * @category Error + */ +export declare class MongoServerClosedError extends MongoAPIError { + constructor(message?: string); + get name(): string; +} + +/** + * An error coming from the mongo server + * + * @public + * @category Error + */ +export declare class MongoServerError extends MongoError { + codeName?: string; + writeConcernError?: Document; + errInfo?: Document; + ok?: number; + [key: string]: any; + constructor(message: ErrorDescription); + get name(): string; +} + +/** + * An error signifying a client-side server selection error + * @public + * @category Error + */ +export declare class MongoServerSelectionError extends MongoSystemError { + constructor(message: string, reason: TopologyDescription); + get name(): string; +} + +/** + * An error signifying a general system issue + * @public + * @category Error + */ +export declare class MongoSystemError extends MongoError { + /** An optional reason context, such as an error saved during flow of monitoring and selecting servers */ + reason?: TopologyDescription; + constructor(message: string, reason: TopologyDescription); + get name(): string; +} + +/** + * An error thrown when the user calls a function or method not supported on a tailable cursor + * + * @public + * @category Error + */ +export declare class MongoTailableCursorError extends MongoAPIError { + constructor(message?: string); + get name(): string; +} + +/** + * An error generated when an attempt is made to operate on a + * dropped, or otherwise unavailable, database. + * + * @public + * @category Error + */ +export declare class MongoTopologyClosedError extends MongoAPIError { + constructor(message?: string); + get name(): string; +} + +/** + * An error generated when the user makes a mistake in the usage of transactions. + * (e.g. attempting to commit a transaction with a readPreference other than primary) + * + * @public + * @category Error + */ +export declare class MongoTransactionError extends MongoAPIError { + constructor(message: string); + get name(): string; +} + +/** + * An error generated when a **parsable** unexpected response comes from the server. + * This is generally an error where the driver in a state expecting a certain behavior to occur in + * the next message from MongoDB but it receives something else. + * This error **does not** represent an issue with wire message formatting. + * + * #### Example + * When an operation fails, it is the driver's job to retry it. It must perform serverSelection + * again to make sure that it attempts the operation against a server in a good state. If server + * selection returns a server that does not support retryable operations, this error is used. + * This scenario is unlikely as retryable support would also have been determined on the first attempt + * but it is possible the state change could report a selectable server that does not support retries. + * + * @public + * @category Error + */ +export declare class MongoUnexpectedServerResponseError extends MongoRuntimeError { + constructor(message: string); + get name(): string; +} + +/** + * An error thrown when the server reports a writeConcernError + * @public + * @category Error + */ +export declare class MongoWriteConcernError extends MongoServerError { + /** The result document (provided if ok: 1) */ + result?: Document; + constructor(message: ErrorDescription, result?: Document); + get name(): string; +} + +/* Excluded from this release type: Monitor */ + +/** @public */ +export declare type MonitorEvents = { + serverHeartbeatStarted(event: ServerHeartbeatStartedEvent): void; + serverHeartbeatSucceeded(event: ServerHeartbeatSucceededEvent): void; + serverHeartbeatFailed(event: ServerHeartbeatFailedEvent): void; + resetServer(error?: MongoError): void; + resetConnectionPool(): void; + close(): void; +} & EventEmitterWithState; + +/* Excluded from this release type: MonitorInterval */ + +/* Excluded from this release type: MonitorIntervalOptions */ + +/** @public */ +export declare interface MonitorOptions extends Omit { + connectTimeoutMS: number; + heartbeatFrequencyMS: number; + minHeartbeatFrequencyMS: number; +} + +/* Excluded from this release type: MonitorPrivate */ + +/* Excluded from this release type: Msg */ + +/** + * @public + * returns tuple of strings (keys to be joined on '.') that represent every path into a schema + * https://docs.mongodb.com/manual/tutorial/query-embedded-documents/ + */ +export declare type NestedPaths = Type extends string | number | boolean | Date | RegExp | Buffer | Uint8Array | ((...args: any[]) => any) | { + _bsontype: string; +} ? [] : Type extends ReadonlyArray ? [] | [number, ...NestedPaths] : Type extends Map ? [string] : Type extends object ? { + [Key in Extract]: Type[Key] extends Type ? [Key] : Type extends Type[Key] ? [Key] : Type[Key] extends ReadonlyArray ? Type extends ArrayType ? [Key] : ArrayType extends Type ? [Key] : [ + Key, + ...NestedPaths + ] : // child is not structured the same as the parent + [ + Key, + ...NestedPaths + ] | [Key]; +}[Extract] : []; + +/** + * @public + * returns keys (strings) for every path into a schema with a value of type + * https://docs.mongodb.com/manual/tutorial/query-embedded-documents/ + */ +export declare type NestedPathsOfType = KeysOfAType<{ + [Property in Join, '.'>]: PropertyType; +}, Type>; + +/** + * @public + * A type that extends Document but forbids anything that "looks like" an object id. + */ +export declare type NonObjectIdLikeDocument = { + [key in keyof ObjectIdLike]?: never; +} & Document; + +/** It avoids using fields with not acceptable types @public */ +export declare type NotAcceptedFields = { + readonly [key in KeysOfOtherType]?: never; +}; + +/** @public */ +export declare type NumericType = IntegerType | Decimal128 | Double; + +/** + * @public + * @deprecated Please use `ObjectId` + */ +export declare const ObjectID: typeof ObjectId; + +export { ObjectId } + +/** @public */ +export declare type OneOrMore = T | ReadonlyArray; + +/** @public */ +export declare type OnlyFieldsOfType = IsAny, AcceptedFields & NotAcceptedFields & Record>; + +/* Excluded from this release type: OperationDescription */ + +/** @public */ +export declare interface OperationOptions extends BSONSerializeOptions { + /** Specify ClientSession for this command */ + session?: ClientSession; + willRetryWrite?: boolean; + /** The preferred read preference (ReadPreference.primary, ReadPreference.primary_preferred, ReadPreference.secondary, ReadPreference.secondary_preferred, ReadPreference.nearest). */ + readPreference?: ReadPreferenceLike; + /* Excluded from this release type: bypassPinningCheck */ + omitReadPreference?: boolean; +} + +/* Excluded from this release type: OperationParent */ + +/** + * Represents a specific point in time on a server. Can be retrieved by using `db.command()` + * @public + * @see https://docs.mongodb.com/manual/reference/method/db.runCommand/#response + */ +export declare type OperationTime = Timestamp; + +/* Excluded from this release type: OpMsgOptions */ + +/* Excluded from this release type: OpQueryOptions */ + +/* Excluded from this release type: OpResponseOptions */ + +/** + * Add an optional _id field to an object shaped type + * @public + */ +export declare type OptionalId = EnhancedOmit & { + _id?: InferIdType; +}; + +/** + * Adds an optional _id field to an object shaped type, unless the _id field is requried on that type. + * In the case _id is required, this method continues to require_id. + * + * @public + * + * @privateRemarks + * `ObjectId extends TSchema['_id']` is a confusing ordering at first glance. Rather than ask + * `TSchema['_id'] extends ObjectId` which translated to "Is the _id property ObjectId?" + * we instead ask "Does ObjectId look like (have the same shape) as the _id?" + */ +export declare type OptionalUnlessRequiredId = TSchema extends { + _id: any; +} ? TSchema : OptionalId; + +/** @public */ +export declare class OrderedBulkOperation extends BulkOperationBase { + /* Excluded from this release type: __constructor */ + addToOperationsList(batchType: BatchType, document: Document | UpdateStatement | DeleteStatement): this; +} + +/** @public */ +export declare interface PipeOptions { + end?: boolean; +} + +/** @public */ +export declare interface PkFactory { + createPk(): any; +} + +/* Excluded from this release type: PoolState */ + +/** @public */ +export declare const ProfilingLevel: Readonly<{ + readonly off: "off"; + readonly slowOnly: "slow_only"; + readonly all: "all"; +}>; + +/** @public */ +export declare type ProfilingLevel = typeof ProfilingLevel[keyof typeof ProfilingLevel]; + +/** @public */ +export declare type ProfilingLevelOptions = CommandOperationOptions; + +/** + * @public + * Projection is flexible to permit the wide array of aggregation operators + * @deprecated since v4.1.0: Since projections support all aggregation operations we have no plans to narrow this type further + */ +export declare type Projection = Document; + +/** + * @public + * @deprecated since v4.1.0: Since projections support all aggregation operations we have no plans to narrow this type further + */ +export declare type ProjectionOperators = Document; + +/** + * Global promise store allowing user-provided promises + * @deprecated Setting a custom promise library is deprecated the next major version will use the global Promise constructor only. + * @public + */ +declare class Promise_2 { + /** + * Validates the passed in promise library + * @deprecated Setting a custom promise library is deprecated the next major version will use the global Promise constructor only. + */ + static validate(lib: unknown): lib is PromiseConstructor; + /** + * Sets the promise library + * @deprecated Setting a custom promise library is deprecated the next major version will use the global Promise constructor only. + */ + static set(lib: PromiseConstructor | null): void; + /** + * Get the stored promise library, or resolves passed in + * @deprecated Setting a custom promise library is deprecated the next major version will use the global Promise constructor only. + */ + static get(): PromiseConstructor | null; +} +export { Promise_2 as Promise } + +/** @public */ +export declare type PropertyType = string extends Property ? unknown : Property extends keyof Type ? Type[Property] : Property extends `${number}` ? Type extends ReadonlyArray ? ArrayType : unknown : Property extends `${infer Key}.${infer Rest}` ? Key extends `${number}` ? Type extends ReadonlyArray ? PropertyType : unknown : Key extends keyof Type ? Type[Key] extends Map ? MapType : PropertyType : unknown : unknown; + +/** @public */ +export declare interface ProxyOptions { + proxyHost?: string; + proxyPort?: number; + proxyUsername?: string; + proxyPassword?: string; +} + +/** @public */ +export declare type PullAllOperator = ({ + readonly [key in KeysOfAType>]?: TSchema[key]; +} & NotAcceptedFields>) & { + readonly [key: string]: ReadonlyArray; +}; + +/** @public */ +export declare type PullOperator = ({ + readonly [key in KeysOfAType>]?: Partial> | FilterOperations>; +} & NotAcceptedFields>) & { + readonly [key: string]: FilterOperators | any; +}; + +/** @public */ +export declare type PushOperator = ({ + readonly [key in KeysOfAType>]?: Flatten | ArrayOperator>>; +} & NotAcceptedFields>) & { + readonly [key: string]: ArrayOperator | any; +}; + +/* Excluded from this release type: Query */ + +/* Excluded from this release type: QueryOptions */ + +/** + * The MongoDB ReadConcern, which allows for control of the consistency and isolation properties + * of the data read from replica sets and replica set shards. + * @public + * + * @see https://docs.mongodb.com/manual/reference/read-concern/index.html + */ +export declare class ReadConcern { + level: ReadConcernLevel | string; + /** Constructs a ReadConcern from the read concern level.*/ + constructor(level: ReadConcernLevel); + /** + * Construct a ReadConcern given an options object. + * + * @param options - The options object from which to extract the write concern. + */ + static fromOptions(options?: { + readConcern?: ReadConcernLike; + level?: ReadConcernLevel; + }): ReadConcern | undefined; + static get MAJORITY(): 'majority'; + static get AVAILABLE(): 'available'; + static get LINEARIZABLE(): 'linearizable'; + static get SNAPSHOT(): 'snapshot'; + toJSON(): Document; +} + +/** @public */ +export declare const ReadConcernLevel: Readonly<{ + readonly local: "local"; + readonly majority: "majority"; + readonly linearizable: "linearizable"; + readonly available: "available"; + readonly snapshot: "snapshot"; +}>; + +/** @public */ +export declare type ReadConcernLevel = typeof ReadConcernLevel[keyof typeof ReadConcernLevel]; + +/** @public */ +export declare type ReadConcernLike = ReadConcern | { + level: ReadConcernLevel; +} | ReadConcernLevel; + +/** + * The **ReadPreference** class is a class that represents a MongoDB ReadPreference and is + * used to construct connections. + * @public + * + * @see https://docs.mongodb.com/manual/core/read-preference/ + */ +export declare class ReadPreference { + mode: ReadPreferenceMode; + tags?: TagSet[]; + hedge?: HedgeOptions; + maxStalenessSeconds?: number; + minWireVersion?: number; + static PRIMARY: "primary"; + static PRIMARY_PREFERRED: "primaryPreferred"; + static SECONDARY: "secondary"; + static SECONDARY_PREFERRED: "secondaryPreferred"; + static NEAREST: "nearest"; + static primary: ReadPreference; + static primaryPreferred: ReadPreference; + static secondary: ReadPreference; + static secondaryPreferred: ReadPreference; + static nearest: ReadPreference; + /** + * @param mode - A string describing the read preference mode (primary|primaryPreferred|secondary|secondaryPreferred|nearest) + * @param tags - A tag set used to target reads to members with the specified tag(s). tagSet is not available if using read preference mode primary. + * @param options - Additional read preference options + */ + constructor(mode: ReadPreferenceMode, tags?: TagSet[], options?: ReadPreferenceOptions); + get preference(): ReadPreferenceMode; + static fromString(mode: string): ReadPreference; + /** + * Construct a ReadPreference given an options object. + * + * @param options - The options object from which to extract the read preference. + */ + static fromOptions(options?: ReadPreferenceFromOptions): ReadPreference | undefined; + /** + * Replaces options.readPreference with a ReadPreference instance + */ + static translate(options: ReadPreferenceLikeOptions): ReadPreferenceLikeOptions; + /** + * Validate if a mode is legal + * + * @param mode - The string representing the read preference mode. + */ + static isValid(mode: string): boolean; + /** + * Validate if a mode is legal + * + * @param mode - The string representing the read preference mode. + */ + isValid(mode?: string): boolean; + /** + * Indicates that this readPreference needs the "secondaryOk" bit when sent over the wire + * @deprecated Use secondaryOk instead + * @see https://docs.mongodb.com/manual/reference/mongodb-wire-protocol/#op-query + */ + slaveOk(): boolean; + /** + * Indicates that this readPreference needs the "SecondaryOk" bit when sent over the wire + * @see https://docs.mongodb.com/manual/reference/mongodb-wire-protocol/#op-query + */ + secondaryOk(): boolean; + /** + * Check if the two ReadPreferences are equivalent + * + * @param readPreference - The read preference with which to check equality + */ + equals(readPreference: ReadPreference): boolean; + /** Return JSON representation */ + toJSON(): Document; +} + +/** @public */ +export declare interface ReadPreferenceFromOptions extends ReadPreferenceLikeOptions { + session?: ClientSession; + readPreferenceTags?: TagSet[]; + hedge?: HedgeOptions; +} + +/** @public */ +export declare type ReadPreferenceLike = ReadPreference | ReadPreferenceMode; + +/** @public */ +export declare interface ReadPreferenceLikeOptions extends ReadPreferenceOptions { + readPreference?: ReadPreferenceLike | { + mode?: ReadPreferenceMode; + preference?: ReadPreferenceMode; + tags?: TagSet[]; + maxStalenessSeconds?: number; + }; +} + +/** @public */ +export declare const ReadPreferenceMode: Readonly<{ + readonly primary: "primary"; + readonly primaryPreferred: "primaryPreferred"; + readonly secondary: "secondary"; + readonly secondaryPreferred: "secondaryPreferred"; + readonly nearest: "nearest"; +}>; + +/** @public */ +export declare type ReadPreferenceMode = typeof ReadPreferenceMode[keyof typeof ReadPreferenceMode]; + +/** @public */ +export declare interface ReadPreferenceOptions { + /** Max secondary read staleness in seconds, Minimum value is 90 seconds.*/ + maxStalenessSeconds?: number; + /** Server mode in which the same query is dispatched in parallel to multiple replica set members. */ + hedge?: HedgeOptions; +} + +/** @public */ +export declare type ReduceFunction = (key: TKey, values: TValue[]) => TValue; + +/** @public */ +export declare type RegExpOrString = T extends string ? BSONRegExp | RegExp | T : T; + +/** @public */ +export declare type RemoveUserOptions = CommandOperationOptions; + +/** @public */ +export declare interface RenameOptions extends CommandOperationOptions { + /** Drop the target name collection if it previously exists. */ + dropTarget?: boolean; + /** Unclear */ + new_collection?: boolean; +} + +/** @public */ +export declare interface ReplaceOneModel { + /** The filter to limit the replaced document. */ + filter: Filter; + /** The document with which to replace the matched document. */ + replacement: WithoutId; + /** Specifies a collation. */ + collation?: CollationOptions; + /** The index to use. If specified, then the query system will only consider plans using the hinted index. */ + hint?: Hint; + /** When true, creates a new document if no document matches the query. */ + upsert?: boolean; +} + +/** @public */ +export declare interface ReplaceOptions extends CommandOperationOptions { + /** If true, allows the write to opt-out of document level validation */ + bypassDocumentValidation?: boolean; + /** Specifies a collation */ + collation?: CollationOptions; + /** Specify that the update query should only consider plans using the hinted index */ + hint?: string | Document; + /** When true, creates a new document if no document matches the query */ + upsert?: boolean; + /** Map of parameter names and values that can be accessed using $$var (requires MongoDB 5.0). */ + let?: Document; +} + +/* Excluded from this release type: Response */ + +/** + * @public + * @deprecated Please use the ChangeStreamCursorOptions type instead. + */ +export declare interface ResumeOptions { + startAtOperationTime?: Timestamp; + batchSize?: number; + maxAwaitTimeMS?: number; + collation?: CollationOptions; + readPreference?: ReadPreference; + resumeAfter?: ResumeToken; + startAfter?: ResumeToken; + fullDocument?: string; +} + +/** + * Represents the logical starting point for a new ChangeStream or resuming a ChangeStream on the server. + * @see https://www.mongodb.com/docs/manual/changeStreams/#std-label-change-stream-resume + * @public + */ +export declare type ResumeToken = unknown; + +/** @public */ +export declare const ReturnDocument: Readonly<{ + readonly BEFORE: "before"; + readonly AFTER: "after"; +}>; + +/** @public */ +export declare type ReturnDocument = typeof ReturnDocument[keyof typeof ReturnDocument]; + +/** @public */ +export declare interface RoleSpecification { + /** + * A role grants privileges to perform sets of actions on defined resources. + * A given role applies to the database on which it is defined and can grant access down to a collection level of granularity. + */ + role: string; + /** The database this user's role should effect. */ + db: string; +} + +/** @public */ +export declare interface RootFilterOperators extends Document { + $and?: Filter[]; + $nor?: Filter[]; + $or?: Filter[]; + $text?: { + $search: string; + $language?: string; + $caseSensitive?: boolean; + $diacriticSensitive?: boolean; + }; + $where?: string | ((this: TSchema) => boolean); + $comment?: string | Document; +} + +/* Excluded from this release type: RTTPinger */ + +/* Excluded from this release type: RTTPingerOptions */ + +/** @public */ +export declare type RunCommandOptions = CommandOperationOptions; + +/** @public */ +export declare type SchemaMember = { + [P in keyof T]?: V; +} | { + [key: string]: V; +}; + +/** @public */ +export declare interface SelectServerOptions { + readPreference?: ReadPreferenceLike; + /** How long to block for server selection before throwing an error */ + serverSelectionTimeoutMS?: number; + session?: ClientSession; +} + +/* Excluded from this release type: serialize */ + +/* Excluded from this release type: Server */ + +/** @public */ +export declare interface ServerApi { + version: ServerApiVersion; + strict?: boolean; + deprecationErrors?: boolean; +} + +/** @public */ +export declare const ServerApiVersion: Readonly<{ + readonly v1: "1"; +}>; + +/** @public */ +export declare type ServerApiVersion = typeof ServerApiVersion[keyof typeof ServerApiVersion]; + +/** @public */ +export declare class ServerCapabilities { + maxWireVersion: number; + minWireVersion: number; + constructor(hello: Document); + get hasAggregationCursor(): boolean; + get hasWriteCommands(): boolean; + get hasTextSearch(): boolean; + get hasAuthCommands(): boolean; + get hasListCollectionsCommand(): boolean; + get hasListIndexesCommand(): boolean; + get supportsSnapshotReads(): boolean; + get commandsTakeWriteConcern(): boolean; + get commandsTakeCollation(): boolean; +} + +/** + * Emitted when server is closed. + * @public + * @category Event + */ +export declare class ServerClosedEvent { + /** A unique identifier for the topology */ + topologyId: number; + /** The address (host/port pair) of the server */ + address: string; + /* Excluded from this release type: __constructor */ +} + +/** + * The client's view of a single server, based on the most recent hello outcome. + * + * Internal type, not meant to be directly instantiated + * @public + */ +export declare class ServerDescription { + address: string; + type: ServerType; + hosts: string[]; + passives: string[]; + arbiters: string[]; + tags: TagSet; + error: MongoError | null; + topologyVersion: TopologyVersion | null; + minWireVersion: number; + maxWireVersion: number; + roundTripTime: number; + lastUpdateTime: number; + lastWriteDate: number; + me: string | null; + primary: string | null; + setName: string | null; + setVersion: number | null; + electionId: ObjectId | null; + logicalSessionTimeoutMinutes: number | null; + $clusterTime?: ClusterTime; + /* Excluded from this release type: __constructor */ + get hostAddress(): HostAddress; + get allHosts(): string[]; + /** Is this server available for reads*/ + get isReadable(): boolean; + /** Is this server data bearing */ + get isDataBearing(): boolean; + /** Is this server available for writes */ + get isWritable(): boolean; + get host(): string; + get port(): number; + /** + * Determines if another `ServerDescription` is equal to this one per the rules defined + * in the {@link https://github.com/mongodb/specifications/blob/master/source/server-discovery-and-monitoring/server-discovery-and-monitoring.rst#serverdescription|SDAM spec} + */ + equals(other?: ServerDescription | null): boolean; +} + +/** + * Emitted when server description changes, but does NOT include changes to the RTT. + * @public + * @category Event + */ +export declare class ServerDescriptionChangedEvent { + /** A unique identifier for the topology */ + topologyId: number; + /** The address (host/port pair) of the server */ + address: string; + /** The previous server description */ + previousDescription: ServerDescription; + /** The new server description */ + newDescription: ServerDescription; + /* Excluded from this release type: __constructor */ +} + +/* Excluded from this release type: ServerDescriptionOptions */ + +/** @public */ +export declare type ServerEvents = { + serverHeartbeatStarted(event: ServerHeartbeatStartedEvent): void; + serverHeartbeatSucceeded(event: ServerHeartbeatSucceededEvent): void; + serverHeartbeatFailed(event: ServerHeartbeatFailedEvent): void; + /* Excluded from this release type: connect */ + descriptionReceived(description: ServerDescription): void; + closed(): void; + ended(): void; +} & ConnectionPoolEvents & EventEmitterWithState; + +/** + * Emitted when the server monitor’s hello fails, either with an “ok: 0” or a socket exception. + * @public + * @category Event + */ +export declare class ServerHeartbeatFailedEvent { + /** The connection id for the command */ + connectionId: string; + /** The execution time of the event in ms */ + duration: number; + /** The command failure */ + failure: Error; + /* Excluded from this release type: __constructor */ +} + +/** + * Emitted when the server monitor’s hello command is started - immediately before + * the hello command is serialized into raw BSON and written to the socket. + * + * @public + * @category Event + */ +export declare class ServerHeartbeatStartedEvent { + /** The connection id for the command */ + connectionId: string; + /* Excluded from this release type: __constructor */ +} + +/** + * Emitted when the server monitor’s hello succeeds. + * @public + * @category Event + */ +export declare class ServerHeartbeatSucceededEvent { + /** The connection id for the command */ + connectionId: string; + /** The execution time of the event in ms */ + duration: number; + /** The command reply */ + reply: Document; + /* Excluded from this release type: __constructor */ +} + +/** + * Emitted when server is initialized. + * @public + * @category Event + */ +export declare class ServerOpeningEvent { + /** A unique identifier for the topology */ + topologyId: number; + /** The address (host/port pair) of the server */ + address: string; + /* Excluded from this release type: __constructor */ +} + +/** @public */ +export declare type ServerOptions = Omit & MonitorOptions; + +/* Excluded from this release type: ServerPrivate */ + +/* Excluded from this release type: ServerSelectionCallback */ + +/* Excluded from this release type: ServerSelectionRequest */ + +/** @public */ +export declare type ServerSelector = (topologyDescription: TopologyDescription, servers: ServerDescription[]) => ServerDescription[]; + +/** + * Reflects the existence of a session on the server. Can be reused by the session pool. + * WARNING: not meant to be instantiated directly. For internal use only. + * @public + */ +export declare class ServerSession { + id: ServerSessionId; + lastUse: number; + txnNumber: number; + isDirty: boolean; + /* Excluded from this release type: __constructor */ + /** + * Determines if the server session has timed out. + * + * @param sessionTimeoutMinutes - The server's "logicalSessionTimeoutMinutes" + */ + hasTimedOut(sessionTimeoutMinutes: number): boolean; + /* Excluded from this release type: clone */ +} + +/** @public */ +export declare type ServerSessionId = { + id: Binary; +}; + +/* Excluded from this release type: ServerSessionPool */ + +/** + * An enumeration of server types we know about + * @public + */ +export declare const ServerType: Readonly<{ + readonly Standalone: "Standalone"; + readonly Mongos: "Mongos"; + readonly PossiblePrimary: "PossiblePrimary"; + readonly RSPrimary: "RSPrimary"; + readonly RSSecondary: "RSSecondary"; + readonly RSArbiter: "RSArbiter"; + readonly RSOther: "RSOther"; + readonly RSGhost: "RSGhost"; + readonly Unknown: "Unknown"; + readonly LoadBalancer: "LoadBalancer"; +}>; + +/** @public */ +export declare type ServerType = typeof ServerType[keyof typeof ServerType]; + +/** @public */ +export declare type SetFields = ({ + readonly [key in KeysOfAType | undefined>]?: OptionalId> | AddToSetOperators>>>; +} & NotAcceptedFields | undefined>) & { + readonly [key: string]: AddToSetOperators | any; +}; + +/** @public */ +export declare type SetProfilingLevelOptions = CommandOperationOptions; + +/** @public */ +export declare type Sort = string | Exclude | string[] | { + [key: string]: SortDirection; +} | Map | [string, SortDirection][] | [string, SortDirection]; + +/** @public */ +export declare type SortDirection = 1 | -1 | 'asc' | 'desc' | 'ascending' | 'descending' | { + $meta: string; +}; + +/* Excluded from this release type: SortDirectionForCmd */ + +/* Excluded from this release type: SortForCmd */ + +/* Excluded from this release type: SrvPoller */ + +/* Excluded from this release type: SrvPollerEvents */ + +/* Excluded from this release type: SrvPollerOptions */ + +/* Excluded from this release type: SrvPollingEvent */ + +/** @public */ +export declare type Stream = Socket | TLSSocket; + +/** @public */ +export declare class StreamDescription { + address: string; + type: string; + minWireVersion?: number; + maxWireVersion?: number; + maxBsonObjectSize: number; + maxMessageSizeBytes: number; + maxWriteBatchSize: number; + compressors: CompressorName[]; + compressor?: CompressorName; + logicalSessionTimeoutMinutes?: number; + loadBalanced: boolean; + __nodejs_mock_server__?: boolean; + zlibCompressionLevel?: number; + constructor(address: string, options?: StreamDescriptionOptions); + receiveResponse(response: Document | null): void; +} + +/** @public */ +export declare interface StreamDescriptionOptions { + compressors?: CompressorName[]; + logicalSessionTimeoutMinutes?: number; + loadBalanced: boolean; +} + +/** @public */ +export declare type SupportedNodeConnectionOptions = SupportedTLSConnectionOptions & SupportedTLSSocketOptions & SupportedSocketOptions; + +/** @public */ +export declare type SupportedSocketOptions = Pick; + +/** @public */ +export declare type SupportedTLSConnectionOptions = Pick>; + +/** @public */ +export declare type SupportedTLSSocketOptions = Pick>; + +/** @public */ +export declare type TagSet = { + [key: string]: string; +}; + +/* Excluded from this release type: TimerQueue */ + +/** @public + * Configuration options for timeseries collections + * @see https://docs.mongodb.com/manual/core/timeseries-collections/ + */ +export declare interface TimeSeriesCollectionOptions extends Document { + timeField: string; + metaField?: string; + granularity?: 'seconds' | 'minutes' | 'hours' | string; +} + +export { Timestamp } + +/* Excluded from this release type: Topology */ + +/** + * Emitted when topology is closed. + * @public + * @category Event + */ +export declare class TopologyClosedEvent { + /** A unique identifier for the topology */ + topologyId: number; + /* Excluded from this release type: __constructor */ +} + +/** + * Representation of a deployment of servers + * @public + */ +export declare class TopologyDescription { + type: TopologyType; + setName: string | null; + maxSetVersion: number | null; + maxElectionId: ObjectId | null; + servers: Map; + stale: boolean; + compatible: boolean; + compatibilityError?: string; + logicalSessionTimeoutMinutes: number | null; + heartbeatFrequencyMS: number; + localThresholdMS: number; + commonWireVersion: number; + /** + * Create a TopologyDescription + */ + constructor(topologyType: TopologyType, serverDescriptions?: Map | null, setName?: string | null, maxSetVersion?: number | null, maxElectionId?: ObjectId | null, commonWireVersion?: number | null, options?: TopologyDescriptionOptions | null); + /* Excluded from this release type: updateFromSrvPollingEvent */ + /* Excluded from this release type: update */ + get error(): MongoServerError | null; + /** + * Determines if the topology description has any known servers + */ + get hasKnownServers(): boolean; + /** + * Determines if this topology description has a data-bearing server available. + */ + get hasDataBearingServers(): boolean; + /* Excluded from this release type: hasServer */ +} + +/** + * Emitted when topology description changes. + * @public + * @category Event + */ +export declare class TopologyDescriptionChangedEvent { + /** A unique identifier for the topology */ + topologyId: number; + /** The old topology description */ + previousDescription: TopologyDescription; + /** The new topology description */ + newDescription: TopologyDescription; + /* Excluded from this release type: __constructor */ +} + +/** @public */ +export declare interface TopologyDescriptionOptions { + heartbeatFrequencyMS?: number; + localThresholdMS?: number; +} + +/** @public */ +export declare type TopologyEvents = { + /* Excluded from this release type: connect */ + serverOpening(event: ServerOpeningEvent): void; + serverClosed(event: ServerClosedEvent): void; + serverDescriptionChanged(event: ServerDescriptionChangedEvent): void; + topologyClosed(event: TopologyClosedEvent): void; + topologyOpening(event: TopologyOpeningEvent): void; + topologyDescriptionChanged(event: TopologyDescriptionChangedEvent): void; + error(error: Error): void; + /* Excluded from this release type: open */ + close(): void; + timeout(): void; +} & Omit & ConnectionPoolEvents & ConnectionEvents & EventEmitterWithState; + +/** + * Emitted when topology is initialized. + * @public + * @category Event + */ +export declare class TopologyOpeningEvent { + /** A unique identifier for the topology */ + topologyId: number; + /* Excluded from this release type: __constructor */ +} + +/** @public */ +export declare interface TopologyOptions extends BSONSerializeOptions, ServerOptions { + srvMaxHosts: number; + srvServiceName: string; + hosts: HostAddress[]; + retryWrites: boolean; + retryReads: boolean; + /** How long to block for server selection before throwing an error */ + serverSelectionTimeoutMS: number; + /** The name of the replica set to connect to */ + replicaSet?: string; + srvHost?: string; + /* Excluded from this release type: srvPoller */ + /** Indicates that a client should directly connect to a node without attempting to discover its topology type */ + directConnection: boolean; + loadBalanced: boolean; + metadata: ClientMetadata; + /** MongoDB server API version */ + serverApi?: ServerApi; + /* Excluded from this release type: __index */ +} + +/* Excluded from this release type: TopologyPrivate */ + +/** + * An enumeration of topology types we know about + * @public + */ +export declare const TopologyType: Readonly<{ + readonly Single: "Single"; + readonly ReplicaSetNoPrimary: "ReplicaSetNoPrimary"; + readonly ReplicaSetWithPrimary: "ReplicaSetWithPrimary"; + readonly Sharded: "Sharded"; + readonly Unknown: "Unknown"; + readonly LoadBalanced: "LoadBalanced"; +}>; + +/** @public */ +export declare type TopologyType = typeof TopologyType[keyof typeof TopologyType]; + +/** @public */ +export declare interface TopologyVersion { + processId: ObjectId; + counter: Long; +} + +/** + * @public + * A class maintaining state related to a server transaction. Internal Only + */ +export declare class Transaction { + /* Excluded from this release type: state */ + options: TransactionOptions; + /* Excluded from this release type: _pinnedServer */ + /* Excluded from this release type: _recoveryToken */ + /* Excluded from this release type: __constructor */ + /* Excluded from this release type: server */ + get recoveryToken(): Document | undefined; + get isPinned(): boolean; + /** @returns Whether the transaction has started */ + get isStarting(): boolean; + /** + * @returns Whether this session is presently in a transaction + */ + get isActive(): boolean; + get isCommitted(): boolean; + /* Excluded from this release type: transition */ + /* Excluded from this release type: pinServer */ + /* Excluded from this release type: unpinServer */ +} + +/** + * Configuration options for a transaction. + * @public + */ +export declare interface TransactionOptions extends CommandOperationOptions { + /** A default read concern for commands in this transaction */ + readConcern?: ReadConcernLike; + /** A default writeConcern for commands in this transaction */ + writeConcern?: WriteConcern; + /** A default read preference for commands in this transaction */ + readPreference?: ReadPreference; + /** Specifies the maximum amount of time to allow a commit action on a transaction to run in milliseconds */ + maxCommitTimeMS?: number; +} + +/* Excluded from this release type: TxnState */ + +/** + * Typescript type safe event emitter + * @public + */ +export declare interface TypedEventEmitter extends EventEmitter { + addListener(event: EventKey, listener: Events[EventKey]): this; + addListener(event: CommonEvents, listener: (eventName: string | symbol, listener: GenericListener) => void): this; + addListener(event: string | symbol, listener: GenericListener): this; + on(event: EventKey, listener: Events[EventKey]): this; + on(event: CommonEvents, listener: (eventName: string | symbol, listener: GenericListener) => void): this; + on(event: string | symbol, listener: GenericListener): this; + once(event: EventKey, listener: Events[EventKey]): this; + once(event: CommonEvents, listener: (eventName: string | symbol, listener: GenericListener) => void): this; + once(event: string | symbol, listener: GenericListener): this; + removeListener(event: EventKey, listener: Events[EventKey]): this; + removeListener(event: CommonEvents, listener: (eventName: string | symbol, listener: GenericListener) => void): this; + removeListener(event: string | symbol, listener: GenericListener): this; + off(event: EventKey, listener: Events[EventKey]): this; + off(event: CommonEvents, listener: (eventName: string | symbol, listener: GenericListener) => void): this; + off(event: string | symbol, listener: GenericListener): this; + removeAllListeners(event?: EventKey | CommonEvents | symbol | string): this; + listeners(event: EventKey | CommonEvents | symbol | string): Events[EventKey][]; + rawListeners(event: EventKey | CommonEvents | symbol | string): Events[EventKey][]; + emit(event: EventKey | symbol, ...args: Parameters): boolean; + listenerCount(type: EventKey | CommonEvents | symbol | string): number; + prependListener(event: EventKey, listener: Events[EventKey]): this; + prependListener(event: CommonEvents, listener: (eventName: string | symbol, listener: GenericListener) => void): this; + prependListener(event: string | symbol, listener: GenericListener): this; + prependOnceListener(event: EventKey, listener: Events[EventKey]): this; + prependOnceListener(event: CommonEvents, listener: (eventName: string | symbol, listener: GenericListener) => void): this; + prependOnceListener(event: string | symbol, listener: GenericListener): this; + eventNames(): string[]; + getMaxListeners(): number; + setMaxListeners(n: number): this; +} + +/** + * Typescript type safe event emitter + * @public + */ +export declare class TypedEventEmitter extends EventEmitter { +} + +/** @public */ +export declare class UnorderedBulkOperation extends BulkOperationBase { + /* Excluded from this release type: __constructor */ + handleWriteError(callback: Callback, writeResult: BulkWriteResult): boolean; + addToOperationsList(batchType: BatchType, document: Document | UpdateStatement | DeleteStatement): this; +} + +/** @public */ +export declare interface UpdateDescription { + /** + * A document containing key:value pairs of names of the fields that were + * changed, and the new value for those fields. + */ + updatedFields?: Partial; + /** + * An array of field names that were removed from the document. + */ + removedFields?: string[]; + /** + * An array of documents which record array truncations performed with pipeline-based updates using one or more of the following stages: + * - $addFields + * - $set + * - $replaceRoot + * - $replaceWith + */ + truncatedArrays?: Array<{ + /** The name of the truncated field. */ + field: string; + /** The number of elements in the truncated array. */ + newSize: number; + }>; + /** + * A document containing additional information about any ambiguous update paths from the update event. The document + * maps the full ambiguous update path to an array containing the actual resolved components of the path. For example, + * given a document shaped like `{ a: { '0': 0 } }`, and an update of `{ $inc: 'a.0' }`, disambiguated paths would look like + * the following: + * + * ``` + * { + * 'a.0': ['a', '0'] + * } + * ``` + * + * This field is only present when there are ambiguous paths that are updated as a part of the update event and `showExpandedEvents` + * is enabled for the change stream. + * @sinceServerVersion 6.1.0 + * @experimental + */ + disambiguatedPaths?: Document; +} + +/** @public */ +export declare type UpdateFilter = { + $currentDate?: OnlyFieldsOfType; + $inc?: OnlyFieldsOfType; + $min?: MatchKeysAndValues; + $max?: MatchKeysAndValues; + $mul?: OnlyFieldsOfType; + $rename?: Record; + $set?: MatchKeysAndValues; + $setOnInsert?: MatchKeysAndValues; + $unset?: OnlyFieldsOfType; + $addToSet?: SetFields; + $pop?: OnlyFieldsOfType, 1 | -1>; + $pull?: PullOperator; + $push?: PushOperator; + $pullAll?: PullAllOperator; + $bit?: OnlyFieldsOfType; +} & Document; + +/** @public */ +export declare interface UpdateManyModel { + /** The filter to limit the updated documents. */ + filter: Filter; + /** A document or pipeline containing update operators. */ + update: UpdateFilter | UpdateFilter[]; + /** A set of filters specifying to which array elements an update should apply. */ + arrayFilters?: Document[]; + /** Specifies a collation. */ + collation?: CollationOptions; + /** The index to use. If specified, then the query system will only consider plans using the hinted index. */ + hint?: Hint; + /** When true, creates a new document if no document matches the query. */ + upsert?: boolean; +} + +/** @public */ +export declare interface UpdateOneModel { + /** The filter to limit the updated documents. */ + filter: Filter; + /** A document or pipeline containing update operators. */ + update: UpdateFilter | UpdateFilter[]; + /** A set of filters specifying to which array elements an update should apply. */ + arrayFilters?: Document[]; + /** Specifies a collation. */ + collation?: CollationOptions; + /** The index to use. If specified, then the query system will only consider plans using the hinted index. */ + hint?: Hint; + /** When true, creates a new document if no document matches the query. */ + upsert?: boolean; +} + +/** @public */ +export declare interface UpdateOptions extends CommandOperationOptions { + /** A set of filters specifying to which array elements an update should apply */ + arrayFilters?: Document[]; + /** If true, allows the write to opt-out of document level validation */ + bypassDocumentValidation?: boolean; + /** Specifies a collation */ + collation?: CollationOptions; + /** Specify that the update query should only consider plans using the hinted index */ + hint?: Hint; + /** When true, creates a new document if no document matches the query */ + upsert?: boolean; + /** Map of parameter names and values that can be accessed using $$var (requires MongoDB 5.0). */ + let?: Document; +} + +/** @public */ +export declare interface UpdateResult { + /** Indicates whether this write result was acknowledged. If not, then all other members of this result will be undefined */ + acknowledged: boolean; + /** The number of documents that matched the filter */ + matchedCount: number; + /** The number of documents that were modified */ + modifiedCount: number; + /** The number of documents that were upserted */ + upsertedCount: number; + /** The identifier of the inserted document if an upsert took place */ + upsertedId: ObjectId; +} + +/** @public */ +export declare interface UpdateStatement { + /** The query that matches documents to update. */ + q: Document; + /** The modifications to apply. */ + u: Document | Document[]; + /** If true, perform an insert if no documents match the query. */ + upsert?: boolean; + /** If true, updates all documents that meet the query criteria. */ + multi?: boolean; + /** Specifies the collation to use for the operation. */ + collation?: CollationOptions; + /** An array of filter documents that determines which array elements to modify for an update operation on an array field. */ + arrayFilters?: Document[]; + /** A document or string that specifies the index to use to support the query predicate. */ + hint?: Hint; +} + +/** @public */ +export declare interface ValidateCollectionOptions extends CommandOperationOptions { + /** Validates a collection in the background, without interrupting read or write traffic (only in MongoDB 4.4+) */ + background?: boolean; +} + +/** @public */ +export declare type W = number | 'majority'; + +/* Excluded from this release type: WaitQueueMember */ + +/** @public */ +export declare interface WiredTigerData extends Document { + LSM: { + 'bloom filter false positives': number; + 'bloom filter hits': number; + 'bloom filter misses': number; + 'bloom filter pages evicted from cache': number; + 'bloom filter pages read into cache': number; + 'bloom filters in the LSM tree': number; + 'chunks in the LSM tree': number; + 'highest merge generation in the LSM tree': number; + 'queries that could have benefited from a Bloom filter that did not exist': number; + 'sleep for LSM checkpoint throttle': number; + 'sleep for LSM merge throttle': number; + 'total size of bloom filters': number; + } & Document; + 'block-manager': { + 'allocations requiring file extension': number; + 'blocks allocated': number; + 'blocks freed': number; + 'checkpoint size': number; + 'file allocation unit size': number; + 'file bytes available for reuse': number; + 'file magic number': number; + 'file major version number': number; + 'file size in bytes': number; + 'minor version number': number; + }; + btree: { + 'btree checkpoint generation': number; + 'column-store fixed-size leaf pages': number; + 'column-store internal pages': number; + 'column-store variable-size RLE encoded values': number; + 'column-store variable-size deleted values': number; + 'column-store variable-size leaf pages': number; + 'fixed-record size': number; + 'maximum internal page key size': number; + 'maximum internal page size': number; + 'maximum leaf page key size': number; + 'maximum leaf page size': number; + 'maximum leaf page value size': number; + 'maximum tree depth': number; + 'number of key/value pairs': number; + 'overflow pages': number; + 'pages rewritten by compaction': number; + 'row-store internal pages': number; + 'row-store leaf pages': number; + } & Document; + cache: { + 'bytes currently in the cache': number; + 'bytes read into cache': number; + 'bytes written from cache': number; + 'checkpoint blocked page eviction': number; + 'data source pages selected for eviction unable to be evicted': number; + 'hazard pointer blocked page eviction': number; + 'in-memory page passed criteria to be split': number; + 'in-memory page splits': number; + 'internal pages evicted': number; + 'internal pages split during eviction': number; + 'leaf pages split during eviction': number; + 'modified pages evicted': number; + 'overflow pages read into cache': number; + 'overflow values cached in memory': number; + 'page split during eviction deepened the tree': number; + 'page written requiring lookaside records': number; + 'pages read into cache': number; + 'pages read into cache requiring lookaside entries': number; + 'pages requested from the cache': number; + 'pages written from cache': number; + 'pages written requiring in-memory restoration': number; + 'tracked dirty bytes in the cache': number; + 'unmodified pages evicted': number; + } & Document; + cache_walk: { + 'Average difference between current eviction generation when the page was last considered': number; + 'Average on-disk page image size seen': number; + 'Clean pages currently in cache': number; + 'Current eviction generation': number; + 'Dirty pages currently in cache': number; + 'Entries in the root page': number; + 'Internal pages currently in cache': number; + 'Leaf pages currently in cache': number; + 'Maximum difference between current eviction generation when the page was last considered': number; + 'Maximum page size seen': number; + 'Minimum on-disk page image size seen': number; + 'On-disk page image sizes smaller than a single allocation unit': number; + 'Pages created in memory and never written': number; + 'Pages currently queued for eviction': number; + 'Pages that could not be queued for eviction': number; + 'Refs skipped during cache traversal': number; + 'Size of the root page': number; + 'Total number of pages currently in cache': number; + } & Document; + compression: { + 'compressed pages read': number; + 'compressed pages written': number; + 'page written failed to compress': number; + 'page written was too small to compress': number; + 'raw compression call failed, additional data available': number; + 'raw compression call failed, no additional data available': number; + 'raw compression call succeeded': number; + } & Document; + cursor: { + 'bulk-loaded cursor-insert calls': number; + 'create calls': number; + 'cursor-insert key and value bytes inserted': number; + 'cursor-remove key bytes removed': number; + 'cursor-update value bytes updated': number; + 'insert calls': number; + 'next calls': number; + 'prev calls': number; + 'remove calls': number; + 'reset calls': number; + 'restarted searches': number; + 'search calls': number; + 'search near calls': number; + 'truncate calls': number; + 'update calls': number; + }; + reconciliation: { + 'dictionary matches': number; + 'fast-path pages deleted': number; + 'internal page key bytes discarded using suffix compression': number; + 'internal page multi-block writes': number; + 'internal-page overflow keys': number; + 'leaf page key bytes discarded using prefix compression': number; + 'leaf page multi-block writes': number; + 'leaf-page overflow keys': number; + 'maximum blocks required for a page': number; + 'overflow values written': number; + 'page checksum matches': number; + 'page reconciliation calls': number; + 'page reconciliation calls for eviction': number; + 'pages deleted': number; + } & Document; +} + +/* Excluded from this release type: WithConnectionCallback */ + +/** Add an _id field to an object shaped type @public */ +export declare type WithId = EnhancedOmit & { + _id: InferIdType; +}; + +/** Remove the _id field from an object shaped type @public */ +export declare type WithoutId = Omit; + +/** @public */ +export declare type WithSessionCallback = (session: ClientSession) => Promise; + +/** @public */ +export declare type WithTransactionCallback = (session: ClientSession) => Promise; + +/** + * A MongoDB WriteConcern, which describes the level of acknowledgement + * requested from MongoDB for write operations. + * @public + * + * @see https://docs.mongodb.com/manual/reference/write-concern/ + */ +export declare class WriteConcern { + /** request acknowledgment that the write operation has propagated to a specified number of mongod instances or to mongod instances with specified tags. */ + w?: W; + /** specify a time limit to prevent write operations from blocking indefinitely */ + wtimeout?: number; + /** request acknowledgment that the write operation has been written to the on-disk journal */ + j?: boolean; + /** equivalent to the j option */ + fsync?: boolean | 1; + /** + * Constructs a WriteConcern from the write concern properties. + * @param w - request acknowledgment that the write operation has propagated to a specified number of mongod instances or to mongod instances with specified tags. + * @param wtimeout - specify a time limit to prevent write operations from blocking indefinitely + * @param j - request acknowledgment that the write operation has been written to the on-disk journal + * @param fsync - equivalent to the j option + */ + constructor(w?: W, wtimeout?: number, j?: boolean, fsync?: boolean | 1); + /** Construct a WriteConcern given an options object. */ + static fromOptions(options?: WriteConcernOptions | WriteConcern | W, inherit?: WriteConcernOptions | WriteConcern): WriteConcern | undefined; +} + +/** + * An error representing a failure by the server to apply the requested write concern to the bulk operation. + * @public + * @category Error + */ +export declare class WriteConcernError { + /* Excluded from this release type: [kServerError] */ + constructor(error: WriteConcernErrorData); + /** Write concern error code. */ + get code(): number | undefined; + /** Write concern error message. */ + get errmsg(): string | undefined; + /** Write concern error info. */ + get errInfo(): Document | undefined; + /** @deprecated The `err` prop that contained a MongoServerError has been deprecated. */ + get err(): WriteConcernErrorData; + toJSON(): WriteConcernErrorData; + toString(): string; +} + +/** @public */ +export declare interface WriteConcernErrorData { + code: number; + errmsg: string; + errInfo?: Document; +} + +/** @public */ +export declare interface WriteConcernOptions { + /** Write Concern as an object */ + writeConcern?: WriteConcern | WriteConcernSettings; +} + +/** @public */ +export declare interface WriteConcernSettings { + /** The write concern */ + w?: W; + /** The write concern timeout */ + wtimeoutMS?: number; + /** The journal write concern */ + journal?: boolean; + /** The journal write concern */ + j?: boolean; + /** The write concern timeout */ + wtimeout?: number; + /** The file sync write concern */ + fsync?: boolean | 1; +} + +/** + * An error that occurred during a BulkWrite on the server. + * @public + * @category Error + */ +export declare class WriteError { + err: BulkWriteOperationError; + constructor(err: BulkWriteOperationError); + /** WriteError code. */ + get code(): number; + /** WriteError original bulk operation index. */ + get index(): number; + /** WriteError message. */ + get errmsg(): string | undefined; + /** WriteError details. */ + get errInfo(): Document | undefined; + /** Returns the underlying operation that caused the error */ + getOperation(): Document; + toJSON(): { + code: number; + index: number; + errmsg?: string; + op: Document; + }; + toString(): string; +} + +/* Excluded from this release type: WriteProtocolMessageType */ + +export { } diff --git a/node_modules/mongodb/package.json b/node_modules/mongodb/package.json new file mode 100644 index 000000000..99d6c746b --- /dev/null +++ b/node_modules/mongodb/package.json @@ -0,0 +1,138 @@ +{ + "name": "mongodb", + "version": "4.10.0", + "description": "The official MongoDB driver for Node.js", + "main": "lib/index.js", + "files": [ + "lib", + "src", + "etc/prepare.js", + "mongodb.d.ts", + "tsconfig.json" + ], + "types": "mongodb.d.ts", + "repository": { + "type": "git", + "url": "git@github.com:mongodb/node-mongodb-native.git" + }, + "keywords": [ + "mongodb", + "driver", + "official" + ], + "author": { + "name": "The MongoDB NodeJS Team", + "email": "dbx-node@mongodb.com" + }, + "dependencies": { + "bson": "^4.7.0", + "denque": "^2.1.0", + "mongodb-connection-string-url": "^2.5.3", + "socks": "^2.7.0" + }, + "devDependencies": { + "@iarna/toml": "^2.2.5", + "@istanbuljs/nyc-config-typescript": "^1.0.2", + "@microsoft/api-extractor": "^7.29.5", + "@microsoft/tsdoc-config": "^0.16.1", + "@mongodb-js/zstd": "^1.0.0", + "@types/chai": "^4.3.3", + "@types/chai-subset": "^1.3.3", + "@types/express": "^4.17.13", + "@types/kerberos": "^1.1.1", + "@types/mocha": "^9.1.1", + "@types/node": "^18.7.13", + "@types/saslprep": "^1.0.1", + "@types/semver": "^7.3.12", + "@types/sinon": "^10.0.11", + "@types/sinon-chai": "^3.2.8", + "@types/whatwg-url": "^8.2.2", + "@typescript-eslint/eslint-plugin": "^5.35.1", + "@typescript-eslint/parser": "^5.35.1", + "bluebird": "^3.7.2", + "chai": "^4.3.6", + "chai-subset": "^1.6.0", + "chalk": "^4.1.2", + "eslint": "^8.22.0", + "eslint-config-prettier": "^8.5.0", + "eslint-plugin-import": "^2.26.0", + "eslint-plugin-prettier": "^4.2.1", + "eslint-plugin-simple-import-sort": "^7.0.0", + "eslint-plugin-tsdoc": "^0.2.16", + "express": "^4.18.1", + "js-yaml": "^4.1.0", + "mocha": "^9.2.2", + "mocha-sinon": "^2.1.2", + "nyc": "^15.1.0", + "prettier": "^2.7.1", + "rimraf": "^3.0.2", + "semver": "^7.3.7", + "sinon": "^13.0.1", + "sinon-chai": "^3.7.0", + "source-map-support": "^0.5.21", + "standard-version": "^9.5.0", + "ts-node": "^10.9.1", + "tsd": "^0.22.0", + "typescript": "^4.8.2", + "typescript-cached-transpile": "^0.0.6", + "xml2js": "^0.4.23", + "yargs": "^17.5.1" + }, + "license": "Apache-2.0", + "engines": { + "node": ">=12.9.0" + }, + "bugs": { + "url": "https://jira.mongodb.org/projects/NODE/issues/" + }, + "homepage": "https://github.com/mongodb/node-mongodb-native", + "optionalDependencies": { + "saslprep": "^1.0.3" + }, + "scripts": { + "build:evergreen": "node .evergreen/generate_evergreen_tasks.js", + "build:ts": "node ./node_modules/typescript/bin/tsc", + "build:dts": "npm run build:ts && api-extractor run && rimraf 'lib/**/*.d.ts*'", + "build:docs": "./etc/docs/build.ts", + "build:typedoc": "typedoc", + "check:bench": "node test/benchmarks/driverBench", + "check:coverage": "nyc npm run test:all", + "check:integration-coverage": "nyc npm run check:test", + "check:lambda": "mocha --config test/mocha_lambda.json test/integration/node-specific/examples/handler.test.js", + "check:lambda:aws": "mocha --config test/mocha_lambda.json test/integration/node-specific/examples/aws_handler.test.js", + "check:lint": "npm run build:dts && npm run check:dts && npm run check:eslint && npm run check:tsd", + "check:eslint": "eslint -v && eslint --max-warnings=0 --ext '.js,.ts' src test", + "check:tsd": "tsd --version && tsd", + "check:dependencies": "mocha test/action/dependency.test.ts", + "check:dts": "node ./node_modules/typescript/bin/tsc --noEmit mongodb.d.ts && tsd", + "check:test": "mocha --config test/mocha_mongodb.json test/integration", + "check:unit": "mocha test/unit", + "check:ts": "node ./node_modules/typescript/bin/tsc -v && node ./node_modules/typescript/bin/tsc --noEmit", + "check:atlas": "mocha --config test/manual/mocharc.json test/manual/atlas_connectivity.test.js", + "check:adl": "mocha --config test/mocha_mongodb.json test/manual/atlas-data-lake-testing", + "check:aws": "mocha --config test/mocha_mongodb.json test/integration/auth/mongodb_aws.test.ts", + "check:ocsp": "mocha --config test/manual/mocharc.json test/manual/ocsp_support.test.js", + "check:kerberos": "mocha --config test/manual/mocharc.json test/manual/kerberos.test.js", + "check:tls": "mocha --config test/manual/mocharc.json test/manual/tls_support.test.js", + "check:ldap": "mocha --config test/manual/mocharc.json test/manual/ldap.test.js", + "check:socks5": "mocha --config test/manual/mocharc.json test/manual/socks5.test.ts", + "check:csfle": "mocha --config test/mocha_mongodb.json test/integration/client-side-encryption", + "check:snappy": "mocha test/unit/assorted/snappy.test.js", + "fix:eslint": "npm run check:eslint -- --fix", + "prepare": "node etc/prepare.js", + "preview:docs": "ts-node etc/docs/preview.ts", + "release": "standard-version -a -i HISTORY.md", + "test": "npm run check:lint && npm run test:all", + "test:all": "npm run check:unit && npm run check:test", + "update:docs": "npm run build:docs -- --yes" + }, + "tsd": { + "directory": "test/types", + "compilerOptions": { + "strict": true, + "target": "esnext", + "module": "commonjs", + "moduleResolution": "node" + } + } +} diff --git a/node_modules/mongodb/src/admin.ts b/node_modules/mongodb/src/admin.ts new file mode 100644 index 000000000..38e973713 --- /dev/null +++ b/node_modules/mongodb/src/admin.ts @@ -0,0 +1,325 @@ +import type { Document } from './bson'; +import type { Db } from './db'; +import { AddUserOperation, AddUserOptions } from './operations/add_user'; +import type { CommandOperationOptions } from './operations/command'; +import { executeOperation } from './operations/execute_operation'; +import { + ListDatabasesOperation, + ListDatabasesOptions, + ListDatabasesResult +} from './operations/list_databases'; +import { RemoveUserOperation, RemoveUserOptions } from './operations/remove_user'; +import { RunCommandOperation, RunCommandOptions } from './operations/run_command'; +import { + ValidateCollectionOperation, + ValidateCollectionOptions +} from './operations/validate_collection'; +import type { Callback } from './utils'; + +/** @internal */ +export interface AdminPrivate { + db: Db; +} + +/** + * The **Admin** class is an internal class that allows convenient access to + * the admin functionality and commands for MongoDB. + * + * **ADMIN Cannot directly be instantiated** + * @public + * + * @example + * ```ts + * import { MongoClient } from 'mongodb'; + * + * const client = new MongoClient('mongodb://localhost:27017'); + * const admin = client.db().admin(); + * const dbInfo = await admin.listDatabases(); + * for (const db of dbInfo.databases) { + * console.log(db.name); + * } + * ``` + */ +export class Admin { + /** @internal */ + s: AdminPrivate; + + /** + * Create a new Admin instance + * @internal + */ + constructor(db: Db) { + this.s = { db }; + } + + /** + * Execute a command + * + * @param command - The command to execute + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + command(command: Document): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + command(command: Document, callback: Callback): void; + command(command: Document, options: RunCommandOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + command(command: Document, options: RunCommandOptions, callback: Callback): void; + command( + command: Document, + options?: RunCommandOptions | Callback, + callback?: Callback + ): Promise | void { + if (typeof options === 'function') (callback = options), (options = {}); + options = Object.assign({ dbName: 'admin' }, options); + + return executeOperation( + this.s.db.s.client, + new RunCommandOperation(this.s.db, command, options), + callback + ); + } + + /** + * Retrieve the server build information + * + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + buildInfo(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + buildInfo(callback: Callback): void; + buildInfo(options: CommandOperationOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + buildInfo(options: CommandOperationOptions, callback: Callback): void; + buildInfo( + options?: CommandOperationOptions | Callback, + callback?: Callback + ): Promise | void { + if (typeof options === 'function') (callback = options), (options = {}); + options = options ?? {}; + return this.command({ buildinfo: 1 }, options, callback as Callback); + } + + /** + * Retrieve the server build information + * + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + serverInfo(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + serverInfo(callback: Callback): void; + serverInfo(options: CommandOperationOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + serverInfo(options: CommandOperationOptions, callback: Callback): void; + serverInfo( + options?: CommandOperationOptions | Callback, + callback?: Callback + ): Promise | void { + if (typeof options === 'function') (callback = options), (options = {}); + options = options ?? {}; + return this.command({ buildinfo: 1 }, options, callback as Callback); + } + + /** + * Retrieve this db's server status. + * + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + serverStatus(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + serverStatus(callback: Callback): void; + serverStatus(options: CommandOperationOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + serverStatus(options: CommandOperationOptions, callback: Callback): void; + serverStatus( + options?: CommandOperationOptions | Callback, + callback?: Callback + ): Promise | void { + if (typeof options === 'function') (callback = options), (options = {}); + options = options ?? {}; + return this.command({ serverStatus: 1 }, options, callback as Callback); + } + + /** + * Ping the MongoDB server and retrieve results + * + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + ping(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + ping(callback: Callback): void; + ping(options: CommandOperationOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + ping(options: CommandOperationOptions, callback: Callback): void; + ping( + options?: CommandOperationOptions | Callback, + callback?: Callback + ): Promise | void { + if (typeof options === 'function') (callback = options), (options = {}); + options = options ?? {}; + return this.command({ ping: 1 }, options, callback as Callback); + } + + /** + * Add a user to the database + * + * @param username - The username for the new user + * @param password - An optional password for the new user + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + addUser(username: string): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + addUser(username: string, callback: Callback): void; + addUser(username: string, password: string): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + addUser(username: string, password: string, callback: Callback): void; + addUser(username: string, options: AddUserOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + addUser(username: string, options: AddUserOptions, callback: Callback): void; + addUser(username: string, password: string, options: AddUserOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + addUser( + username: string, + password: string, + options: AddUserOptions, + callback: Callback + ): void; + addUser( + username: string, + password?: string | AddUserOptions | Callback, + options?: AddUserOptions | Callback, + callback?: Callback + ): Promise | void { + if (typeof password === 'function') { + (callback = password), (password = undefined), (options = {}); + } else if (typeof password !== 'string') { + if (typeof options === 'function') { + (callback = options), (options = password), (password = undefined); + } else { + (options = password), (callback = undefined), (password = undefined); + } + } else { + if (typeof options === 'function') (callback = options), (options = {}); + } + + options = Object.assign({ dbName: 'admin' }, options); + + return executeOperation( + this.s.db.s.client, + new AddUserOperation(this.s.db, username, password, options), + callback + ); + } + + /** + * Remove a user from a database + * + * @param username - The username to remove + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + removeUser(username: string): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + removeUser(username: string, callback: Callback): void; + removeUser(username: string, options: RemoveUserOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + removeUser(username: string, options: RemoveUserOptions, callback: Callback): void; + removeUser( + username: string, + options?: RemoveUserOptions | Callback, + callback?: Callback + ): Promise | void { + if (typeof options === 'function') (callback = options), (options = {}); + options = Object.assign({ dbName: 'admin' }, options); + + return executeOperation( + this.s.db.s.client, + new RemoveUserOperation(this.s.db, username, options), + callback + ); + } + + /** + * Validate an existing collection + * + * @param collectionName - The name of the collection to validate. + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + validateCollection(collectionName: string): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + validateCollection(collectionName: string, callback: Callback): void; + validateCollection(collectionName: string, options: ValidateCollectionOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + validateCollection( + collectionName: string, + options: ValidateCollectionOptions, + callback: Callback + ): void; + validateCollection( + collectionName: string, + options?: ValidateCollectionOptions | Callback, + callback?: Callback + ): Promise | void { + if (typeof options === 'function') (callback = options), (options = {}); + options = options ?? {}; + + return executeOperation( + this.s.db.s.client, + new ValidateCollectionOperation(this, collectionName, options), + callback + ); + } + + /** + * List the available databases + * + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + listDatabases(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + listDatabases(callback: Callback): void; + listDatabases(options: ListDatabasesOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + listDatabases(options: ListDatabasesOptions, callback: Callback): void; + listDatabases( + options?: ListDatabasesOptions | Callback, + callback?: Callback + ): Promise | void { + if (typeof options === 'function') (callback = options), (options = {}); + options = options ?? {}; + + return executeOperation( + this.s.db.s.client, + new ListDatabasesOperation(this.s.db, options), + callback + ); + } + + /** + * Get ReplicaSet status + * + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + replSetGetStatus(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + replSetGetStatus(callback: Callback): void; + replSetGetStatus(options: CommandOperationOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + replSetGetStatus(options: CommandOperationOptions, callback: Callback): void; + replSetGetStatus( + options?: CommandOperationOptions | Callback, + callback?: Callback + ): Promise | void { + if (typeof options === 'function') (callback = options), (options = {}); + options = options ?? {}; + return this.command({ replSetGetStatus: 1 }, options, callback as Callback); + } +} diff --git a/node_modules/mongodb/src/bson.ts b/node_modules/mongodb/src/bson.ts new file mode 100644 index 000000000..8a6133f2a --- /dev/null +++ b/node_modules/mongodb/src/bson.ts @@ -0,0 +1,116 @@ +import type { + calculateObjectSize as calculateObjectSizeFn, + deserialize as deserializeFn, + DeserializeOptions, + serialize as serializeFn, + SerializeOptions +} from 'bson'; + +/** @internal */ +// eslint-disable-next-line @typescript-eslint/no-var-requires +let BSON = require('bson'); + +try { + // Ensure you always wrap an optional require in the try block NODE-3199 + BSON = require('bson-ext'); +} catch {} // eslint-disable-line + +/** @internal */ +export const deserialize = BSON.deserialize as typeof deserializeFn; +/** @internal */ +export const serialize = BSON.serialize as typeof serializeFn; +/** @internal */ +export const calculateObjectSize = BSON.calculateObjectSize as typeof calculateObjectSizeFn; + +export { + Binary, + BSONRegExp, + BSONSymbol, + Code, + DBRef, + Decimal128, + Document, + Double, + Int32, + Long, + Map, + MaxKey, + MinKey, + ObjectId, + Timestamp +} from 'bson'; + +/** @internal */ +export { BSON }; + +/** + * BSON Serialization options. + * @public + */ +export interface BSONSerializeOptions + extends Omit, + Omit< + DeserializeOptions, + | 'evalFunctions' + | 'cacheFunctions' + | 'cacheFunctionsCrc32' + | 'allowObjectSmallerThanBufferSize' + | 'index' + | 'validation' + > { + /** Return BSON filled buffers from operations */ + raw?: boolean; + + /** Enable utf8 validation when deserializing BSON documents. Defaults to true. */ + enableUtf8Validation?: boolean; +} + +export function pluckBSONSerializeOptions(options: BSONSerializeOptions): BSONSerializeOptions { + const { + fieldsAsRaw, + promoteValues, + promoteBuffers, + promoteLongs, + serializeFunctions, + ignoreUndefined, + bsonRegExp, + raw, + enableUtf8Validation + } = options; + return { + fieldsAsRaw, + promoteValues, + promoteBuffers, + promoteLongs, + serializeFunctions, + ignoreUndefined, + bsonRegExp, + raw, + enableUtf8Validation + }; +} + +/** + * Merge the given BSONSerializeOptions, preferring options over the parent's options, and + * substituting defaults for values not set. + * + * @internal + */ +export function resolveBSONOptions( + options?: BSONSerializeOptions, + parent?: { bsonOptions?: BSONSerializeOptions } +): BSONSerializeOptions { + const parentOptions = parent?.bsonOptions; + return { + raw: options?.raw ?? parentOptions?.raw ?? false, + promoteLongs: options?.promoteLongs ?? parentOptions?.promoteLongs ?? true, + promoteValues: options?.promoteValues ?? parentOptions?.promoteValues ?? true, + promoteBuffers: options?.promoteBuffers ?? parentOptions?.promoteBuffers ?? false, + ignoreUndefined: options?.ignoreUndefined ?? parentOptions?.ignoreUndefined ?? false, + bsonRegExp: options?.bsonRegExp ?? parentOptions?.bsonRegExp ?? false, + serializeFunctions: options?.serializeFunctions ?? parentOptions?.serializeFunctions ?? false, + fieldsAsRaw: options?.fieldsAsRaw ?? parentOptions?.fieldsAsRaw ?? {}, + enableUtf8Validation: + options?.enableUtf8Validation ?? parentOptions?.enableUtf8Validation ?? true + }; +} diff --git a/node_modules/mongodb/src/bulk/common.ts b/node_modules/mongodb/src/bulk/common.ts new file mode 100644 index 000000000..9cd81370c --- /dev/null +++ b/node_modules/mongodb/src/bulk/common.ts @@ -0,0 +1,1397 @@ +import { + BSONSerializeOptions, + Document, + Long, + ObjectId, + resolveBSONOptions, + Timestamp +} from '../bson'; +import type { Collection } from '../collection'; +import { + AnyError, + MongoBatchReExecutionError, + MONGODB_ERROR_CODES, + MongoInvalidArgumentError, + MongoServerError, + MongoWriteConcernError +} from '../error'; +import type { Filter, OneOrMore, OptionalId, UpdateFilter, WithoutId } from '../mongo_types'; +import type { CollationOptions, CommandOperationOptions } from '../operations/command'; +import { DeleteOperation, DeleteStatement, makeDeleteStatement } from '../operations/delete'; +import { executeOperation } from '../operations/execute_operation'; +import { InsertOperation } from '../operations/insert'; +import { AbstractOperation, Hint } from '../operations/operation'; +import { makeUpdateStatement, UpdateOperation, UpdateStatement } from '../operations/update'; +import { PromiseProvider } from '../promise_provider'; +import type { Server } from '../sdam/server'; +import type { Topology } from '../sdam/topology'; +import type { ClientSession } from '../sessions'; +import { + applyRetryableWrites, + Callback, + getTopology, + hasAtomicOperators, + MongoDBNamespace, + resolveOptions +} from '../utils'; +import { WriteConcern } from '../write_concern'; + +/** @internal */ +const kServerError = Symbol('serverError'); + +/** @public */ +export const BatchType = Object.freeze({ + INSERT: 1, + UPDATE: 2, + DELETE: 3 +} as const); + +/** @public */ +export type BatchType = typeof BatchType[keyof typeof BatchType]; + +/** @public */ +export interface InsertOneModel { + /** The document to insert. */ + document: OptionalId; +} + +/** @public */ +export interface DeleteOneModel { + /** The filter to limit the deleted documents. */ + filter: Filter; + /** Specifies a collation. */ + collation?: CollationOptions; + /** The index to use. If specified, then the query system will only consider plans using the hinted index. */ + hint?: Hint; +} + +/** @public */ +export interface DeleteManyModel { + /** The filter to limit the deleted documents. */ + filter: Filter; + /** Specifies a collation. */ + collation?: CollationOptions; + /** The index to use. If specified, then the query system will only consider plans using the hinted index. */ + hint?: Hint; +} + +/** @public */ +export interface ReplaceOneModel { + /** The filter to limit the replaced document. */ + filter: Filter; + /** The document with which to replace the matched document. */ + replacement: WithoutId; + /** Specifies a collation. */ + collation?: CollationOptions; + /** The index to use. If specified, then the query system will only consider plans using the hinted index. */ + hint?: Hint; + /** When true, creates a new document if no document matches the query. */ + upsert?: boolean; +} + +/** @public */ +export interface UpdateOneModel { + /** The filter to limit the updated documents. */ + filter: Filter; + /** A document or pipeline containing update operators. */ + update: UpdateFilter | UpdateFilter[]; + /** A set of filters specifying to which array elements an update should apply. */ + arrayFilters?: Document[]; + /** Specifies a collation. */ + collation?: CollationOptions; + /** The index to use. If specified, then the query system will only consider plans using the hinted index. */ + hint?: Hint; + /** When true, creates a new document if no document matches the query. */ + upsert?: boolean; +} + +/** @public */ +export interface UpdateManyModel { + /** The filter to limit the updated documents. */ + filter: Filter; + /** A document or pipeline containing update operators. */ + update: UpdateFilter | UpdateFilter[]; + /** A set of filters specifying to which array elements an update should apply. */ + arrayFilters?: Document[]; + /** Specifies a collation. */ + collation?: CollationOptions; + /** The index to use. If specified, then the query system will only consider plans using the hinted index. */ + hint?: Hint; + /** When true, creates a new document if no document matches the query. */ + upsert?: boolean; +} + +/** @public */ +export type AnyBulkWriteOperation = + | { insertOne: InsertOneModel } + | { replaceOne: ReplaceOneModel } + | { updateOne: UpdateOneModel } + | { updateMany: UpdateManyModel } + | { deleteOne: DeleteOneModel } + | { deleteMany: DeleteManyModel }; + +/** @public */ +export interface BulkResult { + ok: number; + writeErrors: WriteError[]; + writeConcernErrors: WriteConcernError[]; + insertedIds: Document[]; + nInserted: number; + nUpserted: number; + nMatched: number; + nModified: number; + nRemoved: number; + upserted: Document[]; + opTime?: Document; +} + +/** + * Keeps the state of a unordered batch so we can rewrite the results + * correctly after command execution + * + * @public + */ +export class Batch { + originalZeroIndex: number; + currentIndex: number; + originalIndexes: number[]; + batchType: BatchType; + operations: T[]; + size: number; + sizeBytes: number; + + constructor(batchType: BatchType, originalZeroIndex: number) { + this.originalZeroIndex = originalZeroIndex; + this.currentIndex = 0; + this.originalIndexes = []; + this.batchType = batchType; + this.operations = []; + this.size = 0; + this.sizeBytes = 0; + } +} + +/** + * @public + * The result of a bulk write. + */ +export class BulkWriteResult { + result: BulkResult; + + /** + * Create a new BulkWriteResult instance + * @internal + */ + constructor(bulkResult: BulkResult) { + this.result = bulkResult; + } + + /** Number of documents inserted. */ + get insertedCount(): number { + return this.result.nInserted ?? 0; + } + /** Number of documents matched for update. */ + get matchedCount(): number { + return this.result.nMatched ?? 0; + } + /** Number of documents modified. */ + get modifiedCount(): number { + return this.result.nModified ?? 0; + } + /** Number of documents deleted. */ + get deletedCount(): number { + return this.result.nRemoved ?? 0; + } + /** Number of documents upserted. */ + get upsertedCount(): number { + return this.result.upserted.length ?? 0; + } + + /** Upserted document generated Id's, hash key is the index of the originating operation */ + get upsertedIds(): { [key: number]: any } { + const upserted: { [index: number]: any } = {}; + for (const doc of this.result.upserted ?? []) { + upserted[doc.index] = doc._id; + } + return upserted; + } + + /** Inserted document generated Id's, hash key is the index of the originating operation */ + get insertedIds(): { [key: number]: any } { + const inserted: { [index: number]: any } = {}; + for (const doc of this.result.insertedIds ?? []) { + inserted[doc.index] = doc._id; + } + return inserted; + } + + /** Evaluates to true if the bulk operation correctly executes */ + get ok(): number { + return this.result.ok; + } + + /** The number of inserted documents */ + get nInserted(): number { + return this.result.nInserted; + } + + /** Number of upserted documents */ + get nUpserted(): number { + return this.result.nUpserted; + } + + /** Number of matched documents */ + get nMatched(): number { + return this.result.nMatched; + } + + /** Number of documents updated physically on disk */ + get nModified(): number { + return this.result.nModified; + } + + /** Number of removed documents */ + get nRemoved(): number { + return this.result.nRemoved; + } + + /** Returns an array of all inserted ids */ + getInsertedIds(): Document[] { + return this.result.insertedIds; + } + + /** Returns an array of all upserted ids */ + getUpsertedIds(): Document[] { + return this.result.upserted; + } + + /** Returns the upserted id at the given index */ + getUpsertedIdAt(index: number): Document | undefined { + return this.result.upserted[index]; + } + + /** Returns raw internal result */ + getRawResponse(): Document { + return this.result; + } + + /** Returns true if the bulk operation contains a write error */ + hasWriteErrors(): boolean { + return this.result.writeErrors.length > 0; + } + + /** Returns the number of write errors off the bulk operation */ + getWriteErrorCount(): number { + return this.result.writeErrors.length; + } + + /** Returns a specific write error object */ + getWriteErrorAt(index: number): WriteError | undefined { + return index < this.result.writeErrors.length ? this.result.writeErrors[index] : undefined; + } + + /** Retrieve all write errors */ + getWriteErrors(): WriteError[] { + return this.result.writeErrors; + } + + /** Retrieve lastOp if available */ + getLastOp(): Document | undefined { + return this.result.opTime; + } + + /** Retrieve the write concern error if one exists */ + getWriteConcernError(): WriteConcernError | undefined { + if (this.result.writeConcernErrors.length === 0) { + return; + } else if (this.result.writeConcernErrors.length === 1) { + // Return the error + return this.result.writeConcernErrors[0]; + } else { + // Combine the errors + let errmsg = ''; + for (let i = 0; i < this.result.writeConcernErrors.length; i++) { + const err = this.result.writeConcernErrors[i]; + errmsg = errmsg + err.errmsg; + + // TODO: Something better + if (i === 0) errmsg = errmsg + ' and '; + } + + return new WriteConcernError({ errmsg, code: MONGODB_ERROR_CODES.WriteConcernFailed }); + } + } + + toJSON(): BulkResult { + return this.result; + } + + toString(): string { + return `BulkWriteResult(${this.toJSON()})`; + } + + isOk(): boolean { + return this.result.ok === 1; + } +} + +/** @public */ +export interface WriteConcernErrorData { + code: number; + errmsg: string; + errInfo?: Document; +} + +/** + * An error representing a failure by the server to apply the requested write concern to the bulk operation. + * @public + * @category Error + */ +export class WriteConcernError { + /** @internal */ + [kServerError]: WriteConcernErrorData; + + constructor(error: WriteConcernErrorData) { + this[kServerError] = error; + } + + /** Write concern error code. */ + get code(): number | undefined { + return this[kServerError].code; + } + + /** Write concern error message. */ + get errmsg(): string | undefined { + return this[kServerError].errmsg; + } + + /** Write concern error info. */ + get errInfo(): Document | undefined { + return this[kServerError].errInfo; + } + + /** @deprecated The `err` prop that contained a MongoServerError has been deprecated. */ + get err(): WriteConcernErrorData { + return this[kServerError]; + } + + toJSON(): WriteConcernErrorData { + return this[kServerError]; + } + + toString(): string { + return `WriteConcernError(${this.errmsg})`; + } +} + +/** @public */ +export interface BulkWriteOperationError { + index: number; + code: number; + errmsg: string; + errInfo: Document; + op: Document | UpdateStatement | DeleteStatement; +} + +/** + * An error that occurred during a BulkWrite on the server. + * @public + * @category Error + */ +export class WriteError { + err: BulkWriteOperationError; + + constructor(err: BulkWriteOperationError) { + this.err = err; + } + + /** WriteError code. */ + get code(): number { + return this.err.code; + } + + /** WriteError original bulk operation index. */ + get index(): number { + return this.err.index; + } + + /** WriteError message. */ + get errmsg(): string | undefined { + return this.err.errmsg; + } + + /** WriteError details. */ + get errInfo(): Document | undefined { + return this.err.errInfo; + } + + /** Returns the underlying operation that caused the error */ + getOperation(): Document { + return this.err.op; + } + + toJSON(): { code: number; index: number; errmsg?: string; op: Document } { + return { code: this.err.code, index: this.err.index, errmsg: this.err.errmsg, op: this.err.op }; + } + + toString(): string { + return `WriteError(${JSON.stringify(this.toJSON())})`; + } +} + +/** Converts the number to a Long or returns it. */ +function longOrConvert(value: number | Long | Timestamp): Long | Timestamp { + // TODO(NODE-2674): Preserve int64 sent from MongoDB + return typeof value === 'number' ? Long.fromNumber(value) : value; +} + +/** Merges results into shared data structure */ +export function mergeBatchResults( + batch: Batch, + bulkResult: BulkResult, + err?: AnyError, + result?: Document +): void { + // If we have an error set the result to be the err object + if (err) { + result = err; + } else if (result && result.result) { + result = result.result; + } + + if (result == null) { + return; + } + + // Do we have a top level error stop processing and return + if (result.ok === 0 && bulkResult.ok === 1) { + bulkResult.ok = 0; + + const writeError = { + index: 0, + code: result.code || 0, + errmsg: result.message, + errInfo: result.errInfo, + op: batch.operations[0] + }; + + bulkResult.writeErrors.push(new WriteError(writeError)); + return; + } else if (result.ok === 0 && bulkResult.ok === 0) { + return; + } + + // The server write command specification states that lastOp is an optional + // mongod only field that has a type of timestamp. Across various scarce specs + // where opTime is mentioned, it is an "opaque" object that can have a "ts" and + // "t" field with Timestamp and Long as their types respectively. + // The "lastOp" field of the bulk write result is never mentioned in the driver + // specifications or the bulk write spec, so we should probably just keep its + // value consistent since it seems to vary. + // See: https://github.com/mongodb/specifications/blob/master/source/driver-bulk-update.rst#results-object + if (result.opTime || result.lastOp) { + let opTime = result.lastOp || result.opTime; + + // If the opTime is a Timestamp, convert it to a consistent format to be + // able to compare easily. Converting to the object from a timestamp is + // much more straightforward than the other direction. + if (opTime._bsontype === 'Timestamp') { + opTime = { ts: opTime, t: Long.ZERO }; + } + + // If there's no lastOp, just set it. + if (!bulkResult.opTime) { + bulkResult.opTime = opTime; + } else { + // First compare the ts values and set if the opTimeTS value is greater. + const lastOpTS = longOrConvert(bulkResult.opTime.ts); + const opTimeTS = longOrConvert(opTime.ts); + if (opTimeTS.greaterThan(lastOpTS)) { + bulkResult.opTime = opTime; + } else if (opTimeTS.equals(lastOpTS)) { + // If the ts values are equal, then compare using the t values. + const lastOpT = longOrConvert(bulkResult.opTime.t); + const opTimeT = longOrConvert(opTime.t); + if (opTimeT.greaterThan(lastOpT)) { + bulkResult.opTime = opTime; + } + } + } + } + + // If we have an insert Batch type + if (isInsertBatch(batch) && result.n) { + bulkResult.nInserted = bulkResult.nInserted + result.n; + } + + // If we have an insert Batch type + if (isDeleteBatch(batch) && result.n) { + bulkResult.nRemoved = bulkResult.nRemoved + result.n; + } + + let nUpserted = 0; + + // We have an array of upserted values, we need to rewrite the indexes + if (Array.isArray(result.upserted)) { + nUpserted = result.upserted.length; + + for (let i = 0; i < result.upserted.length; i++) { + bulkResult.upserted.push({ + index: result.upserted[i].index + batch.originalZeroIndex, + _id: result.upserted[i]._id + }); + } + } else if (result.upserted) { + nUpserted = 1; + + bulkResult.upserted.push({ + index: batch.originalZeroIndex, + _id: result.upserted + }); + } + + // If we have an update Batch type + if (isUpdateBatch(batch) && result.n) { + const nModified = result.nModified; + bulkResult.nUpserted = bulkResult.nUpserted + nUpserted; + bulkResult.nMatched = bulkResult.nMatched + (result.n - nUpserted); + + if (typeof nModified === 'number') { + bulkResult.nModified = bulkResult.nModified + nModified; + } else { + bulkResult.nModified = 0; + } + } + + if (Array.isArray(result.writeErrors)) { + for (let i = 0; i < result.writeErrors.length; i++) { + const writeError = { + index: batch.originalIndexes[result.writeErrors[i].index], + code: result.writeErrors[i].code, + errmsg: result.writeErrors[i].errmsg, + errInfo: result.writeErrors[i].errInfo, + op: batch.operations[result.writeErrors[i].index] + }; + + bulkResult.writeErrors.push(new WriteError(writeError)); + } + } + + if (result.writeConcernError) { + bulkResult.writeConcernErrors.push(new WriteConcernError(result.writeConcernError)); + } +} + +function executeCommands( + bulkOperation: BulkOperationBase, + options: BulkWriteOptions, + callback: Callback +) { + if (bulkOperation.s.batches.length === 0) { + return callback(undefined, new BulkWriteResult(bulkOperation.s.bulkResult)); + } + + const batch = bulkOperation.s.batches.shift() as Batch; + + function resultHandler(err?: AnyError, result?: Document) { + // Error is a driver related error not a bulk op error, return early + if (err && 'message' in err && !(err instanceof MongoWriteConcernError)) { + return callback( + new MongoBulkWriteError(err, new BulkWriteResult(bulkOperation.s.bulkResult)) + ); + } + + if (err instanceof MongoWriteConcernError) { + return handleMongoWriteConcernError(batch, bulkOperation.s.bulkResult, err, callback); + } + + // Merge the results together + const writeResult = new BulkWriteResult(bulkOperation.s.bulkResult); + const mergeResult = mergeBatchResults(batch, bulkOperation.s.bulkResult, err, result); + if (mergeResult != null) { + return callback(undefined, writeResult); + } + + if (bulkOperation.handleWriteError(callback, writeResult)) return; + + // Execute the next command in line + executeCommands(bulkOperation, options, callback); + } + + const finalOptions = resolveOptions(bulkOperation, { + ...options, + ordered: bulkOperation.isOrdered + }); + + if (finalOptions.bypassDocumentValidation !== true) { + delete finalOptions.bypassDocumentValidation; + } + + // Set an operationIf if provided + if (bulkOperation.operationId) { + resultHandler.operationId = bulkOperation.operationId; + } + + // Is the bypassDocumentValidation options specific + if (bulkOperation.s.bypassDocumentValidation === true) { + finalOptions.bypassDocumentValidation = true; + } + + // Is the checkKeys option disabled + if (bulkOperation.s.checkKeys === false) { + finalOptions.checkKeys = false; + } + + if (finalOptions.retryWrites) { + if (isUpdateBatch(batch)) { + finalOptions.retryWrites = finalOptions.retryWrites && !batch.operations.some(op => op.multi); + } + + if (isDeleteBatch(batch)) { + finalOptions.retryWrites = + finalOptions.retryWrites && !batch.operations.some(op => op.limit === 0); + } + } + + try { + if (isInsertBatch(batch)) { + executeOperation( + bulkOperation.s.collection.s.db.s.client, + new InsertOperation(bulkOperation.s.namespace, batch.operations, finalOptions), + resultHandler + ); + } else if (isUpdateBatch(batch)) { + executeOperation( + bulkOperation.s.collection.s.db.s.client, + new UpdateOperation(bulkOperation.s.namespace, batch.operations, finalOptions), + resultHandler + ); + } else if (isDeleteBatch(batch)) { + executeOperation( + bulkOperation.s.collection.s.db.s.client, + new DeleteOperation(bulkOperation.s.namespace, batch.operations, finalOptions), + resultHandler + ); + } + } catch (err) { + // Force top level error + err.ok = 0; + // Merge top level error and return + mergeBatchResults(batch, bulkOperation.s.bulkResult, err, undefined); + callback(); + } +} + +function handleMongoWriteConcernError( + batch: Batch, + bulkResult: BulkResult, + err: MongoWriteConcernError, + callback: Callback +) { + mergeBatchResults(batch, bulkResult, undefined, err.result); + + callback( + new MongoBulkWriteError( + { + message: err.result?.writeConcernError.errmsg, + code: err.result?.writeConcernError.result + }, + new BulkWriteResult(bulkResult) + ) + ); +} + +/** + * An error indicating an unsuccessful Bulk Write + * @public + * @category Error + */ +export class MongoBulkWriteError extends MongoServerError { + result: BulkWriteResult; + writeErrors: OneOrMore = []; + err?: WriteConcernError; + + /** Creates a new MongoBulkWriteError */ + constructor( + error: + | { message: string; code: number; writeErrors?: WriteError[] } + | WriteConcernError + | AnyError, + result: BulkWriteResult + ) { + super(error); + + if (error instanceof WriteConcernError) this.err = error; + else if (!(error instanceof Error)) { + this.message = error.message; + this.code = error.code; + this.writeErrors = error.writeErrors ?? []; + } + + this.result = result; + Object.assign(this, error); + } + + override get name(): string { + return 'MongoBulkWriteError'; + } + + /** Number of documents inserted. */ + get insertedCount(): number { + return this.result.insertedCount; + } + /** Number of documents matched for update. */ + get matchedCount(): number { + return this.result.matchedCount; + } + /** Number of documents modified. */ + get modifiedCount(): number { + return this.result.modifiedCount; + } + /** Number of documents deleted. */ + get deletedCount(): number { + return this.result.deletedCount; + } + /** Number of documents upserted. */ + get upsertedCount(): number { + return this.result.upsertedCount; + } + /** Inserted document generated Id's, hash key is the index of the originating operation */ + get insertedIds(): { [key: number]: any } { + return this.result.insertedIds; + } + /** Upserted document generated Id's, hash key is the index of the originating operation */ + get upsertedIds(): { [key: number]: any } { + return this.result.upsertedIds; + } +} + +/** + * A builder object that is returned from {@link BulkOperationBase#find}. + * Is used to build a write operation that involves a query filter. + * + * @public + */ +export class FindOperators { + bulkOperation: BulkOperationBase; + + /** + * Creates a new FindOperators object. + * @internal + */ + constructor(bulkOperation: BulkOperationBase) { + this.bulkOperation = bulkOperation; + } + + /** Add a multiple update operation to the bulk operation */ + update(updateDocument: Document | Document[]): BulkOperationBase { + const currentOp = buildCurrentOp(this.bulkOperation); + return this.bulkOperation.addToOperationsList( + BatchType.UPDATE, + makeUpdateStatement(currentOp.selector, updateDocument, { + ...currentOp, + multi: true + }) + ); + } + + /** Add a single update operation to the bulk operation */ + updateOne(updateDocument: Document | Document[]): BulkOperationBase { + if (!hasAtomicOperators(updateDocument)) { + throw new MongoInvalidArgumentError('Update document requires atomic operators'); + } + + const currentOp = buildCurrentOp(this.bulkOperation); + return this.bulkOperation.addToOperationsList( + BatchType.UPDATE, + makeUpdateStatement(currentOp.selector, updateDocument, { ...currentOp, multi: false }) + ); + } + + /** Add a replace one operation to the bulk operation */ + replaceOne(replacement: Document): BulkOperationBase { + if (hasAtomicOperators(replacement)) { + throw new MongoInvalidArgumentError('Replacement document must not use atomic operators'); + } + + const currentOp = buildCurrentOp(this.bulkOperation); + return this.bulkOperation.addToOperationsList( + BatchType.UPDATE, + makeUpdateStatement(currentOp.selector, replacement, { ...currentOp, multi: false }) + ); + } + + /** Add a delete one operation to the bulk operation */ + deleteOne(): BulkOperationBase { + const currentOp = buildCurrentOp(this.bulkOperation); + return this.bulkOperation.addToOperationsList( + BatchType.DELETE, + makeDeleteStatement(currentOp.selector, { ...currentOp, limit: 1 }) + ); + } + + /** Add a delete many operation to the bulk operation */ + delete(): BulkOperationBase { + const currentOp = buildCurrentOp(this.bulkOperation); + return this.bulkOperation.addToOperationsList( + BatchType.DELETE, + makeDeleteStatement(currentOp.selector, { ...currentOp, limit: 0 }) + ); + } + + /** Upsert modifier for update bulk operation, noting that this operation is an upsert. */ + upsert(): this { + if (!this.bulkOperation.s.currentOp) { + this.bulkOperation.s.currentOp = {}; + } + + this.bulkOperation.s.currentOp.upsert = true; + return this; + } + + /** Specifies the collation for the query condition. */ + collation(collation: CollationOptions): this { + if (!this.bulkOperation.s.currentOp) { + this.bulkOperation.s.currentOp = {}; + } + + this.bulkOperation.s.currentOp.collation = collation; + return this; + } + + /** Specifies arrayFilters for UpdateOne or UpdateMany bulk operations. */ + arrayFilters(arrayFilters: Document[]): this { + if (!this.bulkOperation.s.currentOp) { + this.bulkOperation.s.currentOp = {}; + } + + this.bulkOperation.s.currentOp.arrayFilters = arrayFilters; + return this; + } + + /** Specifies hint for the bulk operation. */ + hint(hint: Hint): this { + if (!this.bulkOperation.s.currentOp) { + this.bulkOperation.s.currentOp = {}; + } + + this.bulkOperation.s.currentOp.hint = hint; + return this; + } +} + +/** @internal */ +export interface BulkOperationPrivate { + bulkResult: BulkResult; + currentBatch?: Batch; + currentIndex: number; + // ordered specific + currentBatchSize: number; + currentBatchSizeBytes: number; + // unordered specific + currentInsertBatch?: Batch; + currentUpdateBatch?: Batch; + currentRemoveBatch?: Batch; + batches: Batch[]; + // Write concern + writeConcern?: WriteConcern; + // Max batch size options + maxBsonObjectSize: number; + maxBatchSizeBytes: number; + maxWriteBatchSize: number; + maxKeySize: number; + // Namespace + namespace: MongoDBNamespace; + // Topology + topology: Topology; + // Options + options: BulkWriteOptions; + // BSON options + bsonOptions: BSONSerializeOptions; + // Document used to build a bulk operation + currentOp?: Document; + // Executed + executed: boolean; + // Collection + collection: Collection; + // Fundamental error + err?: AnyError; + // check keys + checkKeys: boolean; + bypassDocumentValidation?: boolean; +} + +/** @public */ +export interface BulkWriteOptions extends CommandOperationOptions { + /** Allow driver to bypass schema validation in MongoDB 3.2 or higher. */ + bypassDocumentValidation?: boolean; + /** If true, when an insert fails, don't execute the remaining writes. If false, continue with remaining inserts when one fails. */ + ordered?: boolean; + /** @deprecated use `ordered` instead */ + keepGoing?: boolean; + /** Force server to assign _id values instead of driver. */ + forceServerObjectId?: boolean; + /** Map of parameter names and values that can be accessed using $$var (requires MongoDB 5.0). */ + let?: Document; +} + +/** + * TODO(NODE-4063) + * BulkWrites merge complexity is implemented in executeCommands + * This provides a vehicle to treat bulkOperations like any other operation (hence "shim") + * We would like this logic to simply live inside the BulkWriteOperation class + * @internal + */ +class BulkWriteShimOperation extends AbstractOperation { + bulkOperation: BulkOperationBase; + constructor(bulkOperation: BulkOperationBase, options: BulkWriteOptions) { + super(options); + this.bulkOperation = bulkOperation; + } + + execute(server: Server, session: ClientSession | undefined, callback: Callback): void { + if (this.options.session == null) { + // An implicit session could have been created by 'executeOperation' + // So if we stick it on finalOptions here, each bulk operation + // will use this same session, it'll be passed in the same way + // an explicit session would be + this.options.session = session; + } + return executeCommands(this.bulkOperation, this.options, callback); + } +} + +/** @public */ +export abstract class BulkOperationBase { + isOrdered: boolean; + /** @internal */ + s: BulkOperationPrivate; + operationId?: number; + + /** + * Create a new OrderedBulkOperation or UnorderedBulkOperation instance + * @internal + */ + constructor(collection: Collection, options: BulkWriteOptions, isOrdered: boolean) { + // determine whether bulkOperation is ordered or unordered + this.isOrdered = isOrdered; + + const topology = getTopology(collection); + options = options == null ? {} : options; + // TODO Bring from driver information in hello + // Get the namespace for the write operations + const namespace = collection.s.namespace; + // Used to mark operation as executed + const executed = false; + + // Current item + const currentOp = undefined; + + // Set max byte size + const hello = topology.lastHello(); + + // If we have autoEncryption on, batch-splitting must be done on 2mb chunks, but single documents + // over 2mb are still allowed + const usingAutoEncryption = !!(topology.s.options && topology.s.options.autoEncrypter); + const maxBsonObjectSize = + hello && hello.maxBsonObjectSize ? hello.maxBsonObjectSize : 1024 * 1024 * 16; + const maxBatchSizeBytes = usingAutoEncryption ? 1024 * 1024 * 2 : maxBsonObjectSize; + const maxWriteBatchSize = hello && hello.maxWriteBatchSize ? hello.maxWriteBatchSize : 1000; + + // Calculates the largest possible size of an Array key, represented as a BSON string + // element. This calculation: + // 1 byte for BSON type + // # of bytes = length of (string representation of (maxWriteBatchSize - 1)) + // + 1 bytes for null terminator + const maxKeySize = (maxWriteBatchSize - 1).toString(10).length + 2; + + // Final options for retryable writes + let finalOptions = Object.assign({}, options); + finalOptions = applyRetryableWrites(finalOptions, collection.s.db); + + // Final results + const bulkResult: BulkResult = { + ok: 1, + writeErrors: [], + writeConcernErrors: [], + insertedIds: [], + nInserted: 0, + nUpserted: 0, + nMatched: 0, + nModified: 0, + nRemoved: 0, + upserted: [] + }; + + // Internal state + this.s = { + // Final result + bulkResult, + // Current batch state + currentBatch: undefined, + currentIndex: 0, + // ordered specific + currentBatchSize: 0, + currentBatchSizeBytes: 0, + // unordered specific + currentInsertBatch: undefined, + currentUpdateBatch: undefined, + currentRemoveBatch: undefined, + batches: [], + // Write concern + writeConcern: WriteConcern.fromOptions(options), + // Max batch size options + maxBsonObjectSize, + maxBatchSizeBytes, + maxWriteBatchSize, + maxKeySize, + // Namespace + namespace, + // Topology + topology, + // Options + options: finalOptions, + // BSON options + bsonOptions: resolveBSONOptions(options), + // Current operation + currentOp, + // Executed + executed, + // Collection + collection, + // Fundamental error + err: undefined, + // check keys + checkKeys: typeof options.checkKeys === 'boolean' ? options.checkKeys : false + }; + + // bypass Validation + if (options.bypassDocumentValidation === true) { + this.s.bypassDocumentValidation = true; + } + } + + /** + * Add a single insert document to the bulk operation + * + * @example + * ```ts + * const bulkOp = collection.initializeOrderedBulkOp(); + * + * // Adds three inserts to the bulkOp. + * bulkOp + * .insert({ a: 1 }) + * .insert({ b: 2 }) + * .insert({ c: 3 }); + * await bulkOp.execute(); + * ``` + */ + insert(document: Document): BulkOperationBase { + if (document._id == null && !shouldForceServerObjectId(this)) { + document._id = new ObjectId(); + } + + return this.addToOperationsList(BatchType.INSERT, document); + } + + /** + * Builds a find operation for an update/updateOne/delete/deleteOne/replaceOne. + * Returns a builder object used to complete the definition of the operation. + * + * @example + * ```ts + * const bulkOp = collection.initializeOrderedBulkOp(); + * + * // Add an updateOne to the bulkOp + * bulkOp.find({ a: 1 }).updateOne({ $set: { b: 2 } }); + * + * // Add an updateMany to the bulkOp + * bulkOp.find({ c: 3 }).update({ $set: { d: 4 } }); + * + * // Add an upsert + * bulkOp.find({ e: 5 }).upsert().updateOne({ $set: { f: 6 } }); + * + * // Add a deletion + * bulkOp.find({ g: 7 }).deleteOne(); + * + * // Add a multi deletion + * bulkOp.find({ h: 8 }).delete(); + * + * // Add a replaceOne + * bulkOp.find({ i: 9 }).replaceOne({writeConcern: { j: 10 }}); + * + * // Update using a pipeline (requires Mongodb 4.2 or higher) + * bulk.find({ k: 11, y: { $exists: true }, z: { $exists: true } }).updateOne([ + * { $set: { total: { $sum: [ '$y', '$z' ] } } } + * ]); + * + * // All of the ops will now be executed + * await bulkOp.execute(); + * ``` + */ + find(selector: Document): FindOperators { + if (!selector) { + throw new MongoInvalidArgumentError('Bulk find operation must specify a selector'); + } + + // Save a current selector + this.s.currentOp = { + selector: selector + }; + + return new FindOperators(this); + } + + /** Specifies a raw operation to perform in the bulk write. */ + raw(op: AnyBulkWriteOperation): this { + if (op == null || typeof op !== 'object') { + throw new MongoInvalidArgumentError('Operation must be an object with an operation key'); + } + if ('insertOne' in op) { + const forceServerObjectId = shouldForceServerObjectId(this); + if (op.insertOne && op.insertOne.document == null) { + // NOTE: provided for legacy support, but this is a malformed operation + if (forceServerObjectId !== true && (op.insertOne as Document)._id == null) { + (op.insertOne as Document)._id = new ObjectId(); + } + + return this.addToOperationsList(BatchType.INSERT, op.insertOne); + } + + if (forceServerObjectId !== true && op.insertOne.document._id == null) { + op.insertOne.document._id = new ObjectId(); + } + + return this.addToOperationsList(BatchType.INSERT, op.insertOne.document); + } + + if ('replaceOne' in op || 'updateOne' in op || 'updateMany' in op) { + if ('replaceOne' in op) { + if ('q' in op.replaceOne) { + throw new MongoInvalidArgumentError('Raw operations are not allowed'); + } + const updateStatement = makeUpdateStatement( + op.replaceOne.filter, + op.replaceOne.replacement, + { ...op.replaceOne, multi: false } + ); + if (hasAtomicOperators(updateStatement.u)) { + throw new MongoInvalidArgumentError('Replacement document must not use atomic operators'); + } + return this.addToOperationsList(BatchType.UPDATE, updateStatement); + } + + if ('updateOne' in op) { + if ('q' in op.updateOne) { + throw new MongoInvalidArgumentError('Raw operations are not allowed'); + } + const updateStatement = makeUpdateStatement(op.updateOne.filter, op.updateOne.update, { + ...op.updateOne, + multi: false + }); + if (!hasAtomicOperators(updateStatement.u)) { + throw new MongoInvalidArgumentError('Update document requires atomic operators'); + } + return this.addToOperationsList(BatchType.UPDATE, updateStatement); + } + + if ('updateMany' in op) { + if ('q' in op.updateMany) { + throw new MongoInvalidArgumentError('Raw operations are not allowed'); + } + const updateStatement = makeUpdateStatement(op.updateMany.filter, op.updateMany.update, { + ...op.updateMany, + multi: true + }); + if (!hasAtomicOperators(updateStatement.u)) { + throw new MongoInvalidArgumentError('Update document requires atomic operators'); + } + return this.addToOperationsList(BatchType.UPDATE, updateStatement); + } + } + + if ('deleteOne' in op) { + if ('q' in op.deleteOne) { + throw new MongoInvalidArgumentError('Raw operations are not allowed'); + } + return this.addToOperationsList( + BatchType.DELETE, + makeDeleteStatement(op.deleteOne.filter, { ...op.deleteOne, limit: 1 }) + ); + } + + if ('deleteMany' in op) { + if ('q' in op.deleteMany) { + throw new MongoInvalidArgumentError('Raw operations are not allowed'); + } + return this.addToOperationsList( + BatchType.DELETE, + makeDeleteStatement(op.deleteMany.filter, { ...op.deleteMany, limit: 0 }) + ); + } + + // otherwise an unknown operation was provided + throw new MongoInvalidArgumentError( + 'bulkWrite only supports insertOne, updateOne, updateMany, deleteOne, deleteMany' + ); + } + + get bsonOptions(): BSONSerializeOptions { + return this.s.bsonOptions; + } + + get writeConcern(): WriteConcern | undefined { + return this.s.writeConcern; + } + + get batches(): Batch[] { + const batches = [...this.s.batches]; + if (this.isOrdered) { + if (this.s.currentBatch) batches.push(this.s.currentBatch); + } else { + if (this.s.currentInsertBatch) batches.push(this.s.currentInsertBatch); + if (this.s.currentUpdateBatch) batches.push(this.s.currentUpdateBatch); + if (this.s.currentRemoveBatch) batches.push(this.s.currentRemoveBatch); + } + return batches; + } + + execute(options?: BulkWriteOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + execute(callback: Callback): void; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + execute(options: BulkWriteOptions | undefined, callback: Callback): void; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + execute( + options?: BulkWriteOptions | Callback, + callback?: Callback + ): Promise | void; + execute( + options?: BulkWriteOptions | Callback, + callback?: Callback + ): Promise | void { + if (typeof options === 'function') (callback = options), (options = {}); + options = options ?? {}; + + if (this.s.executed) { + return handleEarlyError(new MongoBatchReExecutionError(), callback); + } + + const writeConcern = WriteConcern.fromOptions(options); + if (writeConcern) { + this.s.writeConcern = writeConcern; + } + + // If we have current batch + if (this.isOrdered) { + if (this.s.currentBatch) this.s.batches.push(this.s.currentBatch); + } else { + if (this.s.currentInsertBatch) this.s.batches.push(this.s.currentInsertBatch); + if (this.s.currentUpdateBatch) this.s.batches.push(this.s.currentUpdateBatch); + if (this.s.currentRemoveBatch) this.s.batches.push(this.s.currentRemoveBatch); + } + // If we have no operations in the bulk raise an error + if (this.s.batches.length === 0) { + const emptyBatchError = new MongoInvalidArgumentError( + 'Invalid BulkOperation, Batch cannot be empty' + ); + return handleEarlyError(emptyBatchError, callback); + } + + this.s.executed = true; + const finalOptions = { ...this.s.options, ...options }; + const operation = new BulkWriteShimOperation(this, finalOptions); + + return executeOperation(this.s.collection.s.db.s.client, operation, callback); + } + + /** + * Handles the write error before executing commands + * @internal + */ + handleWriteError(callback: Callback, writeResult: BulkWriteResult): boolean { + if (this.s.bulkResult.writeErrors.length > 0) { + const msg = this.s.bulkResult.writeErrors[0].errmsg + ? this.s.bulkResult.writeErrors[0].errmsg + : 'write operation failed'; + + callback( + new MongoBulkWriteError( + { + message: msg, + code: this.s.bulkResult.writeErrors[0].code, + writeErrors: this.s.bulkResult.writeErrors + }, + writeResult + ) + ); + + return true; + } + + const writeConcernError = writeResult.getWriteConcernError(); + if (writeConcernError) { + callback(new MongoBulkWriteError(writeConcernError, writeResult)); + return true; + } + + return false; + } + + abstract addToOperationsList( + batchType: BatchType, + document: Document | UpdateStatement | DeleteStatement + ): this; +} + +Object.defineProperty(BulkOperationBase.prototype, 'length', { + enumerable: true, + get() { + return this.s.currentIndex; + } +}); + +/** helper function to assist with promiseOrCallback behavior */ +function handleEarlyError( + err?: AnyError, + callback?: Callback +): Promise | void { + if (typeof callback === 'function') { + callback(err); + return; + } + + const PromiseConstructor = PromiseProvider.get() ?? Promise; + return PromiseConstructor.reject(err); +} + +function shouldForceServerObjectId(bulkOperation: BulkOperationBase): boolean { + if (typeof bulkOperation.s.options.forceServerObjectId === 'boolean') { + return bulkOperation.s.options.forceServerObjectId; + } + + if (typeof bulkOperation.s.collection.s.db.options?.forceServerObjectId === 'boolean') { + return bulkOperation.s.collection.s.db.options?.forceServerObjectId; + } + + return false; +} + +function isInsertBatch(batch: Batch): boolean { + return batch.batchType === BatchType.INSERT; +} + +function isUpdateBatch(batch: Batch): batch is Batch { + return batch.batchType === BatchType.UPDATE; +} + +function isDeleteBatch(batch: Batch): batch is Batch { + return batch.batchType === BatchType.DELETE; +} + +function buildCurrentOp(bulkOp: BulkOperationBase): Document { + let { currentOp } = bulkOp.s; + bulkOp.s.currentOp = undefined; + if (!currentOp) currentOp = {}; + return currentOp; +} diff --git a/node_modules/mongodb/src/bulk/ordered.ts b/node_modules/mongodb/src/bulk/ordered.ts new file mode 100644 index 000000000..97ee6444d --- /dev/null +++ b/node_modules/mongodb/src/bulk/ordered.ts @@ -0,0 +1,83 @@ +import type { Document } from '../bson'; +import * as BSON from '../bson'; +import type { Collection } from '../collection'; +import { MongoInvalidArgumentError } from '../error'; +import type { DeleteStatement } from '../operations/delete'; +import type { UpdateStatement } from '../operations/update'; +import { Batch, BatchType, BulkOperationBase, BulkWriteOptions } from './common'; + +/** @public */ +export class OrderedBulkOperation extends BulkOperationBase { + /** @internal */ + constructor(collection: Collection, options: BulkWriteOptions) { + super(collection, options, true); + } + + addToOperationsList( + batchType: BatchType, + document: Document | UpdateStatement | DeleteStatement + ): this { + // Get the bsonSize + const bsonSize = BSON.calculateObjectSize(document, { + checkKeys: false, + // Since we don't know what the user selected for BSON options here, + // err on the safe side, and check the size with ignoreUndefined: false. + ignoreUndefined: false + } as any); + + // Throw error if the doc is bigger than the max BSON size + if (bsonSize >= this.s.maxBsonObjectSize) + // TODO(NODE-3483): Change this to MongoBSONError + throw new MongoInvalidArgumentError( + `Document is larger than the maximum size ${this.s.maxBsonObjectSize}` + ); + + // Create a new batch object if we don't have a current one + if (this.s.currentBatch == null) { + this.s.currentBatch = new Batch(batchType, this.s.currentIndex); + } + + const maxKeySize = this.s.maxKeySize; + + // Check if we need to create a new batch + if ( + // New batch if we exceed the max batch op size + this.s.currentBatchSize + 1 >= this.s.maxWriteBatchSize || + // New batch if we exceed the maxBatchSizeBytes. Only matters if batch already has a doc, + // since we can't sent an empty batch + (this.s.currentBatchSize > 0 && + this.s.currentBatchSizeBytes + maxKeySize + bsonSize >= this.s.maxBatchSizeBytes) || + // New batch if the new op does not have the same op type as the current batch + this.s.currentBatch.batchType !== batchType + ) { + // Save the batch to the execution stack + this.s.batches.push(this.s.currentBatch); + + // Create a new batch + this.s.currentBatch = new Batch(batchType, this.s.currentIndex); + + // Reset the current size trackers + this.s.currentBatchSize = 0; + this.s.currentBatchSizeBytes = 0; + } + + if (batchType === BatchType.INSERT) { + this.s.bulkResult.insertedIds.push({ + index: this.s.currentIndex, + _id: (document as Document)._id + }); + } + + // We have an array of documents + if (Array.isArray(document)) { + throw new MongoInvalidArgumentError('Operation passed in cannot be an Array'); + } + + this.s.currentBatch.originalIndexes.push(this.s.currentIndex); + this.s.currentBatch.operations.push(document); + this.s.currentBatchSize += 1; + this.s.currentBatchSizeBytes += maxKeySize + bsonSize; + this.s.currentIndex += 1; + return this; + } +} diff --git a/node_modules/mongodb/src/bulk/unordered.ts b/node_modules/mongodb/src/bulk/unordered.ts new file mode 100644 index 000000000..5f2e562f3 --- /dev/null +++ b/node_modules/mongodb/src/bulk/unordered.ts @@ -0,0 +1,110 @@ +import type { Document } from '../bson'; +import * as BSON from '../bson'; +import type { Collection } from '../collection'; +import { MongoInvalidArgumentError } from '../error'; +import type { DeleteStatement } from '../operations/delete'; +import type { UpdateStatement } from '../operations/update'; +import type { Callback } from '../utils'; +import { Batch, BatchType, BulkOperationBase, BulkWriteOptions, BulkWriteResult } from './common'; + +/** @public */ +export class UnorderedBulkOperation extends BulkOperationBase { + /** @internal */ + constructor(collection: Collection, options: BulkWriteOptions) { + super(collection, options, false); + } + + override handleWriteError(callback: Callback, writeResult: BulkWriteResult): boolean { + if (this.s.batches.length) { + return false; + } + + return super.handleWriteError(callback, writeResult); + } + + addToOperationsList( + batchType: BatchType, + document: Document | UpdateStatement | DeleteStatement + ): this { + // Get the bsonSize + const bsonSize = BSON.calculateObjectSize(document, { + checkKeys: false, + + // Since we don't know what the user selected for BSON options here, + // err on the safe side, and check the size with ignoreUndefined: false. + ignoreUndefined: false + } as any); + + // Throw error if the doc is bigger than the max BSON size + if (bsonSize >= this.s.maxBsonObjectSize) { + // TODO(NODE-3483): Change this to MongoBSONError + throw new MongoInvalidArgumentError( + `Document is larger than the maximum size ${this.s.maxBsonObjectSize}` + ); + } + + // Holds the current batch + this.s.currentBatch = undefined; + // Get the right type of batch + if (batchType === BatchType.INSERT) { + this.s.currentBatch = this.s.currentInsertBatch; + } else if (batchType === BatchType.UPDATE) { + this.s.currentBatch = this.s.currentUpdateBatch; + } else if (batchType === BatchType.DELETE) { + this.s.currentBatch = this.s.currentRemoveBatch; + } + + const maxKeySize = this.s.maxKeySize; + + // Create a new batch object if we don't have a current one + if (this.s.currentBatch == null) { + this.s.currentBatch = new Batch(batchType, this.s.currentIndex); + } + + // Check if we need to create a new batch + if ( + // New batch if we exceed the max batch op size + this.s.currentBatch.size + 1 >= this.s.maxWriteBatchSize || + // New batch if we exceed the maxBatchSizeBytes. Only matters if batch already has a doc, + // since we can't sent an empty batch + (this.s.currentBatch.size > 0 && + this.s.currentBatch.sizeBytes + maxKeySize + bsonSize >= this.s.maxBatchSizeBytes) || + // New batch if the new op does not have the same op type as the current batch + this.s.currentBatch.batchType !== batchType + ) { + // Save the batch to the execution stack + this.s.batches.push(this.s.currentBatch); + + // Create a new batch + this.s.currentBatch = new Batch(batchType, this.s.currentIndex); + } + + // We have an array of documents + if (Array.isArray(document)) { + throw new MongoInvalidArgumentError('Operation passed in cannot be an Array'); + } + + this.s.currentBatch.operations.push(document); + this.s.currentBatch.originalIndexes.push(this.s.currentIndex); + this.s.currentIndex = this.s.currentIndex + 1; + + // Save back the current Batch to the right type + if (batchType === BatchType.INSERT) { + this.s.currentInsertBatch = this.s.currentBatch; + this.s.bulkResult.insertedIds.push({ + index: this.s.bulkResult.insertedIds.length, + _id: (document as Document)._id + }); + } else if (batchType === BatchType.UPDATE) { + this.s.currentUpdateBatch = this.s.currentBatch; + } else if (batchType === BatchType.DELETE) { + this.s.currentRemoveBatch = this.s.currentBatch; + } + + // Update current batch size + this.s.currentBatch.size += 1; + this.s.currentBatch.sizeBytes += maxKeySize + bsonSize; + + return this; + } +} diff --git a/node_modules/mongodb/src/change_stream.ts b/node_modules/mongodb/src/change_stream.ts new file mode 100644 index 000000000..e51f9adeb --- /dev/null +++ b/node_modules/mongodb/src/change_stream.ts @@ -0,0 +1,964 @@ +import type { Readable } from 'stream'; +import { promisify } from 'util'; + +import type { Binary, Document, Timestamp } from './bson'; +import { Collection } from './collection'; +import { CHANGE, CLOSE, END, ERROR, INIT, MORE, RESPONSE, RESUME_TOKEN_CHANGED } from './constants'; +import type { AbstractCursorEvents, CursorStreamOptions } from './cursor/abstract_cursor'; +import { ChangeStreamCursor, ChangeStreamCursorOptions } from './cursor/change_stream_cursor'; +import { Db } from './db'; +import { + AnyError, + isResumableError, + MongoAPIError, + MongoChangeStreamError, + MongoRuntimeError +} from './error'; +import { MongoClient } from './mongo_client'; +import { InferIdType, TypedEventEmitter } from './mongo_types'; +import type { AggregateOptions } from './operations/aggregate'; +import type { CollationOptions, OperationParent } from './operations/command'; +import type { ReadPreference } from './read_preference'; +import type { ServerSessionId } from './sessions'; +import { Callback, filterOptions, getTopology, maybePromise, MongoDBNamespace } from './utils'; + +/** @internal */ +const kCursorStream = Symbol('cursorStream'); +/** @internal */ +const kClosed = Symbol('closed'); +/** @internal */ +const kMode = Symbol('mode'); + +const CHANGE_STREAM_OPTIONS = [ + 'resumeAfter', + 'startAfter', + 'startAtOperationTime', + 'fullDocument', + 'fullDocumentBeforeChange', + 'showExpandedEvents' +] as const; + +const CHANGE_DOMAIN_TYPES = { + COLLECTION: Symbol('Collection'), + DATABASE: Symbol('Database'), + CLUSTER: Symbol('Cluster') +}; + +const CHANGE_STREAM_EVENTS = [RESUME_TOKEN_CHANGED, END, CLOSE]; + +const NO_RESUME_TOKEN_ERROR = + 'A change stream document has been received that lacks a resume token (_id).'; +const CHANGESTREAM_CLOSED_ERROR = 'ChangeStream is closed'; + +/** + * @public + * @deprecated Please use the ChangeStreamCursorOptions type instead. + */ +export interface ResumeOptions { + startAtOperationTime?: Timestamp; + batchSize?: number; + maxAwaitTimeMS?: number; + collation?: CollationOptions; + readPreference?: ReadPreference; + resumeAfter?: ResumeToken; + startAfter?: ResumeToken; + fullDocument?: string; +} + +/** + * Represents the logical starting point for a new ChangeStream or resuming a ChangeStream on the server. + * @see https://www.mongodb.com/docs/manual/changeStreams/#std-label-change-stream-resume + * @public + */ +export type ResumeToken = unknown; + +/** + * Represents a specific point in time on a server. Can be retrieved by using `db.command()` + * @public + * @see https://docs.mongodb.com/manual/reference/method/db.runCommand/#response + */ +export type OperationTime = Timestamp; + +/** @public */ +export interface PipeOptions { + end?: boolean; +} + +/** + * Options that can be passed to a ChangeStream. Note that startAfter, resumeAfter, and startAtOperationTime are all mutually exclusive, and the server will error if more than one is specified. + * @public + */ +export interface ChangeStreamOptions extends AggregateOptions { + /** + * Allowed values: 'updateLookup', 'whenAvailable', 'required'. + * + * When set to 'updateLookup', the change notification for partial updates + * will include both a delta describing the changes to the document as well + * as a copy of the entire document that was changed from some time after + * the change occurred. + * + * When set to 'whenAvailable', configures the change stream to return the + * post-image of the modified document for replace and update change events + * if the post-image for this event is available. + * + * When set to 'required', the same behavior as 'whenAvailable' except that + * an error is raised if the post-image is not available. + */ + fullDocument?: string; + + /** + * Allowed values: 'whenAvailable', 'required', 'off'. + * + * The default is to not send a value, which is equivalent to 'off'. + * + * When set to 'whenAvailable', configures the change stream to return the + * pre-image of the modified document for replace, update, and delete change + * events if it is available. + * + * When set to 'required', the same behavior as 'whenAvailable' except that + * an error is raised if the pre-image is not available. + */ + fullDocumentBeforeChange?: string; + /** The maximum amount of time for the server to wait on new documents to satisfy a change stream query. */ + maxAwaitTimeMS?: number; + /** + * Allows you to start a changeStream after a specified event. + * @see https://docs.mongodb.com/manual/changeStreams/#resumeafter-for-change-streams + */ + resumeAfter?: ResumeToken; + /** + * Similar to resumeAfter, but will allow you to start after an invalidated event. + * @see https://docs.mongodb.com/manual/changeStreams/#startafter-for-change-streams + */ + startAfter?: ResumeToken; + /** Will start the changeStream after the specified operationTime. */ + startAtOperationTime?: OperationTime; + /** + * The number of documents to return per batch. + * @see https://docs.mongodb.com/manual/reference/command/aggregate + */ + batchSize?: number; + + /** + * When enabled, configures the change stream to include extra change events. + * + * - createIndexes + * - dropIndexes + * - modify + * - create + * - shardCollection + * - reshardCollection + * - refineCollectionShardKey + */ + showExpandedEvents?: boolean; +} + +/** @public */ +export interface ChangeStreamNameSpace { + db: string; + coll: string; +} + +/** @public */ +export interface ChangeStreamDocumentKey { + /** + * For unsharded collections this contains a single field `_id`. + * For sharded collections, this will contain all the components of the shard key + */ + documentKey: { _id: InferIdType; [shardKey: string]: any }; +} + +/** @public */ +export interface ChangeStreamDocumentCommon { + /** + * The id functions as an opaque token for use when resuming an interrupted + * change stream. + */ + _id: ResumeToken; + /** + * The timestamp from the oplog entry associated with the event. + * For events that happened as part of a multi-document transaction, the associated change stream + * notifications will have the same clusterTime value, namely the time when the transaction was committed. + * On a sharded cluster, events that occur on different shards can have the same clusterTime but be + * associated with different transactions or even not be associated with any transaction. + * To identify events for a single transaction, you can use the combination of lsid and txnNumber in the change stream event document. + */ + clusterTime?: Timestamp; + + /** + * The transaction number. + * Only present if the operation is part of a multi-document transaction. + * + * **NOTE:** txnNumber can be a Long if promoteLongs is set to false + */ + txnNumber?: number; + + /** + * The identifier for the session associated with the transaction. + * Only present if the operation is part of a multi-document transaction. + */ + lsid?: ServerSessionId; +} + +/** @public */ +export interface ChangeStreamDocumentCollectionUUID { + /** + * The UUID (Binary subtype 4) of the collection that the operation was performed on. + * + * Only present when the `showExpandedEvents` flag is enabled. + * + * **NOTE:** collectionUUID will be converted to a NodeJS Buffer if the promoteBuffers + * flag is enabled. + * + * @sinceServerVersion 6.1.0 + */ + collectionUUID: Binary; +} + +/** @public */ +export interface ChangeStreamDocumentOperationDescription { + /** + * An description of the operation. + * + * Only present when the `showExpandedEvents` flag is enabled. + * + * @sinceServerVersion 6.1.0 + */ + operationDescription?: Document; +} + +/** + * @public + * @see https://www.mongodb.com/docs/manual/reference/change-events/#insert-event + */ +export interface ChangeStreamInsertDocument + extends ChangeStreamDocumentCommon, + ChangeStreamDocumentKey, + ChangeStreamDocumentCollectionUUID { + /** Describes the type of operation represented in this change notification */ + operationType: 'insert'; + /** This key will contain the document being inserted */ + fullDocument: TSchema; + /** Namespace the insert event occured on */ + ns: ChangeStreamNameSpace; +} + +/** + * @public + * @see https://www.mongodb.com/docs/manual/reference/change-events/#update-event + */ +export interface ChangeStreamUpdateDocument + extends ChangeStreamDocumentCommon, + ChangeStreamDocumentKey, + ChangeStreamDocumentCollectionUUID { + /** Describes the type of operation represented in this change notification */ + operationType: 'update'; + /** + * This is only set if `fullDocument` is set to `'updateLookup'` + * Contains the point-in-time post-image of the modified document if the + * post-image is available and either 'required' or 'whenAvailable' was + * specified for the 'fullDocument' option when creating the change stream. + */ + fullDocument?: TSchema; + /** Contains a description of updated and removed fields in this operation */ + updateDescription: UpdateDescription; + /** Namespace the update event occured on */ + ns: ChangeStreamNameSpace; + /** + * Contains the pre-image of the modified or deleted document if the + * pre-image is available for the change event and either 'required' or + * 'whenAvailable' was specified for the 'fullDocumentBeforeChange' option + * when creating the change stream. If 'whenAvailable' was specified but the + * pre-image is unavailable, this will be explicitly set to null. + */ + fullDocumentBeforeChange?: TSchema; +} + +/** + * @public + * @see https://www.mongodb.com/docs/manual/reference/change-events/#replace-event + */ +export interface ChangeStreamReplaceDocument + extends ChangeStreamDocumentCommon, + ChangeStreamDocumentKey { + /** Describes the type of operation represented in this change notification */ + operationType: 'replace'; + /** The fullDocument of a replace event represents the document after the insert of the replacement document */ + fullDocument: TSchema; + /** Namespace the replace event occured on */ + ns: ChangeStreamNameSpace; + /** + * Contains the pre-image of the modified or deleted document if the + * pre-image is available for the change event and either 'required' or + * 'whenAvailable' was specified for the 'fullDocumentBeforeChange' option + * when creating the change stream. If 'whenAvailable' was specified but the + * pre-image is unavailable, this will be explicitly set to null. + */ + fullDocumentBeforeChange?: TSchema; +} + +/** + * @public + * @see https://www.mongodb.com/docs/manual/reference/change-events/#delete-event + */ +export interface ChangeStreamDeleteDocument + extends ChangeStreamDocumentCommon, + ChangeStreamDocumentKey, + ChangeStreamDocumentCollectionUUID { + /** Describes the type of operation represented in this change notification */ + operationType: 'delete'; + /** Namespace the delete event occured on */ + ns: ChangeStreamNameSpace; + /** + * Contains the pre-image of the modified or deleted document if the + * pre-image is available for the change event and either 'required' or + * 'whenAvailable' was specified for the 'fullDocumentBeforeChange' option + * when creating the change stream. If 'whenAvailable' was specified but the + * pre-image is unavailable, this will be explicitly set to null. + */ + fullDocumentBeforeChange?: TSchema; +} + +/** + * @public + * @see https://www.mongodb.com/docs/manual/reference/change-events/#drop-event + */ +export interface ChangeStreamDropDocument + extends ChangeStreamDocumentCommon, + ChangeStreamDocumentCollectionUUID { + /** Describes the type of operation represented in this change notification */ + operationType: 'drop'; + /** Namespace the drop event occured on */ + ns: ChangeStreamNameSpace; +} + +/** + * @public + * @see https://www.mongodb.com/docs/manual/reference/change-events/#rename-event + */ +export interface ChangeStreamRenameDocument + extends ChangeStreamDocumentCommon, + ChangeStreamDocumentCollectionUUID { + /** Describes the type of operation represented in this change notification */ + operationType: 'rename'; + /** The new name for the `ns.coll` collection */ + to: { db: string; coll: string }; + /** The "from" namespace that the rename occured on */ + ns: ChangeStreamNameSpace; +} + +/** + * @public + * @see https://www.mongodb.com/docs/manual/reference/change-events/#dropdatabase-event + */ +export interface ChangeStreamDropDatabaseDocument extends ChangeStreamDocumentCommon { + /** Describes the type of operation represented in this change notification */ + operationType: 'dropDatabase'; + /** The database dropped */ + ns: { db: string }; +} + +/** + * @public + * @see https://www.mongodb.com/docs/manual/reference/change-events/#invalidate-event + */ +export interface ChangeStreamInvalidateDocument extends ChangeStreamDocumentCommon { + /** Describes the type of operation represented in this change notification */ + operationType: 'invalidate'; +} + +/** + * Only present when the `showExpandedEvents` flag is enabled. + * @public + * @see https://www.mongodb.com/docs/manual/reference/change-events/ + */ +export interface ChangeStreamCreateIndexDocument + extends ChangeStreamDocumentCommon, + ChangeStreamDocumentCollectionUUID, + ChangeStreamDocumentOperationDescription { + /** Describes the type of operation represented in this change notification */ + operationType: 'createIndexes'; +} + +/** + * Only present when the `showExpandedEvents` flag is enabled. + * @public + * @see https://www.mongodb.com/docs/manual/reference/change-events/ + */ +export interface ChangeStreamDropIndexDocument + extends ChangeStreamDocumentCommon, + ChangeStreamDocumentCollectionUUID, + ChangeStreamDocumentOperationDescription { + /** Describes the type of operation represented in this change notification */ + operationType: 'dropIndexes'; +} + +/** + * Only present when the `showExpandedEvents` flag is enabled. + * @public + * @see https://www.mongodb.com/docs/manual/reference/change-events/ + */ +export interface ChangeStreamCollModDocument + extends ChangeStreamDocumentCommon, + ChangeStreamDocumentCollectionUUID { + /** Describes the type of operation represented in this change notification */ + operationType: 'modify'; +} + +/** + * @public + * @see https://www.mongodb.com/docs/manual/reference/change-events/ + */ +export interface ChangeStreamCreateDocument + extends ChangeStreamDocumentCommon, + ChangeStreamDocumentCollectionUUID { + /** Describes the type of operation represented in this change notification */ + operationType: 'create'; +} + +/** + * @public + * @see https://www.mongodb.com/docs/manual/reference/change-events/ + */ +export interface ChangeStreamShardCollectionDocument + extends ChangeStreamDocumentCommon, + ChangeStreamDocumentCollectionUUID, + ChangeStreamDocumentOperationDescription { + /** Describes the type of operation represented in this change notification */ + operationType: 'shardCollection'; +} + +/** + * @public + * @see https://www.mongodb.com/docs/manual/reference/change-events/ + */ +export interface ChangeStreamReshardCollectionDocument + extends ChangeStreamDocumentCommon, + ChangeStreamDocumentCollectionUUID, + ChangeStreamDocumentOperationDescription { + /** Describes the type of operation represented in this change notification */ + operationType: 'reshardCollection'; +} + +/** + * @public + * @see https://www.mongodb.com/docs/manual/reference/change-events/ + */ +export interface ChangeStreamRefineCollectionShardKeyDocument + extends ChangeStreamDocumentCommon, + ChangeStreamDocumentCollectionUUID, + ChangeStreamDocumentOperationDescription { + /** Describes the type of operation represented in this change notification */ + operationType: 'refineCollectionShardKey'; +} + +/** @public */ +export type ChangeStreamDocument = + | ChangeStreamInsertDocument + | ChangeStreamUpdateDocument + | ChangeStreamReplaceDocument + | ChangeStreamDeleteDocument + | ChangeStreamDropDocument + | ChangeStreamRenameDocument + | ChangeStreamDropDatabaseDocument + | ChangeStreamInvalidateDocument + | ChangeStreamCreateIndexDocument + | ChangeStreamCreateDocument + | ChangeStreamCollModDocument + | ChangeStreamDropIndexDocument + | ChangeStreamShardCollectionDocument + | ChangeStreamReshardCollectionDocument + | ChangeStreamRefineCollectionShardKeyDocument; + +/** @public */ +export interface UpdateDescription { + /** + * A document containing key:value pairs of names of the fields that were + * changed, and the new value for those fields. + */ + updatedFields?: Partial; + + /** + * An array of field names that were removed from the document. + */ + removedFields?: string[]; + + /** + * An array of documents which record array truncations performed with pipeline-based updates using one or more of the following stages: + * - $addFields + * - $set + * - $replaceRoot + * - $replaceWith + */ + truncatedArrays?: Array<{ + /** The name of the truncated field. */ + field: string; + /** The number of elements in the truncated array. */ + newSize: number; + }>; + + /** + * A document containing additional information about any ambiguous update paths from the update event. The document + * maps the full ambiguous update path to an array containing the actual resolved components of the path. For example, + * given a document shaped like `{ a: { '0': 0 } }`, and an update of `{ $inc: 'a.0' }`, disambiguated paths would look like + * the following: + * + * ``` + * { + * 'a.0': ['a', '0'] + * } + * ``` + * + * This field is only present when there are ambiguous paths that are updated as a part of the update event and `showExpandedEvents` + * is enabled for the change stream. + * @sinceServerVersion 6.1.0 + * @experimental + */ + disambiguatedPaths?: Document; +} + +/** @public */ +export type ChangeStreamEvents< + TSchema extends Document = Document, + TChange extends Document = ChangeStreamDocument +> = { + resumeTokenChanged(token: ResumeToken): void; + init(response: any): void; + more(response?: any): void; + response(): void; + end(): void; + error(error: Error): void; + change(change: TChange): void; +} & AbstractCursorEvents; + +/** + * Creates a new Change Stream instance. Normally created using {@link Collection#watch|Collection.watch()}. + * @public + */ +export class ChangeStream< + TSchema extends Document = Document, + TChange extends Document = ChangeStreamDocument +> extends TypedEventEmitter> { + pipeline: Document[]; + options: ChangeStreamOptions; + parent: MongoClient | Db | Collection; + namespace: MongoDBNamespace; + type: symbol; + /** @internal */ + cursor: ChangeStreamCursor; + streamOptions?: CursorStreamOptions; + /** @internal */ + [kCursorStream]?: Readable & AsyncIterable; + /** @internal */ + [kClosed]: boolean; + /** @internal */ + [kMode]: false | 'iterator' | 'emitter'; + + /** @event */ + static readonly RESPONSE = RESPONSE; + /** @event */ + static readonly MORE = MORE; + /** @event */ + static readonly INIT = INIT; + /** @event */ + static readonly CLOSE = CLOSE; + /** + * Fired for each new matching change in the specified namespace. Attaching a `change` + * event listener to a Change Stream will switch the stream into flowing mode. Data will + * then be passed as soon as it is available. + * @event + */ + static readonly CHANGE = CHANGE; + /** @event */ + static readonly END = END; + /** @event */ + static readonly ERROR = ERROR; + /** + * Emitted each time the change stream stores a new resume token. + * @event + */ + static readonly RESUME_TOKEN_CHANGED = RESUME_TOKEN_CHANGED; + + /** + * @internal + * + * @param parent - The parent object that created this change stream + * @param pipeline - An array of {@link https://docs.mongodb.com/manual/reference/operator/aggregation-pipeline/|aggregation pipeline stages} through which to pass change stream documents + */ + constructor( + parent: OperationParent, + pipeline: Document[] = [], + options: ChangeStreamOptions = {} + ) { + super(); + + this.pipeline = pipeline; + this.options = options; + + if (parent instanceof Collection) { + this.type = CHANGE_DOMAIN_TYPES.COLLECTION; + } else if (parent instanceof Db) { + this.type = CHANGE_DOMAIN_TYPES.DATABASE; + } else if (parent instanceof MongoClient) { + this.type = CHANGE_DOMAIN_TYPES.CLUSTER; + } else { + throw new MongoChangeStreamError( + 'Parent provided to ChangeStream constructor must be an instance of Collection, Db, or MongoClient' + ); + } + + this.parent = parent; + this.namespace = parent.s.namespace; + if (!this.options.readPreference && parent.readPreference) { + this.options.readPreference = parent.readPreference; + } + + // Create contained Change Stream cursor + this.cursor = this._createChangeStreamCursor(options); + + this[kClosed] = false; + this[kMode] = false; + + // Listen for any `change` listeners being added to ChangeStream + this.on('newListener', eventName => { + if (eventName === 'change' && this.cursor && this.listenerCount('change') === 0) { + this._streamEvents(this.cursor); + } + }); + + this.on('removeListener', eventName => { + if (eventName === 'change' && this.listenerCount('change') === 0 && this.cursor) { + this[kCursorStream]?.removeAllListeners('data'); + } + }); + } + + /** @internal */ + get cursorStream(): (Readable & AsyncIterable) | undefined { + return this[kCursorStream]; + } + + /** The cached resume token that is used to resume after the most recently returned change. */ + get resumeToken(): ResumeToken { + return this.cursor?.resumeToken; + } + + /** Check if there is any document still available in the Change Stream */ + hasNext(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + hasNext(callback: Callback): void; + hasNext(callback?: Callback): Promise | void { + this._setIsIterator(); + // TOOD(NODE-4319): Add eslint rule preventing accidental variable shadowing + // Shadowing is intentional here. We want to override the `callback` variable + // from the outer scope so that the inner scope doesn't accidentally call the wrong callback. + return maybePromise(callback, callback => { + (async () => { + try { + const hasNext = await this.cursor.hasNext(); + return hasNext; + } catch (error) { + try { + await this._processErrorIteratorMode(error); + const hasNext = await this.cursor.hasNext(); + return hasNext; + } catch (error) { + await this.close().catch(err => err); + throw error; + } + } + })().then( + hasNext => callback(undefined, hasNext), + error => callback(error) + ); + }); + } + + /** Get the next available document from the Change Stream. */ + next(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + next(callback: Callback): void; + next(callback?: Callback): Promise | void { + this._setIsIterator(); + // TOOD(NODE-4319): Add eslint rule preventing accidental variable shadowing + // Shadowing is intentional here. We want to override the `callback` variable + // from the outer scope so that the inner scope doesn't accidentally call the wrong callback. + return maybePromise(callback, callback => { + (async () => { + try { + const change = await this.cursor.next(); + const processedChange = this._processChange(change ?? null); + return processedChange; + } catch (error) { + try { + await this._processErrorIteratorMode(error); + const change = await this.cursor.next(); + const processedChange = this._processChange(change ?? null); + return processedChange; + } catch (error) { + await this.close().catch(err => err); + throw error; + } + } + })().then( + change => callback(undefined, change), + error => callback(error) + ); + }); + } + + /** + * Try to get the next available document from the Change Stream's cursor or `null` if an empty batch is returned + */ + tryNext(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + tryNext(callback: Callback): void; + tryNext(callback?: Callback): Promise | void { + this._setIsIterator(); + // TOOD(NODE-4319): Add eslint rule preventing accidental variable shadowing + // Shadowing is intentional here. We want to override the `callback` variable + // from the outer scope so that the inner scope doesn't accidentally call the wrong callback. + return maybePromise(callback, callback => { + (async () => { + try { + const change = await this.cursor.tryNext(); + return change ?? null; + } catch (error) { + try { + await this._processErrorIteratorMode(error); + const change = await this.cursor.tryNext(); + return change ?? null; + } catch (error) { + await this.close().catch(err => err); + throw error; + } + } + })().then( + change => callback(undefined, change), + error => callback(error) + ); + }); + } + + /** Is the cursor closed */ + get closed(): boolean { + return this[kClosed] || this.cursor.closed; + } + + /** Close the Change Stream */ + close(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + close(callback: Callback): void; + close(callback?: Callback): Promise | void { + this[kClosed] = true; + + return maybePromise(callback, cb => { + const cursor = this.cursor; + return cursor.close(err => { + this._endStream(); + return cb(err); + }); + }); + } + + /** + * Return a modified Readable stream including a possible transform method. + * + * NOTE: When using a Stream to process change stream events, the stream will + * NOT automatically resume in the case a resumable error is encountered. + * + * @throws MongoChangeStreamError if the underlying cursor or the change stream is closed + */ + stream(options?: CursorStreamOptions): Readable & AsyncIterable { + if (this.closed) { + throw new MongoChangeStreamError(CHANGESTREAM_CLOSED_ERROR); + } + + this.streamOptions = options; + return this.cursor.stream(options); + } + + /** @internal */ + private _setIsEmitter(): void { + if (this[kMode] === 'iterator') { + // TODO(NODE-3485): Replace with MongoChangeStreamModeError + throw new MongoAPIError( + 'ChangeStream cannot be used as an EventEmitter after being used as an iterator' + ); + } + this[kMode] = 'emitter'; + } + + /** @internal */ + private _setIsIterator(): void { + if (this[kMode] === 'emitter') { + // TODO(NODE-3485): Replace with MongoChangeStreamModeError + throw new MongoAPIError( + 'ChangeStream cannot be used as an iterator after being used as an EventEmitter' + ); + } + this[kMode] = 'iterator'; + } + + /** + * Create a new change stream cursor based on self's configuration + * @internal + */ + private _createChangeStreamCursor( + options: ChangeStreamOptions | ChangeStreamCursorOptions + ): ChangeStreamCursor { + const changeStreamStageOptions = filterOptions(options, CHANGE_STREAM_OPTIONS); + if (this.type === CHANGE_DOMAIN_TYPES.CLUSTER) { + changeStreamStageOptions.allChangesForCluster = true; + } + const pipeline = [{ $changeStream: changeStreamStageOptions }, ...this.pipeline]; + + const client: MongoClient | null = + this.type === CHANGE_DOMAIN_TYPES.CLUSTER + ? (this.parent as MongoClient) + : this.type === CHANGE_DOMAIN_TYPES.DATABASE + ? (this.parent as Db).s.client + : this.type === CHANGE_DOMAIN_TYPES.COLLECTION + ? (this.parent as Collection).s.db.s.client + : null; + + if (client == null) { + // This should never happen because of the assertion in the constructor + throw new MongoRuntimeError( + `Changestream type should only be one of cluster, database, collection. Found ${this.type.toString()}` + ); + } + + const changeStreamCursor = new ChangeStreamCursor( + client, + this.namespace, + pipeline, + options + ); + + for (const event of CHANGE_STREAM_EVENTS) { + changeStreamCursor.on(event, e => this.emit(event, e)); + } + + if (this.listenerCount(ChangeStream.CHANGE) > 0) { + this._streamEvents(changeStreamCursor); + } + + return changeStreamCursor; + } + + /** @internal */ + private _closeEmitterModeWithError(error: AnyError): void { + this.emit(ChangeStream.ERROR, error); + + this.close(() => { + // nothing to do + }); + } + + /** @internal */ + private _streamEvents(cursor: ChangeStreamCursor): void { + this._setIsEmitter(); + const stream = this[kCursorStream] ?? cursor.stream(); + this[kCursorStream] = stream; + stream.on('data', change => { + try { + const processedChange = this._processChange(change); + this.emit(ChangeStream.CHANGE, processedChange); + } catch (error) { + this.emit(ChangeStream.ERROR, error); + } + }); + stream.on('error', error => this._processErrorStreamMode(error)); + } + + /** @internal */ + private _endStream(): void { + const cursorStream = this[kCursorStream]; + if (cursorStream) { + ['data', 'close', 'end', 'error'].forEach(event => cursorStream.removeAllListeners(event)); + cursorStream.destroy(); + } + + this[kCursorStream] = undefined; + } + + /** @internal */ + private _processChange(change: TChange | null): TChange { + if (this[kClosed]) { + // TODO(NODE-3485): Replace with MongoChangeStreamClosedError + throw new MongoAPIError(CHANGESTREAM_CLOSED_ERROR); + } + + // a null change means the cursor has been notified, implicitly closing the change stream + if (change == null) { + // TODO(NODE-3485): Replace with MongoChangeStreamClosedError + throw new MongoRuntimeError(CHANGESTREAM_CLOSED_ERROR); + } + + if (change && !change._id) { + throw new MongoChangeStreamError(NO_RESUME_TOKEN_ERROR); + } + + // cache the resume token + this.cursor.cacheResumeToken(change._id); + + // wipe the startAtOperationTime if there was one so that there won't be a conflict + // between resumeToken and startAtOperationTime if we need to reconnect the cursor + this.options.startAtOperationTime = undefined; + + return change; + } + + /** @internal */ + private _processErrorStreamMode(changeStreamError: AnyError) { + // If the change stream has been closed explicitly, do not process error. + if (this[kClosed]) return; + + if (isResumableError(changeStreamError, this.cursor.maxWireVersion)) { + this._endStream(); + this.cursor.close().catch(() => null); + + const topology = getTopology(this.parent); + topology.selectServer(this.cursor.readPreference, {}, serverSelectionError => { + if (serverSelectionError) return this._closeEmitterModeWithError(changeStreamError); + this.cursor = this._createChangeStreamCursor(this.cursor.resumeOptions); + }); + } else { + this._closeEmitterModeWithError(changeStreamError); + } + } + + /** + * @internal + * + * TODO(NODE-4320): promisify selectServer and refactor this code to be async + * + * we promisify _processErrorIteratorModeCallback until we have a promisifed version of selectServer. + */ + // eslint-disable-next-line @typescript-eslint/unbound-method + private _processErrorIteratorMode = promisify(this._processErrorIteratorModeCallback); + + /** @internal */ + private _processErrorIteratorModeCallback(changeStreamError: AnyError, callback: Callback) { + if (this[kClosed]) { + // TODO(NODE-3485): Replace with MongoChangeStreamClosedError + return callback(new MongoAPIError(CHANGESTREAM_CLOSED_ERROR)); + } + + if (isResumableError(changeStreamError, this.cursor.maxWireVersion)) { + this.cursor.close().catch(() => null); + + const topology = getTopology(this.parent); + topology.selectServer(this.cursor.readPreference, {}, serverSelectionError => { + // if the topology can't reconnect, close the stream + if (serverSelectionError) return this.close(() => callback(changeStreamError)); + + this.cursor = this._createChangeStreamCursor(this.cursor.resumeOptions); + callback(); + }); + } else { + this.close(() => callback(changeStreamError)); + } + } +} diff --git a/node_modules/mongodb/src/cmap/auth/auth_provider.ts b/node_modules/mongodb/src/cmap/auth/auth_provider.ts new file mode 100644 index 000000000..2a38abe9b --- /dev/null +++ b/node_modules/mongodb/src/cmap/auth/auth_provider.ts @@ -0,0 +1,60 @@ +import type { Document } from '../../bson'; +import { MongoRuntimeError } from '../../error'; +import type { Callback, ClientMetadataOptions } from '../../utils'; +import type { HandshakeDocument } from '../connect'; +import type { Connection, ConnectionOptions } from '../connection'; +import type { MongoCredentials } from './mongo_credentials'; + +export type AuthContextOptions = ConnectionOptions & ClientMetadataOptions; + +/** Context used during authentication */ +export class AuthContext { + /** The connection to authenticate */ + connection: Connection; + /** The credentials to use for authentication */ + credentials?: MongoCredentials; + /** The options passed to the `connect` method */ + options: AuthContextOptions; + + /** A response from an initial auth attempt, only some mechanisms use this (e.g, SCRAM) */ + response?: Document; + /** A random nonce generated for use in an authentication conversation */ + nonce?: Buffer; + + constructor( + connection: Connection, + credentials: MongoCredentials | undefined, + options: AuthContextOptions + ) { + this.connection = connection; + this.credentials = credentials; + this.options = options; + } +} + +export class AuthProvider { + /** + * Prepare the handshake document before the initial handshake. + * + * @param handshakeDoc - The document used for the initial handshake on a connection + * @param authContext - Context for authentication flow + */ + prepare( + handshakeDoc: HandshakeDocument, + authContext: AuthContext, + callback: Callback + ): void { + callback(undefined, handshakeDoc); + } + + /** + * Authenticate + * + * @param context - A shared context for authentication flow + * @param callback - The callback to return the result from the authentication + */ + auth(context: AuthContext, callback: Callback): void { + // TODO(NODE-3483): Replace this with MongoMethodOverrideError + callback(new MongoRuntimeError('`auth` method must be overridden by subclass')); + } +} diff --git a/node_modules/mongodb/src/cmap/auth/gssapi.ts b/node_modules/mongodb/src/cmap/auth/gssapi.ts new file mode 100644 index 000000000..689d6e951 --- /dev/null +++ b/node_modules/mongodb/src/cmap/auth/gssapi.ts @@ -0,0 +1,241 @@ +import * as dns from 'dns'; + +import type { Document } from '../../bson'; +import { Kerberos, KerberosClient } from '../../deps'; +import { + MongoError, + MongoInvalidArgumentError, + MongoMissingCredentialsError, + MongoMissingDependencyError, + MongoRuntimeError +} from '../../error'; +import { Callback, ns } from '../../utils'; +import { AuthContext, AuthProvider } from './auth_provider'; + +/** @public */ +export const GSSAPICanonicalizationValue = Object.freeze({ + on: true, + off: false, + none: 'none', + forward: 'forward', + forwardAndReverse: 'forwardAndReverse' +} as const); + +/** @public */ +export type GSSAPICanonicalizationValue = + typeof GSSAPICanonicalizationValue[keyof typeof GSSAPICanonicalizationValue]; + +type MechanismProperties = { + /** @deprecated use `CANONICALIZE_HOST_NAME` instead */ + gssapiCanonicalizeHostName?: boolean; + CANONICALIZE_HOST_NAME?: GSSAPICanonicalizationValue; + SERVICE_HOST?: string; + SERVICE_NAME?: string; + SERVICE_REALM?: string; +}; + +export class GSSAPI extends AuthProvider { + override auth(authContext: AuthContext, callback: Callback): void { + const { connection, credentials } = authContext; + if (credentials == null) + return callback( + new MongoMissingCredentialsError('Credentials required for GSSAPI authentication') + ); + const { username } = credentials; + function externalCommand( + command: Document, + cb: Callback<{ payload: string; conversationId: any }> + ) { + return connection.command(ns('$external.$cmd'), command, undefined, cb); + } + makeKerberosClient(authContext, (err, client) => { + if (err) return callback(err); + if (client == null) return callback(new MongoMissingDependencyError('GSSAPI client missing')); + client.step('', (err, payload) => { + if (err) return callback(err); + + externalCommand(saslStart(payload), (err, result) => { + if (err) return callback(err); + if (result == null) return callback(); + negotiate(client, 10, result.payload, (err, payload) => { + if (err) return callback(err); + + externalCommand(saslContinue(payload, result.conversationId), (err, result) => { + if (err) return callback(err); + if (result == null) return callback(); + finalize(client, username, result.payload, (err, payload) => { + if (err) return callback(err); + + externalCommand( + { + saslContinue: 1, + conversationId: result.conversationId, + payload + }, + (err, result) => { + if (err) return callback(err); + + callback(undefined, result); + } + ); + }); + }); + }); + }); + }); + }); + } +} + +function makeKerberosClient(authContext: AuthContext, callback: Callback): void { + const { hostAddress } = authContext.options; + const { credentials } = authContext; + if (!hostAddress || typeof hostAddress.host !== 'string' || !credentials) { + return callback( + new MongoInvalidArgumentError('Connection must have host and port and credentials defined.') + ); + } + + if ('kModuleError' in Kerberos) { + return callback(Kerberos['kModuleError']); + } + const { initializeClient } = Kerberos; + + const { username, password } = credentials; + const mechanismProperties = credentials.mechanismProperties as MechanismProperties; + + const serviceName = mechanismProperties.SERVICE_NAME ?? 'mongodb'; + + performGSSAPICanonicalizeHostName( + hostAddress.host, + mechanismProperties, + (err?: Error | MongoError, host?: string) => { + if (err) return callback(err); + + const initOptions = {}; + if (password != null) { + Object.assign(initOptions, { user: username, password: password }); + } + + const spnHost = mechanismProperties.SERVICE_HOST ?? host; + let spn = `${serviceName}${process.platform === 'win32' ? '/' : '@'}${spnHost}`; + if ('SERVICE_REALM' in mechanismProperties) { + spn = `${spn}@${mechanismProperties.SERVICE_REALM}`; + } + + initializeClient(spn, initOptions, (err: string, client: KerberosClient): void => { + // TODO(NODE-3483) + if (err) return callback(new MongoRuntimeError(err)); + callback(undefined, client); + }); + } + ); +} + +function saslStart(payload?: string): Document { + return { + saslStart: 1, + mechanism: 'GSSAPI', + payload, + autoAuthorize: 1 + }; +} + +function saslContinue(payload?: string, conversationId?: number): Document { + return { + saslContinue: 1, + conversationId, + payload + }; +} + +function negotiate( + client: KerberosClient, + retries: number, + payload: string, + callback: Callback +): void { + client.step(payload, (err, response) => { + // Retries exhausted, raise error + if (err && retries === 0) return callback(err); + + // Adjust number of retries and call step again + if (err) return negotiate(client, retries - 1, payload, callback); + + // Return the payload + callback(undefined, response || ''); + }); +} + +function finalize( + client: KerberosClient, + user: string, + payload: string, + callback: Callback +): void { + // GSS Client Unwrap + client.unwrap(payload, (err, response) => { + if (err) return callback(err); + + // Wrap the response + client.wrap(response || '', { user }, (err, wrapped) => { + if (err) return callback(err); + + // Return the payload + callback(undefined, wrapped); + }); + }); +} + +export function performGSSAPICanonicalizeHostName( + host: string, + mechanismProperties: MechanismProperties, + callback: Callback +): void { + const mode = mechanismProperties.CANONICALIZE_HOST_NAME; + if (!mode || mode === GSSAPICanonicalizationValue.none) { + return callback(undefined, host); + } + + // If forward and reverse or true + if ( + mode === GSSAPICanonicalizationValue.on || + mode === GSSAPICanonicalizationValue.forwardAndReverse + ) { + // Perform the lookup of the ip address. + dns.lookup(host, (error, address) => { + // No ip found, return the error. + if (error) return callback(error); + + // Perform a reverse ptr lookup on the ip address. + dns.resolvePtr(address, (err, results) => { + // This can error as ptr records may not exist for all ips. In this case + // fallback to a cname lookup as dns.lookup() does not return the + // cname. + if (err) { + return resolveCname(host, callback); + } + // If the ptr did not error but had no results, return the host. + callback(undefined, results.length > 0 ? results[0] : host); + }); + }); + } else { + // The case for forward is just to resolve the cname as dns.lookup() + // will not return it. + resolveCname(host, callback); + } +} + +export function resolveCname(host: string, callback: Callback): void { + // Attempt to resolve the host name + dns.resolveCname(host, (err, r) => { + if (err) return callback(undefined, host); + + // Get the first resolve host id + if (r.length > 0) { + return callback(undefined, r[0]); + } + + callback(undefined, host); + }); +} diff --git a/node_modules/mongodb/src/cmap/auth/mongo_credentials.ts b/node_modules/mongodb/src/cmap/auth/mongo_credentials.ts new file mode 100644 index 000000000..2c964c311 --- /dev/null +++ b/node_modules/mongodb/src/cmap/auth/mongo_credentials.ts @@ -0,0 +1,190 @@ +// Resolves the default auth mechanism according to +import type { Document } from '../../bson'; +import { MongoAPIError, MongoMissingCredentialsError } from '../../error'; +import { emitWarningOnce } from '../../utils'; +import { GSSAPICanonicalizationValue } from './gssapi'; +import { AUTH_MECHS_AUTH_SRC_EXTERNAL, AuthMechanism } from './providers'; + +// https://github.com/mongodb/specifications/blob/master/source/auth/auth.rst +function getDefaultAuthMechanism(hello?: Document): AuthMechanism { + if (hello) { + // If hello contains saslSupportedMechs, use scram-sha-256 + // if it is available, else scram-sha-1 + if (Array.isArray(hello.saslSupportedMechs)) { + return hello.saslSupportedMechs.includes(AuthMechanism.MONGODB_SCRAM_SHA256) + ? AuthMechanism.MONGODB_SCRAM_SHA256 + : AuthMechanism.MONGODB_SCRAM_SHA1; + } + + // Fallback to legacy selection method. If wire version >= 3, use scram-sha-1 + if (hello.maxWireVersion >= 3) { + return AuthMechanism.MONGODB_SCRAM_SHA1; + } + } + + // Default for wireprotocol < 3 + return AuthMechanism.MONGODB_CR; +} + +/** @public */ +export interface AuthMechanismProperties extends Document { + SERVICE_HOST?: string; + SERVICE_NAME?: string; + SERVICE_REALM?: string; + CANONICALIZE_HOST_NAME?: GSSAPICanonicalizationValue; + AWS_SESSION_TOKEN?: string; +} + +/** @public */ +export interface MongoCredentialsOptions { + username: string; + password: string; + source: string; + db?: string; + mechanism?: AuthMechanism; + mechanismProperties: AuthMechanismProperties; +} + +/** + * A representation of the credentials used by MongoDB + * @public + */ +export class MongoCredentials { + /** The username used for authentication */ + readonly username: string; + /** The password used for authentication */ + readonly password: string; + /** The database that the user should authenticate against */ + readonly source: string; + /** The method used to authenticate */ + readonly mechanism: AuthMechanism; + /** Special properties used by some types of auth mechanisms */ + readonly mechanismProperties: AuthMechanismProperties; + + constructor(options: MongoCredentialsOptions) { + this.username = options.username; + this.password = options.password; + this.source = options.source; + if (!this.source && options.db) { + this.source = options.db; + } + this.mechanism = options.mechanism || AuthMechanism.MONGODB_DEFAULT; + this.mechanismProperties = options.mechanismProperties || {}; + + if (this.mechanism.match(/MONGODB-AWS/i)) { + if (!this.username && process.env.AWS_ACCESS_KEY_ID) { + this.username = process.env.AWS_ACCESS_KEY_ID; + } + + if (!this.password && process.env.AWS_SECRET_ACCESS_KEY) { + this.password = process.env.AWS_SECRET_ACCESS_KEY; + } + + if ( + this.mechanismProperties.AWS_SESSION_TOKEN == null && + process.env.AWS_SESSION_TOKEN != null + ) { + this.mechanismProperties = { + ...this.mechanismProperties, + AWS_SESSION_TOKEN: process.env.AWS_SESSION_TOKEN + }; + } + } + + if ('gssapiCanonicalizeHostName' in this.mechanismProperties) { + emitWarningOnce( + 'gssapiCanonicalizeHostName is deprecated. Please use CANONICALIZE_HOST_NAME instead.' + ); + this.mechanismProperties.CANONICALIZE_HOST_NAME = + this.mechanismProperties.gssapiCanonicalizeHostName; + } + + Object.freeze(this.mechanismProperties); + Object.freeze(this); + } + + /** Determines if two MongoCredentials objects are equivalent */ + equals(other: MongoCredentials): boolean { + return ( + this.mechanism === other.mechanism && + this.username === other.username && + this.password === other.password && + this.source === other.source + ); + } + + /** + * If the authentication mechanism is set to "default", resolves the authMechanism + * based on the server version and server supported sasl mechanisms. + * + * @param hello - A hello response from the server + */ + resolveAuthMechanism(hello?: Document): MongoCredentials { + // If the mechanism is not "default", then it does not need to be resolved + if (this.mechanism.match(/DEFAULT/i)) { + return new MongoCredentials({ + username: this.username, + password: this.password, + source: this.source, + mechanism: getDefaultAuthMechanism(hello), + mechanismProperties: this.mechanismProperties + }); + } + + return this; + } + + validate(): void { + if ( + (this.mechanism === AuthMechanism.MONGODB_GSSAPI || + this.mechanism === AuthMechanism.MONGODB_CR || + this.mechanism === AuthMechanism.MONGODB_PLAIN || + this.mechanism === AuthMechanism.MONGODB_SCRAM_SHA1 || + this.mechanism === AuthMechanism.MONGODB_SCRAM_SHA256) && + !this.username + ) { + throw new MongoMissingCredentialsError(`Username required for mechanism '${this.mechanism}'`); + } + + if (AUTH_MECHS_AUTH_SRC_EXTERNAL.has(this.mechanism)) { + if (this.source != null && this.source !== '$external') { + // TODO(NODE-3485): Replace this with a MongoAuthValidationError + throw new MongoAPIError( + `Invalid source '${this.source}' for mechanism '${this.mechanism}' specified.` + ); + } + } + + if (this.mechanism === AuthMechanism.MONGODB_PLAIN && this.source == null) { + // TODO(NODE-3485): Replace this with a MongoAuthValidationError + throw new MongoAPIError('PLAIN Authentication Mechanism needs an auth source'); + } + + if (this.mechanism === AuthMechanism.MONGODB_X509 && this.password != null) { + if (this.password === '') { + Reflect.set(this, 'password', undefined); + return; + } + // TODO(NODE-3485): Replace this with a MongoAuthValidationError + throw new MongoAPIError(`Password not allowed for mechanism MONGODB-X509`); + } + + const canonicalization = this.mechanismProperties.CANONICALIZE_HOST_NAME ?? false; + if (!Object.values(GSSAPICanonicalizationValue).includes(canonicalization)) { + throw new MongoAPIError(`Invalid CANONICALIZE_HOST_NAME value: ${canonicalization}`); + } + } + + static merge( + creds: MongoCredentials | undefined, + options: Partial + ): MongoCredentials { + return new MongoCredentials({ + username: options.username ?? creds?.username ?? '', + password: options.password ?? creds?.password ?? '', + mechanism: options.mechanism ?? creds?.mechanism ?? AuthMechanism.MONGODB_DEFAULT, + mechanismProperties: options.mechanismProperties ?? creds?.mechanismProperties ?? {}, + source: options.source ?? options.db ?? creds?.source ?? 'admin' + }); + } +} diff --git a/node_modules/mongodb/src/cmap/auth/mongocr.ts b/node_modules/mongodb/src/cmap/auth/mongocr.ts new file mode 100644 index 000000000..232378f0d --- /dev/null +++ b/node_modules/mongodb/src/cmap/auth/mongocr.ts @@ -0,0 +1,47 @@ +import * as crypto from 'crypto'; + +import { MongoMissingCredentialsError } from '../../error'; +import { Callback, ns } from '../../utils'; +import { AuthContext, AuthProvider } from './auth_provider'; + +export class MongoCR extends AuthProvider { + override auth(authContext: AuthContext, callback: Callback): void { + const { connection, credentials } = authContext; + if (!credentials) { + return callback(new MongoMissingCredentialsError('AuthContext must provide credentials.')); + } + const username = credentials.username; + const password = credentials.password; + const source = credentials.source; + connection.command(ns(`${source}.$cmd`), { getnonce: 1 }, undefined, (err, r) => { + let nonce = null; + let key = null; + + // Get nonce + if (err == null) { + nonce = r.nonce; + + // Use node md5 generator + let md5 = crypto.createHash('md5'); + + // Generate keys used for authentication + md5.update(`${username}:mongo:${password}`, 'utf8'); + const hash_password = md5.digest('hex'); + + // Final key + md5 = crypto.createHash('md5'); + md5.update(nonce + username + hash_password, 'utf8'); + key = md5.digest('hex'); + } + + const authenticateCommand = { + authenticate: 1, + user: username, + nonce, + key + }; + + connection.command(ns(`${source}.$cmd`), authenticateCommand, undefined, callback); + }); + } +} diff --git a/node_modules/mongodb/src/cmap/auth/mongodb_aws.ts b/node_modules/mongodb/src/cmap/auth/mongodb_aws.ts new file mode 100644 index 000000000..3136dc879 --- /dev/null +++ b/node_modules/mongodb/src/cmap/auth/mongodb_aws.ts @@ -0,0 +1,293 @@ +import * as crypto from 'crypto'; +import * as http from 'http'; +import * as url from 'url'; + +import type { Binary, BSONSerializeOptions } from '../../bson'; +import * as BSON from '../../bson'; +import { aws4 } from '../../deps'; +import { + MongoAWSError, + MongoCompatibilityError, + MongoMissingCredentialsError, + MongoRuntimeError +} from '../../error'; +import { Callback, maxWireVersion, ns } from '../../utils'; +import { AuthContext, AuthProvider } from './auth_provider'; +import { MongoCredentials } from './mongo_credentials'; +import { AuthMechanism } from './providers'; + +const ASCII_N = 110; +const AWS_RELATIVE_URI = 'http://169.254.170.2'; +const AWS_EC2_URI = 'http://169.254.169.254'; +const AWS_EC2_PATH = '/latest/meta-data/iam/security-credentials'; +const bsonOptions: BSONSerializeOptions = { + promoteLongs: true, + promoteValues: true, + promoteBuffers: false, + bsonRegExp: false +}; + +interface AWSSaslContinuePayload { + a: string; + d: string; + t?: string; +} + +export class MongoDBAWS extends AuthProvider { + override auth(authContext: AuthContext, callback: Callback): void { + const { connection, credentials } = authContext; + if (!credentials) { + return callback(new MongoMissingCredentialsError('AuthContext must provide credentials.')); + } + + if ('kModuleError' in aws4) { + return callback(aws4['kModuleError']); + } + const { sign } = aws4; + + if (maxWireVersion(connection) < 9) { + callback( + new MongoCompatibilityError( + 'MONGODB-AWS authentication requires MongoDB version 4.4 or later' + ) + ); + return; + } + + if (!credentials.username) { + makeTempCredentials(credentials, (err, tempCredentials) => { + if (err || !tempCredentials) return callback(err); + + authContext.credentials = tempCredentials; + this.auth(authContext, callback); + }); + + return; + } + + const accessKeyId = credentials.username; + const secretAccessKey = credentials.password; + const sessionToken = credentials.mechanismProperties.AWS_SESSION_TOKEN; + + // If all three defined, include sessionToken, else include username and pass, else no credentials + const awsCredentials = + accessKeyId && secretAccessKey && sessionToken + ? { accessKeyId, secretAccessKey, sessionToken } + : accessKeyId && secretAccessKey + ? { accessKeyId, secretAccessKey } + : undefined; + + const db = credentials.source; + crypto.randomBytes(32, (err, nonce) => { + if (err) { + callback(err); + return; + } + + const saslStart = { + saslStart: 1, + mechanism: 'MONGODB-AWS', + payload: BSON.serialize({ r: nonce, p: ASCII_N }, bsonOptions) + }; + + connection.command(ns(`${db}.$cmd`), saslStart, undefined, (err, res) => { + if (err) return callback(err); + + const serverResponse = BSON.deserialize(res.payload.buffer, bsonOptions) as { + s: Binary; + h: string; + }; + const host = serverResponse.h; + const serverNonce = serverResponse.s.buffer; + if (serverNonce.length !== 64) { + callback( + // TODO(NODE-3483) + new MongoRuntimeError(`Invalid server nonce length ${serverNonce.length}, expected 64`) + ); + + return; + } + + if (serverNonce.compare(nonce, 0, nonce.length, 0, nonce.length) !== 0) { + // TODO(NODE-3483) + callback(new MongoRuntimeError('Server nonce does not begin with client nonce')); + return; + } + + if (host.length < 1 || host.length > 255 || host.indexOf('..') !== -1) { + // TODO(NODE-3483) + callback(new MongoRuntimeError(`Server returned an invalid host: "${host}"`)); + return; + } + + const body = 'Action=GetCallerIdentity&Version=2011-06-15'; + const options = sign( + { + method: 'POST', + host, + region: deriveRegion(serverResponse.h), + service: 'sts', + headers: { + 'Content-Type': 'application/x-www-form-urlencoded', + 'Content-Length': body.length, + 'X-MongoDB-Server-Nonce': serverNonce.toString('base64'), + 'X-MongoDB-GS2-CB-Flag': 'n' + }, + path: '/', + body + }, + awsCredentials + ); + + const payload: AWSSaslContinuePayload = { + a: options.headers.Authorization, + d: options.headers['X-Amz-Date'] + }; + if (sessionToken) { + payload.t = sessionToken; + } + + const saslContinue = { + saslContinue: 1, + conversationId: 1, + payload: BSON.serialize(payload, bsonOptions) + }; + + connection.command(ns(`${db}.$cmd`), saslContinue, undefined, callback); + }); + }); + } +} + +interface AWSTempCredentials { + AccessKeyId?: string; + SecretAccessKey?: string; + Token?: string; + RoleArn?: string; + Expiration?: Date; +} + +function makeTempCredentials(credentials: MongoCredentials, callback: Callback) { + function done(creds: AWSTempCredentials) { + if (!creds.AccessKeyId || !creds.SecretAccessKey || !creds.Token) { + callback( + new MongoMissingCredentialsError('Could not obtain temporary MONGODB-AWS credentials') + ); + return; + } + + callback( + undefined, + new MongoCredentials({ + username: creds.AccessKeyId, + password: creds.SecretAccessKey, + source: credentials.source, + mechanism: AuthMechanism.MONGODB_AWS, + mechanismProperties: { + AWS_SESSION_TOKEN: creds.Token + } + }) + ); + } + + // If the environment variable AWS_CONTAINER_CREDENTIALS_RELATIVE_URI + // is set then drivers MUST assume that it was set by an AWS ECS agent + if (process.env.AWS_CONTAINER_CREDENTIALS_RELATIVE_URI) { + request( + `${AWS_RELATIVE_URI}${process.env.AWS_CONTAINER_CREDENTIALS_RELATIVE_URI}`, + undefined, + (err, res) => { + if (err) return callback(err); + done(res); + } + ); + + return; + } + + // Otherwise assume we are on an EC2 instance + + // get a token + request( + `${AWS_EC2_URI}/latest/api/token`, + { method: 'PUT', json: false, headers: { 'X-aws-ec2-metadata-token-ttl-seconds': 30 } }, + (err, token) => { + if (err) return callback(err); + + // get role name + request( + `${AWS_EC2_URI}/${AWS_EC2_PATH}`, + { json: false, headers: { 'X-aws-ec2-metadata-token': token } }, + (err, roleName) => { + if (err) return callback(err); + + // get temp credentials + request( + `${AWS_EC2_URI}/${AWS_EC2_PATH}/${roleName}`, + { headers: { 'X-aws-ec2-metadata-token': token } }, + (err, creds) => { + if (err) return callback(err); + done(creds); + } + ); + } + ); + } + ); +} + +function deriveRegion(host: string) { + const parts = host.split('.'); + if (parts.length === 1 || parts[1] === 'amazonaws') { + return 'us-east-1'; + } + + return parts[1]; +} + +interface RequestOptions { + json?: boolean; + method?: string; + timeout?: number; + headers?: http.OutgoingHttpHeaders; +} + +function request(uri: string, _options: RequestOptions | undefined, callback: Callback) { + const options = Object.assign( + { + method: 'GET', + timeout: 10000, + json: true + }, + url.parse(uri), + _options + ); + + const req = http.request(options, res => { + res.setEncoding('utf8'); + + let data = ''; + res.on('data', d => (data += d)); + res.on('end', () => { + if (options.json === false) { + callback(undefined, data); + return; + } + + try { + const parsed = JSON.parse(data); + callback(undefined, parsed); + } catch (err) { + // TODO(NODE-3483) + callback(new MongoRuntimeError(`Invalid JSON response: "${data}"`)); + } + }); + }); + + req.on('timeout', () => { + req.destroy(new MongoAWSError(`AWS request to ${uri} timed out after ${options.timeout} ms`)); + }); + + req.on('error', err => callback(err)); + req.end(); +} diff --git a/node_modules/mongodb/src/cmap/auth/plain.ts b/node_modules/mongodb/src/cmap/auth/plain.ts new file mode 100644 index 000000000..94b19a52b --- /dev/null +++ b/node_modules/mongodb/src/cmap/auth/plain.ts @@ -0,0 +1,25 @@ +import { Binary } from '../../bson'; +import { MongoMissingCredentialsError } from '../../error'; +import { Callback, ns } from '../../utils'; +import { AuthContext, AuthProvider } from './auth_provider'; + +export class Plain extends AuthProvider { + override auth(authContext: AuthContext, callback: Callback): void { + const { connection, credentials } = authContext; + if (!credentials) { + return callback(new MongoMissingCredentialsError('AuthContext must provide credentials.')); + } + const username = credentials.username; + const password = credentials.password; + + const payload = new Binary(Buffer.from(`\x00${username}\x00${password}`)); + const command = { + saslStart: 1, + mechanism: 'PLAIN', + payload: payload, + autoAuthorize: 1 + }; + + connection.command(ns('$external.$cmd'), command, undefined, callback); + } +} diff --git a/node_modules/mongodb/src/cmap/auth/providers.ts b/node_modules/mongodb/src/cmap/auth/providers.ts new file mode 100644 index 000000000..9c7b1f4b8 --- /dev/null +++ b/node_modules/mongodb/src/cmap/auth/providers.ts @@ -0,0 +1,21 @@ +/** @public */ +export const AuthMechanism = Object.freeze({ + MONGODB_AWS: 'MONGODB-AWS', + MONGODB_CR: 'MONGODB-CR', + MONGODB_DEFAULT: 'DEFAULT', + MONGODB_GSSAPI: 'GSSAPI', + MONGODB_PLAIN: 'PLAIN', + MONGODB_SCRAM_SHA1: 'SCRAM-SHA-1', + MONGODB_SCRAM_SHA256: 'SCRAM-SHA-256', + MONGODB_X509: 'MONGODB-X509' +} as const); + +/** @public */ +export type AuthMechanism = typeof AuthMechanism[keyof typeof AuthMechanism]; + +/** @internal */ +export const AUTH_MECHS_AUTH_SRC_EXTERNAL = new Set([ + AuthMechanism.MONGODB_GSSAPI, + AuthMechanism.MONGODB_AWS, + AuthMechanism.MONGODB_X509 +]); diff --git a/node_modules/mongodb/src/cmap/auth/scram.ts b/node_modules/mongodb/src/cmap/auth/scram.ts new file mode 100644 index 000000000..7a339151f --- /dev/null +++ b/node_modules/mongodb/src/cmap/auth/scram.ts @@ -0,0 +1,384 @@ +import * as crypto from 'crypto'; + +import { Binary, Document } from '../../bson'; +import { saslprep } from '../../deps'; +import { + AnyError, + MongoInvalidArgumentError, + MongoMissingCredentialsError, + MongoRuntimeError, + MongoServerError +} from '../../error'; +import { Callback, emitWarning, ns } from '../../utils'; +import type { HandshakeDocument } from '../connect'; +import { AuthContext, AuthProvider } from './auth_provider'; +import type { MongoCredentials } from './mongo_credentials'; +import { AuthMechanism } from './providers'; + +type CryptoMethod = 'sha1' | 'sha256'; + +class ScramSHA extends AuthProvider { + cryptoMethod: CryptoMethod; + constructor(cryptoMethod: CryptoMethod) { + super(); + this.cryptoMethod = cryptoMethod || 'sha1'; + } + + override prepare(handshakeDoc: HandshakeDocument, authContext: AuthContext, callback: Callback) { + const cryptoMethod = this.cryptoMethod; + const credentials = authContext.credentials; + if (!credentials) { + return callback(new MongoMissingCredentialsError('AuthContext must provide credentials.')); + } + if (cryptoMethod === 'sha256' && saslprep == null) { + emitWarning('Warning: no saslprep library specified. Passwords will not be sanitized'); + } + + crypto.randomBytes(24, (err, nonce) => { + if (err) { + return callback(err); + } + + // store the nonce for later use + Object.assign(authContext, { nonce }); + + const request = Object.assign({}, handshakeDoc, { + speculativeAuthenticate: Object.assign(makeFirstMessage(cryptoMethod, credentials, nonce), { + db: credentials.source + }) + }); + + callback(undefined, request); + }); + } + + override auth(authContext: AuthContext, callback: Callback) { + const response = authContext.response; + if (response && response.speculativeAuthenticate) { + continueScramConversation( + this.cryptoMethod, + response.speculativeAuthenticate, + authContext, + callback + ); + + return; + } + + executeScram(this.cryptoMethod, authContext, callback); + } +} + +function cleanUsername(username: string) { + return username.replace('=', '=3D').replace(',', '=2C'); +} + +function clientFirstMessageBare(username: string, nonce: Buffer) { + // NOTE: This is done b/c Javascript uses UTF-16, but the server is hashing in UTF-8. + // Since the username is not sasl-prep-d, we need to do this here. + return Buffer.concat([ + Buffer.from('n=', 'utf8'), + Buffer.from(username, 'utf8'), + Buffer.from(',r=', 'utf8'), + Buffer.from(nonce.toString('base64'), 'utf8') + ]); +} + +function makeFirstMessage( + cryptoMethod: CryptoMethod, + credentials: MongoCredentials, + nonce: Buffer +) { + const username = cleanUsername(credentials.username); + const mechanism = + cryptoMethod === 'sha1' ? AuthMechanism.MONGODB_SCRAM_SHA1 : AuthMechanism.MONGODB_SCRAM_SHA256; + + // NOTE: This is done b/c Javascript uses UTF-16, but the server is hashing in UTF-8. + // Since the username is not sasl-prep-d, we need to do this here. + return { + saslStart: 1, + mechanism, + payload: new Binary( + Buffer.concat([Buffer.from('n,,', 'utf8'), clientFirstMessageBare(username, nonce)]) + ), + autoAuthorize: 1, + options: { skipEmptyExchange: true } + }; +} + +function executeScram(cryptoMethod: CryptoMethod, authContext: AuthContext, callback: Callback) { + const { connection, credentials } = authContext; + if (!credentials) { + return callback(new MongoMissingCredentialsError('AuthContext must provide credentials.')); + } + if (!authContext.nonce) { + return callback( + new MongoInvalidArgumentError('AuthContext must contain a valid nonce property') + ); + } + const nonce = authContext.nonce; + const db = credentials.source; + + const saslStartCmd = makeFirstMessage(cryptoMethod, credentials, nonce); + connection.command(ns(`${db}.$cmd`), saslStartCmd, undefined, (_err, result) => { + const err = resolveError(_err, result); + if (err) { + return callback(err); + } + + continueScramConversation(cryptoMethod, result, authContext, callback); + }); +} + +function continueScramConversation( + cryptoMethod: CryptoMethod, + response: Document, + authContext: AuthContext, + callback: Callback +) { + const connection = authContext.connection; + const credentials = authContext.credentials; + if (!credentials) { + return callback(new MongoMissingCredentialsError('AuthContext must provide credentials.')); + } + if (!authContext.nonce) { + return callback(new MongoInvalidArgumentError('Unable to continue SCRAM without valid nonce')); + } + const nonce = authContext.nonce; + + const db = credentials.source; + const username = cleanUsername(credentials.username); + const password = credentials.password; + + let processedPassword; + if (cryptoMethod === 'sha256') { + processedPassword = 'kModuleError' in saslprep ? password : saslprep(password); + } else { + try { + processedPassword = passwordDigest(username, password); + } catch (e) { + return callback(e); + } + } + + const payload = Buffer.isBuffer(response.payload) + ? new Binary(response.payload) + : response.payload; + const dict = parsePayload(payload.value()); + + const iterations = parseInt(dict.i, 10); + if (iterations && iterations < 4096) { + callback( + // TODO(NODE-3483) + new MongoRuntimeError(`Server returned an invalid iteration count ${iterations}`), + false + ); + return; + } + + const salt = dict.s; + const rnonce = dict.r; + if (rnonce.startsWith('nonce')) { + // TODO(NODE-3483) + callback(new MongoRuntimeError(`Server returned an invalid nonce: ${rnonce}`), false); + return; + } + + // Set up start of proof + const withoutProof = `c=biws,r=${rnonce}`; + const saltedPassword = HI( + processedPassword, + Buffer.from(salt, 'base64'), + iterations, + cryptoMethod + ); + + const clientKey = HMAC(cryptoMethod, saltedPassword, 'Client Key'); + const serverKey = HMAC(cryptoMethod, saltedPassword, 'Server Key'); + const storedKey = H(cryptoMethod, clientKey); + const authMessage = [clientFirstMessageBare(username, nonce), payload.value(), withoutProof].join( + ',' + ); + + const clientSignature = HMAC(cryptoMethod, storedKey, authMessage); + const clientProof = `p=${xor(clientKey, clientSignature)}`; + const clientFinal = [withoutProof, clientProof].join(','); + + const serverSignature = HMAC(cryptoMethod, serverKey, authMessage); + const saslContinueCmd = { + saslContinue: 1, + conversationId: response.conversationId, + payload: new Binary(Buffer.from(clientFinal)) + }; + + connection.command(ns(`${db}.$cmd`), saslContinueCmd, undefined, (_err, r) => { + const err = resolveError(_err, r); + if (err) { + return callback(err); + } + + const parsedResponse = parsePayload(r.payload.value()); + if (!compareDigest(Buffer.from(parsedResponse.v, 'base64'), serverSignature)) { + callback(new MongoRuntimeError('Server returned an invalid signature')); + return; + } + + if (!r || r.done !== false) { + return callback(err, r); + } + + const retrySaslContinueCmd = { + saslContinue: 1, + conversationId: r.conversationId, + payload: Buffer.alloc(0) + }; + + connection.command(ns(`${db}.$cmd`), retrySaslContinueCmd, undefined, callback); + }); +} + +function parsePayload(payload: string) { + const dict: Document = {}; + const parts = payload.split(','); + for (let i = 0; i < parts.length; i++) { + const valueParts = parts[i].split('='); + dict[valueParts[0]] = valueParts[1]; + } + + return dict; +} + +function passwordDigest(username: string, password: string) { + if (typeof username !== 'string') { + throw new MongoInvalidArgumentError('Username must be a string'); + } + + if (typeof password !== 'string') { + throw new MongoInvalidArgumentError('Password must be a string'); + } + + if (password.length === 0) { + throw new MongoInvalidArgumentError('Password cannot be empty'); + } + + let md5: crypto.Hash; + try { + md5 = crypto.createHash('md5'); + } catch (err) { + if (crypto.getFips()) { + // This error is (slightly) more helpful than what comes from OpenSSL directly, e.g. + // 'Error: error:060800C8:digital envelope routines:EVP_DigestInit_ex:disabled for FIPS' + throw new Error('Auth mechanism SCRAM-SHA-1 is not supported in FIPS mode'); + } + throw err; + } + md5.update(`${username}:mongo:${password}`, 'utf8'); + return md5.digest('hex'); +} + +// XOR two buffers +function xor(a: Buffer, b: Buffer) { + if (!Buffer.isBuffer(a)) { + a = Buffer.from(a); + } + + if (!Buffer.isBuffer(b)) { + b = Buffer.from(b); + } + + const length = Math.max(a.length, b.length); + const res = []; + + for (let i = 0; i < length; i += 1) { + res.push(a[i] ^ b[i]); + } + + return Buffer.from(res).toString('base64'); +} + +function H(method: CryptoMethod, text: Buffer) { + return crypto.createHash(method).update(text).digest(); +} + +function HMAC(method: CryptoMethod, key: Buffer, text: Buffer | string) { + return crypto.createHmac(method, key).update(text).digest(); +} + +interface HICache { + [key: string]: Buffer; +} + +let _hiCache: HICache = {}; +let _hiCacheCount = 0; +function _hiCachePurge() { + _hiCache = {}; + _hiCacheCount = 0; +} + +const hiLengthMap = { + sha256: 32, + sha1: 20 +}; + +function HI(data: string, salt: Buffer, iterations: number, cryptoMethod: CryptoMethod) { + // omit the work if already generated + const key = [data, salt.toString('base64'), iterations].join('_'); + if (_hiCache[key] != null) { + return _hiCache[key]; + } + + // generate the salt + const saltedData = crypto.pbkdf2Sync( + data, + salt, + iterations, + hiLengthMap[cryptoMethod], + cryptoMethod + ); + + // cache a copy to speed up the next lookup, but prevent unbounded cache growth + if (_hiCacheCount >= 200) { + _hiCachePurge(); + } + + _hiCache[key] = saltedData; + _hiCacheCount += 1; + return saltedData; +} + +function compareDigest(lhs: Buffer, rhs: Uint8Array) { + if (lhs.length !== rhs.length) { + return false; + } + + if (typeof crypto.timingSafeEqual === 'function') { + return crypto.timingSafeEqual(lhs, rhs); + } + + let result = 0; + for (let i = 0; i < lhs.length; i++) { + result |= lhs[i] ^ rhs[i]; + } + + return result === 0; +} + +function resolveError(err?: AnyError, result?: Document) { + if (err) return err; + if (result) { + if (result.$err || result.errmsg) return new MongoServerError(result); + } + return; +} + +export class ScramSHA1 extends ScramSHA { + constructor() { + super('sha1'); + } +} + +export class ScramSHA256 extends ScramSHA { + constructor() { + super('sha256'); + } +} diff --git a/node_modules/mongodb/src/cmap/auth/x509.ts b/node_modules/mongodb/src/cmap/auth/x509.ts new file mode 100644 index 000000000..a12e6f9d8 --- /dev/null +++ b/node_modules/mongodb/src/cmap/auth/x509.ts @@ -0,0 +1,53 @@ +import type { Document } from '../../bson'; +import { MongoMissingCredentialsError } from '../../error'; +import { Callback, ns } from '../../utils'; +import type { HandshakeDocument } from '../connect'; +import { AuthContext, AuthProvider } from './auth_provider'; +import type { MongoCredentials } from './mongo_credentials'; + +export class X509 extends AuthProvider { + override prepare( + handshakeDoc: HandshakeDocument, + authContext: AuthContext, + callback: Callback + ): void { + const { credentials } = authContext; + if (!credentials) { + return callback(new MongoMissingCredentialsError('AuthContext must provide credentials.')); + } + Object.assign(handshakeDoc, { + speculativeAuthenticate: x509AuthenticateCommand(credentials) + }); + + callback(undefined, handshakeDoc); + } + + override auth(authContext: AuthContext, callback: Callback): void { + const connection = authContext.connection; + const credentials = authContext.credentials; + if (!credentials) { + return callback(new MongoMissingCredentialsError('AuthContext must provide credentials.')); + } + const response = authContext.response; + + if (response && response.speculativeAuthenticate) { + return callback(); + } + + connection.command( + ns('$external.$cmd'), + x509AuthenticateCommand(credentials), + undefined, + callback + ); + } +} + +function x509AuthenticateCommand(credentials: MongoCredentials) { + const command: Document = { authenticate: 1, mechanism: 'MONGODB-X509' }; + if (credentials.username) { + command.user = credentials.username; + } + + return command; +} diff --git a/node_modules/mongodb/src/cmap/command_monitoring_events.ts b/node_modules/mongodb/src/cmap/command_monitoring_events.ts new file mode 100644 index 000000000..40c3419a1 --- /dev/null +++ b/node_modules/mongodb/src/cmap/command_monitoring_events.ts @@ -0,0 +1,301 @@ +import type { Document, ObjectId } from '../bson'; +import { LEGACY_HELLO_COMMAND, LEGACY_HELLO_COMMAND_CAMEL_CASE } from '../constants'; +import { calculateDurationInMs, deepCopy } from '../utils'; +import { Msg, WriteProtocolMessageType } from './commands'; +import type { Connection } from './connection'; + +/** + * An event indicating the start of a given + * @public + * @category Event + */ +export class CommandStartedEvent { + commandObj?: Document; + requestId: number; + databaseName: string; + commandName: string; + command: Document; + address: string; + connectionId?: string | number; + serviceId?: ObjectId; + + /** + * Create a started event + * + * @internal + * @param pool - the pool that originated the command + * @param command - the command + */ + constructor(connection: Connection, command: WriteProtocolMessageType) { + const cmd = extractCommand(command); + const commandName = extractCommandName(cmd); + const { address, connectionId, serviceId } = extractConnectionDetails(connection); + + // TODO: remove in major revision, this is not spec behavior + if (SENSITIVE_COMMANDS.has(commandName)) { + this.commandObj = {}; + this.commandObj[commandName] = true; + } + + this.address = address; + this.connectionId = connectionId; + this.serviceId = serviceId; + this.requestId = command.requestId; + this.databaseName = databaseName(command); + this.commandName = commandName; + this.command = maybeRedact(commandName, cmd, cmd); + } + + /* @internal */ + get hasServiceId(): boolean { + return !!this.serviceId; + } +} + +/** + * An event indicating the success of a given command + * @public + * @category Event + */ +export class CommandSucceededEvent { + address: string; + connectionId?: string | number; + requestId: number; + duration: number; + commandName: string; + reply: unknown; + serviceId?: ObjectId; + + /** + * Create a succeeded event + * + * @internal + * @param pool - the pool that originated the command + * @param command - the command + * @param reply - the reply for this command from the server + * @param started - a high resolution tuple timestamp of when the command was first sent, to calculate duration + */ + constructor( + connection: Connection, + command: WriteProtocolMessageType, + reply: Document | undefined, + started: number + ) { + const cmd = extractCommand(command); + const commandName = extractCommandName(cmd); + const { address, connectionId, serviceId } = extractConnectionDetails(connection); + + this.address = address; + this.connectionId = connectionId; + this.serviceId = serviceId; + this.requestId = command.requestId; + this.commandName = commandName; + this.duration = calculateDurationInMs(started); + this.reply = maybeRedact(commandName, cmd, extractReply(command, reply)); + } + + /* @internal */ + get hasServiceId(): boolean { + return !!this.serviceId; + } +} + +/** + * An event indicating the failure of a given command + * @public + * @category Event + */ +export class CommandFailedEvent { + address: string; + connectionId?: string | number; + requestId: number; + duration: number; + commandName: string; + failure: Error; + serviceId?: ObjectId; + + /** + * Create a failure event + * + * @internal + * @param pool - the pool that originated the command + * @param command - the command + * @param error - the generated error or a server error response + * @param started - a high resolution tuple timestamp of when the command was first sent, to calculate duration + */ + constructor( + connection: Connection, + command: WriteProtocolMessageType, + error: Error | Document, + started: number + ) { + const cmd = extractCommand(command); + const commandName = extractCommandName(cmd); + const { address, connectionId, serviceId } = extractConnectionDetails(connection); + + this.address = address; + this.connectionId = connectionId; + this.serviceId = serviceId; + + this.requestId = command.requestId; + this.commandName = commandName; + this.duration = calculateDurationInMs(started); + this.failure = maybeRedact(commandName, cmd, error) as Error; + } + + /* @internal */ + get hasServiceId(): boolean { + return !!this.serviceId; + } +} + +/** Commands that we want to redact because of the sensitive nature of their contents */ +const SENSITIVE_COMMANDS = new Set([ + 'authenticate', + 'saslStart', + 'saslContinue', + 'getnonce', + 'createUser', + 'updateUser', + 'copydbgetnonce', + 'copydbsaslstart', + 'copydb' +]); + +const HELLO_COMMANDS = new Set(['hello', LEGACY_HELLO_COMMAND, LEGACY_HELLO_COMMAND_CAMEL_CASE]); + +// helper methods +const extractCommandName = (commandDoc: Document) => Object.keys(commandDoc)[0]; +const namespace = (command: WriteProtocolMessageType) => command.ns; +const databaseName = (command: WriteProtocolMessageType) => command.ns.split('.')[0]; +const collectionName = (command: WriteProtocolMessageType) => command.ns.split('.')[1]; +const maybeRedact = (commandName: string, commandDoc: Document, result: Error | Document) => + SENSITIVE_COMMANDS.has(commandName) || + (HELLO_COMMANDS.has(commandName) && commandDoc.speculativeAuthenticate) + ? {} + : result; + +const LEGACY_FIND_QUERY_MAP: { [key: string]: string } = { + $query: 'filter', + $orderby: 'sort', + $hint: 'hint', + $comment: 'comment', + $maxScan: 'maxScan', + $max: 'max', + $min: 'min', + $returnKey: 'returnKey', + $showDiskLoc: 'showRecordId', + $maxTimeMS: 'maxTimeMS', + $snapshot: 'snapshot' +}; + +const LEGACY_FIND_OPTIONS_MAP = { + numberToSkip: 'skip', + numberToReturn: 'batchSize', + returnFieldSelector: 'projection' +} as const; + +const OP_QUERY_KEYS = [ + 'tailable', + 'oplogReplay', + 'noCursorTimeout', + 'awaitData', + 'partial', + 'exhaust' +] as const; + +/** Extract the actual command from the query, possibly up-converting if it's a legacy format */ +function extractCommand(command: WriteProtocolMessageType): Document { + if (command instanceof Msg) { + return deepCopy(command.command); + } + + if (command.query?.$query) { + let result: Document; + if (command.ns === 'admin.$cmd') { + // up-convert legacy command + result = Object.assign({}, command.query.$query); + } else { + // up-convert legacy find command + result = { find: collectionName(command) }; + Object.keys(LEGACY_FIND_QUERY_MAP).forEach(key => { + if (command.query[key] != null) { + result[LEGACY_FIND_QUERY_MAP[key]] = deepCopy(command.query[key]); + } + }); + } + + Object.keys(LEGACY_FIND_OPTIONS_MAP).forEach(key => { + const legacyKey = key as keyof typeof LEGACY_FIND_OPTIONS_MAP; + if (command[legacyKey] != null) { + result[LEGACY_FIND_OPTIONS_MAP[legacyKey]] = deepCopy(command[legacyKey]); + } + }); + + OP_QUERY_KEYS.forEach(key => { + if (command[key]) { + result[key] = command[key]; + } + }); + + if (command.pre32Limit != null) { + result.limit = command.pre32Limit; + } + + if (command.query.$explain) { + return { explain: result }; + } + return result; + } + + const clonedQuery: Record = {}; + const clonedCommand: Record = {}; + if (command.query) { + for (const k in command.query) { + clonedQuery[k] = deepCopy(command.query[k]); + } + clonedCommand.query = clonedQuery; + } + + for (const k in command) { + if (k === 'query') continue; + clonedCommand[k] = deepCopy((command as unknown as Record)[k]); + } + return command.query ? clonedQuery : clonedCommand; +} + +function extractReply(command: WriteProtocolMessageType, reply?: Document) { + if (!reply) { + return reply; + } + + if (command instanceof Msg) { + return deepCopy(reply.result ? reply.result : reply); + } + + // is this a legacy find command? + if (command.query && command.query.$query != null) { + return { + ok: 1, + cursor: { + id: deepCopy(reply.cursorId), + ns: namespace(command), + firstBatch: deepCopy(reply.documents) + } + }; + } + + return deepCopy(reply.result ? reply.result : reply); +} + +function extractConnectionDetails(connection: Connection) { + let connectionId; + if ('id' in connection) { + connectionId = connection.id; + } + return { + address: connection.address, + serviceId: connection.serviceId, + connectionId + }; +} diff --git a/node_modules/mongodb/src/cmap/commands.ts b/node_modules/mongodb/src/cmap/commands.ts new file mode 100644 index 000000000..b2d93dc05 --- /dev/null +++ b/node_modules/mongodb/src/cmap/commands.ts @@ -0,0 +1,703 @@ +import type { BSONSerializeOptions, Document, Long } from '../bson'; +import * as BSON from '../bson'; +import { MongoInvalidArgumentError, MongoRuntimeError } from '../error'; +import { ReadPreference } from '../read_preference'; +import type { ClientSession } from '../sessions'; +import { databaseNamespace } from '../utils'; +import type { CommandOptions } from './connection'; +import { OP_MSG, OP_QUERY } from './wire_protocol/constants'; + +// Incrementing request id +let _requestId = 0; + +// Query flags +const OPTS_TAILABLE_CURSOR = 2; +const OPTS_SECONDARY = 4; +const OPTS_OPLOG_REPLAY = 8; +const OPTS_NO_CURSOR_TIMEOUT = 16; +const OPTS_AWAIT_DATA = 32; +const OPTS_EXHAUST = 64; +const OPTS_PARTIAL = 128; + +// Response flags +const CURSOR_NOT_FOUND = 1; +const QUERY_FAILURE = 2; +const SHARD_CONFIG_STALE = 4; +const AWAIT_CAPABLE = 8; + +/** @internal */ +export type WriteProtocolMessageType = Query | Msg; + +/** @internal */ +export interface OpQueryOptions extends CommandOptions { + socketTimeoutMS?: number; + session?: ClientSession; + documentsReturnedIn?: string; + numberToSkip?: number; + numberToReturn?: number; + returnFieldSelector?: Document; + pre32Limit?: number; + serializeFunctions?: boolean; + ignoreUndefined?: boolean; + maxBsonSize?: number; + checkKeys?: boolean; + secondaryOk?: boolean; + + requestId?: number; + moreToCome?: boolean; + exhaustAllowed?: boolean; + readPreference?: ReadPreference; +} + +/************************************************************** + * QUERY + **************************************************************/ +/** @internal */ +export class Query { + ns: string; + query: Document; + numberToSkip: number; + numberToReturn: number; + returnFieldSelector?: Document; + requestId: number; + pre32Limit?: number; + serializeFunctions: boolean; + ignoreUndefined: boolean; + maxBsonSize: number; + checkKeys: boolean; + batchSize: number; + tailable: boolean; + secondaryOk: boolean; + oplogReplay: boolean; + noCursorTimeout: boolean; + awaitData: boolean; + exhaust: boolean; + partial: boolean; + documentsReturnedIn?: string; + + constructor(ns: string, query: Document, options: OpQueryOptions) { + // Basic options needed to be passed in + // TODO(NODE-3483): Replace with MongoCommandError + if (ns == null) throw new MongoRuntimeError('Namespace must be specified for query'); + // TODO(NODE-3483): Replace with MongoCommandError + if (query == null) throw new MongoRuntimeError('A query document must be specified for query'); + + // Validate that we are not passing 0x00 in the collection name + if (ns.indexOf('\x00') !== -1) { + // TODO(NODE-3483): Use MongoNamespace static method + throw new MongoRuntimeError('Namespace cannot contain a null character'); + } + + // Basic options + this.ns = ns; + this.query = query; + + // Additional options + this.numberToSkip = options.numberToSkip || 0; + this.numberToReturn = options.numberToReturn || 0; + this.returnFieldSelector = options.returnFieldSelector || undefined; + this.requestId = Query.getRequestId(); + + // special case for pre-3.2 find commands, delete ASAP + this.pre32Limit = options.pre32Limit; + + // Serialization option + this.serializeFunctions = + typeof options.serializeFunctions === 'boolean' ? options.serializeFunctions : false; + this.ignoreUndefined = + typeof options.ignoreUndefined === 'boolean' ? options.ignoreUndefined : false; + this.maxBsonSize = options.maxBsonSize || 1024 * 1024 * 16; + this.checkKeys = typeof options.checkKeys === 'boolean' ? options.checkKeys : false; + this.batchSize = this.numberToReturn; + + // Flags + this.tailable = false; + this.secondaryOk = typeof options.secondaryOk === 'boolean' ? options.secondaryOk : false; + this.oplogReplay = false; + this.noCursorTimeout = false; + this.awaitData = false; + this.exhaust = false; + this.partial = false; + } + + /** Assign next request Id. */ + incRequestId(): void { + this.requestId = _requestId++; + } + + /** Peek next request Id. */ + nextRequestId(): number { + return _requestId + 1; + } + + /** Increment then return next request Id. */ + static getRequestId(): number { + return ++_requestId; + } + + // Uses a single allocated buffer for the process, avoiding multiple memory allocations + toBin(): Buffer[] { + const buffers = []; + let projection = null; + + // Set up the flags + let flags = 0; + if (this.tailable) { + flags |= OPTS_TAILABLE_CURSOR; + } + + if (this.secondaryOk) { + flags |= OPTS_SECONDARY; + } + + if (this.oplogReplay) { + flags |= OPTS_OPLOG_REPLAY; + } + + if (this.noCursorTimeout) { + flags |= OPTS_NO_CURSOR_TIMEOUT; + } + + if (this.awaitData) { + flags |= OPTS_AWAIT_DATA; + } + + if (this.exhaust) { + flags |= OPTS_EXHAUST; + } + + if (this.partial) { + flags |= OPTS_PARTIAL; + } + + // If batchSize is different to this.numberToReturn + if (this.batchSize !== this.numberToReturn) this.numberToReturn = this.batchSize; + + // Allocate write protocol header buffer + const header = Buffer.alloc( + 4 * 4 + // Header + 4 + // Flags + Buffer.byteLength(this.ns) + + 1 + // namespace + 4 + // numberToSkip + 4 // numberToReturn + ); + + // Add header to buffers + buffers.push(header); + + // Serialize the query + const query = BSON.serialize(this.query, { + checkKeys: this.checkKeys, + serializeFunctions: this.serializeFunctions, + ignoreUndefined: this.ignoreUndefined + }); + + // Add query document + buffers.push(query); + + if (this.returnFieldSelector && Object.keys(this.returnFieldSelector).length > 0) { + // Serialize the projection document + projection = BSON.serialize(this.returnFieldSelector, { + checkKeys: this.checkKeys, + serializeFunctions: this.serializeFunctions, + ignoreUndefined: this.ignoreUndefined + }); + // Add projection document + buffers.push(projection); + } + + // Total message size + const totalLength = header.length + query.length + (projection ? projection.length : 0); + + // Set up the index + let index = 4; + + // Write total document length + header[3] = (totalLength >> 24) & 0xff; + header[2] = (totalLength >> 16) & 0xff; + header[1] = (totalLength >> 8) & 0xff; + header[0] = totalLength & 0xff; + + // Write header information requestId + header[index + 3] = (this.requestId >> 24) & 0xff; + header[index + 2] = (this.requestId >> 16) & 0xff; + header[index + 1] = (this.requestId >> 8) & 0xff; + header[index] = this.requestId & 0xff; + index = index + 4; + + // Write header information responseTo + header[index + 3] = (0 >> 24) & 0xff; + header[index + 2] = (0 >> 16) & 0xff; + header[index + 1] = (0 >> 8) & 0xff; + header[index] = 0 & 0xff; + index = index + 4; + + // Write header information OP_QUERY + header[index + 3] = (OP_QUERY >> 24) & 0xff; + header[index + 2] = (OP_QUERY >> 16) & 0xff; + header[index + 1] = (OP_QUERY >> 8) & 0xff; + header[index] = OP_QUERY & 0xff; + index = index + 4; + + // Write header information flags + header[index + 3] = (flags >> 24) & 0xff; + header[index + 2] = (flags >> 16) & 0xff; + header[index + 1] = (flags >> 8) & 0xff; + header[index] = flags & 0xff; + index = index + 4; + + // Write collection name + index = index + header.write(this.ns, index, 'utf8') + 1; + header[index - 1] = 0; + + // Write header information flags numberToSkip + header[index + 3] = (this.numberToSkip >> 24) & 0xff; + header[index + 2] = (this.numberToSkip >> 16) & 0xff; + header[index + 1] = (this.numberToSkip >> 8) & 0xff; + header[index] = this.numberToSkip & 0xff; + index = index + 4; + + // Write header information flags numberToReturn + header[index + 3] = (this.numberToReturn >> 24) & 0xff; + header[index + 2] = (this.numberToReturn >> 16) & 0xff; + header[index + 1] = (this.numberToReturn >> 8) & 0xff; + header[index] = this.numberToReturn & 0xff; + index = index + 4; + + // Return the buffers + return buffers; + } +} + +/** @internal */ +export interface MessageHeader { + length: number; + requestId: number; + responseTo: number; + opCode: number; + fromCompressed?: boolean; +} + +/** @internal */ +export interface OpResponseOptions extends BSONSerializeOptions { + raw?: boolean; + documentsReturnedIn?: string | null; +} + +/** @internal */ +export class Response { + parsed: boolean; + raw: Buffer; + data: Buffer; + opts: OpResponseOptions; + length: number; + requestId: number; + responseTo: number; + opCode: number; + fromCompressed?: boolean; + responseFlags?: number; + cursorId?: Long; + startingFrom?: number; + numberReturned?: number; + documents: (Document | Buffer)[] = new Array(0); + cursorNotFound?: boolean; + queryFailure?: boolean; + shardConfigStale?: boolean; + awaitCapable?: boolean; + promoteLongs: boolean; + promoteValues: boolean; + promoteBuffers: boolean; + bsonRegExp?: boolean; + index?: number; + + constructor( + message: Buffer, + msgHeader: MessageHeader, + msgBody: Buffer, + opts?: OpResponseOptions + ) { + this.parsed = false; + this.raw = message; + this.data = msgBody; + this.opts = opts ?? { + promoteLongs: true, + promoteValues: true, + promoteBuffers: false, + bsonRegExp: false + }; + + // Read the message header + this.length = msgHeader.length; + this.requestId = msgHeader.requestId; + this.responseTo = msgHeader.responseTo; + this.opCode = msgHeader.opCode; + this.fromCompressed = msgHeader.fromCompressed; + + // Flag values + this.promoteLongs = typeof this.opts.promoteLongs === 'boolean' ? this.opts.promoteLongs : true; + this.promoteValues = + typeof this.opts.promoteValues === 'boolean' ? this.opts.promoteValues : true; + this.promoteBuffers = + typeof this.opts.promoteBuffers === 'boolean' ? this.opts.promoteBuffers : false; + this.bsonRegExp = typeof this.opts.bsonRegExp === 'boolean' ? this.opts.bsonRegExp : false; + } + + isParsed(): boolean { + return this.parsed; + } + + parse(options: OpResponseOptions): void { + // Don't parse again if not needed + if (this.parsed) return; + options = options ?? {}; + + // Allow the return of raw documents instead of parsing + const raw = options.raw || false; + const documentsReturnedIn = options.documentsReturnedIn || null; + const promoteLongs = options.promoteLongs ?? this.opts.promoteLongs; + const promoteValues = options.promoteValues ?? this.opts.promoteValues; + const promoteBuffers = options.promoteBuffers ?? this.opts.promoteBuffers; + const bsonRegExp = options.bsonRegExp ?? this.opts.bsonRegExp; + let bsonSize; + + // Set up the options + const _options: BSONSerializeOptions = { + promoteLongs, + promoteValues, + promoteBuffers, + bsonRegExp + }; + + // Position within OP_REPLY at which documents start + // (See https://docs.mongodb.com/manual/reference/mongodb-wire-protocol/#wire-op-reply) + this.index = 20; + + // Read the message body + this.responseFlags = this.data.readInt32LE(0); + this.cursorId = new BSON.Long(this.data.readInt32LE(4), this.data.readInt32LE(8)); + this.startingFrom = this.data.readInt32LE(12); + this.numberReturned = this.data.readInt32LE(16); + + // Preallocate document array + this.documents = new Array(this.numberReturned); + + this.cursorNotFound = (this.responseFlags & CURSOR_NOT_FOUND) !== 0; + this.queryFailure = (this.responseFlags & QUERY_FAILURE) !== 0; + this.shardConfigStale = (this.responseFlags & SHARD_CONFIG_STALE) !== 0; + this.awaitCapable = (this.responseFlags & AWAIT_CAPABLE) !== 0; + + // Parse Body + for (let i = 0; i < this.numberReturned; i++) { + bsonSize = + this.data[this.index] | + (this.data[this.index + 1] << 8) | + (this.data[this.index + 2] << 16) | + (this.data[this.index + 3] << 24); + + // If we have raw results specified slice the return document + if (raw) { + this.documents[i] = this.data.slice(this.index, this.index + bsonSize); + } else { + this.documents[i] = BSON.deserialize( + this.data.slice(this.index, this.index + bsonSize), + _options + ); + } + + // Adjust the index + this.index = this.index + bsonSize; + } + + if (this.documents.length === 1 && documentsReturnedIn != null && raw) { + const fieldsAsRaw: Document = {}; + fieldsAsRaw[documentsReturnedIn] = true; + _options.fieldsAsRaw = fieldsAsRaw; + + const doc = BSON.deserialize(this.documents[0] as Buffer, _options); + this.documents = [doc]; + } + + // Set parsed + this.parsed = true; + } +} + +// Implementation of OP_MSG spec: +// https://github.com/mongodb/specifications/blob/master/source/message/OP_MSG.rst +// +// struct Section { +// uint8 payloadType; +// union payload { +// document document; // payloadType == 0 +// struct sequence { // payloadType == 1 +// int32 size; +// cstring identifier; +// document* documents; +// }; +// }; +// }; + +// struct OP_MSG { +// struct MsgHeader { +// int32 messageLength; +// int32 requestID; +// int32 responseTo; +// int32 opCode = 2013; +// }; +// uint32 flagBits; +// Section+ sections; +// [uint32 checksum;] +// }; + +// Msg Flags +const OPTS_CHECKSUM_PRESENT = 1; +const OPTS_MORE_TO_COME = 2; +const OPTS_EXHAUST_ALLOWED = 1 << 16; + +/** @internal */ +export interface OpMsgOptions { + requestId: number; + serializeFunctions: boolean; + ignoreUndefined: boolean; + checkKeys: boolean; + maxBsonSize: number; + moreToCome: boolean; + exhaustAllowed: boolean; + readPreference: ReadPreference; +} + +/** @internal */ +export class Msg { + ns: string; + command: Document; + options: OpQueryOptions; + requestId: number; + serializeFunctions: boolean; + ignoreUndefined: boolean; + checkKeys: boolean; + maxBsonSize: number; + checksumPresent: boolean; + moreToCome: boolean; + exhaustAllowed: boolean; + + constructor(ns: string, command: Document, options: OpQueryOptions) { + // Basic options needed to be passed in + if (command == null) + throw new MongoInvalidArgumentError('Query document must be specified for query'); + + // Basic options + this.ns = ns; + this.command = command; + this.command.$db = databaseNamespace(ns); + + if (options.readPreference && options.readPreference.mode !== ReadPreference.PRIMARY) { + this.command.$readPreference = options.readPreference.toJSON(); + } + + // Ensure empty options + this.options = options ?? {}; + + // Additional options + this.requestId = options.requestId ? options.requestId : Msg.getRequestId(); + + // Serialization option + this.serializeFunctions = + typeof options.serializeFunctions === 'boolean' ? options.serializeFunctions : false; + this.ignoreUndefined = + typeof options.ignoreUndefined === 'boolean' ? options.ignoreUndefined : false; + this.checkKeys = typeof options.checkKeys === 'boolean' ? options.checkKeys : false; + this.maxBsonSize = options.maxBsonSize || 1024 * 1024 * 16; + + // flags + this.checksumPresent = false; + this.moreToCome = options.moreToCome || false; + this.exhaustAllowed = + typeof options.exhaustAllowed === 'boolean' ? options.exhaustAllowed : false; + } + + toBin(): Buffer[] { + const buffers: Buffer[] = []; + let flags = 0; + + if (this.checksumPresent) { + flags |= OPTS_CHECKSUM_PRESENT; + } + + if (this.moreToCome) { + flags |= OPTS_MORE_TO_COME; + } + + if (this.exhaustAllowed) { + flags |= OPTS_EXHAUST_ALLOWED; + } + + const header = Buffer.alloc( + 4 * 4 + // Header + 4 // Flags + ); + + buffers.push(header); + + let totalLength = header.length; + const command = this.command; + totalLength += this.makeDocumentSegment(buffers, command); + + header.writeInt32LE(totalLength, 0); // messageLength + header.writeInt32LE(this.requestId, 4); // requestID + header.writeInt32LE(0, 8); // responseTo + header.writeInt32LE(OP_MSG, 12); // opCode + header.writeUInt32LE(flags, 16); // flags + return buffers; + } + + makeDocumentSegment(buffers: Buffer[], document: Document): number { + const payloadTypeBuffer = Buffer.alloc(1); + payloadTypeBuffer[0] = 0; + + const documentBuffer = this.serializeBson(document); + buffers.push(payloadTypeBuffer); + buffers.push(documentBuffer); + + return payloadTypeBuffer.length + documentBuffer.length; + } + + serializeBson(document: Document): Buffer { + return BSON.serialize(document, { + checkKeys: this.checkKeys, + serializeFunctions: this.serializeFunctions, + ignoreUndefined: this.ignoreUndefined + }); + } + + static getRequestId(): number { + _requestId = (_requestId + 1) & 0x7fffffff; + return _requestId; + } +} + +/** @internal */ +export class BinMsg { + parsed: boolean; + raw: Buffer; + data: Buffer; + opts: OpResponseOptions; + length: number; + requestId: number; + responseTo: number; + opCode: number; + fromCompressed?: boolean; + responseFlags: number; + checksumPresent: boolean; + moreToCome: boolean; + exhaustAllowed: boolean; + promoteLongs: boolean; + promoteValues: boolean; + promoteBuffers: boolean; + bsonRegExp: boolean; + documents: (Document | Buffer)[]; + index?: number; + + constructor( + message: Buffer, + msgHeader: MessageHeader, + msgBody: Buffer, + opts?: OpResponseOptions + ) { + this.parsed = false; + this.raw = message; + this.data = msgBody; + this.opts = opts ?? { + promoteLongs: true, + promoteValues: true, + promoteBuffers: false, + bsonRegExp: false + }; + + // Read the message header + this.length = msgHeader.length; + this.requestId = msgHeader.requestId; + this.responseTo = msgHeader.responseTo; + this.opCode = msgHeader.opCode; + this.fromCompressed = msgHeader.fromCompressed; + + // Read response flags + this.responseFlags = msgBody.readInt32LE(0); + this.checksumPresent = (this.responseFlags & OPTS_CHECKSUM_PRESENT) !== 0; + this.moreToCome = (this.responseFlags & OPTS_MORE_TO_COME) !== 0; + this.exhaustAllowed = (this.responseFlags & OPTS_EXHAUST_ALLOWED) !== 0; + this.promoteLongs = typeof this.opts.promoteLongs === 'boolean' ? this.opts.promoteLongs : true; + this.promoteValues = + typeof this.opts.promoteValues === 'boolean' ? this.opts.promoteValues : true; + this.promoteBuffers = + typeof this.opts.promoteBuffers === 'boolean' ? this.opts.promoteBuffers : false; + this.bsonRegExp = typeof this.opts.bsonRegExp === 'boolean' ? this.opts.bsonRegExp : false; + + this.documents = []; + } + + isParsed(): boolean { + return this.parsed; + } + + parse(options: OpResponseOptions): void { + // Don't parse again if not needed + if (this.parsed) return; + options = options ?? {}; + + this.index = 4; + // Allow the return of raw documents instead of parsing + const raw = options.raw || false; + const documentsReturnedIn = options.documentsReturnedIn || null; + const promoteLongs = options.promoteLongs ?? this.opts.promoteLongs; + const promoteValues = options.promoteValues ?? this.opts.promoteValues; + const promoteBuffers = options.promoteBuffers ?? this.opts.promoteBuffers; + const bsonRegExp = options.bsonRegExp ?? this.opts.bsonRegExp; + const validation = this.parseBsonSerializationOptions(options); + + // Set up the options + const bsonOptions: BSONSerializeOptions = { + promoteLongs, + promoteValues, + promoteBuffers, + bsonRegExp, + validation + // Due to the strictness of the BSON libraries validation option we need this cast + } as BSONSerializeOptions & { validation: { utf8: { writeErrors: boolean } } }; + + while (this.index < this.data.length) { + const payloadType = this.data.readUInt8(this.index++); + if (payloadType === 0) { + const bsonSize = this.data.readUInt32LE(this.index); + const bin = this.data.slice(this.index, this.index + bsonSize); + this.documents.push(raw ? bin : BSON.deserialize(bin, bsonOptions)); + this.index += bsonSize; + } else if (payloadType === 1) { + // It was decided that no driver makes use of payload type 1 + + // TODO(NODE-3483): Replace with MongoDeprecationError + throw new MongoRuntimeError('OP_MSG Payload Type 1 detected unsupported protocol'); + } + } + + if (this.documents.length === 1 && documentsReturnedIn != null && raw) { + const fieldsAsRaw: Document = {}; + fieldsAsRaw[documentsReturnedIn] = true; + bsonOptions.fieldsAsRaw = fieldsAsRaw; + const doc = BSON.deserialize(this.documents[0] as Buffer, bsonOptions); + this.documents = [doc]; + } + + this.parsed = true; + } + + parseBsonSerializationOptions({ enableUtf8Validation }: BSONSerializeOptions): { + utf8: { writeErrors: false } | false; + } { + if (enableUtf8Validation === false) { + return { utf8: false }; + } + + return { utf8: { writeErrors: false } }; + } +} diff --git a/node_modules/mongodb/src/cmap/connect.ts b/node_modules/mongodb/src/cmap/connect.ts new file mode 100644 index 000000000..fedf73113 --- /dev/null +++ b/node_modules/mongodb/src/cmap/connect.ts @@ -0,0 +1,523 @@ +import type { Socket, SocketConnectOpts } from 'net'; +import * as net from 'net'; +import { SocksClient } from 'socks'; +import type { ConnectionOptions as TLSConnectionOpts, TLSSocket } from 'tls'; +import * as tls from 'tls'; + +import type { Document } from '../bson'; +import { Int32 } from '../bson'; +import { LEGACY_HELLO_COMMAND } from '../constants'; +import { + MongoCompatibilityError, + MongoError, + MongoErrorLabel, + MongoInvalidArgumentError, + MongoNetworkError, + MongoNetworkTimeoutError, + MongoRuntimeError, + MongoServerError, + needsRetryableWriteLabel +} from '../error'; +import { Callback, ClientMetadata, HostAddress, makeClientMetadata, ns } from '../utils'; +import { AuthContext, AuthProvider } from './auth/auth_provider'; +import { GSSAPI } from './auth/gssapi'; +import { MongoCR } from './auth/mongocr'; +import { MongoDBAWS } from './auth/mongodb_aws'; +import { Plain } from './auth/plain'; +import { AuthMechanism } from './auth/providers'; +import { ScramSHA1, ScramSHA256 } from './auth/scram'; +import { X509 } from './auth/x509'; +import { Connection, ConnectionOptions, CryptoConnection } from './connection'; +import { + MAX_SUPPORTED_SERVER_VERSION, + MAX_SUPPORTED_WIRE_VERSION, + MIN_SUPPORTED_SERVER_VERSION, + MIN_SUPPORTED_WIRE_VERSION +} from './wire_protocol/constants'; + +const AUTH_PROVIDERS = new Map([ + [AuthMechanism.MONGODB_AWS, new MongoDBAWS()], + [AuthMechanism.MONGODB_CR, new MongoCR()], + [AuthMechanism.MONGODB_GSSAPI, new GSSAPI()], + [AuthMechanism.MONGODB_PLAIN, new Plain()], + [AuthMechanism.MONGODB_SCRAM_SHA1, new ScramSHA1()], + [AuthMechanism.MONGODB_SCRAM_SHA256, new ScramSHA256()], + [AuthMechanism.MONGODB_X509, new X509()] +]); + +/** @public */ +export type Stream = Socket | TLSSocket; + +export function connect(options: ConnectionOptions, callback: Callback): void { + makeConnection({ ...options, existingSocket: undefined }, (err, socket) => { + if (err || !socket) { + return callback(err); + } + + let ConnectionType = options.connectionType ?? Connection; + if (options.autoEncrypter) { + ConnectionType = CryptoConnection; + } + performInitialHandshake(new ConnectionType(socket, options), options, callback); + }); +} + +function checkSupportedServer(hello: Document, options: ConnectionOptions) { + const serverVersionHighEnough = + hello && + (typeof hello.maxWireVersion === 'number' || hello.maxWireVersion instanceof Int32) && + hello.maxWireVersion >= MIN_SUPPORTED_WIRE_VERSION; + const serverVersionLowEnough = + hello && + (typeof hello.minWireVersion === 'number' || hello.minWireVersion instanceof Int32) && + hello.minWireVersion <= MAX_SUPPORTED_WIRE_VERSION; + + if (serverVersionHighEnough) { + if (serverVersionLowEnough) { + return null; + } + + const message = `Server at ${options.hostAddress} reports minimum wire version ${JSON.stringify( + hello.minWireVersion + )}, but this version of the Node.js Driver requires at most ${MAX_SUPPORTED_WIRE_VERSION} (MongoDB ${MAX_SUPPORTED_SERVER_VERSION})`; + return new MongoCompatibilityError(message); + } + + const message = `Server at ${options.hostAddress} reports maximum wire version ${ + JSON.stringify(hello.maxWireVersion) ?? 0 + }, but this version of the Node.js Driver requires at least ${MIN_SUPPORTED_WIRE_VERSION} (MongoDB ${MIN_SUPPORTED_SERVER_VERSION})`; + return new MongoCompatibilityError(message); +} + +function performInitialHandshake( + conn: Connection, + options: ConnectionOptions, + _callback: Callback +) { + const callback: Callback = function (err, ret) { + if (err && conn) { + conn.destroy(); + } + _callback(err, ret); + }; + + const credentials = options.credentials; + if (credentials) { + if ( + !(credentials.mechanism === AuthMechanism.MONGODB_DEFAULT) && + !AUTH_PROVIDERS.get(credentials.mechanism) + ) { + callback( + new MongoInvalidArgumentError(`AuthMechanism '${credentials.mechanism}' not supported`) + ); + return; + } + } + + const authContext = new AuthContext(conn, credentials, options); + prepareHandshakeDocument(authContext, (err, handshakeDoc) => { + if (err || !handshakeDoc) { + return callback(err); + } + + const handshakeOptions: Document = Object.assign({}, options); + if (typeof options.connectTimeoutMS === 'number') { + // The handshake technically is a monitoring check, so its socket timeout should be connectTimeoutMS + handshakeOptions.socketTimeoutMS = options.connectTimeoutMS; + } + + const start = new Date().getTime(); + conn.command(ns('admin.$cmd'), handshakeDoc, handshakeOptions, (err, response) => { + if (err) { + callback(err); + return; + } + + if (response?.ok === 0) { + callback(new MongoServerError(response)); + return; + } + + if (!('isWritablePrimary' in response)) { + // Provide hello-style response document. + response.isWritablePrimary = response[LEGACY_HELLO_COMMAND]; + } + + if (response.helloOk) { + conn.helloOk = true; + } + + const supportedServerErr = checkSupportedServer(response, options); + if (supportedServerErr) { + callback(supportedServerErr); + return; + } + + if (options.loadBalanced) { + if (!response.serviceId) { + return callback( + new MongoCompatibilityError( + 'Driver attempted to initialize in load balancing mode, ' + + 'but the server does not support this mode.' + ) + ); + } + } + + // NOTE: This is metadata attached to the connection while porting away from + // handshake being done in the `Server` class. Likely, it should be + // relocated, or at very least restructured. + conn.hello = response; + conn.lastHelloMS = new Date().getTime() - start; + + if (!response.arbiterOnly && credentials) { + // store the response on auth context + authContext.response = response; + + const resolvedCredentials = credentials.resolveAuthMechanism(response); + const provider = AUTH_PROVIDERS.get(resolvedCredentials.mechanism); + if (!provider) { + return callback( + new MongoInvalidArgumentError( + `No AuthProvider for ${resolvedCredentials.mechanism} defined.` + ) + ); + } + provider.auth(authContext, err => { + if (err) { + if (err instanceof MongoError) { + err.addErrorLabel(MongoErrorLabel.HandshakeError); + if (needsRetryableWriteLabel(err, response.maxWireVersion)) { + err.addErrorLabel(MongoErrorLabel.RetryableWriteError); + } + } + return callback(err); + } + callback(undefined, conn); + }); + + return; + } + + callback(undefined, conn); + }); + }); +} + +export interface HandshakeDocument extends Document { + /** + * @deprecated Use hello instead + */ + ismaster?: boolean; + hello?: boolean; + helloOk?: boolean; + client: ClientMetadata; + compression: string[]; + saslSupportedMechs?: string; + loadBalanced?: boolean; +} + +/** + * @internal + * + * This function is only exposed for testing purposes. + */ +export function prepareHandshakeDocument( + authContext: AuthContext, + callback: Callback +) { + const options = authContext.options; + const compressors = options.compressors ? options.compressors : []; + const { serverApi } = authContext.connection; + + const handshakeDoc: HandshakeDocument = { + [serverApi?.version ? 'hello' : LEGACY_HELLO_COMMAND]: true, + helloOk: true, + client: options.metadata || makeClientMetadata(options), + compression: compressors + }; + + if (options.loadBalanced === true) { + handshakeDoc.loadBalanced = true; + } + + const credentials = authContext.credentials; + if (credentials) { + if (credentials.mechanism === AuthMechanism.MONGODB_DEFAULT && credentials.username) { + handshakeDoc.saslSupportedMechs = `${credentials.source}.${credentials.username}`; + + const provider = AUTH_PROVIDERS.get(AuthMechanism.MONGODB_SCRAM_SHA256); + if (!provider) { + // This auth mechanism is always present. + return callback( + new MongoInvalidArgumentError( + `No AuthProvider for ${AuthMechanism.MONGODB_SCRAM_SHA256} defined.` + ) + ); + } + return provider.prepare(handshakeDoc, authContext, callback); + } + const provider = AUTH_PROVIDERS.get(credentials.mechanism); + if (!provider) { + return callback( + new MongoInvalidArgumentError(`No AuthProvider for ${credentials.mechanism} defined.`) + ); + } + return provider.prepare(handshakeDoc, authContext, callback); + } + callback(undefined, handshakeDoc); +} + +/** @public */ +export const LEGAL_TLS_SOCKET_OPTIONS = [ + 'ALPNProtocols', + 'ca', + 'cert', + 'checkServerIdentity', + 'ciphers', + 'crl', + 'ecdhCurve', + 'key', + 'minDHSize', + 'passphrase', + 'pfx', + 'rejectUnauthorized', + 'secureContext', + 'secureProtocol', + 'servername', + 'session' +] as const; + +/** @public */ +export const LEGAL_TCP_SOCKET_OPTIONS = [ + 'family', + 'hints', + 'localAddress', + 'localPort', + 'lookup' +] as const; + +function parseConnectOptions(options: ConnectionOptions): SocketConnectOpts { + const hostAddress = options.hostAddress; + if (!hostAddress) throw new MongoInvalidArgumentError('Option "hostAddress" is required'); + + const result: Partial = {}; + for (const name of LEGAL_TCP_SOCKET_OPTIONS) { + if (options[name] != null) { + (result as Document)[name] = options[name]; + } + } + + if (typeof hostAddress.socketPath === 'string') { + result.path = hostAddress.socketPath; + return result as net.IpcNetConnectOpts; + } else if (typeof hostAddress.host === 'string') { + result.host = hostAddress.host; + result.port = hostAddress.port; + return result as net.TcpNetConnectOpts; + } else { + // This should never happen since we set up HostAddresses + // But if we don't throw here the socket could hang until timeout + // TODO(NODE-3483) + throw new MongoRuntimeError(`Unexpected HostAddress ${JSON.stringify(hostAddress)}`); + } +} + +type MakeConnectionOptions = ConnectionOptions & { existingSocket?: Stream }; + +function parseSslOptions(options: MakeConnectionOptions): TLSConnectionOpts { + const result: TLSConnectionOpts = parseConnectOptions(options); + // Merge in valid SSL options + for (const name of LEGAL_TLS_SOCKET_OPTIONS) { + if (options[name] != null) { + (result as Document)[name] = options[name]; + } + } + + if (options.existingSocket) { + result.socket = options.existingSocket; + } + + // Set default sni servername to be the same as host + if (result.servername == null && result.host && !net.isIP(result.host)) { + result.servername = result.host; + } + + return result; +} + +const SOCKET_ERROR_EVENT_LIST = ['error', 'close', 'timeout', 'parseError'] as const; +type ErrorHandlerEventName = typeof SOCKET_ERROR_EVENT_LIST[number] | 'cancel'; +const SOCKET_ERROR_EVENTS = new Set(SOCKET_ERROR_EVENT_LIST); + +function makeConnection(options: MakeConnectionOptions, _callback: Callback) { + const useTLS = options.tls ?? false; + const keepAlive = options.keepAlive ?? true; + const socketTimeoutMS = options.socketTimeoutMS ?? Reflect.get(options, 'socketTimeout') ?? 0; + const noDelay = options.noDelay ?? true; + const connectTimeoutMS = options.connectTimeoutMS ?? 30000; + const rejectUnauthorized = options.rejectUnauthorized ?? true; + const keepAliveInitialDelay = + ((options.keepAliveInitialDelay ?? 120000) > socketTimeoutMS + ? Math.round(socketTimeoutMS / 2) + : options.keepAliveInitialDelay) ?? 120000; + const existingSocket = options.existingSocket; + + let socket: Stream; + const callback: Callback = function (err, ret) { + if (err && socket) { + socket.destroy(); + } + + _callback(err, ret); + }; + + if (options.proxyHost != null) { + // Currently, only Socks5 is supported. + return makeSocks5Connection( + { + ...options, + connectTimeoutMS // Should always be present for Socks5 + }, + callback + ); + } + + if (useTLS) { + const tlsSocket = tls.connect(parseSslOptions(options)); + if (typeof tlsSocket.disableRenegotiation === 'function') { + tlsSocket.disableRenegotiation(); + } + socket = tlsSocket; + } else if (existingSocket) { + // In the TLS case, parseSslOptions() sets options.socket to existingSocket, + // so we only need to handle the non-TLS case here (where existingSocket + // gives us all we need out of the box). + socket = existingSocket; + } else { + socket = net.createConnection(parseConnectOptions(options)); + } + + socket.setKeepAlive(keepAlive, keepAliveInitialDelay); + socket.setTimeout(connectTimeoutMS); + socket.setNoDelay(noDelay); + + const connectEvent = useTLS ? 'secureConnect' : 'connect'; + let cancellationHandler: (err: Error) => void; + function errorHandler(eventName: ErrorHandlerEventName) { + return (err: Error) => { + SOCKET_ERROR_EVENTS.forEach(event => socket.removeAllListeners(event)); + if (cancellationHandler && options.cancellationToken) { + options.cancellationToken.removeListener('cancel', cancellationHandler); + } + + socket.removeListener(connectEvent, connectHandler); + callback(connectionFailureError(eventName, err)); + }; + } + + function connectHandler() { + SOCKET_ERROR_EVENTS.forEach(event => socket.removeAllListeners(event)); + if (cancellationHandler && options.cancellationToken) { + options.cancellationToken.removeListener('cancel', cancellationHandler); + } + + if ('authorizationError' in socket) { + if (socket.authorizationError && rejectUnauthorized) { + return callback(socket.authorizationError); + } + } + + socket.setTimeout(socketTimeoutMS); + callback(undefined, socket); + } + + SOCKET_ERROR_EVENTS.forEach(event => socket.once(event, errorHandler(event))); + if (options.cancellationToken) { + cancellationHandler = errorHandler('cancel'); + options.cancellationToken.once('cancel', cancellationHandler); + } + + if (existingSocket) { + process.nextTick(connectHandler); + } else { + socket.once(connectEvent, connectHandler); + } +} + +function makeSocks5Connection(options: MakeConnectionOptions, callback: Callback) { + const hostAddress = HostAddress.fromHostPort( + options.proxyHost ?? '', // proxyHost is guaranteed to set here + options.proxyPort ?? 1080 + ); + + // First, connect to the proxy server itself: + makeConnection( + { + ...options, + hostAddress, + tls: false, + proxyHost: undefined + }, + (err, rawSocket) => { + if (err) { + return callback(err); + } + + const destination = parseConnectOptions(options) as net.TcpNetConnectOpts; + if (typeof destination.host !== 'string' || typeof destination.port !== 'number') { + return callback( + new MongoInvalidArgumentError('Can only make Socks5 connections to TCP hosts') + ); + } + + // Then, establish the Socks5 proxy connection: + SocksClient.createConnection({ + existing_socket: rawSocket, + timeout: options.connectTimeoutMS, + command: 'connect', + destination: { + host: destination.host, + port: destination.port + }, + proxy: { + // host and port are ignored because we pass existing_socket + host: 'iLoveJavaScript', + port: 0, + type: 5, + userId: options.proxyUsername || undefined, + password: options.proxyPassword || undefined + } + }).then( + ({ socket }) => { + // Finally, now treat the resulting duplex stream as the + // socket over which we send and receive wire protocol messages: + makeConnection( + { + ...options, + existingSocket: socket, + proxyHost: undefined + }, + callback + ); + }, + error => callback(connectionFailureError('error', error)) + ); + } + ); +} + +function connectionFailureError(type: ErrorHandlerEventName, err: Error) { + switch (type) { + case 'error': + return new MongoNetworkError(err); + case 'timeout': + return new MongoNetworkTimeoutError('connection timed out'); + case 'close': + return new MongoNetworkError('connection closed'); + case 'cancel': + return new MongoNetworkError('connection establishment was cancelled'); + default: + return new MongoNetworkError('unknown network error'); + } +} diff --git a/node_modules/mongodb/src/cmap/connection.ts b/node_modules/mongodb/src/cmap/connection.ts new file mode 100644 index 000000000..416b0ee85 --- /dev/null +++ b/node_modules/mongodb/src/cmap/connection.ts @@ -0,0 +1,753 @@ +import { clearTimeout, setTimeout } from 'timers'; + +import type { BSONSerializeOptions, Document, ObjectId } from '../bson'; +import { + CLOSE, + CLUSTER_TIME_RECEIVED, + COMMAND_FAILED, + COMMAND_STARTED, + COMMAND_SUCCEEDED, + MESSAGE, + PINNED, + UNPINNED +} from '../constants'; +import type { AutoEncrypter } from '../deps'; +import { + MongoCompatibilityError, + MongoMissingDependencyError, + MongoNetworkError, + MongoNetworkTimeoutError, + MongoServerError, + MongoWriteConcernError +} from '../error'; +import type { ServerApi, SupportedNodeConnectionOptions } from '../mongo_client'; +import { CancellationToken, TypedEventEmitter } from '../mongo_types'; +import type { ReadPreference, ReadPreferenceLike } from '../read_preference'; +import { applySession, ClientSession, updateSessionFromResponse } from '../sessions'; +import { + calculateDurationInMs, + Callback, + ClientMetadata, + HostAddress, + maxWireVersion, + MongoDBNamespace, + now, + uuidV4 +} from '../utils'; +import type { WriteConcern } from '../write_concern'; +import type { MongoCredentials } from './auth/mongo_credentials'; +import { + CommandFailedEvent, + CommandStartedEvent, + CommandSucceededEvent +} from './command_monitoring_events'; +import { BinMsg, Msg, Query, Response, WriteProtocolMessageType } from './commands'; +import type { Stream } from './connect'; +import { MessageStream, OperationDescription } from './message_stream'; +import { StreamDescription, StreamDescriptionOptions } from './stream_description'; +import { getReadPreference, isSharded } from './wire_protocol/shared'; + +/** @internal */ +const kStream = Symbol('stream'); +/** @internal */ +const kQueue = Symbol('queue'); +/** @internal */ +const kMessageStream = Symbol('messageStream'); +/** @internal */ +const kGeneration = Symbol('generation'); +/** @internal */ +const kLastUseTime = Symbol('lastUseTime'); +/** @internal */ +const kClusterTime = Symbol('clusterTime'); +/** @internal */ +const kDescription = Symbol('description'); +/** @internal */ +const kHello = Symbol('hello'); +/** @internal */ +const kAutoEncrypter = Symbol('autoEncrypter'); +/** @internal */ +const kDelayedTimeoutId = Symbol('delayedTimeoutId'); + +/** @internal */ +export interface QueryOptions extends BSONSerializeOptions { + readPreference: ReadPreference; + documentsReturnedIn?: string; + batchSize?: number; + limit?: number; + skip?: number; + projection?: Document; + tailable?: boolean; + awaitData?: boolean; + noCursorTimeout?: boolean; + /** @deprecated use `noCursorTimeout` instead */ + timeout?: boolean; + partial?: boolean; + oplogReplay?: boolean; +} + +/** @internal */ +export interface CommandOptions extends BSONSerializeOptions { + command?: boolean; + secondaryOk?: boolean; + /** Specify read preference if command supports it */ + readPreference?: ReadPreferenceLike; + raw?: boolean; + monitoring?: boolean; + socketTimeoutMS?: number; + /** Session to use for the operation */ + session?: ClientSession; + documentsReturnedIn?: string; + noResponse?: boolean; + omitReadPreference?: boolean; + + // TODO(NODE-2802): Currently the CommandOptions take a property willRetryWrite which is a hint + // from executeOperation that the txnNum should be applied to this command. + // Applying a session to a command should happen as part of command construction, + // most likely in the CommandOperation#executeCommand method, where we have access to + // the details we need to determine if a txnNum should also be applied. + willRetryWrite?: boolean; + + writeConcern?: WriteConcern; +} + +/** @internal */ +export interface GetMoreOptions extends CommandOptions { + batchSize?: number; + maxTimeMS?: number; + maxAwaitTimeMS?: number; + /** + * Comment to apply to the operation. + * + * In server versions pre-4.4, 'comment' must be string. A server + * error will be thrown if any other type is provided. + * + * In server versions 4.4 and above, 'comment' can be any valid BSON type. + */ + comment?: unknown; +} + +/** @public */ +export interface ProxyOptions { + proxyHost?: string; + proxyPort?: number; + proxyUsername?: string; + proxyPassword?: string; +} + +/** @public */ +export interface ConnectionOptions + extends SupportedNodeConnectionOptions, + StreamDescriptionOptions, + ProxyOptions { + // Internal creation info + id: number | ''; + generation: number; + hostAddress: HostAddress; + // Settings + autoEncrypter?: AutoEncrypter; + serverApi?: ServerApi; + monitorCommands: boolean; + /** @internal */ + connectionType?: typeof Connection; + credentials?: MongoCredentials; + connectTimeoutMS?: number; + tls: boolean; + keepAlive?: boolean; + keepAliveInitialDelay?: number; + noDelay?: boolean; + socketTimeoutMS?: number; + cancellationToken?: CancellationToken; + + metadata: ClientMetadata; +} + +/** @public */ +export interface DestroyOptions { + /** Force the destruction. */ + force?: boolean; +} + +/** @public */ +export type ConnectionEvents = { + commandStarted(event: CommandStartedEvent): void; + commandSucceeded(event: CommandSucceededEvent): void; + commandFailed(event: CommandFailedEvent): void; + clusterTimeReceived(clusterTime: Document): void; + close(): void; + message(message: any): void; + pinned(pinType: string): void; + unpinned(pinType: string): void; +}; + +/** @internal */ +export class Connection extends TypedEventEmitter { + id: number | ''; + address: string; + socketTimeoutMS: number; + monitorCommands: boolean; + closed: boolean; + destroyed: boolean; + lastHelloMS?: number; + serverApi?: ServerApi; + helloOk?: boolean; + + /**@internal */ + [kDelayedTimeoutId]: NodeJS.Timeout | null; + /** @internal */ + [kDescription]: StreamDescription; + /** @internal */ + [kGeneration]: number; + /** @internal */ + [kLastUseTime]: number; + /** @internal */ + [kQueue]: Map; + /** @internal */ + [kMessageStream]: MessageStream; + /** @internal */ + [kStream]: Stream; + /** @internal */ + [kHello]: Document | null; + /** @internal */ + [kClusterTime]: Document | null; + + /** @event */ + static readonly COMMAND_STARTED = COMMAND_STARTED; + /** @event */ + static readonly COMMAND_SUCCEEDED = COMMAND_SUCCEEDED; + /** @event */ + static readonly COMMAND_FAILED = COMMAND_FAILED; + /** @event */ + static readonly CLUSTER_TIME_RECEIVED = CLUSTER_TIME_RECEIVED; + /** @event */ + static readonly CLOSE = CLOSE; + /** @event */ + static readonly MESSAGE = MESSAGE; + /** @event */ + static readonly PINNED = PINNED; + /** @event */ + static readonly UNPINNED = UNPINNED; + + constructor(stream: Stream, options: ConnectionOptions) { + super(); + this.id = options.id; + this.address = streamIdentifier(stream, options); + this.socketTimeoutMS = options.socketTimeoutMS ?? 0; + this.monitorCommands = options.monitorCommands; + this.serverApi = options.serverApi; + this.closed = false; + this.destroyed = false; + this[kHello] = null; + this[kClusterTime] = null; + + this[kDescription] = new StreamDescription(this.address, options); + this[kGeneration] = options.generation; + this[kLastUseTime] = now(); + + // setup parser stream and message handling + this[kQueue] = new Map(); + this[kMessageStream] = new MessageStream({ + ...options, + maxBsonMessageSize: this.hello?.maxBsonMessageSize + }); + this[kStream] = stream; + + this[kDelayedTimeoutId] = null; + + this[kMessageStream].on('message', message => this.onMessage(message)); + this[kMessageStream].on('error', error => this.onError(error)); + this[kStream].on('close', () => this.onClose()); + this[kStream].on('timeout', () => this.onTimeout()); + this[kStream].on('error', () => { + /* ignore errors, listen to `close` instead */ + }); + + // hook the message stream up to the passed in stream + this[kStream].pipe(this[kMessageStream]); + this[kMessageStream].pipe(this[kStream]); + } + + get description(): StreamDescription { + return this[kDescription]; + } + + get hello(): Document | null { + return this[kHello]; + } + + // the `connect` method stores the result of the handshake hello on the connection + set hello(response: Document | null) { + this[kDescription].receiveResponse(response); + this[kDescription] = Object.freeze(this[kDescription]); + + // TODO: remove this, and only use the `StreamDescription` in the future + this[kHello] = response; + } + + // Set the whether the message stream is for a monitoring connection. + set isMonitoringConnection(value: boolean) { + this[kMessageStream].isMonitoringConnection = value; + } + + get isMonitoringConnection(): boolean { + return this[kMessageStream].isMonitoringConnection; + } + + get serviceId(): ObjectId | undefined { + return this.hello?.serviceId; + } + + get loadBalanced(): boolean { + return this.description.loadBalanced; + } + + get generation(): number { + return this[kGeneration] || 0; + } + + set generation(generation: number) { + this[kGeneration] = generation; + } + + get idleTime(): number { + return calculateDurationInMs(this[kLastUseTime]); + } + + get clusterTime(): Document | null { + return this[kClusterTime]; + } + + get stream(): Stream { + return this[kStream]; + } + + markAvailable(): void { + this[kLastUseTime] = now(); + } + + onError(error: Error) { + if (this.closed) { + return; + } + + this[kStream].destroy(error); + + this.closed = true; + + for (const op of this[kQueue].values()) { + op.cb(error); + } + + this[kQueue].clear(); + this.emit(Connection.CLOSE); + } + + onClose() { + if (this.closed) { + return; + } + + this.closed = true; + + const message = `connection ${this.id} to ${this.address} closed`; + for (const op of this[kQueue].values()) { + op.cb(new MongoNetworkError(message)); + } + + this[kQueue].clear(); + this.emit(Connection.CLOSE); + } + + onTimeout() { + if (this.closed) { + return; + } + + this[kDelayedTimeoutId] = setTimeout(() => { + this[kStream].destroy(); + + this.closed = true; + + const message = `connection ${this.id} to ${this.address} timed out`; + const beforeHandshake = this.hello == null; + for (const op of this[kQueue].values()) { + op.cb(new MongoNetworkTimeoutError(message, { beforeHandshake })); + } + + this[kQueue].clear(); + this.emit(Connection.CLOSE); + }, 1).unref(); // No need for this timer to hold the event loop open + } + + onMessage(message: BinMsg | Response) { + const delayedTimeoutId = this[kDelayedTimeoutId]; + if (delayedTimeoutId != null) { + clearTimeout(delayedTimeoutId); + this[kDelayedTimeoutId] = null; + } + + // always emit the message, in case we are streaming + this.emit('message', message); + const operationDescription = this[kQueue].get(message.responseTo); + if (!operationDescription) { + return; + } + + const callback = operationDescription.cb; + + // SERVER-45775: For exhaust responses we should be able to use the same requestId to + // track response, however the server currently synthetically produces remote requests + // making the `responseTo` change on each response + this[kQueue].delete(message.responseTo); + if ('moreToCome' in message && message.moreToCome) { + // requeue the callback for next synthetic request + this[kQueue].set(message.requestId, operationDescription); + } else if (operationDescription.socketTimeoutOverride) { + this[kStream].setTimeout(this.socketTimeoutMS); + } + + try { + // Pass in the entire description because it has BSON parsing options + message.parse(operationDescription); + } catch (err) { + // If this error is generated by our own code, it will already have the correct class applied + // if it is not, then it is coming from a catastrophic data parse failure or the BSON library + // in either case, it should not be wrapped + callback(err); + return; + } + + if (message.documents[0]) { + const document: Document = message.documents[0]; + const session = operationDescription.session; + if (session) { + updateSessionFromResponse(session, document); + } + + if (document.$clusterTime) { + this[kClusterTime] = document.$clusterTime; + this.emit(Connection.CLUSTER_TIME_RECEIVED, document.$clusterTime); + } + + if (operationDescription.command) { + if (document.writeConcernError) { + callback(new MongoWriteConcernError(document.writeConcernError, document)); + return; + } + + if (document.ok === 0 || document.$err || document.errmsg || document.code) { + callback(new MongoServerError(document)); + return; + } + } else { + // Pre 3.2 support + if (document.ok === 0 || document.$err || document.errmsg) { + callback(new MongoServerError(document)); + return; + } + } + } + + callback(undefined, message.documents[0]); + } + + destroy(options?: DestroyOptions, callback?: Callback): void { + if (typeof options === 'function') { + callback = options; + options = { force: false }; + } + + this.removeAllListeners(Connection.PINNED); + this.removeAllListeners(Connection.UNPINNED); + + options = Object.assign({ force: false }, options); + if (this[kStream] == null || this.destroyed) { + this.destroyed = true; + if (typeof callback === 'function') { + callback(); + } + + return; + } + + if (options.force) { + this[kStream].destroy(); + this.destroyed = true; + if (typeof callback === 'function') { + callback(); + } + + return; + } + + this[kStream].end(() => { + this.destroyed = true; + if (typeof callback === 'function') { + callback(); + } + }); + } + + command( + ns: MongoDBNamespace, + cmd: Document, + options: CommandOptions | undefined, + callback: Callback + ): void { + const readPreference = getReadPreference(cmd, options); + const shouldUseOpMsg = supportsOpMsg(this); + const session = options?.session; + + let clusterTime = this.clusterTime; + let finalCmd = Object.assign({}, cmd); + + if (this.serverApi) { + const { version, strict, deprecationErrors } = this.serverApi; + finalCmd.apiVersion = version; + if (strict != null) finalCmd.apiStrict = strict; + if (deprecationErrors != null) finalCmd.apiDeprecationErrors = deprecationErrors; + } + + if (hasSessionSupport(this) && session) { + if ( + session.clusterTime && + clusterTime && + session.clusterTime.clusterTime.greaterThan(clusterTime.clusterTime) + ) { + clusterTime = session.clusterTime; + } + + const err = applySession(session, finalCmd, options); + if (err) { + return callback(err); + } + } + + // if we have a known cluster time, gossip it + if (clusterTime) { + finalCmd.$clusterTime = clusterTime; + } + + if (isSharded(this) && !shouldUseOpMsg && readPreference && readPreference.mode !== 'primary') { + finalCmd = { + $query: finalCmd, + $readPreference: readPreference.toJSON() + }; + } + + const commandOptions: Document = Object.assign( + { + command: true, + numberToSkip: 0, + numberToReturn: -1, + checkKeys: false, + // This value is not overridable + secondaryOk: readPreference.secondaryOk() + }, + options + ); + + const cmdNs = `${ns.db}.$cmd`; + const message = shouldUseOpMsg + ? new Msg(cmdNs, finalCmd, commandOptions) + : new Query(cmdNs, finalCmd, commandOptions); + + try { + write(this, message, commandOptions, callback); + } catch (err) { + callback(err); + } + } +} + +/** @internal */ +export class CryptoConnection extends Connection { + /** @internal */ + [kAutoEncrypter]?: AutoEncrypter; + + constructor(stream: Stream, options: ConnectionOptions) { + super(stream, options); + this[kAutoEncrypter] = options.autoEncrypter; + } + + /** @internal @override */ + override command( + ns: MongoDBNamespace, + cmd: Document, + options: CommandOptions, + callback: Callback + ): void { + const autoEncrypter = this[kAutoEncrypter]; + if (!autoEncrypter) { + return callback(new MongoMissingDependencyError('No AutoEncrypter available for encryption')); + } + + const serverWireVersion = maxWireVersion(this); + if (serverWireVersion === 0) { + // This means the initial handshake hasn't happened yet + return super.command(ns, cmd, options, callback); + } + + if (serverWireVersion < 8) { + callback( + new MongoCompatibilityError('Auto-encryption requires a minimum MongoDB version of 4.2') + ); + return; + } + + // Save sort or indexKeys based on the command being run + // the encrypt API serializes our JS objects to BSON to pass to the native code layer + // and then deserializes the encrypted result, the protocol level components + // of the command (ex. sort) are then converted to JS objects potentially losing + // import key order information. These fields are never encrypted so we can save the values + // from before the encryption and replace them after encryption has been performed + const sort: Map | null = cmd.find || cmd.findAndModify ? cmd.sort : null; + const indexKeys: Map[] | null = cmd.createIndexes + ? cmd.indexes.map((index: { key: Map }) => index.key) + : null; + + autoEncrypter.encrypt(ns.toString(), cmd, options, (err, encrypted) => { + if (err || encrypted == null) { + callback(err, null); + return; + } + + // Replace the saved values + if (sort != null && (cmd.find || cmd.findAndModify)) { + encrypted.sort = sort; + } + if (indexKeys != null && cmd.createIndexes) { + for (const [offset, index] of indexKeys.entries()) { + encrypted.indexes[offset].key = index; + } + } + + super.command(ns, encrypted, options, (err, response) => { + if (err || response == null) { + callback(err, response); + return; + } + + autoEncrypter.decrypt(response, options, callback); + }); + }); + } +} + +/** @internal */ +export function hasSessionSupport(conn: Connection): boolean { + const description = conn.description; + return description.logicalSessionTimeoutMinutes != null || !!description.loadBalanced; +} + +function supportsOpMsg(conn: Connection) { + const description = conn.description; + if (description == null) { + return false; + } + + return maxWireVersion(conn) >= 6 && !description.__nodejs_mock_server__; +} + +function streamIdentifier(stream: Stream, options: ConnectionOptions): string { + if (options.proxyHost) { + // If proxy options are specified, the properties of `stream` itself + // will not accurately reflect what endpoint this is connected to. + return options.hostAddress.toString(); + } + + const { remoteAddress, remotePort } = stream; + if (typeof remoteAddress === 'string' && typeof remotePort === 'number') { + return HostAddress.fromHostPort(remoteAddress, remotePort).toString(); + } + + return uuidV4().toString('hex'); +} + +function write( + conn: Connection, + command: WriteProtocolMessageType, + options: CommandOptions, + callback: Callback +) { + options = options ?? {}; + const operationDescription: OperationDescription = { + requestId: command.requestId, + cb: callback, + session: options.session, + noResponse: typeof options.noResponse === 'boolean' ? options.noResponse : false, + documentsReturnedIn: options.documentsReturnedIn, + command: !!options.command, + + // for BSON parsing + promoteLongs: typeof options.promoteLongs === 'boolean' ? options.promoteLongs : true, + promoteValues: typeof options.promoteValues === 'boolean' ? options.promoteValues : true, + promoteBuffers: typeof options.promoteBuffers === 'boolean' ? options.promoteBuffers : false, + bsonRegExp: typeof options.bsonRegExp === 'boolean' ? options.bsonRegExp : false, + enableUtf8Validation: + typeof options.enableUtf8Validation === 'boolean' ? options.enableUtf8Validation : true, + raw: typeof options.raw === 'boolean' ? options.raw : false, + started: 0 + }; + + if (conn[kDescription] && conn[kDescription].compressor) { + operationDescription.agreedCompressor = conn[kDescription].compressor; + + if (conn[kDescription].zlibCompressionLevel) { + operationDescription.zlibCompressionLevel = conn[kDescription].zlibCompressionLevel; + } + } + + if (typeof options.socketTimeoutMS === 'number') { + operationDescription.socketTimeoutOverride = true; + conn[kStream].setTimeout(options.socketTimeoutMS); + } + + // if command monitoring is enabled we need to modify the callback here + if (conn.monitorCommands) { + conn.emit(Connection.COMMAND_STARTED, new CommandStartedEvent(conn, command)); + + operationDescription.started = now(); + operationDescription.cb = (err, reply) => { + if (err) { + conn.emit( + Connection.COMMAND_FAILED, + new CommandFailedEvent(conn, command, err, operationDescription.started) + ); + } else { + if (reply && (reply.ok === 0 || reply.$err)) { + conn.emit( + Connection.COMMAND_FAILED, + new CommandFailedEvent(conn, command, reply, operationDescription.started) + ); + } else { + conn.emit( + Connection.COMMAND_SUCCEEDED, + new CommandSucceededEvent(conn, command, reply, operationDescription.started) + ); + } + } + + if (typeof callback === 'function') { + callback(err, reply); + } + }; + } + + if (!operationDescription.noResponse) { + conn[kQueue].set(operationDescription.requestId, operationDescription); + } + + try { + conn[kMessageStream].writeCommand(command, operationDescription); + } catch (e) { + if (!operationDescription.noResponse) { + conn[kQueue].delete(operationDescription.requestId); + operationDescription.cb(e); + return; + } + } + + if (operationDescription.noResponse) { + operationDescription.cb(); + } +} diff --git a/node_modules/mongodb/src/cmap/connection_pool.ts b/node_modules/mongodb/src/cmap/connection_pool.ts new file mode 100644 index 000000000..65bbe5c7e --- /dev/null +++ b/node_modules/mongodb/src/cmap/connection_pool.ts @@ -0,0 +1,779 @@ +import Denque = require('denque'); +import { clearTimeout, setTimeout } from 'timers'; + +import type { ObjectId } from '../bson'; +import { + APM_EVENTS, + CONNECTION_CHECK_OUT_FAILED, + CONNECTION_CHECK_OUT_STARTED, + CONNECTION_CHECKED_IN, + CONNECTION_CHECKED_OUT, + CONNECTION_CLOSED, + CONNECTION_CREATED, + CONNECTION_POOL_CLEARED, + CONNECTION_POOL_CLOSED, + CONNECTION_POOL_CREATED, + CONNECTION_POOL_READY, + CONNECTION_READY +} from '../constants'; +import { MongoError, MongoInvalidArgumentError, MongoRuntimeError } from '../error'; +import { Logger } from '../logger'; +import { CancellationToken, TypedEventEmitter } from '../mongo_types'; +import { Callback, eachAsync, makeCounter } from '../utils'; +import { connect } from './connect'; +import { Connection, ConnectionEvents, ConnectionOptions } from './connection'; +import { + ConnectionCheckedInEvent, + ConnectionCheckedOutEvent, + ConnectionCheckOutFailedEvent, + ConnectionCheckOutStartedEvent, + ConnectionClosedEvent, + ConnectionCreatedEvent, + ConnectionPoolClearedEvent, + ConnectionPoolClosedEvent, + ConnectionPoolCreatedEvent, + ConnectionPoolReadyEvent, + ConnectionReadyEvent +} from './connection_pool_events'; +import { PoolClearedError, PoolClosedError, WaitQueueTimeoutError } from './errors'; +import { ConnectionPoolMetrics } from './metrics'; + +/** @internal */ +const kLogger = Symbol('logger'); +/** @internal */ +const kConnections = Symbol('connections'); +/** @internal */ +const kPending = Symbol('pending'); +/** @internal */ +const kCheckedOut = Symbol('checkedOut'); +/** @internal */ +const kMinPoolSizeTimer = Symbol('minPoolSizeTimer'); +/** @internal */ +const kGeneration = Symbol('generation'); +/** @internal */ +const kServiceGenerations = Symbol('serviceGenerations'); +/** @internal */ +const kConnectionCounter = Symbol('connectionCounter'); +/** @internal */ +const kCancellationToken = Symbol('cancellationToken'); +/** @internal */ +const kWaitQueue = Symbol('waitQueue'); +/** @internal */ +const kCancelled = Symbol('cancelled'); +/** @internal */ +const kMetrics = Symbol('metrics'); +/** @internal */ +const kProcessingWaitQueue = Symbol('processingWaitQueue'); +/** @internal */ +const kPoolState = Symbol('poolState'); + +/** @public */ +export interface ConnectionPoolOptions extends Omit { + /** The maximum number of connections that may be associated with a pool at a given time. This includes in use and available connections. */ + maxPoolSize: number; + /** The minimum number of connections that MUST exist at any moment in a single connection pool. */ + minPoolSize: number; + /** The maximum number of connections that may be in the process of being established concurrently by the connection pool. */ + maxConnecting: number; + /** The maximum amount of time a connection should remain idle in the connection pool before being marked idle. */ + maxIdleTimeMS: number; + /** The maximum amount of time operation execution should wait for a connection to become available. The default is 0 which means there is no limit. */ + waitQueueTimeoutMS: number; + /** If we are in load balancer mode. */ + loadBalanced: boolean; +} + +/** @internal */ +export interface WaitQueueMember { + callback: Callback; + timer?: NodeJS.Timeout; + [kCancelled]?: boolean; +} + +/** @internal */ +export const PoolState = Object.freeze({ + paused: 'paused', + ready: 'ready', + closed: 'closed' +} as const); + +/** @public */ +export interface CloseOptions { + force?: boolean; +} + +/** @public */ +export type ConnectionPoolEvents = { + connectionPoolCreated(event: ConnectionPoolCreatedEvent): void; + connectionPoolReady(event: ConnectionPoolReadyEvent): void; + connectionPoolClosed(event: ConnectionPoolClosedEvent): void; + connectionPoolCleared(event: ConnectionPoolClearedEvent): void; + connectionCreated(event: ConnectionCreatedEvent): void; + connectionReady(event: ConnectionReadyEvent): void; + connectionClosed(event: ConnectionClosedEvent): void; + connectionCheckOutStarted(event: ConnectionCheckOutStartedEvent): void; + connectionCheckOutFailed(event: ConnectionCheckOutFailedEvent): void; + connectionCheckedOut(event: ConnectionCheckedOutEvent): void; + connectionCheckedIn(event: ConnectionCheckedInEvent): void; +} & Omit; + +/** + * A pool of connections which dynamically resizes, and emit events related to pool activity + * @internal + */ +export class ConnectionPool extends TypedEventEmitter { + options: Readonly; + /** @internal */ + [kPoolState]: typeof PoolState[keyof typeof PoolState]; + /** @internal */ + [kLogger]: Logger; + /** @internal */ + [kConnections]: Denque; + /** @internal */ + [kPending]: number; + /** @internal */ + [kCheckedOut]: number; + /** @internal */ + [kMinPoolSizeTimer]?: NodeJS.Timeout; + /** + * An integer representing the SDAM generation of the pool + * @internal + */ + [kGeneration]: number; + /** A map of generations to service ids + * @internal + */ + [kServiceGenerations]: Map; + /** @internal */ + [kConnectionCounter]: Generator; + /** @internal */ + [kCancellationToken]: CancellationToken; + /** @internal */ + [kWaitQueue]: Denque; + /** @internal */ + [kMetrics]: ConnectionPoolMetrics; + /** @internal */ + [kProcessingWaitQueue]: boolean; + + /** + * Emitted when the connection pool is created. + * @event + */ + static readonly CONNECTION_POOL_CREATED = CONNECTION_POOL_CREATED; + /** + * Emitted once when the connection pool is closed + * @event + */ + static readonly CONNECTION_POOL_CLOSED = CONNECTION_POOL_CLOSED; + /** + * Emitted each time the connection pool is cleared and it's generation incremented + * @event + */ + static readonly CONNECTION_POOL_CLEARED = CONNECTION_POOL_CLEARED; + /** + * Emitted each time the connection pool is marked ready + * @event + */ + static readonly CONNECTION_POOL_READY = CONNECTION_POOL_READY; + /** + * Emitted when a connection is created. + * @event + */ + static readonly CONNECTION_CREATED = CONNECTION_CREATED; + /** + * Emitted when a connection becomes established, and is ready to use + * @event + */ + static readonly CONNECTION_READY = CONNECTION_READY; + /** + * Emitted when a connection is closed + * @event + */ + static readonly CONNECTION_CLOSED = CONNECTION_CLOSED; + /** + * Emitted when an attempt to check out a connection begins + * @event + */ + static readonly CONNECTION_CHECK_OUT_STARTED = CONNECTION_CHECK_OUT_STARTED; + /** + * Emitted when an attempt to check out a connection fails + * @event + */ + static readonly CONNECTION_CHECK_OUT_FAILED = CONNECTION_CHECK_OUT_FAILED; + /** + * Emitted each time a connection is successfully checked out of the connection pool + * @event + */ + static readonly CONNECTION_CHECKED_OUT = CONNECTION_CHECKED_OUT; + /** + * Emitted each time a connection is successfully checked into the connection pool + * @event + */ + static readonly CONNECTION_CHECKED_IN = CONNECTION_CHECKED_IN; + + /** @internal */ + constructor(options: ConnectionPoolOptions) { + super(); + + this.options = Object.freeze({ + ...options, + connectionType: Connection, + maxPoolSize: options.maxPoolSize ?? 100, + minPoolSize: options.minPoolSize ?? 0, + maxConnecting: options.maxConnecting ?? 2, + maxIdleTimeMS: options.maxIdleTimeMS ?? 0, + waitQueueTimeoutMS: options.waitQueueTimeoutMS ?? 0, + autoEncrypter: options.autoEncrypter, + metadata: options.metadata + }); + + if (this.options.minPoolSize > this.options.maxPoolSize) { + throw new MongoInvalidArgumentError( + 'Connection pool minimum size must not be greater than maximum pool size' + ); + } + + this[kPoolState] = PoolState.paused; + this[kLogger] = new Logger('ConnectionPool'); + this[kConnections] = new Denque(); + this[kPending] = 0; + this[kCheckedOut] = 0; + this[kMinPoolSizeTimer] = undefined; + this[kGeneration] = 0; + this[kServiceGenerations] = new Map(); + this[kConnectionCounter] = makeCounter(1); + this[kCancellationToken] = new CancellationToken(); + this[kCancellationToken].setMaxListeners(Infinity); + this[kWaitQueue] = new Denque(); + this[kMetrics] = new ConnectionPoolMetrics(); + this[kProcessingWaitQueue] = false; + + process.nextTick(() => { + this.emit(ConnectionPool.CONNECTION_POOL_CREATED, new ConnectionPoolCreatedEvent(this)); + }); + } + + /** The address of the endpoint the pool is connected to */ + get address(): string { + return this.options.hostAddress.toString(); + } + + /** + * Check if the pool has been closed + * + * TODO(NODE-3263): We can remove this property once shell no longer needs it + */ + get closed(): boolean { + return this[kPoolState] === PoolState.closed; + } + + /** An integer representing the SDAM generation of the pool */ + get generation(): number { + return this[kGeneration]; + } + + /** An integer expressing how many total connections (available + pending + in use) the pool currently has */ + get totalConnectionCount(): number { + return ( + this.availableConnectionCount + this.pendingConnectionCount + this.currentCheckedOutCount + ); + } + + /** An integer expressing how many connections are currently available in the pool. */ + get availableConnectionCount(): number { + return this[kConnections].length; + } + + get pendingConnectionCount(): number { + return this[kPending]; + } + + get currentCheckedOutCount(): number { + return this[kCheckedOut]; + } + + get waitQueueSize(): number { + return this[kWaitQueue].length; + } + + get loadBalanced(): boolean { + return this.options.loadBalanced; + } + + get serviceGenerations(): Map { + return this[kServiceGenerations]; + } + + /** + * Get the metrics information for the pool when a wait queue timeout occurs. + */ + private waitQueueErrorMetrics(): string { + return this[kMetrics].info(this.options.maxPoolSize); + } + + /** + * Set the pool state to "ready" + */ + ready(): void { + if (this[kPoolState] !== PoolState.paused) { + return; + } + this[kPoolState] = PoolState.ready; + this.emit(ConnectionPool.CONNECTION_POOL_READY, new ConnectionPoolReadyEvent(this)); + clearTimeout(this[kMinPoolSizeTimer]); + this.ensureMinPoolSize(); + } + + /** + * Check a connection out of this pool. The connection will continue to be tracked, but no reference to it + * will be held by the pool. This means that if a connection is checked out it MUST be checked back in or + * explicitly destroyed by the new owner. + */ + checkOut(callback: Callback): void { + this.emit( + ConnectionPool.CONNECTION_CHECK_OUT_STARTED, + new ConnectionCheckOutStartedEvent(this) + ); + + const waitQueueMember: WaitQueueMember = { callback }; + const waitQueueTimeoutMS = this.options.waitQueueTimeoutMS; + if (waitQueueTimeoutMS) { + waitQueueMember.timer = setTimeout(() => { + waitQueueMember[kCancelled] = true; + waitQueueMember.timer = undefined; + + this.emit( + ConnectionPool.CONNECTION_CHECK_OUT_FAILED, + new ConnectionCheckOutFailedEvent(this, 'timeout') + ); + waitQueueMember.callback( + new WaitQueueTimeoutError( + this.loadBalanced + ? this.waitQueueErrorMetrics() + : 'Timed out while checking out a connection from connection pool', + this.address + ) + ); + }, waitQueueTimeoutMS); + } + + this[kWaitQueue].push(waitQueueMember); + process.nextTick(() => this.processWaitQueue()); + } + + /** + * Check a connection into the pool. + * + * @param connection - The connection to check in + */ + checkIn(connection: Connection): void { + const poolClosed = this.closed; + const stale = this.connectionIsStale(connection); + const willDestroy = !!(poolClosed || stale || connection.closed); + + if (!willDestroy) { + connection.markAvailable(); + this[kConnections].unshift(connection); + } + + this[kCheckedOut]--; + this.emit(ConnectionPool.CONNECTION_CHECKED_IN, new ConnectionCheckedInEvent(this, connection)); + + if (willDestroy) { + const reason = connection.closed ? 'error' : poolClosed ? 'poolClosed' : 'stale'; + this.destroyConnection(connection, reason); + } + + process.nextTick(() => this.processWaitQueue()); + } + + /** + * Clear the pool + * + * Pool reset is handled by incrementing the pool's generation count. Any existing connection of a + * previous generation will eventually be pruned during subsequent checkouts. + */ + clear(serviceId?: ObjectId): void { + if (this.closed) { + return; + } + + // handle load balanced case + if (this.loadBalanced && serviceId) { + const sid = serviceId.toHexString(); + const generation = this.serviceGenerations.get(sid); + // Only need to worry if the generation exists, since it should + // always be there but typescript needs the check. + if (generation == null) { + throw new MongoRuntimeError('Service generations are required in load balancer mode.'); + } else { + // Increment the generation for the service id. + this.serviceGenerations.set(sid, generation + 1); + } + this.emit( + ConnectionPool.CONNECTION_POOL_CLEARED, + new ConnectionPoolClearedEvent(this, serviceId) + ); + return; + } + + // handle non load-balanced case + this[kGeneration] += 1; + const alreadyPaused = this[kPoolState] === PoolState.paused; + this[kPoolState] = PoolState.paused; + + this.clearMinPoolSizeTimer(); + if (!alreadyPaused) { + this.emit(ConnectionPool.CONNECTION_POOL_CLEARED, new ConnectionPoolClearedEvent(this)); + } + this.processWaitQueue(); + } + + /** Close the pool */ + close(callback: Callback): void; + close(options: CloseOptions, callback: Callback): void; + close(_options?: CloseOptions | Callback, _cb?: Callback): void { + let options = _options as CloseOptions; + const callback = (_cb ?? _options) as Callback; + if (typeof options === 'function') { + options = {}; + } + + options = Object.assign({ force: false }, options); + if (this.closed) { + return callback(); + } + + // immediately cancel any in-flight connections + this[kCancellationToken].emit('cancel'); + + // end the connection counter + if (typeof this[kConnectionCounter].return === 'function') { + this[kConnectionCounter].return(undefined); + } + + this[kPoolState] = PoolState.closed; + this.clearMinPoolSizeTimer(); + this.processWaitQueue(); + + eachAsync( + this[kConnections].toArray(), + (conn, cb) => { + this.emit( + ConnectionPool.CONNECTION_CLOSED, + new ConnectionClosedEvent(this, conn, 'poolClosed') + ); + conn.destroy(options, cb); + }, + err => { + this[kConnections].clear(); + this.emit(ConnectionPool.CONNECTION_POOL_CLOSED, new ConnectionPoolClosedEvent(this)); + callback(err); + } + ); + } + + /** + * Runs a lambda with an implicitly checked out connection, checking that connection back in when the lambda + * has completed by calling back. + * + * NOTE: please note the required signature of `fn` + * + * @remarks When in load balancer mode, connections can be pinned to cursors or transactions. + * In these cases we pass the connection in to this method to ensure it is used and a new + * connection is not checked out. + * + * @param conn - A pinned connection for use in load balancing mode. + * @param fn - A function which operates on a managed connection + * @param callback - The original callback + */ + withConnection( + conn: Connection | undefined, + fn: WithConnectionCallback, + callback?: Callback + ): void { + if (conn) { + // use the provided connection, and do _not_ check it in after execution + fn(undefined, conn, (fnErr, result) => { + if (typeof callback === 'function') { + if (fnErr) { + callback(fnErr); + } else { + callback(undefined, result); + } + } + }); + + return; + } + + this.checkOut((err, conn) => { + // don't callback with `err` here, we might want to act upon it inside `fn` + fn(err as MongoError, conn, (fnErr, result) => { + if (typeof callback === 'function') { + if (fnErr) { + callback(fnErr); + } else { + callback(undefined, result); + } + } + + if (conn) { + this.checkIn(conn); + } + }); + }); + } + + /** Clear the min pool size timer */ + private clearMinPoolSizeTimer(): void { + const minPoolSizeTimer = this[kMinPoolSizeTimer]; + if (minPoolSizeTimer) { + clearTimeout(minPoolSizeTimer); + } + } + + private destroyConnection(connection: Connection, reason: string) { + this.emit( + ConnectionPool.CONNECTION_CLOSED, + new ConnectionClosedEvent(this, connection, reason) + ); + // destroy the connection + process.nextTick(() => connection.destroy()); + } + + private connectionIsStale(connection: Connection) { + const serviceId = connection.serviceId; + if (this.loadBalanced && serviceId) { + const sid = serviceId.toHexString(); + const generation = this.serviceGenerations.get(sid); + return connection.generation !== generation; + } + + return connection.generation !== this[kGeneration]; + } + + private connectionIsIdle(connection: Connection) { + return !!(this.options.maxIdleTimeMS && connection.idleTime > this.options.maxIdleTimeMS); + } + + private connectionIsPerished(connection: Connection) { + const isStale = this.connectionIsStale(connection); + const isIdle = this.connectionIsIdle(connection); + if (!isStale && !isIdle && !connection.closed) { + return false; + } + const reason = connection.closed ? 'error' : isStale ? 'stale' : 'idle'; + this.destroyConnection(connection, reason); + return true; + } + + private createConnection(callback: Callback) { + const connectOptions: ConnectionOptions = { + ...this.options, + id: this[kConnectionCounter].next().value, + generation: this[kGeneration], + cancellationToken: this[kCancellationToken] + }; + + this[kPending]++; + // This is our version of a "virtual" no-I/O connection as the spec requires + this.emit( + ConnectionPool.CONNECTION_CREATED, + new ConnectionCreatedEvent(this, { id: connectOptions.id }) + ); + + connect(connectOptions, (err, connection) => { + if (err || !connection) { + this[kLogger].debug(`connection attempt failed with error [${JSON.stringify(err)}]`); + this[kPending]--; + callback(err ?? new MongoRuntimeError('Connection creation failed without error')); + return; + } + + // The pool might have closed since we started trying to create a connection + if (this[kPoolState] !== PoolState.ready) { + this[kPending]--; + connection.destroy({ force: true }); + callback(this.closed ? new PoolClosedError(this) : new PoolClearedError(this)); + return; + } + + // forward all events from the connection to the pool + for (const event of [...APM_EVENTS, Connection.CLUSTER_TIME_RECEIVED]) { + connection.on(event, (e: any) => this.emit(event, e)); + } + + if (this.loadBalanced) { + connection.on(Connection.PINNED, pinType => this[kMetrics].markPinned(pinType)); + connection.on(Connection.UNPINNED, pinType => this[kMetrics].markUnpinned(pinType)); + + const serviceId = connection.serviceId; + if (serviceId) { + let generation; + const sid = serviceId.toHexString(); + if ((generation = this.serviceGenerations.get(sid))) { + connection.generation = generation; + } else { + this.serviceGenerations.set(sid, 0); + connection.generation = 0; + } + } + } + + connection.markAvailable(); + this.emit(ConnectionPool.CONNECTION_READY, new ConnectionReadyEvent(this, connection)); + + this[kPending]--; + callback(undefined, connection); + return; + }); + } + + private ensureMinPoolSize() { + const minPoolSize = this.options.minPoolSize; + if (this[kPoolState] !== PoolState.ready || minPoolSize === 0) { + return; + } + + for (let i = 0; i < this[kConnections].length; i++) { + const connection = this[kConnections].peekAt(i); + if (connection && this.connectionIsPerished(connection)) { + this[kConnections].removeOne(i); + } + } + + if ( + this.totalConnectionCount < minPoolSize && + this.pendingConnectionCount < this.options.maxConnecting + ) { + // NOTE: ensureMinPoolSize should not try to get all the pending + // connection permits because that potentially delays the availability of + // the connection to a checkout request + this.createConnection((err, connection) => { + if (!err && connection) { + this[kConnections].push(connection); + process.nextTick(() => this.processWaitQueue()); + } + if (this[kPoolState] === PoolState.ready) { + clearTimeout(this[kMinPoolSizeTimer]); + this[kMinPoolSizeTimer] = setTimeout(() => this.ensureMinPoolSize(), 10); + } + }); + } else { + clearTimeout(this[kMinPoolSizeTimer]); + this[kMinPoolSizeTimer] = setTimeout(() => this.ensureMinPoolSize(), 100); + } + } + + private processWaitQueue() { + if (this[kProcessingWaitQueue]) { + return; + } + this[kProcessingWaitQueue] = true; + + while (this.waitQueueSize) { + const waitQueueMember = this[kWaitQueue].peekFront(); + if (!waitQueueMember) { + this[kWaitQueue].shift(); + continue; + } + + if (waitQueueMember[kCancelled]) { + this[kWaitQueue].shift(); + continue; + } + + if (this[kPoolState] !== PoolState.ready) { + const reason = this.closed ? 'poolClosed' : 'connectionError'; + const error = this.closed ? new PoolClosedError(this) : new PoolClearedError(this); + this.emit( + ConnectionPool.CONNECTION_CHECK_OUT_FAILED, + new ConnectionCheckOutFailedEvent(this, reason) + ); + if (waitQueueMember.timer) { + clearTimeout(waitQueueMember.timer); + } + this[kWaitQueue].shift(); + waitQueueMember.callback(error); + continue; + } + + if (!this.availableConnectionCount) { + break; + } + + const connection = this[kConnections].shift(); + if (!connection) { + break; + } + + if (!this.connectionIsPerished(connection)) { + this[kCheckedOut]++; + this.emit( + ConnectionPool.CONNECTION_CHECKED_OUT, + new ConnectionCheckedOutEvent(this, connection) + ); + if (waitQueueMember.timer) { + clearTimeout(waitQueueMember.timer); + } + + this[kWaitQueue].shift(); + waitQueueMember.callback(undefined, connection); + } + } + + const { maxPoolSize, maxConnecting } = this.options; + while ( + this.waitQueueSize > 0 && + this.pendingConnectionCount < maxConnecting && + (maxPoolSize === 0 || this.totalConnectionCount < maxPoolSize) + ) { + const waitQueueMember = this[kWaitQueue].shift(); + if (!waitQueueMember || waitQueueMember[kCancelled]) { + continue; + } + this.createConnection((err, connection) => { + if (waitQueueMember[kCancelled]) { + if (!err && connection) { + this[kConnections].push(connection); + } + } else { + if (err) { + this.emit( + ConnectionPool.CONNECTION_CHECK_OUT_FAILED, + new ConnectionCheckOutFailedEvent(this, 'connectionError') + ); + } else if (connection) { + this[kCheckedOut]++; + this.emit( + ConnectionPool.CONNECTION_CHECKED_OUT, + new ConnectionCheckedOutEvent(this, connection) + ); + } + + if (waitQueueMember.timer) { + clearTimeout(waitQueueMember.timer); + } + waitQueueMember.callback(err, connection); + } + process.nextTick(() => this.processWaitQueue()); + }); + } + this[kProcessingWaitQueue] = false; + } +} + +/** + * A callback provided to `withConnection` + * @internal + * + * @param error - An error instance representing the error during the execution. + * @param connection - The managed connection which was checked out of the pool. + * @param callback - A function to call back after connection management is complete + */ +export type WithConnectionCallback = ( + error: MongoError | undefined, + connection: Connection | undefined, + callback: Callback +) => void; diff --git a/node_modules/mongodb/src/cmap/connection_pool_events.ts b/node_modules/mongodb/src/cmap/connection_pool_events.ts new file mode 100644 index 000000000..90c4826d5 --- /dev/null +++ b/node_modules/mongodb/src/cmap/connection_pool_events.ts @@ -0,0 +1,191 @@ +import type { ObjectId } from '../bson'; +import type { AnyError } from '../error'; +import type { Connection } from './connection'; +import type { ConnectionPool, ConnectionPoolOptions } from './connection_pool'; + +/** + * The base export class for all monitoring events published from the connection pool + * @public + * @category Event + */ +export class ConnectionPoolMonitoringEvent { + /** A timestamp when the event was created */ + time: Date; + /** The address (host/port pair) of the pool */ + address: string; + + /** @internal */ + constructor(pool: ConnectionPool) { + this.time = new Date(); + this.address = pool.address; + } +} + +/** + * An event published when a connection pool is created + * @public + * @category Event + */ +export class ConnectionPoolCreatedEvent extends ConnectionPoolMonitoringEvent { + /** The options used to create this connection pool */ + options?: ConnectionPoolOptions; + + /** @internal */ + constructor(pool: ConnectionPool) { + super(pool); + this.options = pool.options; + } +} + +/** + * An event published when a connection pool is ready + * @public + * @category Event + */ +export class ConnectionPoolReadyEvent extends ConnectionPoolMonitoringEvent { + /** @internal */ + constructor(pool: ConnectionPool) { + super(pool); + } +} + +/** + * An event published when a connection pool is closed + * @public + * @category Event + */ +export class ConnectionPoolClosedEvent extends ConnectionPoolMonitoringEvent { + /** @internal */ + constructor(pool: ConnectionPool) { + super(pool); + } +} + +/** + * An event published when a connection pool creates a new connection + * @public + * @category Event + */ +export class ConnectionCreatedEvent extends ConnectionPoolMonitoringEvent { + /** A monotonically increasing, per-pool id for the newly created connection */ + connectionId: number | ''; + + /** @internal */ + constructor(pool: ConnectionPool, connection: { id: number | '' }) { + super(pool); + this.connectionId = connection.id; + } +} + +/** + * An event published when a connection is ready for use + * @public + * @category Event + */ +export class ConnectionReadyEvent extends ConnectionPoolMonitoringEvent { + /** The id of the connection */ + connectionId: number | ''; + + /** @internal */ + constructor(pool: ConnectionPool, connection: Connection) { + super(pool); + this.connectionId = connection.id; + } +} + +/** + * An event published when a connection is closed + * @public + * @category Event + */ +export class ConnectionClosedEvent extends ConnectionPoolMonitoringEvent { + /** The id of the connection */ + connectionId: number | ''; + /** The reason the connection was closed */ + reason: string; + serviceId?: ObjectId; + + /** @internal */ + constructor(pool: ConnectionPool, connection: Connection, reason: string) { + super(pool); + this.connectionId = connection.id; + this.reason = reason || 'unknown'; + this.serviceId = connection.serviceId; + } +} + +/** + * An event published when a request to check a connection out begins + * @public + * @category Event + */ +export class ConnectionCheckOutStartedEvent extends ConnectionPoolMonitoringEvent { + /** @internal */ + constructor(pool: ConnectionPool) { + super(pool); + } +} + +/** + * An event published when a request to check a connection out fails + * @public + * @category Event + */ +export class ConnectionCheckOutFailedEvent extends ConnectionPoolMonitoringEvent { + /** The reason the attempt to check out failed */ + reason: AnyError | string; + + /** @internal */ + constructor(pool: ConnectionPool, reason: AnyError | string) { + super(pool); + this.reason = reason; + } +} + +/** + * An event published when a connection is checked out of the connection pool + * @public + * @category Event + */ +export class ConnectionCheckedOutEvent extends ConnectionPoolMonitoringEvent { + /** The id of the connection */ + connectionId: number | ''; + + /** @internal */ + constructor(pool: ConnectionPool, connection: Connection) { + super(pool); + this.connectionId = connection.id; + } +} + +/** + * An event published when a connection is checked into the connection pool + * @public + * @category Event + */ +export class ConnectionCheckedInEvent extends ConnectionPoolMonitoringEvent { + /** The id of the connection */ + connectionId: number | ''; + + /** @internal */ + constructor(pool: ConnectionPool, connection: Connection) { + super(pool); + this.connectionId = connection.id; + } +} + +/** + * An event published when a connection pool is cleared + * @public + * @category Event + */ +export class ConnectionPoolClearedEvent extends ConnectionPoolMonitoringEvent { + /** @internal */ + serviceId?: ObjectId; + + /** @internal */ + constructor(pool: ConnectionPool, serviceId?: ObjectId) { + super(pool); + this.serviceId = serviceId; + } +} diff --git a/node_modules/mongodb/src/cmap/errors.ts b/node_modules/mongodb/src/cmap/errors.ts new file mode 100644 index 000000000..b2892715a --- /dev/null +++ b/node_modules/mongodb/src/cmap/errors.ts @@ -0,0 +1,58 @@ +import { MongoDriverError, MongoNetworkError } from '../error'; +import type { ConnectionPool } from './connection_pool'; + +/** + * An error indicating a connection pool is closed + * @category Error + */ +export class PoolClosedError extends MongoDriverError { + /** The address of the connection pool */ + address: string; + + constructor(pool: ConnectionPool) { + super('Attempted to check out a connection from closed connection pool'); + this.address = pool.address; + } + + override get name(): string { + return 'MongoPoolClosedError'; + } +} + +/** + * An error indicating a connection pool is currently paused + * @category Error + */ +export class PoolClearedError extends MongoNetworkError { + /** The address of the connection pool */ + address: string; + + constructor(pool: ConnectionPool) { + // TODO(NODE-3135): pass in original pool-clearing error and use in message + // "failed with: " + super(`Connection pool for ${pool.address} was cleared because another operation failed`); + this.address = pool.address; + } + + override get name(): string { + return 'MongoPoolClearedError'; + } +} + +/** + * An error thrown when a request to check out a connection times out + * @category Error + */ +export class WaitQueueTimeoutError extends MongoDriverError { + /** The address of the connection pool */ + address: string; + + constructor(message: string, address: string) { + super(message); + this.address = address; + } + + override get name(): string { + return 'MongoWaitQueueTimeoutError'; + } +} diff --git a/node_modules/mongodb/src/cmap/message_stream.ts b/node_modules/mongodb/src/cmap/message_stream.ts new file mode 100644 index 000000000..bf8cb3711 --- /dev/null +++ b/node_modules/mongodb/src/cmap/message_stream.ts @@ -0,0 +1,242 @@ +import { Duplex, DuplexOptions } from 'stream'; + +import type { BSONSerializeOptions, Document } from '../bson'; +import { MongoDecompressionError, MongoParseError } from '../error'; +import type { ClientSession } from '../sessions'; +import { BufferPool, Callback } from '../utils'; +import { BinMsg, MessageHeader, Msg, Response, WriteProtocolMessageType } from './commands'; +import { + compress, + Compressor, + CompressorName, + decompress, + uncompressibleCommands +} from './wire_protocol/compression'; +import { OP_COMPRESSED, OP_MSG } from './wire_protocol/constants'; + +const MESSAGE_HEADER_SIZE = 16; +const COMPRESSION_DETAILS_SIZE = 9; // originalOpcode + uncompressedSize, compressorID + +const kDefaultMaxBsonMessageSize = 1024 * 1024 * 16 * 4; +/** @internal */ +const kBuffer = Symbol('buffer'); + +/** @internal */ +export interface MessageStreamOptions extends DuplexOptions { + maxBsonMessageSize?: number; +} + +/** @internal */ +export interface OperationDescription extends BSONSerializeOptions { + started: number; + cb: Callback; + command: boolean; + documentsReturnedIn?: string; + noResponse: boolean; + raw: boolean; + requestId: number; + session?: ClientSession; + socketTimeoutOverride?: boolean; + agreedCompressor?: CompressorName; + zlibCompressionLevel?: number; + $clusterTime?: Document; +} + +/** + * A duplex stream that is capable of reading and writing raw wire protocol messages, with + * support for optional compression + * @internal + */ +export class MessageStream extends Duplex { + /** @internal */ + maxBsonMessageSize: number; + /** @internal */ + [kBuffer]: BufferPool; + /** @internal */ + isMonitoringConnection = false; + + constructor(options: MessageStreamOptions = {}) { + super(options); + this.maxBsonMessageSize = options.maxBsonMessageSize || kDefaultMaxBsonMessageSize; + this[kBuffer] = new BufferPool(); + } + + get buffer(): BufferPool { + return this[kBuffer]; + } + + override _write(chunk: Buffer, _: unknown, callback: Callback): void { + this[kBuffer].append(chunk); + processIncomingData(this, callback); + } + + override _read(/* size */): void { + // NOTE: This implementation is empty because we explicitly push data to be read + // when `writeMessage` is called. + return; + } + + writeCommand( + command: WriteProtocolMessageType, + operationDescription: OperationDescription + ): void { + // TODO: agreed compressor should live in `StreamDescription` + const compressorName: CompressorName = + operationDescription && operationDescription.agreedCompressor + ? operationDescription.agreedCompressor + : 'none'; + if (compressorName === 'none' || !canCompress(command)) { + const data = command.toBin(); + this.push(Array.isArray(data) ? Buffer.concat(data) : data); + return; + } + // otherwise, compress the message + const concatenatedOriginalCommandBuffer = Buffer.concat(command.toBin()); + const messageToBeCompressed = concatenatedOriginalCommandBuffer.slice(MESSAGE_HEADER_SIZE); + + // Extract information needed for OP_COMPRESSED from the uncompressed message + const originalCommandOpCode = concatenatedOriginalCommandBuffer.readInt32LE(12); + + // Compress the message body + compress({ options: operationDescription }, messageToBeCompressed, (err, compressedMessage) => { + if (err || !compressedMessage) { + operationDescription.cb(err); + return; + } + + // Create the msgHeader of OP_COMPRESSED + const msgHeader = Buffer.alloc(MESSAGE_HEADER_SIZE); + msgHeader.writeInt32LE( + MESSAGE_HEADER_SIZE + COMPRESSION_DETAILS_SIZE + compressedMessage.length, + 0 + ); // messageLength + msgHeader.writeInt32LE(command.requestId, 4); // requestID + msgHeader.writeInt32LE(0, 8); // responseTo (zero) + msgHeader.writeInt32LE(OP_COMPRESSED, 12); // opCode + + // Create the compression details of OP_COMPRESSED + const compressionDetails = Buffer.alloc(COMPRESSION_DETAILS_SIZE); + compressionDetails.writeInt32LE(originalCommandOpCode, 0); // originalOpcode + compressionDetails.writeInt32LE(messageToBeCompressed.length, 4); // Size of the uncompressed compressedMessage, excluding the MsgHeader + compressionDetails.writeUInt8(Compressor[compressorName], 8); // compressorID + this.push(Buffer.concat([msgHeader, compressionDetails, compressedMessage])); + }); + } +} + +// Return whether a command contains an uncompressible command term +// Will return true if command contains no uncompressible command terms +function canCompress(command: WriteProtocolMessageType) { + const commandDoc = command instanceof Msg ? command.command : command.query; + const commandName = Object.keys(commandDoc)[0]; + return !uncompressibleCommands.has(commandName); +} + +function processIncomingData(stream: MessageStream, callback: Callback) { + const buffer = stream[kBuffer]; + if (buffer.length < 4) { + callback(); + return; + } + + const sizeOfMessage = buffer.peek(4).readInt32LE(); + if (sizeOfMessage < 0) { + callback(new MongoParseError(`Invalid message size: ${sizeOfMessage}`)); + return; + } + + if (sizeOfMessage > stream.maxBsonMessageSize) { + callback( + new MongoParseError( + `Invalid message size: ${sizeOfMessage}, max allowed: ${stream.maxBsonMessageSize}` + ) + ); + return; + } + + if (sizeOfMessage > buffer.length) { + callback(); + return; + } + + const message = buffer.read(sizeOfMessage); + const messageHeader: MessageHeader = { + length: message.readInt32LE(0), + requestId: message.readInt32LE(4), + responseTo: message.readInt32LE(8), + opCode: message.readInt32LE(12) + }; + + const monitorHasAnotherHello = () => { + if (stream.isMonitoringConnection) { + // Can we read the next message size? + if (buffer.length >= 4) { + const sizeOfMessage = buffer.peek(4).readInt32LE(); + if (sizeOfMessage <= buffer.length) { + return true; + } + } + } + return false; + }; + + let ResponseType = messageHeader.opCode === OP_MSG ? BinMsg : Response; + if (messageHeader.opCode !== OP_COMPRESSED) { + const messageBody = message.slice(MESSAGE_HEADER_SIZE); + + // If we are a monitoring connection message stream and + // there is more in the buffer that can be read, skip processing since we + // want the last hello command response that is in the buffer. + if (monitorHasAnotherHello()) { + processIncomingData(stream, callback); + } else { + stream.emit('message', new ResponseType(message, messageHeader, messageBody)); + + if (buffer.length >= 4) { + processIncomingData(stream, callback); + } else { + callback(); + } + } + + return; + } + + messageHeader.fromCompressed = true; + messageHeader.opCode = message.readInt32LE(MESSAGE_HEADER_SIZE); + messageHeader.length = message.readInt32LE(MESSAGE_HEADER_SIZE + 4); + const compressorID: Compressor = message[MESSAGE_HEADER_SIZE + 8] as Compressor; + const compressedBuffer = message.slice(MESSAGE_HEADER_SIZE + 9); + + // recalculate based on wrapped opcode + ResponseType = messageHeader.opCode === OP_MSG ? BinMsg : Response; + decompress(compressorID, compressedBuffer, (err, messageBody) => { + if (err || !messageBody) { + callback(err); + return; + } + + if (messageBody.length !== messageHeader.length) { + callback( + new MongoDecompressionError('Message body and message header must be the same length') + ); + + return; + } + + // If we are a monitoring connection message stream and + // there is more in the buffer that can be read, skip processing since we + // want the last hello command response that is in the buffer. + if (monitorHasAnotherHello()) { + processIncomingData(stream, callback); + } else { + stream.emit('message', new ResponseType(message, messageHeader, messageBody)); + + if (buffer.length >= 4) { + processIncomingData(stream, callback); + } else { + callback(); + } + } + }); +} diff --git a/node_modules/mongodb/src/cmap/metrics.ts b/node_modules/mongodb/src/cmap/metrics.ts new file mode 100644 index 000000000..b825b5393 --- /dev/null +++ b/node_modules/mongodb/src/cmap/metrics.ts @@ -0,0 +1,58 @@ +/** @internal */ +export class ConnectionPoolMetrics { + static readonly TXN = 'txn' as const; + static readonly CURSOR = 'cursor' as const; + static readonly OTHER = 'other' as const; + + txnConnections = 0; + cursorConnections = 0; + otherConnections = 0; + + /** + * Mark a connection as pinned for a specific operation. + */ + markPinned(pinType: string): void { + if (pinType === ConnectionPoolMetrics.TXN) { + this.txnConnections += 1; + } else if (pinType === ConnectionPoolMetrics.CURSOR) { + this.cursorConnections += 1; + } else { + this.otherConnections += 1; + } + } + + /** + * Unmark a connection as pinned for an operation. + */ + markUnpinned(pinType: string): void { + if (pinType === ConnectionPoolMetrics.TXN) { + this.txnConnections -= 1; + } else if (pinType === ConnectionPoolMetrics.CURSOR) { + this.cursorConnections -= 1; + } else { + this.otherConnections -= 1; + } + } + + /** + * Return information about the cmap metrics as a string. + */ + info(maxPoolSize: number): string { + return ( + 'Timed out while checking out a connection from connection pool: ' + + `maxPoolSize: ${maxPoolSize}, ` + + `connections in use by cursors: ${this.cursorConnections}, ` + + `connections in use by transactions: ${this.txnConnections}, ` + + `connections in use by other operations: ${this.otherConnections}` + ); + } + + /** + * Reset the metrics to the initial values. + */ + reset(): void { + this.txnConnections = 0; + this.cursorConnections = 0; + this.otherConnections = 0; + } +} diff --git a/node_modules/mongodb/src/cmap/stream_description.ts b/node_modules/mongodb/src/cmap/stream_description.ts new file mode 100644 index 000000000..c5fbec0f4 --- /dev/null +++ b/node_modules/mongodb/src/cmap/stream_description.ts @@ -0,0 +1,76 @@ +import type { Document } from '../bson'; +import { ServerType } from '../sdam/common'; +import { parseServerType } from '../sdam/server_description'; +import type { CompressorName } from './wire_protocol/compression'; + +const RESPONSE_FIELDS = [ + 'minWireVersion', + 'maxWireVersion', + 'maxBsonObjectSize', + 'maxMessageSizeBytes', + 'maxWriteBatchSize', + 'logicalSessionTimeoutMinutes' +] as const; + +/** @public */ +export interface StreamDescriptionOptions { + compressors?: CompressorName[]; + logicalSessionTimeoutMinutes?: number; + loadBalanced: boolean; +} + +/** @public */ +export class StreamDescription { + address: string; + type: string; + minWireVersion?: number; + maxWireVersion?: number; + maxBsonObjectSize: number; + maxMessageSizeBytes: number; + maxWriteBatchSize: number; + compressors: CompressorName[]; + compressor?: CompressorName; + logicalSessionTimeoutMinutes?: number; + loadBalanced: boolean; + + __nodejs_mock_server__?: boolean; + + zlibCompressionLevel?: number; + + constructor(address: string, options?: StreamDescriptionOptions) { + this.address = address; + this.type = ServerType.Unknown; + this.minWireVersion = undefined; + this.maxWireVersion = undefined; + this.maxBsonObjectSize = 16777216; + this.maxMessageSizeBytes = 48000000; + this.maxWriteBatchSize = 100000; + this.logicalSessionTimeoutMinutes = options?.logicalSessionTimeoutMinutes; + this.loadBalanced = !!options?.loadBalanced; + this.compressors = + options && options.compressors && Array.isArray(options.compressors) + ? options.compressors + : []; + } + + receiveResponse(response: Document | null): void { + if (response == null) { + return; + } + this.type = parseServerType(response); + for (const field of RESPONSE_FIELDS) { + if (response[field] != null) { + this[field] = response[field]; + } + + // testing case + if ('__nodejs_mock_server__' in response) { + this.__nodejs_mock_server__ = response['__nodejs_mock_server__']; + } + } + + if (response.compression) { + this.compressor = this.compressors.filter(c => response.compression?.includes(c))[0]; + } + } +} diff --git a/node_modules/mongodb/src/cmap/wire_protocol/compression.ts b/node_modules/mongodb/src/cmap/wire_protocol/compression.ts new file mode 100644 index 000000000..68e1af545 --- /dev/null +++ b/node_modules/mongodb/src/cmap/wire_protocol/compression.ts @@ -0,0 +1,130 @@ +import * as zlib from 'zlib'; + +import { LEGACY_HELLO_COMMAND } from '../../constants'; +import { PKG_VERSION, Snappy, ZStandard } from '../../deps'; +import { MongoDecompressionError, MongoInvalidArgumentError } from '../../error'; +import type { Callback } from '../../utils'; +import type { OperationDescription } from '../message_stream'; + +/** @public */ +export const Compressor = Object.freeze({ + none: 0, + snappy: 1, + zlib: 2, + zstd: 3 +} as const); + +/** @public */ +export type Compressor = typeof Compressor[CompressorName]; + +/** @public */ +export type CompressorName = keyof typeof Compressor; + +export const uncompressibleCommands = new Set([ + LEGACY_HELLO_COMMAND, + 'saslStart', + 'saslContinue', + 'getnonce', + 'authenticate', + 'createUser', + 'updateUser', + 'copydbSaslStart', + 'copydbgetnonce', + 'copydb' +]); + +const MAX_COMPRESSOR_ID = 3; +const ZSTD_COMPRESSION_LEVEL = 3; + +// Facilitate compressing a message using an agreed compressor +export function compress( + self: { options: OperationDescription & zlib.ZlibOptions }, + dataToBeCompressed: Buffer, + callback: Callback +): void { + const zlibOptions = {} as zlib.ZlibOptions; + switch (self.options.agreedCompressor) { + case 'snappy': { + if ('kModuleError' in Snappy) { + return callback(Snappy['kModuleError']); + } + + if (Snappy[PKG_VERSION].major <= 6) { + Snappy.compress(dataToBeCompressed, callback); + } else { + Snappy.compress(dataToBeCompressed).then( + buffer => callback(undefined, buffer), + error => callback(error) + ); + } + break; + } + case 'zlib': + // Determine zlibCompressionLevel + if (self.options.zlibCompressionLevel) { + zlibOptions.level = self.options.zlibCompressionLevel; + } + zlib.deflate(dataToBeCompressed, zlibOptions, callback as zlib.CompressCallback); + break; + case 'zstd': + if ('kModuleError' in ZStandard) { + return callback(ZStandard['kModuleError']); + } + ZStandard.compress(dataToBeCompressed, ZSTD_COMPRESSION_LEVEL).then( + buffer => callback(undefined, buffer), + error => callback(error) + ); + break; + default: + throw new MongoInvalidArgumentError( + `Unknown compressor ${self.options.agreedCompressor} failed to compress` + ); + } +} + +// Decompress a message using the given compressor +export function decompress( + compressorID: Compressor, + compressedData: Buffer, + callback: Callback +): void { + if (compressorID < 0 || compressorID > MAX_COMPRESSOR_ID) { + throw new MongoDecompressionError( + `Server sent message compressed using an unsupported compressor. (Received compressor ID ${compressorID})` + ); + } + + switch (compressorID) { + case Compressor.snappy: { + if ('kModuleError' in Snappy) { + return callback(Snappy['kModuleError']); + } + + if (Snappy[PKG_VERSION].major <= 6) { + Snappy.uncompress(compressedData, { asBuffer: true }, callback); + } else { + Snappy.uncompress(compressedData, { asBuffer: true }).then( + buffer => callback(undefined, buffer), + error => callback(error) + ); + } + break; + } + case Compressor.zstd: { + if ('kModuleError' in ZStandard) { + return callback(ZStandard['kModuleError']); + } + + ZStandard.decompress(compressedData).then( + buffer => callback(undefined, buffer), + error => callback(error) + ); + break; + } + case Compressor.zlib: + zlib.inflate(compressedData, callback as zlib.CompressCallback); + break; + default: + callback(undefined, compressedData); + } +} diff --git a/node_modules/mongodb/src/cmap/wire_protocol/constants.ts b/node_modules/mongodb/src/cmap/wire_protocol/constants.ts new file mode 100644 index 000000000..75c26d7f6 --- /dev/null +++ b/node_modules/mongodb/src/cmap/wire_protocol/constants.ts @@ -0,0 +1,11 @@ +export const MIN_SUPPORTED_SERVER_VERSION = '3.6'; +export const MAX_SUPPORTED_SERVER_VERSION = '6.0'; +export const MIN_SUPPORTED_WIRE_VERSION = 6; +export const MAX_SUPPORTED_WIRE_VERSION = 17; +export const OP_REPLY = 1; +export const OP_UPDATE = 2001; +export const OP_INSERT = 2002; +export const OP_QUERY = 2004; +export const OP_DELETE = 2006; +export const OP_COMPRESSED = 2012; +export const OP_MSG = 2013; diff --git a/node_modules/mongodb/src/cmap/wire_protocol/shared.ts b/node_modules/mongodb/src/cmap/wire_protocol/shared.ts new file mode 100644 index 000000000..bc13ff6d8 --- /dev/null +++ b/node_modules/mongodb/src/cmap/wire_protocol/shared.ts @@ -0,0 +1,76 @@ +import type { Document } from '../../bson'; +import { MongoInvalidArgumentError } from '../../error'; +import type { ReadPreferenceLike } from '../../read_preference'; +import { ReadPreference } from '../../read_preference'; +import { ServerType } from '../../sdam/common'; +import type { Server } from '../../sdam/server'; +import type { ServerDescription } from '../../sdam/server_description'; +import type { Topology } from '../../sdam/topology'; +import { TopologyDescription } from '../../sdam/topology_description'; +import type { OpQueryOptions } from '../commands'; +import type { CommandOptions, Connection } from '../connection'; + +export interface ReadPreferenceOption { + readPreference?: ReadPreferenceLike; +} + +export function getReadPreference(cmd: Document, options?: ReadPreferenceOption): ReadPreference { + // Default to command version of the readPreference + let readPreference = cmd.readPreference || ReadPreference.primary; + // If we have an option readPreference override the command one + if (options?.readPreference) { + readPreference = options.readPreference; + } + + if (typeof readPreference === 'string') { + readPreference = ReadPreference.fromString(readPreference); + } + + if (!(readPreference instanceof ReadPreference)) { + throw new MongoInvalidArgumentError( + 'Option "readPreference" must be a ReadPreference instance' + ); + } + + return readPreference; +} + +export function applyCommonQueryOptions( + queryOptions: OpQueryOptions, + options: CommandOptions +): CommandOptions { + Object.assign(queryOptions, { + raw: typeof options.raw === 'boolean' ? options.raw : false, + promoteLongs: typeof options.promoteLongs === 'boolean' ? options.promoteLongs : true, + promoteValues: typeof options.promoteValues === 'boolean' ? options.promoteValues : true, + promoteBuffers: typeof options.promoteBuffers === 'boolean' ? options.promoteBuffers : false, + bsonRegExp: typeof options.bsonRegExp === 'boolean' ? options.bsonRegExp : false, + enableUtf8Validation: + typeof options.enableUtf8Validation === 'boolean' ? options.enableUtf8Validation : true + }); + + if (options.session) { + queryOptions.session = options.session; + } + + return queryOptions; +} + +export function isSharded(topologyOrServer?: Topology | Server | Connection): boolean { + if (topologyOrServer == null) { + return false; + } + + if (topologyOrServer.description && topologyOrServer.description.type === ServerType.Mongos) { + return true; + } + + // NOTE: This is incredibly inefficient, and should be removed once command construction + // happens based on `Server` not `Topology`. + if (topologyOrServer.description && topologyOrServer.description instanceof TopologyDescription) { + const servers: ServerDescription[] = Array.from(topologyOrServer.description.servers.values()); + return servers.some((server: ServerDescription) => server.type === ServerType.Mongos); + } + + return false; +} diff --git a/node_modules/mongodb/src/collection.ts b/node_modules/mongodb/src/collection.ts new file mode 100644 index 000000000..7f9f0f465 --- /dev/null +++ b/node_modules/mongodb/src/collection.ts @@ -0,0 +1,1757 @@ +import { BSONSerializeOptions, Document, resolveBSONOptions } from './bson'; +import type { AnyBulkWriteOperation, BulkWriteOptions, BulkWriteResult } from './bulk/common'; +import { OrderedBulkOperation } from './bulk/ordered'; +import { UnorderedBulkOperation } from './bulk/unordered'; +import { ChangeStream, ChangeStreamDocument, ChangeStreamOptions } from './change_stream'; +import { AggregationCursor } from './cursor/aggregation_cursor'; +import { FindCursor } from './cursor/find_cursor'; +import { ListIndexesCursor } from './cursor/list_indexes_cursor'; +import type { Db } from './db'; +import { MongoInvalidArgumentError } from './error'; +import type { Logger, LoggerOptions } from './logger'; +import type { PkFactory } from './mongo_client'; +import type { + Filter, + Flatten, + OptionalUnlessRequiredId, + TODO_NODE_3286, + UpdateFilter, + WithId, + WithoutId +} from './mongo_types'; +import type { AggregateOptions } from './operations/aggregate'; +import { BulkWriteOperation } from './operations/bulk_write'; +import type { IndexInformationOptions } from './operations/common_functions'; +import { CountOperation, CountOptions } from './operations/count'; +import { CountDocumentsOperation, CountDocumentsOptions } from './operations/count_documents'; +import { + DeleteManyOperation, + DeleteOneOperation, + DeleteOptions, + DeleteResult +} from './operations/delete'; +import { DistinctOperation, DistinctOptions } from './operations/distinct'; +import { DropCollectionOperation, DropCollectionOptions } from './operations/drop'; +import { + EstimatedDocumentCountOperation, + EstimatedDocumentCountOptions +} from './operations/estimated_document_count'; +import { executeOperation } from './operations/execute_operation'; +import type { FindOptions } from './operations/find'; +import { + FindOneAndDeleteOperation, + FindOneAndDeleteOptions, + FindOneAndReplaceOperation, + FindOneAndReplaceOptions, + FindOneAndUpdateOperation, + FindOneAndUpdateOptions +} from './operations/find_and_modify'; +import { + CreateIndexesOperation, + CreateIndexesOptions, + CreateIndexOperation, + DropIndexesOperation, + DropIndexesOptions, + DropIndexOperation, + IndexDescription, + IndexesOperation, + IndexExistsOperation, + IndexInformationOperation, + IndexSpecification, + ListIndexesOptions +} from './operations/indexes'; +import { + InsertManyOperation, + InsertManyResult, + InsertOneOperation, + InsertOneOptions, + InsertOneResult +} from './operations/insert'; +import { IsCappedOperation } from './operations/is_capped'; +import { + MapFunction, + MapReduceOperation, + MapReduceOptions, + ReduceFunction +} from './operations/map_reduce'; +import type { Hint, OperationOptions } from './operations/operation'; +import { OptionsOperation } from './operations/options_operation'; +import { RenameOperation, RenameOptions } from './operations/rename'; +import { CollStats, CollStatsOperation, CollStatsOptions } from './operations/stats'; +import { + ReplaceOneOperation, + ReplaceOptions, + UpdateManyOperation, + UpdateOneOperation, + UpdateOptions, + UpdateResult +} from './operations/update'; +import { ReadConcern, ReadConcernLike } from './read_concern'; +import { ReadPreference, ReadPreferenceLike } from './read_preference'; +import { + Callback, + checkCollectionName, + DEFAULT_PK_FACTORY, + emitWarningOnce, + MongoDBNamespace, + normalizeHintField, + resolveOptions +} from './utils'; +import { WriteConcern, WriteConcernOptions } from './write_concern'; + +/** @public */ +export interface ModifyResult { + value: WithId | null; + lastErrorObject?: Document; + ok: 0 | 1; +} + +/** @public */ +export interface CollectionOptions + extends BSONSerializeOptions, + WriteConcernOptions, + LoggerOptions { + /** + * @deprecated Use readPreference instead + */ + slaveOk?: boolean; + /** Specify a read concern for the collection. (only MongoDB 3.2 or higher supported) */ + readConcern?: ReadConcernLike; + /** The preferred read preference (ReadPreference.PRIMARY, ReadPreference.PRIMARY_PREFERRED, ReadPreference.SECONDARY, ReadPreference.SECONDARY_PREFERRED, ReadPreference.NEAREST). */ + readPreference?: ReadPreferenceLike; +} + +/** @internal */ +export interface CollectionPrivate { + pkFactory: PkFactory; + db: Db; + options: any; + namespace: MongoDBNamespace; + readPreference?: ReadPreference; + bsonOptions: BSONSerializeOptions; + collectionHint?: Hint; + readConcern?: ReadConcern; + writeConcern?: WriteConcern; +} + +/** + * The **Collection** class is an internal class that embodies a MongoDB collection + * allowing for insert/find/update/delete and other command operation on that MongoDB collection. + * + * **COLLECTION Cannot directly be instantiated** + * @public + * + * @example + * ```ts + * import { MongoClient } from 'mongodb'; + * + * interface Pet { + * name: string; + * kind: 'dog' | 'cat' | 'fish'; + * } + * + * const client = new MongoClient('mongodb://localhost:27017'); + * const pets = client.db().collection('pets'); + * + * const petCursor = pets.find(); + * + * for await (const pet of petCursor) { + * console.log(`${pet.name} is a ${pet.kind}!`); + * } + * ``` + */ +export class Collection { + /** @internal */ + s: CollectionPrivate; + + /** + * Create a new Collection instance + * @internal + */ + constructor(db: Db, name: string, options?: CollectionOptions) { + checkCollectionName(name); + + // Internal state + this.s = { + db, + options, + namespace: new MongoDBNamespace(db.databaseName, name), + pkFactory: db.options?.pkFactory ?? DEFAULT_PK_FACTORY, + readPreference: ReadPreference.fromOptions(options), + bsonOptions: resolveBSONOptions(options, db), + readConcern: ReadConcern.fromOptions(options), + writeConcern: WriteConcern.fromOptions(options) + }; + } + + /** + * The name of the database this collection belongs to + */ + get dbName(): string { + return this.s.namespace.db; + } + + /** + * The name of this collection + */ + get collectionName(): string { + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + return this.s.namespace.collection!; + } + + /** + * The namespace of this collection, in the format `${this.dbName}.${this.collectionName}` + */ + get namespace(): string { + return this.s.namespace.toString(); + } + + /** + * The current readConcern of the collection. If not explicitly defined for + * this collection, will be inherited from the parent DB + */ + get readConcern(): ReadConcern | undefined { + if (this.s.readConcern == null) { + return this.s.db.readConcern; + } + return this.s.readConcern; + } + + /** + * The current readPreference of the collection. If not explicitly defined for + * this collection, will be inherited from the parent DB + */ + get readPreference(): ReadPreference | undefined { + if (this.s.readPreference == null) { + return this.s.db.readPreference; + } + + return this.s.readPreference; + } + + get bsonOptions(): BSONSerializeOptions { + return this.s.bsonOptions; + } + + /** + * The current writeConcern of the collection. If not explicitly defined for + * this collection, will be inherited from the parent DB + */ + get writeConcern(): WriteConcern | undefined { + if (this.s.writeConcern == null) { + return this.s.db.writeConcern; + } + return this.s.writeConcern; + } + + /** The current index hint for the collection */ + get hint(): Hint | undefined { + return this.s.collectionHint; + } + + set hint(v: Hint | undefined) { + this.s.collectionHint = normalizeHintField(v); + } + + /** + * Inserts a single document into MongoDB. If documents passed in do not contain the **_id** field, + * one will be added to each of the documents missing it by the driver, mutating the document. This behavior + * can be overridden by setting the **forceServerObjectId** flag. + * + * @param doc - The document to insert + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + insertOne(doc: OptionalUnlessRequiredId): Promise>; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + insertOne( + doc: OptionalUnlessRequiredId, + callback: Callback> + ): void; + insertOne( + doc: OptionalUnlessRequiredId, + options: InsertOneOptions + ): Promise>; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + insertOne( + doc: OptionalUnlessRequiredId, + options: InsertOneOptions, + callback: Callback> + ): void; + insertOne( + doc: OptionalUnlessRequiredId, + options?: InsertOneOptions | Callback>, + callback?: Callback> + ): Promise> | void { + if (typeof options === 'function') { + callback = options; + options = {}; + } + + // CSFLE passes in { w: 'majority' } to ensure the lib works in both 3.x and 4.x + // we support that option style here only + if (options && Reflect.get(options, 'w')) { + options.writeConcern = WriteConcern.fromOptions(Reflect.get(options, 'w')); + } + + return executeOperation( + this.s.db.s.client, + new InsertOneOperation( + this as TODO_NODE_3286, + doc, + resolveOptions(this, options) + ) as TODO_NODE_3286, + callback + ); + } + + /** + * Inserts an array of documents into MongoDB. If documents passed in do not contain the **_id** field, + * one will be added to each of the documents missing it by the driver, mutating the document. This behavior + * can be overridden by setting the **forceServerObjectId** flag. + * + * @param docs - The documents to insert + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + insertMany(docs: OptionalUnlessRequiredId[]): Promise>; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + insertMany( + docs: OptionalUnlessRequiredId[], + callback: Callback> + ): void; + insertMany( + docs: OptionalUnlessRequiredId[], + options: BulkWriteOptions + ): Promise>; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + insertMany( + docs: OptionalUnlessRequiredId[], + options: BulkWriteOptions, + callback: Callback> + ): void; + insertMany( + docs: OptionalUnlessRequiredId[], + options?: BulkWriteOptions | Callback>, + callback?: Callback> + ): Promise> | void { + if (typeof options === 'function') (callback = options), (options = {}); + options = options ? Object.assign({}, options) : { ordered: true }; + + return executeOperation( + this.s.db.s.client, + new InsertManyOperation( + this as TODO_NODE_3286, + docs, + resolveOptions(this, options) + ) as TODO_NODE_3286, + callback + ); + } + + /** + * Perform a bulkWrite operation without a fluent API + * + * Legal operation types are + * - `insertOne` + * - `replaceOne` + * - `updateOne` + * - `updateMany` + * - `deleteOne` + * - `deleteMany` + * + * Please note that raw operations are no longer accepted as of driver version 4.0. + * + * If documents passed in do not contain the **_id** field, + * one will be added to each of the documents missing it by the driver, mutating the document. This behavior + * can be overridden by setting the **forceServerObjectId** flag. + * + * @param operations - Bulk operations to perform + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + * @throws MongoDriverError if operations is not an array + */ + bulkWrite(operations: AnyBulkWriteOperation[]): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + bulkWrite( + operations: AnyBulkWriteOperation[], + callback: Callback + ): void; + bulkWrite( + operations: AnyBulkWriteOperation[], + options: BulkWriteOptions + ): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + bulkWrite( + operations: AnyBulkWriteOperation[], + options: BulkWriteOptions, + callback: Callback + ): void; + bulkWrite( + operations: AnyBulkWriteOperation[], + options?: BulkWriteOptions | Callback, + callback?: Callback + ): Promise | void { + if (typeof options === 'function') (callback = options), (options = {}); + options = options || { ordered: true }; + + if (!Array.isArray(operations)) { + throw new MongoInvalidArgumentError('Argument "operations" must be an array of documents'); + } + + return executeOperation( + this.s.db.s.client, + new BulkWriteOperation( + this as TODO_NODE_3286, + operations as TODO_NODE_3286, + resolveOptions(this, options) + ), + callback + ); + } + + /** + * Update a single document in a collection + * + * @param filter - The filter used to select the document to update + * @param update - The update operations to be applied to the document + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + updateOne( + filter: Filter, + update: UpdateFilter | Partial + ): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + updateOne( + filter: Filter, + update: UpdateFilter | Partial, + callback: Callback + ): void; + updateOne( + filter: Filter, + update: UpdateFilter | Partial, + options: UpdateOptions + ): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + updateOne( + filter: Filter, + update: UpdateFilter | Partial, + options: UpdateOptions, + callback: Callback + ): void; + updateOne( + filter: Filter, + update: UpdateFilter | Partial, + options?: UpdateOptions | Callback, + callback?: Callback + ): Promise | void { + if (typeof options === 'function') (callback = options), (options = {}); + + return executeOperation( + this.s.db.s.client, + new UpdateOneOperation( + this as TODO_NODE_3286, + filter, + update, + resolveOptions(this, options) + ) as TODO_NODE_3286, + callback + ); + } + + /** + * Replace a document in a collection with another document + * + * @param filter - The filter used to select the document to replace + * @param replacement - The Document that replaces the matching document + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + replaceOne( + filter: Filter, + replacement: WithoutId + ): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + replaceOne( + filter: Filter, + replacement: WithoutId, + callback: Callback + ): void; + replaceOne( + filter: Filter, + replacement: WithoutId, + options: ReplaceOptions + ): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + replaceOne( + filter: Filter, + replacement: WithoutId, + options: ReplaceOptions, + callback: Callback + ): void; + replaceOne( + filter: Filter, + replacement: WithoutId, + options?: ReplaceOptions | Callback, + callback?: Callback + ): Promise | void { + if (typeof options === 'function') (callback = options), (options = {}); + + return executeOperation( + this.s.db.s.client, + new ReplaceOneOperation( + this as TODO_NODE_3286, + filter, + replacement, + resolveOptions(this, options) + ), + callback + ); + } + + /** + * Update multiple documents in a collection + * + * @param filter - The filter used to select the documents to update + * @param update - The update operations to be applied to the documents + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + updateMany( + filter: Filter, + update: UpdateFilter + ): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + updateMany( + filter: Filter, + update: UpdateFilter, + callback: Callback + ): void; + updateMany( + filter: Filter, + update: UpdateFilter, + options: UpdateOptions + ): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + updateMany( + filter: Filter, + update: UpdateFilter, + options: UpdateOptions, + callback: Callback + ): void; + updateMany( + filter: Filter, + update: UpdateFilter, + options?: UpdateOptions | Callback, + callback?: Callback + ): Promise | void { + if (typeof options === 'function') (callback = options), (options = {}); + + return executeOperation( + this.s.db.s.client, + new UpdateManyOperation( + this as TODO_NODE_3286, + filter, + update, + resolveOptions(this, options) + ), + callback + ); + } + + /** + * Delete a document from a collection + * + * @param filter - The filter used to select the document to remove + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + deleteOne(filter: Filter): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + deleteOne(filter: Filter, callback: Callback): void; + deleteOne(filter: Filter, options: DeleteOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + deleteOne( + filter: Filter, + options: DeleteOptions, + callback?: Callback + ): void; + deleteOne( + filter: Filter, + options?: DeleteOptions | Callback, + callback?: Callback + ): Promise | void { + if (typeof options === 'function') (callback = options), (options = {}); + + return executeOperation( + this.s.db.s.client, + new DeleteOneOperation(this as TODO_NODE_3286, filter, resolveOptions(this, options)), + callback + ); + } + + /** + * Delete multiple documents from a collection + * + * @param filter - The filter used to select the documents to remove + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + deleteMany(filter: Filter): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + deleteMany(filter: Filter, callback: Callback): void; + deleteMany(filter: Filter, options: DeleteOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + deleteMany( + filter: Filter, + options: DeleteOptions, + callback: Callback + ): void; + deleteMany( + filter: Filter, + options?: DeleteOptions | Callback, + callback?: Callback + ): Promise | void { + if (filter == null) { + filter = {}; + options = {}; + callback = undefined; + } else if (typeof filter === 'function') { + callback = filter as Callback; + filter = {}; + options = {}; + } else if (typeof options === 'function') { + callback = options; + options = {}; + } + + return executeOperation( + this.s.db.s.client, + new DeleteManyOperation(this as TODO_NODE_3286, filter, resolveOptions(this, options)), + callback + ); + } + + /** + * Rename the collection. + * + * @remarks + * This operation does not inherit options from the Db or MongoClient. + * + * @param newName - New name of of the collection. + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + rename(newName: string): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + rename(newName: string, callback: Callback): void; + rename(newName: string, options: RenameOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + rename(newName: string, options: RenameOptions, callback: Callback): void; + rename( + newName: string, + options?: RenameOptions | Callback, + callback?: Callback + ): Promise | void { + if (typeof options === 'function') (callback = options), (options = {}); + + // Intentionally, we do not inherit options from parent for this operation. + return executeOperation( + this.s.db.s.client, + new RenameOperation(this as TODO_NODE_3286, newName, { + ...options, + readPreference: ReadPreference.PRIMARY + }), + callback + ); + } + + /** + * Drop the collection from the database, removing it permanently. New accesses will create a new collection. + * + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + drop(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + drop(callback: Callback): void; + drop(options: DropCollectionOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + drop(options: DropCollectionOptions, callback: Callback): void; + drop( + options?: DropCollectionOptions | Callback, + callback?: Callback + ): Promise | void { + if (typeof options === 'function') (callback = options), (options = {}); + options = options ?? {}; + + return executeOperation( + this.s.db.s.client, + new DropCollectionOperation(this.s.db, this.collectionName, options), + callback + ); + } + + /** + * Fetches the first document that matches the filter + * + * @param filter - Query for find Operation + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + findOne(): Promise | null>; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + findOne(callback: Callback | null>): void; + findOne(filter: Filter): Promise | null>; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + findOne(filter: Filter, callback: Callback | null>): void; + findOne(filter: Filter, options: FindOptions): Promise | null>; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + findOne( + filter: Filter, + options: FindOptions, + callback: Callback | null> + ): void; + + // allow an override of the schema. + findOne(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + findOne(callback: Callback): void; + findOne(filter: Filter): Promise; + findOne(filter: Filter, options?: FindOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + findOne( + filter: Filter, + options?: FindOptions, + callback?: Callback + ): void; + + findOne( + filter?: Filter | Callback | null>, + options?: FindOptions | Callback | null>, + callback?: Callback | null> + ): Promise | null> | void { + if (callback != null && typeof callback !== 'function') { + throw new MongoInvalidArgumentError( + 'Third parameter to `findOne()` must be a callback or undefined' + ); + } + + if (typeof filter === 'function') { + callback = filter; + filter = {}; + options = {}; + } + if (typeof options === 'function') { + callback = options; + options = {}; + } + + const finalFilter = filter ?? {}; + const finalOptions = options ?? {}; + return this.find(finalFilter, finalOptions).limit(-1).batchSize(1).next(callback); + } + + /** + * Creates a cursor for a filter that can be used to iterate over results from MongoDB + * + * @param filter - The filter predicate. If unspecified, then all documents in the collection will match the predicate + */ + find(): FindCursor>; + find(filter: Filter, options?: FindOptions): FindCursor>; + find(filter: Filter, options?: FindOptions): FindCursor; + find(filter?: Filter, options?: FindOptions): FindCursor> { + if (arguments.length > 2) { + throw new MongoInvalidArgumentError( + 'Method "collection.find()" accepts at most two arguments' + ); + } + if (typeof options === 'function') { + throw new MongoInvalidArgumentError('Argument "options" must not be function'); + } + + return new FindCursor>( + this.s.db.s.client, + this.s.namespace, + filter, + resolveOptions(this as TODO_NODE_3286, options) + ); + } + + /** + * Returns the options of the collection. + * + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + options(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + options(callback: Callback): void; + options(options: OperationOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + options(options: OperationOptions, callback: Callback): void; + options( + options?: OperationOptions | Callback, + callback?: Callback + ): Promise | void { + if (typeof options === 'function') (callback = options), (options = {}); + + return executeOperation( + this.s.db.s.client, + new OptionsOperation(this as TODO_NODE_3286, resolveOptions(this, options)), + callback + ); + } + + /** + * Returns if the collection is a capped collection + * + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + isCapped(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + isCapped(callback: Callback): void; + isCapped(options: OperationOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + isCapped(options: OperationOptions, callback: Callback): void; + isCapped( + options?: OperationOptions | Callback, + callback?: Callback + ): Promise | void { + if (typeof options === 'function') (callback = options), (options = {}); + + return executeOperation( + this.s.db.s.client, + new IsCappedOperation(this as TODO_NODE_3286, resolveOptions(this, options)), + callback + ); + } + + /** + * Creates an index on the db and collection collection. + * + * @param indexSpec - The field name or index specification to create an index for + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + * + * @example + * ```ts + * const collection = client.db('foo').collection('bar'); + * + * await collection.createIndex({ a: 1, b: -1 }); + * + * // Alternate syntax for { c: 1, d: -1 } that ensures order of indexes + * await collection.createIndex([ [c, 1], [d, -1] ]); + * + * // Equivalent to { e: 1 } + * await collection.createIndex('e'); + * + * // Equivalent to { f: 1, g: 1 } + * await collection.createIndex(['f', 'g']) + * + * // Equivalent to { h: 1, i: -1 } + * await collection.createIndex([ { h: 1 }, { i: -1 } ]); + * + * // Equivalent to { j: 1, k: -1, l: 2d } + * await collection.createIndex(['j', ['k', -1], { l: '2d' }]) + * ``` + */ + createIndex(indexSpec: IndexSpecification): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + createIndex(indexSpec: IndexSpecification, callback: Callback): void; + createIndex(indexSpec: IndexSpecification, options: CreateIndexesOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + createIndex( + indexSpec: IndexSpecification, + options: CreateIndexesOptions, + callback: Callback + ): void; + createIndex( + indexSpec: IndexSpecification, + options?: CreateIndexesOptions | Callback, + callback?: Callback + ): Promise | void { + if (typeof options === 'function') (callback = options), (options = {}); + + return executeOperation( + this.s.db.s.client, + new CreateIndexOperation( + this as TODO_NODE_3286, + this.collectionName, + indexSpec, + resolveOptions(this, options) + ), + callback + ); + } + + /** + * Creates multiple indexes in the collection, this method is only supported for + * MongoDB 2.6 or higher. Earlier version of MongoDB will throw a command not supported + * error. + * + * **Note**: Unlike {@link Collection#createIndex| createIndex}, this function takes in raw index specifications. + * Index specifications are defined {@link http://docs.mongodb.org/manual/reference/command/createIndexes/| here}. + * + * @param indexSpecs - An array of index specifications to be created + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + * + * @example + * ```ts + * const collection = client.db('foo').collection('bar'); + * await collection.createIndexes([ + * // Simple index on field fizz + * { + * key: { fizz: 1 }, + * } + * // wildcard index + * { + * key: { '$**': 1 } + * }, + * // named index on darmok and jalad + * { + * key: { darmok: 1, jalad: -1 } + * name: 'tanagra' + * } + * ]); + * ``` + */ + createIndexes(indexSpecs: IndexDescription[]): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + createIndexes(indexSpecs: IndexDescription[], callback: Callback): void; + createIndexes(indexSpecs: IndexDescription[], options: CreateIndexesOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + createIndexes( + indexSpecs: IndexDescription[], + options: CreateIndexesOptions, + callback: Callback + ): void; + createIndexes( + indexSpecs: IndexDescription[], + options?: CreateIndexesOptions | Callback, + callback?: Callback + ): Promise | void { + if (typeof options === 'function') (callback = options), (options = {}); + options = options ? Object.assign({}, options) : {}; + if (typeof options.maxTimeMS !== 'number') delete options.maxTimeMS; + + return executeOperation( + this.s.db.s.client, + new CreateIndexesOperation( + this as TODO_NODE_3286, + this.collectionName, + indexSpecs, + resolveOptions(this, options) + ), + callback + ); + } + + /** + * Drops an index from this collection. + * + * @param indexName - Name of the index to drop. + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + dropIndex(indexName: string): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + dropIndex(indexName: string, callback: Callback): void; + dropIndex(indexName: string, options: DropIndexesOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + dropIndex(indexName: string, options: DropIndexesOptions, callback: Callback): void; + dropIndex( + indexName: string, + options?: DropIndexesOptions | Callback, + callback?: Callback + ): Promise | void { + if (typeof options === 'function') (callback = options), (options = {}); + options = resolveOptions(this, options); + + // Run only against primary + options.readPreference = ReadPreference.primary; + + return executeOperation( + this.s.db.s.client, + new DropIndexOperation(this as TODO_NODE_3286, indexName, options), + callback + ); + } + + /** + * Drops all indexes from this collection. + * + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + dropIndexes(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + dropIndexes(callback: Callback): void; + dropIndexes(options: DropIndexesOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + dropIndexes(options: DropIndexesOptions, callback: Callback): void; + dropIndexes( + options?: DropIndexesOptions | Callback, + callback?: Callback + ): Promise | void { + if (typeof options === 'function') (callback = options), (options = {}); + + return executeOperation( + this.s.db.s.client, + new DropIndexesOperation(this as TODO_NODE_3286, resolveOptions(this, options)), + callback + ); + } + + /** + * Get the list of all indexes information for the collection. + * + * @param options - Optional settings for the command + */ + listIndexes(options?: ListIndexesOptions): ListIndexesCursor { + return new ListIndexesCursor(this as TODO_NODE_3286, resolveOptions(this, options)); + } + + /** + * Checks if one or more indexes exist on the collection, fails on first non-existing index + * + * @param indexes - One or more index names to check. + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + indexExists(indexes: string | string[]): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + indexExists(indexes: string | string[], callback: Callback): void; + indexExists(indexes: string | string[], options: IndexInformationOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + indexExists( + indexes: string | string[], + options: IndexInformationOptions, + callback: Callback + ): void; + indexExists( + indexes: string | string[], + options?: IndexInformationOptions | Callback, + callback?: Callback + ): Promise | void { + if (typeof options === 'function') (callback = options), (options = {}); + + return executeOperation( + this.s.db.s.client, + new IndexExistsOperation(this as TODO_NODE_3286, indexes, resolveOptions(this, options)), + callback + ); + } + + /** + * Retrieves this collections index info. + * + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + indexInformation(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + indexInformation(callback: Callback): void; + indexInformation(options: IndexInformationOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + indexInformation(options: IndexInformationOptions, callback: Callback): void; + indexInformation( + options?: IndexInformationOptions | Callback, + callback?: Callback + ): Promise | void { + if (typeof options === 'function') (callback = options), (options = {}); + + return executeOperation( + this.s.db.s.client, + new IndexInformationOperation(this.s.db, this.collectionName, resolveOptions(this, options)), + callback + ); + } + + /** + * Gets an estimate of the count of documents in a collection using collection metadata. + * This will always run a count command on all server versions. + * + * due to an oversight in versions 5.0.0-5.0.8 of MongoDB, the count command, + * which estimatedDocumentCount uses in its implementation, was not included in v1 of + * the Stable API, and so users of the Stable API with estimatedDocumentCount are + * recommended to upgrade their server version to 5.0.9+ or set apiStrict: false to avoid + * encountering errors. + * + * @see {@link https://www.mongodb.com/docs/manual/reference/command/count/#behavior|Count: Behavior} + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + estimatedDocumentCount(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + estimatedDocumentCount(callback: Callback): void; + estimatedDocumentCount(options: EstimatedDocumentCountOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + estimatedDocumentCount(options: EstimatedDocumentCountOptions, callback: Callback): void; + estimatedDocumentCount( + options?: EstimatedDocumentCountOptions | Callback, + callback?: Callback + ): Promise | void { + if (typeof options === 'function') (callback = options), (options = {}); + return executeOperation( + this.s.db.s.client, + new EstimatedDocumentCountOperation(this as TODO_NODE_3286, resolveOptions(this, options)), + callback + ); + } + + /** + * Gets the number of documents matching the filter. + * For a fast count of the total documents in a collection see {@link Collection#estimatedDocumentCount| estimatedDocumentCount}. + * **Note**: When migrating from {@link Collection#count| count} to {@link Collection#countDocuments| countDocuments} + * the following query operators must be replaced: + * + * | Operator | Replacement | + * | -------- | ----------- | + * | `$where` | [`$expr`][1] | + * | `$near` | [`$geoWithin`][2] with [`$center`][3] | + * | `$nearSphere` | [`$geoWithin`][2] with [`$centerSphere`][4] | + * + * [1]: https://docs.mongodb.com/manual/reference/operator/query/expr/ + * [2]: https://docs.mongodb.com/manual/reference/operator/query/geoWithin/ + * [3]: https://docs.mongodb.com/manual/reference/operator/query/center/#op._S_center + * [4]: https://docs.mongodb.com/manual/reference/operator/query/centerSphere/#op._S_centerSphere + * + * @param filter - The filter for the count + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + * + * @see https://docs.mongodb.com/manual/reference/operator/query/expr/ + * @see https://docs.mongodb.com/manual/reference/operator/query/geoWithin/ + * @see https://docs.mongodb.com/manual/reference/operator/query/center/#op._S_center + * @see https://docs.mongodb.com/manual/reference/operator/query/centerSphere/#op._S_centerSphere + */ + countDocuments(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + countDocuments(callback: Callback): void; + countDocuments(filter: Filter): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + countDocuments(callback: Callback): void; + countDocuments(filter: Filter, options: CountDocumentsOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + countDocuments( + filter: Filter, + options: CountDocumentsOptions, + callback: Callback + ): void; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + countDocuments(filter: Filter, callback: Callback): void; + countDocuments( + filter?: Document | CountDocumentsOptions | Callback, + options?: CountDocumentsOptions | Callback, + callback?: Callback + ): Promise | void { + if (filter == null) { + (filter = {}), (options = {}), (callback = undefined); + } else if (typeof filter === 'function') { + (callback = filter as Callback), (filter = {}), (options = {}); + } else { + if (arguments.length === 2) { + if (typeof options === 'function') (callback = options), (options = {}); + } + } + + filter ??= {}; + return executeOperation( + this.s.db.s.client, + new CountDocumentsOperation( + this as TODO_NODE_3286, + filter, + resolveOptions(this, options as CountDocumentsOptions) + ), + callback + ); + } + + /** + * The distinct command returns a list of distinct values for the given key across a collection. + * + * @param key - Field of the document to find distinct values for + * @param filter - The filter for filtering the set of documents to which we apply the distinct filter. + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + distinct>( + key: Key + ): Promise[Key]>>>; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + distinct>( + key: Key, + callback: Callback[Key]>>> + ): void; + distinct>( + key: Key, + filter: Filter + ): Promise[Key]>>>; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + distinct>( + key: Key, + filter: Filter, + callback: Callback[Key]>>> + ): void; + distinct>( + key: Key, + filter: Filter, + options: DistinctOptions + ): Promise[Key]>>>; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + distinct>( + key: Key, + filter: Filter, + options: DistinctOptions, + callback: Callback[Key]>>> + ): void; + + // Embedded documents overload + distinct(key: string): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + distinct(key: string, callback: Callback): void; + distinct(key: string, filter: Filter): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + distinct(key: string, filter: Filter, callback: Callback): void; + distinct(key: string, filter: Filter, options: DistinctOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + distinct( + key: string, + filter: Filter, + options: DistinctOptions, + callback: Callback + ): void; + // Implementation + distinct>( + key: Key, + filter?: Filter | DistinctOptions | Callback, + options?: DistinctOptions | Callback, + callback?: Callback + ): Promise | void { + if (typeof filter === 'function') { + (callback = filter), (filter = {}), (options = {}); + } else { + if (arguments.length === 3 && typeof options === 'function') { + (callback = options), (options = {}); + } + } + + filter ??= {}; + return executeOperation( + this.s.db.s.client, + new DistinctOperation( + this as TODO_NODE_3286, + key as TODO_NODE_3286, + filter, + resolveOptions(this, options as DistinctOptions) + ), + callback + ); + } + + /** + * Retrieve all the indexes on the collection. + * + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + indexes(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + indexes(callback: Callback): void; + indexes(options: IndexInformationOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + indexes(options: IndexInformationOptions, callback: Callback): void; + indexes( + options?: IndexInformationOptions | Callback, + callback?: Callback + ): Promise | void { + if (typeof options === 'function') (callback = options), (options = {}); + + return executeOperation( + this.s.db.s.client, + new IndexesOperation(this as TODO_NODE_3286, resolveOptions(this, options)), + callback + ); + } + + /** + * Get all the collection statistics. + * + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + stats(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + stats(callback: Callback): void; + stats(options: CollStatsOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + stats(options: CollStatsOptions, callback: Callback): void; + stats( + options?: CollStatsOptions | Callback, + callback?: Callback + ): Promise | void { + if (typeof options === 'function') (callback = options), (options = {}); + options = options ?? {}; + + return executeOperation( + this.s.db.s.client, + new CollStatsOperation(this as TODO_NODE_3286, options), + callback + ); + } + + /** + * Find a document and delete it in one atomic operation. Requires a write lock for the duration of the operation. + * + * @param filter - The filter used to select the document to remove + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + findOneAndDelete(filter: Filter): Promise>; + findOneAndDelete( + filter: Filter, + options: FindOneAndDeleteOptions + ): Promise>; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + findOneAndDelete(filter: Filter, callback: Callback>): void; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + findOneAndDelete( + filter: Filter, + options: FindOneAndDeleteOptions, + callback: Callback> + ): void; + findOneAndDelete( + filter: Filter, + options?: FindOneAndDeleteOptions | Callback>, + callback?: Callback> + ): Promise | void { + if (typeof options === 'function') (callback = options), (options = {}); + + return executeOperation( + this.s.db.s.client, + new FindOneAndDeleteOperation( + this as TODO_NODE_3286, + filter, + resolveOptions(this, options) + ) as TODO_NODE_3286, + callback + ); + } + + /** + * Find a document and replace it in one atomic operation. Requires a write lock for the duration of the operation. + * + * @param filter - The filter used to select the document to replace + * @param replacement - The Document that replaces the matching document + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + findOneAndReplace( + filter: Filter, + replacement: WithoutId + ): Promise>; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + findOneAndReplace( + filter: Filter, + replacement: WithoutId, + callback: Callback> + ): void; + findOneAndReplace( + filter: Filter, + replacement: WithoutId, + options: FindOneAndReplaceOptions + ): Promise>; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + findOneAndReplace( + filter: Filter, + replacement: WithoutId, + options: FindOneAndReplaceOptions, + callback: Callback> + ): void; + findOneAndReplace( + filter: Filter, + replacement: WithoutId, + options?: FindOneAndReplaceOptions | Callback>, + callback?: Callback> + ): Promise> | void { + if (typeof options === 'function') (callback = options), (options = {}); + + return executeOperation( + this.s.db.s.client, + new FindOneAndReplaceOperation( + this as TODO_NODE_3286, + filter, + replacement, + resolveOptions(this, options) + ) as TODO_NODE_3286, + callback + ); + } + + /** + * Find a document and update it in one atomic operation. Requires a write lock for the duration of the operation. + * + * @param filter - The filter used to select the document to update + * @param update - Update operations to be performed on the document + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + findOneAndUpdate( + filter: Filter, + update: UpdateFilter + ): Promise>; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + findOneAndUpdate( + filter: Filter, + update: UpdateFilter, + callback: Callback> + ): void; + findOneAndUpdate( + filter: Filter, + update: UpdateFilter, + options: FindOneAndUpdateOptions + ): Promise>; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + findOneAndUpdate( + filter: Filter, + update: UpdateFilter, + options: FindOneAndUpdateOptions, + callback: Callback> + ): void; + findOneAndUpdate( + filter: Filter, + update: UpdateFilter, + options?: FindOneAndUpdateOptions | Callback>, + callback?: Callback> + ): Promise> | void { + if (typeof options === 'function') (callback = options), (options = {}); + + return executeOperation( + this.s.db.s.client, + new FindOneAndUpdateOperation( + this as TODO_NODE_3286, + filter, + update, + resolveOptions(this, options) + ) as TODO_NODE_3286, + callback + ); + } + + /** + * Execute an aggregation framework pipeline against the collection, needs MongoDB \>= 2.2 + * + * @param pipeline - An array of aggregation pipelines to execute + * @param options - Optional settings for the command + */ + aggregate( + pipeline: Document[] = [], + options?: AggregateOptions + ): AggregationCursor { + if (arguments.length > 2) { + throw new MongoInvalidArgumentError( + 'Method "collection.aggregate()" accepts at most two arguments' + ); + } + if (!Array.isArray(pipeline)) { + throw new MongoInvalidArgumentError( + 'Argument "pipeline" must be an array of aggregation stages' + ); + } + if (typeof options === 'function') { + throw new MongoInvalidArgumentError('Argument "options" must not be function'); + } + + return new AggregationCursor( + this.s.db.s.client, + this.s.namespace, + pipeline, + resolveOptions(this, options) + ); + } + + /** + * Create a new Change Stream, watching for new changes (insertions, updates, replacements, deletions, and invalidations) in this collection. + * + * @remarks + * watch() accepts two generic arguments for distinct usecases: + * - The first is to override the schema that may be defined for this specific collection + * - The second is to override the shape of the change stream document entirely, if it is not provided the type will default to ChangeStreamDocument of the first argument + * @example + * By just providing the first argument I can type the change to be `ChangeStreamDocument<{ _id: number }>` + * ```ts + * collection.watch<{ _id: number }>() + * .on('change', change => console.log(change._id.toFixed(4))); + * ``` + * + * @example + * Passing a second argument provides a way to reflect the type changes caused by an advanced pipeline. + * Here, we are using a pipeline to have MongoDB filter for insert changes only and add a comment. + * No need start from scratch on the ChangeStreamInsertDocument type! + * By using an intersection we can save time and ensure defaults remain the same type! + * ```ts + * collection + * .watch & { comment: string }>([ + * { $addFields: { comment: 'big changes' } }, + * { $match: { operationType: 'insert' } } + * ]) + * .on('change', change => { + * change.comment.startsWith('big'); + * change.operationType === 'insert'; + * // No need to narrow in code because the generics did that for us! + * expectType(change.fullDocument); + * }); + * ``` + * + * @param pipeline - An array of {@link https://docs.mongodb.com/manual/reference/operator/aggregation-pipeline/|aggregation pipeline stages} through which to pass change stream documents. This allows for filtering (using $match) and manipulating the change stream documents. + * @param options - Optional settings for the command + * @typeParam TLocal - Type of the data being detected by the change stream + * @typeParam TChange - Type of the whole change stream document emitted + */ + watch>( + pipeline: Document[] = [], + options: ChangeStreamOptions = {} + ): ChangeStream { + // Allow optionally not specifying a pipeline + if (!Array.isArray(pipeline)) { + options = pipeline; + pipeline = []; + } + + return new ChangeStream(this, pipeline, resolveOptions(this, options)); + } + + /** + * Run Map Reduce across a collection. Be aware that the inline option for out will return an array of results not a collection. + * + * @deprecated collection.mapReduce is deprecated. Use the aggregation pipeline instead. Visit https://docs.mongodb.com/manual/reference/map-reduce-to-aggregation-pipeline for more information on how to translate map-reduce operations to the aggregation pipeline. + * @param map - The mapping function. + * @param reduce - The reduce function. + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + mapReduce( + map: string | MapFunction, + reduce: string | ReduceFunction + ): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + mapReduce( + map: string | MapFunction, + reduce: string | ReduceFunction, + callback: Callback + ): void; + mapReduce( + map: string | MapFunction, + reduce: string | ReduceFunction, + options: MapReduceOptions + ): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + mapReduce( + map: string | MapFunction, + reduce: string | ReduceFunction, + options: MapReduceOptions, + callback: Callback + ): void; + mapReduce( + map: string | MapFunction, + reduce: string | ReduceFunction, + options?: MapReduceOptions | Callback, + callback?: Callback + ): Promise | void { + emitWarningOnce( + 'collection.mapReduce is deprecated. Use the aggregation pipeline instead. Visit https://docs.mongodb.com/manual/reference/map-reduce-to-aggregation-pipeline for more information on how to translate map-reduce operations to the aggregation pipeline.' + ); + if ('function' === typeof options) (callback = options), (options = {}); + // Out must always be defined (make sure we don't break weirdly on pre 1.8+ servers) + // TODO NODE-3339: Figure out if this is still necessary given we no longer officially support pre-1.8 + if (options?.out == null) { + throw new MongoInvalidArgumentError( + 'Option "out" must be defined, see mongodb docs for possible values' + ); + } + + if ('function' === typeof map) { + map = map.toString(); + } + + if ('function' === typeof reduce) { + reduce = reduce.toString(); + } + + if ('function' === typeof options.finalize) { + options.finalize = options.finalize.toString(); + } + + return executeOperation( + this.s.db.s.client, + new MapReduceOperation( + this as TODO_NODE_3286, + map, + reduce, + resolveOptions(this, options) as TODO_NODE_3286 + ), + callback + ); + } + + /** + * Initiate an Out of order batch write operation. All operations will be buffered into insert/update/remove commands executed out of order. + * + * @throws MongoNotConnectedError + * @remarks + * **NOTE:** MongoClient must be connected prior to calling this method due to a known limitation in this legacy implemenation. + * However, `collection.bulkWrite()` provides an equivalent API that does not require prior connecting. + */ + initializeUnorderedBulkOp(options?: BulkWriteOptions): UnorderedBulkOperation { + return new UnorderedBulkOperation(this as TODO_NODE_3286, resolveOptions(this, options)); + } + + /** + * Initiate an In order bulk write operation. Operations will be serially executed in the order they are added, creating a new operation for each switch in types. + * + * @throws MongoNotConnectedError + * @remarks + * **NOTE:** MongoClient must be connected prior to calling this method due to a known limitation in this legacy implemenation. + * However, `collection.bulkWrite()` provides an equivalent API that does not require prior connecting. + */ + initializeOrderedBulkOp(options?: BulkWriteOptions): OrderedBulkOperation { + return new OrderedBulkOperation(this as TODO_NODE_3286, resolveOptions(this, options)); + } + + /** Get the db scoped logger */ + getLogger(): Logger { + return this.s.db.s.logger; + } + + get logger(): Logger { + return this.s.db.s.logger; + } + + /** + * Inserts a single document or a an array of documents into MongoDB. If documents passed in do not contain the **_id** field, + * one will be added to each of the documents missing it by the driver, mutating the document. This behavior + * can be overridden by setting the **forceServerObjectId** flag. + * + * @deprecated Use insertOne, insertMany or bulkWrite instead. Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance + * @param docs - The documents to insert + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + insert( + docs: OptionalUnlessRequiredId[], + options: BulkWriteOptions, + callback: Callback> + ): Promise> | void { + emitWarningOnce( + 'collection.insert is deprecated. Use insertOne, insertMany or bulkWrite instead.' + ); + if (typeof options === 'function') (callback = options), (options = {}); + options = options || { ordered: false }; + docs = !Array.isArray(docs) ? [docs] : docs; + + if (options.keepGoing === true) { + options.ordered = false; + } + + return this.insertMany(docs, options, callback); + } + + /** + * Updates documents. + * + * @deprecated use updateOne, updateMany or bulkWrite. Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance + * @param filter - The filter for the update operation. + * @param update - The update operations to be applied to the documents + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + update( + filter: Filter, + update: UpdateFilter, + options: UpdateOptions, + callback: Callback + ): Promise | void { + emitWarningOnce( + 'collection.update is deprecated. Use updateOne, updateMany, or bulkWrite instead.' + ); + if (typeof options === 'function') (callback = options), (options = {}); + options = options ?? {}; + + return this.updateMany(filter, update, options, callback); + } + + /** + * Remove documents. + * + * @deprecated use deleteOne, deleteMany or bulkWrite. Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance + * @param filter - The filter for the remove operation. + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + remove( + filter: Filter, + options: DeleteOptions, + callback: Callback + ): Promise | void { + emitWarningOnce( + 'collection.remove is deprecated. Use deleteOne, deleteMany, or bulkWrite instead.' + ); + if (typeof options === 'function') (callback = options), (options = {}); + options = options ?? {}; + + return this.deleteMany(filter, options, callback); + } + + /** + * An estimated count of matching documents in the db to a filter. + * + * **NOTE:** This method has been deprecated, since it does not provide an accurate count of the documents + * in a collection. To obtain an accurate count of documents in the collection, use {@link Collection#countDocuments| countDocuments}. + * To obtain an estimated count of all documents in the collection, use {@link Collection#estimatedDocumentCount| estimatedDocumentCount}. + * + * @deprecated use {@link Collection#countDocuments| countDocuments} or {@link Collection#estimatedDocumentCount| estimatedDocumentCount} instead + * + * @param filter - The filter for the count. + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + count(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + count(callback: Callback): void; + count(filter: Filter): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + count(filter: Filter, callback: Callback): void; + count(filter: Filter, options: CountOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + count( + filter: Filter, + options: CountOptions, + callback: Callback + ): Promise | void; + count( + filter?: Filter | CountOptions | Callback, + options?: CountOptions | Callback, + callback?: Callback + ): Promise | void { + if (typeof filter === 'function') { + (callback = filter), (filter = {}), (options = {}); + } else { + if (typeof options === 'function') (callback = options), (options = {}); + } + + filter ??= {}; + return executeOperation( + this.s.db.s.client, + new CountOperation( + MongoDBNamespace.fromString(this.namespace), + filter, + resolveOptions(this, options) + ), + callback + ); + } +} diff --git a/node_modules/mongodb/src/connection_string.ts b/node_modules/mongodb/src/connection_string.ts new file mode 100644 index 000000000..e9abc845e --- /dev/null +++ b/node_modules/mongodb/src/connection_string.ts @@ -0,0 +1,1280 @@ +import * as dns from 'dns'; +import * as fs from 'fs'; +import ConnectionString from 'mongodb-connection-string-url'; +import { URLSearchParams } from 'url'; + +import type { Document } from './bson'; +import { MongoCredentials } from './cmap/auth/mongo_credentials'; +import { AUTH_MECHS_AUTH_SRC_EXTERNAL, AuthMechanism } from './cmap/auth/providers'; +import { Compressor, CompressorName } from './cmap/wire_protocol/compression'; +import { Encrypter } from './encrypter'; +import { + MongoAPIError, + MongoInvalidArgumentError, + MongoMissingCredentialsError, + MongoParseError +} from './error'; +import { Logger, LoggerLevel } from './logger'; +import { + DriverInfo, + MongoClient, + MongoClientOptions, + MongoOptions, + PkFactory, + ServerApi, + ServerApiVersion +} from './mongo_client'; +import { PromiseProvider } from './promise_provider'; +import { ReadConcern, ReadConcernLevel } from './read_concern'; +import { ReadPreference, ReadPreferenceMode } from './read_preference'; +import type { TagSet } from './sdam/server_description'; +import { + AnyOptions, + Callback, + DEFAULT_PK_FACTORY, + emitWarning, + emitWarningOnce, + HostAddress, + isRecord, + makeClientMetadata, + setDifference +} from './utils'; +import { W, WriteConcern } from './write_concern'; + +const VALID_TXT_RECORDS = ['authSource', 'replicaSet', 'loadBalanced']; + +const LB_SINGLE_HOST_ERROR = 'loadBalanced option only supported with a single host in the URI'; +const LB_REPLICA_SET_ERROR = 'loadBalanced option not supported with a replicaSet option'; +const LB_DIRECT_CONNECTION_ERROR = + 'loadBalanced option not supported when directConnection is provided'; + +/** + * Determines whether a provided address matches the provided parent domain in order + * to avoid certain attack vectors. + * + * @param srvAddress - The address to check against a domain + * @param parentDomain - The domain to check the provided address against + * @returns Whether the provided address matches the parent domain + */ +function matchesParentDomain(srvAddress: string, parentDomain: string): boolean { + const regex = /^.*?\./; + const srv = `.${srvAddress.replace(regex, '')}`; + const parent = `.${parentDomain.replace(regex, '')}`; + return srv.endsWith(parent); +} + +/** + * Lookup a `mongodb+srv` connection string, combine the parts and reparse it as a normal + * connection string. + * + * @param uri - The connection string to parse + * @param options - Optional user provided connection string options + */ +export function resolveSRVRecord(options: MongoOptions, callback: Callback): void { + if (typeof options.srvHost !== 'string') { + return callback(new MongoAPIError('Option "srvHost" must not be empty')); + } + + if (options.srvHost.split('.').length < 3) { + // TODO(NODE-3484): Replace with MongoConnectionStringError + return callback(new MongoAPIError('URI must include hostname, domain name, and tld')); + } + + // Resolve the SRV record and use the result as the list of hosts to connect to. + const lookupAddress = options.srvHost; + dns.resolveSrv(`_${options.srvServiceName}._tcp.${lookupAddress}`, (err, addresses) => { + if (err) return callback(err); + + if (addresses.length === 0) { + return callback(new MongoAPIError('No addresses found at host')); + } + + for (const { name } of addresses) { + if (!matchesParentDomain(name, lookupAddress)) { + return callback(new MongoAPIError('Server record does not share hostname with parent URI')); + } + } + + const hostAddresses = addresses.map(r => + HostAddress.fromString(`${r.name}:${r.port ?? 27017}`) + ); + + const lbError = validateLoadBalancedOptions(hostAddresses, options, true); + if (lbError) { + return callback(lbError); + } + + // Resolve TXT record and add options from there if they exist. + dns.resolveTxt(lookupAddress, (err, record) => { + if (err) { + if (err.code !== 'ENODATA' && err.code !== 'ENOTFOUND') { + return callback(err); + } + } else { + if (record.length > 1) { + return callback(new MongoParseError('Multiple text records not allowed')); + } + + const txtRecordOptions = new URLSearchParams(record[0].join('')); + const txtRecordOptionKeys = [...txtRecordOptions.keys()]; + if (txtRecordOptionKeys.some(key => !VALID_TXT_RECORDS.includes(key))) { + return callback( + new MongoParseError(`Text record may only set any of: ${VALID_TXT_RECORDS.join(', ')}`) + ); + } + + if (VALID_TXT_RECORDS.some(option => txtRecordOptions.get(option) === '')) { + return callback(new MongoParseError('Cannot have empty URI params in DNS TXT Record')); + } + + const source = txtRecordOptions.get('authSource') ?? undefined; + const replicaSet = txtRecordOptions.get('replicaSet') ?? undefined; + const loadBalanced = txtRecordOptions.get('loadBalanced') ?? undefined; + + if ( + !options.userSpecifiedAuthSource && + source && + options.credentials && + !AUTH_MECHS_AUTH_SRC_EXTERNAL.has(options.credentials.mechanism) + ) { + options.credentials = MongoCredentials.merge(options.credentials, { source }); + } + + if (!options.userSpecifiedReplicaSet && replicaSet) { + options.replicaSet = replicaSet; + } + + if (loadBalanced === 'true') { + options.loadBalanced = true; + } + + if (options.replicaSet && options.srvMaxHosts > 0) { + return callback(new MongoParseError('Cannot combine replicaSet option with srvMaxHosts')); + } + + const lbError = validateLoadBalancedOptions(hostAddresses, options, true); + if (lbError) { + return callback(lbError); + } + } + + callback(undefined, hostAddresses); + }); + }); +} + +/** + * Checks if TLS options are valid + * + * @param options - The options used for options parsing + * @throws MongoParseError if TLS options are invalid + */ +export function checkTLSOptions(options: AnyOptions): void { + if (!options) return; + const check = (a: string, b: string) => { + if (Reflect.has(options, a) && Reflect.has(options, b)) { + throw new MongoParseError(`The '${a}' option cannot be used with '${b}'`); + } + }; + check('tlsInsecure', 'tlsAllowInvalidCertificates'); + check('tlsInsecure', 'tlsAllowInvalidHostnames'); + check('tlsInsecure', 'tlsDisableCertificateRevocationCheck'); + check('tlsInsecure', 'tlsDisableOCSPEndpointCheck'); + check('tlsAllowInvalidCertificates', 'tlsDisableCertificateRevocationCheck'); + check('tlsAllowInvalidCertificates', 'tlsDisableOCSPEndpointCheck'); + check('tlsDisableCertificateRevocationCheck', 'tlsDisableOCSPEndpointCheck'); +} + +const TRUTHS = new Set(['true', 't', '1', 'y', 'yes']); +const FALSEHOODS = new Set(['false', 'f', '0', 'n', 'no', '-1']); +function getBoolean(name: string, value: unknown): boolean { + if (typeof value === 'boolean') return value; + const valueString = String(value).toLowerCase(); + if (TRUTHS.has(valueString)) { + if (valueString !== 'true') { + emitWarningOnce( + `deprecated value for ${name} : ${valueString} - please update to ${name} : true instead` + ); + } + return true; + } + if (FALSEHOODS.has(valueString)) { + if (valueString !== 'false') { + emitWarningOnce( + `deprecated value for ${name} : ${valueString} - please update to ${name} : false instead` + ); + } + return false; + } + throw new MongoParseError(`Expected ${name} to be stringified boolean value, got: ${value}`); +} + +function getInt(name: string, value: unknown): number { + if (typeof value === 'number') return Math.trunc(value); + const parsedValue = Number.parseInt(String(value), 10); + if (!Number.isNaN(parsedValue)) return parsedValue; + throw new MongoParseError(`Expected ${name} to be stringified int value, got: ${value}`); +} + +function getUint(name: string, value: unknown): number { + const parsedValue = getInt(name, value); + if (parsedValue < 0) { + throw new MongoParseError(`${name} can only be a positive int value, got: ${value}`); + } + return parsedValue; +} + +function* entriesFromString(value: string): Generator<[string, string]> { + const keyValuePairs = value.split(','); + for (const keyValue of keyValuePairs) { + const [key, value] = keyValue.split(':'); + if (value == null) { + throw new MongoParseError('Cannot have undefined values in key value pairs'); + } + + yield [key, value]; + } +} + +class CaseInsensitiveMap extends Map { + constructor(entries: Array<[string, any]> = []) { + super(entries.map(([k, v]) => [k.toLowerCase(), v])); + } + override has(k: string) { + return super.has(k.toLowerCase()); + } + override get(k: string) { + return super.get(k.toLowerCase()); + } + override set(k: string, v: any) { + return super.set(k.toLowerCase(), v); + } + override delete(k: string): boolean { + return super.delete(k.toLowerCase()); + } +} + +export function parseOptions( + uri: string, + mongoClient: MongoClient | MongoClientOptions | undefined = undefined, + options: MongoClientOptions = {} +): MongoOptions { + if (mongoClient != null && !(mongoClient instanceof MongoClient)) { + options = mongoClient; + mongoClient = undefined; + } + + const url = new ConnectionString(uri); + const { hosts, isSRV } = url; + + const mongoOptions = Object.create(null); + + // Feature flags + for (const flag of Object.getOwnPropertySymbols(options)) { + if (FEATURE_FLAGS.has(flag)) { + mongoOptions[flag] = options[flag]; + } + } + + mongoOptions.hosts = isSRV ? [] : hosts.map(HostAddress.fromString); + + const urlOptions = new CaseInsensitiveMap(); + + if (url.pathname !== '/' && url.pathname !== '') { + const dbName = decodeURIComponent( + url.pathname[0] === '/' ? url.pathname.slice(1) : url.pathname + ); + if (dbName) { + urlOptions.set('dbName', [dbName]); + } + } + + if (url.username !== '') { + const auth: Document = { + username: decodeURIComponent(url.username) + }; + + if (typeof url.password === 'string') { + auth.password = decodeURIComponent(url.password); + } + + urlOptions.set('auth', [auth]); + } + + for (const key of url.searchParams.keys()) { + const values = [...url.searchParams.getAll(key)]; + + if (values.includes('')) { + throw new MongoAPIError('URI cannot contain options with no value'); + } + + if (!urlOptions.has(key)) { + urlOptions.set(key, values); + } + } + + const objectOptions = new CaseInsensitiveMap( + Object.entries(options).filter(([, v]) => v != null) + ); + + // Validate options that can only be provided by one of uri or object + + if (urlOptions.has('serverApi')) { + throw new MongoParseError( + 'URI cannot contain `serverApi`, it can only be passed to the client' + ); + } + + if (objectOptions.has('loadBalanced')) { + throw new MongoParseError('loadBalanced is only a valid option in the URI'); + } + + // All option collection + + const allOptions = new CaseInsensitiveMap(); + + const allKeys = new Set([ + ...urlOptions.keys(), + ...objectOptions.keys(), + ...DEFAULT_OPTIONS.keys() + ]); + + for (const key of allKeys) { + const values = []; + const objectOptionValue = objectOptions.get(key); + if (objectOptionValue != null) { + values.push(objectOptionValue); + } + const urlValue = urlOptions.get(key); + if (urlValue != null) { + values.push(...urlValue); + } + const defaultOptionsValue = DEFAULT_OPTIONS.get(key); + if (defaultOptionsValue != null) { + values.push(defaultOptionsValue); + } + allOptions.set(key, values); + } + + if (allOptions.has('tlsCertificateKeyFile') && !allOptions.has('tlsCertificateFile')) { + allOptions.set('tlsCertificateFile', allOptions.get('tlsCertificateKeyFile')); + } + + if (allOptions.has('tls') || allOptions.has('ssl')) { + const tlsAndSslOpts = (allOptions.get('tls') || []) + .concat(allOptions.get('ssl') || []) + .map(getBoolean.bind(null, 'tls/ssl')); + if (new Set(tlsAndSslOpts).size !== 1) { + throw new MongoParseError('All values of tls/ssl must be the same.'); + } + } + + const unsupportedOptions = setDifference( + allKeys, + Array.from(Object.keys(OPTIONS)).map(s => s.toLowerCase()) + ); + if (unsupportedOptions.size !== 0) { + const optionWord = unsupportedOptions.size > 1 ? 'options' : 'option'; + const isOrAre = unsupportedOptions.size > 1 ? 'are' : 'is'; + throw new MongoParseError( + `${optionWord} ${Array.from(unsupportedOptions).join(', ')} ${isOrAre} not supported` + ); + } + + // Option parsing and setting + + for (const [key, descriptor] of Object.entries(OPTIONS)) { + const values = allOptions.get(key); + if (!values || values.length === 0) continue; + setOption(mongoOptions, key, descriptor, values); + } + + if (mongoOptions.credentials) { + const isGssapi = mongoOptions.credentials.mechanism === AuthMechanism.MONGODB_GSSAPI; + const isX509 = mongoOptions.credentials.mechanism === AuthMechanism.MONGODB_X509; + const isAws = mongoOptions.credentials.mechanism === AuthMechanism.MONGODB_AWS; + if ( + (isGssapi || isX509) && + allOptions.has('authSource') && + mongoOptions.credentials.source !== '$external' + ) { + // If authSource was explicitly given and its incorrect, we error + throw new MongoParseError( + `${mongoOptions.credentials} can only have authSource set to '$external'` + ); + } + + if (!(isGssapi || isX509 || isAws) && mongoOptions.dbName && !allOptions.has('authSource')) { + // inherit the dbName unless GSSAPI or X509, then silently ignore dbName + // and there was no specific authSource given + mongoOptions.credentials = MongoCredentials.merge(mongoOptions.credentials, { + source: mongoOptions.dbName + }); + } + + if (isAws && mongoOptions.credentials.username && !mongoOptions.credentials.password) { + throw new MongoMissingCredentialsError( + `When using ${mongoOptions.credentials.mechanism} password must be set when a username is specified` + ); + } + + mongoOptions.credentials.validate(); + + // Check if the only auth related option provided was authSource, if so we can remove credentials + if ( + mongoOptions.credentials.password === '' && + mongoOptions.credentials.username === '' && + mongoOptions.credentials.mechanism === AuthMechanism.MONGODB_DEFAULT && + Object.keys(mongoOptions.credentials.mechanismProperties).length === 0 + ) { + delete mongoOptions.credentials; + } + } + + if (!mongoOptions.dbName) { + // dbName default is applied here because of the credential validation above + mongoOptions.dbName = 'test'; + } + + checkTLSOptions(mongoOptions); + + if (options.promiseLibrary) { + PromiseProvider.set(options.promiseLibrary); + } + + const lbError = validateLoadBalancedOptions(hosts, mongoOptions, isSRV); + if (lbError) { + throw lbError; + } + if (mongoClient && mongoOptions.autoEncryption) { + Encrypter.checkForMongoCrypt(); + mongoOptions.encrypter = new Encrypter(mongoClient, uri, options); + mongoOptions.autoEncrypter = mongoOptions.encrypter.autoEncrypter; + } + + // Potential SRV Overrides and SRV connection string validations + + mongoOptions.userSpecifiedAuthSource = + objectOptions.has('authSource') || urlOptions.has('authSource'); + mongoOptions.userSpecifiedReplicaSet = + objectOptions.has('replicaSet') || urlOptions.has('replicaSet'); + + if (isSRV) { + // SRV Record is resolved upon connecting + mongoOptions.srvHost = hosts[0]; + + if (mongoOptions.directConnection) { + throw new MongoAPIError('SRV URI does not support directConnection'); + } + + if (mongoOptions.srvMaxHosts > 0 && typeof mongoOptions.replicaSet === 'string') { + throw new MongoParseError('Cannot use srvMaxHosts option with replicaSet'); + } + + // SRV turns on TLS by default, but users can override and turn it off + const noUserSpecifiedTLS = !objectOptions.has('tls') && !urlOptions.has('tls'); + const noUserSpecifiedSSL = !objectOptions.has('ssl') && !urlOptions.has('ssl'); + if (noUserSpecifiedTLS && noUserSpecifiedSSL) { + mongoOptions.tls = true; + } + } else { + const userSpecifiedSrvOptions = + urlOptions.has('srvMaxHosts') || + objectOptions.has('srvMaxHosts') || + urlOptions.has('srvServiceName') || + objectOptions.has('srvServiceName'); + + if (userSpecifiedSrvOptions) { + throw new MongoParseError( + 'Cannot use srvMaxHosts or srvServiceName with a non-srv connection string' + ); + } + } + + if (mongoOptions.directConnection && mongoOptions.hosts.length !== 1) { + throw new MongoParseError('directConnection option requires exactly one host'); + } + + if ( + !mongoOptions.proxyHost && + (mongoOptions.proxyPort || mongoOptions.proxyUsername || mongoOptions.proxyPassword) + ) { + throw new MongoParseError('Must specify proxyHost if other proxy options are passed'); + } + + if ( + (mongoOptions.proxyUsername && !mongoOptions.proxyPassword) || + (!mongoOptions.proxyUsername && mongoOptions.proxyPassword) + ) { + throw new MongoParseError('Can only specify both of proxy username/password or neither'); + } + + const proxyOptions = ['proxyHost', 'proxyPort', 'proxyUsername', 'proxyPassword'].map( + key => urlOptions.get(key) ?? [] + ); + + if (proxyOptions.some(options => options.length > 1)) { + throw new MongoParseError( + 'Proxy options cannot be specified multiple times in the connection string' + ); + } + + return mongoOptions; +} + +function validateLoadBalancedOptions( + hosts: HostAddress[] | string[], + mongoOptions: MongoOptions, + isSrv: boolean +): MongoParseError | undefined { + if (mongoOptions.loadBalanced) { + if (hosts.length > 1) { + return new MongoParseError(LB_SINGLE_HOST_ERROR); + } + if (mongoOptions.replicaSet) { + return new MongoParseError(LB_REPLICA_SET_ERROR); + } + if (mongoOptions.directConnection) { + return new MongoParseError(LB_DIRECT_CONNECTION_ERROR); + } + + if (isSrv && mongoOptions.srvMaxHosts > 0) { + return new MongoParseError('Cannot limit srv hosts with loadBalanced enabled'); + } + } + return; +} + +function setOption( + mongoOptions: any, + key: string, + descriptor: OptionDescriptor, + values: unknown[] +) { + const { target, type, transform, deprecated } = descriptor; + const name = target ?? key; + + if (deprecated) { + const deprecatedMsg = typeof deprecated === 'string' ? `: ${deprecated}` : ''; + emitWarning(`${key} is a deprecated option${deprecatedMsg}`); + } + + switch (type) { + case 'boolean': + mongoOptions[name] = getBoolean(name, values[0]); + break; + case 'int': + mongoOptions[name] = getInt(name, values[0]); + break; + case 'uint': + mongoOptions[name] = getUint(name, values[0]); + break; + case 'string': + if (values[0] == null) { + break; + } + mongoOptions[name] = String(values[0]); + break; + case 'record': + if (!isRecord(values[0])) { + throw new MongoParseError(`${name} must be an object`); + } + mongoOptions[name] = values[0]; + break; + case 'any': + mongoOptions[name] = values[0]; + break; + default: { + if (!transform) { + throw new MongoParseError('Descriptors missing a type must define a transform'); + } + const transformValue = transform({ name, options: mongoOptions, values }); + mongoOptions[name] = transformValue; + break; + } + } +} + +interface OptionDescriptor { + target?: string; + type?: 'boolean' | 'int' | 'uint' | 'record' | 'string' | 'any'; + default?: any; + + deprecated?: boolean | string; + /** + * @param name - the original option name + * @param options - the options so far for resolution + * @param values - the possible values in precedence order + */ + transform?: (args: { name: string; options: MongoOptions; values: unknown[] }) => unknown; +} + +export const OPTIONS = { + appName: { + target: 'metadata', + transform({ options, values: [value] }): DriverInfo { + return makeClientMetadata({ ...options.driverInfo, appName: String(value) }); + } + }, + auth: { + target: 'credentials', + transform({ name, options, values: [value] }): MongoCredentials { + if (!isRecord(value, ['username', 'password'] as const)) { + throw new MongoParseError( + `${name} must be an object with 'username' and 'password' properties` + ); + } + return MongoCredentials.merge(options.credentials, { + username: value.username, + password: value.password + }); + } + }, + authMechanism: { + target: 'credentials', + transform({ options, values: [value] }): MongoCredentials { + const mechanisms = Object.values(AuthMechanism); + const [mechanism] = mechanisms.filter(m => m.match(RegExp(String.raw`\b${value}\b`, 'i'))); + if (!mechanism) { + throw new MongoParseError(`authMechanism one of ${mechanisms}, got ${value}`); + } + let source = options.credentials?.source; + if ( + mechanism === AuthMechanism.MONGODB_PLAIN || + AUTH_MECHS_AUTH_SRC_EXTERNAL.has(mechanism) + ) { + // some mechanisms have '$external' as the Auth Source + source = '$external'; + } + + let password = options.credentials?.password; + if (mechanism === AuthMechanism.MONGODB_X509 && password === '') { + password = undefined; + } + return MongoCredentials.merge(options.credentials, { + mechanism, + source, + password + }); + } + }, + authMechanismProperties: { + target: 'credentials', + transform({ options, values: [optionValue] }): MongoCredentials { + if (typeof optionValue === 'string') { + const mechanismProperties = Object.create(null); + + for (const [key, value] of entriesFromString(optionValue)) { + try { + mechanismProperties[key] = getBoolean(key, value); + } catch { + mechanismProperties[key] = value; + } + } + + return MongoCredentials.merge(options.credentials, { + mechanismProperties + }); + } + if (!isRecord(optionValue)) { + throw new MongoParseError('AuthMechanismProperties must be an object'); + } + return MongoCredentials.merge(options.credentials, { mechanismProperties: optionValue }); + } + }, + authSource: { + target: 'credentials', + transform({ options, values: [value] }): MongoCredentials { + const source = String(value); + return MongoCredentials.merge(options.credentials, { source }); + } + }, + autoEncryption: { + type: 'record' + }, + bsonRegExp: { + type: 'boolean' + }, + serverApi: { + target: 'serverApi', + transform({ values: [version] }): ServerApi { + const serverApiToValidate = + typeof version === 'string' ? ({ version } as ServerApi) : (version as ServerApi); + const versionToValidate = serverApiToValidate && serverApiToValidate.version; + if (!versionToValidate) { + throw new MongoParseError( + `Invalid \`serverApi\` property; must specify a version from the following enum: ["${Object.values( + ServerApiVersion + ).join('", "')}"]` + ); + } + if (!Object.values(ServerApiVersion).some(v => v === versionToValidate)) { + throw new MongoParseError( + `Invalid server API version=${versionToValidate}; must be in the following enum: ["${Object.values( + ServerApiVersion + ).join('", "')}"]` + ); + } + return serverApiToValidate; + } + }, + checkKeys: { + type: 'boolean' + }, + compressors: { + default: 'none', + target: 'compressors', + transform({ values }) { + const compressionList = new Set(); + for (const compVal of values as (CompressorName[] | string)[]) { + const compValArray = typeof compVal === 'string' ? compVal.split(',') : compVal; + if (!Array.isArray(compValArray)) { + throw new MongoInvalidArgumentError( + 'compressors must be an array or a comma-delimited list of strings' + ); + } + for (const c of compValArray) { + if (Object.keys(Compressor).includes(String(c))) { + compressionList.add(String(c)); + } else { + throw new MongoInvalidArgumentError( + `${c} is not a valid compression mechanism. Must be one of: ${Object.keys( + Compressor + )}.` + ); + } + } + } + return [...compressionList]; + } + }, + connectTimeoutMS: { + default: 30000, + type: 'uint' + }, + dbName: { + type: 'string' + }, + directConnection: { + default: false, + type: 'boolean' + }, + driverInfo: { + target: 'metadata', + default: makeClientMetadata(), + transform({ options, values: [value] }) { + if (!isRecord(value)) throw new MongoParseError('DriverInfo must be an object'); + return makeClientMetadata({ + driverInfo: value, + appName: options.metadata?.application?.name + }); + } + }, + enableUtf8Validation: { type: 'boolean', default: true }, + family: { + transform({ name, values: [value] }): 4 | 6 { + const transformValue = getInt(name, value); + if (transformValue === 4 || transformValue === 6) { + return transformValue; + } + throw new MongoParseError(`Option 'family' must be 4 or 6 got ${transformValue}.`); + } + }, + fieldsAsRaw: { + type: 'record' + }, + forceServerObjectId: { + default: false, + type: 'boolean' + }, + fsync: { + deprecated: 'Please use journal instead', + target: 'writeConcern', + transform({ name, options, values: [value] }): WriteConcern { + const wc = WriteConcern.fromOptions({ + writeConcern: { + ...options.writeConcern, + fsync: getBoolean(name, value) + } + }); + if (!wc) throw new MongoParseError(`Unable to make a writeConcern from fsync=${value}`); + return wc; + } + } as OptionDescriptor, + heartbeatFrequencyMS: { + default: 10000, + type: 'uint' + }, + ignoreUndefined: { + type: 'boolean' + }, + j: { + deprecated: 'Please use journal instead', + target: 'writeConcern', + transform({ name, options, values: [value] }): WriteConcern { + const wc = WriteConcern.fromOptions({ + writeConcern: { + ...options.writeConcern, + journal: getBoolean(name, value) + } + }); + if (!wc) throw new MongoParseError(`Unable to make a writeConcern from journal=${value}`); + return wc; + } + } as OptionDescriptor, + journal: { + target: 'writeConcern', + transform({ name, options, values: [value] }): WriteConcern { + const wc = WriteConcern.fromOptions({ + writeConcern: { + ...options.writeConcern, + journal: getBoolean(name, value) + } + }); + if (!wc) throw new MongoParseError(`Unable to make a writeConcern from journal=${value}`); + return wc; + } + }, + keepAlive: { + default: true, + type: 'boolean' + }, + keepAliveInitialDelay: { + default: 120000, + type: 'uint' + }, + loadBalanced: { + default: false, + type: 'boolean' + }, + localThresholdMS: { + default: 15, + type: 'uint' + }, + logger: { + default: new Logger('MongoClient'), + transform({ values: [value] }) { + if (value instanceof Logger) { + return value; + } + emitWarning('Alternative loggers might not be supported'); + // TODO: make Logger an interface that others can implement, make usage consistent in driver + // DRIVERS-1204 + return; + } + }, + loggerLevel: { + target: 'logger', + transform({ values: [value] }) { + return new Logger('MongoClient', { loggerLevel: value as LoggerLevel }); + } + }, + maxConnecting: { + default: 2, + transform({ name, values: [value] }): number { + const maxConnecting = getUint(name, value); + if (maxConnecting === 0) { + throw new MongoInvalidArgumentError('maxConnecting must be > 0 if specified'); + } + return maxConnecting; + } + }, + maxIdleTimeMS: { + default: 0, + type: 'uint' + }, + maxPoolSize: { + default: 100, + type: 'uint' + }, + maxStalenessSeconds: { + target: 'readPreference', + transform({ name, options, values: [value] }) { + const maxStalenessSeconds = getUint(name, value); + if (options.readPreference) { + return ReadPreference.fromOptions({ + readPreference: { ...options.readPreference, maxStalenessSeconds } + }); + } else { + return new ReadPreference('secondary', undefined, { maxStalenessSeconds }); + } + } + }, + minInternalBufferSize: { + type: 'uint' + }, + minPoolSize: { + default: 0, + type: 'uint' + }, + minHeartbeatFrequencyMS: { + default: 500, + type: 'uint' + }, + monitorCommands: { + default: false, + type: 'boolean' + }, + name: { + target: 'driverInfo', + transform({ values: [value], options }) { + return { ...options.driverInfo, name: String(value) }; + } + } as OptionDescriptor, + noDelay: { + default: true, + type: 'boolean' + }, + pkFactory: { + default: DEFAULT_PK_FACTORY, + transform({ values: [value] }): PkFactory { + if (isRecord(value, ['createPk'] as const) && typeof value.createPk === 'function') { + return value as PkFactory; + } + throw new MongoParseError( + `Option pkFactory must be an object with a createPk function, got ${value}` + ); + } + }, + promiseLibrary: { + deprecated: true, + type: 'any' + }, + promoteBuffers: { + type: 'boolean' + }, + promoteLongs: { + type: 'boolean' + }, + promoteValues: { + type: 'boolean' + }, + proxyHost: { + type: 'string' + }, + proxyPassword: { + type: 'string' + }, + proxyPort: { + type: 'uint' + }, + proxyUsername: { + type: 'string' + }, + raw: { + default: false, + type: 'boolean' + }, + readConcern: { + transform({ values: [value], options }) { + if (value instanceof ReadConcern || isRecord(value, ['level'] as const)) { + return ReadConcern.fromOptions({ ...options.readConcern, ...value } as any); + } + throw new MongoParseError(`ReadConcern must be an object, got ${JSON.stringify(value)}`); + } + }, + readConcernLevel: { + target: 'readConcern', + transform({ values: [level], options }) { + return ReadConcern.fromOptions({ + ...options.readConcern, + level: level as ReadConcernLevel + }); + } + }, + readPreference: { + default: ReadPreference.primary, + transform({ values: [value], options }) { + if (value instanceof ReadPreference) { + return ReadPreference.fromOptions({ + readPreference: { ...options.readPreference, ...value }, + ...value + } as any); + } + if (isRecord(value, ['mode'] as const)) { + const rp = ReadPreference.fromOptions({ + readPreference: { ...options.readPreference, ...value }, + ...value + } as any); + if (rp) return rp; + else throw new MongoParseError(`Cannot make read preference from ${JSON.stringify(value)}`); + } + if (typeof value === 'string') { + const rpOpts = { + hedge: options.readPreference?.hedge, + maxStalenessSeconds: options.readPreference?.maxStalenessSeconds + }; + return new ReadPreference( + value as ReadPreferenceMode, + options.readPreference?.tags, + rpOpts + ); + } + throw new MongoParseError(`Unknown ReadPreference value: ${value}`); + } + }, + readPreferenceTags: { + target: 'readPreference', + transform({ + values, + options + }: { + values: Array[]>; + options: MongoClientOptions; + }) { + const tags: Array> = Array.isArray(values[0]) + ? values[0] + : (values as Array); + const readPreferenceTags = []; + for (const tag of tags) { + const readPreferenceTag: TagSet = Object.create(null); + if (typeof tag === 'string') { + for (const [k, v] of entriesFromString(tag)) { + readPreferenceTag[k] = v; + } + } + if (isRecord(tag)) { + for (const [k, v] of Object.entries(tag)) { + readPreferenceTag[k] = v; + } + } + readPreferenceTags.push(readPreferenceTag); + } + return ReadPreference.fromOptions({ + readPreference: options.readPreference, + readPreferenceTags + }); + } + }, + replicaSet: { + type: 'string' + }, + retryReads: { + default: true, + type: 'boolean' + }, + retryWrites: { + default: true, + type: 'boolean' + }, + serializeFunctions: { + type: 'boolean' + }, + serverSelectionTimeoutMS: { + default: 30000, + type: 'uint' + }, + servername: { + type: 'string' + }, + socketTimeoutMS: { + default: 0, + type: 'uint' + }, + srvMaxHosts: { + type: 'uint', + default: 0 + }, + srvServiceName: { + type: 'string', + default: 'mongodb' + }, + ssl: { + target: 'tls', + type: 'boolean' + }, + sslCA: { + target: 'ca', + transform({ values: [value] }) { + return fs.readFileSync(String(value), { encoding: 'ascii' }); + } + }, + sslCRL: { + target: 'crl', + transform({ values: [value] }) { + return fs.readFileSync(String(value), { encoding: 'ascii' }); + } + }, + sslCert: { + target: 'cert', + transform({ values: [value] }) { + return fs.readFileSync(String(value), { encoding: 'ascii' }); + } + }, + sslKey: { + target: 'key', + transform({ values: [value] }) { + return fs.readFileSync(String(value), { encoding: 'ascii' }); + } + }, + sslPass: { + deprecated: true, + target: 'passphrase', + type: 'string' + }, + sslValidate: { + target: 'rejectUnauthorized', + type: 'boolean' + }, + tls: { + type: 'boolean' + }, + tlsAllowInvalidCertificates: { + target: 'rejectUnauthorized', + transform({ name, values: [value] }) { + // allowInvalidCertificates is the inverse of rejectUnauthorized + return !getBoolean(name, value); + } + }, + tlsAllowInvalidHostnames: { + target: 'checkServerIdentity', + transform({ name, values: [value] }) { + // tlsAllowInvalidHostnames means setting the checkServerIdentity function to a noop + return getBoolean(name, value) ? () => undefined : undefined; + } + }, + tlsCAFile: { + target: 'ca', + transform({ values: [value] }) { + return fs.readFileSync(String(value), { encoding: 'ascii' }); + } + }, + tlsCertificateFile: { + target: 'cert', + transform({ values: [value] }) { + return fs.readFileSync(String(value), { encoding: 'ascii' }); + } + }, + tlsCertificateKeyFile: { + target: 'key', + transform({ values: [value] }) { + return fs.readFileSync(String(value), { encoding: 'ascii' }); + } + }, + tlsCertificateKeyFilePassword: { + target: 'passphrase', + type: 'any' + }, + tlsInsecure: { + transform({ name, options, values: [value] }) { + const tlsInsecure = getBoolean(name, value); + if (tlsInsecure) { + options.checkServerIdentity = () => undefined; + options.rejectUnauthorized = false; + } else { + options.checkServerIdentity = options.tlsAllowInvalidHostnames + ? () => undefined + : undefined; + options.rejectUnauthorized = options.tlsAllowInvalidCertificates ? false : true; + } + return tlsInsecure; + } + }, + w: { + target: 'writeConcern', + transform({ values: [value], options }) { + return WriteConcern.fromOptions({ writeConcern: { ...options.writeConcern, w: value as W } }); + } + }, + waitQueueTimeoutMS: { + default: 0, + type: 'uint' + }, + writeConcern: { + target: 'writeConcern', + transform({ values: [value], options }) { + if (isRecord(value) || value instanceof WriteConcern) { + return WriteConcern.fromOptions({ + writeConcern: { + ...options.writeConcern, + ...value + } + }); + } else if (value === 'majority' || typeof value === 'number') { + return WriteConcern.fromOptions({ + writeConcern: { + ...options.writeConcern, + w: value + } + }); + } + + throw new MongoParseError(`Invalid WriteConcern cannot parse: ${JSON.stringify(value)}`); + } + }, + wtimeout: { + deprecated: 'Please use wtimeoutMS instead', + target: 'writeConcern', + transform({ values: [value], options }) { + const wc = WriteConcern.fromOptions({ + writeConcern: { + ...options.writeConcern, + wtimeout: getUint('wtimeout', value) + } + }); + if (wc) return wc; + throw new MongoParseError(`Cannot make WriteConcern from wtimeout`); + } + } as OptionDescriptor, + wtimeoutMS: { + target: 'writeConcern', + transform({ values: [value], options }) { + const wc = WriteConcern.fromOptions({ + writeConcern: { + ...options.writeConcern, + wtimeoutMS: getUint('wtimeoutMS', value) + } + }); + if (wc) return wc; + throw new MongoParseError(`Cannot make WriteConcern from wtimeout`); + } + }, + zlibCompressionLevel: { + default: 0, + type: 'int' + }, + // Custom types for modifying core behavior + connectionType: { type: 'any' }, + srvPoller: { type: 'any' }, + // Accepted NodeJS Options + minDHSize: { type: 'any' }, + pskCallback: { type: 'any' }, + secureContext: { type: 'any' }, + enableTrace: { type: 'any' }, + requestCert: { type: 'any' }, + rejectUnauthorized: { type: 'any' }, + checkServerIdentity: { type: 'any' }, + ALPNProtocols: { type: 'any' }, + SNICallback: { type: 'any' }, + session: { type: 'any' }, + requestOCSP: { type: 'any' }, + localAddress: { type: 'any' }, + localPort: { type: 'any' }, + hints: { type: 'any' }, + lookup: { type: 'any' }, + ca: { type: 'any' }, + cert: { type: 'any' }, + ciphers: { type: 'any' }, + crl: { type: 'any' }, + ecdhCurve: { type: 'any' }, + key: { type: 'any' }, + passphrase: { type: 'any' }, + pfx: { type: 'any' }, + secureProtocol: { type: 'any' }, + index: { type: 'any' }, + // Legacy Options, these are unused but left here to avoid errors with CSFLE lib + useNewUrlParser: { type: 'boolean' } as OptionDescriptor, + useUnifiedTopology: { type: 'boolean' } as OptionDescriptor +} as Record; + +export const DEFAULT_OPTIONS = new CaseInsensitiveMap( + Object.entries(OPTIONS) + .filter(([, descriptor]) => descriptor.default != null) + .map(([k, d]) => [k, d.default]) +); + +/** + * Set of permitted feature flags + * @internal + */ +export const FEATURE_FLAGS = new Set([Symbol.for('@@mdb.skipPingOnConnect')]); diff --git a/node_modules/mongodb/src/constants.ts b/node_modules/mongodb/src/constants.ts new file mode 100644 index 000000000..eec4b0757 --- /dev/null +++ b/node_modules/mongodb/src/constants.ts @@ -0,0 +1,136 @@ +export const SYSTEM_NAMESPACE_COLLECTION = 'system.namespaces'; +export const SYSTEM_INDEX_COLLECTION = 'system.indexes'; +export const SYSTEM_PROFILE_COLLECTION = 'system.profile'; +export const SYSTEM_USER_COLLECTION = 'system.users'; +export const SYSTEM_COMMAND_COLLECTION = '$cmd'; +export const SYSTEM_JS_COLLECTION = 'system.js'; + +// events +export const ERROR = 'error' as const; +export const TIMEOUT = 'timeout' as const; +export const CLOSE = 'close' as const; +export const OPEN = 'open' as const; +export const CONNECT = 'connect' as const; +export const CLOSED = 'closed' as const; +export const ENDED = 'ended' as const; +export const MESSAGE = 'message' as const; +export const PINNED = 'pinned' as const; +export const UNPINNED = 'unpinned' as const; +export const DESCRIPTION_RECEIVED = 'descriptionReceived'; +export const SERVER_OPENING = 'serverOpening' as const; +export const SERVER_CLOSED = 'serverClosed' as const; +export const SERVER_DESCRIPTION_CHANGED = 'serverDescriptionChanged' as const; +export const TOPOLOGY_OPENING = 'topologyOpening' as const; +export const TOPOLOGY_CLOSED = 'topologyClosed' as const; +export const TOPOLOGY_DESCRIPTION_CHANGED = 'topologyDescriptionChanged' as const; +export const CONNECTION_POOL_CREATED = 'connectionPoolCreated' as const; +export const CONNECTION_POOL_CLOSED = 'connectionPoolClosed' as const; +export const CONNECTION_POOL_CLEARED = 'connectionPoolCleared' as const; +export const CONNECTION_POOL_READY = 'connectionPoolReady' as const; +export const CONNECTION_CREATED = 'connectionCreated' as const; +export const CONNECTION_READY = 'connectionReady' as const; +export const CONNECTION_CLOSED = 'connectionClosed' as const; +export const CONNECTION_CHECK_OUT_STARTED = 'connectionCheckOutStarted' as const; +export const CONNECTION_CHECK_OUT_FAILED = 'connectionCheckOutFailed' as const; +export const CONNECTION_CHECKED_OUT = 'connectionCheckedOut' as const; +export const CONNECTION_CHECKED_IN = 'connectionCheckedIn' as const; +export const CLUSTER_TIME_RECEIVED = 'clusterTimeReceived' as const; +export const COMMAND_STARTED = 'commandStarted' as const; +export const COMMAND_SUCCEEDED = 'commandSucceeded' as const; +export const COMMAND_FAILED = 'commandFailed' as const; +export const SERVER_HEARTBEAT_STARTED = 'serverHeartbeatStarted' as const; +export const SERVER_HEARTBEAT_SUCCEEDED = 'serverHeartbeatSucceeded' as const; +export const SERVER_HEARTBEAT_FAILED = 'serverHeartbeatFailed' as const; +export const RESPONSE = 'response' as const; +export const MORE = 'more' as const; +export const INIT = 'init' as const; +export const CHANGE = 'change' as const; +export const END = 'end' as const; +export const RESUME_TOKEN_CHANGED = 'resumeTokenChanged' as const; + +/** @public */ +export const HEARTBEAT_EVENTS = Object.freeze([ + SERVER_HEARTBEAT_STARTED, + SERVER_HEARTBEAT_SUCCEEDED, + SERVER_HEARTBEAT_FAILED +] as const); + +/** @public */ +export const CMAP_EVENTS = Object.freeze([ + CONNECTION_POOL_CREATED, + CONNECTION_POOL_READY, + CONNECTION_POOL_CLEARED, + CONNECTION_POOL_CLOSED, + CONNECTION_CREATED, + CONNECTION_READY, + CONNECTION_CLOSED, + CONNECTION_CHECK_OUT_STARTED, + CONNECTION_CHECK_OUT_FAILED, + CONNECTION_CHECKED_OUT, + CONNECTION_CHECKED_IN +] as const); + +/** @public */ +export const TOPOLOGY_EVENTS = Object.freeze([ + SERVER_OPENING, + SERVER_CLOSED, + SERVER_DESCRIPTION_CHANGED, + TOPOLOGY_OPENING, + TOPOLOGY_CLOSED, + TOPOLOGY_DESCRIPTION_CHANGED, + ERROR, + TIMEOUT, + CLOSE +] as const); + +/** @public */ +export const APM_EVENTS = Object.freeze([ + COMMAND_STARTED, + COMMAND_SUCCEEDED, + COMMAND_FAILED +] as const); + +/** + * All events that we relay to the `Topology` + * @internal + */ +export const SERVER_RELAY_EVENTS = Object.freeze([ + SERVER_HEARTBEAT_STARTED, + SERVER_HEARTBEAT_SUCCEEDED, + SERVER_HEARTBEAT_FAILED, + COMMAND_STARTED, + COMMAND_SUCCEEDED, + COMMAND_FAILED, + ...CMAP_EVENTS +] as const); + +/** + * All events we listen to from `Server` instances, but do not forward to the client + * @internal + */ +export const LOCAL_SERVER_EVENTS = Object.freeze([ + CONNECT, + DESCRIPTION_RECEIVED, + CLOSED, + ENDED +] as const); + +/** @public */ +export const MONGO_CLIENT_EVENTS = Object.freeze([ + ...CMAP_EVENTS, + ...APM_EVENTS, + ...TOPOLOGY_EVENTS, + ...HEARTBEAT_EVENTS +] as const); + +/** + * @internal + * The legacy hello command that was deprecated in MongoDB 5.0. + */ +export const LEGACY_HELLO_COMMAND = 'ismaster'; + +/** + * @internal + * The legacy hello command that was deprecated in MongoDB 5.0. + */ +export const LEGACY_HELLO_COMMAND_CAMEL_CASE = 'isMaster'; diff --git a/node_modules/mongodb/src/cursor/abstract_cursor.ts b/node_modules/mongodb/src/cursor/abstract_cursor.ts new file mode 100644 index 000000000..c9df87dd3 --- /dev/null +++ b/node_modules/mongodb/src/cursor/abstract_cursor.ts @@ -0,0 +1,938 @@ +import { Readable, Transform } from 'stream'; + +import { BSONSerializeOptions, Document, Long, pluckBSONSerializeOptions } from '../bson'; +import { + AnyError, + MongoCursorExhaustedError, + MongoCursorInUseError, + MongoInvalidArgumentError, + MongoNetworkError, + MongoRuntimeError, + MongoTailableCursorError +} from '../error'; +import type { MongoClient } from '../mongo_client'; +import { TODO_NODE_3286, TypedEventEmitter } from '../mongo_types'; +import { executeOperation, ExecutionResult } from '../operations/execute_operation'; +import { GetMoreOperation } from '../operations/get_more'; +import { KillCursorsOperation } from '../operations/kill_cursors'; +import { ReadConcern, ReadConcernLike } from '../read_concern'; +import { ReadPreference, ReadPreferenceLike } from '../read_preference'; +import type { Server } from '../sdam/server'; +import { ClientSession, maybeClearPinnedConnection } from '../sessions'; +import { Callback, maybePromise, MongoDBNamespace, ns } from '../utils'; + +/** @internal */ +const kId = Symbol('id'); +/** @internal */ +const kDocuments = Symbol('documents'); +/** @internal */ +const kServer = Symbol('server'); +/** @internal */ +const kNamespace = Symbol('namespace'); +/** @internal */ +const kClient = Symbol('client'); +/** @internal */ +const kSession = Symbol('session'); +/** @internal */ +const kOptions = Symbol('options'); +/** @internal */ +const kTransform = Symbol('transform'); +/** @internal */ +const kInitialized = Symbol('initialized'); +/** @internal */ +const kClosed = Symbol('closed'); +/** @internal */ +const kKilled = Symbol('killed'); +/** @internal */ +const kInit = Symbol('kInit'); + +/** @public */ +export const CURSOR_FLAGS = [ + 'tailable', + 'oplogReplay', + 'noCursorTimeout', + 'awaitData', + 'exhaust', + 'partial' +] as const; + +/** @public + * @deprecated This interface is deprecated */ +export interface CursorCloseOptions { + /** Bypass calling killCursors when closing the cursor. */ + /** @deprecated the skipKillCursors option is deprecated */ + skipKillCursors?: boolean; +} + +/** @public */ +export interface CursorStreamOptions { + /** A transformation method applied to each document emitted by the stream */ + transform?(this: void, doc: Document): Document; +} + +/** @public */ +export type CursorFlag = typeof CURSOR_FLAGS[number]; + +/** @public */ +export interface AbstractCursorOptions extends BSONSerializeOptions { + session?: ClientSession; + readPreference?: ReadPreferenceLike; + readConcern?: ReadConcernLike; + /** + * Specifies the number of documents to return in each response from MongoDB + */ + batchSize?: number; + /** + * When applicable `maxTimeMS` controls the amount of time the initial command + * that constructs a cursor should take. (ex. find, aggregate, listCollections) + */ + maxTimeMS?: number; + /** + * When applicable `maxAwaitTimeMS` controls the amount of time subsequent getMores + * that a cursor uses to fetch more data should take. (ex. cursor.next()) + */ + maxAwaitTimeMS?: number; + /** + * Comment to apply to the operation. + * + * In server versions pre-4.4, 'comment' must be string. A server + * error will be thrown if any other type is provided. + * + * In server versions 4.4 and above, 'comment' can be any valid BSON type. + */ + comment?: unknown; + /** + * By default, MongoDB will automatically close a cursor when the + * client has exhausted all results in the cursor. However, for [capped collections](https://www.mongodb.com/docs/manual/core/capped-collections) + * you may use a Tailable Cursor that remains open after the client exhausts + * the results in the initial cursor. + */ + tailable?: boolean; + /** + * If awaitData is set to true, when the cursor reaches the end of the capped collection, + * MongoDB blocks the query thread for a period of time waiting for new data to arrive. + * When new data is inserted into the capped collection, the blocked thread is signaled + * to wake up and return the next batch to the client. + */ + awaitData?: boolean; + noCursorTimeout?: boolean; +} + +/** @internal */ +export type InternalAbstractCursorOptions = Omit & { + // resolved + readPreference: ReadPreference; + readConcern?: ReadConcern; + + // cursor flags, some are deprecated + oplogReplay?: boolean; + exhaust?: boolean; + partial?: boolean; +}; + +/** @public */ +export type AbstractCursorEvents = { + [AbstractCursor.CLOSE](): void; +}; + +/** @public */ +export abstract class AbstractCursor< + TSchema = any, + CursorEvents extends AbstractCursorEvents = AbstractCursorEvents +> extends TypedEventEmitter { + /** @internal */ + [kId]?: Long; + /** @internal */ + [kSession]: ClientSession; + /** @internal */ + [kServer]?: Server; + /** @internal */ + [kNamespace]: MongoDBNamespace; + /** @internal */ + [kDocuments]: TSchema[]; + /** @internal */ + [kClient]: MongoClient; + /** @internal */ + [kTransform]?: (doc: TSchema) => any; + /** @internal */ + [kInitialized]: boolean; + /** @internal */ + [kClosed]: boolean; + /** @internal */ + [kKilled]: boolean; + /** @internal */ + [kOptions]: InternalAbstractCursorOptions; + + /** @event */ + static readonly CLOSE = 'close' as const; + + /** @internal */ + constructor( + client: MongoClient, + namespace: MongoDBNamespace, + options: AbstractCursorOptions = {} + ) { + super(); + + if (!client.s.isMongoClient) { + throw new MongoRuntimeError('Cursor must be constructed with MongoClient'); + } + this[kClient] = client; + this[kNamespace] = namespace; + this[kDocuments] = []; + this[kInitialized] = false; + this[kClosed] = false; + this[kKilled] = false; + this[kOptions] = { + readPreference: + options.readPreference && options.readPreference instanceof ReadPreference + ? options.readPreference + : ReadPreference.primary, + ...pluckBSONSerializeOptions(options) + }; + + const readConcern = ReadConcern.fromOptions(options); + if (readConcern) { + this[kOptions].readConcern = readConcern; + } + + if (typeof options.batchSize === 'number') { + this[kOptions].batchSize = options.batchSize; + } + + // we check for undefined specifically here to allow falsy values + // eslint-disable-next-line no-restricted-syntax + if (options.comment !== undefined) { + this[kOptions].comment = options.comment; + } + + if (typeof options.maxTimeMS === 'number') { + this[kOptions].maxTimeMS = options.maxTimeMS; + } + + if (typeof options.maxAwaitTimeMS === 'number') { + this[kOptions].maxAwaitTimeMS = options.maxAwaitTimeMS; + } + + if (options.session instanceof ClientSession) { + this[kSession] = options.session; + } else { + this[kSession] = this[kClient].startSession({ owner: this, explicit: false }); + } + } + + get id(): Long | undefined { + return this[kId]; + } + + /** @internal */ + get client(): MongoClient { + return this[kClient]; + } + + /** @internal */ + get server(): Server | undefined { + return this[kServer]; + } + + get namespace(): MongoDBNamespace { + return this[kNamespace]; + } + + get readPreference(): ReadPreference { + return this[kOptions].readPreference; + } + + get readConcern(): ReadConcern | undefined { + return this[kOptions].readConcern; + } + + /** @internal */ + get session(): ClientSession { + return this[kSession]; + } + + set session(clientSession: ClientSession) { + this[kSession] = clientSession; + } + + /** @internal */ + get cursorOptions(): InternalAbstractCursorOptions { + return this[kOptions]; + } + + get closed(): boolean { + return this[kClosed]; + } + + get killed(): boolean { + return this[kKilled]; + } + + get loadBalanced(): boolean { + return !!this[kClient].topology?.loadBalanced; + } + + /** Returns current buffered documents length */ + bufferedCount(): number { + return this[kDocuments].length; + } + + /** Returns current buffered documents */ + readBufferedDocuments(number?: number): TSchema[] { + return this[kDocuments].splice(0, number ?? this[kDocuments].length); + } + + [Symbol.asyncIterator](): AsyncIterator { + return { + next: () => + this.next().then(value => + value != null ? { value, done: false } : { value: undefined, done: true } + ) + }; + } + + stream(options?: CursorStreamOptions): Readable & AsyncIterable { + if (options?.transform) { + const transform = options.transform; + const readable = new ReadableCursorStream(this); + + return readable.pipe( + new Transform({ + objectMode: true, + highWaterMark: 1, + transform(chunk, _, callback) { + try { + const transformed = transform(chunk); + callback(undefined, transformed); + } catch (err) { + callback(err); + } + } + }) + ); + } + + return new ReadableCursorStream(this); + } + + hasNext(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + hasNext(callback: Callback): void; + hasNext(callback?: Callback): Promise | void { + return maybePromise(callback, done => { + if (this[kId] === Long.ZERO) { + return done(undefined, false); + } + + if (this[kDocuments].length) { + return done(undefined, true); + } + + next(this, true, (err, doc) => { + if (err) return done(err); + + if (doc) { + this[kDocuments].unshift(doc); + done(undefined, true); + return; + } + + done(undefined, false); + }); + }); + } + + /** Get the next available document from the cursor, returns null if no more documents are available. */ + next(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + next(callback: Callback): void; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + next(callback?: Callback): Promise | void; + next(callback?: Callback): Promise | void { + return maybePromise(callback, done => { + if (this[kId] === Long.ZERO) { + return done(new MongoCursorExhaustedError()); + } + + next(this, true, done); + }); + } + + /** + * Try to get the next available document from the cursor or `null` if an empty batch is returned + */ + tryNext(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + tryNext(callback: Callback): void; + tryNext(callback?: Callback): Promise | void { + return maybePromise(callback, done => { + if (this[kId] === Long.ZERO) { + return done(new MongoCursorExhaustedError()); + } + + next(this, false, done); + }); + } + + /** + * Iterates over all the documents for this cursor using the iterator, callback pattern. + * + * @param iterator - The iteration callback. + * @param callback - The end callback. + */ + forEach(iterator: (doc: TSchema) => boolean | void): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + forEach(iterator: (doc: TSchema) => boolean | void, callback: Callback): void; + forEach( + iterator: (doc: TSchema) => boolean | void, + callback?: Callback + ): Promise | void { + if (typeof iterator !== 'function') { + throw new MongoInvalidArgumentError('Argument "iterator" must be a function'); + } + return maybePromise(callback, done => { + const transform = this[kTransform]; + const fetchDocs = () => { + next(this, true, (err, doc) => { + if (err || doc == null) return done(err); + let result; + // NOTE: no need to transform because `next` will do this automatically + try { + result = iterator(doc); // TODO(NODE-3283): Improve transform typing + } catch (error) { + return done(error); + } + + if (result === false) return done(); + + // these do need to be transformed since they are copying the rest of the batch + const internalDocs = this[kDocuments].splice(0, this[kDocuments].length); + for (let i = 0; i < internalDocs.length; ++i) { + try { + result = iterator( + (transform ? transform(internalDocs[i]) : internalDocs[i]) as TSchema // TODO(NODE-3283): Improve transform typing + ); + } catch (error) { + return done(error); + } + if (result === false) return done(); + } + + fetchDocs(); + }); + }; + + fetchDocs(); + }); + } + + close(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + close(callback: Callback): void; + /** + * @deprecated options argument is deprecated + */ + close(options: CursorCloseOptions): Promise; + /** + * @deprecated options argument is deprecated. Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance + */ + close(options: CursorCloseOptions, callback: Callback): void; + close(options?: CursorCloseOptions | Callback, callback?: Callback): Promise | void { + if (typeof options === 'function') (callback = options), (options = {}); + options = options ?? {}; + + const needsToEmitClosed = !this[kClosed]; + this[kClosed] = true; + + return maybePromise(callback, done => cleanupCursor(this, { needsToEmitClosed }, done)); + } + + /** + * Returns an array of documents. The caller is responsible for making sure that there + * is enough memory to store the results. Note that the array only contains partial + * results when this cursor had been previously accessed. In that case, + * cursor.rewind() can be used to reset the cursor. + * + * @param callback - The result callback. + */ + toArray(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + toArray(callback: Callback): void; + toArray(callback?: Callback): Promise | void { + return maybePromise(callback, done => { + const docs: TSchema[] = []; + const transform = this[kTransform]; + const fetchDocs = () => { + // NOTE: if we add a `nextBatch` then we should use it here + next(this, true, (err, doc) => { + if (err) return done(err); + if (doc == null) return done(undefined, docs); + + // NOTE: no need to transform because `next` will do this automatically + docs.push(doc); + + // these do need to be transformed since they are copying the rest of the batch + const internalDocs = ( + transform + ? this[kDocuments].splice(0, this[kDocuments].length).map(transform) + : this[kDocuments].splice(0, this[kDocuments].length) + ) as TSchema[]; // TODO(NODE-3283): Improve transform typing + + if (internalDocs) { + docs.push(...internalDocs); + } + + fetchDocs(); + }); + }; + + fetchDocs(); + }); + } + + /** + * Add a cursor flag to the cursor + * + * @param flag - The flag to set, must be one of following ['tailable', 'oplogReplay', 'noCursorTimeout', 'awaitData', 'partial' -. + * @param value - The flag boolean value. + */ + addCursorFlag(flag: CursorFlag, value: boolean): this { + assertUninitialized(this); + if (!CURSOR_FLAGS.includes(flag)) { + throw new MongoInvalidArgumentError(`Flag ${flag} is not one of ${CURSOR_FLAGS}`); + } + + if (typeof value !== 'boolean') { + throw new MongoInvalidArgumentError(`Flag ${flag} must be a boolean value`); + } + + this[kOptions][flag] = value; + return this; + } + + /** + * Map all documents using the provided function + * If there is a transform set on the cursor, that will be called first and the result passed to + * this function's transform. + * + * @remarks + * **Note for Typescript Users:** adding a transform changes the return type of the iteration of this cursor, + * it **does not** return a new instance of a cursor. This means when calling map, + * you should always assign the result to a new variable in order to get a correctly typed cursor variable. + * Take note of the following example: + * + * @example + * ```typescript + * const cursor: FindCursor = coll.find(); + * const mappedCursor: FindCursor = cursor.map(doc => Object.keys(doc).length); + * const keyCounts: number[] = await mappedCursor.toArray(); // cursor.toArray() still returns Document[] + * ``` + * @param transform - The mapping transformation method. + */ + map(transform: (doc: TSchema) => T): AbstractCursor { + assertUninitialized(this); + const oldTransform = this[kTransform] as (doc: TSchema) => TSchema; // TODO(NODE-3283): Improve transform typing + if (oldTransform) { + this[kTransform] = doc => { + return transform(oldTransform(doc)); + }; + } else { + this[kTransform] = transform; + } + + return this as unknown as AbstractCursor; + } + + /** + * Set the ReadPreference for the cursor. + * + * @param readPreference - The new read preference for the cursor. + */ + withReadPreference(readPreference: ReadPreferenceLike): this { + assertUninitialized(this); + if (readPreference instanceof ReadPreference) { + this[kOptions].readPreference = readPreference; + } else if (typeof readPreference === 'string') { + this[kOptions].readPreference = ReadPreference.fromString(readPreference); + } else { + throw new MongoInvalidArgumentError(`Invalid read preference: ${readPreference}`); + } + + return this; + } + + /** + * Set the ReadPreference for the cursor. + * + * @param readPreference - The new read preference for the cursor. + */ + withReadConcern(readConcern: ReadConcernLike): this { + assertUninitialized(this); + const resolvedReadConcern = ReadConcern.fromOptions({ readConcern }); + if (resolvedReadConcern) { + this[kOptions].readConcern = resolvedReadConcern; + } + + return this; + } + + /** + * Set a maxTimeMS on the cursor query, allowing for hard timeout limits on queries (Only supported on MongoDB 2.6 or higher) + * + * @param value - Number of milliseconds to wait before aborting the query. + */ + maxTimeMS(value: number): this { + assertUninitialized(this); + if (typeof value !== 'number') { + throw new MongoInvalidArgumentError('Argument for maxTimeMS must be a number'); + } + + this[kOptions].maxTimeMS = value; + return this; + } + + /** + * Set the batch size for the cursor. + * + * @param value - The number of documents to return per batch. See {@link https://docs.mongodb.com/manual/reference/command/find/|find command documentation}. + */ + batchSize(value: number): this { + assertUninitialized(this); + if (this[kOptions].tailable) { + throw new MongoTailableCursorError('Tailable cursor does not support batchSize'); + } + + if (typeof value !== 'number') { + throw new MongoInvalidArgumentError('Operation "batchSize" requires an integer'); + } + + this[kOptions].batchSize = value; + return this; + } + + /** + * Rewind this cursor to its uninitialized state. Any options that are present on the cursor will + * remain in effect. Iterating this cursor will cause new queries to be sent to the server, even + * if the resultant data has already been retrieved by this cursor. + */ + rewind(): void { + if (!this[kInitialized]) { + return; + } + + this[kId] = undefined; + this[kDocuments] = []; + this[kClosed] = false; + this[kKilled] = false; + this[kInitialized] = false; + + const session = this[kSession]; + if (session) { + // We only want to end this session if we created it, and it hasn't ended yet + if (session.explicit === false) { + if (!session.hasEnded) { + session.endSession().catch(() => null); + } + this[kSession] = this.client.startSession({ owner: this, explicit: false }); + } + } + } + + /** + * Returns a new uninitialized copy of this cursor, with options matching those that have been set on the current instance + */ + abstract clone(): AbstractCursor; + + /** @internal */ + abstract _initialize( + session: ClientSession | undefined, + callback: Callback + ): void; + + /** @internal */ + _getMore(batchSize: number, callback: Callback): void { + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + const getMoreOperation = new GetMoreOperation(this[kNamespace], this[kId]!, this[kServer]!, { + ...this[kOptions], + session: this[kSession], + batchSize + }); + + executeOperation(this[kClient], getMoreOperation, callback); + } + + /** + * @internal + * + * This function is exposed for the unified test runner's createChangeStream + * operation. We cannot refactor to use the abstract _initialize method without + * a significant refactor. + */ + [kInit](callback: Callback): void { + this._initialize(this[kSession], (err, state) => { + if (state) { + const response = state.response; + this[kServer] = state.server; + + if (response.cursor) { + // TODO(NODE-2674): Preserve int64 sent from MongoDB + this[kId] = + typeof response.cursor.id === 'number' + ? Long.fromNumber(response.cursor.id) + : response.cursor.id; + + if (response.cursor.ns) { + this[kNamespace] = ns(response.cursor.ns); + } + + this[kDocuments] = response.cursor.firstBatch; + } + + // When server responses return without a cursor document, we close this cursor + // and return the raw server response. This is often the case for explain commands + // for example + if (this[kId] == null) { + this[kId] = Long.ZERO; + // TODO(NODE-3286): ExecutionResult needs to accept a generic parameter + this[kDocuments] = [state.response as TODO_NODE_3286]; + } + } + + // the cursor is now initialized, even if an error occurred or it is dead + this[kInitialized] = true; + + if (err || cursorIsDead(this)) { + return cleanupCursor(this, { error: err }, () => callback(err, nextDocument(this))); + } + + callback(); + }); + } +} + +function nextDocument(cursor: AbstractCursor): T | null { + if (cursor[kDocuments] == null || !cursor[kDocuments].length) { + return null; + } + + const doc = cursor[kDocuments].shift(); + if (doc) { + const transform = cursor[kTransform]; + if (transform) { + return transform(doc) as T; + } + + return doc; + } + + return null; +} + +/** + * @param cursor - the cursor on which to call `next` + * @param blocking - a boolean indicating whether or not the cursor should `block` until data + * is available. Generally, this flag is set to `false` because if the getMore returns no documents, + * the cursor has been exhausted. In certain scenarios (ChangeStreams, tailable await cursors and + * `tryNext`, for example) blocking is necessary because a getMore returning no documents does + * not indicate the end of the cursor. + * @param callback - callback to return the result to the caller + * @returns + */ +export function next( + cursor: AbstractCursor, + blocking: boolean, + callback: Callback +): void { + const cursorId = cursor[kId]; + if (cursor.closed) { + return callback(undefined, null); + } + + if (cursor[kDocuments] && cursor[kDocuments].length) { + callback(undefined, nextDocument(cursor)); + return; + } + + if (cursorId == null) { + // All cursors must operate within a session, one must be made implicitly if not explicitly provided + cursor[kInit]((err, value) => { + if (err) return callback(err); + if (value) { + return callback(undefined, value); + } + return next(cursor, blocking, callback); + }); + + return; + } + + if (cursorIsDead(cursor)) { + return cleanupCursor(cursor, undefined, () => callback(undefined, null)); + } + + // otherwise need to call getMore + const batchSize = cursor[kOptions].batchSize || 1000; + cursor._getMore(batchSize, (err, response) => { + if (response) { + const cursorId = + typeof response.cursor.id === 'number' + ? Long.fromNumber(response.cursor.id) + : response.cursor.id; + + cursor[kDocuments] = response.cursor.nextBatch; + cursor[kId] = cursorId; + } + + if (err || cursorIsDead(cursor)) { + return cleanupCursor(cursor, { error: err }, () => callback(err, nextDocument(cursor))); + } + + if (cursor[kDocuments].length === 0 && blocking === false) { + return callback(undefined, null); + } + + next(cursor, blocking, callback); + }); +} + +function cursorIsDead(cursor: AbstractCursor): boolean { + const cursorId = cursor[kId]; + return !!cursorId && cursorId.isZero(); +} + +function cleanupCursor( + cursor: AbstractCursor, + options: { error?: AnyError | undefined; needsToEmitClosed?: boolean } | undefined, + callback: Callback +): void { + const cursorId = cursor[kId]; + const cursorNs = cursor[kNamespace]; + const server = cursor[kServer]; + const session = cursor[kSession]; + const error = options?.error; + const needsToEmitClosed = options?.needsToEmitClosed ?? cursor[kDocuments].length === 0; + + if (error) { + if (cursor.loadBalanced && error instanceof MongoNetworkError) { + return completeCleanup(); + } + } + + if (cursorId == null || server == null || cursorId.isZero() || cursorNs == null) { + if (needsToEmitClosed) { + cursor[kClosed] = true; + cursor[kId] = Long.ZERO; + cursor.emit(AbstractCursor.CLOSE); + } + + if (session) { + if (session.owner === cursor) { + return session.endSession({ error }, callback); + } + + if (!session.inTransaction()) { + maybeClearPinnedConnection(session, { error }); + } + } + + return callback(); + } + + function completeCleanup() { + if (session) { + if (session.owner === cursor) { + return session.endSession({ error }, () => { + cursor.emit(AbstractCursor.CLOSE); + callback(); + }); + } + + if (!session.inTransaction()) { + maybeClearPinnedConnection(session, { error }); + } + } + + cursor.emit(AbstractCursor.CLOSE); + return callback(); + } + + cursor[kKilled] = true; + + return executeOperation( + cursor[kClient], + new KillCursorsOperation(cursorId, cursorNs, server, { session }), + completeCleanup + ); +} + +/** @internal */ +export function assertUninitialized(cursor: AbstractCursor): void { + if (cursor[kInitialized]) { + throw new MongoCursorInUseError(); + } +} + +class ReadableCursorStream extends Readable { + private _cursor: AbstractCursor; + private _readInProgress = false; + + constructor(cursor: AbstractCursor) { + super({ + objectMode: true, + autoDestroy: false, + highWaterMark: 1 + }); + this._cursor = cursor; + } + + // eslint-disable-next-line @typescript-eslint/no-unused-vars + override _read(size: number): void { + if (!this._readInProgress) { + this._readInProgress = true; + this._readNext(); + } + } + + override _destroy(error: Error | null, callback: (error?: Error | null) => void): void { + this._cursor.close(err => process.nextTick(callback, err || error)); + } + + private _readNext() { + next(this._cursor, true, (err, result) => { + if (err) { + // NOTE: This is questionable, but we have a test backing the behavior. It seems the + // desired behavior is that a stream ends cleanly when a user explicitly closes + // a client during iteration. Alternatively, we could do the "right" thing and + // propagate the error message by removing this special case. + if (err.message.match(/server is closed/)) { + this._cursor.close().catch(() => null); + return this.push(null); + } + + // NOTE: This is also perhaps questionable. The rationale here is that these errors tend + // to be "operation interrupted", where a cursor has been closed but there is an + // active getMore in-flight. This used to check if the cursor was killed but once + // that changed to happen in cleanup legitimate errors would not destroy the + // stream. There are change streams test specifically test these cases. + if (err.message.match(/interrupted/)) { + return this.push(null); + } + + return this.destroy(err); + } + + if (result == null) { + this.push(null); + } else if (this.destroyed) { + this._cursor.close().catch(() => null); + } else { + if (this.push(result)) { + return this._readNext(); + } + + this._readInProgress = false; + } + }); + } +} diff --git a/node_modules/mongodb/src/cursor/aggregation_cursor.ts b/node_modules/mongodb/src/cursor/aggregation_cursor.ts new file mode 100644 index 000000000..d244456be --- /dev/null +++ b/node_modules/mongodb/src/cursor/aggregation_cursor.ts @@ -0,0 +1,220 @@ +import type { Document } from '../bson'; +import type { ExplainVerbosityLike } from '../explain'; +import type { MongoClient } from '../mongo_client'; +import { AggregateOperation, AggregateOptions } from '../operations/aggregate'; +import { executeOperation, ExecutionResult } from '../operations/execute_operation'; +import type { ClientSession } from '../sessions'; +import type { Sort } from '../sort'; +import type { Callback, MongoDBNamespace } from '../utils'; +import { mergeOptions } from '../utils'; +import type { AbstractCursorOptions } from './abstract_cursor'; +import { AbstractCursor, assertUninitialized } from './abstract_cursor'; + +/** @public */ +export interface AggregationCursorOptions extends AbstractCursorOptions, AggregateOptions {} + +/** @internal */ +const kPipeline = Symbol('pipeline'); +/** @internal */ +const kOptions = Symbol('options'); + +/** + * The **AggregationCursor** class is an internal class that embodies an aggregation cursor on MongoDB + * allowing for iteration over the results returned from the underlying query. It supports + * one by one document iteration, conversion to an array or can be iterated as a Node 4.X + * or higher stream + * @public + */ +export class AggregationCursor extends AbstractCursor { + /** @internal */ + [kPipeline]: Document[]; + /** @internal */ + [kOptions]: AggregateOptions; + + /** @internal */ + constructor( + client: MongoClient, + namespace: MongoDBNamespace, + pipeline: Document[] = [], + options: AggregateOptions = {} + ) { + super(client, namespace, options); + + this[kPipeline] = pipeline; + this[kOptions] = options; + } + + get pipeline(): Document[] { + return this[kPipeline]; + } + + clone(): AggregationCursor { + const clonedOptions = mergeOptions({}, this[kOptions]); + delete clonedOptions.session; + return new AggregationCursor(this.client, this.namespace, this[kPipeline], { + ...clonedOptions + }); + } + + override map(transform: (doc: TSchema) => T): AggregationCursor { + return super.map(transform) as AggregationCursor; + } + + /** @internal */ + _initialize(session: ClientSession, callback: Callback): void { + const aggregateOperation = new AggregateOperation(this.namespace, this[kPipeline], { + ...this[kOptions], + ...this.cursorOptions, + session + }); + + executeOperation(this.client, aggregateOperation, (err, response) => { + if (err || response == null) return callback(err); + + // TODO: NODE-2882 + callback(undefined, { server: aggregateOperation.server, session, response }); + }); + } + + /** Execute the explain for the cursor */ + explain(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + explain(callback: Callback): void; + explain(verbosity: ExplainVerbosityLike): Promise; + explain( + verbosity?: ExplainVerbosityLike | Callback, + callback?: Callback + ): Promise | void { + if (typeof verbosity === 'function') (callback = verbosity), (verbosity = true); + if (verbosity == null) verbosity = true; + + return executeOperation( + this.client, + new AggregateOperation(this.namespace, this[kPipeline], { + ...this[kOptions], // NOTE: order matters here, we may need to refine this + ...this.cursorOptions, + explain: verbosity + }), + callback + ); + } + + /** Add a group stage to the aggregation pipeline */ + group($group: Document): AggregationCursor; + group($group: Document): this { + assertUninitialized(this); + this[kPipeline].push({ $group }); + return this; + } + + /** Add a limit stage to the aggregation pipeline */ + limit($limit: number): this { + assertUninitialized(this); + this[kPipeline].push({ $limit }); + return this; + } + + /** Add a match stage to the aggregation pipeline */ + match($match: Document): this { + assertUninitialized(this); + this[kPipeline].push({ $match }); + return this; + } + + /** Add an out stage to the aggregation pipeline */ + out($out: { db: string; coll: string } | string): this { + assertUninitialized(this); + this[kPipeline].push({ $out }); + return this; + } + + /** + * Add a project stage to the aggregation pipeline + * + * @remarks + * In order to strictly type this function you must provide an interface + * that represents the effect of your projection on the result documents. + * + * By default chaining a projection to your cursor changes the returned type to the generic {@link Document} type. + * You should specify a parameterized type to have assertions on your final results. + * + * @example + * ```typescript + * // Best way + * const docs: AggregationCursor<{ a: number }> = cursor.project<{ a: number }>({ _id: 0, a: true }); + * // Flexible way + * const docs: AggregationCursor = cursor.project({ _id: 0, a: true }); + * ``` + * + * @remarks + * In order to strictly type this function you must provide an interface + * that represents the effect of your projection on the result documents. + * + * **Note for Typescript Users:** adding a transform changes the return type of the iteration of this cursor, + * it **does not** return a new instance of a cursor. This means when calling project, + * you should always assign the result to a new variable in order to get a correctly typed cursor variable. + * Take note of the following example: + * + * @example + * ```typescript + * const cursor: AggregationCursor<{ a: number; b: string }> = coll.aggregate([]); + * const projectCursor = cursor.project<{ a: number }>({ _id: 0, a: true }); + * const aPropOnlyArray: {a: number}[] = await projectCursor.toArray(); + * + * // or always use chaining and save the final cursor + * + * const cursor = coll.aggregate().project<{ a: string }>({ + * _id: 0, + * a: { $convert: { input: '$a', to: 'string' } + * }}); + * ``` + */ + project($project: Document): AggregationCursor { + assertUninitialized(this); + this[kPipeline].push({ $project }); + return this as unknown as AggregationCursor; + } + + /** Add a lookup stage to the aggregation pipeline */ + lookup($lookup: Document): this { + assertUninitialized(this); + this[kPipeline].push({ $lookup }); + return this; + } + + /** Add a redact stage to the aggregation pipeline */ + redact($redact: Document): this { + assertUninitialized(this); + this[kPipeline].push({ $redact }); + return this; + } + + /** Add a skip stage to the aggregation pipeline */ + skip($skip: number): this { + assertUninitialized(this); + this[kPipeline].push({ $skip }); + return this; + } + + /** Add a sort stage to the aggregation pipeline */ + sort($sort: Sort): this { + assertUninitialized(this); + this[kPipeline].push({ $sort }); + return this; + } + + /** Add a unwind stage to the aggregation pipeline */ + unwind($unwind: Document | string): this { + assertUninitialized(this); + this[kPipeline].push({ $unwind }); + return this; + } + + // deprecated methods + /** @deprecated Add a geoNear stage to the aggregation pipeline */ + geoNear($geoNear: Document): this { + assertUninitialized(this); + this[kPipeline].push({ $geoNear }); + return this; + } +} diff --git a/node_modules/mongodb/src/cursor/change_stream_cursor.ts b/node_modules/mongodb/src/cursor/change_stream_cursor.ts new file mode 100644 index 000000000..b5a4ae463 --- /dev/null +++ b/node_modules/mongodb/src/cursor/change_stream_cursor.ts @@ -0,0 +1,194 @@ +import type { Document, Long, Timestamp } from '../bson'; +import { + type ChangeStreamDocument, + type ChangeStreamEvents, + type OperationTime, + type ResumeToken, + ChangeStream +} from '../change_stream'; +import { INIT, RESPONSE } from '../constants'; +import type { MongoClient } from '../mongo_client'; +import type { TODO_NODE_3286 } from '../mongo_types'; +import { AggregateOperation } from '../operations/aggregate'; +import type { CollationOptions } from '../operations/command'; +import { type ExecutionResult, executeOperation } from '../operations/execute_operation'; +import type { ClientSession } from '../sessions'; +import { type Callback, type MongoDBNamespace, maxWireVersion } from '../utils'; +import { type AbstractCursorOptions, AbstractCursor } from './abstract_cursor'; + +/** @internal */ +export interface ChangeStreamCursorOptions extends AbstractCursorOptions { + startAtOperationTime?: OperationTime; + resumeAfter?: ResumeToken; + startAfter?: ResumeToken; + maxAwaitTimeMS?: number; + collation?: CollationOptions; + fullDocument?: string; +} + +/** @internal */ +export type ChangeStreamAggregateRawResult = { + $clusterTime: { clusterTime: Timestamp }; + cursor: { + postBatchResumeToken: ResumeToken; + ns: string; + id: number | Long; + } & ({ firstBatch: TChange[] } | { nextBatch: TChange[] }); + ok: 1; + operationTime: Timestamp; +}; + +/** @internal */ +export class ChangeStreamCursor< + TSchema extends Document = Document, + TChange extends Document = ChangeStreamDocument +> extends AbstractCursor { + _resumeToken: ResumeToken; + startAtOperationTime?: OperationTime; + hasReceived?: boolean; + resumeAfter: ResumeToken; + startAfter: ResumeToken; + options: ChangeStreamCursorOptions; + + postBatchResumeToken?: ResumeToken; + pipeline: Document[]; + + /** + * @internal + * + * used to determine change stream resumability + */ + maxWireVersion: number | undefined; + + constructor( + client: MongoClient, + namespace: MongoDBNamespace, + pipeline: Document[] = [], + options: ChangeStreamCursorOptions = {} + ) { + super(client, namespace, options); + + this.pipeline = pipeline; + this.options = options; + this._resumeToken = null; + this.startAtOperationTime = options.startAtOperationTime; + + if (options.startAfter) { + this.resumeToken = options.startAfter; + } else if (options.resumeAfter) { + this.resumeToken = options.resumeAfter; + } + } + + set resumeToken(token: ResumeToken) { + this._resumeToken = token; + this.emit(ChangeStream.RESUME_TOKEN_CHANGED, token); + } + + get resumeToken(): ResumeToken { + return this._resumeToken; + } + + get resumeOptions(): ChangeStreamCursorOptions { + const options: ChangeStreamCursorOptions = { + ...this.options + }; + + for (const key of ['resumeAfter', 'startAfter', 'startAtOperationTime'] as const) { + delete options[key]; + } + + if (this.resumeToken != null) { + if (this.options.startAfter && !this.hasReceived) { + options.startAfter = this.resumeToken; + } else { + options.resumeAfter = this.resumeToken; + } + } else if (this.startAtOperationTime != null && maxWireVersion(this.server) >= 7) { + options.startAtOperationTime = this.startAtOperationTime; + } + + return options; + } + + cacheResumeToken(resumeToken: ResumeToken): void { + if (this.bufferedCount() === 0 && this.postBatchResumeToken) { + this.resumeToken = this.postBatchResumeToken; + } else { + this.resumeToken = resumeToken; + } + this.hasReceived = true; + } + + _processBatch(response: ChangeStreamAggregateRawResult): void { + const cursor = response.cursor; + if (cursor.postBatchResumeToken) { + this.postBatchResumeToken = response.cursor.postBatchResumeToken; + + const batch = + 'firstBatch' in response.cursor ? response.cursor.firstBatch : response.cursor.nextBatch; + if (batch.length === 0) { + this.resumeToken = cursor.postBatchResumeToken; + } + } + } + + clone(): AbstractCursor { + return new ChangeStreamCursor(this.client, this.namespace, this.pipeline, { + ...this.cursorOptions + }); + } + + _initialize(session: ClientSession, callback: Callback): void { + const aggregateOperation = new AggregateOperation(this.namespace, this.pipeline, { + ...this.cursorOptions, + ...this.options, + session + }); + + executeOperation>( + session.client, + aggregateOperation, + (err, response) => { + if (err || response == null) { + return callback(err); + } + + const server = aggregateOperation.server; + this.maxWireVersion = maxWireVersion(server); + + if ( + this.startAtOperationTime == null && + this.resumeAfter == null && + this.startAfter == null && + this.maxWireVersion >= 7 + ) { + this.startAtOperationTime = response.operationTime; + } + + this._processBatch(response); + + this.emit(INIT, response); + this.emit(RESPONSE); + + // TODO: NODE-2882 + callback(undefined, { server, session, response }); + } + ); + } + + override _getMore(batchSize: number, callback: Callback): void { + super._getMore(batchSize, (err, response) => { + if (err) { + return callback(err); + } + + this.maxWireVersion = maxWireVersion(this.server); + this._processBatch(response as TODO_NODE_3286 as ChangeStreamAggregateRawResult); + + this.emit(ChangeStream.MORE, response); + this.emit(ChangeStream.RESPONSE); + callback(err, response); + }); + } +} diff --git a/node_modules/mongodb/src/cursor/find_cursor.ts b/node_modules/mongodb/src/cursor/find_cursor.ts new file mode 100644 index 000000000..fd0c0538f --- /dev/null +++ b/node_modules/mongodb/src/cursor/find_cursor.ts @@ -0,0 +1,481 @@ +import type { Document } from '../bson'; +import { MongoInvalidArgumentError, MongoTailableCursorError } from '../error'; +import type { ExplainVerbosityLike } from '../explain'; +import type { MongoClient } from '../mongo_client'; +import type { CollationOptions } from '../operations/command'; +import { CountOperation, CountOptions } from '../operations/count'; +import { executeOperation, ExecutionResult } from '../operations/execute_operation'; +import { FindOperation, FindOptions } from '../operations/find'; +import type { Hint } from '../operations/operation'; +import type { ClientSession } from '../sessions'; +import { formatSort, Sort, SortDirection } from '../sort'; +import { Callback, emitWarningOnce, mergeOptions, MongoDBNamespace } from '../utils'; +import { AbstractCursor, assertUninitialized } from './abstract_cursor'; + +/** @internal */ +const kFilter = Symbol('filter'); +/** @internal */ +const kNumReturned = Symbol('numReturned'); +/** @internal */ +const kBuiltOptions = Symbol('builtOptions'); + +/** @public Flags allowed for cursor */ +export const FLAGS = [ + 'tailable', + 'oplogReplay', + 'noCursorTimeout', + 'awaitData', + 'exhaust', + 'partial' +] as const; + +/** @public */ +export class FindCursor extends AbstractCursor { + /** @internal */ + [kFilter]: Document; + /** @internal */ + [kNumReturned]?: number; + /** @internal */ + [kBuiltOptions]: FindOptions; + + /** @internal */ + constructor( + client: MongoClient, + namespace: MongoDBNamespace, + filter: Document | undefined, + options: FindOptions = {} + ) { + super(client, namespace, options); + + this[kFilter] = filter || {}; + this[kBuiltOptions] = options; + + if (options.sort != null) { + this[kBuiltOptions].sort = formatSort(options.sort); + } + } + + clone(): FindCursor { + const clonedOptions = mergeOptions({}, this[kBuiltOptions]); + delete clonedOptions.session; + return new FindCursor(this.client, this.namespace, this[kFilter], { + ...clonedOptions + }); + } + + override map(transform: (doc: TSchema) => T): FindCursor { + return super.map(transform) as FindCursor; + } + + /** @internal */ + _initialize(session: ClientSession, callback: Callback): void { + const findOperation = new FindOperation(undefined, this.namespace, this[kFilter], { + ...this[kBuiltOptions], // NOTE: order matters here, we may need to refine this + ...this.cursorOptions, + session + }); + + executeOperation(this.client, findOperation, (err, response) => { + if (err || response == null) return callback(err); + + // TODO: We only need this for legacy queries that do not support `limit`, maybe + // the value should only be saved in those cases. + if (response.cursor) { + this[kNumReturned] = response.cursor.firstBatch.length; + } else { + this[kNumReturned] = response.documents ? response.documents.length : 0; + } + + // TODO: NODE-2882 + callback(undefined, { server: findOperation.server, session, response }); + }); + } + + /** @internal */ + override _getMore(batchSize: number, callback: Callback): void { + // NOTE: this is to support client provided limits in pre-command servers + const numReturned = this[kNumReturned]; + if (numReturned) { + const limit = this[kBuiltOptions].limit; + batchSize = + limit && limit > 0 && numReturned + batchSize > limit ? limit - numReturned : batchSize; + + if (batchSize <= 0) { + return this.close(callback); + } + } + + super._getMore(batchSize, (err, response) => { + if (err) return callback(err); + + // TODO: wrap this in some logic to prevent it from happening if we don't need this support + if (response) { + this[kNumReturned] = this[kNumReturned] + response.cursor.nextBatch.length; + } + + callback(undefined, response); + }); + } + + /** + * Get the count of documents for this cursor + * @deprecated Use `collection.estimatedDocumentCount` or `collection.countDocuments` instead + */ + count(): Promise; + /** @deprecated Use `collection.estimatedDocumentCount` or `collection.countDocuments` instead. Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + count(callback: Callback): void; + /** @deprecated Use `collection.estimatedDocumentCount` or `collection.countDocuments` instead. */ + count(options: CountOptions): Promise; + /** @deprecated Use `collection.estimatedDocumentCount` or `collection.countDocuments` instead. Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + count(options: CountOptions, callback: Callback): void; + count( + options?: CountOptions | Callback, + callback?: Callback + ): Promise | void { + emitWarningOnce( + 'cursor.count is deprecated and will be removed in the next major version, please use `collection.estimatedDocumentCount` or `collection.countDocuments` instead ' + ); + if (typeof options === 'boolean') { + throw new MongoInvalidArgumentError('Invalid first parameter to count'); + } + + if (typeof options === 'function') (callback = options), (options = {}); + options = options ?? {}; + + return executeOperation( + this.client, + new CountOperation(this.namespace, this[kFilter], { + ...this[kBuiltOptions], // NOTE: order matters here, we may need to refine this + ...this.cursorOptions, + ...options + }), + callback + ); + } + + /** Execute the explain for the cursor */ + explain(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + explain(callback: Callback): void; + explain(verbosity?: ExplainVerbosityLike): Promise; + explain( + verbosity?: ExplainVerbosityLike | Callback, + callback?: Callback + ): Promise | void { + if (typeof verbosity === 'function') (callback = verbosity), (verbosity = true); + if (verbosity == null) verbosity = true; + + return executeOperation( + this.client, + new FindOperation(undefined, this.namespace, this[kFilter], { + ...this[kBuiltOptions], // NOTE: order matters here, we may need to refine this + ...this.cursorOptions, + explain: verbosity + }), + callback + ); + } + + /** Set the cursor query */ + filter(filter: Document): this { + assertUninitialized(this); + this[kFilter] = filter; + return this; + } + + /** + * Set the cursor hint + * + * @param hint - If specified, then the query system will only consider plans using the hinted index. + */ + hint(hint: Hint): this { + assertUninitialized(this); + this[kBuiltOptions].hint = hint; + return this; + } + + /** + * Set the cursor min + * + * @param min - Specify a $min value to specify the inclusive lower bound for a specific index in order to constrain the results of find(). The $min specifies the lower bound for all keys of a specific index in order. + */ + min(min: Document): this { + assertUninitialized(this); + this[kBuiltOptions].min = min; + return this; + } + + /** + * Set the cursor max + * + * @param max - Specify a $max value to specify the exclusive upper bound for a specific index in order to constrain the results of find(). The $max specifies the upper bound for all keys of a specific index in order. + */ + max(max: Document): this { + assertUninitialized(this); + this[kBuiltOptions].max = max; + return this; + } + + /** + * Set the cursor returnKey. + * If set to true, modifies the cursor to only return the index field or fields for the results of the query, rather than documents. + * If set to true and the query does not use an index to perform the read operation, the returned documents will not contain any fields. + * + * @param value - the returnKey value. + */ + returnKey(value: boolean): this { + assertUninitialized(this); + this[kBuiltOptions].returnKey = value; + return this; + } + + /** + * Modifies the output of a query by adding a field $recordId to matching documents. $recordId is the internal key which uniquely identifies a document in a collection. + * + * @param value - The $showDiskLoc option has now been deprecated and replaced with the showRecordId field. $showDiskLoc will still be accepted for OP_QUERY stye find. + */ + showRecordId(value: boolean): this { + assertUninitialized(this); + this[kBuiltOptions].showRecordId = value; + return this; + } + + /** + * Add a query modifier to the cursor query + * + * @param name - The query modifier (must start with $, such as $orderby etc) + * @param value - The modifier value. + */ + addQueryModifier(name: string, value: string | boolean | number | Document): this { + assertUninitialized(this); + if (name[0] !== '$') { + throw new MongoInvalidArgumentError(`${name} is not a valid query modifier`); + } + + // Strip of the $ + const field = name.substr(1); + + // NOTE: consider some TS magic for this + switch (field) { + case 'comment': + this[kBuiltOptions].comment = value as string | Document; + break; + + case 'explain': + this[kBuiltOptions].explain = value as boolean; + break; + + case 'hint': + this[kBuiltOptions].hint = value as string | Document; + break; + + case 'max': + this[kBuiltOptions].max = value as Document; + break; + + case 'maxTimeMS': + this[kBuiltOptions].maxTimeMS = value as number; + break; + + case 'min': + this[kBuiltOptions].min = value as Document; + break; + + case 'orderby': + this[kBuiltOptions].sort = formatSort(value as string | Document); + break; + + case 'query': + this[kFilter] = value as Document; + break; + + case 'returnKey': + this[kBuiltOptions].returnKey = value as boolean; + break; + + case 'showDiskLoc': + this[kBuiltOptions].showRecordId = value as boolean; + break; + + default: + throw new MongoInvalidArgumentError(`Invalid query modifier: ${name}`); + } + + return this; + } + + /** + * Add a comment to the cursor query allowing for tracking the comment in the log. + * + * @param value - The comment attached to this query. + */ + comment(value: string): this { + assertUninitialized(this); + this[kBuiltOptions].comment = value; + return this; + } + + /** + * Set a maxAwaitTimeMS on a tailing cursor query to allow to customize the timeout value for the option awaitData (Only supported on MongoDB 3.2 or higher, ignored otherwise) + * + * @param value - Number of milliseconds to wait before aborting the tailed query. + */ + maxAwaitTimeMS(value: number): this { + assertUninitialized(this); + if (typeof value !== 'number') { + throw new MongoInvalidArgumentError('Argument for maxAwaitTimeMS must be a number'); + } + + this[kBuiltOptions].maxAwaitTimeMS = value; + return this; + } + + /** + * Set a maxTimeMS on the cursor query, allowing for hard timeout limits on queries (Only supported on MongoDB 2.6 or higher) + * + * @param value - Number of milliseconds to wait before aborting the query. + */ + override maxTimeMS(value: number): this { + assertUninitialized(this); + if (typeof value !== 'number') { + throw new MongoInvalidArgumentError('Argument for maxTimeMS must be a number'); + } + + this[kBuiltOptions].maxTimeMS = value; + return this; + } + + /** + * Add a project stage to the aggregation pipeline + * + * @remarks + * In order to strictly type this function you must provide an interface + * that represents the effect of your projection on the result documents. + * + * By default chaining a projection to your cursor changes the returned type to the generic + * {@link Document} type. + * You should specify a parameterized type to have assertions on your final results. + * + * @example + * ```typescript + * // Best way + * const docs: FindCursor<{ a: number }> = cursor.project<{ a: number }>({ _id: 0, a: true }); + * // Flexible way + * const docs: FindCursor = cursor.project({ _id: 0, a: true }); + * ``` + * + * @remarks + * + * **Note for Typescript Users:** adding a transform changes the return type of the iteration of this cursor, + * it **does not** return a new instance of a cursor. This means when calling project, + * you should always assign the result to a new variable in order to get a correctly typed cursor variable. + * Take note of the following example: + * + * @example + * ```typescript + * const cursor: FindCursor<{ a: number; b: string }> = coll.find(); + * const projectCursor = cursor.project<{ a: number }>({ _id: 0, a: true }); + * const aPropOnlyArray: {a: number}[] = await projectCursor.toArray(); + * + * // or always use chaining and save the final cursor + * + * const cursor = coll.find().project<{ a: string }>({ + * _id: 0, + * a: { $convert: { input: '$a', to: 'string' } + * }}); + * ``` + */ + project(value: Document): FindCursor { + assertUninitialized(this); + this[kBuiltOptions].projection = value; + return this as unknown as FindCursor; + } + + /** + * Sets the sort order of the cursor query. + * + * @param sort - The key or keys set for the sort. + * @param direction - The direction of the sorting (1 or -1). + */ + sort(sort: Sort | string, direction?: SortDirection): this { + assertUninitialized(this); + if (this[kBuiltOptions].tailable) { + throw new MongoTailableCursorError('Tailable cursor does not support sorting'); + } + + this[kBuiltOptions].sort = formatSort(sort, direction); + return this; + } + + /** + * Allows disk use for blocking sort operations exceeding 100MB memory. (MongoDB 3.2 or higher) + * + * @remarks + * {@link https://docs.mongodb.com/manual/reference/command/find/#find-cmd-allowdiskuse | find command allowDiskUse documentation} + */ + allowDiskUse(allow = true): this { + assertUninitialized(this); + + if (!this[kBuiltOptions].sort) { + throw new MongoInvalidArgumentError('Option "allowDiskUse" requires a sort specification'); + } + + // As of 6.0 the default is true. This allows users to get back to the old behaviour. + if (!allow) { + this[kBuiltOptions].allowDiskUse = false; + return this; + } + + this[kBuiltOptions].allowDiskUse = true; + return this; + } + + /** + * Set the collation options for the cursor. + * + * @param value - The cursor collation options (MongoDB 3.4 or higher) settings for update operation (see 3.4 documentation for available fields). + */ + collation(value: CollationOptions): this { + assertUninitialized(this); + this[kBuiltOptions].collation = value; + return this; + } + + /** + * Set the limit for the cursor. + * + * @param value - The limit for the cursor query. + */ + limit(value: number): this { + assertUninitialized(this); + if (this[kBuiltOptions].tailable) { + throw new MongoTailableCursorError('Tailable cursor does not support limit'); + } + + if (typeof value !== 'number') { + throw new MongoInvalidArgumentError('Operation "limit" requires an integer'); + } + + this[kBuiltOptions].limit = value; + return this; + } + + /** + * Set the skip for the cursor. + * + * @param value - The skip for the cursor query. + */ + skip(value: number): this { + assertUninitialized(this); + if (this[kBuiltOptions].tailable) { + throw new MongoTailableCursorError('Tailable cursor does not support skip'); + } + + if (typeof value !== 'number') { + throw new MongoInvalidArgumentError('Operation "skip" requires an integer'); + } + + this[kBuiltOptions].skip = value; + return this; + } +} diff --git a/node_modules/mongodb/src/cursor/list_collections_cursor.ts b/node_modules/mongodb/src/cursor/list_collections_cursor.ts new file mode 100644 index 000000000..460126be8 --- /dev/null +++ b/node_modules/mongodb/src/cursor/list_collections_cursor.ts @@ -0,0 +1,52 @@ +import type { Document } from '../bson'; +import type { Db } from '../db'; +import { executeOperation, ExecutionResult } from '../operations/execute_operation'; +import { + CollectionInfo, + ListCollectionsOperation, + ListCollectionsOptions +} from '../operations/list_collections'; +import type { ClientSession } from '../sessions'; +import type { Callback } from '../utils'; +import { AbstractCursor } from './abstract_cursor'; + +/** @public */ +export class ListCollectionsCursor< + T extends Pick | CollectionInfo = + | Pick + | CollectionInfo +> extends AbstractCursor { + parent: Db; + filter: Document; + options?: ListCollectionsOptions; + + constructor(db: Db, filter: Document, options?: ListCollectionsOptions) { + super(db.s.client, db.s.namespace, options); + this.parent = db; + this.filter = filter; + this.options = options; + } + + clone(): ListCollectionsCursor { + return new ListCollectionsCursor(this.parent, this.filter, { + ...this.options, + ...this.cursorOptions + }); + } + + /** @internal */ + _initialize(session: ClientSession | undefined, callback: Callback): void { + const operation = new ListCollectionsOperation(this.parent, this.filter, { + ...this.cursorOptions, + ...this.options, + session + }); + + executeOperation(this.parent.s.client, operation, (err, response) => { + if (err || response == null) return callback(err); + + // TODO: NODE-2882 + callback(undefined, { server: operation.server, session, response }); + }); + } +} diff --git a/node_modules/mongodb/src/cursor/list_indexes_cursor.ts b/node_modules/mongodb/src/cursor/list_indexes_cursor.ts new file mode 100644 index 000000000..25336d84d --- /dev/null +++ b/node_modules/mongodb/src/cursor/list_indexes_cursor.ts @@ -0,0 +1,41 @@ +import type { Collection } from '../collection'; +import { executeOperation, ExecutionResult } from '../operations/execute_operation'; +import { ListIndexesOperation, ListIndexesOptions } from '../operations/indexes'; +import type { ClientSession } from '../sessions'; +import type { Callback } from '../utils'; +import { AbstractCursor } from './abstract_cursor'; + +/** @public */ +export class ListIndexesCursor extends AbstractCursor { + parent: Collection; + options?: ListIndexesOptions; + + constructor(collection: Collection, options?: ListIndexesOptions) { + super(collection.s.db.s.client, collection.s.namespace, options); + this.parent = collection; + this.options = options; + } + + clone(): ListIndexesCursor { + return new ListIndexesCursor(this.parent, { + ...this.options, + ...this.cursorOptions + }); + } + + /** @internal */ + _initialize(session: ClientSession | undefined, callback: Callback): void { + const operation = new ListIndexesOperation(this.parent, { + ...this.cursorOptions, + ...this.options, + session + }); + + executeOperation(this.parent.s.db.s.client, operation, (err, response) => { + if (err || response == null) return callback(err); + + // TODO: NODE-2882 + callback(undefined, { server: operation.server, session, response }); + }); + } +} diff --git a/node_modules/mongodb/src/db.ts b/node_modules/mongodb/src/db.ts new file mode 100644 index 000000000..c1c3e44c4 --- /dev/null +++ b/node_modules/mongodb/src/db.ts @@ -0,0 +1,801 @@ +import { Admin } from './admin'; +import { BSONSerializeOptions, Document, resolveBSONOptions } from './bson'; +import { ChangeStream, ChangeStreamDocument, ChangeStreamOptions } from './change_stream'; +import { Collection, CollectionOptions } from './collection'; +import * as CONSTANTS from './constants'; +import { AggregationCursor } from './cursor/aggregation_cursor'; +import { ListCollectionsCursor } from './cursor/list_collections_cursor'; +import { MongoAPIError, MongoInvalidArgumentError } from './error'; +import { Logger, LoggerOptions } from './logger'; +import type { MongoClient, PkFactory } from './mongo_client'; +import type { TODO_NODE_3286 } from './mongo_types'; +import { AddUserOperation, AddUserOptions } from './operations/add_user'; +import type { AggregateOptions } from './operations/aggregate'; +import { CollectionsOperation } from './operations/collections'; +import type { IndexInformationOptions } from './operations/common_functions'; +import { CreateCollectionOperation, CreateCollectionOptions } from './operations/create_collection'; +import { + DropCollectionOperation, + DropCollectionOptions, + DropDatabaseOperation, + DropDatabaseOptions +} from './operations/drop'; +import { executeOperation } from './operations/execute_operation'; +import { + CreateIndexesOptions, + CreateIndexOperation, + IndexInformationOperation, + IndexSpecification +} from './operations/indexes'; +import type { CollectionInfo, ListCollectionsOptions } from './operations/list_collections'; +import { ProfilingLevelOperation, ProfilingLevelOptions } from './operations/profiling_level'; +import { RemoveUserOperation, RemoveUserOptions } from './operations/remove_user'; +import { RenameOperation, RenameOptions } from './operations/rename'; +import { RunCommandOperation, RunCommandOptions } from './operations/run_command'; +import { + ProfilingLevel, + SetProfilingLevelOperation, + SetProfilingLevelOptions +} from './operations/set_profiling_level'; +import { DbStatsOperation, DbStatsOptions } from './operations/stats'; +import { ReadConcern } from './read_concern'; +import { ReadPreference, ReadPreferenceLike } from './read_preference'; +import { + Callback, + DEFAULT_PK_FACTORY, + filterOptions, + getTopology, + MongoDBNamespace, + resolveOptions +} from './utils'; +import { WriteConcern, WriteConcernOptions } from './write_concern'; + +// Allowed parameters +const DB_OPTIONS_ALLOW_LIST = [ + 'writeConcern', + 'readPreference', + 'readPreferenceTags', + 'native_parser', + 'forceServerObjectId', + 'pkFactory', + 'serializeFunctions', + 'raw', + 'authSource', + 'ignoreUndefined', + 'readConcern', + 'retryMiliSeconds', + 'numberOfRetries', + 'loggerLevel', + 'logger', + 'promoteBuffers', + 'promoteLongs', + 'bsonRegExp', + 'enableUtf8Validation', + 'promoteValues', + 'compression', + 'retryWrites' +]; + +/** @internal */ +export interface DbPrivate { + client: MongoClient; + options?: DbOptions; + logger: Logger; + readPreference?: ReadPreference; + pkFactory: PkFactory; + readConcern?: ReadConcern; + bsonOptions: BSONSerializeOptions; + writeConcern?: WriteConcern; + namespace: MongoDBNamespace; +} + +/** @public */ +export interface DbOptions extends BSONSerializeOptions, WriteConcernOptions, LoggerOptions { + /** If the database authentication is dependent on another databaseName. */ + authSource?: string; + /** Force server to assign _id values instead of driver. */ + forceServerObjectId?: boolean; + /** The preferred read preference (ReadPreference.PRIMARY, ReadPreference.PRIMARY_PREFERRED, ReadPreference.SECONDARY, ReadPreference.SECONDARY_PREFERRED, ReadPreference.NEAREST). */ + readPreference?: ReadPreferenceLike; + /** A primary key factory object for generation of custom _id keys. */ + pkFactory?: PkFactory; + /** Specify a read concern for the collection. (only MongoDB 3.2 or higher supported) */ + readConcern?: ReadConcern; + /** Should retry failed writes */ + retryWrites?: boolean; +} + +/** + * The **Db** class is a class that represents a MongoDB Database. + * @public + * + * @example + * ```ts + * import { MongoClient } from 'mongodb'; + * + * interface Pet { + * name: string; + * kind: 'dog' | 'cat' | 'fish'; + * } + * + * const client = new MongoClient('mongodb://localhost:27017'); + * const db = client.db(); + * + * // Create a collection that validates our union + * await db.createCollection('pets', { + * validator: { $expr: { $in: ['$kind', ['dog', 'cat', 'fish']] } } + * }) + * ``` + */ +export class Db { + /** @internal */ + s: DbPrivate; + + public static SYSTEM_NAMESPACE_COLLECTION = CONSTANTS.SYSTEM_NAMESPACE_COLLECTION; + public static SYSTEM_INDEX_COLLECTION = CONSTANTS.SYSTEM_INDEX_COLLECTION; + public static SYSTEM_PROFILE_COLLECTION = CONSTANTS.SYSTEM_PROFILE_COLLECTION; + public static SYSTEM_USER_COLLECTION = CONSTANTS.SYSTEM_USER_COLLECTION; + public static SYSTEM_COMMAND_COLLECTION = CONSTANTS.SYSTEM_COMMAND_COLLECTION; + public static SYSTEM_JS_COLLECTION = CONSTANTS.SYSTEM_JS_COLLECTION; + + /** + * Creates a new Db instance + * + * @param client - The MongoClient for the database. + * @param databaseName - The name of the database this instance represents. + * @param options - Optional settings for Db construction + */ + constructor(client: MongoClient, databaseName: string, options?: DbOptions) { + options = options ?? {}; + + // Filter the options + options = filterOptions(options, DB_OPTIONS_ALLOW_LIST); + + // Ensure we have a valid db name + validateDatabaseName(databaseName); + + // Internal state of the db object + this.s = { + // Client + client, + // Options + options, + // Logger instance + logger: new Logger('Db', options), + // Unpack read preference + readPreference: ReadPreference.fromOptions(options), + // Merge bson options + bsonOptions: resolveBSONOptions(options, client), + // Set up the primary key factory or fallback to ObjectId + pkFactory: options?.pkFactory ?? DEFAULT_PK_FACTORY, + // ReadConcern + readConcern: ReadConcern.fromOptions(options), + writeConcern: WriteConcern.fromOptions(options), + // Namespace + namespace: new MongoDBNamespace(databaseName) + }; + } + + get databaseName(): string { + return this.s.namespace.db; + } + + // Options + get options(): DbOptions | undefined { + return this.s.options; + } + + /** + * slaveOk specified + * @deprecated Use secondaryOk instead + */ + get slaveOk(): boolean { + return this.secondaryOk; + } + + /** + * Check if a secondary can be used (because the read preference is *not* set to primary) + */ + get secondaryOk(): boolean { + return this.s.readPreference?.preference !== 'primary' || false; + } + + get readConcern(): ReadConcern | undefined { + return this.s.readConcern; + } + + /** + * The current readPreference of the Db. If not explicitly defined for + * this Db, will be inherited from the parent MongoClient + */ + get readPreference(): ReadPreference { + if (this.s.readPreference == null) { + return this.s.client.readPreference; + } + + return this.s.readPreference; + } + + get bsonOptions(): BSONSerializeOptions { + return this.s.bsonOptions; + } + + // get the write Concern + get writeConcern(): WriteConcern | undefined { + return this.s.writeConcern; + } + + get namespace(): string { + return this.s.namespace.toString(); + } + + /** + * Create a new collection on a server with the specified options. Use this to create capped collections. + * More information about command options available at https://docs.mongodb.com/manual/reference/command/create/ + * + * @param name - The name of the collection to create + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + createCollection( + name: string, + options?: CreateCollectionOptions + ): Promise>; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + createCollection( + name: string, + callback: Callback> + ): void; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + createCollection( + name: string, + options: CreateCollectionOptions | undefined, + callback: Callback> + ): void; + createCollection( + name: string, + options?: CreateCollectionOptions | Callback, + callback?: Callback + ): Promise> | void { + if (typeof options === 'function') (callback = options), (options = {}); + + return executeOperation( + this.s.client, + new CreateCollectionOperation(this, name, resolveOptions(this, options)) as TODO_NODE_3286, + callback + ) as TODO_NODE_3286; + } + + /** + * Execute a command + * + * @remarks + * This command does not inherit options from the MongoClient. + * + * @param command - The command to run + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + command(command: Document): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + command(command: Document, callback: Callback): void; + command(command: Document, options: RunCommandOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + command(command: Document, options: RunCommandOptions, callback: Callback): void; + command( + command: Document, + options?: RunCommandOptions | Callback, + callback?: Callback + ): Promise | void { + if (typeof options === 'function') (callback = options), (options = {}); + + // Intentionally, we do not inherit options from parent for this operation. + return executeOperation( + this.s.client, + new RunCommandOperation(this, command, options ?? {}), + callback + ); + } + + /** + * Execute an aggregation framework pipeline against the database, needs MongoDB \>= 3.6 + * + * @param pipeline - An array of aggregation stages to be executed + * @param options - Optional settings for the command + */ + aggregate( + pipeline: Document[] = [], + options?: AggregateOptions + ): AggregationCursor { + if (arguments.length > 2) { + throw new MongoInvalidArgumentError('Method "db.aggregate()" accepts at most two arguments'); + } + if (typeof pipeline === 'function') { + throw new MongoInvalidArgumentError('Argument "pipeline" must not be function'); + } + if (typeof options === 'function') { + throw new MongoInvalidArgumentError('Argument "options" must not be function'); + } + + return new AggregationCursor( + this.s.client, + this.s.namespace, + pipeline, + resolveOptions(this, options) + ); + } + + /** Return the Admin db instance */ + admin(): Admin { + return new Admin(this); + } + + /** + * Returns a reference to a MongoDB Collection. If it does not exist it will be created implicitly. + * + * @param name - the collection name we wish to access. + * @returns return the new Collection instance + */ + collection( + name: string, + options: CollectionOptions = {} + ): Collection { + if (typeof options === 'function') { + throw new MongoInvalidArgumentError('The callback form of this helper has been removed.'); + } + const finalOptions = resolveOptions(this, options); + return new Collection(this, name, finalOptions); + } + + /** + * Get all the db statistics. + * + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + stats(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + stats(callback: Callback): void; + stats(options: DbStatsOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + stats(options: DbStatsOptions, callback: Callback): void; + stats( + options?: DbStatsOptions | Callback, + callback?: Callback + ): Promise | void { + if (typeof options === 'function') (callback = options), (options = {}); + return executeOperation( + this.s.client, + new DbStatsOperation(this, resolveOptions(this, options)), + callback + ); + } + + /** + * List all collections of this database with optional filter + * + * @param filter - Query to filter collections by + * @param options - Optional settings for the command + */ + listCollections( + filter: Document, + options: Exclude & { nameOnly: true } + ): ListCollectionsCursor>; + listCollections( + filter: Document, + options: Exclude & { nameOnly: false } + ): ListCollectionsCursor; + listCollections< + T extends Pick | CollectionInfo = + | Pick + | CollectionInfo + >(filter?: Document, options?: ListCollectionsOptions): ListCollectionsCursor; + listCollections< + T extends Pick | CollectionInfo = + | Pick + | CollectionInfo + >(filter: Document = {}, options: ListCollectionsOptions = {}): ListCollectionsCursor { + return new ListCollectionsCursor(this, filter, resolveOptions(this, options)); + } + + /** + * Rename a collection. + * + * @remarks + * This operation does not inherit options from the MongoClient. + * + * @param fromCollection - Name of current collection to rename + * @param toCollection - New name of of the collection + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + renameCollection( + fromCollection: string, + toCollection: string + ): Promise>; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + renameCollection( + fromCollection: string, + toCollection: string, + callback: Callback> + ): void; + renameCollection( + fromCollection: string, + toCollection: string, + options: RenameOptions + ): Promise>; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + renameCollection( + fromCollection: string, + toCollection: string, + options: RenameOptions, + callback: Callback> + ): void; + renameCollection( + fromCollection: string, + toCollection: string, + options?: RenameOptions | Callback>, + callback?: Callback> + ): Promise> | void { + if (typeof options === 'function') (callback = options), (options = {}); + + // Intentionally, we do not inherit options from parent for this operation. + options = { ...options, readPreference: ReadPreference.PRIMARY }; + + // Add return new collection + options.new_collection = true; + + return executeOperation( + this.s.client, + new RenameOperation( + this.collection(fromCollection) as TODO_NODE_3286, + toCollection, + options + ) as TODO_NODE_3286, + callback + ); + } + + /** + * Drop a collection from the database, removing it permanently. New accesses will create a new collection. + * + * @param name - Name of collection to drop + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + dropCollection(name: string): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + dropCollection(name: string, callback: Callback): void; + dropCollection(name: string, options: DropCollectionOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + dropCollection(name: string, options: DropCollectionOptions, callback: Callback): void; + dropCollection( + name: string, + options?: DropCollectionOptions | Callback, + callback?: Callback + ): Promise | void { + if (typeof options === 'function') (callback = options), (options = {}); + + return executeOperation( + this.s.client, + new DropCollectionOperation(this, name, resolveOptions(this, options)), + callback + ); + } + + /** + * Drop a database, removing it permanently from the server. + * + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + dropDatabase(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + dropDatabase(callback: Callback): void; + dropDatabase(options: DropDatabaseOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + dropDatabase(options: DropDatabaseOptions, callback: Callback): void; + dropDatabase( + options?: DropDatabaseOptions | Callback, + callback?: Callback + ): Promise | void { + if (typeof options === 'function') (callback = options), (options = {}); + + return executeOperation( + this.s.client, + new DropDatabaseOperation(this, resolveOptions(this, options)), + callback + ); + } + + /** + * Fetch all collections for the current db. + * + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + collections(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + collections(callback: Callback): void; + collections(options: ListCollectionsOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + collections(options: ListCollectionsOptions, callback: Callback): void; + collections( + options?: ListCollectionsOptions | Callback, + callback?: Callback + ): Promise | void { + if (typeof options === 'function') (callback = options), (options = {}); + + return executeOperation( + this.s.client, + new CollectionsOperation(this, resolveOptions(this, options)), + callback + ); + } + + /** + * Creates an index on the db and collection. + * + * @param name - Name of the collection to create the index on. + * @param indexSpec - Specify the field to index, or an index specification + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + createIndex(name: string, indexSpec: IndexSpecification): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + createIndex(name: string, indexSpec: IndexSpecification, callback: Callback): void; + createIndex( + name: string, + indexSpec: IndexSpecification, + options: CreateIndexesOptions + ): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + createIndex( + name: string, + indexSpec: IndexSpecification, + options: CreateIndexesOptions, + callback: Callback + ): void; + createIndex( + name: string, + indexSpec: IndexSpecification, + options?: CreateIndexesOptions | Callback, + callback?: Callback + ): Promise | void { + if (typeof options === 'function') (callback = options), (options = {}); + + return executeOperation( + this.s.client, + new CreateIndexOperation(this, name, indexSpec, resolveOptions(this, options)), + callback + ); + } + + /** + * Add a user to the database + * + * @param username - The username for the new user + * @param password - An optional password for the new user + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + addUser(username: string): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + addUser(username: string, callback: Callback): void; + addUser(username: string, password: string): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + addUser(username: string, password: string, callback: Callback): void; + addUser(username: string, options: AddUserOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + addUser(username: string, options: AddUserOptions, callback: Callback): void; + addUser(username: string, password: string, options: AddUserOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + addUser( + username: string, + password: string, + options: AddUserOptions, + callback: Callback + ): void; + addUser( + username: string, + password?: string | AddUserOptions | Callback, + options?: AddUserOptions | Callback, + callback?: Callback + ): Promise | void { + if (typeof password === 'function') { + (callback = password), (password = undefined), (options = {}); + } else if (typeof password !== 'string') { + if (typeof options === 'function') { + (callback = options), (options = password), (password = undefined); + } else { + (options = password), (callback = undefined), (password = undefined); + } + } else { + if (typeof options === 'function') (callback = options), (options = {}); + } + + return executeOperation( + this.s.client, + new AddUserOperation(this, username, password, resolveOptions(this, options)), + callback + ); + } + + /** + * Remove a user from a database + * + * @param username - The username to remove + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + removeUser(username: string): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + removeUser(username: string, callback: Callback): void; + removeUser(username: string, options: RemoveUserOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + removeUser(username: string, options: RemoveUserOptions, callback: Callback): void; + removeUser( + username: string, + options?: RemoveUserOptions | Callback, + callback?: Callback + ): Promise | void { + if (typeof options === 'function') (callback = options), (options = {}); + + return executeOperation( + this.s.client, + new RemoveUserOperation(this, username, resolveOptions(this, options)), + callback + ); + } + + /** + * Set the current profiling level of MongoDB + * + * @param level - The new profiling level (off, slow_only, all). + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + setProfilingLevel(level: ProfilingLevel): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + setProfilingLevel(level: ProfilingLevel, callback: Callback): void; + setProfilingLevel( + level: ProfilingLevel, + options: SetProfilingLevelOptions + ): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + setProfilingLevel( + level: ProfilingLevel, + options: SetProfilingLevelOptions, + callback: Callback + ): void; + setProfilingLevel( + level: ProfilingLevel, + options?: SetProfilingLevelOptions | Callback, + callback?: Callback + ): Promise | void { + if (typeof options === 'function') (callback = options), (options = {}); + + return executeOperation( + this.s.client, + new SetProfilingLevelOperation(this, level, resolveOptions(this, options)), + callback + ); + } + + /** + * Retrieve the current profiling Level for MongoDB + * + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + profilingLevel(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + profilingLevel(callback: Callback): void; + profilingLevel(options: ProfilingLevelOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + profilingLevel(options: ProfilingLevelOptions, callback: Callback): void; + profilingLevel( + options?: ProfilingLevelOptions | Callback, + callback?: Callback + ): Promise | void { + if (typeof options === 'function') (callback = options), (options = {}); + + return executeOperation( + this.s.client, + new ProfilingLevelOperation(this, resolveOptions(this, options)), + callback + ); + } + + /** + * Retrieves this collections index info. + * + * @param name - The name of the collection. + * @param options - Optional settings for the command + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + indexInformation(name: string): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + indexInformation(name: string, callback: Callback): void; + indexInformation(name: string, options: IndexInformationOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + indexInformation( + name: string, + options: IndexInformationOptions, + callback: Callback + ): void; + indexInformation( + name: string, + options?: IndexInformationOptions | Callback, + callback?: Callback + ): Promise | void { + if (typeof options === 'function') (callback = options), (options = {}); + + return executeOperation( + this.s.client, + new IndexInformationOperation(this, name, resolveOptions(this, options)), + callback + ); + } + + /** + * Unref all sockets + * @deprecated This function is deprecated and will be removed in the next major version. + */ + unref(): void { + getTopology(this).unref(); + } + + /** + * Create a new Change Stream, watching for new changes (insertions, updates, + * replacements, deletions, and invalidations) in this database. Will ignore all + * changes to system collections. + * + * @remarks + * watch() accepts two generic arguments for distinct usecases: + * - The first is to provide the schema that may be defined for all the collections within this database + * - The second is to override the shape of the change stream document entirely, if it is not provided the type will default to ChangeStreamDocument of the first argument + * + * @param pipeline - An array of {@link https://docs.mongodb.com/manual/reference/operator/aggregation-pipeline/|aggregation pipeline stages} through which to pass change stream documents. This allows for filtering (using $match) and manipulating the change stream documents. + * @param options - Optional settings for the command + * @typeParam TSchema - Type of the data being detected by the change stream + * @typeParam TChange - Type of the whole change stream document emitted + */ + watch< + TSchema extends Document = Document, + TChange extends Document = ChangeStreamDocument + >(pipeline: Document[] = [], options: ChangeStreamOptions = {}): ChangeStream { + // Allow optionally not specifying a pipeline + if (!Array.isArray(pipeline)) { + options = pipeline; + pipeline = []; + } + + return new ChangeStream(this, pipeline, resolveOptions(this, options)); + } + + /** Return the db logger */ + getLogger(): Logger { + return this.s.logger; + } + + get logger(): Logger { + return this.s.logger; + } +} + +// TODO(NODE-3484): Refactor into MongoDBNamespace +// Validate the database name +function validateDatabaseName(databaseName: string) { + if (typeof databaseName !== 'string') + throw new MongoInvalidArgumentError('Database name must be a string'); + if (databaseName.length === 0) + throw new MongoInvalidArgumentError('Database name cannot be the empty string'); + if (databaseName === '$external') return; + + const invalidChars = [' ', '.', '$', '/', '\\']; + for (let i = 0; i < invalidChars.length; i++) { + if (databaseName.indexOf(invalidChars[i]) !== -1) + throw new MongoAPIError(`database names cannot contain the character '${invalidChars[i]}'`); + } +} diff --git a/node_modules/mongodb/src/deps.ts b/node_modules/mongodb/src/deps.ts new file mode 100644 index 000000000..9201c30b2 --- /dev/null +++ b/node_modules/mongodb/src/deps.ts @@ -0,0 +1,378 @@ +/* eslint-disable @typescript-eslint/no-var-requires */ +import type { deserialize, Document, serialize } from './bson'; +import type { ProxyOptions } from './cmap/connection'; +import { MongoMissingDependencyError } from './error'; +import type { MongoClient } from './mongo_client'; +import { Callback, parsePackageVersion } from './utils'; + +export const PKG_VERSION = Symbol('kPkgVersion'); + +function makeErrorModule(error: any) { + const props = error ? { kModuleError: error } : {}; + return new Proxy(props, { + get: (_: any, key: any) => { + if (key === 'kModuleError') { + return error; + } + throw error; + }, + set: () => { + throw error; + } + }); +} + +export let Kerberos: typeof import('kerberos') | { kModuleError: MongoMissingDependencyError } = + makeErrorModule( + new MongoMissingDependencyError( + 'Optional module `kerberos` not found. Please install it to enable kerberos authentication' + ) + ); + +try { + // Ensure you always wrap an optional require in the try block NODE-3199 + Kerberos = require('kerberos'); +} catch {} // eslint-disable-line + +export interface KerberosClient { + step(challenge: string): Promise; + step(challenge: string, callback: Callback): void; + wrap(challenge: string, options: { user: string }): Promise; + wrap(challenge: string, options: { user: string }, callback: Callback): void; + unwrap(challenge: string): Promise; + unwrap(challenge: string, callback: Callback): void; +} + +type ZStandardLib = { + /** + * Compress using zstd. + * @param buf - Buffer to be compressed. + */ + compress(buf: Buffer, level?: number): Promise; + + /** + * Decompress using zstd. + */ + decompress(buf: Buffer): Promise; +}; + +export let ZStandard: ZStandardLib | { kModuleError: MongoMissingDependencyError } = + makeErrorModule( + new MongoMissingDependencyError( + 'Optional module `@mongodb-js/zstd` not found. Please install it to enable zstd compression' + ) + ); + +try { + ZStandard = require('@mongodb-js/zstd'); +} catch {} // eslint-disable-line + +type SnappyLib = { + [PKG_VERSION]: { major: number; minor: number; patch: number }; + + /** + * - Snappy 6.x takes a callback and returns void + * - Snappy 7.x returns a promise + * + * In order to support both we must check the return value of the function + * @param buf - Buffer to be compressed + * @param callback - ONLY USED IN SNAPPY 6.x + */ + compress(buf: Buffer): Promise; + compress(buf: Buffer, callback: (error?: Error, buffer?: Buffer) => void): void; + + /** + * - Snappy 6.x takes a callback and returns void + * - Snappy 7.x returns a promise + * + * In order to support both we must check the return value of the function + * @param buf - Buffer to be compressed + * @param callback - ONLY USED IN SNAPPY 6.x + */ + uncompress(buf: Buffer, opt: { asBuffer: true }): Promise; + uncompress( + buf: Buffer, + opt: { asBuffer: true }, + callback: (error?: Error, buffer?: Buffer) => void + ): void; +}; + +export let Snappy: SnappyLib | { kModuleError: MongoMissingDependencyError } = makeErrorModule( + new MongoMissingDependencyError( + 'Optional module `snappy` not found. Please install it to enable snappy compression' + ) +); + +try { + // Ensure you always wrap an optional require in the try block NODE-3199 + Snappy = require('snappy'); + try { + (Snappy as any)[PKG_VERSION] = parsePackageVersion(require('snappy/package.json')); + } catch {} // eslint-disable-line +} catch {} // eslint-disable-line + +export let saslprep: typeof import('saslprep') | { kModuleError: MongoMissingDependencyError } = + makeErrorModule( + new MongoMissingDependencyError( + 'Optional module `saslprep` not found.' + + ' Please install it to enable Stringprep Profile for User Names and Passwords' + ) + ); + +try { + // Ensure you always wrap an optional require in the try block NODE-3199 + saslprep = require('saslprep'); +} catch {} // eslint-disable-line + +interface AWS4 { + /** + * Created these inline types to better assert future usage of this API + * @param options - options for request + * @param credentials - AWS credential details, sessionToken should be omitted entirely if its false-y + */ + sign( + this: void, + options: { + path: '/'; + body: string; + host: string; + method: 'POST'; + headers: { + 'Content-Type': 'application/x-www-form-urlencoded'; + 'Content-Length': number; + 'X-MongoDB-Server-Nonce': string; + 'X-MongoDB-GS2-CB-Flag': 'n'; + }; + service: string; + region: string; + }, + credentials: + | { + accessKeyId: string; + secretAccessKey: string; + sessionToken: string; + } + | { + accessKeyId: string; + secretAccessKey: string; + } + | undefined + ): { + headers: { + Authorization: string; + 'X-Amz-Date': string; + }; + }; +} + +export let aws4: AWS4 | { kModuleError: MongoMissingDependencyError } = makeErrorModule( + new MongoMissingDependencyError( + 'Optional module `aws4` not found. Please install it to enable AWS authentication' + ) +); + +try { + // Ensure you always wrap an optional require in the try block NODE-3199 + aws4 = require('aws4'); +} catch {} // eslint-disable-line + +/** @public */ +export const AutoEncryptionLoggerLevel = Object.freeze({ + FatalError: 0, + Error: 1, + Warning: 2, + Info: 3, + Trace: 4 +} as const); + +/** @public */ +export type AutoEncryptionLoggerLevel = + typeof AutoEncryptionLoggerLevel[keyof typeof AutoEncryptionLoggerLevel]; + +/** @public */ +export interface AutoEncryptionTlsOptions { + /** + * Specifies the location of a local .pem file that contains + * either the client's TLS/SSL certificate and key or only the + * client's TLS/SSL key when tlsCertificateFile is used to + * provide the certificate. + */ + tlsCertificateKeyFile?: string; + /** + * Specifies the password to de-crypt the tlsCertificateKeyFile. + */ + tlsCertificateKeyFilePassword?: string; + /** + * Specifies the location of a local .pem file that contains the + * root certificate chain from the Certificate Authority. + * This file is used to validate the certificate presented by the + * KMS provider. + */ + tlsCAFile?: string; +} + +/** @public */ +export interface AutoEncryptionOptions { + /** @internal */ + bson?: { serialize: typeof serialize; deserialize: typeof deserialize }; + /** @internal client for metadata lookups */ + metadataClient?: MongoClient; + /** A `MongoClient` used to fetch keys from a key vault */ + keyVaultClient?: MongoClient; + /** The namespace where keys are stored in the key vault */ + keyVaultNamespace?: string; + /** Configuration options that are used by specific KMS providers during key generation, encryption, and decryption. */ + kmsProviders?: { + /** Configuration options for using 'aws' as your KMS provider */ + aws?: { + /** The access key used for the AWS KMS provider */ + accessKeyId: string; + /** The secret access key used for the AWS KMS provider */ + secretAccessKey: string; + /** + * An optional AWS session token that will be used as the + * X-Amz-Security-Token header for AWS requests. + */ + sessionToken?: string; + }; + /** Configuration options for using 'local' as your KMS provider */ + local?: { + /** + * The master key used to encrypt/decrypt data keys. + * A 96-byte long Buffer or base64 encoded string. + */ + key: Buffer | string; + }; + /** Configuration options for using 'azure' as your KMS provider */ + azure?: { + /** The tenant ID identifies the organization for the account */ + tenantId: string; + /** The client ID to authenticate a registered application */ + clientId: string; + /** The client secret to authenticate a registered application */ + clientSecret: string; + /** + * If present, a host with optional port. E.g. "example.com" or "example.com:443". + * This is optional, and only needed if customer is using a non-commercial Azure instance + * (e.g. a government or China account, which use different URLs). + * Defaults to "login.microsoftonline.com" + */ + identityPlatformEndpoint?: string | undefined; + }; + /** Configuration options for using 'gcp' as your KMS provider */ + gcp?: { + /** The service account email to authenticate */ + email: string; + /** A PKCS#8 encrypted key. This can either be a base64 string or a binary representation */ + privateKey: string | Buffer; + /** + * If present, a host with optional port. E.g. "example.com" or "example.com:443". + * Defaults to "oauth2.googleapis.com" + */ + endpoint?: string | undefined; + }; + /** + * Configuration options for using 'kmip' as your KMS provider + */ + kmip?: { + /** + * The output endpoint string. + * The endpoint consists of a hostname and port separated by a colon. + * E.g. "example.com:123". A port is always present. + */ + endpoint?: string; + }; + }; + /** + * A map of namespaces to a local JSON schema for encryption + * + * **NOTE**: Supplying options.schemaMap provides more security than relying on JSON Schemas obtained from the server. + * It protects against a malicious server advertising a false JSON Schema, which could trick the client into sending decrypted data that should be encrypted. + * Schemas supplied in the schemaMap only apply to configuring automatic encryption for client side encryption. + * Other validation rules in the JSON schema will not be enforced by the driver and will result in an error. + */ + schemaMap?: Document; + /** @experimental Public Technical Preview: Supply a schema for the encrypted fields in the document */ + encryptedFieldsMap?: Document; + /** Allows the user to bypass auto encryption, maintaining implicit decryption */ + bypassAutoEncryption?: boolean; + /** @experimental Public Technical Preview: Allows users to bypass query analysis */ + bypassQueryAnalysis?: boolean; + options?: { + /** An optional hook to catch logging messages from the underlying encryption engine */ + logger?: (level: AutoEncryptionLoggerLevel, message: string) => void; + }; + extraOptions?: { + /** + * A local process the driver communicates with to determine how to encrypt values in a command. + * Defaults to "mongodb://%2Fvar%2Fmongocryptd.sock" if domain sockets are available or "mongodb://localhost:27020" otherwise + */ + mongocryptdURI?: string; + /** If true, autoEncryption will not attempt to spawn a mongocryptd before connecting */ + mongocryptdBypassSpawn?: boolean; + /** The path to the mongocryptd executable on the system */ + mongocryptdSpawnPath?: string; + /** Command line arguments to use when auto-spawning a mongocryptd */ + mongocryptdSpawnArgs?: string[]; + /** + * Full path to a MongoDB Crypt shared library to be used (instead of mongocryptd). + * + * This needs to be the path to the file itself, not a directory. + * It can be an absolute or relative path. If the path is relative and + * its first component is `$ORIGIN`, it will be replaced by the directory + * containing the mongodb-client-encryption native addon file. Otherwise, + * the path will be interpreted relative to the current working directory. + * + * Currently, loading different MongoDB Crypt shared library files from different + * MongoClients in the same process is not supported. + * + * If this option is provided and no MongoDB Crypt shared library could be loaded + * from the specified location, creating the MongoClient will fail. + * + * If this option is not provided and `cryptSharedLibRequired` is not specified, + * the AutoEncrypter will attempt to spawn and/or use mongocryptd according + * to the mongocryptd-specific `extraOptions` options. + * + * Specifying a path prevents mongocryptd from being used as a fallback. + * + * Requires the MongoDB Crypt shared library, available in MongoDB 6.0 or higher. + */ + cryptSharedLibPath?: string; + /** + * If specified, never use mongocryptd and instead fail when the MongoDB Crypt + * shared library could not be loaded. + * + * This is always true when `cryptSharedLibPath` is specified. + * + * Requires the MongoDB Crypt shared library, available in MongoDB 6.0 or higher. + */ + cryptSharedLibRequired?: boolean; + /** + * Search paths for a MongoDB Crypt shared library to be used (instead of mongocryptd) + * Only for driver testing! + * @internal + */ + cryptSharedLibSearchPaths?: string[]; + }; + proxyOptions?: ProxyOptions; + /** The TLS options to use connecting to the KMS provider */ + tlsOptions?: { + aws?: AutoEncryptionTlsOptions; + local?: AutoEncryptionTlsOptions; + azure?: AutoEncryptionTlsOptions; + gcp?: AutoEncryptionTlsOptions; + kmip?: AutoEncryptionTlsOptions; + }; +} + +/** @public */ +export interface AutoEncrypter { + // eslint-disable-next-line @typescript-eslint/no-misused-new + new (client: MongoClient, options: AutoEncryptionOptions): AutoEncrypter; + init(cb: Callback): void; + teardown(force: boolean, callback: Callback): void; + encrypt(ns: string, cmd: Document, options: any, callback: Callback): void; + decrypt(cmd: Document, options: any, callback: Callback): void; + /** @experimental */ + readonly cryptSharedLibVersionInfo: { version: bigint; versionStr: string } | null; +} diff --git a/node_modules/mongodb/src/encrypter.ts b/node_modules/mongodb/src/encrypter.ts new file mode 100644 index 000000000..c67643c04 --- /dev/null +++ b/node_modules/mongodb/src/encrypter.ts @@ -0,0 +1,135 @@ +/* eslint-disable @typescript-eslint/no-var-requires */ +import { deserialize, serialize } from './bson'; +import { MONGO_CLIENT_EVENTS } from './constants'; +import type { AutoEncrypter, AutoEncryptionOptions } from './deps'; +import { MongoInvalidArgumentError, MongoMissingDependencyError } from './error'; +import { MongoClient, MongoClientOptions } from './mongo_client'; +import { Callback, getMongoDBClientEncryption } from './utils'; + +let AutoEncrypterClass: { new (...args: ConstructorParameters): AutoEncrypter }; + +/** @internal */ +const kInternalClient = Symbol('internalClient'); + +/** @internal */ +export interface EncrypterOptions { + autoEncryption: AutoEncryptionOptions; + maxPoolSize?: number; +} + +/** @internal */ +export class Encrypter { + [kInternalClient]: MongoClient | null; + bypassAutoEncryption: boolean; + needsConnecting: boolean; + autoEncrypter: AutoEncrypter; + + constructor(client: MongoClient, uri: string, options: MongoClientOptions) { + if (typeof options.autoEncryption !== 'object') { + throw new MongoInvalidArgumentError('Option "autoEncryption" must be specified'); + } + // initialize to null, if we call getInternalClient, we may set this it is important to not overwrite those function calls. + this[kInternalClient] = null; + + this.bypassAutoEncryption = !!options.autoEncryption.bypassAutoEncryption; + this.needsConnecting = false; + + if (options.maxPoolSize === 0 && options.autoEncryption.keyVaultClient == null) { + options.autoEncryption.keyVaultClient = client; + } else if (options.autoEncryption.keyVaultClient == null) { + options.autoEncryption.keyVaultClient = this.getInternalClient(client, uri, options); + } + + if (this.bypassAutoEncryption) { + options.autoEncryption.metadataClient = undefined; + } else if (options.maxPoolSize === 0) { + options.autoEncryption.metadataClient = client; + } else { + options.autoEncryption.metadataClient = this.getInternalClient(client, uri, options); + } + + if (options.proxyHost) { + options.autoEncryption.proxyOptions = { + proxyHost: options.proxyHost, + proxyPort: options.proxyPort, + proxyUsername: options.proxyUsername, + proxyPassword: options.proxyPassword + }; + } + + options.autoEncryption.bson = Object.create(null); + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + options.autoEncryption.bson!.serialize = serialize; + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + options.autoEncryption.bson!.deserialize = deserialize; + + this.autoEncrypter = new AutoEncrypterClass(client, options.autoEncryption); + } + + getInternalClient(client: MongoClient, uri: string, options: MongoClientOptions): MongoClient { + // TODO(NODE-4144): Remove new variable for type narrowing + let internalClient = this[kInternalClient]; + if (internalClient == null) { + const clonedOptions: MongoClientOptions = {}; + + for (const key of [ + ...Object.getOwnPropertyNames(options), + ...Object.getOwnPropertySymbols(options) + ] as string[]) { + if (['autoEncryption', 'minPoolSize', 'servers', 'caseTranslate', 'dbName'].includes(key)) + continue; + Reflect.set(clonedOptions, key, Reflect.get(options, key)); + } + + clonedOptions.minPoolSize = 0; + + internalClient = new MongoClient(uri, clonedOptions); + this[kInternalClient] = internalClient; + + for (const eventName of MONGO_CLIENT_EVENTS) { + for (const listener of client.listeners(eventName)) { + internalClient.on(eventName, listener); + } + } + + client.on('newListener', (eventName, listener) => { + internalClient?.on(eventName, listener); + }); + + this.needsConnecting = true; + } + return internalClient; + } + + connectInternalClient(callback: Callback): void { + // TODO(NODE-4144): Remove new variable for type narrowing + const internalClient = this[kInternalClient]; + if (this.needsConnecting && internalClient != null) { + this.needsConnecting = false; + return internalClient.connect(callback); + } + + return callback(); + } + + close(client: MongoClient, force: boolean, callback: Callback): void { + this.autoEncrypter.teardown(!!force, e => { + const internalClient = this[kInternalClient]; + if (internalClient != null && client !== internalClient) { + return internalClient.close(force, callback); + } + callback(e); + }); + } + + static checkForMongoCrypt(): void { + const mongodbClientEncryption = getMongoDBClientEncryption(); + if (mongodbClientEncryption == null) { + throw new MongoMissingDependencyError( + 'Auto-encryption requested, but the module is not installed. ' + + 'Please add `mongodb-client-encryption` as a dependency of your project' + ); + } + AutoEncrypterClass = mongodbClientEncryption.extension(require('../lib/index')).AutoEncrypter; + } +} diff --git a/node_modules/mongodb/src/error.ts b/node_modules/mongodb/src/error.ts new file mode 100644 index 000000000..2a387a0d4 --- /dev/null +++ b/node_modules/mongodb/src/error.ts @@ -0,0 +1,929 @@ +import type { Document } from './bson'; +import type { TopologyVersion } from './sdam/server_description'; +import type { TopologyDescription } from './sdam/topology_description'; + +/** @public */ +export type AnyError = MongoError | Error; + +/** @internal */ +const kErrorLabels = Symbol('errorLabels'); + +/** + * @internal + * The legacy error message from the server that indicates the node is not a writable primary + * https://github.com/mongodb/specifications/blob/b07c26dc40d04ac20349f989db531c9845fdd755/source/server-discovery-and-monitoring/server-discovery-and-monitoring.rst#not-writable-primary-and-node-is-recovering + */ +export const LEGACY_NOT_WRITABLE_PRIMARY_ERROR_MESSAGE = new RegExp('not master', 'i'); + +/** + * @internal + * The legacy error message from the server that indicates the node is not a primary or secondary + * https://github.com/mongodb/specifications/blob/b07c26dc40d04ac20349f989db531c9845fdd755/source/server-discovery-and-monitoring/server-discovery-and-monitoring.rst#not-writable-primary-and-node-is-recovering + */ +export const LEGACY_NOT_PRIMARY_OR_SECONDARY_ERROR_MESSAGE = new RegExp( + 'not master or secondary', + 'i' +); + +/** + * @internal + * The error message from the server that indicates the node is recovering + * https://github.com/mongodb/specifications/blob/b07c26dc40d04ac20349f989db531c9845fdd755/source/server-discovery-and-monitoring/server-discovery-and-monitoring.rst#not-writable-primary-and-node-is-recovering + */ +export const NODE_IS_RECOVERING_ERROR_MESSAGE = new RegExp('node is recovering', 'i'); + +/** @internal MongoDB Error Codes */ +export const MONGODB_ERROR_CODES = Object.freeze({ + HostUnreachable: 6, + HostNotFound: 7, + NetworkTimeout: 89, + ShutdownInProgress: 91, + PrimarySteppedDown: 189, + ExceededTimeLimit: 262, + SocketException: 9001, + NotWritablePrimary: 10107, + InterruptedAtShutdown: 11600, + InterruptedDueToReplStateChange: 11602, + NotPrimaryNoSecondaryOk: 13435, + NotPrimaryOrSecondary: 13436, + StaleShardVersion: 63, + StaleEpoch: 150, + StaleConfig: 13388, + RetryChangeStream: 234, + FailedToSatisfyReadPreference: 133, + CursorNotFound: 43, + LegacyNotPrimary: 10058, + WriteConcernFailed: 64, + NamespaceNotFound: 26, + IllegalOperation: 20, + MaxTimeMSExpired: 50, + UnknownReplWriteConcern: 79, + UnsatisfiableWriteConcern: 100 +} as const); + +// From spec@https://github.com/mongodb/specifications/blob/f93d78191f3db2898a59013a7ed5650352ef6da8/source/change-streams/change-streams.rst#resumable-error +export const GET_MORE_RESUMABLE_CODES = new Set([ + MONGODB_ERROR_CODES.HostUnreachable, + MONGODB_ERROR_CODES.HostNotFound, + MONGODB_ERROR_CODES.NetworkTimeout, + MONGODB_ERROR_CODES.ShutdownInProgress, + MONGODB_ERROR_CODES.PrimarySteppedDown, + MONGODB_ERROR_CODES.ExceededTimeLimit, + MONGODB_ERROR_CODES.SocketException, + MONGODB_ERROR_CODES.NotWritablePrimary, + MONGODB_ERROR_CODES.InterruptedAtShutdown, + MONGODB_ERROR_CODES.InterruptedDueToReplStateChange, + MONGODB_ERROR_CODES.NotPrimaryNoSecondaryOk, + MONGODB_ERROR_CODES.NotPrimaryOrSecondary, + MONGODB_ERROR_CODES.StaleShardVersion, + MONGODB_ERROR_CODES.StaleEpoch, + MONGODB_ERROR_CODES.StaleConfig, + MONGODB_ERROR_CODES.RetryChangeStream, + MONGODB_ERROR_CODES.FailedToSatisfyReadPreference, + MONGODB_ERROR_CODES.CursorNotFound +]); + +/** @public */ +export const MongoErrorLabel = Object.freeze({ + RetryableWriteError: 'RetryableWriteError', + TransientTransactionError: 'TransientTransactionError', + UnknownTransactionCommitResult: 'UnknownTransactionCommitResult', + ResumableChangeStreamError: 'ResumableChangeStreamError', + HandshakeError: 'HandshakeError', + ResetPool: 'ResetPool' +} as const); + +/** @public */ +export type MongoErrorLabel = typeof MongoErrorLabel[keyof typeof MongoErrorLabel]; + +/** @public */ +export interface ErrorDescription extends Document { + message?: string; + errmsg?: string; + $err?: string; + errorLabels?: string[]; + errInfo?: Document; +} + +/** + * @public + * @category Error + * + * @privateRemarks + * CSFLE has a dependency on this error, it uses the constructor with a string argument + */ +export class MongoError extends Error { + /** @internal */ + [kErrorLabels]: Set; + /** + * This is a number in MongoServerError and a string in MongoDriverError + * @privateRemarks + * Define the type override on the subclasses when we can use the override keyword + */ + code?: number | string; + topologyVersion?: TopologyVersion; + // eslint-disable-next-line @typescript-eslint/ban-ts-comment + // @ts-ignore + cause?: Error; // depending on the node version, this may or may not exist on the base + + constructor(message: string | Error) { + if (message instanceof Error) { + super(message.message); + this.cause = message; + } else { + super(message); + } + this[kErrorLabels] = new Set(); + } + + override get name(): string { + return 'MongoError'; + } + + /** Legacy name for server error responses */ + get errmsg(): string { + return this.message; + } + + /** + * Checks the error to see if it has an error label + * + * @param label - The error label to check for + * @returns returns true if the error has the provided error label + */ + hasErrorLabel(label: string): boolean { + return this[kErrorLabels].has(label); + } + + addErrorLabel(label: string): void { + this[kErrorLabels].add(label); + } + + get errorLabels(): string[] { + return Array.from(this[kErrorLabels]); + } +} + +/** + * An error coming from the mongo server + * + * @public + * @category Error + */ +export class MongoServerError extends MongoError { + codeName?: string; + writeConcernError?: Document; + errInfo?: Document; + ok?: number; + [key: string]: any; + + constructor(message: ErrorDescription) { + super(message.message || message.errmsg || message.$err || 'n/a'); + if (message.errorLabels) { + this[kErrorLabels] = new Set(message.errorLabels); + } + + for (const name in message) { + if (name !== 'errorLabels' && name !== 'errmsg' && name !== 'message') + this[name] = message[name]; + } + } + + override get name(): string { + return 'MongoServerError'; + } +} + +/** + * An error generated by the driver + * + * @public + * @category Error + */ +export class MongoDriverError extends MongoError { + constructor(message: string) { + super(message); + } + + override get name(): string { + return 'MongoDriverError'; + } +} + +/** + * An error generated when the driver API is used incorrectly + * + * @privateRemarks + * Should **never** be directly instantiated + * + * @public + * @category Error + */ + +export class MongoAPIError extends MongoDriverError { + constructor(message: string) { + super(message); + } + + override get name(): string { + return 'MongoAPIError'; + } +} + +/** + * An error generated when the driver encounters unexpected input + * or reaches an unexpected/invalid internal state + * + * @privateRemarks + * Should **never** be directly instantiated. + * + * @public + * @category Error + */ +export class MongoRuntimeError extends MongoDriverError { + constructor(message: string) { + super(message); + } + + override get name(): string { + return 'MongoRuntimeError'; + } +} + +/** + * An error generated when a batch command is re-executed after one of the commands in the batch + * has failed + * + * @public + * @category Error + */ +export class MongoBatchReExecutionError extends MongoAPIError { + constructor(message = 'This batch has already been executed, create new batch to execute') { + super(message); + } + + override get name(): string { + return 'MongoBatchReExecutionError'; + } +} + +/** + * An error generated when the driver fails to decompress + * data received from the server. + * + * @public + * @category Error + */ +export class MongoDecompressionError extends MongoRuntimeError { + constructor(message: string) { + super(message); + } + + override get name(): string { + return 'MongoDecompressionError'; + } +} + +/** + * An error thrown when the user attempts to operate on a database or collection through a MongoClient + * that has not yet successfully called the "connect" method + * + * @public + * @category Error + */ +export class MongoNotConnectedError extends MongoAPIError { + constructor(message: string) { + super(message); + } + + override get name(): string { + return 'MongoNotConnectedError'; + } +} + +/** + * An error generated when the user makes a mistake in the usage of transactions. + * (e.g. attempting to commit a transaction with a readPreference other than primary) + * + * @public + * @category Error + */ +export class MongoTransactionError extends MongoAPIError { + constructor(message: string) { + super(message); + } + + override get name(): string { + return 'MongoTransactionError'; + } +} + +/** + * An error generated when the user attempts to operate + * on a session that has expired or has been closed. + * + * @public + * @category Error + */ +export class MongoExpiredSessionError extends MongoAPIError { + constructor(message = 'Cannot use a session that has ended') { + super(message); + } + + override get name(): string { + return 'MongoExpiredSessionError'; + } +} + +/** + * A error generated when the user attempts to authenticate + * via Kerberos, but fails to connect to the Kerberos client. + * + * @public + * @category Error + */ +export class MongoKerberosError extends MongoRuntimeError { + constructor(message: string) { + super(message); + } + + override get name(): string { + return 'MongoKerberosError'; + } +} + +/** + * A error generated when the user attempts to authenticate + * via AWS, but fails + * + * @public + * @category Error + */ +export class MongoAWSError extends MongoRuntimeError { + constructor(message: string) { + super(message); + } + + override get name(): string { + return 'MongoAWSError'; + } +} + +/** + * An error generated when a ChangeStream operation fails to execute. + * + * @public + * @category Error + */ +export class MongoChangeStreamError extends MongoRuntimeError { + constructor(message: string) { + super(message); + } + + override get name(): string { + return 'MongoChangeStreamError'; + } +} + +/** + * An error thrown when the user calls a function or method not supported on a tailable cursor + * + * @public + * @category Error + */ +export class MongoTailableCursorError extends MongoAPIError { + constructor(message = 'Tailable cursor does not support this operation') { + super(message); + } + + override get name(): string { + return 'MongoTailableCursorError'; + } +} + +/** An error generated when a GridFSStream operation fails to execute. + * + * @public + * @category Error + */ +export class MongoGridFSStreamError extends MongoRuntimeError { + constructor(message: string) { + super(message); + } + + override get name(): string { + return 'MongoGridFSStreamError'; + } +} + +/** + * An error generated when a malformed or invalid chunk is + * encountered when reading from a GridFSStream. + * + * @public + * @category Error + */ +export class MongoGridFSChunkError extends MongoRuntimeError { + constructor(message: string) { + super(message); + } + + override get name(): string { + return 'MongoGridFSChunkError'; + } +} + +/** + * An error generated when a **parsable** unexpected response comes from the server. + * This is generally an error where the driver in a state expecting a certain behavior to occur in + * the next message from MongoDB but it receives something else. + * This error **does not** represent an issue with wire message formatting. + * + * #### Example + * When an operation fails, it is the driver's job to retry it. It must perform serverSelection + * again to make sure that it attempts the operation against a server in a good state. If server + * selection returns a server that does not support retryable operations, this error is used. + * This scenario is unlikely as retryable support would also have been determined on the first attempt + * but it is possible the state change could report a selectable server that does not support retries. + * + * @public + * @category Error + */ +export class MongoUnexpectedServerResponseError extends MongoRuntimeError { + constructor(message: string) { + super(message); + } + + override get name(): string { + return 'MongoUnexpectedServerResponseError'; + } +} + +/** + * An error thrown when the user attempts to add options to a cursor that has already been + * initialized + * + * @public + * @category Error + */ +export class MongoCursorInUseError extends MongoAPIError { + constructor(message = 'Cursor is already initialized') { + super(message); + } + + override get name(): string { + return 'MongoCursorInUseError'; + } +} + +/** + * An error generated when an attempt is made to operate + * on a closed/closing server. + * + * @public + * @category Error + */ +export class MongoServerClosedError extends MongoAPIError { + constructor(message = 'Server is closed') { + super(message); + } + + override get name(): string { + return 'MongoServerClosedError'; + } +} + +/** + * An error thrown when an attempt is made to read from a cursor that has been exhausted + * + * @public + * @category Error + */ +export class MongoCursorExhaustedError extends MongoAPIError { + constructor(message?: string) { + super(message || 'Cursor is exhausted'); + } + + override get name(): string { + return 'MongoCursorExhaustedError'; + } +} + +/** + * An error generated when an attempt is made to operate on a + * dropped, or otherwise unavailable, database. + * + * @public + * @category Error + */ +export class MongoTopologyClosedError extends MongoAPIError { + constructor(message = 'Topology is closed') { + super(message); + } + + override get name(): string { + return 'MongoTopologyClosedError'; + } +} + +/** @internal */ +const kBeforeHandshake = Symbol('beforeHandshake'); +export function isNetworkErrorBeforeHandshake(err: MongoNetworkError): boolean { + return err[kBeforeHandshake] === true; +} + +/** @public */ +export interface MongoNetworkErrorOptions { + /** Indicates the timeout happened before a connection handshake completed */ + beforeHandshake: boolean; +} + +/** + * An error indicating an issue with the network, including TCP errors and timeouts. + * @public + * @category Error + */ +export class MongoNetworkError extends MongoError { + /** @internal */ + [kBeforeHandshake]?: boolean; + + constructor(message: string | Error, options?: MongoNetworkErrorOptions) { + super(message); + + if (options && typeof options.beforeHandshake === 'boolean') { + this[kBeforeHandshake] = options.beforeHandshake; + } + } + + override get name(): string { + return 'MongoNetworkError'; + } +} + +/** + * An error indicating a network timeout occurred + * @public + * @category Error + * + * @privateRemarks + * CSFLE has a dependency on this error with an instanceof check + */ +export class MongoNetworkTimeoutError extends MongoNetworkError { + constructor(message: string, options?: MongoNetworkErrorOptions) { + super(message, options); + } + + override get name(): string { + return 'MongoNetworkTimeoutError'; + } +} + +/** + * An error used when attempting to parse a value (like a connection string) + * @public + * @category Error + */ +export class MongoParseError extends MongoDriverError { + constructor(message: string) { + super(message); + } + + override get name(): string { + return 'MongoParseError'; + } +} + +/** + * An error generated when the user supplies malformed or unexpected arguments + * or when a required argument or field is not provided. + * + * + * @public + * @category Error + */ +export class MongoInvalidArgumentError extends MongoAPIError { + constructor(message: string) { + super(message); + } + + override get name(): string { + return 'MongoInvalidArgumentError'; + } +} + +/** + * An error generated when a feature that is not enabled or allowed for the current server + * configuration is used + * + * + * @public + * @category Error + */ +export class MongoCompatibilityError extends MongoAPIError { + constructor(message: string) { + super(message); + } + + override get name(): string { + return 'MongoCompatibilityError'; + } +} + +/** + * An error generated when the user fails to provide authentication credentials before attempting + * to connect to a mongo server instance. + * + * + * @public + * @category Error + */ +export class MongoMissingCredentialsError extends MongoAPIError { + constructor(message: string) { + super(message); + } + + override get name(): string { + return 'MongoMissingCredentialsError'; + } +} + +/** + * An error generated when a required module or dependency is not present in the local environment + * + * @public + * @category Error + */ +export class MongoMissingDependencyError extends MongoAPIError { + constructor(message: string) { + super(message); + } + + override get name(): string { + return 'MongoMissingDependencyError'; + } +} +/** + * An error signifying a general system issue + * @public + * @category Error + */ +export class MongoSystemError extends MongoError { + /** An optional reason context, such as an error saved during flow of monitoring and selecting servers */ + reason?: TopologyDescription; + + constructor(message: string, reason: TopologyDescription) { + if (reason && reason.error) { + super(reason.error.message || reason.error); + } else { + super(message); + } + + if (reason) { + this.reason = reason; + } + + this.code = reason.error?.code; + } + + override get name(): string { + return 'MongoSystemError'; + } +} + +/** + * An error signifying a client-side server selection error + * @public + * @category Error + */ +export class MongoServerSelectionError extends MongoSystemError { + constructor(message: string, reason: TopologyDescription) { + super(message, reason); + } + + override get name(): string { + return 'MongoServerSelectionError'; + } +} + +function makeWriteConcernResultObject(input: any) { + const output = Object.assign({}, input); + + if (output.ok === 0) { + output.ok = 1; + delete output.errmsg; + delete output.code; + delete output.codeName; + } + + return output; +} + +/** + * An error thrown when the server reports a writeConcernError + * @public + * @category Error + */ +export class MongoWriteConcernError extends MongoServerError { + /** The result document (provided if ok: 1) */ + result?: Document; + + constructor(message: ErrorDescription, result?: Document) { + if (result && Array.isArray(result.errorLabels)) { + message.errorLabels = result.errorLabels; + } + + super(message); + this.errInfo = message.errInfo; + + if (result != null) { + this.result = makeWriteConcernResultObject(result); + } + } + + override get name(): string { + return 'MongoWriteConcernError'; + } +} + +// https://github.com/mongodb/specifications/blob/master/source/retryable-reads/retryable-reads.rst#retryable-error +const RETRYABLE_READ_ERROR_CODES = new Set([ + MONGODB_ERROR_CODES.HostUnreachable, + MONGODB_ERROR_CODES.HostNotFound, + MONGODB_ERROR_CODES.NetworkTimeout, + MONGODB_ERROR_CODES.ShutdownInProgress, + MONGODB_ERROR_CODES.PrimarySteppedDown, + MONGODB_ERROR_CODES.SocketException, + MONGODB_ERROR_CODES.NotWritablePrimary, + MONGODB_ERROR_CODES.InterruptedAtShutdown, + MONGODB_ERROR_CODES.InterruptedDueToReplStateChange, + MONGODB_ERROR_CODES.NotPrimaryNoSecondaryOk, + MONGODB_ERROR_CODES.NotPrimaryOrSecondary +]); + +// see: https://github.com/mongodb/specifications/blob/master/source/retryable-writes/retryable-writes.rst#terms +const RETRYABLE_WRITE_ERROR_CODES = new Set([ + ...RETRYABLE_READ_ERROR_CODES, + MONGODB_ERROR_CODES.ExceededTimeLimit +]); + +export function needsRetryableWriteLabel(error: Error, maxWireVersion: number): boolean { + // pre-4.4 server, then the driver adds an error label for every valid case + // execute operation will only inspect the label, code/message logic is handled here + if (error instanceof MongoNetworkError) { + return true; + } + + if (error instanceof MongoError) { + if ( + (maxWireVersion >= 9 || error.hasErrorLabel(MongoErrorLabel.RetryableWriteError)) && + !error.hasErrorLabel(MongoErrorLabel.HandshakeError) + ) { + // If we already have the error label no need to add it again. 4.4+ servers add the label. + // In the case where we have a handshake error, need to fall down to the logic checking + // the codes. + return false; + } + } + + if (error instanceof MongoWriteConcernError) { + return RETRYABLE_WRITE_ERROR_CODES.has(error.result?.code ?? error.code ?? 0); + } + + if (error instanceof MongoError && typeof error.code === 'number') { + return RETRYABLE_WRITE_ERROR_CODES.has(error.code); + } + + const isNotWritablePrimaryError = LEGACY_NOT_WRITABLE_PRIMARY_ERROR_MESSAGE.test(error.message); + if (isNotWritablePrimaryError) { + return true; + } + + const isNodeIsRecoveringError = NODE_IS_RECOVERING_ERROR_MESSAGE.test(error.message); + if (isNodeIsRecoveringError) { + return true; + } + + return false; +} + +export function isRetryableWriteError(error: MongoError): boolean { + return error.hasErrorLabel(MongoErrorLabel.RetryableWriteError); +} + +/** Determines whether an error is something the driver should attempt to retry */ +export function isRetryableReadError(error: MongoError): boolean { + const hasRetryableErrorCode = + typeof error.code === 'number' ? RETRYABLE_READ_ERROR_CODES.has(error.code) : false; + if (hasRetryableErrorCode) { + return true; + } + + if (error instanceof MongoNetworkError) { + return true; + } + + const isNotWritablePrimaryError = LEGACY_NOT_WRITABLE_PRIMARY_ERROR_MESSAGE.test(error.message); + if (isNotWritablePrimaryError) { + return true; + } + + const isNodeIsRecoveringError = NODE_IS_RECOVERING_ERROR_MESSAGE.test(error.message); + if (isNodeIsRecoveringError) { + return true; + } + + return false; +} + +const SDAM_RECOVERING_CODES = new Set([ + MONGODB_ERROR_CODES.ShutdownInProgress, + MONGODB_ERROR_CODES.PrimarySteppedDown, + MONGODB_ERROR_CODES.InterruptedAtShutdown, + MONGODB_ERROR_CODES.InterruptedDueToReplStateChange, + MONGODB_ERROR_CODES.NotPrimaryOrSecondary +]); + +const SDAM_NOT_PRIMARY_CODES = new Set([ + MONGODB_ERROR_CODES.NotWritablePrimary, + MONGODB_ERROR_CODES.NotPrimaryNoSecondaryOk, + MONGODB_ERROR_CODES.LegacyNotPrimary +]); + +const SDAM_NODE_SHUTTING_DOWN_ERROR_CODES = new Set([ + MONGODB_ERROR_CODES.InterruptedAtShutdown, + MONGODB_ERROR_CODES.ShutdownInProgress +]); + +function isRecoveringError(err: MongoError) { + if (typeof err.code === 'number') { + // If any error code exists, we ignore the error.message + return SDAM_RECOVERING_CODES.has(err.code); + } + + return ( + LEGACY_NOT_PRIMARY_OR_SECONDARY_ERROR_MESSAGE.test(err.message) || + NODE_IS_RECOVERING_ERROR_MESSAGE.test(err.message) + ); +} + +function isNotWritablePrimaryError(err: MongoError) { + if (typeof err.code === 'number') { + // If any error code exists, we ignore the error.message + return SDAM_NOT_PRIMARY_CODES.has(err.code); + } + + if (isRecoveringError(err)) { + return false; + } + + return LEGACY_NOT_WRITABLE_PRIMARY_ERROR_MESSAGE.test(err.message); +} + +export function isNodeShuttingDownError(err: MongoError): boolean { + return !!(typeof err.code === 'number' && SDAM_NODE_SHUTTING_DOWN_ERROR_CODES.has(err.code)); +} + +/** + * Determines whether SDAM can recover from a given error. If it cannot + * then the pool will be cleared, and server state will completely reset + * locally. + * + * @see https://github.com/mongodb/specifications/blob/master/source/server-discovery-and-monitoring/server-discovery-and-monitoring.rst#not-master-and-node-is-recovering + */ +export function isSDAMUnrecoverableError(error: MongoError): boolean { + // NOTE: null check is here for a strictly pre-CMAP world, a timeout or + // close event are considered unrecoverable + if (error instanceof MongoParseError || error == null) { + return true; + } + + return isRecoveringError(error) || isNotWritablePrimaryError(error); +} + +export function isNetworkTimeoutError(err: MongoError): err is MongoNetworkError { + return !!(err instanceof MongoNetworkError && err.message.match(/timed out/)); +} + +export function isResumableError(error?: Error, wireVersion?: number): boolean { + if (error == null || !(error instanceof MongoError)) { + return false; + } + + if (error instanceof MongoNetworkError) { + return true; + } + + if (wireVersion != null && wireVersion >= 9) { + // DRIVERS-1308: For 4.4 drivers running against 4.4 servers, drivers will add a special case to treat the CursorNotFound error code as resumable + if (error.code === MONGODB_ERROR_CODES.CursorNotFound) { + return true; + } + return error.hasErrorLabel(MongoErrorLabel.ResumableChangeStreamError); + } + + if (typeof error.code === 'number') { + return GET_MORE_RESUMABLE_CODES.has(error.code); + } + + return false; +} diff --git a/node_modules/mongodb/src/explain.ts b/node_modules/mongodb/src/explain.ts new file mode 100644 index 000000000..0d08e694a --- /dev/null +++ b/node_modules/mongodb/src/explain.ts @@ -0,0 +1,52 @@ +import { MongoInvalidArgumentError } from './error'; + +/** @public */ +export const ExplainVerbosity = Object.freeze({ + queryPlanner: 'queryPlanner', + queryPlannerExtended: 'queryPlannerExtended', + executionStats: 'executionStats', + allPlansExecution: 'allPlansExecution' +} as const); + +/** @public */ +export type ExplainVerbosity = string; + +/** + * For backwards compatibility, true is interpreted as "allPlansExecution" + * and false as "queryPlanner". Prior to server version 3.6, aggregate() + * ignores the verbosity parameter and executes in "queryPlanner". + * @public + */ +export type ExplainVerbosityLike = ExplainVerbosity | boolean; + +/** @public */ +export interface ExplainOptions { + /** Specifies the verbosity mode for the explain output. */ + explain?: ExplainVerbosityLike; +} + +/** @internal */ +export class Explain { + verbosity: ExplainVerbosity; + + constructor(verbosity: ExplainVerbosityLike) { + if (typeof verbosity === 'boolean') { + this.verbosity = verbosity + ? ExplainVerbosity.allPlansExecution + : ExplainVerbosity.queryPlanner; + } else { + this.verbosity = verbosity; + } + } + + static fromOptions(options?: ExplainOptions): Explain | undefined { + if (options?.explain == null) return; + + const explain = options.explain; + if (typeof explain === 'boolean' || typeof explain === 'string') { + return new Explain(explain); + } + + throw new MongoInvalidArgumentError('Field "explain" must be a string or a boolean'); + } +} diff --git a/node_modules/mongodb/src/gridfs/download.ts b/node_modules/mongodb/src/gridfs/download.ts new file mode 100644 index 000000000..c16133385 --- /dev/null +++ b/node_modules/mongodb/src/gridfs/download.ts @@ -0,0 +1,459 @@ +import { Readable } from 'stream'; + +import type { Document, ObjectId } from '../bson'; +import type { Collection } from '../collection'; +import type { FindCursor } from '../cursor/find_cursor'; +import { + MongoGridFSChunkError, + MongoGridFSStreamError, + MongoInvalidArgumentError, + MongoRuntimeError +} from '../error'; +import type { FindOptions } from '../operations/find'; +import type { ReadPreference } from '../read_preference'; +import type { Sort } from '../sort'; +import type { Callback } from '../utils'; +import type { GridFSChunk } from './upload'; + +/** @public */ +export interface GridFSBucketReadStreamOptions { + sort?: Sort; + skip?: number; + /** 0-based offset in bytes to start streaming from */ + start?: number; + /** 0-based offset in bytes to stop streaming before */ + end?: number; +} + +/** @public */ +export interface GridFSBucketReadStreamOptionsWithRevision extends GridFSBucketReadStreamOptions { + /** The revision number relative to the oldest file with the given filename. 0 + * gets you the oldest file, 1 gets you the 2nd oldest, -1 gets you the + * newest. */ + revision?: number; +} + +/** @public */ +export interface GridFSFile { + _id: ObjectId; + length: number; + chunkSize: number; + filename: string; + contentType?: string; + aliases?: string[]; + metadata?: Document; + uploadDate: Date; +} + +/** @internal */ +export interface GridFSBucketReadStreamPrivate { + bytesRead: number; + bytesToTrim: number; + bytesToSkip: number; + chunks: Collection; + cursor?: FindCursor; + expected: number; + files: Collection; + filter: Document; + init: boolean; + expectedEnd: number; + file?: GridFSFile; + options: { + sort?: Sort; + skip?: number; + start: number; + end: number; + }; + readPreference?: ReadPreference; +} + +/** + * A readable stream that enables you to read buffers from GridFS. + * + * Do not instantiate this class directly. Use `openDownloadStream()` instead. + * @public + */ +export class GridFSBucketReadStream extends Readable implements NodeJS.ReadableStream { + /** @internal */ + s: GridFSBucketReadStreamPrivate; + + /** + * An error occurred + * @event + */ + static readonly ERROR = 'error' as const; + /** + * Fires when the stream loaded the file document corresponding to the provided id. + * @event + */ + static readonly FILE = 'file' as const; + /** + * Emitted when a chunk of data is available to be consumed. + * @event + */ + static readonly DATA = 'data' as const; + /** + * Fired when the stream is exhausted (no more data events). + * @event + */ + static readonly END = 'end' as const; + /** + * Fired when the stream is exhausted and the underlying cursor is killed + * @event + */ + static readonly CLOSE = 'close' as const; + + /** + * @param chunks - Handle for chunks collection + * @param files - Handle for files collection + * @param readPreference - The read preference to use + * @param filter - The filter to use to find the file document + * @internal + */ + constructor( + chunks: Collection, + files: Collection, + readPreference: ReadPreference | undefined, + filter: Document, + options?: GridFSBucketReadStreamOptions + ) { + super(); + this.s = { + bytesToTrim: 0, + bytesToSkip: 0, + bytesRead: 0, + chunks, + expected: 0, + files, + filter, + init: false, + expectedEnd: 0, + options: { + start: 0, + end: 0, + ...options + }, + readPreference + }; + } + + /** + * Reads from the cursor and pushes to the stream. + * Private Impl, do not call directly + * @internal + */ + override _read(): void { + if (this.destroyed) return; + waitForFile(this, () => doRead(this)); + } + + /** + * Sets the 0-based offset in bytes to start streaming from. Throws + * an error if this stream has entered flowing mode + * (e.g. if you've already called `on('data')`) + * + * @param start - 0-based offset in bytes to start streaming from + */ + start(start = 0): this { + throwIfInitialized(this); + this.s.options.start = start; + return this; + } + + /** + * Sets the 0-based offset in bytes to start streaming from. Throws + * an error if this stream has entered flowing mode + * (e.g. if you've already called `on('data')`) + * + * @param end - Offset in bytes to stop reading at + */ + end(end = 0): this { + throwIfInitialized(this); + this.s.options.end = end; + return this; + } + + /** + * Marks this stream as aborted (will never push another `data` event) + * and kills the underlying cursor. Will emit the 'end' event, and then + * the 'close' event once the cursor is successfully killed. + * + * @param callback - called when the cursor is successfully closed or an error occurred. + */ + abort(callback?: Callback): void { + this.push(null); + this.destroyed = true; + if (this.s.cursor) { + this.s.cursor.close(error => { + this.emit(GridFSBucketReadStream.CLOSE); + callback && callback(error); + }); + } else { + if (!this.s.init) { + // If not initialized, fire close event because we will never + // get a cursor + this.emit(GridFSBucketReadStream.CLOSE); + } + callback && callback(); + } + } +} + +function throwIfInitialized(stream: GridFSBucketReadStream): void { + if (stream.s.init) { + throw new MongoGridFSStreamError('Options cannot be changed after the stream is initialized'); + } +} + +function doRead(stream: GridFSBucketReadStream): void { + if (stream.destroyed) return; + if (!stream.s.cursor) return; + if (!stream.s.file) return; + + stream.s.cursor.next((error, doc) => { + if (stream.destroyed) { + return; + } + if (error) { + stream.emit(GridFSBucketReadStream.ERROR, error); + return; + } + if (!doc) { + stream.push(null); + + process.nextTick(() => { + if (!stream.s.cursor) return; + stream.s.cursor.close(error => { + if (error) { + stream.emit(GridFSBucketReadStream.ERROR, error); + return; + } + + stream.emit(GridFSBucketReadStream.CLOSE); + }); + }); + + return; + } + + if (!stream.s.file) return; + + const bytesRemaining = stream.s.file.length - stream.s.bytesRead; + const expectedN = stream.s.expected++; + const expectedLength = Math.min(stream.s.file.chunkSize, bytesRemaining); + if (doc.n > expectedN) { + return stream.emit( + GridFSBucketReadStream.ERROR, + new MongoGridFSChunkError( + `ChunkIsMissing: Got unexpected n: ${doc.n}, expected: ${expectedN}` + ) + ); + } + + if (doc.n < expectedN) { + return stream.emit( + GridFSBucketReadStream.ERROR, + new MongoGridFSChunkError(`ExtraChunk: Got unexpected n: ${doc.n}, expected: ${expectedN}`) + ); + } + + let buf = Buffer.isBuffer(doc.data) ? doc.data : doc.data.buffer; + + if (buf.byteLength !== expectedLength) { + if (bytesRemaining <= 0) { + return stream.emit( + GridFSBucketReadStream.ERROR, + new MongoGridFSChunkError( + `ExtraChunk: Got unexpected n: ${doc.n}, expected file length ${stream.s.file.length} bytes but already read ${stream.s.bytesRead} bytes` + ) + ); + } + + return stream.emit( + GridFSBucketReadStream.ERROR, + new MongoGridFSChunkError( + `ChunkIsWrongSize: Got unexpected length: ${buf.byteLength}, expected: ${expectedLength}` + ) + ); + } + + stream.s.bytesRead += buf.byteLength; + + if (buf.byteLength === 0) { + return stream.push(null); + } + + let sliceStart = null; + let sliceEnd = null; + + if (stream.s.bytesToSkip != null) { + sliceStart = stream.s.bytesToSkip; + stream.s.bytesToSkip = 0; + } + + const atEndOfStream = expectedN === stream.s.expectedEnd - 1; + const bytesLeftToRead = stream.s.options.end - stream.s.bytesToSkip; + if (atEndOfStream && stream.s.bytesToTrim != null) { + sliceEnd = stream.s.file.chunkSize - stream.s.bytesToTrim; + } else if (stream.s.options.end && bytesLeftToRead < doc.data.byteLength) { + sliceEnd = bytesLeftToRead; + } + + if (sliceStart != null || sliceEnd != null) { + buf = buf.slice(sliceStart || 0, sliceEnd || buf.byteLength); + } + + stream.push(buf); + return; + }); +} + +function init(stream: GridFSBucketReadStream): void { + const findOneOptions: FindOptions = {}; + if (stream.s.readPreference) { + findOneOptions.readPreference = stream.s.readPreference; + } + if (stream.s.options && stream.s.options.sort) { + findOneOptions.sort = stream.s.options.sort; + } + if (stream.s.options && stream.s.options.skip) { + findOneOptions.skip = stream.s.options.skip; + } + + stream.s.files.findOne(stream.s.filter, findOneOptions, (error, doc) => { + if (error) { + return stream.emit(GridFSBucketReadStream.ERROR, error); + } + + if (!doc) { + const identifier = stream.s.filter._id + ? stream.s.filter._id.toString() + : stream.s.filter.filename; + const errmsg = `FileNotFound: file ${identifier} was not found`; + // TODO(NODE-3483) + const err = new MongoRuntimeError(errmsg); + err.code = 'ENOENT'; // TODO: NODE-3338 set property as part of constructor + return stream.emit(GridFSBucketReadStream.ERROR, err); + } + + // If document is empty, kill the stream immediately and don't + // execute any reads + if (doc.length <= 0) { + stream.push(null); + return; + } + + if (stream.destroyed) { + // If user destroys the stream before we have a cursor, wait + // until the query is done to say we're 'closed' because we can't + // cancel a query. + stream.emit(GridFSBucketReadStream.CLOSE); + return; + } + + try { + stream.s.bytesToSkip = handleStartOption(stream, doc, stream.s.options); + } catch (error) { + return stream.emit(GridFSBucketReadStream.ERROR, error); + } + + const filter: Document = { files_id: doc._id }; + + // Currently (MongoDB 3.4.4) skip function does not support the index, + // it needs to retrieve all the documents first and then skip them. (CS-25811) + // As work around we use $gte on the "n" field. + if (stream.s.options && stream.s.options.start != null) { + const skip = Math.floor(stream.s.options.start / doc.chunkSize); + if (skip > 0) { + filter['n'] = { $gte: skip }; + } + } + stream.s.cursor = stream.s.chunks.find(filter).sort({ n: 1 }); + + if (stream.s.readPreference) { + stream.s.cursor.withReadPreference(stream.s.readPreference); + } + + stream.s.expectedEnd = Math.ceil(doc.length / doc.chunkSize); + stream.s.file = doc as GridFSFile; + + try { + stream.s.bytesToTrim = handleEndOption(stream, doc, stream.s.cursor, stream.s.options); + } catch (error) { + return stream.emit(GridFSBucketReadStream.ERROR, error); + } + + stream.emit(GridFSBucketReadStream.FILE, doc); + return; + }); +} + +function waitForFile(stream: GridFSBucketReadStream, callback: Callback): void { + if (stream.s.file) { + return callback(); + } + + if (!stream.s.init) { + init(stream); + stream.s.init = true; + } + + stream.once('file', () => { + callback(); + }); +} + +function handleStartOption( + stream: GridFSBucketReadStream, + doc: Document, + options: GridFSBucketReadStreamOptions +): number { + if (options && options.start != null) { + if (options.start > doc.length) { + throw new MongoInvalidArgumentError( + `Stream start (${options.start}) must not be more than the length of the file (${doc.length})` + ); + } + if (options.start < 0) { + throw new MongoInvalidArgumentError(`Stream start (${options.start}) must not be negative`); + } + if (options.end != null && options.end < options.start) { + throw new MongoInvalidArgumentError( + `Stream start (${options.start}) must not be greater than stream end (${options.end})` + ); + } + + stream.s.bytesRead = Math.floor(options.start / doc.chunkSize) * doc.chunkSize; + stream.s.expected = Math.floor(options.start / doc.chunkSize); + + return options.start - stream.s.bytesRead; + } + throw new MongoInvalidArgumentError('Start option must be defined'); +} + +function handleEndOption( + stream: GridFSBucketReadStream, + doc: Document, + cursor: FindCursor, + options: GridFSBucketReadStreamOptions +) { + if (options && options.end != null) { + if (options.end > doc.length) { + throw new MongoInvalidArgumentError( + `Stream end (${options.end}) must not be more than the length of the file (${doc.length})` + ); + } + if (options.start == null || options.start < 0) { + throw new MongoInvalidArgumentError(`Stream end (${options.end}) must not be negative`); + } + + const start = options.start != null ? Math.floor(options.start / doc.chunkSize) : 0; + + cursor.limit(Math.ceil(options.end / doc.chunkSize) - start); + + stream.s.expectedEnd = Math.ceil(options.end / doc.chunkSize); + + return Math.ceil(options.end / doc.chunkSize) * doc.chunkSize - options.end; + } + throw new MongoInvalidArgumentError('End option must be defined'); +} diff --git a/node_modules/mongodb/src/gridfs/index.ts b/node_modules/mongodb/src/gridfs/index.ts new file mode 100644 index 000000000..eb96cebca --- /dev/null +++ b/node_modules/mongodb/src/gridfs/index.ts @@ -0,0 +1,260 @@ +import type { ObjectId } from '../bson'; +import type { Collection } from '../collection'; +import type { FindCursor } from '../cursor/find_cursor'; +import type { Db } from '../db'; +import { MongoRuntimeError } from '../error'; +import type { Logger } from '../logger'; +import { Filter, TypedEventEmitter } from '../mongo_types'; +import type { ReadPreference } from '../read_preference'; +import type { Sort } from '../sort'; +import { Callback, maybePromise } from '../utils'; +import { WriteConcern, WriteConcernOptions } from '../write_concern'; +import type { FindOptions } from './../operations/find'; +import { + GridFSBucketReadStream, + GridFSBucketReadStreamOptions, + GridFSBucketReadStreamOptionsWithRevision, + GridFSFile +} from './download'; +import { GridFSBucketWriteStream, GridFSBucketWriteStreamOptions, GridFSChunk } from './upload'; + +const DEFAULT_GRIDFS_BUCKET_OPTIONS: { + bucketName: string; + chunkSizeBytes: number; +} = { + bucketName: 'fs', + chunkSizeBytes: 255 * 1024 +}; + +/** @public */ +export interface GridFSBucketOptions extends WriteConcernOptions { + /** The 'files' and 'chunks' collections will be prefixed with the bucket name followed by a dot. */ + bucketName?: string; + /** Number of bytes stored in each chunk. Defaults to 255KB */ + chunkSizeBytes?: number; + /** Read preference to be passed to read operations */ + readPreference?: ReadPreference; +} + +/** @internal */ +export interface GridFSBucketPrivate { + db: Db; + options: { + bucketName: string; + chunkSizeBytes: number; + readPreference?: ReadPreference; + writeConcern: WriteConcern | undefined; + }; + _chunksCollection: Collection; + _filesCollection: Collection; + checkedIndexes: boolean; + calledOpenUploadStream: boolean; +} + +/** @public */ +export type GridFSBucketEvents = { + index(): void; +}; + +/** + * Constructor for a streaming GridFS interface + * @public + */ +export class GridFSBucket extends TypedEventEmitter { + /** @internal */ + s: GridFSBucketPrivate; + + /** + * When the first call to openUploadStream is made, the upload stream will + * check to see if it needs to create the proper indexes on the chunks and + * files collections. This event is fired either when 1) it determines that + * no index creation is necessary, 2) when it successfully creates the + * necessary indexes. + * @event + */ + static readonly INDEX = 'index' as const; + + constructor(db: Db, options?: GridFSBucketOptions) { + super(); + this.setMaxListeners(0); + const privateOptions = { + ...DEFAULT_GRIDFS_BUCKET_OPTIONS, + ...options, + writeConcern: WriteConcern.fromOptions(options) + }; + this.s = { + db, + options: privateOptions, + _chunksCollection: db.collection(privateOptions.bucketName + '.chunks'), + _filesCollection: db.collection(privateOptions.bucketName + '.files'), + checkedIndexes: false, + calledOpenUploadStream: false + }; + } + + /** + * Returns a writable stream (GridFSBucketWriteStream) for writing + * buffers to GridFS. The stream's 'id' property contains the resulting + * file's id. + * + * @param filename - The value of the 'filename' key in the files doc + * @param options - Optional settings. + */ + + openUploadStream( + filename: string, + options?: GridFSBucketWriteStreamOptions + ): GridFSBucketWriteStream { + return new GridFSBucketWriteStream(this, filename, options); + } + + /** + * Returns a writable stream (GridFSBucketWriteStream) for writing + * buffers to GridFS for a custom file id. The stream's 'id' property contains the resulting + * file's id. + */ + openUploadStreamWithId( + id: ObjectId, + filename: string, + options?: GridFSBucketWriteStreamOptions + ): GridFSBucketWriteStream { + return new GridFSBucketWriteStream(this, filename, { ...options, id }); + } + + /** Returns a readable stream (GridFSBucketReadStream) for streaming file data from GridFS. */ + openDownloadStream( + id: ObjectId, + options?: GridFSBucketReadStreamOptions + ): GridFSBucketReadStream { + return new GridFSBucketReadStream( + this.s._chunksCollection, + this.s._filesCollection, + this.s.options.readPreference, + { _id: id }, + options + ); + } + + /** + * Deletes a file with the given id + * + * @param id - The id of the file doc + */ + delete(id: ObjectId): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + delete(id: ObjectId, callback: Callback): void; + delete(id: ObjectId, callback?: Callback): Promise | void { + return maybePromise(callback, callback => { + return this.s._filesCollection.deleteOne({ _id: id }, (error, res) => { + if (error) { + return callback(error); + } + + return this.s._chunksCollection.deleteMany({ files_id: id }, error => { + if (error) { + return callback(error); + } + + // Delete orphaned chunks before returning FileNotFound + if (!res?.deletedCount) { + // TODO(NODE-3483): Replace with more appropriate error + // Consider creating new error MongoGridFSFileNotFoundError + return callback(new MongoRuntimeError(`File not found for id ${id}`)); + } + + return callback(); + }); + }); + }); + } + + /** Convenience wrapper around find on the files collection */ + find(filter?: Filter, options?: FindOptions): FindCursor { + filter ??= {}; + options = options ?? {}; + return this.s._filesCollection.find(filter, options); + } + + /** + * Returns a readable stream (GridFSBucketReadStream) for streaming the + * file with the given name from GridFS. If there are multiple files with + * the same name, this will stream the most recent file with the given name + * (as determined by the `uploadDate` field). You can set the `revision` + * option to change this behavior. + */ + openDownloadStreamByName( + filename: string, + options?: GridFSBucketReadStreamOptionsWithRevision + ): GridFSBucketReadStream { + let sort: Sort = { uploadDate: -1 }; + let skip = undefined; + if (options && options.revision != null) { + if (options.revision >= 0) { + sort = { uploadDate: 1 }; + skip = options.revision; + } else { + skip = -options.revision - 1; + } + } + return new GridFSBucketReadStream( + this.s._chunksCollection, + this.s._filesCollection, + this.s.options.readPreference, + { filename }, + { ...options, sort, skip } + ); + } + + /** + * Renames the file with the given _id to the given string + * + * @param id - the id of the file to rename + * @param filename - new name for the file + */ + rename(id: ObjectId, filename: string): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + rename(id: ObjectId, filename: string, callback: Callback): void; + rename(id: ObjectId, filename: string, callback?: Callback): Promise | void { + return maybePromise(callback, callback => { + const filter = { _id: id }; + const update = { $set: { filename } }; + return this.s._filesCollection.updateOne(filter, update, (error?, res?) => { + if (error) { + return callback(error); + } + + if (!res?.matchedCount) { + return callback(new MongoRuntimeError(`File with id ${id} not found`)); + } + + return callback(); + }); + }); + } + + /** Removes this bucket's files collection, followed by its chunks collection. */ + drop(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + drop(callback: Callback): void; + drop(callback?: Callback): Promise | void { + return maybePromise(callback, callback => { + return this.s._filesCollection.drop(error => { + if (error) { + return callback(error); + } + return this.s._chunksCollection.drop(error => { + if (error) { + return callback(error); + } + + return callback(); + }); + }); + }); + } + + /** Get the Db scoped logger. */ + getLogger(): Logger { + return this.s.db.s.logger; + } +} diff --git a/node_modules/mongodb/src/gridfs/upload.ts b/node_modules/mongodb/src/gridfs/upload.ts new file mode 100644 index 000000000..68d4ad224 --- /dev/null +++ b/node_modules/mongodb/src/gridfs/upload.ts @@ -0,0 +1,568 @@ +import { Writable } from 'stream'; + +import type { Document } from '../bson'; +import { ObjectId } from '../bson'; +import type { Collection } from '../collection'; +import { AnyError, MongoAPIError, MONGODB_ERROR_CODES, MongoError } from '../error'; +import { Callback, maybePromise } from '../utils'; +import type { WriteConcernOptions } from '../write_concern'; +import { WriteConcern } from './../write_concern'; +import type { GridFSFile } from './download'; +import type { GridFSBucket } from './index'; + +/** @public */ +export interface GridFSChunk { + _id: ObjectId; + files_id: ObjectId; + n: number; + data: Buffer | Uint8Array; +} + +/** @public */ +export interface GridFSBucketWriteStreamOptions extends WriteConcernOptions { + /** Overwrite this bucket's chunkSizeBytes for this file */ + chunkSizeBytes?: number; + /** Custom file id for the GridFS file. */ + id?: ObjectId; + /** Object to store in the file document's `metadata` field */ + metadata?: Document; + /** String to store in the file document's `contentType` field */ + contentType?: string; + /** Array of strings to store in the file document's `aliases` field */ + aliases?: string[]; +} + +/** + * A writable stream that enables you to write buffers to GridFS. + * + * Do not instantiate this class directly. Use `openUploadStream()` instead. + * @public + */ +export class GridFSBucketWriteStream extends Writable implements NodeJS.WritableStream { + bucket: GridFSBucket; + chunks: Collection; + filename: string; + files: Collection; + options: GridFSBucketWriteStreamOptions; + done: boolean; + id: ObjectId; + chunkSizeBytes: number; + bufToStore: Buffer; + length: number; + n: number; + pos: number; + state: { + streamEnd: boolean; + outstandingRequests: number; + errored: boolean; + aborted: boolean; + }; + writeConcern?: WriteConcern; + + /** @event */ + static readonly CLOSE = 'close'; + /** @event */ + static readonly ERROR = 'error'; + /** + * `end()` was called and the write stream successfully wrote the file metadata and all the chunks to MongoDB. + * @event + */ + static readonly FINISH = 'finish'; + + /** + * @param bucket - Handle for this stream's corresponding bucket + * @param filename - The value of the 'filename' key in the files doc + * @param options - Optional settings. + * @internal + */ + constructor(bucket: GridFSBucket, filename: string, options?: GridFSBucketWriteStreamOptions) { + super(); + + options = options ?? {}; + this.bucket = bucket; + this.chunks = bucket.s._chunksCollection; + this.filename = filename; + this.files = bucket.s._filesCollection; + this.options = options; + this.writeConcern = WriteConcern.fromOptions(options) || bucket.s.options.writeConcern; + // Signals the write is all done + this.done = false; + + this.id = options.id ? options.id : new ObjectId(); + // properly inherit the default chunksize from parent + this.chunkSizeBytes = options.chunkSizeBytes || this.bucket.s.options.chunkSizeBytes; + this.bufToStore = Buffer.alloc(this.chunkSizeBytes); + this.length = 0; + this.n = 0; + this.pos = 0; + this.state = { + streamEnd: false, + outstandingRequests: 0, + errored: false, + aborted: false + }; + + if (!this.bucket.s.calledOpenUploadStream) { + this.bucket.s.calledOpenUploadStream = true; + + checkIndexes(this, () => { + this.bucket.s.checkedIndexes = true; + this.bucket.emit('index'); + }); + } + } + + /** + * Write a buffer to the stream. + * + * @param chunk - Buffer to write + * @param encodingOrCallback - Optional encoding for the buffer + * @param callback - Function to call when the chunk was added to the buffer, or if the entire chunk was persisted to MongoDB if this chunk caused a flush. + * @returns False if this write required flushing a chunk to MongoDB. True otherwise. + */ + override write(chunk: Buffer | string): boolean; + override write(chunk: Buffer | string, callback: Callback): boolean; + override write(chunk: Buffer | string, encoding: BufferEncoding | undefined): boolean; + override write( + chunk: Buffer | string, + encoding: BufferEncoding | undefined, + callback: Callback + ): boolean; + override write( + chunk: Buffer | string, + encodingOrCallback?: Callback | BufferEncoding, + callback?: Callback + ): boolean { + const encoding = typeof encodingOrCallback === 'function' ? undefined : encodingOrCallback; + callback = typeof encodingOrCallback === 'function' ? encodingOrCallback : callback; + return waitForIndexes(this, () => doWrite(this, chunk, encoding, callback)); + } + + // TODO(NODE-3405): Refactor this with maybePromise and MongoStreamClosedError + /** + * Places this write stream into an aborted state (all future writes fail) + * and deletes all chunks that have already been written. + * + * @param callback - called when chunks are successfully removed or error occurred + */ + abort(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + abort(callback: Callback): void; + abort(callback?: Callback): Promise | void { + return maybePromise(callback, callback => { + if (this.state.streamEnd) { + // TODO(NODE-3485): Replace with MongoGridFSStreamClosed + return callback(new MongoAPIError('Cannot abort a stream that has already completed')); + } + + if (this.state.aborted) { + // TODO(NODE-3485): Replace with MongoGridFSStreamClosed + return callback(new MongoAPIError('Cannot call abort() on a stream twice')); + } + + this.state.aborted = true; + this.chunks.deleteMany({ files_id: this.id }, error => callback(error)); + }); + } + + /** + * Tells the stream that no more data will be coming in. The stream will + * persist the remaining data to MongoDB, write the files document, and + * then emit a 'finish' event. + * + * @param chunk - Buffer to write + * @param encoding - Optional encoding for the buffer + * @param callback - Function to call when all files and chunks have been persisted to MongoDB + */ + override end(): this; + override end(chunk: Buffer): this; + override end(callback: Callback): this; + override end(chunk: Buffer, callback: Callback): this; + override end(chunk: Buffer, encoding: BufferEncoding): this; + override end( + chunk: Buffer, + encoding: BufferEncoding | undefined, + callback: Callback + ): this; + override end( + chunkOrCallback?: Buffer | Callback, + encodingOrCallback?: BufferEncoding | Callback, + callback?: Callback + ): this { + const chunk = typeof chunkOrCallback === 'function' ? undefined : chunkOrCallback; + const encoding = typeof encodingOrCallback === 'function' ? undefined : encodingOrCallback; + callback = + typeof chunkOrCallback === 'function' + ? chunkOrCallback + : typeof encodingOrCallback === 'function' + ? encodingOrCallback + : callback; + + if (this.state.streamEnd || checkAborted(this, callback)) return this; + + this.state.streamEnd = true; + + if (callback) { + this.once(GridFSBucketWriteStream.FINISH, (result: GridFSFile) => { + if (callback) callback(undefined, result); + }); + } + + if (!chunk) { + waitForIndexes(this, () => !!writeRemnant(this)); + return this; + } + + this.write(chunk, encoding, () => { + writeRemnant(this); + }); + + return this; + } +} + +function __handleError( + stream: GridFSBucketWriteStream, + error: AnyError, + callback?: Callback +): void { + if (stream.state.errored) { + return; + } + stream.state.errored = true; + if (callback) { + return callback(error); + } + stream.emit(GridFSBucketWriteStream.ERROR, error); +} + +function createChunkDoc(filesId: ObjectId, n: number, data: Buffer): GridFSChunk { + return { + _id: new ObjectId(), + files_id: filesId, + n, + data + }; +} + +function checkChunksIndex(stream: GridFSBucketWriteStream, callback: Callback): void { + stream.chunks.listIndexes().toArray((error?: AnyError, indexes?: Document[]) => { + let index: { files_id: number; n: number }; + if (error) { + // Collection doesn't exist so create index + if (error instanceof MongoError && error.code === MONGODB_ERROR_CODES.NamespaceNotFound) { + index = { files_id: 1, n: 1 }; + stream.chunks.createIndex(index, { background: false, unique: true }, error => { + if (error) { + return callback(error); + } + + callback(); + }); + return; + } + return callback(error); + } + + let hasChunksIndex = false; + if (indexes) { + indexes.forEach((index: Document) => { + if (index.key) { + const keys = Object.keys(index.key); + if (keys.length === 2 && index.key.files_id === 1 && index.key.n === 1) { + hasChunksIndex = true; + } + } + }); + } + + if (hasChunksIndex) { + callback(); + } else { + index = { files_id: 1, n: 1 }; + const writeConcernOptions = getWriteOptions(stream); + + stream.chunks.createIndex( + index, + { + ...writeConcernOptions, + background: true, + unique: true + }, + callback + ); + } + }); +} + +function checkDone(stream: GridFSBucketWriteStream, callback?: Callback): boolean { + if (stream.done) return true; + if (stream.state.streamEnd && stream.state.outstandingRequests === 0 && !stream.state.errored) { + // Set done so we do not trigger duplicate createFilesDoc + stream.done = true; + // Create a new files doc + const filesDoc = createFilesDoc( + stream.id, + stream.length, + stream.chunkSizeBytes, + stream.filename, + stream.options.contentType, + stream.options.aliases, + stream.options.metadata + ); + + if (checkAborted(stream, callback)) { + return false; + } + + stream.files.insertOne(filesDoc, getWriteOptions(stream), (error?: AnyError) => { + if (error) { + return __handleError(stream, error, callback); + } + stream.emit(GridFSBucketWriteStream.FINISH, filesDoc); + stream.emit(GridFSBucketWriteStream.CLOSE); + }); + + return true; + } + + return false; +} + +function checkIndexes(stream: GridFSBucketWriteStream, callback: Callback): void { + stream.files.findOne({}, { projection: { _id: 1 } }, (error, doc) => { + if (error) { + return callback(error); + } + if (doc) { + return callback(); + } + + stream.files.listIndexes().toArray((error?: AnyError, indexes?: Document) => { + let index: { filename: number; uploadDate: number }; + if (error) { + // Collection doesn't exist so create index + if (error instanceof MongoError && error.code === MONGODB_ERROR_CODES.NamespaceNotFound) { + index = { filename: 1, uploadDate: 1 }; + stream.files.createIndex(index, { background: false }, (error?: AnyError) => { + if (error) { + return callback(error); + } + + checkChunksIndex(stream, callback); + }); + return; + } + return callback(error); + } + + let hasFileIndex = false; + if (indexes) { + indexes.forEach((index: Document) => { + const keys = Object.keys(index.key); + if (keys.length === 2 && index.key.filename === 1 && index.key.uploadDate === 1) { + hasFileIndex = true; + } + }); + } + + if (hasFileIndex) { + checkChunksIndex(stream, callback); + } else { + index = { filename: 1, uploadDate: 1 }; + + const writeConcernOptions = getWriteOptions(stream); + + stream.files.createIndex( + index, + { + ...writeConcernOptions, + background: false + }, + (error?: AnyError) => { + if (error) { + return callback(error); + } + + checkChunksIndex(stream, callback); + } + ); + } + }); + }); +} + +function createFilesDoc( + _id: ObjectId, + length: number, + chunkSize: number, + filename: string, + contentType?: string, + aliases?: string[], + metadata?: Document +): GridFSFile { + const ret: GridFSFile = { + _id, + length, + chunkSize, + uploadDate: new Date(), + filename + }; + + if (contentType) { + ret.contentType = contentType; + } + + if (aliases) { + ret.aliases = aliases; + } + + if (metadata) { + ret.metadata = metadata; + } + + return ret; +} + +function doWrite( + stream: GridFSBucketWriteStream, + chunk: Buffer | string, + encoding?: BufferEncoding, + callback?: Callback +): boolean { + if (checkAborted(stream, callback)) { + return false; + } + + const inputBuf = Buffer.isBuffer(chunk) ? chunk : Buffer.from(chunk, encoding); + + stream.length += inputBuf.length; + + // Input is small enough to fit in our buffer + if (stream.pos + inputBuf.length < stream.chunkSizeBytes) { + inputBuf.copy(stream.bufToStore, stream.pos); + stream.pos += inputBuf.length; + + callback && callback(); + + // Note that we reverse the typical semantics of write's return value + // to be compatible with node's `.pipe()` function. + // True means client can keep writing. + return true; + } + + // Otherwise, buffer is too big for current chunk, so we need to flush + // to MongoDB. + let inputBufRemaining = inputBuf.length; + let spaceRemaining: number = stream.chunkSizeBytes - stream.pos; + let numToCopy = Math.min(spaceRemaining, inputBuf.length); + let outstandingRequests = 0; + while (inputBufRemaining > 0) { + const inputBufPos = inputBuf.length - inputBufRemaining; + inputBuf.copy(stream.bufToStore, stream.pos, inputBufPos, inputBufPos + numToCopy); + stream.pos += numToCopy; + spaceRemaining -= numToCopy; + let doc: GridFSChunk; + if (spaceRemaining === 0) { + doc = createChunkDoc(stream.id, stream.n, Buffer.from(stream.bufToStore)); + ++stream.state.outstandingRequests; + ++outstandingRequests; + + if (checkAborted(stream, callback)) { + return false; + } + + stream.chunks.insertOne(doc, getWriteOptions(stream), (error?: AnyError) => { + if (error) { + return __handleError(stream, error); + } + --stream.state.outstandingRequests; + --outstandingRequests; + + if (!outstandingRequests) { + stream.emit('drain', doc); + callback && callback(); + checkDone(stream); + } + }); + + spaceRemaining = stream.chunkSizeBytes; + stream.pos = 0; + ++stream.n; + } + inputBufRemaining -= numToCopy; + numToCopy = Math.min(spaceRemaining, inputBufRemaining); + } + + // Note that we reverse the typical semantics of write's return value + // to be compatible with node's `.pipe()` function. + // False means the client should wait for the 'drain' event. + return false; +} + +function getWriteOptions(stream: GridFSBucketWriteStream): WriteConcernOptions { + const obj: WriteConcernOptions = {}; + if (stream.writeConcern) { + obj.writeConcern = { + w: stream.writeConcern.w, + wtimeout: stream.writeConcern.wtimeout, + j: stream.writeConcern.j + }; + } + return obj; +} + +function waitForIndexes( + stream: GridFSBucketWriteStream, + callback: (res: boolean) => boolean +): boolean { + if (stream.bucket.s.checkedIndexes) { + return callback(false); + } + + stream.bucket.once('index', () => { + callback(true); + }); + + return true; +} + +function writeRemnant(stream: GridFSBucketWriteStream, callback?: Callback): boolean { + // Buffer is empty, so don't bother to insert + if (stream.pos === 0) { + return checkDone(stream, callback); + } + + ++stream.state.outstandingRequests; + + // Create a new buffer to make sure the buffer isn't bigger than it needs + // to be. + const remnant = Buffer.alloc(stream.pos); + stream.bufToStore.copy(remnant, 0, 0, stream.pos); + const doc = createChunkDoc(stream.id, stream.n, remnant); + + // If the stream was aborted, do not write remnant + if (checkAborted(stream, callback)) { + return false; + } + + stream.chunks.insertOne(doc, getWriteOptions(stream), (error?: AnyError) => { + if (error) { + return __handleError(stream, error); + } + --stream.state.outstandingRequests; + checkDone(stream); + }); + return true; +} + +function checkAborted(stream: GridFSBucketWriteStream, callback?: Callback): boolean { + if (stream.state.aborted) { + if (typeof callback === 'function') { + // TODO(NODE-3485): Replace with MongoGridFSStreamClosedError + callback(new MongoAPIError('Stream has been aborted')); + } + return true; + } + return false; +} diff --git a/node_modules/mongodb/src/index.ts b/node_modules/mongodb/src/index.ts new file mode 100644 index 000000000..6dc03ef7c --- /dev/null +++ b/node_modules/mongodb/src/index.ts @@ -0,0 +1,482 @@ +import { Admin } from './admin'; +import { ObjectId } from './bson'; +import { OrderedBulkOperation } from './bulk/ordered'; +import { UnorderedBulkOperation } from './bulk/unordered'; +import { ChangeStream } from './change_stream'; +import { Collection } from './collection'; +import { AbstractCursor } from './cursor/abstract_cursor'; +import { AggregationCursor } from './cursor/aggregation_cursor'; +import { FindCursor } from './cursor/find_cursor'; +import { ListCollectionsCursor } from './cursor/list_collections_cursor'; +import { ListIndexesCursor } from './cursor/list_indexes_cursor'; +import { Db } from './db'; +import { GridFSBucket } from './gridfs'; +import { GridFSBucketReadStream } from './gridfs/download'; +import { GridFSBucketWriteStream } from './gridfs/upload'; +import { Logger } from './logger'; +import { MongoClient } from './mongo_client'; +import { CancellationToken } from './mongo_types'; +import { PromiseProvider } from './promise_provider'; +import { ClientSession } from './sessions'; + +/** @internal */ +export { BSON } from './bson'; +export { + Binary, + BSONRegExp, + BSONSymbol, + Code, + DBRef, + Decimal128, + Double, + Int32, + Long, + Map, + MaxKey, + MinKey, + ObjectId, + Timestamp +} from './bson'; +export { ChangeStreamCursor } from './cursor/change_stream_cursor'; +/** + * @public + * @deprecated Please use `ObjectId` + */ +export const ObjectID = ObjectId; + +export { AnyBulkWriteOperation, BulkWriteOptions, MongoBulkWriteError } from './bulk/common'; +export { + MongoAPIError, + MongoAWSError, + MongoBatchReExecutionError, + MongoChangeStreamError, + MongoCompatibilityError, + MongoCursorExhaustedError, + MongoCursorInUseError, + MongoDecompressionError, + MongoDriverError, + MongoError, + MongoExpiredSessionError, + MongoGridFSChunkError, + MongoGridFSStreamError, + MongoInvalidArgumentError, + MongoKerberosError, + MongoMissingCredentialsError, + MongoMissingDependencyError, + MongoNetworkError, + MongoNetworkTimeoutError, + MongoNotConnectedError, + MongoParseError, + MongoRuntimeError, + MongoServerClosedError, + MongoServerError, + MongoServerSelectionError, + MongoSystemError, + MongoTailableCursorError, + MongoTopologyClosedError, + MongoTransactionError, + MongoUnexpectedServerResponseError, + MongoWriteConcernError +} from './error'; +export { + AbstractCursor, + // Actual driver classes exported + Admin, + AggregationCursor, + CancellationToken, + ChangeStream, + ClientSession, + Collection, + Db, + FindCursor, + GridFSBucket, + GridFSBucketReadStream, + GridFSBucketWriteStream, + ListCollectionsCursor, + ListIndexesCursor, + Logger, + MongoClient, + OrderedBulkOperation, + UnorderedBulkOperation +}; + +// Deprecated, remove in next major +export { PromiseProvider as Promise }; + +// enums +export { BatchType } from './bulk/common'; +export { GSSAPICanonicalizationValue } from './cmap/auth/gssapi'; +export { AuthMechanism } from './cmap/auth/providers'; +export { Compressor } from './cmap/wire_protocol/compression'; +export { CURSOR_FLAGS } from './cursor/abstract_cursor'; +export { AutoEncryptionLoggerLevel } from './deps'; +export { MongoErrorLabel } from './error'; +export { ExplainVerbosity } from './explain'; +export { LoggerLevel } from './logger'; +export { ServerApiVersion } from './mongo_client'; +export { BSONType } from './mongo_types'; +export { ReturnDocument } from './operations/find_and_modify'; +export { ProfilingLevel } from './operations/set_profiling_level'; +export { ReadConcernLevel } from './read_concern'; +export { ReadPreferenceMode } from './read_preference'; +export { ServerType, TopologyType } from './sdam/common'; + +// Helper classes +export { ReadConcern } from './read_concern'; +export { ReadPreference } from './read_preference'; +export { WriteConcern } from './write_concern'; + +// events +export { + CommandFailedEvent, + CommandStartedEvent, + CommandSucceededEvent +} from './cmap/command_monitoring_events'; +export { + ConnectionCheckedInEvent, + ConnectionCheckedOutEvent, + ConnectionCheckOutFailedEvent, + ConnectionCheckOutStartedEvent, + ConnectionClosedEvent, + ConnectionCreatedEvent, + ConnectionPoolClearedEvent, + ConnectionPoolClosedEvent, + ConnectionPoolCreatedEvent, + ConnectionPoolMonitoringEvent, + ConnectionPoolReadyEvent, + ConnectionReadyEvent +} from './cmap/connection_pool_events'; +export { + ServerClosedEvent, + ServerDescriptionChangedEvent, + ServerHeartbeatFailedEvent, + ServerHeartbeatStartedEvent, + ServerHeartbeatSucceededEvent, + ServerOpeningEvent, + TopologyClosedEvent, + TopologyDescriptionChangedEvent, + TopologyOpeningEvent +} from './sdam/events'; +export { SrvPollingEvent } from './sdam/srv_polling'; + +// type only exports below, these are removed from emitted JS +export type { AdminPrivate } from './admin'; +export type { BSONSerializeOptions, Document } from './bson'; +export type { deserialize, serialize } from './bson'; +export type { + BulkResult, + BulkWriteOperationError, + BulkWriteResult, + DeleteManyModel, + DeleteOneModel, + InsertOneModel, + ReplaceOneModel, + UpdateManyModel, + UpdateOneModel, + WriteConcernError, + WriteError +} from './bulk/common'; +export type { + Batch, + BulkOperationBase, + BulkOperationPrivate, + FindOperators, + WriteConcernErrorData +} from './bulk/common'; +export type { + ChangeStreamCollModDocument, + ChangeStreamCreateDocument, + ChangeStreamCreateIndexDocument, + ChangeStreamDeleteDocument, + ChangeStreamDocument, + ChangeStreamDocumentCollectionUUID, + ChangeStreamDocumentCommon, + ChangeStreamDocumentKey, + ChangeStreamDocumentOperationDescription, + ChangeStreamDropDatabaseDocument, + ChangeStreamDropDocument, + ChangeStreamDropIndexDocument, + ChangeStreamEvents, + ChangeStreamInsertDocument, + ChangeStreamInvalidateDocument, + ChangeStreamNameSpace, + ChangeStreamOptions, + ChangeStreamRefineCollectionShardKeyDocument, + ChangeStreamRenameDocument, + ChangeStreamReplaceDocument, + ChangeStreamReshardCollectionDocument, + ChangeStreamShardCollectionDocument, + ChangeStreamUpdateDocument, + OperationTime, + PipeOptions, + ResumeOptions, + ResumeToken, + UpdateDescription +} from './change_stream'; +export type { + AuthMechanismProperties, + MongoCredentials, + MongoCredentialsOptions +} from './cmap/auth/mongo_credentials'; +export type { + BinMsg, + MessageHeader, + Msg, + OpMsgOptions, + OpQueryOptions, + OpResponseOptions, + Query, + Response, + WriteProtocolMessageType +} from './cmap/commands'; +export type { LEGAL_TCP_SOCKET_OPTIONS, LEGAL_TLS_SOCKET_OPTIONS, Stream } from './cmap/connect'; +export type { + CommandOptions, + Connection, + ConnectionEvents, + ConnectionOptions, + DestroyOptions, + GetMoreOptions, + ProxyOptions, + QueryOptions +} from './cmap/connection'; +export type { + CloseOptions, + ConnectionPool, + ConnectionPoolEvents, + ConnectionPoolOptions, + PoolState, + WaitQueueMember, + WithConnectionCallback +} from './cmap/connection_pool'; +export type { + MessageStream, + MessageStreamOptions, + OperationDescription +} from './cmap/message_stream'; +export type { ConnectionPoolMetrics } from './cmap/metrics'; +export type { StreamDescription, StreamDescriptionOptions } from './cmap/stream_description'; +export type { CompressorName } from './cmap/wire_protocol/compression'; +export type { CollectionOptions, CollectionPrivate, ModifyResult } from './collection'; +export type { MONGO_CLIENT_EVENTS } from './constants'; +export type { + AbstractCursorEvents, + AbstractCursorOptions, + CursorCloseOptions, + CursorFlag, + CursorStreamOptions +} from './cursor/abstract_cursor'; +export type { InternalAbstractCursorOptions } from './cursor/abstract_cursor'; +export type { AggregationCursorOptions } from './cursor/aggregation_cursor'; +export type { + ChangeStreamAggregateRawResult, + ChangeStreamCursorOptions +} from './cursor/change_stream_cursor'; +export type { DbOptions, DbPrivate } from './db'; +export type { AutoEncrypter, AutoEncryptionOptions, AutoEncryptionTlsOptions } from './deps'; +export type { Encrypter, EncrypterOptions } from './encrypter'; +export type { AnyError, ErrorDescription, MongoNetworkErrorOptions } from './error'; +export type { Explain, ExplainOptions, ExplainVerbosityLike } from './explain'; +export type { + GridFSBucketReadStreamOptions, + GridFSBucketReadStreamOptionsWithRevision, + GridFSBucketReadStreamPrivate, + GridFSFile +} from './gridfs/download'; +export type { GridFSBucketEvents, GridFSBucketOptions, GridFSBucketPrivate } from './gridfs/index'; +export type { GridFSBucketWriteStreamOptions, GridFSChunk } from './gridfs/upload'; +export type { LoggerFunction, LoggerOptions } from './logger'; +export type { + Auth, + DriverInfo, + MongoClientEvents, + MongoClientOptions, + MongoClientPrivate, + MongoOptions, + PkFactory, + ServerApi, + SupportedNodeConnectionOptions, + SupportedSocketOptions, + SupportedTLSConnectionOptions, + SupportedTLSSocketOptions, + WithSessionCallback +} from './mongo_client'; +export type { + CommonEvents, + EventsDescription, + GenericListener, + TypedEventEmitter +} from './mongo_types'; +export type { + AcceptedFields, + AddToSetOperators, + AlternativeType, + ArrayElement, + ArrayOperator, + BitwiseFilter, + BSONTypeAlias, + Condition, + EnhancedOmit, + Filter, + FilterOperations, + FilterOperators, + Flatten, + InferIdType, + IntegerType, + IsAny, + Join, + KeysOfAType, + KeysOfOtherType, + MatchKeysAndValues, + NestedPaths, + NestedPathsOfType, + NonObjectIdLikeDocument, + NotAcceptedFields, + NumericType, + OneOrMore, + OnlyFieldsOfType, + OptionalId, + OptionalUnlessRequiredId, + Projection, + ProjectionOperators, + PropertyType, + PullAllOperator, + PullOperator, + PushOperator, + RegExpOrString, + RootFilterOperators, + SchemaMember, + SetFields, + UpdateFilter, + WithId, + WithoutId +} from './mongo_types'; +export type { AddUserOptions, RoleSpecification } from './operations/add_user'; +export type { + AggregateOperation, + AggregateOptions, + DB_AGGREGATE_COLLECTION +} from './operations/aggregate'; +export type { + CollationOptions, + CommandOperation, + CommandOperationOptions, + OperationParent +} from './operations/command'; +export type { IndexInformationOptions } from './operations/common_functions'; +export type { CountOptions } from './operations/count'; +export type { CountDocumentsOptions } from './operations/count_documents'; +export type { + ClusteredCollectionOptions, + CreateCollectionOptions, + TimeSeriesCollectionOptions +} from './operations/create_collection'; +export type { DeleteOptions, DeleteResult, DeleteStatement } from './operations/delete'; +export type { DistinctOptions } from './operations/distinct'; +export type { DropCollectionOptions, DropDatabaseOptions } from './operations/drop'; +export type { EstimatedDocumentCountOptions } from './operations/estimated_document_count'; +export type { EvalOptions } from './operations/eval'; +export type { ExecutionResult } from './operations/execute_operation'; +export type { FindOptions } from './operations/find'; +export type { + FindOneAndDeleteOptions, + FindOneAndReplaceOptions, + FindOneAndUpdateOptions +} from './operations/find_and_modify'; +export type { + CreateIndexesOptions, + DropIndexesOptions, + IndexDescription, + IndexDirection, + IndexSpecification, + ListIndexesOptions +} from './operations/indexes'; +export type { InsertManyResult, InsertOneOptions, InsertOneResult } from './operations/insert'; +export type { CollectionInfo, ListCollectionsOptions } from './operations/list_collections'; +export type { ListDatabasesOptions, ListDatabasesResult } from './operations/list_databases'; +export type { + FinalizeFunction, + MapFunction, + MapReduceOptions, + ReduceFunction +} from './operations/map_reduce'; +export type { AbstractOperation, Hint, OperationOptions } from './operations/operation'; +export type { ProfilingLevelOptions } from './operations/profiling_level'; +export type { RemoveUserOptions } from './operations/remove_user'; +export type { RenameOptions } from './operations/rename'; +export type { RunCommandOptions } from './operations/run_command'; +export type { SetProfilingLevelOptions } from './operations/set_profiling_level'; +export type { + CollStats, + CollStatsOptions, + DbStatsOptions, + WiredTigerData +} from './operations/stats'; +export type { + ReplaceOptions, + UpdateOptions, + UpdateResult, + UpdateStatement +} from './operations/update'; +export type { ValidateCollectionOptions } from './operations/validate_collection'; +export type { ReadConcernLike } from './read_concern'; +export type { + HedgeOptions, + ReadPreferenceFromOptions, + ReadPreferenceLike, + ReadPreferenceLikeOptions, + ReadPreferenceOptions +} from './read_preference'; +export type { ClusterTime, TimerQueue } from './sdam/common'; +export type { + Monitor, + MonitorEvents, + MonitorInterval, + MonitorIntervalOptions, + MonitorOptions, + MonitorPrivate, + RTTPinger, + RTTPingerOptions +} from './sdam/monitor'; +export type { Server, ServerEvents, ServerOptions, ServerPrivate } from './sdam/server'; +export type { + ServerDescription, + ServerDescriptionOptions, + TagSet, + TopologyVersion +} from './sdam/server_description'; +export type { ServerSelector } from './sdam/server_selection'; +export type { SrvPoller, SrvPollerEvents, SrvPollerOptions } from './sdam/srv_polling'; +export type { + ConnectOptions, + SelectServerOptions, + ServerCapabilities, + ServerSelectionCallback, + ServerSelectionRequest, + Topology, + TopologyEvents, + TopologyOptions, + TopologyPrivate +} from './sdam/topology'; +export type { TopologyDescription, TopologyDescriptionOptions } from './sdam/topology_description'; +export type { + ClientSessionEvents, + ClientSessionOptions, + EndSessionOptions, + ServerSession, + ServerSessionId, + ServerSessionPool, + WithTransactionCallback +} from './sessions'; +export type { Sort, SortDirection, SortDirectionForCmd, SortForCmd } from './sort'; +export type { Transaction, TransactionOptions, TxnState } from './transactions'; +export type { + BufferPool, + Callback, + ClientMetadata, + ClientMetadataOptions, + EventEmitterWithState, + HostAddress, + MongoDBNamespace +} from './utils'; +export type { W, WriteConcernOptions, WriteConcernSettings } from './write_concern'; diff --git a/node_modules/mongodb/src/logger.ts b/node_modules/mongodb/src/logger.ts new file mode 100644 index 000000000..22609c868 --- /dev/null +++ b/node_modules/mongodb/src/logger.ts @@ -0,0 +1,265 @@ +import { format } from 'util'; + +import { MongoInvalidArgumentError } from './error'; +import { enumToString } from './utils'; + +// Filters for classes +const classFilters: any = {}; +let filteredClasses: any = {}; +let level: LoggerLevel; + +// Save the process id +const pid = process.pid; + +// current logger +// eslint-disable-next-line no-console +let currentLogger: LoggerFunction = console.warn; + +/** @public */ +export const LoggerLevel = Object.freeze({ + ERROR: 'error', + WARN: 'warn', + INFO: 'info', + DEBUG: 'debug', + error: 'error', + warn: 'warn', + info: 'info', + debug: 'debug' +} as const); + +/** @public */ +export type LoggerLevel = typeof LoggerLevel[keyof typeof LoggerLevel]; + +/** @public */ +export type LoggerFunction = (message?: any, ...optionalParams: any[]) => void; + +/** @public */ +export interface LoggerOptions { + logger?: LoggerFunction; + loggerLevel?: LoggerLevel; +} + +/** + * @public + */ +export class Logger { + className: string; + + /** + * Creates a new Logger instance + * + * @param className - The Class name associated with the logging instance + * @param options - Optional logging settings + */ + constructor(className: string, options?: LoggerOptions) { + options = options ?? {}; + + // Current reference + this.className = className; + + // Current logger + if (!(options.logger instanceof Logger) && typeof options.logger === 'function') { + currentLogger = options.logger; + } + + // Set level of logging, default is error + if (options.loggerLevel) { + level = options.loggerLevel || LoggerLevel.ERROR; + } + + // Add all class names + if (filteredClasses[this.className] == null) { + classFilters[this.className] = true; + } + } + + /** + * Log a message at the debug level + * + * @param message - The message to log + * @param object - Additional meta data to log + */ + debug(message: string, object?: unknown): void { + if ( + this.isDebug() && + ((Object.keys(filteredClasses).length > 0 && filteredClasses[this.className]) || + (Object.keys(filteredClasses).length === 0 && classFilters[this.className])) + ) { + const dateTime = new Date().getTime(); + const msg = format('[%s-%s:%s] %s %s', 'DEBUG', this.className, pid, dateTime, message); + const state = { + type: LoggerLevel.DEBUG, + message, + className: this.className, + pid, + date: dateTime + } as any; + + if (object) state.meta = object; + currentLogger(msg, state); + } + } + + /** + * Log a message at the warn level + * + * @param message - The message to log + * @param object - Additional meta data to log + */ + warn(message: string, object?: unknown): void { + if ( + this.isWarn() && + ((Object.keys(filteredClasses).length > 0 && filteredClasses[this.className]) || + (Object.keys(filteredClasses).length === 0 && classFilters[this.className])) + ) { + const dateTime = new Date().getTime(); + const msg = format('[%s-%s:%s] %s %s', 'WARN', this.className, pid, dateTime, message); + const state = { + type: LoggerLevel.WARN, + message, + className: this.className, + pid, + date: dateTime + } as any; + + if (object) state.meta = object; + currentLogger(msg, state); + } + } + + /** + * Log a message at the info level + * + * @param message - The message to log + * @param object - Additional meta data to log + */ + info(message: string, object?: unknown): void { + if ( + this.isInfo() && + ((Object.keys(filteredClasses).length > 0 && filteredClasses[this.className]) || + (Object.keys(filteredClasses).length === 0 && classFilters[this.className])) + ) { + const dateTime = new Date().getTime(); + const msg = format('[%s-%s:%s] %s %s', 'INFO', this.className, pid, dateTime, message); + const state = { + type: LoggerLevel.INFO, + message, + className: this.className, + pid, + date: dateTime + } as any; + + if (object) state.meta = object; + currentLogger(msg, state); + } + } + + /** + * Log a message at the error level + * + * @param message - The message to log + * @param object - Additional meta data to log + */ + error(message: string, object?: unknown): void { + if ( + this.isError() && + ((Object.keys(filteredClasses).length > 0 && filteredClasses[this.className]) || + (Object.keys(filteredClasses).length === 0 && classFilters[this.className])) + ) { + const dateTime = new Date().getTime(); + const msg = format('[%s-%s:%s] %s %s', 'ERROR', this.className, pid, dateTime, message); + const state = { + type: LoggerLevel.ERROR, + message, + className: this.className, + pid, + date: dateTime + } as any; + + if (object) state.meta = object; + currentLogger(msg, state); + } + } + + /** Is the logger set at info level */ + isInfo(): boolean { + return level === LoggerLevel.INFO || level === LoggerLevel.DEBUG; + } + + /** Is the logger set at error level */ + isError(): boolean { + return level === LoggerLevel.ERROR || level === LoggerLevel.INFO || level === LoggerLevel.DEBUG; + } + + /** Is the logger set at error level */ + isWarn(): boolean { + return ( + level === LoggerLevel.ERROR || + level === LoggerLevel.WARN || + level === LoggerLevel.INFO || + level === LoggerLevel.DEBUG + ); + } + + /** Is the logger set at debug level */ + isDebug(): boolean { + return level === LoggerLevel.DEBUG; + } + + /** Resets the logger to default settings, error and no filtered classes */ + static reset(): void { + level = LoggerLevel.ERROR; + filteredClasses = {}; + } + + /** Get the current logger function */ + static currentLogger(): LoggerFunction { + return currentLogger; + } + + /** + * Set the current logger function + * + * @param logger - Custom logging function + */ + static setCurrentLogger(logger: LoggerFunction): void { + if (typeof logger !== 'function') { + throw new MongoInvalidArgumentError('Current logger must be a function'); + } + + currentLogger = logger; + } + + /** + * Filter log messages for a particular class + * + * @param type - The type of filter (currently only class) + * @param values - The filters to apply + */ + static filter(type: string, values: string[]): void { + if (type === 'class' && Array.isArray(values)) { + filteredClasses = {}; + values.forEach(x => (filteredClasses[x] = true)); + } + } + + /** + * Set the current log level + * + * @param newLevel - Set current log level (debug, warn, info, error) + */ + static setLevel(newLevel: LoggerLevel): void { + if ( + newLevel !== LoggerLevel.INFO && + newLevel !== LoggerLevel.ERROR && + newLevel !== LoggerLevel.DEBUG && + newLevel !== LoggerLevel.WARN + ) { + throw new MongoInvalidArgumentError( + `Argument "newLevel" should be one of ${enumToString(LoggerLevel)}` + ); + } + + level = newLevel; + } +} diff --git a/node_modules/mongodb/src/mongo_client.ts b/node_modules/mongodb/src/mongo_client.ts new file mode 100644 index 000000000..321b8a63f --- /dev/null +++ b/node_modules/mongodb/src/mongo_client.ts @@ -0,0 +1,788 @@ +import type { TcpNetConnectOpts } from 'net'; +import type { ConnectionOptions as TLSConnectionOptions, TLSSocketOptions } from 'tls'; + +import { BSONSerializeOptions, Document, resolveBSONOptions } from './bson'; +import { ChangeStream, ChangeStreamDocument, ChangeStreamOptions } from './change_stream'; +import type { AuthMechanismProperties, MongoCredentials } from './cmap/auth/mongo_credentials'; +import type { AuthMechanism } from './cmap/auth/providers'; +import type { LEGAL_TCP_SOCKET_OPTIONS, LEGAL_TLS_SOCKET_OPTIONS } from './cmap/connect'; +import type { Connection } from './cmap/connection'; +import type { CompressorName } from './cmap/wire_protocol/compression'; +import { parseOptions } from './connection_string'; +import type { MONGO_CLIENT_EVENTS } from './constants'; +import { Db, DbOptions } from './db'; +import type { AutoEncrypter, AutoEncryptionOptions } from './deps'; +import type { Encrypter } from './encrypter'; +import { MongoInvalidArgumentError } from './error'; +import type { Logger, LoggerLevel } from './logger'; +import { TypedEventEmitter } from './mongo_types'; +import { connect } from './operations/connect'; +import { PromiseProvider } from './promise_provider'; +import type { ReadConcern, ReadConcernLevel, ReadConcernLike } from './read_concern'; +import { ReadPreference, ReadPreferenceMode } from './read_preference'; +import type { TagSet } from './sdam/server_description'; +import { readPreferenceServerSelector } from './sdam/server_selection'; +import type { SrvPoller } from './sdam/srv_polling'; +import type { Topology, TopologyEvents } from './sdam/topology'; +import { ClientSession, ClientSessionOptions, ServerSessionPool } from './sessions'; +import { + Callback, + ClientMetadata, + HostAddress, + maybePromise, + MongoDBNamespace, + ns, + resolveOptions +} from './utils'; +import type { W, WriteConcern, WriteConcernSettings } from './write_concern'; + +/** @public */ +export const ServerApiVersion = Object.freeze({ + v1: '1' +} as const); + +/** @public */ +export type ServerApiVersion = typeof ServerApiVersion[keyof typeof ServerApiVersion]; + +/** @public */ +export interface ServerApi { + version: ServerApiVersion; + strict?: boolean; + deprecationErrors?: boolean; +} + +/** @public */ +export interface DriverInfo { + name?: string; + version?: string; + platform?: string; +} + +/** @public */ +export interface Auth { + /** The username for auth */ + username?: string; + /** The password for auth */ + password?: string; +} + +/** @public */ +export interface PkFactory { + createPk(): any; // TODO: when js-bson is typed, function should return some BSON type +} + +/** @public */ +export type SupportedTLSConnectionOptions = Pick< + TLSConnectionOptions, + Extract +>; + +/** @public */ +export type SupportedTLSSocketOptions = Pick< + TLSSocketOptions, + Extract +>; + +/** @public */ +export type SupportedSocketOptions = Pick< + TcpNetConnectOpts, + typeof LEGAL_TCP_SOCKET_OPTIONS[number] +>; + +/** @public */ +export type SupportedNodeConnectionOptions = SupportedTLSConnectionOptions & + SupportedTLSSocketOptions & + SupportedSocketOptions; + +/** + * Describes all possible URI query options for the mongo client + * @public + * @see https://docs.mongodb.com/manual/reference/connection-string + */ +export interface MongoClientOptions extends BSONSerializeOptions, SupportedNodeConnectionOptions { + /** Specifies the name of the replica set, if the mongod is a member of a replica set. */ + replicaSet?: string; + /** Enables or disables TLS/SSL for the connection. */ + tls?: boolean; + /** A boolean to enable or disables TLS/SSL for the connection. (The ssl option is equivalent to the tls option.) */ + ssl?: boolean; + /** Specifies the location of a local TLS Certificate */ + tlsCertificateFile?: string; + /** Specifies the location of a local .pem file that contains either the client's TLS/SSL certificate and key or only the client's TLS/SSL key when tlsCertificateFile is used to provide the certificate. */ + tlsCertificateKeyFile?: string; + /** Specifies the password to de-crypt the tlsCertificateKeyFile. */ + tlsCertificateKeyFilePassword?: string; + /** Specifies the location of a local .pem file that contains the root certificate chain from the Certificate Authority. This file is used to validate the certificate presented by the mongod/mongos instance. */ + tlsCAFile?: string; + /** Bypasses validation of the certificates presented by the mongod/mongos instance */ + tlsAllowInvalidCertificates?: boolean; + /** Disables hostname validation of the certificate presented by the mongod/mongos instance. */ + tlsAllowInvalidHostnames?: boolean; + /** Disables various certificate validations. */ + tlsInsecure?: boolean; + /** The time in milliseconds to attempt a connection before timing out. */ + connectTimeoutMS?: number; + /** The time in milliseconds to attempt a send or receive on a socket before the attempt times out. */ + socketTimeoutMS?: number; + /** An array or comma-delimited string of compressors to enable network compression for communication between this client and a mongod/mongos instance. */ + compressors?: CompressorName[] | string; + /** An integer that specifies the compression level if using zlib for network compression. */ + zlibCompressionLevel?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | undefined; + /** The maximum number of hosts to connect to when using an srv connection string, a setting of `0` means unlimited hosts */ + srvMaxHosts?: number; + /** + * Modifies the srv URI to look like: + * + * `_{srvServiceName}._tcp.{hostname}.{domainname}` + * + * Querying this DNS URI is expected to respond with SRV records + */ + srvServiceName?: string; + /** The maximum number of connections in the connection pool. */ + maxPoolSize?: number; + /** The minimum number of connections in the connection pool. */ + minPoolSize?: number; + /** The maximum number of connections that may be in the process of being established concurrently by the connection pool. */ + maxConnecting?: number; + /** The maximum number of milliseconds that a connection can remain idle in the pool before being removed and closed. */ + maxIdleTimeMS?: number; + /** The maximum time in milliseconds that a thread can wait for a connection to become available. */ + waitQueueTimeoutMS?: number; + /** Specify a read concern for the collection (only MongoDB 3.2 or higher supported) */ + readConcern?: ReadConcernLike; + /** The level of isolation */ + readConcernLevel?: ReadConcernLevel; + /** Specifies the read preferences for this connection */ + readPreference?: ReadPreferenceMode | ReadPreference; + /** Specifies, in seconds, how stale a secondary can be before the client stops using it for read operations. */ + maxStalenessSeconds?: number; + /** Specifies the tags document as a comma-separated list of colon-separated key-value pairs. */ + readPreferenceTags?: TagSet[]; + /** The auth settings for when connection to server. */ + auth?: Auth; + /** Specify the database name associated with the user’s credentials. */ + authSource?: string; + /** Specify the authentication mechanism that MongoDB will use to authenticate the connection. */ + authMechanism?: AuthMechanism; + /** Specify properties for the specified authMechanism as a comma-separated list of colon-separated key-value pairs. */ + authMechanismProperties?: AuthMechanismProperties; + /** The size (in milliseconds) of the latency window for selecting among multiple suitable MongoDB instances. */ + localThresholdMS?: number; + /** Specifies how long (in milliseconds) to block for server selection before throwing an exception. */ + serverSelectionTimeoutMS?: number; + /** heartbeatFrequencyMS controls when the driver checks the state of the MongoDB deployment. Specify the interval (in milliseconds) between checks, counted from the end of the previous check until the beginning of the next one. */ + heartbeatFrequencyMS?: number; + /** Sets the minimum heartbeat frequency. In the event that the driver has to frequently re-check a server's availability, it will wait at least this long since the previous check to avoid wasted effort. */ + minHeartbeatFrequencyMS?: number; + /** The name of the application that created this MongoClient instance. MongoDB 3.4 and newer will print this value in the server log upon establishing each connection. It is also recorded in the slow query log and profile collections */ + appName?: string; + /** Enables retryable reads. */ + retryReads?: boolean; + /** Enable retryable writes. */ + retryWrites?: boolean; + /** Allow a driver to force a Single topology type with a connection string containing one host */ + directConnection?: boolean; + /** Instruct the driver it is connecting to a load balancer fronting a mongos like service */ + loadBalanced?: boolean; + /** + * The write concern w value + * @deprecated Please use the `writeConcern` option instead + */ + w?: W; + /** + * The write concern timeout + * @deprecated Please use the `writeConcern` option instead + */ + wtimeoutMS?: number; + /** + * The journal write concern + * @deprecated Please use the `writeConcern` option instead + */ + journal?: boolean; + /** + * A MongoDB WriteConcern, which describes the level of acknowledgement + * requested from MongoDB for write operations. + * + * @see https://docs.mongodb.com/manual/reference/write-concern/ + */ + writeConcern?: WriteConcern | WriteConcernSettings; + /** Validate mongod server certificate against Certificate Authority */ + sslValidate?: boolean; + /** SSL Certificate file path. */ + sslCA?: string; + /** SSL Certificate file path. */ + sslCert?: string; + /** SSL Key file file path. */ + sslKey?: string; + /** SSL Certificate pass phrase. */ + sslPass?: string; + /** SSL Certificate revocation list file path. */ + sslCRL?: string; + /** TCP Connection no delay */ + noDelay?: boolean; + /** TCP Connection keep alive enabled */ + keepAlive?: boolean; + /** The number of milliseconds to wait before initiating keepAlive on the TCP socket */ + keepAliveInitialDelay?: number; + /** Force server to assign `_id` values instead of driver */ + forceServerObjectId?: boolean; + /** Return document results as raw BSON buffers */ + raw?: boolean; + /** A primary key factory function for generation of custom `_id` keys */ + pkFactory?: PkFactory; + /** + * A Promise library class the application wishes to use such as Bluebird, must be ES6 compatible + * @deprecated Setting a custom promise library is deprecated the next major version will use the global Promise constructor only. + */ + promiseLibrary?: any; + /** The logging level */ + loggerLevel?: LoggerLevel; + /** Custom logger object */ + logger?: Logger; + /** Enable command monitoring for this client */ + monitorCommands?: boolean; + /** Server API version */ + serverApi?: ServerApi | ServerApiVersion; + /** + * Optionally enable client side auto encryption + * + * @remarks + * Automatic encryption is an enterprise only feature that only applies to operations on a collection. Automatic encryption is not supported for operations on a database or view, and operations that are not bypassed will result in error + * (see [libmongocrypt: Auto Encryption Allow-List](https://github.com/mongodb/specifications/blob/master/source/client-side-encryption/client-side-encryption.rst#libmongocrypt-auto-encryption-allow-list)). To bypass automatic encryption for all operations, set bypassAutoEncryption=true in AutoEncryptionOpts. + * + * Automatic encryption requires the authenticated user to have the [listCollections privilege action](https://docs.mongodb.com/manual/reference/command/listCollections/#dbcmd.listCollections). + * + * If a MongoClient with a limited connection pool size (i.e a non-zero maxPoolSize) is configured with AutoEncryptionOptions, a separate internal MongoClient is created if any of the following are true: + * - AutoEncryptionOptions.keyVaultClient is not passed. + * - AutoEncryptionOptions.bypassAutomaticEncryption is false. + * + * If an internal MongoClient is created, it is configured with the same options as the parent MongoClient except minPoolSize is set to 0 and AutoEncryptionOptions is omitted. + */ + autoEncryption?: AutoEncryptionOptions; + /** Allows a wrapping driver to amend the client metadata generated by the driver to include information about the wrapping driver */ + driverInfo?: DriverInfo; + /** Configures a Socks5 proxy host used for creating TCP connections. */ + proxyHost?: string; + /** Configures a Socks5 proxy port used for creating TCP connections. */ + proxyPort?: number; + /** Configures a Socks5 proxy username when the proxy in proxyHost requires username/password authentication. */ + proxyUsername?: string; + /** Configures a Socks5 proxy password when the proxy in proxyHost requires username/password authentication. */ + proxyPassword?: string; + + /** @internal */ + srvPoller?: SrvPoller; + /** @internal */ + connectionType?: typeof Connection; + + /** @internal */ + [featureFlag: symbol]: any; +} + +/** @public */ +export type WithSessionCallback = (session: ClientSession) => Promise; + +/** @internal */ +export interface MongoClientPrivate { + url: string; + bsonOptions: BSONSerializeOptions; + namespace: MongoDBNamespace; + hasBeenClosed: boolean; + /** + * We keep a reference to the sessions that are acquired from the pool. + * - used to track and close all sessions in client.close() (which is non-standard behavior) + * - used to notify the leak checker in our tests if test author forgot to clean up explicit sessions + */ + readonly activeSessions: Set; + readonly sessionPool: ServerSessionPool; + readonly options: MongoOptions; + readonly readConcern?: ReadConcern; + readonly writeConcern?: WriteConcern; + readonly readPreference: ReadPreference; + readonly logger: Logger; + readonly isMongoClient: true; +} + +/** @public */ +export type MongoClientEvents = Pick & { + // In previous versions the open event emitted a topology, in an effort to no longer + // expose internals but continue to expose this useful event API, it now emits a mongoClient + open(mongoClient: MongoClient): void; +}; + +/** @internal */ +const kOptions = Symbol('options'); + +/** + * The **MongoClient** class is a class that allows for making Connections to MongoDB. + * @public + * + * @remarks + * The programmatically provided options take precedence over the URI options. + * + * @example + * ```ts + * import { MongoClient } from 'mongodb'; + * + * // Enable command monitoring for debugging + * const client = new MongoClient('mongodb://localhost:27017', { monitorCommands: true }); + * + * client.on('commandStarted', started => console.log(started)); + * client.db().collection('pets'); + * await client.insertOne({ name: 'spot', kind: 'dog' }); + * ``` + */ +export class MongoClient extends TypedEventEmitter { + /** @internal */ + s: MongoClientPrivate; + /** @internal */ + topology?: Topology; + + /** + * The consolidate, parsed, transformed and merged options. + * @internal + */ + [kOptions]: MongoOptions; + + constructor(url: string, options?: MongoClientOptions) { + super(); + + this[kOptions] = parseOptions(url, this, options); + + // eslint-disable-next-line @typescript-eslint/no-this-alias + const client = this; + + // The internal state + this.s = { + url, + bsonOptions: resolveBSONOptions(this[kOptions]), + namespace: ns('admin'), + hasBeenClosed: false, + sessionPool: new ServerSessionPool(this), + activeSessions: new Set(), + + get options() { + return client[kOptions]; + }, + get readConcern() { + return client[kOptions].readConcern; + }, + get writeConcern() { + return client[kOptions].writeConcern; + }, + get readPreference() { + return client[kOptions].readPreference; + }, + get logger() { + return client[kOptions].logger; + }, + get isMongoClient(): true { + return true; + } + }; + } + + get options(): Readonly { + return Object.freeze({ ...this[kOptions] }); + } + + get serverApi(): Readonly { + return this[kOptions].serverApi && Object.freeze({ ...this[kOptions].serverApi }); + } + /** + * Intended for APM use only + * @internal + */ + get monitorCommands(): boolean { + return this[kOptions].monitorCommands; + } + set monitorCommands(value: boolean) { + this[kOptions].monitorCommands = value; + } + + get autoEncrypter(): AutoEncrypter | undefined { + return this[kOptions].autoEncrypter; + } + + get readConcern(): ReadConcern | undefined { + return this.s.readConcern; + } + + get writeConcern(): WriteConcern | undefined { + return this.s.writeConcern; + } + + get readPreference(): ReadPreference { + return this.s.readPreference; + } + + get bsonOptions(): BSONSerializeOptions { + return this.s.bsonOptions; + } + + get logger(): Logger { + return this.s.logger; + } + + /** + * Connect to MongoDB using a url + * + * @see docs.mongodb.org/manual/reference/connection-string/ + */ + connect(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + connect(callback: Callback): void; + connect(callback?: Callback): Promise | void { + if (callback && typeof callback !== 'function') { + throw new MongoInvalidArgumentError('Method `connect` only accepts a callback'); + } + + return maybePromise(callback, cb => { + connect(this, this[kOptions], err => { + if (err) return cb(err); + cb(undefined, this); + }); + }); + } + + /** + * Close the db and its underlying connections + * + * @param force - Force close, emitting no events + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + close(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + close(callback: Callback): void; + close(force: boolean): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + close(force: boolean, callback: Callback): void; + close( + forceOrCallback?: boolean | Callback, + callback?: Callback + ): Promise | void { + // There's no way to set hasBeenClosed back to false + Object.defineProperty(this.s, 'hasBeenClosed', { + value: true, + enumerable: true, + configurable: false, + writable: false + }); + + if (typeof forceOrCallback === 'function') { + callback = forceOrCallback; + } + + const force = typeof forceOrCallback === 'boolean' ? forceOrCallback : false; + + return maybePromise(callback, callback => { + if (this.topology == null) { + // Do not connect just to end sessions + return callback(); + } + + const activeSessionEnds = Array.from(this.s.activeSessions, session => session.endSession()); + this.s.activeSessions.clear(); + + Promise.all(activeSessionEnds) + .then(() => { + if (this.topology == null) { + return; + } + // If we would attempt to select a server and get nothing back we short circuit + // to avoid the server selection timeout. + const selector = readPreferenceServerSelector(ReadPreference.primaryPreferred); + const topologyDescription = this.topology.description; + const serverDescriptions = Array.from(topologyDescription.servers.values()); + const servers = selector(topologyDescription, serverDescriptions); + if (servers.length === 0) { + return; + } + + const endSessions = Array.from(this.s.sessionPool.sessions, ({ id }) => id); + if (endSessions.length === 0) return; + return this.db('admin') + .command( + { endSessions }, + { readPreference: ReadPreference.primaryPreferred, noResponse: true } + ) + .catch(() => null); // outcome does not matter + }) + .then(() => { + if (this.topology == null) { + return; + } + // clear out references to old topology + const topology = this.topology; + this.topology = undefined; + + return new Promise((resolve, reject) => { + topology.close({ force }, error => { + if (error) return reject(error); + const { encrypter } = this[kOptions]; + if (encrypter) { + return encrypter.close(this, force, error => { + if (error) return reject(error); + resolve(); + }); + } + resolve(); + }); + }); + }) + .then( + () => callback(), + error => callback(error) + ); + }); + } + + /** + * Create a new Db instance sharing the current socket connections. + * + * @param dbName - The name of the database we want to use. If not provided, use database name from connection string. + * @param options - Optional settings for Db construction + */ + db(dbName?: string, options?: DbOptions): Db { + options = options ?? {}; + + // Default to db from connection string if not provided + if (!dbName) { + dbName = this.options.dbName; + } + + // Copy the options and add out internal override of the not shared flag + const finalOptions = Object.assign({}, this[kOptions], options); + + // Return the db object + const db = new Db(this, dbName, finalOptions); + + // Return the database + return db; + } + + /** + * Connect to MongoDB using a url + * + * @remarks + * The programmatically provided options take precedence over the URI options. + * + * @see https://docs.mongodb.org/manual/reference/connection-string/ + */ + static connect(url: string): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + static connect(url: string, callback: Callback): void; + static connect(url: string, options: MongoClientOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + static connect(url: string, options: MongoClientOptions, callback: Callback): void; + static connect( + url: string, + options?: MongoClientOptions | Callback, + callback?: Callback + ): Promise | void { + if (typeof options === 'function') (callback = options), (options = {}); + options = options ?? {}; + + try { + // Create client + const mongoClient = new MongoClient(url, options); + // Execute the connect method + if (callback) { + return mongoClient.connect(callback); + } else { + return mongoClient.connect(); + } + } catch (error) { + if (callback) { + return callback(error); + } else { + const PromiseConstructor = PromiseProvider.get() ?? Promise; + return PromiseConstructor.reject(error); + } + } + } + + /** Starts a new session on the server */ + startSession(): ClientSession; + startSession(options: ClientSessionOptions): ClientSession; + startSession(options?: ClientSessionOptions): ClientSession { + const session = new ClientSession( + this, + this.s.sessionPool, + { explicit: true, ...options }, + this[kOptions] + ); + this.s.activeSessions.add(session); + session.once('ended', () => { + this.s.activeSessions.delete(session); + }); + return session; + } + + /** + * Runs a given operation with an implicitly created session. The lifetime of the session + * will be handled without the need for user interaction. + * + * NOTE: presently the operation MUST return a Promise (either explicit or implicitly as an async function) + * + * @param options - Optional settings for the command + * @param callback - An callback to execute with an implicitly created session + */ + withSession(callback: WithSessionCallback): Promise; + withSession(options: ClientSessionOptions, callback: WithSessionCallback): Promise; + withSession( + optionsOrOperation?: ClientSessionOptions | WithSessionCallback, + callback?: WithSessionCallback + ): Promise { + const options = { + // Always define an owner + owner: Symbol(), + // If it's an object inherit the options + ...(typeof optionsOrOperation === 'object' ? optionsOrOperation : {}) + }; + + const withSessionCallback = + typeof optionsOrOperation === 'function' ? optionsOrOperation : callback; + + if (withSessionCallback == null) { + throw new MongoInvalidArgumentError('Missing required callback parameter'); + } + + const session = this.startSession(options); + const PromiseConstructor = PromiseProvider.get() ?? Promise; + + return PromiseConstructor.resolve() + .then(() => withSessionCallback(session)) + .then(() => { + // Do not return the result of callback + }) + .finally(() => { + session.endSession().catch(() => null); + }); + } + + /** + * Create a new Change Stream, watching for new changes (insertions, updates, + * replacements, deletions, and invalidations) in this cluster. Will ignore all + * changes to system collections, as well as the local, admin, and config databases. + * + * @remarks + * watch() accepts two generic arguments for distinct usecases: + * - The first is to provide the schema that may be defined for all the data within the current cluster + * - The second is to override the shape of the change stream document entirely, if it is not provided the type will default to ChangeStreamDocument of the first argument + * + * @param pipeline - An array of {@link https://docs.mongodb.com/manual/reference/operator/aggregation-pipeline/|aggregation pipeline stages} through which to pass change stream documents. This allows for filtering (using $match) and manipulating the change stream documents. + * @param options - Optional settings for the command + * @typeParam TSchema - Type of the data being detected by the change stream + * @typeParam TChange - Type of the whole change stream document emitted + */ + watch< + TSchema extends Document = Document, + TChange extends Document = ChangeStreamDocument + >(pipeline: Document[] = [], options: ChangeStreamOptions = {}): ChangeStream { + // Allow optionally not specifying a pipeline + if (!Array.isArray(pipeline)) { + options = pipeline; + pipeline = []; + } + + return new ChangeStream(this, pipeline, resolveOptions(this, options)); + } + + /** Return the mongo client logger */ + getLogger(): Logger { + return this.s.logger; + } +} + +/** + * Mongo Client Options + * @public + */ +export interface MongoOptions + extends Required< + Pick< + MongoClientOptions, + | 'autoEncryption' + | 'connectTimeoutMS' + | 'directConnection' + | 'driverInfo' + | 'forceServerObjectId' + | 'minHeartbeatFrequencyMS' + | 'heartbeatFrequencyMS' + | 'keepAlive' + | 'keepAliveInitialDelay' + | 'localThresholdMS' + | 'logger' + | 'maxConnecting' + | 'maxIdleTimeMS' + | 'maxPoolSize' + | 'minPoolSize' + | 'monitorCommands' + | 'noDelay' + | 'pkFactory' + | 'promiseLibrary' + | 'raw' + | 'replicaSet' + | 'retryReads' + | 'retryWrites' + | 'serverSelectionTimeoutMS' + | 'socketTimeoutMS' + | 'srvMaxHosts' + | 'srvServiceName' + | 'tlsAllowInvalidCertificates' + | 'tlsAllowInvalidHostnames' + | 'tlsInsecure' + | 'waitQueueTimeoutMS' + | 'zlibCompressionLevel' + > + >, + SupportedNodeConnectionOptions { + hosts: HostAddress[]; + srvHost?: string; + credentials?: MongoCredentials; + readPreference: ReadPreference; + readConcern: ReadConcern; + loadBalanced: boolean; + serverApi: ServerApi; + compressors: CompressorName[]; + writeConcern: WriteConcern; + dbName: string; + metadata: ClientMetadata; + autoEncrypter?: AutoEncrypter; + proxyHost?: string; + proxyPort?: number; + proxyUsername?: string; + proxyPassword?: string; + /** @internal */ + connectionType?: typeof Connection; + + /** @internal */ + encrypter: Encrypter; + /** @internal */ + userSpecifiedAuthSource: boolean; + /** @internal */ + userSpecifiedReplicaSet: boolean; + + /** + * # NOTE ABOUT TLS Options + * + * If set TLS enabled, equivalent to setting the ssl option. + * + * ### Additional options: + * + * | nodejs option | MongoDB equivalent | type | + * |:---------------------|--------------------------------------------------------- |:---------------------------------------| + * | `ca` | `sslCA`, `tlsCAFile` | `string \| Buffer \| Buffer[]` | + * | `crl` | `sslCRL` | `string \| Buffer \| Buffer[]` | + * | `cert` | `sslCert`, `tlsCertificateFile`, `tlsCertificateKeyFile` | `string \| Buffer \| Buffer[]` | + * | `key` | `sslKey`, `tlsCertificateKeyFile` | `string \| Buffer \| KeyObject[]` | + * | `passphrase` | `sslPass`, `tlsCertificateKeyFilePassword` | `string` | + * | `rejectUnauthorized` | `sslValidate` | `boolean` | + * + */ + tls: boolean; + + /** @internal */ + [featureFlag: symbol]: any; +} diff --git a/node_modules/mongodb/src/mongo_types.ts b/node_modules/mongodb/src/mongo_types.ts new file mode 100644 index 000000000..124e9ce9e --- /dev/null +++ b/node_modules/mongodb/src/mongo_types.ts @@ -0,0 +1,548 @@ +import type { ObjectIdLike } from 'bson'; +import { EventEmitter } from 'events'; + +import type { + Binary, + BSONRegExp, + Decimal128, + Document, + Double, + Int32, + Long, + ObjectId, + Timestamp +} from './bson'; +import type { Sort } from './sort'; + +/** @internal */ +export type TODO_NODE_3286 = any; + +/** Given an object shaped type, return the type of the _id field or default to ObjectId @public */ +export type InferIdType = TSchema extends { _id: infer IdType } + ? // user has defined a type for _id + Record extends IdType + ? never // explicitly forbid empty objects as the type of _id + : IdType + : TSchema extends { _id?: infer IdType } + ? // optional _id defined - return ObjectId | IdType + unknown extends IdType + ? ObjectId // infer the _id type as ObjectId if the type of _id is unknown + : IdType + : ObjectId; // user has not defined _id on schema + +/** Add an _id field to an object shaped type @public */ +export type WithId = EnhancedOmit & { _id: InferIdType }; + +/** + * Add an optional _id field to an object shaped type + * @public + */ +export type OptionalId = EnhancedOmit & { _id?: InferIdType }; + +/** + * Adds an optional _id field to an object shaped type, unless the _id field is requried on that type. + * In the case _id is required, this method continues to require_id. + * + * @public + * + * @privateRemarks + * `ObjectId extends TSchema['_id']` is a confusing ordering at first glance. Rather than ask + * `TSchema['_id'] extends ObjectId` which translated to "Is the _id property ObjectId?" + * we instead ask "Does ObjectId look like (have the same shape) as the _id?" + */ +export type OptionalUnlessRequiredId = TSchema extends { _id: any } + ? TSchema + : OptionalId; + +/** TypeScript Omit (Exclude to be specific) does not work for objects with an "any" indexed type, and breaks discriminated unions @public */ +export type EnhancedOmit = string extends keyof TRecordOrUnion + ? TRecordOrUnion // TRecordOrUnion has indexed type e.g. { _id: string; [k: string]: any; } or it is "any" + : TRecordOrUnion extends any + ? Pick> // discriminated unions + : never; + +/** Remove the _id field from an object shaped type @public */ +export type WithoutId = Omit; + +/** A MongoDB filter can be some portion of the schema or a set of operators @public */ +export type Filter = + | Partial + | ({ + [Property in Join>, '.'>]?: Condition< + PropertyType, Property> + >; + } & RootFilterOperators>); + +/** @public */ +export type Condition = AlternativeType | FilterOperators>; + +/** + * It is possible to search using alternative types in mongodb e.g. + * string types can be searched using a regex in mongo + * array types can be searched using their element type + * @public + */ +export type AlternativeType = T extends ReadonlyArray + ? T | RegExpOrString + : RegExpOrString; + +/** @public */ +export type RegExpOrString = T extends string ? BSONRegExp | RegExp | T : T; + +/** @public */ +export interface RootFilterOperators extends Document { + $and?: Filter[]; + $nor?: Filter[]; + $or?: Filter[]; + $text?: { + $search: string; + $language?: string; + $caseSensitive?: boolean; + $diacriticSensitive?: boolean; + }; + $where?: string | ((this: TSchema) => boolean); + $comment?: string | Document; +} + +/** + * @public + * A type that extends Document but forbids anything that "looks like" an object id. + */ +export type NonObjectIdLikeDocument = { + [key in keyof ObjectIdLike]?: never; +} & Document; + +/** @public */ +export interface FilterOperators extends NonObjectIdLikeDocument { + // Comparison + $eq?: TValue; + $gt?: TValue; + $gte?: TValue; + $in?: ReadonlyArray; + $lt?: TValue; + $lte?: TValue; + $ne?: TValue; + $nin?: ReadonlyArray; + // Logical + $not?: TValue extends string ? FilterOperators | RegExp : FilterOperators; + // Element + /** + * When `true`, `$exists` matches the documents that contain the field, + * including documents where the field value is null. + */ + $exists?: boolean; + $type?: BSONType | BSONTypeAlias; + // Evaluation + $expr?: Record; + $jsonSchema?: Record; + $mod?: TValue extends number ? [number, number] : never; + $regex?: TValue extends string ? RegExp | BSONRegExp | string : never; + $options?: TValue extends string ? string : never; + // Geospatial + $geoIntersects?: { $geometry: Document }; + $geoWithin?: Document; + $near?: Document; + $nearSphere?: Document; + $maxDistance?: number; + // Array + $all?: ReadonlyArray; + $elemMatch?: Document; + $size?: TValue extends ReadonlyArray ? number : never; + // Bitwise + $bitsAllClear?: BitwiseFilter; + $bitsAllSet?: BitwiseFilter; + $bitsAnyClear?: BitwiseFilter; + $bitsAnySet?: BitwiseFilter; + $rand?: Record; +} + +/** @public */ +export type BitwiseFilter = + | number /** numeric bit mask */ + | Binary /** BinData bit mask */ + | ReadonlyArray; /** `[ , , ... ]` */ + +/** @public */ +export const BSONType = Object.freeze({ + double: 1, + string: 2, + object: 3, + array: 4, + binData: 5, + undefined: 6, + objectId: 7, + bool: 8, + date: 9, + null: 10, + regex: 11, + dbPointer: 12, + javascript: 13, + symbol: 14, + javascriptWithScope: 15, + int: 16, + timestamp: 17, + long: 18, + decimal: 19, + minKey: -1, + maxKey: 127 +} as const); + +/** @public */ +export type BSONType = typeof BSONType[keyof typeof BSONType]; +/** @public */ +export type BSONTypeAlias = keyof typeof BSONType; + +/** + * @public + * Projection is flexible to permit the wide array of aggregation operators + * @deprecated since v4.1.0: Since projections support all aggregation operations we have no plans to narrow this type further + */ +// eslint-disable-next-line @typescript-eslint/no-unused-vars +export type Projection = Document; + +/** + * @public + * @deprecated since v4.1.0: Since projections support all aggregation operations we have no plans to narrow this type further + */ +export type ProjectionOperators = Document; + +/** @public */ +export type IsAny = true extends false & Type + ? ResultIfAny + : ResultIfNotAny; + +/** @public */ +export type Flatten = Type extends ReadonlyArray ? Item : Type; + +/** @public */ +export type ArrayElement = Type extends ReadonlyArray ? Item : never; + +/** @public */ +export type SchemaMember = { [P in keyof T]?: V } | { [key: string]: V }; + +/** @public */ +export type IntegerType = number | Int32 | Long; + +/** @public */ +export type NumericType = IntegerType | Decimal128 | Double; + +/** @public */ +export type FilterOperations = T extends Record + ? { [key in keyof T]?: FilterOperators } + : FilterOperators; + +/** @public */ +export type KeysOfAType = { + [key in keyof TSchema]: NonNullable extends Type ? key : never; +}[keyof TSchema]; + +/** @public */ +export type KeysOfOtherType = { + [key in keyof TSchema]: NonNullable extends Type ? never : key; +}[keyof TSchema]; + +/** @public */ +export type AcceptedFields = { + readonly [key in KeysOfAType]?: AssignableType; +}; + +/** It avoids using fields with not acceptable types @public */ +export type NotAcceptedFields = { + readonly [key in KeysOfOtherType]?: never; +}; + +/** @public */ +export type OnlyFieldsOfType = IsAny< + TSchema[keyof TSchema], + Record, + AcceptedFields & + NotAcceptedFields & + Record +>; + +/** @public */ +export type MatchKeysAndValues = Readonly< + { + [Property in Join, '.'>]?: PropertyType; + } & { + [Property in `${NestedPathsOfType}.$${`[${string}]` | ''}`]?: ArrayElement< + PropertyType + >; + } & { + [Property in `${NestedPathsOfType[]>}.$${ + | `[${string}]` + | ''}.${string}`]?: any; // Could be further narrowed + } +>; + +/** @public */ +export type AddToSetOperators = { + $each?: Array>; +}; + +/** @public */ +export type ArrayOperator = { + $each?: Array>; + $slice?: number; + $position?: number; + $sort?: Sort; +}; + +/** @public */ +export type SetFields = ({ + readonly [key in KeysOfAType | undefined>]?: + | OptionalId> + | AddToSetOperators>>>; +} & NotAcceptedFields | undefined>) & { + readonly [key: string]: AddToSetOperators | any; +}; + +/** @public */ +export type PushOperator = ({ + readonly [key in KeysOfAType>]?: + | Flatten + | ArrayOperator>>; +} & NotAcceptedFields>) & { + readonly [key: string]: ArrayOperator | any; +}; + +/** @public */ +export type PullOperator = ({ + readonly [key in KeysOfAType>]?: + | Partial> + | FilterOperations>; +} & NotAcceptedFields>) & { + readonly [key: string]: FilterOperators | any; +}; + +/** @public */ +export type PullAllOperator = ({ + readonly [key in KeysOfAType>]?: TSchema[key]; +} & NotAcceptedFields>) & { + readonly [key: string]: ReadonlyArray; +}; + +/** @public */ +export type UpdateFilter = { + $currentDate?: OnlyFieldsOfType< + TSchema, + Date | Timestamp, + true | { $type: 'date' | 'timestamp' } + >; + $inc?: OnlyFieldsOfType; + $min?: MatchKeysAndValues; + $max?: MatchKeysAndValues; + $mul?: OnlyFieldsOfType; + $rename?: Record; + $set?: MatchKeysAndValues; + $setOnInsert?: MatchKeysAndValues; + $unset?: OnlyFieldsOfType; + $addToSet?: SetFields; + $pop?: OnlyFieldsOfType, 1 | -1>; + $pull?: PullOperator; + $push?: PushOperator; + $pullAll?: PullAllOperator; + $bit?: OnlyFieldsOfType< + TSchema, + NumericType | undefined, + { and: IntegerType } | { or: IntegerType } | { xor: IntegerType } + >; +} & Document; + +/** @public */ +export type Nullable = AnyType | null | undefined; + +/** @public */ +export type OneOrMore = T | ReadonlyArray; + +/** @public */ +export type GenericListener = (...args: any[]) => void; + +/** + * Event description type + * @public + */ +export type EventsDescription = Record; + +/** @public */ +export type CommonEvents = 'newListener' | 'removeListener'; + +/** + * Typescript type safe event emitter + * @public + */ +export declare interface TypedEventEmitter extends EventEmitter { + addListener(event: EventKey, listener: Events[EventKey]): this; + addListener( + event: CommonEvents, + listener: (eventName: string | symbol, listener: GenericListener) => void + ): this; + addListener(event: string | symbol, listener: GenericListener): this; + + on(event: EventKey, listener: Events[EventKey]): this; + on( + event: CommonEvents, + listener: (eventName: string | symbol, listener: GenericListener) => void + ): this; + on(event: string | symbol, listener: GenericListener): this; + + once(event: EventKey, listener: Events[EventKey]): this; + once( + event: CommonEvents, + listener: (eventName: string | symbol, listener: GenericListener) => void + ): this; + once(event: string | symbol, listener: GenericListener): this; + + removeListener(event: EventKey, listener: Events[EventKey]): this; + removeListener( + event: CommonEvents, + listener: (eventName: string | symbol, listener: GenericListener) => void + ): this; + removeListener(event: string | symbol, listener: GenericListener): this; + + off(event: EventKey, listener: Events[EventKey]): this; + off( + event: CommonEvents, + listener: (eventName: string | symbol, listener: GenericListener) => void + ): this; + off(event: string | symbol, listener: GenericListener): this; + + removeAllListeners( + event?: EventKey | CommonEvents | symbol | string + ): this; + + listeners( + event: EventKey | CommonEvents | symbol | string + ): Events[EventKey][]; + + rawListeners( + event: EventKey | CommonEvents | symbol | string + ): Events[EventKey][]; + + emit( + event: EventKey | symbol, + ...args: Parameters + ): boolean; + + listenerCount( + type: EventKey | CommonEvents | symbol | string + ): number; + + prependListener(event: EventKey, listener: Events[EventKey]): this; + prependListener( + event: CommonEvents, + listener: (eventName: string | symbol, listener: GenericListener) => void + ): this; + prependListener(event: string | symbol, listener: GenericListener): this; + + prependOnceListener( + event: EventKey, + listener: Events[EventKey] + ): this; + prependOnceListener( + event: CommonEvents, + listener: (eventName: string | symbol, listener: GenericListener) => void + ): this; + prependOnceListener(event: string | symbol, listener: GenericListener): this; + + eventNames(): string[]; + getMaxListeners(): number; + setMaxListeners(n: number): this; +} + +/** + * Typescript type safe event emitter + * @public + */ +// eslint-disable-next-line @typescript-eslint/no-unused-vars +export class TypedEventEmitter extends EventEmitter {} + +/** @public */ +export class CancellationToken extends TypedEventEmitter<{ cancel(): void }> {} + +/** + * Helper types for dot-notation filter attributes + */ + +/** @public */ +export type Join = T extends [] + ? '' + : T extends [string | number] + ? `${T[0]}` + : T extends [string | number, ...infer R] + ? `${T[0]}${D}${Join}` + : string; + +/** @public */ +export type PropertyType = string extends Property + ? unknown + : Property extends keyof Type + ? Type[Property] + : Property extends `${number}` + ? Type extends ReadonlyArray + ? ArrayType + : unknown + : Property extends `${infer Key}.${infer Rest}` + ? Key extends `${number}` + ? Type extends ReadonlyArray + ? PropertyType + : unknown + : Key extends keyof Type + ? Type[Key] extends Map + ? MapType + : PropertyType + : unknown + : unknown; + +/** + * @public + * returns tuple of strings (keys to be joined on '.') that represent every path into a schema + * https://docs.mongodb.com/manual/tutorial/query-embedded-documents/ + */ +export type NestedPaths = Type extends + | string + | number + | boolean + | Date + | RegExp + | Buffer + | Uint8Array + | ((...args: any[]) => any) + | { _bsontype: string } + ? [] + : Type extends ReadonlyArray + ? [] | [number, ...NestedPaths] + : Type extends Map + ? [string] + : Type extends object + ? { + [Key in Extract]: Type[Key] extends Type // type of value extends the parent + ? [Key] + : // for a recursive union type, the child will never extend the parent type. + // but the parent will still extend the child + Type extends Type[Key] + ? [Key] + : Type[Key] extends ReadonlyArray // handling recursive types with arrays + ? Type extends ArrayType // is the type of the parent the same as the type of the array? + ? [Key] // yes, it's a recursive array type + : // for unions, the child type extends the parent + ArrayType extends Type + ? [Key] // we have a recursive array union + : // child is an array, but it's not a recursive array + [Key, ...NestedPaths] + : // child is not structured the same as the parent + [Key, ...NestedPaths] | [Key]; + }[Extract] + : []; + +/** + * @public + * returns keys (strings) for every path into a schema with a value of type + * https://docs.mongodb.com/manual/tutorial/query-embedded-documents/ + */ +export type NestedPathsOfType = KeysOfAType< + { + [Property in Join, '.'>]: PropertyType; + }, + Type +>; diff --git a/node_modules/mongodb/src/operations/add_user.ts b/node_modules/mongodb/src/operations/add_user.ts new file mode 100644 index 000000000..3d0c08e79 --- /dev/null +++ b/node_modules/mongodb/src/operations/add_user.ts @@ -0,0 +1,118 @@ +import * as crypto from 'crypto'; + +import type { Document } from '../bson'; +import type { Db } from '../db'; +import { MongoInvalidArgumentError } from '../error'; +import type { Server } from '../sdam/server'; +import type { ClientSession } from '../sessions'; +import { Callback, emitWarningOnce, getTopology } from '../utils'; +import { CommandOperation, CommandOperationOptions } from './command'; +import { Aspect, defineAspects } from './operation'; + +/** @public */ +export interface RoleSpecification { + /** + * A role grants privileges to perform sets of actions on defined resources. + * A given role applies to the database on which it is defined and can grant access down to a collection level of granularity. + */ + role: string; + /** The database this user's role should effect. */ + db: string; +} + +/** @public */ +export interface AddUserOptions extends CommandOperationOptions { + /** @deprecated Please use db.command('createUser', ...) instead for this option */ + digestPassword?: null; + /** Roles associated with the created user */ + roles?: string | string[] | RoleSpecification | RoleSpecification[]; + /** Custom data associated with the user (only Mongodb 2.6 or higher) */ + customData?: Document; +} + +/** @internal */ +export class AddUserOperation extends CommandOperation { + override options: AddUserOptions; + db: Db; + username: string; + password?: string; + + constructor(db: Db, username: string, password: string | undefined, options?: AddUserOptions) { + super(db, options); + + this.db = db; + this.username = username; + this.password = password; + this.options = options ?? {}; + } + + override execute( + server: Server, + session: ClientSession | undefined, + callback: Callback + ): void { + const db = this.db; + const username = this.username; + const password = this.password; + const options = this.options; + + // Error out if digestPassword set + if (options.digestPassword != null) { + return callback( + new MongoInvalidArgumentError( + 'Option "digestPassword" not supported via addUser, use db.command(...) instead' + ) + ); + } + + let roles; + if (!options.roles || (Array.isArray(options.roles) && options.roles.length === 0)) { + emitWarningOnce( + 'Creating a user without roles is deprecated. Defaults to "root" if db is "admin" or "dbOwner" otherwise' + ); + if (db.databaseName.toLowerCase() === 'admin') { + roles = ['root']; + } else { + roles = ['dbOwner']; + } + } else { + roles = Array.isArray(options.roles) ? options.roles : [options.roles]; + } + + let topology; + try { + topology = getTopology(db); + } catch (error) { + return callback(error); + } + + const digestPassword = topology.lastHello().maxWireVersion >= 7; + + let userPassword = password; + + if (!digestPassword) { + // Use node md5 generator + const md5 = crypto.createHash('md5'); + // Generate keys used for authentication + md5.update(`${username}:mongo:${password}`); + userPassword = md5.digest('hex'); + } + + // Build the command to execute + const command: Document = { + createUser: username, + customData: options.customData || {}, + roles: roles, + digestPassword + }; + + // No password + if (typeof password === 'string') { + command.pwd = userPassword; + } + + super.executeCommand(server, session, command, callback); + } +} + +defineAspects(AddUserOperation, [Aspect.WRITE_OPERATION]); diff --git a/node_modules/mongodb/src/operations/aggregate.ts b/node_modules/mongodb/src/operations/aggregate.ts new file mode 100644 index 000000000..1acc6ac62 --- /dev/null +++ b/node_modules/mongodb/src/operations/aggregate.ts @@ -0,0 +1,144 @@ +import type { Document } from '../bson'; +import { MongoInvalidArgumentError } from '../error'; +import type { Server } from '../sdam/server'; +import type { ClientSession } from '../sessions'; +import { Callback, maxWireVersion, MongoDBNamespace } from '../utils'; +import { CollationOptions, CommandOperation, CommandOperationOptions } from './command'; +import { Aspect, defineAspects, Hint } from './operation'; + +/** @internal */ +export const DB_AGGREGATE_COLLECTION = 1 as const; +const MIN_WIRE_VERSION_$OUT_READ_CONCERN_SUPPORT = 8 as const; + +/** @public */ +export interface AggregateOptions extends CommandOperationOptions { + /** allowDiskUse lets the server know if it can use disk to store temporary results for the aggregation (requires mongodb 2.6 \>). */ + allowDiskUse?: boolean; + /** The number of documents to return per batch. See [aggregation documentation](https://docs.mongodb.com/manual/reference/command/aggregate). */ + batchSize?: number; + /** Allow driver to bypass schema validation in MongoDB 3.2 or higher. */ + bypassDocumentValidation?: boolean; + /** Return the query as cursor, on 2.6 \> it returns as a real cursor on pre 2.6 it returns as an emulated cursor. */ + cursor?: Document; + /** specifies a cumulative time limit in milliseconds for processing operations on the cursor. MongoDB interrupts the operation at the earliest following interrupt point. */ + maxTimeMS?: number; + /** The maximum amount of time for the server to wait on new documents to satisfy a tailable cursor query. */ + maxAwaitTimeMS?: number; + /** Specify collation. */ + collation?: CollationOptions; + /** Add an index selection hint to an aggregation command */ + hint?: Hint; + /** Map of parameter names and values that can be accessed using $$var (requires MongoDB 5.0). */ + let?: Document; + + out?: string; +} + +/** @internal */ +export class AggregateOperation extends CommandOperation { + override options: AggregateOptions; + target: string | typeof DB_AGGREGATE_COLLECTION; + pipeline: Document[]; + hasWriteStage: boolean; + + constructor(ns: MongoDBNamespace, pipeline: Document[], options?: AggregateOptions) { + super(undefined, { ...options, dbName: ns.db }); + + this.options = options ?? {}; + + // Covers when ns.collection is null, undefined or the empty string, use DB_AGGREGATE_COLLECTION + this.target = ns.collection || DB_AGGREGATE_COLLECTION; + + this.pipeline = pipeline; + + // determine if we have a write stage, override read preference if so + this.hasWriteStage = false; + if (typeof options?.out === 'string') { + this.pipeline = this.pipeline.concat({ $out: options.out }); + this.hasWriteStage = true; + } else if (pipeline.length > 0) { + const finalStage = pipeline[pipeline.length - 1]; + if (finalStage.$out || finalStage.$merge) { + this.hasWriteStage = true; + } + } + + if (this.hasWriteStage) { + this.trySecondaryWrite = true; + } + + if (this.explain && this.writeConcern) { + throw new MongoInvalidArgumentError( + 'Option "explain" cannot be used on an aggregate call with writeConcern' + ); + } + + if (options?.cursor != null && typeof options.cursor !== 'object') { + throw new MongoInvalidArgumentError('Cursor options must be an object'); + } + } + + override get canRetryRead(): boolean { + return !this.hasWriteStage; + } + + addToPipeline(stage: Document): void { + this.pipeline.push(stage); + } + + override execute( + server: Server, + session: ClientSession | undefined, + callback: Callback + ): void { + const options: AggregateOptions = this.options; + const serverWireVersion = maxWireVersion(server); + const command: Document = { aggregate: this.target, pipeline: this.pipeline }; + + if (this.hasWriteStage && serverWireVersion < MIN_WIRE_VERSION_$OUT_READ_CONCERN_SUPPORT) { + this.readConcern = undefined; + } + + if (serverWireVersion >= 5) { + if (this.hasWriteStage && this.writeConcern) { + Object.assign(command, { writeConcern: this.writeConcern }); + } + } + + if (options.bypassDocumentValidation === true) { + command.bypassDocumentValidation = options.bypassDocumentValidation; + } + + if (typeof options.allowDiskUse === 'boolean') { + command.allowDiskUse = options.allowDiskUse; + } + + if (options.hint) { + command.hint = options.hint; + } + + if (options.let) { + command.let = options.let; + } + + // we check for undefined specifically here to allow falsy values + // eslint-disable-next-line no-restricted-syntax + if (options.comment !== undefined) { + command.comment = options.comment; + } + + command.cursor = options.cursor || {}; + if (options.batchSize && !this.hasWriteStage) { + command.cursor.batchSize = options.batchSize; + } + + super.executeCommand(server, session, command, callback); + } +} + +defineAspects(AggregateOperation, [ + Aspect.READ_OPERATION, + Aspect.RETRYABLE, + Aspect.EXPLAINABLE, + Aspect.CURSOR_CREATING +]); diff --git a/node_modules/mongodb/src/operations/bulk_write.ts b/node_modules/mongodb/src/operations/bulk_write.ts new file mode 100644 index 000000000..627dc709a --- /dev/null +++ b/node_modules/mongodb/src/operations/bulk_write.ts @@ -0,0 +1,67 @@ +import type { + AnyBulkWriteOperation, + BulkOperationBase, + BulkWriteOptions, + BulkWriteResult +} from '../bulk/common'; +import type { Collection } from '../collection'; +import type { Server } from '../sdam/server'; +import type { ClientSession } from '../sessions'; +import type { Callback } from '../utils'; +import { AbstractOperation, Aspect, defineAspects } from './operation'; + +/** @internal */ +export class BulkWriteOperation extends AbstractOperation { + override options: BulkWriteOptions; + collection: Collection; + operations: AnyBulkWriteOperation[]; + + constructor( + collection: Collection, + operations: AnyBulkWriteOperation[], + options: BulkWriteOptions + ) { + super(options); + this.options = options; + this.collection = collection; + this.operations = operations; + } + + override execute( + server: Server, + session: ClientSession | undefined, + callback: Callback + ): void { + const coll = this.collection; + const operations = this.operations; + const options = { ...this.options, ...this.bsonOptions, readPreference: this.readPreference }; + + // Create the bulk operation + const bulk: BulkOperationBase = + options.ordered === false + ? coll.initializeUnorderedBulkOp(options) + : coll.initializeOrderedBulkOp(options); + + // for each op go through and add to the bulk + try { + for (let i = 0; i < operations.length; i++) { + bulk.raw(operations[i]); + } + } catch (err) { + return callback(err); + } + + // Execute the bulk + bulk.execute({ ...options, session }, (err, r) => { + // We have connection level error + if (!r && err) { + return callback(err); + } + + // Return the results + callback(undefined, r); + }); + } +} + +defineAspects(BulkWriteOperation, [Aspect.WRITE_OPERATION]); diff --git a/node_modules/mongodb/src/operations/collections.ts b/node_modules/mongodb/src/operations/collections.ts new file mode 100644 index 000000000..8b314865a --- /dev/null +++ b/node_modules/mongodb/src/operations/collections.ts @@ -0,0 +1,48 @@ +import { Collection } from '../collection'; +import type { Db } from '../db'; +import type { Server } from '../sdam/server'; +import type { ClientSession } from '../sessions'; +import type { Callback } from '../utils'; +import { AbstractOperation, OperationOptions } from './operation'; + +export interface CollectionsOptions extends OperationOptions { + nameOnly?: boolean; +} + +/** @internal */ +export class CollectionsOperation extends AbstractOperation { + override options: CollectionsOptions; + db: Db; + + constructor(db: Db, options: CollectionsOptions) { + super(options); + this.options = options; + this.db = db; + } + + override execute( + server: Server, + session: ClientSession | undefined, + callback: Callback + ): void { + const db = this.db; + + // Let's get the collection names + db.listCollections( + {}, + { ...this.options, nameOnly: true, readPreference: this.readPreference, session } + ).toArray((err, documents) => { + if (err || !documents) return callback(err); + // Filter collections removing any illegal ones + documents = documents.filter(doc => doc.name.indexOf('$') === -1); + + // Return the collection objects + callback( + undefined, + documents.map(d => { + return new Collection(db, d.name, db.s.options); + }) + ); + }); + } +} diff --git a/node_modules/mongodb/src/operations/command.ts b/node_modules/mongodb/src/operations/command.ts new file mode 100644 index 000000000..57186ab42 --- /dev/null +++ b/node_modules/mongodb/src/operations/command.ts @@ -0,0 +1,193 @@ +import type { BSONSerializeOptions, Document } from '../bson'; +import { MongoCompatibilityError, MongoInvalidArgumentError } from '../error'; +import { Explain, ExplainOptions } from '../explain'; +import type { Logger } from '../logger'; +import { ReadConcern } from '../read_concern'; +import type { ReadPreference } from '../read_preference'; +import type { Server } from '../sdam/server'; +import { MIN_SECONDARY_WRITE_WIRE_VERSION } from '../sdam/server_selection'; +import type { ClientSession } from '../sessions'; +import { + Callback, + commandSupportsReadConcern, + decorateWithExplain, + maxWireVersion, + MongoDBNamespace +} from '../utils'; +import { WriteConcern, WriteConcernOptions } from '../write_concern'; +import type { ReadConcernLike } from './../read_concern'; +import { AbstractOperation, Aspect, OperationOptions } from './operation'; + +const SUPPORTS_WRITE_CONCERN_AND_COLLATION = 5; + +/** @public */ +export interface CollationOptions { + locale: string; + caseLevel?: boolean; + caseFirst?: string; + strength?: number; + numericOrdering?: boolean; + alternate?: string; + maxVariable?: string; + backwards?: boolean; + normalization?: boolean; +} + +/** @public */ +export interface CommandOperationOptions + extends OperationOptions, + WriteConcernOptions, + ExplainOptions { + /** @deprecated This option does nothing */ + fullResponse?: boolean; + /** Specify a read concern and level for the collection. (only MongoDB 3.2 or higher supported) */ + readConcern?: ReadConcernLike; + /** Collation */ + collation?: CollationOptions; + maxTimeMS?: number; + /** + * Comment to apply to the operation. + * + * In server versions pre-4.4, 'comment' must be string. A server + * error will be thrown if any other type is provided. + * + * In server versions 4.4 and above, 'comment' can be any valid BSON type. + */ + comment?: unknown; + /** Should retry failed writes */ + retryWrites?: boolean; + + // Admin command overrides. + dbName?: string; + authdb?: string; + noResponse?: boolean; +} + +/** @internal */ +export interface OperationParent { + s: { namespace: MongoDBNamespace }; + readConcern?: ReadConcern; + writeConcern?: WriteConcern; + readPreference?: ReadPreference; + logger?: Logger; + bsonOptions?: BSONSerializeOptions; +} + +/** @internal */ +export abstract class CommandOperation extends AbstractOperation { + override options: CommandOperationOptions; + readConcern?: ReadConcern; + writeConcern?: WriteConcern; + explain?: Explain; + logger?: Logger; + + constructor(parent?: OperationParent, options?: CommandOperationOptions) { + super(options); + this.options = options ?? {}; + + // NOTE: this was explicitly added for the add/remove user operations, it's likely + // something we'd want to reconsider. Perhaps those commands can use `Admin` + // as a parent? + const dbNameOverride = options?.dbName || options?.authdb; + if (dbNameOverride) { + this.ns = new MongoDBNamespace(dbNameOverride, '$cmd'); + } else { + this.ns = parent + ? parent.s.namespace.withCollection('$cmd') + : new MongoDBNamespace('admin', '$cmd'); + } + + this.readConcern = ReadConcern.fromOptions(options); + this.writeConcern = WriteConcern.fromOptions(options); + + // TODO(NODE-2056): make logger another "inheritable" property + if (parent && parent.logger) { + this.logger = parent.logger; + } + + if (this.hasAspect(Aspect.EXPLAINABLE)) { + this.explain = Explain.fromOptions(options); + } else if (options?.explain != null) { + throw new MongoInvalidArgumentError(`Option "explain" is not supported on this command`); + } + } + + override get canRetryWrite(): boolean { + if (this.hasAspect(Aspect.EXPLAINABLE)) { + return this.explain == null; + } + return true; + } + + abstract override execute( + server: Server, + session: ClientSession | undefined, + callback: Callback + ): void; + + executeCommand( + server: Server, + session: ClientSession | undefined, + cmd: Document, + callback: Callback + ): void { + // TODO: consider making this a non-enumerable property + this.server = server; + + const options = { + ...this.options, + ...this.bsonOptions, + readPreference: this.readPreference, + session + }; + + const serverWireVersion = maxWireVersion(server); + const inTransaction = this.session && this.session.inTransaction(); + + if (this.readConcern && commandSupportsReadConcern(cmd) && !inTransaction) { + Object.assign(cmd, { readConcern: this.readConcern }); + } + + if (this.trySecondaryWrite && serverWireVersion < MIN_SECONDARY_WRITE_WIRE_VERSION) { + options.omitReadPreference = true; + } + + if (options.collation && serverWireVersion < SUPPORTS_WRITE_CONCERN_AND_COLLATION) { + callback( + new MongoCompatibilityError( + `Server ${server.name}, which reports wire version ${serverWireVersion}, does not support collation` + ) + ); + return; + } + + if (this.writeConcern && this.hasAspect(Aspect.WRITE_OPERATION) && !inTransaction) { + Object.assign(cmd, { writeConcern: this.writeConcern }); + } + + if (serverWireVersion >= SUPPORTS_WRITE_CONCERN_AND_COLLATION) { + if ( + options.collation && + typeof options.collation === 'object' && + !this.hasAspect(Aspect.SKIP_COLLATION) + ) { + Object.assign(cmd, { collation: options.collation }); + } + } + + if (typeof options.maxTimeMS === 'number') { + cmd.maxTimeMS = options.maxTimeMS; + } + + if (this.hasAspect(Aspect.EXPLAINABLE) && this.explain) { + if (serverWireVersion < 6 && cmd.aggregate) { + // Prior to 3.6, with aggregate, verbosity is ignored, and we must pass in "explain: true" + cmd.explain = true; + } else { + cmd = decorateWithExplain(cmd, this.explain); + } + } + + server.command(this.ns, cmd, options, callback); + } +} diff --git a/node_modules/mongodb/src/operations/common_functions.ts b/node_modules/mongodb/src/operations/common_functions.ts new file mode 100644 index 000000000..a439aca7e --- /dev/null +++ b/node_modules/mongodb/src/operations/common_functions.ts @@ -0,0 +1,102 @@ +import type { Document } from '../bson'; +import type { Collection } from '../collection'; +import type { Db } from '../db'; +import { MongoTopologyClosedError } from '../error'; +import type { ReadPreference } from '../read_preference'; +import type { ClientSession } from '../sessions'; +import { Callback, getTopology } from '../utils'; + +/** @public */ +export interface IndexInformationOptions { + full?: boolean; + readPreference?: ReadPreference; + session?: ClientSession; +} +/** + * Retrieves this collections index info. + * + * @param db - The Db instance on which to retrieve the index info. + * @param name - The name of the collection. + */ +export function indexInformation(db: Db, name: string, callback: Callback): void; +export function indexInformation( + db: Db, + name: string, + options: IndexInformationOptions, + callback?: Callback +): void; +export function indexInformation( + db: Db, + name: string, + _optionsOrCallback: IndexInformationOptions | Callback, + _callback?: Callback +): void { + let options = _optionsOrCallback as IndexInformationOptions; + let callback = _callback as Callback; + if ('function' === typeof _optionsOrCallback) { + callback = _optionsOrCallback; + options = {}; + } + // If we specified full information + const full = options.full == null ? false : options.full; + + let topology; + try { + topology = getTopology(db); + } catch (error) { + return callback(error); + } + + // Did the user destroy the topology + if (topology.isDestroyed()) return callback(new MongoTopologyClosedError()); + // Process all the results from the index command and collection + function processResults(indexes: any) { + // Contains all the information + const info: any = {}; + // Process all the indexes + for (let i = 0; i < indexes.length; i++) { + const index = indexes[i]; + // Let's unpack the object + info[index.name] = []; + for (const name in index.key) { + info[index.name].push([name, index.key[name]]); + } + } + + return info; + } + + // Get the list of indexes of the specified collection + db.collection(name) + .listIndexes(options) + .toArray((err, indexes) => { + if (err) return callback(err); + if (!Array.isArray(indexes)) return callback(undefined, []); + if (full) return callback(undefined, indexes); + callback(undefined, processResults(indexes)); + }); +} + +export function prepareDocs( + coll: Collection, + docs: Document[], + options: { forceServerObjectId?: boolean } +): Document[] { + const forceServerObjectId = + typeof options.forceServerObjectId === 'boolean' + ? options.forceServerObjectId + : coll.s.db.options?.forceServerObjectId; + + // no need to modify the docs if server sets the ObjectId + if (forceServerObjectId === true) { + return docs; + } + + return docs.map(doc => { + if (doc._id == null) { + doc._id = coll.s.pkFactory.createPk(); + } + + return doc; + }); +} diff --git a/node_modules/mongodb/src/operations/connect.ts b/node_modules/mongodb/src/operations/connect.ts new file mode 100644 index 000000000..a71e95867 --- /dev/null +++ b/node_modules/mongodb/src/operations/connect.ts @@ -0,0 +1,107 @@ +import { resolveSRVRecord } from '../connection_string'; +import { MONGO_CLIENT_EVENTS } from '../constants'; +import { MongoInvalidArgumentError, MongoRuntimeError } from '../error'; +import type { MongoClient, MongoOptions } from '../mongo_client'; +import { Topology } from '../sdam/topology'; +import type { Callback } from '../utils'; + +export function connect( + mongoClient: MongoClient, + options: MongoOptions, + callback: Callback +): void { + if (!callback) { + throw new MongoInvalidArgumentError('Callback function must be provided'); + } + + // If a connection already been established, we can terminate early + if (mongoClient.topology && mongoClient.topology.isConnected()) { + return callback(undefined, mongoClient); + } + + const logger = mongoClient.logger; + const connectCallback: Callback = err => { + const warningMessage = + 'seed list contains no mongos proxies, replicaset connections requires ' + + 'the parameter replicaSet to be supplied in the URI or options object, ' + + 'mongodb://server:port/db?replicaSet=name'; + if (err && err.message === 'no mongos proxies found in seed list') { + if (logger.isWarn()) { + logger.warn(warningMessage); + } + + // Return a more specific error message for MongoClient.connect + // TODO(NODE-3483) + return callback(new MongoRuntimeError(warningMessage)); + } + + callback(err, mongoClient); + }; + + if (typeof options.srvHost === 'string') { + return resolveSRVRecord(options, (err, hosts) => { + if (err || !hosts) return callback(err); + for (const [index, host] of hosts.entries()) { + options.hosts[index] = host; + } + + return createTopology(mongoClient, options, connectCallback); + }); + } + + return createTopology(mongoClient, options, connectCallback); +} + +function createTopology( + mongoClient: MongoClient, + options: MongoOptions, + callback: Callback +) { + // Create the topology + const topology = new Topology(options.hosts, options); + // Events can be emitted before initialization is complete so we have to + // save the reference to the topology on the client ASAP if the event handlers need to access it + mongoClient.topology = topology; + topology.client = mongoClient; + + topology.once(Topology.OPEN, () => mongoClient.emit('open', mongoClient)); + + for (const event of MONGO_CLIENT_EVENTS) { + topology.on(event, (...args: any[]) => mongoClient.emit(event, ...(args as any))); + } + + // initialize CSFLE if requested + if (mongoClient.autoEncrypter) { + mongoClient.autoEncrypter.init(err => { + if (err) { + return callback(err); + } + + topology.connect(options, err => { + if (err) { + topology.close({ force: true }); + return callback(err); + } + + options.encrypter.connectInternalClient(error => { + if (error) return callback(error); + + callback(undefined, topology); + }); + }); + }); + + return; + } + + // otherwise connect normally + topology.connect(options, err => { + if (err) { + topology.close({ force: true }); + return callback(err); + } + + callback(undefined, topology); + return; + }); +} diff --git a/node_modules/mongodb/src/operations/count.ts b/node_modules/mongodb/src/operations/count.ts new file mode 100644 index 000000000..8d94b84ea --- /dev/null +++ b/node_modules/mongodb/src/operations/count.ts @@ -0,0 +1,68 @@ +import type { Document } from '../bson'; +import type { Collection } from '../collection'; +import type { Server } from '../sdam/server'; +import type { ClientSession } from '../sessions'; +import type { Callback, MongoDBNamespace } from '../utils'; +import { CommandOperation, CommandOperationOptions } from './command'; +import { Aspect, defineAspects } from './operation'; + +/** @public */ +export interface CountOptions extends CommandOperationOptions { + /** The number of documents to skip. */ + skip?: number; + /** The maximum amounts to count before aborting. */ + limit?: number; + /** Number of milliseconds to wait before aborting the query. */ + maxTimeMS?: number; + /** An index name hint for the query. */ + hint?: string | Document; +} + +/** @internal */ +export class CountOperation extends CommandOperation { + override options: CountOptions; + collectionName?: string; + query: Document; + + constructor(namespace: MongoDBNamespace, filter: Document, options: CountOptions) { + super({ s: { namespace: namespace } } as unknown as Collection, options); + + this.options = options; + this.collectionName = namespace.collection; + this.query = filter; + } + + override execute( + server: Server, + session: ClientSession | undefined, + callback: Callback + ): void { + const options = this.options; + const cmd: Document = { + count: this.collectionName, + query: this.query + }; + + if (typeof options.limit === 'number') { + cmd.limit = options.limit; + } + + if (typeof options.skip === 'number') { + cmd.skip = options.skip; + } + + if (options.hint != null) { + cmd.hint = options.hint; + } + + if (typeof options.maxTimeMS === 'number') { + cmd.maxTimeMS = options.maxTimeMS; + } + + super.executeCommand(server, session, cmd, (err, result) => { + callback(err, result ? result.n : 0); + }); + } +} + +defineAspects(CountOperation, [Aspect.READ_OPERATION, Aspect.RETRYABLE]); diff --git a/node_modules/mongodb/src/operations/count_documents.ts b/node_modules/mongodb/src/operations/count_documents.ts new file mode 100644 index 000000000..c781329f2 --- /dev/null +++ b/node_modules/mongodb/src/operations/count_documents.ts @@ -0,0 +1,57 @@ +import type { Document } from '../bson'; +import type { Collection } from '../collection'; +import type { Server } from '../sdam/server'; +import type { ClientSession } from '../sessions'; +import type { Callback } from '../utils'; +import { AggregateOperation, AggregateOptions } from './aggregate'; + +/** @public */ +export interface CountDocumentsOptions extends AggregateOptions { + /** The number of documents to skip. */ + skip?: number; + /** The maximum amounts to count before aborting. */ + limit?: number; +} + +/** @internal */ +export class CountDocumentsOperation extends AggregateOperation { + constructor(collection: Collection, query: Document, options: CountDocumentsOptions) { + const pipeline = []; + pipeline.push({ $match: query }); + + if (typeof options.skip === 'number') { + pipeline.push({ $skip: options.skip }); + } + + if (typeof options.limit === 'number') { + pipeline.push({ $limit: options.limit }); + } + + pipeline.push({ $group: { _id: 1, n: { $sum: 1 } } }); + + super(collection.s.namespace, pipeline, options); + } + + override execute( + server: Server, + session: ClientSession | undefined, + callback: Callback + ): void { + super.execute(server, session, (err, result) => { + if (err || !result) { + callback(err); + return; + } + + // NOTE: We're avoiding creating a cursor here to reduce the callstack. + const response = result as unknown as Document; + if (response.cursor == null || response.cursor.firstBatch == null) { + callback(undefined, 0); + return; + } + + const docs = response.cursor.firstBatch; + callback(undefined, docs.length ? docs[0].n : 0); + }); + } +} diff --git a/node_modules/mongodb/src/operations/create_collection.ts b/node_modules/mongodb/src/operations/create_collection.ts new file mode 100644 index 000000000..e69b87a3c --- /dev/null +++ b/node_modules/mongodb/src/operations/create_collection.ts @@ -0,0 +1,200 @@ +import type { Document } from '../bson'; +import { Collection } from '../collection'; +import type { Db } from '../db'; +import type { PkFactory } from '../mongo_client'; +import type { Server } from '../sdam/server'; +import type { ClientSession } from '../sessions'; +import type { Callback } from '../utils'; +import { CommandOperation, CommandOperationOptions } from './command'; +import { CreateIndexOperation } from './indexes'; +import { Aspect, defineAspects } from './operation'; + +const ILLEGAL_COMMAND_FIELDS = new Set([ + 'w', + 'wtimeout', + 'j', + 'fsync', + 'autoIndexId', + 'pkFactory', + 'raw', + 'readPreference', + 'session', + 'readConcern', + 'writeConcern', + 'raw', + 'fieldsAsRaw', + 'promoteLongs', + 'promoteValues', + 'promoteBuffers', + 'bsonRegExp', + 'serializeFunctions', + 'ignoreUndefined', + 'enableUtf8Validation' +]); + +/** @public + * Configuration options for timeseries collections + * @see https://docs.mongodb.com/manual/core/timeseries-collections/ + */ +export interface TimeSeriesCollectionOptions extends Document { + timeField: string; + metaField?: string; + granularity?: 'seconds' | 'minutes' | 'hours' | string; +} + +/** @public + * Configuration options for clustered collections + * @see https://www.mongodb.com/docs/manual/core/clustered-collections/ + */ +export interface ClusteredCollectionOptions extends Document { + name?: string; + key: Document; + unique: boolean; +} + +/** @public */ +export interface CreateCollectionOptions extends CommandOperationOptions { + /** Returns an error if the collection does not exist */ + strict?: boolean; + /** Create a capped collection */ + capped?: boolean; + /** @deprecated Create an index on the _id field of the document, True by default on MongoDB 2.6 - 3.0 */ + autoIndexId?: boolean; + /** The size of the capped collection in bytes */ + size?: number; + /** The maximum number of documents in the capped collection */ + max?: number; + /** Available for the MMAPv1 storage engine only to set the usePowerOf2Sizes and the noPadding flag */ + flags?: number; + /** Allows users to specify configuration to the storage engine on a per-collection basis when creating a collection on MongoDB 3.0 or higher */ + storageEngine?: Document; + /** Allows users to specify validation rules or expressions for the collection. For more information, see Document Validation on MongoDB 3.2 or higher */ + validator?: Document; + /** Determines how strictly MongoDB applies the validation rules to existing documents during an update on MongoDB 3.2 or higher */ + validationLevel?: string; + /** Determines whether to error on invalid documents or just warn about the violations but allow invalid documents to be inserted on MongoDB 3.2 or higher */ + validationAction?: string; + /** Allows users to specify a default configuration for indexes when creating a collection on MongoDB 3.2 or higher */ + indexOptionDefaults?: Document; + /** The name of the source collection or view from which to create the view. The name is not the full namespace of the collection or view; i.e. does not include the database name and implies the same database as the view to create on MongoDB 3.4 or higher */ + viewOn?: string; + /** An array that consists of the aggregation pipeline stage. Creates the view by applying the specified pipeline to the viewOn collection or view on MongoDB 3.4 or higher */ + pipeline?: Document[]; + /** A primary key factory function for generation of custom _id keys. */ + pkFactory?: PkFactory; + /** A document specifying configuration options for timeseries collections. */ + timeseries?: TimeSeriesCollectionOptions; + /** A document specifying configuration options for clustered collections. For MongoDB 5.3 and above. */ + clusteredIndex?: ClusteredCollectionOptions; + /** The number of seconds after which a document in a timeseries or clustered collection expires. */ + expireAfterSeconds?: number; + /** @experimental */ + encryptedFields?: Document; + /** + * If set, enables pre-update and post-update document events to be included for any + * change streams that listen on this collection. + */ + changeStreamPreAndPostImages?: { enabled: boolean }; +} + +/** @internal */ +export class CreateCollectionOperation extends CommandOperation { + override options: CreateCollectionOptions; + db: Db; + name: string; + + constructor(db: Db, name: string, options: CreateCollectionOptions = {}) { + super(db, options); + + this.options = options; + this.db = db; + this.name = name; + } + + override execute( + server: Server, + session: ClientSession | undefined, + callback: Callback + ): void { + (async () => { + const db = this.db; + const name = this.name; + const options = this.options; + + const encryptedFields: Document | undefined = + options.encryptedFields ?? + db.s.client.options.autoEncryption?.encryptedFieldsMap?.[`${db.databaseName}.${name}`]; + + if (encryptedFields) { + // Create auxilliary collections for queryable encryption support. + const escCollection = encryptedFields.escCollection ?? `enxcol_.${name}.esc`; + const eccCollection = encryptedFields.eccCollection ?? `enxcol_.${name}.ecc`; + const ecocCollection = encryptedFields.ecocCollection ?? `enxcol_.${name}.ecoc`; + + for (const collectionName of [escCollection, eccCollection, ecocCollection]) { + const createOp = new CreateCollectionOperation(db, collectionName, { + clusteredIndex: { + key: { _id: 1 }, + unique: true + } + }); + await createOp.executeWithoutEncryptedFieldsCheck(server, session); + } + + if (!options.encryptedFields) { + this.options = { ...this.options, encryptedFields }; + } + } + + const coll = await this.executeWithoutEncryptedFieldsCheck(server, session); + + if (encryptedFields) { + // Create the required index for queryable encryption support. + const createIndexOp = new CreateIndexOperation(db, name, { __safeContent__: 1 }, {}); + await new Promise((resolve, reject) => { + createIndexOp.execute(server, session, err => (err ? reject(err) : resolve())); + }); + } + + return coll; + })().then( + coll => callback(undefined, coll), + err => callback(err) + ); + } + + private executeWithoutEncryptedFieldsCheck( + server: Server, + session: ClientSession | undefined + ): Promise { + return new Promise((resolve, reject) => { + const db = this.db; + const name = this.name; + const options = this.options; + + const done: Callback = err => { + if (err) { + return reject(err); + } + + resolve(new Collection(db, name, options)); + }; + + const cmd: Document = { create: name }; + for (const n in options) { + if ( + (options as any)[n] != null && + typeof (options as any)[n] !== 'function' && + !ILLEGAL_COMMAND_FIELDS.has(n) + ) { + cmd[n] = (options as any)[n]; + } + } + + // otherwise just execute the command + super.executeCommand(server, session, cmd, done); + }); + } +} + +defineAspects(CreateCollectionOperation, [Aspect.WRITE_OPERATION]); diff --git a/node_modules/mongodb/src/operations/delete.ts b/node_modules/mongodb/src/operations/delete.ts new file mode 100644 index 000000000..ccdfd1c80 --- /dev/null +++ b/node_modules/mongodb/src/operations/delete.ts @@ -0,0 +1,194 @@ +import type { Document } from '../bson'; +import type { Collection } from '../collection'; +import { MongoCompatibilityError, MongoServerError } from '../error'; +import type { Server } from '../sdam/server'; +import type { ClientSession } from '../sessions'; +import { Callback, collationNotSupported, maxWireVersion, MongoDBNamespace } from '../utils'; +import type { WriteConcernOptions } from '../write_concern'; +import { CollationOptions, CommandOperation, CommandOperationOptions } from './command'; +import { Aspect, defineAspects, Hint } from './operation'; + +/** @public */ +export interface DeleteOptions extends CommandOperationOptions, WriteConcernOptions { + /** If true, when an insert fails, don't execute the remaining writes. If false, continue with remaining inserts when one fails. */ + ordered?: boolean; + /** Specifies the collation to use for the operation */ + collation?: CollationOptions; + /** Specify that the update query should only consider plans using the hinted index */ + hint?: string | Document; + /** Map of parameter names and values that can be accessed using $$var (requires MongoDB 5.0). */ + let?: Document; + + /** @deprecated use `removeOne` or `removeMany` to implicitly specify the limit */ + single?: boolean; +} + +/** @public */ +export interface DeleteResult { + /** Indicates whether this write result was acknowledged. If not, then all other members of this result will be undefined. */ + acknowledged: boolean; + /** The number of documents that were deleted */ + deletedCount: number; +} + +/** @public */ +export interface DeleteStatement { + /** The query that matches documents to delete. */ + q: Document; + /** The number of matching documents to delete. */ + limit: number; + /** Specifies the collation to use for the operation. */ + collation?: CollationOptions; + /** A document or string that specifies the index to use to support the query predicate. */ + hint?: Hint; +} + +/** @internal */ +export class DeleteOperation extends CommandOperation { + override options: DeleteOptions; + statements: DeleteStatement[]; + + constructor(ns: MongoDBNamespace, statements: DeleteStatement[], options: DeleteOptions) { + super(undefined, options); + this.options = options; + this.ns = ns; + this.statements = statements; + } + + override get canRetryWrite(): boolean { + if (super.canRetryWrite === false) { + return false; + } + + return this.statements.every(op => (op.limit != null ? op.limit > 0 : true)); + } + + override execute(server: Server, session: ClientSession | undefined, callback: Callback): void { + const options = this.options ?? {}; + const ordered = typeof options.ordered === 'boolean' ? options.ordered : true; + const command: Document = { + delete: this.ns.collection, + deletes: this.statements, + ordered + }; + + if (options.let) { + command.let = options.let; + } + + // we check for undefined specifically here to allow falsy values + // eslint-disable-next-line no-restricted-syntax + if (options.comment !== undefined) { + command.comment = options.comment; + } + + if (options.explain != null && maxWireVersion(server) < 3) { + return callback + ? callback( + new MongoCompatibilityError(`Server ${server.name} does not support explain on delete`) + ) + : undefined; + } + + const unacknowledgedWrite = this.writeConcern && this.writeConcern.w === 0; + if (unacknowledgedWrite || maxWireVersion(server) < 5) { + if (this.statements.find((o: Document) => o.hint)) { + callback(new MongoCompatibilityError(`Servers < 3.4 do not support hint on delete`)); + return; + } + } + + const statementWithCollation = this.statements.find(statement => !!statement.collation); + if (statementWithCollation && collationNotSupported(server, statementWithCollation)) { + callback(new MongoCompatibilityError(`Server ${server.name} does not support collation`)); + return; + } + + super.executeCommand(server, session, command, callback); + } +} + +export class DeleteOneOperation extends DeleteOperation { + constructor(collection: Collection, filter: Document, options: DeleteOptions) { + super(collection.s.namespace, [makeDeleteStatement(filter, { ...options, limit: 1 })], options); + } + + override execute( + server: Server, + session: ClientSession | undefined, + callback: Callback + ): void { + super.execute(server, session, (err, res) => { + if (err || res == null) return callback(err); + if (res.code) return callback(new MongoServerError(res)); + if (res.writeErrors) return callback(new MongoServerError(res.writeErrors[0])); + if (this.explain) return callback(undefined, res); + + callback(undefined, { + acknowledged: this.writeConcern?.w !== 0 ?? true, + deletedCount: res.n + }); + }); + } +} + +export class DeleteManyOperation extends DeleteOperation { + constructor(collection: Collection, filter: Document, options: DeleteOptions) { + super(collection.s.namespace, [makeDeleteStatement(filter, options)], options); + } + + override execute( + server: Server, + session: ClientSession | undefined, + callback: Callback + ): void { + super.execute(server, session, (err, res) => { + if (err || res == null) return callback(err); + if (res.code) return callback(new MongoServerError(res)); + if (res.writeErrors) return callback(new MongoServerError(res.writeErrors[0])); + if (this.explain) return callback(undefined, res); + + callback(undefined, { + acknowledged: this.writeConcern?.w !== 0 ?? true, + deletedCount: res.n + }); + }); + } +} + +export function makeDeleteStatement( + filter: Document, + options: DeleteOptions & { limit?: number } +): DeleteStatement { + const op: DeleteStatement = { + q: filter, + limit: typeof options.limit === 'number' ? options.limit : 0 + }; + + if (options.single === true) { + op.limit = 1; + } + + if (options.collation) { + op.collation = options.collation; + } + + if (options.hint) { + op.hint = options.hint; + } + + return op; +} + +defineAspects(DeleteOperation, [Aspect.RETRYABLE, Aspect.WRITE_OPERATION]); +defineAspects(DeleteOneOperation, [ + Aspect.RETRYABLE, + Aspect.WRITE_OPERATION, + Aspect.EXPLAINABLE, + Aspect.SKIP_COLLATION +]); +defineAspects(DeleteManyOperation, [ + Aspect.WRITE_OPERATION, + Aspect.EXPLAINABLE, + Aspect.SKIP_COLLATION +]); diff --git a/node_modules/mongodb/src/operations/distinct.ts b/node_modules/mongodb/src/operations/distinct.ts new file mode 100644 index 000000000..5fe8585e8 --- /dev/null +++ b/node_modules/mongodb/src/operations/distinct.ts @@ -0,0 +1,90 @@ +import type { Document } from '../bson'; +import type { Collection } from '../collection'; +import type { Server } from '../sdam/server'; +import type { ClientSession } from '../sessions'; +import { Callback, decorateWithCollation, decorateWithReadConcern } from '../utils'; +import { CommandOperation, CommandOperationOptions } from './command'; +import { Aspect, defineAspects } from './operation'; + +/** @public */ +export type DistinctOptions = CommandOperationOptions; + +/** + * Return a list of distinct values for the given key across a collection. + * @internal + */ +export class DistinctOperation extends CommandOperation { + override options: DistinctOptions; + collection: Collection; + /** Field of the document to find distinct values for. */ + key: string; + /** The query for filtering the set of documents to which we apply the distinct filter. */ + query: Document; + + /** + * Construct a Distinct operation. + * + * @param collection - Collection instance. + * @param key - Field of the document to find distinct values for. + * @param query - The query for filtering the set of documents to which we apply the distinct filter. + * @param options - Optional settings. See Collection.prototype.distinct for a list of options. + */ + constructor(collection: Collection, key: string, query: Document, options?: DistinctOptions) { + super(collection, options); + + this.options = options ?? {}; + this.collection = collection; + this.key = key; + this.query = query; + } + + override execute( + server: Server, + session: ClientSession | undefined, + callback: Callback + ): void { + const coll = this.collection; + const key = this.key; + const query = this.query; + const options = this.options; + + // Distinct command + const cmd: Document = { + distinct: coll.collectionName, + key: key, + query: query + }; + + // Add maxTimeMS if defined + if (typeof options.maxTimeMS === 'number') { + cmd.maxTimeMS = options.maxTimeMS; + } + + // we check for undefined specifically here to allow falsy values + // eslint-disable-next-line no-restricted-syntax + if (typeof options.comment !== 'undefined') { + cmd.comment = options.comment; + } + + // Do we have a readConcern specified + decorateWithReadConcern(cmd, coll, options); + + // Have we specified collation + try { + decorateWithCollation(cmd, coll, options); + } catch (err) { + return callback(err); + } + + super.executeCommand(server, session, cmd, (err, result) => { + if (err) { + callback(err); + return; + } + + callback(undefined, this.explain ? result : result.values); + }); + } +} + +defineAspects(DistinctOperation, [Aspect.READ_OPERATION, Aspect.RETRYABLE, Aspect.EXPLAINABLE]); diff --git a/node_modules/mongodb/src/operations/drop.ts b/node_modules/mongodb/src/operations/drop.ts new file mode 100644 index 000000000..00f78e543 --- /dev/null +++ b/node_modules/mongodb/src/operations/drop.ts @@ -0,0 +1,120 @@ +import type { Document } from '../bson'; +import type { Db } from '../db'; +import { MONGODB_ERROR_CODES, MongoServerError } from '../error'; +import type { Server } from '../sdam/server'; +import type { ClientSession } from '../sessions'; +import type { Callback } from '../utils'; +import { CommandOperation, CommandOperationOptions } from './command'; +import { Aspect, defineAspects } from './operation'; + +/** @public */ +export interface DropCollectionOptions extends CommandOperationOptions { + /** @experimental */ + encryptedFields?: Document; +} + +/** @internal */ +export class DropCollectionOperation extends CommandOperation { + override options: DropCollectionOptions; + db: Db; + name: string; + + constructor(db: Db, name: string, options: DropCollectionOptions = {}) { + super(db, options); + this.db = db; + this.options = options; + this.name = name; + } + + override execute( + server: Server, + session: ClientSession | undefined, + callback: Callback + ): void { + (async () => { + const db = this.db; + const options = this.options; + const name = this.name; + + const encryptedFieldsMap = db.s.client.options.autoEncryption?.encryptedFieldsMap; + let encryptedFields: Document | undefined = + options.encryptedFields ?? encryptedFieldsMap?.[`${db.databaseName}.${name}`]; + + if (!encryptedFields && encryptedFieldsMap) { + // If the MongoClient was configued with an encryptedFieldsMap, + // and no encryptedFields config was available in it or explicitly + // passed as an argument, the spec tells us to look one up using + // listCollections(). + const listCollectionsResult = await db + .listCollections({ name }, { nameOnly: false }) + .toArray(); + encryptedFields = listCollectionsResult?.[0]?.options?.encryptedFields; + } + + if (encryptedFields) { + const escCollection = encryptedFields.escCollection || `enxcol_.${name}.esc`; + const eccCollection = encryptedFields.eccCollection || `enxcol_.${name}.ecc`; + const ecocCollection = encryptedFields.ecocCollection || `enxcol_.${name}.ecoc`; + + for (const collectionName of [escCollection, eccCollection, ecocCollection]) { + // Drop auxilliary collections, ignoring potential NamespaceNotFound errors. + const dropOp = new DropCollectionOperation(db, collectionName); + try { + await dropOp.executeWithoutEncryptedFieldsCheck(server, session); + } catch (err) { + if ( + !(err instanceof MongoServerError) || + err.code !== MONGODB_ERROR_CODES.NamespaceNotFound + ) { + throw err; + } + } + } + } + + return await this.executeWithoutEncryptedFieldsCheck(server, session); + })().then( + result => callback(undefined, result), + err => callback(err) + ); + } + + private executeWithoutEncryptedFieldsCheck( + server: Server, + session: ClientSession | undefined + ): Promise { + return new Promise((resolve, reject) => { + super.executeCommand(server, session, { drop: this.name }, (err, result) => { + if (err) return reject(err); + resolve(!!result.ok); + }); + }); + } +} + +/** @public */ +export type DropDatabaseOptions = CommandOperationOptions; + +/** @internal */ +export class DropDatabaseOperation extends CommandOperation { + override options: DropDatabaseOptions; + + constructor(db: Db, options: DropDatabaseOptions) { + super(db, options); + this.options = options; + } + override execute( + server: Server, + session: ClientSession | undefined, + callback: Callback + ): void { + super.executeCommand(server, session, { dropDatabase: 1 }, (err, result) => { + if (err) return callback(err); + if (result.ok) return callback(undefined, true); + callback(undefined, false); + }); + } +} + +defineAspects(DropCollectionOperation, [Aspect.WRITE_OPERATION]); +defineAspects(DropDatabaseOperation, [Aspect.WRITE_OPERATION]); diff --git a/node_modules/mongodb/src/operations/estimated_document_count.ts b/node_modules/mongodb/src/operations/estimated_document_count.ts new file mode 100644 index 000000000..22b29deb9 --- /dev/null +++ b/node_modules/mongodb/src/operations/estimated_document_count.ts @@ -0,0 +1,62 @@ +import type { Document } from '../bson'; +import type { Collection } from '../collection'; +import type { Server } from '../sdam/server'; +import type { ClientSession } from '../sessions'; +import type { Callback } from '../utils'; +import { CommandOperation, CommandOperationOptions } from './command'; +import { Aspect, defineAspects } from './operation'; + +/** @public */ +export interface EstimatedDocumentCountOptions extends CommandOperationOptions { + /** + * The maximum amount of time to allow the operation to run. + * + * This option is sent only if the caller explicitly provides a value. The default is to not send a value. + */ + maxTimeMS?: number; +} + +/** @internal */ +export class EstimatedDocumentCountOperation extends CommandOperation { + override options: EstimatedDocumentCountOptions; + collectionName: string; + + constructor(collection: Collection, options: EstimatedDocumentCountOptions = {}) { + super(collection, options); + this.options = options; + this.collectionName = collection.collectionName; + } + + override execute( + server: Server, + session: ClientSession | undefined, + callback: Callback + ): void { + const cmd: Document = { count: this.collectionName }; + + if (typeof this.options.maxTimeMS === 'number') { + cmd.maxTimeMS = this.options.maxTimeMS; + } + + // we check for undefined specifically here to allow falsy values + // eslint-disable-next-line no-restricted-syntax + if (this.options.comment !== undefined) { + cmd.comment = this.options.comment; + } + + super.executeCommand(server, session, cmd, (err, response) => { + if (err) { + callback(err); + return; + } + + callback(undefined, response?.n || 0); + }); + } +} + +defineAspects(EstimatedDocumentCountOperation, [ + Aspect.READ_OPERATION, + Aspect.RETRYABLE, + Aspect.CURSOR_CREATING +]); diff --git a/node_modules/mongodb/src/operations/eval.ts b/node_modules/mongodb/src/operations/eval.ts new file mode 100644 index 000000000..3c34c59d9 --- /dev/null +++ b/node_modules/mongodb/src/operations/eval.ts @@ -0,0 +1,82 @@ +import { Code, Document } from '../bson'; +import type { Collection } from '../collection'; +import type { Db } from '../db'; +import { MongoServerError } from '../error'; +import { ReadPreference } from '../read_preference'; +import type { Server } from '../sdam/server'; +import type { ClientSession } from '../sessions'; +import type { Callback } from '../utils'; +import { CommandOperation, CommandOperationOptions } from './command'; + +/** @public */ +export interface EvalOptions extends CommandOperationOptions { + nolock?: boolean; +} + +/** @internal */ +export class EvalOperation extends CommandOperation { + override options: EvalOptions; + code: Code; + parameters?: Document | Document[]; + + constructor( + db: Db | Collection, + code: Code, + parameters?: Document | Document[], + options?: EvalOptions + ) { + super(db, options); + + this.options = options ?? {}; + this.code = code; + this.parameters = parameters; + // force primary read preference + Object.defineProperty(this, 'readPreference', { + value: ReadPreference.primary, + configurable: false, + writable: false + }); + } + + override execute( + server: Server, + session: ClientSession | undefined, + callback: Callback + ): void { + let finalCode = this.code; + let finalParameters: Document[] = []; + + // If not a code object translate to one + if (!(finalCode && (finalCode as unknown as { _bsontype: string })._bsontype === 'Code')) { + finalCode = new Code(finalCode as never); + } + + // Ensure the parameters are correct + if (this.parameters != null && typeof this.parameters !== 'function') { + finalParameters = Array.isArray(this.parameters) ? this.parameters : [this.parameters]; + } + + // Create execution selector + const cmd: Document = { $eval: finalCode, args: finalParameters }; + + // Check if the nolock parameter is passed in + if (this.options.nolock) { + cmd.nolock = this.options.nolock; + } + + // Execute the command + super.executeCommand(server, session, cmd, (err, result) => { + if (err) return callback(err); + if (result && result.ok === 1) { + return callback(undefined, result.retval); + } + + if (result) { + callback(new MongoServerError({ message: `eval failed: ${result.errmsg}` })); + return; + } + + callback(err, result); + }); + } +} diff --git a/node_modules/mongodb/src/operations/execute_operation.ts b/node_modules/mongodb/src/operations/execute_operation.ts new file mode 100644 index 000000000..54fc3b99d --- /dev/null +++ b/node_modules/mongodb/src/operations/execute_operation.ts @@ -0,0 +1,298 @@ +import type { Document } from '../bson'; +import { + isRetryableReadError, + isRetryableWriteError, + MongoCompatibilityError, + MONGODB_ERROR_CODES, + MongoError, + MongoExpiredSessionError, + MongoNetworkError, + MongoNotConnectedError, + MongoRuntimeError, + MongoServerError, + MongoTransactionError, + MongoUnexpectedServerResponseError +} from '../error'; +import type { MongoClient } from '../mongo_client'; +import { ReadPreference } from '../read_preference'; +import type { Server } from '../sdam/server'; +import { + sameServerSelector, + secondaryWritableServerSelector, + ServerSelector +} from '../sdam/server_selection'; +import type { Topology } from '../sdam/topology'; +import type { ClientSession } from '../sessions'; +import { Callback, maybePromise, supportsRetryableWrites } from '../utils'; +import { AbstractOperation, Aspect } from './operation'; + +const MMAPv1_RETRY_WRITES_ERROR_CODE = MONGODB_ERROR_CODES.IllegalOperation; +const MMAPv1_RETRY_WRITES_ERROR_MESSAGE = + 'This MongoDB deployment does not support retryable writes. Please add retryWrites=false to your connection string.'; + +type ResultTypeFromOperation = TOperation extends AbstractOperation + ? K + : never; + +/** @internal */ +export interface ExecutionResult { + /** The server selected for the operation */ + server: Server; + /** The session used for this operation, may be implicitly created */ + session?: ClientSession; + /** The raw server response for the operation */ + response: Document; +} + +/** + * Executes the given operation with provided arguments. + * @internal + * + * @remarks + * This method reduces large amounts of duplication in the entire codebase by providing + * a single point for determining whether callbacks or promises should be used. Additionally + * it allows for a single point of entry to provide features such as implicit sessions, which + * are required by the Driver Sessions specification in the event that a ClientSession is + * not provided + * + * @param topology - The topology to execute this operation on + * @param operation - The operation to execute + * @param callback - The command result callback + */ +export function executeOperation< + T extends AbstractOperation, + TResult = ResultTypeFromOperation +>(client: MongoClient, operation: T): Promise; +export function executeOperation< + T extends AbstractOperation, + TResult = ResultTypeFromOperation +>(client: MongoClient, operation: T, callback: Callback): void; +export function executeOperation< + T extends AbstractOperation, + TResult = ResultTypeFromOperation +>(client: MongoClient, operation: T, callback?: Callback): Promise | void; +export function executeOperation< + T extends AbstractOperation, + TResult = ResultTypeFromOperation +>(client: MongoClient, operation: T, callback?: Callback): Promise | void { + if (!(operation instanceof AbstractOperation)) { + // TODO(NODE-3483): Extend MongoRuntimeError + throw new MongoRuntimeError('This method requires a valid operation instance'); + } + + return maybePromise(callback, callback => { + const topology = client.topology; + + if (topology == null) { + if (client.s.hasBeenClosed) { + return callback( + new MongoNotConnectedError('Client must be connected before running operations') + ); + } + client.s.options[Symbol.for('@@mdb.skipPingOnConnect')] = true; + return client.connect(error => { + delete client.s.options[Symbol.for('@@mdb.skipPingOnConnect')]; + if (error) { + return callback(error); + } + return executeOperation(client, operation, callback); + }); + } + + if (topology.shouldCheckForSessionSupport()) { + return topology.selectServer(ReadPreference.primaryPreferred, {}, err => { + if (err) return callback(err); + + executeOperation(client, operation, callback); + }); + } + + // The driver sessions spec mandates that we implicitly create sessions for operations + // that are not explicitly provided with a session. + let session = operation.session; + let owner: symbol | undefined; + if (topology.hasSessionSupport()) { + if (session == null) { + owner = Symbol(); + session = client.startSession({ owner, explicit: false }); + } else if (session.hasEnded) { + return callback(new MongoExpiredSessionError('Use of expired sessions is not permitted')); + } else if (session.snapshotEnabled && !topology.capabilities.supportsSnapshotReads) { + return callback(new MongoCompatibilityError('Snapshot reads require MongoDB 5.0 or later')); + } + } else { + // no session support + if (session && session.explicit) { + // If the user passed an explicit session and we are still, after server selection, + // trying to run against a topology that doesn't support sessions we error out. + return callback(new MongoCompatibilityError('Current topology does not support sessions')); + } else if (session && !session.explicit) { + // We do not have to worry about ending the session because the server session has not been acquired yet + delete operation.options.session; + operation.clearSession(); + session = undefined; + } + } + + try { + executeWithServerSelection(topology, session, operation, (error, result) => { + if (session?.owner != null && session.owner === owner) { + return session.endSession(endSessionError => callback(endSessionError ?? error, result)); + } + + callback(error, result); + }); + } catch (error) { + if (session?.owner != null && session.owner === owner) { + session.endSession().catch(() => null); + } + + throw error; + } + }); +} + +function executeWithServerSelection( + topology: Topology, + session: ClientSession | undefined, + operation: AbstractOperation, + callback: Callback +) { + const readPreference = operation.readPreference ?? ReadPreference.primary; + const inTransaction = !!session?.inTransaction(); + + if (inTransaction && !readPreference.equals(ReadPreference.primary)) { + return callback( + new MongoTransactionError( + `Read preference in a transaction must be primary, not: ${readPreference.mode}` + ) + ); + } + + if (session?.isPinned && session.transaction.isCommitted && !operation.bypassPinningCheck) { + session.unpin(); + } + + let selector: ReadPreference | ServerSelector; + + if (operation.hasAspect(Aspect.MUST_SELECT_SAME_SERVER)) { + // GetMore and KillCursor operations must always select the same server, but run through + // server selection to potentially force monitor checks if the server is + // in an unknown state. + selector = sameServerSelector(operation.server?.description); + } else if (operation.trySecondaryWrite) { + // If operation should try to write to secondary use the custom server selector + // otherwise provide the read preference. + selector = secondaryWritableServerSelector(topology.commonWireVersion, readPreference); + } else { + selector = readPreference; + } + + const serverSelectionOptions = { session }; + function retryOperation(originalError: MongoError) { + const isWriteOperation = operation.hasAspect(Aspect.WRITE_OPERATION); + const isReadOperation = operation.hasAspect(Aspect.READ_OPERATION); + + if (isWriteOperation && originalError.code === MMAPv1_RETRY_WRITES_ERROR_CODE) { + return callback( + new MongoServerError({ + message: MMAPv1_RETRY_WRITES_ERROR_MESSAGE, + errmsg: MMAPv1_RETRY_WRITES_ERROR_MESSAGE, + originalError + }) + ); + } + + if (isWriteOperation && !isRetryableWriteError(originalError)) { + return callback(originalError); + } + + if (isReadOperation && !isRetryableReadError(originalError)) { + return callback(originalError); + } + + if ( + originalError instanceof MongoNetworkError && + session?.isPinned && + !session.inTransaction() && + operation.hasAspect(Aspect.CURSOR_CREATING) + ) { + // If we have a cursor and the initial command fails with a network error, + // we can retry it on another connection. So we need to check it back in, clear the + // pool for the service id, and retry again. + session.unpin({ force: true, forceClear: true }); + } + + // select a new server, and attempt to retry the operation + topology.selectServer(selector, serverSelectionOptions, (error?: Error, server?: Server) => { + if (!error && isWriteOperation && !supportsRetryableWrites(server)) { + return callback( + new MongoUnexpectedServerResponseError( + 'Selected server does not support retryable writes' + ) + ); + } + + if (error || !server) { + return callback( + error ?? new MongoUnexpectedServerResponseError('Server selection failed without error') + ); + } + + operation.execute(server, session, callback); + }); + } + + if ( + readPreference && + !readPreference.equals(ReadPreference.primary) && + session?.inTransaction() + ) { + callback( + new MongoTransactionError( + `Read preference in a transaction must be primary, not: ${readPreference.mode}` + ) + ); + + return; + } + + // select a server, and execute the operation against it + topology.selectServer(selector, serverSelectionOptions, (error, server) => { + if (error || !server) { + return callback(error); + } + + if (session && operation.hasAspect(Aspect.RETRYABLE)) { + const willRetryRead = + topology.s.options.retryReads && !inTransaction && operation.canRetryRead; + + const willRetryWrite = + topology.s.options.retryWrites && + !inTransaction && + supportsRetryableWrites(server) && + operation.canRetryWrite; + + const hasReadAspect = operation.hasAspect(Aspect.READ_OPERATION); + const hasWriteAspect = operation.hasAspect(Aspect.WRITE_OPERATION); + + if ((hasReadAspect && willRetryRead) || (hasWriteAspect && willRetryWrite)) { + if (hasWriteAspect && willRetryWrite) { + operation.options.willRetryWrite = true; + session.incrementTransactionNumber(); + } + + return operation.execute(server, session, (error, result) => { + if (error instanceof MongoError) { + return retryOperation(error); + } else if (error) { + return callback(error); + } + callback(undefined, result); + }); + } + } + + return operation.execute(server, session, callback); + }); +} diff --git a/node_modules/mongodb/src/operations/find.ts b/node_modules/mongodb/src/operations/find.ts new file mode 100644 index 000000000..ba2e8cf74 --- /dev/null +++ b/node_modules/mongodb/src/operations/find.ts @@ -0,0 +1,288 @@ +import type { Document } from '../bson'; +import type { Collection } from '../collection'; +import { MongoCompatibilityError, MongoInvalidArgumentError } from '../error'; +import { ReadConcern } from '../read_concern'; +import type { Server } from '../sdam/server'; +import type { ClientSession } from '../sessions'; +import { formatSort, Sort } from '../sort'; +import { + Callback, + decorateWithExplain, + maxWireVersion, + MongoDBNamespace, + normalizeHintField +} from '../utils'; +import { CollationOptions, CommandOperation, CommandOperationOptions } from './command'; +import { Aspect, defineAspects, Hint } from './operation'; + +/** + * @public + * @typeParam TSchema - Unused schema definition, deprecated usage, only specify `FindOptions` with no generic + */ +// eslint-disable-next-line @typescript-eslint/no-unused-vars +export interface FindOptions extends CommandOperationOptions { + /** Sets the limit of documents returned in the query. */ + limit?: number; + /** Set to sort the documents coming back from the query. Array of indexes, `[['a', 1]]` etc. */ + sort?: Sort; + /** The fields to return in the query. Object of fields to either include or exclude (one of, not both), `{'a':1, 'b': 1}` **or** `{'a': 0, 'b': 0}` */ + projection?: Document; + /** Set to skip N documents ahead in your query (useful for pagination). */ + skip?: number; + /** Tell the query to use specific indexes in the query. Object of indexes to use, `{'_id':1}` */ + hint?: Hint; + /** Specify if the cursor can timeout. */ + timeout?: boolean; + /** Specify if the cursor is tailable. */ + tailable?: boolean; + /** Specify if the cursor is a tailable-await cursor. Requires `tailable` to be true */ + awaitData?: boolean; + /** Set the batchSize for the getMoreCommand when iterating over the query results. */ + batchSize?: number; + /** If true, returns only the index keys in the resulting documents. */ + returnKey?: boolean; + /** The inclusive lower bound for a specific index */ + min?: Document; + /** The exclusive upper bound for a specific index */ + max?: Document; + /** Number of milliseconds to wait before aborting the query. */ + maxTimeMS?: number; + /** The maximum amount of time for the server to wait on new documents to satisfy a tailable cursor query. Requires `tailable` and `awaitData` to be true */ + maxAwaitTimeMS?: number; + /** The server normally times out idle cursors after an inactivity period (10 minutes) to prevent excess memory use. Set this option to prevent that. */ + noCursorTimeout?: boolean; + /** Specify collation (MongoDB 3.4 or higher) settings for update operation (see 3.4 documentation for available fields). */ + collation?: CollationOptions; + /** Allows disk use for blocking sort operations exceeding 100MB memory. (MongoDB 3.2 or higher) */ + allowDiskUse?: boolean; + /** Determines whether to close the cursor after the first batch. Defaults to false. */ + singleBatch?: boolean; + /** For queries against a sharded collection, allows the command (or subsequent getMore commands) to return partial results, rather than an error, if one or more queried shards are unavailable. */ + allowPartialResults?: boolean; + /** Determines whether to return the record identifier for each document. If true, adds a field $recordId to the returned documents. */ + showRecordId?: boolean; + /** Map of parameter names and values that can be accessed using $$var (requires MongoDB 5.0). */ + let?: Document; + /** + * Option to enable an optimized code path for queries looking for a particular range of `ts` values in the oplog. Requires `tailable` to be true. + * @deprecated Starting from MongoDB 4.4 this flag is not needed and will be ignored. + */ + oplogReplay?: boolean; +} + +const SUPPORTS_WRITE_CONCERN_AND_COLLATION = 5; + +/** @internal */ +export class FindOperation extends CommandOperation { + override options: FindOptions; + filter: Document; + + constructor( + collection: Collection | undefined, + ns: MongoDBNamespace, + filter: Document = {}, + options: FindOptions = {} + ) { + super(collection, options); + + this.options = options; + this.ns = ns; + + if (typeof filter !== 'object' || Array.isArray(filter)) { + throw new MongoInvalidArgumentError('Query filter must be a plain object or ObjectId'); + } + + // If the filter is a buffer, validate that is a valid BSON document + if (Buffer.isBuffer(filter)) { + const objectSize = filter[0] | (filter[1] << 8) | (filter[2] << 16) | (filter[3] << 24); + if (objectSize !== filter.length) { + throw new MongoInvalidArgumentError( + `Query filter raw message size does not match message header size [${filter.length}] != [${objectSize}]` + ); + } + } + + // special case passing in an ObjectId as a filter + this.filter = filter != null && filter._bsontype === 'ObjectID' ? { _id: filter } : filter; + } + + override execute( + server: Server, + session: ClientSession | undefined, + callback: Callback + ): void { + this.server = server; + + const serverWireVersion = maxWireVersion(server); + const options = this.options; + if (options.allowDiskUse != null && serverWireVersion < 4) { + callback( + new MongoCompatibilityError('Option "allowDiskUse" is not supported on MongoDB < 3.2') + ); + return; + } + + if (options.collation && serverWireVersion < SUPPORTS_WRITE_CONCERN_AND_COLLATION) { + callback( + new MongoCompatibilityError( + `Server ${server.name}, which reports wire version ${serverWireVersion}, does not support collation` + ) + ); + + return; + } + + let findCommand = makeFindCommand(this.ns, this.filter, options); + if (this.explain) { + findCommand = decorateWithExplain(findCommand, this.explain); + } + + server.command( + this.ns, + findCommand, + { + ...this.options, + ...this.bsonOptions, + documentsReturnedIn: 'firstBatch', + session + }, + callback + ); + } +} + +function makeFindCommand(ns: MongoDBNamespace, filter: Document, options: FindOptions): Document { + const findCommand: Document = { + find: ns.collection, + filter + }; + + if (options.sort) { + findCommand.sort = formatSort(options.sort); + } + + if (options.projection) { + let projection = options.projection; + if (projection && Array.isArray(projection)) { + projection = projection.length + ? projection.reduce((result, field) => { + result[field] = 1; + return result; + }, {}) + : { _id: 1 }; + } + + findCommand.projection = projection; + } + + if (options.hint) { + findCommand.hint = normalizeHintField(options.hint); + } + + if (typeof options.skip === 'number') { + findCommand.skip = options.skip; + } + + if (typeof options.limit === 'number') { + if (options.limit < 0) { + findCommand.limit = -options.limit; + findCommand.singleBatch = true; + } else { + findCommand.limit = options.limit; + } + } + + if (typeof options.batchSize === 'number') { + if (options.batchSize < 0) { + if ( + options.limit && + options.limit !== 0 && + Math.abs(options.batchSize) < Math.abs(options.limit) + ) { + findCommand.limit = -options.batchSize; + } + + findCommand.singleBatch = true; + } else { + findCommand.batchSize = options.batchSize; + } + } + + if (typeof options.singleBatch === 'boolean') { + findCommand.singleBatch = options.singleBatch; + } + + // we check for undefined specifically here to allow falsy values + // eslint-disable-next-line no-restricted-syntax + if (options.comment !== undefined) { + findCommand.comment = options.comment; + } + + if (typeof options.maxTimeMS === 'number') { + findCommand.maxTimeMS = options.maxTimeMS; + } + + const readConcern = ReadConcern.fromOptions(options); + if (readConcern) { + findCommand.readConcern = readConcern.toJSON(); + } + + if (options.max) { + findCommand.max = options.max; + } + + if (options.min) { + findCommand.min = options.min; + } + + if (typeof options.returnKey === 'boolean') { + findCommand.returnKey = options.returnKey; + } + + if (typeof options.showRecordId === 'boolean') { + findCommand.showRecordId = options.showRecordId; + } + + if (typeof options.tailable === 'boolean') { + findCommand.tailable = options.tailable; + } + + if (typeof options.oplogReplay === 'boolean') { + findCommand.oplogReplay = options.oplogReplay; + } + + if (typeof options.timeout === 'boolean') { + findCommand.noCursorTimeout = !options.timeout; + } else if (typeof options.noCursorTimeout === 'boolean') { + findCommand.noCursorTimeout = options.noCursorTimeout; + } + + if (typeof options.awaitData === 'boolean') { + findCommand.awaitData = options.awaitData; + } + + if (typeof options.allowPartialResults === 'boolean') { + findCommand.allowPartialResults = options.allowPartialResults; + } + + if (options.collation) { + findCommand.collation = options.collation; + } + + if (typeof options.allowDiskUse === 'boolean') { + findCommand.allowDiskUse = options.allowDiskUse; + } + + if (options.let) { + findCommand.let = options.let; + } + + return findCommand; +} + +defineAspects(FindOperation, [ + Aspect.READ_OPERATION, + Aspect.RETRYABLE, + Aspect.EXPLAINABLE, + Aspect.CURSOR_CREATING +]); diff --git a/node_modules/mongodb/src/operations/find_and_modify.ts b/node_modules/mongodb/src/operations/find_and_modify.ts new file mode 100644 index 000000000..12d7ba504 --- /dev/null +++ b/node_modules/mongodb/src/operations/find_and_modify.ts @@ -0,0 +1,295 @@ +import type { Document } from '../bson'; +import type { Collection } from '../collection'; +import { MongoCompatibilityError, MongoInvalidArgumentError } from '../error'; +import { ReadPreference } from '../read_preference'; +import type { Server } from '../sdam/server'; +import type { ClientSession } from '../sessions'; +import { formatSort, Sort, SortForCmd } from '../sort'; +import { Callback, decorateWithCollation, hasAtomicOperators, maxWireVersion } from '../utils'; +import type { WriteConcern, WriteConcernSettings } from '../write_concern'; +import { CommandOperation, CommandOperationOptions } from './command'; +import { Aspect, defineAspects } from './operation'; + +/** @public */ +export const ReturnDocument = Object.freeze({ + BEFORE: 'before', + AFTER: 'after' +} as const); + +/** @public */ +export type ReturnDocument = typeof ReturnDocument[keyof typeof ReturnDocument]; + +/** @public */ +export interface FindOneAndDeleteOptions extends CommandOperationOptions { + /** An optional hint for query optimization. See the {@link https://docs.mongodb.com/manual/reference/command/update/#update-command-hint|update command} reference for more information.*/ + hint?: Document; + /** Limits the fields to return for all matching documents. */ + projection?: Document; + /** Determines which document the operation modifies if the query selects multiple documents. */ + sort?: Sort; + /** Map of parameter names and values that can be accessed using $$var (requires MongoDB 5.0). */ + let?: Document; +} + +/** @public */ +export interface FindOneAndReplaceOptions extends CommandOperationOptions { + /** Allow driver to bypass schema validation in MongoDB 3.2 or higher. */ + bypassDocumentValidation?: boolean; + /** An optional hint for query optimization. See the {@link https://docs.mongodb.com/manual/reference/command/update/#update-command-hint|update command} reference for more information.*/ + hint?: Document; + /** Limits the fields to return for all matching documents. */ + projection?: Document; + /** When set to 'after', returns the updated document rather than the original. The default is 'before'. */ + returnDocument?: ReturnDocument; + /** Determines which document the operation modifies if the query selects multiple documents. */ + sort?: Sort; + /** Upsert the document if it does not exist. */ + upsert?: boolean; + /** Map of parameter names and values that can be accessed using $$var (requires MongoDB 5.0). */ + let?: Document; +} + +/** @public */ +export interface FindOneAndUpdateOptions extends CommandOperationOptions { + /** Optional list of array filters referenced in filtered positional operators */ + arrayFilters?: Document[]; + /** Allow driver to bypass schema validation in MongoDB 3.2 or higher. */ + bypassDocumentValidation?: boolean; + /** An optional hint for query optimization. See the {@link https://docs.mongodb.com/manual/reference/command/update/#update-command-hint|update command} reference for more information.*/ + hint?: Document; + /** Limits the fields to return for all matching documents. */ + projection?: Document; + /** When set to 'after', returns the updated document rather than the original. The default is 'before'. */ + returnDocument?: ReturnDocument; + /** Determines which document the operation modifies if the query selects multiple documents. */ + sort?: Sort; + /** Upsert the document if it does not exist. */ + upsert?: boolean; + /** Map of parameter names and values that can be accessed using $$var (requires MongoDB 5.0). */ + let?: Document; +} + +/** @internal */ +interface FindAndModifyCmdBase { + remove: boolean; + new: boolean; + upsert: boolean; + update?: Document; + sort?: SortForCmd; + fields?: Document; + bypassDocumentValidation?: boolean; + arrayFilters?: Document[]; + maxTimeMS?: number; + let?: Document; + writeConcern?: WriteConcern | WriteConcernSettings; + /** + * Comment to apply to the operation. + * + * In server versions pre-4.4, 'comment' must be string. A server + * error will be thrown if any other type is provided. + * + * In server versions 4.4 and above, 'comment' can be any valid BSON type. + */ + comment?: unknown; +} + +function configureFindAndModifyCmdBaseUpdateOpts( + cmdBase: FindAndModifyCmdBase, + options: FindOneAndReplaceOptions | FindOneAndUpdateOptions +): FindAndModifyCmdBase { + cmdBase.new = options.returnDocument === ReturnDocument.AFTER; + cmdBase.upsert = options.upsert === true; + + if (options.bypassDocumentValidation === true) { + cmdBase.bypassDocumentValidation = options.bypassDocumentValidation; + } + return cmdBase; +} + +/** @internal */ +class FindAndModifyOperation extends CommandOperation { + override options: FindOneAndReplaceOptions | FindOneAndUpdateOptions | FindOneAndDeleteOptions; + cmdBase: FindAndModifyCmdBase; + collection: Collection; + query: Document; + doc?: Document; + + constructor( + collection: Collection, + query: Document, + options: FindOneAndReplaceOptions | FindOneAndUpdateOptions | FindOneAndDeleteOptions + ) { + super(collection, options); + this.options = options ?? {}; + this.cmdBase = { + remove: false, + new: false, + upsert: false + }; + + const sort = formatSort(options.sort); + if (sort) { + this.cmdBase.sort = sort; + } + + if (options.projection) { + this.cmdBase.fields = options.projection; + } + + if (options.maxTimeMS) { + this.cmdBase.maxTimeMS = options.maxTimeMS; + } + + // Decorate the findAndModify command with the write Concern + if (options.writeConcern) { + this.cmdBase.writeConcern = options.writeConcern; + } + + if (options.let) { + this.cmdBase.let = options.let; + } + + // we check for undefined specifically here to allow falsy values + // eslint-disable-next-line no-restricted-syntax + if (options.comment !== undefined) { + this.cmdBase.comment = options.comment; + } + + // force primary read preference + this.readPreference = ReadPreference.primary; + + this.collection = collection; + this.query = query; + } + + override execute( + server: Server, + session: ClientSession | undefined, + callback: Callback + ): void { + const coll = this.collection; + const query = this.query; + const options = { ...this.options, ...this.bsonOptions }; + + // Create findAndModify command object + const cmd: Document = { + findAndModify: coll.collectionName, + query: query, + ...this.cmdBase + }; + + // Have we specified collation + try { + decorateWithCollation(cmd, coll, options); + } catch (err) { + return callback(err); + } + + if (options.hint) { + // TODO: once this method becomes a CommandOperation we will have the server + // in place to check. + const unacknowledgedWrite = this.writeConcern?.w === 0; + if (unacknowledgedWrite || maxWireVersion(server) < 8) { + callback( + new MongoCompatibilityError( + 'The current topology does not support a hint on findAndModify commands' + ) + ); + + return; + } + + cmd.hint = options.hint; + } + + if (this.explain && maxWireVersion(server) < 4) { + callback( + new MongoCompatibilityError( + `Server ${server.name} does not support explain on findAndModify` + ) + ); + return; + } + + // Execute the command + super.executeCommand(server, session, cmd, (err, result) => { + if (err) return callback(err); + return callback(undefined, result); + }); + } +} + +/** @internal */ +export class FindOneAndDeleteOperation extends FindAndModifyOperation { + constructor(collection: Collection, filter: Document, options: FindOneAndDeleteOptions) { + // Basic validation + if (filter == null || typeof filter !== 'object') { + throw new MongoInvalidArgumentError('Argument "filter" must be an object'); + } + + super(collection, filter, options); + this.cmdBase.remove = true; + } +} + +/** @internal */ +export class FindOneAndReplaceOperation extends FindAndModifyOperation { + constructor( + collection: Collection, + filter: Document, + replacement: Document, + options: FindOneAndReplaceOptions + ) { + if (filter == null || typeof filter !== 'object') { + throw new MongoInvalidArgumentError('Argument "filter" must be an object'); + } + + if (replacement == null || typeof replacement !== 'object') { + throw new MongoInvalidArgumentError('Argument "replacement" must be an object'); + } + + if (hasAtomicOperators(replacement)) { + throw new MongoInvalidArgumentError('Replacement document must not contain atomic operators'); + } + + super(collection, filter, options); + this.cmdBase.update = replacement; + configureFindAndModifyCmdBaseUpdateOpts(this.cmdBase, options); + } +} + +/** @internal */ +export class FindOneAndUpdateOperation extends FindAndModifyOperation { + constructor( + collection: Collection, + filter: Document, + update: Document, + options: FindOneAndUpdateOptions + ) { + if (filter == null || typeof filter !== 'object') { + throw new MongoInvalidArgumentError('Argument "filter" must be an object'); + } + + if (update == null || typeof update !== 'object') { + throw new MongoInvalidArgumentError('Argument "update" must be an object'); + } + + if (!hasAtomicOperators(update)) { + throw new MongoInvalidArgumentError('Update document requires atomic operators'); + } + + super(collection, filter, options); + this.cmdBase.update = update; + configureFindAndModifyCmdBaseUpdateOpts(this.cmdBase, options); + + if (options.arrayFilters) { + this.cmdBase.arrayFilters = options.arrayFilters; + } + } +} + +defineAspects(FindAndModifyOperation, [ + Aspect.WRITE_OPERATION, + Aspect.RETRYABLE, + Aspect.EXPLAINABLE +]); diff --git a/node_modules/mongodb/src/operations/get_more.ts b/node_modules/mongodb/src/operations/get_more.ts new file mode 100644 index 000000000..c86c3f368 --- /dev/null +++ b/node_modules/mongodb/src/operations/get_more.ts @@ -0,0 +1,106 @@ +import type { Document, Long } from '../bson'; +import { MongoRuntimeError } from '../error'; +import type { Server } from '../sdam/server'; +import type { ClientSession } from '../sessions'; +import { Callback, maxWireVersion, MongoDBNamespace } from '../utils'; +import { AbstractOperation, Aspect, defineAspects, OperationOptions } from './operation'; + +/** @internal */ +export interface GetMoreOptions extends OperationOptions { + /** Set the batchSize for the getMoreCommand when iterating over the query results. */ + batchSize?: number; + /** + * Comment to apply to the operation. + * + * getMore only supports 'comment' in server versions 4.4 and above. + */ + comment?: unknown; + /** Number of milliseconds to wait before aborting the query. */ + maxTimeMS?: number; + /** TODO(NODE-4413): Address bug with maxAwaitTimeMS not being passed in from the cursor correctly */ + maxAwaitTimeMS?: number; +} + +/** + * GetMore command: https://www.mongodb.com/docs/manual/reference/command/getMore/ + * @internal + */ +export interface GetMoreCommand { + getMore: Long; + collection: string; + batchSize?: number; + maxTimeMS?: number; + /** Only supported on wire versions 10 or greater */ + comment?: unknown; +} + +/** @internal */ +export class GetMoreOperation extends AbstractOperation { + cursorId: Long; + override options: GetMoreOptions; + + constructor(ns: MongoDBNamespace, cursorId: Long, server: Server, options: GetMoreOptions) { + super(options); + + this.options = options; + this.ns = ns; + this.cursorId = cursorId; + this.server = server; + } + + /** + * Although there is a server already associated with the get more operation, the signature + * for execute passes a server so we will just use that one. + */ + override execute( + server: Server, + session: ClientSession | undefined, + callback: Callback + ): void { + if (server !== this.server) { + return callback( + new MongoRuntimeError('Getmore must run on the same server operation began on') + ); + } + + if (this.cursorId == null || this.cursorId.isZero()) { + return callback(new MongoRuntimeError('Unable to iterate cursor with no id')); + } + + const collection = this.ns.collection; + if (collection == null) { + // Cursors should have adopted the namespace returned by MongoDB + // which should always defined a collection name (even a pseudo one, ex. db.aggregate()) + return callback(new MongoRuntimeError('A collection name must be determined before getMore')); + } + + const getMoreCmd: GetMoreCommand = { + getMore: this.cursorId, + collection + }; + + if (typeof this.options.batchSize === 'number') { + getMoreCmd.batchSize = Math.abs(this.options.batchSize); + } + + if (typeof this.options.maxAwaitTimeMS === 'number') { + getMoreCmd.maxTimeMS = this.options.maxAwaitTimeMS; + } + + // we check for undefined specifically here to allow falsy values + // eslint-disable-next-line no-restricted-syntax + if (this.options.comment !== undefined && maxWireVersion(server) >= 9) { + getMoreCmd.comment = this.options.comment; + } + + const commandOptions = { + returnFieldSelector: null, + documentsReturnedIn: 'nextBatch', + ...this.options + }; + + server.command(this.ns, getMoreCmd, commandOptions, callback); + } +} + +defineAspects(GetMoreOperation, [Aspect.READ_OPERATION, Aspect.MUST_SELECT_SAME_SERVER]); diff --git a/node_modules/mongodb/src/operations/indexes.ts b/node_modules/mongodb/src/operations/indexes.ts new file mode 100644 index 000000000..f1dfceeaa --- /dev/null +++ b/node_modules/mongodb/src/operations/indexes.ts @@ -0,0 +1,500 @@ +import type { Document } from '../bson'; +import type { Collection } from '../collection'; +import type { Db } from '../db'; +import { MongoCompatibilityError, MONGODB_ERROR_CODES, MongoServerError } from '../error'; +import type { OneOrMore } from '../mongo_types'; +import { ReadPreference } from '../read_preference'; +import type { Server } from '../sdam/server'; +import type { ClientSession } from '../sessions'; +import { Callback, isObject, maxWireVersion, MongoDBNamespace } from '../utils'; +import { + CollationOptions, + CommandOperation, + CommandOperationOptions, + OperationParent +} from './command'; +import { indexInformation, IndexInformationOptions } from './common_functions'; +import { AbstractOperation, Aspect, defineAspects } from './operation'; + +const VALID_INDEX_OPTIONS = new Set([ + 'background', + 'unique', + 'name', + 'partialFilterExpression', + 'sparse', + 'hidden', + 'expireAfterSeconds', + 'storageEngine', + 'collation', + 'version', + + // text indexes + 'weights', + 'default_language', + 'language_override', + 'textIndexVersion', + + // 2d-sphere indexes + '2dsphereIndexVersion', + + // 2d indexes + 'bits', + 'min', + 'max', + + // geoHaystack Indexes + 'bucketSize', + + // wildcard indexes + 'wildcardProjection' +]); + +/** @public */ +export type IndexDirection = -1 | 1 | '2d' | '2dsphere' | 'text' | 'geoHaystack' | number; +function isIndexDirection(x: unknown): x is IndexDirection { + return ( + typeof x === 'number' || x === '2d' || x === '2dsphere' || x === 'text' || x === 'geoHaystack' + ); +} +/** @public */ +export type IndexSpecification = OneOrMore< + | string + | [string, IndexDirection] + | { [key: string]: IndexDirection } + | Map +>; + +/** @public */ +export interface IndexDescription + extends Pick< + CreateIndexesOptions, + | 'background' + | 'unique' + | 'partialFilterExpression' + | 'sparse' + | 'hidden' + | 'expireAfterSeconds' + | 'storageEngine' + | 'version' + | 'weights' + | 'default_language' + | 'language_override' + | 'textIndexVersion' + | '2dsphereIndexVersion' + | 'bits' + | 'min' + | 'max' + | 'bucketSize' + | 'wildcardProjection' + > { + collation?: CollationOptions; + name?: string; + key: { [key: string]: IndexDirection } | Map; +} + +/** @public */ +export interface CreateIndexesOptions extends CommandOperationOptions { + /** Creates the index in the background, yielding whenever possible. */ + background?: boolean; + /** Creates an unique index. */ + unique?: boolean; + /** Override the autogenerated index name (useful if the resulting name is larger than 128 bytes) */ + name?: string; + /** Creates a partial index based on the given filter object (MongoDB 3.2 or higher) */ + partialFilterExpression?: Document; + /** Creates a sparse index. */ + sparse?: boolean; + /** Allows you to expire data on indexes applied to a data (MongoDB 2.2 or higher) */ + expireAfterSeconds?: number; + /** Allows users to configure the storage engine on a per-index basis when creating an index. (MongoDB 3.0 or higher) */ + storageEngine?: Document; + /** (MongoDB 4.4. or higher) Specifies how many data-bearing members of a replica set, including the primary, must complete the index builds successfully before the primary marks the indexes as ready. This option accepts the same values for the "w" field in a write concern plus "votingMembers", which indicates all voting data-bearing nodes. */ + commitQuorum?: number | string; + /** Specifies the index version number, either 0 or 1. */ + version?: number; + // text indexes + weights?: Document; + default_language?: string; + language_override?: string; + textIndexVersion?: number; + // 2d-sphere indexes + '2dsphereIndexVersion'?: number; + // 2d indexes + bits?: number; + /** For geospatial indexes set the lower bound for the co-ordinates. */ + min?: number; + /** For geospatial indexes set the high bound for the co-ordinates. */ + max?: number; + // geoHaystack Indexes + bucketSize?: number; + // wildcard indexes + wildcardProjection?: Document; + /** Specifies that the index should exist on the target collection but should not be used by the query planner when executing operations. (MongoDB 4.4 or higher) */ + hidden?: boolean; +} + +function isSingleIndexTuple(t: unknown): t is [string, IndexDirection] { + return Array.isArray(t) && t.length === 2 && isIndexDirection(t[1]); +} + +function makeIndexSpec( + indexSpec: IndexSpecification, + options?: CreateIndexesOptions +): IndexDescription { + const key: Map = new Map(); + + const indexSpecs = + !Array.isArray(indexSpec) || isSingleIndexTuple(indexSpec) ? [indexSpec] : indexSpec; + + // Iterate through array and handle different types + for (const spec of indexSpecs) { + if (typeof spec === 'string') { + key.set(spec, 1); + } else if (Array.isArray(spec)) { + key.set(spec[0], spec[1] ?? 1); + } else if (spec instanceof Map) { + for (const [property, value] of spec) { + key.set(property, value); + } + } else if (isObject(spec)) { + for (const [property, value] of Object.entries(spec)) { + key.set(property, value); + } + } + } + + return { ...options, key }; +} + +/** @internal */ +export class IndexesOperation extends AbstractOperation { + override options: IndexInformationOptions; + collection: Collection; + + constructor(collection: Collection, options: IndexInformationOptions) { + super(options); + this.options = options; + this.collection = collection; + } + + override execute( + server: Server, + session: ClientSession | undefined, + callback: Callback + ): void { + const coll = this.collection; + const options = this.options; + + indexInformation( + coll.s.db, + coll.collectionName, + { full: true, ...options, readPreference: this.readPreference, session }, + callback + ); + } +} + +/** @internal */ +export class CreateIndexesOperation< + T extends string | string[] = string[] +> extends CommandOperation { + override options: CreateIndexesOptions; + collectionName: string; + indexes: ReadonlyArray & { key: Map }>; + + constructor( + parent: OperationParent, + collectionName: string, + indexes: IndexDescription[], + options?: CreateIndexesOptions + ) { + super(parent, options); + + this.options = options ?? {}; + this.collectionName = collectionName; + this.indexes = indexes.map(userIndex => { + // Ensure the key is a Map to preserve index key ordering + const key = + userIndex.key instanceof Map ? userIndex.key : new Map(Object.entries(userIndex.key)); + const name = userIndex.name != null ? userIndex.name : Array.from(key).flat().join('_'); + const validIndexOptions = Object.fromEntries( + Object.entries({ ...userIndex }).filter(([optionName]) => + VALID_INDEX_OPTIONS.has(optionName) + ) + ); + return { + ...validIndexOptions, + name, + key + }; + }); + } + + override execute( + server: Server, + session: ClientSession | undefined, + callback: Callback + ): void { + const options = this.options; + const indexes = this.indexes; + + const serverWireVersion = maxWireVersion(server); + + const cmd: Document = { createIndexes: this.collectionName, indexes }; + + if (options.commitQuorum != null) { + if (serverWireVersion < 9) { + callback( + new MongoCompatibilityError( + 'Option `commitQuorum` for `createIndexes` not supported on servers < 4.4' + ) + ); + return; + } + cmd.commitQuorum = options.commitQuorum; + } + + // collation is set on each index, it should not be defined at the root + this.options.collation = undefined; + + super.executeCommand(server, session, cmd, err => { + if (err) { + callback(err); + return; + } + + const indexNames = indexes.map(index => index.name || ''); + callback(undefined, indexNames as T); + }); + } +} + +/** @internal */ +export class CreateIndexOperation extends CreateIndexesOperation { + constructor( + parent: OperationParent, + collectionName: string, + indexSpec: IndexSpecification, + options?: CreateIndexesOptions + ) { + super(parent, collectionName, [makeIndexSpec(indexSpec, options)], options); + } + override execute( + server: Server, + session: ClientSession | undefined, + callback: Callback + ): void { + super.execute(server, session, (err, indexNames) => { + if (err || !indexNames) return callback(err); + return callback(undefined, indexNames[0]); + }); + } +} + +/** @internal */ +export class EnsureIndexOperation extends CreateIndexOperation { + db: Db; + + constructor( + db: Db, + collectionName: string, + indexSpec: IndexSpecification, + options?: CreateIndexesOptions + ) { + super(db, collectionName, indexSpec, options); + + this.readPreference = ReadPreference.primary; + this.db = db; + this.collectionName = collectionName; + } + + override execute(server: Server, session: ClientSession | undefined, callback: Callback): void { + const indexName = this.indexes[0].name; + const cursor = this.db.collection(this.collectionName).listIndexes({ session }); + cursor.toArray((err, indexes) => { + /// ignore "NamespaceNotFound" errors + if (err && (err as MongoServerError).code !== MONGODB_ERROR_CODES.NamespaceNotFound) { + return callback(err); + } + + if (indexes) { + indexes = Array.isArray(indexes) ? indexes : [indexes]; + if (indexes.some(index => index.name === indexName)) { + callback(undefined, indexName); + return; + } + } + + super.execute(server, session, callback); + }); + } +} + +/** @public */ +export type DropIndexesOptions = CommandOperationOptions; + +/** @internal */ +export class DropIndexOperation extends CommandOperation { + override options: DropIndexesOptions; + collection: Collection; + indexName: string; + + constructor(collection: Collection, indexName: string, options?: DropIndexesOptions) { + super(collection, options); + + this.options = options ?? {}; + this.collection = collection; + this.indexName = indexName; + } + + override execute( + server: Server, + session: ClientSession | undefined, + callback: Callback + ): void { + const cmd = { dropIndexes: this.collection.collectionName, index: this.indexName }; + super.executeCommand(server, session, cmd, callback); + } +} + +/** @internal */ +export class DropIndexesOperation extends DropIndexOperation { + constructor(collection: Collection, options: DropIndexesOptions) { + super(collection, '*', options); + } + + override execute(server: Server, session: ClientSession | undefined, callback: Callback): void { + super.execute(server, session, err => { + if (err) return callback(err, false); + callback(undefined, true); + }); + } +} + +/** @public */ +export interface ListIndexesOptions extends CommandOperationOptions { + /** The batchSize for the returned command cursor or if pre 2.8 the systems batch collection */ + batchSize?: number; +} + +/** @internal */ +export class ListIndexesOperation extends CommandOperation { + override options: ListIndexesOptions; + collectionNamespace: MongoDBNamespace; + + constructor(collection: Collection, options?: ListIndexesOptions) { + super(collection, options); + + this.options = options ?? {}; + this.collectionNamespace = collection.s.namespace; + } + + override execute( + server: Server, + session: ClientSession | undefined, + callback: Callback + ): void { + const serverWireVersion = maxWireVersion(server); + + const cursor = this.options.batchSize ? { batchSize: this.options.batchSize } : {}; + + const command: Document = { listIndexes: this.collectionNamespace.collection, cursor }; + + // we check for undefined specifically here to allow falsy values + // eslint-disable-next-line no-restricted-syntax + if (serverWireVersion >= 9 && this.options.comment !== undefined) { + command.comment = this.options.comment; + } + + super.executeCommand(server, session, command, callback); + } +} + +/** @internal */ +export class IndexExistsOperation extends AbstractOperation { + override options: IndexInformationOptions; + collection: Collection; + indexes: string | string[]; + + constructor( + collection: Collection, + indexes: string | string[], + options: IndexInformationOptions + ) { + super(options); + this.options = options; + this.collection = collection; + this.indexes = indexes; + } + + override execute( + server: Server, + session: ClientSession | undefined, + callback: Callback + ): void { + const coll = this.collection; + const indexes = this.indexes; + + indexInformation( + coll.s.db, + coll.collectionName, + { ...this.options, readPreference: this.readPreference, session }, + (err, indexInformation) => { + // If we have an error return + if (err != null) return callback(err); + // Let's check for the index names + if (!Array.isArray(indexes)) return callback(undefined, indexInformation[indexes] != null); + // Check in list of indexes + for (let i = 0; i < indexes.length; i++) { + if (indexInformation[indexes[i]] == null) { + return callback(undefined, false); + } + } + + // All keys found return true + return callback(undefined, true); + } + ); + } +} + +/** @internal */ +export class IndexInformationOperation extends AbstractOperation { + override options: IndexInformationOptions; + db: Db; + name: string; + + constructor(db: Db, name: string, options?: IndexInformationOptions) { + super(options); + this.options = options ?? {}; + this.db = db; + this.name = name; + } + + override execute( + server: Server, + session: ClientSession | undefined, + callback: Callback + ): void { + const db = this.db; + const name = this.name; + + indexInformation( + db, + name, + { ...this.options, readPreference: this.readPreference, session }, + callback + ); + } +} + +defineAspects(ListIndexesOperation, [ + Aspect.READ_OPERATION, + Aspect.RETRYABLE, + Aspect.CURSOR_CREATING +]); +defineAspects(CreateIndexesOperation, [Aspect.WRITE_OPERATION]); +defineAspects(CreateIndexOperation, [Aspect.WRITE_OPERATION]); +defineAspects(EnsureIndexOperation, [Aspect.WRITE_OPERATION]); +defineAspects(DropIndexOperation, [Aspect.WRITE_OPERATION]); +defineAspects(DropIndexesOperation, [Aspect.WRITE_OPERATION]); diff --git a/node_modules/mongodb/src/operations/insert.ts b/node_modules/mongodb/src/operations/insert.ts new file mode 100644 index 000000000..6475a5cfe --- /dev/null +++ b/node_modules/mongodb/src/operations/insert.ts @@ -0,0 +1,158 @@ +import type { Document } from '../bson'; +import type { BulkWriteOptions } from '../bulk/common'; +import type { Collection } from '../collection'; +import { MongoInvalidArgumentError, MongoServerError } from '../error'; +import type { InferIdType } from '../mongo_types'; +import type { Server } from '../sdam/server'; +import type { ClientSession } from '../sessions'; +import type { Callback, MongoDBNamespace } from '../utils'; +import { WriteConcern } from '../write_concern'; +import { BulkWriteOperation } from './bulk_write'; +import { CommandOperation, CommandOperationOptions } from './command'; +import { prepareDocs } from './common_functions'; +import { AbstractOperation, Aspect, defineAspects } from './operation'; + +/** @internal */ +export class InsertOperation extends CommandOperation { + override options: BulkWriteOptions; + documents: Document[]; + + constructor(ns: MongoDBNamespace, documents: Document[], options: BulkWriteOptions) { + super(undefined, options); + this.options = { ...options, checkKeys: options.checkKeys ?? false }; + this.ns = ns; + this.documents = documents; + } + + override execute( + server: Server, + session: ClientSession | undefined, + callback: Callback + ): void { + const options = this.options ?? {}; + const ordered = typeof options.ordered === 'boolean' ? options.ordered : true; + const command: Document = { + insert: this.ns.collection, + documents: this.documents, + ordered + }; + + if (typeof options.bypassDocumentValidation === 'boolean') { + command.bypassDocumentValidation = options.bypassDocumentValidation; + } + + // we check for undefined specifically here to allow falsy values + // eslint-disable-next-line no-restricted-syntax + if (options.comment !== undefined) { + command.comment = options.comment; + } + + super.executeCommand(server, session, command, callback); + } +} + +/** @public */ +export interface InsertOneOptions extends CommandOperationOptions { + /** Allow driver to bypass schema validation in MongoDB 3.2 or higher. */ + bypassDocumentValidation?: boolean; + /** Force server to assign _id values instead of driver. */ + forceServerObjectId?: boolean; +} + +/** @public */ +export interface InsertOneResult { + /** Indicates whether this write result was acknowledged. If not, then all other members of this result will be undefined */ + acknowledged: boolean; + /** The identifier that was inserted. If the server generated the identifier, this value will be null as the driver does not have access to that data */ + insertedId: InferIdType; +} + +export class InsertOneOperation extends InsertOperation { + constructor(collection: Collection, doc: Document, options: InsertOneOptions) { + super(collection.s.namespace, prepareDocs(collection, [doc], options), options); + } + + override execute( + server: Server, + session: ClientSession | undefined, + callback: Callback + ): void { + super.execute(server, session, (err, res) => { + if (err || res == null) return callback(err); + if (res.code) return callback(new MongoServerError(res)); + if (res.writeErrors) { + // This should be a WriteError but we can't change it now because of error hierarchy + return callback(new MongoServerError(res.writeErrors[0])); + } + + callback(undefined, { + acknowledged: this.writeConcern?.w !== 0 ?? true, + insertedId: this.documents[0]._id + }); + }); + } +} + +/** @public */ +export interface InsertManyResult { + /** Indicates whether this write result was acknowledged. If not, then all other members of this result will be undefined */ + acknowledged: boolean; + /** The number of inserted documents for this operations */ + insertedCount: number; + /** Map of the index of the inserted document to the id of the inserted document */ + insertedIds: { [key: number]: InferIdType }; +} + +/** @internal */ +export class InsertManyOperation extends AbstractOperation { + override options: BulkWriteOptions; + collection: Collection; + docs: Document[]; + + constructor(collection: Collection, docs: Document[], options: BulkWriteOptions) { + super(options); + + if (!Array.isArray(docs)) { + throw new MongoInvalidArgumentError('Argument "docs" must be an array of documents'); + } + + this.options = options; + this.collection = collection; + this.docs = docs; + } + + override execute( + server: Server, + session: ClientSession | undefined, + callback: Callback + ): void { + const coll = this.collection; + const options = { ...this.options, ...this.bsonOptions, readPreference: this.readPreference }; + const writeConcern = WriteConcern.fromOptions(options); + const bulkWriteOperation = new BulkWriteOperation( + coll, + prepareDocs(coll, this.docs, options).map(document => ({ insertOne: { document } })), + options + ); + + bulkWriteOperation.execute(server, session, (err, res) => { + if (err || res == null) { + if (err && err.message === 'Operation must be an object with an operation key') { + err = new MongoInvalidArgumentError( + 'Collection.insertMany() cannot be called with an array that has null/undefined values' + ); + } + return callback(err); + } + callback(undefined, { + acknowledged: writeConcern?.w !== 0 ?? true, + insertedCount: res.insertedCount, + insertedIds: res.insertedIds + }); + }); + } +} + +defineAspects(InsertOperation, [Aspect.RETRYABLE, Aspect.WRITE_OPERATION]); +defineAspects(InsertOneOperation, [Aspect.RETRYABLE, Aspect.WRITE_OPERATION]); +defineAspects(InsertManyOperation, [Aspect.WRITE_OPERATION]); diff --git a/node_modules/mongodb/src/operations/is_capped.ts b/node_modules/mongodb/src/operations/is_capped.ts new file mode 100644 index 000000000..938c72f41 --- /dev/null +++ b/node_modules/mongodb/src/operations/is_capped.ts @@ -0,0 +1,42 @@ +import type { Collection } from '../collection'; +import { MongoAPIError } from '../error'; +import type { Server } from '../sdam/server'; +import type { ClientSession } from '../sessions'; +import type { Callback } from '../utils'; +import { AbstractOperation, OperationOptions } from './operation'; + +/** @internal */ +export class IsCappedOperation extends AbstractOperation { + override options: OperationOptions; + collection: Collection; + + constructor(collection: Collection, options: OperationOptions) { + super(options); + this.options = options; + this.collection = collection; + } + + override execute( + server: Server, + session: ClientSession | undefined, + callback: Callback + ): void { + const coll = this.collection; + + coll.s.db + .listCollections( + { name: coll.collectionName }, + { ...this.options, nameOnly: false, readPreference: this.readPreference, session } + ) + .toArray((err, collections) => { + if (err || !collections) return callback(err); + if (collections.length === 0) { + // TODO(NODE-3485) + return callback(new MongoAPIError(`collection ${coll.namespace} not found`)); + } + + const collOptions = collections[0].options; + callback(undefined, !!(collOptions && collOptions.capped)); + }); + } +} diff --git a/node_modules/mongodb/src/operations/kill_cursors.ts b/node_modules/mongodb/src/operations/kill_cursors.ts new file mode 100644 index 000000000..59c78c15d --- /dev/null +++ b/node_modules/mongodb/src/operations/kill_cursors.ts @@ -0,0 +1,53 @@ +import type { Long } from '../bson'; +import { MongoRuntimeError } from '../error'; +import type { Server } from '../sdam/server'; +import type { ClientSession } from '../sessions'; +import type { Callback, MongoDBNamespace } from '../utils'; +import { AbstractOperation, Aspect, defineAspects, OperationOptions } from './operation'; + +/** + * https://www.mongodb.com/docs/manual/reference/command/killCursors/ + * @internal + */ +interface KillCursorsCommand { + killCursors: string; + cursors: Long[]; + comment?: unknown; +} + +export class KillCursorsOperation extends AbstractOperation { + cursorId: Long; + + constructor(cursorId: Long, ns: MongoDBNamespace, server: Server, options: OperationOptions) { + super(options); + this.ns = ns; + this.cursorId = cursorId; + this.server = server; + } + + execute(server: Server, session: ClientSession | undefined, callback: Callback): void { + if (server !== this.server) { + return callback( + new MongoRuntimeError('Killcursor must run on the same server operation began on') + ); + } + + const killCursors = this.ns.collection; + if (killCursors == null) { + // Cursors should have adopted the namespace returned by MongoDB + // which should always defined a collection name (even a pseudo one, ex. db.aggregate()) + return callback( + new MongoRuntimeError('A collection name must be determined before killCursors') + ); + } + + const killCursorsCommand: KillCursorsCommand = { + killCursors, + cursors: [this.cursorId] + }; + + server.command(this.ns, killCursorsCommand, { session }, () => callback()); + } +} + +defineAspects(KillCursorsOperation, [Aspect.MUST_SELECT_SAME_SERVER]); diff --git a/node_modules/mongodb/src/operations/list_collections.ts b/node_modules/mongodb/src/operations/list_collections.ts new file mode 100644 index 000000000..ae1c15ec2 --- /dev/null +++ b/node_modules/mongodb/src/operations/list_collections.ts @@ -0,0 +1,91 @@ +import type { Binary, Document } from '../bson'; +import type { Db } from '../db'; +import type { Server } from '../sdam/server'; +import type { ClientSession } from '../sessions'; +import { Callback, maxWireVersion } from '../utils'; +import { CommandOperation, CommandOperationOptions } from './command'; +import { Aspect, defineAspects } from './operation'; + +/** @public */ +export interface ListCollectionsOptions extends CommandOperationOptions { + /** Since 4.0: If true, will only return the collection name in the response, and will omit additional info */ + nameOnly?: boolean; + /** Since 4.0: If true and nameOnly is true, allows a user without the required privilege (i.e. listCollections action on the database) to run the command when access control is enforced. */ + authorizedCollections?: boolean; + /** The batchSize for the returned command cursor or if pre 2.8 the systems batch collection */ + batchSize?: number; +} + +/** @internal */ +export class ListCollectionsOperation extends CommandOperation { + override options: ListCollectionsOptions; + db: Db; + filter: Document; + nameOnly: boolean; + authorizedCollections: boolean; + batchSize?: number; + + constructor(db: Db, filter: Document, options?: ListCollectionsOptions) { + super(db, options); + + this.options = options ?? {}; + this.db = db; + this.filter = filter; + this.nameOnly = !!this.options.nameOnly; + this.authorizedCollections = !!this.options.authorizedCollections; + + if (typeof this.options.batchSize === 'number') { + this.batchSize = this.options.batchSize; + } + } + + override execute( + server: Server, + session: ClientSession | undefined, + callback: Callback + ): void { + return super.executeCommand( + server, + session, + this.generateCommand(maxWireVersion(server)), + callback + ); + } + + /* This is here for the purpose of unit testing the final command that gets sent. */ + generateCommand(wireVersion: number): Document { + const command: Document = { + listCollections: 1, + filter: this.filter, + cursor: this.batchSize ? { batchSize: this.batchSize } : {}, + nameOnly: this.nameOnly, + authorizedCollections: this.authorizedCollections + }; + + // we check for undefined specifically here to allow falsy values + // eslint-disable-next-line no-restricted-syntax + if (wireVersion >= 9 && this.options.comment !== undefined) { + command.comment = this.options.comment; + } + + return command; + } +} + +/** @public */ +export interface CollectionInfo extends Document { + name: string; + type?: string; + options?: Document; + info?: { + readOnly?: false; + uuid?: Binary; + }; + idIndex?: Document; +} + +defineAspects(ListCollectionsOperation, [ + Aspect.READ_OPERATION, + Aspect.RETRYABLE, + Aspect.CURSOR_CREATING +]); diff --git a/node_modules/mongodb/src/operations/list_databases.ts b/node_modules/mongodb/src/operations/list_databases.ts new file mode 100644 index 000000000..537c95290 --- /dev/null +++ b/node_modules/mongodb/src/operations/list_databases.ts @@ -0,0 +1,65 @@ +import type { Document } from '../bson'; +import type { Db } from '../db'; +import type { Server } from '../sdam/server'; +import type { ClientSession } from '../sessions'; +import { Callback, maxWireVersion, MongoDBNamespace } from '../utils'; +import { CommandOperation, CommandOperationOptions } from './command'; +import { Aspect, defineAspects } from './operation'; + +/** @public */ +export interface ListDatabasesResult { + databases: ({ name: string; sizeOnDisk?: number; empty?: boolean } & Document)[]; + totalSize?: number; + totalSizeMb?: number; + ok: 1 | 0; +} + +/** @public */ +export interface ListDatabasesOptions extends CommandOperationOptions { + /** A query predicate that determines which databases are listed */ + filter?: Document; + /** A flag to indicate whether the command should return just the database names, or return both database names and size information */ + nameOnly?: boolean; + /** A flag that determines which databases are returned based on the user privileges when access control is enabled */ + authorizedDatabases?: boolean; +} + +/** @internal */ +export class ListDatabasesOperation extends CommandOperation { + override options: ListDatabasesOptions; + + constructor(db: Db, options?: ListDatabasesOptions) { + super(db, options); + this.options = options ?? {}; + this.ns = new MongoDBNamespace('admin', '$cmd'); + } + + override execute( + server: Server, + session: ClientSession | undefined, + callback: Callback + ): void { + const cmd: Document = { listDatabases: 1 }; + if (this.options.nameOnly) { + cmd.nameOnly = Number(cmd.nameOnly); + } + + if (this.options.filter) { + cmd.filter = this.options.filter; + } + + if (typeof this.options.authorizedDatabases === 'boolean') { + cmd.authorizedDatabases = this.options.authorizedDatabases; + } + + // we check for undefined specifically here to allow falsy values + // eslint-disable-next-line no-restricted-syntax + if (maxWireVersion(server) >= 9 && this.options.comment !== undefined) { + cmd.comment = this.options.comment; + } + + super.executeCommand(server, session, cmd, callback); + } +} + +defineAspects(ListDatabasesOperation, [Aspect.READ_OPERATION, Aspect.RETRYABLE]); diff --git a/node_modules/mongodb/src/operations/map_reduce.ts b/node_modules/mongodb/src/operations/map_reduce.ts new file mode 100644 index 000000000..f3134f45a --- /dev/null +++ b/node_modules/mongodb/src/operations/map_reduce.ts @@ -0,0 +1,250 @@ +import type { ObjectId } from '../bson'; +import { Code, Document } from '../bson'; +import type { Collection } from '../collection'; +import { MongoCompatibilityError, MongoServerError } from '../error'; +import { ReadPreference, ReadPreferenceMode } from '../read_preference'; +import type { Server } from '../sdam/server'; +import type { ClientSession } from '../sessions'; +import type { Sort } from '../sort'; +import { + applyWriteConcern, + Callback, + decorateWithCollation, + decorateWithReadConcern, + isObject, + maxWireVersion +} from '../utils'; +import { CommandOperation, CommandOperationOptions } from './command'; +import { Aspect, defineAspects } from './operation'; + +const exclusionList = [ + 'explain', + 'readPreference', + 'readConcern', + 'session', + 'bypassDocumentValidation', + 'writeConcern', + 'raw', + 'fieldsAsRaw', + 'promoteLongs', + 'promoteValues', + 'promoteBuffers', + 'bsonRegExp', + 'serializeFunctions', + 'ignoreUndefined', + 'enableUtf8Validation', + 'scope' // this option is reformatted thus exclude the original +]; + +/** @public */ +export type MapFunction = (this: TSchema) => void; +/** @public */ +export type ReduceFunction = (key: TKey, values: TValue[]) => TValue; +/** @public */ +export type FinalizeFunction = ( + key: TKey, + reducedValue: TValue +) => TValue; + +/** @public */ +export interface MapReduceOptions + extends CommandOperationOptions { + /** Sets the output target for the map reduce job. */ + out?: 'inline' | { inline: 1 } | { replace: string } | { merge: string } | { reduce: string }; + /** Query filter object. */ + query?: Document; + /** Sorts the input objects using this key. Useful for optimization, like sorting by the emit key for fewer reduces. */ + sort?: Sort; + /** Number of objects to return from collection. */ + limit?: number; + /** Keep temporary data. */ + keeptemp?: boolean; + /** Finalize function. */ + finalize?: FinalizeFunction | string; + /** Can pass in variables that can be access from map/reduce/finalize. */ + scope?: Document; + /** It is possible to make the execution stay in JS. Provided in MongoDB \> 2.0.X. */ + jsMode?: boolean; + /** Provide statistics on job execution time. */ + verbose?: boolean; + /** Allow driver to bypass schema validation in MongoDB 3.2 or higher. */ + bypassDocumentValidation?: boolean; +} + +interface MapReduceStats { + processtime?: number; + counts?: number; + timing?: number; +} + +/** + * Run Map Reduce across a collection. Be aware that the inline option for out will return an array of results not a collection. + * @internal + */ +export class MapReduceOperation extends CommandOperation { + override options: MapReduceOptions; + collection: Collection; + /** The mapping function. */ + map: MapFunction | string; + /** The reduce function. */ + reduce: ReduceFunction | string; + + /** + * Constructs a MapReduce operation. + * + * @param collection - Collection instance. + * @param map - The mapping function. + * @param reduce - The reduce function. + * @param options - Optional settings. See Collection.prototype.mapReduce for a list of options. + */ + constructor( + collection: Collection, + map: MapFunction | string, + reduce: ReduceFunction | string, + options?: MapReduceOptions + ) { + super(collection, options); + + this.options = options ?? {}; + this.collection = collection; + this.map = map; + this.reduce = reduce; + } + + override execute( + server: Server, + session: ClientSession | undefined, + callback: Callback + ): void { + const coll = this.collection; + const map = this.map; + const reduce = this.reduce; + let options = this.options; + + const mapCommandHash: Document = { + mapReduce: coll.collectionName, + map: map, + reduce: reduce + }; + + if (options.scope) { + mapCommandHash.scope = processScope(options.scope); + } + + // Add any other options passed in + for (const n in options) { + // Only include if not in exclusion list + if (exclusionList.indexOf(n) === -1) { + mapCommandHash[n] = (options as any)[n]; + } + } + + options = Object.assign({}, options); + + // If we have a read preference and inline is not set as output fail hard + if ( + this.readPreference.mode === ReadPreferenceMode.primary && + options.out && + (options.out as any).inline !== 1 && + options.out !== 'inline' + ) { + // Force readPreference to primary + options.readPreference = ReadPreference.primary; + // Decorate command with writeConcern if supported + applyWriteConcern(mapCommandHash, { db: coll.s.db, collection: coll }, options); + } else { + decorateWithReadConcern(mapCommandHash, coll, options); + } + + // Is bypassDocumentValidation specified + if (options.bypassDocumentValidation === true) { + mapCommandHash.bypassDocumentValidation = options.bypassDocumentValidation; + } + + // Have we specified collation + try { + decorateWithCollation(mapCommandHash, coll, options); + } catch (err) { + return callback(err); + } + + if (this.explain && maxWireVersion(server) < 9) { + callback( + new MongoCompatibilityError(`Server ${server.name} does not support explain on mapReduce`) + ); + return; + } + + // Execute command + super.executeCommand(server, session, mapCommandHash, (err, result) => { + if (err) return callback(err); + // Check if we have an error + if (1 !== result.ok || result.err || result.errmsg) { + return callback(new MongoServerError(result)); + } + + // If an explain option was executed, don't process the server results + if (this.explain) return callback(undefined, result); + + // Create statistics value + const stats: MapReduceStats = {}; + if (result.timeMillis) stats['processtime'] = result.timeMillis; + if (result.counts) stats['counts'] = result.counts; + if (result.timing) stats['timing'] = result.timing; + + // invoked with inline? + if (result.results) { + // If we wish for no verbosity + if (options['verbose'] == null || !options['verbose']) { + return callback(undefined, result.results); + } + + return callback(undefined, { results: result.results, stats: stats }); + } + + // The returned collection + let collection = null; + + // If we have an object it's a different db + if (result.result != null && typeof result.result === 'object') { + const doc = result.result; + // Return a collection from another db + collection = coll.s.db.s.client.db(doc.db, coll.s.db.s.options).collection(doc.collection); + } else { + // Create a collection object that wraps the result collection + collection = coll.s.db.collection(result.result); + } + + // If we wish for no verbosity + if (options['verbose'] == null || !options['verbose']) { + return callback(err, collection); + } + + // Return stats as third set of values + callback(err, { collection, stats }); + }); + } +} + +/** Functions that are passed as scope args must be converted to Code instances. */ +function processScope(scope: Document | ObjectId) { + if (!isObject(scope) || (scope as any)._bsontype === 'ObjectID') { + return scope; + } + + const newScope: Document = {}; + + for (const key of Object.keys(scope)) { + if ('function' === typeof (scope as Document)[key]) { + newScope[key] = new Code(String((scope as Document)[key])); + } else if ((scope as Document)[key]._bsontype === 'Code') { + newScope[key] = (scope as Document)[key]; + } else { + newScope[key] = processScope((scope as Document)[key]); + } + } + + return newScope; +} + +defineAspects(MapReduceOperation, [Aspect.EXPLAINABLE]); diff --git a/node_modules/mongodb/src/operations/operation.ts b/node_modules/mongodb/src/operations/operation.ts new file mode 100644 index 000000000..0b5c52487 --- /dev/null +++ b/node_modules/mongodb/src/operations/operation.ts @@ -0,0 +1,125 @@ +import { BSONSerializeOptions, Document, resolveBSONOptions } from '../bson'; +import { ReadPreference, ReadPreferenceLike } from '../read_preference'; +import type { Server } from '../sdam/server'; +import type { ClientSession } from '../sessions'; +import type { Callback, MongoDBNamespace } from '../utils'; + +export const Aspect = { + READ_OPERATION: Symbol('READ_OPERATION'), + WRITE_OPERATION: Symbol('WRITE_OPERATION'), + RETRYABLE: Symbol('RETRYABLE'), + EXPLAINABLE: Symbol('EXPLAINABLE'), + SKIP_COLLATION: Symbol('SKIP_COLLATION'), + CURSOR_CREATING: Symbol('CURSOR_CREATING'), + MUST_SELECT_SAME_SERVER: Symbol('MUST_SELECT_SAME_SERVER') +} as const; + +/** @public */ +export type Hint = string | Document; + +export interface OperationConstructor extends Function { + aspects?: Set; +} + +/** @public */ +export interface OperationOptions extends BSONSerializeOptions { + /** Specify ClientSession for this command */ + session?: ClientSession; + willRetryWrite?: boolean; + + /** The preferred read preference (ReadPreference.primary, ReadPreference.primary_preferred, ReadPreference.secondary, ReadPreference.secondary_preferred, ReadPreference.nearest). */ + readPreference?: ReadPreferenceLike; + + /** @internal Hints to `executeOperation` that this operation should not unpin on an ended transaction */ + bypassPinningCheck?: boolean; + omitReadPreference?: boolean; +} + +/** @internal */ +const kSession = Symbol('session'); + +/** + * This class acts as a parent class for any operation and is responsible for setting this.options, + * as well as setting and getting a session. + * Additionally, this class implements `hasAspect`, which determines whether an operation has + * a specific aspect. + * @internal + */ +export abstract class AbstractOperation { + ns!: MongoDBNamespace; + cmd!: Document; + readPreference: ReadPreference; + server!: Server; + bypassPinningCheck: boolean; + trySecondaryWrite: boolean; + + // BSON serialization options + bsonOptions?: BSONSerializeOptions; + + options: OperationOptions; + + [kSession]: ClientSession | undefined; + + constructor(options: OperationOptions = {}) { + this.readPreference = this.hasAspect(Aspect.WRITE_OPERATION) + ? ReadPreference.primary + : ReadPreference.fromOptions(options) ?? ReadPreference.primary; + + // Pull the BSON serialize options from the already-resolved options + this.bsonOptions = resolveBSONOptions(options); + + this[kSession] = options.session != null ? options.session : undefined; + + this.options = options; + this.bypassPinningCheck = !!options.bypassPinningCheck; + this.trySecondaryWrite = false; + } + + abstract execute( + server: Server, + session: ClientSession | undefined, + callback: Callback + ): void; + + hasAspect(aspect: symbol): boolean { + const ctor = this.constructor as OperationConstructor; + if (ctor.aspects == null) { + return false; + } + + return ctor.aspects.has(aspect); + } + + get session(): ClientSession | undefined { + return this[kSession]; + } + + clearSession() { + this[kSession] = undefined; + } + + get canRetryRead(): boolean { + return true; + } + + get canRetryWrite(): boolean { + return true; + } +} + +export function defineAspects( + operation: OperationConstructor, + aspects: symbol | symbol[] | Set +): Set { + if (!Array.isArray(aspects) && !(aspects instanceof Set)) { + aspects = [aspects]; + } + + aspects = new Set(aspects); + Object.defineProperty(operation, 'aspects', { + value: aspects, + writable: false + }); + + return aspects; +} diff --git a/node_modules/mongodb/src/operations/options_operation.ts b/node_modules/mongodb/src/operations/options_operation.ts new file mode 100644 index 000000000..27853d34e --- /dev/null +++ b/node_modules/mongodb/src/operations/options_operation.ts @@ -0,0 +1,42 @@ +import type { Document } from '../bson'; +import type { Collection } from '../collection'; +import { MongoAPIError } from '../error'; +import type { Server } from '../sdam/server'; +import type { ClientSession } from '../sessions'; +import type { Callback } from '../utils'; +import { AbstractOperation, OperationOptions } from './operation'; + +/** @internal */ +export class OptionsOperation extends AbstractOperation { + override options: OperationOptions; + collection: Collection; + + constructor(collection: Collection, options: OperationOptions) { + super(options); + this.options = options; + this.collection = collection; + } + + override execute( + server: Server, + session: ClientSession | undefined, + callback: Callback + ): void { + const coll = this.collection; + + coll.s.db + .listCollections( + { name: coll.collectionName }, + { ...this.options, nameOnly: false, readPreference: this.readPreference, session } + ) + .toArray((err, collections) => { + if (err || !collections) return callback(err); + if (collections.length === 0) { + // TODO(NODE-3485) + return callback(new MongoAPIError(`collection ${coll.namespace} not found`)); + } + + callback(err, collections[0].options); + }); + } +} diff --git a/node_modules/mongodb/src/operations/profiling_level.ts b/node_modules/mongodb/src/operations/profiling_level.ts new file mode 100644 index 000000000..defe6b0d5 --- /dev/null +++ b/node_modules/mongodb/src/operations/profiling_level.ts @@ -0,0 +1,39 @@ +import type { Db } from '../db'; +import { MongoRuntimeError } from '../error'; +import type { Server } from '../sdam/server'; +import type { ClientSession } from '../sessions'; +import type { Callback } from '../utils'; +import { CommandOperation, CommandOperationOptions } from './command'; + +/** @public */ +export type ProfilingLevelOptions = CommandOperationOptions; + +/** @internal */ +export class ProfilingLevelOperation extends CommandOperation { + override options: ProfilingLevelOptions; + + constructor(db: Db, options: ProfilingLevelOptions) { + super(db, options); + this.options = options; + } + + override execute( + server: Server, + session: ClientSession | undefined, + callback: Callback + ): void { + super.executeCommand(server, session, { profile: -1 }, (err, doc) => { + if (err == null && doc.ok === 1) { + const was = doc.was; + if (was === 0) return callback(undefined, 'off'); + if (was === 1) return callback(undefined, 'slow_only'); + if (was === 2) return callback(undefined, 'all'); + // TODO(NODE-3483) + return callback(new MongoRuntimeError(`Illegal profiling level value ${was}`)); + } else { + // TODO(NODE-3483): Consider MongoUnexpectedServerResponseError + err != null ? callback(err) : callback(new MongoRuntimeError('Error with profile command')); + } + }); + } +} diff --git a/node_modules/mongodb/src/operations/remove_user.ts b/node_modules/mongodb/src/operations/remove_user.ts new file mode 100644 index 000000000..f32c19c24 --- /dev/null +++ b/node_modules/mongodb/src/operations/remove_user.ts @@ -0,0 +1,33 @@ +import type { Db } from '../db'; +import type { Server } from '../sdam/server'; +import type { ClientSession } from '../sessions'; +import type { Callback } from '../utils'; +import { CommandOperation, CommandOperationOptions } from './command'; +import { Aspect, defineAspects } from './operation'; + +/** @public */ +export type RemoveUserOptions = CommandOperationOptions; + +/** @internal */ +export class RemoveUserOperation extends CommandOperation { + override options: RemoveUserOptions; + username: string; + + constructor(db: Db, username: string, options: RemoveUserOptions) { + super(db, options); + this.options = options; + this.username = username; + } + + override execute( + server: Server, + session: ClientSession | undefined, + callback: Callback + ): void { + super.executeCommand(server, session, { dropUser: this.username }, err => { + callback(err, err ? false : true); + }); + } +} + +defineAspects(RemoveUserOperation, [Aspect.WRITE_OPERATION]); diff --git a/node_modules/mongodb/src/operations/rename.ts b/node_modules/mongodb/src/operations/rename.ts new file mode 100644 index 000000000..02e27a5bf --- /dev/null +++ b/node_modules/mongodb/src/operations/rename.ts @@ -0,0 +1,67 @@ +import type { Document } from '../bson'; +import { Collection } from '../collection'; +import { MongoServerError } from '../error'; +import type { Server } from '../sdam/server'; +import type { ClientSession } from '../sessions'; +import { Callback, checkCollectionName } from '../utils'; +import type { CommandOperationOptions } from './command'; +import { Aspect, defineAspects } from './operation'; +import { RunAdminCommandOperation } from './run_command'; + +/** @public */ +export interface RenameOptions extends CommandOperationOptions { + /** Drop the target name collection if it previously exists. */ + dropTarget?: boolean; + /** Unclear */ + new_collection?: boolean; +} + +/** @internal */ +export class RenameOperation extends RunAdminCommandOperation { + override options: RenameOptions; + collection: Collection; + newName: string; + + constructor(collection: Collection, newName: string, options: RenameOptions) { + // Check the collection name + checkCollectionName(newName); + + // Build the command + const renameCollection = collection.namespace; + const toCollection = collection.s.namespace.withCollection(newName).toString(); + const dropTarget = typeof options.dropTarget === 'boolean' ? options.dropTarget : false; + const cmd = { renameCollection: renameCollection, to: toCollection, dropTarget: dropTarget }; + + super(collection, cmd, options); + this.options = options; + this.collection = collection; + this.newName = newName; + } + + override execute( + server: Server, + session: ClientSession | undefined, + callback: Callback + ): void { + const coll = this.collection; + + super.execute(server, session, (err, doc) => { + if (err) return callback(err); + // We have an error + if (doc?.errmsg) { + return callback(new MongoServerError(doc)); + } + + let newColl: Collection; + try { + newColl = new Collection(coll.s.db, this.newName, coll.s.options); + } catch (err) { + return callback(err); + } + + return callback(undefined, newColl); + }); + } +} + +defineAspects(RenameOperation, [Aspect.WRITE_OPERATION]); diff --git a/node_modules/mongodb/src/operations/run_command.ts b/node_modules/mongodb/src/operations/run_command.ts new file mode 100644 index 000000000..b92237a9a --- /dev/null +++ b/node_modules/mongodb/src/operations/run_command.ts @@ -0,0 +1,36 @@ +import type { Document } from '../bson'; +import type { Server } from '../sdam/server'; +import type { ClientSession } from '../sessions'; +import { Callback, MongoDBNamespace } from '../utils'; +import { CommandOperation, CommandOperationOptions, OperationParent } from './command'; + +/** @public */ +export type RunCommandOptions = CommandOperationOptions; + +/** @internal */ +export class RunCommandOperation extends CommandOperation { + override options: RunCommandOptions; + command: Document; + + constructor(parent: OperationParent | undefined, command: Document, options?: RunCommandOptions) { + super(parent, options); + this.options = options ?? {}; + this.command = command; + } + + override execute( + server: Server, + session: ClientSession | undefined, + callback: Callback + ): void { + const command = this.command; + this.executeCommand(server, session, command, callback); + } +} + +export class RunAdminCommandOperation extends RunCommandOperation { + constructor(parent: OperationParent | undefined, command: Document, options?: RunCommandOptions) { + super(parent, command, options); + this.ns = new MongoDBNamespace('admin'); + } +} diff --git a/node_modules/mongodb/src/operations/set_profiling_level.ts b/node_modules/mongodb/src/operations/set_profiling_level.ts new file mode 100644 index 000000000..6fc8502dc --- /dev/null +++ b/node_modules/mongodb/src/operations/set_profiling_level.ts @@ -0,0 +1,74 @@ +import type { Db } from '../db'; +import { MongoInvalidArgumentError, MongoRuntimeError } from '../error'; +import type { Server } from '../sdam/server'; +import type { ClientSession } from '../sessions'; +import type { Callback } from '../utils'; +import { enumToString } from '../utils'; +import { CommandOperation, CommandOperationOptions } from './command'; + +const levelValues = new Set(['off', 'slow_only', 'all']); + +/** @public */ +export const ProfilingLevel = Object.freeze({ + off: 'off', + slowOnly: 'slow_only', + all: 'all' +} as const); + +/** @public */ +export type ProfilingLevel = typeof ProfilingLevel[keyof typeof ProfilingLevel]; + +/** @public */ +export type SetProfilingLevelOptions = CommandOperationOptions; + +/** @internal */ +export class SetProfilingLevelOperation extends CommandOperation { + override options: SetProfilingLevelOptions; + level: ProfilingLevel; + profile: 0 | 1 | 2; + + constructor(db: Db, level: ProfilingLevel, options: SetProfilingLevelOptions) { + super(db, options); + this.options = options; + switch (level) { + case ProfilingLevel.off: + this.profile = 0; + break; + case ProfilingLevel.slowOnly: + this.profile = 1; + break; + case ProfilingLevel.all: + this.profile = 2; + break; + default: + this.profile = 0; + break; + } + + this.level = level; + } + + override execute( + server: Server, + session: ClientSession | undefined, + callback: Callback + ): void { + const level = this.level; + + if (!levelValues.has(level)) { + return callback( + new MongoInvalidArgumentError( + `Profiling level must be one of "${enumToString(ProfilingLevel)}"` + ) + ); + } + + // TODO(NODE-3483): Determine error to put here + super.executeCommand(server, session, { profile: this.profile }, (err, doc) => { + if (err == null && doc.ok === 1) return callback(undefined, level); + return err != null + ? callback(err) + : callback(new MongoRuntimeError('Error with profile command')); + }); + } +} diff --git a/node_modules/mongodb/src/operations/stats.ts b/node_modules/mongodb/src/operations/stats.ts new file mode 100644 index 000000000..b63a70de3 --- /dev/null +++ b/node_modules/mongodb/src/operations/stats.ts @@ -0,0 +1,271 @@ +import type { Document } from '../bson'; +import type { Collection } from '../collection'; +import type { Db } from '../db'; +import type { Server } from '../sdam/server'; +import type { ClientSession } from '../sessions'; +import type { Callback } from '../utils'; +import { CommandOperation, CommandOperationOptions } from './command'; +import { Aspect, defineAspects } from './operation'; + +/** @public */ +export interface CollStatsOptions extends CommandOperationOptions { + /** Divide the returned sizes by scale value. */ + scale?: number; +} + +/** + * Get all the collection statistics. + * @internal + */ +export class CollStatsOperation extends CommandOperation { + override options: CollStatsOptions; + collectionName: string; + + /** + * Construct a Stats operation. + * + * @param collection - Collection instance + * @param options - Optional settings. See Collection.prototype.stats for a list of options. + */ + constructor(collection: Collection, options?: CollStatsOptions) { + super(collection, options); + this.options = options ?? {}; + this.collectionName = collection.collectionName; + } + + override execute( + server: Server, + session: ClientSession | undefined, + callback: Callback + ): void { + const command: Document = { collStats: this.collectionName }; + if (this.options.scale != null) { + command.scale = this.options.scale; + } + + super.executeCommand(server, session, command, callback); + } +} + +/** @public */ +export interface DbStatsOptions extends CommandOperationOptions { + /** Divide the returned sizes by scale value. */ + scale?: number; +} + +/** @internal */ +export class DbStatsOperation extends CommandOperation { + override options: DbStatsOptions; + + constructor(db: Db, options: DbStatsOptions) { + super(db, options); + this.options = options; + } + + override execute( + server: Server, + session: ClientSession | undefined, + callback: Callback + ): void { + const command: Document = { dbStats: true }; + if (this.options.scale != null) { + command.scale = this.options.scale; + } + + super.executeCommand(server, session, command, callback); + } +} + +/** + * @public + * @see https://docs.mongodb.org/manual/reference/command/collStats/ + */ +export interface CollStats extends Document { + /** Namespace */ + ns: string; + /** Number of documents */ + count: number; + /** Collection size in bytes */ + size: number; + /** Average object size in bytes */ + avgObjSize: number; + /** (Pre)allocated space for the collection in bytes */ + storageSize: number; + /** Number of extents (contiguously allocated chunks of datafile space) */ + numExtents: number; + /** Number of indexes */ + nindexes: number; + /** Size of the most recently created extent in bytes */ + lastExtentSize: number; + /** Padding can speed up updates if documents grow */ + paddingFactor: number; + /** A number that indicates the user-set flags on the collection. userFlags only appears when using the mmapv1 storage engine */ + userFlags?: number; + /** Total index size in bytes */ + totalIndexSize: number; + /** Size of specific indexes in bytes */ + indexSizes: { + _id_: number; + [index: string]: number; + }; + /** `true` if the collection is capped */ + capped: boolean; + /** The maximum number of documents that may be present in a capped collection */ + max: number; + /** The maximum size of a capped collection */ + maxSize: number; + /** This document contains data reported directly by the WiredTiger engine and other data for internal diagnostic use */ + wiredTiger?: WiredTigerData; + /** The fields in this document are the names of the indexes, while the values themselves are documents that contain statistics for the index provided by the storage engine */ + indexDetails?: any; + ok: number; + + /** The amount of storage available for reuse. The scale argument affects this value. */ + freeStorageSize?: number; + /** An array that contains the names of the indexes that are currently being built on the collection */ + indexBuilds?: number; + /** The sum of the storageSize and totalIndexSize. The scale argument affects this value */ + totalSize: number; + /** The scale value used by the command. */ + scaleFactor: number; +} + +/** @public */ +export interface WiredTigerData extends Document { + LSM: { + 'bloom filter false positives': number; + 'bloom filter hits': number; + 'bloom filter misses': number; + 'bloom filter pages evicted from cache': number; + 'bloom filter pages read into cache': number; + 'bloom filters in the LSM tree': number; + 'chunks in the LSM tree': number; + 'highest merge generation in the LSM tree': number; + 'queries that could have benefited from a Bloom filter that did not exist': number; + 'sleep for LSM checkpoint throttle': number; + 'sleep for LSM merge throttle': number; + 'total size of bloom filters': number; + } & Document; + 'block-manager': { + 'allocations requiring file extension': number; + 'blocks allocated': number; + 'blocks freed': number; + 'checkpoint size': number; + 'file allocation unit size': number; + 'file bytes available for reuse': number; + 'file magic number': number; + 'file major version number': number; + 'file size in bytes': number; + 'minor version number': number; + }; + btree: { + 'btree checkpoint generation': number; + 'column-store fixed-size leaf pages': number; + 'column-store internal pages': number; + 'column-store variable-size RLE encoded values': number; + 'column-store variable-size deleted values': number; + 'column-store variable-size leaf pages': number; + 'fixed-record size': number; + 'maximum internal page key size': number; + 'maximum internal page size': number; + 'maximum leaf page key size': number; + 'maximum leaf page size': number; + 'maximum leaf page value size': number; + 'maximum tree depth': number; + 'number of key/value pairs': number; + 'overflow pages': number; + 'pages rewritten by compaction': number; + 'row-store internal pages': number; + 'row-store leaf pages': number; + } & Document; + cache: { + 'bytes currently in the cache': number; + 'bytes read into cache': number; + 'bytes written from cache': number; + 'checkpoint blocked page eviction': number; + 'data source pages selected for eviction unable to be evicted': number; + 'hazard pointer blocked page eviction': number; + 'in-memory page passed criteria to be split': number; + 'in-memory page splits': number; + 'internal pages evicted': number; + 'internal pages split during eviction': number; + 'leaf pages split during eviction': number; + 'modified pages evicted': number; + 'overflow pages read into cache': number; + 'overflow values cached in memory': number; + 'page split during eviction deepened the tree': number; + 'page written requiring lookaside records': number; + 'pages read into cache': number; + 'pages read into cache requiring lookaside entries': number; + 'pages requested from the cache': number; + 'pages written from cache': number; + 'pages written requiring in-memory restoration': number; + 'tracked dirty bytes in the cache': number; + 'unmodified pages evicted': number; + } & Document; + cache_walk: { + 'Average difference between current eviction generation when the page was last considered': number; + 'Average on-disk page image size seen': number; + 'Clean pages currently in cache': number; + 'Current eviction generation': number; + 'Dirty pages currently in cache': number; + 'Entries in the root page': number; + 'Internal pages currently in cache': number; + 'Leaf pages currently in cache': number; + 'Maximum difference between current eviction generation when the page was last considered': number; + 'Maximum page size seen': number; + 'Minimum on-disk page image size seen': number; + 'On-disk page image sizes smaller than a single allocation unit': number; + 'Pages created in memory and never written': number; + 'Pages currently queued for eviction': number; + 'Pages that could not be queued for eviction': number; + 'Refs skipped during cache traversal': number; + 'Size of the root page': number; + 'Total number of pages currently in cache': number; + } & Document; + compression: { + 'compressed pages read': number; + 'compressed pages written': number; + 'page written failed to compress': number; + 'page written was too small to compress': number; + 'raw compression call failed, additional data available': number; + 'raw compression call failed, no additional data available': number; + 'raw compression call succeeded': number; + } & Document; + cursor: { + 'bulk-loaded cursor-insert calls': number; + 'create calls': number; + 'cursor-insert key and value bytes inserted': number; + 'cursor-remove key bytes removed': number; + 'cursor-update value bytes updated': number; + 'insert calls': number; + 'next calls': number; + 'prev calls': number; + 'remove calls': number; + 'reset calls': number; + 'restarted searches': number; + 'search calls': number; + 'search near calls': number; + 'truncate calls': number; + 'update calls': number; + }; + reconciliation: { + 'dictionary matches': number; + 'fast-path pages deleted': number; + 'internal page key bytes discarded using suffix compression': number; + 'internal page multi-block writes': number; + 'internal-page overflow keys': number; + 'leaf page key bytes discarded using prefix compression': number; + 'leaf page multi-block writes': number; + 'leaf-page overflow keys': number; + 'maximum blocks required for a page': number; + 'overflow values written': number; + 'page checksum matches': number; + 'page reconciliation calls': number; + 'page reconciliation calls for eviction': number; + 'pages deleted': number; + } & Document; +} + +defineAspects(CollStatsOperation, [Aspect.READ_OPERATION]); +defineAspects(DbStatsOperation, [Aspect.READ_OPERATION]); diff --git a/node_modules/mongodb/src/operations/update.ts b/node_modules/mongodb/src/operations/update.ts new file mode 100644 index 000000000..43760c143 --- /dev/null +++ b/node_modules/mongodb/src/operations/update.ts @@ -0,0 +1,334 @@ +import type { Document, ObjectId } from '../bson'; +import type { Collection } from '../collection'; +import { MongoCompatibilityError, MongoInvalidArgumentError, MongoServerError } from '../error'; +import type { Server } from '../sdam/server'; +import type { ClientSession } from '../sessions'; +import { + Callback, + collationNotSupported, + hasAtomicOperators, + maxWireVersion, + MongoDBNamespace +} from '../utils'; +import { CollationOptions, CommandOperation, CommandOperationOptions } from './command'; +import { Aspect, defineAspects, Hint } from './operation'; + +/** @public */ +export interface UpdateOptions extends CommandOperationOptions { + /** A set of filters specifying to which array elements an update should apply */ + arrayFilters?: Document[]; + /** If true, allows the write to opt-out of document level validation */ + bypassDocumentValidation?: boolean; + /** Specifies a collation */ + collation?: CollationOptions; + /** Specify that the update query should only consider plans using the hinted index */ + hint?: Hint; + /** When true, creates a new document if no document matches the query */ + upsert?: boolean; + /** Map of parameter names and values that can be accessed using $$var (requires MongoDB 5.0). */ + let?: Document; +} + +/** @public */ +export interface UpdateResult { + /** Indicates whether this write result was acknowledged. If not, then all other members of this result will be undefined */ + acknowledged: boolean; + /** The number of documents that matched the filter */ + matchedCount: number; + /** The number of documents that were modified */ + modifiedCount: number; + /** The number of documents that were upserted */ + upsertedCount: number; + /** The identifier of the inserted document if an upsert took place */ + upsertedId: ObjectId; +} + +/** @public */ +export interface UpdateStatement { + /** The query that matches documents to update. */ + q: Document; + /** The modifications to apply. */ + u: Document | Document[]; + /** If true, perform an insert if no documents match the query. */ + upsert?: boolean; + /** If true, updates all documents that meet the query criteria. */ + multi?: boolean; + /** Specifies the collation to use for the operation. */ + collation?: CollationOptions; + /** An array of filter documents that determines which array elements to modify for an update operation on an array field. */ + arrayFilters?: Document[]; + /** A document or string that specifies the index to use to support the query predicate. */ + hint?: Hint; +} + +/** @internal */ +export class UpdateOperation extends CommandOperation { + override options: UpdateOptions & { ordered?: boolean }; + statements: UpdateStatement[]; + + constructor( + ns: MongoDBNamespace, + statements: UpdateStatement[], + options: UpdateOptions & { ordered?: boolean } + ) { + super(undefined, options); + this.options = options; + this.ns = ns; + + this.statements = statements; + } + + override get canRetryWrite(): boolean { + if (super.canRetryWrite === false) { + return false; + } + + return this.statements.every(op => op.multi == null || op.multi === false); + } + + override execute( + server: Server, + session: ClientSession | undefined, + callback: Callback + ): void { + const options = this.options ?? {}; + const ordered = typeof options.ordered === 'boolean' ? options.ordered : true; + const command: Document = { + update: this.ns.collection, + updates: this.statements, + ordered + }; + + if (typeof options.bypassDocumentValidation === 'boolean') { + command.bypassDocumentValidation = options.bypassDocumentValidation; + } + + if (options.let) { + command.let = options.let; + } + + // we check for undefined specifically here to allow falsy values + // eslint-disable-next-line no-restricted-syntax + if (options.comment !== undefined) { + command.comment = options.comment; + } + + const statementWithCollation = this.statements.find(statement => !!statement.collation); + if ( + collationNotSupported(server, options) || + (statementWithCollation && collationNotSupported(server, statementWithCollation)) + ) { + callback(new MongoCompatibilityError(`Server ${server.name} does not support collation`)); + return; + } + + const unacknowledgedWrite = this.writeConcern && this.writeConcern.w === 0; + if (unacknowledgedWrite || maxWireVersion(server) < 5) { + if (this.statements.find((o: Document) => o.hint)) { + callback(new MongoCompatibilityError(`Servers < 3.4 do not support hint on update`)); + return; + } + } + + if (this.explain && maxWireVersion(server) < 3) { + callback( + new MongoCompatibilityError(`Server ${server.name} does not support explain on update`) + ); + return; + } + + if (this.statements.some(statement => !!statement.arrayFilters) && maxWireVersion(server) < 6) { + callback( + new MongoCompatibilityError('Option "arrayFilters" is only supported on MongoDB 3.6+') + ); + return; + } + + super.executeCommand(server, session, command, callback); + } +} + +/** @internal */ +export class UpdateOneOperation extends UpdateOperation { + constructor(collection: Collection, filter: Document, update: Document, options: UpdateOptions) { + super( + collection.s.namespace, + [makeUpdateStatement(filter, update, { ...options, multi: false })], + options + ); + + if (!hasAtomicOperators(update)) { + throw new MongoInvalidArgumentError('Update document requires atomic operators'); + } + } + + override execute( + server: Server, + session: ClientSession | undefined, + callback: Callback + ): void { + super.execute(server, session, (err, res) => { + if (err || !res) return callback(err); + if (this.explain != null) return callback(undefined, res); + if (res.code) return callback(new MongoServerError(res)); + if (res.writeErrors) return callback(new MongoServerError(res.writeErrors[0])); + + callback(undefined, { + acknowledged: this.writeConcern?.w !== 0 ?? true, + modifiedCount: res.nModified != null ? res.nModified : res.n, + upsertedId: + Array.isArray(res.upserted) && res.upserted.length > 0 ? res.upserted[0]._id : null, + upsertedCount: Array.isArray(res.upserted) && res.upserted.length ? res.upserted.length : 0, + matchedCount: Array.isArray(res.upserted) && res.upserted.length > 0 ? 0 : res.n + }); + }); + } +} + +/** @internal */ +export class UpdateManyOperation extends UpdateOperation { + constructor(collection: Collection, filter: Document, update: Document, options: UpdateOptions) { + super( + collection.s.namespace, + [makeUpdateStatement(filter, update, { ...options, multi: true })], + options + ); + + if (!hasAtomicOperators(update)) { + throw new MongoInvalidArgumentError('Update document requires atomic operators'); + } + } + + override execute( + server: Server, + session: ClientSession | undefined, + callback: Callback + ): void { + super.execute(server, session, (err, res) => { + if (err || !res) return callback(err); + if (this.explain != null) return callback(undefined, res); + if (res.code) return callback(new MongoServerError(res)); + if (res.writeErrors) return callback(new MongoServerError(res.writeErrors[0])); + + callback(undefined, { + acknowledged: this.writeConcern?.w !== 0 ?? true, + modifiedCount: res.nModified != null ? res.nModified : res.n, + upsertedId: + Array.isArray(res.upserted) && res.upserted.length > 0 ? res.upserted[0]._id : null, + upsertedCount: Array.isArray(res.upserted) && res.upserted.length ? res.upserted.length : 0, + matchedCount: Array.isArray(res.upserted) && res.upserted.length > 0 ? 0 : res.n + }); + }); + } +} + +/** @public */ +export interface ReplaceOptions extends CommandOperationOptions { + /** If true, allows the write to opt-out of document level validation */ + bypassDocumentValidation?: boolean; + /** Specifies a collation */ + collation?: CollationOptions; + /** Specify that the update query should only consider plans using the hinted index */ + hint?: string | Document; + /** When true, creates a new document if no document matches the query */ + upsert?: boolean; + /** Map of parameter names and values that can be accessed using $$var (requires MongoDB 5.0). */ + let?: Document; +} + +/** @internal */ +export class ReplaceOneOperation extends UpdateOperation { + constructor( + collection: Collection, + filter: Document, + replacement: Document, + options: ReplaceOptions + ) { + super( + collection.s.namespace, + [makeUpdateStatement(filter, replacement, { ...options, multi: false })], + options + ); + + if (hasAtomicOperators(replacement)) { + throw new MongoInvalidArgumentError('Replacement document must not contain atomic operators'); + } + } + + override execute( + server: Server, + session: ClientSession | undefined, + callback: Callback + ): void { + super.execute(server, session, (err, res) => { + if (err || !res) return callback(err); + if (this.explain != null) return callback(undefined, res); + if (res.code) return callback(new MongoServerError(res)); + if (res.writeErrors) return callback(new MongoServerError(res.writeErrors[0])); + + callback(undefined, { + acknowledged: this.writeConcern?.w !== 0 ?? true, + modifiedCount: res.nModified != null ? res.nModified : res.n, + upsertedId: + Array.isArray(res.upserted) && res.upserted.length > 0 ? res.upserted[0]._id : null, + upsertedCount: Array.isArray(res.upserted) && res.upserted.length ? res.upserted.length : 0, + matchedCount: Array.isArray(res.upserted) && res.upserted.length > 0 ? 0 : res.n + }); + }); + } +} + +export function makeUpdateStatement( + filter: Document, + update: Document | Document[], + options: UpdateOptions & { multi?: boolean } +): UpdateStatement { + if (filter == null || typeof filter !== 'object') { + throw new MongoInvalidArgumentError('Selector must be a valid JavaScript object'); + } + + if (update == null || typeof update !== 'object') { + throw new MongoInvalidArgumentError('Document must be a valid JavaScript object'); + } + + const op: UpdateStatement = { q: filter, u: update }; + if (typeof options.upsert === 'boolean') { + op.upsert = options.upsert; + } + + if (options.multi) { + op.multi = options.multi; + } + + if (options.hint) { + op.hint = options.hint; + } + + if (options.arrayFilters) { + op.arrayFilters = options.arrayFilters; + } + + if (options.collation) { + op.collation = options.collation; + } + + return op; +} + +defineAspects(UpdateOperation, [Aspect.RETRYABLE, Aspect.WRITE_OPERATION, Aspect.SKIP_COLLATION]); +defineAspects(UpdateOneOperation, [ + Aspect.RETRYABLE, + Aspect.WRITE_OPERATION, + Aspect.EXPLAINABLE, + Aspect.SKIP_COLLATION +]); +defineAspects(UpdateManyOperation, [ + Aspect.WRITE_OPERATION, + Aspect.EXPLAINABLE, + Aspect.SKIP_COLLATION +]); +defineAspects(ReplaceOneOperation, [ + Aspect.RETRYABLE, + Aspect.WRITE_OPERATION, + Aspect.SKIP_COLLATION +]); diff --git a/node_modules/mongodb/src/operations/validate_collection.ts b/node_modules/mongodb/src/operations/validate_collection.ts new file mode 100644 index 000000000..ba6c85fad --- /dev/null +++ b/node_modules/mongodb/src/operations/validate_collection.ts @@ -0,0 +1,59 @@ +import type { Admin } from '../admin'; +import type { Document } from '../bson'; +import { MongoRuntimeError } from '../error'; +import type { Server } from '../sdam/server'; +import type { ClientSession } from '../sessions'; +import type { Callback } from '../utils'; +import { CommandOperation, CommandOperationOptions } from './command'; + +/** @public */ +export interface ValidateCollectionOptions extends CommandOperationOptions { + /** Validates a collection in the background, without interrupting read or write traffic (only in MongoDB 4.4+) */ + background?: boolean; +} + +/** @internal */ +export class ValidateCollectionOperation extends CommandOperation { + override options: ValidateCollectionOptions; + collectionName: string; + command: Document; + + constructor(admin: Admin, collectionName: string, options: ValidateCollectionOptions) { + // Decorate command with extra options + const command: Document = { validate: collectionName }; + const keys = Object.keys(options); + for (let i = 0; i < keys.length; i++) { + if (Object.prototype.hasOwnProperty.call(options, keys[i]) && keys[i] !== 'session') { + command[keys[i]] = (options as Document)[keys[i]]; + } + } + + super(admin.s.db, options); + this.options = options; + this.command = command; + this.collectionName = collectionName; + } + + override execute( + server: Server, + session: ClientSession | undefined, + callback: Callback + ): void { + const collectionName = this.collectionName; + + super.executeCommand(server, session, this.command, (err, doc) => { + if (err != null) return callback(err); + + // TODO(NODE-3483): Replace these with MongoUnexpectedServerResponseError + if (doc.ok === 0) return callback(new MongoRuntimeError('Error with validate command')); + if (doc.result != null && typeof doc.result !== 'string') + return callback(new MongoRuntimeError('Error with validation data')); + if (doc.result != null && doc.result.match(/exception|corrupt/) != null) + return callback(new MongoRuntimeError(`Invalid collection ${collectionName}`)); + if (doc.valid != null && !doc.valid) + return callback(new MongoRuntimeError(`Invalid collection ${collectionName}`)); + + return callback(undefined, doc); + }); + } +} diff --git a/node_modules/mongodb/src/promise_provider.ts b/node_modules/mongodb/src/promise_provider.ts new file mode 100644 index 000000000..eb9a28c75 --- /dev/null +++ b/node_modules/mongodb/src/promise_provider.ts @@ -0,0 +1,56 @@ +import { MongoInvalidArgumentError } from './error'; + +/** @internal */ +const kPromise = Symbol('promise'); + +interface PromiseStore { + [kPromise]: PromiseConstructor | null; +} + +const store: PromiseStore = { + [kPromise]: null +}; + +/** + * Global promise store allowing user-provided promises + * @deprecated Setting a custom promise library is deprecated the next major version will use the global Promise constructor only. + * @public + */ +export class PromiseProvider { + /** + * Validates the passed in promise library + * @deprecated Setting a custom promise library is deprecated the next major version will use the global Promise constructor only. + */ + static validate(lib: unknown): lib is PromiseConstructor { + if (typeof lib !== 'function') + throw new MongoInvalidArgumentError(`Promise must be a function, got ${lib}`); + return !!lib; + } + + /** + * Sets the promise library + * @deprecated Setting a custom promise library is deprecated the next major version will use the global Promise constructor only. + */ + static set(lib: PromiseConstructor | null): void { + // eslint-disable-next-line no-restricted-syntax + if (lib === null) { + // Check explicitly against null since `.set()` (no args) should fall through to validate + store[kPromise] = null; + return; + } + + if (!PromiseProvider.validate(lib)) { + // validate + return; + } + store[kPromise] = lib; + } + + /** + * Get the stored promise library, or resolves passed in + * @deprecated Setting a custom promise library is deprecated the next major version will use the global Promise constructor only. + */ + static get(): PromiseConstructor | null { + return store[kPromise]; + } +} diff --git a/node_modules/mongodb/src/read_concern.ts b/node_modules/mongodb/src/read_concern.ts new file mode 100644 index 000000000..09e39be56 --- /dev/null +++ b/node_modules/mongodb/src/read_concern.ts @@ -0,0 +1,88 @@ +import type { Document } from './bson'; + +/** @public */ +export const ReadConcernLevel = Object.freeze({ + local: 'local', + majority: 'majority', + linearizable: 'linearizable', + available: 'available', + snapshot: 'snapshot' +} as const); + +/** @public */ +export type ReadConcernLevel = typeof ReadConcernLevel[keyof typeof ReadConcernLevel]; + +/** @public */ +export type ReadConcernLike = ReadConcern | { level: ReadConcernLevel } | ReadConcernLevel; + +/** + * The MongoDB ReadConcern, which allows for control of the consistency and isolation properties + * of the data read from replica sets and replica set shards. + * @public + * + * @see https://docs.mongodb.com/manual/reference/read-concern/index.html + */ +export class ReadConcern { + level: ReadConcernLevel | string; + + /** Constructs a ReadConcern from the read concern level.*/ + constructor(level: ReadConcernLevel) { + /** + * A spec test exists that allows level to be any string. + * "invalid readConcern with out stage" + * @see ./test/spec/crud/v2/aggregate-out-readConcern.json + * @see https://github.com/mongodb/specifications/blob/master/source/read-write-concern/read-write-concern.rst#unknown-levels-and-additional-options-for-string-based-readconcerns + */ + this.level = ReadConcernLevel[level] ?? level; + } + + /** + * Construct a ReadConcern given an options object. + * + * @param options - The options object from which to extract the write concern. + */ + static fromOptions(options?: { + readConcern?: ReadConcernLike; + level?: ReadConcernLevel; + }): ReadConcern | undefined { + if (options == null) { + return; + } + + if (options.readConcern) { + const { readConcern } = options; + if (readConcern instanceof ReadConcern) { + return readConcern; + } else if (typeof readConcern === 'string') { + return new ReadConcern(readConcern); + } else if ('level' in readConcern && readConcern.level) { + return new ReadConcern(readConcern.level); + } + } + + if (options.level) { + return new ReadConcern(options.level); + } + return; + } + + static get MAJORITY(): 'majority' { + return ReadConcernLevel.majority; + } + + static get AVAILABLE(): 'available' { + return ReadConcernLevel.available; + } + + static get LINEARIZABLE(): 'linearizable' { + return ReadConcernLevel.linearizable; + } + + static get SNAPSHOT(): 'snapshot' { + return ReadConcernLevel.snapshot; + } + + toJSON(): Document { + return { level: this.level }; + } +} diff --git a/node_modules/mongodb/src/read_preference.ts b/node_modules/mongodb/src/read_preference.ts new file mode 100644 index 000000000..b7210b8e6 --- /dev/null +++ b/node_modules/mongodb/src/read_preference.ts @@ -0,0 +1,271 @@ +import type { Document } from './bson'; +import { MongoInvalidArgumentError } from './error'; +import type { TagSet } from './sdam/server_description'; +import type { ClientSession } from './sessions'; + +/** @public */ +export type ReadPreferenceLike = ReadPreference | ReadPreferenceMode; + +/** @public */ +export const ReadPreferenceMode = Object.freeze({ + primary: 'primary', + primaryPreferred: 'primaryPreferred', + secondary: 'secondary', + secondaryPreferred: 'secondaryPreferred', + nearest: 'nearest' +} as const); + +/** @public */ +export type ReadPreferenceMode = typeof ReadPreferenceMode[keyof typeof ReadPreferenceMode]; + +/** @public */ +export interface HedgeOptions { + /** Explicitly enable or disable hedged reads. */ + enabled?: boolean; +} + +/** @public */ +export interface ReadPreferenceOptions { + /** Max secondary read staleness in seconds, Minimum value is 90 seconds.*/ + maxStalenessSeconds?: number; + /** Server mode in which the same query is dispatched in parallel to multiple replica set members. */ + hedge?: HedgeOptions; +} + +/** @public */ +export interface ReadPreferenceLikeOptions extends ReadPreferenceOptions { + readPreference?: + | ReadPreferenceLike + | { + mode?: ReadPreferenceMode; + preference?: ReadPreferenceMode; + tags?: TagSet[]; + maxStalenessSeconds?: number; + }; +} + +/** @public */ +export interface ReadPreferenceFromOptions extends ReadPreferenceLikeOptions { + session?: ClientSession; + readPreferenceTags?: TagSet[]; + hedge?: HedgeOptions; +} + +/** + * The **ReadPreference** class is a class that represents a MongoDB ReadPreference and is + * used to construct connections. + * @public + * + * @see https://docs.mongodb.com/manual/core/read-preference/ + */ +export class ReadPreference { + mode: ReadPreferenceMode; + tags?: TagSet[]; + hedge?: HedgeOptions; + maxStalenessSeconds?: number; + minWireVersion?: number; + + public static PRIMARY = ReadPreferenceMode.primary; + public static PRIMARY_PREFERRED = ReadPreferenceMode.primaryPreferred; + public static SECONDARY = ReadPreferenceMode.secondary; + public static SECONDARY_PREFERRED = ReadPreferenceMode.secondaryPreferred; + public static NEAREST = ReadPreferenceMode.nearest; + + public static primary = new ReadPreference(ReadPreferenceMode.primary); + public static primaryPreferred = new ReadPreference(ReadPreferenceMode.primaryPreferred); + public static secondary = new ReadPreference(ReadPreferenceMode.secondary); + public static secondaryPreferred = new ReadPreference(ReadPreferenceMode.secondaryPreferred); + public static nearest = new ReadPreference(ReadPreferenceMode.nearest); + + /** + * @param mode - A string describing the read preference mode (primary|primaryPreferred|secondary|secondaryPreferred|nearest) + * @param tags - A tag set used to target reads to members with the specified tag(s). tagSet is not available if using read preference mode primary. + * @param options - Additional read preference options + */ + constructor(mode: ReadPreferenceMode, tags?: TagSet[], options?: ReadPreferenceOptions) { + if (!ReadPreference.isValid(mode)) { + throw new MongoInvalidArgumentError(`Invalid read preference mode ${JSON.stringify(mode)}`); + } + if (options == null && typeof tags === 'object' && !Array.isArray(tags)) { + options = tags; + tags = undefined; + } else if (tags && !Array.isArray(tags)) { + throw new MongoInvalidArgumentError('ReadPreference tags must be an array'); + } + + this.mode = mode; + this.tags = tags; + this.hedge = options?.hedge; + this.maxStalenessSeconds = undefined; + this.minWireVersion = undefined; + + options = options ?? {}; + if (options.maxStalenessSeconds != null) { + if (options.maxStalenessSeconds <= 0) { + throw new MongoInvalidArgumentError('maxStalenessSeconds must be a positive integer'); + } + + this.maxStalenessSeconds = options.maxStalenessSeconds; + + // NOTE: The minimum required wire version is 5 for this read preference. If the existing + // topology has a lower value then a MongoError will be thrown during server selection. + this.minWireVersion = 5; + } + + if (this.mode === ReadPreference.PRIMARY) { + if (this.tags && Array.isArray(this.tags) && this.tags.length > 0) { + throw new MongoInvalidArgumentError('Primary read preference cannot be combined with tags'); + } + + if (this.maxStalenessSeconds) { + throw new MongoInvalidArgumentError( + 'Primary read preference cannot be combined with maxStalenessSeconds' + ); + } + + if (this.hedge) { + throw new MongoInvalidArgumentError( + 'Primary read preference cannot be combined with hedge' + ); + } + } + } + + // Support the deprecated `preference` property introduced in the porcelain layer + get preference(): ReadPreferenceMode { + return this.mode; + } + + static fromString(mode: string): ReadPreference { + return new ReadPreference(mode as ReadPreferenceMode); + } + + /** + * Construct a ReadPreference given an options object. + * + * @param options - The options object from which to extract the read preference. + */ + static fromOptions(options?: ReadPreferenceFromOptions): ReadPreference | undefined { + if (!options) return; + const readPreference = + options.readPreference ?? options.session?.transaction.options.readPreference; + const readPreferenceTags = options.readPreferenceTags; + + if (readPreference == null) { + return; + } + + if (typeof readPreference === 'string') { + return new ReadPreference(readPreference, readPreferenceTags, { + maxStalenessSeconds: options.maxStalenessSeconds, + hedge: options.hedge + }); + } else if (!(readPreference instanceof ReadPreference) && typeof readPreference === 'object') { + const mode = readPreference.mode || readPreference.preference; + if (mode && typeof mode === 'string') { + return new ReadPreference(mode, readPreference.tags ?? readPreferenceTags, { + maxStalenessSeconds: readPreference.maxStalenessSeconds, + hedge: options.hedge + }); + } + } + + if (readPreferenceTags) { + readPreference.tags = readPreferenceTags; + } + + return readPreference as ReadPreference; + } + + /** + * Replaces options.readPreference with a ReadPreference instance + */ + static translate(options: ReadPreferenceLikeOptions): ReadPreferenceLikeOptions { + if (options.readPreference == null) return options; + const r = options.readPreference; + + if (typeof r === 'string') { + options.readPreference = new ReadPreference(r); + } else if (r && !(r instanceof ReadPreference) && typeof r === 'object') { + const mode = r.mode || r.preference; + if (mode && typeof mode === 'string') { + options.readPreference = new ReadPreference(mode, r.tags, { + maxStalenessSeconds: r.maxStalenessSeconds + }); + } + } else if (!(r instanceof ReadPreference)) { + throw new MongoInvalidArgumentError(`Invalid read preference: ${r}`); + } + + return options; + } + + /** + * Validate if a mode is legal + * + * @param mode - The string representing the read preference mode. + */ + static isValid(mode: string): boolean { + const VALID_MODES = new Set([ + ReadPreference.PRIMARY, + ReadPreference.PRIMARY_PREFERRED, + ReadPreference.SECONDARY, + ReadPreference.SECONDARY_PREFERRED, + ReadPreference.NEAREST, + null + ]); + + return VALID_MODES.has(mode as ReadPreferenceMode); + } + + /** + * Validate if a mode is legal + * + * @param mode - The string representing the read preference mode. + */ + isValid(mode?: string): boolean { + return ReadPreference.isValid(typeof mode === 'string' ? mode : this.mode); + } + + /** + * Indicates that this readPreference needs the "secondaryOk" bit when sent over the wire + * @deprecated Use secondaryOk instead + * @see https://docs.mongodb.com/manual/reference/mongodb-wire-protocol/#op-query + */ + slaveOk(): boolean { + return this.secondaryOk(); + } + + /** + * Indicates that this readPreference needs the "SecondaryOk" bit when sent over the wire + * @see https://docs.mongodb.com/manual/reference/mongodb-wire-protocol/#op-query + */ + secondaryOk(): boolean { + const NEEDS_SECONDARYOK = new Set([ + ReadPreference.PRIMARY_PREFERRED, + ReadPreference.SECONDARY, + ReadPreference.SECONDARY_PREFERRED, + ReadPreference.NEAREST + ]); + + return NEEDS_SECONDARYOK.has(this.mode); + } + + /** + * Check if the two ReadPreferences are equivalent + * + * @param readPreference - The read preference with which to check equality + */ + equals(readPreference: ReadPreference): boolean { + return readPreference.mode === this.mode; + } + + /** Return JSON representation */ + toJSON(): Document { + const readPreference = { mode: this.mode } as Document; + if (Array.isArray(this.tags)) readPreference.tags = this.tags; + if (this.maxStalenessSeconds) readPreference.maxStalenessSeconds = this.maxStalenessSeconds; + if (this.hedge) readPreference.hedge = this.hedge; + return readPreference; + } +} diff --git a/node_modules/mongodb/src/sdam/common.ts b/node_modules/mongodb/src/sdam/common.ts new file mode 100644 index 000000000..a2ffd8949 --- /dev/null +++ b/node_modules/mongodb/src/sdam/common.ts @@ -0,0 +1,79 @@ +import { clearTimeout } from 'timers'; + +import type { Binary, Long, Timestamp } from '../bson'; +import type { ClientSession } from '../sessions'; +import type { Topology } from './topology'; + +// shared state names +export const STATE_CLOSING = 'closing'; +export const STATE_CLOSED = 'closed'; +export const STATE_CONNECTING = 'connecting'; +export const STATE_CONNECTED = 'connected'; + +/** + * An enumeration of topology types we know about + * @public + */ +export const TopologyType = Object.freeze({ + Single: 'Single', + ReplicaSetNoPrimary: 'ReplicaSetNoPrimary', + ReplicaSetWithPrimary: 'ReplicaSetWithPrimary', + Sharded: 'Sharded', + Unknown: 'Unknown', + LoadBalanced: 'LoadBalanced' +} as const); + +/** @public */ +export type TopologyType = typeof TopologyType[keyof typeof TopologyType]; + +/** + * An enumeration of server types we know about + * @public + */ +export const ServerType = Object.freeze({ + Standalone: 'Standalone', + Mongos: 'Mongos', + PossiblePrimary: 'PossiblePrimary', + RSPrimary: 'RSPrimary', + RSSecondary: 'RSSecondary', + RSArbiter: 'RSArbiter', + RSOther: 'RSOther', + RSGhost: 'RSGhost', + Unknown: 'Unknown', + LoadBalancer: 'LoadBalancer' +} as const); + +/** @public */ +export type ServerType = typeof ServerType[keyof typeof ServerType]; + +/** @internal */ +export type TimerQueue = Set; + +/** @internal */ +export function drainTimerQueue(queue: TimerQueue): void { + queue.forEach(clearTimeout); + queue.clear(); +} + +/** @public */ +export interface ClusterTime { + clusterTime: Timestamp; + signature: { + hash: Binary; + keyId: Long; + }; +} + +/** Shared function to determine clusterTime for a given topology or session */ +export function _advanceClusterTime( + entity: Topology | ClientSession, + $clusterTime: ClusterTime +): void { + if (entity.clusterTime == null) { + entity.clusterTime = $clusterTime; + } else { + if ($clusterTime.clusterTime.greaterThan(entity.clusterTime.clusterTime)) { + entity.clusterTime = $clusterTime; + } + } +} diff --git a/node_modules/mongodb/src/sdam/events.ts b/node_modules/mongodb/src/sdam/events.ts new file mode 100644 index 000000000..c55eb0957 --- /dev/null +++ b/node_modules/mongodb/src/sdam/events.ts @@ -0,0 +1,182 @@ +import type { Document } from '../bson'; +import type { ServerDescription } from './server_description'; +import type { TopologyDescription } from './topology_description'; + +/** + * Emitted when server description changes, but does NOT include changes to the RTT. + * @public + * @category Event + */ +export class ServerDescriptionChangedEvent { + /** A unique identifier for the topology */ + topologyId: number; + /** The address (host/port pair) of the server */ + address: string; + /** The previous server description */ + previousDescription: ServerDescription; + /** The new server description */ + newDescription: ServerDescription; + + /** @internal */ + constructor( + topologyId: number, + address: string, + previousDescription: ServerDescription, + newDescription: ServerDescription + ) { + this.topologyId = topologyId; + this.address = address; + this.previousDescription = previousDescription; + this.newDescription = newDescription; + } +} + +/** + * Emitted when server is initialized. + * @public + * @category Event + */ +export class ServerOpeningEvent { + /** A unique identifier for the topology */ + topologyId: number; + /** The address (host/port pair) of the server */ + address: string; + + /** @internal */ + constructor(topologyId: number, address: string) { + this.topologyId = topologyId; + this.address = address; + } +} + +/** + * Emitted when server is closed. + * @public + * @category Event + */ +export class ServerClosedEvent { + /** A unique identifier for the topology */ + topologyId: number; + /** The address (host/port pair) of the server */ + address: string; + + /** @internal */ + constructor(topologyId: number, address: string) { + this.topologyId = topologyId; + this.address = address; + } +} + +/** + * Emitted when topology description changes. + * @public + * @category Event + */ +export class TopologyDescriptionChangedEvent { + /** A unique identifier for the topology */ + topologyId: number; + /** The old topology description */ + previousDescription: TopologyDescription; + /** The new topology description */ + newDescription: TopologyDescription; + + /** @internal */ + constructor( + topologyId: number, + previousDescription: TopologyDescription, + newDescription: TopologyDescription + ) { + this.topologyId = topologyId; + this.previousDescription = previousDescription; + this.newDescription = newDescription; + } +} + +/** + * Emitted when topology is initialized. + * @public + * @category Event + */ +export class TopologyOpeningEvent { + /** A unique identifier for the topology */ + topologyId: number; + + /** @internal */ + constructor(topologyId: number) { + this.topologyId = topologyId; + } +} + +/** + * Emitted when topology is closed. + * @public + * @category Event + */ +export class TopologyClosedEvent { + /** A unique identifier for the topology */ + topologyId: number; + + /** @internal */ + constructor(topologyId: number) { + this.topologyId = topologyId; + } +} + +/** + * Emitted when the server monitor’s hello command is started - immediately before + * the hello command is serialized into raw BSON and written to the socket. + * + * @public + * @category Event + */ +export class ServerHeartbeatStartedEvent { + /** The connection id for the command */ + connectionId: string; + + /** @internal */ + constructor(connectionId: string) { + this.connectionId = connectionId; + } +} + +/** + * Emitted when the server monitor’s hello succeeds. + * @public + * @category Event + */ +export class ServerHeartbeatSucceededEvent { + /** The connection id for the command */ + connectionId: string; + /** The execution time of the event in ms */ + duration: number; + /** The command reply */ + reply: Document; + + /** @internal */ + constructor(connectionId: string, duration: number, reply: Document | null) { + this.connectionId = connectionId; + this.duration = duration; + this.reply = reply ?? {}; + } +} + +/** + * Emitted when the server monitor’s hello fails, either with an “ok: 0” or a socket exception. + * @public + * @category Event + */ +export class ServerHeartbeatFailedEvent { + /** The connection id for the command */ + connectionId: string; + /** The execution time of the event in ms */ + duration: number; + /** The command failure */ + failure: Error; + + /** @internal */ + constructor(connectionId: string, duration: number, failure: Error) { + this.connectionId = connectionId; + this.duration = duration; + this.failure = failure; + } +} diff --git a/node_modules/mongodb/src/sdam/monitor.ts b/node_modules/mongodb/src/sdam/monitor.ts new file mode 100644 index 000000000..c455b58c8 --- /dev/null +++ b/node_modules/mongodb/src/sdam/monitor.ts @@ -0,0 +1,588 @@ +import { clearTimeout, setTimeout } from 'timers'; + +import { Document, Long } from '../bson'; +import { connect } from '../cmap/connect'; +import { Connection, ConnectionOptions } from '../cmap/connection'; +import { LEGACY_HELLO_COMMAND } from '../constants'; +import { MongoError, MongoErrorLabel } from '../error'; +import { CancellationToken, TypedEventEmitter } from '../mongo_types'; +import type { Callback } from '../utils'; +import { calculateDurationInMs, EventEmitterWithState, makeStateMachine, now, ns } from '../utils'; +import { ServerType, STATE_CLOSED, STATE_CLOSING } from './common'; +import { + ServerHeartbeatFailedEvent, + ServerHeartbeatStartedEvent, + ServerHeartbeatSucceededEvent +} from './events'; +import { Server } from './server'; +import type { TopologyVersion } from './server_description'; + +/** @internal */ +const kServer = Symbol('server'); +/** @internal */ +const kMonitorId = Symbol('monitorId'); +/** @internal */ +const kConnection = Symbol('connection'); +/** @internal */ +const kCancellationToken = Symbol('cancellationToken'); +/** @internal */ +const kRTTPinger = Symbol('rttPinger'); +/** @internal */ +const kRoundTripTime = Symbol('roundTripTime'); + +const STATE_IDLE = 'idle'; +const STATE_MONITORING = 'monitoring'; +const stateTransition = makeStateMachine({ + [STATE_CLOSING]: [STATE_CLOSING, STATE_IDLE, STATE_CLOSED], + [STATE_CLOSED]: [STATE_CLOSED, STATE_MONITORING], + [STATE_IDLE]: [STATE_IDLE, STATE_MONITORING, STATE_CLOSING], + [STATE_MONITORING]: [STATE_MONITORING, STATE_IDLE, STATE_CLOSING] +}); + +const INVALID_REQUEST_CHECK_STATES = new Set([STATE_CLOSING, STATE_CLOSED, STATE_MONITORING]); +function isInCloseState(monitor: Monitor) { + return monitor.s.state === STATE_CLOSED || monitor.s.state === STATE_CLOSING; +} + +/** @internal */ +export interface MonitorPrivate { + state: string; +} + +/** @public */ +export interface MonitorOptions + extends Omit { + connectTimeoutMS: number; + heartbeatFrequencyMS: number; + minHeartbeatFrequencyMS: number; +} + +/** @public */ +export type MonitorEvents = { + serverHeartbeatStarted(event: ServerHeartbeatStartedEvent): void; + serverHeartbeatSucceeded(event: ServerHeartbeatSucceededEvent): void; + serverHeartbeatFailed(event: ServerHeartbeatFailedEvent): void; + resetServer(error?: MongoError): void; + resetConnectionPool(): void; + close(): void; +} & EventEmitterWithState; + +/** @internal */ +export class Monitor extends TypedEventEmitter { + /** @internal */ + s: MonitorPrivate; + address: string; + options: Readonly< + Pick + >; + connectOptions: ConnectionOptions; + [kServer]: Server; + [kConnection]?: Connection; + [kCancellationToken]: CancellationToken; + /** @internal */ + [kMonitorId]?: MonitorInterval; + [kRTTPinger]?: RTTPinger; + + get connection(): Connection | undefined { + return this[kConnection]; + } + + constructor(server: Server, options: MonitorOptions) { + super(); + + this[kServer] = server; + this[kConnection] = undefined; + this[kCancellationToken] = new CancellationToken(); + this[kCancellationToken].setMaxListeners(Infinity); + this[kMonitorId] = undefined; + this.s = { + state: STATE_CLOSED + }; + + this.address = server.description.address; + this.options = Object.freeze({ + connectTimeoutMS: options.connectTimeoutMS ?? 10000, + heartbeatFrequencyMS: options.heartbeatFrequencyMS ?? 10000, + minHeartbeatFrequencyMS: options.minHeartbeatFrequencyMS ?? 500 + }); + + const cancellationToken = this[kCancellationToken]; + // TODO: refactor this to pull it directly from the pool, requires new ConnectionPool integration + const connectOptions = Object.assign( + { + id: '' as const, + generation: server.s.pool.generation, + connectionType: Connection, + cancellationToken, + hostAddress: server.description.hostAddress + }, + options, + // force BSON serialization options + { + raw: false, + promoteLongs: true, + promoteValues: true, + promoteBuffers: true + } + ); + + // ensure no authentication is used for monitoring + delete connectOptions.credentials; + if (connectOptions.autoEncrypter) { + delete connectOptions.autoEncrypter; + } + + this.connectOptions = Object.freeze(connectOptions); + } + + connect(): void { + if (this.s.state !== STATE_CLOSED) { + return; + } + + // start + const heartbeatFrequencyMS = this.options.heartbeatFrequencyMS; + const minHeartbeatFrequencyMS = this.options.minHeartbeatFrequencyMS; + this[kMonitorId] = new MonitorInterval(monitorServer(this), { + heartbeatFrequencyMS: heartbeatFrequencyMS, + minHeartbeatFrequencyMS: minHeartbeatFrequencyMS, + immediate: true + }); + } + + requestCheck(): void { + if (INVALID_REQUEST_CHECK_STATES.has(this.s.state)) { + return; + } + + this[kMonitorId]?.wake(); + } + + reset(): void { + const topologyVersion = this[kServer].description.topologyVersion; + if (isInCloseState(this) || topologyVersion == null) { + return; + } + + stateTransition(this, STATE_CLOSING); + resetMonitorState(this); + + // restart monitor + stateTransition(this, STATE_IDLE); + + // restart monitoring + const heartbeatFrequencyMS = this.options.heartbeatFrequencyMS; + const minHeartbeatFrequencyMS = this.options.minHeartbeatFrequencyMS; + this[kMonitorId] = new MonitorInterval(monitorServer(this), { + heartbeatFrequencyMS: heartbeatFrequencyMS, + minHeartbeatFrequencyMS: minHeartbeatFrequencyMS + }); + } + + close(): void { + if (isInCloseState(this)) { + return; + } + + stateTransition(this, STATE_CLOSING); + resetMonitorState(this); + + // close monitor + this.emit('close'); + stateTransition(this, STATE_CLOSED); + } +} + +function resetMonitorState(monitor: Monitor) { + monitor[kMonitorId]?.stop(); + monitor[kMonitorId] = undefined; + + monitor[kRTTPinger]?.close(); + monitor[kRTTPinger] = undefined; + + monitor[kCancellationToken].emit('cancel'); + + monitor[kConnection]?.destroy({ force: true }); + monitor[kConnection] = undefined; +} + +function checkServer(monitor: Monitor, callback: Callback) { + let start = now(); + monitor.emit(Server.SERVER_HEARTBEAT_STARTED, new ServerHeartbeatStartedEvent(monitor.address)); + + function failureHandler(err: Error) { + monitor[kConnection]?.destroy({ force: true }); + monitor[kConnection] = undefined; + + monitor.emit( + Server.SERVER_HEARTBEAT_FAILED, + new ServerHeartbeatFailedEvent(monitor.address, calculateDurationInMs(start), err) + ); + + const error = !(err instanceof MongoError) ? new MongoError(err) : err; + error.addErrorLabel(MongoErrorLabel.ResetPool); + + monitor.emit('resetServer', error); + callback(err); + } + + const connection = monitor[kConnection]; + if (connection && !connection.closed) { + const { serverApi, helloOk } = connection; + const connectTimeoutMS = monitor.options.connectTimeoutMS; + const maxAwaitTimeMS = monitor.options.heartbeatFrequencyMS; + const topologyVersion = monitor[kServer].description.topologyVersion; + const isAwaitable = topologyVersion != null; + + const cmd = { + [serverApi?.version || helloOk ? 'hello' : LEGACY_HELLO_COMMAND]: true, + ...(isAwaitable && topologyVersion + ? { maxAwaitTimeMS, topologyVersion: makeTopologyVersion(topologyVersion) } + : {}) + }; + + const options = isAwaitable + ? { + socketTimeoutMS: connectTimeoutMS ? connectTimeoutMS + maxAwaitTimeMS : 0, + exhaustAllowed: true + } + : { socketTimeoutMS: connectTimeoutMS }; + + if (isAwaitable && monitor[kRTTPinger] == null) { + monitor[kRTTPinger] = new RTTPinger( + monitor[kCancellationToken], + Object.assign( + { heartbeatFrequencyMS: monitor.options.heartbeatFrequencyMS }, + monitor.connectOptions + ) + ); + } + + connection.command(ns('admin.$cmd'), cmd, options, (err, hello) => { + if (err) { + return failureHandler(err); + } + + if (!('isWritablePrimary' in hello)) { + // Provide hello-style response document. + hello.isWritablePrimary = hello[LEGACY_HELLO_COMMAND]; + } + + const rttPinger = monitor[kRTTPinger]; + const duration = + isAwaitable && rttPinger ? rttPinger.roundTripTime : calculateDurationInMs(start); + + monitor.emit( + Server.SERVER_HEARTBEAT_SUCCEEDED, + new ServerHeartbeatSucceededEvent(monitor.address, duration, hello) + ); + + // if we are using the streaming protocol then we immediately issue another `started` + // event, otherwise the "check" is complete and return to the main monitor loop + if (isAwaitable && hello.topologyVersion) { + monitor.emit( + Server.SERVER_HEARTBEAT_STARTED, + new ServerHeartbeatStartedEvent(monitor.address) + ); + start = now(); + } else { + monitor[kRTTPinger]?.close(); + monitor[kRTTPinger] = undefined; + + callback(undefined, hello); + } + }); + + return; + } + + // connecting does an implicit `hello` + connect(monitor.connectOptions, (err, conn) => { + if (err) { + monitor[kConnection] = undefined; + + failureHandler(err); + return; + } + + if (conn) { + // Tell the connection that we are using the streaming protocol so that the + // connection's message stream will only read the last hello on the buffer. + conn.isMonitoringConnection = true; + + if (isInCloseState(monitor)) { + conn.destroy({ force: true }); + return; + } + + monitor[kConnection] = conn; + monitor.emit( + Server.SERVER_HEARTBEAT_SUCCEEDED, + new ServerHeartbeatSucceededEvent(monitor.address, calculateDurationInMs(start), conn.hello) + ); + + callback(undefined, conn.hello); + } + }); +} + +function monitorServer(monitor: Monitor) { + return (callback: Callback) => { + stateTransition(monitor, STATE_MONITORING); + function done() { + if (!isInCloseState(monitor)) { + stateTransition(monitor, STATE_IDLE); + } + + callback(); + } + + checkServer(monitor, (err, hello) => { + if (err) { + // otherwise an error occurred on initial discovery, also bail + if (monitor[kServer].description.type === ServerType.Unknown) { + return done(); + } + } + + // if the check indicates streaming is supported, immediately reschedule monitoring + if (hello && hello.topologyVersion) { + setTimeout(() => { + if (!isInCloseState(monitor)) { + monitor[kMonitorId]?.wake(); + } + }, 0); + } + + done(); + }); + }; +} + +function makeTopologyVersion(tv: TopologyVersion) { + return { + processId: tv.processId, + // tests mock counter as just number, but in a real situation counter should always be a Long + // TODO(NODE-2674): Preserve int64 sent from MongoDB + counter: Long.isLong(tv.counter) ? tv.counter : Long.fromNumber(tv.counter) + }; +} + +/** @internal */ +export interface RTTPingerOptions extends ConnectionOptions { + heartbeatFrequencyMS: number; +} + +/** @internal */ +export class RTTPinger { + /** @internal */ + [kConnection]?: Connection; + /** @internal */ + [kCancellationToken]: CancellationToken; + /** @internal */ + [kRoundTripTime]: number; + /** @internal */ + [kMonitorId]: NodeJS.Timeout; + closed: boolean; + + constructor(cancellationToken: CancellationToken, options: RTTPingerOptions) { + this[kConnection] = undefined; + this[kCancellationToken] = cancellationToken; + this[kRoundTripTime] = 0; + this.closed = false; + + const heartbeatFrequencyMS = options.heartbeatFrequencyMS; + this[kMonitorId] = setTimeout(() => measureRoundTripTime(this, options), heartbeatFrequencyMS); + } + + get roundTripTime(): number { + return this[kRoundTripTime]; + } + + close(): void { + this.closed = true; + clearTimeout(this[kMonitorId]); + + this[kConnection]?.destroy({ force: true }); + this[kConnection] = undefined; + } +} + +function measureRoundTripTime(rttPinger: RTTPinger, options: RTTPingerOptions) { + const start = now(); + options.cancellationToken = rttPinger[kCancellationToken]; + const heartbeatFrequencyMS = options.heartbeatFrequencyMS; + + if (rttPinger.closed) { + return; + } + + function measureAndReschedule(conn?: Connection) { + if (rttPinger.closed) { + conn?.destroy({ force: true }); + return; + } + + if (rttPinger[kConnection] == null) { + rttPinger[kConnection] = conn; + } + + rttPinger[kRoundTripTime] = calculateDurationInMs(start); + rttPinger[kMonitorId] = setTimeout( + () => measureRoundTripTime(rttPinger, options), + heartbeatFrequencyMS + ); + } + + const connection = rttPinger[kConnection]; + if (connection == null) { + connect(options, (err, conn) => { + if (err) { + rttPinger[kConnection] = undefined; + rttPinger[kRoundTripTime] = 0; + return; + } + + measureAndReschedule(conn); + }); + + return; + } + + connection.command(ns('admin.$cmd'), { [LEGACY_HELLO_COMMAND]: 1 }, undefined, err => { + if (err) { + rttPinger[kConnection] = undefined; + rttPinger[kRoundTripTime] = 0; + return; + } + + measureAndReschedule(); + }); +} + +/** + * @internal + */ +export interface MonitorIntervalOptions { + /** The interval to execute a method on */ + heartbeatFrequencyMS: number; + /** A minimum interval that must elapse before the method is called */ + minHeartbeatFrequencyMS: number; + /** Whether the method should be called immediately when the interval is started */ + immediate: boolean; + + /** + * Only used for testing unreliable timer environments + * @internal + */ + clock: () => number; +} + +/** + * @internal + */ +export class MonitorInterval { + fn: (callback: Callback) => void; + timerId: NodeJS.Timeout | undefined; + lastCallTime: number; + isExpeditedCheckScheduled = false; + stopped = false; + + heartbeatFrequencyMS: number; + minHeartbeatFrequencyMS: number; + clock: () => number; + + constructor(fn: (callback: Callback) => void, options: Partial = {}) { + this.fn = fn; + this.lastCallTime = 0; + + this.heartbeatFrequencyMS = options.heartbeatFrequencyMS ?? 1000; + this.minHeartbeatFrequencyMS = options.minHeartbeatFrequencyMS ?? 500; + this.clock = typeof options.clock === 'function' ? options.clock : now; + + if (options.immediate) { + this._executeAndReschedule(); + } else { + this.lastCallTime = this.clock(); + this._reschedule(undefined); + } + } + + wake() { + const currentTime = this.clock(); + const nextScheduledCallTime = this.lastCallTime + this.heartbeatFrequencyMS; + const timeUntilNextCall = nextScheduledCallTime - currentTime; + + // For the streaming protocol: there is nothing obviously stopping this + // interval from being woken up again while we are waiting "infinitely" + // for `fn` to be called again`. Since the function effectively + // never completes, the `timeUntilNextCall` will continue to grow + // negatively unbounded, so it will never trigger a reschedule here. + + // This is possible in virtualized environments like AWS Lambda where our + // clock is unreliable. In these cases the timer is "running" but never + // actually completes, so we want to execute immediately and then attempt + // to reschedule. + if (timeUntilNextCall < 0) { + this._executeAndReschedule(); + return; + } + + // debounce multiple calls to wake within the `minInterval` + if (this.isExpeditedCheckScheduled) { + return; + } + + // reschedule a call as soon as possible, ensuring the call never happens + // faster than the `minInterval` + if (timeUntilNextCall > this.minHeartbeatFrequencyMS) { + this._reschedule(this.minHeartbeatFrequencyMS); + this.isExpeditedCheckScheduled = true; + } + } + + stop() { + this.stopped = true; + if (this.timerId) { + clearTimeout(this.timerId); + this.timerId = undefined; + } + + this.lastCallTime = 0; + this.isExpeditedCheckScheduled = false; + } + + toString() { + return JSON.stringify(this); + } + + toJSON() { + return { + timerId: this.timerId != null ? 'set' : 'cleared', + lastCallTime: this.lastCallTime, + isExpeditedCheckScheduled: this.isExpeditedCheckScheduled, + stopped: this.stopped, + heartbeatFrequencyMS: this.heartbeatFrequencyMS, + minHeartbeatFrequencyMS: this.minHeartbeatFrequencyMS + }; + } + + private _reschedule(ms?: number) { + if (this.stopped) return; + if (this.timerId) { + clearTimeout(this.timerId); + } + + this.timerId = setTimeout(this._executeAndReschedule, ms || this.heartbeatFrequencyMS); + } + + private _executeAndReschedule = () => { + this.isExpeditedCheckScheduled = false; + this.lastCallTime = this.clock(); + + this.fn(err => { + if (err) throw err; + this._reschedule(this.heartbeatFrequencyMS); + }); + }; +} diff --git a/node_modules/mongodb/src/sdam/server.ts b/node_modules/mongodb/src/sdam/server.ts new file mode 100644 index 000000000..3560ef9cf --- /dev/null +++ b/node_modules/mongodb/src/sdam/server.ts @@ -0,0 +1,542 @@ +import type { Document } from '../bson'; +import { CommandOptions, Connection, DestroyOptions, GetMoreOptions } from '../cmap/connection'; +import { + ConnectionPool, + ConnectionPoolEvents, + ConnectionPoolOptions +} from '../cmap/connection_pool'; +import { PoolClearedError } from '../cmap/errors'; +import { + APM_EVENTS, + CLOSED, + CMAP_EVENTS, + CONNECT, + DESCRIPTION_RECEIVED, + ENDED, + HEARTBEAT_EVENTS, + SERVER_HEARTBEAT_FAILED, + SERVER_HEARTBEAT_STARTED, + SERVER_HEARTBEAT_SUCCEEDED +} from '../constants'; +import type { AutoEncrypter } from '../deps'; +import { + isNetworkErrorBeforeHandshake, + isNodeShuttingDownError, + isSDAMUnrecoverableError, + MongoCompatibilityError, + MongoError, + MongoErrorLabel, + MongoInvalidArgumentError, + MongoNetworkError, + MongoNetworkTimeoutError, + MongoServerClosedError, + MongoServerError, + MongoUnexpectedServerResponseError, + needsRetryableWriteLabel +} from '../error'; +import { Logger } from '../logger'; +import type { ServerApi } from '../mongo_client'; +import { TypedEventEmitter } from '../mongo_types'; +import type { ClientSession } from '../sessions'; +import { isTransactionCommand } from '../transactions'; +import { + Callback, + collationNotSupported, + EventEmitterWithState, + makeStateMachine, + maxWireVersion, + MongoDBNamespace, + supportsRetryableWrites +} from '../utils'; +import { + ClusterTime, + STATE_CLOSED, + STATE_CLOSING, + STATE_CONNECTED, + STATE_CONNECTING, + TopologyType +} from './common'; +import type { + ServerHeartbeatFailedEvent, + ServerHeartbeatStartedEvent, + ServerHeartbeatSucceededEvent +} from './events'; +import { Monitor, MonitorOptions } from './monitor'; +import { compareTopologyVersion, ServerDescription } from './server_description'; +import type { Topology } from './topology'; + +const stateTransition = makeStateMachine({ + [STATE_CLOSED]: [STATE_CLOSED, STATE_CONNECTING], + [STATE_CONNECTING]: [STATE_CONNECTING, STATE_CLOSING, STATE_CONNECTED, STATE_CLOSED], + [STATE_CONNECTED]: [STATE_CONNECTED, STATE_CLOSING, STATE_CLOSED], + [STATE_CLOSING]: [STATE_CLOSING, STATE_CLOSED] +}); + +/** @internal */ +const kMonitor = Symbol('monitor'); + +/** @public */ +export type ServerOptions = Omit & + MonitorOptions; + +/** @internal */ +export interface ServerPrivate { + /** The server description for this server */ + description: ServerDescription; + /** A copy of the options used to construct this instance */ + options: ServerOptions; + /** A logger instance */ + logger: Logger; + /** The current state of the Server */ + state: string; + /** The topology this server is a part of */ + topology: Topology; + /** A connection pool for this server */ + pool: ConnectionPool; + /** MongoDB server API version */ + serverApi?: ServerApi; + /** A count of the operations currently running against the server. */ + operationCount: number; +} + +/** @public */ +export type ServerEvents = { + serverHeartbeatStarted(event: ServerHeartbeatStartedEvent): void; + serverHeartbeatSucceeded(event: ServerHeartbeatSucceededEvent): void; + serverHeartbeatFailed(event: ServerHeartbeatFailedEvent): void; + /** Top level MongoClient doesn't emit this so it is marked: @internal */ + connect(server: Server): void; + descriptionReceived(description: ServerDescription): void; + closed(): void; + ended(): void; +} & ConnectionPoolEvents & + EventEmitterWithState; + +/** @internal */ +export class Server extends TypedEventEmitter { + /** @internal */ + s: ServerPrivate; + serverApi?: ServerApi; + hello?: Document; + [kMonitor]: Monitor | null; + + /** @event */ + static readonly SERVER_HEARTBEAT_STARTED = SERVER_HEARTBEAT_STARTED; + /** @event */ + static readonly SERVER_HEARTBEAT_SUCCEEDED = SERVER_HEARTBEAT_SUCCEEDED; + /** @event */ + static readonly SERVER_HEARTBEAT_FAILED = SERVER_HEARTBEAT_FAILED; + /** @event */ + static readonly CONNECT = CONNECT; + /** @event */ + static readonly DESCRIPTION_RECEIVED = DESCRIPTION_RECEIVED; + /** @event */ + static readonly CLOSED = CLOSED; + /** @event */ + static readonly ENDED = ENDED; + + /** + * Create a server + */ + constructor(topology: Topology, description: ServerDescription, options: ServerOptions) { + super(); + + this.serverApi = options.serverApi; + + const poolOptions = { hostAddress: description.hostAddress, ...options }; + + this.s = { + description, + options, + logger: new Logger('Server'), + state: STATE_CLOSED, + topology, + pool: new ConnectionPool(poolOptions), + operationCount: 0 + }; + + for (const event of [...CMAP_EVENTS, ...APM_EVENTS]) { + this.s.pool.on(event, (e: any) => this.emit(event, e)); + } + + this.s.pool.on(Connection.CLUSTER_TIME_RECEIVED, (clusterTime: ClusterTime) => { + this.clusterTime = clusterTime; + }); + + if (this.loadBalanced) { + this[kMonitor] = null; + // monitoring is disabled in load balancing mode + return; + } + + // create the monitor + // TODO(NODE-4144): Remove new variable for type narrowing + const monitor = new Monitor(this, this.s.options); + this[kMonitor] = monitor; + + for (const event of HEARTBEAT_EVENTS) { + monitor.on(event, (e: any) => this.emit(event, e)); + } + + monitor.on('resetServer', (error: MongoError) => markServerUnknown(this, error)); + monitor.on(Server.SERVER_HEARTBEAT_SUCCEEDED, (event: ServerHeartbeatSucceededEvent) => { + this.emit( + Server.DESCRIPTION_RECEIVED, + new ServerDescription(this.description.hostAddress, event.reply, { + roundTripTime: calculateRoundTripTime(this.description.roundTripTime, event.duration) + }) + ); + + if (this.s.state === STATE_CONNECTING) { + stateTransition(this, STATE_CONNECTED); + this.emit(Server.CONNECT, this); + } + }); + } + + get clusterTime(): ClusterTime | undefined { + return this.s.topology.clusterTime; + } + + set clusterTime(clusterTime: ClusterTime | undefined) { + this.s.topology.clusterTime = clusterTime; + } + + get description(): ServerDescription { + return this.s.description; + } + + get name(): string { + return this.s.description.address; + } + + get autoEncrypter(): AutoEncrypter | undefined { + if (this.s.options && this.s.options.autoEncrypter) { + return this.s.options.autoEncrypter; + } + return; + } + + get loadBalanced(): boolean { + return this.s.topology.description.type === TopologyType.LoadBalanced; + } + + /** + * Initiate server connect + */ + connect(): void { + if (this.s.state !== STATE_CLOSED) { + return; + } + + stateTransition(this, STATE_CONNECTING); + + // If in load balancer mode we automatically set the server to + // a load balancer. It never transitions out of this state and + // has no monitor. + if (!this.loadBalanced) { + this[kMonitor]?.connect(); + } else { + stateTransition(this, STATE_CONNECTED); + this.emit(Server.CONNECT, this); + } + } + + /** Destroy the server connection */ + destroy(options?: DestroyOptions, callback?: Callback): void { + if (typeof options === 'function') (callback = options), (options = {}); + options = Object.assign({}, { force: false }, options); + + if (this.s.state === STATE_CLOSED) { + if (typeof callback === 'function') { + callback(); + } + + return; + } + + stateTransition(this, STATE_CLOSING); + + if (!this.loadBalanced) { + this[kMonitor]?.close(); + } + + this.s.pool.close(options, err => { + stateTransition(this, STATE_CLOSED); + this.emit('closed'); + if (typeof callback === 'function') { + callback(err); + } + }); + } + + /** + * Immediately schedule monitoring of this server. If there already an attempt being made + * this will be a no-op. + */ + requestCheck(): void { + if (!this.loadBalanced) { + this[kMonitor]?.requestCheck(); + } + } + + /** + * Execute a command + * @internal + */ + command( + ns: MongoDBNamespace, + cmd: Document, + options: CommandOptions, + callback: Callback + ): void { + if (callback == null) { + throw new MongoInvalidArgumentError('Callback must be provided'); + } + + if (ns.db == null || typeof ns === 'string') { + throw new MongoInvalidArgumentError('Namespace must not be a string'); + } + + if (this.s.state === STATE_CLOSING || this.s.state === STATE_CLOSED) { + callback(new MongoServerClosedError()); + return; + } + + // Clone the options + const finalOptions = Object.assign({}, options, { wireProtocolCommand: false }); + + // There are cases where we need to flag the read preference not to get sent in + // the command, such as pre-5.0 servers attempting to perform an aggregate write + // with a non-primary read preference. In this case the effective read preference + // (primary) is not the same as the provided and must be removed completely. + if (finalOptions.omitReadPreference) { + delete finalOptions.readPreference; + } + + // error if collation not supported + if (collationNotSupported(this, cmd)) { + callback(new MongoCompatibilityError(`Server ${this.name} does not support collation`)); + return; + } + + const session = finalOptions.session; + const conn = session?.pinnedConnection; + + // NOTE: This is a hack! We can't retrieve the connections used for executing an operation + // (and prevent them from being checked back in) at the point of operation execution. + // This should be considered as part of the work for NODE-2882 + // NOTE: + // When incrementing operation count, it's important that we increment it before we + // attempt to check out a connection from the pool. This ensures that operations that + // are waiting for a connection are included in the operation count. Load balanced + // mode will only ever have a single server, so the operation count doesn't matter. + // Incrementing the operation count above the logic to handle load balanced mode would + // require special logic to decrement it again, or would double increment (the load + // balanced code makes a recursive call). Instead, we increment the count after this + // check. + if (this.loadBalanced && session && conn == null && isPinnableCommand(cmd, session)) { + this.s.pool.checkOut((err, checkedOut) => { + if (err || checkedOut == null) { + if (callback) return callback(err); + return; + } + + session.pin(checkedOut); + this.command(ns, cmd, finalOptions, callback); + }); + return; + } + + this.s.operationCount += 1; + + this.s.pool.withConnection( + conn, + (err, conn, cb) => { + if (err || !conn) { + this.s.operationCount -= 1; + if (!(err instanceof PoolClearedError)) { + markServerUnknown(this, err); + } else { + err.addErrorLabel(MongoErrorLabel.RetryableWriteError); + } + return cb(err); + } + + conn.command( + ns, + cmd, + finalOptions, + makeOperationHandler(this, conn, cmd, finalOptions, (error, response) => { + this.s.operationCount -= 1; + cb(error, response); + }) + ); + }, + callback + ); + } +} + +function calculateRoundTripTime(oldRtt: number, duration: number): number { + if (oldRtt === -1) { + return duration; + } + + const alpha = 0.2; + return alpha * duration + (1 - alpha) * oldRtt; +} + +function markServerUnknown(server: Server, error?: MongoServerError) { + // Load balancer servers can never be marked unknown. + if (server.loadBalanced) { + return; + } + + if (error instanceof MongoNetworkError && !(error instanceof MongoNetworkTimeoutError)) { + server[kMonitor]?.reset(); + } + + server.emit( + Server.DESCRIPTION_RECEIVED, + new ServerDescription(server.description.hostAddress, undefined, { error }) + ); +} + +function isPinnableCommand(cmd: Document, session?: ClientSession): boolean { + if (session) { + return ( + session.inTransaction() || + 'aggregate' in cmd || + 'find' in cmd || + 'getMore' in cmd || + 'listCollections' in cmd || + 'listIndexes' in cmd + ); + } + + return false; +} + +function connectionIsStale(pool: ConnectionPool, connection: Connection) { + if (connection.serviceId) { + return ( + connection.generation !== pool.serviceGenerations.get(connection.serviceId.toHexString()) + ); + } + + return connection.generation !== pool.generation; +} + +function shouldHandleStateChangeError(server: Server, err: MongoError) { + const etv = err.topologyVersion; + const stv = server.description.topologyVersion; + return compareTopologyVersion(stv, etv) < 0; +} + +function inActiveTransaction(session: ClientSession | undefined, cmd: Document) { + return session && session.inTransaction() && !isTransactionCommand(cmd); +} + +/** this checks the retryWrites option passed down from the client options, it + * does not check if the server supports retryable writes */ +function isRetryableWritesEnabled(topology: Topology) { + return topology.s.options.retryWrites !== false; +} + +function makeOperationHandler( + server: Server, + connection: Connection, + cmd: Document, + options: CommandOptions | GetMoreOptions | undefined, + callback: Callback +): Callback { + const session = options?.session; + return function handleOperationResult(error, result) { + if (result != null) { + return callback(undefined, result); + } + + if (!error) { + return callback(new MongoUnexpectedServerResponseError('Empty response with no error')); + } + + if (!(error instanceof MongoError)) { + // Node.js or some other error we have not special handling for + return callback(error); + } + + if (connectionIsStale(server.s.pool, connection)) { + return callback(error); + } + + if (error instanceof MongoNetworkError) { + if (session && !session.hasEnded && session.serverSession) { + session.serverSession.isDirty = true; + } + + // inActiveTransaction check handles commit and abort. + if ( + inActiveTransaction(session, cmd) && + !error.hasErrorLabel(MongoErrorLabel.TransientTransactionError) + ) { + error.addErrorLabel(MongoErrorLabel.TransientTransactionError); + } + + if ( + (isRetryableWritesEnabled(server.s.topology) || isTransactionCommand(cmd)) && + supportsRetryableWrites(server) && + !inActiveTransaction(session, cmd) + ) { + error.addErrorLabel(MongoErrorLabel.RetryableWriteError); + } + + if (!(error instanceof MongoNetworkTimeoutError) || isNetworkErrorBeforeHandshake(error)) { + // In load balanced mode we never mark the server as unknown and always + // clear for the specific service id. + + if (!server.loadBalanced) { + error.addErrorLabel(MongoErrorLabel.ResetPool); + markServerUnknown(server, error); + } else { + server.s.pool.clear(connection.serviceId); + } + } + } else { + if ( + (isRetryableWritesEnabled(server.s.topology) || isTransactionCommand(cmd)) && + needsRetryableWriteLabel(error, maxWireVersion(server)) && + !inActiveTransaction(session, cmd) + ) { + error.addErrorLabel(MongoErrorLabel.RetryableWriteError); + } + + if (isSDAMUnrecoverableError(error)) { + if (shouldHandleStateChangeError(server, error)) { + const shouldClearPool = maxWireVersion(server) <= 7 || isNodeShuttingDownError(error); + if (server.loadBalanced && shouldClearPool) { + server.s.pool.clear(connection.serviceId); + } + + if (!server.loadBalanced) { + if (shouldClearPool) { + error.addErrorLabel(MongoErrorLabel.ResetPool); + } + markServerUnknown(server, error); + process.nextTick(() => server.requestCheck()); + } + } + } + } + + if ( + session && + session.isPinned && + error.hasErrorLabel(MongoErrorLabel.TransientTransactionError) + ) { + session.unpin({ force: true }); + } + + return callback(error); + }; +} diff --git a/node_modules/mongodb/src/sdam/server_description.ts b/node_modules/mongodb/src/sdam/server_description.ts new file mode 100644 index 000000000..ab5da450a --- /dev/null +++ b/node_modules/mongodb/src/sdam/server_description.ts @@ -0,0 +1,262 @@ +import { Document, Long, ObjectId } from '../bson'; +import { MongoError, MongoRuntimeError, MongoServerError } from '../error'; +import { arrayStrictEqual, compareObjectId, errorStrictEqual, HostAddress, now } from '../utils'; +import type { ClusterTime } from './common'; +import { ServerType } from './common'; + +const WRITABLE_SERVER_TYPES = new Set([ + ServerType.RSPrimary, + ServerType.Standalone, + ServerType.Mongos, + ServerType.LoadBalancer +]); + +const DATA_BEARING_SERVER_TYPES = new Set([ + ServerType.RSPrimary, + ServerType.RSSecondary, + ServerType.Mongos, + ServerType.Standalone, + ServerType.LoadBalancer +]); + +/** @public */ +export interface TopologyVersion { + processId: ObjectId; + counter: Long; +} + +/** @public */ +export type TagSet = { [key: string]: string }; + +/** @internal */ +export interface ServerDescriptionOptions { + /** An Error used for better reporting debugging */ + error?: MongoServerError; + + /** The round trip time to ping this server (in ms) */ + roundTripTime?: number; + + /** If the client is in load balancing mode. */ + loadBalanced?: boolean; +} + +/** + * The client's view of a single server, based on the most recent hello outcome. + * + * Internal type, not meant to be directly instantiated + * @public + */ +export class ServerDescription { + address: string; + type: ServerType; + hosts: string[]; + passives: string[]; + arbiters: string[]; + tags: TagSet; + error: MongoError | null; + topologyVersion: TopologyVersion | null; + minWireVersion: number; + maxWireVersion: number; + roundTripTime: number; + lastUpdateTime: number; + lastWriteDate: number; + me: string | null; + primary: string | null; + setName: string | null; + setVersion: number | null; + electionId: ObjectId | null; + logicalSessionTimeoutMinutes: number | null; + + // NOTE: does this belong here? It seems we should gossip the cluster time at the CMAP level + $clusterTime?: ClusterTime; + + /** + * Create a ServerDescription + * @internal + * + * @param address - The address of the server + * @param hello - An optional hello response for this server + */ + constructor( + address: HostAddress | string, + hello?: Document, + options: ServerDescriptionOptions = {} + ) { + if (address == null || address === '') { + throw new MongoRuntimeError('ServerDescription must be provided with a non-empty address'); + } + + this.address = + typeof address === 'string' + ? HostAddress.fromString(address).toString() // Use HostAddress to normalize + : address.toString(); + this.type = parseServerType(hello, options); + this.hosts = hello?.hosts?.map((host: string) => host.toLowerCase()) ?? []; + this.passives = hello?.passives?.map((host: string) => host.toLowerCase()) ?? []; + this.arbiters = hello?.arbiters?.map((host: string) => host.toLowerCase()) ?? []; + this.tags = hello?.tags ?? {}; + this.minWireVersion = hello?.minWireVersion ?? 0; + this.maxWireVersion = hello?.maxWireVersion ?? 0; + this.roundTripTime = options?.roundTripTime ?? -1; + this.lastUpdateTime = now(); + this.lastWriteDate = hello?.lastWrite?.lastWriteDate ?? 0; + this.error = options.error ?? null; + // TODO(NODE-2674): Preserve int64 sent from MongoDB + this.topologyVersion = this.error?.topologyVersion ?? hello?.topologyVersion ?? null; + this.setName = hello?.setName ?? null; + this.setVersion = hello?.setVersion ?? null; + this.electionId = hello?.electionId ?? null; + this.logicalSessionTimeoutMinutes = hello?.logicalSessionTimeoutMinutes ?? null; + this.primary = hello?.primary ?? null; + this.me = hello?.me?.toLowerCase() ?? null; + this.$clusterTime = hello?.$clusterTime ?? null; + } + + get hostAddress(): HostAddress { + return HostAddress.fromString(this.address); + } + + get allHosts(): string[] { + return this.hosts.concat(this.arbiters).concat(this.passives); + } + + /** Is this server available for reads*/ + get isReadable(): boolean { + return this.type === ServerType.RSSecondary || this.isWritable; + } + + /** Is this server data bearing */ + get isDataBearing(): boolean { + return DATA_BEARING_SERVER_TYPES.has(this.type); + } + + /** Is this server available for writes */ + get isWritable(): boolean { + return WRITABLE_SERVER_TYPES.has(this.type); + } + + get host(): string { + const chopLength = `:${this.port}`.length; + return this.address.slice(0, -chopLength); + } + + get port(): number { + const port = this.address.split(':').pop(); + return port ? Number.parseInt(port, 10) : 27017; + } + + /** + * Determines if another `ServerDescription` is equal to this one per the rules defined + * in the {@link https://github.com/mongodb/specifications/blob/master/source/server-discovery-and-monitoring/server-discovery-and-monitoring.rst#serverdescription|SDAM spec} + */ + equals(other?: ServerDescription | null): boolean { + // Despite using the comparator that would determine a nullish topologyVersion as greater than + // for equality we should only always perform direct equality comparison + const topologyVersionsEqual = + this.topologyVersion === other?.topologyVersion || + compareTopologyVersion(this.topologyVersion, other?.topologyVersion) === 0; + + const electionIdsEqual = + this.electionId != null && other?.electionId != null + ? compareObjectId(this.electionId, other.electionId) === 0 + : this.electionId === other?.electionId; + + return ( + other != null && + errorStrictEqual(this.error, other.error) && + this.type === other.type && + this.minWireVersion === other.minWireVersion && + arrayStrictEqual(this.hosts, other.hosts) && + tagsStrictEqual(this.tags, other.tags) && + this.setName === other.setName && + this.setVersion === other.setVersion && + electionIdsEqual && + this.primary === other.primary && + this.logicalSessionTimeoutMinutes === other.logicalSessionTimeoutMinutes && + topologyVersionsEqual + ); + } +} + +// Parses a `hello` message and determines the server type +export function parseServerType(hello?: Document, options?: ServerDescriptionOptions): ServerType { + if (options?.loadBalanced) { + return ServerType.LoadBalancer; + } + + if (!hello || !hello.ok) { + return ServerType.Unknown; + } + + if (hello.isreplicaset) { + return ServerType.RSGhost; + } + + if (hello.msg && hello.msg === 'isdbgrid') { + return ServerType.Mongos; + } + + if (hello.setName) { + if (hello.hidden) { + return ServerType.RSOther; + } else if (hello.isWritablePrimary) { + return ServerType.RSPrimary; + } else if (hello.secondary) { + return ServerType.RSSecondary; + } else if (hello.arbiterOnly) { + return ServerType.RSArbiter; + } else { + return ServerType.RSOther; + } + } + + return ServerType.Standalone; +} + +function tagsStrictEqual(tags: TagSet, tags2: TagSet): boolean { + const tagsKeys = Object.keys(tags); + const tags2Keys = Object.keys(tags2); + + return ( + tagsKeys.length === tags2Keys.length && + tagsKeys.every((key: string) => tags2[key] === tags[key]) + ); +} + +/** + * Compares two topology versions. + * + * 1. If the response topologyVersion is unset or the ServerDescription's + * topologyVersion is null, the client MUST assume the response is more recent. + * 1. If the response's topologyVersion.processId is not equal to the + * ServerDescription's, the client MUST assume the response is more recent. + * 1. If the response's topologyVersion.processId is equal to the + * ServerDescription's, the client MUST use the counter field to determine + * which topologyVersion is more recent. + * + * ```ts + * currentTv < newTv === -1 + * currentTv === newTv === 0 + * currentTv > newTv === 1 + * ``` + */ +export function compareTopologyVersion( + currentTv?: TopologyVersion | null, + newTv?: TopologyVersion | null +): 0 | -1 | 1 { + if (currentTv == null || newTv == null) { + return -1; + } + + if (!currentTv.processId.equals(newTv.processId)) { + return -1; + } + + // TODO(NODE-2674): Preserve int64 sent from MongoDB + const currentCounter = Long.isLong(currentTv.counter) + ? currentTv.counter + : Long.fromNumber(currentTv.counter); + const newCounter = Long.isLong(newTv.counter) ? newTv.counter : Long.fromNumber(newTv.counter); + + return currentCounter.compare(newCounter); +} diff --git a/node_modules/mongodb/src/sdam/server_selection.ts b/node_modules/mongodb/src/sdam/server_selection.ts new file mode 100644 index 000000000..74bbd8918 --- /dev/null +++ b/node_modules/mongodb/src/sdam/server_selection.ts @@ -0,0 +1,324 @@ +import { MongoCompatibilityError, MongoInvalidArgumentError } from '../error'; +import { ReadPreference } from '../read_preference'; +import { ServerType, TopologyType } from './common'; +import type { ServerDescription, TagSet } from './server_description'; +import type { TopologyDescription } from './topology_description'; + +// max staleness constants +const IDLE_WRITE_PERIOD = 10000; +const SMALLEST_MAX_STALENESS_SECONDS = 90; + +// Minimum version to try writes on secondaries. +export const MIN_SECONDARY_WRITE_WIRE_VERSION = 13; + +/** @public */ +export type ServerSelector = ( + topologyDescription: TopologyDescription, + servers: ServerDescription[] +) => ServerDescription[]; + +/** + * Returns a server selector that selects for writable servers + */ +export function writableServerSelector(): ServerSelector { + return ( + topologyDescription: TopologyDescription, + servers: ServerDescription[] + ): ServerDescription[] => + latencyWindowReducer( + topologyDescription, + servers.filter((s: ServerDescription) => s.isWritable) + ); +} + +/** + * The purpose of this selector is to select the same server, only + * if it is in a state that it can have commands sent to it. + */ +export function sameServerSelector(description?: ServerDescription): ServerSelector { + return ( + topologyDescription: TopologyDescription, + servers: ServerDescription[] + ): ServerDescription[] => { + if (!description) return []; + // Filter the servers to match the provided description only if + // the type is not unknown. + return servers.filter(sd => { + return sd.address === description.address && sd.type !== ServerType.Unknown; + }); + }; +} + +/** + * Returns a server selector that uses a read preference to select a + * server potentially for a write on a secondary. + */ +export function secondaryWritableServerSelector( + wireVersion?: number, + readPreference?: ReadPreference +): ServerSelector { + // If server version < 5.0, read preference always primary. + // If server version >= 5.0... + // - If read preference is supplied, use that. + // - If no read preference is supplied, use primary. + if ( + !readPreference || + !wireVersion || + (wireVersion && wireVersion < MIN_SECONDARY_WRITE_WIRE_VERSION) + ) { + return readPreferenceServerSelector(ReadPreference.primary); + } + return readPreferenceServerSelector(readPreference); +} + +/** + * Reduces the passed in array of servers by the rules of the "Max Staleness" specification + * found here: https://github.com/mongodb/specifications/blob/master/source/max-staleness/max-staleness.rst + * + * @param readPreference - The read preference providing max staleness guidance + * @param topologyDescription - The topology description + * @param servers - The list of server descriptions to be reduced + * @returns The list of servers that satisfy the requirements of max staleness + */ +function maxStalenessReducer( + readPreference: ReadPreference, + topologyDescription: TopologyDescription, + servers: ServerDescription[] +): ServerDescription[] { + if (readPreference.maxStalenessSeconds == null || readPreference.maxStalenessSeconds < 0) { + return servers; + } + + const maxStaleness = readPreference.maxStalenessSeconds; + const maxStalenessVariance = + (topologyDescription.heartbeatFrequencyMS + IDLE_WRITE_PERIOD) / 1000; + if (maxStaleness < maxStalenessVariance) { + throw new MongoInvalidArgumentError( + `Option "maxStalenessSeconds" must be at least ${maxStalenessVariance} seconds` + ); + } + + if (maxStaleness < SMALLEST_MAX_STALENESS_SECONDS) { + throw new MongoInvalidArgumentError( + `Option "maxStalenessSeconds" must be at least ${SMALLEST_MAX_STALENESS_SECONDS} seconds` + ); + } + + if (topologyDescription.type === TopologyType.ReplicaSetWithPrimary) { + const primary: ServerDescription = Array.from(topologyDescription.servers.values()).filter( + primaryFilter + )[0]; + + return servers.reduce((result: ServerDescription[], server: ServerDescription) => { + const stalenessMS = + server.lastUpdateTime - + server.lastWriteDate - + (primary.lastUpdateTime - primary.lastWriteDate) + + topologyDescription.heartbeatFrequencyMS; + + const staleness = stalenessMS / 1000; + const maxStalenessSeconds = readPreference.maxStalenessSeconds ?? 0; + if (staleness <= maxStalenessSeconds) { + result.push(server); + } + + return result; + }, []); + } + + if (topologyDescription.type === TopologyType.ReplicaSetNoPrimary) { + if (servers.length === 0) { + return servers; + } + + const sMax = servers.reduce((max: ServerDescription, s: ServerDescription) => + s.lastWriteDate > max.lastWriteDate ? s : max + ); + + return servers.reduce((result: ServerDescription[], server: ServerDescription) => { + const stalenessMS = + sMax.lastWriteDate - server.lastWriteDate + topologyDescription.heartbeatFrequencyMS; + + const staleness = stalenessMS / 1000; + const maxStalenessSeconds = readPreference.maxStalenessSeconds ?? 0; + if (staleness <= maxStalenessSeconds) { + result.push(server); + } + + return result; + }, []); + } + + return servers; +} + +/** + * Determines whether a server's tags match a given set of tags + * + * @param tagSet - The requested tag set to match + * @param serverTags - The server's tags + */ +function tagSetMatch(tagSet: TagSet, serverTags: TagSet) { + const keys = Object.keys(tagSet); + const serverTagKeys = Object.keys(serverTags); + for (let i = 0; i < keys.length; ++i) { + const key = keys[i]; + if (serverTagKeys.indexOf(key) === -1 || serverTags[key] !== tagSet[key]) { + return false; + } + } + + return true; +} + +/** + * Reduces a set of server descriptions based on tags requested by the read preference + * + * @param readPreference - The read preference providing the requested tags + * @param servers - The list of server descriptions to reduce + * @returns The list of servers matching the requested tags + */ +function tagSetReducer( + readPreference: ReadPreference, + servers: ServerDescription[] +): ServerDescription[] { + if ( + readPreference.tags == null || + (Array.isArray(readPreference.tags) && readPreference.tags.length === 0) + ) { + return servers; + } + + for (let i = 0; i < readPreference.tags.length; ++i) { + const tagSet = readPreference.tags[i]; + const serversMatchingTagset = servers.reduce( + (matched: ServerDescription[], server: ServerDescription) => { + if (tagSetMatch(tagSet, server.tags)) matched.push(server); + return matched; + }, + [] + ); + + if (serversMatchingTagset.length) { + return serversMatchingTagset; + } + } + + return []; +} + +/** + * Reduces a list of servers to ensure they fall within an acceptable latency window. This is + * further specified in the "Server Selection" specification, found here: + * https://github.com/mongodb/specifications/blob/master/source/server-selection/server-selection.rst + * + * @param topologyDescription - The topology description + * @param servers - The list of servers to reduce + * @returns The servers which fall within an acceptable latency window + */ +function latencyWindowReducer( + topologyDescription: TopologyDescription, + servers: ServerDescription[] +): ServerDescription[] { + const low = servers.reduce( + (min: number, server: ServerDescription) => + min === -1 ? server.roundTripTime : Math.min(server.roundTripTime, min), + -1 + ); + + const high = low + topologyDescription.localThresholdMS; + return servers.reduce((result: ServerDescription[], server: ServerDescription) => { + if (server.roundTripTime <= high && server.roundTripTime >= low) result.push(server); + return result; + }, []); +} + +// filters +function primaryFilter(server: ServerDescription): boolean { + return server.type === ServerType.RSPrimary; +} + +function secondaryFilter(server: ServerDescription): boolean { + return server.type === ServerType.RSSecondary; +} + +function nearestFilter(server: ServerDescription): boolean { + return server.type === ServerType.RSSecondary || server.type === ServerType.RSPrimary; +} + +function knownFilter(server: ServerDescription): boolean { + return server.type !== ServerType.Unknown; +} + +function loadBalancerFilter(server: ServerDescription): boolean { + return server.type === ServerType.LoadBalancer; +} + +/** + * Returns a function which selects servers based on a provided read preference + * + * @param readPreference - The read preference to select with + */ +export function readPreferenceServerSelector(readPreference: ReadPreference): ServerSelector { + if (!readPreference.isValid()) { + throw new MongoInvalidArgumentError('Invalid read preference specified'); + } + + return ( + topologyDescription: TopologyDescription, + servers: ServerDescription[] + ): ServerDescription[] => { + const commonWireVersion = topologyDescription.commonWireVersion; + if ( + commonWireVersion && + readPreference.minWireVersion && + readPreference.minWireVersion > commonWireVersion + ) { + throw new MongoCompatibilityError( + `Minimum wire version '${readPreference.minWireVersion}' required, but found '${commonWireVersion}'` + ); + } + + if (topologyDescription.type === TopologyType.LoadBalanced) { + return servers.filter(loadBalancerFilter); + } + + if (topologyDescription.type === TopologyType.Unknown) { + return []; + } + + if ( + topologyDescription.type === TopologyType.Single || + topologyDescription.type === TopologyType.Sharded + ) { + return latencyWindowReducer(topologyDescription, servers.filter(knownFilter)); + } + + const mode = readPreference.mode; + if (mode === ReadPreference.PRIMARY) { + return servers.filter(primaryFilter); + } + + if (mode === ReadPreference.PRIMARY_PREFERRED) { + const result = servers.filter(primaryFilter); + if (result.length) { + return result; + } + } + + const filter = mode === ReadPreference.NEAREST ? nearestFilter : secondaryFilter; + const selectedServers = latencyWindowReducer( + topologyDescription, + tagSetReducer( + readPreference, + maxStalenessReducer(readPreference, topologyDescription, servers.filter(filter)) + ) + ); + + if (mode === ReadPreference.SECONDARY_PREFERRED && selectedServers.length === 0) { + return servers.filter(primaryFilter); + } + + return selectedServers; + }; +} diff --git a/node_modules/mongodb/src/sdam/srv_polling.ts b/node_modules/mongodb/src/sdam/srv_polling.ts new file mode 100644 index 000000000..b61284a5e --- /dev/null +++ b/node_modules/mongodb/src/sdam/srv_polling.ts @@ -0,0 +1,165 @@ +import * as dns from 'dns'; +import { clearTimeout, setTimeout } from 'timers'; + +import { MongoRuntimeError } from '../error'; +import { Logger, LoggerOptions } from '../logger'; +import { TypedEventEmitter } from '../mongo_types'; +import { HostAddress } from '../utils'; + +/** + * Determines whether a provided address matches the provided parent domain in order + * to avoid certain attack vectors. + * + * @param srvAddress - The address to check against a domain + * @param parentDomain - The domain to check the provided address against + * @returns Whether the provided address matches the parent domain + */ +function matchesParentDomain(srvAddress: string, parentDomain: string): boolean { + const regex = /^.*?\./; + const srv = `.${srvAddress.replace(regex, '')}`; + const parent = `.${parentDomain.replace(regex, '')}`; + return srv.endsWith(parent); +} + +/** + * @internal + * @category Event + */ +export class SrvPollingEvent { + srvRecords: dns.SrvRecord[]; + constructor(srvRecords: dns.SrvRecord[]) { + this.srvRecords = srvRecords; + } + + hostnames(): Set { + return new Set(this.srvRecords.map(r => HostAddress.fromSrvRecord(r).toString())); + } +} + +/** @internal */ +export interface SrvPollerOptions extends LoggerOptions { + srvServiceName: string; + srvMaxHosts: number; + srvHost: string; + heartbeatFrequencyMS: number; +} + +/** @internal */ +export type SrvPollerEvents = { + srvRecordDiscovery(event: SrvPollingEvent): void; +}; + +/** @internal */ +export class SrvPoller extends TypedEventEmitter { + srvHost: string; + rescanSrvIntervalMS: number; + heartbeatFrequencyMS: number; + logger: Logger; + haMode: boolean; + generation: number; + srvMaxHosts: number; + srvServiceName: string; + _timeout?: NodeJS.Timeout; + + /** @event */ + static readonly SRV_RECORD_DISCOVERY = 'srvRecordDiscovery' as const; + + constructor(options: SrvPollerOptions) { + super(); + + if (!options || !options.srvHost) { + throw new MongoRuntimeError('Options for SrvPoller must exist and include srvHost'); + } + + this.srvHost = options.srvHost; + this.srvMaxHosts = options.srvMaxHosts ?? 0; + this.srvServiceName = options.srvServiceName ?? 'mongodb'; + this.rescanSrvIntervalMS = 60000; + this.heartbeatFrequencyMS = options.heartbeatFrequencyMS ?? 10000; + this.logger = new Logger('srvPoller', options); + + this.haMode = false; + this.generation = 0; + + this._timeout = undefined; + } + + get srvAddress(): string { + return `_${this.srvServiceName}._tcp.${this.srvHost}`; + } + + get intervalMS(): number { + return this.haMode ? this.heartbeatFrequencyMS : this.rescanSrvIntervalMS; + } + + start(): void { + if (!this._timeout) { + this.schedule(); + } + } + + stop(): void { + if (this._timeout) { + clearTimeout(this._timeout); + this.generation += 1; + this._timeout = undefined; + } + } + + schedule(): void { + if (this._timeout) { + clearTimeout(this._timeout); + } + + this._timeout = setTimeout(() => this._poll(), this.intervalMS); + } + + success(srvRecords: dns.SrvRecord[]): void { + this.haMode = false; + this.schedule(); + this.emit(SrvPoller.SRV_RECORD_DISCOVERY, new SrvPollingEvent(srvRecords)); + } + + failure(message: string, obj?: NodeJS.ErrnoException): void { + this.logger.warn(message, obj); + this.haMode = true; + this.schedule(); + } + + parentDomainMismatch(srvRecord: dns.SrvRecord): void { + this.logger.warn( + `parent domain mismatch on SRV record (${srvRecord.name}:${srvRecord.port})`, + srvRecord + ); + } + + _poll(): void { + const generation = this.generation; + dns.resolveSrv(this.srvAddress, (err, srvRecords) => { + if (generation !== this.generation) { + return; + } + + if (err) { + this.failure('DNS error', err); + return; + } + + const finalAddresses: dns.SrvRecord[] = []; + for (const record of srvRecords) { + if (matchesParentDomain(record.name, this.srvHost)) { + finalAddresses.push(record); + } else { + this.parentDomainMismatch(record); + } + } + + if (!finalAddresses.length) { + this.failure('No valid addresses found at host'); + return; + } + + this.success(finalAddresses); + }); + } +} diff --git a/node_modules/mongodb/src/sdam/topology.ts b/node_modules/mongodb/src/sdam/topology.ts new file mode 100644 index 000000000..61ec49fe5 --- /dev/null +++ b/node_modules/mongodb/src/sdam/topology.ts @@ -0,0 +1,1027 @@ +import Denque = require('denque'); +import { clearTimeout, setTimeout } from 'timers'; +import { promisify } from 'util'; + +import type { BSONSerializeOptions, Document } from '../bson'; +import { deserialize, serialize } from '../bson'; +import type { MongoCredentials } from '../cmap/auth/mongo_credentials'; +import type { ConnectionEvents, DestroyOptions } from '../cmap/connection'; +import type { CloseOptions, ConnectionPoolEvents } from '../cmap/connection_pool'; +import { DEFAULT_OPTIONS, FEATURE_FLAGS } from '../connection_string'; +import { + CLOSE, + CONNECT, + ERROR, + LOCAL_SERVER_EVENTS, + OPEN, + SERVER_CLOSED, + SERVER_DESCRIPTION_CHANGED, + SERVER_OPENING, + SERVER_RELAY_EVENTS, + TIMEOUT, + TOPOLOGY_CLOSED, + TOPOLOGY_DESCRIPTION_CHANGED, + TOPOLOGY_OPENING +} from '../constants'; +import { + MongoCompatibilityError, + MongoDriverError, + MongoError, + MongoErrorLabel, + MongoRuntimeError, + MongoServerSelectionError, + MongoTopologyClosedError +} from '../error'; +import type { MongoClient, ServerApi } from '../mongo_client'; +import { TypedEventEmitter } from '../mongo_types'; +import { ReadPreference, ReadPreferenceLike } from '../read_preference'; +import type { ClientSession } from '../sessions'; +import type { Transaction } from '../transactions'; +import { + Callback, + ClientMetadata, + emitWarning, + EventEmitterWithState, + HostAddress, + makeStateMachine, + ns, + shuffle +} from '../utils'; +import { + _advanceClusterTime, + ClusterTime, + drainTimerQueue, + ServerType, + STATE_CLOSED, + STATE_CLOSING, + STATE_CONNECTED, + STATE_CONNECTING, + TimerQueue, + TopologyType +} from './common'; +import { + ServerClosedEvent, + ServerDescriptionChangedEvent, + ServerOpeningEvent, + TopologyClosedEvent, + TopologyDescriptionChangedEvent, + TopologyOpeningEvent +} from './events'; +import { Server, ServerEvents, ServerOptions } from './server'; +import { compareTopologyVersion, ServerDescription } from './server_description'; +import { readPreferenceServerSelector, ServerSelector } from './server_selection'; +import { SrvPoller, SrvPollingEvent } from './srv_polling'; +import { TopologyDescription } from './topology_description'; + +// Global state +let globalTopologyCounter = 0; + +const stateTransition = makeStateMachine({ + [STATE_CLOSED]: [STATE_CLOSED, STATE_CONNECTING], + [STATE_CONNECTING]: [STATE_CONNECTING, STATE_CLOSING, STATE_CONNECTED, STATE_CLOSED], + [STATE_CONNECTED]: [STATE_CONNECTED, STATE_CLOSING, STATE_CLOSED], + [STATE_CLOSING]: [STATE_CLOSING, STATE_CLOSED] +}); + +/** @internal */ +const kCancelled = Symbol('cancelled'); +/** @internal */ +const kWaitQueue = Symbol('waitQueue'); + +/** @internal */ +export type ServerSelectionCallback = Callback; + +/** @internal */ +export interface ServerSelectionRequest { + serverSelector: ServerSelector; + transaction?: Transaction; + callback: ServerSelectionCallback; + timer?: NodeJS.Timeout; + [kCancelled]?: boolean; +} + +/** @internal */ +export interface TopologyPrivate { + /** the id of this topology */ + id: number; + /** passed in options */ + options: TopologyOptions; + /** initial seedlist of servers to connect to */ + seedlist: HostAddress[]; + /** initial state */ + state: string; + /** the topology description */ + description: TopologyDescription; + serverSelectionTimeoutMS: number; + heartbeatFrequencyMS: number; + minHeartbeatFrequencyMS: number; + /** A map of server instances to normalized addresses */ + servers: Map; + credentials?: MongoCredentials; + clusterTime?: ClusterTime; + /** timers created for the initial connect to a server */ + connectionTimers: TimerQueue; + + /** related to srv polling */ + srvPoller?: SrvPoller; + detectShardedTopology: (event: TopologyDescriptionChangedEvent) => void; + detectSrvRecords: (event: SrvPollingEvent) => void; +} + +/** @public */ +export interface TopologyOptions extends BSONSerializeOptions, ServerOptions { + srvMaxHosts: number; + srvServiceName: string; + hosts: HostAddress[]; + retryWrites: boolean; + retryReads: boolean; + /** How long to block for server selection before throwing an error */ + serverSelectionTimeoutMS: number; + /** The name of the replica set to connect to */ + replicaSet?: string; + srvHost?: string; + /** @internal */ + srvPoller?: SrvPoller; + /** Indicates that a client should directly connect to a node without attempting to discover its topology type */ + directConnection: boolean; + loadBalanced: boolean; + metadata: ClientMetadata; + /** MongoDB server API version */ + serverApi?: ServerApi; + /** @internal */ + [featureFlag: symbol]: any; +} + +/** @public */ +export interface ConnectOptions { + readPreference?: ReadPreference; +} + +/** @public */ +export interface SelectServerOptions { + readPreference?: ReadPreferenceLike; + /** How long to block for server selection before throwing an error */ + serverSelectionTimeoutMS?: number; + session?: ClientSession; +} + +/** @public */ +export type TopologyEvents = { + /** Top level MongoClient doesn't emit this so it is marked: @internal */ + connect(topology: Topology): void; + serverOpening(event: ServerOpeningEvent): void; + serverClosed(event: ServerClosedEvent): void; + serverDescriptionChanged(event: ServerDescriptionChangedEvent): void; + topologyClosed(event: TopologyClosedEvent): void; + topologyOpening(event: TopologyOpeningEvent): void; + topologyDescriptionChanged(event: TopologyDescriptionChangedEvent): void; + error(error: Error): void; + /** @internal */ + open(topology: Topology): void; + close(): void; + timeout(): void; +} & Omit & + ConnectionPoolEvents & + ConnectionEvents & + EventEmitterWithState; +/** + * A container of server instances representing a connection to a MongoDB topology. + * @internal + */ +export class Topology extends TypedEventEmitter { + /** @internal */ + s: TopologyPrivate; + /** @internal */ + [kWaitQueue]: Denque; + /** @internal */ + hello?: Document; + /** @internal */ + _type?: string; + + client!: MongoClient; + + /** @event */ + static readonly SERVER_OPENING = SERVER_OPENING; + /** @event */ + static readonly SERVER_CLOSED = SERVER_CLOSED; + /** @event */ + static readonly SERVER_DESCRIPTION_CHANGED = SERVER_DESCRIPTION_CHANGED; + /** @event */ + static readonly TOPOLOGY_OPENING = TOPOLOGY_OPENING; + /** @event */ + static readonly TOPOLOGY_CLOSED = TOPOLOGY_CLOSED; + /** @event */ + static readonly TOPOLOGY_DESCRIPTION_CHANGED = TOPOLOGY_DESCRIPTION_CHANGED; + /** @event */ + static readonly ERROR = ERROR; + /** @event */ + static readonly OPEN = OPEN; + /** @event */ + static readonly CONNECT = CONNECT; + /** @event */ + static readonly CLOSE = CLOSE; + /** @event */ + static readonly TIMEOUT = TIMEOUT; + + /** + * @internal + * + * @privateRemarks + * mongodb-client-encryption's class ClientEncryption falls back to finding the bson lib + * defined on client.topology.bson, in order to maintain compatibility with any version + * of mongodb-client-encryption we keep a reference to serialize and deserialize here. + */ + bson: { serialize: typeof serialize; deserialize: typeof deserialize }; + + /** + * @param seedlist - a list of HostAddress instances to connect to + */ + constructor(seeds: string | string[] | HostAddress | HostAddress[], options: TopologyOptions) { + super(); + + // Legacy CSFLE support + this.bson = Object.create(null); + this.bson.serialize = serialize; + this.bson.deserialize = deserialize; + + // Options should only be undefined in tests, MongoClient will always have defined options + options = options ?? { + hosts: [HostAddress.fromString('localhost:27017')], + ...Object.fromEntries(DEFAULT_OPTIONS.entries()), + ...Object.fromEntries(FEATURE_FLAGS.entries()) + }; + + if (typeof seeds === 'string') { + seeds = [HostAddress.fromString(seeds)]; + } else if (!Array.isArray(seeds)) { + seeds = [seeds]; + } + + const seedlist: HostAddress[] = []; + for (const seed of seeds) { + if (typeof seed === 'string') { + seedlist.push(HostAddress.fromString(seed)); + } else if (seed instanceof HostAddress) { + seedlist.push(seed); + } else { + // FIXME(NODE-3483): May need to be a MongoParseError + throw new MongoRuntimeError(`Topology cannot be constructed from ${JSON.stringify(seed)}`); + } + } + + const topologyType = topologyTypeFromOptions(options); + const topologyId = globalTopologyCounter++; + + const selectedHosts = + options.srvMaxHosts == null || + options.srvMaxHosts === 0 || + options.srvMaxHosts >= seedlist.length + ? seedlist + : shuffle(seedlist, options.srvMaxHosts); + + const serverDescriptions = new Map(); + for (const hostAddress of selectedHosts) { + serverDescriptions.set(hostAddress.toString(), new ServerDescription(hostAddress)); + } + + this[kWaitQueue] = new Denque(); + this.s = { + // the id of this topology + id: topologyId, + // passed in options + options, + // initial seedlist of servers to connect to + seedlist, + // initial state + state: STATE_CLOSED, + // the topology description + description: new TopologyDescription( + topologyType, + serverDescriptions, + options.replicaSet, + undefined, + undefined, + undefined, + options + ), + serverSelectionTimeoutMS: options.serverSelectionTimeoutMS, + heartbeatFrequencyMS: options.heartbeatFrequencyMS, + minHeartbeatFrequencyMS: options.minHeartbeatFrequencyMS, + // a map of server instances to normalized addresses + servers: new Map(), + credentials: options?.credentials, + clusterTime: undefined, + + // timer management + connectionTimers: new Set(), + detectShardedTopology: ev => this.detectShardedTopology(ev), + detectSrvRecords: ev => this.detectSrvRecords(ev) + }; + + if (options.srvHost && !options.loadBalanced) { + this.s.srvPoller = + options.srvPoller ?? + new SrvPoller({ + heartbeatFrequencyMS: this.s.heartbeatFrequencyMS, + srvHost: options.srvHost, + srvMaxHosts: options.srvMaxHosts, + srvServiceName: options.srvServiceName + }); + + this.on(Topology.TOPOLOGY_DESCRIPTION_CHANGED, this.s.detectShardedTopology); + } + } + + private detectShardedTopology(event: TopologyDescriptionChangedEvent) { + const previousType = event.previousDescription.type; + const newType = event.newDescription.type; + + const transitionToSharded = + previousType !== TopologyType.Sharded && newType === TopologyType.Sharded; + const srvListeners = this.s.srvPoller?.listeners(SrvPoller.SRV_RECORD_DISCOVERY); + const listeningToSrvPolling = !!srvListeners?.includes(this.s.detectSrvRecords); + + if (transitionToSharded && !listeningToSrvPolling) { + this.s.srvPoller?.on(SrvPoller.SRV_RECORD_DISCOVERY, this.s.detectSrvRecords); + this.s.srvPoller?.start(); + } + } + + private detectSrvRecords(ev: SrvPollingEvent) { + const previousTopologyDescription = this.s.description; + this.s.description = this.s.description.updateFromSrvPollingEvent( + ev, + this.s.options.srvMaxHosts + ); + if (this.s.description === previousTopologyDescription) { + // Nothing changed, so return + return; + } + + updateServers(this); + + this.emit( + Topology.TOPOLOGY_DESCRIPTION_CHANGED, + new TopologyDescriptionChangedEvent( + this.s.id, + previousTopologyDescription, + this.s.description + ) + ); + } + + /** + * @returns A `TopologyDescription` for this topology + */ + get description(): TopologyDescription { + return this.s.description; + } + + get loadBalanced(): boolean { + return this.s.options.loadBalanced; + } + + get capabilities(): ServerCapabilities { + return new ServerCapabilities(this.lastHello()); + } + + /** Initiate server connect */ + connect(callback: Callback): void; + connect(options: ConnectOptions, callback: Callback): void; + connect(options?: ConnectOptions | Callback, callback?: Callback): void { + if (typeof options === 'function') (callback = options), (options = {}); + options = options ?? {}; + if (this.s.state === STATE_CONNECTED) { + if (typeof callback === 'function') { + callback(); + } + + return; + } + + stateTransition(this, STATE_CONNECTING); + + // emit SDAM monitoring events + this.emit(Topology.TOPOLOGY_OPENING, new TopologyOpeningEvent(this.s.id)); + + // emit an event for the topology change + this.emit( + Topology.TOPOLOGY_DESCRIPTION_CHANGED, + new TopologyDescriptionChangedEvent( + this.s.id, + new TopologyDescription(TopologyType.Unknown), // initial is always Unknown + this.s.description + ) + ); + + // connect all known servers, then attempt server selection to connect + const serverDescriptions = Array.from(this.s.description.servers.values()); + this.s.servers = new Map( + serverDescriptions.map(serverDescription => [ + serverDescription.address, + createAndConnectServer(this, serverDescription) + ]) + ); + + // In load balancer mode we need to fake a server description getting + // emitted from the monitor, since the monitor doesn't exist. + if (this.s.options.loadBalanced) { + for (const description of serverDescriptions) { + const newDescription = new ServerDescription(description.hostAddress, undefined, { + loadBalanced: this.s.options.loadBalanced + }); + this.serverUpdateHandler(newDescription); + } + } + + const exitWithError = (error: Error) => + callback ? callback(error) : this.emit(Topology.ERROR, error); + + const readPreference = options.readPreference ?? ReadPreference.primary; + this.selectServer(readPreferenceServerSelector(readPreference), options, (err, server) => { + if (err) { + return this.close({ force: false }, () => exitWithError(err)); + } + + // TODO: NODE-2471 + const skipPingOnConnect = this.s.options[Symbol.for('@@mdb.skipPingOnConnect')] === true; + if (!skipPingOnConnect && server && this.s.credentials) { + server.command(ns('admin.$cmd'), { ping: 1 }, {}, err => { + if (err) { + return exitWithError(err); + } + + stateTransition(this, STATE_CONNECTED); + this.emit(Topology.OPEN, this); + this.emit(Topology.CONNECT, this); + + callback?.(undefined, this); + }); + + return; + } + + stateTransition(this, STATE_CONNECTED); + this.emit(Topology.OPEN, this); + this.emit(Topology.CONNECT, this); + + callback?.(undefined, this); + }); + } + + /** Close this topology */ + close(callback: Callback): void; + close(options: CloseOptions): void; + close(options: CloseOptions, callback: Callback): void; + close(options?: CloseOptions | Callback, callback?: Callback): void { + if (typeof options === 'function') { + callback = options; + options = {}; + } + + if (typeof options === 'boolean') { + options = { force: options }; + } + options = options ?? {}; + + if (this.s.state === STATE_CLOSED || this.s.state === STATE_CLOSING) { + return callback?.(); + } + + const destroyedServers = Array.from(this.s.servers.values(), server => { + return promisify(destroyServer)(server, this, options as CloseOptions); + }); + + Promise.all(destroyedServers) + .then(() => { + this.s.servers.clear(); + + stateTransition(this, STATE_CLOSING); + + drainWaitQueue(this[kWaitQueue], new MongoTopologyClosedError()); + drainTimerQueue(this.s.connectionTimers); + + if (this.s.srvPoller) { + this.s.srvPoller.stop(); + this.s.srvPoller.removeListener(SrvPoller.SRV_RECORD_DISCOVERY, this.s.detectSrvRecords); + } + + this.removeListener(Topology.TOPOLOGY_DESCRIPTION_CHANGED, this.s.detectShardedTopology); + + stateTransition(this, STATE_CLOSED); + + // emit an event for close + this.emit(Topology.TOPOLOGY_CLOSED, new TopologyClosedEvent(this.s.id)); + }) + .finally(() => callback?.()); + } + + /** + * Selects a server according to the selection predicate provided + * + * @param selector - An optional selector to select servers by, defaults to a random selection within a latency window + * @param options - Optional settings related to server selection + * @param callback - The callback used to indicate success or failure + * @returns An instance of a `Server` meeting the criteria of the predicate provided + */ + selectServer( + selector: string | ReadPreference | ServerSelector, + options: SelectServerOptions, + callback: Callback + ): void { + let serverSelector; + if (typeof selector !== 'function') { + if (typeof selector === 'string') { + serverSelector = readPreferenceServerSelector(ReadPreference.fromString(selector)); + } else { + let readPreference; + if (selector instanceof ReadPreference) { + readPreference = selector; + } else { + ReadPreference.translate(options); + readPreference = options.readPreference || ReadPreference.primary; + } + + serverSelector = readPreferenceServerSelector(readPreference as ReadPreference); + } + } else { + serverSelector = selector; + } + + options = Object.assign( + {}, + { serverSelectionTimeoutMS: this.s.serverSelectionTimeoutMS }, + options + ); + + const isSharded = this.description.type === TopologyType.Sharded; + const session = options.session; + const transaction = session && session.transaction; + + if (isSharded && transaction && transaction.server) { + callback(undefined, transaction.server); + return; + } + + const waitQueueMember: ServerSelectionRequest = { + serverSelector, + transaction, + callback + }; + + const serverSelectionTimeoutMS = options.serverSelectionTimeoutMS; + if (serverSelectionTimeoutMS) { + waitQueueMember.timer = setTimeout(() => { + waitQueueMember[kCancelled] = true; + waitQueueMember.timer = undefined; + const timeoutError = new MongoServerSelectionError( + `Server selection timed out after ${serverSelectionTimeoutMS} ms`, + this.description + ); + + waitQueueMember.callback(timeoutError); + }, serverSelectionTimeoutMS); + } + + this[kWaitQueue].push(waitQueueMember); + processWaitQueue(this); + } + + // Sessions related methods + + /** + * @returns Whether the topology should initiate selection to determine session support + */ + shouldCheckForSessionSupport(): boolean { + if (this.description.type === TopologyType.Single) { + return !this.description.hasKnownServers; + } + + return !this.description.hasDataBearingServers; + } + + /** + * @returns Whether sessions are supported on the current topology + */ + hasSessionSupport(): boolean { + return this.loadBalanced || this.description.logicalSessionTimeoutMinutes != null; + } + + /** + * Update the internal TopologyDescription with a ServerDescription + * + * @param serverDescription - The server to update in the internal list of server descriptions + */ + serverUpdateHandler(serverDescription: ServerDescription): void { + if (!this.s.description.hasServer(serverDescription.address)) { + return; + } + + // ignore this server update if its from an outdated topologyVersion + if (isStaleServerDescription(this.s.description, serverDescription)) { + return; + } + + // these will be used for monitoring events later + const previousTopologyDescription = this.s.description; + const previousServerDescription = this.s.description.servers.get(serverDescription.address); + if (!previousServerDescription) { + return; + } + + // Driver Sessions Spec: "Whenever a driver receives a cluster time from + // a server it MUST compare it to the current highest seen cluster time + // for the deployment. If the new cluster time is higher than the + // highest seen cluster time it MUST become the new highest seen cluster + // time. Two cluster times are compared using only the BsonTimestamp + // value of the clusterTime embedded field." + const clusterTime = serverDescription.$clusterTime; + if (clusterTime) { + _advanceClusterTime(this, clusterTime); + } + + // If we already know all the information contained in this updated description, then + // we don't need to emit SDAM events, but still need to update the description, in order + // to keep client-tracked attributes like last update time and round trip time up to date + const equalDescriptions = + previousServerDescription && previousServerDescription.equals(serverDescription); + + // first update the TopologyDescription + this.s.description = this.s.description.update(serverDescription); + if (this.s.description.compatibilityError) { + this.emit(Topology.ERROR, new MongoCompatibilityError(this.s.description.compatibilityError)); + return; + } + + // emit monitoring events for this change + if (!equalDescriptions) { + const newDescription = this.s.description.servers.get(serverDescription.address); + if (newDescription) { + this.emit( + Topology.SERVER_DESCRIPTION_CHANGED, + new ServerDescriptionChangedEvent( + this.s.id, + serverDescription.address, + previousServerDescription, + newDescription + ) + ); + } + } + + // update server list from updated descriptions + updateServers(this, serverDescription); + + // attempt to resolve any outstanding server selection attempts + if (this[kWaitQueue].length > 0) { + processWaitQueue(this); + } + + if (!equalDescriptions) { + this.emit( + Topology.TOPOLOGY_DESCRIPTION_CHANGED, + new TopologyDescriptionChangedEvent( + this.s.id, + previousTopologyDescription, + this.s.description + ) + ); + } + } + + auth(credentials?: MongoCredentials, callback?: Callback): void { + if (typeof credentials === 'function') (callback = credentials), (credentials = undefined); + if (typeof callback === 'function') callback(undefined, true); + } + + get clientMetadata(): ClientMetadata { + return this.s.options.metadata; + } + + isConnected(): boolean { + return this.s.state === STATE_CONNECTED; + } + + isDestroyed(): boolean { + return this.s.state === STATE_CLOSED; + } + + /** + * @deprecated This function is deprecated and will be removed in the next major version. + */ + unref(): void { + emitWarning('`unref` is a noop and will be removed in the next major version'); + } + + // NOTE: There are many places in code where we explicitly check the last hello + // to do feature support detection. This should be done any other way, but for + // now we will just return the first hello seen, which should suffice. + lastHello(): Document { + const serverDescriptions = Array.from(this.description.servers.values()); + if (serverDescriptions.length === 0) return {}; + const sd = serverDescriptions.filter( + (sd: ServerDescription) => sd.type !== ServerType.Unknown + )[0]; + + const result = sd || { maxWireVersion: this.description.commonWireVersion }; + return result; + } + + get commonWireVersion(): number | undefined { + return this.description.commonWireVersion; + } + + get logicalSessionTimeoutMinutes(): number | null { + return this.description.logicalSessionTimeoutMinutes; + } + + get clusterTime(): ClusterTime | undefined { + return this.s.clusterTime; + } + + set clusterTime(clusterTime: ClusterTime | undefined) { + this.s.clusterTime = clusterTime; + } +} + +/** Destroys a server, and removes all event listeners from the instance */ +function destroyServer( + server: Server, + topology: Topology, + options?: DestroyOptions, + callback?: Callback +) { + options = options ?? {}; + for (const event of LOCAL_SERVER_EVENTS) { + server.removeAllListeners(event); + } + + server.destroy(options, () => { + topology.emit( + Topology.SERVER_CLOSED, + new ServerClosedEvent(topology.s.id, server.description.address) + ); + + for (const event of SERVER_RELAY_EVENTS) { + server.removeAllListeners(event); + } + if (typeof callback === 'function') { + callback(); + } + }); +} + +/** Predicts the TopologyType from options */ +function topologyTypeFromOptions(options?: TopologyOptions) { + if (options?.directConnection) { + return TopologyType.Single; + } + + if (options?.replicaSet) { + return TopologyType.ReplicaSetNoPrimary; + } + + if (options?.loadBalanced) { + return TopologyType.LoadBalanced; + } + + return TopologyType.Unknown; +} + +/** + * Creates new server instances and attempts to connect them + * + * @param topology - The topology that this server belongs to + * @param serverDescription - The description for the server to initialize and connect to + */ +function createAndConnectServer(topology: Topology, serverDescription: ServerDescription) { + topology.emit( + Topology.SERVER_OPENING, + new ServerOpeningEvent(topology.s.id, serverDescription.address) + ); + + const server = new Server(topology, serverDescription, topology.s.options); + for (const event of SERVER_RELAY_EVENTS) { + server.on(event, (e: any) => topology.emit(event, e)); + } + + server.on(Server.DESCRIPTION_RECEIVED, description => topology.serverUpdateHandler(description)); + + server.connect(); + return server; +} + +/** + * @param topology - Topology to update. + * @param incomingServerDescription - New server description. + */ +function updateServers(topology: Topology, incomingServerDescription?: ServerDescription) { + // update the internal server's description + if (incomingServerDescription && topology.s.servers.has(incomingServerDescription.address)) { + const server = topology.s.servers.get(incomingServerDescription.address); + if (server) { + server.s.description = incomingServerDescription; + if ( + incomingServerDescription.error instanceof MongoError && + incomingServerDescription.error.hasErrorLabel(MongoErrorLabel.ResetPool) + ) { + server.s.pool.clear(); + } else if (incomingServerDescription.error == null) { + const newTopologyType = topology.s.description.type; + const shouldMarkPoolReady = + incomingServerDescription.isDataBearing || + (incomingServerDescription.type !== ServerType.Unknown && + newTopologyType === TopologyType.Single); + if (shouldMarkPoolReady) { + server.s.pool.ready(); + } + } + } + } + + // add new servers for all descriptions we currently don't know about locally + for (const serverDescription of topology.description.servers.values()) { + if (!topology.s.servers.has(serverDescription.address)) { + const server = createAndConnectServer(topology, serverDescription); + topology.s.servers.set(serverDescription.address, server); + } + } + + // for all servers no longer known, remove their descriptions and destroy their instances + for (const entry of topology.s.servers) { + const serverAddress = entry[0]; + if (topology.description.hasServer(serverAddress)) { + continue; + } + + if (!topology.s.servers.has(serverAddress)) { + continue; + } + + const server = topology.s.servers.get(serverAddress); + topology.s.servers.delete(serverAddress); + + // prepare server for garbage collection + if (server) { + destroyServer(server, topology); + } + } +} + +function drainWaitQueue(queue: Denque, err?: MongoDriverError) { + while (queue.length) { + const waitQueueMember = queue.shift(); + if (!waitQueueMember) { + continue; + } + + if (waitQueueMember.timer) { + clearTimeout(waitQueueMember.timer); + } + + if (!waitQueueMember[kCancelled]) { + waitQueueMember.callback(err); + } + } +} + +function processWaitQueue(topology: Topology) { + if (topology.s.state === STATE_CLOSED) { + drainWaitQueue(topology[kWaitQueue], new MongoTopologyClosedError()); + return; + } + + const isSharded = topology.description.type === TopologyType.Sharded; + const serverDescriptions = Array.from(topology.description.servers.values()); + const membersToProcess = topology[kWaitQueue].length; + for (let i = 0; i < membersToProcess; ++i) { + const waitQueueMember = topology[kWaitQueue].shift(); + if (!waitQueueMember) { + continue; + } + + if (waitQueueMember[kCancelled]) { + continue; + } + + let selectedDescriptions; + try { + const serverSelector = waitQueueMember.serverSelector; + selectedDescriptions = serverSelector + ? serverSelector(topology.description, serverDescriptions) + : serverDescriptions; + } catch (e) { + if (waitQueueMember.timer) { + clearTimeout(waitQueueMember.timer); + } + + waitQueueMember.callback(e); + continue; + } + + let selectedServer; + if (selectedDescriptions.length === 0) { + topology[kWaitQueue].push(waitQueueMember); + continue; + } else if (selectedDescriptions.length === 1) { + selectedServer = topology.s.servers.get(selectedDescriptions[0].address); + } else { + const descriptions = shuffle(selectedDescriptions, 2); + const server1 = topology.s.servers.get(descriptions[0].address); + const server2 = topology.s.servers.get(descriptions[1].address); + + selectedServer = + server1 && server2 && server1.s.operationCount < server2.s.operationCount + ? server1 + : server2; + } + + if (!selectedServer) { + waitQueueMember.callback( + new MongoServerSelectionError( + 'server selection returned a server description but the server was not found in the topology', + topology.description + ) + ); + return; + } + const transaction = waitQueueMember.transaction; + if (isSharded && transaction && transaction.isActive && selectedServer) { + transaction.pinServer(selectedServer); + } + + if (waitQueueMember.timer) { + clearTimeout(waitQueueMember.timer); + } + + waitQueueMember.callback(undefined, selectedServer); + } + + if (topology[kWaitQueue].length > 0) { + // ensure all server monitors attempt monitoring soon + for (const [, server] of topology.s.servers) { + process.nextTick(function scheduleServerCheck() { + return server.requestCheck(); + }); + } + } +} + +function isStaleServerDescription( + topologyDescription: TopologyDescription, + incomingServerDescription: ServerDescription +) { + const currentServerDescription = topologyDescription.servers.get( + incomingServerDescription.address + ); + const currentTopologyVersion = currentServerDescription?.topologyVersion; + return ( + compareTopologyVersion(currentTopologyVersion, incomingServerDescription.topologyVersion) > 0 + ); +} + +/** @public */ +export class ServerCapabilities { + maxWireVersion: number; + minWireVersion: number; + + constructor(hello: Document) { + this.minWireVersion = hello.minWireVersion || 0; + this.maxWireVersion = hello.maxWireVersion || 0; + } + + get hasAggregationCursor(): boolean { + return this.maxWireVersion >= 1; + } + + get hasWriteCommands(): boolean { + return this.maxWireVersion >= 2; + } + get hasTextSearch(): boolean { + return this.minWireVersion >= 0; + } + + get hasAuthCommands(): boolean { + return this.maxWireVersion >= 1; + } + + get hasListCollectionsCommand(): boolean { + return this.maxWireVersion >= 3; + } + + get hasListIndexesCommand(): boolean { + return this.maxWireVersion >= 3; + } + + get supportsSnapshotReads(): boolean { + return this.maxWireVersion >= 13; + } + + get commandsTakeWriteConcern(): boolean { + return this.maxWireVersion >= 5; + } + + get commandsTakeCollation(): boolean { + return this.maxWireVersion >= 5; + } +} diff --git a/node_modules/mongodb/src/sdam/topology_description.ts b/node_modules/mongodb/src/sdam/topology_description.ts new file mode 100644 index 000000000..972680afd --- /dev/null +++ b/node_modules/mongodb/src/sdam/topology_description.ts @@ -0,0 +1,486 @@ +import type { ObjectId } from '../bson'; +import * as WIRE_CONSTANTS from '../cmap/wire_protocol/constants'; +import { MongoRuntimeError, MongoServerError } from '../error'; +import { compareObjectId, shuffle } from '../utils'; +import { ServerType, TopologyType } from './common'; +import { ServerDescription } from './server_description'; +import type { SrvPollingEvent } from './srv_polling'; + +// constants related to compatibility checks +const MIN_SUPPORTED_SERVER_VERSION = WIRE_CONSTANTS.MIN_SUPPORTED_SERVER_VERSION; +const MAX_SUPPORTED_SERVER_VERSION = WIRE_CONSTANTS.MAX_SUPPORTED_SERVER_VERSION; +const MIN_SUPPORTED_WIRE_VERSION = WIRE_CONSTANTS.MIN_SUPPORTED_WIRE_VERSION; +const MAX_SUPPORTED_WIRE_VERSION = WIRE_CONSTANTS.MAX_SUPPORTED_WIRE_VERSION; + +const MONGOS_OR_UNKNOWN = new Set([ServerType.Mongos, ServerType.Unknown]); +const MONGOS_OR_STANDALONE = new Set([ServerType.Mongos, ServerType.Standalone]); +const NON_PRIMARY_RS_MEMBERS = new Set([ + ServerType.RSSecondary, + ServerType.RSArbiter, + ServerType.RSOther +]); + +/** @public */ +export interface TopologyDescriptionOptions { + heartbeatFrequencyMS?: number; + localThresholdMS?: number; +} + +/** + * Representation of a deployment of servers + * @public + */ +export class TopologyDescription { + type: TopologyType; + setName: string | null; + maxSetVersion: number | null; + maxElectionId: ObjectId | null; + servers: Map; + stale: boolean; + compatible: boolean; + compatibilityError?: string; + logicalSessionTimeoutMinutes: number | null; + heartbeatFrequencyMS: number; + localThresholdMS: number; + commonWireVersion: number; + + /** + * Create a TopologyDescription + */ + constructor( + topologyType: TopologyType, + serverDescriptions: Map | null = null, + setName: string | null = null, + maxSetVersion: number | null = null, + maxElectionId: ObjectId | null = null, + commonWireVersion: number | null = null, + options: TopologyDescriptionOptions | null = null + ) { + options = options ?? {}; + + this.type = topologyType ?? TopologyType.Unknown; + this.servers = serverDescriptions ?? new Map(); + this.stale = false; + this.compatible = true; + this.heartbeatFrequencyMS = options.heartbeatFrequencyMS ?? 0; + this.localThresholdMS = options.localThresholdMS ?? 15; + this.setName = setName ?? null; + this.maxElectionId = maxElectionId ?? null; + this.maxSetVersion = maxSetVersion ?? null; + this.commonWireVersion = commonWireVersion ?? 0; + + // determine server compatibility + for (const serverDescription of this.servers.values()) { + // Load balancer mode is always compatible. + if ( + serverDescription.type === ServerType.Unknown || + serverDescription.type === ServerType.LoadBalancer + ) { + continue; + } + + if (serverDescription.minWireVersion > MAX_SUPPORTED_WIRE_VERSION) { + this.compatible = false; + this.compatibilityError = `Server at ${serverDescription.address} requires wire version ${serverDescription.minWireVersion}, but this version of the driver only supports up to ${MAX_SUPPORTED_WIRE_VERSION} (MongoDB ${MAX_SUPPORTED_SERVER_VERSION})`; + } + + if (serverDescription.maxWireVersion < MIN_SUPPORTED_WIRE_VERSION) { + this.compatible = false; + this.compatibilityError = `Server at ${serverDescription.address} reports wire version ${serverDescription.maxWireVersion}, but this version of the driver requires at least ${MIN_SUPPORTED_WIRE_VERSION} (MongoDB ${MIN_SUPPORTED_SERVER_VERSION}).`; + break; + } + } + + // Whenever a client updates the TopologyDescription from a hello response, it MUST set + // TopologyDescription.logicalSessionTimeoutMinutes to the smallest logicalSessionTimeoutMinutes + // value among ServerDescriptions of all data-bearing server types. If any have a null + // logicalSessionTimeoutMinutes, then TopologyDescription.logicalSessionTimeoutMinutes MUST be + // set to null. + this.logicalSessionTimeoutMinutes = null; + for (const [, server] of this.servers) { + if (server.isReadable) { + if (server.logicalSessionTimeoutMinutes == null) { + // If any of the servers have a null logicalSessionsTimeout, then the whole topology does + this.logicalSessionTimeoutMinutes = null; + break; + } + + if (this.logicalSessionTimeoutMinutes == null) { + // First server with a non null logicalSessionsTimeout + this.logicalSessionTimeoutMinutes = server.logicalSessionTimeoutMinutes; + continue; + } + + // Always select the smaller of the: + // current server logicalSessionsTimeout and the topologies logicalSessionsTimeout + this.logicalSessionTimeoutMinutes = Math.min( + this.logicalSessionTimeoutMinutes, + server.logicalSessionTimeoutMinutes + ); + } + } + } + + /** + * Returns a new TopologyDescription based on the SrvPollingEvent + * @internal + */ + updateFromSrvPollingEvent(ev: SrvPollingEvent, srvMaxHosts = 0): TopologyDescription { + /** The SRV addresses defines the set of addresses we should be using */ + const incomingHostnames = ev.hostnames(); + const currentHostnames = new Set(this.servers.keys()); + + const hostnamesToAdd = new Set(incomingHostnames); + const hostnamesToRemove = new Set(); + for (const hostname of currentHostnames) { + // filter hostnamesToAdd (made from incomingHostnames) down to what is *not* present in currentHostnames + hostnamesToAdd.delete(hostname); + if (!incomingHostnames.has(hostname)) { + // If the SRV Records no longer include this hostname + // we have to stop using it + hostnamesToRemove.add(hostname); + } + } + + if (hostnamesToAdd.size === 0 && hostnamesToRemove.size === 0) { + // No new hosts to add and none to remove + return this; + } + + const serverDescriptions = new Map(this.servers); + for (const removedHost of hostnamesToRemove) { + serverDescriptions.delete(removedHost); + } + + if (hostnamesToAdd.size > 0) { + if (srvMaxHosts === 0) { + // Add all! + for (const hostToAdd of hostnamesToAdd) { + serverDescriptions.set(hostToAdd, new ServerDescription(hostToAdd)); + } + } else if (serverDescriptions.size < srvMaxHosts) { + // Add only the amount needed to get us back to srvMaxHosts + const selectedHosts = shuffle(hostnamesToAdd, srvMaxHosts - serverDescriptions.size); + for (const selectedHostToAdd of selectedHosts) { + serverDescriptions.set(selectedHostToAdd, new ServerDescription(selectedHostToAdd)); + } + } + } + + return new TopologyDescription( + this.type, + serverDescriptions, + this.setName, + this.maxSetVersion, + this.maxElectionId, + this.commonWireVersion, + { heartbeatFrequencyMS: this.heartbeatFrequencyMS, localThresholdMS: this.localThresholdMS } + ); + } + + /** + * Returns a copy of this description updated with a given ServerDescription + * @internal + */ + update(serverDescription: ServerDescription): TopologyDescription { + const address = serverDescription.address; + + // potentially mutated values + let { type: topologyType, setName, maxSetVersion, maxElectionId, commonWireVersion } = this; + + const serverType = serverDescription.type; + const serverDescriptions = new Map(this.servers); + + // update common wire version + if (serverDescription.maxWireVersion !== 0) { + if (commonWireVersion == null) { + commonWireVersion = serverDescription.maxWireVersion; + } else { + commonWireVersion = Math.min(commonWireVersion, serverDescription.maxWireVersion); + } + } + + if ( + typeof serverDescription.setName === 'string' && + typeof setName === 'string' && + serverDescription.setName !== setName + ) { + if (topologyType === TopologyType.Single) { + // "Single" Topology with setName mismatch is direct connection usage, mark unknown do not remove + serverDescription = new ServerDescription(address); + } else { + serverDescriptions.delete(address); + } + } + + // update the actual server description + serverDescriptions.set(address, serverDescription); + + if (topologyType === TopologyType.Single) { + // once we are defined as single, that never changes + return new TopologyDescription( + TopologyType.Single, + serverDescriptions, + setName, + maxSetVersion, + maxElectionId, + commonWireVersion, + { heartbeatFrequencyMS: this.heartbeatFrequencyMS, localThresholdMS: this.localThresholdMS } + ); + } + + if (topologyType === TopologyType.Unknown) { + if (serverType === ServerType.Standalone && this.servers.size !== 1) { + serverDescriptions.delete(address); + } else { + topologyType = topologyTypeForServerType(serverType); + } + } + + if (topologyType === TopologyType.Sharded) { + if (!MONGOS_OR_UNKNOWN.has(serverType)) { + serverDescriptions.delete(address); + } + } + + if (topologyType === TopologyType.ReplicaSetNoPrimary) { + if (MONGOS_OR_STANDALONE.has(serverType)) { + serverDescriptions.delete(address); + } + + if (serverType === ServerType.RSPrimary) { + const result = updateRsFromPrimary( + serverDescriptions, + serverDescription, + setName, + maxSetVersion, + maxElectionId + ); + + topologyType = result[0]; + setName = result[1]; + maxSetVersion = result[2]; + maxElectionId = result[3]; + } else if (NON_PRIMARY_RS_MEMBERS.has(serverType)) { + const result = updateRsNoPrimaryFromMember(serverDescriptions, serverDescription, setName); + topologyType = result[0]; + setName = result[1]; + } + } + + if (topologyType === TopologyType.ReplicaSetWithPrimary) { + if (MONGOS_OR_STANDALONE.has(serverType)) { + serverDescriptions.delete(address); + topologyType = checkHasPrimary(serverDescriptions); + } else if (serverType === ServerType.RSPrimary) { + const result = updateRsFromPrimary( + serverDescriptions, + serverDescription, + setName, + maxSetVersion, + maxElectionId + ); + + topologyType = result[0]; + setName = result[1]; + maxSetVersion = result[2]; + maxElectionId = result[3]; + } else if (NON_PRIMARY_RS_MEMBERS.has(serverType)) { + topologyType = updateRsWithPrimaryFromMember( + serverDescriptions, + serverDescription, + setName + ); + } else { + topologyType = checkHasPrimary(serverDescriptions); + } + } + + return new TopologyDescription( + topologyType, + serverDescriptions, + setName, + maxSetVersion, + maxElectionId, + commonWireVersion, + { heartbeatFrequencyMS: this.heartbeatFrequencyMS, localThresholdMS: this.localThresholdMS } + ); + } + + get error(): MongoServerError | null { + const descriptionsWithError = Array.from(this.servers.values()).filter( + (sd: ServerDescription) => sd.error + ); + + if (descriptionsWithError.length > 0) { + return descriptionsWithError[0].error; + } + + return null; + } + + /** + * Determines if the topology description has any known servers + */ + get hasKnownServers(): boolean { + return Array.from(this.servers.values()).some( + (sd: ServerDescription) => sd.type !== ServerType.Unknown + ); + } + + /** + * Determines if this topology description has a data-bearing server available. + */ + get hasDataBearingServers(): boolean { + return Array.from(this.servers.values()).some((sd: ServerDescription) => sd.isDataBearing); + } + + /** + * Determines if the topology has a definition for the provided address + * @internal + */ + hasServer(address: string): boolean { + return this.servers.has(address); + } +} + +function topologyTypeForServerType(serverType: ServerType): TopologyType { + switch (serverType) { + case ServerType.Standalone: + return TopologyType.Single; + case ServerType.Mongos: + return TopologyType.Sharded; + case ServerType.RSPrimary: + return TopologyType.ReplicaSetWithPrimary; + case ServerType.RSOther: + case ServerType.RSSecondary: + return TopologyType.ReplicaSetNoPrimary; + default: + return TopologyType.Unknown; + } +} + +function updateRsFromPrimary( + serverDescriptions: Map, + serverDescription: ServerDescription, + setName: string | null = null, + maxSetVersion: number | null = null, + maxElectionId: ObjectId | null = null +): [TopologyType, string | null, number | null, ObjectId | null] { + setName = setName || serverDescription.setName; + if (setName !== serverDescription.setName) { + serverDescriptions.delete(serverDescription.address); + return [checkHasPrimary(serverDescriptions), setName, maxSetVersion, maxElectionId]; + } + + const electionId = serverDescription.electionId ? serverDescription.electionId : null; + if (serverDescription.setVersion && electionId) { + if (maxSetVersion && maxElectionId) { + if ( + maxSetVersion > serverDescription.setVersion || + compareObjectId(maxElectionId, electionId) > 0 + ) { + // this primary is stale, we must remove it + serverDescriptions.set( + serverDescription.address, + new ServerDescription(serverDescription.address) + ); + + return [checkHasPrimary(serverDescriptions), setName, maxSetVersion, maxElectionId]; + } + } + + maxElectionId = serverDescription.electionId; + } + + if ( + serverDescription.setVersion != null && + (maxSetVersion == null || serverDescription.setVersion > maxSetVersion) + ) { + maxSetVersion = serverDescription.setVersion; + } + + // We've heard from the primary. Is it the same primary as before? + for (const [address, server] of serverDescriptions) { + if (server.type === ServerType.RSPrimary && server.address !== serverDescription.address) { + // Reset old primary's type to Unknown. + serverDescriptions.set(address, new ServerDescription(server.address)); + + // There can only be one primary + break; + } + } + + // Discover new hosts from this primary's response. + serverDescription.allHosts.forEach((address: string) => { + if (!serverDescriptions.has(address)) { + serverDescriptions.set(address, new ServerDescription(address)); + } + }); + + // Remove hosts not in the response. + const currentAddresses = Array.from(serverDescriptions.keys()); + const responseAddresses = serverDescription.allHosts; + currentAddresses + .filter((addr: string) => responseAddresses.indexOf(addr) === -1) + .forEach((address: string) => { + serverDescriptions.delete(address); + }); + + return [checkHasPrimary(serverDescriptions), setName, maxSetVersion, maxElectionId]; +} + +function updateRsWithPrimaryFromMember( + serverDescriptions: Map, + serverDescription: ServerDescription, + setName: string | null = null +): TopologyType { + if (setName == null) { + // TODO(NODE-3483): should be an appropriate runtime error + throw new MongoRuntimeError('Argument "setName" is required if connected to a replica set'); + } + + if ( + setName !== serverDescription.setName || + (serverDescription.me && serverDescription.address !== serverDescription.me) + ) { + serverDescriptions.delete(serverDescription.address); + } + + return checkHasPrimary(serverDescriptions); +} + +function updateRsNoPrimaryFromMember( + serverDescriptions: Map, + serverDescription: ServerDescription, + setName: string | null = null +): [TopologyType, string | null] { + const topologyType = TopologyType.ReplicaSetNoPrimary; + setName = setName ?? serverDescription.setName; + if (setName !== serverDescription.setName) { + serverDescriptions.delete(serverDescription.address); + return [topologyType, setName]; + } + + serverDescription.allHosts.forEach((address: string) => { + if (!serverDescriptions.has(address)) { + serverDescriptions.set(address, new ServerDescription(address)); + } + }); + + if (serverDescription.me && serverDescription.address !== serverDescription.me) { + serverDescriptions.delete(serverDescription.address); + } + + return [topologyType, setName]; +} + +function checkHasPrimary(serverDescriptions: Map): TopologyType { + for (const serverDescription of serverDescriptions.values()) { + if (serverDescription.type === ServerType.RSPrimary) { + return TopologyType.ReplicaSetWithPrimary; + } + } + + return TopologyType.ReplicaSetNoPrimary; +} diff --git a/node_modules/mongodb/src/sessions.ts b/node_modules/mongodb/src/sessions.ts new file mode 100644 index 000000000..68eff617d --- /dev/null +++ b/node_modules/mongodb/src/sessions.ts @@ -0,0 +1,1079 @@ +import { Binary, Document, Long, Timestamp } from './bson'; +import type { CommandOptions, Connection } from './cmap/connection'; +import { ConnectionPoolMetrics } from './cmap/metrics'; +import { isSharded } from './cmap/wire_protocol/shared'; +import { PINNED, UNPINNED } from './constants'; +import type { AbstractCursor } from './cursor/abstract_cursor'; +import { + AnyError, + MongoAPIError, + MongoCompatibilityError, + MONGODB_ERROR_CODES, + MongoDriverError, + MongoError, + MongoErrorLabel, + MongoExpiredSessionError, + MongoInvalidArgumentError, + MongoRuntimeError, + MongoServerError, + MongoTransactionError, + MongoWriteConcernError +} from './error'; +import type { MongoClient, MongoOptions } from './mongo_client'; +import { TypedEventEmitter } from './mongo_types'; +import { executeOperation } from './operations/execute_operation'; +import { RunAdminCommandOperation } from './operations/run_command'; +import { PromiseProvider } from './promise_provider'; +import { ReadConcernLevel } from './read_concern'; +import { ReadPreference } from './read_preference'; +import { _advanceClusterTime, ClusterTime, TopologyType } from './sdam/common'; +import { isTransactionCommand, Transaction, TransactionOptions, TxnState } from './transactions'; +import { + calculateDurationInMs, + Callback, + commandSupportsReadConcern, + isPromiseLike, + maxWireVersion, + maybePromise, + now, + uuidV4 +} from './utils'; + +const minWireVersionForShardedTransactions = 8; + +/** @public */ +export interface ClientSessionOptions { + /** Whether causal consistency should be enabled on this session */ + causalConsistency?: boolean; + /** Whether all read operations should be read from the same snapshot for this session (NOTE: not compatible with `causalConsistency=true`) */ + snapshot?: boolean; + /** The default TransactionOptions to use for transactions started on this session. */ + defaultTransactionOptions?: TransactionOptions; + + /** @internal */ + owner?: symbol | AbstractCursor; + /** @internal */ + explicit?: boolean; + /** @internal */ + initialClusterTime?: ClusterTime; +} + +/** @public */ +export type WithTransactionCallback = (session: ClientSession) => Promise; + +/** @public */ +export type ClientSessionEvents = { + ended(session: ClientSession): void; +}; + +/** @internal */ +const kServerSession = Symbol('serverSession'); +/** @internal */ +const kSnapshotTime = Symbol('snapshotTime'); +/** @internal */ +const kSnapshotEnabled = Symbol('snapshotEnabled'); +/** @internal */ +const kPinnedConnection = Symbol('pinnedConnection'); +/** @internal Accumulates total number of increments to add to txnNumber when applying session to command */ +const kTxnNumberIncrement = Symbol('txnNumberIncrement'); + +/** @public */ +export interface EndSessionOptions { + /** + * An optional error which caused the call to end this session + * @internal + */ + error?: AnyError; + force?: boolean; + forceClear?: boolean; +} + +/** + * A class representing a client session on the server + * + * NOTE: not meant to be instantiated directly. + * @public + */ +export class ClientSession extends TypedEventEmitter { + /** @internal */ + client: MongoClient; + /** @internal */ + sessionPool: ServerSessionPool; + hasEnded: boolean; + clientOptions?: MongoOptions; + supports: { causalConsistency: boolean }; + clusterTime?: ClusterTime; + operationTime?: Timestamp; + explicit: boolean; + /** @internal */ + owner?: symbol | AbstractCursor; + defaultTransactionOptions: TransactionOptions; + transaction: Transaction; + /** @internal */ + [kServerSession]: ServerSession | null; + /** @internal */ + [kSnapshotTime]?: Timestamp; + /** @internal */ + [kSnapshotEnabled] = false; + /** @internal */ + [kPinnedConnection]?: Connection; + /** @internal */ + [kTxnNumberIncrement]: number; + + /** + * Create a client session. + * @internal + * @param client - The current client + * @param sessionPool - The server session pool (Internal Class) + * @param options - Optional settings + * @param clientOptions - Optional settings provided when creating a MongoClient + */ + constructor( + client: MongoClient, + sessionPool: ServerSessionPool, + options: ClientSessionOptions, + clientOptions?: MongoOptions + ) { + super(); + + if (client == null) { + // TODO(NODE-3483) + throw new MongoRuntimeError('ClientSession requires a MongoClient'); + } + + if (sessionPool == null || !(sessionPool instanceof ServerSessionPool)) { + // TODO(NODE-3483) + throw new MongoRuntimeError('ClientSession requires a ServerSessionPool'); + } + + options = options ?? {}; + + if (options.snapshot === true) { + this[kSnapshotEnabled] = true; + if (options.causalConsistency === true) { + throw new MongoInvalidArgumentError( + 'Properties "causalConsistency" and "snapshot" are mutually exclusive' + ); + } + } + + this.client = client; + this.sessionPool = sessionPool; + this.hasEnded = false; + this.clientOptions = clientOptions; + + this.explicit = !!options.explicit; + this[kServerSession] = this.explicit ? this.sessionPool.acquire() : null; + this[kTxnNumberIncrement] = 0; + + this.supports = { + causalConsistency: options.snapshot !== true && options.causalConsistency !== false + }; + + this.clusterTime = options.initialClusterTime; + + this.operationTime = undefined; + this.owner = options.owner; + this.defaultTransactionOptions = Object.assign({}, options.defaultTransactionOptions); + this.transaction = new Transaction(); + } + + /** The server id associated with this session */ + get id(): ServerSessionId | undefined { + return this[kServerSession]?.id; + } + + get serverSession(): ServerSession { + let serverSession = this[kServerSession]; + if (serverSession == null) { + if (this.explicit) { + throw new MongoRuntimeError('Unexpected null serverSession for an explicit session'); + } + if (this.hasEnded) { + throw new MongoRuntimeError('Unexpected null serverSession for an ended implicit session'); + } + serverSession = this.sessionPool.acquire(); + this[kServerSession] = serverSession; + } + return serverSession; + } + + /** Whether or not this session is configured for snapshot reads */ + get snapshotEnabled(): boolean { + return this[kSnapshotEnabled]; + } + + get loadBalanced(): boolean { + return this.client.topology?.description.type === TopologyType.LoadBalanced; + } + + /** @internal */ + get pinnedConnection(): Connection | undefined { + return this[kPinnedConnection]; + } + + /** @internal */ + pin(conn: Connection): void { + if (this[kPinnedConnection]) { + throw TypeError('Cannot pin multiple connections to the same session'); + } + + this[kPinnedConnection] = conn; + conn.emit( + PINNED, + this.inTransaction() ? ConnectionPoolMetrics.TXN : ConnectionPoolMetrics.CURSOR + ); + } + + /** @internal */ + unpin(options?: { force?: boolean; forceClear?: boolean; error?: AnyError }): void { + if (this.loadBalanced) { + return maybeClearPinnedConnection(this, options); + } + + this.transaction.unpinServer(); + } + + get isPinned(): boolean { + return this.loadBalanced ? !!this[kPinnedConnection] : this.transaction.isPinned; + } + + /** + * Ends this session on the server + * + * @param options - Optional settings. Currently reserved for future use + * @param callback - Optional callback for completion of this operation + */ + endSession(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + endSession(callback: Callback): void; + endSession(options: EndSessionOptions): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + endSession(options: EndSessionOptions, callback: Callback): void; + endSession( + options?: EndSessionOptions | Callback, + callback?: Callback + ): void | Promise { + if (typeof options === 'function') (callback = options), (options = {}); + const finalOptions = { force: true, ...options }; + + return maybePromise(callback, done => { + if (this.hasEnded) { + maybeClearPinnedConnection(this, finalOptions); + return done(); + } + + const completeEndSession = () => { + maybeClearPinnedConnection(this, finalOptions); + + const serverSession = this[kServerSession]; + if (serverSession != null) { + // release the server session back to the pool + this.sessionPool.release(serverSession); + // Make sure a new serverSession never makes it onto this ClientSession + Object.defineProperty(this, kServerSession, { + value: ServerSession.clone(serverSession), + writable: false + }); + } + + // mark the session as ended, and emit a signal + this.hasEnded = true; + this.emit('ended', this); + + // spec indicates that we should ignore all errors for `endSessions` + done(); + }; + + if (this.inTransaction()) { + // If we've reached endSession and the transaction is still active + // by default we abort it + this.abortTransaction(err => { + if (err) return done(err); + completeEndSession(); + }); + + return; + } + + completeEndSession(); + }); + } + + /** + * Advances the operationTime for a ClientSession. + * + * @param operationTime - the `BSON.Timestamp` of the operation type it is desired to advance to + */ + advanceOperationTime(operationTime: Timestamp): void { + if (this.operationTime == null) { + this.operationTime = operationTime; + return; + } + + if (operationTime.greaterThan(this.operationTime)) { + this.operationTime = operationTime; + } + } + + /** + * Advances the clusterTime for a ClientSession to the provided clusterTime of another ClientSession + * + * @param clusterTime - the $clusterTime returned by the server from another session in the form of a document containing the `BSON.Timestamp` clusterTime and signature + */ + advanceClusterTime(clusterTime: ClusterTime): void { + if (!clusterTime || typeof clusterTime !== 'object') { + throw new MongoInvalidArgumentError('input cluster time must be an object'); + } + if (!clusterTime.clusterTime || clusterTime.clusterTime._bsontype !== 'Timestamp') { + throw new MongoInvalidArgumentError( + 'input cluster time "clusterTime" property must be a valid BSON Timestamp' + ); + } + if ( + !clusterTime.signature || + clusterTime.signature.hash?._bsontype !== 'Binary' || + (typeof clusterTime.signature.keyId !== 'number' && + clusterTime.signature.keyId?._bsontype !== 'Long') // apparently we decode the key to number? + ) { + throw new MongoInvalidArgumentError( + 'input cluster time must have a valid "signature" property with BSON Binary hash and BSON Long keyId' + ); + } + + _advanceClusterTime(this, clusterTime); + } + + /** + * Used to determine if this session equals another + * + * @param session - The session to compare to + */ + equals(session: ClientSession): boolean { + if (!(session instanceof ClientSession)) { + return false; + } + + if (this.id == null || session.id == null) { + return false; + } + + return this.id.id.buffer.equals(session.id.id.buffer); + } + + /** + * Increment the transaction number on the internal ServerSession + * + * @privateRemarks + * This helper increments a value stored on the client session that will be + * added to the serverSession's txnNumber upon applying it to a command. + * This is because the serverSession is lazily acquired after a connection is obtained + */ + incrementTransactionNumber(): void { + this[kTxnNumberIncrement] += 1; + } + + /** @returns whether this session is currently in a transaction or not */ + inTransaction(): boolean { + return this.transaction.isActive; + } + + /** + * Starts a new transaction with the given options. + * + * @param options - Options for the transaction + */ + startTransaction(options?: TransactionOptions): void { + if (this[kSnapshotEnabled]) { + throw new MongoCompatibilityError('Transactions are not supported in snapshot sessions'); + } + + if (this.inTransaction()) { + throw new MongoTransactionError('Transaction already in progress'); + } + + if (this.isPinned && this.transaction.isCommitted) { + this.unpin(); + } + + const topologyMaxWireVersion = maxWireVersion(this.client.topology); + if ( + isSharded(this.client.topology) && + topologyMaxWireVersion != null && + topologyMaxWireVersion < minWireVersionForShardedTransactions + ) { + throw new MongoCompatibilityError( + 'Transactions are not supported on sharded clusters in MongoDB < 4.2.' + ); + } + + // increment txnNumber + this.incrementTransactionNumber(); + // create transaction state + this.transaction = new Transaction({ + readConcern: + options?.readConcern ?? + this.defaultTransactionOptions.readConcern ?? + this.clientOptions?.readConcern, + writeConcern: + options?.writeConcern ?? + this.defaultTransactionOptions.writeConcern ?? + this.clientOptions?.writeConcern, + readPreference: + options?.readPreference ?? + this.defaultTransactionOptions.readPreference ?? + this.clientOptions?.readPreference, + maxCommitTimeMS: options?.maxCommitTimeMS ?? this.defaultTransactionOptions.maxCommitTimeMS + }); + + this.transaction.transition(TxnState.STARTING_TRANSACTION); + } + + /** + * Commits the currently active transaction in this session. + * + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + commitTransaction(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + commitTransaction(callback: Callback): void; + commitTransaction(callback?: Callback): Promise | void { + return maybePromise(callback, cb => endTransaction(this, 'commitTransaction', cb)); + } + + /** + * Aborts the currently active transaction in this session. + * + * @param callback - An optional callback, a Promise will be returned if none is provided + */ + abortTransaction(): Promise; + /** @deprecated Callbacks are deprecated and will be removed in the next major version. See [mongodb-legacy](https://github.com/mongodb-js/nodejs-mongodb-legacy) for migration assistance */ + abortTransaction(callback: Callback): void; + abortTransaction(callback?: Callback): Promise | void { + return maybePromise(callback, cb => endTransaction(this, 'abortTransaction', cb)); + } + + /** + * This is here to ensure that ClientSession is never serialized to BSON. + */ + toBSON(): never { + throw new MongoRuntimeError('ClientSession cannot be serialized to BSON.'); + } + + /** + * Runs a provided callback within a transaction, retrying either the commitTransaction operation + * or entire transaction as needed (and when the error permits) to better ensure that + * the transaction can complete successfully. + * + * **IMPORTANT:** This method requires the user to return a Promise, and `await` all operations. + * Any callbacks that do not return a Promise will result in undefined behavior. + * + * @remarks + * This function: + * - Will return the command response from the final commitTransaction if every operation is successful (can be used as a truthy object) + * - Will return `undefined` if the transaction is explicitly aborted with `await session.abortTransaction()` + * - Will throw if one of the operations throws or `throw` statement is used inside the `withTransaction` callback + * + * Checkout a descriptive example here: + * @see https://www.mongodb.com/developer/quickstart/node-transactions/ + * + * @param fn - callback to run within a transaction + * @param options - optional settings for the transaction + * @returns A raw command response or undefined + */ + withTransaction( + fn: WithTransactionCallback, + options?: TransactionOptions + ): Promise { + const startTime = now(); + return attemptTransaction(this, startTime, fn, options); + } +} + +const MAX_WITH_TRANSACTION_TIMEOUT = 120000; +const NON_DETERMINISTIC_WRITE_CONCERN_ERRORS = new Set([ + 'CannotSatisfyWriteConcern', + 'UnknownReplWriteConcern', + 'UnsatisfiableWriteConcern' +]); + +function hasNotTimedOut(startTime: number, max: number) { + return calculateDurationInMs(startTime) < max; +} + +function isUnknownTransactionCommitResult(err: MongoError) { + const isNonDeterministicWriteConcernError = + err instanceof MongoServerError && + err.codeName && + NON_DETERMINISTIC_WRITE_CONCERN_ERRORS.has(err.codeName); + + return ( + isMaxTimeMSExpiredError(err) || + (!isNonDeterministicWriteConcernError && + err.code !== MONGODB_ERROR_CODES.UnsatisfiableWriteConcern && + err.code !== MONGODB_ERROR_CODES.UnknownReplWriteConcern) + ); +} + +export function maybeClearPinnedConnection( + session: ClientSession, + options?: EndSessionOptions +): void { + // unpin a connection if it has been pinned + const conn = session[kPinnedConnection]; + const error = options?.error; + + if ( + session.inTransaction() && + error && + error instanceof MongoError && + error.hasErrorLabel(MongoErrorLabel.TransientTransactionError) + ) { + return; + } + + const topology = session.client.topology; + // NOTE: the spec talks about what to do on a network error only, but the tests seem to + // to validate that we don't unpin on _all_ errors? + if (conn && topology != null) { + const servers = Array.from(topology.s.servers.values()); + const loadBalancer = servers[0]; + + if (options?.error == null || options?.force) { + loadBalancer.s.pool.checkIn(conn); + conn.emit( + UNPINNED, + session.transaction.state !== TxnState.NO_TRANSACTION + ? ConnectionPoolMetrics.TXN + : ConnectionPoolMetrics.CURSOR + ); + + if (options?.forceClear) { + loadBalancer.s.pool.clear(conn.serviceId); + } + } + + session[kPinnedConnection] = undefined; + } +} + +function isMaxTimeMSExpiredError(err: MongoError) { + if (err == null || !(err instanceof MongoServerError)) { + return false; + } + + return ( + err.code === MONGODB_ERROR_CODES.MaxTimeMSExpired || + (err.writeConcernError && err.writeConcernError.code === MONGODB_ERROR_CODES.MaxTimeMSExpired) + ); +} + +function attemptTransactionCommit( + session: ClientSession, + startTime: number, + fn: WithTransactionCallback, + options?: TransactionOptions +): Promise { + return session.commitTransaction().catch((err: MongoError) => { + if ( + err instanceof MongoError && + hasNotTimedOut(startTime, MAX_WITH_TRANSACTION_TIMEOUT) && + !isMaxTimeMSExpiredError(err) + ) { + if (err.hasErrorLabel(MongoErrorLabel.UnknownTransactionCommitResult)) { + return attemptTransactionCommit(session, startTime, fn, options); + } + + if (err.hasErrorLabel(MongoErrorLabel.TransientTransactionError)) { + return attemptTransaction(session, startTime, fn, options); + } + } + + throw err; + }); +} + +const USER_EXPLICIT_TXN_END_STATES = new Set([ + TxnState.NO_TRANSACTION, + TxnState.TRANSACTION_COMMITTED, + TxnState.TRANSACTION_ABORTED +]); + +function userExplicitlyEndedTransaction(session: ClientSession) { + return USER_EXPLICIT_TXN_END_STATES.has(session.transaction.state); +} + +function attemptTransaction( + session: ClientSession, + startTime: number, + fn: WithTransactionCallback, + options?: TransactionOptions +): Promise { + session.startTransaction(options); + + let promise; + try { + promise = fn(session); + } catch (err) { + const PromiseConstructor = PromiseProvider.get() ?? Promise; + promise = PromiseConstructor.reject(err); + } + + if (!isPromiseLike(promise)) { + session.abortTransaction().catch(() => null); + throw new MongoInvalidArgumentError( + 'Function provided to `withTransaction` must return a Promise' + ); + } + + return promise.then( + () => { + if (userExplicitlyEndedTransaction(session)) { + return; + } + + return attemptTransactionCommit(session, startTime, fn, options); + }, + err => { + function maybeRetryOrThrow(err: MongoError): Promise { + if ( + err instanceof MongoError && + err.hasErrorLabel(MongoErrorLabel.TransientTransactionError) && + hasNotTimedOut(startTime, MAX_WITH_TRANSACTION_TIMEOUT) + ) { + return attemptTransaction(session, startTime, fn, options); + } + + if (isMaxTimeMSExpiredError(err)) { + err.addErrorLabel(MongoErrorLabel.UnknownTransactionCommitResult); + } + + throw err; + } + + if (session.inTransaction()) { + return session.abortTransaction().then(() => maybeRetryOrThrow(err)); + } + + return maybeRetryOrThrow(err); + } + ); +} + +function endTransaction( + session: ClientSession, + commandName: 'abortTransaction' | 'commitTransaction', + callback: Callback +) { + // handle any initial problematic cases + const txnState = session.transaction.state; + + if (txnState === TxnState.NO_TRANSACTION) { + callback(new MongoTransactionError('No transaction started')); + return; + } + + if (commandName === 'commitTransaction') { + if ( + txnState === TxnState.STARTING_TRANSACTION || + txnState === TxnState.TRANSACTION_COMMITTED_EMPTY + ) { + // the transaction was never started, we can safely exit here + session.transaction.transition(TxnState.TRANSACTION_COMMITTED_EMPTY); + callback(); + return; + } + + if (txnState === TxnState.TRANSACTION_ABORTED) { + callback( + new MongoTransactionError('Cannot call commitTransaction after calling abortTransaction') + ); + return; + } + } else { + if (txnState === TxnState.STARTING_TRANSACTION) { + // the transaction was never started, we can safely exit here + session.transaction.transition(TxnState.TRANSACTION_ABORTED); + callback(); + return; + } + + if (txnState === TxnState.TRANSACTION_ABORTED) { + callback(new MongoTransactionError('Cannot call abortTransaction twice')); + return; + } + + if ( + txnState === TxnState.TRANSACTION_COMMITTED || + txnState === TxnState.TRANSACTION_COMMITTED_EMPTY + ) { + callback( + new MongoTransactionError('Cannot call abortTransaction after calling commitTransaction') + ); + return; + } + } + + // construct and send the command + const command: Document = { [commandName]: 1 }; + + // apply a writeConcern if specified + let writeConcern; + if (session.transaction.options.writeConcern) { + writeConcern = Object.assign({}, session.transaction.options.writeConcern); + } else if (session.clientOptions && session.clientOptions.writeConcern) { + writeConcern = { w: session.clientOptions.writeConcern.w }; + } + + if (txnState === TxnState.TRANSACTION_COMMITTED) { + writeConcern = Object.assign({ wtimeout: 10000 }, writeConcern, { w: 'majority' }); + } + + if (writeConcern) { + Object.assign(command, { writeConcern }); + } + + if (commandName === 'commitTransaction' && session.transaction.options.maxTimeMS) { + Object.assign(command, { maxTimeMS: session.transaction.options.maxTimeMS }); + } + + function commandHandler(error?: Error, result?: Document) { + if (commandName !== 'commitTransaction') { + session.transaction.transition(TxnState.TRANSACTION_ABORTED); + if (session.loadBalanced) { + maybeClearPinnedConnection(session, { force: false }); + } + + // The spec indicates that we should ignore all errors on `abortTransaction` + return callback(); + } + + session.transaction.transition(TxnState.TRANSACTION_COMMITTED); + if (error instanceof MongoError) { + if ( + error.hasErrorLabel(MongoErrorLabel.RetryableWriteError) || + error instanceof MongoWriteConcernError || + isMaxTimeMSExpiredError(error) + ) { + if (isUnknownTransactionCommitResult(error)) { + error.addErrorLabel(MongoErrorLabel.UnknownTransactionCommitResult); + + // per txns spec, must unpin session in this case + session.unpin({ error }); + } + } else if (error.hasErrorLabel(MongoErrorLabel.TransientTransactionError)) { + session.unpin({ error }); + } + } + + callback(error, result); + } + + if (session.transaction.recoveryToken) { + command.recoveryToken = session.transaction.recoveryToken; + } + + // send the command + executeOperation( + session.client, + new RunAdminCommandOperation(undefined, command, { + session, + readPreference: ReadPreference.primary, + bypassPinningCheck: true + }), + (error, result) => { + if (command.abortTransaction) { + // always unpin on abort regardless of command outcome + session.unpin(); + } + + if (error instanceof MongoError && error.hasErrorLabel(MongoErrorLabel.RetryableWriteError)) { + // SPEC-1185: apply majority write concern when retrying commitTransaction + if (command.commitTransaction) { + // per txns spec, must unpin session in this case + session.unpin({ force: true }); + + command.writeConcern = Object.assign({ wtimeout: 10000 }, command.writeConcern, { + w: 'majority' + }); + } + + return executeOperation( + session.client, + new RunAdminCommandOperation(undefined, command, { + session, + readPreference: ReadPreference.primary, + bypassPinningCheck: true + }), + commandHandler + ); + } + + commandHandler(error, result); + } + ); +} + +/** @public */ +export type ServerSessionId = { id: Binary }; + +/** + * Reflects the existence of a session on the server. Can be reused by the session pool. + * WARNING: not meant to be instantiated directly. For internal use only. + * @public + */ +export class ServerSession { + id: ServerSessionId; + lastUse: number; + txnNumber: number; + isDirty: boolean; + + /** @internal */ + constructor() { + this.id = { id: new Binary(uuidV4(), Binary.SUBTYPE_UUID) }; + this.lastUse = now(); + this.txnNumber = 0; + this.isDirty = false; + } + + /** + * Determines if the server session has timed out. + * + * @param sessionTimeoutMinutes - The server's "logicalSessionTimeoutMinutes" + */ + hasTimedOut(sessionTimeoutMinutes: number): boolean { + // Take the difference of the lastUse timestamp and now, which will result in a value in + // milliseconds, and then convert milliseconds to minutes to compare to `sessionTimeoutMinutes` + const idleTimeMinutes = Math.round( + ((calculateDurationInMs(this.lastUse) % 86400000) % 3600000) / 60000 + ); + + return idleTimeMinutes > sessionTimeoutMinutes - 1; + } + + /** + * @internal + * Cloning meant to keep a readable reference to the server session data + * after ClientSession has ended + */ + static clone(serverSession: ServerSession): Readonly { + const arrayBuffer = new ArrayBuffer(16); + const idBytes = Buffer.from(arrayBuffer); + idBytes.set(serverSession.id.id.buffer); + + const id = new Binary(idBytes, serverSession.id.id.sub_type); + + // Manual prototype construction to avoid modifying the constructor of this class + return Object.setPrototypeOf( + { + id: { id }, + lastUse: serverSession.lastUse, + txnNumber: serverSession.txnNumber, + isDirty: serverSession.isDirty + }, + ServerSession.prototype + ); + } +} + +/** + * Maintains a pool of Server Sessions. + * For internal use only + * @internal + */ +export class ServerSessionPool { + client: MongoClient; + sessions: ServerSession[]; + + constructor(client: MongoClient) { + if (client == null) { + throw new MongoRuntimeError('ServerSessionPool requires a MongoClient'); + } + + this.client = client; + this.sessions = []; + } + + /** + * Acquire a Server Session from the pool. + * Iterates through each session in the pool, removing any stale sessions + * along the way. The first non-stale session found is removed from the + * pool and returned. If no non-stale session is found, a new ServerSession is created. + */ + acquire(): ServerSession { + const sessionTimeoutMinutes = this.client.topology?.logicalSessionTimeoutMinutes ?? 10; + + let session: ServerSession | null = null; + + // Try to obtain from session pool + while (this.sessions.length > 0) { + const potentialSession = this.sessions.shift(); + if ( + potentialSession != null && + (!!this.client.topology?.loadBalanced || + !potentialSession.hasTimedOut(sessionTimeoutMinutes)) + ) { + session = potentialSession; + break; + } + } + + // If nothing valid came from the pool make a new one + if (session == null) { + session = new ServerSession(); + } + + return session; + } + + /** + * Release a session to the session pool + * Adds the session back to the session pool if the session has not timed out yet. + * This method also removes any stale sessions from the pool. + * + * @param session - The session to release to the pool + */ + release(session: ServerSession): void { + const sessionTimeoutMinutes = this.client.topology?.logicalSessionTimeoutMinutes ?? 10; + + if (this.client.topology?.loadBalanced && !sessionTimeoutMinutes) { + this.sessions.unshift(session); + } + + if (!sessionTimeoutMinutes) { + return; + } + + while (this.sessions.length) { + const pooledSession = this.sessions[this.sessions.length - 1]; + if (pooledSession.hasTimedOut(sessionTimeoutMinutes)) { + this.sessions.pop(); + } else { + break; + } + } + + if (!session.hasTimedOut(sessionTimeoutMinutes)) { + if (session.isDirty) { + return; + } + + // otherwise, readd this session to the session pool + this.sessions.unshift(session); + } + } +} + +/** + * Optionally decorate a command with sessions specific keys + * + * @param session - the session tracking transaction state + * @param command - the command to decorate + * @param options - Optional settings passed to calling operation + * + * @internal + */ +export function applySession( + session: ClientSession, + command: Document, + options: CommandOptions +): MongoDriverError | undefined { + if (session.hasEnded) { + return new MongoExpiredSessionError(); + } + + // May acquire serverSession here + const serverSession = session.serverSession; + if (serverSession == null) { + return new MongoRuntimeError('Unable to acquire server session'); + } + + if (options.writeConcern?.w === 0) { + if (session && session.explicit) { + // Error if user provided an explicit session to an unacknowledged write (SPEC-1019) + return new MongoAPIError('Cannot have explicit session with unacknowledged writes'); + } + return; + } + + // mark the last use of this session, and apply the `lsid` + serverSession.lastUse = now(); + command.lsid = serverSession.id; + + const inTxnOrTxnCommand = session.inTransaction() || isTransactionCommand(command); + const isRetryableWrite = !!options.willRetryWrite; + + if (isRetryableWrite || inTxnOrTxnCommand) { + serverSession.txnNumber += session[kTxnNumberIncrement]; + session[kTxnNumberIncrement] = 0; + // TODO(NODE-2674): Preserve int64 sent from MongoDB + command.txnNumber = Long.fromNumber(serverSession.txnNumber); + } + + if (!inTxnOrTxnCommand) { + if (session.transaction.state !== TxnState.NO_TRANSACTION) { + session.transaction.transition(TxnState.NO_TRANSACTION); + } + + if ( + session.supports.causalConsistency && + session.operationTime && + commandSupportsReadConcern(command, options) + ) { + command.readConcern = command.readConcern || {}; + Object.assign(command.readConcern, { afterClusterTime: session.operationTime }); + } else if (session[kSnapshotEnabled]) { + command.readConcern = command.readConcern || { level: ReadConcernLevel.snapshot }; + if (session[kSnapshotTime] != null) { + Object.assign(command.readConcern, { atClusterTime: session[kSnapshotTime] }); + } + } + + return; + } + + // now attempt to apply transaction-specific sessions data + + // `autocommit` must always be false to differentiate from retryable writes + command.autocommit = false; + + if (session.transaction.state === TxnState.STARTING_TRANSACTION) { + session.transaction.transition(TxnState.TRANSACTION_IN_PROGRESS); + command.startTransaction = true; + + const readConcern = + session.transaction.options.readConcern || session?.clientOptions?.readConcern; + if (readConcern) { + command.readConcern = readConcern; + } + + if (session.supports.causalConsistency && session.operationTime) { + command.readConcern = command.readConcern || {}; + Object.assign(command.readConcern, { afterClusterTime: session.operationTime }); + } + } + return; +} + +export function updateSessionFromResponse(session: ClientSession, document: Document): void { + if (document.$clusterTime) { + _advanceClusterTime(session, document.$clusterTime); + } + + if (document.operationTime && session && session.supports.causalConsistency) { + session.advanceOperationTime(document.operationTime); + } + + if (document.recoveryToken && session && session.inTransaction()) { + session.transaction._recoveryToken = document.recoveryToken; + } + + if (session?.[kSnapshotEnabled] && session[kSnapshotTime] == null) { + // find and aggregate commands return atClusterTime on the cursor + // distinct includes it in the response body + const atClusterTime = document.cursor?.atClusterTime || document.atClusterTime; + if (atClusterTime) { + session[kSnapshotTime] = atClusterTime; + } + } +} diff --git a/node_modules/mongodb/src/sort.ts b/node_modules/mongodb/src/sort.ts new file mode 100644 index 000000000..6b766b545 --- /dev/null +++ b/node_modules/mongodb/src/sort.ts @@ -0,0 +1,132 @@ +import { MongoInvalidArgumentError } from './error'; + +/** @public */ +export type SortDirection = + | 1 + | -1 + | 'asc' + | 'desc' + | 'ascending' + | 'descending' + | { $meta: string }; + +/** @public */ +export type Sort = + | string + | Exclude + | string[] + | { [key: string]: SortDirection } + | Map + | [string, SortDirection][] + | [string, SortDirection]; + +/** Below stricter types were created for sort that correspond with type that the cmd takes */ + +/** @internal */ +export type SortDirectionForCmd = 1 | -1 | { $meta: string }; + +/** @internal */ +export type SortForCmd = Map; + +/** @internal */ +type SortPairForCmd = [string, SortDirectionForCmd]; + +/** @internal */ +function prepareDirection(direction: any = 1): SortDirectionForCmd { + const value = `${direction}`.toLowerCase(); + if (isMeta(direction)) return direction; + switch (value) { + case 'ascending': + case 'asc': + case '1': + return 1; + case 'descending': + case 'desc': + case '-1': + return -1; + default: + throw new MongoInvalidArgumentError(`Invalid sort direction: ${JSON.stringify(direction)}`); + } +} + +/** @internal */ +function isMeta(t: SortDirection): t is { $meta: string } { + return typeof t === 'object' && t != null && '$meta' in t && typeof t.$meta === 'string'; +} + +/** @internal */ +function isPair(t: Sort): t is [string, SortDirection] { + if (Array.isArray(t) && t.length === 2) { + try { + prepareDirection(t[1]); + return true; + } catch (e) { + return false; + } + } + return false; +} + +function isDeep(t: Sort): t is [string, SortDirection][] { + return Array.isArray(t) && Array.isArray(t[0]); +} + +function isMap(t: Sort): t is Map { + return t instanceof Map && t.size > 0; +} + +/** @internal */ +function pairToMap(v: [string, SortDirection]): SortForCmd { + return new Map([[`${v[0]}`, prepareDirection([v[1]])]]); +} + +/** @internal */ +function deepToMap(t: [string, SortDirection][]): SortForCmd { + const sortEntries: SortPairForCmd[] = t.map(([k, v]) => [`${k}`, prepareDirection(v)]); + return new Map(sortEntries); +} + +/** @internal */ +function stringsToMap(t: string[]): SortForCmd { + const sortEntries: SortPairForCmd[] = t.map(key => [`${key}`, 1]); + return new Map(sortEntries); +} + +/** @internal */ +function objectToMap(t: { [key: string]: SortDirection }): SortForCmd { + const sortEntries: SortPairForCmd[] = Object.entries(t).map(([k, v]) => [ + `${k}`, + prepareDirection(v) + ]); + return new Map(sortEntries); +} + +/** @internal */ +function mapToMap(t: Map): SortForCmd { + const sortEntries: SortPairForCmd[] = Array.from(t).map(([k, v]) => [ + `${k}`, + prepareDirection(v) + ]); + return new Map(sortEntries); +} + +/** converts a Sort type into a type that is valid for the server (SortForCmd) */ +export function formatSort( + sort: Sort | undefined, + direction?: SortDirection +): SortForCmd | undefined { + if (sort == null) return undefined; + if (typeof sort === 'string') return new Map([[sort, prepareDirection(direction)]]); + if (typeof sort !== 'object') { + throw new MongoInvalidArgumentError( + `Invalid sort format: ${JSON.stringify(sort)} Sort must be a valid object` + ); + } + if (!Array.isArray(sort)) { + return isMap(sort) ? mapToMap(sort) : Object.keys(sort).length ? objectToMap(sort) : undefined; + } + if (!sort.length) return undefined; + if (isDeep(sort)) return deepToMap(sort); + if (isPair(sort)) return pairToMap(sort); + return stringsToMap(sort); +} diff --git a/node_modules/mongodb/src/transactions.ts b/node_modules/mongodb/src/transactions.ts new file mode 100644 index 000000000..34d84403c --- /dev/null +++ b/node_modules/mongodb/src/transactions.ts @@ -0,0 +1,187 @@ +import type { Document } from './bson'; +import { MongoRuntimeError, MongoTransactionError } from './error'; +import type { CommandOperationOptions } from './operations/command'; +import { ReadConcern, ReadConcernLike } from './read_concern'; +import { ReadPreference } from './read_preference'; +import type { Server } from './sdam/server'; +import { WriteConcern } from './write_concern'; + +/** @internal */ +export const TxnState = Object.freeze({ + NO_TRANSACTION: 'NO_TRANSACTION', + STARTING_TRANSACTION: 'STARTING_TRANSACTION', + TRANSACTION_IN_PROGRESS: 'TRANSACTION_IN_PROGRESS', + TRANSACTION_COMMITTED: 'TRANSACTION_COMMITTED', + TRANSACTION_COMMITTED_EMPTY: 'TRANSACTION_COMMITTED_EMPTY', + TRANSACTION_ABORTED: 'TRANSACTION_ABORTED' +} as const); + +/** @internal */ +export type TxnState = typeof TxnState[keyof typeof TxnState]; + +const stateMachine: { [state in TxnState]: TxnState[] } = { + [TxnState.NO_TRANSACTION]: [TxnState.NO_TRANSACTION, TxnState.STARTING_TRANSACTION], + [TxnState.STARTING_TRANSACTION]: [ + TxnState.TRANSACTION_IN_PROGRESS, + TxnState.TRANSACTION_COMMITTED, + TxnState.TRANSACTION_COMMITTED_EMPTY, + TxnState.TRANSACTION_ABORTED + ], + [TxnState.TRANSACTION_IN_PROGRESS]: [ + TxnState.TRANSACTION_IN_PROGRESS, + TxnState.TRANSACTION_COMMITTED, + TxnState.TRANSACTION_ABORTED + ], + [TxnState.TRANSACTION_COMMITTED]: [ + TxnState.TRANSACTION_COMMITTED, + TxnState.TRANSACTION_COMMITTED_EMPTY, + TxnState.STARTING_TRANSACTION, + TxnState.NO_TRANSACTION + ], + [TxnState.TRANSACTION_ABORTED]: [TxnState.STARTING_TRANSACTION, TxnState.NO_TRANSACTION], + [TxnState.TRANSACTION_COMMITTED_EMPTY]: [ + TxnState.TRANSACTION_COMMITTED_EMPTY, + TxnState.NO_TRANSACTION + ] +}; + +const ACTIVE_STATES: Set = new Set([ + TxnState.STARTING_TRANSACTION, + TxnState.TRANSACTION_IN_PROGRESS +]); + +const COMMITTED_STATES: Set = new Set([ + TxnState.TRANSACTION_COMMITTED, + TxnState.TRANSACTION_COMMITTED_EMPTY, + TxnState.TRANSACTION_ABORTED +]); + +/** + * Configuration options for a transaction. + * @public + */ +export interface TransactionOptions extends CommandOperationOptions { + // TODO(NODE-3344): These options use the proper class forms of these settings, it should accept the basic enum values too + /** A default read concern for commands in this transaction */ + readConcern?: ReadConcernLike; + /** A default writeConcern for commands in this transaction */ + writeConcern?: WriteConcern; + /** A default read preference for commands in this transaction */ + readPreference?: ReadPreference; + /** Specifies the maximum amount of time to allow a commit action on a transaction to run in milliseconds */ + maxCommitTimeMS?: number; +} + +/** + * @public + * A class maintaining state related to a server transaction. Internal Only + */ +export class Transaction { + /** @internal */ + state: TxnState; + options: TransactionOptions; + /** @internal */ + _pinnedServer?: Server; + /** @internal */ + _recoveryToken?: Document; + + /** Create a transaction @internal */ + constructor(options?: TransactionOptions) { + options = options ?? {}; + this.state = TxnState.NO_TRANSACTION; + this.options = {}; + + const writeConcern = WriteConcern.fromOptions(options); + if (writeConcern) { + if (writeConcern.w === 0) { + throw new MongoTransactionError('Transactions do not support unacknowledged write concern'); + } + + this.options.writeConcern = writeConcern; + } + + if (options.readConcern) { + this.options.readConcern = ReadConcern.fromOptions(options); + } + + if (options.readPreference) { + this.options.readPreference = ReadPreference.fromOptions(options); + } + + if (options.maxCommitTimeMS) { + this.options.maxTimeMS = options.maxCommitTimeMS; + } + + // TODO: This isn't technically necessary + this._pinnedServer = undefined; + this._recoveryToken = undefined; + } + + /** @internal */ + get server(): Server | undefined { + return this._pinnedServer; + } + + get recoveryToken(): Document | undefined { + return this._recoveryToken; + } + + get isPinned(): boolean { + return !!this.server; + } + + /** @returns Whether the transaction has started */ + get isStarting(): boolean { + return this.state === TxnState.STARTING_TRANSACTION; + } + + /** + * @returns Whether this session is presently in a transaction + */ + get isActive(): boolean { + return ACTIVE_STATES.has(this.state); + } + + get isCommitted(): boolean { + return COMMITTED_STATES.has(this.state); + } + /** + * Transition the transaction in the state machine + * @internal + * @param nextState - The new state to transition to + */ + transition(nextState: TxnState): void { + const nextStates = stateMachine[this.state]; + if (nextStates && nextStates.includes(nextState)) { + this.state = nextState; + if ( + this.state === TxnState.NO_TRANSACTION || + this.state === TxnState.STARTING_TRANSACTION || + this.state === TxnState.TRANSACTION_ABORTED + ) { + this.unpinServer(); + } + return; + } + + throw new MongoRuntimeError( + `Attempted illegal state transition from [${this.state}] to [${nextState}]` + ); + } + + /** @internal */ + pinServer(server: Server): void { + if (this.isActive) { + this._pinnedServer = server; + } + } + + /** @internal */ + unpinServer(): void { + this._pinnedServer = undefined; + } +} + +export function isTransactionCommand(command: Document): boolean { + return !!(command.commitTransaction || command.abortTransaction); +} diff --git a/node_modules/mongodb/src/utils.ts b/node_modules/mongodb/src/utils.ts new file mode 100644 index 000000000..f871df54a --- /dev/null +++ b/node_modules/mongodb/src/utils.ts @@ -0,0 +1,1296 @@ +import * as crypto from 'crypto'; +import type { SrvRecord } from 'dns'; +import * as os from 'os'; +import { URL } from 'url'; + +import { Document, ObjectId, resolveBSONOptions } from './bson'; +import type { Connection } from './cmap/connection'; +import { MAX_SUPPORTED_WIRE_VERSION } from './cmap/wire_protocol/constants'; +import type { Collection } from './collection'; +import { LEGACY_HELLO_COMMAND } from './constants'; +import type { AbstractCursor } from './cursor/abstract_cursor'; +import type { FindCursor } from './cursor/find_cursor'; +import type { Db } from './db'; +import { + AnyError, + MongoCompatibilityError, + MongoInvalidArgumentError, + MongoNotConnectedError, + MongoParseError, + MongoRuntimeError +} from './error'; +import type { Explain } from './explain'; +import type { MongoClient } from './mongo_client'; +import type { CommandOperationOptions, OperationParent } from './operations/command'; +import type { Hint, OperationOptions } from './operations/operation'; +import { PromiseProvider } from './promise_provider'; +import { ReadConcern } from './read_concern'; +import { ReadPreference } from './read_preference'; +import { ServerType } from './sdam/common'; +import type { Server } from './sdam/server'; +import type { Topology } from './sdam/topology'; +import type { ClientSession } from './sessions'; +import { W, WriteConcern, WriteConcernOptions } from './write_concern'; + +/** + * MongoDB Driver style callback + * @public + */ +export type Callback = (error?: AnyError, result?: T) => void; + +export const MAX_JS_INT = Number.MAX_SAFE_INTEGER + 1; + +export type AnyOptions = Document; + +/** + * Throws if collectionName is not a valid mongodb collection namespace. + * @internal + */ +export function checkCollectionName(collectionName: string): void { + if ('string' !== typeof collectionName) { + throw new MongoInvalidArgumentError('Collection name must be a String'); + } + + if (!collectionName || collectionName.indexOf('..') !== -1) { + throw new MongoInvalidArgumentError('Collection names cannot be empty'); + } + + if ( + collectionName.indexOf('$') !== -1 && + collectionName.match(/((^\$cmd)|(oplog\.\$main))/) == null + ) { + // TODO(NODE-3483): Use MongoNamespace static method + throw new MongoInvalidArgumentError("Collection names must not contain '$'"); + } + + if (collectionName.match(/^\.|\.$/) != null) { + // TODO(NODE-3483): Use MongoNamespace static method + throw new MongoInvalidArgumentError("Collection names must not start or end with '.'"); + } + + // Validate that we are not passing 0x00 in the collection name + if (collectionName.indexOf('\x00') !== -1) { + // TODO(NODE-3483): Use MongoNamespace static method + throw new MongoInvalidArgumentError('Collection names cannot contain a null character'); + } +} + +/** + * Ensure Hint field is in a shape we expect: + * - object of index names mapping to 1 or -1 + * - just an index name + * @internal + */ +export function normalizeHintField(hint?: Hint): Hint | undefined { + let finalHint = undefined; + + if (typeof hint === 'string') { + finalHint = hint; + } else if (Array.isArray(hint)) { + finalHint = {}; + + hint.forEach(param => { + finalHint[param] = 1; + }); + } else if (hint != null && typeof hint === 'object') { + finalHint = {} as Document; + for (const name in hint) { + finalHint[name] = hint[name]; + } + } + + return finalHint; +} + +const TO_STRING = (object: unknown) => Object.prototype.toString.call(object); +/** + * Checks if arg is an Object: + * - **NOTE**: the check is based on the `[Symbol.toStringTag]() === 'Object'` + * @internal + */ + +export function isObject(arg: unknown): arg is object { + return '[object Object]' === TO_STRING(arg); +} + +/** @internal */ +export function mergeOptions(target: T, source: S): T & S { + return { ...target, ...source }; +} + +/** @internal */ +export function filterOptions(options: AnyOptions, names: ReadonlyArray): AnyOptions { + const filterOptions: AnyOptions = {}; + + for (const name in options) { + if (names.includes(name)) { + filterOptions[name] = options[name]; + } + } + + // Filtered options + return filterOptions; +} + +interface HasRetryableWrites { + retryWrites?: boolean; +} +/** + * Applies retryWrites: true to a command if retryWrites is set on the command's database. + * @internal + * + * @param target - The target command to which we will apply retryWrites. + * @param db - The database from which we can inherit a retryWrites value. + */ +export function applyRetryableWrites(target: T, db?: Db): T { + if (db && db.s.options?.retryWrites) { + target.retryWrites = true; + } + + return target; +} + +interface HasWriteConcern { + writeConcern?: WriteConcernOptions | WriteConcern | W; +} +/** + * Applies a write concern to a command based on well defined inheritance rules, optionally + * detecting support for the write concern in the first place. + * @internal + * + * @param target - the target command we will be applying the write concern to + * @param sources - sources where we can inherit default write concerns from + * @param options - optional settings passed into a command for write concern overrides + */ +export function applyWriteConcern( + target: T, + sources: { db?: Db; collection?: Collection }, + options?: OperationOptions & WriteConcernOptions +): T { + options = options ?? {}; + const db = sources.db; + const coll = sources.collection; + + if (options.session && options.session.inTransaction()) { + // writeConcern is not allowed within a multi-statement transaction + if (target.writeConcern) { + delete target.writeConcern; + } + + return target; + } + + const writeConcern = WriteConcern.fromOptions(options); + if (writeConcern) { + return Object.assign(target, { writeConcern }); + } + + if (coll && coll.writeConcern) { + return Object.assign(target, { writeConcern: Object.assign({}, coll.writeConcern) }); + } + + if (db && db.writeConcern) { + return Object.assign(target, { writeConcern: Object.assign({}, db.writeConcern) }); + } + + return target; +} + +/** + * Checks if a given value is a Promise + * + * @typeParam T - The result type of maybePromise + * @param maybePromise - An object that could be a promise + * @returns true if the provided value is a Promise + */ +export function isPromiseLike( + maybePromise?: PromiseLike | void +): maybePromise is Promise { + return !!maybePromise && typeof maybePromise.then === 'function'; +} + +/** + * Applies collation to a given command. + * @internal + * + * @param command - the command on which to apply collation + * @param target - target of command + * @param options - options containing collation settings + */ +export function decorateWithCollation( + command: Document, + target: MongoClient | Db | Collection, + options: AnyOptions +): void { + const capabilities = getTopology(target).capabilities; + if (options.collation && typeof options.collation === 'object') { + if (capabilities && capabilities.commandsTakeCollation) { + command.collation = options.collation; + } else { + throw new MongoCompatibilityError(`Current topology does not support collation`); + } + } +} + +/** + * Applies a read concern to a given command. + * @internal + * + * @param command - the command on which to apply the read concern + * @param coll - the parent collection of the operation calling this method + */ +export function decorateWithReadConcern( + command: Document, + coll: { s: { readConcern?: ReadConcern } }, + options?: OperationOptions +): void { + if (options && options.session && options.session.inTransaction()) { + return; + } + const readConcern = Object.assign({}, command.readConcern || {}); + if (coll.s.readConcern) { + Object.assign(readConcern, coll.s.readConcern); + } + + if (Object.keys(readConcern).length > 0) { + Object.assign(command, { readConcern: readConcern }); + } +} + +/** + * Applies an explain to a given command. + * @internal + * + * @param command - the command on which to apply the explain + * @param options - the options containing the explain verbosity + */ +export function decorateWithExplain(command: Document, explain: Explain): Document { + if (command.explain) { + return command; + } + + return { explain: command, verbosity: explain.verbosity }; +} + +/** + * @internal + */ +export type TopologyProvider = + | MongoClient + | ClientSession + | FindCursor + | AbstractCursor + | Collection + | Db; + +/** + * A helper function to get the topology from a given provider. Throws + * if the topology cannot be found. + * @throws MongoNotConnectedError + * @internal + */ +export function getTopology(provider: TopologyProvider): Topology { + // MongoClient or ClientSession or AbstractCursor + if ('topology' in provider && provider.topology) { + return provider.topology; + } else if ('s' in provider && 'client' in provider.s && provider.s.client.topology) { + return provider.s.client.topology; + } else if ('s' in provider && 'db' in provider.s && provider.s.db.s.client.topology) { + return provider.s.db.s.client.topology; + } + + throw new MongoNotConnectedError('MongoClient must be connected to perform this operation'); +} + +/** + * Default message handler for generating deprecation warnings. + * @internal + * + * @param name - function name + * @param option - option name + * @returns warning message + */ +export function defaultMsgHandler(name: string, option: string): string { + return `${name} option [${option}] is deprecated and will be removed in a later version.`; +} + +export interface DeprecateOptionsConfig { + /** function name */ + name: string; + /** options to deprecate */ + deprecatedOptions: string[]; + /** index of options object in function arguments array */ + optionsIndex: number; + /** optional custom message handler to generate warnings */ + msgHandler?(this: void, name: string, option: string): string; +} + +/** + * Deprecates a given function's options. + * @internal + * + * @param this - the bound class if this is a method + * @param config - configuration for deprecation + * @param fn - the target function of deprecation + * @returns modified function that warns once per deprecated option, and executes original function + */ +export function deprecateOptions( + this: unknown, + config: DeprecateOptionsConfig, + fn: (...args: any[]) => any +): any { + if ((process as any).noDeprecation === true) { + return fn; + } + + const msgHandler = config.msgHandler ? config.msgHandler : defaultMsgHandler; + + const optionsWarned = new Set(); + function deprecated(this: any, ...args: any[]) { + const options = args[config.optionsIndex] as AnyOptions; + + // ensure options is a valid, non-empty object, otherwise short-circuit + if (!isObject(options) || Object.keys(options).length === 0) { + return fn.bind(this)(...args); // call the function, no change + } + + // interrupt the function call with a warning + for (const deprecatedOption of config.deprecatedOptions) { + if (deprecatedOption in options && !optionsWarned.has(deprecatedOption)) { + optionsWarned.add(deprecatedOption); + const msg = msgHandler(config.name, deprecatedOption); + emitWarning(msg); + if (this && 'getLogger' in this) { + const logger = this.getLogger(); + if (logger) { + logger.warn(msg); + } + } + } + } + + return fn.bind(this)(...args); + } + + // These lines copied from https://github.com/nodejs/node/blob/25e5ae41688676a5fd29b2e2e7602168eee4ceb5/lib/internal/util.js#L73-L80 + // The wrapper will keep the same prototype as fn to maintain prototype chain + Object.setPrototypeOf(deprecated, fn); + if (fn.prototype) { + // Setting this (rather than using Object.setPrototype, as above) ensures + // that calling the unwrapped constructor gives an instanceof the wrapped + // constructor. + deprecated.prototype = fn.prototype; + } + + return deprecated; +} + +/** @internal */ +export function ns(ns: string): MongoDBNamespace { + return MongoDBNamespace.fromString(ns); +} + +/** @public */ +export class MongoDBNamespace { + db: string; + collection: string | undefined; + /** + * Create a namespace object + * + * @param db - database name + * @param collection - collection name + */ + constructor(db: string, collection?: string) { + this.db = db; + this.collection = collection === '' ? undefined : collection; + } + + toString(): string { + return this.collection ? `${this.db}.${this.collection}` : this.db; + } + + withCollection(collection: string): MongoDBNamespace { + return new MongoDBNamespace(this.db, collection); + } + + static fromString(namespace?: string): MongoDBNamespace { + if (typeof namespace !== 'string' || namespace === '') { + // TODO(NODE-3483): Replace with MongoNamespaceError + throw new MongoRuntimeError(`Cannot parse namespace from "${namespace}"`); + } + + const [db, ...collectionParts] = namespace.split('.'); + const collection = collectionParts.join('.'); + return new MongoDBNamespace(db, collection === '' ? undefined : collection); + } +} + +/** @internal */ +export function* makeCounter(seed = 0): Generator { + let count = seed; + while (true) { + const newCount = count; + count += 1; + yield newCount; + } +} + +/** + * Helper function for either accepting a callback, or returning a promise + * @internal + * + * @param callback - The last function argument in exposed method, controls if a Promise is returned + * @param wrapper - A function that wraps the callback + * @returns Returns void if a callback is supplied, else returns a Promise. + */ +export function maybePromise( + callback: Callback | undefined, + wrapper: (fn: Callback) => void +): Promise | void { + const PromiseConstructor = PromiseProvider.get() ?? Promise; + let result: Promise | void; + if (typeof callback !== 'function') { + result = new PromiseConstructor((resolve, reject) => { + callback = (err, res) => { + if (err) return reject(err); + resolve(res); + }; + }); + } + + wrapper((err, res) => { + if (err != null) { + try { + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + callback!(err); + } catch (error) { + process.nextTick(() => { + throw error; + }); + } + + return; + } + + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + callback!(err, res); + }); + + return result; +} + +/** @internal */ +export function databaseNamespace(ns: string): string { + return ns.split('.')[0]; +} + +/** + * Synchronously Generate a UUIDv4 + * @internal + */ +export function uuidV4(): Buffer { + const result = crypto.randomBytes(16); + result[6] = (result[6] & 0x0f) | 0x40; + result[8] = (result[8] & 0x3f) | 0x80; + return result; +} + +/** + * A helper function for determining `maxWireVersion` between legacy and new topology instances + * @internal + */ +export function maxWireVersion(topologyOrServer?: Connection | Topology | Server): number { + if (topologyOrServer) { + if (topologyOrServer.loadBalanced) { + // Since we do not have a monitor, we assume the load balanced server is always + // pointed at the latest mongodb version. There is a risk that for on-prem + // deployments that don't upgrade immediately that this could alert to the + // application that a feature is avaiable that is actually not. + return MAX_SUPPORTED_WIRE_VERSION; + } + if (topologyOrServer.hello) { + return topologyOrServer.hello.maxWireVersion; + } + + if ('lastHello' in topologyOrServer && typeof topologyOrServer.lastHello === 'function') { + const lastHello = topologyOrServer.lastHello(); + if (lastHello) { + return lastHello.maxWireVersion; + } + } + + if ( + topologyOrServer.description && + 'maxWireVersion' in topologyOrServer.description && + topologyOrServer.description.maxWireVersion != null + ) { + return topologyOrServer.description.maxWireVersion; + } + } + + return 0; +} + +/** + * Checks that collation is supported by server. + * @internal + * + * @param server - to check against + * @param cmd - object where collation may be specified + */ +export function collationNotSupported(server: Server, cmd: Document): boolean { + return cmd && cmd.collation && maxWireVersion(server) < 5; +} + +/** + * Applies the function `eachFn` to each item in `arr`, in parallel. + * @internal + * + * @param arr - An array of items to asynchronously iterate over + * @param eachFn - A function to call on each item of the array. The callback signature is `(item, callback)`, where the callback indicates iteration is complete. + * @param callback - The callback called after every item has been iterated + */ +export function eachAsync( + arr: T[], + eachFn: (item: T, callback: (err?: AnyError) => void) => void, + callback: Callback +): void { + arr = arr || []; + + let idx = 0; + let awaiting = 0; + for (idx = 0; idx < arr.length; ++idx) { + awaiting++; + eachFn(arr[idx], eachCallback); + } + + if (awaiting === 0) { + callback(); + return; + } + + function eachCallback(err?: AnyError) { + awaiting--; + if (err) { + callback(err); + return; + } + + if (idx === arr.length && awaiting <= 0) { + callback(); + } + } +} + +/** @internal */ +export function eachAsyncSeries( + arr: T[], + eachFn: (item: T, callback: (err?: AnyError) => void) => void, + callback: Callback +): void { + arr = arr || []; + + let idx = 0; + let awaiting = arr.length; + if (awaiting === 0) { + callback(); + return; + } + + function eachCallback(err?: AnyError) { + idx++; + awaiting--; + if (err) { + callback(err); + return; + } + + if (idx === arr.length && awaiting <= 0) { + callback(); + return; + } + + eachFn(arr[idx], eachCallback); + } + + eachFn(arr[idx], eachCallback); +} + +/** @internal */ +export function arrayStrictEqual(arr: unknown[], arr2: unknown[]): boolean { + if (!Array.isArray(arr) || !Array.isArray(arr2)) { + return false; + } + + return arr.length === arr2.length && arr.every((elt, idx) => elt === arr2[idx]); +} + +/** @internal */ +export function errorStrictEqual(lhs?: AnyError | null, rhs?: AnyError | null): boolean { + if (lhs === rhs) { + return true; + } + + if (!lhs || !rhs) { + return lhs === rhs; + } + + if ((lhs == null && rhs != null) || (lhs != null && rhs == null)) { + return false; + } + + if (lhs.constructor.name !== rhs.constructor.name) { + return false; + } + + if (lhs.message !== rhs.message) { + return false; + } + + return true; +} + +interface StateTable { + [key: string]: string[]; +} +interface ObjectWithState { + s: { state: string }; + emit(event: 'stateChanged', state: string, newState: string): void; +} +interface StateTransitionFunction { + (target: ObjectWithState, newState: string): void; +} + +/** @public */ +export type EventEmitterWithState = { + /** @internal */ + stateChanged(previous: string, current: string): void; +}; + +/** @internal */ +export function makeStateMachine(stateTable: StateTable): StateTransitionFunction { + return function stateTransition(target, newState) { + const legalStates = stateTable[target.s.state]; + if (legalStates && legalStates.indexOf(newState) < 0) { + throw new MongoRuntimeError( + `illegal state transition from [${target.s.state}] => [${newState}], allowed: [${legalStates}]` + ); + } + + target.emit('stateChanged', target.s.state, newState); + target.s.state = newState; + }; +} + +/** @public */ +export interface ClientMetadata { + driver: { + name: string; + version: string; + }; + os: { + type: string; + name: NodeJS.Platform; + architecture: string; + version: string; + }; + platform: string; + version?: string; + application?: { + name: string; + }; +} + +/** @public */ +export interface ClientMetadataOptions { + driverInfo?: { + name?: string; + version?: string; + platform?: string; + }; + appName?: string; +} + +// eslint-disable-next-line @typescript-eslint/no-var-requires +const NODE_DRIVER_VERSION = require('../package.json').version; + +export function makeClientMetadata(options?: ClientMetadataOptions): ClientMetadata { + options = options ?? {}; + + const metadata: ClientMetadata = { + driver: { + name: 'nodejs', + version: NODE_DRIVER_VERSION + }, + os: { + type: os.type(), + name: process.platform, + architecture: process.arch, + version: os.release() + }, + platform: `Node.js ${process.version}, ${os.endianness()} (unified)` + }; + + // support optionally provided wrapping driver info + if (options.driverInfo) { + if (options.driverInfo.name) { + metadata.driver.name = `${metadata.driver.name}|${options.driverInfo.name}`; + } + + if (options.driverInfo.version) { + metadata.version = `${metadata.driver.version}|${options.driverInfo.version}`; + } + + if (options.driverInfo.platform) { + metadata.platform = `${metadata.platform}|${options.driverInfo.platform}`; + } + } + + if (options.appName) { + // MongoDB requires the appName not exceed a byte length of 128 + const buffer = Buffer.from(options.appName); + metadata.application = { + name: buffer.byteLength > 128 ? buffer.slice(0, 128).toString('utf8') : options.appName + }; + } + + return metadata; +} + +/** @internal */ +export function now(): number { + const hrtime = process.hrtime(); + return Math.floor(hrtime[0] * 1000 + hrtime[1] / 1000000); +} + +/** @internal */ +export function calculateDurationInMs(started: number): number { + if (typeof started !== 'number') { + throw new MongoInvalidArgumentError('Numeric value required to calculate duration'); + } + + const elapsed = now() - started; + return elapsed < 0 ? 0 : elapsed; +} + +/** @internal */ +export function hasAtomicOperators(doc: Document | Document[]): boolean { + if (Array.isArray(doc)) { + for (const document of doc) { + if (hasAtomicOperators(document)) { + return true; + } + } + return false; + } + + const keys = Object.keys(doc); + return keys.length > 0 && keys[0][0] === '$'; +} + +/** + * Merge inherited properties from parent into options, prioritizing values from options, + * then values from parent. + * @internal + */ +export function resolveOptions( + parent: OperationParent | undefined, + options?: T +): T { + const result: T = Object.assign({}, options, resolveBSONOptions(options, parent)); + + // Users cannot pass a readConcern/writeConcern to operations in a transaction + const session = options?.session; + if (!session?.inTransaction()) { + const readConcern = ReadConcern.fromOptions(options) ?? parent?.readConcern; + if (readConcern) { + result.readConcern = readConcern; + } + + const writeConcern = WriteConcern.fromOptions(options) ?? parent?.writeConcern; + if (writeConcern) { + result.writeConcern = writeConcern; + } + } + + const readPreference = ReadPreference.fromOptions(options) ?? parent?.readPreference; + if (readPreference) { + result.readPreference = readPreference; + } + + return result; +} + +export function isSuperset(set: Set | any[], subset: Set | any[]): boolean { + set = Array.isArray(set) ? new Set(set) : set; + subset = Array.isArray(subset) ? new Set(subset) : subset; + for (const elem of subset) { + if (!set.has(elem)) { + return false; + } + } + return true; +} + +/** + * Checks if the document is a Hello request + * @internal + */ +export function isHello(doc: Document): boolean { + return doc[LEGACY_HELLO_COMMAND] || doc.hello ? true : false; +} + +/** Returns the items that are uniquely in setA */ +export function setDifference(setA: Iterable, setB: Iterable): Set { + const difference = new Set(setA); + for (const elem of setB) { + difference.delete(elem); + } + return difference; +} + +const HAS_OWN = (object: unknown, prop: string) => + Object.prototype.hasOwnProperty.call(object, prop); + +export function isRecord( + value: unknown, + requiredKeys: T +): value is Record; +export function isRecord(value: unknown): value is Record; +export function isRecord( + value: unknown, + requiredKeys: string[] | undefined = undefined +): value is Record { + if (!isObject(value)) { + return false; + } + + const ctor = (value as any).constructor; + if (ctor && ctor.prototype) { + if (!isObject(ctor.prototype)) { + return false; + } + + // Check to see if some method exists from the Object exists + if (!HAS_OWN(ctor.prototype, 'isPrototypeOf')) { + return false; + } + } + + if (requiredKeys) { + const keys = Object.keys(value as Record); + return isSuperset(keys, requiredKeys); + } + + return true; +} + +/** + * Make a deep copy of an object + * + * NOTE: This is not meant to be the perfect implementation of a deep copy, + * but instead something that is good enough for the purposes of + * command monitoring. + */ +export function deepCopy(value: T): T { + if (value == null) { + return value; + } else if (Array.isArray(value)) { + return value.map(item => deepCopy(item)) as unknown as T; + } else if (isRecord(value)) { + const res = {} as any; + for (const key in value) { + res[key] = deepCopy(value[key]); + } + return res; + } + + const ctor = (value as any).constructor; + if (ctor) { + switch (ctor.name.toLowerCase()) { + case 'date': + return new ctor(Number(value)); + case 'map': + return new Map(value as any) as unknown as T; + case 'set': + return new Set(value as any) as unknown as T; + case 'buffer': + return Buffer.from(value as unknown as Buffer) as unknown as T; + } + } + + return value; +} + +/** @internal */ +const kBuffers = Symbol('buffers'); +/** @internal */ +const kLength = Symbol('length'); + +/** + * A pool of Buffers which allow you to read them as if they were one + * @internal + */ +export class BufferPool { + [kBuffers]: Buffer[]; + [kLength]: number; + + constructor() { + this[kBuffers] = []; + this[kLength] = 0; + } + + get length(): number { + return this[kLength]; + } + + /** Adds a buffer to the internal buffer pool list */ + append(buffer: Buffer): void { + this[kBuffers].push(buffer); + this[kLength] += buffer.length; + } + + /** Returns the requested number of bytes without consuming them */ + peek(size: number): Buffer { + return this.read(size, false); + } + + /** Reads the requested number of bytes, optionally consuming them */ + read(size: number, consume = true): Buffer { + if (typeof size !== 'number' || size < 0) { + throw new MongoInvalidArgumentError('Argument "size" must be a non-negative number'); + } + + if (size > this[kLength]) { + return Buffer.alloc(0); + } + + let result: Buffer; + + // read the whole buffer + if (size === this.length) { + result = Buffer.concat(this[kBuffers]); + + if (consume) { + this[kBuffers] = []; + this[kLength] = 0; + } + } + + // size is within first buffer, no need to concat + else if (size <= this[kBuffers][0].length) { + result = this[kBuffers][0].slice(0, size); + if (consume) { + this[kBuffers][0] = this[kBuffers][0].slice(size); + this[kLength] -= size; + } + } + + // size is beyond first buffer, need to track and copy + else { + result = Buffer.allocUnsafe(size); + + let idx; + let offset = 0; + let bytesToCopy = size; + for (idx = 0; idx < this[kBuffers].length; ++idx) { + let bytesCopied; + if (bytesToCopy > this[kBuffers][idx].length) { + bytesCopied = this[kBuffers][idx].copy(result, offset, 0); + offset += bytesCopied; + } else { + bytesCopied = this[kBuffers][idx].copy(result, offset, 0, bytesToCopy); + if (consume) { + this[kBuffers][idx] = this[kBuffers][idx].slice(bytesCopied); + } + offset += bytesCopied; + break; + } + + bytesToCopy -= bytesCopied; + } + + // compact the internal buffer array + if (consume) { + this[kBuffers] = this[kBuffers].slice(idx); + this[kLength] -= size; + } + } + + return result; + } +} + +/** @public */ +export class HostAddress { + host: string | undefined = undefined; + port: number | undefined = undefined; + socketPath: string | undefined = undefined; + isIPv6 = false; + + constructor(hostString: string) { + const escapedHost = hostString.split(' ').join('%20'); // escape spaces, for socket path hosts + + if (escapedHost.endsWith('.sock')) { + // heuristically determine if we're working with a domain socket + this.socketPath = decodeURIComponent(escapedHost); + return; + } + + const urlString = `iLoveJS://${escapedHost}`; + let url; + try { + url = new URL(urlString); + } catch (urlError) { + const runtimeError = new MongoRuntimeError(`Unable to parse ${escapedHost} with URL`); + runtimeError.cause = urlError; + throw runtimeError; + } + + const hostname = url.hostname; + const port = url.port; + + let normalized = decodeURIComponent(hostname).toLowerCase(); + if (normalized.startsWith('[') && normalized.endsWith(']')) { + this.isIPv6 = true; + normalized = normalized.substring(1, hostname.length - 1); + } + + this.host = normalized.toLowerCase(); + + if (typeof port === 'number') { + this.port = port; + } else if (typeof port === 'string' && port !== '') { + this.port = Number.parseInt(port, 10); + } else { + this.port = 27017; + } + + if (this.port === 0) { + throw new MongoParseError('Invalid port (zero) with hostname'); + } + Object.freeze(this); + } + + [Symbol.for('nodejs.util.inspect.custom')](): string { + return this.inspect(); + } + + inspect(): string { + return `new HostAddress('${this.toString()}')`; + } + + toString(): string { + if (typeof this.host === 'string') { + if (this.isIPv6) { + return `[${this.host}]:${this.port}`; + } + return `${this.host}:${this.port}`; + } + return `${this.socketPath}`; + } + + static fromString(this: void, s: string): HostAddress { + return new HostAddress(s); + } + + static fromHostPort(host: string, port: number): HostAddress { + if (host.includes(':')) { + host = `[${host}]`; // IPv6 address + } + return HostAddress.fromString(`${host}:${port}`); + } + + static fromSrvRecord({ name, port }: SrvRecord): HostAddress { + return HostAddress.fromHostPort(name, port); + } +} + +export const DEFAULT_PK_FACTORY = { + // We prefer not to rely on ObjectId having a createPk method + createPk(): ObjectId { + return new ObjectId(); + } +}; + +/** + * When the driver used emitWarning the code will be equal to this. + * @public + * + * @example + * ```ts + * process.on('warning', (warning) => { + * if (warning.code === MONGODB_WARNING_CODE) console.error('Ah an important warning! :)') + * }) + * ``` + */ +export const MONGODB_WARNING_CODE = 'MONGODB DRIVER' as const; + +/** @internal */ +export function emitWarning(message: string): void { + return process.emitWarning(message, { code: MONGODB_WARNING_CODE } as any); +} + +const emittedWarnings = new Set(); +/** + * Will emit a warning once for the duration of the application. + * Uses the message to identify if it has already been emitted + * so using string interpolation can cause multiple emits + * @internal + */ +export function emitWarningOnce(message: string): void { + if (!emittedWarnings.has(message)) { + emittedWarnings.add(message); + return emitWarning(message); + } +} + +/** + * Takes a JS object and joins the values into a string separated by ', ' + */ +export function enumToString(en: Record): string { + return Object.values(en).join(', '); +} + +/** + * Determine if a server supports retryable writes. + * + * @internal + */ +export function supportsRetryableWrites(server?: Server): boolean { + if (!server) { + return false; + } + + if (server.loadBalanced) { + // Loadbalanced topologies will always support retry writes + return true; + } + + if (server.description.logicalSessionTimeoutMinutes != null) { + // that supports sessions + if (server.description.type !== ServerType.Standalone) { + // and that is not a standalone + return true; + } + } + + return false; +} + +export function parsePackageVersion({ version }: { version: string }): { + major: number; + minor: number; + patch: number; +} { + const [major, minor, patch] = version.split('.').map((n: string) => Number.parseInt(n, 10)); + return { major, minor, patch }; +} + +/** + * Fisher–Yates Shuffle + * + * Reference: https://bost.ocks.org/mike/shuffle/ + * @param sequence - items to be shuffled + * @param limit - Defaults to `0`. If nonzero shuffle will slice the randomized array e.g, `.slice(0, limit)` otherwise will return the entire randomized array. + */ +export function shuffle(sequence: Iterable, limit = 0): Array { + const items = Array.from(sequence); // shallow copy in order to never shuffle the input + + if (limit > items.length) { + throw new MongoRuntimeError('Limit must be less than the number of items'); + } + + let remainingItemsToShuffle = items.length; + const lowerBound = limit % items.length === 0 ? 1 : items.length - limit; + while (remainingItemsToShuffle > lowerBound) { + // Pick a remaining element + const randomIndex = Math.floor(Math.random() * remainingItemsToShuffle); + remainingItemsToShuffle -= 1; + + // And swap it with the current element + const swapHold = items[remainingItemsToShuffle]; + items[remainingItemsToShuffle] = items[randomIndex]; + items[randomIndex] = swapHold; + } + + return limit % items.length === 0 ? items : items.slice(lowerBound); +} + +// TODO: this should be codified in command construction +// @see https://github.com/mongodb/specifications/blob/master/source/read-write-concern/read-write-concern.rst#read-concern +export function commandSupportsReadConcern(command: Document, options?: Document): boolean { + if (command.aggregate || command.count || command.distinct || command.find || command.geoNear) { + return true; + } + + if ( + command.mapReduce && + options && + options.out && + (options.out.inline === 1 || options.out === 'inline') + ) { + return true; + } + + return false; +} + +/** A utility function to get the instance of mongodb-client-encryption, if it exists. */ +export function getMongoDBClientEncryption(): { + extension: (mdb: unknown) => { + AutoEncrypter: any; + ClientEncryption: any; + }; +} | null { + let mongodbClientEncryption = null; + + // NOTE(NODE-4254): This is to get around the circular dependency between + // mongodb-client-encryption and the driver in the test scenarios. + if ( + typeof process.env.MONGODB_CLIENT_ENCRYPTION_OVERRIDE === 'string' && + process.env.MONGODB_CLIENT_ENCRYPTION_OVERRIDE.length > 0 + ) { + try { + // NOTE(NODE-3199): Ensure you always wrap an optional require literally in the try block + // Cannot be moved to helper utility function, bundlers search and replace the actual require call + // in a way that makes this line throw at bundle time, not runtime, catching here will make bundling succeed + mongodbClientEncryption = require(process.env.MONGODB_CLIENT_ENCRYPTION_OVERRIDE); + } catch { + // ignore + } + } else { + try { + // NOTE(NODE-3199): Ensure you always wrap an optional require literally in the try block + // Cannot be moved to helper utility function, bundlers search and replace the actual require call + // in a way that makes this line throw at bundle time, not runtime, catching here will make bundling succeed + mongodbClientEncryption = require('mongodb-client-encryption'); + } catch { + // ignore + } + } + + return mongodbClientEncryption; +} + +/** + * Compare objectIds. `null` is always less + * - `+1 = oid1 is greater than oid2` + * - `-1 = oid1 is less than oid2` + * - `+0 = oid1 is equal oid2` + */ +export function compareObjectId(oid1?: ObjectId, oid2?: ObjectId): 0 | 1 | -1 { + if (oid1 == null && oid2 == null) { + return 0; + } + + if (oid1 == null) { + return -1; + } + + if (oid2 == null) { + return 1; + } + + return oid1.id.compare(oid2.id); +} diff --git a/node_modules/mongodb/src/write_concern.ts b/node_modules/mongodb/src/write_concern.ts new file mode 100644 index 000000000..ebc77ebf6 --- /dev/null +++ b/node_modules/mongodb/src/write_concern.ts @@ -0,0 +1,114 @@ +/** @public */ +export type W = number | 'majority'; + +/** @public */ +export interface WriteConcernOptions { + /** Write Concern as an object */ + writeConcern?: WriteConcern | WriteConcernSettings; +} + +/** @public */ +export interface WriteConcernSettings { + /** The write concern */ + w?: W; + /** The write concern timeout */ + wtimeoutMS?: number; + /** The journal write concern */ + journal?: boolean; + + // legacy options + /** The journal write concern */ + j?: boolean; + /** The write concern timeout */ + wtimeout?: number; + /** The file sync write concern */ + fsync?: boolean | 1; +} + +export const WRITE_CONCERN_KEYS = ['w', 'wtimeout', 'j', 'journal', 'fsync']; + +/** + * A MongoDB WriteConcern, which describes the level of acknowledgement + * requested from MongoDB for write operations. + * @public + * + * @see https://docs.mongodb.com/manual/reference/write-concern/ + */ +export class WriteConcern { + /** request acknowledgment that the write operation has propagated to a specified number of mongod instances or to mongod instances with specified tags. */ + w?: W; + /** specify a time limit to prevent write operations from blocking indefinitely */ + wtimeout?: number; + /** request acknowledgment that the write operation has been written to the on-disk journal */ + j?: boolean; + /** equivalent to the j option */ + fsync?: boolean | 1; + + /** + * Constructs a WriteConcern from the write concern properties. + * @param w - request acknowledgment that the write operation has propagated to a specified number of mongod instances or to mongod instances with specified tags. + * @param wtimeout - specify a time limit to prevent write operations from blocking indefinitely + * @param j - request acknowledgment that the write operation has been written to the on-disk journal + * @param fsync - equivalent to the j option + */ + constructor(w?: W, wtimeout?: number, j?: boolean, fsync?: boolean | 1) { + if (w != null) { + if (!Number.isNaN(Number(w))) { + this.w = Number(w); + } else { + this.w = w; + } + } + if (wtimeout != null) { + this.wtimeout = wtimeout; + } + if (j != null) { + this.j = j; + } + if (fsync != null) { + this.fsync = fsync; + } + } + + /** Construct a WriteConcern given an options object. */ + static fromOptions( + options?: WriteConcernOptions | WriteConcern | W, + inherit?: WriteConcernOptions | WriteConcern + ): WriteConcern | undefined { + if (options == null) return undefined; + inherit = inherit ?? {}; + let opts: WriteConcernSettings | WriteConcern | undefined; + if (typeof options === 'string' || typeof options === 'number') { + opts = { w: options }; + } else if (options instanceof WriteConcern) { + opts = options; + } else { + opts = options.writeConcern; + } + const parentOpts: WriteConcern | WriteConcernSettings | undefined = + inherit instanceof WriteConcern ? inherit : inherit.writeConcern; + + const { + w = undefined, + wtimeout = undefined, + j = undefined, + fsync = undefined, + journal = undefined, + wtimeoutMS = undefined + } = { + ...parentOpts, + ...opts + }; + if ( + w != null || + wtimeout != null || + wtimeoutMS != null || + j != null || + journal != null || + fsync != null + ) { + return new WriteConcern(w, wtimeout ?? wtimeoutMS, j ?? journal, fsync); + } + return undefined; + } +} diff --git a/node_modules/mongodb/tsconfig.json b/node_modules/mongodb/tsconfig.json new file mode 100644 index 000000000..a2724c494 --- /dev/null +++ b/node_modules/mongodb/tsconfig.json @@ -0,0 +1,40 @@ +{ + "compilerOptions": { + "allowJs": false, + "checkJs": false, + "strict": true, + "alwaysStrict": true, + "target": "ES2019", + "module": "commonJS", + "moduleResolution": "node", + "skipLibCheck": true, + "lib": ["es2020"], + // We don't make use of tslib helpers, all syntax used is supported by target engine + "importHelpers": false, + "noEmitHelpers": true, + // Never emit error filled code + "noEmitOnError": true, + "outDir": "lib", + "importsNotUsedAsValues": "error", + // We want the sourcemaps in a separate file + "inlineSourceMap": false, + "sourceMap": true, + // API-Extractor uses declaration maps to report problems in source, no need to distribute + "declaration": true, + "declarationMap": true, + // we include sources in the release + "inlineSources": false, + // Prevents web types from being suggested by vscode. + "types": ["node"], + "forceConsistentCasingInFileNames": true, + "noImplicitOverride": true, + "noImplicitReturns": true, + // TODO(NODE-3659): Enable useUnknownInCatchVariables and add type assertions or remove unnecessary catch blocks + "useUnknownInCatchVariables": false + }, + "ts-node": { + "transpileOnly": true, + "compiler": "typescript-cached-transpile" + }, + "include": ["src/**/*"] +} diff --git a/node_modules/ms/index.js b/node_modules/ms/index.js new file mode 100644 index 000000000..6a522b16b --- /dev/null +++ b/node_modules/ms/index.js @@ -0,0 +1,152 @@ +/** + * Helpers. + */ + +var s = 1000; +var m = s * 60; +var h = m * 60; +var d = h * 24; +var y = d * 365.25; + +/** + * Parse or format the given `val`. + * + * Options: + * + * - `long` verbose formatting [false] + * + * @param {String|Number} val + * @param {Object} [options] + * @throws {Error} throw an error if val is not a non-empty string or a number + * @return {String|Number} + * @api public + */ + +module.exports = function(val, options) { + options = options || {}; + var type = typeof val; + if (type === 'string' && val.length > 0) { + return parse(val); + } else if (type === 'number' && isNaN(val) === false) { + return options.long ? fmtLong(val) : fmtShort(val); + } + throw new Error( + 'val is not a non-empty string or a valid number. val=' + + JSON.stringify(val) + ); +}; + +/** + * Parse the given `str` and return milliseconds. + * + * @param {String} str + * @return {Number} + * @api private + */ + +function parse(str) { + str = String(str); + if (str.length > 100) { + return; + } + var match = /^((?:\d+)?\.?\d+) *(milliseconds?|msecs?|ms|seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|years?|yrs?|y)?$/i.exec( + str + ); + if (!match) { + return; + } + var n = parseFloat(match[1]); + var type = (match[2] || 'ms').toLowerCase(); + switch (type) { + case 'years': + case 'year': + case 'yrs': + case 'yr': + case 'y': + return n * y; + case 'days': + case 'day': + case 'd': + return n * d; + case 'hours': + case 'hour': + case 'hrs': + case 'hr': + case 'h': + return n * h; + case 'minutes': + case 'minute': + case 'mins': + case 'min': + case 'm': + return n * m; + case 'seconds': + case 'second': + case 'secs': + case 'sec': + case 's': + return n * s; + case 'milliseconds': + case 'millisecond': + case 'msecs': + case 'msec': + case 'ms': + return n; + default: + return undefined; + } +} + +/** + * Short format for `ms`. + * + * @param {Number} ms + * @return {String} + * @api private + */ + +function fmtShort(ms) { + if (ms >= d) { + return Math.round(ms / d) + 'd'; + } + if (ms >= h) { + return Math.round(ms / h) + 'h'; + } + if (ms >= m) { + return Math.round(ms / m) + 'm'; + } + if (ms >= s) { + return Math.round(ms / s) + 's'; + } + return ms + 'ms'; +} + +/** + * Long format for `ms`. + * + * @param {Number} ms + * @return {String} + * @api private + */ + +function fmtLong(ms) { + return plural(ms, d, 'day') || + plural(ms, h, 'hour') || + plural(ms, m, 'minute') || + plural(ms, s, 'second') || + ms + ' ms'; +} + +/** + * Pluralization helper. + */ + +function plural(ms, n, name) { + if (ms < n) { + return; + } + if (ms < n * 1.5) { + return Math.floor(ms / n) + ' ' + name; + } + return Math.ceil(ms / n) + ' ' + name + 's'; +} diff --git a/node_modules/ms/license.md b/node_modules/ms/license.md new file mode 100644 index 000000000..69b61253a --- /dev/null +++ b/node_modules/ms/license.md @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2016 Zeit, Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/node_modules/ms/package.json b/node_modules/ms/package.json new file mode 100644 index 000000000..6a31c81fa --- /dev/null +++ b/node_modules/ms/package.json @@ -0,0 +1,37 @@ +{ + "name": "ms", + "version": "2.0.0", + "description": "Tiny milisecond conversion utility", + "repository": "zeit/ms", + "main": "./index", + "files": [ + "index.js" + ], + "scripts": { + "precommit": "lint-staged", + "lint": "eslint lib/* bin/*", + "test": "mocha tests.js" + }, + "eslintConfig": { + "extends": "eslint:recommended", + "env": { + "node": true, + "es6": true + } + }, + "lint-staged": { + "*.js": [ + "npm run lint", + "prettier --single-quote --write", + "git add" + ] + }, + "license": "MIT", + "devDependencies": { + "eslint": "3.19.0", + "expect.js": "0.3.1", + "husky": "0.13.3", + "lint-staged": "3.4.1", + "mocha": "3.4.1" + } +} diff --git a/node_modules/ms/readme.md b/node_modules/ms/readme.md new file mode 100644 index 000000000..84a9974cc --- /dev/null +++ b/node_modules/ms/readme.md @@ -0,0 +1,51 @@ +# ms + +[![Build Status](https://travis-ci.org/zeit/ms.svg?branch=master)](https://travis-ci.org/zeit/ms) +[![Slack Channel](http://zeit-slackin.now.sh/badge.svg)](https://zeit.chat/) + +Use this package to easily convert various time formats to milliseconds. + +## Examples + +```js +ms('2 days') // 172800000 +ms('1d') // 86400000 +ms('10h') // 36000000 +ms('2.5 hrs') // 9000000 +ms('2h') // 7200000 +ms('1m') // 60000 +ms('5s') // 5000 +ms('1y') // 31557600000 +ms('100') // 100 +``` + +### Convert from milliseconds + +```js +ms(60000) // "1m" +ms(2 * 60000) // "2m" +ms(ms('10 hours')) // "10h" +``` + +### Time format written-out + +```js +ms(60000, { long: true }) // "1 minute" +ms(2 * 60000, { long: true }) // "2 minutes" +ms(ms('10 hours'), { long: true }) // "10 hours" +``` + +## Features + +- Works both in [node](https://nodejs.org) and in the browser. +- If a number is supplied to `ms`, a string with a unit is returned. +- If a string that contains the number is supplied, it returns it as a number (e.g.: it returns `100` for `'100'`). +- If you pass a string with a number and a valid unit, the number of equivalent ms is returned. + +## Caught a bug? + +1. [Fork](https://help.github.com/articles/fork-a-repo/) this repository to your own GitHub account and then [clone](https://help.github.com/articles/cloning-a-repository/) it to your local device +2. Link the package to the global module directory: `npm link` +3. Within the module you want to test your local development instance of ms, just link it to the dependencies: `npm link ms`. Instead of the default one from npm, node will now use your clone of ms! + +As always, you can run the tests using: `npm test` diff --git a/node_modules/negotiator/HISTORY.md b/node_modules/negotiator/HISTORY.md new file mode 100644 index 000000000..a9a544914 --- /dev/null +++ b/node_modules/negotiator/HISTORY.md @@ -0,0 +1,108 @@ +0.6.3 / 2022-01-22 +================== + + * Revert "Lazy-load modules from main entry point" + +0.6.2 / 2019-04-29 +================== + + * Fix sorting charset, encoding, and language with extra parameters + +0.6.1 / 2016-05-02 +================== + + * perf: improve `Accept` parsing speed + * perf: improve `Accept-Charset` parsing speed + * perf: improve `Accept-Encoding` parsing speed + * perf: improve `Accept-Language` parsing speed + +0.6.0 / 2015-09-29 +================== + + * Fix including type extensions in parameters in `Accept` parsing + * Fix parsing `Accept` parameters with quoted equals + * Fix parsing `Accept` parameters with quoted semicolons + * Lazy-load modules from main entry point + * perf: delay type concatenation until needed + * perf: enable strict mode + * perf: hoist regular expressions + * perf: remove closures getting spec properties + * perf: remove a closure from media type parsing + * perf: remove property delete from media type parsing + +0.5.3 / 2015-05-10 +================== + + * Fix media type parameter matching to be case-insensitive + +0.5.2 / 2015-05-06 +================== + + * Fix comparing media types with quoted values + * Fix splitting media types with quoted commas + +0.5.1 / 2015-02-14 +================== + + * Fix preference sorting to be stable for long acceptable lists + +0.5.0 / 2014-12-18 +================== + + * Fix list return order when large accepted list + * Fix missing identity encoding when q=0 exists + * Remove dynamic building of Negotiator class + +0.4.9 / 2014-10-14 +================== + + * Fix error when media type has invalid parameter + +0.4.8 / 2014-09-28 +================== + + * Fix all negotiations to be case-insensitive + * Stable sort preferences of same quality according to client order + * Support Node.js 0.6 + +0.4.7 / 2014-06-24 +================== + + * Handle invalid provided languages + * Handle invalid provided media types + +0.4.6 / 2014-06-11 +================== + + * Order by specificity when quality is the same + +0.4.5 / 2014-05-29 +================== + + * Fix regression in empty header handling + +0.4.4 / 2014-05-29 +================== + + * Fix behaviors when headers are not present + +0.4.3 / 2014-04-16 +================== + + * Handle slashes on media params correctly + +0.4.2 / 2014-02-28 +================== + + * Fix media type sorting + * Handle media types params strictly + +0.4.1 / 2014-01-16 +================== + + * Use most specific matches + +0.4.0 / 2014-01-09 +================== + + * Remove preferred prefix from methods diff --git a/node_modules/negotiator/LICENSE b/node_modules/negotiator/LICENSE new file mode 100644 index 000000000..ea6b9e2e9 --- /dev/null +++ b/node_modules/negotiator/LICENSE @@ -0,0 +1,24 @@ +(The MIT License) + +Copyright (c) 2012-2014 Federico Romero +Copyright (c) 2012-2014 Isaac Z. Schlueter +Copyright (c) 2014-2015 Douglas Christopher Wilson + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +'Software'), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/node_modules/negotiator/README.md b/node_modules/negotiator/README.md new file mode 100644 index 000000000..82915e521 --- /dev/null +++ b/node_modules/negotiator/README.md @@ -0,0 +1,203 @@ +# negotiator + +[![NPM Version][npm-image]][npm-url] +[![NPM Downloads][downloads-image]][downloads-url] +[![Node.js Version][node-version-image]][node-version-url] +[![Build Status][github-actions-ci-image]][github-actions-ci-url] +[![Test Coverage][coveralls-image]][coveralls-url] + +An HTTP content negotiator for Node.js + +## Installation + +```sh +$ npm install negotiator +``` + +## API + +```js +var Negotiator = require('negotiator') +``` + +### Accept Negotiation + +```js +availableMediaTypes = ['text/html', 'text/plain', 'application/json'] + +// The negotiator constructor receives a request object +negotiator = new Negotiator(request) + +// Let's say Accept header is 'text/html, application/*;q=0.2, image/jpeg;q=0.8' + +negotiator.mediaTypes() +// -> ['text/html', 'image/jpeg', 'application/*'] + +negotiator.mediaTypes(availableMediaTypes) +// -> ['text/html', 'application/json'] + +negotiator.mediaType(availableMediaTypes) +// -> 'text/html' +``` + +You can check a working example at `examples/accept.js`. + +#### Methods + +##### mediaType() + +Returns the most preferred media type from the client. + +##### mediaType(availableMediaType) + +Returns the most preferred media type from a list of available media types. + +##### mediaTypes() + +Returns an array of preferred media types ordered by the client preference. + +##### mediaTypes(availableMediaTypes) + +Returns an array of preferred media types ordered by priority from a list of +available media types. + +### Accept-Language Negotiation + +```js +negotiator = new Negotiator(request) + +availableLanguages = ['en', 'es', 'fr'] + +// Let's say Accept-Language header is 'en;q=0.8, es, pt' + +negotiator.languages() +// -> ['es', 'pt', 'en'] + +negotiator.languages(availableLanguages) +// -> ['es', 'en'] + +language = negotiator.language(availableLanguages) +// -> 'es' +``` + +You can check a working example at `examples/language.js`. + +#### Methods + +##### language() + +Returns the most preferred language from the client. + +##### language(availableLanguages) + +Returns the most preferred language from a list of available languages. + +##### languages() + +Returns an array of preferred languages ordered by the client preference. + +##### languages(availableLanguages) + +Returns an array of preferred languages ordered by priority from a list of +available languages. + +### Accept-Charset Negotiation + +```js +availableCharsets = ['utf-8', 'iso-8859-1', 'iso-8859-5'] + +negotiator = new Negotiator(request) + +// Let's say Accept-Charset header is 'utf-8, iso-8859-1;q=0.8, utf-7;q=0.2' + +negotiator.charsets() +// -> ['utf-8', 'iso-8859-1', 'utf-7'] + +negotiator.charsets(availableCharsets) +// -> ['utf-8', 'iso-8859-1'] + +negotiator.charset(availableCharsets) +// -> 'utf-8' +``` + +You can check a working example at `examples/charset.js`. + +#### Methods + +##### charset() + +Returns the most preferred charset from the client. + +##### charset(availableCharsets) + +Returns the most preferred charset from a list of available charsets. + +##### charsets() + +Returns an array of preferred charsets ordered by the client preference. + +##### charsets(availableCharsets) + +Returns an array of preferred charsets ordered by priority from a list of +available charsets. + +### Accept-Encoding Negotiation + +```js +availableEncodings = ['identity', 'gzip'] + +negotiator = new Negotiator(request) + +// Let's say Accept-Encoding header is 'gzip, compress;q=0.2, identity;q=0.5' + +negotiator.encodings() +// -> ['gzip', 'identity', 'compress'] + +negotiator.encodings(availableEncodings) +// -> ['gzip', 'identity'] + +negotiator.encoding(availableEncodings) +// -> 'gzip' +``` + +You can check a working example at `examples/encoding.js`. + +#### Methods + +##### encoding() + +Returns the most preferred encoding from the client. + +##### encoding(availableEncodings) + +Returns the most preferred encoding from a list of available encodings. + +##### encodings() + +Returns an array of preferred encodings ordered by the client preference. + +##### encodings(availableEncodings) + +Returns an array of preferred encodings ordered by priority from a list of +available encodings. + +## See Also + +The [accepts](https://npmjs.org/package/accepts#readme) module builds on +this module and provides an alternative interface, mime type validation, +and more. + +## License + +[MIT](LICENSE) + +[npm-image]: https://img.shields.io/npm/v/negotiator.svg +[npm-url]: https://npmjs.org/package/negotiator +[node-version-image]: https://img.shields.io/node/v/negotiator.svg +[node-version-url]: https://nodejs.org/en/download/ +[coveralls-image]: https://img.shields.io/coveralls/jshttp/negotiator/master.svg +[coveralls-url]: https://coveralls.io/r/jshttp/negotiator?branch=master +[downloads-image]: https://img.shields.io/npm/dm/negotiator.svg +[downloads-url]: https://npmjs.org/package/negotiator +[github-actions-ci-image]: https://img.shields.io/github/workflow/status/jshttp/negotiator/ci/master?label=ci +[github-actions-ci-url]: https://github.com/jshttp/negotiator/actions/workflows/ci.yml diff --git a/node_modules/negotiator/index.js b/node_modules/negotiator/index.js new file mode 100644 index 000000000..4788264b1 --- /dev/null +++ b/node_modules/negotiator/index.js @@ -0,0 +1,82 @@ +/*! + * negotiator + * Copyright(c) 2012 Federico Romero + * Copyright(c) 2012-2014 Isaac Z. Schlueter + * Copyright(c) 2015 Douglas Christopher Wilson + * MIT Licensed + */ + +'use strict'; + +var preferredCharsets = require('./lib/charset') +var preferredEncodings = require('./lib/encoding') +var preferredLanguages = require('./lib/language') +var preferredMediaTypes = require('./lib/mediaType') + +/** + * Module exports. + * @public + */ + +module.exports = Negotiator; +module.exports.Negotiator = Negotiator; + +/** + * Create a Negotiator instance from a request. + * @param {object} request + * @public + */ + +function Negotiator(request) { + if (!(this instanceof Negotiator)) { + return new Negotiator(request); + } + + this.request = request; +} + +Negotiator.prototype.charset = function charset(available) { + var set = this.charsets(available); + return set && set[0]; +}; + +Negotiator.prototype.charsets = function charsets(available) { + return preferredCharsets(this.request.headers['accept-charset'], available); +}; + +Negotiator.prototype.encoding = function encoding(available) { + var set = this.encodings(available); + return set && set[0]; +}; + +Negotiator.prototype.encodings = function encodings(available) { + return preferredEncodings(this.request.headers['accept-encoding'], available); +}; + +Negotiator.prototype.language = function language(available) { + var set = this.languages(available); + return set && set[0]; +}; + +Negotiator.prototype.languages = function languages(available) { + return preferredLanguages(this.request.headers['accept-language'], available); +}; + +Negotiator.prototype.mediaType = function mediaType(available) { + var set = this.mediaTypes(available); + return set && set[0]; +}; + +Negotiator.prototype.mediaTypes = function mediaTypes(available) { + return preferredMediaTypes(this.request.headers.accept, available); +}; + +// Backwards compatibility +Negotiator.prototype.preferredCharset = Negotiator.prototype.charset; +Negotiator.prototype.preferredCharsets = Negotiator.prototype.charsets; +Negotiator.prototype.preferredEncoding = Negotiator.prototype.encoding; +Negotiator.prototype.preferredEncodings = Negotiator.prototype.encodings; +Negotiator.prototype.preferredLanguage = Negotiator.prototype.language; +Negotiator.prototype.preferredLanguages = Negotiator.prototype.languages; +Negotiator.prototype.preferredMediaType = Negotiator.prototype.mediaType; +Negotiator.prototype.preferredMediaTypes = Negotiator.prototype.mediaTypes; diff --git a/node_modules/negotiator/lib/charset.js b/node_modules/negotiator/lib/charset.js new file mode 100644 index 000000000..cdd014803 --- /dev/null +++ b/node_modules/negotiator/lib/charset.js @@ -0,0 +1,169 @@ +/** + * negotiator + * Copyright(c) 2012 Isaac Z. Schlueter + * Copyright(c) 2014 Federico Romero + * Copyright(c) 2014-2015 Douglas Christopher Wilson + * MIT Licensed + */ + +'use strict'; + +/** + * Module exports. + * @public + */ + +module.exports = preferredCharsets; +module.exports.preferredCharsets = preferredCharsets; + +/** + * Module variables. + * @private + */ + +var simpleCharsetRegExp = /^\s*([^\s;]+)\s*(?:;(.*))?$/; + +/** + * Parse the Accept-Charset header. + * @private + */ + +function parseAcceptCharset(accept) { + var accepts = accept.split(','); + + for (var i = 0, j = 0; i < accepts.length; i++) { + var charset = parseCharset(accepts[i].trim(), i); + + if (charset) { + accepts[j++] = charset; + } + } + + // trim accepts + accepts.length = j; + + return accepts; +} + +/** + * Parse a charset from the Accept-Charset header. + * @private + */ + +function parseCharset(str, i) { + var match = simpleCharsetRegExp.exec(str); + if (!match) return null; + + var charset = match[1]; + var q = 1; + if (match[2]) { + var params = match[2].split(';') + for (var j = 0; j < params.length; j++) { + var p = params[j].trim().split('='); + if (p[0] === 'q') { + q = parseFloat(p[1]); + break; + } + } + } + + return { + charset: charset, + q: q, + i: i + }; +} + +/** + * Get the priority of a charset. + * @private + */ + +function getCharsetPriority(charset, accepted, index) { + var priority = {o: -1, q: 0, s: 0}; + + for (var i = 0; i < accepted.length; i++) { + var spec = specify(charset, accepted[i], index); + + if (spec && (priority.s - spec.s || priority.q - spec.q || priority.o - spec.o) < 0) { + priority = spec; + } + } + + return priority; +} + +/** + * Get the specificity of the charset. + * @private + */ + +function specify(charset, spec, index) { + var s = 0; + if(spec.charset.toLowerCase() === charset.toLowerCase()){ + s |= 1; + } else if (spec.charset !== '*' ) { + return null + } + + return { + i: index, + o: spec.i, + q: spec.q, + s: s + } +} + +/** + * Get the preferred charsets from an Accept-Charset header. + * @public + */ + +function preferredCharsets(accept, provided) { + // RFC 2616 sec 14.2: no header = * + var accepts = parseAcceptCharset(accept === undefined ? '*' : accept || ''); + + if (!provided) { + // sorted list of all charsets + return accepts + .filter(isQuality) + .sort(compareSpecs) + .map(getFullCharset); + } + + var priorities = provided.map(function getPriority(type, index) { + return getCharsetPriority(type, accepts, index); + }); + + // sorted list of accepted charsets + return priorities.filter(isQuality).sort(compareSpecs).map(function getCharset(priority) { + return provided[priorities.indexOf(priority)]; + }); +} + +/** + * Compare two specs. + * @private + */ + +function compareSpecs(a, b) { + return (b.q - a.q) || (b.s - a.s) || (a.o - b.o) || (a.i - b.i) || 0; +} + +/** + * Get full charset string. + * @private + */ + +function getFullCharset(spec) { + return spec.charset; +} + +/** + * Check if a spec has any quality. + * @private + */ + +function isQuality(spec) { + return spec.q > 0; +} diff --git a/node_modules/negotiator/lib/encoding.js b/node_modules/negotiator/lib/encoding.js new file mode 100644 index 000000000..8432cd77b --- /dev/null +++ b/node_modules/negotiator/lib/encoding.js @@ -0,0 +1,184 @@ +/** + * negotiator + * Copyright(c) 2012 Isaac Z. Schlueter + * Copyright(c) 2014 Federico Romero + * Copyright(c) 2014-2015 Douglas Christopher Wilson + * MIT Licensed + */ + +'use strict'; + +/** + * Module exports. + * @public + */ + +module.exports = preferredEncodings; +module.exports.preferredEncodings = preferredEncodings; + +/** + * Module variables. + * @private + */ + +var simpleEncodingRegExp = /^\s*([^\s;]+)\s*(?:;(.*))?$/; + +/** + * Parse the Accept-Encoding header. + * @private + */ + +function parseAcceptEncoding(accept) { + var accepts = accept.split(','); + var hasIdentity = false; + var minQuality = 1; + + for (var i = 0, j = 0; i < accepts.length; i++) { + var encoding = parseEncoding(accepts[i].trim(), i); + + if (encoding) { + accepts[j++] = encoding; + hasIdentity = hasIdentity || specify('identity', encoding); + minQuality = Math.min(minQuality, encoding.q || 1); + } + } + + if (!hasIdentity) { + /* + * If identity doesn't explicitly appear in the accept-encoding header, + * it's added to the list of acceptable encoding with the lowest q + */ + accepts[j++] = { + encoding: 'identity', + q: minQuality, + i: i + }; + } + + // trim accepts + accepts.length = j; + + return accepts; +} + +/** + * Parse an encoding from the Accept-Encoding header. + * @private + */ + +function parseEncoding(str, i) { + var match = simpleEncodingRegExp.exec(str); + if (!match) return null; + + var encoding = match[1]; + var q = 1; + if (match[2]) { + var params = match[2].split(';'); + for (var j = 0; j < params.length; j++) { + var p = params[j].trim().split('='); + if (p[0] === 'q') { + q = parseFloat(p[1]); + break; + } + } + } + + return { + encoding: encoding, + q: q, + i: i + }; +} + +/** + * Get the priority of an encoding. + * @private + */ + +function getEncodingPriority(encoding, accepted, index) { + var priority = {o: -1, q: 0, s: 0}; + + for (var i = 0; i < accepted.length; i++) { + var spec = specify(encoding, accepted[i], index); + + if (spec && (priority.s - spec.s || priority.q - spec.q || priority.o - spec.o) < 0) { + priority = spec; + } + } + + return priority; +} + +/** + * Get the specificity of the encoding. + * @private + */ + +function specify(encoding, spec, index) { + var s = 0; + if(spec.encoding.toLowerCase() === encoding.toLowerCase()){ + s |= 1; + } else if (spec.encoding !== '*' ) { + return null + } + + return { + i: index, + o: spec.i, + q: spec.q, + s: s + } +}; + +/** + * Get the preferred encodings from an Accept-Encoding header. + * @public + */ + +function preferredEncodings(accept, provided) { + var accepts = parseAcceptEncoding(accept || ''); + + if (!provided) { + // sorted list of all encodings + return accepts + .filter(isQuality) + .sort(compareSpecs) + .map(getFullEncoding); + } + + var priorities = provided.map(function getPriority(type, index) { + return getEncodingPriority(type, accepts, index); + }); + + // sorted list of accepted encodings + return priorities.filter(isQuality).sort(compareSpecs).map(function getEncoding(priority) { + return provided[priorities.indexOf(priority)]; + }); +} + +/** + * Compare two specs. + * @private + */ + +function compareSpecs(a, b) { + return (b.q - a.q) || (b.s - a.s) || (a.o - b.o) || (a.i - b.i) || 0; +} + +/** + * Get full encoding string. + * @private + */ + +function getFullEncoding(spec) { + return spec.encoding; +} + +/** + * Check if a spec has any quality. + * @private + */ + +function isQuality(spec) { + return spec.q > 0; +} diff --git a/node_modules/negotiator/lib/language.js b/node_modules/negotiator/lib/language.js new file mode 100644 index 000000000..a23167252 --- /dev/null +++ b/node_modules/negotiator/lib/language.js @@ -0,0 +1,179 @@ +/** + * negotiator + * Copyright(c) 2012 Isaac Z. Schlueter + * Copyright(c) 2014 Federico Romero + * Copyright(c) 2014-2015 Douglas Christopher Wilson + * MIT Licensed + */ + +'use strict'; + +/** + * Module exports. + * @public + */ + +module.exports = preferredLanguages; +module.exports.preferredLanguages = preferredLanguages; + +/** + * Module variables. + * @private + */ + +var simpleLanguageRegExp = /^\s*([^\s\-;]+)(?:-([^\s;]+))?\s*(?:;(.*))?$/; + +/** + * Parse the Accept-Language header. + * @private + */ + +function parseAcceptLanguage(accept) { + var accepts = accept.split(','); + + for (var i = 0, j = 0; i < accepts.length; i++) { + var language = parseLanguage(accepts[i].trim(), i); + + if (language) { + accepts[j++] = language; + } + } + + // trim accepts + accepts.length = j; + + return accepts; +} + +/** + * Parse a language from the Accept-Language header. + * @private + */ + +function parseLanguage(str, i) { + var match = simpleLanguageRegExp.exec(str); + if (!match) return null; + + var prefix = match[1] + var suffix = match[2] + var full = prefix + + if (suffix) full += "-" + suffix; + + var q = 1; + if (match[3]) { + var params = match[3].split(';') + for (var j = 0; j < params.length; j++) { + var p = params[j].split('='); + if (p[0] === 'q') q = parseFloat(p[1]); + } + } + + return { + prefix: prefix, + suffix: suffix, + q: q, + i: i, + full: full + }; +} + +/** + * Get the priority of a language. + * @private + */ + +function getLanguagePriority(language, accepted, index) { + var priority = {o: -1, q: 0, s: 0}; + + for (var i = 0; i < accepted.length; i++) { + var spec = specify(language, accepted[i], index); + + if (spec && (priority.s - spec.s || priority.q - spec.q || priority.o - spec.o) < 0) { + priority = spec; + } + } + + return priority; +} + +/** + * Get the specificity of the language. + * @private + */ + +function specify(language, spec, index) { + var p = parseLanguage(language) + if (!p) return null; + var s = 0; + if(spec.full.toLowerCase() === p.full.toLowerCase()){ + s |= 4; + } else if (spec.prefix.toLowerCase() === p.full.toLowerCase()) { + s |= 2; + } else if (spec.full.toLowerCase() === p.prefix.toLowerCase()) { + s |= 1; + } else if (spec.full !== '*' ) { + return null + } + + return { + i: index, + o: spec.i, + q: spec.q, + s: s + } +}; + +/** + * Get the preferred languages from an Accept-Language header. + * @public + */ + +function preferredLanguages(accept, provided) { + // RFC 2616 sec 14.4: no header = * + var accepts = parseAcceptLanguage(accept === undefined ? '*' : accept || ''); + + if (!provided) { + // sorted list of all languages + return accepts + .filter(isQuality) + .sort(compareSpecs) + .map(getFullLanguage); + } + + var priorities = provided.map(function getPriority(type, index) { + return getLanguagePriority(type, accepts, index); + }); + + // sorted list of accepted languages + return priorities.filter(isQuality).sort(compareSpecs).map(function getLanguage(priority) { + return provided[priorities.indexOf(priority)]; + }); +} + +/** + * Compare two specs. + * @private + */ + +function compareSpecs(a, b) { + return (b.q - a.q) || (b.s - a.s) || (a.o - b.o) || (a.i - b.i) || 0; +} + +/** + * Get full language string. + * @private + */ + +function getFullLanguage(spec) { + return spec.full; +} + +/** + * Check if a spec has any quality. + * @private + */ + +function isQuality(spec) { + return spec.q > 0; +} diff --git a/node_modules/negotiator/lib/mediaType.js b/node_modules/negotiator/lib/mediaType.js new file mode 100644 index 000000000..67309dd75 --- /dev/null +++ b/node_modules/negotiator/lib/mediaType.js @@ -0,0 +1,294 @@ +/** + * negotiator + * Copyright(c) 2012 Isaac Z. Schlueter + * Copyright(c) 2014 Federico Romero + * Copyright(c) 2014-2015 Douglas Christopher Wilson + * MIT Licensed + */ + +'use strict'; + +/** + * Module exports. + * @public + */ + +module.exports = preferredMediaTypes; +module.exports.preferredMediaTypes = preferredMediaTypes; + +/** + * Module variables. + * @private + */ + +var simpleMediaTypeRegExp = /^\s*([^\s\/;]+)\/([^;\s]+)\s*(?:;(.*))?$/; + +/** + * Parse the Accept header. + * @private + */ + +function parseAccept(accept) { + var accepts = splitMediaTypes(accept); + + for (var i = 0, j = 0; i < accepts.length; i++) { + var mediaType = parseMediaType(accepts[i].trim(), i); + + if (mediaType) { + accepts[j++] = mediaType; + } + } + + // trim accepts + accepts.length = j; + + return accepts; +} + +/** + * Parse a media type from the Accept header. + * @private + */ + +function parseMediaType(str, i) { + var match = simpleMediaTypeRegExp.exec(str); + if (!match) return null; + + var params = Object.create(null); + var q = 1; + var subtype = match[2]; + var type = match[1]; + + if (match[3]) { + var kvps = splitParameters(match[3]).map(splitKeyValuePair); + + for (var j = 0; j < kvps.length; j++) { + var pair = kvps[j]; + var key = pair[0].toLowerCase(); + var val = pair[1]; + + // get the value, unwrapping quotes + var value = val && val[0] === '"' && val[val.length - 1] === '"' + ? val.substr(1, val.length - 2) + : val; + + if (key === 'q') { + q = parseFloat(value); + break; + } + + // store parameter + params[key] = value; + } + } + + return { + type: type, + subtype: subtype, + params: params, + q: q, + i: i + }; +} + +/** + * Get the priority of a media type. + * @private + */ + +function getMediaTypePriority(type, accepted, index) { + var priority = {o: -1, q: 0, s: 0}; + + for (var i = 0; i < accepted.length; i++) { + var spec = specify(type, accepted[i], index); + + if (spec && (priority.s - spec.s || priority.q - spec.q || priority.o - spec.o) < 0) { + priority = spec; + } + } + + return priority; +} + +/** + * Get the specificity of the media type. + * @private + */ + +function specify(type, spec, index) { + var p = parseMediaType(type); + var s = 0; + + if (!p) { + return null; + } + + if(spec.type.toLowerCase() == p.type.toLowerCase()) { + s |= 4 + } else if(spec.type != '*') { + return null; + } + + if(spec.subtype.toLowerCase() == p.subtype.toLowerCase()) { + s |= 2 + } else if(spec.subtype != '*') { + return null; + } + + var keys = Object.keys(spec.params); + if (keys.length > 0) { + if (keys.every(function (k) { + return spec.params[k] == '*' || (spec.params[k] || '').toLowerCase() == (p.params[k] || '').toLowerCase(); + })) { + s |= 1 + } else { + return null + } + } + + return { + i: index, + o: spec.i, + q: spec.q, + s: s, + } +} + +/** + * Get the preferred media types from an Accept header. + * @public + */ + +function preferredMediaTypes(accept, provided) { + // RFC 2616 sec 14.2: no header = */* + var accepts = parseAccept(accept === undefined ? '*/*' : accept || ''); + + if (!provided) { + // sorted list of all types + return accepts + .filter(isQuality) + .sort(compareSpecs) + .map(getFullType); + } + + var priorities = provided.map(function getPriority(type, index) { + return getMediaTypePriority(type, accepts, index); + }); + + // sorted list of accepted types + return priorities.filter(isQuality).sort(compareSpecs).map(function getType(priority) { + return provided[priorities.indexOf(priority)]; + }); +} + +/** + * Compare two specs. + * @private + */ + +function compareSpecs(a, b) { + return (b.q - a.q) || (b.s - a.s) || (a.o - b.o) || (a.i - b.i) || 0; +} + +/** + * Get full type string. + * @private + */ + +function getFullType(spec) { + return spec.type + '/' + spec.subtype; +} + +/** + * Check if a spec has any quality. + * @private + */ + +function isQuality(spec) { + return spec.q > 0; +} + +/** + * Count the number of quotes in a string. + * @private + */ + +function quoteCount(string) { + var count = 0; + var index = 0; + + while ((index = string.indexOf('"', index)) !== -1) { + count++; + index++; + } + + return count; +} + +/** + * Split a key value pair. + * @private + */ + +function splitKeyValuePair(str) { + var index = str.indexOf('='); + var key; + var val; + + if (index === -1) { + key = str; + } else { + key = str.substr(0, index); + val = str.substr(index + 1); + } + + return [key, val]; +} + +/** + * Split an Accept header into media types. + * @private + */ + +function splitMediaTypes(accept) { + var accepts = accept.split(','); + + for (var i = 1, j = 0; i < accepts.length; i++) { + if (quoteCount(accepts[j]) % 2 == 0) { + accepts[++j] = accepts[i]; + } else { + accepts[j] += ',' + accepts[i]; + } + } + + // trim accepts + accepts.length = j + 1; + + return accepts; +} + +/** + * Split a string of parameters. + * @private + */ + +function splitParameters(str) { + var parameters = str.split(';'); + + for (var i = 1, j = 0; i < parameters.length; i++) { + if (quoteCount(parameters[j]) % 2 == 0) { + parameters[++j] = parameters[i]; + } else { + parameters[j] += ';' + parameters[i]; + } + } + + // trim parameters + parameters.length = j + 1; + + for (var i = 0; i < parameters.length; i++) { + parameters[i] = parameters[i].trim(); + } + + return parameters; +} diff --git a/node_modules/negotiator/package.json b/node_modules/negotiator/package.json new file mode 100644 index 000000000..297635f6d --- /dev/null +++ b/node_modules/negotiator/package.json @@ -0,0 +1,42 @@ +{ + "name": "negotiator", + "description": "HTTP content negotiation", + "version": "0.6.3", + "contributors": [ + "Douglas Christopher Wilson ", + "Federico Romero ", + "Isaac Z. Schlueter (http://blog.izs.me/)" + ], + "license": "MIT", + "keywords": [ + "http", + "content negotiation", + "accept", + "accept-language", + "accept-encoding", + "accept-charset" + ], + "repository": "jshttp/negotiator", + "devDependencies": { + "eslint": "7.32.0", + "eslint-plugin-markdown": "2.2.1", + "mocha": "9.1.3", + "nyc": "15.1.0" + }, + "files": [ + "lib/", + "HISTORY.md", + "LICENSE", + "index.js", + "README.md" + ], + "engines": { + "node": ">= 0.6" + }, + "scripts": { + "lint": "eslint .", + "test": "mocha --reporter spec --check-leaks --bail test/", + "test-ci": "nyc --reporter=lcov --reporter=text npm test", + "test-cov": "nyc --reporter=html --reporter=text npm test" + } +} diff --git a/node_modules/object-inspect/.eslintrc b/node_modules/object-inspect/.eslintrc new file mode 100644 index 000000000..21f903923 --- /dev/null +++ b/node_modules/object-inspect/.eslintrc @@ -0,0 +1,53 @@ +{ + "root": true, + "extends": "@ljharb", + "rules": { + "complexity": 0, + "func-style": [2, "declaration"], + "indent": [2, 4], + "max-lines": 1, + "max-lines-per-function": 1, + "max-params": [2, 4], + "max-statements": 0, + "max-statements-per-line": [2, { "max": 2 }], + "no-magic-numbers": 0, + "no-param-reassign": 1, + "strict": 0, // TODO + }, + "overrides": [ + { + "files": ["test/**", "test-*", "example/**"], + "extends": "@ljharb/eslint-config/tests", + "rules": { + "id-length": 0, + }, + }, + { + "files": ["example/**"], + "rules": { + "no-console": 0, + }, + }, + { + "files": ["test/browser/**"], + "env": { + "browser": true, + }, + }, + { + "files": ["test/bigint*"], + "rules": { + "new-cap": [2, { "capIsNewExceptions": ["BigInt"] }], + }, + }, + { + "files": "index.js", + "globals": { + "HTMLElement": false, + }, + "rules": { + "no-use-before-define": 1, + }, + }, + ], +} diff --git a/node_modules/object-inspect/.github/FUNDING.yml b/node_modules/object-inspect/.github/FUNDING.yml new file mode 100644 index 000000000..730276bd1 --- /dev/null +++ b/node_modules/object-inspect/.github/FUNDING.yml @@ -0,0 +1,12 @@ +# These are supported funding model platforms + +github: [ljharb] +patreon: # Replace with a single Patreon username +open_collective: # Replace with a single Open Collective username +ko_fi: # Replace with a single Ko-fi username +tidelift: npm/object-inspect +community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry +liberapay: # Replace with a single Liberapay username +issuehunt: # Replace with a single IssueHunt username +otechie: # Replace with a single Otechie username +custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] diff --git a/node_modules/object-inspect/.nycrc b/node_modules/object-inspect/.nycrc new file mode 100644 index 000000000..58a5db783 --- /dev/null +++ b/node_modules/object-inspect/.nycrc @@ -0,0 +1,13 @@ +{ + "all": true, + "check-coverage": false, + "instrumentation": false, + "sourceMap": false, + "reporter": ["text-summary", "text", "html", "json"], + "exclude": [ + "coverage", + "example", + "test", + "test-core-js.js" + ] +} diff --git a/node_modules/object-inspect/CHANGELOG.md b/node_modules/object-inspect/CHANGELOG.md new file mode 100644 index 000000000..36d195819 --- /dev/null +++ b/node_modules/object-inspect/CHANGELOG.md @@ -0,0 +1,360 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [v1.12.2](https://github.com/inspect-js/object-inspect/compare/v1.12.1...v1.12.2) - 2022-05-26 + +### Commits + +- [Fix] use `util.inspect` for a custom inspection symbol method [`e243bf2`](https://github.com/inspect-js/object-inspect/commit/e243bf2eda6c4403ac6f1146fddb14d12e9646c1) +- [meta] add support info [`ca20ba3`](https://github.com/inspect-js/object-inspect/commit/ca20ba35713c17068ca912a86c542f5e8acb656c) +- [Fix] ignore `cause` in node v16.9 and v16.10 where it has a bug [`86aa553`](https://github.com/inspect-js/object-inspect/commit/86aa553a4a455562c2c56f1540f0bf857b9d314b) + +## [v1.12.1](https://github.com/inspect-js/object-inspect/compare/v1.12.0...v1.12.1) - 2022-05-21 + +### Commits + +- [Tests] use `mock-property` [`4ec8893`](https://github.com/inspect-js/object-inspect/commit/4ec8893ea9bfd28065ca3638cf6762424bf44352) +- [meta] use `npmignore` to autogenerate an npmignore file [`07f868c`](https://github.com/inspect-js/object-inspect/commit/07f868c10bd25a9d18686528339bb749c211fc9a) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `auto-changelog`, `tape` [`b05244b`](https://github.com/inspect-js/object-inspect/commit/b05244b4f331e00c43b3151bc498041be77ccc91) +- [Dev Deps] update `@ljharb/eslint-config`, `error-cause`, `es-value-fixtures`, `functions-have-names`, `tape` [`d037398`](https://github.com/inspect-js/object-inspect/commit/d037398dcc5d531532e4c19c4a711ed677f579c1) +- [Fix] properly handle callable regexes in older engines [`848fe48`](https://github.com/inspect-js/object-inspect/commit/848fe48bd6dd0064ba781ee6f3c5e54a94144c37) + +## [v1.12.0](https://github.com/inspect-js/object-inspect/compare/v1.11.1...v1.12.0) - 2021-12-18 + +### Commits + +- [New] add `numericSeparator` boolean option [`2d2d537`](https://github.com/inspect-js/object-inspect/commit/2d2d537f5359a4300ce1c10241369f8024f89e11) +- [Robustness] cache more prototype methods [`191533d`](https://github.com/inspect-js/object-inspect/commit/191533da8aec98a05eadd73a5a6e979c9c8653e8) +- [New] ensure an Error’s `cause` is displayed [`53bc2ce`](https://github.com/inspect-js/object-inspect/commit/53bc2cee4e5a9cc4986f3cafa22c0685f340715e) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config` [`bc164b6`](https://github.com/inspect-js/object-inspect/commit/bc164b6e2e7d36b263970f16f54de63048b84a36) +- [Robustness] cache `RegExp.prototype.test` [`a314ab8`](https://github.com/inspect-js/object-inspect/commit/a314ab8271b905cbabc594c82914d2485a8daf12) +- [meta] fix auto-changelog settings [`5ed0983`](https://github.com/inspect-js/object-inspect/commit/5ed0983be72f73e32e2559997517a95525c7e20d) + +## [v1.11.1](https://github.com/inspect-js/object-inspect/compare/v1.11.0...v1.11.1) - 2021-12-05 + +### Commits + +- [meta] add `auto-changelog` [`7dbdd22`](https://github.com/inspect-js/object-inspect/commit/7dbdd228401d6025d8b7391476d88aee9ea9bbdf) +- [actions] reuse common workflows [`c8823bc`](https://github.com/inspect-js/object-inspect/commit/c8823bc0a8790729680709d45fb6e652432e91aa) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `safe-publish-latest`, `tape` [`7532b12`](https://github.com/inspect-js/object-inspect/commit/7532b120598307497b712890f75af8056f6d37a6) +- [Refactor] use `has-tostringtag` to behave correctly in the presence of symbol shams [`94abb5d`](https://github.com/inspect-js/object-inspect/commit/94abb5d4e745bf33253942dea86b3e538d2ff6c6) +- [actions] update codecov uploader [`5ed5102`](https://github.com/inspect-js/object-inspect/commit/5ed51025267a00e53b1341357315490ac4eb0874) +- [Dev Deps] update `eslint`, `tape` [`37b2ad2`](https://github.com/inspect-js/object-inspect/commit/37b2ad26c08d94bfd01d5d07069a0b28ef4e2ad7) +- [meta] add `sideEffects` flag [`d341f90`](https://github.com/inspect-js/object-inspect/commit/d341f905ef8bffa6a694cda6ddc5ba343532cd4f) + +## [v1.11.0](https://github.com/inspect-js/object-inspect/compare/v1.10.3...v1.11.0) - 2021-07-12 + +### Commits + +- [New] `customInspect`: add `symbol` option, to mimic modern util.inspect behavior [`e973a6e`](https://github.com/inspect-js/object-inspect/commit/e973a6e21f8140c5837cf25e9d89bdde88dc3120) +- [Dev Deps] update `eslint` [`05f1cb3`](https://github.com/inspect-js/object-inspect/commit/05f1cb3cbcfe1f238e8b51cf9bc294305b7ed793) + +## [v1.10.3](https://github.com/inspect-js/object-inspect/compare/v1.10.2...v1.10.3) - 2021-05-07 + +### Commits + +- [Fix] handle core-js Symbol shams [`4acfc2c`](https://github.com/inspect-js/object-inspect/commit/4acfc2c4b503498759120eb517abad6d51c9c5d6) +- [readme] update badges [`95c323a`](https://github.com/inspect-js/object-inspect/commit/95c323ad909d6cbabb95dd6015c190ba6db9c1f2) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud` [`cb38f48`](https://github.com/inspect-js/object-inspect/commit/cb38f485de6ec7a95109b5a9bbd0a1deba2f6611) + +## [v1.10.2](https://github.com/inspect-js/object-inspect/compare/v1.10.1...v1.10.2) - 2021-04-17 + +### Commits + +- [Fix] use a robust check for a boxed Symbol [`87f12d6`](https://github.com/inspect-js/object-inspect/commit/87f12d6e69ce530be04659c81a4cd502943acac5) + +## [v1.10.1](https://github.com/inspect-js/object-inspect/compare/v1.10.0...v1.10.1) - 2021-04-17 + +### Commits + +- [Fix] use a robust check for a boxed bigint [`d5ca829`](https://github.com/inspect-js/object-inspect/commit/d5ca8298b6d2e5c7b9334a5b21b96ed95d225c91) + +## [v1.10.0](https://github.com/inspect-js/object-inspect/compare/v1.9.0...v1.10.0) - 2021-04-17 + +### Commits + +- [Tests] increase coverage [`d8abb8a`](https://github.com/inspect-js/object-inspect/commit/d8abb8a62c2f084919df994a433b346e0d87a227) +- [actions] use `node/install` instead of `node/run`; use `codecov` action [`4bfec2e`](https://github.com/inspect-js/object-inspect/commit/4bfec2e30aaef6ddef6cbb1448306f9f8b9520b7) +- [New] respect `Symbol.toStringTag` on objects [`799b58f`](https://github.com/inspect-js/object-inspect/commit/799b58f536a45e4484633a8e9daeb0330835f175) +- [Fix] do not allow Symbol.toStringTag to masquerade as builtins [`d6c5b37`](https://github.com/inspect-js/object-inspect/commit/d6c5b37d7e94427796b82432fb0c8964f033a6ab) +- [New] add `WeakRef` support [`b6d898e`](https://github.com/inspect-js/object-inspect/commit/b6d898ee21868c780a7ee66b28532b5b34ed7f09) +- [meta] do not publish github action workflow files [`918cdfc`](https://github.com/inspect-js/object-inspect/commit/918cdfc4b6fe83f559ff6ef04fe66201e3ff5cbd) +- [meta] create `FUNDING.yml` [`0bb5fc5`](https://github.com/inspect-js/object-inspect/commit/0bb5fc516dbcd2cd728bd89cee0b580acc5ce301) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `tape` [`22c8dc0`](https://github.com/inspect-js/object-inspect/commit/22c8dc0cac113d70f4781e49a950070923a671be) +- [meta] use `prepublishOnly` script for npm 7+ [`e52ee09`](https://github.com/inspect-js/object-inspect/commit/e52ee09e8050b8dbac94ef57f786675567728223) +- [Dev Deps] update `eslint` [`7c4e6fd`](https://github.com/inspect-js/object-inspect/commit/7c4e6fdedcd27cc980e13c9ad834d05a96f3d40c) + +## [v1.9.0](https://github.com/inspect-js/object-inspect/compare/v1.8.0...v1.9.0) - 2020-11-30 + +### Commits + +- [Tests] migrate tests to Github Actions [`d262251`](https://github.com/inspect-js/object-inspect/commit/d262251e13e16d3490b5473672f6b6d6ff86675d) +- [New] add enumerable own Symbols to plain object output [`ee60c03`](https://github.com/inspect-js/object-inspect/commit/ee60c033088cff9d33baa71e59a362a541b48284) +- [Tests] add passing tests [`01ac3e4`](https://github.com/inspect-js/object-inspect/commit/01ac3e4b5a30f97875a63dc9b1416b3bd626afc9) +- [actions] add "Require Allow Edits" action [`c2d7746`](https://github.com/inspect-js/object-inspect/commit/c2d774680cde4ca4af332d84d4121b26f798ba9e) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `core-js` [`70058de`](https://github.com/inspect-js/object-inspect/commit/70058de1579fc54d1d15ed6c2dbe246637ce70ff) +- [Fix] hex characters in strings should be uppercased, to match node `assert` [`6ab8faa`](https://github.com/inspect-js/object-inspect/commit/6ab8faaa0abc08fe7a8e2afd8b39c6f1f0e00113) +- [Tests] run `nyc` on all tests [`4c47372`](https://github.com/inspect-js/object-inspect/commit/4c473727879ddc8e28b599202551ddaaf07b6210) +- [Tests] node 0.8 has an unpredictable property order; fix `groups` test by removing property [`f192069`](https://github.com/inspect-js/object-inspect/commit/f192069a978a3b60e6f0e0d45ac7df260ab9a778) +- [New] add enumerable properties to Function inspect result, per node’s `assert` [`fd38e1b`](https://github.com/inspect-js/object-inspect/commit/fd38e1bc3e2a1dc82091ce3e021917462eee64fc) +- [Tests] fix tests for node < 10, due to regex match `groups` [`2ac6462`](https://github.com/inspect-js/object-inspect/commit/2ac6462cc4f72eaa0b63a8cfee9aabe3008b2330) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config` [`44b59e2`](https://github.com/inspect-js/object-inspect/commit/44b59e2676a7f825ef530dfd19dafb599e3b9456) +- [Robustness] cache `Symbol.prototype.toString` [`f3c2074`](https://github.com/inspect-js/object-inspect/commit/f3c2074d8f32faf8292587c07c9678ea931703dd) +- [Dev Deps] update `eslint` [`9411294`](https://github.com/inspect-js/object-inspect/commit/94112944b9245e3302e25453277876402d207e7f) +- [meta] `require-allow-edits` no longer requires an explicit github token [`36c0220`](https://github.com/inspect-js/object-inspect/commit/36c02205de3c2b0e84d53777c5c9fd54a36c48ab) +- [actions] update rebase checkout action to v2 [`55a39a6`](https://github.com/inspect-js/object-inspect/commit/55a39a64e944f19c6a7d8efddf3df27700f20d14) +- [actions] switch Automatic Rebase workflow to `pull_request_target` event [`f59fd3c`](https://github.com/inspect-js/object-inspect/commit/f59fd3cf406c3a7c7ece140904a80bbc6bacfcca) +- [Dev Deps] update `eslint` [`a492bec`](https://github.com/inspect-js/object-inspect/commit/a492becec644b0155c9c4bc1caf6f9fac11fb2c7) + +## [v1.8.0](https://github.com/inspect-js/object-inspect/compare/v1.7.0...v1.8.0) - 2020-06-18 + +### Fixed + +- [New] add `indent` option [`#27`](https://github.com/inspect-js/object-inspect/issues/27) + +### Commits + +- [Tests] add codecov [`4324cbb`](https://github.com/inspect-js/object-inspect/commit/4324cbb1a2bd7710822a4151ff373570db22453e) +- [New] add `maxStringLength` option [`b3995cb`](https://github.com/inspect-js/object-inspect/commit/b3995cb71e15b5ee127a3094c43994df9d973502) +- [New] add `customInspect` option, to disable custom inspect methods [`28b9179`](https://github.com/inspect-js/object-inspect/commit/28b9179ee802bb3b90810100c11637db90c2fb6d) +- [Tests] add Date and RegExp tests [`3b28eca`](https://github.com/inspect-js/object-inspect/commit/3b28eca57b0367aeadffac604ea09e8bdae7d97b) +- [actions] add automatic rebasing / merge commit blocking [`0d9c6c0`](https://github.com/inspect-js/object-inspect/commit/0d9c6c044e83475ff0bfffb9d35b149834c83a2e) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `core-js`, `tape`; add `aud` [`7c204f2`](https://github.com/inspect-js/object-inspect/commit/7c204f22b9e41bc97147f4d32d4cb045b17769a6) +- [readme] fix repo URLs, remove testling [`34ca9a0`](https://github.com/inspect-js/object-inspect/commit/34ca9a0dabfe75bd311f806a326fadad029909a3) +- [Fix] when truncating a deep array, note it as `[Array]` instead of just `[Object]` [`f74c82d`](https://github.com/inspect-js/object-inspect/commit/f74c82dd0b35386445510deb250f34c41be3ec0e) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `tape` [`1a8a5ea`](https://github.com/inspect-js/object-inspect/commit/1a8a5ea069ea2bee89d77caedad83ffa23d35711) +- [Fix] do not be fooled by a function’s own `toString` method [`7cb5c65`](https://github.com/inspect-js/object-inspect/commit/7cb5c657a976f94715c19c10556a30f15bb7d5d7) +- [patch] indicate explicitly that anon functions are anonymous, to match node [`81ebdd4`](https://github.com/inspect-js/object-inspect/commit/81ebdd4215005144074bbdff3f6bafa01407910a) +- [Dev Deps] loosen the `core-js` dep [`e7472e8`](https://github.com/inspect-js/object-inspect/commit/e7472e8e242117670560bd995830c2a4d12080f5) +- [Dev Deps] update `tape` [`699827e`](https://github.com/inspect-js/object-inspect/commit/699827e6b37258b5203c33c78c009bf4b0e6a66d) +- [meta] add `safe-publish-latest` [`c5d2868`](https://github.com/inspect-js/object-inspect/commit/c5d2868d6eb33c472f37a20f89ceef2787046088) +- [Dev Deps] update `@ljharb/eslint-config` [`9199501`](https://github.com/inspect-js/object-inspect/commit/919950195d486114ccebacbdf9d74d7f382693b0) + +## [v1.7.0](https://github.com/inspect-js/object-inspect/compare/v1.6.0...v1.7.0) - 2019-11-10 + +### Commits + +- [Tests] use shared travis-ci configs [`19899ed`](https://github.com/inspect-js/object-inspect/commit/19899edbf31f4f8809acf745ce34ad1ce1bfa63b) +- [Tests] add linting [`a00f057`](https://github.com/inspect-js/object-inspect/commit/a00f057d917f66ea26dd37769c6b810ec4af97e8) +- [Tests] lint last file [`2698047`](https://github.com/inspect-js/object-inspect/commit/2698047b58af1e2e88061598ef37a75f228dddf6) +- [Tests] up to `node` `v12.7`, `v11.15`, `v10.16`, `v8.16`, `v6.17` [`589e87a`](https://github.com/inspect-js/object-inspect/commit/589e87a99cadcff4b600e6a303418e9d922836e8) +- [New] add support for `WeakMap` and `WeakSet` [`3ddb3e4`](https://github.com/inspect-js/object-inspect/commit/3ddb3e4e0c8287130c61a12e0ed9c104b1549306) +- [meta] clean up license so github can detect it properly [`27527bb`](https://github.com/inspect-js/object-inspect/commit/27527bb801520c9610c68cc3b55d6f20a2bee56d) +- [Tests] cover `util.inspect.custom` [`36d47b9`](https://github.com/inspect-js/object-inspect/commit/36d47b9c59056a57ef2f1491602c726359561800) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `core-js`, `tape` [`b614eaa`](https://github.com/inspect-js/object-inspect/commit/b614eaac901da0e5c69151f534671f990a94cace) +- [Tests] fix coverage thresholds [`7b7b176`](https://github.com/inspect-js/object-inspect/commit/7b7b176e15f8bd6e8b2f261ff5a493c2fe78d9c2) +- [Tests] bigint tests now can run on unflagged node [`063af31`](https://github.com/inspect-js/object-inspect/commit/063af31ce9cd13c202e3b67c07ba06dc9b7c0f81) +- [Refactor] add early bailout to `isMap` and `isSet` checks [`fc51047`](https://github.com/inspect-js/object-inspect/commit/fc5104714a3671d37e225813db79470d6335683b) +- [meta] add `funding` field [`7f9953a`](https://github.com/inspect-js/object-inspect/commit/7f9953a113eec7b064a6393cf9f90ba15f1d131b) +- [Tests] Fix invalid strict-mode syntax with hexadecimal [`a8b5425`](https://github.com/inspect-js/object-inspect/commit/a8b542503b4af1599a275209a1a99f5fdedb1ead) +- [Dev Deps] update `@ljharb/eslint-config` [`98df157`](https://github.com/inspect-js/object-inspect/commit/98df1577314d9188a3fc3f17fdcf2fba697ae1bd) +- add copyright to LICENSE [`bb69fd0`](https://github.com/inspect-js/object-inspect/commit/bb69fd017a062d299e44da1f9b2c7dcd67f621e6) +- [Tests] use `npx aud` in `posttest` [`4838353`](https://github.com/inspect-js/object-inspect/commit/4838353593974cf7f905b9ef04c03c094f0cdbe2) +- [Tests] move `0.6` to allowed failures, because it won‘t build on travis [`1bff32a`](https://github.com/inspect-js/object-inspect/commit/1bff32aa52e8aea687f0856b28ba754b3e43ebf7) + +## [v1.6.0](https://github.com/inspect-js/object-inspect/compare/v1.5.0...v1.6.0) - 2018-05-02 + +### Commits + +- [New] add support for boxed BigInt primitives [`356c66a`](https://github.com/inspect-js/object-inspect/commit/356c66a410e7aece7162c8319880a5ef647beaa9) +- [Tests] up to `node` `v10.0`, `v9.11`, `v8.11`, `v6.14`, `v4.9` [`c77b65b`](https://github.com/inspect-js/object-inspect/commit/c77b65bba593811b906b9ec57561c5cba92e2db3) +- [New] Add support for upcoming `BigInt` [`1ac548e`](https://github.com/inspect-js/object-inspect/commit/1ac548e4b27e26466c28c9a5e63e5d4e0591c31f) +- [Tests] run bigint tests in CI with --harmony-bigint flag [`d31b738`](https://github.com/inspect-js/object-inspect/commit/d31b73831880254b5c6cf5691cda9a149fbc5f04) +- [Dev Deps] update `core-js`, `tape` [`ff9eff6`](https://github.com/inspect-js/object-inspect/commit/ff9eff67113341ee1aaf80c1c22d683f43bfbccf) +- [Docs] fix example to use `safer-buffer` [`48cae12`](https://github.com/inspect-js/object-inspect/commit/48cae12a73ec6cacc955175bc56bbe6aee6a211f) + +## [v1.5.0](https://github.com/inspect-js/object-inspect/compare/v1.4.1...v1.5.0) - 2017-12-25 + +### Commits + +- [New] add `quoteStyle` option [`f5a72d2`](https://github.com/inspect-js/object-inspect/commit/f5a72d26edb3959b048f74c056ca7100a6b091e4) +- [Tests] add more test coverage [`30ebe4e`](https://github.com/inspect-js/object-inspect/commit/30ebe4e1fa943b99ecbb85be7614256d536e2759) +- [Tests] require 0.6 to pass [`99a008c`](https://github.com/inspect-js/object-inspect/commit/99a008ccace189a60fd7da18bf00e32c9572b980) + +## [v1.4.1](https://github.com/inspect-js/object-inspect/compare/v1.4.0...v1.4.1) - 2017-12-19 + +### Commits + +- [Tests] up to `node` `v9.3`, `v8.9`, `v6.12` [`6674476`](https://github.com/inspect-js/object-inspect/commit/6674476cc56acaac1bde96c84fed5ef631911906) +- [Fix] `inspect(Object(-0))` should be “Object(-0)”, not “Object(0)” [`d0a031f`](https://github.com/inspect-js/object-inspect/commit/d0a031f1cbb3024ee9982bfe364dd18a7e4d1bd3) + +## [v1.4.0](https://github.com/inspect-js/object-inspect/compare/v1.3.0...v1.4.0) - 2017-10-24 + +### Commits + +- [Tests] add `npm run coverage` [`3b48fb2`](https://github.com/inspect-js/object-inspect/commit/3b48fb25db037235eeb808f0b2830aad7aa36f70) +- [Tests] remove commented-out osx builds [`71e24db`](https://github.com/inspect-js/object-inspect/commit/71e24db8ad6ee3b9b381c5300b0475f2ba595a73) +- [New] add support for `util.inspect.custom`, in node only. [`20cca77`](https://github.com/inspect-js/object-inspect/commit/20cca7762d7e17f15b21a90793dff84acce155df) +- [Tests] up to `node` `v8.6`; use `nvm install-latest-npm` to ensure new npm doesn’t break old node [`252952d`](https://github.com/inspect-js/object-inspect/commit/252952d230d8065851dd3d4d5fe8398aae068529) +- [Tests] up to `node` `v8.8` [`4aa868d`](https://github.com/inspect-js/object-inspect/commit/4aa868d3a62914091d489dd6ec6eed194ee67cd3) +- [Dev Deps] update `core-js`, `tape` [`59483d1`](https://github.com/inspect-js/object-inspect/commit/59483d1df418f852f51fa0db7b24aa6b0209a27a) + +## [v1.3.0](https://github.com/inspect-js/object-inspect/compare/v1.2.2...v1.3.0) - 2017-07-31 + +### Fixed + +- [Fix] Map/Set: work around core-js bug < v2.5.0 [`#9`](https://github.com/inspect-js/object-inspect/issues/9) + +### Commits + +- [New] add support for arrays with additional object keys [`0d19937`](https://github.com/inspect-js/object-inspect/commit/0d199374ee37959e51539616666f420ccb29acb9) +- [Tests] up to `node` `v8.2`, `v7.10`, `v6.11`; fix new npm breaking on older nodes [`e24784a`](https://github.com/inspect-js/object-inspect/commit/e24784a90c49117787157a12a63897c49cf89bbb) +- Only apps should have lockfiles [`c6faebc`](https://github.com/inspect-js/object-inspect/commit/c6faebcb2ee486a889a4a1c4d78c0776c7576185) +- [Dev Deps] update `tape` [`7345a0a`](https://github.com/inspect-js/object-inspect/commit/7345a0aeba7e91b888a079c10004d17696a7f586) + +## [v1.2.2](https://github.com/inspect-js/object-inspect/compare/v1.2.1...v1.2.2) - 2017-03-24 + +### Commits + +- [Tests] up to `node` `v7.7`, `v6.10`, `v4.8`; improve test matrix [`a2ddc15`](https://github.com/inspect-js/object-inspect/commit/a2ddc15a1f2c65af18076eea1c0eb9cbceb478a0) +- [Tests] up to `node` `v7.0`, `v6.9`, `v5.12`, `v4.6`, `io.js` `v3.3`; improve test matrix [`a48949f`](https://github.com/inspect-js/object-inspect/commit/a48949f6b574b2d4d2298109d8e8d0eb3e7a83e7) +- [Performance] check for primitive types as early as possible. [`3b8092a`](https://github.com/inspect-js/object-inspect/commit/3b8092a2a4deffd0575f94334f00194e2d48dad3) +- [Refactor] remove unneeded `else`s. [`7255034`](https://github.com/inspect-js/object-inspect/commit/725503402e08de4f96f6bf2d8edef44ac36f26b6) +- [Refactor] avoid recreating `lowbyte` function every time. [`81edd34`](https://github.com/inspect-js/object-inspect/commit/81edd3475bd15bdd18e84de7472033dcf5004aaa) +- [Fix] differentiate -0 from 0 [`521d345`](https://github.com/inspect-js/object-inspect/commit/521d3456b009da7bf1c5785c8a9df5a9f8718264) +- [Refactor] move object key gathering into separate function [`aca6265`](https://github.com/inspect-js/object-inspect/commit/aca626536eaeef697196c6e9db3e90e7e0355b6a) +- [Refactor] consolidate wrapping logic for boxed primitives into a function. [`4e440cd`](https://github.com/inspect-js/object-inspect/commit/4e440cd9065df04802a2a1dead03f48c353ca301) +- [Robustness] use `typeof` instead of comparing to literal `undefined` [`5ca6f60`](https://github.com/inspect-js/object-inspect/commit/5ca6f601937506daff8ed2fcf686363b55807b69) +- [Refactor] consolidate Map/Set notations. [`4e576e5`](https://github.com/inspect-js/object-inspect/commit/4e576e5d7ed2f9ec3fb7f37a0d16732eb10758a9) +- [Tests] ensure that this function remains anonymous, despite ES6 name inference. [`7540ae5`](https://github.com/inspect-js/object-inspect/commit/7540ae591278756db614fa4def55ca413150e1a3) +- [Refactor] explicitly coerce Error objects to strings. [`7f4ca84`](https://github.com/inspect-js/object-inspect/commit/7f4ca8424ee8dc2c0ca5a422d94f7fac40327261) +- [Refactor] split up `var` declarations for debuggability [`6f2c11e`](https://github.com/inspect-js/object-inspect/commit/6f2c11e6a85418586a00292dcec5e97683f89bc3) +- [Robustness] cache `Object.prototype.toString` [`df44a20`](https://github.com/inspect-js/object-inspect/commit/df44a20adfccf31529d60d1df2079bfc3c836e27) +- [Dev Deps] update `tape` [`3ec714e`](https://github.com/inspect-js/object-inspect/commit/3ec714eba57bc3f58a6eb4fca1376f49e70d300a) +- [Dev Deps] update `tape` [`beb72d9`](https://github.com/inspect-js/object-inspect/commit/beb72d969653747d7cde300393c28755375329b0) + +## [v1.2.1](https://github.com/inspect-js/object-inspect/compare/v1.2.0...v1.2.1) - 2016-04-09 + +### Fixed + +- [Fix] fix Boolean `false` object inspection. [`#7`](https://github.com/substack/object-inspect/pull/7) + +## [v1.2.0](https://github.com/inspect-js/object-inspect/compare/v1.1.0...v1.2.0) - 2016-04-09 + +### Fixed + +- [New] add support for inspecting String/Number/Boolean objects. [`#6`](https://github.com/inspect-js/object-inspect/issues/6) + +### Commits + +- [Dev Deps] update `tape` [`742caa2`](https://github.com/inspect-js/object-inspect/commit/742caa262cf7af4c815d4821c8bd0129c1446432) + +## [v1.1.0](https://github.com/inspect-js/object-inspect/compare/1.0.2...v1.1.0) - 2015-12-14 + +### Merged + +- [New] add ES6 Map/Set support. [`#4`](https://github.com/inspect-js/object-inspect/pull/4) + +### Fixed + +- [New] add ES6 Map/Set support. [`#3`](https://github.com/inspect-js/object-inspect/issues/3) + +### Commits + +- Update `travis.yml` to test on bunches of `iojs` and `node` versions. [`4c1fd65`](https://github.com/inspect-js/object-inspect/commit/4c1fd65cc3bd95307e854d114b90478324287fd2) +- [Dev Deps] update `tape` [`88a907e`](https://github.com/inspect-js/object-inspect/commit/88a907e33afbe408e4b5d6e4e42a33143f88848c) + +## [1.0.2](https://github.com/inspect-js/object-inspect/compare/1.0.1...1.0.2) - 2015-08-07 + +### Commits + +- [Fix] Cache `Object.prototype.hasOwnProperty` in case it's deleted later. [`1d0075d`](https://github.com/inspect-js/object-inspect/commit/1d0075d3091dc82246feeb1f9871cb2b8ed227b3) +- [Dev Deps] Update `tape` [`ca8d5d7`](https://github.com/inspect-js/object-inspect/commit/ca8d5d75635ddbf76f944e628267581e04958457) +- gitignore node_modules since this is a reusable modules. [`ed41407`](https://github.com/inspect-js/object-inspect/commit/ed41407811743ca530cdeb28f982beb96026af82) + +## [1.0.1](https://github.com/inspect-js/object-inspect/compare/1.0.0...1.0.1) - 2015-07-19 + +### Commits + +- Make `inspect` work with symbol primitives and objects, including in node 0.11 and 0.12. [`ddf1b94`](https://github.com/inspect-js/object-inspect/commit/ddf1b94475ab951f1e3bccdc0a48e9073cfbfef4) +- bump tape [`103d674`](https://github.com/inspect-js/object-inspect/commit/103d67496b504bdcfdd765d303a773f87ec106e2) +- use newer travis config [`d497276`](https://github.com/inspect-js/object-inspect/commit/d497276c1da14234bb5098a59cf20de75fbc316a) + +## [1.0.0](https://github.com/inspect-js/object-inspect/compare/0.4.0...1.0.0) - 2014-08-05 + +### Commits + +- error inspect works properly [`260a22d`](https://github.com/inspect-js/object-inspect/commit/260a22d134d3a8a482c67d52091c6040c34f4299) +- seen coverage [`57269e8`](https://github.com/inspect-js/object-inspect/commit/57269e8baa992a7439047f47325111fdcbcb8417) +- htmlelement instance coverage [`397ffe1`](https://github.com/inspect-js/object-inspect/commit/397ffe10a1980350868043ef9de65686d438979f) +- more element coverage [`6905cc2`](https://github.com/inspect-js/object-inspect/commit/6905cc2f7df35600177e613b0642b4df5efd3eca) +- failing test for type errors [`385b615`](https://github.com/inspect-js/object-inspect/commit/385b6152e49b51b68449a662f410b084ed7c601a) +- fn name coverage [`edc906d`](https://github.com/inspect-js/object-inspect/commit/edc906d40fca6b9194d304062c037ee8e398c4c2) +- server-side element test [`362d1d3`](https://github.com/inspect-js/object-inspect/commit/362d1d3e86f187651c29feeb8478110afada385b) +- custom inspect fn [`e89b0f6`](https://github.com/inspect-js/object-inspect/commit/e89b0f6fe6d5e03681282af83732a509160435a6) +- fixed browser test [`b530882`](https://github.com/inspect-js/object-inspect/commit/b5308824a1c8471c5617e394766a03a6977102a9) +- depth test, matches node [`1cfd9e0`](https://github.com/inspect-js/object-inspect/commit/1cfd9e0285a4ae1dff44101ad482915d9bf47e48) +- exercise hasOwnProperty path [`8d753fb`](https://github.com/inspect-js/object-inspect/commit/8d753fb362a534fa1106e4d80f2ee9bea06a66d9) +- more cases covered for errors [`c5c46a5`](https://github.com/inspect-js/object-inspect/commit/c5c46a569ec4606583497e8550f0d8c7ad39a4a4) +- \W obj key test case [`b0eceee`](https://github.com/inspect-js/object-inspect/commit/b0eceeea6e0eb94d686c1046e99b9e25e5005f75) +- coverage for explicit depth param [`e12b91c`](https://github.com/inspect-js/object-inspect/commit/e12b91cd59683362f3a0e80f46481a0211e26c15) + +## [0.4.0](https://github.com/inspect-js/object-inspect/compare/0.3.1...0.4.0) - 2014-03-21 + +### Commits + +- passing lowbyte interpolation test [`b847511`](https://github.com/inspect-js/object-inspect/commit/b8475114f5def7e7961c5353d48d3d8d9a520985) +- lowbyte test [`4a2b0e1`](https://github.com/inspect-js/object-inspect/commit/4a2b0e142667fc933f195472759385ac08f3946c) + +## [0.3.1](https://github.com/inspect-js/object-inspect/compare/0.3.0...0.3.1) - 2014-03-04 + +### Commits + +- sort keys [`a07b19c`](https://github.com/inspect-js/object-inspect/commit/a07b19cc3b1521a82d4fafb6368b7a9775428a05) + +## [0.3.0](https://github.com/inspect-js/object-inspect/compare/0.2.0...0.3.0) - 2014-03-04 + +### Commits + +- [] and {} instead of [ ] and { } [`654c44b`](https://github.com/inspect-js/object-inspect/commit/654c44b2865811f3519e57bb8526e0821caf5c6b) + +## [0.2.0](https://github.com/inspect-js/object-inspect/compare/0.1.3...0.2.0) - 2014-03-04 + +### Commits + +- failing holes test [`99cdfad`](https://github.com/inspect-js/object-inspect/commit/99cdfad03c6474740275a75636fe6ca86c77737a) +- regex already work [`e324033`](https://github.com/inspect-js/object-inspect/commit/e324033267025995ec97d32ed0a65737c99477a6) +- failing undef/null test [`1f88a00`](https://github.com/inspect-js/object-inspect/commit/1f88a00265d3209719dda8117b7e6360b4c20943) +- holes in the all example [`7d345f3`](https://github.com/inspect-js/object-inspect/commit/7d345f3676dcbe980cff89a4f6c243269ebbb709) +- check for .inspect(), fixes Buffer use-case [`c3f7546`](https://github.com/inspect-js/object-inspect/commit/c3f75466dbca125347d49847c05262c292f12b79) +- fixes for holes [`ce25f73`](https://github.com/inspect-js/object-inspect/commit/ce25f736683de4b92ff27dc5471218415e2d78d8) +- weird null behavior [`405c1ea`](https://github.com/inspect-js/object-inspect/commit/405c1ea72cd5a8cf3b498c3eaa903d01b9fbcab5) +- tape is actually a devDependency, upgrade [`703b0ce`](https://github.com/inspect-js/object-inspect/commit/703b0ce6c5817b4245a082564bccd877e0bb6990) +- put date in the example [`a342219`](https://github.com/inspect-js/object-inspect/commit/a3422190eeaa013215f46df2d0d37b48595ac058) +- passing the null test [`4ab737e`](https://github.com/inspect-js/object-inspect/commit/4ab737ebf862a75d247ebe51e79307a34d6380d4) + +## [0.1.3](https://github.com/inspect-js/object-inspect/compare/0.1.1...0.1.3) - 2013-07-26 + +### Commits + +- special isElement() check [`882768a`](https://github.com/inspect-js/object-inspect/commit/882768a54035d30747be9de1baf14e5aa0daa128) +- oh right old IEs don't have indexOf either [`36d1275`](https://github.com/inspect-js/object-inspect/commit/36d12756c38b08a74370b0bb696c809e529913a5) + +## [0.1.1](https://github.com/inspect-js/object-inspect/compare/0.1.0...0.1.1) - 2013-07-26 + +### Commits + +- tests! [`4422fd9`](https://github.com/inspect-js/object-inspect/commit/4422fd95532c2745aa6c4f786f35f1090be29998) +- fix for ie<9, doesn't have hasOwnProperty [`6b7d611`](https://github.com/inspect-js/object-inspect/commit/6b7d61183050f6da801ea04473211da226482613) +- fix for all IEs: no f.name [`4e0c2f6`](https://github.com/inspect-js/object-inspect/commit/4e0c2f6dfd01c306d067d7163319acc97c94ee50) +- badges [`5ed0d88`](https://github.com/inspect-js/object-inspect/commit/5ed0d88e4e407f9cb327fa4a146c17921f9680f3) + +## [0.1.0](https://github.com/inspect-js/object-inspect/compare/0.0.0...0.1.0) - 2013-07-26 + +### Commits + +- [Function] for functions [`ad5c485`](https://github.com/inspect-js/object-inspect/commit/ad5c485098fc83352cb540a60b2548ca56820e0b) + +## 0.0.0 - 2013-07-26 + +### Commits + +- working browser example [`34be6b6`](https://github.com/inspect-js/object-inspect/commit/34be6b6548f9ce92bdc3c27572857ba0c4a1218d) +- package.json etc [`cad51f2`](https://github.com/inspect-js/object-inspect/commit/cad51f23fc6bcf1a456ed6abe16088256c2f632f) +- docs complete [`b80cce2`](https://github.com/inspect-js/object-inspect/commit/b80cce2490c4e7183a9ee11ea89071f0abec4446) +- circular example [`4b4a7b9`](https://github.com/inspect-js/object-inspect/commit/4b4a7b92209e4e6b4630976cb6bcd17d14165a59) +- string rep [`7afb479`](https://github.com/inspect-js/object-inspect/commit/7afb479baa798d27f09e0a178b72ea327f60f5c8) diff --git a/node_modules/object-inspect/LICENSE b/node_modules/object-inspect/LICENSE new file mode 100644 index 000000000..ca64cc1e6 --- /dev/null +++ b/node_modules/object-inspect/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2013 James Halliday + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/node_modules/object-inspect/example/all.js b/node_modules/object-inspect/example/all.js new file mode 100644 index 000000000..2f3355c50 --- /dev/null +++ b/node_modules/object-inspect/example/all.js @@ -0,0 +1,23 @@ +'use strict'; + +var inspect = require('../'); +var Buffer = require('safer-buffer').Buffer; + +var holes = ['a', 'b']; +holes[4] = 'e'; +holes[6] = 'g'; + +var obj = { + a: 1, + b: [3, 4, undefined, null], + c: undefined, + d: null, + e: { + regex: /^x/i, + buf: Buffer.from('abc'), + holes: holes + }, + now: new Date() +}; +obj.self = obj; +console.log(inspect(obj)); diff --git a/node_modules/object-inspect/example/circular.js b/node_modules/object-inspect/example/circular.js new file mode 100644 index 000000000..487a7c169 --- /dev/null +++ b/node_modules/object-inspect/example/circular.js @@ -0,0 +1,6 @@ +'use strict'; + +var inspect = require('../'); +var obj = { a: 1, b: [3, 4] }; +obj.c = obj; +console.log(inspect(obj)); diff --git a/node_modules/object-inspect/example/fn.js b/node_modules/object-inspect/example/fn.js new file mode 100644 index 000000000..9b5db8de0 --- /dev/null +++ b/node_modules/object-inspect/example/fn.js @@ -0,0 +1,5 @@ +'use strict'; + +var inspect = require('../'); +var obj = [1, 2, function f(n) { return n + 5; }, 4]; +console.log(inspect(obj)); diff --git a/node_modules/object-inspect/example/inspect.js b/node_modules/object-inspect/example/inspect.js new file mode 100644 index 000000000..e2df7c9f4 --- /dev/null +++ b/node_modules/object-inspect/example/inspect.js @@ -0,0 +1,10 @@ +'use strict'; + +/* eslint-env browser */ +var inspect = require('../'); + +var d = document.createElement('div'); +d.setAttribute('id', 'beep'); +d.innerHTML = 'woooiiiii'; + +console.log(inspect([d, { a: 3, b: 4, c: [5, 6, [7, [8, [9]]]] }])); diff --git a/node_modules/object-inspect/index.js b/node_modules/object-inspect/index.js new file mode 100644 index 000000000..7ab98a688 --- /dev/null +++ b/node_modules/object-inspect/index.js @@ -0,0 +1,512 @@ +var hasMap = typeof Map === 'function' && Map.prototype; +var mapSizeDescriptor = Object.getOwnPropertyDescriptor && hasMap ? Object.getOwnPropertyDescriptor(Map.prototype, 'size') : null; +var mapSize = hasMap && mapSizeDescriptor && typeof mapSizeDescriptor.get === 'function' ? mapSizeDescriptor.get : null; +var mapForEach = hasMap && Map.prototype.forEach; +var hasSet = typeof Set === 'function' && Set.prototype; +var setSizeDescriptor = Object.getOwnPropertyDescriptor && hasSet ? Object.getOwnPropertyDescriptor(Set.prototype, 'size') : null; +var setSize = hasSet && setSizeDescriptor && typeof setSizeDescriptor.get === 'function' ? setSizeDescriptor.get : null; +var setForEach = hasSet && Set.prototype.forEach; +var hasWeakMap = typeof WeakMap === 'function' && WeakMap.prototype; +var weakMapHas = hasWeakMap ? WeakMap.prototype.has : null; +var hasWeakSet = typeof WeakSet === 'function' && WeakSet.prototype; +var weakSetHas = hasWeakSet ? WeakSet.prototype.has : null; +var hasWeakRef = typeof WeakRef === 'function' && WeakRef.prototype; +var weakRefDeref = hasWeakRef ? WeakRef.prototype.deref : null; +var booleanValueOf = Boolean.prototype.valueOf; +var objectToString = Object.prototype.toString; +var functionToString = Function.prototype.toString; +var $match = String.prototype.match; +var $slice = String.prototype.slice; +var $replace = String.prototype.replace; +var $toUpperCase = String.prototype.toUpperCase; +var $toLowerCase = String.prototype.toLowerCase; +var $test = RegExp.prototype.test; +var $concat = Array.prototype.concat; +var $join = Array.prototype.join; +var $arrSlice = Array.prototype.slice; +var $floor = Math.floor; +var bigIntValueOf = typeof BigInt === 'function' ? BigInt.prototype.valueOf : null; +var gOPS = Object.getOwnPropertySymbols; +var symToString = typeof Symbol === 'function' && typeof Symbol.iterator === 'symbol' ? Symbol.prototype.toString : null; +var hasShammedSymbols = typeof Symbol === 'function' && typeof Symbol.iterator === 'object'; +// ie, `has-tostringtag/shams +var toStringTag = typeof Symbol === 'function' && Symbol.toStringTag && (typeof Symbol.toStringTag === hasShammedSymbols ? 'object' : 'symbol') + ? Symbol.toStringTag + : null; +var isEnumerable = Object.prototype.propertyIsEnumerable; + +var gPO = (typeof Reflect === 'function' ? Reflect.getPrototypeOf : Object.getPrototypeOf) || ( + [].__proto__ === Array.prototype // eslint-disable-line no-proto + ? function (O) { + return O.__proto__; // eslint-disable-line no-proto + } + : null +); + +function addNumericSeparator(num, str) { + if ( + num === Infinity + || num === -Infinity + || num !== num + || (num && num > -1000 && num < 1000) + || $test.call(/e/, str) + ) { + return str; + } + var sepRegex = /[0-9](?=(?:[0-9]{3})+(?![0-9]))/g; + if (typeof num === 'number') { + var int = num < 0 ? -$floor(-num) : $floor(num); // trunc(num) + if (int !== num) { + var intStr = String(int); + var dec = $slice.call(str, intStr.length + 1); + return $replace.call(intStr, sepRegex, '$&_') + '.' + $replace.call($replace.call(dec, /([0-9]{3})/g, '$&_'), /_$/, ''); + } + } + return $replace.call(str, sepRegex, '$&_'); +} + +var utilInspect = require('./util.inspect'); +var inspectCustom = utilInspect.custom; +var inspectSymbol = isSymbol(inspectCustom) ? inspectCustom : null; + +module.exports = function inspect_(obj, options, depth, seen) { + var opts = options || {}; + + if (has(opts, 'quoteStyle') && (opts.quoteStyle !== 'single' && opts.quoteStyle !== 'double')) { + throw new TypeError('option "quoteStyle" must be "single" or "double"'); + } + if ( + has(opts, 'maxStringLength') && (typeof opts.maxStringLength === 'number' + ? opts.maxStringLength < 0 && opts.maxStringLength !== Infinity + : opts.maxStringLength !== null + ) + ) { + throw new TypeError('option "maxStringLength", if provided, must be a positive integer, Infinity, or `null`'); + } + var customInspect = has(opts, 'customInspect') ? opts.customInspect : true; + if (typeof customInspect !== 'boolean' && customInspect !== 'symbol') { + throw new TypeError('option "customInspect", if provided, must be `true`, `false`, or `\'symbol\'`'); + } + + if ( + has(opts, 'indent') + && opts.indent !== null + && opts.indent !== '\t' + && !(parseInt(opts.indent, 10) === opts.indent && opts.indent > 0) + ) { + throw new TypeError('option "indent" must be "\\t", an integer > 0, or `null`'); + } + if (has(opts, 'numericSeparator') && typeof opts.numericSeparator !== 'boolean') { + throw new TypeError('option "numericSeparator", if provided, must be `true` or `false`'); + } + var numericSeparator = opts.numericSeparator; + + if (typeof obj === 'undefined') { + return 'undefined'; + } + if (obj === null) { + return 'null'; + } + if (typeof obj === 'boolean') { + return obj ? 'true' : 'false'; + } + + if (typeof obj === 'string') { + return inspectString(obj, opts); + } + if (typeof obj === 'number') { + if (obj === 0) { + return Infinity / obj > 0 ? '0' : '-0'; + } + var str = String(obj); + return numericSeparator ? addNumericSeparator(obj, str) : str; + } + if (typeof obj === 'bigint') { + var bigIntStr = String(obj) + 'n'; + return numericSeparator ? addNumericSeparator(obj, bigIntStr) : bigIntStr; + } + + var maxDepth = typeof opts.depth === 'undefined' ? 5 : opts.depth; + if (typeof depth === 'undefined') { depth = 0; } + if (depth >= maxDepth && maxDepth > 0 && typeof obj === 'object') { + return isArray(obj) ? '[Array]' : '[Object]'; + } + + var indent = getIndent(opts, depth); + + if (typeof seen === 'undefined') { + seen = []; + } else if (indexOf(seen, obj) >= 0) { + return '[Circular]'; + } + + function inspect(value, from, noIndent) { + if (from) { + seen = $arrSlice.call(seen); + seen.push(from); + } + if (noIndent) { + var newOpts = { + depth: opts.depth + }; + if (has(opts, 'quoteStyle')) { + newOpts.quoteStyle = opts.quoteStyle; + } + return inspect_(value, newOpts, depth + 1, seen); + } + return inspect_(value, opts, depth + 1, seen); + } + + if (typeof obj === 'function' && !isRegExp(obj)) { // in older engines, regexes are callable + var name = nameOf(obj); + var keys = arrObjKeys(obj, inspect); + return '[Function' + (name ? ': ' + name : ' (anonymous)') + ']' + (keys.length > 0 ? ' { ' + $join.call(keys, ', ') + ' }' : ''); + } + if (isSymbol(obj)) { + var symString = hasShammedSymbols ? $replace.call(String(obj), /^(Symbol\(.*\))_[^)]*$/, '$1') : symToString.call(obj); + return typeof obj === 'object' && !hasShammedSymbols ? markBoxed(symString) : symString; + } + if (isElement(obj)) { + var s = '<' + $toLowerCase.call(String(obj.nodeName)); + var attrs = obj.attributes || []; + for (var i = 0; i < attrs.length; i++) { + s += ' ' + attrs[i].name + '=' + wrapQuotes(quote(attrs[i].value), 'double', opts); + } + s += '>'; + if (obj.childNodes && obj.childNodes.length) { s += '...'; } + s += ''; + return s; + } + if (isArray(obj)) { + if (obj.length === 0) { return '[]'; } + var xs = arrObjKeys(obj, inspect); + if (indent && !singleLineValues(xs)) { + return '[' + indentedJoin(xs, indent) + ']'; + } + return '[ ' + $join.call(xs, ', ') + ' ]'; + } + if (isError(obj)) { + var parts = arrObjKeys(obj, inspect); + if (!('cause' in Error.prototype) && 'cause' in obj && !isEnumerable.call(obj, 'cause')) { + return '{ [' + String(obj) + '] ' + $join.call($concat.call('[cause]: ' + inspect(obj.cause), parts), ', ') + ' }'; + } + if (parts.length === 0) { return '[' + String(obj) + ']'; } + return '{ [' + String(obj) + '] ' + $join.call(parts, ', ') + ' }'; + } + if (typeof obj === 'object' && customInspect) { + if (inspectSymbol && typeof obj[inspectSymbol] === 'function' && utilInspect) { + return utilInspect(obj, { depth: maxDepth - depth }); + } else if (customInspect !== 'symbol' && typeof obj.inspect === 'function') { + return obj.inspect(); + } + } + if (isMap(obj)) { + var mapParts = []; + mapForEach.call(obj, function (value, key) { + mapParts.push(inspect(key, obj, true) + ' => ' + inspect(value, obj)); + }); + return collectionOf('Map', mapSize.call(obj), mapParts, indent); + } + if (isSet(obj)) { + var setParts = []; + setForEach.call(obj, function (value) { + setParts.push(inspect(value, obj)); + }); + return collectionOf('Set', setSize.call(obj), setParts, indent); + } + if (isWeakMap(obj)) { + return weakCollectionOf('WeakMap'); + } + if (isWeakSet(obj)) { + return weakCollectionOf('WeakSet'); + } + if (isWeakRef(obj)) { + return weakCollectionOf('WeakRef'); + } + if (isNumber(obj)) { + return markBoxed(inspect(Number(obj))); + } + if (isBigInt(obj)) { + return markBoxed(inspect(bigIntValueOf.call(obj))); + } + if (isBoolean(obj)) { + return markBoxed(booleanValueOf.call(obj)); + } + if (isString(obj)) { + return markBoxed(inspect(String(obj))); + } + if (!isDate(obj) && !isRegExp(obj)) { + var ys = arrObjKeys(obj, inspect); + var isPlainObject = gPO ? gPO(obj) === Object.prototype : obj instanceof Object || obj.constructor === Object; + var protoTag = obj instanceof Object ? '' : 'null prototype'; + var stringTag = !isPlainObject && toStringTag && Object(obj) === obj && toStringTag in obj ? $slice.call(toStr(obj), 8, -1) : protoTag ? 'Object' : ''; + var constructorTag = isPlainObject || typeof obj.constructor !== 'function' ? '' : obj.constructor.name ? obj.constructor.name + ' ' : ''; + var tag = constructorTag + (stringTag || protoTag ? '[' + $join.call($concat.call([], stringTag || [], protoTag || []), ': ') + '] ' : ''); + if (ys.length === 0) { return tag + '{}'; } + if (indent) { + return tag + '{' + indentedJoin(ys, indent) + '}'; + } + return tag + '{ ' + $join.call(ys, ', ') + ' }'; + } + return String(obj); +}; + +function wrapQuotes(s, defaultStyle, opts) { + var quoteChar = (opts.quoteStyle || defaultStyle) === 'double' ? '"' : "'"; + return quoteChar + s + quoteChar; +} + +function quote(s) { + return $replace.call(String(s), /"/g, '"'); +} + +function isArray(obj) { return toStr(obj) === '[object Array]' && (!toStringTag || !(typeof obj === 'object' && toStringTag in obj)); } +function isDate(obj) { return toStr(obj) === '[object Date]' && (!toStringTag || !(typeof obj === 'object' && toStringTag in obj)); } +function isRegExp(obj) { return toStr(obj) === '[object RegExp]' && (!toStringTag || !(typeof obj === 'object' && toStringTag in obj)); } +function isError(obj) { return toStr(obj) === '[object Error]' && (!toStringTag || !(typeof obj === 'object' && toStringTag in obj)); } +function isString(obj) { return toStr(obj) === '[object String]' && (!toStringTag || !(typeof obj === 'object' && toStringTag in obj)); } +function isNumber(obj) { return toStr(obj) === '[object Number]' && (!toStringTag || !(typeof obj === 'object' && toStringTag in obj)); } +function isBoolean(obj) { return toStr(obj) === '[object Boolean]' && (!toStringTag || !(typeof obj === 'object' && toStringTag in obj)); } + +// Symbol and BigInt do have Symbol.toStringTag by spec, so that can't be used to eliminate false positives +function isSymbol(obj) { + if (hasShammedSymbols) { + return obj && typeof obj === 'object' && obj instanceof Symbol; + } + if (typeof obj === 'symbol') { + return true; + } + if (!obj || typeof obj !== 'object' || !symToString) { + return false; + } + try { + symToString.call(obj); + return true; + } catch (e) {} + return false; +} + +function isBigInt(obj) { + if (!obj || typeof obj !== 'object' || !bigIntValueOf) { + return false; + } + try { + bigIntValueOf.call(obj); + return true; + } catch (e) {} + return false; +} + +var hasOwn = Object.prototype.hasOwnProperty || function (key) { return key in this; }; +function has(obj, key) { + return hasOwn.call(obj, key); +} + +function toStr(obj) { + return objectToString.call(obj); +} + +function nameOf(f) { + if (f.name) { return f.name; } + var m = $match.call(functionToString.call(f), /^function\s*([\w$]+)/); + if (m) { return m[1]; } + return null; +} + +function indexOf(xs, x) { + if (xs.indexOf) { return xs.indexOf(x); } + for (var i = 0, l = xs.length; i < l; i++) { + if (xs[i] === x) { return i; } + } + return -1; +} + +function isMap(x) { + if (!mapSize || !x || typeof x !== 'object') { + return false; + } + try { + mapSize.call(x); + try { + setSize.call(x); + } catch (s) { + return true; + } + return x instanceof Map; // core-js workaround, pre-v2.5.0 + } catch (e) {} + return false; +} + +function isWeakMap(x) { + if (!weakMapHas || !x || typeof x !== 'object') { + return false; + } + try { + weakMapHas.call(x, weakMapHas); + try { + weakSetHas.call(x, weakSetHas); + } catch (s) { + return true; + } + return x instanceof WeakMap; // core-js workaround, pre-v2.5.0 + } catch (e) {} + return false; +} + +function isWeakRef(x) { + if (!weakRefDeref || !x || typeof x !== 'object') { + return false; + } + try { + weakRefDeref.call(x); + return true; + } catch (e) {} + return false; +} + +function isSet(x) { + if (!setSize || !x || typeof x !== 'object') { + return false; + } + try { + setSize.call(x); + try { + mapSize.call(x); + } catch (m) { + return true; + } + return x instanceof Set; // core-js workaround, pre-v2.5.0 + } catch (e) {} + return false; +} + +function isWeakSet(x) { + if (!weakSetHas || !x || typeof x !== 'object') { + return false; + } + try { + weakSetHas.call(x, weakSetHas); + try { + weakMapHas.call(x, weakMapHas); + } catch (s) { + return true; + } + return x instanceof WeakSet; // core-js workaround, pre-v2.5.0 + } catch (e) {} + return false; +} + +function isElement(x) { + if (!x || typeof x !== 'object') { return false; } + if (typeof HTMLElement !== 'undefined' && x instanceof HTMLElement) { + return true; + } + return typeof x.nodeName === 'string' && typeof x.getAttribute === 'function'; +} + +function inspectString(str, opts) { + if (str.length > opts.maxStringLength) { + var remaining = str.length - opts.maxStringLength; + var trailer = '... ' + remaining + ' more character' + (remaining > 1 ? 's' : ''); + return inspectString($slice.call(str, 0, opts.maxStringLength), opts) + trailer; + } + // eslint-disable-next-line no-control-regex + var s = $replace.call($replace.call(str, /(['\\])/g, '\\$1'), /[\x00-\x1f]/g, lowbyte); + return wrapQuotes(s, 'single', opts); +} + +function lowbyte(c) { + var n = c.charCodeAt(0); + var x = { + 8: 'b', + 9: 't', + 10: 'n', + 12: 'f', + 13: 'r' + }[n]; + if (x) { return '\\' + x; } + return '\\x' + (n < 0x10 ? '0' : '') + $toUpperCase.call(n.toString(16)); +} + +function markBoxed(str) { + return 'Object(' + str + ')'; +} + +function weakCollectionOf(type) { + return type + ' { ? }'; +} + +function collectionOf(type, size, entries, indent) { + var joinedEntries = indent ? indentedJoin(entries, indent) : $join.call(entries, ', '); + return type + ' (' + size + ') {' + joinedEntries + '}'; +} + +function singleLineValues(xs) { + for (var i = 0; i < xs.length; i++) { + if (indexOf(xs[i], '\n') >= 0) { + return false; + } + } + return true; +} + +function getIndent(opts, depth) { + var baseIndent; + if (opts.indent === '\t') { + baseIndent = '\t'; + } else if (typeof opts.indent === 'number' && opts.indent > 0) { + baseIndent = $join.call(Array(opts.indent + 1), ' '); + } else { + return null; + } + return { + base: baseIndent, + prev: $join.call(Array(depth + 1), baseIndent) + }; +} + +function indentedJoin(xs, indent) { + if (xs.length === 0) { return ''; } + var lineJoiner = '\n' + indent.prev + indent.base; + return lineJoiner + $join.call(xs, ',' + lineJoiner) + '\n' + indent.prev; +} + +function arrObjKeys(obj, inspect) { + var isArr = isArray(obj); + var xs = []; + if (isArr) { + xs.length = obj.length; + for (var i = 0; i < obj.length; i++) { + xs[i] = has(obj, i) ? inspect(obj[i], obj) : ''; + } + } + var syms = typeof gOPS === 'function' ? gOPS(obj) : []; + var symMap; + if (hasShammedSymbols) { + symMap = {}; + for (var k = 0; k < syms.length; k++) { + symMap['$' + syms[k]] = syms[k]; + } + } + + for (var key in obj) { // eslint-disable-line no-restricted-syntax + if (!has(obj, key)) { continue; } // eslint-disable-line no-restricted-syntax, no-continue + if (isArr && String(Number(key)) === key && key < obj.length) { continue; } // eslint-disable-line no-restricted-syntax, no-continue + if (hasShammedSymbols && symMap['$' + key] instanceof Symbol) { + // this is to prevent shammed Symbols, which are stored as strings, from being included in the string key section + continue; // eslint-disable-line no-restricted-syntax, no-continue + } else if ($test.call(/[^\w$]/, key)) { + xs.push(inspect(key, obj) + ': ' + inspect(obj[key], obj)); + } else { + xs.push(key + ': ' + inspect(obj[key], obj)); + } + } + if (typeof gOPS === 'function') { + for (var j = 0; j < syms.length; j++) { + if (isEnumerable.call(obj, syms[j])) { + xs.push('[' + inspect(syms[j]) + ']: ' + inspect(obj[syms[j]], obj)); + } + } + } + return xs; +} diff --git a/node_modules/object-inspect/package-support.json b/node_modules/object-inspect/package-support.json new file mode 100644 index 000000000..5cc12d058 --- /dev/null +++ b/node_modules/object-inspect/package-support.json @@ -0,0 +1,20 @@ +{ + "versions": [ + { + "version": "*", + "target": { + "node": "all" + }, + "response": { + "type": "time-permitting" + }, + "backing": { + "npm-funding": true, + "donations": [ + "https://github.com/ljharb", + "https://tidelift.com/funding/github/npm/object-inspect" + ] + } + } + ] +} diff --git a/node_modules/object-inspect/package.json b/node_modules/object-inspect/package.json new file mode 100644 index 000000000..7e0b87c79 --- /dev/null +++ b/node_modules/object-inspect/package.json @@ -0,0 +1,94 @@ +{ + "name": "object-inspect", + "version": "1.12.2", + "description": "string representations of objects in node and the browser", + "main": "index.js", + "sideEffects": false, + "devDependencies": { + "@ljharb/eslint-config": "^21.0.0", + "aud": "^2.0.0", + "auto-changelog": "^2.4.0", + "core-js": "^2.6.12", + "error-cause": "^1.0.4", + "es-value-fixtures": "^1.4.1", + "eslint": "=8.8.0", + "for-each": "^0.3.3", + "functions-have-names": "^1.2.3", + "has-tostringtag": "^1.0.0", + "make-arrow-function": "^1.2.0", + "mock-property": "^1.0.0", + "npmignore": "^0.3.0", + "nyc": "^10.3.2", + "safe-publish-latest": "^2.0.0", + "string.prototype.repeat": "^1.0.0", + "tape": "^5.5.3" + }, + "scripts": { + "prepack": "npmignore --auto --commentLines=autogenerated", + "prepublish": "not-in-publish || npm run prepublishOnly", + "prepublishOnly": "safe-publish-latest", + "pretest": "npm run lint", + "lint": "eslint .", + "test": "npm run tests-only && npm run test:corejs", + "tests-only": "nyc tape 'test/*.js'", + "test:corejs": "nyc tape test-core-js.js 'test/*.js'", + "posttest": "npx aud --production", + "version": "auto-changelog && git add CHANGELOG.md", + "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"" + }, + "testling": { + "files": [ + "test/*.js", + "test/browser/*.js" + ], + "browsers": [ + "ie/6..latest", + "chrome/latest", + "firefox/latest", + "safari/latest", + "opera/latest", + "iphone/latest", + "ipad/latest", + "android/latest" + ] + }, + "repository": { + "type": "git", + "url": "git://github.com/inspect-js/object-inspect.git" + }, + "homepage": "https://github.com/inspect-js/object-inspect", + "keywords": [ + "inspect", + "util.inspect", + "object", + "stringify", + "pretty" + ], + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + }, + "license": "MIT", + "browser": { + "./util.inspect.js": false + }, + "auto-changelog": { + "output": "CHANGELOG.md", + "template": "keepachangelog", + "unreleased": false, + "commitLimit": false, + "backfillLimit": false, + "hideCredit": true + }, + "publishConfig": { + "ignore": [ + ".github/workflows", + "./test-core-js.js" + ] + }, + "support": true +} diff --git a/node_modules/object-inspect/readme.markdown b/node_modules/object-inspect/readme.markdown new file mode 100644 index 000000000..9ff6bec36 --- /dev/null +++ b/node_modules/object-inspect/readme.markdown @@ -0,0 +1,86 @@ +# object-inspect [![Version Badge][2]][1] + +string representations of objects in node and the browser + +[![github actions][actions-image]][actions-url] +[![coverage][codecov-image]][codecov-url] +[![dependency status][5]][6] +[![dev dependency status][7]][8] +[![License][license-image]][license-url] +[![Downloads][downloads-image]][downloads-url] + +[![npm badge][11]][1] + +# example + +## circular + +``` js +var inspect = require('object-inspect'); +var obj = { a: 1, b: [3,4] }; +obj.c = obj; +console.log(inspect(obj)); +``` + +## dom element + +``` js +var inspect = require('object-inspect'); + +var d = document.createElement('div'); +d.setAttribute('id', 'beep'); +d.innerHTML = 'woooiiiii'; + +console.log(inspect([ d, { a: 3, b : 4, c: [5,6,[7,[8,[9]]]] } ])); +``` + +output: + +``` +[
...
, { a: 3, b: 4, c: [ 5, 6, [ 7, [ 8, [ ... ] ] ] ] } ] +``` + +# methods + +``` js +var inspect = require('object-inspect') +``` + +## var s = inspect(obj, opts={}) + +Return a string `s` with the string representation of `obj` up to a depth of `opts.depth`. + +Additional options: + - `quoteStyle`: must be "single" or "double", if present. Default `'single'` for strings, `'double'` for HTML elements. + - `maxStringLength`: must be `0`, a positive integer, `Infinity`, or `null`, if present. Default `Infinity`. + - `customInspect`: When `true`, a custom inspect method function will be invoked (either undere the `util.inspect.custom` symbol, or the `inspect` property). When the string `'symbol'`, only the symbol method will be invoked. Default `true`. + - `indent`: must be "\t", `null`, or a positive integer. Default `null`. + - `numericSeparator`: must be a boolean, if present. Default `false`. If `true`, all numbers will be printed with numeric separators (eg, `1234.5678` will be printed as `'1_234.567_8'`) + +# install + +With [npm](https://npmjs.org) do: + +``` +npm install object-inspect +``` + +# license + +MIT + +[1]: https://npmjs.org/package/object-inspect +[2]: https://versionbadg.es/inspect-js/object-inspect.svg +[5]: https://david-dm.org/inspect-js/object-inspect.svg +[6]: https://david-dm.org/inspect-js/object-inspect +[7]: https://david-dm.org/inspect-js/object-inspect/dev-status.svg +[8]: https://david-dm.org/inspect-js/object-inspect#info=devDependencies +[11]: https://nodei.co/npm/object-inspect.png?downloads=true&stars=true +[license-image]: https://img.shields.io/npm/l/object-inspect.svg +[license-url]: LICENSE +[downloads-image]: https://img.shields.io/npm/dm/object-inspect.svg +[downloads-url]: https://npm-stat.com/charts.html?package=object-inspect +[codecov-image]: https://codecov.io/gh/inspect-js/object-inspect/branch/main/graphs/badge.svg +[codecov-url]: https://app.codecov.io/gh/inspect-js/object-inspect/ +[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/inspect-js/object-inspect +[actions-url]: https://github.com/inspect-js/object-inspect/actions diff --git a/node_modules/object-inspect/test-core-js.js b/node_modules/object-inspect/test-core-js.js new file mode 100644 index 000000000..e53c40022 --- /dev/null +++ b/node_modules/object-inspect/test-core-js.js @@ -0,0 +1,26 @@ +'use strict'; + +require('core-js'); + +var inspect = require('./'); +var test = require('tape'); + +test('Maps', function (t) { + t.equal(inspect(new Map([[1, 2]])), 'Map (1) {1 => 2}'); + t.end(); +}); + +test('WeakMaps', function (t) { + t.equal(inspect(new WeakMap([[{}, 2]])), 'WeakMap { ? }'); + t.end(); +}); + +test('Sets', function (t) { + t.equal(inspect(new Set([[1, 2]])), 'Set (1) {[ 1, 2 ]}'); + t.end(); +}); + +test('WeakSets', function (t) { + t.equal(inspect(new WeakSet([[1, 2]])), 'WeakSet { ? }'); + t.end(); +}); diff --git a/node_modules/object-inspect/test/bigint.js b/node_modules/object-inspect/test/bigint.js new file mode 100644 index 000000000..4ecc31df8 --- /dev/null +++ b/node_modules/object-inspect/test/bigint.js @@ -0,0 +1,58 @@ +'use strict'; + +var inspect = require('../'); +var test = require('tape'); +var hasToStringTag = require('has-tostringtag/shams')(); + +test('bigint', { skip: typeof BigInt === 'undefined' }, function (t) { + t.test('primitives', function (st) { + st.plan(3); + + st.equal(inspect(BigInt(-256)), '-256n'); + st.equal(inspect(BigInt(0)), '0n'); + st.equal(inspect(BigInt(256)), '256n'); + }); + + t.test('objects', function (st) { + st.plan(3); + + st.equal(inspect(Object(BigInt(-256))), 'Object(-256n)'); + st.equal(inspect(Object(BigInt(0))), 'Object(0n)'); + st.equal(inspect(Object(BigInt(256))), 'Object(256n)'); + }); + + t.test('syntactic primitives', function (st) { + st.plan(3); + + /* eslint-disable no-new-func */ + st.equal(inspect(Function('return -256n')()), '-256n'); + st.equal(inspect(Function('return 0n')()), '0n'); + st.equal(inspect(Function('return 256n')()), '256n'); + }); + + t.test('toStringTag', { skip: !hasToStringTag }, function (st) { + st.plan(1); + + var faker = {}; + faker[Symbol.toStringTag] = 'BigInt'; + st.equal( + inspect(faker), + '{ [Symbol(Symbol.toStringTag)]: \'BigInt\' }', + 'object lying about being a BigInt inspects as an object' + ); + }); + + t.test('numericSeparator', function (st) { + st.equal(inspect(BigInt(0), { numericSeparator: false }), '0n', '0n, numericSeparator false'); + st.equal(inspect(BigInt(0), { numericSeparator: true }), '0n', '0n, numericSeparator true'); + + st.equal(inspect(BigInt(1234), { numericSeparator: false }), '1234n', '1234n, numericSeparator false'); + st.equal(inspect(BigInt(1234), { numericSeparator: true }), '1_234n', '1234n, numericSeparator true'); + st.equal(inspect(BigInt(-1234), { numericSeparator: false }), '-1234n', '1234n, numericSeparator false'); + st.equal(inspect(BigInt(-1234), { numericSeparator: true }), '-1_234n', '1234n, numericSeparator true'); + + st.end(); + }); + + t.end(); +}); diff --git a/node_modules/object-inspect/test/browser/dom.js b/node_modules/object-inspect/test/browser/dom.js new file mode 100644 index 000000000..210c0b233 --- /dev/null +++ b/node_modules/object-inspect/test/browser/dom.js @@ -0,0 +1,15 @@ +var inspect = require('../../'); +var test = require('tape'); + +test('dom element', function (t) { + t.plan(1); + + var d = document.createElement('div'); + d.setAttribute('id', 'beep'); + d.innerHTML = 'woooiiiii'; + + t.equal( + inspect([d, { a: 3, b: 4, c: [5, 6, [7, [8, [9]]]] }]), + '[
...
, { a: 3, b: 4, c: [ 5, 6, [ 7, [ 8, [Object] ] ] ] } ]' + ); +}); diff --git a/node_modules/object-inspect/test/circular.js b/node_modules/object-inspect/test/circular.js new file mode 100644 index 000000000..5df4233cb --- /dev/null +++ b/node_modules/object-inspect/test/circular.js @@ -0,0 +1,16 @@ +var inspect = require('../'); +var test = require('tape'); + +test('circular', function (t) { + t.plan(2); + var obj = { a: 1, b: [3, 4] }; + obj.c = obj; + t.equal(inspect(obj), '{ a: 1, b: [ 3, 4 ], c: [Circular] }'); + + var double = {}; + double.a = [double]; + double.b = {}; + double.b.inner = double.b; + double.b.obj = double; + t.equal(inspect(double), '{ a: [ [Circular] ], b: { inner: [Circular], obj: [Circular] } }'); +}); diff --git a/node_modules/object-inspect/test/deep.js b/node_modules/object-inspect/test/deep.js new file mode 100644 index 000000000..99ce32a08 --- /dev/null +++ b/node_modules/object-inspect/test/deep.js @@ -0,0 +1,12 @@ +var inspect = require('../'); +var test = require('tape'); + +test('deep', function (t) { + t.plan(4); + var obj = [[[[[[500]]]]]]; + t.equal(inspect(obj), '[ [ [ [ [ [Array] ] ] ] ] ]'); + t.equal(inspect(obj, { depth: 4 }), '[ [ [ [ [Array] ] ] ] ]'); + t.equal(inspect(obj, { depth: 2 }), '[ [ [Array] ] ]'); + + t.equal(inspect([[[{ a: 1 }]]], { depth: 3 }), '[ [ [ [Object] ] ] ]'); +}); diff --git a/node_modules/object-inspect/test/element.js b/node_modules/object-inspect/test/element.js new file mode 100644 index 000000000..47fa9e240 --- /dev/null +++ b/node_modules/object-inspect/test/element.js @@ -0,0 +1,53 @@ +var inspect = require('../'); +var test = require('tape'); + +test('element', function (t) { + t.plan(3); + var elem = { + nodeName: 'div', + attributes: [{ name: 'class', value: 'row' }], + getAttribute: function (key) { return key; }, + childNodes: [] + }; + var obj = [1, elem, 3]; + t.deepEqual(inspect(obj), '[ 1,
, 3 ]'); + t.deepEqual(inspect(obj, { quoteStyle: 'single' }), "[ 1,
, 3 ]"); + t.deepEqual(inspect(obj, { quoteStyle: 'double' }), '[ 1,
, 3 ]'); +}); + +test('element no attr', function (t) { + t.plan(1); + var elem = { + nodeName: 'div', + getAttribute: function (key) { return key; }, + childNodes: [] + }; + var obj = [1, elem, 3]; + t.deepEqual(inspect(obj), '[ 1,
, 3 ]'); +}); + +test('element with contents', function (t) { + t.plan(1); + var elem = { + nodeName: 'div', + getAttribute: function (key) { return key; }, + childNodes: [{ nodeName: 'b' }] + }; + var obj = [1, elem, 3]; + t.deepEqual(inspect(obj), '[ 1,
...
, 3 ]'); +}); + +test('element instance', function (t) { + t.plan(1); + var h = global.HTMLElement; + global.HTMLElement = function (name, attr) { + this.nodeName = name; + this.attributes = attr; + }; + global.HTMLElement.prototype.getAttribute = function () {}; + + var elem = new global.HTMLElement('div', []); + var obj = [1, elem, 3]; + t.deepEqual(inspect(obj), '[ 1,
, 3 ]'); + global.HTMLElement = h; +}); diff --git a/node_modules/object-inspect/test/err.js b/node_modules/object-inspect/test/err.js new file mode 100644 index 000000000..cc1d884ab --- /dev/null +++ b/node_modules/object-inspect/test/err.js @@ -0,0 +1,48 @@ +var test = require('tape'); +var ErrorWithCause = require('error-cause/Error'); + +var inspect = require('../'); + +test('type error', function (t) { + t.plan(1); + var aerr = new TypeError(); + aerr.foo = 555; + aerr.bar = [1, 2, 3]; + + var berr = new TypeError('tuv'); + berr.baz = 555; + + var cerr = new SyntaxError(); + cerr.message = 'whoa'; + cerr['a-b'] = 5; + + var withCause = new ErrorWithCause('foo', { cause: 'bar' }); + var withCausePlus = new ErrorWithCause('foo', { cause: 'bar' }); + withCausePlus.foo = 'bar'; + var withUndefinedCause = new ErrorWithCause('foo', { cause: undefined }); + var withEnumerableCause = new Error('foo'); + withEnumerableCause.cause = 'bar'; + + var obj = [ + new TypeError(), + new TypeError('xxx'), + aerr, + berr, + cerr, + withCause, + withCausePlus, + withUndefinedCause, + withEnumerableCause + ]; + t.equal(inspect(obj), '[ ' + [ + '[TypeError]', + '[TypeError: xxx]', + '{ [TypeError] foo: 555, bar: [ 1, 2, 3 ] }', + '{ [TypeError: tuv] baz: 555 }', + '{ [SyntaxError: whoa] message: \'whoa\', \'a-b\': 5 }', + 'cause' in Error.prototype ? '[Error: foo]' : '{ [Error: foo] [cause]: \'bar\' }', + '{ [Error: foo] ' + ('cause' in Error.prototype ? '' : '[cause]: \'bar\', ') + 'foo: \'bar\' }', + 'cause' in Error.prototype ? '[Error: foo]' : '{ [Error: foo] [cause]: undefined }', + '{ [Error: foo] cause: \'bar\' }' + ].join(', ') + ' ]'); +}); diff --git a/node_modules/object-inspect/test/fakes.js b/node_modules/object-inspect/test/fakes.js new file mode 100644 index 000000000..a65c08c15 --- /dev/null +++ b/node_modules/object-inspect/test/fakes.js @@ -0,0 +1,29 @@ +'use strict'; + +var inspect = require('../'); +var test = require('tape'); +var hasToStringTag = require('has-tostringtag/shams')(); +var forEach = require('for-each'); + +test('fakes', { skip: !hasToStringTag }, function (t) { + forEach([ + 'Array', + 'Boolean', + 'Date', + 'Error', + 'Number', + 'RegExp', + 'String' + ], function (expected) { + var faker = {}; + faker[Symbol.toStringTag] = expected; + + t.equal( + inspect(faker), + '{ [Symbol(Symbol.toStringTag)]: \'' + expected + '\' }', + 'faker masquerading as ' + expected + ' is not shown as one' + ); + }); + + t.end(); +}); diff --git a/node_modules/object-inspect/test/fn.js b/node_modules/object-inspect/test/fn.js new file mode 100644 index 000000000..de3ca625e --- /dev/null +++ b/node_modules/object-inspect/test/fn.js @@ -0,0 +1,76 @@ +var inspect = require('../'); +var test = require('tape'); +var arrow = require('make-arrow-function')(); +var functionsHaveConfigurableNames = require('functions-have-names').functionsHaveConfigurableNames(); + +test('function', function (t) { + t.plan(1); + var obj = [1, 2, function f(n) { return n; }, 4]; + t.equal(inspect(obj), '[ 1, 2, [Function: f], 4 ]'); +}); + +test('function name', function (t) { + t.plan(1); + var f = (function () { + return function () {}; + }()); + f.toString = function toStr() { return 'function xxx () {}'; }; + var obj = [1, 2, f, 4]; + t.equal(inspect(obj), '[ 1, 2, [Function (anonymous)] { toString: [Function: toStr] }, 4 ]'); +}); + +test('anon function', function (t) { + var f = (function () { + return function () {}; + }()); + var obj = [1, 2, f, 4]; + t.equal(inspect(obj), '[ 1, 2, [Function (anonymous)], 4 ]'); + + t.end(); +}); + +test('arrow function', { skip: !arrow }, function (t) { + t.equal(inspect(arrow), '[Function (anonymous)]'); + + t.end(); +}); + +test('truly nameless function', { skip: !arrow || !functionsHaveConfigurableNames }, function (t) { + function f() {} + Object.defineProperty(f, 'name', { value: false }); + t.equal(f.name, false); + t.equal( + inspect(f), + '[Function: f]', + 'named function with falsy `.name` does not hide its original name' + ); + + function g() {} + Object.defineProperty(g, 'name', { value: true }); + t.equal(g.name, true); + t.equal( + inspect(g), + '[Function: true]', + 'named function with truthy `.name` hides its original name' + ); + + var anon = function () {}; // eslint-disable-line func-style + Object.defineProperty(anon, 'name', { value: null }); + t.equal(anon.name, null); + t.equal( + inspect(anon), + '[Function (anonymous)]', + 'anon function with falsy `.name` does not hide its anonymity' + ); + + var anon2 = function () {}; // eslint-disable-line func-style + Object.defineProperty(anon2, 'name', { value: 1 }); + t.equal(anon2.name, 1); + t.equal( + inspect(anon2), + '[Function: 1]', + 'anon function with truthy `.name` hides its anonymity' + ); + + t.end(); +}); diff --git a/node_modules/object-inspect/test/has.js b/node_modules/object-inspect/test/has.js new file mode 100644 index 000000000..01800dee6 --- /dev/null +++ b/node_modules/object-inspect/test/has.js @@ -0,0 +1,15 @@ +'use strict'; + +var inspect = require('../'); +var test = require('tape'); +var mockProperty = require('mock-property'); + +test('when Object#hasOwnProperty is deleted', function (t) { + t.plan(1); + var arr = [1, , 3]; // eslint-disable-line no-sparse-arrays + + t.teardown(mockProperty(Array.prototype, 1, { value: 2 })); // this is needed to account for "in" vs "hasOwnProperty" + t.teardown(mockProperty(Object.prototype, 'hasOwnProperty', { 'delete': true })); + + t.equal(inspect(arr), '[ 1, , 3 ]'); +}); diff --git a/node_modules/object-inspect/test/holes.js b/node_modules/object-inspect/test/holes.js new file mode 100644 index 000000000..87fc8c84a --- /dev/null +++ b/node_modules/object-inspect/test/holes.js @@ -0,0 +1,15 @@ +var test = require('tape'); +var inspect = require('../'); + +var xs = ['a', 'b']; +xs[5] = 'f'; +xs[7] = 'j'; +xs[8] = 'k'; + +test('holes', function (t) { + t.plan(1); + t.equal( + inspect(xs), + "[ 'a', 'b', , , , 'f', , 'j', 'k' ]" + ); +}); diff --git a/node_modules/object-inspect/test/indent-option.js b/node_modules/object-inspect/test/indent-option.js new file mode 100644 index 000000000..89d8fcedf --- /dev/null +++ b/node_modules/object-inspect/test/indent-option.js @@ -0,0 +1,271 @@ +var test = require('tape'); +var forEach = require('for-each'); + +var inspect = require('../'); + +test('bad indent options', function (t) { + forEach([ + undefined, + true, + false, + -1, + 1.2, + Infinity, + -Infinity, + NaN + ], function (indent) { + t['throws']( + function () { inspect('', { indent: indent }); }, + TypeError, + inspect(indent) + ' is invalid' + ); + }); + + t.end(); +}); + +test('simple object with indent', function (t) { + t.plan(2); + + var obj = { a: 1, b: 2 }; + + var expectedSpaces = [ + '{', + ' a: 1,', + ' b: 2', + '}' + ].join('\n'); + var expectedTabs = [ + '{', + ' a: 1,', + ' b: 2', + '}' + ].join('\n'); + + t.equal(inspect(obj, { indent: 2 }), expectedSpaces, 'two'); + t.equal(inspect(obj, { indent: '\t' }), expectedTabs, 'tabs'); +}); + +test('two deep object with indent', function (t) { + t.plan(2); + + var obj = { a: 1, b: { c: 3, d: 4 } }; + + var expectedSpaces = [ + '{', + ' a: 1,', + ' b: {', + ' c: 3,', + ' d: 4', + ' }', + '}' + ].join('\n'); + var expectedTabs = [ + '{', + ' a: 1,', + ' b: {', + ' c: 3,', + ' d: 4', + ' }', + '}' + ].join('\n'); + + t.equal(inspect(obj, { indent: 2 }), expectedSpaces, 'two'); + t.equal(inspect(obj, { indent: '\t' }), expectedTabs, 'tabs'); +}); + +test('simple array with all single line elements', function (t) { + t.plan(2); + + var obj = [1, 2, 3, 'asdf\nsdf']; + + var expected = '[ 1, 2, 3, \'asdf\\nsdf\' ]'; + + t.equal(inspect(obj, { indent: 2 }), expected, 'two'); + t.equal(inspect(obj, { indent: '\t' }), expected, 'tabs'); +}); + +test('array with complex elements', function (t) { + t.plan(2); + + var obj = [1, { a: 1, b: { c: 1 } }, 'asdf\nsdf']; + + var expectedSpaces = [ + '[', + ' 1,', + ' {', + ' a: 1,', + ' b: {', + ' c: 1', + ' }', + ' },', + ' \'asdf\\nsdf\'', + ']' + ].join('\n'); + var expectedTabs = [ + '[', + ' 1,', + ' {', + ' a: 1,', + ' b: {', + ' c: 1', + ' }', + ' },', + ' \'asdf\\nsdf\'', + ']' + ].join('\n'); + + t.equal(inspect(obj, { indent: 2 }), expectedSpaces, 'two'); + t.equal(inspect(obj, { indent: '\t' }), expectedTabs, 'tabs'); +}); + +test('values', function (t) { + t.plan(2); + var obj = [{}, [], { 'a-b': 5 }]; + + var expectedSpaces = [ + '[', + ' {},', + ' [],', + ' {', + ' \'a-b\': 5', + ' }', + ']' + ].join('\n'); + var expectedTabs = [ + '[', + ' {},', + ' [],', + ' {', + ' \'a-b\': 5', + ' }', + ']' + ].join('\n'); + + t.equal(inspect(obj, { indent: 2 }), expectedSpaces, 'two'); + t.equal(inspect(obj, { indent: '\t' }), expectedTabs, 'tabs'); +}); + +test('Map', { skip: typeof Map !== 'function' }, function (t) { + var map = new Map(); + map.set({ a: 1 }, ['b']); + map.set(3, NaN); + + var expectedStringSpaces = [ + 'Map (2) {', + ' { a: 1 } => [ \'b\' ],', + ' 3 => NaN', + '}' + ].join('\n'); + var expectedStringTabs = [ + 'Map (2) {', + ' { a: 1 } => [ \'b\' ],', + ' 3 => NaN', + '}' + ].join('\n'); + var expectedStringTabsDoubleQuotes = [ + 'Map (2) {', + ' { a: 1 } => [ "b" ],', + ' 3 => NaN', + '}' + ].join('\n'); + + t.equal( + inspect(map, { indent: 2 }), + expectedStringSpaces, + 'Map keys are not indented (two)' + ); + t.equal( + inspect(map, { indent: '\t' }), + expectedStringTabs, + 'Map keys are not indented (tabs)' + ); + t.equal( + inspect(map, { indent: '\t', quoteStyle: 'double' }), + expectedStringTabsDoubleQuotes, + 'Map keys are not indented (tabs + double quotes)' + ); + + t.equal(inspect(new Map(), { indent: 2 }), 'Map (0) {}', 'empty Map should show as empty (two)'); + t.equal(inspect(new Map(), { indent: '\t' }), 'Map (0) {}', 'empty Map should show as empty (tabs)'); + + var nestedMap = new Map(); + nestedMap.set(nestedMap, map); + var expectedNestedSpaces = [ + 'Map (1) {', + ' [Circular] => Map (2) {', + ' { a: 1 } => [ \'b\' ],', + ' 3 => NaN', + ' }', + '}' + ].join('\n'); + var expectedNestedTabs = [ + 'Map (1) {', + ' [Circular] => Map (2) {', + ' { a: 1 } => [ \'b\' ],', + ' 3 => NaN', + ' }', + '}' + ].join('\n'); + t.equal(inspect(nestedMap, { indent: 2 }), expectedNestedSpaces, 'Map containing a Map should work (two)'); + t.equal(inspect(nestedMap, { indent: '\t' }), expectedNestedTabs, 'Map containing a Map should work (tabs)'); + + t.end(); +}); + +test('Set', { skip: typeof Set !== 'function' }, function (t) { + var set = new Set(); + set.add({ a: 1 }); + set.add(['b']); + var expectedStringSpaces = [ + 'Set (2) {', + ' {', + ' a: 1', + ' },', + ' [ \'b\' ]', + '}' + ].join('\n'); + var expectedStringTabs = [ + 'Set (2) {', + ' {', + ' a: 1', + ' },', + ' [ \'b\' ]', + '}' + ].join('\n'); + t.equal(inspect(set, { indent: 2 }), expectedStringSpaces, 'new Set([{ a: 1 }, ["b"]]) should show size and contents (two)'); + t.equal(inspect(set, { indent: '\t' }), expectedStringTabs, 'new Set([{ a: 1 }, ["b"]]) should show size and contents (tabs)'); + + t.equal(inspect(new Set(), { indent: 2 }), 'Set (0) {}', 'empty Set should show as empty (two)'); + t.equal(inspect(new Set(), { indent: '\t' }), 'Set (0) {}', 'empty Set should show as empty (tabs)'); + + var nestedSet = new Set(); + nestedSet.add(set); + nestedSet.add(nestedSet); + var expectedNestedSpaces = [ + 'Set (2) {', + ' Set (2) {', + ' {', + ' a: 1', + ' },', + ' [ \'b\' ]', + ' },', + ' [Circular]', + '}' + ].join('\n'); + var expectedNestedTabs = [ + 'Set (2) {', + ' Set (2) {', + ' {', + ' a: 1', + ' },', + ' [ \'b\' ]', + ' },', + ' [Circular]', + '}' + ].join('\n'); + t.equal(inspect(nestedSet, { indent: 2 }), expectedNestedSpaces, 'Set containing a Set should work (two)'); + t.equal(inspect(nestedSet, { indent: '\t' }), expectedNestedTabs, 'Set containing a Set should work (tabs)'); + + t.end(); +}); diff --git a/node_modules/object-inspect/test/inspect.js b/node_modules/object-inspect/test/inspect.js new file mode 100644 index 000000000..1abf81b1f --- /dev/null +++ b/node_modules/object-inspect/test/inspect.js @@ -0,0 +1,139 @@ +var test = require('tape'); +var hasSymbols = require('has-symbols/shams')(); +var utilInspect = require('../util.inspect'); +var repeat = require('string.prototype.repeat'); + +var inspect = require('..'); + +test('inspect', function (t) { + t.plan(5); + + var obj = [{ inspect: function xyzInspect() { return '!XYZ¡'; } }, []]; + var stringResult = '[ !XYZ¡, [] ]'; + var falseResult = '[ { inspect: [Function: xyzInspect] }, [] ]'; + + t.equal(inspect(obj), stringResult); + t.equal(inspect(obj, { customInspect: true }), stringResult); + t.equal(inspect(obj, { customInspect: 'symbol' }), falseResult); + t.equal(inspect(obj, { customInspect: false }), falseResult); + t['throws']( + function () { inspect(obj, { customInspect: 'not a boolean or "symbol"' }); }, + TypeError, + '`customInspect` must be a boolean or the string "symbol"' + ); +}); + +test('inspect custom symbol', { skip: !hasSymbols || !utilInspect || !utilInspect.custom }, function (t) { + t.plan(4); + + var obj = { inspect: function stringInspect() { return 'string'; } }; + obj[utilInspect.custom] = function custom() { return 'symbol'; }; + + var symbolResult = '[ symbol, [] ]'; + var stringResult = '[ string, [] ]'; + var falseResult = '[ { inspect: [Function: stringInspect]' + (utilInspect.custom ? ', [' + inspect(utilInspect.custom) + ']: [Function: custom]' : '') + ' }, [] ]'; + + var symbolStringFallback = utilInspect.custom ? symbolResult : stringResult; + var symbolFalseFallback = utilInspect.custom ? symbolResult : falseResult; + + t.equal(inspect([obj, []]), symbolStringFallback); + t.equal(inspect([obj, []], { customInspect: true }), symbolStringFallback); + t.equal(inspect([obj, []], { customInspect: 'symbol' }), symbolFalseFallback); + t.equal(inspect([obj, []], { customInspect: false }), falseResult); +}); + +test('symbols', { skip: !hasSymbols }, function (t) { + t.plan(2); + + var obj = { a: 1 }; + obj[Symbol('test')] = 2; + obj[Symbol.iterator] = 3; + Object.defineProperty(obj, Symbol('non-enum'), { + enumerable: false, + value: 4 + }); + + if (typeof Symbol.iterator === 'symbol') { + t.equal(inspect(obj), '{ a: 1, [Symbol(test)]: 2, [Symbol(Symbol.iterator)]: 3 }', 'object with symbols'); + t.equal(inspect([obj, []]), '[ { a: 1, [Symbol(test)]: 2, [Symbol(Symbol.iterator)]: 3 }, [] ]', 'object with symbols in array'); + } else { + // symbol sham key ordering is unreliable + t.match( + inspect(obj), + /^(?:{ a: 1, \[Symbol\(test\)\]: 2, \[Symbol\(Symbol.iterator\)\]: 3 }|{ a: 1, \[Symbol\(Symbol.iterator\)\]: 3, \[Symbol\(test\)\]: 2 })$/, + 'object with symbols (nondeterministic symbol sham key ordering)' + ); + t.match( + inspect([obj, []]), + /^\[ (?:{ a: 1, \[Symbol\(test\)\]: 2, \[Symbol\(Symbol.iterator\)\]: 3 }|{ a: 1, \[Symbol\(Symbol.iterator\)\]: 3, \[Symbol\(test\)\]: 2 }), \[\] \]$/, + 'object with symbols in array (nondeterministic symbol sham key ordering)' + ); + } +}); + +test('maxStringLength', function (t) { + t['throws']( + function () { inspect('', { maxStringLength: -1 }); }, + TypeError, + 'maxStringLength must be >= 0, or Infinity, not negative' + ); + + var str = repeat('a', 1e8); + + t.equal( + inspect([str], { maxStringLength: 10 }), + '[ \'aaaaaaaaaa\'... 99999990 more characters ]', + 'maxStringLength option limits output' + ); + + t.equal( + inspect(['f'], { maxStringLength: null }), + '[ \'\'... 1 more character ]', + 'maxStringLength option accepts `null`' + ); + + t.equal( + inspect([str], { maxStringLength: Infinity }), + '[ \'' + str + '\' ]', + 'maxStringLength option accepts ∞' + ); + + t.end(); +}); + +test('inspect options', { skip: !utilInspect.custom }, function (t) { + var obj = {}; + obj[utilInspect.custom] = function () { + return JSON.stringify(arguments); + }; + t.equal( + inspect(obj), + utilInspect(obj, { depth: 5 }), + 'custom symbols will use node\'s inspect' + ); + t.equal( + inspect(obj, { depth: 2 }), + utilInspect(obj, { depth: 2 }), + 'a reduced depth will be passed to node\'s inspect' + ); + t.equal( + inspect({ d1: obj }, { depth: 3 }), + '{ d1: ' + utilInspect(obj, { depth: 2 }) + ' }', + 'deep objects will receive a reduced depth' + ); + t.equal( + inspect({ d1: obj }, { depth: 1 }), + '{ d1: [Object] }', + 'unlike nodejs inspect, customInspect will not be used once the depth is exceeded.' + ); + t.end(); +}); + +test('inspect URL', { skip: typeof URL === 'undefined' }, function (t) { + t.match( + inspect(new URL('https://nodejs.org')), + /nodejs\.org/, // Different environments stringify it differently + 'url can be inspected' + ); + t.end(); +}); diff --git a/node_modules/object-inspect/test/lowbyte.js b/node_modules/object-inspect/test/lowbyte.js new file mode 100644 index 000000000..68a345d85 --- /dev/null +++ b/node_modules/object-inspect/test/lowbyte.js @@ -0,0 +1,12 @@ +var test = require('tape'); +var inspect = require('../'); + +var obj = { x: 'a\r\nb', y: '\x05! \x1f \x12' }; + +test('interpolate low bytes', function (t) { + t.plan(1); + t.equal( + inspect(obj), + "{ x: 'a\\r\\nb', y: '\\x05! \\x1F \\x12' }" + ); +}); diff --git a/node_modules/object-inspect/test/number.js b/node_modules/object-inspect/test/number.js new file mode 100644 index 000000000..8f287e8e2 --- /dev/null +++ b/node_modules/object-inspect/test/number.js @@ -0,0 +1,58 @@ +var test = require('tape'); +var v = require('es-value-fixtures'); +var forEach = require('for-each'); + +var inspect = require('../'); + +test('negative zero', function (t) { + t.equal(inspect(0), '0', 'inspect(0) === "0"'); + t.equal(inspect(Object(0)), 'Object(0)', 'inspect(Object(0)) === "Object(0)"'); + + t.equal(inspect(-0), '-0', 'inspect(-0) === "-0"'); + t.equal(inspect(Object(-0)), 'Object(-0)', 'inspect(Object(-0)) === "Object(-0)"'); + + t.end(); +}); + +test('numericSeparator', function (t) { + forEach(v.nonBooleans, function (nonBoolean) { + t['throws']( + function () { inspect(true, { numericSeparator: nonBoolean }); }, + TypeError, + inspect(nonBoolean) + ' is not a boolean' + ); + }); + + t.test('3 digit numbers', function (st) { + var failed = false; + for (var i = -999; i < 1000; i += 1) { + var actual = inspect(i); + var actualSepNo = inspect(i, { numericSeparator: false }); + var actualSepYes = inspect(i, { numericSeparator: true }); + var expected = String(i); + if (actual !== expected || actualSepNo !== expected || actualSepYes !== expected) { + failed = true; + t.equal(actual, expected); + t.equal(actualSepNo, expected); + t.equal(actualSepYes, expected); + } + } + + st.notOk(failed, 'all 3 digit numbers passed'); + + st.end(); + }); + + t.equal(inspect(1e3), '1000', '1000'); + t.equal(inspect(1e3, { numericSeparator: false }), '1000', '1000, numericSeparator false'); + t.equal(inspect(1e3, { numericSeparator: true }), '1_000', '1000, numericSeparator true'); + t.equal(inspect(-1e3), '-1000', '-1000'); + t.equal(inspect(-1e3, { numericSeparator: false }), '-1000', '-1000, numericSeparator false'); + t.equal(inspect(-1e3, { numericSeparator: true }), '-1_000', '-1000, numericSeparator true'); + + t.equal(inspect(1234.5678, { numericSeparator: true }), '1_234.567_8', 'fractional numbers get separators'); + t.equal(inspect(1234.56789, { numericSeparator: true }), '1_234.567_89', 'fractional numbers get separators'); + t.equal(inspect(1234.567891, { numericSeparator: true }), '1_234.567_891', 'fractional numbers get separators'); + + t.end(); +}); diff --git a/node_modules/object-inspect/test/quoteStyle.js b/node_modules/object-inspect/test/quoteStyle.js new file mode 100644 index 000000000..ae4d734bf --- /dev/null +++ b/node_modules/object-inspect/test/quoteStyle.js @@ -0,0 +1,17 @@ +'use strict'; + +var inspect = require('../'); +var test = require('tape'); + +test('quoteStyle option', function (t) { + t['throws'](function () { inspect(null, { quoteStyle: false }); }, 'false is not a valid value'); + t['throws'](function () { inspect(null, { quoteStyle: true }); }, 'true is not a valid value'); + t['throws'](function () { inspect(null, { quoteStyle: '' }); }, '"" is not a valid value'); + t['throws'](function () { inspect(null, { quoteStyle: {} }); }, '{} is not a valid value'); + t['throws'](function () { inspect(null, { quoteStyle: [] }); }, '[] is not a valid value'); + t['throws'](function () { inspect(null, { quoteStyle: 42 }); }, '42 is not a valid value'); + t['throws'](function () { inspect(null, { quoteStyle: NaN }); }, 'NaN is not a valid value'); + t['throws'](function () { inspect(null, { quoteStyle: function () {} }); }, 'a function is not a valid value'); + + t.end(); +}); diff --git a/node_modules/object-inspect/test/toStringTag.js b/node_modules/object-inspect/test/toStringTag.js new file mode 100644 index 000000000..95f82703d --- /dev/null +++ b/node_modules/object-inspect/test/toStringTag.js @@ -0,0 +1,40 @@ +'use strict'; + +var test = require('tape'); +var hasToStringTag = require('has-tostringtag/shams')(); + +var inspect = require('../'); + +test('Symbol.toStringTag', { skip: !hasToStringTag }, function (t) { + t.plan(4); + + var obj = { a: 1 }; + t.equal(inspect(obj), '{ a: 1 }', 'object, no Symbol.toStringTag'); + + obj[Symbol.toStringTag] = 'foo'; + t.equal(inspect(obj), '{ a: 1, [Symbol(Symbol.toStringTag)]: \'foo\' }', 'object with Symbol.toStringTag'); + + t.test('null objects', { skip: 'toString' in { __proto__: null } }, function (st) { + st.plan(2); + + var dict = { __proto__: null, a: 1 }; + st.equal(inspect(dict), '[Object: null prototype] { a: 1 }', 'null object with Symbol.toStringTag'); + + dict[Symbol.toStringTag] = 'Dict'; + st.equal(inspect(dict), '[Dict: null prototype] { a: 1, [Symbol(Symbol.toStringTag)]: \'Dict\' }', 'null object with Symbol.toStringTag'); + }); + + t.test('instances', function (st) { + st.plan(4); + + function C() { + this.a = 1; + } + st.equal(Object.prototype.toString.call(new C()), '[object Object]', 'instance, no toStringTag, Object.prototype.toString'); + st.equal(inspect(new C()), 'C { a: 1 }', 'instance, no toStringTag'); + + C.prototype[Symbol.toStringTag] = 'Class!'; + st.equal(Object.prototype.toString.call(new C()), '[object Class!]', 'instance, with toStringTag, Object.prototype.toString'); + st.equal(inspect(new C()), 'C [Class!] { a: 1 }', 'instance, with toStringTag'); + }); +}); diff --git a/node_modules/object-inspect/test/undef.js b/node_modules/object-inspect/test/undef.js new file mode 100644 index 000000000..e3f496122 --- /dev/null +++ b/node_modules/object-inspect/test/undef.js @@ -0,0 +1,12 @@ +var test = require('tape'); +var inspect = require('../'); + +var obj = { a: 1, b: [3, 4, undefined, null], c: undefined, d: null }; + +test('undef and null', function (t) { + t.plan(1); + t.equal( + inspect(obj), + '{ a: 1, b: [ 3, 4, undefined, null ], c: undefined, d: null }' + ); +}); diff --git a/node_modules/object-inspect/test/values.js b/node_modules/object-inspect/test/values.js new file mode 100644 index 000000000..4832b9fe9 --- /dev/null +++ b/node_modules/object-inspect/test/values.js @@ -0,0 +1,211 @@ +'use strict'; + +var inspect = require('../'); +var test = require('tape'); +var mockProperty = require('mock-property'); +var hasSymbols = require('has-symbols/shams')(); +var hasToStringTag = require('has-tostringtag/shams')(); + +test('values', function (t) { + t.plan(1); + var obj = [{}, [], { 'a-b': 5 }]; + t.equal(inspect(obj), '[ {}, [], { \'a-b\': 5 } ]'); +}); + +test('arrays with properties', function (t) { + t.plan(1); + var arr = [3]; + arr.foo = 'bar'; + var obj = [1, 2, arr]; + obj.baz = 'quux'; + obj.index = -1; + t.equal(inspect(obj), '[ 1, 2, [ 3, foo: \'bar\' ], baz: \'quux\', index: -1 ]'); +}); + +test('has', function (t) { + t.plan(1); + t.teardown(mockProperty(Object.prototype, 'hasOwnProperty', { 'delete': true })); + + t.equal(inspect({ a: 1, b: 2 }), '{ a: 1, b: 2 }'); +}); + +test('indexOf seen', function (t) { + t.plan(1); + var xs = [1, 2, 3, {}]; + xs.push(xs); + + var seen = []; + seen.indexOf = undefined; + + t.equal( + inspect(xs, {}, 0, seen), + '[ 1, 2, 3, {}, [Circular] ]' + ); +}); + +test('seen seen', function (t) { + t.plan(1); + var xs = [1, 2, 3]; + + var seen = [xs]; + seen.indexOf = undefined; + + t.equal( + inspect(xs, {}, 0, seen), + '[Circular]' + ); +}); + +test('seen seen seen', function (t) { + t.plan(1); + var xs = [1, 2, 3]; + + var seen = [5, xs]; + seen.indexOf = undefined; + + t.equal( + inspect(xs, {}, 0, seen), + '[Circular]' + ); +}); + +test('symbols', { skip: !hasSymbols }, function (t) { + var sym = Symbol('foo'); + t.equal(inspect(sym), 'Symbol(foo)', 'Symbol("foo") should be "Symbol(foo)"'); + if (typeof sym === 'symbol') { + // Symbol shams are incapable of differentiating boxed from unboxed symbols + t.equal(inspect(Object(sym)), 'Object(Symbol(foo))', 'Object(Symbol("foo")) should be "Object(Symbol(foo))"'); + } + + t.test('toStringTag', { skip: !hasToStringTag }, function (st) { + st.plan(1); + + var faker = {}; + faker[Symbol.toStringTag] = 'Symbol'; + st.equal( + inspect(faker), + '{ [Symbol(Symbol.toStringTag)]: \'Symbol\' }', + 'object lying about being a Symbol inspects as an object' + ); + }); + + t.end(); +}); + +test('Map', { skip: typeof Map !== 'function' }, function (t) { + var map = new Map(); + map.set({ a: 1 }, ['b']); + map.set(3, NaN); + var expectedString = 'Map (2) {' + inspect({ a: 1 }) + ' => ' + inspect(['b']) + ', 3 => NaN}'; + t.equal(inspect(map), expectedString, 'new Map([[{ a: 1 }, ["b"]], [3, NaN]]) should show size and contents'); + t.equal(inspect(new Map()), 'Map (0) {}', 'empty Map should show as empty'); + + var nestedMap = new Map(); + nestedMap.set(nestedMap, map); + t.equal(inspect(nestedMap), 'Map (1) {[Circular] => ' + expectedString + '}', 'Map containing a Map should work'); + + t.end(); +}); + +test('WeakMap', { skip: typeof WeakMap !== 'function' }, function (t) { + var map = new WeakMap(); + map.set({ a: 1 }, ['b']); + var expectedString = 'WeakMap { ? }'; + t.equal(inspect(map), expectedString, 'new WeakMap([[{ a: 1 }, ["b"]]]) should not show size or contents'); + t.equal(inspect(new WeakMap()), 'WeakMap { ? }', 'empty WeakMap should not show as empty'); + + t.end(); +}); + +test('Set', { skip: typeof Set !== 'function' }, function (t) { + var set = new Set(); + set.add({ a: 1 }); + set.add(['b']); + var expectedString = 'Set (2) {' + inspect({ a: 1 }) + ', ' + inspect(['b']) + '}'; + t.equal(inspect(set), expectedString, 'new Set([{ a: 1 }, ["b"]]) should show size and contents'); + t.equal(inspect(new Set()), 'Set (0) {}', 'empty Set should show as empty'); + + var nestedSet = new Set(); + nestedSet.add(set); + nestedSet.add(nestedSet); + t.equal(inspect(nestedSet), 'Set (2) {' + expectedString + ', [Circular]}', 'Set containing a Set should work'); + + t.end(); +}); + +test('WeakSet', { skip: typeof WeakSet !== 'function' }, function (t) { + var map = new WeakSet(); + map.add({ a: 1 }); + var expectedString = 'WeakSet { ? }'; + t.equal(inspect(map), expectedString, 'new WeakSet([{ a: 1 }]) should not show size or contents'); + t.equal(inspect(new WeakSet()), 'WeakSet { ? }', 'empty WeakSet should not show as empty'); + + t.end(); +}); + +test('WeakRef', { skip: typeof WeakRef !== 'function' }, function (t) { + var ref = new WeakRef({ a: 1 }); + var expectedString = 'WeakRef { ? }'; + t.equal(inspect(ref), expectedString, 'new WeakRef({ a: 1 }) should not show contents'); + + t.end(); +}); + +test('FinalizationRegistry', { skip: typeof FinalizationRegistry !== 'function' }, function (t) { + var registry = new FinalizationRegistry(function () {}); + var expectedString = 'FinalizationRegistry [FinalizationRegistry] {}'; + t.equal(inspect(registry), expectedString, 'new FinalizationRegistry(function () {}) should work normallys'); + + t.end(); +}); + +test('Strings', function (t) { + var str = 'abc'; + + t.equal(inspect(str), "'" + str + "'", 'primitive string shows as such'); + t.equal(inspect(str, { quoteStyle: 'single' }), "'" + str + "'", 'primitive string shows as such, single quoted'); + t.equal(inspect(str, { quoteStyle: 'double' }), '"' + str + '"', 'primitive string shows as such, double quoted'); + t.equal(inspect(Object(str)), 'Object(' + inspect(str) + ')', 'String object shows as such'); + t.equal(inspect(Object(str), { quoteStyle: 'single' }), 'Object(' + inspect(str, { quoteStyle: 'single' }) + ')', 'String object shows as such, single quoted'); + t.equal(inspect(Object(str), { quoteStyle: 'double' }), 'Object(' + inspect(str, { quoteStyle: 'double' }) + ')', 'String object shows as such, double quoted'); + + t.end(); +}); + +test('Numbers', function (t) { + var num = 42; + + t.equal(inspect(num), String(num), 'primitive number shows as such'); + t.equal(inspect(Object(num)), 'Object(' + inspect(num) + ')', 'Number object shows as such'); + + t.end(); +}); + +test('Booleans', function (t) { + t.equal(inspect(true), String(true), 'primitive true shows as such'); + t.equal(inspect(Object(true)), 'Object(' + inspect(true) + ')', 'Boolean object true shows as such'); + + t.equal(inspect(false), String(false), 'primitive false shows as such'); + t.equal(inspect(Object(false)), 'Object(' + inspect(false) + ')', 'Boolean false object shows as such'); + + t.end(); +}); + +test('Date', function (t) { + var now = new Date(); + t.equal(inspect(now), String(now), 'Date shows properly'); + t.equal(inspect(new Date(NaN)), 'Invalid Date', 'Invalid Date shows properly'); + + t.end(); +}); + +test('RegExps', function (t) { + t.equal(inspect(/a/g), '/a/g', 'regex shows properly'); + t.equal(inspect(new RegExp('abc', 'i')), '/abc/i', 'new RegExp shows properly'); + + var match = 'abc abc'.match(/[ab]+/); + delete match.groups; // for node < 10 + t.equal(inspect(match), '[ \'ab\', index: 0, input: \'abc abc\' ]', 'RegExp match object shows properly'); + + t.end(); +}); diff --git a/node_modules/object-inspect/util.inspect.js b/node_modules/object-inspect/util.inspect.js new file mode 100644 index 000000000..7784fab55 --- /dev/null +++ b/node_modules/object-inspect/util.inspect.js @@ -0,0 +1 @@ +module.exports = require('util').inspect; diff --git a/node_modules/on-finished/HISTORY.md b/node_modules/on-finished/HISTORY.md new file mode 100644 index 000000000..1917595a7 --- /dev/null +++ b/node_modules/on-finished/HISTORY.md @@ -0,0 +1,98 @@ +2.4.1 / 2022-02-22 +================== + + * Fix error on early async hooks implementations + +2.4.0 / 2022-02-21 +================== + + * Prevent loss of async hooks context + +2.3.0 / 2015-05-26 +================== + + * Add defined behavior for HTTP `CONNECT` requests + * Add defined behavior for HTTP `Upgrade` requests + * deps: ee-first@1.1.1 + +2.2.1 / 2015-04-22 +================== + + * Fix `isFinished(req)` when data buffered + +2.2.0 / 2014-12-22 +================== + + * Add message object to callback arguments + +2.1.1 / 2014-10-22 +================== + + * Fix handling of pipelined requests + +2.1.0 / 2014-08-16 +================== + + * Check if `socket` is detached + * Return `undefined` for `isFinished` if state unknown + +2.0.0 / 2014-08-16 +================== + + * Add `isFinished` function + * Move to `jshttp` organization + * Remove support for plain socket argument + * Rename to `on-finished` + * Support both `req` and `res` as arguments + * deps: ee-first@1.0.5 + +1.2.2 / 2014-06-10 +================== + + * Reduce listeners added to emitters + - avoids "event emitter leak" warnings when used multiple times on same request + +1.2.1 / 2014-06-08 +================== + + * Fix returned value when already finished + +1.2.0 / 2014-06-05 +================== + + * Call callback when called on already-finished socket + +1.1.4 / 2014-05-27 +================== + + * Support node.js 0.8 + +1.1.3 / 2014-04-30 +================== + + * Make sure errors passed as instanceof `Error` + +1.1.2 / 2014-04-18 +================== + + * Default the `socket` to passed-in object + +1.1.1 / 2014-01-16 +================== + + * Rename module to `finished` + +1.1.0 / 2013-12-25 +================== + + * Call callback when called on already-errored socket + +1.0.1 / 2013-12-20 +================== + + * Actually pass the error to the callback + +1.0.0 / 2013-12-20 +================== + + * Initial release diff --git a/node_modules/on-finished/LICENSE b/node_modules/on-finished/LICENSE new file mode 100644 index 000000000..5931fd23e --- /dev/null +++ b/node_modules/on-finished/LICENSE @@ -0,0 +1,23 @@ +(The MIT License) + +Copyright (c) 2013 Jonathan Ong +Copyright (c) 2014 Douglas Christopher Wilson + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +'Software'), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/node_modules/on-finished/README.md b/node_modules/on-finished/README.md new file mode 100644 index 000000000..8973cded6 --- /dev/null +++ b/node_modules/on-finished/README.md @@ -0,0 +1,162 @@ +# on-finished + +[![NPM Version][npm-version-image]][npm-url] +[![NPM Downloads][npm-downloads-image]][npm-url] +[![Node.js Version][node-image]][node-url] +[![Build Status][ci-image]][ci-url] +[![Coverage Status][coveralls-image]][coveralls-url] + +Execute a callback when a HTTP request closes, finishes, or errors. + +## Install + +This is a [Node.js](https://nodejs.org/en/) module available through the +[npm registry](https://www.npmjs.com/). Installation is done using the +[`npm install` command](https://docs.npmjs.com/getting-started/installing-npm-packages-locally): + +```sh +$ npm install on-finished +``` + +## API + +```js +var onFinished = require('on-finished') +``` + +### onFinished(res, listener) + +Attach a listener to listen for the response to finish. The listener will +be invoked only once when the response finished. If the response finished +to an error, the first argument will contain the error. If the response +has already finished, the listener will be invoked. + +Listening to the end of a response would be used to close things associated +with the response, like open files. + +Listener is invoked as `listener(err, res)`. + + + +```js +onFinished(res, function (err, res) { + // clean up open fds, etc. + // err contains the error if request error'd +}) +``` + +### onFinished(req, listener) + +Attach a listener to listen for the request to finish. The listener will +be invoked only once when the request finished. If the request finished +to an error, the first argument will contain the error. If the request +has already finished, the listener will be invoked. + +Listening to the end of a request would be used to know when to continue +after reading the data. + +Listener is invoked as `listener(err, req)`. + + + +```js +var data = '' + +req.setEncoding('utf8') +req.on('data', function (str) { + data += str +}) + +onFinished(req, function (err, req) { + // data is read unless there is err +}) +``` + +### onFinished.isFinished(res) + +Determine if `res` is already finished. This would be useful to check and +not even start certain operations if the response has already finished. + +### onFinished.isFinished(req) + +Determine if `req` is already finished. This would be useful to check and +not even start certain operations if the request has already finished. + +## Special Node.js requests + +### HTTP CONNECT method + +The meaning of the `CONNECT` method from RFC 7231, section 4.3.6: + +> The CONNECT method requests that the recipient establish a tunnel to +> the destination origin server identified by the request-target and, +> if successful, thereafter restrict its behavior to blind forwarding +> of packets, in both directions, until the tunnel is closed. Tunnels +> are commonly used to create an end-to-end virtual connection, through +> one or more proxies, which can then be secured using TLS (Transport +> Layer Security, [RFC5246]). + +In Node.js, these request objects come from the `'connect'` event on +the HTTP server. + +When this module is used on a HTTP `CONNECT` request, the request is +considered "finished" immediately, **due to limitations in the Node.js +interface**. This means if the `CONNECT` request contains a request entity, +the request will be considered "finished" even before it has been read. + +There is no such thing as a response object to a `CONNECT` request in +Node.js, so there is no support for one. + +### HTTP Upgrade request + +The meaning of the `Upgrade` header from RFC 7230, section 6.1: + +> The "Upgrade" header field is intended to provide a simple mechanism +> for transitioning from HTTP/1.1 to some other protocol on the same +> connection. + +In Node.js, these request objects come from the `'upgrade'` event on +the HTTP server. + +When this module is used on a HTTP request with an `Upgrade` header, the +request is considered "finished" immediately, **due to limitations in the +Node.js interface**. This means if the `Upgrade` request contains a request +entity, the request will be considered "finished" even before it has been +read. + +There is no such thing as a response object to a `Upgrade` request in +Node.js, so there is no support for one. + +## Example + +The following code ensures that file descriptors are always closed +once the response finishes. + +```js +var destroy = require('destroy') +var fs = require('fs') +var http = require('http') +var onFinished = require('on-finished') + +http.createServer(function onRequest (req, res) { + var stream = fs.createReadStream('package.json') + stream.pipe(res) + onFinished(res, function () { + destroy(stream) + }) +}) +``` + +## License + +[MIT](LICENSE) + +[ci-image]: https://badgen.net/github/checks/jshttp/on-finished/master?label=ci +[ci-url]: https://github.com/jshttp/on-finished/actions/workflows/ci.yml +[coveralls-image]: https://badgen.net/coveralls/c/github/jshttp/on-finished/master +[coveralls-url]: https://coveralls.io/r/jshttp/on-finished?branch=master +[node-image]: https://badgen.net/npm/node/on-finished +[node-url]: https://nodejs.org/en/download +[npm-downloads-image]: https://badgen.net/npm/dm/on-finished +[npm-url]: https://npmjs.org/package/on-finished +[npm-version-image]: https://badgen.net/npm/v/on-finished diff --git a/node_modules/on-finished/index.js b/node_modules/on-finished/index.js new file mode 100644 index 000000000..e68df7bde --- /dev/null +++ b/node_modules/on-finished/index.js @@ -0,0 +1,234 @@ +/*! + * on-finished + * Copyright(c) 2013 Jonathan Ong + * Copyright(c) 2014 Douglas Christopher Wilson + * MIT Licensed + */ + +'use strict' + +/** + * Module exports. + * @public + */ + +module.exports = onFinished +module.exports.isFinished = isFinished + +/** + * Module dependencies. + * @private + */ + +var asyncHooks = tryRequireAsyncHooks() +var first = require('ee-first') + +/** + * Variables. + * @private + */ + +/* istanbul ignore next */ +var defer = typeof setImmediate === 'function' + ? setImmediate + : function (fn) { process.nextTick(fn.bind.apply(fn, arguments)) } + +/** + * Invoke callback when the response has finished, useful for + * cleaning up resources afterwards. + * + * @param {object} msg + * @param {function} listener + * @return {object} + * @public + */ + +function onFinished (msg, listener) { + if (isFinished(msg) !== false) { + defer(listener, null, msg) + return msg + } + + // attach the listener to the message + attachListener(msg, wrap(listener)) + + return msg +} + +/** + * Determine if message is already finished. + * + * @param {object} msg + * @return {boolean} + * @public + */ + +function isFinished (msg) { + var socket = msg.socket + + if (typeof msg.finished === 'boolean') { + // OutgoingMessage + return Boolean(msg.finished || (socket && !socket.writable)) + } + + if (typeof msg.complete === 'boolean') { + // IncomingMessage + return Boolean(msg.upgrade || !socket || !socket.readable || (msg.complete && !msg.readable)) + } + + // don't know + return undefined +} + +/** + * Attach a finished listener to the message. + * + * @param {object} msg + * @param {function} callback + * @private + */ + +function attachFinishedListener (msg, callback) { + var eeMsg + var eeSocket + var finished = false + + function onFinish (error) { + eeMsg.cancel() + eeSocket.cancel() + + finished = true + callback(error) + } + + // finished on first message event + eeMsg = eeSocket = first([[msg, 'end', 'finish']], onFinish) + + function onSocket (socket) { + // remove listener + msg.removeListener('socket', onSocket) + + if (finished) return + if (eeMsg !== eeSocket) return + + // finished on first socket event + eeSocket = first([[socket, 'error', 'close']], onFinish) + } + + if (msg.socket) { + // socket already assigned + onSocket(msg.socket) + return + } + + // wait for socket to be assigned + msg.on('socket', onSocket) + + if (msg.socket === undefined) { + // istanbul ignore next: node.js 0.8 patch + patchAssignSocket(msg, onSocket) + } +} + +/** + * Attach the listener to the message. + * + * @param {object} msg + * @return {function} + * @private + */ + +function attachListener (msg, listener) { + var attached = msg.__onFinished + + // create a private single listener with queue + if (!attached || !attached.queue) { + attached = msg.__onFinished = createListener(msg) + attachFinishedListener(msg, attached) + } + + attached.queue.push(listener) +} + +/** + * Create listener on message. + * + * @param {object} msg + * @return {function} + * @private + */ + +function createListener (msg) { + function listener (err) { + if (msg.__onFinished === listener) msg.__onFinished = null + if (!listener.queue) return + + var queue = listener.queue + listener.queue = null + + for (var i = 0; i < queue.length; i++) { + queue[i](err, msg) + } + } + + listener.queue = [] + + return listener +} + +/** + * Patch ServerResponse.prototype.assignSocket for node.js 0.8. + * + * @param {ServerResponse} res + * @param {function} callback + * @private + */ + +// istanbul ignore next: node.js 0.8 patch +function patchAssignSocket (res, callback) { + var assignSocket = res.assignSocket + + if (typeof assignSocket !== 'function') return + + // res.on('socket', callback) is broken in 0.8 + res.assignSocket = function _assignSocket (socket) { + assignSocket.call(this, socket) + callback(socket) + } +} + +/** + * Try to require async_hooks + * @private + */ + +function tryRequireAsyncHooks () { + try { + return require('async_hooks') + } catch (e) { + return {} + } +} + +/** + * Wrap function with async resource, if possible. + * AsyncResource.bind static method backported. + * @private + */ + +function wrap (fn) { + var res + + // create anonymous resource + if (asyncHooks.AsyncResource) { + res = new asyncHooks.AsyncResource(fn.name || 'bound-anonymous-fn') + } + + // incompatible node.js + if (!res || !res.runInAsyncScope) { + return fn + } + + // return bound function + return res.runInAsyncScope.bind(res, fn, null) +} diff --git a/node_modules/on-finished/package.json b/node_modules/on-finished/package.json new file mode 100644 index 000000000..644cd814b --- /dev/null +++ b/node_modules/on-finished/package.json @@ -0,0 +1,39 @@ +{ + "name": "on-finished", + "description": "Execute a callback when a request closes, finishes, or errors", + "version": "2.4.1", + "contributors": [ + "Douglas Christopher Wilson ", + "Jonathan Ong (http://jongleberry.com)" + ], + "license": "MIT", + "repository": "jshttp/on-finished", + "dependencies": { + "ee-first": "1.1.1" + }, + "devDependencies": { + "eslint": "7.32.0", + "eslint-config-standard": "14.1.1", + "eslint-plugin-import": "2.25.4", + "eslint-plugin-markdown": "2.2.1", + "eslint-plugin-node": "11.1.0", + "eslint-plugin-promise": "5.2.0", + "eslint-plugin-standard": "4.1.0", + "mocha": "9.2.1", + "nyc": "15.1.0" + }, + "engines": { + "node": ">= 0.8" + }, + "files": [ + "HISTORY.md", + "LICENSE", + "index.js" + ], + "scripts": { + "lint": "eslint .", + "test": "mocha --reporter spec --bail --check-leaks test/", + "test-ci": "nyc --reporter=lcovonly --reporter=text npm test", + "test-cov": "nyc --reporter=html --reporter=text npm test" + } +} diff --git a/node_modules/parseurl/HISTORY.md b/node_modules/parseurl/HISTORY.md new file mode 100644 index 000000000..8e409541d --- /dev/null +++ b/node_modules/parseurl/HISTORY.md @@ -0,0 +1,58 @@ +1.3.3 / 2019-04-15 +================== + + * Fix Node.js 0.8 return value inconsistencies + +1.3.2 / 2017-09-09 +================== + + * perf: reduce overhead for full URLs + * perf: unroll the "fast-path" `RegExp` + +1.3.1 / 2016-01-17 +================== + + * perf: enable strict mode + +1.3.0 / 2014-08-09 +================== + + * Add `parseurl.original` for parsing `req.originalUrl` with fallback + * Return `undefined` if `req.url` is `undefined` + +1.2.0 / 2014-07-21 +================== + + * Cache URLs based on original value + * Remove no-longer-needed URL mis-parse work-around + * Simplify the "fast-path" `RegExp` + +1.1.3 / 2014-07-08 +================== + + * Fix typo + +1.1.2 / 2014-07-08 +================== + + * Seriously fix Node.js 0.8 compatibility + +1.1.1 / 2014-07-08 +================== + + * Fix Node.js 0.8 compatibility + +1.1.0 / 2014-07-08 +================== + + * Incorporate URL href-only parse fast-path + +1.0.1 / 2014-03-08 +================== + + * Add missing `require` + +1.0.0 / 2014-03-08 +================== + + * Genesis from `connect` diff --git a/node_modules/parseurl/LICENSE b/node_modules/parseurl/LICENSE new file mode 100644 index 000000000..27653d3db --- /dev/null +++ b/node_modules/parseurl/LICENSE @@ -0,0 +1,24 @@ + +(The MIT License) + +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2014-2017 Douglas Christopher Wilson + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +'Software'), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/node_modules/parseurl/README.md b/node_modules/parseurl/README.md new file mode 100644 index 000000000..443e716b8 --- /dev/null +++ b/node_modules/parseurl/README.md @@ -0,0 +1,133 @@ +# parseurl + +[![NPM Version][npm-version-image]][npm-url] +[![NPM Downloads][npm-downloads-image]][npm-url] +[![Node.js Version][node-image]][node-url] +[![Build Status][travis-image]][travis-url] +[![Test Coverage][coveralls-image]][coveralls-url] + +Parse a URL with memoization. + +## Install + +This is a [Node.js](https://nodejs.org/en/) module available through the +[npm registry](https://www.npmjs.com/). Installation is done using the +[`npm install` command](https://docs.npmjs.com/getting-started/installing-npm-packages-locally): + +```sh +$ npm install parseurl +``` + +## API + +```js +var parseurl = require('parseurl') +``` + +### parseurl(req) + +Parse the URL of the given request object (looks at the `req.url` property) +and return the result. The result is the same as `url.parse` in Node.js core. +Calling this function multiple times on the same `req` where `req.url` does +not change will return a cached parsed object, rather than parsing again. + +### parseurl.original(req) + +Parse the original URL of the given request object and return the result. +This works by trying to parse `req.originalUrl` if it is a string, otherwise +parses `req.url`. The result is the same as `url.parse` in Node.js core. +Calling this function multiple times on the same `req` where `req.originalUrl` +does not change will return a cached parsed object, rather than parsing again. + +## Benchmark + +```bash +$ npm run-script bench + +> parseurl@1.3.3 bench nodejs-parseurl +> node benchmark/index.js + + http_parser@2.8.0 + node@10.6.0 + v8@6.7.288.46-node.13 + uv@1.21.0 + zlib@1.2.11 + ares@1.14.0 + modules@64 + nghttp2@1.32.0 + napi@3 + openssl@1.1.0h + icu@61.1 + unicode@10.0 + cldr@33.0 + tz@2018c + +> node benchmark/fullurl.js + + Parsing URL "http://localhost:8888/foo/bar?user=tj&pet=fluffy" + + 4 tests completed. + + fasturl x 2,207,842 ops/sec ±3.76% (184 runs sampled) + nativeurl - legacy x 507,180 ops/sec ±0.82% (191 runs sampled) + nativeurl - whatwg x 290,044 ops/sec ±1.96% (189 runs sampled) + parseurl x 488,907 ops/sec ±2.13% (192 runs sampled) + +> node benchmark/pathquery.js + + Parsing URL "/foo/bar?user=tj&pet=fluffy" + + 4 tests completed. + + fasturl x 3,812,564 ops/sec ±3.15% (188 runs sampled) + nativeurl - legacy x 2,651,631 ops/sec ±1.68% (189 runs sampled) + nativeurl - whatwg x 161,837 ops/sec ±2.26% (189 runs sampled) + parseurl x 4,166,338 ops/sec ±2.23% (184 runs sampled) + +> node benchmark/samerequest.js + + Parsing URL "/foo/bar?user=tj&pet=fluffy" on same request object + + 4 tests completed. + + fasturl x 3,821,651 ops/sec ±2.42% (185 runs sampled) + nativeurl - legacy x 2,651,162 ops/sec ±1.90% (187 runs sampled) + nativeurl - whatwg x 175,166 ops/sec ±1.44% (188 runs sampled) + parseurl x 14,912,606 ops/sec ±3.59% (183 runs sampled) + +> node benchmark/simplepath.js + + Parsing URL "/foo/bar" + + 4 tests completed. + + fasturl x 12,421,765 ops/sec ±2.04% (191 runs sampled) + nativeurl - legacy x 7,546,036 ops/sec ±1.41% (188 runs sampled) + nativeurl - whatwg x 198,843 ops/sec ±1.83% (189 runs sampled) + parseurl x 24,244,006 ops/sec ±0.51% (194 runs sampled) + +> node benchmark/slash.js + + Parsing URL "/" + + 4 tests completed. + + fasturl x 17,159,456 ops/sec ±3.25% (188 runs sampled) + nativeurl - legacy x 11,635,097 ops/sec ±3.79% (184 runs sampled) + nativeurl - whatwg x 240,693 ops/sec ±0.83% (189 runs sampled) + parseurl x 42,279,067 ops/sec ±0.55% (190 runs sampled) +``` + +## License + + [MIT](LICENSE) + +[coveralls-image]: https://badgen.net/coveralls/c/github/pillarjs/parseurl/master +[coveralls-url]: https://coveralls.io/r/pillarjs/parseurl?branch=master +[node-image]: https://badgen.net/npm/node/parseurl +[node-url]: https://nodejs.org/en/download +[npm-downloads-image]: https://badgen.net/npm/dm/parseurl +[npm-url]: https://npmjs.org/package/parseurl +[npm-version-image]: https://badgen.net/npm/v/parseurl +[travis-image]: https://badgen.net/travis/pillarjs/parseurl/master +[travis-url]: https://travis-ci.org/pillarjs/parseurl diff --git a/node_modules/parseurl/index.js b/node_modules/parseurl/index.js new file mode 100644 index 000000000..ece722327 --- /dev/null +++ b/node_modules/parseurl/index.js @@ -0,0 +1,158 @@ +/*! + * parseurl + * Copyright(c) 2014 Jonathan Ong + * Copyright(c) 2014-2017 Douglas Christopher Wilson + * MIT Licensed + */ + +'use strict' + +/** + * Module dependencies. + * @private + */ + +var url = require('url') +var parse = url.parse +var Url = url.Url + +/** + * Module exports. + * @public + */ + +module.exports = parseurl +module.exports.original = originalurl + +/** + * Parse the `req` url with memoization. + * + * @param {ServerRequest} req + * @return {Object} + * @public + */ + +function parseurl (req) { + var url = req.url + + if (url === undefined) { + // URL is undefined + return undefined + } + + var parsed = req._parsedUrl + + if (fresh(url, parsed)) { + // Return cached URL parse + return parsed + } + + // Parse the URL + parsed = fastparse(url) + parsed._raw = url + + return (req._parsedUrl = parsed) +}; + +/** + * Parse the `req` original url with fallback and memoization. + * + * @param {ServerRequest} req + * @return {Object} + * @public + */ + +function originalurl (req) { + var url = req.originalUrl + + if (typeof url !== 'string') { + // Fallback + return parseurl(req) + } + + var parsed = req._parsedOriginalUrl + + if (fresh(url, parsed)) { + // Return cached URL parse + return parsed + } + + // Parse the URL + parsed = fastparse(url) + parsed._raw = url + + return (req._parsedOriginalUrl = parsed) +}; + +/** + * Parse the `str` url with fast-path short-cut. + * + * @param {string} str + * @return {Object} + * @private + */ + +function fastparse (str) { + if (typeof str !== 'string' || str.charCodeAt(0) !== 0x2f /* / */) { + return parse(str) + } + + var pathname = str + var query = null + var search = null + + // This takes the regexp from https://github.com/joyent/node/pull/7878 + // Which is /^(\/[^?#\s]*)(\?[^#\s]*)?$/ + // And unrolls it into a for loop + for (var i = 1; i < str.length; i++) { + switch (str.charCodeAt(i)) { + case 0x3f: /* ? */ + if (search === null) { + pathname = str.substring(0, i) + query = str.substring(i + 1) + search = str.substring(i) + } + break + case 0x09: /* \t */ + case 0x0a: /* \n */ + case 0x0c: /* \f */ + case 0x0d: /* \r */ + case 0x20: /* */ + case 0x23: /* # */ + case 0xa0: + case 0xfeff: + return parse(str) + } + } + + var url = Url !== undefined + ? new Url() + : {} + + url.path = str + url.href = str + url.pathname = pathname + + if (search !== null) { + url.query = query + url.search = search + } + + return url +} + +/** + * Determine if parsed is still fresh for url. + * + * @param {string} url + * @param {object} parsedUrl + * @return {boolean} + * @private + */ + +function fresh (url, parsedUrl) { + return typeof parsedUrl === 'object' && + parsedUrl !== null && + (Url === undefined || parsedUrl instanceof Url) && + parsedUrl._raw === url +} diff --git a/node_modules/parseurl/package.json b/node_modules/parseurl/package.json new file mode 100644 index 000000000..6b443ca7a --- /dev/null +++ b/node_modules/parseurl/package.json @@ -0,0 +1,40 @@ +{ + "name": "parseurl", + "description": "parse a url with memoization", + "version": "1.3.3", + "contributors": [ + "Douglas Christopher Wilson ", + "Jonathan Ong (http://jongleberry.com)" + ], + "repository": "pillarjs/parseurl", + "license": "MIT", + "devDependencies": { + "beautify-benchmark": "0.2.4", + "benchmark": "2.1.4", + "eslint": "5.16.0", + "eslint-config-standard": "12.0.0", + "eslint-plugin-import": "2.17.1", + "eslint-plugin-node": "7.0.1", + "eslint-plugin-promise": "4.1.1", + "eslint-plugin-standard": "4.0.0", + "fast-url-parser": "1.1.3", + "istanbul": "0.4.5", + "mocha": "6.1.3" + }, + "files": [ + "LICENSE", + "HISTORY.md", + "README.md", + "index.js" + ], + "engines": { + "node": ">= 0.8" + }, + "scripts": { + "bench": "node benchmark/index.js", + "lint": "eslint .", + "test": "mocha --check-leaks --bail --reporter spec test/", + "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --check-leaks --reporter dot test/", + "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --check-leaks --reporter spec test/" + } +} diff --git a/node_modules/path-to-regexp/History.md b/node_modules/path-to-regexp/History.md new file mode 100644 index 000000000..7f6587846 --- /dev/null +++ b/node_modules/path-to-regexp/History.md @@ -0,0 +1,36 @@ +0.1.7 / 2015-07-28 +================== + + * Fixed regression with escaped round brackets and matching groups. + +0.1.6 / 2015-06-19 +================== + + * Replace `index` feature by outputting all parameters, unnamed and named. + +0.1.5 / 2015-05-08 +================== + + * Add an index property for position in match result. + +0.1.4 / 2015-03-05 +================== + + * Add license information + +0.1.3 / 2014-07-06 +================== + + * Better array support + * Improved support for trailing slash in non-ending mode + +0.1.0 / 2014-03-06 +================== + + * add options.end + +0.0.2 / 2013-02-10 +================== + + * Update to match current express + * add .license property to component.json diff --git a/node_modules/path-to-regexp/LICENSE b/node_modules/path-to-regexp/LICENSE new file mode 100644 index 000000000..983fbe8ae --- /dev/null +++ b/node_modules/path-to-regexp/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/node_modules/path-to-regexp/Readme.md b/node_modules/path-to-regexp/Readme.md new file mode 100644 index 000000000..95452a6e9 --- /dev/null +++ b/node_modules/path-to-regexp/Readme.md @@ -0,0 +1,35 @@ +# Path-to-RegExp + +Turn an Express-style path string such as `/user/:name` into a regular expression. + +**Note:** This is a legacy branch. You should upgrade to `1.x`. + +## Usage + +```javascript +var pathToRegexp = require('path-to-regexp'); +``` + +### pathToRegexp(path, keys, options) + + - **path** A string in the express format, an array of such strings, or a regular expression + - **keys** An array to be populated with the keys present in the url. Once the function completes, this will be an array of strings. + - **options** + - **options.sensitive** Defaults to false, set this to true to make routes case sensitive + - **options.strict** Defaults to false, set this to true to make the trailing slash matter. + - **options.end** Defaults to true, set this to false to only match the prefix of the URL. + +```javascript +var keys = []; +var exp = pathToRegexp('/foo/:bar', keys); +//keys = ['bar'] +//exp = /^\/foo\/(?:([^\/]+?))\/?$/i +``` + +## Live Demo + +You can see a live demo of this library in use at [express-route-tester](http://forbeslindesay.github.com/express-route-tester/). + +## License + + MIT diff --git a/node_modules/path-to-regexp/index.js b/node_modules/path-to-regexp/index.js new file mode 100644 index 000000000..500d1dad0 --- /dev/null +++ b/node_modules/path-to-regexp/index.js @@ -0,0 +1,129 @@ +/** + * Expose `pathtoRegexp`. + */ + +module.exports = pathtoRegexp; + +/** + * Match matching groups in a regular expression. + */ +var MATCHING_GROUP_REGEXP = /\((?!\?)/g; + +/** + * Normalize the given path string, + * returning a regular expression. + * + * An empty array should be passed, + * which will contain the placeholder + * key names. For example "/user/:id" will + * then contain ["id"]. + * + * @param {String|RegExp|Array} path + * @param {Array} keys + * @param {Object} options + * @return {RegExp} + * @api private + */ + +function pathtoRegexp(path, keys, options) { + options = options || {}; + keys = keys || []; + var strict = options.strict; + var end = options.end !== false; + var flags = options.sensitive ? '' : 'i'; + var extraOffset = 0; + var keysOffset = keys.length; + var i = 0; + var name = 0; + var m; + + if (path instanceof RegExp) { + while (m = MATCHING_GROUP_REGEXP.exec(path.source)) { + keys.push({ + name: name++, + optional: false, + offset: m.index + }); + } + + return path; + } + + if (Array.isArray(path)) { + // Map array parts into regexps and return their source. We also pass + // the same keys and options instance into every generation to get + // consistent matching groups before we join the sources together. + path = path.map(function (value) { + return pathtoRegexp(value, keys, options).source; + }); + + return new RegExp('(?:' + path.join('|') + ')', flags); + } + + path = ('^' + path + (strict ? '' : path[path.length - 1] === '/' ? '?' : '/?')) + .replace(/\/\(/g, '/(?:') + .replace(/([\/\.])/g, '\\$1') + .replace(/(\\\/)?(\\\.)?:(\w+)(\(.*?\))?(\*)?(\?)?/g, function (match, slash, format, key, capture, star, optional, offset) { + slash = slash || ''; + format = format || ''; + capture = capture || '([^\\/' + format + ']+?)'; + optional = optional || ''; + + keys.push({ + name: key, + optional: !!optional, + offset: offset + extraOffset + }); + + var result = '' + + (optional ? '' : slash) + + '(?:' + + format + (optional ? slash : '') + capture + + (star ? '((?:[\\/' + format + '].+?)?)' : '') + + ')' + + optional; + + extraOffset += result.length - match.length; + + return result; + }) + .replace(/\*/g, function (star, index) { + var len = keys.length + + while (len-- > keysOffset && keys[len].offset > index) { + keys[len].offset += 3; // Replacement length minus asterisk length. + } + + return '(.*)'; + }); + + // This is a workaround for handling unnamed matching groups. + while (m = MATCHING_GROUP_REGEXP.exec(path)) { + var escapeCount = 0; + var index = m.index; + + while (path.charAt(--index) === '\\') { + escapeCount++; + } + + // It's possible to escape the bracket. + if (escapeCount % 2 === 1) { + continue; + } + + if (keysOffset + i === keys.length || keys[keysOffset + i].offset > m.index) { + keys.splice(keysOffset + i, 0, { + name: name++, // Unnamed matching groups must be consistently linear. + optional: false, + offset: m.index + }); + } + + i++; + } + + // If the path is non-ending, match until the end or a slash. + path += (end ? '$' : (path[path.length - 1] === '/' ? '' : '(?=\\/|$)')); + + return new RegExp(path, flags); +}; diff --git a/node_modules/path-to-regexp/package.json b/node_modules/path-to-regexp/package.json new file mode 100644 index 000000000..d4e51b574 --- /dev/null +++ b/node_modules/path-to-regexp/package.json @@ -0,0 +1,30 @@ +{ + "name": "path-to-regexp", + "description": "Express style path to RegExp utility", + "version": "0.1.7", + "files": [ + "index.js", + "LICENSE" + ], + "scripts": { + "test": "istanbul cover _mocha -- -R spec" + }, + "keywords": [ + "express", + "regexp" + ], + "component": { + "scripts": { + "path-to-regexp": "index.js" + } + }, + "license": "MIT", + "repository": { + "type": "git", + "url": "https://github.com/component/path-to-regexp.git" + }, + "devDependencies": { + "mocha": "^1.17.1", + "istanbul": "^0.2.6" + } +} diff --git a/node_modules/proxy-addr/HISTORY.md b/node_modules/proxy-addr/HISTORY.md new file mode 100644 index 000000000..8480242a0 --- /dev/null +++ b/node_modules/proxy-addr/HISTORY.md @@ -0,0 +1,161 @@ +2.0.7 / 2021-05-31 +================== + + * deps: forwarded@0.2.0 + - Use `req.socket` over deprecated `req.connection` + +2.0.6 / 2020-02-24 +================== + + * deps: ipaddr.js@1.9.1 + +2.0.5 / 2019-04-16 +================== + + * deps: ipaddr.js@1.9.0 + +2.0.4 / 2018-07-26 +================== + + * deps: ipaddr.js@1.8.0 + +2.0.3 / 2018-02-19 +================== + + * deps: ipaddr.js@1.6.0 + +2.0.2 / 2017-09-24 +================== + + * deps: forwarded@~0.1.2 + - perf: improve header parsing + - perf: reduce overhead when no `X-Forwarded-For` header + +2.0.1 / 2017-09-10 +================== + + * deps: forwarded@~0.1.1 + - Fix trimming leading / trailing OWS + - perf: hoist regular expression + * deps: ipaddr.js@1.5.2 + +2.0.0 / 2017-08-08 +================== + + * Drop support for Node.js below 0.10 + +1.1.5 / 2017-07-25 +================== + + * Fix array argument being altered + * deps: ipaddr.js@1.4.0 + +1.1.4 / 2017-03-24 +================== + + * deps: ipaddr.js@1.3.0 + +1.1.3 / 2017-01-14 +================== + + * deps: ipaddr.js@1.2.0 + +1.1.2 / 2016-05-29 +================== + + * deps: ipaddr.js@1.1.1 + - Fix IPv6-mapped IPv4 validation edge cases + +1.1.1 / 2016-05-03 +================== + + * Fix regression matching mixed versions against multiple subnets + +1.1.0 / 2016-05-01 +================== + + * Fix accepting various invalid netmasks + - IPv4 netmasks must be contingous + - IPv6 addresses cannot be used as a netmask + * deps: ipaddr.js@1.1.0 + +1.0.10 / 2015-12-09 +=================== + + * deps: ipaddr.js@1.0.5 + - Fix regression in `isValid` with non-string arguments + +1.0.9 / 2015-12-01 +================== + + * deps: ipaddr.js@1.0.4 + - Fix accepting some invalid IPv6 addresses + - Reject CIDRs with negative or overlong masks + * perf: enable strict mode + +1.0.8 / 2015-05-10 +================== + + * deps: ipaddr.js@1.0.1 + +1.0.7 / 2015-03-16 +================== + + * deps: ipaddr.js@0.1.9 + - Fix OOM on certain inputs to `isValid` + +1.0.6 / 2015-02-01 +================== + + * deps: ipaddr.js@0.1.8 + +1.0.5 / 2015-01-08 +================== + + * deps: ipaddr.js@0.1.6 + +1.0.4 / 2014-11-23 +================== + + * deps: ipaddr.js@0.1.5 + - Fix edge cases with `isValid` + +1.0.3 / 2014-09-21 +================== + + * Use `forwarded` npm module + +1.0.2 / 2014-09-18 +================== + + * Fix a global leak when multiple subnets are trusted + * Support Node.js 0.6 + * deps: ipaddr.js@0.1.3 + +1.0.1 / 2014-06-03 +================== + + * Fix links in npm package + +1.0.0 / 2014-05-08 +================== + + * Add `trust` argument to determine proxy trust on + * Accepts custom function + * Accepts IPv4/IPv6 address(es) + * Accepts subnets + * Accepts pre-defined names + * Add optional `trust` argument to `proxyaddr.all` to + stop at first untrusted + * Add `proxyaddr.compile` to pre-compile `trust` function + to make subsequent calls faster + +0.0.1 / 2014-05-04 +================== + + * Fix bad npm publish + +0.0.0 / 2014-05-04 +================== + + * Initial release diff --git a/node_modules/proxy-addr/LICENSE b/node_modules/proxy-addr/LICENSE new file mode 100644 index 000000000..cab251c2b --- /dev/null +++ b/node_modules/proxy-addr/LICENSE @@ -0,0 +1,22 @@ +(The MIT License) + +Copyright (c) 2014-2016 Douglas Christopher Wilson + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +'Software'), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/node_modules/proxy-addr/README.md b/node_modules/proxy-addr/README.md new file mode 100644 index 000000000..69c0b63ea --- /dev/null +++ b/node_modules/proxy-addr/README.md @@ -0,0 +1,139 @@ +# proxy-addr + +[![NPM Version][npm-version-image]][npm-url] +[![NPM Downloads][npm-downloads-image]][npm-url] +[![Node.js Version][node-image]][node-url] +[![Build Status][ci-image]][ci-url] +[![Test Coverage][coveralls-image]][coveralls-url] + +Determine address of proxied request + +## Install + +This is a [Node.js](https://nodejs.org/en/) module available through the +[npm registry](https://www.npmjs.com/). Installation is done using the +[`npm install` command](https://docs.npmjs.com/getting-started/installing-npm-packages-locally): + +```sh +$ npm install proxy-addr +``` + +## API + +```js +var proxyaddr = require('proxy-addr') +``` + +### proxyaddr(req, trust) + +Return the address of the request, using the given `trust` parameter. + +The `trust` argument is a function that returns `true` if you trust +the address, `false` if you don't. The closest untrusted address is +returned. + +```js +proxyaddr(req, function (addr) { return addr === '127.0.0.1' }) +proxyaddr(req, function (addr, i) { return i < 1 }) +``` + +The `trust` arugment may also be a single IP address string or an +array of trusted addresses, as plain IP addresses, CIDR-formatted +strings, or IP/netmask strings. + +```js +proxyaddr(req, '127.0.0.1') +proxyaddr(req, ['127.0.0.0/8', '10.0.0.0/8']) +proxyaddr(req, ['127.0.0.0/255.0.0.0', '192.168.0.0/255.255.0.0']) +``` + +This module also supports IPv6. Your IPv6 addresses will be normalized +automatically (i.e. `fe80::00ed:1` equals `fe80:0:0:0:0:0:ed:1`). + +```js +proxyaddr(req, '::1') +proxyaddr(req, ['::1/128', 'fe80::/10']) +``` + +This module will automatically work with IPv4-mapped IPv6 addresses +as well to support node.js in IPv6-only mode. This means that you do +not have to specify both `::ffff:a00:1` and `10.0.0.1`. + +As a convenience, this module also takes certain pre-defined names +in addition to IP addresses, which expand into IP addresses: + +```js +proxyaddr(req, 'loopback') +proxyaddr(req, ['loopback', 'fc00:ac:1ab5:fff::1/64']) +``` + + * `loopback`: IPv4 and IPv6 loopback addresses (like `::1` and + `127.0.0.1`). + * `linklocal`: IPv4 and IPv6 link-local addresses (like + `fe80::1:1:1:1` and `169.254.0.1`). + * `uniquelocal`: IPv4 private addresses and IPv6 unique-local + addresses (like `fc00:ac:1ab5:fff::1` and `192.168.0.1`). + +When `trust` is specified as a function, it will be called for each +address to determine if it is a trusted address. The function is +given two arguments: `addr` and `i`, where `addr` is a string of +the address to check and `i` is a number that represents the distance +from the socket address. + +### proxyaddr.all(req, [trust]) + +Return all the addresses of the request, optionally stopping at the +first untrusted. This array is ordered from closest to furthest +(i.e. `arr[0] === req.connection.remoteAddress`). + +```js +proxyaddr.all(req) +``` + +The optional `trust` argument takes the same arguments as `trust` +does in `proxyaddr(req, trust)`. + +```js +proxyaddr.all(req, 'loopback') +``` + +### proxyaddr.compile(val) + +Compiles argument `val` into a `trust` function. This function takes +the same arguments as `trust` does in `proxyaddr(req, trust)` and +returns a function suitable for `proxyaddr(req, trust)`. + +```js +var trust = proxyaddr.compile('loopback') +var addr = proxyaddr(req, trust) +``` + +This function is meant to be optimized for use against every request. +It is recommend to compile a trust function up-front for the trusted +configuration and pass that to `proxyaddr(req, trust)` for each request. + +## Testing + +```sh +$ npm test +``` + +## Benchmarks + +```sh +$ npm run-script bench +``` + +## License + +[MIT](LICENSE) + +[ci-image]: https://badgen.net/github/checks/jshttp/proxy-addr/master?label=ci +[ci-url]: https://github.com/jshttp/proxy-addr/actions?query=workflow%3Aci +[coveralls-image]: https://badgen.net/coveralls/c/github/jshttp/proxy-addr/master +[coveralls-url]: https://coveralls.io/r/jshttp/proxy-addr?branch=master +[node-image]: https://badgen.net/npm/node/proxy-addr +[node-url]: https://nodejs.org/en/download +[npm-downloads-image]: https://badgen.net/npm/dm/proxy-addr +[npm-url]: https://npmjs.org/package/proxy-addr +[npm-version-image]: https://badgen.net/npm/v/proxy-addr diff --git a/node_modules/proxy-addr/index.js b/node_modules/proxy-addr/index.js new file mode 100644 index 000000000..a909b0506 --- /dev/null +++ b/node_modules/proxy-addr/index.js @@ -0,0 +1,327 @@ +/*! + * proxy-addr + * Copyright(c) 2014-2016 Douglas Christopher Wilson + * MIT Licensed + */ + +'use strict' + +/** + * Module exports. + * @public + */ + +module.exports = proxyaddr +module.exports.all = alladdrs +module.exports.compile = compile + +/** + * Module dependencies. + * @private + */ + +var forwarded = require('forwarded') +var ipaddr = require('ipaddr.js') + +/** + * Variables. + * @private + */ + +var DIGIT_REGEXP = /^[0-9]+$/ +var isip = ipaddr.isValid +var parseip = ipaddr.parse + +/** + * Pre-defined IP ranges. + * @private + */ + +var IP_RANGES = { + linklocal: ['169.254.0.0/16', 'fe80::/10'], + loopback: ['127.0.0.1/8', '::1/128'], + uniquelocal: ['10.0.0.0/8', '172.16.0.0/12', '192.168.0.0/16', 'fc00::/7'] +} + +/** + * Get all addresses in the request, optionally stopping + * at the first untrusted. + * + * @param {Object} request + * @param {Function|Array|String} [trust] + * @public + */ + +function alladdrs (req, trust) { + // get addresses + var addrs = forwarded(req) + + if (!trust) { + // Return all addresses + return addrs + } + + if (typeof trust !== 'function') { + trust = compile(trust) + } + + for (var i = 0; i < addrs.length - 1; i++) { + if (trust(addrs[i], i)) continue + + addrs.length = i + 1 + } + + return addrs +} + +/** + * Compile argument into trust function. + * + * @param {Array|String} val + * @private + */ + +function compile (val) { + if (!val) { + throw new TypeError('argument is required') + } + + var trust + + if (typeof val === 'string') { + trust = [val] + } else if (Array.isArray(val)) { + trust = val.slice() + } else { + throw new TypeError('unsupported trust argument') + } + + for (var i = 0; i < trust.length; i++) { + val = trust[i] + + if (!Object.prototype.hasOwnProperty.call(IP_RANGES, val)) { + continue + } + + // Splice in pre-defined range + val = IP_RANGES[val] + trust.splice.apply(trust, [i, 1].concat(val)) + i += val.length - 1 + } + + return compileTrust(compileRangeSubnets(trust)) +} + +/** + * Compile `arr` elements into range subnets. + * + * @param {Array} arr + * @private + */ + +function compileRangeSubnets (arr) { + var rangeSubnets = new Array(arr.length) + + for (var i = 0; i < arr.length; i++) { + rangeSubnets[i] = parseipNotation(arr[i]) + } + + return rangeSubnets +} + +/** + * Compile range subnet array into trust function. + * + * @param {Array} rangeSubnets + * @private + */ + +function compileTrust (rangeSubnets) { + // Return optimized function based on length + var len = rangeSubnets.length + return len === 0 + ? trustNone + : len === 1 + ? trustSingle(rangeSubnets[0]) + : trustMulti(rangeSubnets) +} + +/** + * Parse IP notation string into range subnet. + * + * @param {String} note + * @private + */ + +function parseipNotation (note) { + var pos = note.lastIndexOf('/') + var str = pos !== -1 + ? note.substring(0, pos) + : note + + if (!isip(str)) { + throw new TypeError('invalid IP address: ' + str) + } + + var ip = parseip(str) + + if (pos === -1 && ip.kind() === 'ipv6' && ip.isIPv4MappedAddress()) { + // Store as IPv4 + ip = ip.toIPv4Address() + } + + var max = ip.kind() === 'ipv6' + ? 128 + : 32 + + var range = pos !== -1 + ? note.substring(pos + 1, note.length) + : null + + if (range === null) { + range = max + } else if (DIGIT_REGEXP.test(range)) { + range = parseInt(range, 10) + } else if (ip.kind() === 'ipv4' && isip(range)) { + range = parseNetmask(range) + } else { + range = null + } + + if (range <= 0 || range > max) { + throw new TypeError('invalid range on address: ' + note) + } + + return [ip, range] +} + +/** + * Parse netmask string into CIDR range. + * + * @param {String} netmask + * @private + */ + +function parseNetmask (netmask) { + var ip = parseip(netmask) + var kind = ip.kind() + + return kind === 'ipv4' + ? ip.prefixLengthFromSubnetMask() + : null +} + +/** + * Determine address of proxied request. + * + * @param {Object} request + * @param {Function|Array|String} trust + * @public + */ + +function proxyaddr (req, trust) { + if (!req) { + throw new TypeError('req argument is required') + } + + if (!trust) { + throw new TypeError('trust argument is required') + } + + var addrs = alladdrs(req, trust) + var addr = addrs[addrs.length - 1] + + return addr +} + +/** + * Static trust function to trust nothing. + * + * @private + */ + +function trustNone () { + return false +} + +/** + * Compile trust function for multiple subnets. + * + * @param {Array} subnets + * @private + */ + +function trustMulti (subnets) { + return function trust (addr) { + if (!isip(addr)) return false + + var ip = parseip(addr) + var ipconv + var kind = ip.kind() + + for (var i = 0; i < subnets.length; i++) { + var subnet = subnets[i] + var subnetip = subnet[0] + var subnetkind = subnetip.kind() + var subnetrange = subnet[1] + var trusted = ip + + if (kind !== subnetkind) { + if (subnetkind === 'ipv4' && !ip.isIPv4MappedAddress()) { + // Incompatible IP addresses + continue + } + + if (!ipconv) { + // Convert IP to match subnet IP kind + ipconv = subnetkind === 'ipv4' + ? ip.toIPv4Address() + : ip.toIPv4MappedAddress() + } + + trusted = ipconv + } + + if (trusted.match(subnetip, subnetrange)) { + return true + } + } + + return false + } +} + +/** + * Compile trust function for single subnet. + * + * @param {Object} subnet + * @private + */ + +function trustSingle (subnet) { + var subnetip = subnet[0] + var subnetkind = subnetip.kind() + var subnetisipv4 = subnetkind === 'ipv4' + var subnetrange = subnet[1] + + return function trust (addr) { + if (!isip(addr)) return false + + var ip = parseip(addr) + var kind = ip.kind() + + if (kind !== subnetkind) { + if (subnetisipv4 && !ip.isIPv4MappedAddress()) { + // Incompatible IP addresses + return false + } + + // Convert IP to match subnet IP kind + ip = subnetisipv4 + ? ip.toIPv4Address() + : ip.toIPv4MappedAddress() + } + + return ip.match(subnetip, subnetrange) + } +} diff --git a/node_modules/proxy-addr/package.json b/node_modules/proxy-addr/package.json new file mode 100644 index 000000000..24ba8f7db --- /dev/null +++ b/node_modules/proxy-addr/package.json @@ -0,0 +1,47 @@ +{ + "name": "proxy-addr", + "description": "Determine address of proxied request", + "version": "2.0.7", + "author": "Douglas Christopher Wilson ", + "license": "MIT", + "keywords": [ + "ip", + "proxy", + "x-forwarded-for" + ], + "repository": "jshttp/proxy-addr", + "dependencies": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "devDependencies": { + "benchmark": "2.1.4", + "beautify-benchmark": "0.2.4", + "deep-equal": "1.0.1", + "eslint": "7.26.0", + "eslint-config-standard": "14.1.1", + "eslint-plugin-import": "2.23.4", + "eslint-plugin-markdown": "2.2.0", + "eslint-plugin-node": "11.1.0", + "eslint-plugin-promise": "4.3.1", + "eslint-plugin-standard": "4.1.0", + "mocha": "8.4.0", + "nyc": "15.1.0" + }, + "files": [ + "LICENSE", + "HISTORY.md", + "README.md", + "index.js" + ], + "engines": { + "node": ">= 0.10" + }, + "scripts": { + "bench": "node benchmark/index.js", + "lint": "eslint .", + "test": "mocha --reporter spec --bail --check-leaks test/", + "test-ci": "nyc --reporter=lcov --reporter=text npm test", + "test-cov": "nyc --reporter=html --reporter=text npm test" + } +} diff --git a/node_modules/punycode/LICENSE-MIT.txt b/node_modules/punycode/LICENSE-MIT.txt new file mode 100644 index 000000000..a41e0a7ef --- /dev/null +++ b/node_modules/punycode/LICENSE-MIT.txt @@ -0,0 +1,20 @@ +Copyright Mathias Bynens + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/node_modules/punycode/README.md b/node_modules/punycode/README.md new file mode 100644 index 000000000..ee2f9d633 --- /dev/null +++ b/node_modules/punycode/README.md @@ -0,0 +1,122 @@ +# Punycode.js [![Build status](https://travis-ci.org/bestiejs/punycode.js.svg?branch=master)](https://travis-ci.org/bestiejs/punycode.js) [![Code coverage status](http://img.shields.io/codecov/c/github/bestiejs/punycode.js.svg)](https://codecov.io/gh/bestiejs/punycode.js) [![Dependency status](https://gemnasium.com/bestiejs/punycode.js.svg)](https://gemnasium.com/bestiejs/punycode.js) + +Punycode.js is a robust Punycode converter that fully complies to [RFC 3492](https://tools.ietf.org/html/rfc3492) and [RFC 5891](https://tools.ietf.org/html/rfc5891). + +This JavaScript library is the result of comparing, optimizing and documenting different open-source implementations of the Punycode algorithm: + +* [The C example code from RFC 3492](https://tools.ietf.org/html/rfc3492#appendix-C) +* [`punycode.c` by _Markus W. Scherer_ (IBM)](http://opensource.apple.com/source/ICU/ICU-400.42/icuSources/common/punycode.c) +* [`punycode.c` by _Ben Noordhuis_](https://github.com/bnoordhuis/punycode/blob/master/punycode.c) +* [JavaScript implementation by _some_](http://stackoverflow.com/questions/183485/can-anyone-recommend-a-good-free-javascript-for-punycode-to-unicode-conversion/301287#301287) +* [`punycode.js` by _Ben Noordhuis_](https://github.com/joyent/node/blob/426298c8c1c0d5b5224ac3658c41e7c2a3fe9377/lib/punycode.js) (note: [not fully compliant](https://github.com/joyent/node/issues/2072)) + +This project was [bundled](https://github.com/joyent/node/blob/master/lib/punycode.js) with Node.js from [v0.6.2+](https://github.com/joyent/node/compare/975f1930b1...61e796decc) until [v7](https://github.com/nodejs/node/pull/7941) (soft-deprecated). + +The current version supports recent versions of Node.js only. It provides a CommonJS module and an ES6 module. For the old version that offers the same functionality with broader support, including Rhino, Ringo, Narwhal, and web browsers, see [v1.4.1](https://github.com/bestiejs/punycode.js/releases/tag/v1.4.1). + +## Installation + +Via [npm](https://www.npmjs.com/): + +```bash +npm install punycode --save +``` + +In [Node.js](https://nodejs.org/): + +```js +const punycode = require('punycode'); +``` + +## API + +### `punycode.decode(string)` + +Converts a Punycode string of ASCII symbols to a string of Unicode symbols. + +```js +// decode domain name parts +punycode.decode('maana-pta'); // 'mañana' +punycode.decode('--dqo34k'); // '☃-⌘' +``` + +### `punycode.encode(string)` + +Converts a string of Unicode symbols to a Punycode string of ASCII symbols. + +```js +// encode domain name parts +punycode.encode('mañana'); // 'maana-pta' +punycode.encode('☃-⌘'); // '--dqo34k' +``` + +### `punycode.toUnicode(input)` + +Converts a Punycode string representing a domain name or an email address to Unicode. Only the Punycoded parts of the input will be converted, i.e. it doesn’t matter if you call it on a string that has already been converted to Unicode. + +```js +// decode domain names +punycode.toUnicode('xn--maana-pta.com'); +// → 'mañana.com' +punycode.toUnicode('xn----dqo34k.com'); +// → '☃-⌘.com' + +// decode email addresses +punycode.toUnicode('джумла@xn--p-8sbkgc5ag7bhce.xn--ba-lmcq'); +// → 'джумла@джpумлатест.bрфa' +``` + +### `punycode.toASCII(input)` + +Converts a lowercased Unicode string representing a domain name or an email address to Punycode. Only the non-ASCII parts of the input will be converted, i.e. it doesn’t matter if you call it with a domain that’s already in ASCII. + +```js +// encode domain names +punycode.toASCII('mañana.com'); +// → 'xn--maana-pta.com' +punycode.toASCII('☃-⌘.com'); +// → 'xn----dqo34k.com' + +// encode email addresses +punycode.toASCII('джумла@джpумлатест.bрфa'); +// → 'джумла@xn--p-8sbkgc5ag7bhce.xn--ba-lmcq' +``` + +### `punycode.ucs2` + +#### `punycode.ucs2.decode(string)` + +Creates an array containing the numeric code point values of each Unicode symbol in the string. While [JavaScript uses UCS-2 internally](https://mathiasbynens.be/notes/javascript-encoding), this function will convert a pair of surrogate halves (each of which UCS-2 exposes as separate characters) into a single code point, matching UTF-16. + +```js +punycode.ucs2.decode('abc'); +// → [0x61, 0x62, 0x63] +// surrogate pair for U+1D306 TETRAGRAM FOR CENTRE: +punycode.ucs2.decode('\uD834\uDF06'); +// → [0x1D306] +``` + +#### `punycode.ucs2.encode(codePoints)` + +Creates a string based on an array of numeric code point values. + +```js +punycode.ucs2.encode([0x61, 0x62, 0x63]); +// → 'abc' +punycode.ucs2.encode([0x1D306]); +// → '\uD834\uDF06' +``` + +### `punycode.version` + +A string representing the current Punycode.js version number. + +## Author + +| [![twitter/mathias](https://gravatar.com/avatar/24e08a9ea84deb17ae121074d0f17125?s=70)](https://twitter.com/mathias "Follow @mathias on Twitter") | +|---| +| [Mathias Bynens](https://mathiasbynens.be/) | + +## License + +Punycode.js is available under the [MIT](https://mths.be/mit) license. diff --git a/node_modules/punycode/package.json b/node_modules/punycode/package.json new file mode 100644 index 000000000..9202ccf8c --- /dev/null +++ b/node_modules/punycode/package.json @@ -0,0 +1,58 @@ +{ + "name": "punycode", + "version": "2.1.1", + "description": "A robust Punycode converter that fully complies to RFC 3492 and RFC 5891, and works on nearly all JavaScript platforms.", + "homepage": "https://mths.be/punycode", + "main": "punycode.js", + "jsnext:main": "punycode.es6.js", + "module": "punycode.es6.js", + "engines": { + "node": ">=6" + }, + "keywords": [ + "punycode", + "unicode", + "idn", + "idna", + "dns", + "url", + "domain" + ], + "license": "MIT", + "author": { + "name": "Mathias Bynens", + "url": "https://mathiasbynens.be/" + }, + "contributors": [ + { + "name": "Mathias Bynens", + "url": "https://mathiasbynens.be/" + } + ], + "repository": { + "type": "git", + "url": "https://github.com/bestiejs/punycode.js.git" + }, + "bugs": "https://github.com/bestiejs/punycode.js/issues", + "files": [ + "LICENSE-MIT.txt", + "punycode.js", + "punycode.es6.js" + ], + "scripts": { + "test": "mocha tests", + "prepublish": "node scripts/prepublish.js" + }, + "devDependencies": { + "codecov": "^1.0.1", + "istanbul": "^0.4.1", + "mocha": "^2.5.3" + }, + "jspm": { + "map": { + "./punycode.js": { + "node": "@node/punycode" + } + } + } +} diff --git a/node_modules/punycode/punycode.es6.js b/node_modules/punycode/punycode.es6.js new file mode 100644 index 000000000..4610bc9eb --- /dev/null +++ b/node_modules/punycode/punycode.es6.js @@ -0,0 +1,441 @@ +'use strict'; + +/** Highest positive signed 32-bit float value */ +const maxInt = 2147483647; // aka. 0x7FFFFFFF or 2^31-1 + +/** Bootstring parameters */ +const base = 36; +const tMin = 1; +const tMax = 26; +const skew = 38; +const damp = 700; +const initialBias = 72; +const initialN = 128; // 0x80 +const delimiter = '-'; // '\x2D' + +/** Regular expressions */ +const regexPunycode = /^xn--/; +const regexNonASCII = /[^\0-\x7E]/; // non-ASCII chars +const regexSeparators = /[\x2E\u3002\uFF0E\uFF61]/g; // RFC 3490 separators + +/** Error messages */ +const errors = { + 'overflow': 'Overflow: input needs wider integers to process', + 'not-basic': 'Illegal input >= 0x80 (not a basic code point)', + 'invalid-input': 'Invalid input' +}; + +/** Convenience shortcuts */ +const baseMinusTMin = base - tMin; +const floor = Math.floor; +const stringFromCharCode = String.fromCharCode; + +/*--------------------------------------------------------------------------*/ + +/** + * A generic error utility function. + * @private + * @param {String} type The error type. + * @returns {Error} Throws a `RangeError` with the applicable error message. + */ +function error(type) { + throw new RangeError(errors[type]); +} + +/** + * A generic `Array#map` utility function. + * @private + * @param {Array} array The array to iterate over. + * @param {Function} callback The function that gets called for every array + * item. + * @returns {Array} A new array of values returned by the callback function. + */ +function map(array, fn) { + const result = []; + let length = array.length; + while (length--) { + result[length] = fn(array[length]); + } + return result; +} + +/** + * A simple `Array#map`-like wrapper to work with domain name strings or email + * addresses. + * @private + * @param {String} domain The domain name or email address. + * @param {Function} callback The function that gets called for every + * character. + * @returns {Array} A new string of characters returned by the callback + * function. + */ +function mapDomain(string, fn) { + const parts = string.split('@'); + let result = ''; + if (parts.length > 1) { + // In email addresses, only the domain name should be punycoded. Leave + // the local part (i.e. everything up to `@`) intact. + result = parts[0] + '@'; + string = parts[1]; + } + // Avoid `split(regex)` for IE8 compatibility. See #17. + string = string.replace(regexSeparators, '\x2E'); + const labels = string.split('.'); + const encoded = map(labels, fn).join('.'); + return result + encoded; +} + +/** + * Creates an array containing the numeric code points of each Unicode + * character in the string. While JavaScript uses UCS-2 internally, + * this function will convert a pair of surrogate halves (each of which + * UCS-2 exposes as separate characters) into a single code point, + * matching UTF-16. + * @see `punycode.ucs2.encode` + * @see + * @memberOf punycode.ucs2 + * @name decode + * @param {String} string The Unicode input string (UCS-2). + * @returns {Array} The new array of code points. + */ +function ucs2decode(string) { + const output = []; + let counter = 0; + const length = string.length; + while (counter < length) { + const value = string.charCodeAt(counter++); + if (value >= 0xD800 && value <= 0xDBFF && counter < length) { + // It's a high surrogate, and there is a next character. + const extra = string.charCodeAt(counter++); + if ((extra & 0xFC00) == 0xDC00) { // Low surrogate. + output.push(((value & 0x3FF) << 10) + (extra & 0x3FF) + 0x10000); + } else { + // It's an unmatched surrogate; only append this code unit, in case the + // next code unit is the high surrogate of a surrogate pair. + output.push(value); + counter--; + } + } else { + output.push(value); + } + } + return output; +} + +/** + * Creates a string based on an array of numeric code points. + * @see `punycode.ucs2.decode` + * @memberOf punycode.ucs2 + * @name encode + * @param {Array} codePoints The array of numeric code points. + * @returns {String} The new Unicode string (UCS-2). + */ +const ucs2encode = array => String.fromCodePoint(...array); + +/** + * Converts a basic code point into a digit/integer. + * @see `digitToBasic()` + * @private + * @param {Number} codePoint The basic numeric code point value. + * @returns {Number} The numeric value of a basic code point (for use in + * representing integers) in the range `0` to `base - 1`, or `base` if + * the code point does not represent a value. + */ +const basicToDigit = function(codePoint) { + if (codePoint - 0x30 < 0x0A) { + return codePoint - 0x16; + } + if (codePoint - 0x41 < 0x1A) { + return codePoint - 0x41; + } + if (codePoint - 0x61 < 0x1A) { + return codePoint - 0x61; + } + return base; +}; + +/** + * Converts a digit/integer into a basic code point. + * @see `basicToDigit()` + * @private + * @param {Number} digit The numeric value of a basic code point. + * @returns {Number} The basic code point whose value (when used for + * representing integers) is `digit`, which needs to be in the range + * `0` to `base - 1`. If `flag` is non-zero, the uppercase form is + * used; else, the lowercase form is used. The behavior is undefined + * if `flag` is non-zero and `digit` has no uppercase form. + */ +const digitToBasic = function(digit, flag) { + // 0..25 map to ASCII a..z or A..Z + // 26..35 map to ASCII 0..9 + return digit + 22 + 75 * (digit < 26) - ((flag != 0) << 5); +}; + +/** + * Bias adaptation function as per section 3.4 of RFC 3492. + * https://tools.ietf.org/html/rfc3492#section-3.4 + * @private + */ +const adapt = function(delta, numPoints, firstTime) { + let k = 0; + delta = firstTime ? floor(delta / damp) : delta >> 1; + delta += floor(delta / numPoints); + for (/* no initialization */; delta > baseMinusTMin * tMax >> 1; k += base) { + delta = floor(delta / baseMinusTMin); + } + return floor(k + (baseMinusTMin + 1) * delta / (delta + skew)); +}; + +/** + * Converts a Punycode string of ASCII-only symbols to a string of Unicode + * symbols. + * @memberOf punycode + * @param {String} input The Punycode string of ASCII-only symbols. + * @returns {String} The resulting string of Unicode symbols. + */ +const decode = function(input) { + // Don't use UCS-2. + const output = []; + const inputLength = input.length; + let i = 0; + let n = initialN; + let bias = initialBias; + + // Handle the basic code points: let `basic` be the number of input code + // points before the last delimiter, or `0` if there is none, then copy + // the first basic code points to the output. + + let basic = input.lastIndexOf(delimiter); + if (basic < 0) { + basic = 0; + } + + for (let j = 0; j < basic; ++j) { + // if it's not a basic code point + if (input.charCodeAt(j) >= 0x80) { + error('not-basic'); + } + output.push(input.charCodeAt(j)); + } + + // Main decoding loop: start just after the last delimiter if any basic code + // points were copied; start at the beginning otherwise. + + for (let index = basic > 0 ? basic + 1 : 0; index < inputLength; /* no final expression */) { + + // `index` is the index of the next character to be consumed. + // Decode a generalized variable-length integer into `delta`, + // which gets added to `i`. The overflow checking is easier + // if we increase `i` as we go, then subtract off its starting + // value at the end to obtain `delta`. + let oldi = i; + for (let w = 1, k = base; /* no condition */; k += base) { + + if (index >= inputLength) { + error('invalid-input'); + } + + const digit = basicToDigit(input.charCodeAt(index++)); + + if (digit >= base || digit > floor((maxInt - i) / w)) { + error('overflow'); + } + + i += digit * w; + const t = k <= bias ? tMin : (k >= bias + tMax ? tMax : k - bias); + + if (digit < t) { + break; + } + + const baseMinusT = base - t; + if (w > floor(maxInt / baseMinusT)) { + error('overflow'); + } + + w *= baseMinusT; + + } + + const out = output.length + 1; + bias = adapt(i - oldi, out, oldi == 0); + + // `i` was supposed to wrap around from `out` to `0`, + // incrementing `n` each time, so we'll fix that now: + if (floor(i / out) > maxInt - n) { + error('overflow'); + } + + n += floor(i / out); + i %= out; + + // Insert `n` at position `i` of the output. + output.splice(i++, 0, n); + + } + + return String.fromCodePoint(...output); +}; + +/** + * Converts a string of Unicode symbols (e.g. a domain name label) to a + * Punycode string of ASCII-only symbols. + * @memberOf punycode + * @param {String} input The string of Unicode symbols. + * @returns {String} The resulting Punycode string of ASCII-only symbols. + */ +const encode = function(input) { + const output = []; + + // Convert the input in UCS-2 to an array of Unicode code points. + input = ucs2decode(input); + + // Cache the length. + let inputLength = input.length; + + // Initialize the state. + let n = initialN; + let delta = 0; + let bias = initialBias; + + // Handle the basic code points. + for (const currentValue of input) { + if (currentValue < 0x80) { + output.push(stringFromCharCode(currentValue)); + } + } + + let basicLength = output.length; + let handledCPCount = basicLength; + + // `handledCPCount` is the number of code points that have been handled; + // `basicLength` is the number of basic code points. + + // Finish the basic string with a delimiter unless it's empty. + if (basicLength) { + output.push(delimiter); + } + + // Main encoding loop: + while (handledCPCount < inputLength) { + + // All non-basic code points < n have been handled already. Find the next + // larger one: + let m = maxInt; + for (const currentValue of input) { + if (currentValue >= n && currentValue < m) { + m = currentValue; + } + } + + // Increase `delta` enough to advance the decoder's state to , + // but guard against overflow. + const handledCPCountPlusOne = handledCPCount + 1; + if (m - n > floor((maxInt - delta) / handledCPCountPlusOne)) { + error('overflow'); + } + + delta += (m - n) * handledCPCountPlusOne; + n = m; + + for (const currentValue of input) { + if (currentValue < n && ++delta > maxInt) { + error('overflow'); + } + if (currentValue == n) { + // Represent delta as a generalized variable-length integer. + let q = delta; + for (let k = base; /* no condition */; k += base) { + const t = k <= bias ? tMin : (k >= bias + tMax ? tMax : k - bias); + if (q < t) { + break; + } + const qMinusT = q - t; + const baseMinusT = base - t; + output.push( + stringFromCharCode(digitToBasic(t + qMinusT % baseMinusT, 0)) + ); + q = floor(qMinusT / baseMinusT); + } + + output.push(stringFromCharCode(digitToBasic(q, 0))); + bias = adapt(delta, handledCPCountPlusOne, handledCPCount == basicLength); + delta = 0; + ++handledCPCount; + } + } + + ++delta; + ++n; + + } + return output.join(''); +}; + +/** + * Converts a Punycode string representing a domain name or an email address + * to Unicode. Only the Punycoded parts of the input will be converted, i.e. + * it doesn't matter if you call it on a string that has already been + * converted to Unicode. + * @memberOf punycode + * @param {String} input The Punycoded domain name or email address to + * convert to Unicode. + * @returns {String} The Unicode representation of the given Punycode + * string. + */ +const toUnicode = function(input) { + return mapDomain(input, function(string) { + return regexPunycode.test(string) + ? decode(string.slice(4).toLowerCase()) + : string; + }); +}; + +/** + * Converts a Unicode string representing a domain name or an email address to + * Punycode. Only the non-ASCII parts of the domain name will be converted, + * i.e. it doesn't matter if you call it with a domain that's already in + * ASCII. + * @memberOf punycode + * @param {String} input The domain name or email address to convert, as a + * Unicode string. + * @returns {String} The Punycode representation of the given domain name or + * email address. + */ +const toASCII = function(input) { + return mapDomain(input, function(string) { + return regexNonASCII.test(string) + ? 'xn--' + encode(string) + : string; + }); +}; + +/*--------------------------------------------------------------------------*/ + +/** Define the public API */ +const punycode = { + /** + * A string representing the current Punycode.js version number. + * @memberOf punycode + * @type String + */ + 'version': '2.1.0', + /** + * An object of methods to convert from JavaScript's internal character + * representation (UCS-2) to Unicode code points, and back. + * @see + * @memberOf punycode + * @type Object + */ + 'ucs2': { + 'decode': ucs2decode, + 'encode': ucs2encode + }, + 'decode': decode, + 'encode': encode, + 'toASCII': toASCII, + 'toUnicode': toUnicode +}; + +export { ucs2decode, ucs2encode, decode, encode, toASCII, toUnicode }; +export default punycode; diff --git a/node_modules/punycode/punycode.js b/node_modules/punycode/punycode.js new file mode 100644 index 000000000..ea61fd0d3 --- /dev/null +++ b/node_modules/punycode/punycode.js @@ -0,0 +1,440 @@ +'use strict'; + +/** Highest positive signed 32-bit float value */ +const maxInt = 2147483647; // aka. 0x7FFFFFFF or 2^31-1 + +/** Bootstring parameters */ +const base = 36; +const tMin = 1; +const tMax = 26; +const skew = 38; +const damp = 700; +const initialBias = 72; +const initialN = 128; // 0x80 +const delimiter = '-'; // '\x2D' + +/** Regular expressions */ +const regexPunycode = /^xn--/; +const regexNonASCII = /[^\0-\x7E]/; // non-ASCII chars +const regexSeparators = /[\x2E\u3002\uFF0E\uFF61]/g; // RFC 3490 separators + +/** Error messages */ +const errors = { + 'overflow': 'Overflow: input needs wider integers to process', + 'not-basic': 'Illegal input >= 0x80 (not a basic code point)', + 'invalid-input': 'Invalid input' +}; + +/** Convenience shortcuts */ +const baseMinusTMin = base - tMin; +const floor = Math.floor; +const stringFromCharCode = String.fromCharCode; + +/*--------------------------------------------------------------------------*/ + +/** + * A generic error utility function. + * @private + * @param {String} type The error type. + * @returns {Error} Throws a `RangeError` with the applicable error message. + */ +function error(type) { + throw new RangeError(errors[type]); +} + +/** + * A generic `Array#map` utility function. + * @private + * @param {Array} array The array to iterate over. + * @param {Function} callback The function that gets called for every array + * item. + * @returns {Array} A new array of values returned by the callback function. + */ +function map(array, fn) { + const result = []; + let length = array.length; + while (length--) { + result[length] = fn(array[length]); + } + return result; +} + +/** + * A simple `Array#map`-like wrapper to work with domain name strings or email + * addresses. + * @private + * @param {String} domain The domain name or email address. + * @param {Function} callback The function that gets called for every + * character. + * @returns {Array} A new string of characters returned by the callback + * function. + */ +function mapDomain(string, fn) { + const parts = string.split('@'); + let result = ''; + if (parts.length > 1) { + // In email addresses, only the domain name should be punycoded. Leave + // the local part (i.e. everything up to `@`) intact. + result = parts[0] + '@'; + string = parts[1]; + } + // Avoid `split(regex)` for IE8 compatibility. See #17. + string = string.replace(regexSeparators, '\x2E'); + const labels = string.split('.'); + const encoded = map(labels, fn).join('.'); + return result + encoded; +} + +/** + * Creates an array containing the numeric code points of each Unicode + * character in the string. While JavaScript uses UCS-2 internally, + * this function will convert a pair of surrogate halves (each of which + * UCS-2 exposes as separate characters) into a single code point, + * matching UTF-16. + * @see `punycode.ucs2.encode` + * @see + * @memberOf punycode.ucs2 + * @name decode + * @param {String} string The Unicode input string (UCS-2). + * @returns {Array} The new array of code points. + */ +function ucs2decode(string) { + const output = []; + let counter = 0; + const length = string.length; + while (counter < length) { + const value = string.charCodeAt(counter++); + if (value >= 0xD800 && value <= 0xDBFF && counter < length) { + // It's a high surrogate, and there is a next character. + const extra = string.charCodeAt(counter++); + if ((extra & 0xFC00) == 0xDC00) { // Low surrogate. + output.push(((value & 0x3FF) << 10) + (extra & 0x3FF) + 0x10000); + } else { + // It's an unmatched surrogate; only append this code unit, in case the + // next code unit is the high surrogate of a surrogate pair. + output.push(value); + counter--; + } + } else { + output.push(value); + } + } + return output; +} + +/** + * Creates a string based on an array of numeric code points. + * @see `punycode.ucs2.decode` + * @memberOf punycode.ucs2 + * @name encode + * @param {Array} codePoints The array of numeric code points. + * @returns {String} The new Unicode string (UCS-2). + */ +const ucs2encode = array => String.fromCodePoint(...array); + +/** + * Converts a basic code point into a digit/integer. + * @see `digitToBasic()` + * @private + * @param {Number} codePoint The basic numeric code point value. + * @returns {Number} The numeric value of a basic code point (for use in + * representing integers) in the range `0` to `base - 1`, or `base` if + * the code point does not represent a value. + */ +const basicToDigit = function(codePoint) { + if (codePoint - 0x30 < 0x0A) { + return codePoint - 0x16; + } + if (codePoint - 0x41 < 0x1A) { + return codePoint - 0x41; + } + if (codePoint - 0x61 < 0x1A) { + return codePoint - 0x61; + } + return base; +}; + +/** + * Converts a digit/integer into a basic code point. + * @see `basicToDigit()` + * @private + * @param {Number} digit The numeric value of a basic code point. + * @returns {Number} The basic code point whose value (when used for + * representing integers) is `digit`, which needs to be in the range + * `0` to `base - 1`. If `flag` is non-zero, the uppercase form is + * used; else, the lowercase form is used. The behavior is undefined + * if `flag` is non-zero and `digit` has no uppercase form. + */ +const digitToBasic = function(digit, flag) { + // 0..25 map to ASCII a..z or A..Z + // 26..35 map to ASCII 0..9 + return digit + 22 + 75 * (digit < 26) - ((flag != 0) << 5); +}; + +/** + * Bias adaptation function as per section 3.4 of RFC 3492. + * https://tools.ietf.org/html/rfc3492#section-3.4 + * @private + */ +const adapt = function(delta, numPoints, firstTime) { + let k = 0; + delta = firstTime ? floor(delta / damp) : delta >> 1; + delta += floor(delta / numPoints); + for (/* no initialization */; delta > baseMinusTMin * tMax >> 1; k += base) { + delta = floor(delta / baseMinusTMin); + } + return floor(k + (baseMinusTMin + 1) * delta / (delta + skew)); +}; + +/** + * Converts a Punycode string of ASCII-only symbols to a string of Unicode + * symbols. + * @memberOf punycode + * @param {String} input The Punycode string of ASCII-only symbols. + * @returns {String} The resulting string of Unicode symbols. + */ +const decode = function(input) { + // Don't use UCS-2. + const output = []; + const inputLength = input.length; + let i = 0; + let n = initialN; + let bias = initialBias; + + // Handle the basic code points: let `basic` be the number of input code + // points before the last delimiter, or `0` if there is none, then copy + // the first basic code points to the output. + + let basic = input.lastIndexOf(delimiter); + if (basic < 0) { + basic = 0; + } + + for (let j = 0; j < basic; ++j) { + // if it's not a basic code point + if (input.charCodeAt(j) >= 0x80) { + error('not-basic'); + } + output.push(input.charCodeAt(j)); + } + + // Main decoding loop: start just after the last delimiter if any basic code + // points were copied; start at the beginning otherwise. + + for (let index = basic > 0 ? basic + 1 : 0; index < inputLength; /* no final expression */) { + + // `index` is the index of the next character to be consumed. + // Decode a generalized variable-length integer into `delta`, + // which gets added to `i`. The overflow checking is easier + // if we increase `i` as we go, then subtract off its starting + // value at the end to obtain `delta`. + let oldi = i; + for (let w = 1, k = base; /* no condition */; k += base) { + + if (index >= inputLength) { + error('invalid-input'); + } + + const digit = basicToDigit(input.charCodeAt(index++)); + + if (digit >= base || digit > floor((maxInt - i) / w)) { + error('overflow'); + } + + i += digit * w; + const t = k <= bias ? tMin : (k >= bias + tMax ? tMax : k - bias); + + if (digit < t) { + break; + } + + const baseMinusT = base - t; + if (w > floor(maxInt / baseMinusT)) { + error('overflow'); + } + + w *= baseMinusT; + + } + + const out = output.length + 1; + bias = adapt(i - oldi, out, oldi == 0); + + // `i` was supposed to wrap around from `out` to `0`, + // incrementing `n` each time, so we'll fix that now: + if (floor(i / out) > maxInt - n) { + error('overflow'); + } + + n += floor(i / out); + i %= out; + + // Insert `n` at position `i` of the output. + output.splice(i++, 0, n); + + } + + return String.fromCodePoint(...output); +}; + +/** + * Converts a string of Unicode symbols (e.g. a domain name label) to a + * Punycode string of ASCII-only symbols. + * @memberOf punycode + * @param {String} input The string of Unicode symbols. + * @returns {String} The resulting Punycode string of ASCII-only symbols. + */ +const encode = function(input) { + const output = []; + + // Convert the input in UCS-2 to an array of Unicode code points. + input = ucs2decode(input); + + // Cache the length. + let inputLength = input.length; + + // Initialize the state. + let n = initialN; + let delta = 0; + let bias = initialBias; + + // Handle the basic code points. + for (const currentValue of input) { + if (currentValue < 0x80) { + output.push(stringFromCharCode(currentValue)); + } + } + + let basicLength = output.length; + let handledCPCount = basicLength; + + // `handledCPCount` is the number of code points that have been handled; + // `basicLength` is the number of basic code points. + + // Finish the basic string with a delimiter unless it's empty. + if (basicLength) { + output.push(delimiter); + } + + // Main encoding loop: + while (handledCPCount < inputLength) { + + // All non-basic code points < n have been handled already. Find the next + // larger one: + let m = maxInt; + for (const currentValue of input) { + if (currentValue >= n && currentValue < m) { + m = currentValue; + } + } + + // Increase `delta` enough to advance the decoder's state to , + // but guard against overflow. + const handledCPCountPlusOne = handledCPCount + 1; + if (m - n > floor((maxInt - delta) / handledCPCountPlusOne)) { + error('overflow'); + } + + delta += (m - n) * handledCPCountPlusOne; + n = m; + + for (const currentValue of input) { + if (currentValue < n && ++delta > maxInt) { + error('overflow'); + } + if (currentValue == n) { + // Represent delta as a generalized variable-length integer. + let q = delta; + for (let k = base; /* no condition */; k += base) { + const t = k <= bias ? tMin : (k >= bias + tMax ? tMax : k - bias); + if (q < t) { + break; + } + const qMinusT = q - t; + const baseMinusT = base - t; + output.push( + stringFromCharCode(digitToBasic(t + qMinusT % baseMinusT, 0)) + ); + q = floor(qMinusT / baseMinusT); + } + + output.push(stringFromCharCode(digitToBasic(q, 0))); + bias = adapt(delta, handledCPCountPlusOne, handledCPCount == basicLength); + delta = 0; + ++handledCPCount; + } + } + + ++delta; + ++n; + + } + return output.join(''); +}; + +/** + * Converts a Punycode string representing a domain name or an email address + * to Unicode. Only the Punycoded parts of the input will be converted, i.e. + * it doesn't matter if you call it on a string that has already been + * converted to Unicode. + * @memberOf punycode + * @param {String} input The Punycoded domain name or email address to + * convert to Unicode. + * @returns {String} The Unicode representation of the given Punycode + * string. + */ +const toUnicode = function(input) { + return mapDomain(input, function(string) { + return regexPunycode.test(string) + ? decode(string.slice(4).toLowerCase()) + : string; + }); +}; + +/** + * Converts a Unicode string representing a domain name or an email address to + * Punycode. Only the non-ASCII parts of the domain name will be converted, + * i.e. it doesn't matter if you call it with a domain that's already in + * ASCII. + * @memberOf punycode + * @param {String} input The domain name or email address to convert, as a + * Unicode string. + * @returns {String} The Punycode representation of the given domain name or + * email address. + */ +const toASCII = function(input) { + return mapDomain(input, function(string) { + return regexNonASCII.test(string) + ? 'xn--' + encode(string) + : string; + }); +}; + +/*--------------------------------------------------------------------------*/ + +/** Define the public API */ +const punycode = { + /** + * A string representing the current Punycode.js version number. + * @memberOf punycode + * @type String + */ + 'version': '2.1.0', + /** + * An object of methods to convert from JavaScript's internal character + * representation (UCS-2) to Unicode code points, and back. + * @see + * @memberOf punycode + * @type Object + */ + 'ucs2': { + 'decode': ucs2decode, + 'encode': ucs2encode + }, + 'decode': decode, + 'encode': encode, + 'toASCII': toASCII, + 'toUnicode': toUnicode +}; + +module.exports = punycode; diff --git a/node_modules/qs/.editorconfig b/node_modules/qs/.editorconfig new file mode 100644 index 000000000..0ea91d995 --- /dev/null +++ b/node_modules/qs/.editorconfig @@ -0,0 +1,40 @@ +root = true + +[*] +indent_style = space +indent_size = 4 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true +max_line_length = 160 +quote_type = single + +[test/*] +max_line_length = off + +[LICENSE.md] +indent_size = off + +[*.md] +max_line_length = off + +[*.json] +max_line_length = off + +[Makefile] +max_line_length = off + +[CHANGELOG.md] +indent_style = space +indent_size = 2 + +[LICENSE] +indent_size = 2 +max_line_length = off + +[coverage/**/*] +indent_size = off +indent_style = off +indent = off +max_line_length = off diff --git a/node_modules/qs/.eslintrc b/node_modules/qs/.eslintrc new file mode 100644 index 000000000..6884760ee --- /dev/null +++ b/node_modules/qs/.eslintrc @@ -0,0 +1,38 @@ +{ + "root": true, + + "extends": "@ljharb", + + "ignorePatterns": [ + "dist/", + ], + + "rules": { + "complexity": 0, + "consistent-return": 1, + "func-name-matching": 0, + "id-length": [2, { "min": 1, "max": 25, "properties": "never" }], + "indent": [2, 4], + "max-lines-per-function": [2, { "max": 150 }], + "max-params": [2, 15], + "max-statements": [2, 52], + "multiline-comment-style": 0, + "no-continue": 1, + "no-magic-numbers": 0, + "no-restricted-syntax": [2, "BreakStatement", "DebuggerStatement", "ForInStatement", "LabeledStatement", "WithStatement"], + }, + + "overrides": [ + { + "files": "test/**", + "rules": { + "function-paren-newline": 0, + "max-lines-per-function": 0, + "max-statements": 0, + "no-buffer-constructor": 0, + "no-extend-native": 0, + "no-throw-literal": 0, + } + } + ] +} diff --git a/node_modules/qs/.github/FUNDING.yml b/node_modules/qs/.github/FUNDING.yml new file mode 100644 index 000000000..0355f4f5f --- /dev/null +++ b/node_modules/qs/.github/FUNDING.yml @@ -0,0 +1,12 @@ +# These are supported funding model platforms + +github: [ljharb] +patreon: # Replace with a single Patreon username +open_collective: # Replace with a single Open Collective username +ko_fi: # Replace with a single Ko-fi username +tidelift: npm/qs +community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry +liberapay: # Replace with a single Liberapay username +issuehunt: # Replace with a single IssueHunt username +otechie: # Replace with a single Otechie username +custom: # Replace with a single custom sponsorship URL diff --git a/node_modules/qs/.nycrc b/node_modules/qs/.nycrc new file mode 100644 index 000000000..1d57cabe1 --- /dev/null +++ b/node_modules/qs/.nycrc @@ -0,0 +1,13 @@ +{ + "all": true, + "check-coverage": false, + "reporter": ["text-summary", "text", "html", "json"], + "lines": 86, + "statements": 85.93, + "functions": 82.43, + "branches": 76.06, + "exclude": [ + "coverage", + "dist" + ] +} diff --git a/node_modules/qs/CHANGELOG.md b/node_modules/qs/CHANGELOG.md new file mode 100644 index 000000000..c6b29155e --- /dev/null +++ b/node_modules/qs/CHANGELOG.md @@ -0,0 +1,388 @@ +## **6.10.3** +- [Fix] `parse`: ignore `__proto__` keys (#428) +- [Robustness] `stringify`: avoid relying on a global `undefined` (#427) +- [actions] reuse common workflows +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `object-inspect`, `tape` + +## **6.10.2** +- [Fix] `stringify`: actually fix cyclic references (#426) +- [Fix] `stringify`: avoid encoding arrayformat comma when `encodeValuesOnly = true` (#424) +- [readme] remove travis badge; add github actions/codecov badges; update URLs +- [Docs] add note and links for coercing primitive values (#408) +- [actions] update codecov uploader +- [actions] update workflows +- [Tests] clean up stringify tests slightly +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `object-inspect`, `safe-publish-latest`, `tape` + +## **6.10.1** +- [Fix] `stringify`: avoid exception on repeated object values (#402) + +## **6.10.0** +- [New] `stringify`: throw on cycles, instead of an infinite loop (#395, #394, #393) +- [New] `parse`: add `allowSparse` option for collapsing arrays with missing indices (#312) +- [meta] fix README.md (#399) +- [meta] only run `npm run dist` in publish, not install +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `has-symbols`, `tape` +- [Tests] fix tests on node v0.6 +- [Tests] use `ljharb/actions/node/install` instead of `ljharb/actions/node/run` +- [Tests] Revert "[meta] ignore eclint transitive audit warning" + +## **6.9.6** +- [Fix] restore `dist` dir; mistakenly removed in d4f6c32 + +## **6.9.5** +- [Fix] `stringify`: do not encode parens for RFC1738 +- [Fix] `stringify`: fix arrayFormat comma with empty array/objects (#350) +- [Refactor] `format`: remove `util.assign` call +- [meta] add "Allow Edits" workflow; update rebase workflow +- [actions] switch Automatic Rebase workflow to `pull_request_target` event +- [Tests] `stringify`: add tests for #378 +- [Tests] migrate tests to Github Actions +- [Tests] run `nyc` on all tests; use `tape` runner +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `browserify`, `mkdirp`, `object-inspect`, `tape`; add `aud` + +## **6.9.4** +- [Fix] `stringify`: when `arrayFormat` is `comma`, respect `serializeDate` (#364) +- [Refactor] `stringify`: reduce branching (part of #350) +- [Refactor] move `maybeMap` to `utils` +- [Dev Deps] update `browserify`, `tape` + +## **6.9.3** +- [Fix] proper comma parsing of URL-encoded commas (#361) +- [Fix] parses comma delimited array while having percent-encoded comma treated as normal text (#336) + +## **6.9.2** +- [Fix] `parse`: Fix parsing array from object with `comma` true (#359) +- [Fix] `parse`: throw a TypeError instead of an Error for bad charset (#349) +- [meta] ignore eclint transitive audit warning +- [meta] fix indentation in package.json +- [meta] add tidelift marketing copy +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `object-inspect`, `has-symbols`, `tape`, `mkdirp`, `iconv-lite` +- [actions] add automatic rebasing / merge commit blocking + +## **6.9.1** +- [Fix] `parse`: with comma true, handle field that holds an array of arrays (#335) +- [Fix] `parse`: with comma true, do not split non-string values (#334) +- [meta] add `funding` field +- [Dev Deps] update `eslint`, `@ljharb/eslint-config` +- [Tests] use shared travis-ci config + +## **6.9.0** +- [New] `parse`/`stringify`: Pass extra key/value argument to `decoder` (#333) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `evalmd` +- [Tests] `parse`: add passing `arrayFormat` tests +- [Tests] add `posttest` using `npx aud` to run `npm audit` without a lockfile +- [Tests] up to `node` `v12.10`, `v11.15`, `v10.16`, `v8.16` +- [Tests] `Buffer.from` in node v5.0-v5.9 and v4.0-v4.4 requires a TypedArray + +## **6.8.2** +- [Fix] proper comma parsing of URL-encoded commas (#361) +- [Fix] parses comma delimited array while having percent-encoded comma treated as normal text (#336) + +## **6.8.1** +- [Fix] `parse`: Fix parsing array from object with `comma` true (#359) +- [Fix] `parse`: throw a TypeError instead of an Error for bad charset (#349) +- [Fix] `parse`: with comma true, handle field that holds an array of arrays (#335) +- [fix] `parse`: with comma true, do not split non-string values (#334) +- [meta] add tidelift marketing copy +- [meta] add `funding` field +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `tape`, `safe-publish-latest`, `evalmd`, `has-symbols`, `iconv-lite`, `mkdirp`, `object-inspect` +- [Tests] `parse`: add passing `arrayFormat` tests +- [Tests] use shared travis-ci configs +- [Tests] `Buffer.from` in node v5.0-v5.9 and v4.0-v4.4 requires a TypedArray +- [actions] add automatic rebasing / merge commit blocking + +## **6.8.0** +- [New] add `depth=false` to preserve the original key; [Fix] `depth=0` should preserve the original key (#326) +- [New] [Fix] stringify symbols and bigints +- [Fix] ensure node 0.12 can stringify Symbols +- [Fix] fix for an impossible situation: when the formatter is called with a non-string value +- [Refactor] `formats`: tiny bit of cleanup. +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `browserify`, `safe-publish-latest`, `iconv-lite`, `tape` +- [Tests] add tests for `depth=0` and `depth=false` behavior, both current and intuitive/intended (#326) +- [Tests] use `eclint` instead of `editorconfig-tools` +- [docs] readme: add security note +- [meta] add github sponsorship +- [meta] add FUNDING.yml +- [meta] Clean up license text so it’s properly detected as BSD-3-Clause + +## **6.7.2** +- [Fix] proper comma parsing of URL-encoded commas (#361) +- [Fix] parses comma delimited array while having percent-encoded comma treated as normal text (#336) + +## **6.7.1** +- [Fix] `parse`: Fix parsing array from object with `comma` true (#359) +- [Fix] `parse`: with comma true, handle field that holds an array of arrays (#335) +- [fix] `parse`: with comma true, do not split non-string values (#334) +- [Fix] `parse`: throw a TypeError instead of an Error for bad charset (#349) +- [Fix] fix for an impossible situation: when the formatter is called with a non-string value +- [Refactor] `formats`: tiny bit of cleanup. +- readme: add security note +- [meta] add tidelift marketing copy +- [meta] add `funding` field +- [meta] add FUNDING.yml +- [meta] Clean up license text so it’s properly detected as BSD-3-Clause +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `tape`, `safe-publish-latest`, `evalmd`, `iconv-lite`, `mkdirp`, `object-inspect`, `browserify` +- [Tests] `parse`: add passing `arrayFormat` tests +- [Tests] use shared travis-ci configs +- [Tests] `Buffer.from` in node v5.0-v5.9 and v4.0-v4.4 requires a TypedArray +- [Tests] add tests for `depth=0` and `depth=false` behavior, both current and intuitive/intended +- [Tests] use `eclint` instead of `editorconfig-tools` +- [actions] add automatic rebasing / merge commit blocking + +## **6.7.0** +- [New] `stringify`/`parse`: add `comma` as an `arrayFormat` option (#276, #219) +- [Fix] correctly parse nested arrays (#212) +- [Fix] `utils.merge`: avoid a crash with a null target and a truthy non-array source, also with an array source +- [Robustness] `stringify`: cache `Object.prototype.hasOwnProperty` +- [Refactor] `utils`: `isBuffer`: small tweak; add tests +- [Refactor] use cached `Array.isArray` +- [Refactor] `parse`/`stringify`: make a function to normalize the options +- [Refactor] `utils`: reduce observable [[Get]]s +- [Refactor] `stringify`/`utils`: cache `Array.isArray` +- [Tests] always use `String(x)` over `x.toString()` +- [Tests] fix Buffer tests to work in node < 4.5 and node < 5.10 +- [Tests] temporarily allow coverage to fail + +## **6.6.0** +- [New] Add support for iso-8859-1, utf8 "sentinel" and numeric entities (#268) +- [New] move two-value combine to a `utils` function (#189) +- [Fix] `stringify`: fix a crash with `strictNullHandling` and a custom `filter`/`serializeDate` (#279) +- [Fix] when `parseArrays` is false, properly handle keys ending in `[]` (#260) +- [Fix] `stringify`: do not crash in an obscure combo of `interpretNumericEntities`, a bad custom `decoder`, & `iso-8859-1` +- [Fix] `utils`: `merge`: fix crash when `source` is a truthy primitive & no options are provided +- [refactor] `stringify`: Avoid arr = arr.concat(...), push to the existing instance (#269) +- [Refactor] `parse`: only need to reassign the var once +- [Refactor] `parse`/`stringify`: clean up `charset` options checking; fix defaults +- [Refactor] add missing defaults +- [Refactor] `parse`: one less `concat` call +- [Refactor] `utils`: `compactQueue`: make it explicitly side-effecting +- [Dev Deps] update `browserify`, `eslint`, `@ljharb/eslint-config`, `iconv-lite`, `safe-publish-latest`, `tape` +- [Tests] up to `node` `v10.10`, `v9.11`, `v8.12`, `v6.14`, `v4.9`; pin included builds to LTS + +## **6.5.2** +- [Fix] use `safer-buffer` instead of `Buffer` constructor +- [Refactor] utils: `module.exports` one thing, instead of mutating `exports` (#230) +- [Dev Deps] update `browserify`, `eslint`, `iconv-lite`, `safer-buffer`, `tape`, `browserify` + +## **6.5.1** +- [Fix] Fix parsing & compacting very deep objects (#224) +- [Refactor] name utils functions +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `tape` +- [Tests] up to `node` `v8.4`; use `nvm install-latest-npm` so newer npm doesn’t break older node +- [Tests] Use precise dist for Node.js 0.6 runtime (#225) +- [Tests] make 0.6 required, now that it’s passing +- [Tests] on `node` `v8.2`; fix npm on node 0.6 + +## **6.5.0** +- [New] add `utils.assign` +- [New] pass default encoder/decoder to custom encoder/decoder functions (#206) +- [New] `parse`/`stringify`: add `ignoreQueryPrefix`/`addQueryPrefix` options, respectively (#213) +- [Fix] Handle stringifying empty objects with addQueryPrefix (#217) +- [Fix] do not mutate `options` argument (#207) +- [Refactor] `parse`: cache index to reuse in else statement (#182) +- [Docs] add various badges to readme (#208) +- [Dev Deps] update `eslint`, `browserify`, `iconv-lite`, `tape` +- [Tests] up to `node` `v8.1`, `v7.10`, `v6.11`; npm v4.6 breaks on node < v1; npm v5+ breaks on node < v4 +- [Tests] add `editorconfig-tools` + +## **6.4.0** +- [New] `qs.stringify`: add `encodeValuesOnly` option +- [Fix] follow `allowPrototypes` option during merge (#201, #201) +- [Fix] support keys starting with brackets (#202, #200) +- [Fix] chmod a-x +- [Dev Deps] update `eslint` +- [Tests] up to `node` `v7.7`, `v6.10`,` v4.8`; disable osx builds since they block linux builds +- [eslint] reduce warnings + +## **6.3.2** +- [Fix] follow `allowPrototypes` option during merge (#201, #200) +- [Dev Deps] update `eslint` +- [Fix] chmod a-x +- [Fix] support keys starting with brackets (#202, #200) +- [Tests] up to `node` `v7.7`, `v6.10`,` v4.8`; disable osx builds since they block linux builds + +## **6.3.1** +- [Fix] ensure that `allowPrototypes: false` does not ever shadow Object.prototype properties (thanks, @snyk!) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `browserify`, `iconv-lite`, `qs-iconv`, `tape` +- [Tests] on all node minors; improve test matrix +- [Docs] document stringify option `allowDots` (#195) +- [Docs] add empty object and array values example (#195) +- [Docs] Fix minor inconsistency/typo (#192) +- [Docs] document stringify option `sort` (#191) +- [Refactor] `stringify`: throw faster with an invalid encoder +- [Refactor] remove unnecessary escapes (#184) +- Remove contributing.md, since `qs` is no longer part of `hapi` (#183) + +## **6.3.0** +- [New] Add support for RFC 1738 (#174, #173) +- [New] `stringify`: Add `serializeDate` option to customize Date serialization (#159) +- [Fix] ensure `utils.merge` handles merging two arrays +- [Refactor] only constructors should be capitalized +- [Refactor] capitalized var names are for constructors only +- [Refactor] avoid using a sparse array +- [Robustness] `formats`: cache `String#replace` +- [Dev Deps] update `browserify`, `eslint`, `@ljharb/eslint-config`; add `safe-publish-latest` +- [Tests] up to `node` `v6.8`, `v4.6`; improve test matrix +- [Tests] flesh out arrayLimit/arrayFormat tests (#107) +- [Tests] skip Object.create tests when null objects are not available +- [Tests] Turn on eslint for test files (#175) + +## **6.2.3** +- [Fix] follow `allowPrototypes` option during merge (#201, #200) +- [Fix] chmod a-x +- [Fix] support keys starting with brackets (#202, #200) +- [Tests] up to `node` `v7.7`, `v6.10`,` v4.8`; disable osx builds since they block linux builds + +## **6.2.2** +- [Fix] ensure that `allowPrototypes: false` does not ever shadow Object.prototype properties + +## **6.2.1** +- [Fix] ensure `key[]=x&key[]&key[]=y` results in 3, not 2, values +- [Refactor] Be explicit and use `Object.prototype.hasOwnProperty.call` +- [Tests] remove `parallelshell` since it does not reliably report failures +- [Tests] up to `node` `v6.3`, `v5.12` +- [Dev Deps] update `tape`, `eslint`, `@ljharb/eslint-config`, `qs-iconv` + +## [**6.2.0**](https://github.com/ljharb/qs/issues?milestone=36&state=closed) +- [New] pass Buffers to the encoder/decoder directly (#161) +- [New] add "encoder" and "decoder" options, for custom param encoding/decoding (#160) +- [Fix] fix compacting of nested sparse arrays (#150) + +## **6.1.2 +- [Fix] follow `allowPrototypes` option during merge (#201, #200) +- [Fix] chmod a-x +- [Fix] support keys starting with brackets (#202, #200) +- [Tests] up to `node` `v7.7`, `v6.10`,` v4.8`; disable osx builds since they block linux builds + +## **6.1.1** +- [Fix] ensure that `allowPrototypes: false` does not ever shadow Object.prototype properties + +## [**6.1.0**](https://github.com/ljharb/qs/issues?milestone=35&state=closed) +- [New] allowDots option for `stringify` (#151) +- [Fix] "sort" option should work at a depth of 3 or more (#151) +- [Fix] Restore `dist` directory; will be removed in v7 (#148) + +## **6.0.4** +- [Fix] follow `allowPrototypes` option during merge (#201, #200) +- [Fix] chmod a-x +- [Fix] support keys starting with brackets (#202, #200) +- [Tests] up to `node` `v7.7`, `v6.10`,` v4.8`; disable osx builds since they block linux builds + +## **6.0.3** +- [Fix] ensure that `allowPrototypes: false` does not ever shadow Object.prototype properties +- [Fix] Restore `dist` directory; will be removed in v7 (#148) + +## [**6.0.2**](https://github.com/ljharb/qs/issues?milestone=33&state=closed) +- Revert ES6 requirement and restore support for node down to v0.8. + +## [**6.0.1**](https://github.com/ljharb/qs/issues?milestone=32&state=closed) +- [**#127**](https://github.com/ljharb/qs/pull/127) Fix engines definition in package.json + +## [**6.0.0**](https://github.com/ljharb/qs/issues?milestone=31&state=closed) +- [**#124**](https://github.com/ljharb/qs/issues/124) Use ES6 and drop support for node < v4 + +## **5.2.1** +- [Fix] ensure `key[]=x&key[]&key[]=y` results in 3, not 2, values + +## [**5.2.0**](https://github.com/ljharb/qs/issues?milestone=30&state=closed) +- [**#64**](https://github.com/ljharb/qs/issues/64) Add option to sort object keys in the query string + +## [**5.1.0**](https://github.com/ljharb/qs/issues?milestone=29&state=closed) +- [**#117**](https://github.com/ljharb/qs/issues/117) make URI encoding stringified results optional +- [**#106**](https://github.com/ljharb/qs/issues/106) Add flag `skipNulls` to optionally skip null values in stringify + +## [**5.0.0**](https://github.com/ljharb/qs/issues?milestone=28&state=closed) +- [**#114**](https://github.com/ljharb/qs/issues/114) default allowDots to false +- [**#100**](https://github.com/ljharb/qs/issues/100) include dist to npm + +## [**4.0.0**](https://github.com/ljharb/qs/issues?milestone=26&state=closed) +- [**#98**](https://github.com/ljharb/qs/issues/98) make returning plain objects and allowing prototype overwriting properties optional + +## [**3.1.0**](https://github.com/ljharb/qs/issues?milestone=24&state=closed) +- [**#89**](https://github.com/ljharb/qs/issues/89) Add option to disable "Transform dot notation to bracket notation" + +## [**3.0.0**](https://github.com/ljharb/qs/issues?milestone=23&state=closed) +- [**#80**](https://github.com/ljharb/qs/issues/80) qs.parse silently drops properties +- [**#77**](https://github.com/ljharb/qs/issues/77) Perf boost +- [**#60**](https://github.com/ljharb/qs/issues/60) Add explicit option to disable array parsing +- [**#74**](https://github.com/ljharb/qs/issues/74) Bad parse when turning array into object +- [**#81**](https://github.com/ljharb/qs/issues/81) Add a `filter` option +- [**#68**](https://github.com/ljharb/qs/issues/68) Fixed issue with recursion and passing strings into objects. +- [**#66**](https://github.com/ljharb/qs/issues/66) Add mixed array and object dot notation support Closes: #47 +- [**#76**](https://github.com/ljharb/qs/issues/76) RFC 3986 +- [**#85**](https://github.com/ljharb/qs/issues/85) No equal sign +- [**#84**](https://github.com/ljharb/qs/issues/84) update license attribute + +## [**2.4.1**](https://github.com/ljharb/qs/issues?milestone=20&state=closed) +- [**#73**](https://github.com/ljharb/qs/issues/73) Property 'hasOwnProperty' of object # is not a function + +## [**2.4.0**](https://github.com/ljharb/qs/issues?milestone=19&state=closed) +- [**#70**](https://github.com/ljharb/qs/issues/70) Add arrayFormat option + +## [**2.3.3**](https://github.com/ljharb/qs/issues?milestone=18&state=closed) +- [**#59**](https://github.com/ljharb/qs/issues/59) make sure array indexes are >= 0, closes #57 +- [**#58**](https://github.com/ljharb/qs/issues/58) make qs usable for browser loader + +## [**2.3.2**](https://github.com/ljharb/qs/issues?milestone=17&state=closed) +- [**#55**](https://github.com/ljharb/qs/issues/55) allow merging a string into an object + +## [**2.3.1**](https://github.com/ljharb/qs/issues?milestone=16&state=closed) +- [**#52**](https://github.com/ljharb/qs/issues/52) Return "undefined" and "false" instead of throwing "TypeError". + +## [**2.3.0**](https://github.com/ljharb/qs/issues?milestone=15&state=closed) +- [**#50**](https://github.com/ljharb/qs/issues/50) add option to omit array indices, closes #46 + +## [**2.2.5**](https://github.com/ljharb/qs/issues?milestone=14&state=closed) +- [**#39**](https://github.com/ljharb/qs/issues/39) Is there an alternative to Buffer.isBuffer? +- [**#49**](https://github.com/ljharb/qs/issues/49) refactor utils.merge, fixes #45 +- [**#41**](https://github.com/ljharb/qs/issues/41) avoid browserifying Buffer, for #39 + +## [**2.2.4**](https://github.com/ljharb/qs/issues?milestone=13&state=closed) +- [**#38**](https://github.com/ljharb/qs/issues/38) how to handle object keys beginning with a number + +## [**2.2.3**](https://github.com/ljharb/qs/issues?milestone=12&state=closed) +- [**#37**](https://github.com/ljharb/qs/issues/37) parser discards first empty value in array +- [**#36**](https://github.com/ljharb/qs/issues/36) Update to lab 4.x + +## [**2.2.2**](https://github.com/ljharb/qs/issues?milestone=11&state=closed) +- [**#33**](https://github.com/ljharb/qs/issues/33) Error when plain object in a value +- [**#34**](https://github.com/ljharb/qs/issues/34) use Object.prototype.hasOwnProperty.call instead of obj.hasOwnProperty +- [**#24**](https://github.com/ljharb/qs/issues/24) Changelog? Semver? + +## [**2.2.1**](https://github.com/ljharb/qs/issues?milestone=10&state=closed) +- [**#32**](https://github.com/ljharb/qs/issues/32) account for circular references properly, closes #31 +- [**#31**](https://github.com/ljharb/qs/issues/31) qs.parse stackoverflow on circular objects + +## [**2.2.0**](https://github.com/ljharb/qs/issues?milestone=9&state=closed) +- [**#26**](https://github.com/ljharb/qs/issues/26) Don't use Buffer global if it's not present +- [**#30**](https://github.com/ljharb/qs/issues/30) Bug when merging non-object values into arrays +- [**#29**](https://github.com/ljharb/qs/issues/29) Don't call Utils.clone at the top of Utils.merge +- [**#23**](https://github.com/ljharb/qs/issues/23) Ability to not limit parameters? + +## [**2.1.0**](https://github.com/ljharb/qs/issues?milestone=8&state=closed) +- [**#22**](https://github.com/ljharb/qs/issues/22) Enable using a RegExp as delimiter + +## [**2.0.0**](https://github.com/ljharb/qs/issues?milestone=7&state=closed) +- [**#18**](https://github.com/ljharb/qs/issues/18) Why is there arrayLimit? +- [**#20**](https://github.com/ljharb/qs/issues/20) Configurable parametersLimit +- [**#21**](https://github.com/ljharb/qs/issues/21) make all limits optional, for #18, for #20 + +## [**1.2.2**](https://github.com/ljharb/qs/issues?milestone=6&state=closed) +- [**#19**](https://github.com/ljharb/qs/issues/19) Don't overwrite null values + +## [**1.2.1**](https://github.com/ljharb/qs/issues?milestone=5&state=closed) +- [**#16**](https://github.com/ljharb/qs/issues/16) ignore non-string delimiters +- [**#15**](https://github.com/ljharb/qs/issues/15) Close code block + +## [**1.2.0**](https://github.com/ljharb/qs/issues?milestone=4&state=closed) +- [**#12**](https://github.com/ljharb/qs/issues/12) Add optional delim argument +- [**#13**](https://github.com/ljharb/qs/issues/13) fix #11: flattened keys in array are now correctly parsed + +## [**1.1.0**](https://github.com/ljharb/qs/issues?milestone=3&state=closed) +- [**#7**](https://github.com/ljharb/qs/issues/7) Empty values of a POST array disappear after being submitted +- [**#9**](https://github.com/ljharb/qs/issues/9) Should not omit equals signs (=) when value is null +- [**#6**](https://github.com/ljharb/qs/issues/6) Minor grammar fix in README + +## [**1.0.2**](https://github.com/ljharb/qs/issues?milestone=2&state=closed) +- [**#5**](https://github.com/ljharb/qs/issues/5) array holes incorrectly copied into object on large index diff --git a/node_modules/qs/LICENSE.md b/node_modules/qs/LICENSE.md new file mode 100644 index 000000000..fecf6b694 --- /dev/null +++ b/node_modules/qs/LICENSE.md @@ -0,0 +1,29 @@ +BSD 3-Clause License + +Copyright (c) 2014, Nathan LaFreniere and other [contributors](https://github.com/ljharb/qs/graphs/contributors) +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +3. Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/node_modules/qs/README.md b/node_modules/qs/README.md new file mode 100644 index 000000000..012638043 --- /dev/null +++ b/node_modules/qs/README.md @@ -0,0 +1,623 @@ +# qs [![Version Badge][2]][1] + +[![github actions][actions-image]][actions-url] +[![coverage][codecov-image]][codecov-url] +[![dependency status][deps-svg]][deps-url] +[![dev dependency status][dev-deps-svg]][dev-deps-url] +[![License][license-image]][license-url] +[![Downloads][downloads-image]][downloads-url] + +[![npm badge][npm-badge-png]][package-url] + +A querystring parsing and stringifying library with some added security. + +Lead Maintainer: [Jordan Harband](https://github.com/ljharb) + +The **qs** module was originally created and maintained by [TJ Holowaychuk](https://github.com/visionmedia/node-querystring). + +## Usage + +```javascript +var qs = require('qs'); +var assert = require('assert'); + +var obj = qs.parse('a=c'); +assert.deepEqual(obj, { a: 'c' }); + +var str = qs.stringify(obj); +assert.equal(str, 'a=c'); +``` + +### Parsing Objects + +[](#preventEval) +```javascript +qs.parse(string, [options]); +``` + +**qs** allows you to create nested objects within your query strings, by surrounding the name of sub-keys with square brackets `[]`. +For example, the string `'foo[bar]=baz'` converts to: + +```javascript +assert.deepEqual(qs.parse('foo[bar]=baz'), { + foo: { + bar: 'baz' + } +}); +``` + +When using the `plainObjects` option the parsed value is returned as a null object, created via `Object.create(null)` and as such you should be aware that prototype methods will not exist on it and a user may set those names to whatever value they like: + +```javascript +var nullObject = qs.parse('a[hasOwnProperty]=b', { plainObjects: true }); +assert.deepEqual(nullObject, { a: { hasOwnProperty: 'b' } }); +``` + +By default parameters that would overwrite properties on the object prototype are ignored, if you wish to keep the data from those fields either use `plainObjects` as mentioned above, or set `allowPrototypes` to `true` which will allow user input to overwrite those properties. *WARNING* It is generally a bad idea to enable this option as it can cause problems when attempting to use the properties that have been overwritten. Always be careful with this option. + +```javascript +var protoObject = qs.parse('a[hasOwnProperty]=b', { allowPrototypes: true }); +assert.deepEqual(protoObject, { a: { hasOwnProperty: 'b' } }); +``` + +URI encoded strings work too: + +```javascript +assert.deepEqual(qs.parse('a%5Bb%5D=c'), { + a: { b: 'c' } +}); +``` + +You can also nest your objects, like `'foo[bar][baz]=foobarbaz'`: + +```javascript +assert.deepEqual(qs.parse('foo[bar][baz]=foobarbaz'), { + foo: { + bar: { + baz: 'foobarbaz' + } + } +}); +``` + +By default, when nesting objects **qs** will only parse up to 5 children deep. This means if you attempt to parse a string like +`'a[b][c][d][e][f][g][h][i]=j'` your resulting object will be: + +```javascript +var expected = { + a: { + b: { + c: { + d: { + e: { + f: { + '[g][h][i]': 'j' + } + } + } + } + } + } +}; +var string = 'a[b][c][d][e][f][g][h][i]=j'; +assert.deepEqual(qs.parse(string), expected); +``` + +This depth can be overridden by passing a `depth` option to `qs.parse(string, [options])`: + +```javascript +var deep = qs.parse('a[b][c][d][e][f][g][h][i]=j', { depth: 1 }); +assert.deepEqual(deep, { a: { b: { '[c][d][e][f][g][h][i]': 'j' } } }); +``` + +The depth limit helps mitigate abuse when **qs** is used to parse user input, and it is recommended to keep it a reasonably small number. + +For similar reasons, by default **qs** will only parse up to 1000 parameters. This can be overridden by passing a `parameterLimit` option: + +```javascript +var limited = qs.parse('a=b&c=d', { parameterLimit: 1 }); +assert.deepEqual(limited, { a: 'b' }); +``` + +To bypass the leading question mark, use `ignoreQueryPrefix`: + +```javascript +var prefixed = qs.parse('?a=b&c=d', { ignoreQueryPrefix: true }); +assert.deepEqual(prefixed, { a: 'b', c: 'd' }); +``` + +An optional delimiter can also be passed: + +```javascript +var delimited = qs.parse('a=b;c=d', { delimiter: ';' }); +assert.deepEqual(delimited, { a: 'b', c: 'd' }); +``` + +Delimiters can be a regular expression too: + +```javascript +var regexed = qs.parse('a=b;c=d,e=f', { delimiter: /[;,]/ }); +assert.deepEqual(regexed, { a: 'b', c: 'd', e: 'f' }); +``` + +Option `allowDots` can be used to enable dot notation: + +```javascript +var withDots = qs.parse('a.b=c', { allowDots: true }); +assert.deepEqual(withDots, { a: { b: 'c' } }); +``` + +If you have to deal with legacy browsers or services, there's +also support for decoding percent-encoded octets as iso-8859-1: + +```javascript +var oldCharset = qs.parse('a=%A7', { charset: 'iso-8859-1' }); +assert.deepEqual(oldCharset, { a: '§' }); +``` + +Some services add an initial `utf8=✓` value to forms so that old +Internet Explorer versions are more likely to submit the form as +utf-8. Additionally, the server can check the value against wrong +encodings of the checkmark character and detect that a query string +or `application/x-www-form-urlencoded` body was *not* sent as +utf-8, eg. if the form had an `accept-charset` parameter or the +containing page had a different character set. + +**qs** supports this mechanism via the `charsetSentinel` option. +If specified, the `utf8` parameter will be omitted from the +returned object. It will be used to switch to `iso-8859-1`/`utf-8` +mode depending on how the checkmark is encoded. + +**Important**: When you specify both the `charset` option and the +`charsetSentinel` option, the `charset` will be overridden when +the request contains a `utf8` parameter from which the actual +charset can be deduced. In that sense the `charset` will behave +as the default charset rather than the authoritative charset. + +```javascript +var detectedAsUtf8 = qs.parse('utf8=%E2%9C%93&a=%C3%B8', { + charset: 'iso-8859-1', + charsetSentinel: true +}); +assert.deepEqual(detectedAsUtf8, { a: 'ø' }); + +// Browsers encode the checkmark as ✓ when submitting as iso-8859-1: +var detectedAsIso8859_1 = qs.parse('utf8=%26%2310003%3B&a=%F8', { + charset: 'utf-8', + charsetSentinel: true +}); +assert.deepEqual(detectedAsIso8859_1, { a: 'ø' }); +``` + +If you want to decode the `&#...;` syntax to the actual character, +you can specify the `interpretNumericEntities` option as well: + +```javascript +var detectedAsIso8859_1 = qs.parse('a=%26%239786%3B', { + charset: 'iso-8859-1', + interpretNumericEntities: true +}); +assert.deepEqual(detectedAsIso8859_1, { a: '☺' }); +``` + +It also works when the charset has been detected in `charsetSentinel` +mode. + +### Parsing Arrays + +**qs** can also parse arrays using a similar `[]` notation: + +```javascript +var withArray = qs.parse('a[]=b&a[]=c'); +assert.deepEqual(withArray, { a: ['b', 'c'] }); +``` + +You may specify an index as well: + +```javascript +var withIndexes = qs.parse('a[1]=c&a[0]=b'); +assert.deepEqual(withIndexes, { a: ['b', 'c'] }); +``` + +Note that the only difference between an index in an array and a key in an object is that the value between the brackets must be a number +to create an array. When creating arrays with specific indices, **qs** will compact a sparse array to only the existing values preserving +their order: + +```javascript +var noSparse = qs.parse('a[1]=b&a[15]=c'); +assert.deepEqual(noSparse, { a: ['b', 'c'] }); +``` + +You may also use `allowSparse` option to parse sparse arrays: + +```javascript +var sparseArray = qs.parse('a[1]=2&a[3]=5', { allowSparse: true }); +assert.deepEqual(sparseArray, { a: [, '2', , '5'] }); +``` + +Note that an empty string is also a value, and will be preserved: + +```javascript +var withEmptyString = qs.parse('a[]=&a[]=b'); +assert.deepEqual(withEmptyString, { a: ['', 'b'] }); + +var withIndexedEmptyString = qs.parse('a[0]=b&a[1]=&a[2]=c'); +assert.deepEqual(withIndexedEmptyString, { a: ['b', '', 'c'] }); +``` + +**qs** will also limit specifying indices in an array to a maximum index of `20`. Any array members with an index of greater than `20` will +instead be converted to an object with the index as the key. This is needed to handle cases when someone sent, for example, `a[999999999]` and it will take significant time to iterate over this huge array. + +```javascript +var withMaxIndex = qs.parse('a[100]=b'); +assert.deepEqual(withMaxIndex, { a: { '100': 'b' } }); +``` + +This limit can be overridden by passing an `arrayLimit` option: + +```javascript +var withArrayLimit = qs.parse('a[1]=b', { arrayLimit: 0 }); +assert.deepEqual(withArrayLimit, { a: { '1': 'b' } }); +``` + +To disable array parsing entirely, set `parseArrays` to `false`. + +```javascript +var noParsingArrays = qs.parse('a[]=b', { parseArrays: false }); +assert.deepEqual(noParsingArrays, { a: { '0': 'b' } }); +``` + +If you mix notations, **qs** will merge the two items into an object: + +```javascript +var mixedNotation = qs.parse('a[0]=b&a[b]=c'); +assert.deepEqual(mixedNotation, { a: { '0': 'b', b: 'c' } }); +``` + +You can also create arrays of objects: + +```javascript +var arraysOfObjects = qs.parse('a[][b]=c'); +assert.deepEqual(arraysOfObjects, { a: [{ b: 'c' }] }); +``` + +Some people use comma to join array, **qs** can parse it: +```javascript +var arraysOfObjects = qs.parse('a=b,c', { comma: true }) +assert.deepEqual(arraysOfObjects, { a: ['b', 'c'] }) +``` +(_this cannot convert nested objects, such as `a={b:1},{c:d}`_) + +### Parsing primitive/scalar values (numbers, booleans, null, etc) + +By default, all values are parsed as strings. This behavior will not change and is explained in [issue #91](https://github.com/ljharb/qs/issues/91). + +```javascript +var primitiveValues = qs.parse('a=15&b=true&c=null'); +assert.deepEqual(primitiveValues, { a: '15', b: 'true', c: 'null' }); +``` + +If you wish to auto-convert values which look like numbers, booleans, and other values into their primitive counterparts, you can use the [query-types Express JS middleware](https://github.com/xpepermint/query-types) which will auto-convert all request query parameters. + +### Stringifying + +[](#preventEval) +```javascript +qs.stringify(object, [options]); +``` + +When stringifying, **qs** by default URI encodes output. Objects are stringified as you would expect: + +```javascript +assert.equal(qs.stringify({ a: 'b' }), 'a=b'); +assert.equal(qs.stringify({ a: { b: 'c' } }), 'a%5Bb%5D=c'); +``` + +This encoding can be disabled by setting the `encode` option to `false`: + +```javascript +var unencoded = qs.stringify({ a: { b: 'c' } }, { encode: false }); +assert.equal(unencoded, 'a[b]=c'); +``` + +Encoding can be disabled for keys by setting the `encodeValuesOnly` option to `true`: +```javascript +var encodedValues = qs.stringify( + { a: 'b', c: ['d', 'e=f'], f: [['g'], ['h']] }, + { encodeValuesOnly: true } +); +assert.equal(encodedValues,'a=b&c[0]=d&c[1]=e%3Df&f[0][0]=g&f[1][0]=h'); +``` + +This encoding can also be replaced by a custom encoding method set as `encoder` option: + +```javascript +var encoded = qs.stringify({ a: { b: 'c' } }, { encoder: function (str) { + // Passed in values `a`, `b`, `c` + return // Return encoded string +}}) +``` + +_(Note: the `encoder` option does not apply if `encode` is `false`)_ + +Analogue to the `encoder` there is a `decoder` option for `parse` to override decoding of properties and values: + +```javascript +var decoded = qs.parse('x=z', { decoder: function (str) { + // Passed in values `x`, `z` + return // Return decoded string +}}) +``` + +You can encode keys and values using different logic by using the type argument provided to the encoder: + +```javascript +var encoded = qs.stringify({ a: { b: 'c' } }, { encoder: function (str, defaultEncoder, charset, type) { + if (type === 'key') { + return // Encoded key + } else if (type === 'value') { + return // Encoded value + } +}}) +``` + +The type argument is also provided to the decoder: + +```javascript +var decoded = qs.parse('x=z', { decoder: function (str, defaultDecoder, charset, type) { + if (type === 'key') { + return // Decoded key + } else if (type === 'value') { + return // Decoded value + } +}}) +``` + +Examples beyond this point will be shown as though the output is not URI encoded for clarity. Please note that the return values in these cases *will* be URI encoded during real usage. + +When arrays are stringified, by default they are given explicit indices: + +```javascript +qs.stringify({ a: ['b', 'c', 'd'] }); +// 'a[0]=b&a[1]=c&a[2]=d' +``` + +You may override this by setting the `indices` option to `false`: + +```javascript +qs.stringify({ a: ['b', 'c', 'd'] }, { indices: false }); +// 'a=b&a=c&a=d' +``` + +You may use the `arrayFormat` option to specify the format of the output array: + +```javascript +qs.stringify({ a: ['b', 'c'] }, { arrayFormat: 'indices' }) +// 'a[0]=b&a[1]=c' +qs.stringify({ a: ['b', 'c'] }, { arrayFormat: 'brackets' }) +// 'a[]=b&a[]=c' +qs.stringify({ a: ['b', 'c'] }, { arrayFormat: 'repeat' }) +// 'a=b&a=c' +qs.stringify({ a: ['b', 'c'] }, { arrayFormat: 'comma' }) +// 'a=b,c' +``` + +When objects are stringified, by default they use bracket notation: + +```javascript +qs.stringify({ a: { b: { c: 'd', e: 'f' } } }); +// 'a[b][c]=d&a[b][e]=f' +``` + +You may override this to use dot notation by setting the `allowDots` option to `true`: + +```javascript +qs.stringify({ a: { b: { c: 'd', e: 'f' } } }, { allowDots: true }); +// 'a.b.c=d&a.b.e=f' +``` + +Empty strings and null values will omit the value, but the equals sign (=) remains in place: + +```javascript +assert.equal(qs.stringify({ a: '' }), 'a='); +``` + +Key with no values (such as an empty object or array) will return nothing: + +```javascript +assert.equal(qs.stringify({ a: [] }), ''); +assert.equal(qs.stringify({ a: {} }), ''); +assert.equal(qs.stringify({ a: [{}] }), ''); +assert.equal(qs.stringify({ a: { b: []} }), ''); +assert.equal(qs.stringify({ a: { b: {}} }), ''); +``` + +Properties that are set to `undefined` will be omitted entirely: + +```javascript +assert.equal(qs.stringify({ a: null, b: undefined }), 'a='); +``` + +The query string may optionally be prepended with a question mark: + +```javascript +assert.equal(qs.stringify({ a: 'b', c: 'd' }, { addQueryPrefix: true }), '?a=b&c=d'); +``` + +The delimiter may be overridden with stringify as well: + +```javascript +assert.equal(qs.stringify({ a: 'b', c: 'd' }, { delimiter: ';' }), 'a=b;c=d'); +``` + +If you only want to override the serialization of `Date` objects, you can provide a `serializeDate` option: + +```javascript +var date = new Date(7); +assert.equal(qs.stringify({ a: date }), 'a=1970-01-01T00:00:00.007Z'.replace(/:/g, '%3A')); +assert.equal( + qs.stringify({ a: date }, { serializeDate: function (d) { return d.getTime(); } }), + 'a=7' +); +``` + +You may use the `sort` option to affect the order of parameter keys: + +```javascript +function alphabeticalSort(a, b) { + return a.localeCompare(b); +} +assert.equal(qs.stringify({ a: 'c', z: 'y', b : 'f' }, { sort: alphabeticalSort }), 'a=c&b=f&z=y'); +``` + +Finally, you can use the `filter` option to restrict which keys will be included in the stringified output. +If you pass a function, it will be called for each key to obtain the replacement value. Otherwise, if you +pass an array, it will be used to select properties and array indices for stringification: + +```javascript +function filterFunc(prefix, value) { + if (prefix == 'b') { + // Return an `undefined` value to omit a property. + return; + } + if (prefix == 'e[f]') { + return value.getTime(); + } + if (prefix == 'e[g][0]') { + return value * 2; + } + return value; +} +qs.stringify({ a: 'b', c: 'd', e: { f: new Date(123), g: [2] } }, { filter: filterFunc }); +// 'a=b&c=d&e[f]=123&e[g][0]=4' +qs.stringify({ a: 'b', c: 'd', e: 'f' }, { filter: ['a', 'e'] }); +// 'a=b&e=f' +qs.stringify({ a: ['b', 'c', 'd'], e: 'f' }, { filter: ['a', 0, 2] }); +// 'a[0]=b&a[2]=d' +``` + +### Handling of `null` values + +By default, `null` values are treated like empty strings: + +```javascript +var withNull = qs.stringify({ a: null, b: '' }); +assert.equal(withNull, 'a=&b='); +``` + +Parsing does not distinguish between parameters with and without equal signs. Both are converted to empty strings. + +```javascript +var equalsInsensitive = qs.parse('a&b='); +assert.deepEqual(equalsInsensitive, { a: '', b: '' }); +``` + +To distinguish between `null` values and empty strings use the `strictNullHandling` flag. In the result string the `null` +values have no `=` sign: + +```javascript +var strictNull = qs.stringify({ a: null, b: '' }, { strictNullHandling: true }); +assert.equal(strictNull, 'a&b='); +``` + +To parse values without `=` back to `null` use the `strictNullHandling` flag: + +```javascript +var parsedStrictNull = qs.parse('a&b=', { strictNullHandling: true }); +assert.deepEqual(parsedStrictNull, { a: null, b: '' }); +``` + +To completely skip rendering keys with `null` values, use the `skipNulls` flag: + +```javascript +var nullsSkipped = qs.stringify({ a: 'b', c: null}, { skipNulls: true }); +assert.equal(nullsSkipped, 'a=b'); +``` + +If you're communicating with legacy systems, you can switch to `iso-8859-1` +using the `charset` option: + +```javascript +var iso = qs.stringify({ æ: 'æ' }, { charset: 'iso-8859-1' }); +assert.equal(iso, '%E6=%E6'); +``` + +Characters that don't exist in `iso-8859-1` will be converted to numeric +entities, similar to what browsers do: + +```javascript +var numeric = qs.stringify({ a: '☺' }, { charset: 'iso-8859-1' }); +assert.equal(numeric, 'a=%26%239786%3B'); +``` + +You can use the `charsetSentinel` option to announce the character by +including an `utf8=✓` parameter with the proper encoding if the checkmark, +similar to what Ruby on Rails and others do when submitting forms. + +```javascript +var sentinel = qs.stringify({ a: '☺' }, { charsetSentinel: true }); +assert.equal(sentinel, 'utf8=%E2%9C%93&a=%E2%98%BA'); + +var isoSentinel = qs.stringify({ a: 'æ' }, { charsetSentinel: true, charset: 'iso-8859-1' }); +assert.equal(isoSentinel, 'utf8=%26%2310003%3B&a=%E6'); +``` + +### Dealing with special character sets + +By default the encoding and decoding of characters is done in `utf-8`, +and `iso-8859-1` support is also built in via the `charset` parameter. + +If you wish to encode querystrings to a different character set (i.e. +[Shift JIS](https://en.wikipedia.org/wiki/Shift_JIS)) you can use the +[`qs-iconv`](https://github.com/martinheidegger/qs-iconv) library: + +```javascript +var encoder = require('qs-iconv/encoder')('shift_jis'); +var shiftJISEncoded = qs.stringify({ a: 'こんにちは!' }, { encoder: encoder }); +assert.equal(shiftJISEncoded, 'a=%82%B1%82%F1%82%C9%82%BF%82%CD%81I'); +``` + +This also works for decoding of query strings: + +```javascript +var decoder = require('qs-iconv/decoder')('shift_jis'); +var obj = qs.parse('a=%82%B1%82%F1%82%C9%82%BF%82%CD%81I', { decoder: decoder }); +assert.deepEqual(obj, { a: 'こんにちは!' }); +``` + +### RFC 3986 and RFC 1738 space encoding + +RFC3986 used as default option and encodes ' ' to *%20* which is backward compatible. +In the same time, output can be stringified as per RFC1738 with ' ' equal to '+'. + +``` +assert.equal(qs.stringify({ a: 'b c' }), 'a=b%20c'); +assert.equal(qs.stringify({ a: 'b c' }, { format : 'RFC3986' }), 'a=b%20c'); +assert.equal(qs.stringify({ a: 'b c' }, { format : 'RFC1738' }), 'a=b+c'); +``` + +## Security + +Please email [@ljharb](https://github.com/ljharb) or see https://tidelift.com/security if you have a potential security vulnerability to report. + +## qs for enterprise + +Available as part of the Tidelift Subscription + +The maintainers of qs and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source dependencies you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact dependencies you use. [Learn more.](https://tidelift.com/subscription/pkg/npm-qs?utm_source=npm-qs&utm_medium=referral&utm_campaign=enterprise&utm_term=repo) + +[package-url]: https://npmjs.org/package/qs +[npm-version-svg]: https://versionbadg.es/ljharb/qs.svg +[deps-svg]: https://david-dm.org/ljharb/qs.svg +[deps-url]: https://david-dm.org/ljharb/qs +[dev-deps-svg]: https://david-dm.org/ljharb/qs/dev-status.svg +[dev-deps-url]: https://david-dm.org/ljharb/qs#info=devDependencies +[npm-badge-png]: https://nodei.co/npm/qs.png?downloads=true&stars=true +[license-image]: https://img.shields.io/npm/l/qs.svg +[license-url]: LICENSE +[downloads-image]: https://img.shields.io/npm/dm/qs.svg +[downloads-url]: https://npm-stat.com/charts.html?package=qs +[codecov-image]: https://codecov.io/gh/ljharb/qs/branch/main/graphs/badge.svg +[codecov-url]: https://app.codecov.io/gh/ljharb/qs/ +[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/ljharb/qs +[actions-url]: https://github.com/ljharb/qs/actions diff --git a/node_modules/qs/dist/qs.js b/node_modules/qs/dist/qs.js new file mode 100644 index 000000000..94baf8ff7 --- /dev/null +++ b/node_modules/qs/dist/qs.js @@ -0,0 +1,2044 @@ +(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.Qs = f()}})(function(){var define,module,exports;return (function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i -1) { + return val.split(','); + } + + return val; +}; + +// This is what browsers will submit when the ✓ character occurs in an +// application/x-www-form-urlencoded body and the encoding of the page containing +// the form is iso-8859-1, or when the submitted form has an accept-charset +// attribute of iso-8859-1. Presumably also with other charsets that do not contain +// the ✓ character, such as us-ascii. +var isoSentinel = 'utf8=%26%2310003%3B'; // encodeURIComponent('✓') + +// These are the percent-encoded utf-8 octets representing a checkmark, indicating that the request actually is utf-8 encoded. +var charsetSentinel = 'utf8=%E2%9C%93'; // encodeURIComponent('✓') + +var parseValues = function parseQueryStringValues(str, options) { + var obj = {}; + var cleanStr = options.ignoreQueryPrefix ? str.replace(/^\?/, '') : str; + var limit = options.parameterLimit === Infinity ? undefined : options.parameterLimit; + var parts = cleanStr.split(options.delimiter, limit); + var skipIndex = -1; // Keep track of where the utf8 sentinel was found + var i; + + var charset = options.charset; + if (options.charsetSentinel) { + for (i = 0; i < parts.length; ++i) { + if (parts[i].indexOf('utf8=') === 0) { + if (parts[i] === charsetSentinel) { + charset = 'utf-8'; + } else if (parts[i] === isoSentinel) { + charset = 'iso-8859-1'; + } + skipIndex = i; + i = parts.length; // The eslint settings do not allow break; + } + } + } + + for (i = 0; i < parts.length; ++i) { + if (i === skipIndex) { + continue; + } + var part = parts[i]; + + var bracketEqualsPos = part.indexOf(']='); + var pos = bracketEqualsPos === -1 ? part.indexOf('=') : bracketEqualsPos + 1; + + var key, val; + if (pos === -1) { + key = options.decoder(part, defaults.decoder, charset, 'key'); + val = options.strictNullHandling ? null : ''; + } else { + key = options.decoder(part.slice(0, pos), defaults.decoder, charset, 'key'); + val = utils.maybeMap( + parseArrayValue(part.slice(pos + 1), options), + function (encodedVal) { + return options.decoder(encodedVal, defaults.decoder, charset, 'value'); + } + ); + } + + if (val && options.interpretNumericEntities && charset === 'iso-8859-1') { + val = interpretNumericEntities(val); + } + + if (part.indexOf('[]=') > -1) { + val = isArray(val) ? [val] : val; + } + + if (has.call(obj, key)) { + obj[key] = utils.combine(obj[key], val); + } else { + obj[key] = val; + } + } + + return obj; +}; + +var parseObject = function (chain, val, options, valuesParsed) { + var leaf = valuesParsed ? val : parseArrayValue(val, options); + + for (var i = chain.length - 1; i >= 0; --i) { + var obj; + var root = chain[i]; + + if (root === '[]' && options.parseArrays) { + obj = [].concat(leaf); + } else { + obj = options.plainObjects ? Object.create(null) : {}; + var cleanRoot = root.charAt(0) === '[' && root.charAt(root.length - 1) === ']' ? root.slice(1, -1) : root; + var index = parseInt(cleanRoot, 10); + if (!options.parseArrays && cleanRoot === '') { + obj = { 0: leaf }; + } else if ( + !isNaN(index) + && root !== cleanRoot + && String(index) === cleanRoot + && index >= 0 + && (options.parseArrays && index <= options.arrayLimit) + ) { + obj = []; + obj[index] = leaf; + } else if (cleanRoot !== '__proto__') { + obj[cleanRoot] = leaf; + } + } + + leaf = obj; + } + + return leaf; +}; + +var parseKeys = function parseQueryStringKeys(givenKey, val, options, valuesParsed) { + if (!givenKey) { + return; + } + + // Transform dot notation to bracket notation + var key = options.allowDots ? givenKey.replace(/\.([^.[]+)/g, '[$1]') : givenKey; + + // The regex chunks + + var brackets = /(\[[^[\]]*])/; + var child = /(\[[^[\]]*])/g; + + // Get the parent + + var segment = options.depth > 0 && brackets.exec(key); + var parent = segment ? key.slice(0, segment.index) : key; + + // Stash the parent if it exists + + var keys = []; + if (parent) { + // If we aren't using plain objects, optionally prefix keys that would overwrite object prototype properties + if (!options.plainObjects && has.call(Object.prototype, parent)) { + if (!options.allowPrototypes) { + return; + } + } + + keys.push(parent); + } + + // Loop through children appending to the array until we hit depth + + var i = 0; + while (options.depth > 0 && (segment = child.exec(key)) !== null && i < options.depth) { + i += 1; + if (!options.plainObjects && has.call(Object.prototype, segment[1].slice(1, -1))) { + if (!options.allowPrototypes) { + return; + } + } + keys.push(segment[1]); + } + + // If there's a remainder, just add whatever is left + + if (segment) { + keys.push('[' + key.slice(segment.index) + ']'); + } + + return parseObject(keys, val, options, valuesParsed); +}; + +var normalizeParseOptions = function normalizeParseOptions(opts) { + if (!opts) { + return defaults; + } + + if (opts.decoder !== null && opts.decoder !== undefined && typeof opts.decoder !== 'function') { + throw new TypeError('Decoder has to be a function.'); + } + + if (typeof opts.charset !== 'undefined' && opts.charset !== 'utf-8' && opts.charset !== 'iso-8859-1') { + throw new TypeError('The charset option must be either utf-8, iso-8859-1, or undefined'); + } + var charset = typeof opts.charset === 'undefined' ? defaults.charset : opts.charset; + + return { + allowDots: typeof opts.allowDots === 'undefined' ? defaults.allowDots : !!opts.allowDots, + allowPrototypes: typeof opts.allowPrototypes === 'boolean' ? opts.allowPrototypes : defaults.allowPrototypes, + allowSparse: typeof opts.allowSparse === 'boolean' ? opts.allowSparse : defaults.allowSparse, + arrayLimit: typeof opts.arrayLimit === 'number' ? opts.arrayLimit : defaults.arrayLimit, + charset: charset, + charsetSentinel: typeof opts.charsetSentinel === 'boolean' ? opts.charsetSentinel : defaults.charsetSentinel, + comma: typeof opts.comma === 'boolean' ? opts.comma : defaults.comma, + decoder: typeof opts.decoder === 'function' ? opts.decoder : defaults.decoder, + delimiter: typeof opts.delimiter === 'string' || utils.isRegExp(opts.delimiter) ? opts.delimiter : defaults.delimiter, + // eslint-disable-next-line no-implicit-coercion, no-extra-parens + depth: (typeof opts.depth === 'number' || opts.depth === false) ? +opts.depth : defaults.depth, + ignoreQueryPrefix: opts.ignoreQueryPrefix === true, + interpretNumericEntities: typeof opts.interpretNumericEntities === 'boolean' ? opts.interpretNumericEntities : defaults.interpretNumericEntities, + parameterLimit: typeof opts.parameterLimit === 'number' ? opts.parameterLimit : defaults.parameterLimit, + parseArrays: opts.parseArrays !== false, + plainObjects: typeof opts.plainObjects === 'boolean' ? opts.plainObjects : defaults.plainObjects, + strictNullHandling: typeof opts.strictNullHandling === 'boolean' ? opts.strictNullHandling : defaults.strictNullHandling + }; +}; + +module.exports = function (str, opts) { + var options = normalizeParseOptions(opts); + + if (str === '' || str === null || typeof str === 'undefined') { + return options.plainObjects ? Object.create(null) : {}; + } + + var tempObj = typeof str === 'string' ? parseValues(str, options) : str; + var obj = options.plainObjects ? Object.create(null) : {}; + + // Iterate over the keys and setup the new object + + var keys = Object.keys(tempObj); + for (var i = 0; i < keys.length; ++i) { + var key = keys[i]; + var newObj = parseKeys(key, tempObj[key], options, typeof str === 'string'); + obj = utils.merge(obj, newObj, options); + } + + if (options.allowSparse === true) { + return obj; + } + + return utils.compact(obj); +}; + +},{"./utils":5}],4:[function(require,module,exports){ +'use strict'; + +var getSideChannel = require('side-channel'); +var utils = require('./utils'); +var formats = require('./formats'); +var has = Object.prototype.hasOwnProperty; + +var arrayPrefixGenerators = { + brackets: function brackets(prefix) { + return prefix + '[]'; + }, + comma: 'comma', + indices: function indices(prefix, key) { + return prefix + '[' + key + ']'; + }, + repeat: function repeat(prefix) { + return prefix; + } +}; + +var isArray = Array.isArray; +var split = String.prototype.split; +var push = Array.prototype.push; +var pushToArray = function (arr, valueOrArray) { + push.apply(arr, isArray(valueOrArray) ? valueOrArray : [valueOrArray]); +}; + +var toISO = Date.prototype.toISOString; + +var defaultFormat = formats['default']; +var defaults = { + addQueryPrefix: false, + allowDots: false, + charset: 'utf-8', + charsetSentinel: false, + delimiter: '&', + encode: true, + encoder: utils.encode, + encodeValuesOnly: false, + format: defaultFormat, + formatter: formats.formatters[defaultFormat], + // deprecated + indices: false, + serializeDate: function serializeDate(date) { + return toISO.call(date); + }, + skipNulls: false, + strictNullHandling: false +}; + +var isNonNullishPrimitive = function isNonNullishPrimitive(v) { + return typeof v === 'string' + || typeof v === 'number' + || typeof v === 'boolean' + || typeof v === 'symbol' + || typeof v === 'bigint'; +}; + +var sentinel = {}; + +var stringify = function stringify( + object, + prefix, + generateArrayPrefix, + strictNullHandling, + skipNulls, + encoder, + filter, + sort, + allowDots, + serializeDate, + format, + formatter, + encodeValuesOnly, + charset, + sideChannel +) { + var obj = object; + + var tmpSc = sideChannel; + var step = 0; + var findFlag = false; + while ((tmpSc = tmpSc.get(sentinel)) !== void undefined && !findFlag) { + // Where object last appeared in the ref tree + var pos = tmpSc.get(object); + step += 1; + if (typeof pos !== 'undefined') { + if (pos === step) { + throw new RangeError('Cyclic object value'); + } else { + findFlag = true; // Break while + } + } + if (typeof tmpSc.get(sentinel) === 'undefined') { + step = 0; + } + } + + if (typeof filter === 'function') { + obj = filter(prefix, obj); + } else if (obj instanceof Date) { + obj = serializeDate(obj); + } else if (generateArrayPrefix === 'comma' && isArray(obj)) { + obj = utils.maybeMap(obj, function (value) { + if (value instanceof Date) { + return serializeDate(value); + } + return value; + }); + } + + if (obj === null) { + if (strictNullHandling) { + return encoder && !encodeValuesOnly ? encoder(prefix, defaults.encoder, charset, 'key', format) : prefix; + } + + obj = ''; + } + + if (isNonNullishPrimitive(obj) || utils.isBuffer(obj)) { + if (encoder) { + var keyValue = encodeValuesOnly ? prefix : encoder(prefix, defaults.encoder, charset, 'key', format); + if (generateArrayPrefix === 'comma' && encodeValuesOnly) { + var valuesArray = split.call(String(obj), ','); + var valuesJoined = ''; + for (var i = 0; i < valuesArray.length; ++i) { + valuesJoined += (i === 0 ? '' : ',') + formatter(encoder(valuesArray[i], defaults.encoder, charset, 'value', format)); + } + return [formatter(keyValue) + '=' + valuesJoined]; + } + return [formatter(keyValue) + '=' + formatter(encoder(obj, defaults.encoder, charset, 'value', format))]; + } + return [formatter(prefix) + '=' + formatter(String(obj))]; + } + + var values = []; + + if (typeof obj === 'undefined') { + return values; + } + + var objKeys; + if (generateArrayPrefix === 'comma' && isArray(obj)) { + // we need to join elements in + objKeys = [{ value: obj.length > 0 ? obj.join(',') || null : void undefined }]; + } else if (isArray(filter)) { + objKeys = filter; + } else { + var keys = Object.keys(obj); + objKeys = sort ? keys.sort(sort) : keys; + } + + for (var j = 0; j < objKeys.length; ++j) { + var key = objKeys[j]; + var value = typeof key === 'object' && typeof key.value !== 'undefined' ? key.value : obj[key]; + + if (skipNulls && value === null) { + continue; + } + + var keyPrefix = isArray(obj) + ? typeof generateArrayPrefix === 'function' ? generateArrayPrefix(prefix, key) : prefix + : prefix + (allowDots ? '.' + key : '[' + key + ']'); + + sideChannel.set(object, step); + var valueSideChannel = getSideChannel(); + valueSideChannel.set(sentinel, sideChannel); + pushToArray(values, stringify( + value, + keyPrefix, + generateArrayPrefix, + strictNullHandling, + skipNulls, + encoder, + filter, + sort, + allowDots, + serializeDate, + format, + formatter, + encodeValuesOnly, + charset, + valueSideChannel + )); + } + + return values; +}; + +var normalizeStringifyOptions = function normalizeStringifyOptions(opts) { + if (!opts) { + return defaults; + } + + if (opts.encoder !== null && typeof opts.encoder !== 'undefined' && typeof opts.encoder !== 'function') { + throw new TypeError('Encoder has to be a function.'); + } + + var charset = opts.charset || defaults.charset; + if (typeof opts.charset !== 'undefined' && opts.charset !== 'utf-8' && opts.charset !== 'iso-8859-1') { + throw new TypeError('The charset option must be either utf-8, iso-8859-1, or undefined'); + } + + var format = formats['default']; + if (typeof opts.format !== 'undefined') { + if (!has.call(formats.formatters, opts.format)) { + throw new TypeError('Unknown format option provided.'); + } + format = opts.format; + } + var formatter = formats.formatters[format]; + + var filter = defaults.filter; + if (typeof opts.filter === 'function' || isArray(opts.filter)) { + filter = opts.filter; + } + + return { + addQueryPrefix: typeof opts.addQueryPrefix === 'boolean' ? opts.addQueryPrefix : defaults.addQueryPrefix, + allowDots: typeof opts.allowDots === 'undefined' ? defaults.allowDots : !!opts.allowDots, + charset: charset, + charsetSentinel: typeof opts.charsetSentinel === 'boolean' ? opts.charsetSentinel : defaults.charsetSentinel, + delimiter: typeof opts.delimiter === 'undefined' ? defaults.delimiter : opts.delimiter, + encode: typeof opts.encode === 'boolean' ? opts.encode : defaults.encode, + encoder: typeof opts.encoder === 'function' ? opts.encoder : defaults.encoder, + encodeValuesOnly: typeof opts.encodeValuesOnly === 'boolean' ? opts.encodeValuesOnly : defaults.encodeValuesOnly, + filter: filter, + format: format, + formatter: formatter, + serializeDate: typeof opts.serializeDate === 'function' ? opts.serializeDate : defaults.serializeDate, + skipNulls: typeof opts.skipNulls === 'boolean' ? opts.skipNulls : defaults.skipNulls, + sort: typeof opts.sort === 'function' ? opts.sort : null, + strictNullHandling: typeof opts.strictNullHandling === 'boolean' ? opts.strictNullHandling : defaults.strictNullHandling + }; +}; + +module.exports = function (object, opts) { + var obj = object; + var options = normalizeStringifyOptions(opts); + + var objKeys; + var filter; + + if (typeof options.filter === 'function') { + filter = options.filter; + obj = filter('', obj); + } else if (isArray(options.filter)) { + filter = options.filter; + objKeys = filter; + } + + var keys = []; + + if (typeof obj !== 'object' || obj === null) { + return ''; + } + + var arrayFormat; + if (opts && opts.arrayFormat in arrayPrefixGenerators) { + arrayFormat = opts.arrayFormat; + } else if (opts && 'indices' in opts) { + arrayFormat = opts.indices ? 'indices' : 'repeat'; + } else { + arrayFormat = 'indices'; + } + + var generateArrayPrefix = arrayPrefixGenerators[arrayFormat]; + + if (!objKeys) { + objKeys = Object.keys(obj); + } + + if (options.sort) { + objKeys.sort(options.sort); + } + + var sideChannel = getSideChannel(); + for (var i = 0; i < objKeys.length; ++i) { + var key = objKeys[i]; + + if (options.skipNulls && obj[key] === null) { + continue; + } + pushToArray(keys, stringify( + obj[key], + key, + generateArrayPrefix, + options.strictNullHandling, + options.skipNulls, + options.encode ? options.encoder : null, + options.filter, + options.sort, + options.allowDots, + options.serializeDate, + options.format, + options.formatter, + options.encodeValuesOnly, + options.charset, + sideChannel + )); + } + + var joined = keys.join(options.delimiter); + var prefix = options.addQueryPrefix === true ? '?' : ''; + + if (options.charsetSentinel) { + if (options.charset === 'iso-8859-1') { + // encodeURIComponent('✓'), the "numeric entity" representation of a checkmark + prefix += 'utf8=%26%2310003%3B&'; + } else { + // encodeURIComponent('✓') + prefix += 'utf8=%E2%9C%93&'; + } + } + + return joined.length > 0 ? prefix + joined : ''; +}; + +},{"./formats":1,"./utils":5,"side-channel":16}],5:[function(require,module,exports){ +'use strict'; + +var formats = require('./formats'); + +var has = Object.prototype.hasOwnProperty; +var isArray = Array.isArray; + +var hexTable = (function () { + var array = []; + for (var i = 0; i < 256; ++i) { + array.push('%' + ((i < 16 ? '0' : '') + i.toString(16)).toUpperCase()); + } + + return array; +}()); + +var compactQueue = function compactQueue(queue) { + while (queue.length > 1) { + var item = queue.pop(); + var obj = item.obj[item.prop]; + + if (isArray(obj)) { + var compacted = []; + + for (var j = 0; j < obj.length; ++j) { + if (typeof obj[j] !== 'undefined') { + compacted.push(obj[j]); + } + } + + item.obj[item.prop] = compacted; + } + } +}; + +var arrayToObject = function arrayToObject(source, options) { + var obj = options && options.plainObjects ? Object.create(null) : {}; + for (var i = 0; i < source.length; ++i) { + if (typeof source[i] !== 'undefined') { + obj[i] = source[i]; + } + } + + return obj; +}; + +var merge = function merge(target, source, options) { + /* eslint no-param-reassign: 0 */ + if (!source) { + return target; + } + + if (typeof source !== 'object') { + if (isArray(target)) { + target.push(source); + } else if (target && typeof target === 'object') { + if ((options && (options.plainObjects || options.allowPrototypes)) || !has.call(Object.prototype, source)) { + target[source] = true; + } + } else { + return [target, source]; + } + + return target; + } + + if (!target || typeof target !== 'object') { + return [target].concat(source); + } + + var mergeTarget = target; + if (isArray(target) && !isArray(source)) { + mergeTarget = arrayToObject(target, options); + } + + if (isArray(target) && isArray(source)) { + source.forEach(function (item, i) { + if (has.call(target, i)) { + var targetItem = target[i]; + if (targetItem && typeof targetItem === 'object' && item && typeof item === 'object') { + target[i] = merge(targetItem, item, options); + } else { + target.push(item); + } + } else { + target[i] = item; + } + }); + return target; + } + + return Object.keys(source).reduce(function (acc, key) { + var value = source[key]; + + if (has.call(acc, key)) { + acc[key] = merge(acc[key], value, options); + } else { + acc[key] = value; + } + return acc; + }, mergeTarget); +}; + +var assign = function assignSingleSource(target, source) { + return Object.keys(source).reduce(function (acc, key) { + acc[key] = source[key]; + return acc; + }, target); +}; + +var decode = function (str, decoder, charset) { + var strWithoutPlus = str.replace(/\+/g, ' '); + if (charset === 'iso-8859-1') { + // unescape never throws, no try...catch needed: + return strWithoutPlus.replace(/%[0-9a-f]{2}/gi, unescape); + } + // utf-8 + try { + return decodeURIComponent(strWithoutPlus); + } catch (e) { + return strWithoutPlus; + } +}; + +var encode = function encode(str, defaultEncoder, charset, kind, format) { + // This code was originally written by Brian White (mscdex) for the io.js core querystring library. + // It has been adapted here for stricter adherence to RFC 3986 + if (str.length === 0) { + return str; + } + + var string = str; + if (typeof str === 'symbol') { + string = Symbol.prototype.toString.call(str); + } else if (typeof str !== 'string') { + string = String(str); + } + + if (charset === 'iso-8859-1') { + return escape(string).replace(/%u[0-9a-f]{4}/gi, function ($0) { + return '%26%23' + parseInt($0.slice(2), 16) + '%3B'; + }); + } + + var out = ''; + for (var i = 0; i < string.length; ++i) { + var c = string.charCodeAt(i); + + if ( + c === 0x2D // - + || c === 0x2E // . + || c === 0x5F // _ + || c === 0x7E // ~ + || (c >= 0x30 && c <= 0x39) // 0-9 + || (c >= 0x41 && c <= 0x5A) // a-z + || (c >= 0x61 && c <= 0x7A) // A-Z + || (format === formats.RFC1738 && (c === 0x28 || c === 0x29)) // ( ) + ) { + out += string.charAt(i); + continue; + } + + if (c < 0x80) { + out = out + hexTable[c]; + continue; + } + + if (c < 0x800) { + out = out + (hexTable[0xC0 | (c >> 6)] + hexTable[0x80 | (c & 0x3F)]); + continue; + } + + if (c < 0xD800 || c >= 0xE000) { + out = out + (hexTable[0xE0 | (c >> 12)] + hexTable[0x80 | ((c >> 6) & 0x3F)] + hexTable[0x80 | (c & 0x3F)]); + continue; + } + + i += 1; + c = 0x10000 + (((c & 0x3FF) << 10) | (string.charCodeAt(i) & 0x3FF)); + /* eslint operator-linebreak: [2, "before"] */ + out += hexTable[0xF0 | (c >> 18)] + + hexTable[0x80 | ((c >> 12) & 0x3F)] + + hexTable[0x80 | ((c >> 6) & 0x3F)] + + hexTable[0x80 | (c & 0x3F)]; + } + + return out; +}; + +var compact = function compact(value) { + var queue = [{ obj: { o: value }, prop: 'o' }]; + var refs = []; + + for (var i = 0; i < queue.length; ++i) { + var item = queue[i]; + var obj = item.obj[item.prop]; + + var keys = Object.keys(obj); + for (var j = 0; j < keys.length; ++j) { + var key = keys[j]; + var val = obj[key]; + if (typeof val === 'object' && val !== null && refs.indexOf(val) === -1) { + queue.push({ obj: obj, prop: key }); + refs.push(val); + } + } + } + + compactQueue(queue); + + return value; +}; + +var isRegExp = function isRegExp(obj) { + return Object.prototype.toString.call(obj) === '[object RegExp]'; +}; + +var isBuffer = function isBuffer(obj) { + if (!obj || typeof obj !== 'object') { + return false; + } + + return !!(obj.constructor && obj.constructor.isBuffer && obj.constructor.isBuffer(obj)); +}; + +var combine = function combine(a, b) { + return [].concat(a, b); +}; + +var maybeMap = function maybeMap(val, fn) { + if (isArray(val)) { + var mapped = []; + for (var i = 0; i < val.length; i += 1) { + mapped.push(fn(val[i])); + } + return mapped; + } + return fn(val); +}; + +module.exports = { + arrayToObject: arrayToObject, + assign: assign, + combine: combine, + compact: compact, + decode: decode, + encode: encode, + isBuffer: isBuffer, + isRegExp: isRegExp, + maybeMap: maybeMap, + merge: merge +}; + +},{"./formats":1}],6:[function(require,module,exports){ + +},{}],7:[function(require,module,exports){ +'use strict'; + +var GetIntrinsic = require('get-intrinsic'); + +var callBind = require('./'); + +var $indexOf = callBind(GetIntrinsic('String.prototype.indexOf')); + +module.exports = function callBoundIntrinsic(name, allowMissing) { + var intrinsic = GetIntrinsic(name, !!allowMissing); + if (typeof intrinsic === 'function' && $indexOf(name, '.prototype.') > -1) { + return callBind(intrinsic); + } + return intrinsic; +}; + +},{"./":8,"get-intrinsic":11}],8:[function(require,module,exports){ +'use strict'; + +var bind = require('function-bind'); +var GetIntrinsic = require('get-intrinsic'); + +var $apply = GetIntrinsic('%Function.prototype.apply%'); +var $call = GetIntrinsic('%Function.prototype.call%'); +var $reflectApply = GetIntrinsic('%Reflect.apply%', true) || bind.call($call, $apply); + +var $gOPD = GetIntrinsic('%Object.getOwnPropertyDescriptor%', true); +var $defineProperty = GetIntrinsic('%Object.defineProperty%', true); +var $max = GetIntrinsic('%Math.max%'); + +if ($defineProperty) { + try { + $defineProperty({}, 'a', { value: 1 }); + } catch (e) { + // IE 8 has a broken defineProperty + $defineProperty = null; + } +} + +module.exports = function callBind(originalFunction) { + var func = $reflectApply(bind, $call, arguments); + if ($gOPD && $defineProperty) { + var desc = $gOPD(func, 'length'); + if (desc.configurable) { + // original length, plus the receiver, minus any additional arguments (after the receiver) + $defineProperty( + func, + 'length', + { value: 1 + $max(0, originalFunction.length - (arguments.length - 1)) } + ); + } + } + return func; +}; + +var applyBind = function applyBind() { + return $reflectApply(bind, $apply, arguments); +}; + +if ($defineProperty) { + $defineProperty(module.exports, 'apply', { value: applyBind }); +} else { + module.exports.apply = applyBind; +} + +},{"function-bind":10,"get-intrinsic":11}],9:[function(require,module,exports){ +'use strict'; + +/* eslint no-invalid-this: 1 */ + +var ERROR_MESSAGE = 'Function.prototype.bind called on incompatible '; +var slice = Array.prototype.slice; +var toStr = Object.prototype.toString; +var funcType = '[object Function]'; + +module.exports = function bind(that) { + var target = this; + if (typeof target !== 'function' || toStr.call(target) !== funcType) { + throw new TypeError(ERROR_MESSAGE + target); + } + var args = slice.call(arguments, 1); + + var bound; + var binder = function () { + if (this instanceof bound) { + var result = target.apply( + this, + args.concat(slice.call(arguments)) + ); + if (Object(result) === result) { + return result; + } + return this; + } else { + return target.apply( + that, + args.concat(slice.call(arguments)) + ); + } + }; + + var boundLength = Math.max(0, target.length - args.length); + var boundArgs = []; + for (var i = 0; i < boundLength; i++) { + boundArgs.push('$' + i); + } + + bound = Function('binder', 'return function (' + boundArgs.join(',') + '){ return binder.apply(this,arguments); }')(binder); + + if (target.prototype) { + var Empty = function Empty() {}; + Empty.prototype = target.prototype; + bound.prototype = new Empty(); + Empty.prototype = null; + } + + return bound; +}; + +},{}],10:[function(require,module,exports){ +'use strict'; + +var implementation = require('./implementation'); + +module.exports = Function.prototype.bind || implementation; + +},{"./implementation":9}],11:[function(require,module,exports){ +'use strict'; + +var undefined; + +var $SyntaxError = SyntaxError; +var $Function = Function; +var $TypeError = TypeError; + +// eslint-disable-next-line consistent-return +var getEvalledConstructor = function (expressionSyntax) { + try { + return $Function('"use strict"; return (' + expressionSyntax + ').constructor;')(); + } catch (e) {} +}; + +var $gOPD = Object.getOwnPropertyDescriptor; +if ($gOPD) { + try { + $gOPD({}, ''); + } catch (e) { + $gOPD = null; // this is IE 8, which has a broken gOPD + } +} + +var throwTypeError = function () { + throw new $TypeError(); +}; +var ThrowTypeError = $gOPD + ? (function () { + try { + // eslint-disable-next-line no-unused-expressions, no-caller, no-restricted-properties + arguments.callee; // IE 8 does not throw here + return throwTypeError; + } catch (calleeThrows) { + try { + // IE 8 throws on Object.getOwnPropertyDescriptor(arguments, '') + return $gOPD(arguments, 'callee').get; + } catch (gOPDthrows) { + return throwTypeError; + } + } + }()) + : throwTypeError; + +var hasSymbols = require('has-symbols')(); + +var getProto = Object.getPrototypeOf || function (x) { return x.__proto__; }; // eslint-disable-line no-proto + +var needsEval = {}; + +var TypedArray = typeof Uint8Array === 'undefined' ? undefined : getProto(Uint8Array); + +var INTRINSICS = { + '%AggregateError%': typeof AggregateError === 'undefined' ? undefined : AggregateError, + '%Array%': Array, + '%ArrayBuffer%': typeof ArrayBuffer === 'undefined' ? undefined : ArrayBuffer, + '%ArrayIteratorPrototype%': hasSymbols ? getProto([][Symbol.iterator]()) : undefined, + '%AsyncFromSyncIteratorPrototype%': undefined, + '%AsyncFunction%': needsEval, + '%AsyncGenerator%': needsEval, + '%AsyncGeneratorFunction%': needsEval, + '%AsyncIteratorPrototype%': needsEval, + '%Atomics%': typeof Atomics === 'undefined' ? undefined : Atomics, + '%BigInt%': typeof BigInt === 'undefined' ? undefined : BigInt, + '%Boolean%': Boolean, + '%DataView%': typeof DataView === 'undefined' ? undefined : DataView, + '%Date%': Date, + '%decodeURI%': decodeURI, + '%decodeURIComponent%': decodeURIComponent, + '%encodeURI%': encodeURI, + '%encodeURIComponent%': encodeURIComponent, + '%Error%': Error, + '%eval%': eval, // eslint-disable-line no-eval + '%EvalError%': EvalError, + '%Float32Array%': typeof Float32Array === 'undefined' ? undefined : Float32Array, + '%Float64Array%': typeof Float64Array === 'undefined' ? undefined : Float64Array, + '%FinalizationRegistry%': typeof FinalizationRegistry === 'undefined' ? undefined : FinalizationRegistry, + '%Function%': $Function, + '%GeneratorFunction%': needsEval, + '%Int8Array%': typeof Int8Array === 'undefined' ? undefined : Int8Array, + '%Int16Array%': typeof Int16Array === 'undefined' ? undefined : Int16Array, + '%Int32Array%': typeof Int32Array === 'undefined' ? undefined : Int32Array, + '%isFinite%': isFinite, + '%isNaN%': isNaN, + '%IteratorPrototype%': hasSymbols ? getProto(getProto([][Symbol.iterator]())) : undefined, + '%JSON%': typeof JSON === 'object' ? JSON : undefined, + '%Map%': typeof Map === 'undefined' ? undefined : Map, + '%MapIteratorPrototype%': typeof Map === 'undefined' || !hasSymbols ? undefined : getProto(new Map()[Symbol.iterator]()), + '%Math%': Math, + '%Number%': Number, + '%Object%': Object, + '%parseFloat%': parseFloat, + '%parseInt%': parseInt, + '%Promise%': typeof Promise === 'undefined' ? undefined : Promise, + '%Proxy%': typeof Proxy === 'undefined' ? undefined : Proxy, + '%RangeError%': RangeError, + '%ReferenceError%': ReferenceError, + '%Reflect%': typeof Reflect === 'undefined' ? undefined : Reflect, + '%RegExp%': RegExp, + '%Set%': typeof Set === 'undefined' ? undefined : Set, + '%SetIteratorPrototype%': typeof Set === 'undefined' || !hasSymbols ? undefined : getProto(new Set()[Symbol.iterator]()), + '%SharedArrayBuffer%': typeof SharedArrayBuffer === 'undefined' ? undefined : SharedArrayBuffer, + '%String%': String, + '%StringIteratorPrototype%': hasSymbols ? getProto(''[Symbol.iterator]()) : undefined, + '%Symbol%': hasSymbols ? Symbol : undefined, + '%SyntaxError%': $SyntaxError, + '%ThrowTypeError%': ThrowTypeError, + '%TypedArray%': TypedArray, + '%TypeError%': $TypeError, + '%Uint8Array%': typeof Uint8Array === 'undefined' ? undefined : Uint8Array, + '%Uint8ClampedArray%': typeof Uint8ClampedArray === 'undefined' ? undefined : Uint8ClampedArray, + '%Uint16Array%': typeof Uint16Array === 'undefined' ? undefined : Uint16Array, + '%Uint32Array%': typeof Uint32Array === 'undefined' ? undefined : Uint32Array, + '%URIError%': URIError, + '%WeakMap%': typeof WeakMap === 'undefined' ? undefined : WeakMap, + '%WeakRef%': typeof WeakRef === 'undefined' ? undefined : WeakRef, + '%WeakSet%': typeof WeakSet === 'undefined' ? undefined : WeakSet +}; + +var doEval = function doEval(name) { + var value; + if (name === '%AsyncFunction%') { + value = getEvalledConstructor('async function () {}'); + } else if (name === '%GeneratorFunction%') { + value = getEvalledConstructor('function* () {}'); + } else if (name === '%AsyncGeneratorFunction%') { + value = getEvalledConstructor('async function* () {}'); + } else if (name === '%AsyncGenerator%') { + var fn = doEval('%AsyncGeneratorFunction%'); + if (fn) { + value = fn.prototype; + } + } else if (name === '%AsyncIteratorPrototype%') { + var gen = doEval('%AsyncGenerator%'); + if (gen) { + value = getProto(gen.prototype); + } + } + + INTRINSICS[name] = value; + + return value; +}; + +var LEGACY_ALIASES = { + '%ArrayBufferPrototype%': ['ArrayBuffer', 'prototype'], + '%ArrayPrototype%': ['Array', 'prototype'], + '%ArrayProto_entries%': ['Array', 'prototype', 'entries'], + '%ArrayProto_forEach%': ['Array', 'prototype', 'forEach'], + '%ArrayProto_keys%': ['Array', 'prototype', 'keys'], + '%ArrayProto_values%': ['Array', 'prototype', 'values'], + '%AsyncFunctionPrototype%': ['AsyncFunction', 'prototype'], + '%AsyncGenerator%': ['AsyncGeneratorFunction', 'prototype'], + '%AsyncGeneratorPrototype%': ['AsyncGeneratorFunction', 'prototype', 'prototype'], + '%BooleanPrototype%': ['Boolean', 'prototype'], + '%DataViewPrototype%': ['DataView', 'prototype'], + '%DatePrototype%': ['Date', 'prototype'], + '%ErrorPrototype%': ['Error', 'prototype'], + '%EvalErrorPrototype%': ['EvalError', 'prototype'], + '%Float32ArrayPrototype%': ['Float32Array', 'prototype'], + '%Float64ArrayPrototype%': ['Float64Array', 'prototype'], + '%FunctionPrototype%': ['Function', 'prototype'], + '%Generator%': ['GeneratorFunction', 'prototype'], + '%GeneratorPrototype%': ['GeneratorFunction', 'prototype', 'prototype'], + '%Int8ArrayPrototype%': ['Int8Array', 'prototype'], + '%Int16ArrayPrototype%': ['Int16Array', 'prototype'], + '%Int32ArrayPrototype%': ['Int32Array', 'prototype'], + '%JSONParse%': ['JSON', 'parse'], + '%JSONStringify%': ['JSON', 'stringify'], + '%MapPrototype%': ['Map', 'prototype'], + '%NumberPrototype%': ['Number', 'prototype'], + '%ObjectPrototype%': ['Object', 'prototype'], + '%ObjProto_toString%': ['Object', 'prototype', 'toString'], + '%ObjProto_valueOf%': ['Object', 'prototype', 'valueOf'], + '%PromisePrototype%': ['Promise', 'prototype'], + '%PromiseProto_then%': ['Promise', 'prototype', 'then'], + '%Promise_all%': ['Promise', 'all'], + '%Promise_reject%': ['Promise', 'reject'], + '%Promise_resolve%': ['Promise', 'resolve'], + '%RangeErrorPrototype%': ['RangeError', 'prototype'], + '%ReferenceErrorPrototype%': ['ReferenceError', 'prototype'], + '%RegExpPrototype%': ['RegExp', 'prototype'], + '%SetPrototype%': ['Set', 'prototype'], + '%SharedArrayBufferPrototype%': ['SharedArrayBuffer', 'prototype'], + '%StringPrototype%': ['String', 'prototype'], + '%SymbolPrototype%': ['Symbol', 'prototype'], + '%SyntaxErrorPrototype%': ['SyntaxError', 'prototype'], + '%TypedArrayPrototype%': ['TypedArray', 'prototype'], + '%TypeErrorPrototype%': ['TypeError', 'prototype'], + '%Uint8ArrayPrototype%': ['Uint8Array', 'prototype'], + '%Uint8ClampedArrayPrototype%': ['Uint8ClampedArray', 'prototype'], + '%Uint16ArrayPrototype%': ['Uint16Array', 'prototype'], + '%Uint32ArrayPrototype%': ['Uint32Array', 'prototype'], + '%URIErrorPrototype%': ['URIError', 'prototype'], + '%WeakMapPrototype%': ['WeakMap', 'prototype'], + '%WeakSetPrototype%': ['WeakSet', 'prototype'] +}; + +var bind = require('function-bind'); +var hasOwn = require('has'); +var $concat = bind.call(Function.call, Array.prototype.concat); +var $spliceApply = bind.call(Function.apply, Array.prototype.splice); +var $replace = bind.call(Function.call, String.prototype.replace); +var $strSlice = bind.call(Function.call, String.prototype.slice); + +/* adapted from https://github.com/lodash/lodash/blob/4.17.15/dist/lodash.js#L6735-L6744 */ +var rePropName = /[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g; +var reEscapeChar = /\\(\\)?/g; /** Used to match backslashes in property paths. */ +var stringToPath = function stringToPath(string) { + var first = $strSlice(string, 0, 1); + var last = $strSlice(string, -1); + if (first === '%' && last !== '%') { + throw new $SyntaxError('invalid intrinsic syntax, expected closing `%`'); + } else if (last === '%' && first !== '%') { + throw new $SyntaxError('invalid intrinsic syntax, expected opening `%`'); + } + var result = []; + $replace(string, rePropName, function (match, number, quote, subString) { + result[result.length] = quote ? $replace(subString, reEscapeChar, '$1') : number || match; + }); + return result; +}; +/* end adaptation */ + +var getBaseIntrinsic = function getBaseIntrinsic(name, allowMissing) { + var intrinsicName = name; + var alias; + if (hasOwn(LEGACY_ALIASES, intrinsicName)) { + alias = LEGACY_ALIASES[intrinsicName]; + intrinsicName = '%' + alias[0] + '%'; + } + + if (hasOwn(INTRINSICS, intrinsicName)) { + var value = INTRINSICS[intrinsicName]; + if (value === needsEval) { + value = doEval(intrinsicName); + } + if (typeof value === 'undefined' && !allowMissing) { + throw new $TypeError('intrinsic ' + name + ' exists, but is not available. Please file an issue!'); + } + + return { + alias: alias, + name: intrinsicName, + value: value + }; + } + + throw new $SyntaxError('intrinsic ' + name + ' does not exist!'); +}; + +module.exports = function GetIntrinsic(name, allowMissing) { + if (typeof name !== 'string' || name.length === 0) { + throw new $TypeError('intrinsic name must be a non-empty string'); + } + if (arguments.length > 1 && typeof allowMissing !== 'boolean') { + throw new $TypeError('"allowMissing" argument must be a boolean'); + } + + var parts = stringToPath(name); + var intrinsicBaseName = parts.length > 0 ? parts[0] : ''; + + var intrinsic = getBaseIntrinsic('%' + intrinsicBaseName + '%', allowMissing); + var intrinsicRealName = intrinsic.name; + var value = intrinsic.value; + var skipFurtherCaching = false; + + var alias = intrinsic.alias; + if (alias) { + intrinsicBaseName = alias[0]; + $spliceApply(parts, $concat([0, 1], alias)); + } + + for (var i = 1, isOwn = true; i < parts.length; i += 1) { + var part = parts[i]; + var first = $strSlice(part, 0, 1); + var last = $strSlice(part, -1); + if ( + ( + (first === '"' || first === "'" || first === '`') + || (last === '"' || last === "'" || last === '`') + ) + && first !== last + ) { + throw new $SyntaxError('property names with quotes must have matching quotes'); + } + if (part === 'constructor' || !isOwn) { + skipFurtherCaching = true; + } + + intrinsicBaseName += '.' + part; + intrinsicRealName = '%' + intrinsicBaseName + '%'; + + if (hasOwn(INTRINSICS, intrinsicRealName)) { + value = INTRINSICS[intrinsicRealName]; + } else if (value != null) { + if (!(part in value)) { + if (!allowMissing) { + throw new $TypeError('base intrinsic for ' + name + ' exists, but the property is not available.'); + } + return void undefined; + } + if ($gOPD && (i + 1) >= parts.length) { + var desc = $gOPD(value, part); + isOwn = !!desc; + + // By convention, when a data property is converted to an accessor + // property to emulate a data property that does not suffer from + // the override mistake, that accessor's getter is marked with + // an `originalValue` property. Here, when we detect this, we + // uphold the illusion by pretending to see that original data + // property, i.e., returning the value rather than the getter + // itself. + if (isOwn && 'get' in desc && !('originalValue' in desc.get)) { + value = desc.get; + } else { + value = value[part]; + } + } else { + isOwn = hasOwn(value, part); + value = value[part]; + } + + if (isOwn && !skipFurtherCaching) { + INTRINSICS[intrinsicRealName] = value; + } + } + } + return value; +}; + +},{"function-bind":10,"has":14,"has-symbols":12}],12:[function(require,module,exports){ +'use strict'; + +var origSymbol = typeof Symbol !== 'undefined' && Symbol; +var hasSymbolSham = require('./shams'); + +module.exports = function hasNativeSymbols() { + if (typeof origSymbol !== 'function') { return false; } + if (typeof Symbol !== 'function') { return false; } + if (typeof origSymbol('foo') !== 'symbol') { return false; } + if (typeof Symbol('bar') !== 'symbol') { return false; } + + return hasSymbolSham(); +}; + +},{"./shams":13}],13:[function(require,module,exports){ +'use strict'; + +/* eslint complexity: [2, 18], max-statements: [2, 33] */ +module.exports = function hasSymbols() { + if (typeof Symbol !== 'function' || typeof Object.getOwnPropertySymbols !== 'function') { return false; } + if (typeof Symbol.iterator === 'symbol') { return true; } + + var obj = {}; + var sym = Symbol('test'); + var symObj = Object(sym); + if (typeof sym === 'string') { return false; } + + if (Object.prototype.toString.call(sym) !== '[object Symbol]') { return false; } + if (Object.prototype.toString.call(symObj) !== '[object Symbol]') { return false; } + + // temp disabled per https://github.com/ljharb/object.assign/issues/17 + // if (sym instanceof Symbol) { return false; } + // temp disabled per https://github.com/WebReflection/get-own-property-symbols/issues/4 + // if (!(symObj instanceof Symbol)) { return false; } + + // if (typeof Symbol.prototype.toString !== 'function') { return false; } + // if (String(sym) !== Symbol.prototype.toString.call(sym)) { return false; } + + var symVal = 42; + obj[sym] = symVal; + for (sym in obj) { return false; } // eslint-disable-line no-restricted-syntax, no-unreachable-loop + if (typeof Object.keys === 'function' && Object.keys(obj).length !== 0) { return false; } + + if (typeof Object.getOwnPropertyNames === 'function' && Object.getOwnPropertyNames(obj).length !== 0) { return false; } + + var syms = Object.getOwnPropertySymbols(obj); + if (syms.length !== 1 || syms[0] !== sym) { return false; } + + if (!Object.prototype.propertyIsEnumerable.call(obj, sym)) { return false; } + + if (typeof Object.getOwnPropertyDescriptor === 'function') { + var descriptor = Object.getOwnPropertyDescriptor(obj, sym); + if (descriptor.value !== symVal || descriptor.enumerable !== true) { return false; } + } + + return true; +}; + +},{}],14:[function(require,module,exports){ +'use strict'; + +var bind = require('function-bind'); + +module.exports = bind.call(Function.call, Object.prototype.hasOwnProperty); + +},{"function-bind":10}],15:[function(require,module,exports){ +var hasMap = typeof Map === 'function' && Map.prototype; +var mapSizeDescriptor = Object.getOwnPropertyDescriptor && hasMap ? Object.getOwnPropertyDescriptor(Map.prototype, 'size') : null; +var mapSize = hasMap && mapSizeDescriptor && typeof mapSizeDescriptor.get === 'function' ? mapSizeDescriptor.get : null; +var mapForEach = hasMap && Map.prototype.forEach; +var hasSet = typeof Set === 'function' && Set.prototype; +var setSizeDescriptor = Object.getOwnPropertyDescriptor && hasSet ? Object.getOwnPropertyDescriptor(Set.prototype, 'size') : null; +var setSize = hasSet && setSizeDescriptor && typeof setSizeDescriptor.get === 'function' ? setSizeDescriptor.get : null; +var setForEach = hasSet && Set.prototype.forEach; +var hasWeakMap = typeof WeakMap === 'function' && WeakMap.prototype; +var weakMapHas = hasWeakMap ? WeakMap.prototype.has : null; +var hasWeakSet = typeof WeakSet === 'function' && WeakSet.prototype; +var weakSetHas = hasWeakSet ? WeakSet.prototype.has : null; +var hasWeakRef = typeof WeakRef === 'function' && WeakRef.prototype; +var weakRefDeref = hasWeakRef ? WeakRef.prototype.deref : null; +var booleanValueOf = Boolean.prototype.valueOf; +var objectToString = Object.prototype.toString; +var functionToString = Function.prototype.toString; +var $match = String.prototype.match; +var $slice = String.prototype.slice; +var $replace = String.prototype.replace; +var $toUpperCase = String.prototype.toUpperCase; +var $toLowerCase = String.prototype.toLowerCase; +var $test = RegExp.prototype.test; +var $concat = Array.prototype.concat; +var $join = Array.prototype.join; +var $arrSlice = Array.prototype.slice; +var $floor = Math.floor; +var bigIntValueOf = typeof BigInt === 'function' ? BigInt.prototype.valueOf : null; +var gOPS = Object.getOwnPropertySymbols; +var symToString = typeof Symbol === 'function' && typeof Symbol.iterator === 'symbol' ? Symbol.prototype.toString : null; +var hasShammedSymbols = typeof Symbol === 'function' && typeof Symbol.iterator === 'object'; +// ie, `has-tostringtag/shams +var toStringTag = typeof Symbol === 'function' && Symbol.toStringTag && (typeof Symbol.toStringTag === hasShammedSymbols ? 'object' : 'symbol') + ? Symbol.toStringTag + : null; +var isEnumerable = Object.prototype.propertyIsEnumerable; + +var gPO = (typeof Reflect === 'function' ? Reflect.getPrototypeOf : Object.getPrototypeOf) || ( + [].__proto__ === Array.prototype // eslint-disable-line no-proto + ? function (O) { + return O.__proto__; // eslint-disable-line no-proto + } + : null +); + +function addNumericSeparator(num, str) { + if ( + num === Infinity + || num === -Infinity + || num !== num + || (num && num > -1000 && num < 1000) + || $test.call(/e/, str) + ) { + return str; + } + var sepRegex = /[0-9](?=(?:[0-9]{3})+(?![0-9]))/g; + if (typeof num === 'number') { + var int = num < 0 ? -$floor(-num) : $floor(num); // trunc(num) + if (int !== num) { + var intStr = String(int); + var dec = $slice.call(str, intStr.length + 1); + return $replace.call(intStr, sepRegex, '$&_') + '.' + $replace.call($replace.call(dec, /([0-9]{3})/g, '$&_'), /_$/, ''); + } + } + return $replace.call(str, sepRegex, '$&_'); +} + +var inspectCustom = require('./util.inspect').custom; +var inspectSymbol = inspectCustom && isSymbol(inspectCustom) ? inspectCustom : null; + +module.exports = function inspect_(obj, options, depth, seen) { + var opts = options || {}; + + if (has(opts, 'quoteStyle') && (opts.quoteStyle !== 'single' && opts.quoteStyle !== 'double')) { + throw new TypeError('option "quoteStyle" must be "single" or "double"'); + } + if ( + has(opts, 'maxStringLength') && (typeof opts.maxStringLength === 'number' + ? opts.maxStringLength < 0 && opts.maxStringLength !== Infinity + : opts.maxStringLength !== null + ) + ) { + throw new TypeError('option "maxStringLength", if provided, must be a positive integer, Infinity, or `null`'); + } + var customInspect = has(opts, 'customInspect') ? opts.customInspect : true; + if (typeof customInspect !== 'boolean' && customInspect !== 'symbol') { + throw new TypeError('option "customInspect", if provided, must be `true`, `false`, or `\'symbol\'`'); + } + + if ( + has(opts, 'indent') + && opts.indent !== null + && opts.indent !== '\t' + && !(parseInt(opts.indent, 10) === opts.indent && opts.indent > 0) + ) { + throw new TypeError('option "indent" must be "\\t", an integer > 0, or `null`'); + } + if (has(opts, 'numericSeparator') && typeof opts.numericSeparator !== 'boolean') { + throw new TypeError('option "numericSeparator", if provided, must be `true` or `false`'); + } + var numericSeparator = opts.numericSeparator; + + if (typeof obj === 'undefined') { + return 'undefined'; + } + if (obj === null) { + return 'null'; + } + if (typeof obj === 'boolean') { + return obj ? 'true' : 'false'; + } + + if (typeof obj === 'string') { + return inspectString(obj, opts); + } + if (typeof obj === 'number') { + if (obj === 0) { + return Infinity / obj > 0 ? '0' : '-0'; + } + var str = String(obj); + return numericSeparator ? addNumericSeparator(obj, str) : str; + } + if (typeof obj === 'bigint') { + var bigIntStr = String(obj) + 'n'; + return numericSeparator ? addNumericSeparator(obj, bigIntStr) : bigIntStr; + } + + var maxDepth = typeof opts.depth === 'undefined' ? 5 : opts.depth; + if (typeof depth === 'undefined') { depth = 0; } + if (depth >= maxDepth && maxDepth > 0 && typeof obj === 'object') { + return isArray(obj) ? '[Array]' : '[Object]'; + } + + var indent = getIndent(opts, depth); + + if (typeof seen === 'undefined') { + seen = []; + } else if (indexOf(seen, obj) >= 0) { + return '[Circular]'; + } + + function inspect(value, from, noIndent) { + if (from) { + seen = $arrSlice.call(seen); + seen.push(from); + } + if (noIndent) { + var newOpts = { + depth: opts.depth + }; + if (has(opts, 'quoteStyle')) { + newOpts.quoteStyle = opts.quoteStyle; + } + return inspect_(value, newOpts, depth + 1, seen); + } + return inspect_(value, opts, depth + 1, seen); + } + + if (typeof obj === 'function') { + var name = nameOf(obj); + var keys = arrObjKeys(obj, inspect); + return '[Function' + (name ? ': ' + name : ' (anonymous)') + ']' + (keys.length > 0 ? ' { ' + $join.call(keys, ', ') + ' }' : ''); + } + if (isSymbol(obj)) { + var symString = hasShammedSymbols ? $replace.call(String(obj), /^(Symbol\(.*\))_[^)]*$/, '$1') : symToString.call(obj); + return typeof obj === 'object' && !hasShammedSymbols ? markBoxed(symString) : symString; + } + if (isElement(obj)) { + var s = '<' + $toLowerCase.call(String(obj.nodeName)); + var attrs = obj.attributes || []; + for (var i = 0; i < attrs.length; i++) { + s += ' ' + attrs[i].name + '=' + wrapQuotes(quote(attrs[i].value), 'double', opts); + } + s += '>'; + if (obj.childNodes && obj.childNodes.length) { s += '...'; } + s += ''; + return s; + } + if (isArray(obj)) { + if (obj.length === 0) { return '[]'; } + var xs = arrObjKeys(obj, inspect); + if (indent && !singleLineValues(xs)) { + return '[' + indentedJoin(xs, indent) + ']'; + } + return '[ ' + $join.call(xs, ', ') + ' ]'; + } + if (isError(obj)) { + var parts = arrObjKeys(obj, inspect); + if ('cause' in obj && !isEnumerable.call(obj, 'cause')) { + return '{ [' + String(obj) + '] ' + $join.call($concat.call('[cause]: ' + inspect(obj.cause), parts), ', ') + ' }'; + } + if (parts.length === 0) { return '[' + String(obj) + ']'; } + return '{ [' + String(obj) + '] ' + $join.call(parts, ', ') + ' }'; + } + if (typeof obj === 'object' && customInspect) { + if (inspectSymbol && typeof obj[inspectSymbol] === 'function') { + return obj[inspectSymbol](); + } else if (customInspect !== 'symbol' && typeof obj.inspect === 'function') { + return obj.inspect(); + } + } + if (isMap(obj)) { + var mapParts = []; + mapForEach.call(obj, function (value, key) { + mapParts.push(inspect(key, obj, true) + ' => ' + inspect(value, obj)); + }); + return collectionOf('Map', mapSize.call(obj), mapParts, indent); + } + if (isSet(obj)) { + var setParts = []; + setForEach.call(obj, function (value) { + setParts.push(inspect(value, obj)); + }); + return collectionOf('Set', setSize.call(obj), setParts, indent); + } + if (isWeakMap(obj)) { + return weakCollectionOf('WeakMap'); + } + if (isWeakSet(obj)) { + return weakCollectionOf('WeakSet'); + } + if (isWeakRef(obj)) { + return weakCollectionOf('WeakRef'); + } + if (isNumber(obj)) { + return markBoxed(inspect(Number(obj))); + } + if (isBigInt(obj)) { + return markBoxed(inspect(bigIntValueOf.call(obj))); + } + if (isBoolean(obj)) { + return markBoxed(booleanValueOf.call(obj)); + } + if (isString(obj)) { + return markBoxed(inspect(String(obj))); + } + if (!isDate(obj) && !isRegExp(obj)) { + var ys = arrObjKeys(obj, inspect); + var isPlainObject = gPO ? gPO(obj) === Object.prototype : obj instanceof Object || obj.constructor === Object; + var protoTag = obj instanceof Object ? '' : 'null prototype'; + var stringTag = !isPlainObject && toStringTag && Object(obj) === obj && toStringTag in obj ? $slice.call(toStr(obj), 8, -1) : protoTag ? 'Object' : ''; + var constructorTag = isPlainObject || typeof obj.constructor !== 'function' ? '' : obj.constructor.name ? obj.constructor.name + ' ' : ''; + var tag = constructorTag + (stringTag || protoTag ? '[' + $join.call($concat.call([], stringTag || [], protoTag || []), ': ') + '] ' : ''); + if (ys.length === 0) { return tag + '{}'; } + if (indent) { + return tag + '{' + indentedJoin(ys, indent) + '}'; + } + return tag + '{ ' + $join.call(ys, ', ') + ' }'; + } + return String(obj); +}; + +function wrapQuotes(s, defaultStyle, opts) { + var quoteChar = (opts.quoteStyle || defaultStyle) === 'double' ? '"' : "'"; + return quoteChar + s + quoteChar; +} + +function quote(s) { + return $replace.call(String(s), /"/g, '"'); +} + +function isArray(obj) { return toStr(obj) === '[object Array]' && (!toStringTag || !(typeof obj === 'object' && toStringTag in obj)); } +function isDate(obj) { return toStr(obj) === '[object Date]' && (!toStringTag || !(typeof obj === 'object' && toStringTag in obj)); } +function isRegExp(obj) { return toStr(obj) === '[object RegExp]' && (!toStringTag || !(typeof obj === 'object' && toStringTag in obj)); } +function isError(obj) { return toStr(obj) === '[object Error]' && (!toStringTag || !(typeof obj === 'object' && toStringTag in obj)); } +function isString(obj) { return toStr(obj) === '[object String]' && (!toStringTag || !(typeof obj === 'object' && toStringTag in obj)); } +function isNumber(obj) { return toStr(obj) === '[object Number]' && (!toStringTag || !(typeof obj === 'object' && toStringTag in obj)); } +function isBoolean(obj) { return toStr(obj) === '[object Boolean]' && (!toStringTag || !(typeof obj === 'object' && toStringTag in obj)); } + +// Symbol and BigInt do have Symbol.toStringTag by spec, so that can't be used to eliminate false positives +function isSymbol(obj) { + if (hasShammedSymbols) { + return obj && typeof obj === 'object' && obj instanceof Symbol; + } + if (typeof obj === 'symbol') { + return true; + } + if (!obj || typeof obj !== 'object' || !symToString) { + return false; + } + try { + symToString.call(obj); + return true; + } catch (e) {} + return false; +} + +function isBigInt(obj) { + if (!obj || typeof obj !== 'object' || !bigIntValueOf) { + return false; + } + try { + bigIntValueOf.call(obj); + return true; + } catch (e) {} + return false; +} + +var hasOwn = Object.prototype.hasOwnProperty || function (key) { return key in this; }; +function has(obj, key) { + return hasOwn.call(obj, key); +} + +function toStr(obj) { + return objectToString.call(obj); +} + +function nameOf(f) { + if (f.name) { return f.name; } + var m = $match.call(functionToString.call(f), /^function\s*([\w$]+)/); + if (m) { return m[1]; } + return null; +} + +function indexOf(xs, x) { + if (xs.indexOf) { return xs.indexOf(x); } + for (var i = 0, l = xs.length; i < l; i++) { + if (xs[i] === x) { return i; } + } + return -1; +} + +function isMap(x) { + if (!mapSize || !x || typeof x !== 'object') { + return false; + } + try { + mapSize.call(x); + try { + setSize.call(x); + } catch (s) { + return true; + } + return x instanceof Map; // core-js workaround, pre-v2.5.0 + } catch (e) {} + return false; +} + +function isWeakMap(x) { + if (!weakMapHas || !x || typeof x !== 'object') { + return false; + } + try { + weakMapHas.call(x, weakMapHas); + try { + weakSetHas.call(x, weakSetHas); + } catch (s) { + return true; + } + return x instanceof WeakMap; // core-js workaround, pre-v2.5.0 + } catch (e) {} + return false; +} + +function isWeakRef(x) { + if (!weakRefDeref || !x || typeof x !== 'object') { + return false; + } + try { + weakRefDeref.call(x); + return true; + } catch (e) {} + return false; +} + +function isSet(x) { + if (!setSize || !x || typeof x !== 'object') { + return false; + } + try { + setSize.call(x); + try { + mapSize.call(x); + } catch (m) { + return true; + } + return x instanceof Set; // core-js workaround, pre-v2.5.0 + } catch (e) {} + return false; +} + +function isWeakSet(x) { + if (!weakSetHas || !x || typeof x !== 'object') { + return false; + } + try { + weakSetHas.call(x, weakSetHas); + try { + weakMapHas.call(x, weakMapHas); + } catch (s) { + return true; + } + return x instanceof WeakSet; // core-js workaround, pre-v2.5.0 + } catch (e) {} + return false; +} + +function isElement(x) { + if (!x || typeof x !== 'object') { return false; } + if (typeof HTMLElement !== 'undefined' && x instanceof HTMLElement) { + return true; + } + return typeof x.nodeName === 'string' && typeof x.getAttribute === 'function'; +} + +function inspectString(str, opts) { + if (str.length > opts.maxStringLength) { + var remaining = str.length - opts.maxStringLength; + var trailer = '... ' + remaining + ' more character' + (remaining > 1 ? 's' : ''); + return inspectString($slice.call(str, 0, opts.maxStringLength), opts) + trailer; + } + // eslint-disable-next-line no-control-regex + var s = $replace.call($replace.call(str, /(['\\])/g, '\\$1'), /[\x00-\x1f]/g, lowbyte); + return wrapQuotes(s, 'single', opts); +} + +function lowbyte(c) { + var n = c.charCodeAt(0); + var x = { + 8: 'b', + 9: 't', + 10: 'n', + 12: 'f', + 13: 'r' + }[n]; + if (x) { return '\\' + x; } + return '\\x' + (n < 0x10 ? '0' : '') + $toUpperCase.call(n.toString(16)); +} + +function markBoxed(str) { + return 'Object(' + str + ')'; +} + +function weakCollectionOf(type) { + return type + ' { ? }'; +} + +function collectionOf(type, size, entries, indent) { + var joinedEntries = indent ? indentedJoin(entries, indent) : $join.call(entries, ', '); + return type + ' (' + size + ') {' + joinedEntries + '}'; +} + +function singleLineValues(xs) { + for (var i = 0; i < xs.length; i++) { + if (indexOf(xs[i], '\n') >= 0) { + return false; + } + } + return true; +} + +function getIndent(opts, depth) { + var baseIndent; + if (opts.indent === '\t') { + baseIndent = '\t'; + } else if (typeof opts.indent === 'number' && opts.indent > 0) { + baseIndent = $join.call(Array(opts.indent + 1), ' '); + } else { + return null; + } + return { + base: baseIndent, + prev: $join.call(Array(depth + 1), baseIndent) + }; +} + +function indentedJoin(xs, indent) { + if (xs.length === 0) { return ''; } + var lineJoiner = '\n' + indent.prev + indent.base; + return lineJoiner + $join.call(xs, ',' + lineJoiner) + '\n' + indent.prev; +} + +function arrObjKeys(obj, inspect) { + var isArr = isArray(obj); + var xs = []; + if (isArr) { + xs.length = obj.length; + for (var i = 0; i < obj.length; i++) { + xs[i] = has(obj, i) ? inspect(obj[i], obj) : ''; + } + } + var syms = typeof gOPS === 'function' ? gOPS(obj) : []; + var symMap; + if (hasShammedSymbols) { + symMap = {}; + for (var k = 0; k < syms.length; k++) { + symMap['$' + syms[k]] = syms[k]; + } + } + + for (var key in obj) { // eslint-disable-line no-restricted-syntax + if (!has(obj, key)) { continue; } // eslint-disable-line no-restricted-syntax, no-continue + if (isArr && String(Number(key)) === key && key < obj.length) { continue; } // eslint-disable-line no-restricted-syntax, no-continue + if (hasShammedSymbols && symMap['$' + key] instanceof Symbol) { + // this is to prevent shammed Symbols, which are stored as strings, from being included in the string key section + continue; // eslint-disable-line no-restricted-syntax, no-continue + } else if ($test.call(/[^\w$]/, key)) { + xs.push(inspect(key, obj) + ': ' + inspect(obj[key], obj)); + } else { + xs.push(key + ': ' + inspect(obj[key], obj)); + } + } + if (typeof gOPS === 'function') { + for (var j = 0; j < syms.length; j++) { + if (isEnumerable.call(obj, syms[j])) { + xs.push('[' + inspect(syms[j]) + ']: ' + inspect(obj[syms[j]], obj)); + } + } + } + return xs; +} + +},{"./util.inspect":6}],16:[function(require,module,exports){ +'use strict'; + +var GetIntrinsic = require('get-intrinsic'); +var callBound = require('call-bind/callBound'); +var inspect = require('object-inspect'); + +var $TypeError = GetIntrinsic('%TypeError%'); +var $WeakMap = GetIntrinsic('%WeakMap%', true); +var $Map = GetIntrinsic('%Map%', true); + +var $weakMapGet = callBound('WeakMap.prototype.get', true); +var $weakMapSet = callBound('WeakMap.prototype.set', true); +var $weakMapHas = callBound('WeakMap.prototype.has', true); +var $mapGet = callBound('Map.prototype.get', true); +var $mapSet = callBound('Map.prototype.set', true); +var $mapHas = callBound('Map.prototype.has', true); + +/* + * This function traverses the list returning the node corresponding to the + * given key. + * + * That node is also moved to the head of the list, so that if it's accessed + * again we don't need to traverse the whole list. By doing so, all the recently + * used nodes can be accessed relatively quickly. + */ +var listGetNode = function (list, key) { // eslint-disable-line consistent-return + for (var prev = list, curr; (curr = prev.next) !== null; prev = curr) { + if (curr.key === key) { + prev.next = curr.next; + curr.next = list.next; + list.next = curr; // eslint-disable-line no-param-reassign + return curr; + } + } +}; + +var listGet = function (objects, key) { + var node = listGetNode(objects, key); + return node && node.value; +}; +var listSet = function (objects, key, value) { + var node = listGetNode(objects, key); + if (node) { + node.value = value; + } else { + // Prepend the new node to the beginning of the list + objects.next = { // eslint-disable-line no-param-reassign + key: key, + next: objects.next, + value: value + }; + } +}; +var listHas = function (objects, key) { + return !!listGetNode(objects, key); +}; + +module.exports = function getSideChannel() { + var $wm; + var $m; + var $o; + var channel = { + assert: function (key) { + if (!channel.has(key)) { + throw new $TypeError('Side channel does not contain ' + inspect(key)); + } + }, + get: function (key) { // eslint-disable-line consistent-return + if ($WeakMap && key && (typeof key === 'object' || typeof key === 'function')) { + if ($wm) { + return $weakMapGet($wm, key); + } + } else if ($Map) { + if ($m) { + return $mapGet($m, key); + } + } else { + if ($o) { // eslint-disable-line no-lonely-if + return listGet($o, key); + } + } + }, + has: function (key) { + if ($WeakMap && key && (typeof key === 'object' || typeof key === 'function')) { + if ($wm) { + return $weakMapHas($wm, key); + } + } else if ($Map) { + if ($m) { + return $mapHas($m, key); + } + } else { + if ($o) { // eslint-disable-line no-lonely-if + return listHas($o, key); + } + } + return false; + }, + set: function (key, value) { + if ($WeakMap && key && (typeof key === 'object' || typeof key === 'function')) { + if (!$wm) { + $wm = new $WeakMap(); + } + $weakMapSet($wm, key, value); + } else if ($Map) { + if (!$m) { + $m = new $Map(); + } + $mapSet($m, key, value); + } else { + if (!$o) { + /* + * Initialize the linked list as an empty node, so that we don't have + * to special-case handling of the first node: we can always refer to + * it as (previous node).next, instead of something like (list).head + */ + $o = { key: {}, next: null }; + } + listSet($o, key, value); + } + } + }; + return channel; +}; + +},{"call-bind/callBound":7,"get-intrinsic":11,"object-inspect":15}]},{},[2])(2) +}); diff --git a/node_modules/qs/lib/formats.js b/node_modules/qs/lib/formats.js new file mode 100644 index 000000000..f36cf206b --- /dev/null +++ b/node_modules/qs/lib/formats.js @@ -0,0 +1,23 @@ +'use strict'; + +var replace = String.prototype.replace; +var percentTwenties = /%20/g; + +var Format = { + RFC1738: 'RFC1738', + RFC3986: 'RFC3986' +}; + +module.exports = { + 'default': Format.RFC3986, + formatters: { + RFC1738: function (value) { + return replace.call(value, percentTwenties, '+'); + }, + RFC3986: function (value) { + return String(value); + } + }, + RFC1738: Format.RFC1738, + RFC3986: Format.RFC3986 +}; diff --git a/node_modules/qs/lib/index.js b/node_modules/qs/lib/index.js new file mode 100644 index 000000000..0d6a97dcf --- /dev/null +++ b/node_modules/qs/lib/index.js @@ -0,0 +1,11 @@ +'use strict'; + +var stringify = require('./stringify'); +var parse = require('./parse'); +var formats = require('./formats'); + +module.exports = { + formats: formats, + parse: parse, + stringify: stringify +}; diff --git a/node_modules/qs/lib/parse.js b/node_modules/qs/lib/parse.js new file mode 100644 index 000000000..a4ac4fa07 --- /dev/null +++ b/node_modules/qs/lib/parse.js @@ -0,0 +1,263 @@ +'use strict'; + +var utils = require('./utils'); + +var has = Object.prototype.hasOwnProperty; +var isArray = Array.isArray; + +var defaults = { + allowDots: false, + allowPrototypes: false, + allowSparse: false, + arrayLimit: 20, + charset: 'utf-8', + charsetSentinel: false, + comma: false, + decoder: utils.decode, + delimiter: '&', + depth: 5, + ignoreQueryPrefix: false, + interpretNumericEntities: false, + parameterLimit: 1000, + parseArrays: true, + plainObjects: false, + strictNullHandling: false +}; + +var interpretNumericEntities = function (str) { + return str.replace(/&#(\d+);/g, function ($0, numberStr) { + return String.fromCharCode(parseInt(numberStr, 10)); + }); +}; + +var parseArrayValue = function (val, options) { + if (val && typeof val === 'string' && options.comma && val.indexOf(',') > -1) { + return val.split(','); + } + + return val; +}; + +// This is what browsers will submit when the ✓ character occurs in an +// application/x-www-form-urlencoded body and the encoding of the page containing +// the form is iso-8859-1, or when the submitted form has an accept-charset +// attribute of iso-8859-1. Presumably also with other charsets that do not contain +// the ✓ character, such as us-ascii. +var isoSentinel = 'utf8=%26%2310003%3B'; // encodeURIComponent('✓') + +// These are the percent-encoded utf-8 octets representing a checkmark, indicating that the request actually is utf-8 encoded. +var charsetSentinel = 'utf8=%E2%9C%93'; // encodeURIComponent('✓') + +var parseValues = function parseQueryStringValues(str, options) { + var obj = {}; + var cleanStr = options.ignoreQueryPrefix ? str.replace(/^\?/, '') : str; + var limit = options.parameterLimit === Infinity ? undefined : options.parameterLimit; + var parts = cleanStr.split(options.delimiter, limit); + var skipIndex = -1; // Keep track of where the utf8 sentinel was found + var i; + + var charset = options.charset; + if (options.charsetSentinel) { + for (i = 0; i < parts.length; ++i) { + if (parts[i].indexOf('utf8=') === 0) { + if (parts[i] === charsetSentinel) { + charset = 'utf-8'; + } else if (parts[i] === isoSentinel) { + charset = 'iso-8859-1'; + } + skipIndex = i; + i = parts.length; // The eslint settings do not allow break; + } + } + } + + for (i = 0; i < parts.length; ++i) { + if (i === skipIndex) { + continue; + } + var part = parts[i]; + + var bracketEqualsPos = part.indexOf(']='); + var pos = bracketEqualsPos === -1 ? part.indexOf('=') : bracketEqualsPos + 1; + + var key, val; + if (pos === -1) { + key = options.decoder(part, defaults.decoder, charset, 'key'); + val = options.strictNullHandling ? null : ''; + } else { + key = options.decoder(part.slice(0, pos), defaults.decoder, charset, 'key'); + val = utils.maybeMap( + parseArrayValue(part.slice(pos + 1), options), + function (encodedVal) { + return options.decoder(encodedVal, defaults.decoder, charset, 'value'); + } + ); + } + + if (val && options.interpretNumericEntities && charset === 'iso-8859-1') { + val = interpretNumericEntities(val); + } + + if (part.indexOf('[]=') > -1) { + val = isArray(val) ? [val] : val; + } + + if (has.call(obj, key)) { + obj[key] = utils.combine(obj[key], val); + } else { + obj[key] = val; + } + } + + return obj; +}; + +var parseObject = function (chain, val, options, valuesParsed) { + var leaf = valuesParsed ? val : parseArrayValue(val, options); + + for (var i = chain.length - 1; i >= 0; --i) { + var obj; + var root = chain[i]; + + if (root === '[]' && options.parseArrays) { + obj = [].concat(leaf); + } else { + obj = options.plainObjects ? Object.create(null) : {}; + var cleanRoot = root.charAt(0) === '[' && root.charAt(root.length - 1) === ']' ? root.slice(1, -1) : root; + var index = parseInt(cleanRoot, 10); + if (!options.parseArrays && cleanRoot === '') { + obj = { 0: leaf }; + } else if ( + !isNaN(index) + && root !== cleanRoot + && String(index) === cleanRoot + && index >= 0 + && (options.parseArrays && index <= options.arrayLimit) + ) { + obj = []; + obj[index] = leaf; + } else if (cleanRoot !== '__proto__') { + obj[cleanRoot] = leaf; + } + } + + leaf = obj; + } + + return leaf; +}; + +var parseKeys = function parseQueryStringKeys(givenKey, val, options, valuesParsed) { + if (!givenKey) { + return; + } + + // Transform dot notation to bracket notation + var key = options.allowDots ? givenKey.replace(/\.([^.[]+)/g, '[$1]') : givenKey; + + // The regex chunks + + var brackets = /(\[[^[\]]*])/; + var child = /(\[[^[\]]*])/g; + + // Get the parent + + var segment = options.depth > 0 && brackets.exec(key); + var parent = segment ? key.slice(0, segment.index) : key; + + // Stash the parent if it exists + + var keys = []; + if (parent) { + // If we aren't using plain objects, optionally prefix keys that would overwrite object prototype properties + if (!options.plainObjects && has.call(Object.prototype, parent)) { + if (!options.allowPrototypes) { + return; + } + } + + keys.push(parent); + } + + // Loop through children appending to the array until we hit depth + + var i = 0; + while (options.depth > 0 && (segment = child.exec(key)) !== null && i < options.depth) { + i += 1; + if (!options.plainObjects && has.call(Object.prototype, segment[1].slice(1, -1))) { + if (!options.allowPrototypes) { + return; + } + } + keys.push(segment[1]); + } + + // If there's a remainder, just add whatever is left + + if (segment) { + keys.push('[' + key.slice(segment.index) + ']'); + } + + return parseObject(keys, val, options, valuesParsed); +}; + +var normalizeParseOptions = function normalizeParseOptions(opts) { + if (!opts) { + return defaults; + } + + if (opts.decoder !== null && opts.decoder !== undefined && typeof opts.decoder !== 'function') { + throw new TypeError('Decoder has to be a function.'); + } + + if (typeof opts.charset !== 'undefined' && opts.charset !== 'utf-8' && opts.charset !== 'iso-8859-1') { + throw new TypeError('The charset option must be either utf-8, iso-8859-1, or undefined'); + } + var charset = typeof opts.charset === 'undefined' ? defaults.charset : opts.charset; + + return { + allowDots: typeof opts.allowDots === 'undefined' ? defaults.allowDots : !!opts.allowDots, + allowPrototypes: typeof opts.allowPrototypes === 'boolean' ? opts.allowPrototypes : defaults.allowPrototypes, + allowSparse: typeof opts.allowSparse === 'boolean' ? opts.allowSparse : defaults.allowSparse, + arrayLimit: typeof opts.arrayLimit === 'number' ? opts.arrayLimit : defaults.arrayLimit, + charset: charset, + charsetSentinel: typeof opts.charsetSentinel === 'boolean' ? opts.charsetSentinel : defaults.charsetSentinel, + comma: typeof opts.comma === 'boolean' ? opts.comma : defaults.comma, + decoder: typeof opts.decoder === 'function' ? opts.decoder : defaults.decoder, + delimiter: typeof opts.delimiter === 'string' || utils.isRegExp(opts.delimiter) ? opts.delimiter : defaults.delimiter, + // eslint-disable-next-line no-implicit-coercion, no-extra-parens + depth: (typeof opts.depth === 'number' || opts.depth === false) ? +opts.depth : defaults.depth, + ignoreQueryPrefix: opts.ignoreQueryPrefix === true, + interpretNumericEntities: typeof opts.interpretNumericEntities === 'boolean' ? opts.interpretNumericEntities : defaults.interpretNumericEntities, + parameterLimit: typeof opts.parameterLimit === 'number' ? opts.parameterLimit : defaults.parameterLimit, + parseArrays: opts.parseArrays !== false, + plainObjects: typeof opts.plainObjects === 'boolean' ? opts.plainObjects : defaults.plainObjects, + strictNullHandling: typeof opts.strictNullHandling === 'boolean' ? opts.strictNullHandling : defaults.strictNullHandling + }; +}; + +module.exports = function (str, opts) { + var options = normalizeParseOptions(opts); + + if (str === '' || str === null || typeof str === 'undefined') { + return options.plainObjects ? Object.create(null) : {}; + } + + var tempObj = typeof str === 'string' ? parseValues(str, options) : str; + var obj = options.plainObjects ? Object.create(null) : {}; + + // Iterate over the keys and setup the new object + + var keys = Object.keys(tempObj); + for (var i = 0; i < keys.length; ++i) { + var key = keys[i]; + var newObj = parseKeys(key, tempObj[key], options, typeof str === 'string'); + obj = utils.merge(obj, newObj, options); + } + + if (options.allowSparse === true) { + return obj; + } + + return utils.compact(obj); +}; diff --git a/node_modules/qs/lib/stringify.js b/node_modules/qs/lib/stringify.js new file mode 100644 index 000000000..47ea4b15d --- /dev/null +++ b/node_modules/qs/lib/stringify.js @@ -0,0 +1,317 @@ +'use strict'; + +var getSideChannel = require('side-channel'); +var utils = require('./utils'); +var formats = require('./formats'); +var has = Object.prototype.hasOwnProperty; + +var arrayPrefixGenerators = { + brackets: function brackets(prefix) { + return prefix + '[]'; + }, + comma: 'comma', + indices: function indices(prefix, key) { + return prefix + '[' + key + ']'; + }, + repeat: function repeat(prefix) { + return prefix; + } +}; + +var isArray = Array.isArray; +var split = String.prototype.split; +var push = Array.prototype.push; +var pushToArray = function (arr, valueOrArray) { + push.apply(arr, isArray(valueOrArray) ? valueOrArray : [valueOrArray]); +}; + +var toISO = Date.prototype.toISOString; + +var defaultFormat = formats['default']; +var defaults = { + addQueryPrefix: false, + allowDots: false, + charset: 'utf-8', + charsetSentinel: false, + delimiter: '&', + encode: true, + encoder: utils.encode, + encodeValuesOnly: false, + format: defaultFormat, + formatter: formats.formatters[defaultFormat], + // deprecated + indices: false, + serializeDate: function serializeDate(date) { + return toISO.call(date); + }, + skipNulls: false, + strictNullHandling: false +}; + +var isNonNullishPrimitive = function isNonNullishPrimitive(v) { + return typeof v === 'string' + || typeof v === 'number' + || typeof v === 'boolean' + || typeof v === 'symbol' + || typeof v === 'bigint'; +}; + +var sentinel = {}; + +var stringify = function stringify( + object, + prefix, + generateArrayPrefix, + strictNullHandling, + skipNulls, + encoder, + filter, + sort, + allowDots, + serializeDate, + format, + formatter, + encodeValuesOnly, + charset, + sideChannel +) { + var obj = object; + + var tmpSc = sideChannel; + var step = 0; + var findFlag = false; + while ((tmpSc = tmpSc.get(sentinel)) !== void undefined && !findFlag) { + // Where object last appeared in the ref tree + var pos = tmpSc.get(object); + step += 1; + if (typeof pos !== 'undefined') { + if (pos === step) { + throw new RangeError('Cyclic object value'); + } else { + findFlag = true; // Break while + } + } + if (typeof tmpSc.get(sentinel) === 'undefined') { + step = 0; + } + } + + if (typeof filter === 'function') { + obj = filter(prefix, obj); + } else if (obj instanceof Date) { + obj = serializeDate(obj); + } else if (generateArrayPrefix === 'comma' && isArray(obj)) { + obj = utils.maybeMap(obj, function (value) { + if (value instanceof Date) { + return serializeDate(value); + } + return value; + }); + } + + if (obj === null) { + if (strictNullHandling) { + return encoder && !encodeValuesOnly ? encoder(prefix, defaults.encoder, charset, 'key', format) : prefix; + } + + obj = ''; + } + + if (isNonNullishPrimitive(obj) || utils.isBuffer(obj)) { + if (encoder) { + var keyValue = encodeValuesOnly ? prefix : encoder(prefix, defaults.encoder, charset, 'key', format); + if (generateArrayPrefix === 'comma' && encodeValuesOnly) { + var valuesArray = split.call(String(obj), ','); + var valuesJoined = ''; + for (var i = 0; i < valuesArray.length; ++i) { + valuesJoined += (i === 0 ? '' : ',') + formatter(encoder(valuesArray[i], defaults.encoder, charset, 'value', format)); + } + return [formatter(keyValue) + '=' + valuesJoined]; + } + return [formatter(keyValue) + '=' + formatter(encoder(obj, defaults.encoder, charset, 'value', format))]; + } + return [formatter(prefix) + '=' + formatter(String(obj))]; + } + + var values = []; + + if (typeof obj === 'undefined') { + return values; + } + + var objKeys; + if (generateArrayPrefix === 'comma' && isArray(obj)) { + // we need to join elements in + objKeys = [{ value: obj.length > 0 ? obj.join(',') || null : void undefined }]; + } else if (isArray(filter)) { + objKeys = filter; + } else { + var keys = Object.keys(obj); + objKeys = sort ? keys.sort(sort) : keys; + } + + for (var j = 0; j < objKeys.length; ++j) { + var key = objKeys[j]; + var value = typeof key === 'object' && typeof key.value !== 'undefined' ? key.value : obj[key]; + + if (skipNulls && value === null) { + continue; + } + + var keyPrefix = isArray(obj) + ? typeof generateArrayPrefix === 'function' ? generateArrayPrefix(prefix, key) : prefix + : prefix + (allowDots ? '.' + key : '[' + key + ']'); + + sideChannel.set(object, step); + var valueSideChannel = getSideChannel(); + valueSideChannel.set(sentinel, sideChannel); + pushToArray(values, stringify( + value, + keyPrefix, + generateArrayPrefix, + strictNullHandling, + skipNulls, + encoder, + filter, + sort, + allowDots, + serializeDate, + format, + formatter, + encodeValuesOnly, + charset, + valueSideChannel + )); + } + + return values; +}; + +var normalizeStringifyOptions = function normalizeStringifyOptions(opts) { + if (!opts) { + return defaults; + } + + if (opts.encoder !== null && typeof opts.encoder !== 'undefined' && typeof opts.encoder !== 'function') { + throw new TypeError('Encoder has to be a function.'); + } + + var charset = opts.charset || defaults.charset; + if (typeof opts.charset !== 'undefined' && opts.charset !== 'utf-8' && opts.charset !== 'iso-8859-1') { + throw new TypeError('The charset option must be either utf-8, iso-8859-1, or undefined'); + } + + var format = formats['default']; + if (typeof opts.format !== 'undefined') { + if (!has.call(formats.formatters, opts.format)) { + throw new TypeError('Unknown format option provided.'); + } + format = opts.format; + } + var formatter = formats.formatters[format]; + + var filter = defaults.filter; + if (typeof opts.filter === 'function' || isArray(opts.filter)) { + filter = opts.filter; + } + + return { + addQueryPrefix: typeof opts.addQueryPrefix === 'boolean' ? opts.addQueryPrefix : defaults.addQueryPrefix, + allowDots: typeof opts.allowDots === 'undefined' ? defaults.allowDots : !!opts.allowDots, + charset: charset, + charsetSentinel: typeof opts.charsetSentinel === 'boolean' ? opts.charsetSentinel : defaults.charsetSentinel, + delimiter: typeof opts.delimiter === 'undefined' ? defaults.delimiter : opts.delimiter, + encode: typeof opts.encode === 'boolean' ? opts.encode : defaults.encode, + encoder: typeof opts.encoder === 'function' ? opts.encoder : defaults.encoder, + encodeValuesOnly: typeof opts.encodeValuesOnly === 'boolean' ? opts.encodeValuesOnly : defaults.encodeValuesOnly, + filter: filter, + format: format, + formatter: formatter, + serializeDate: typeof opts.serializeDate === 'function' ? opts.serializeDate : defaults.serializeDate, + skipNulls: typeof opts.skipNulls === 'boolean' ? opts.skipNulls : defaults.skipNulls, + sort: typeof opts.sort === 'function' ? opts.sort : null, + strictNullHandling: typeof opts.strictNullHandling === 'boolean' ? opts.strictNullHandling : defaults.strictNullHandling + }; +}; + +module.exports = function (object, opts) { + var obj = object; + var options = normalizeStringifyOptions(opts); + + var objKeys; + var filter; + + if (typeof options.filter === 'function') { + filter = options.filter; + obj = filter('', obj); + } else if (isArray(options.filter)) { + filter = options.filter; + objKeys = filter; + } + + var keys = []; + + if (typeof obj !== 'object' || obj === null) { + return ''; + } + + var arrayFormat; + if (opts && opts.arrayFormat in arrayPrefixGenerators) { + arrayFormat = opts.arrayFormat; + } else if (opts && 'indices' in opts) { + arrayFormat = opts.indices ? 'indices' : 'repeat'; + } else { + arrayFormat = 'indices'; + } + + var generateArrayPrefix = arrayPrefixGenerators[arrayFormat]; + + if (!objKeys) { + objKeys = Object.keys(obj); + } + + if (options.sort) { + objKeys.sort(options.sort); + } + + var sideChannel = getSideChannel(); + for (var i = 0; i < objKeys.length; ++i) { + var key = objKeys[i]; + + if (options.skipNulls && obj[key] === null) { + continue; + } + pushToArray(keys, stringify( + obj[key], + key, + generateArrayPrefix, + options.strictNullHandling, + options.skipNulls, + options.encode ? options.encoder : null, + options.filter, + options.sort, + options.allowDots, + options.serializeDate, + options.format, + options.formatter, + options.encodeValuesOnly, + options.charset, + sideChannel + )); + } + + var joined = keys.join(options.delimiter); + var prefix = options.addQueryPrefix === true ? '?' : ''; + + if (options.charsetSentinel) { + if (options.charset === 'iso-8859-1') { + // encodeURIComponent('✓'), the "numeric entity" representation of a checkmark + prefix += 'utf8=%26%2310003%3B&'; + } else { + // encodeURIComponent('✓') + prefix += 'utf8=%E2%9C%93&'; + } + } + + return joined.length > 0 ? prefix + joined : ''; +}; diff --git a/node_modules/qs/lib/utils.js b/node_modules/qs/lib/utils.js new file mode 100644 index 000000000..1e5453811 --- /dev/null +++ b/node_modules/qs/lib/utils.js @@ -0,0 +1,252 @@ +'use strict'; + +var formats = require('./formats'); + +var has = Object.prototype.hasOwnProperty; +var isArray = Array.isArray; + +var hexTable = (function () { + var array = []; + for (var i = 0; i < 256; ++i) { + array.push('%' + ((i < 16 ? '0' : '') + i.toString(16)).toUpperCase()); + } + + return array; +}()); + +var compactQueue = function compactQueue(queue) { + while (queue.length > 1) { + var item = queue.pop(); + var obj = item.obj[item.prop]; + + if (isArray(obj)) { + var compacted = []; + + for (var j = 0; j < obj.length; ++j) { + if (typeof obj[j] !== 'undefined') { + compacted.push(obj[j]); + } + } + + item.obj[item.prop] = compacted; + } + } +}; + +var arrayToObject = function arrayToObject(source, options) { + var obj = options && options.plainObjects ? Object.create(null) : {}; + for (var i = 0; i < source.length; ++i) { + if (typeof source[i] !== 'undefined') { + obj[i] = source[i]; + } + } + + return obj; +}; + +var merge = function merge(target, source, options) { + /* eslint no-param-reassign: 0 */ + if (!source) { + return target; + } + + if (typeof source !== 'object') { + if (isArray(target)) { + target.push(source); + } else if (target && typeof target === 'object') { + if ((options && (options.plainObjects || options.allowPrototypes)) || !has.call(Object.prototype, source)) { + target[source] = true; + } + } else { + return [target, source]; + } + + return target; + } + + if (!target || typeof target !== 'object') { + return [target].concat(source); + } + + var mergeTarget = target; + if (isArray(target) && !isArray(source)) { + mergeTarget = arrayToObject(target, options); + } + + if (isArray(target) && isArray(source)) { + source.forEach(function (item, i) { + if (has.call(target, i)) { + var targetItem = target[i]; + if (targetItem && typeof targetItem === 'object' && item && typeof item === 'object') { + target[i] = merge(targetItem, item, options); + } else { + target.push(item); + } + } else { + target[i] = item; + } + }); + return target; + } + + return Object.keys(source).reduce(function (acc, key) { + var value = source[key]; + + if (has.call(acc, key)) { + acc[key] = merge(acc[key], value, options); + } else { + acc[key] = value; + } + return acc; + }, mergeTarget); +}; + +var assign = function assignSingleSource(target, source) { + return Object.keys(source).reduce(function (acc, key) { + acc[key] = source[key]; + return acc; + }, target); +}; + +var decode = function (str, decoder, charset) { + var strWithoutPlus = str.replace(/\+/g, ' '); + if (charset === 'iso-8859-1') { + // unescape never throws, no try...catch needed: + return strWithoutPlus.replace(/%[0-9a-f]{2}/gi, unescape); + } + // utf-8 + try { + return decodeURIComponent(strWithoutPlus); + } catch (e) { + return strWithoutPlus; + } +}; + +var encode = function encode(str, defaultEncoder, charset, kind, format) { + // This code was originally written by Brian White (mscdex) for the io.js core querystring library. + // It has been adapted here for stricter adherence to RFC 3986 + if (str.length === 0) { + return str; + } + + var string = str; + if (typeof str === 'symbol') { + string = Symbol.prototype.toString.call(str); + } else if (typeof str !== 'string') { + string = String(str); + } + + if (charset === 'iso-8859-1') { + return escape(string).replace(/%u[0-9a-f]{4}/gi, function ($0) { + return '%26%23' + parseInt($0.slice(2), 16) + '%3B'; + }); + } + + var out = ''; + for (var i = 0; i < string.length; ++i) { + var c = string.charCodeAt(i); + + if ( + c === 0x2D // - + || c === 0x2E // . + || c === 0x5F // _ + || c === 0x7E // ~ + || (c >= 0x30 && c <= 0x39) // 0-9 + || (c >= 0x41 && c <= 0x5A) // a-z + || (c >= 0x61 && c <= 0x7A) // A-Z + || (format === formats.RFC1738 && (c === 0x28 || c === 0x29)) // ( ) + ) { + out += string.charAt(i); + continue; + } + + if (c < 0x80) { + out = out + hexTable[c]; + continue; + } + + if (c < 0x800) { + out = out + (hexTable[0xC0 | (c >> 6)] + hexTable[0x80 | (c & 0x3F)]); + continue; + } + + if (c < 0xD800 || c >= 0xE000) { + out = out + (hexTable[0xE0 | (c >> 12)] + hexTable[0x80 | ((c >> 6) & 0x3F)] + hexTable[0x80 | (c & 0x3F)]); + continue; + } + + i += 1; + c = 0x10000 + (((c & 0x3FF) << 10) | (string.charCodeAt(i) & 0x3FF)); + /* eslint operator-linebreak: [2, "before"] */ + out += hexTable[0xF0 | (c >> 18)] + + hexTable[0x80 | ((c >> 12) & 0x3F)] + + hexTable[0x80 | ((c >> 6) & 0x3F)] + + hexTable[0x80 | (c & 0x3F)]; + } + + return out; +}; + +var compact = function compact(value) { + var queue = [{ obj: { o: value }, prop: 'o' }]; + var refs = []; + + for (var i = 0; i < queue.length; ++i) { + var item = queue[i]; + var obj = item.obj[item.prop]; + + var keys = Object.keys(obj); + for (var j = 0; j < keys.length; ++j) { + var key = keys[j]; + var val = obj[key]; + if (typeof val === 'object' && val !== null && refs.indexOf(val) === -1) { + queue.push({ obj: obj, prop: key }); + refs.push(val); + } + } + } + + compactQueue(queue); + + return value; +}; + +var isRegExp = function isRegExp(obj) { + return Object.prototype.toString.call(obj) === '[object RegExp]'; +}; + +var isBuffer = function isBuffer(obj) { + if (!obj || typeof obj !== 'object') { + return false; + } + + return !!(obj.constructor && obj.constructor.isBuffer && obj.constructor.isBuffer(obj)); +}; + +var combine = function combine(a, b) { + return [].concat(a, b); +}; + +var maybeMap = function maybeMap(val, fn) { + if (isArray(val)) { + var mapped = []; + for (var i = 0; i < val.length; i += 1) { + mapped.push(fn(val[i])); + } + return mapped; + } + return fn(val); +}; + +module.exports = { + arrayToObject: arrayToObject, + assign: assign, + combine: combine, + compact: compact, + decode: decode, + encode: encode, + isBuffer: isBuffer, + isRegExp: isRegExp, + maybeMap: maybeMap, + merge: merge +}; diff --git a/node_modules/qs/package.json b/node_modules/qs/package.json new file mode 100644 index 000000000..845e20a2c --- /dev/null +++ b/node_modules/qs/package.json @@ -0,0 +1,73 @@ +{ + "name": "qs", + "description": "A querystring parser that supports nesting and arrays, with a depth limit", + "homepage": "https://github.com/ljharb/qs", + "version": "6.10.3", + "repository": { + "type": "git", + "url": "https://github.com/ljharb/qs.git" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + }, + "main": "lib/index.js", + "contributors": [ + { + "name": "Jordan Harband", + "email": "ljharb@gmail.com", + "url": "http://ljharb.codes" + } + ], + "keywords": [ + "querystring", + "qs", + "query", + "url", + "parse", + "stringify" + ], + "engines": { + "node": ">=0.6" + }, + "dependencies": { + "side-channel": "^1.0.4" + }, + "devDependencies": { + "@ljharb/eslint-config": "^20.1.0", + "aud": "^1.1.5", + "browserify": "^16.5.2", + "eclint": "^2.8.1", + "eslint": "^8.6.0", + "evalmd": "^0.0.19", + "for-each": "^0.3.3", + "has-symbols": "^1.0.2", + "iconv-lite": "^0.5.1", + "in-publish": "^2.0.1", + "mkdirp": "^0.5.5", + "nyc": "^10.3.2", + "object-inspect": "^1.12.0", + "qs-iconv": "^1.0.4", + "safe-publish-latest": "^2.0.0", + "safer-buffer": "^2.1.2", + "tape": "^5.4.0" + }, + "scripts": { + "prepublishOnly": "safe-publish-latest && npm run dist", + "prepublish": "not-in-publish || npm run prepublishOnly", + "pretest": "npm run --silent readme && npm run --silent lint", + "test": "npm run tests-only", + "tests-only": "nyc tape 'test/**/*.js'", + "posttest": "aud --production", + "readme": "evalmd README.md", + "postlint": "eclint check * lib/* test/* !dist/*", + "lint": "eslint .", + "dist": "mkdirp dist && browserify --standalone Qs lib/index.js > dist/qs.js" + }, + "license": "BSD-3-Clause", + "greenkeeper": { + "ignore": [ + "iconv-lite", + "mkdirp" + ] + } +} diff --git a/node_modules/qs/test/parse.js b/node_modules/qs/test/parse.js new file mode 100644 index 000000000..7d61023e9 --- /dev/null +++ b/node_modules/qs/test/parse.js @@ -0,0 +1,841 @@ +'use strict'; + +var test = require('tape'); +var qs = require('../'); +var utils = require('../lib/utils'); +var iconv = require('iconv-lite'); +var SaferBuffer = require('safer-buffer').Buffer; + +test('parse()', function (t) { + t.test('parses a simple string', function (st) { + st.deepEqual(qs.parse('0=foo'), { 0: 'foo' }); + st.deepEqual(qs.parse('foo=c++'), { foo: 'c ' }); + st.deepEqual(qs.parse('a[>=]=23'), { a: { '>=': '23' } }); + st.deepEqual(qs.parse('a[<=>]==23'), { a: { '<=>': '=23' } }); + st.deepEqual(qs.parse('a[==]=23'), { a: { '==': '23' } }); + st.deepEqual(qs.parse('foo', { strictNullHandling: true }), { foo: null }); + st.deepEqual(qs.parse('foo'), { foo: '' }); + st.deepEqual(qs.parse('foo='), { foo: '' }); + st.deepEqual(qs.parse('foo=bar'), { foo: 'bar' }); + st.deepEqual(qs.parse(' foo = bar = baz '), { ' foo ': ' bar = baz ' }); + st.deepEqual(qs.parse('foo=bar=baz'), { foo: 'bar=baz' }); + st.deepEqual(qs.parse('foo=bar&bar=baz'), { foo: 'bar', bar: 'baz' }); + st.deepEqual(qs.parse('foo2=bar2&baz2='), { foo2: 'bar2', baz2: '' }); + st.deepEqual(qs.parse('foo=bar&baz', { strictNullHandling: true }), { foo: 'bar', baz: null }); + st.deepEqual(qs.parse('foo=bar&baz'), { foo: 'bar', baz: '' }); + st.deepEqual(qs.parse('cht=p3&chd=t:60,40&chs=250x100&chl=Hello|World'), { + cht: 'p3', + chd: 't:60,40', + chs: '250x100', + chl: 'Hello|World' + }); + st.end(); + }); + + t.test('arrayFormat: brackets allows only explicit arrays', function (st) { + st.deepEqual(qs.parse('a[]=b&a[]=c', { arrayFormat: 'brackets' }), { a: ['b', 'c'] }); + st.deepEqual(qs.parse('a[0]=b&a[1]=c', { arrayFormat: 'brackets' }), { a: ['b', 'c'] }); + st.deepEqual(qs.parse('a=b,c', { arrayFormat: 'brackets' }), { a: 'b,c' }); + st.deepEqual(qs.parse('a=b&a=c', { arrayFormat: 'brackets' }), { a: ['b', 'c'] }); + st.end(); + }); + + t.test('arrayFormat: indices allows only indexed arrays', function (st) { + st.deepEqual(qs.parse('a[]=b&a[]=c', { arrayFormat: 'indices' }), { a: ['b', 'c'] }); + st.deepEqual(qs.parse('a[0]=b&a[1]=c', { arrayFormat: 'indices' }), { a: ['b', 'c'] }); + st.deepEqual(qs.parse('a=b,c', { arrayFormat: 'indices' }), { a: 'b,c' }); + st.deepEqual(qs.parse('a=b&a=c', { arrayFormat: 'indices' }), { a: ['b', 'c'] }); + st.end(); + }); + + t.test('arrayFormat: comma allows only comma-separated arrays', function (st) { + st.deepEqual(qs.parse('a[]=b&a[]=c', { arrayFormat: 'comma' }), { a: ['b', 'c'] }); + st.deepEqual(qs.parse('a[0]=b&a[1]=c', { arrayFormat: 'comma' }), { a: ['b', 'c'] }); + st.deepEqual(qs.parse('a=b,c', { arrayFormat: 'comma' }), { a: 'b,c' }); + st.deepEqual(qs.parse('a=b&a=c', { arrayFormat: 'comma' }), { a: ['b', 'c'] }); + st.end(); + }); + + t.test('arrayFormat: repeat allows only repeated values', function (st) { + st.deepEqual(qs.parse('a[]=b&a[]=c', { arrayFormat: 'repeat' }), { a: ['b', 'c'] }); + st.deepEqual(qs.parse('a[0]=b&a[1]=c', { arrayFormat: 'repeat' }), { a: ['b', 'c'] }); + st.deepEqual(qs.parse('a=b,c', { arrayFormat: 'repeat' }), { a: 'b,c' }); + st.deepEqual(qs.parse('a=b&a=c', { arrayFormat: 'repeat' }), { a: ['b', 'c'] }); + st.end(); + }); + + t.test('allows enabling dot notation', function (st) { + st.deepEqual(qs.parse('a.b=c'), { 'a.b': 'c' }); + st.deepEqual(qs.parse('a.b=c', { allowDots: true }), { a: { b: 'c' } }); + st.end(); + }); + + t.deepEqual(qs.parse('a[b]=c'), { a: { b: 'c' } }, 'parses a single nested string'); + t.deepEqual(qs.parse('a[b][c]=d'), { a: { b: { c: 'd' } } }, 'parses a double nested string'); + t.deepEqual( + qs.parse('a[b][c][d][e][f][g][h]=i'), + { a: { b: { c: { d: { e: { f: { '[g][h]': 'i' } } } } } } }, + 'defaults to a depth of 5' + ); + + t.test('only parses one level when depth = 1', function (st) { + st.deepEqual(qs.parse('a[b][c]=d', { depth: 1 }), { a: { b: { '[c]': 'd' } } }); + st.deepEqual(qs.parse('a[b][c][d]=e', { depth: 1 }), { a: { b: { '[c][d]': 'e' } } }); + st.end(); + }); + + t.test('uses original key when depth = 0', function (st) { + st.deepEqual(qs.parse('a[0]=b&a[1]=c', { depth: 0 }), { 'a[0]': 'b', 'a[1]': 'c' }); + st.deepEqual(qs.parse('a[0][0]=b&a[0][1]=c&a[1]=d&e=2', { depth: 0 }), { 'a[0][0]': 'b', 'a[0][1]': 'c', 'a[1]': 'd', e: '2' }); + st.end(); + }); + + t.test('uses original key when depth = false', function (st) { + st.deepEqual(qs.parse('a[0]=b&a[1]=c', { depth: false }), { 'a[0]': 'b', 'a[1]': 'c' }); + st.deepEqual(qs.parse('a[0][0]=b&a[0][1]=c&a[1]=d&e=2', { depth: false }), { 'a[0][0]': 'b', 'a[0][1]': 'c', 'a[1]': 'd', e: '2' }); + st.end(); + }); + + t.deepEqual(qs.parse('a=b&a=c'), { a: ['b', 'c'] }, 'parses a simple array'); + + t.test('parses an explicit array', function (st) { + st.deepEqual(qs.parse('a[]=b'), { a: ['b'] }); + st.deepEqual(qs.parse('a[]=b&a[]=c'), { a: ['b', 'c'] }); + st.deepEqual(qs.parse('a[]=b&a[]=c&a[]=d'), { a: ['b', 'c', 'd'] }); + st.end(); + }); + + t.test('parses a mix of simple and explicit arrays', function (st) { + st.deepEqual(qs.parse('a=b&a[]=c'), { a: ['b', 'c'] }); + st.deepEqual(qs.parse('a[]=b&a=c'), { a: ['b', 'c'] }); + st.deepEqual(qs.parse('a[0]=b&a=c'), { a: ['b', 'c'] }); + st.deepEqual(qs.parse('a=b&a[0]=c'), { a: ['b', 'c'] }); + + st.deepEqual(qs.parse('a[1]=b&a=c', { arrayLimit: 20 }), { a: ['b', 'c'] }); + st.deepEqual(qs.parse('a[]=b&a=c', { arrayLimit: 0 }), { a: ['b', 'c'] }); + st.deepEqual(qs.parse('a[]=b&a=c'), { a: ['b', 'c'] }); + + st.deepEqual(qs.parse('a=b&a[1]=c', { arrayLimit: 20 }), { a: ['b', 'c'] }); + st.deepEqual(qs.parse('a=b&a[]=c', { arrayLimit: 0 }), { a: ['b', 'c'] }); + st.deepEqual(qs.parse('a=b&a[]=c'), { a: ['b', 'c'] }); + + st.end(); + }); + + t.test('parses a nested array', function (st) { + st.deepEqual(qs.parse('a[b][]=c&a[b][]=d'), { a: { b: ['c', 'd'] } }); + st.deepEqual(qs.parse('a[>=]=25'), { a: { '>=': '25' } }); + st.end(); + }); + + t.test('allows to specify array indices', function (st) { + st.deepEqual(qs.parse('a[1]=c&a[0]=b&a[2]=d'), { a: ['b', 'c', 'd'] }); + st.deepEqual(qs.parse('a[1]=c&a[0]=b'), { a: ['b', 'c'] }); + st.deepEqual(qs.parse('a[1]=c', { arrayLimit: 20 }), { a: ['c'] }); + st.deepEqual(qs.parse('a[1]=c', { arrayLimit: 0 }), { a: { 1: 'c' } }); + st.deepEqual(qs.parse('a[1]=c'), { a: ['c'] }); + st.end(); + }); + + t.test('limits specific array indices to arrayLimit', function (st) { + st.deepEqual(qs.parse('a[20]=a', { arrayLimit: 20 }), { a: ['a'] }); + st.deepEqual(qs.parse('a[21]=a', { arrayLimit: 20 }), { a: { 21: 'a' } }); + st.end(); + }); + + t.deepEqual(qs.parse('a[12b]=c'), { a: { '12b': 'c' } }, 'supports keys that begin with a number'); + + t.test('supports encoded = signs', function (st) { + st.deepEqual(qs.parse('he%3Dllo=th%3Dere'), { 'he=llo': 'th=ere' }); + st.end(); + }); + + t.test('is ok with url encoded strings', function (st) { + st.deepEqual(qs.parse('a[b%20c]=d'), { a: { 'b c': 'd' } }); + st.deepEqual(qs.parse('a[b]=c%20d'), { a: { b: 'c d' } }); + st.end(); + }); + + t.test('allows brackets in the value', function (st) { + st.deepEqual(qs.parse('pets=["tobi"]'), { pets: '["tobi"]' }); + st.deepEqual(qs.parse('operators=[">=", "<="]'), { operators: '[">=", "<="]' }); + st.end(); + }); + + t.test('allows empty values', function (st) { + st.deepEqual(qs.parse(''), {}); + st.deepEqual(qs.parse(null), {}); + st.deepEqual(qs.parse(undefined), {}); + st.end(); + }); + + t.test('transforms arrays to objects', function (st) { + st.deepEqual(qs.parse('foo[0]=bar&foo[bad]=baz'), { foo: { 0: 'bar', bad: 'baz' } }); + st.deepEqual(qs.parse('foo[bad]=baz&foo[0]=bar'), { foo: { bad: 'baz', 0: 'bar' } }); + st.deepEqual(qs.parse('foo[bad]=baz&foo[]=bar'), { foo: { bad: 'baz', 0: 'bar' } }); + st.deepEqual(qs.parse('foo[]=bar&foo[bad]=baz'), { foo: { 0: 'bar', bad: 'baz' } }); + st.deepEqual(qs.parse('foo[bad]=baz&foo[]=bar&foo[]=foo'), { foo: { bad: 'baz', 0: 'bar', 1: 'foo' } }); + st.deepEqual(qs.parse('foo[0][a]=a&foo[0][b]=b&foo[1][a]=aa&foo[1][b]=bb'), { foo: [{ a: 'a', b: 'b' }, { a: 'aa', b: 'bb' }] }); + + st.deepEqual(qs.parse('a[]=b&a[t]=u&a[hasOwnProperty]=c', { allowPrototypes: false }), { a: { 0: 'b', t: 'u' } }); + st.deepEqual(qs.parse('a[]=b&a[t]=u&a[hasOwnProperty]=c', { allowPrototypes: true }), { a: { 0: 'b', t: 'u', hasOwnProperty: 'c' } }); + st.deepEqual(qs.parse('a[]=b&a[hasOwnProperty]=c&a[x]=y', { allowPrototypes: false }), { a: { 0: 'b', x: 'y' } }); + st.deepEqual(qs.parse('a[]=b&a[hasOwnProperty]=c&a[x]=y', { allowPrototypes: true }), { a: { 0: 'b', hasOwnProperty: 'c', x: 'y' } }); + st.end(); + }); + + t.test('transforms arrays to objects (dot notation)', function (st) { + st.deepEqual(qs.parse('foo[0].baz=bar&fool.bad=baz', { allowDots: true }), { foo: [{ baz: 'bar' }], fool: { bad: 'baz' } }); + st.deepEqual(qs.parse('foo[0].baz=bar&fool.bad.boo=baz', { allowDots: true }), { foo: [{ baz: 'bar' }], fool: { bad: { boo: 'baz' } } }); + st.deepEqual(qs.parse('foo[0][0].baz=bar&fool.bad=baz', { allowDots: true }), { foo: [[{ baz: 'bar' }]], fool: { bad: 'baz' } }); + st.deepEqual(qs.parse('foo[0].baz[0]=15&foo[0].bar=2', { allowDots: true }), { foo: [{ baz: ['15'], bar: '2' }] }); + st.deepEqual(qs.parse('foo[0].baz[0]=15&foo[0].baz[1]=16&foo[0].bar=2', { allowDots: true }), { foo: [{ baz: ['15', '16'], bar: '2' }] }); + st.deepEqual(qs.parse('foo.bad=baz&foo[0]=bar', { allowDots: true }), { foo: { bad: 'baz', 0: 'bar' } }); + st.deepEqual(qs.parse('foo.bad=baz&foo[]=bar', { allowDots: true }), { foo: { bad: 'baz', 0: 'bar' } }); + st.deepEqual(qs.parse('foo[]=bar&foo.bad=baz', { allowDots: true }), { foo: { 0: 'bar', bad: 'baz' } }); + st.deepEqual(qs.parse('foo.bad=baz&foo[]=bar&foo[]=foo', { allowDots: true }), { foo: { bad: 'baz', 0: 'bar', 1: 'foo' } }); + st.deepEqual(qs.parse('foo[0].a=a&foo[0].b=b&foo[1].a=aa&foo[1].b=bb', { allowDots: true }), { foo: [{ a: 'a', b: 'b' }, { a: 'aa', b: 'bb' }] }); + st.end(); + }); + + t.test('correctly prunes undefined values when converting an array to an object', function (st) { + st.deepEqual(qs.parse('a[2]=b&a[99999999]=c'), { a: { 2: 'b', 99999999: 'c' } }); + st.end(); + }); + + t.test('supports malformed uri characters', function (st) { + st.deepEqual(qs.parse('{%:%}', { strictNullHandling: true }), { '{%:%}': null }); + st.deepEqual(qs.parse('{%:%}='), { '{%:%}': '' }); + st.deepEqual(qs.parse('foo=%:%}'), { foo: '%:%}' }); + st.end(); + }); + + t.test('doesn\'t produce empty keys', function (st) { + st.deepEqual(qs.parse('_r=1&'), { _r: '1' }); + st.end(); + }); + + t.test('cannot access Object prototype', function (st) { + qs.parse('constructor[prototype][bad]=bad'); + qs.parse('bad[constructor][prototype][bad]=bad'); + st.equal(typeof Object.prototype.bad, 'undefined'); + st.end(); + }); + + t.test('parses arrays of objects', function (st) { + st.deepEqual(qs.parse('a[][b]=c'), { a: [{ b: 'c' }] }); + st.deepEqual(qs.parse('a[0][b]=c'), { a: [{ b: 'c' }] }); + st.end(); + }); + + t.test('allows for empty strings in arrays', function (st) { + st.deepEqual(qs.parse('a[]=b&a[]=&a[]=c'), { a: ['b', '', 'c'] }); + + st.deepEqual( + qs.parse('a[0]=b&a[1]&a[2]=c&a[19]=', { strictNullHandling: true, arrayLimit: 20 }), + { a: ['b', null, 'c', ''] }, + 'with arrayLimit 20 + array indices: null then empty string works' + ); + st.deepEqual( + qs.parse('a[]=b&a[]&a[]=c&a[]=', { strictNullHandling: true, arrayLimit: 0 }), + { a: ['b', null, 'c', ''] }, + 'with arrayLimit 0 + array brackets: null then empty string works' + ); + + st.deepEqual( + qs.parse('a[0]=b&a[1]=&a[2]=c&a[19]', { strictNullHandling: true, arrayLimit: 20 }), + { a: ['b', '', 'c', null] }, + 'with arrayLimit 20 + array indices: empty string then null works' + ); + st.deepEqual( + qs.parse('a[]=b&a[]=&a[]=c&a[]', { strictNullHandling: true, arrayLimit: 0 }), + { a: ['b', '', 'c', null] }, + 'with arrayLimit 0 + array brackets: empty string then null works' + ); + + st.deepEqual( + qs.parse('a[]=&a[]=b&a[]=c'), + { a: ['', 'b', 'c'] }, + 'array brackets: empty strings work' + ); + st.end(); + }); + + t.test('compacts sparse arrays', function (st) { + st.deepEqual(qs.parse('a[10]=1&a[2]=2', { arrayLimit: 20 }), { a: ['2', '1'] }); + st.deepEqual(qs.parse('a[1][b][2][c]=1', { arrayLimit: 20 }), { a: [{ b: [{ c: '1' }] }] }); + st.deepEqual(qs.parse('a[1][2][3][c]=1', { arrayLimit: 20 }), { a: [[[{ c: '1' }]]] }); + st.deepEqual(qs.parse('a[1][2][3][c][1]=1', { arrayLimit: 20 }), { a: [[[{ c: ['1'] }]]] }); + st.end(); + }); + + t.test('parses sparse arrays', function (st) { + /* eslint no-sparse-arrays: 0 */ + st.deepEqual(qs.parse('a[4]=1&a[1]=2', { allowSparse: true }), { a: [, '2', , , '1'] }); + st.deepEqual(qs.parse('a[1][b][2][c]=1', { allowSparse: true }), { a: [, { b: [, , { c: '1' }] }] }); + st.deepEqual(qs.parse('a[1][2][3][c]=1', { allowSparse: true }), { a: [, [, , [, , , { c: '1' }]]] }); + st.deepEqual(qs.parse('a[1][2][3][c][1]=1', { allowSparse: true }), { a: [, [, , [, , , { c: [, '1'] }]]] }); + st.end(); + }); + + t.test('parses semi-parsed strings', function (st) { + st.deepEqual(qs.parse({ 'a[b]': 'c' }), { a: { b: 'c' } }); + st.deepEqual(qs.parse({ 'a[b]': 'c', 'a[d]': 'e' }), { a: { b: 'c', d: 'e' } }); + st.end(); + }); + + t.test('parses buffers correctly', function (st) { + var b = SaferBuffer.from('test'); + st.deepEqual(qs.parse({ a: b }), { a: b }); + st.end(); + }); + + t.test('parses jquery-param strings', function (st) { + // readable = 'filter[0][]=int1&filter[0][]==&filter[0][]=77&filter[]=and&filter[2][]=int2&filter[2][]==&filter[2][]=8' + var encoded = 'filter%5B0%5D%5B%5D=int1&filter%5B0%5D%5B%5D=%3D&filter%5B0%5D%5B%5D=77&filter%5B%5D=and&filter%5B2%5D%5B%5D=int2&filter%5B2%5D%5B%5D=%3D&filter%5B2%5D%5B%5D=8'; + var expected = { filter: [['int1', '=', '77'], 'and', ['int2', '=', '8']] }; + st.deepEqual(qs.parse(encoded), expected); + st.end(); + }); + + t.test('continues parsing when no parent is found', function (st) { + st.deepEqual(qs.parse('[]=&a=b'), { 0: '', a: 'b' }); + st.deepEqual(qs.parse('[]&a=b', { strictNullHandling: true }), { 0: null, a: 'b' }); + st.deepEqual(qs.parse('[foo]=bar'), { foo: 'bar' }); + st.end(); + }); + + t.test('does not error when parsing a very long array', function (st) { + var str = 'a[]=a'; + while (Buffer.byteLength(str) < 128 * 1024) { + str = str + '&' + str; + } + + st.doesNotThrow(function () { + qs.parse(str); + }); + + st.end(); + }); + + t.test('should not throw when a native prototype has an enumerable property', function (st) { + Object.prototype.crash = ''; + Array.prototype.crash = ''; + st.doesNotThrow(qs.parse.bind(null, 'a=b')); + st.deepEqual(qs.parse('a=b'), { a: 'b' }); + st.doesNotThrow(qs.parse.bind(null, 'a[][b]=c')); + st.deepEqual(qs.parse('a[][b]=c'), { a: [{ b: 'c' }] }); + delete Object.prototype.crash; + delete Array.prototype.crash; + st.end(); + }); + + t.test('parses a string with an alternative string delimiter', function (st) { + st.deepEqual(qs.parse('a=b;c=d', { delimiter: ';' }), { a: 'b', c: 'd' }); + st.end(); + }); + + t.test('parses a string with an alternative RegExp delimiter', function (st) { + st.deepEqual(qs.parse('a=b; c=d', { delimiter: /[;,] */ }), { a: 'b', c: 'd' }); + st.end(); + }); + + t.test('does not use non-splittable objects as delimiters', function (st) { + st.deepEqual(qs.parse('a=b&c=d', { delimiter: true }), { a: 'b', c: 'd' }); + st.end(); + }); + + t.test('allows overriding parameter limit', function (st) { + st.deepEqual(qs.parse('a=b&c=d', { parameterLimit: 1 }), { a: 'b' }); + st.end(); + }); + + t.test('allows setting the parameter limit to Infinity', function (st) { + st.deepEqual(qs.parse('a=b&c=d', { parameterLimit: Infinity }), { a: 'b', c: 'd' }); + st.end(); + }); + + t.test('allows overriding array limit', function (st) { + st.deepEqual(qs.parse('a[0]=b', { arrayLimit: -1 }), { a: { 0: 'b' } }); + st.deepEqual(qs.parse('a[-1]=b', { arrayLimit: -1 }), { a: { '-1': 'b' } }); + st.deepEqual(qs.parse('a[0]=b&a[1]=c', { arrayLimit: 0 }), { a: { 0: 'b', 1: 'c' } }); + st.end(); + }); + + t.test('allows disabling array parsing', function (st) { + var indices = qs.parse('a[0]=b&a[1]=c', { parseArrays: false }); + st.deepEqual(indices, { a: { 0: 'b', 1: 'c' } }); + st.equal(Array.isArray(indices.a), false, 'parseArrays:false, indices case is not an array'); + + var emptyBrackets = qs.parse('a[]=b', { parseArrays: false }); + st.deepEqual(emptyBrackets, { a: { 0: 'b' } }); + st.equal(Array.isArray(emptyBrackets.a), false, 'parseArrays:false, empty brackets case is not an array'); + + st.end(); + }); + + t.test('allows for query string prefix', function (st) { + st.deepEqual(qs.parse('?foo=bar', { ignoreQueryPrefix: true }), { foo: 'bar' }); + st.deepEqual(qs.parse('foo=bar', { ignoreQueryPrefix: true }), { foo: 'bar' }); + st.deepEqual(qs.parse('?foo=bar', { ignoreQueryPrefix: false }), { '?foo': 'bar' }); + st.end(); + }); + + t.test('parses an object', function (st) { + var input = { + 'user[name]': { 'pop[bob]': 3 }, + 'user[email]': null + }; + + var expected = { + user: { + name: { 'pop[bob]': 3 }, + email: null + } + }; + + var result = qs.parse(input); + + st.deepEqual(result, expected); + st.end(); + }); + + t.test('parses string with comma as array divider', function (st) { + st.deepEqual(qs.parse('foo=bar,tee', { comma: true }), { foo: ['bar', 'tee'] }); + st.deepEqual(qs.parse('foo[bar]=coffee,tee', { comma: true }), { foo: { bar: ['coffee', 'tee'] } }); + st.deepEqual(qs.parse('foo=', { comma: true }), { foo: '' }); + st.deepEqual(qs.parse('foo', { comma: true }), { foo: '' }); + st.deepEqual(qs.parse('foo', { comma: true, strictNullHandling: true }), { foo: null }); + st.end(); + }); + + t.test('parses values with comma as array divider', function (st) { + st.deepEqual(qs.parse({ foo: 'bar,tee' }, { comma: false }), { foo: 'bar,tee' }); + st.deepEqual(qs.parse({ foo: 'bar,tee' }, { comma: true }), { foo: ['bar', 'tee'] }); + st.end(); + }); + + t.test('use number decoder, parses string that has one number with comma option enabled', function (st) { + var decoder = function (str, defaultDecoder, charset, type) { + if (!isNaN(Number(str))) { + return parseFloat(str); + } + return defaultDecoder(str, defaultDecoder, charset, type); + }; + + st.deepEqual(qs.parse('foo=1', { comma: true, decoder: decoder }), { foo: 1 }); + st.deepEqual(qs.parse('foo=0', { comma: true, decoder: decoder }), { foo: 0 }); + + st.end(); + }); + + t.test('parses brackets holds array of arrays when having two parts of strings with comma as array divider', function (st) { + st.deepEqual(qs.parse('foo[]=1,2,3&foo[]=4,5,6', { comma: true }), { foo: [['1', '2', '3'], ['4', '5', '6']] }); + st.deepEqual(qs.parse('foo[]=1,2,3&foo[]=', { comma: true }), { foo: [['1', '2', '3'], ''] }); + st.deepEqual(qs.parse('foo[]=1,2,3&foo[]=,', { comma: true }), { foo: [['1', '2', '3'], ['', '']] }); + st.deepEqual(qs.parse('foo[]=1,2,3&foo[]=a', { comma: true }), { foo: [['1', '2', '3'], 'a'] }); + + st.end(); + }); + + t.test('parses comma delimited array while having percent-encoded comma treated as normal text', function (st) { + st.deepEqual(qs.parse('foo=a%2Cb', { comma: true }), { foo: 'a,b' }); + st.deepEqual(qs.parse('foo=a%2C%20b,d', { comma: true }), { foo: ['a, b', 'd'] }); + st.deepEqual(qs.parse('foo=a%2C%20b,c%2C%20d', { comma: true }), { foo: ['a, b', 'c, d'] }); + + st.end(); + }); + + t.test('parses an object in dot notation', function (st) { + var input = { + 'user.name': { 'pop[bob]': 3 }, + 'user.email.': null + }; + + var expected = { + user: { + name: { 'pop[bob]': 3 }, + email: null + } + }; + + var result = qs.parse(input, { allowDots: true }); + + st.deepEqual(result, expected); + st.end(); + }); + + t.test('parses an object and not child values', function (st) { + var input = { + 'user[name]': { 'pop[bob]': { test: 3 } }, + 'user[email]': null + }; + + var expected = { + user: { + name: { 'pop[bob]': { test: 3 } }, + email: null + } + }; + + var result = qs.parse(input); + + st.deepEqual(result, expected); + st.end(); + }); + + t.test('does not blow up when Buffer global is missing', function (st) { + var tempBuffer = global.Buffer; + delete global.Buffer; + var result = qs.parse('a=b&c=d'); + global.Buffer = tempBuffer; + st.deepEqual(result, { a: 'b', c: 'd' }); + st.end(); + }); + + t.test('does not crash when parsing circular references', function (st) { + var a = {}; + a.b = a; + + var parsed; + + st.doesNotThrow(function () { + parsed = qs.parse({ 'foo[bar]': 'baz', 'foo[baz]': a }); + }); + + st.equal('foo' in parsed, true, 'parsed has "foo" property'); + st.equal('bar' in parsed.foo, true); + st.equal('baz' in parsed.foo, true); + st.equal(parsed.foo.bar, 'baz'); + st.deepEqual(parsed.foo.baz, a); + st.end(); + }); + + t.test('does not crash when parsing deep objects', function (st) { + var parsed; + var str = 'foo'; + + for (var i = 0; i < 5000; i++) { + str += '[p]'; + } + + str += '=bar'; + + st.doesNotThrow(function () { + parsed = qs.parse(str, { depth: 5000 }); + }); + + st.equal('foo' in parsed, true, 'parsed has "foo" property'); + + var depth = 0; + var ref = parsed.foo; + while ((ref = ref.p)) { + depth += 1; + } + + st.equal(depth, 5000, 'parsed is 5000 properties deep'); + + st.end(); + }); + + t.test('parses null objects correctly', { skip: !Object.create }, function (st) { + var a = Object.create(null); + a.b = 'c'; + + st.deepEqual(qs.parse(a), { b: 'c' }); + var result = qs.parse({ a: a }); + st.equal('a' in result, true, 'result has "a" property'); + st.deepEqual(result.a, a); + st.end(); + }); + + t.test('parses dates correctly', function (st) { + var now = new Date(); + st.deepEqual(qs.parse({ a: now }), { a: now }); + st.end(); + }); + + t.test('parses regular expressions correctly', function (st) { + var re = /^test$/; + st.deepEqual(qs.parse({ a: re }), { a: re }); + st.end(); + }); + + t.test('does not allow overwriting prototype properties', function (st) { + st.deepEqual(qs.parse('a[hasOwnProperty]=b', { allowPrototypes: false }), {}); + st.deepEqual(qs.parse('hasOwnProperty=b', { allowPrototypes: false }), {}); + + st.deepEqual( + qs.parse('toString', { allowPrototypes: false }), + {}, + 'bare "toString" results in {}' + ); + + st.end(); + }); + + t.test('can allow overwriting prototype properties', function (st) { + st.deepEqual(qs.parse('a[hasOwnProperty]=b', { allowPrototypes: true }), { a: { hasOwnProperty: 'b' } }); + st.deepEqual(qs.parse('hasOwnProperty=b', { allowPrototypes: true }), { hasOwnProperty: 'b' }); + + st.deepEqual( + qs.parse('toString', { allowPrototypes: true }), + { toString: '' }, + 'bare "toString" results in { toString: "" }' + ); + + st.end(); + }); + + t.test('params starting with a closing bracket', function (st) { + st.deepEqual(qs.parse(']=toString'), { ']': 'toString' }); + st.deepEqual(qs.parse(']]=toString'), { ']]': 'toString' }); + st.deepEqual(qs.parse(']hello]=toString'), { ']hello]': 'toString' }); + st.end(); + }); + + t.test('params starting with a starting bracket', function (st) { + st.deepEqual(qs.parse('[=toString'), { '[': 'toString' }); + st.deepEqual(qs.parse('[[=toString'), { '[[': 'toString' }); + st.deepEqual(qs.parse('[hello[=toString'), { '[hello[': 'toString' }); + st.end(); + }); + + t.test('add keys to objects', function (st) { + st.deepEqual( + qs.parse('a[b]=c&a=d'), + { a: { b: 'c', d: true } }, + 'can add keys to objects' + ); + + st.deepEqual( + qs.parse('a[b]=c&a=toString'), + { a: { b: 'c' } }, + 'can not overwrite prototype' + ); + + st.deepEqual( + qs.parse('a[b]=c&a=toString', { allowPrototypes: true }), + { a: { b: 'c', toString: true } }, + 'can overwrite prototype with allowPrototypes true' + ); + + st.deepEqual( + qs.parse('a[b]=c&a=toString', { plainObjects: true }), + { __proto__: null, a: { __proto__: null, b: 'c', toString: true } }, + 'can overwrite prototype with plainObjects true' + ); + + st.end(); + }); + + t.test('dunder proto is ignored', function (st) { + var payload = 'categories[__proto__]=login&categories[__proto__]&categories[length]=42'; + var result = qs.parse(payload, { allowPrototypes: true }); + + st.deepEqual( + result, + { + categories: { + length: '42' + } + }, + 'silent [[Prototype]] payload' + ); + + var plainResult = qs.parse(payload, { allowPrototypes: true, plainObjects: true }); + + st.deepEqual( + plainResult, + { + __proto__: null, + categories: { + __proto__: null, + length: '42' + } + }, + 'silent [[Prototype]] payload: plain objects' + ); + + var query = qs.parse('categories[__proto__]=cats&categories[__proto__]=dogs&categories[some][json]=toInject', { allowPrototypes: true }); + + st.notOk(Array.isArray(query.categories), 'is not an array'); + st.notOk(query.categories instanceof Array, 'is not instanceof an array'); + st.deepEqual(query.categories, { some: { json: 'toInject' } }); + st.equal(JSON.stringify(query.categories), '{"some":{"json":"toInject"}}', 'stringifies as a non-array'); + + st.deepEqual( + qs.parse('foo[__proto__][hidden]=value&foo[bar]=stuffs', { allowPrototypes: true }), + { + foo: { + bar: 'stuffs' + } + }, + 'hidden values' + ); + + st.deepEqual( + qs.parse('foo[__proto__][hidden]=value&foo[bar]=stuffs', { allowPrototypes: true, plainObjects: true }), + { + __proto__: null, + foo: { + __proto__: null, + bar: 'stuffs' + } + }, + 'hidden values: plain objects' + ); + + st.end(); + }); + + t.test('can return null objects', { skip: !Object.create }, function (st) { + var expected = Object.create(null); + expected.a = Object.create(null); + expected.a.b = 'c'; + expected.a.hasOwnProperty = 'd'; + st.deepEqual(qs.parse('a[b]=c&a[hasOwnProperty]=d', { plainObjects: true }), expected); + st.deepEqual(qs.parse(null, { plainObjects: true }), Object.create(null)); + var expectedArray = Object.create(null); + expectedArray.a = Object.create(null); + expectedArray.a[0] = 'b'; + expectedArray.a.c = 'd'; + st.deepEqual(qs.parse('a[]=b&a[c]=d', { plainObjects: true }), expectedArray); + st.end(); + }); + + t.test('can parse with custom encoding', function (st) { + st.deepEqual(qs.parse('%8c%a7=%91%e5%8d%e3%95%7b', { + decoder: function (str) { + var reg = /%([0-9A-F]{2})/ig; + var result = []; + var parts = reg.exec(str); + while (parts) { + result.push(parseInt(parts[1], 16)); + parts = reg.exec(str); + } + return String(iconv.decode(SaferBuffer.from(result), 'shift_jis')); + } + }), { 県: '大阪府' }); + st.end(); + }); + + t.test('receives the default decoder as a second argument', function (st) { + st.plan(1); + qs.parse('a', { + decoder: function (str, defaultDecoder) { + st.equal(defaultDecoder, utils.decode); + } + }); + st.end(); + }); + + t.test('throws error with wrong decoder', function (st) { + st['throws'](function () { + qs.parse({}, { decoder: 'string' }); + }, new TypeError('Decoder has to be a function.')); + st.end(); + }); + + t.test('does not mutate the options argument', function (st) { + var options = {}; + qs.parse('a[b]=true', options); + st.deepEqual(options, {}); + st.end(); + }); + + t.test('throws if an invalid charset is specified', function (st) { + st['throws'](function () { + qs.parse('a=b', { charset: 'foobar' }); + }, new TypeError('The charset option must be either utf-8, iso-8859-1, or undefined')); + st.end(); + }); + + t.test('parses an iso-8859-1 string if asked to', function (st) { + st.deepEqual(qs.parse('%A2=%BD', { charset: 'iso-8859-1' }), { '¢': '½' }); + st.end(); + }); + + var urlEncodedCheckmarkInUtf8 = '%E2%9C%93'; + var urlEncodedOSlashInUtf8 = '%C3%B8'; + var urlEncodedNumCheckmark = '%26%2310003%3B'; + var urlEncodedNumSmiley = '%26%239786%3B'; + + t.test('prefers an utf-8 charset specified by the utf8 sentinel to a default charset of iso-8859-1', function (st) { + st.deepEqual(qs.parse('utf8=' + urlEncodedCheckmarkInUtf8 + '&' + urlEncodedOSlashInUtf8 + '=' + urlEncodedOSlashInUtf8, { charsetSentinel: true, charset: 'iso-8859-1' }), { ø: 'ø' }); + st.end(); + }); + + t.test('prefers an iso-8859-1 charset specified by the utf8 sentinel to a default charset of utf-8', function (st) { + st.deepEqual(qs.parse('utf8=' + urlEncodedNumCheckmark + '&' + urlEncodedOSlashInUtf8 + '=' + urlEncodedOSlashInUtf8, { charsetSentinel: true, charset: 'utf-8' }), { 'ø': 'ø' }); + st.end(); + }); + + t.test('does not require the utf8 sentinel to be defined before the parameters whose decoding it affects', function (st) { + st.deepEqual(qs.parse('a=' + urlEncodedOSlashInUtf8 + '&utf8=' + urlEncodedNumCheckmark, { charsetSentinel: true, charset: 'utf-8' }), { a: 'ø' }); + st.end(); + }); + + t.test('should ignore an utf8 sentinel with an unknown value', function (st) { + st.deepEqual(qs.parse('utf8=foo&' + urlEncodedOSlashInUtf8 + '=' + urlEncodedOSlashInUtf8, { charsetSentinel: true, charset: 'utf-8' }), { ø: 'ø' }); + st.end(); + }); + + t.test('uses the utf8 sentinel to switch to utf-8 when no default charset is given', function (st) { + st.deepEqual(qs.parse('utf8=' + urlEncodedCheckmarkInUtf8 + '&' + urlEncodedOSlashInUtf8 + '=' + urlEncodedOSlashInUtf8, { charsetSentinel: true }), { ø: 'ø' }); + st.end(); + }); + + t.test('uses the utf8 sentinel to switch to iso-8859-1 when no default charset is given', function (st) { + st.deepEqual(qs.parse('utf8=' + urlEncodedNumCheckmark + '&' + urlEncodedOSlashInUtf8 + '=' + urlEncodedOSlashInUtf8, { charsetSentinel: true }), { 'ø': 'ø' }); + st.end(); + }); + + t.test('interprets numeric entities in iso-8859-1 when `interpretNumericEntities`', function (st) { + st.deepEqual(qs.parse('foo=' + urlEncodedNumSmiley, { charset: 'iso-8859-1', interpretNumericEntities: true }), { foo: '☺' }); + st.end(); + }); + + t.test('handles a custom decoder returning `null`, in the `iso-8859-1` charset, when `interpretNumericEntities`', function (st) { + st.deepEqual(qs.parse('foo=&bar=' + urlEncodedNumSmiley, { + charset: 'iso-8859-1', + decoder: function (str, defaultDecoder, charset) { + return str ? defaultDecoder(str, defaultDecoder, charset) : null; + }, + interpretNumericEntities: true + }), { foo: null, bar: '☺' }); + st.end(); + }); + + t.test('does not interpret numeric entities in iso-8859-1 when `interpretNumericEntities` is absent', function (st) { + st.deepEqual(qs.parse('foo=' + urlEncodedNumSmiley, { charset: 'iso-8859-1' }), { foo: '☺' }); + st.end(); + }); + + t.test('does not interpret numeric entities when the charset is utf-8, even when `interpretNumericEntities`', function (st) { + st.deepEqual(qs.parse('foo=' + urlEncodedNumSmiley, { charset: 'utf-8', interpretNumericEntities: true }), { foo: '☺' }); + st.end(); + }); + + t.test('does not interpret %uXXXX syntax in iso-8859-1 mode', function (st) { + st.deepEqual(qs.parse('%u263A=%u263A', { charset: 'iso-8859-1' }), { '%u263A': '%u263A' }); + st.end(); + }); + + t.test('allows for decoding keys and values differently', function (st) { + var decoder = function (str, defaultDecoder, charset, type) { + if (type === 'key') { + return defaultDecoder(str, defaultDecoder, charset, type).toLowerCase(); + } + if (type === 'value') { + return defaultDecoder(str, defaultDecoder, charset, type).toUpperCase(); + } + throw 'this should never happen! type: ' + type; + }; + + st.deepEqual(qs.parse('KeY=vAlUe', { decoder: decoder }), { key: 'VALUE' }); + st.end(); + }); + + t.end(); +}); diff --git a/node_modules/qs/test/stringify.js b/node_modules/qs/test/stringify.js new file mode 100644 index 000000000..a3800aac2 --- /dev/null +++ b/node_modules/qs/test/stringify.js @@ -0,0 +1,865 @@ +'use strict'; + +var test = require('tape'); +var qs = require('../'); +var utils = require('../lib/utils'); +var iconv = require('iconv-lite'); +var SaferBuffer = require('safer-buffer').Buffer; +var hasSymbols = require('has-symbols'); +var hasBigInt = typeof BigInt === 'function'; + +test('stringify()', function (t) { + t.test('stringifies a querystring object', function (st) { + st.equal(qs.stringify({ a: 'b' }), 'a=b'); + st.equal(qs.stringify({ a: 1 }), 'a=1'); + st.equal(qs.stringify({ a: 1, b: 2 }), 'a=1&b=2'); + st.equal(qs.stringify({ a: 'A_Z' }), 'a=A_Z'); + st.equal(qs.stringify({ a: '€' }), 'a=%E2%82%AC'); + st.equal(qs.stringify({ a: '' }), 'a=%EE%80%80'); + st.equal(qs.stringify({ a: 'א' }), 'a=%D7%90'); + st.equal(qs.stringify({ a: '𐐷' }), 'a=%F0%90%90%B7'); + st.end(); + }); + + t.test('stringifies falsy values', function (st) { + st.equal(qs.stringify(undefined), ''); + st.equal(qs.stringify(null), ''); + st.equal(qs.stringify(null, { strictNullHandling: true }), ''); + st.equal(qs.stringify(false), ''); + st.equal(qs.stringify(0), ''); + st.end(); + }); + + t.test('stringifies symbols', { skip: !hasSymbols() }, function (st) { + st.equal(qs.stringify(Symbol.iterator), ''); + st.equal(qs.stringify([Symbol.iterator]), '0=Symbol%28Symbol.iterator%29'); + st.equal(qs.stringify({ a: Symbol.iterator }), 'a=Symbol%28Symbol.iterator%29'); + st.equal( + qs.stringify({ a: [Symbol.iterator] }, { encodeValuesOnly: true, arrayFormat: 'brackets' }), + 'a[]=Symbol%28Symbol.iterator%29' + ); + st.end(); + }); + + t.test('stringifies bigints', { skip: !hasBigInt }, function (st) { + var three = BigInt(3); + var encodeWithN = function (value, defaultEncoder, charset) { + var result = defaultEncoder(value, defaultEncoder, charset); + return typeof value === 'bigint' ? result + 'n' : result; + }; + st.equal(qs.stringify(three), ''); + st.equal(qs.stringify([three]), '0=3'); + st.equal(qs.stringify([three], { encoder: encodeWithN }), '0=3n'); + st.equal(qs.stringify({ a: three }), 'a=3'); + st.equal(qs.stringify({ a: three }, { encoder: encodeWithN }), 'a=3n'); + st.equal( + qs.stringify({ a: [three] }, { encodeValuesOnly: true, arrayFormat: 'brackets' }), + 'a[]=3' + ); + st.equal( + qs.stringify({ a: [three] }, { encodeValuesOnly: true, encoder: encodeWithN, arrayFormat: 'brackets' }), + 'a[]=3n' + ); + st.end(); + }); + + t.test('adds query prefix', function (st) { + st.equal(qs.stringify({ a: 'b' }, { addQueryPrefix: true }), '?a=b'); + st.end(); + }); + + t.test('with query prefix, outputs blank string given an empty object', function (st) { + st.equal(qs.stringify({}, { addQueryPrefix: true }), ''); + st.end(); + }); + + t.test('stringifies nested falsy values', function (st) { + st.equal(qs.stringify({ a: { b: { c: null } } }), 'a%5Bb%5D%5Bc%5D='); + st.equal(qs.stringify({ a: { b: { c: null } } }, { strictNullHandling: true }), 'a%5Bb%5D%5Bc%5D'); + st.equal(qs.stringify({ a: { b: { c: false } } }), 'a%5Bb%5D%5Bc%5D=false'); + st.end(); + }); + + t.test('stringifies a nested object', function (st) { + st.equal(qs.stringify({ a: { b: 'c' } }), 'a%5Bb%5D=c'); + st.equal(qs.stringify({ a: { b: { c: { d: 'e' } } } }), 'a%5Bb%5D%5Bc%5D%5Bd%5D=e'); + st.end(); + }); + + t.test('stringifies a nested object with dots notation', function (st) { + st.equal(qs.stringify({ a: { b: 'c' } }, { allowDots: true }), 'a.b=c'); + st.equal(qs.stringify({ a: { b: { c: { d: 'e' } } } }, { allowDots: true }), 'a.b.c.d=e'); + st.end(); + }); + + t.test('stringifies an array value', function (st) { + st.equal( + qs.stringify({ a: ['b', 'c', 'd'] }, { arrayFormat: 'indices' }), + 'a%5B0%5D=b&a%5B1%5D=c&a%5B2%5D=d', + 'indices => indices' + ); + st.equal( + qs.stringify({ a: ['b', 'c', 'd'] }, { arrayFormat: 'brackets' }), + 'a%5B%5D=b&a%5B%5D=c&a%5B%5D=d', + 'brackets => brackets' + ); + st.equal( + qs.stringify({ a: ['b', 'c', 'd'] }, { arrayFormat: 'comma' }), + 'a=b%2Cc%2Cd', + 'comma => comma' + ); + st.equal( + qs.stringify({ a: ['b', 'c', 'd'] }), + 'a%5B0%5D=b&a%5B1%5D=c&a%5B2%5D=d', + 'default => indices' + ); + st.end(); + }); + + t.test('omits nulls when asked', function (st) { + st.equal(qs.stringify({ a: 'b', c: null }, { skipNulls: true }), 'a=b'); + st.end(); + }); + + t.test('omits nested nulls when asked', function (st) { + st.equal(qs.stringify({ a: { b: 'c', d: null } }, { skipNulls: true }), 'a%5Bb%5D=c'); + st.end(); + }); + + t.test('omits array indices when asked', function (st) { + st.equal(qs.stringify({ a: ['b', 'c', 'd'] }, { indices: false }), 'a=b&a=c&a=d'); + st.end(); + }); + + t.test('stringifies a nested array value', function (st) { + st.equal(qs.stringify({ a: { b: ['c', 'd'] } }, { encodeValuesOnly: true, arrayFormat: 'indices' }), 'a[b][0]=c&a[b][1]=d'); + st.equal(qs.stringify({ a: { b: ['c', 'd'] } }, { encodeValuesOnly: true, arrayFormat: 'brackets' }), 'a[b][]=c&a[b][]=d'); + st.equal(qs.stringify({ a: { b: ['c', 'd'] } }, { encodeValuesOnly: true, arrayFormat: 'comma' }), 'a[b]=c,d'); + st.equal(qs.stringify({ a: { b: ['c', 'd'] } }, { encodeValuesOnly: true }), 'a[b][0]=c&a[b][1]=d'); + st.end(); + }); + + t.test('stringifies a nested array value with dots notation', function (st) { + st.equal( + qs.stringify( + { a: { b: ['c', 'd'] } }, + { allowDots: true, encodeValuesOnly: true, arrayFormat: 'indices' } + ), + 'a.b[0]=c&a.b[1]=d', + 'indices: stringifies with dots + indices' + ); + st.equal( + qs.stringify( + { a: { b: ['c', 'd'] } }, + { allowDots: true, encodeValuesOnly: true, arrayFormat: 'brackets' } + ), + 'a.b[]=c&a.b[]=d', + 'brackets: stringifies with dots + brackets' + ); + st.equal( + qs.stringify( + { a: { b: ['c', 'd'] } }, + { allowDots: true, encodeValuesOnly: true, arrayFormat: 'comma' } + ), + 'a.b=c,d', + 'comma: stringifies with dots + comma' + ); + st.equal( + qs.stringify( + { a: { b: ['c', 'd'] } }, + { allowDots: true, encodeValuesOnly: true } + ), + 'a.b[0]=c&a.b[1]=d', + 'default: stringifies with dots + indices' + ); + st.end(); + }); + + t.test('stringifies an object inside an array', function (st) { + st.equal( + qs.stringify({ a: [{ b: 'c' }] }, { arrayFormat: 'indices' }), + 'a%5B0%5D%5Bb%5D=c', // a[0][b]=c + 'indices => brackets' + ); + st.equal( + qs.stringify({ a: [{ b: 'c' }] }, { arrayFormat: 'brackets' }), + 'a%5B%5D%5Bb%5D=c', // a[][b]=c + 'brackets => brackets' + ); + st.equal( + qs.stringify({ a: [{ b: 'c' }] }), + 'a%5B0%5D%5Bb%5D=c', + 'default => indices' + ); + + st.equal( + qs.stringify({ a: [{ b: { c: [1] } }] }, { arrayFormat: 'indices' }), + 'a%5B0%5D%5Bb%5D%5Bc%5D%5B0%5D=1', + 'indices => indices' + ); + + st.equal( + qs.stringify({ a: [{ b: { c: [1] } }] }, { arrayFormat: 'brackets' }), + 'a%5B%5D%5Bb%5D%5Bc%5D%5B%5D=1', + 'brackets => brackets' + ); + + st.equal( + qs.stringify({ a: [{ b: { c: [1] } }] }), + 'a%5B0%5D%5Bb%5D%5Bc%5D%5B0%5D=1', + 'default => indices' + ); + + st.end(); + }); + + t.test('stringifies an array with mixed objects and primitives', function (st) { + st.equal( + qs.stringify({ a: [{ b: 1 }, 2, 3] }, { encodeValuesOnly: true, arrayFormat: 'indices' }), + 'a[0][b]=1&a[1]=2&a[2]=3', + 'indices => indices' + ); + st.equal( + qs.stringify({ a: [{ b: 1 }, 2, 3] }, { encodeValuesOnly: true, arrayFormat: 'brackets' }), + 'a[][b]=1&a[]=2&a[]=3', + 'brackets => brackets' + ); + st.equal( + qs.stringify({ a: [{ b: 1 }, 2, 3] }, { encodeValuesOnly: true, arrayFormat: 'comma' }), + '???', + 'brackets => brackets', + { skip: 'TODO: figure out what this should do' } + ); + st.equal( + qs.stringify({ a: [{ b: 1 }, 2, 3] }, { encodeValuesOnly: true }), + 'a[0][b]=1&a[1]=2&a[2]=3', + 'default => indices' + ); + + st.end(); + }); + + t.test('stringifies an object inside an array with dots notation', function (st) { + st.equal( + qs.stringify( + { a: [{ b: 'c' }] }, + { allowDots: true, encode: false, arrayFormat: 'indices' } + ), + 'a[0].b=c', + 'indices => indices' + ); + st.equal( + qs.stringify( + { a: [{ b: 'c' }] }, + { allowDots: true, encode: false, arrayFormat: 'brackets' } + ), + 'a[].b=c', + 'brackets => brackets' + ); + st.equal( + qs.stringify( + { a: [{ b: 'c' }] }, + { allowDots: true, encode: false } + ), + 'a[0].b=c', + 'default => indices' + ); + + st.equal( + qs.stringify( + { a: [{ b: { c: [1] } }] }, + { allowDots: true, encode: false, arrayFormat: 'indices' } + ), + 'a[0].b.c[0]=1', + 'indices => indices' + ); + st.equal( + qs.stringify( + { a: [{ b: { c: [1] } }] }, + { allowDots: true, encode: false, arrayFormat: 'brackets' } + ), + 'a[].b.c[]=1', + 'brackets => brackets' + ); + st.equal( + qs.stringify( + { a: [{ b: { c: [1] } }] }, + { allowDots: true, encode: false } + ), + 'a[0].b.c[0]=1', + 'default => indices' + ); + + st.end(); + }); + + t.test('does not omit object keys when indices = false', function (st) { + st.equal(qs.stringify({ a: [{ b: 'c' }] }, { indices: false }), 'a%5Bb%5D=c'); + st.end(); + }); + + t.test('uses indices notation for arrays when indices=true', function (st) { + st.equal(qs.stringify({ a: ['b', 'c'] }, { indices: true }), 'a%5B0%5D=b&a%5B1%5D=c'); + st.end(); + }); + + t.test('uses indices notation for arrays when no arrayFormat is specified', function (st) { + st.equal(qs.stringify({ a: ['b', 'c'] }), 'a%5B0%5D=b&a%5B1%5D=c'); + st.end(); + }); + + t.test('uses indices notation for arrays when no arrayFormat=indices', function (st) { + st.equal(qs.stringify({ a: ['b', 'c'] }, { arrayFormat: 'indices' }), 'a%5B0%5D=b&a%5B1%5D=c'); + st.end(); + }); + + t.test('uses repeat notation for arrays when no arrayFormat=repeat', function (st) { + st.equal(qs.stringify({ a: ['b', 'c'] }, { arrayFormat: 'repeat' }), 'a=b&a=c'); + st.end(); + }); + + t.test('uses brackets notation for arrays when no arrayFormat=brackets', function (st) { + st.equal(qs.stringify({ a: ['b', 'c'] }, { arrayFormat: 'brackets' }), 'a%5B%5D=b&a%5B%5D=c'); + st.end(); + }); + + t.test('stringifies a complicated object', function (st) { + st.equal(qs.stringify({ a: { b: 'c', d: 'e' } }), 'a%5Bb%5D=c&a%5Bd%5D=e'); + st.end(); + }); + + t.test('stringifies an empty value', function (st) { + st.equal(qs.stringify({ a: '' }), 'a='); + st.equal(qs.stringify({ a: null }, { strictNullHandling: true }), 'a'); + + st.equal(qs.stringify({ a: '', b: '' }), 'a=&b='); + st.equal(qs.stringify({ a: null, b: '' }, { strictNullHandling: true }), 'a&b='); + + st.equal(qs.stringify({ a: { b: '' } }), 'a%5Bb%5D='); + st.equal(qs.stringify({ a: { b: null } }, { strictNullHandling: true }), 'a%5Bb%5D'); + st.equal(qs.stringify({ a: { b: null } }, { strictNullHandling: false }), 'a%5Bb%5D='); + + st.end(); + }); + + t.test('stringifies an empty array in different arrayFormat', function (st) { + st.equal(qs.stringify({ a: [], b: [null], c: 'c' }, { encode: false }), 'b[0]=&c=c'); + // arrayFormat default + st.equal(qs.stringify({ a: [], b: [null], c: 'c' }, { encode: false, arrayFormat: 'indices' }), 'b[0]=&c=c'); + st.equal(qs.stringify({ a: [], b: [null], c: 'c' }, { encode: false, arrayFormat: 'brackets' }), 'b[]=&c=c'); + st.equal(qs.stringify({ a: [], b: [null], c: 'c' }, { encode: false, arrayFormat: 'repeat' }), 'b=&c=c'); + st.equal(qs.stringify({ a: [], b: [null], c: 'c' }, { encode: false, arrayFormat: 'comma' }), 'b=&c=c'); + // with strictNullHandling + st.equal(qs.stringify({ a: [], b: [null], c: 'c' }, { encode: false, arrayFormat: 'indices', strictNullHandling: true }), 'b[0]&c=c'); + st.equal(qs.stringify({ a: [], b: [null], c: 'c' }, { encode: false, arrayFormat: 'brackets', strictNullHandling: true }), 'b[]&c=c'); + st.equal(qs.stringify({ a: [], b: [null], c: 'c' }, { encode: false, arrayFormat: 'repeat', strictNullHandling: true }), 'b&c=c'); + st.equal(qs.stringify({ a: [], b: [null], c: 'c' }, { encode: false, arrayFormat: 'comma', strictNullHandling: true }), 'b&c=c'); + // with skipNulls + st.equal(qs.stringify({ a: [], b: [null], c: 'c' }, { encode: false, arrayFormat: 'indices', skipNulls: true }), 'c=c'); + st.equal(qs.stringify({ a: [], b: [null], c: 'c' }, { encode: false, arrayFormat: 'brackets', skipNulls: true }), 'c=c'); + st.equal(qs.stringify({ a: [], b: [null], c: 'c' }, { encode: false, arrayFormat: 'repeat', skipNulls: true }), 'c=c'); + st.equal(qs.stringify({ a: [], b: [null], c: 'c' }, { encode: false, arrayFormat: 'comma', skipNulls: true }), 'c=c'); + + st.end(); + }); + + t.test('stringifies a null object', { skip: !Object.create }, function (st) { + var obj = Object.create(null); + obj.a = 'b'; + st.equal(qs.stringify(obj), 'a=b'); + st.end(); + }); + + t.test('returns an empty string for invalid input', function (st) { + st.equal(qs.stringify(undefined), ''); + st.equal(qs.stringify(false), ''); + st.equal(qs.stringify(null), ''); + st.equal(qs.stringify(''), ''); + st.end(); + }); + + t.test('stringifies an object with a null object as a child', { skip: !Object.create }, function (st) { + var obj = { a: Object.create(null) }; + + obj.a.b = 'c'; + st.equal(qs.stringify(obj), 'a%5Bb%5D=c'); + st.end(); + }); + + t.test('drops keys with a value of undefined', function (st) { + st.equal(qs.stringify({ a: undefined }), ''); + + st.equal(qs.stringify({ a: { b: undefined, c: null } }, { strictNullHandling: true }), 'a%5Bc%5D'); + st.equal(qs.stringify({ a: { b: undefined, c: null } }, { strictNullHandling: false }), 'a%5Bc%5D='); + st.equal(qs.stringify({ a: { b: undefined, c: '' } }), 'a%5Bc%5D='); + st.end(); + }); + + t.test('url encodes values', function (st) { + st.equal(qs.stringify({ a: 'b c' }), 'a=b%20c'); + st.end(); + }); + + t.test('stringifies a date', function (st) { + var now = new Date(); + var str = 'a=' + encodeURIComponent(now.toISOString()); + st.equal(qs.stringify({ a: now }), str); + st.end(); + }); + + t.test('stringifies the weird object from qs', function (st) { + st.equal(qs.stringify({ 'my weird field': '~q1!2"\'w$5&7/z8)?' }), 'my%20weird%20field=~q1%212%22%27w%245%267%2Fz8%29%3F'); + st.end(); + }); + + t.test('skips properties that are part of the object prototype', function (st) { + Object.prototype.crash = 'test'; + st.equal(qs.stringify({ a: 'b' }), 'a=b'); + st.equal(qs.stringify({ a: { b: 'c' } }), 'a%5Bb%5D=c'); + delete Object.prototype.crash; + st.end(); + }); + + t.test('stringifies boolean values', function (st) { + st.equal(qs.stringify({ a: true }), 'a=true'); + st.equal(qs.stringify({ a: { b: true } }), 'a%5Bb%5D=true'); + st.equal(qs.stringify({ b: false }), 'b=false'); + st.equal(qs.stringify({ b: { c: false } }), 'b%5Bc%5D=false'); + st.end(); + }); + + t.test('stringifies buffer values', function (st) { + st.equal(qs.stringify({ a: SaferBuffer.from('test') }), 'a=test'); + st.equal(qs.stringify({ a: { b: SaferBuffer.from('test') } }), 'a%5Bb%5D=test'); + st.end(); + }); + + t.test('stringifies an object using an alternative delimiter', function (st) { + st.equal(qs.stringify({ a: 'b', c: 'd' }, { delimiter: ';' }), 'a=b;c=d'); + st.end(); + }); + + t.test('does not blow up when Buffer global is missing', function (st) { + var tempBuffer = global.Buffer; + delete global.Buffer; + var result = qs.stringify({ a: 'b', c: 'd' }); + global.Buffer = tempBuffer; + st.equal(result, 'a=b&c=d'); + st.end(); + }); + + t.test('does not crash when parsing circular references', function (st) { + var a = {}; + a.b = a; + + st['throws']( + function () { qs.stringify({ 'foo[bar]': 'baz', 'foo[baz]': a }); }, + /RangeError: Cyclic object value/, + 'cyclic values throw' + ); + + var circular = { + a: 'value' + }; + circular.a = circular; + st['throws']( + function () { qs.stringify(circular); }, + /RangeError: Cyclic object value/, + 'cyclic values throw' + ); + + var arr = ['a']; + st.doesNotThrow( + function () { qs.stringify({ x: arr, y: arr }); }, + 'non-cyclic values do not throw' + ); + + st.end(); + }); + + t.test('non-circular duplicated references can still work', function (st) { + var hourOfDay = { + 'function': 'hour_of_day' + }; + + var p1 = { + 'function': 'gte', + arguments: [hourOfDay, 0] + }; + var p2 = { + 'function': 'lte', + arguments: [hourOfDay, 23] + }; + + st.equal( + qs.stringify({ filters: { $and: [p1, p2] } }, { encodeValuesOnly: true }), + 'filters[$and][0][function]=gte&filters[$and][0][arguments][0][function]=hour_of_day&filters[$and][0][arguments][1]=0&filters[$and][1][function]=lte&filters[$and][1][arguments][0][function]=hour_of_day&filters[$and][1][arguments][1]=23' + ); + + st.end(); + }); + + t.test('selects properties when filter=array', function (st) { + st.equal(qs.stringify({ a: 'b' }, { filter: ['a'] }), 'a=b'); + st.equal(qs.stringify({ a: 1 }, { filter: [] }), ''); + + st.equal( + qs.stringify( + { a: { b: [1, 2, 3, 4], c: 'd' }, c: 'f' }, + { filter: ['a', 'b', 0, 2], arrayFormat: 'indices' } + ), + 'a%5Bb%5D%5B0%5D=1&a%5Bb%5D%5B2%5D=3', + 'indices => indices' + ); + st.equal( + qs.stringify( + { a: { b: [1, 2, 3, 4], c: 'd' }, c: 'f' }, + { filter: ['a', 'b', 0, 2], arrayFormat: 'brackets' } + ), + 'a%5Bb%5D%5B%5D=1&a%5Bb%5D%5B%5D=3', + 'brackets => brackets' + ); + st.equal( + qs.stringify( + { a: { b: [1, 2, 3, 4], c: 'd' }, c: 'f' }, + { filter: ['a', 'b', 0, 2] } + ), + 'a%5Bb%5D%5B0%5D=1&a%5Bb%5D%5B2%5D=3', + 'default => indices' + ); + + st.end(); + }); + + t.test('supports custom representations when filter=function', function (st) { + var calls = 0; + var obj = { a: 'b', c: 'd', e: { f: new Date(1257894000000) } }; + var filterFunc = function (prefix, value) { + calls += 1; + if (calls === 1) { + st.equal(prefix, '', 'prefix is empty'); + st.equal(value, obj); + } else if (prefix === 'c') { + return void 0; + } else if (value instanceof Date) { + st.equal(prefix, 'e[f]'); + return value.getTime(); + } + return value; + }; + + st.equal(qs.stringify(obj, { filter: filterFunc }), 'a=b&e%5Bf%5D=1257894000000'); + st.equal(calls, 5); + st.end(); + }); + + t.test('can disable uri encoding', function (st) { + st.equal(qs.stringify({ a: 'b' }, { encode: false }), 'a=b'); + st.equal(qs.stringify({ a: { b: 'c' } }, { encode: false }), 'a[b]=c'); + st.equal(qs.stringify({ a: 'b', c: null }, { strictNullHandling: true, encode: false }), 'a=b&c'); + st.end(); + }); + + t.test('can sort the keys', function (st) { + var sort = function (a, b) { + return a.localeCompare(b); + }; + st.equal(qs.stringify({ a: 'c', z: 'y', b: 'f' }, { sort: sort }), 'a=c&b=f&z=y'); + st.equal(qs.stringify({ a: 'c', z: { j: 'a', i: 'b' }, b: 'f' }, { sort: sort }), 'a=c&b=f&z%5Bi%5D=b&z%5Bj%5D=a'); + st.end(); + }); + + t.test('can sort the keys at depth 3 or more too', function (st) { + var sort = function (a, b) { + return a.localeCompare(b); + }; + st.equal( + qs.stringify( + { a: 'a', z: { zj: { zjb: 'zjb', zja: 'zja' }, zi: { zib: 'zib', zia: 'zia' } }, b: 'b' }, + { sort: sort, encode: false } + ), + 'a=a&b=b&z[zi][zia]=zia&z[zi][zib]=zib&z[zj][zja]=zja&z[zj][zjb]=zjb' + ); + st.equal( + qs.stringify( + { a: 'a', z: { zj: { zjb: 'zjb', zja: 'zja' }, zi: { zib: 'zib', zia: 'zia' } }, b: 'b' }, + { sort: null, encode: false } + ), + 'a=a&z[zj][zjb]=zjb&z[zj][zja]=zja&z[zi][zib]=zib&z[zi][zia]=zia&b=b' + ); + st.end(); + }); + + t.test('can stringify with custom encoding', function (st) { + st.equal(qs.stringify({ 県: '大阪府', '': '' }, { + encoder: function (str) { + if (str.length === 0) { + return ''; + } + var buf = iconv.encode(str, 'shiftjis'); + var result = []; + for (var i = 0; i < buf.length; ++i) { + result.push(buf.readUInt8(i).toString(16)); + } + return '%' + result.join('%'); + } + }), '%8c%a7=%91%e5%8d%e3%95%7b&='); + st.end(); + }); + + t.test('receives the default encoder as a second argument', function (st) { + st.plan(2); + qs.stringify({ a: 1 }, { + encoder: function (str, defaultEncoder) { + st.equal(defaultEncoder, utils.encode); + } + }); + st.end(); + }); + + t.test('throws error with wrong encoder', function (st) { + st['throws'](function () { + qs.stringify({}, { encoder: 'string' }); + }, new TypeError('Encoder has to be a function.')); + st.end(); + }); + + t.test('can use custom encoder for a buffer object', { skip: typeof Buffer === 'undefined' }, function (st) { + st.equal(qs.stringify({ a: SaferBuffer.from([1]) }, { + encoder: function (buffer) { + if (typeof buffer === 'string') { + return buffer; + } + return String.fromCharCode(buffer.readUInt8(0) + 97); + } + }), 'a=b'); + + st.equal(qs.stringify({ a: SaferBuffer.from('a b') }, { + encoder: function (buffer) { + return buffer; + } + }), 'a=a b'); + st.end(); + }); + + t.test('serializeDate option', function (st) { + var date = new Date(); + st.equal( + qs.stringify({ a: date }), + 'a=' + date.toISOString().replace(/:/g, '%3A'), + 'default is toISOString' + ); + + var mutatedDate = new Date(); + mutatedDate.toISOString = function () { + throw new SyntaxError(); + }; + st['throws'](function () { + mutatedDate.toISOString(); + }, SyntaxError); + st.equal( + qs.stringify({ a: mutatedDate }), + 'a=' + Date.prototype.toISOString.call(mutatedDate).replace(/:/g, '%3A'), + 'toISOString works even when method is not locally present' + ); + + var specificDate = new Date(6); + st.equal( + qs.stringify( + { a: specificDate }, + { serializeDate: function (d) { return d.getTime() * 7; } } + ), + 'a=42', + 'custom serializeDate function called' + ); + + st.equal( + qs.stringify( + { a: [date] }, + { + serializeDate: function (d) { return d.getTime(); }, + arrayFormat: 'comma' + } + ), + 'a=' + date.getTime(), + 'works with arrayFormat comma' + ); + + st.end(); + }); + + t.test('RFC 1738 serialization', function (st) { + st.equal(qs.stringify({ a: 'b c' }, { format: qs.formats.RFC1738 }), 'a=b+c'); + st.equal(qs.stringify({ 'a b': 'c d' }, { format: qs.formats.RFC1738 }), 'a+b=c+d'); + st.equal(qs.stringify({ 'a b': SaferBuffer.from('a b') }, { format: qs.formats.RFC1738 }), 'a+b=a+b'); + + st.equal(qs.stringify({ 'foo(ref)': 'bar' }, { format: qs.formats.RFC1738 }), 'foo(ref)=bar'); + + st.end(); + }); + + t.test('RFC 3986 spaces serialization', function (st) { + st.equal(qs.stringify({ a: 'b c' }, { format: qs.formats.RFC3986 }), 'a=b%20c'); + st.equal(qs.stringify({ 'a b': 'c d' }, { format: qs.formats.RFC3986 }), 'a%20b=c%20d'); + st.equal(qs.stringify({ 'a b': SaferBuffer.from('a b') }, { format: qs.formats.RFC3986 }), 'a%20b=a%20b'); + + st.end(); + }); + + t.test('Backward compatibility to RFC 3986', function (st) { + st.equal(qs.stringify({ a: 'b c' }), 'a=b%20c'); + st.equal(qs.stringify({ 'a b': SaferBuffer.from('a b') }), 'a%20b=a%20b'); + + st.end(); + }); + + t.test('Edge cases and unknown formats', function (st) { + ['UFO1234', false, 1234, null, {}, []].forEach( + function (format) { + st['throws']( + function () { + qs.stringify({ a: 'b c' }, { format: format }); + }, + new TypeError('Unknown format option provided.') + ); + } + ); + st.end(); + }); + + t.test('encodeValuesOnly', function (st) { + st.equal( + qs.stringify( + { a: 'b', c: ['d', 'e=f'], f: [['g'], ['h']] }, + { encodeValuesOnly: true } + ), + 'a=b&c[0]=d&c[1]=e%3Df&f[0][0]=g&f[1][0]=h' + ); + st.equal( + qs.stringify( + { a: 'b', c: ['d', 'e'], f: [['g'], ['h']] } + ), + 'a=b&c%5B0%5D=d&c%5B1%5D=e&f%5B0%5D%5B0%5D=g&f%5B1%5D%5B0%5D=h' + ); + st.end(); + }); + + t.test('encodeValuesOnly - strictNullHandling', function (st) { + st.equal( + qs.stringify( + { a: { b: null } }, + { encodeValuesOnly: true, strictNullHandling: true } + ), + 'a[b]' + ); + st.end(); + }); + + t.test('throws if an invalid charset is specified', function (st) { + st['throws'](function () { + qs.stringify({ a: 'b' }, { charset: 'foobar' }); + }, new TypeError('The charset option must be either utf-8, iso-8859-1, or undefined')); + st.end(); + }); + + t.test('respects a charset of iso-8859-1', function (st) { + st.equal(qs.stringify({ æ: 'æ' }, { charset: 'iso-8859-1' }), '%E6=%E6'); + st.end(); + }); + + t.test('encodes unrepresentable chars as numeric entities in iso-8859-1 mode', function (st) { + st.equal(qs.stringify({ a: '☺' }, { charset: 'iso-8859-1' }), 'a=%26%239786%3B'); + st.end(); + }); + + t.test('respects an explicit charset of utf-8 (the default)', function (st) { + st.equal(qs.stringify({ a: 'æ' }, { charset: 'utf-8' }), 'a=%C3%A6'); + st.end(); + }); + + t.test('adds the right sentinel when instructed to and the charset is utf-8', function (st) { + st.equal(qs.stringify({ a: 'æ' }, { charsetSentinel: true, charset: 'utf-8' }), 'utf8=%E2%9C%93&a=%C3%A6'); + st.end(); + }); + + t.test('adds the right sentinel when instructed to and the charset is iso-8859-1', function (st) { + st.equal(qs.stringify({ a: 'æ' }, { charsetSentinel: true, charset: 'iso-8859-1' }), 'utf8=%26%2310003%3B&a=%E6'); + st.end(); + }); + + t.test('does not mutate the options argument', function (st) { + var options = {}; + qs.stringify({}, options); + st.deepEqual(options, {}); + st.end(); + }); + + t.test('strictNullHandling works with custom filter', function (st) { + var filter = function (prefix, value) { + return value; + }; + + var options = { strictNullHandling: true, filter: filter }; + st.equal(qs.stringify({ key: null }, options), 'key'); + st.end(); + }); + + t.test('strictNullHandling works with null serializeDate', function (st) { + var serializeDate = function () { + return null; + }; + var options = { strictNullHandling: true, serializeDate: serializeDate }; + var date = new Date(); + st.equal(qs.stringify({ key: date }, options), 'key'); + st.end(); + }); + + t.test('allows for encoding keys and values differently', function (st) { + var encoder = function (str, defaultEncoder, charset, type) { + if (type === 'key') { + return defaultEncoder(str, defaultEncoder, charset, type).toLowerCase(); + } + if (type === 'value') { + return defaultEncoder(str, defaultEncoder, charset, type).toUpperCase(); + } + throw 'this should never happen! type: ' + type; + }; + + st.deepEqual(qs.stringify({ KeY: 'vAlUe' }, { encoder: encoder }), 'key=VALUE'); + st.end(); + }); + + t.test('objects inside arrays', function (st) { + var obj = { a: { b: { c: 'd', e: 'f' } } }; + var withArray = { a: { b: [{ c: 'd', e: 'f' }] } }; + + st.equal(qs.stringify(obj, { encode: false }), 'a[b][c]=d&a[b][e]=f', 'no array, no arrayFormat'); + st.equal(qs.stringify(obj, { encode: false, arrayFormat: 'bracket' }), 'a[b][c]=d&a[b][e]=f', 'no array, bracket'); + st.equal(qs.stringify(obj, { encode: false, arrayFormat: 'indices' }), 'a[b][c]=d&a[b][e]=f', 'no array, indices'); + st.equal(qs.stringify(obj, { encode: false, arrayFormat: 'comma' }), 'a[b][c]=d&a[b][e]=f', 'no array, comma'); + + st.equal(qs.stringify(withArray, { encode: false }), 'a[b][0][c]=d&a[b][0][e]=f', 'array, no arrayFormat'); + st.equal(qs.stringify(withArray, { encode: false, arrayFormat: 'bracket' }), 'a[b][0][c]=d&a[b][0][e]=f', 'array, bracket'); + st.equal(qs.stringify(withArray, { encode: false, arrayFormat: 'indices' }), 'a[b][0][c]=d&a[b][0][e]=f', 'array, indices'); + st.equal( + qs.stringify(withArray, { encode: false, arrayFormat: 'comma' }), + '???', + 'array, comma', + { skip: 'TODO: figure out what this should do' } + ); + + st.end(); + }); + + t.test('stringifies sparse arrays', function (st) { + /* eslint no-sparse-arrays: 0 */ + st.equal(qs.stringify({ a: [, '2', , , '1'] }, { encodeValuesOnly: true }), 'a[1]=2&a[4]=1'); + st.equal(qs.stringify({ a: [, { b: [, , { c: '1' }] }] }, { encodeValuesOnly: true }), 'a[1][b][2][c]=1'); + st.equal(qs.stringify({ a: [, [, , [, , , { c: '1' }]]] }, { encodeValuesOnly: true }), 'a[1][2][3][c]=1'); + st.equal(qs.stringify({ a: [, [, , [, , , { c: [, '1'] }]]] }, { encodeValuesOnly: true }), 'a[1][2][3][c][1]=1'); + + st.end(); + }); + + t.end(); +}); diff --git a/node_modules/qs/test/utils.js b/node_modules/qs/test/utils.js new file mode 100644 index 000000000..aa84dfdc6 --- /dev/null +++ b/node_modules/qs/test/utils.js @@ -0,0 +1,136 @@ +'use strict'; + +var test = require('tape'); +var inspect = require('object-inspect'); +var SaferBuffer = require('safer-buffer').Buffer; +var forEach = require('for-each'); +var utils = require('../lib/utils'); + +test('merge()', function (t) { + t.deepEqual(utils.merge(null, true), [null, true], 'merges true into null'); + + t.deepEqual(utils.merge(null, [42]), [null, 42], 'merges null into an array'); + + t.deepEqual(utils.merge({ a: 'b' }, { a: 'c' }), { a: ['b', 'c'] }, 'merges two objects with the same key'); + + var oneMerged = utils.merge({ foo: 'bar' }, { foo: { first: '123' } }); + t.deepEqual(oneMerged, { foo: ['bar', { first: '123' }] }, 'merges a standalone and an object into an array'); + + var twoMerged = utils.merge({ foo: ['bar', { first: '123' }] }, { foo: { second: '456' } }); + t.deepEqual(twoMerged, { foo: { 0: 'bar', 1: { first: '123' }, second: '456' } }, 'merges a standalone and two objects into an array'); + + var sandwiched = utils.merge({ foo: ['bar', { first: '123', second: '456' }] }, { foo: 'baz' }); + t.deepEqual(sandwiched, { foo: ['bar', { first: '123', second: '456' }, 'baz'] }, 'merges an object sandwiched by two standalones into an array'); + + var nestedArrays = utils.merge({ foo: ['baz'] }, { foo: ['bar', 'xyzzy'] }); + t.deepEqual(nestedArrays, { foo: ['baz', 'bar', 'xyzzy'] }); + + var noOptionsNonObjectSource = utils.merge({ foo: 'baz' }, 'bar'); + t.deepEqual(noOptionsNonObjectSource, { foo: 'baz', bar: true }); + + t.test( + 'avoids invoking array setters unnecessarily', + { skip: typeof Object.defineProperty !== 'function' }, + function (st) { + var setCount = 0; + var getCount = 0; + var observed = []; + Object.defineProperty(observed, 0, { + get: function () { + getCount += 1; + return { bar: 'baz' }; + }, + set: function () { setCount += 1; } + }); + utils.merge(observed, [null]); + st.equal(setCount, 0); + st.equal(getCount, 1); + observed[0] = observed[0]; // eslint-disable-line no-self-assign + st.equal(setCount, 1); + st.equal(getCount, 2); + st.end(); + } + ); + + t.end(); +}); + +test('assign()', function (t) { + var target = { a: 1, b: 2 }; + var source = { b: 3, c: 4 }; + var result = utils.assign(target, source); + + t.equal(result, target, 'returns the target'); + t.deepEqual(target, { a: 1, b: 3, c: 4 }, 'target and source are merged'); + t.deepEqual(source, { b: 3, c: 4 }, 'source is untouched'); + + t.end(); +}); + +test('combine()', function (t) { + t.test('both arrays', function (st) { + var a = [1]; + var b = [2]; + var combined = utils.combine(a, b); + + st.deepEqual(a, [1], 'a is not mutated'); + st.deepEqual(b, [2], 'b is not mutated'); + st.notEqual(a, combined, 'a !== combined'); + st.notEqual(b, combined, 'b !== combined'); + st.deepEqual(combined, [1, 2], 'combined is a + b'); + + st.end(); + }); + + t.test('one array, one non-array', function (st) { + var aN = 1; + var a = [aN]; + var bN = 2; + var b = [bN]; + + var combinedAnB = utils.combine(aN, b); + st.deepEqual(b, [bN], 'b is not mutated'); + st.notEqual(aN, combinedAnB, 'aN + b !== aN'); + st.notEqual(a, combinedAnB, 'aN + b !== a'); + st.notEqual(bN, combinedAnB, 'aN + b !== bN'); + st.notEqual(b, combinedAnB, 'aN + b !== b'); + st.deepEqual([1, 2], combinedAnB, 'first argument is array-wrapped when not an array'); + + var combinedABn = utils.combine(a, bN); + st.deepEqual(a, [aN], 'a is not mutated'); + st.notEqual(aN, combinedABn, 'a + bN !== aN'); + st.notEqual(a, combinedABn, 'a + bN !== a'); + st.notEqual(bN, combinedABn, 'a + bN !== bN'); + st.notEqual(b, combinedABn, 'a + bN !== b'); + st.deepEqual([1, 2], combinedABn, 'second argument is array-wrapped when not an array'); + + st.end(); + }); + + t.test('neither is an array', function (st) { + var combined = utils.combine(1, 2); + st.notEqual(1, combined, '1 + 2 !== 1'); + st.notEqual(2, combined, '1 + 2 !== 2'); + st.deepEqual([1, 2], combined, 'both arguments are array-wrapped when not an array'); + + st.end(); + }); + + t.end(); +}); + +test('isBuffer()', function (t) { + forEach([null, undefined, true, false, '', 'abc', 42, 0, NaN, {}, [], function () {}, /a/g], function (x) { + t.equal(utils.isBuffer(x), false, inspect(x) + ' is not a buffer'); + }); + + var fakeBuffer = { constructor: Buffer }; + t.equal(utils.isBuffer(fakeBuffer), false, 'fake buffer is not a buffer'); + + var saferBuffer = SaferBuffer.from('abc'); + t.equal(utils.isBuffer(saferBuffer), true, 'SaferBuffer instance is a buffer'); + + var buffer = Buffer.from && Buffer.alloc ? Buffer.from('abc') : new Buffer('abc'); + t.equal(utils.isBuffer(buffer), true, 'real Buffer instance is a buffer'); + t.end(); +}); diff --git a/node_modules/range-parser/HISTORY.md b/node_modules/range-parser/HISTORY.md new file mode 100644 index 000000000..70a973d80 --- /dev/null +++ b/node_modules/range-parser/HISTORY.md @@ -0,0 +1,56 @@ +1.2.1 / 2019-05-10 +================== + + * Improve error when `str` is not a string + +1.2.0 / 2016-06-01 +================== + + * Add `combine` option to combine overlapping ranges + +1.1.0 / 2016-05-13 +================== + + * Fix incorrectly returning -1 when there is at least one valid range + * perf: remove internal function + +1.0.3 / 2015-10-29 +================== + + * perf: enable strict mode + +1.0.2 / 2014-09-08 +================== + + * Support Node.js 0.6 + +1.0.1 / 2014-09-07 +================== + + * Move repository to jshttp + +1.0.0 / 2013-12-11 +================== + + * Add repository to package.json + * Add MIT license + +0.0.4 / 2012-06-17 +================== + + * Change ret -1 for unsatisfiable and -2 when invalid + +0.0.3 / 2012-06-17 +================== + + * Fix last-byte-pos default to len - 1 + +0.0.2 / 2012-06-14 +================== + + * Add `.type` + +0.0.1 / 2012-06-11 +================== + + * Initial release diff --git a/node_modules/range-parser/LICENSE b/node_modules/range-parser/LICENSE new file mode 100644 index 000000000..359995436 --- /dev/null +++ b/node_modules/range-parser/LICENSE @@ -0,0 +1,23 @@ +(The MIT License) + +Copyright (c) 2012-2014 TJ Holowaychuk +Copyright (c) 2015-2016 Douglas Christopher Wilson + +```js +var parseRange = require('range-parser') +``` + +### parseRange(size, header, options) + +Parse the given `header` string where `size` is the maximum size of the resource. +An array of ranges will be returned or negative numbers indicating an error parsing. + + * `-2` signals a malformed header string + * `-1` signals an unsatisfiable range + + + +```js +// parse header from request +var range = parseRange(size, req.headers.range) + +// the type of the range +if (range.type === 'bytes') { + // the ranges + range.forEach(function (r) { + // do something with r.start and r.end + }) +} +``` + +#### Options + +These properties are accepted in the options object. + +##### combine + +Specifies if overlapping & adjacent ranges should be combined, defaults to `false`. +When `true`, ranges will be combined and returned as if they were specified that +way in the header. + + + +```js +parseRange(100, 'bytes=50-55,0-10,5-10,56-60', { combine: true }) +// => [ +// { start: 0, end: 10 }, +// { start: 50, end: 60 } +// ] +``` + +## License + +[MIT](LICENSE) + +[coveralls-image]: https://badgen.net/coveralls/c/github/jshttp/range-parser/master +[coveralls-url]: https://coveralls.io/r/jshttp/range-parser?branch=master +[node-image]: https://badgen.net/npm/node/range-parser +[node-url]: https://nodejs.org/en/download +[npm-downloads-image]: https://badgen.net/npm/dm/range-parser +[npm-url]: https://npmjs.org/package/range-parser +[npm-version-image]: https://badgen.net/npm/v/range-parser +[travis-image]: https://badgen.net/travis/jshttp/range-parser/master +[travis-url]: https://travis-ci.org/jshttp/range-parser diff --git a/node_modules/range-parser/index.js b/node_modules/range-parser/index.js new file mode 100644 index 000000000..b7dc5c0f1 --- /dev/null +++ b/node_modules/range-parser/index.js @@ -0,0 +1,162 @@ +/*! + * range-parser + * Copyright(c) 2012-2014 TJ Holowaychuk + * Copyright(c) 2015-2016 Douglas Christopher Wilson + * MIT Licensed + */ + +'use strict' + +/** + * Module exports. + * @public + */ + +module.exports = rangeParser + +/** + * Parse "Range" header `str` relative to the given file `size`. + * + * @param {Number} size + * @param {String} str + * @param {Object} [options] + * @return {Array} + * @public + */ + +function rangeParser (size, str, options) { + if (typeof str !== 'string') { + throw new TypeError('argument str must be a string') + } + + var index = str.indexOf('=') + + if (index === -1) { + return -2 + } + + // split the range string + var arr = str.slice(index + 1).split(',') + var ranges = [] + + // add ranges type + ranges.type = str.slice(0, index) + + // parse all ranges + for (var i = 0; i < arr.length; i++) { + var range = arr[i].split('-') + var start = parseInt(range[0], 10) + var end = parseInt(range[1], 10) + + // -nnn + if (isNaN(start)) { + start = size - end + end = size - 1 + // nnn- + } else if (isNaN(end)) { + end = size - 1 + } + + // limit last-byte-pos to current length + if (end > size - 1) { + end = size - 1 + } + + // invalid or unsatisifiable + if (isNaN(start) || isNaN(end) || start > end || start < 0) { + continue + } + + // add range + ranges.push({ + start: start, + end: end + }) + } + + if (ranges.length < 1) { + // unsatisifiable + return -1 + } + + return options && options.combine + ? combineRanges(ranges) + : ranges +} + +/** + * Combine overlapping & adjacent ranges. + * @private + */ + +function combineRanges (ranges) { + var ordered = ranges.map(mapWithIndex).sort(sortByRangeStart) + + for (var j = 0, i = 1; i < ordered.length; i++) { + var range = ordered[i] + var current = ordered[j] + + if (range.start > current.end + 1) { + // next range + ordered[++j] = range + } else if (range.end > current.end) { + // extend range + current.end = range.end + current.index = Math.min(current.index, range.index) + } + } + + // trim ordered array + ordered.length = j + 1 + + // generate combined range + var combined = ordered.sort(sortByRangeIndex).map(mapWithoutIndex) + + // copy ranges type + combined.type = ranges.type + + return combined +} + +/** + * Map function to add index value to ranges. + * @private + */ + +function mapWithIndex (range, index) { + return { + start: range.start, + end: range.end, + index: index + } +} + +/** + * Map function to remove index value from ranges. + * @private + */ + +function mapWithoutIndex (range) { + return { + start: range.start, + end: range.end + } +} + +/** + * Sort function to sort ranges by index. + * @private + */ + +function sortByRangeIndex (a, b) { + return a.index - b.index +} + +/** + * Sort function to sort ranges by start position. + * @private + */ + +function sortByRangeStart (a, b) { + return a.start - b.start +} diff --git a/node_modules/range-parser/package.json b/node_modules/range-parser/package.json new file mode 100644 index 000000000..abea6d852 --- /dev/null +++ b/node_modules/range-parser/package.json @@ -0,0 +1,44 @@ +{ + "name": "range-parser", + "author": "TJ Holowaychuk (http://tjholowaychuk.com)", + "description": "Range header field string parser", + "version": "1.2.1", + "contributors": [ + "Douglas Christopher Wilson ", + "James Wyatt Cready ", + "Jonathan Ong (http://jongleberry.com)" + ], + "license": "MIT", + "keywords": [ + "range", + "parser", + "http" + ], + "repository": "jshttp/range-parser", + "devDependencies": { + "deep-equal": "1.0.1", + "eslint": "5.16.0", + "eslint-config-standard": "12.0.0", + "eslint-plugin-markdown": "1.0.0", + "eslint-plugin-import": "2.17.2", + "eslint-plugin-node": "8.0.1", + "eslint-plugin-promise": "4.1.1", + "eslint-plugin-standard": "4.0.0", + "mocha": "6.1.4", + "nyc": "14.1.1" + }, + "files": [ + "HISTORY.md", + "LICENSE", + "index.js" + ], + "engines": { + "node": ">= 0.6" + }, + "scripts": { + "lint": "eslint --plugin markdown --ext js,md .", + "test": "mocha --reporter spec", + "test-cov": "nyc --reporter=html --reporter=text npm test", + "test-travis": "nyc --reporter=text npm test" + } +} diff --git a/node_modules/raw-body/HISTORY.md b/node_modules/raw-body/HISTORY.md new file mode 100644 index 000000000..0b6b83739 --- /dev/null +++ b/node_modules/raw-body/HISTORY.md @@ -0,0 +1,303 @@ +2.5.1 / 2022-02-28 +================== + + * Fix error on early async hooks implementations + +2.5.0 / 2022-02-21 +================== + + * Prevent loss of async hooks context + * Prevent hanging when stream is not readable + * deps: http-errors@2.0.0 + - deps: depd@2.0.0 + - deps: statuses@2.0.1 + +2.4.3 / 2022-02-14 +================== + + * deps: bytes@3.1.2 + +2.4.2 / 2021-11-16 +================== + + * deps: bytes@3.1.1 + * deps: http-errors@1.8.1 + - deps: setprototypeof@1.2.0 + - deps: toidentifier@1.0.1 + +2.4.1 / 2019-06-25 +================== + + * deps: http-errors@1.7.3 + - deps: inherits@2.0.4 + +2.4.0 / 2019-04-17 +================== + + * deps: bytes@3.1.0 + - Add petabyte (`pb`) support + * deps: http-errors@1.7.2 + - Set constructor name when possible + - deps: setprototypeof@1.1.1 + - deps: statuses@'>= 1.5.0 < 2' + * deps: iconv-lite@0.4.24 + - Added encoding MIK + +2.3.3 / 2018-05-08 +================== + + * deps: http-errors@1.6.3 + - deps: depd@~1.1.2 + - deps: setprototypeof@1.1.0 + - deps: statuses@'>= 1.3.1 < 2' + * deps: iconv-lite@0.4.23 + - Fix loading encoding with year appended + - Fix deprecation warnings on Node.js 10+ + +2.3.2 / 2017-09-09 +================== + + * deps: iconv-lite@0.4.19 + - Fix ISO-8859-1 regression + - Update Windows-1255 + +2.3.1 / 2017-09-07 +================== + + * deps: bytes@3.0.0 + * deps: http-errors@1.6.2 + - deps: depd@1.1.1 + * perf: skip buffer decoding on overage chunk + +2.3.0 / 2017-08-04 +================== + + * Add TypeScript definitions + * Use `http-errors` for standard emitted errors + * deps: bytes@2.5.0 + * deps: iconv-lite@0.4.18 + - Add support for React Native + - Add a warning if not loaded as utf-8 + - Fix CESU-8 decoding in Node.js 8 + - Improve speed of ISO-8859-1 encoding + +2.2.0 / 2017-01-02 +================== + + * deps: iconv-lite@0.4.15 + - Added encoding MS-31J + - Added encoding MS-932 + - Added encoding MS-936 + - Added encoding MS-949 + - Added encoding MS-950 + - Fix GBK/GB18030 handling of Euro character + +2.1.7 / 2016-06-19 +================== + + * deps: bytes@2.4.0 + * perf: remove double-cleanup on happy path + +2.1.6 / 2016-03-07 +================== + + * deps: bytes@2.3.0 + - Drop partial bytes on all parsed units + - Fix parsing byte string that looks like hex + +2.1.5 / 2015-11-30 +================== + + * deps: bytes@2.2.0 + * deps: iconv-lite@0.4.13 + +2.1.4 / 2015-09-27 +================== + + * Fix masking critical errors from `iconv-lite` + * deps: iconv-lite@0.4.12 + - Fix CESU-8 decoding in Node.js 4.x + +2.1.3 / 2015-09-12 +================== + + * Fix sync callback when attaching data listener causes sync read + - Node.js 0.10 compatibility issue + +2.1.2 / 2015-07-05 +================== + + * Fix error stack traces to skip `makeError` + * deps: iconv-lite@0.4.11 + - Add encoding CESU-8 + +2.1.1 / 2015-06-14 +================== + + * Use `unpipe` module for unpiping requests + +2.1.0 / 2015-05-28 +================== + + * deps: iconv-lite@0.4.10 + - Improved UTF-16 endianness detection + - Leading BOM is now removed when decoding + - The encoding UTF-16 without BOM now defaults to UTF-16LE when detection fails + +2.0.2 / 2015-05-21 +================== + + * deps: bytes@2.1.0 + - Slight optimizations + +2.0.1 / 2015-05-10 +================== + + * Fix a false-positive when unpiping in Node.js 0.8 + +2.0.0 / 2015-05-08 +================== + + * Return a promise without callback instead of thunk + * deps: bytes@2.0.1 + - units no longer case sensitive when parsing + +1.3.4 / 2015-04-15 +================== + + * Fix hanging callback if request aborts during read + * deps: iconv-lite@0.4.8 + - Add encoding alias UNICODE-1-1-UTF-7 + +1.3.3 / 2015-02-08 +================== + + * deps: iconv-lite@0.4.7 + - Gracefully support enumerables on `Object.prototype` + +1.3.2 / 2015-01-20 +================== + + * deps: iconv-lite@0.4.6 + - Fix rare aliases of single-byte encodings + +1.3.1 / 2014-11-21 +================== + + * deps: iconv-lite@0.4.5 + - Fix Windows-31J and X-SJIS encoding support + +1.3.0 / 2014-07-20 +================== + + * Fully unpipe the stream on error + - Fixes `Cannot switch to old mode now` error on Node.js 0.10+ + +1.2.3 / 2014-07-20 +================== + + * deps: iconv-lite@0.4.4 + - Added encoding UTF-7 + +1.2.2 / 2014-06-19 +================== + + * Send invalid encoding error to callback + +1.2.1 / 2014-06-15 +================== + + * deps: iconv-lite@0.4.3 + - Added encodings UTF-16BE and UTF-16 with BOM + +1.2.0 / 2014-06-13 +================== + + * Passing string as `options` interpreted as encoding + * Support all encodings from `iconv-lite` + +1.1.7 / 2014-06-12 +================== + + * use `string_decoder` module from npm + +1.1.6 / 2014-05-27 +================== + + * check encoding for old streams1 + * support node.js < 0.10.6 + +1.1.5 / 2014-05-14 +================== + + * bump bytes + +1.1.4 / 2014-04-19 +================== + + * allow true as an option + * bump bytes + +1.1.3 / 2014-03-02 +================== + + * fix case when length=null + +1.1.2 / 2013-12-01 +================== + + * be less strict on state.encoding check + +1.1.1 / 2013-11-27 +================== + + * add engines + +1.1.0 / 2013-11-27 +================== + + * add err.statusCode and err.type + * allow for encoding option to be true + * pause the stream instead of dumping on error + * throw if the stream's encoding is set + +1.0.1 / 2013-11-19 +================== + + * dont support streams1, throw if dev set encoding + +1.0.0 / 2013-11-17 +================== + + * rename `expected` option to `length` + +0.2.0 / 2013-11-15 +================== + + * republish + +0.1.1 / 2013-11-15 +================== + + * use bytes + +0.1.0 / 2013-11-11 +================== + + * generator support + +0.0.3 / 2013-10-10 +================== + + * update repo + +0.0.2 / 2013-09-14 +================== + + * dump stream on bad headers + * listen to events after defining received and buffers + +0.0.1 / 2013-09-14 +================== + + * Initial release diff --git a/node_modules/raw-body/LICENSE b/node_modules/raw-body/LICENSE new file mode 100644 index 000000000..1029a7a7c --- /dev/null +++ b/node_modules/raw-body/LICENSE @@ -0,0 +1,22 @@ +The MIT License (MIT) + +Copyright (c) 2013-2014 Jonathan Ong +Copyright (c) 2014-2022 Douglas Christopher Wilson + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/node_modules/raw-body/README.md b/node_modules/raw-body/README.md new file mode 100644 index 000000000..695c66073 --- /dev/null +++ b/node_modules/raw-body/README.md @@ -0,0 +1,223 @@ +# raw-body + +[![NPM Version][npm-image]][npm-url] +[![NPM Downloads][downloads-image]][downloads-url] +[![Node.js Version][node-version-image]][node-version-url] +[![Build status][github-actions-ci-image]][github-actions-ci-url] +[![Test coverage][coveralls-image]][coveralls-url] + +Gets the entire buffer of a stream either as a `Buffer` or a string. +Validates the stream's length against an expected length and maximum limit. +Ideal for parsing request bodies. + +## Install + +This is a [Node.js](https://nodejs.org/en/) module available through the +[npm registry](https://www.npmjs.com/). Installation is done using the +[`npm install` command](https://docs.npmjs.com/getting-started/installing-npm-packages-locally): + +```sh +$ npm install raw-body +``` + +### TypeScript + +This module includes a [TypeScript](https://www.typescriptlang.org/) +declaration file to enable auto complete in compatible editors and type +information for TypeScript projects. This module depends on the Node.js +types, so install `@types/node`: + +```sh +$ npm install @types/node +``` + +## API + +```js +var getRawBody = require('raw-body') +``` + +### getRawBody(stream, [options], [callback]) + +**Returns a promise if no callback specified and global `Promise` exists.** + +Options: + +- `length` - The length of the stream. + If the contents of the stream do not add up to this length, + an `400` error code is returned. +- `limit` - The byte limit of the body. + This is the number of bytes or any string format supported by + [bytes](https://www.npmjs.com/package/bytes), + for example `1000`, `'500kb'` or `'3mb'`. + If the body ends up being larger than this limit, + a `413` error code is returned. +- `encoding` - The encoding to use to decode the body into a string. + By default, a `Buffer` instance will be returned when no encoding is specified. + Most likely, you want `utf-8`, so setting `encoding` to `true` will decode as `utf-8`. + You can use any type of encoding supported by [iconv-lite](https://www.npmjs.org/package/iconv-lite#readme). + +You can also pass a string in place of options to just specify the encoding. + +If an error occurs, the stream will be paused, everything unpiped, +and you are responsible for correctly disposing the stream. +For HTTP requests, you may need to finish consuming the stream if +you want to keep the socket open for future requests. For streams +that use file descriptors, you should `stream.destroy()` or +`stream.close()` to prevent leaks. + +## Errors + +This module creates errors depending on the error condition during reading. +The error may be an error from the underlying Node.js implementation, but is +otherwise an error created by this module, which has the following attributes: + + * `limit` - the limit in bytes + * `length` and `expected` - the expected length of the stream + * `received` - the received bytes + * `encoding` - the invalid encoding + * `status` and `statusCode` - the corresponding status code for the error + * `type` - the error type + +### Types + +The errors from this module have a `type` property which allows for the programmatic +determination of the type of error returned. + +#### encoding.unsupported + +This error will occur when the `encoding` option is specified, but the value does +not map to an encoding supported by the [iconv-lite](https://www.npmjs.org/package/iconv-lite#readme) +module. + +#### entity.too.large + +This error will occur when the `limit` option is specified, but the stream has +an entity that is larger. + +#### request.aborted + +This error will occur when the request stream is aborted by the client before +reading the body has finished. + +#### request.size.invalid + +This error will occur when the `length` option is specified, but the stream has +emitted more bytes. + +#### stream.encoding.set + +This error will occur when the given stream has an encoding set on it, making it +a decoded stream. The stream should not have an encoding set and is expected to +emit `Buffer` objects. + +#### stream.not.readable + +This error will occur when the given stream is not readable. + +## Examples + +### Simple Express example + +```js +var contentType = require('content-type') +var express = require('express') +var getRawBody = require('raw-body') + +var app = express() + +app.use(function (req, res, next) { + getRawBody(req, { + length: req.headers['content-length'], + limit: '1mb', + encoding: contentType.parse(req).parameters.charset + }, function (err, string) { + if (err) return next(err) + req.text = string + next() + }) +}) + +// now access req.text +``` + +### Simple Koa example + +```js +var contentType = require('content-type') +var getRawBody = require('raw-body') +var koa = require('koa') + +var app = koa() + +app.use(function * (next) { + this.text = yield getRawBody(this.req, { + length: this.req.headers['content-length'], + limit: '1mb', + encoding: contentType.parse(this.req).parameters.charset + }) + yield next +}) + +// now access this.text +``` + +### Using as a promise + +To use this library as a promise, simply omit the `callback` and a promise is +returned, provided that a global `Promise` is defined. + +```js +var getRawBody = require('raw-body') +var http = require('http') + +var server = http.createServer(function (req, res) { + getRawBody(req) + .then(function (buf) { + res.statusCode = 200 + res.end(buf.length + ' bytes submitted') + }) + .catch(function (err) { + res.statusCode = 500 + res.end(err.message) + }) +}) + +server.listen(3000) +``` + +### Using with TypeScript + +```ts +import * as getRawBody from 'raw-body'; +import * as http from 'http'; + +const server = http.createServer((req, res) => { + getRawBody(req) + .then((buf) => { + res.statusCode = 200; + res.end(buf.length + ' bytes submitted'); + }) + .catch((err) => { + res.statusCode = err.statusCode; + res.end(err.message); + }); +}); + +server.listen(3000); +``` + +## License + +[MIT](LICENSE) + +[npm-image]: https://img.shields.io/npm/v/raw-body.svg +[npm-url]: https://npmjs.org/package/raw-body +[node-version-image]: https://img.shields.io/node/v/raw-body.svg +[node-version-url]: https://nodejs.org/en/download/ +[coveralls-image]: https://img.shields.io/coveralls/stream-utils/raw-body/master.svg +[coveralls-url]: https://coveralls.io/r/stream-utils/raw-body?branch=master +[downloads-image]: https://img.shields.io/npm/dm/raw-body.svg +[downloads-url]: https://npmjs.org/package/raw-body +[github-actions-ci-image]: https://img.shields.io/github/workflow/status/stream-utils/raw-body/ci/master?label=ci +[github-actions-ci-url]: https://github.com/jshttp/stream-utils/raw-body?query=workflow%3Aci diff --git a/node_modules/raw-body/SECURITY.md b/node_modules/raw-body/SECURITY.md new file mode 100644 index 000000000..2421efc4b --- /dev/null +++ b/node_modules/raw-body/SECURITY.md @@ -0,0 +1,24 @@ +# Security Policies and Procedures + +## Reporting a Bug + +The `raw-body` team and community take all security bugs seriously. Thank you +for improving the security of Express. We appreciate your efforts and +responsible disclosure and will make every effort to acknowledge your +contributions. + +Report security bugs by emailing the current owners of `raw-body`. This information +can be found in the npm registry using the command `npm owner ls raw-body`. +If unsure or unable to get the information from the above, open an issue +in the [project issue tracker](https://github.com/stream-utils/raw-body/issues) +asking for the current contact information. + +To ensure the timely response to your report, please ensure that the entirety +of the report is contained within the email body and not solely behind a web +link or an attachment. + +At least one owner will acknowledge your email within 48 hours, and will send a +more detailed response within 48 hours indicating the next steps in handling +your report. After the initial reply to your report, the owners will +endeavor to keep you informed of the progress towards a fix and full +announcement, and may ask for additional information or guidance. diff --git a/node_modules/raw-body/index.d.ts b/node_modules/raw-body/index.d.ts new file mode 100644 index 000000000..dcbbebd4c --- /dev/null +++ b/node_modules/raw-body/index.d.ts @@ -0,0 +1,87 @@ +import { Readable } from 'stream'; + +declare namespace getRawBody { + export type Encoding = string | true; + + export interface Options { + /** + * The expected length of the stream. + */ + length?: number | string | null; + /** + * The byte limit of the body. This is the number of bytes or any string + * format supported by `bytes`, for example `1000`, `'500kb'` or `'3mb'`. + */ + limit?: number | string | null; + /** + * The encoding to use to decode the body into a string. By default, a + * `Buffer` instance will be returned when no encoding is specified. Most + * likely, you want `utf-8`, so setting encoding to `true` will decode as + * `utf-8`. You can use any type of encoding supported by `iconv-lite`. + */ + encoding?: Encoding | null; + } + + export interface RawBodyError extends Error { + /** + * The limit in bytes. + */ + limit?: number; + /** + * The expected length of the stream. + */ + length?: number; + expected?: number; + /** + * The received bytes. + */ + received?: number; + /** + * The encoding. + */ + encoding?: string; + /** + * The corresponding status code for the error. + */ + status: number; + statusCode: number; + /** + * The error type. + */ + type: string; + } +} + +/** + * Gets the entire buffer of a stream either as a `Buffer` or a string. + * Validates the stream's length against an expected length and maximum + * limit. Ideal for parsing request bodies. + */ +declare function getRawBody( + stream: Readable, + callback: (err: getRawBody.RawBodyError, body: Buffer) => void +): void; + +declare function getRawBody( + stream: Readable, + options: (getRawBody.Options & { encoding: getRawBody.Encoding }) | getRawBody.Encoding, + callback: (err: getRawBody.RawBodyError, body: string) => void +): void; + +declare function getRawBody( + stream: Readable, + options: getRawBody.Options, + callback: (err: getRawBody.RawBodyError, body: Buffer) => void +): void; + +declare function getRawBody( + stream: Readable, + options: (getRawBody.Options & { encoding: getRawBody.Encoding }) | getRawBody.Encoding +): Promise; + +declare function getRawBody( + stream: Readable, + options?: getRawBody.Options +): Promise; + +export = getRawBody; diff --git a/node_modules/raw-body/index.js b/node_modules/raw-body/index.js new file mode 100644 index 000000000..a8f537f38 --- /dev/null +++ b/node_modules/raw-body/index.js @@ -0,0 +1,329 @@ +/*! + * raw-body + * Copyright(c) 2013-2014 Jonathan Ong + * Copyright(c) 2014-2022 Douglas Christopher Wilson + * MIT Licensed + */ + +'use strict' + +/** + * Module dependencies. + * @private + */ + +var asyncHooks = tryRequireAsyncHooks() +var bytes = require('bytes') +var createError = require('http-errors') +var iconv = require('iconv-lite') +var unpipe = require('unpipe') + +/** + * Module exports. + * @public + */ + +module.exports = getRawBody + +/** + * Module variables. + * @private + */ + +var ICONV_ENCODING_MESSAGE_REGEXP = /^Encoding not recognized: / + +/** + * Get the decoder for a given encoding. + * + * @param {string} encoding + * @private + */ + +function getDecoder (encoding) { + if (!encoding) return null + + try { + return iconv.getDecoder(encoding) + } catch (e) { + // error getting decoder + if (!ICONV_ENCODING_MESSAGE_REGEXP.test(e.message)) throw e + + // the encoding was not found + throw createError(415, 'specified encoding unsupported', { + encoding: encoding, + type: 'encoding.unsupported' + }) + } +} + +/** + * Get the raw body of a stream (typically HTTP). + * + * @param {object} stream + * @param {object|string|function} [options] + * @param {function} [callback] + * @public + */ + +function getRawBody (stream, options, callback) { + var done = callback + var opts = options || {} + + if (options === true || typeof options === 'string') { + // short cut for encoding + opts = { + encoding: options + } + } + + if (typeof options === 'function') { + done = options + opts = {} + } + + // validate callback is a function, if provided + if (done !== undefined && typeof done !== 'function') { + throw new TypeError('argument callback must be a function') + } + + // require the callback without promises + if (!done && !global.Promise) { + throw new TypeError('argument callback is required') + } + + // get encoding + var encoding = opts.encoding !== true + ? opts.encoding + : 'utf-8' + + // convert the limit to an integer + var limit = bytes.parse(opts.limit) + + // convert the expected length to an integer + var length = opts.length != null && !isNaN(opts.length) + ? parseInt(opts.length, 10) + : null + + if (done) { + // classic callback style + return readStream(stream, encoding, length, limit, wrap(done)) + } + + return new Promise(function executor (resolve, reject) { + readStream(stream, encoding, length, limit, function onRead (err, buf) { + if (err) return reject(err) + resolve(buf) + }) + }) +} + +/** + * Halt a stream. + * + * @param {Object} stream + * @private + */ + +function halt (stream) { + // unpipe everything from the stream + unpipe(stream) + + // pause stream + if (typeof stream.pause === 'function') { + stream.pause() + } +} + +/** + * Read the data from the stream. + * + * @param {object} stream + * @param {string} encoding + * @param {number} length + * @param {number} limit + * @param {function} callback + * @public + */ + +function readStream (stream, encoding, length, limit, callback) { + var complete = false + var sync = true + + // check the length and limit options. + // note: we intentionally leave the stream paused, + // so users should handle the stream themselves. + if (limit !== null && length !== null && length > limit) { + return done(createError(413, 'request entity too large', { + expected: length, + length: length, + limit: limit, + type: 'entity.too.large' + })) + } + + // streams1: assert request encoding is buffer. + // streams2+: assert the stream encoding is buffer. + // stream._decoder: streams1 + // state.encoding: streams2 + // state.decoder: streams2, specifically < 0.10.6 + var state = stream._readableState + if (stream._decoder || (state && (state.encoding || state.decoder))) { + // developer error + return done(createError(500, 'stream encoding should not be set', { + type: 'stream.encoding.set' + })) + } + + if (typeof stream.readable !== 'undefined' && !stream.readable) { + return done(createError(500, 'stream is not readable', { + type: 'stream.not.readable' + })) + } + + var received = 0 + var decoder + + try { + decoder = getDecoder(encoding) + } catch (err) { + return done(err) + } + + var buffer = decoder + ? '' + : [] + + // attach listeners + stream.on('aborted', onAborted) + stream.on('close', cleanup) + stream.on('data', onData) + stream.on('end', onEnd) + stream.on('error', onEnd) + + // mark sync section complete + sync = false + + function done () { + var args = new Array(arguments.length) + + // copy arguments + for (var i = 0; i < args.length; i++) { + args[i] = arguments[i] + } + + // mark complete + complete = true + + if (sync) { + process.nextTick(invokeCallback) + } else { + invokeCallback() + } + + function invokeCallback () { + cleanup() + + if (args[0]) { + // halt the stream on error + halt(stream) + } + + callback.apply(null, args) + } + } + + function onAborted () { + if (complete) return + + done(createError(400, 'request aborted', { + code: 'ECONNABORTED', + expected: length, + length: length, + received: received, + type: 'request.aborted' + })) + } + + function onData (chunk) { + if (complete) return + + received += chunk.length + + if (limit !== null && received > limit) { + done(createError(413, 'request entity too large', { + limit: limit, + received: received, + type: 'entity.too.large' + })) + } else if (decoder) { + buffer += decoder.write(chunk) + } else { + buffer.push(chunk) + } + } + + function onEnd (err) { + if (complete) return + if (err) return done(err) + + if (length !== null && received !== length) { + done(createError(400, 'request size did not match content length', { + expected: length, + length: length, + received: received, + type: 'request.size.invalid' + })) + } else { + var string = decoder + ? buffer + (decoder.end() || '') + : Buffer.concat(buffer) + done(null, string) + } + } + + function cleanup () { + buffer = null + + stream.removeListener('aborted', onAborted) + stream.removeListener('data', onData) + stream.removeListener('end', onEnd) + stream.removeListener('error', onEnd) + stream.removeListener('close', cleanup) + } +} + +/** + * Try to require async_hooks + * @private + */ + +function tryRequireAsyncHooks () { + try { + return require('async_hooks') + } catch (e) { + return {} + } +} + +/** + * Wrap function with async resource, if possible. + * AsyncResource.bind static method backported. + * @private + */ + +function wrap (fn) { + var res + + // create anonymous resource + if (asyncHooks.AsyncResource) { + res = new asyncHooks.AsyncResource(fn.name || 'bound-anonymous-fn') + } + + // incompatible node.js + if (!res || !res.runInAsyncScope) { + return fn + } + + // return bound function + return res.runInAsyncScope.bind(res, fn, null) +} diff --git a/node_modules/raw-body/package.json b/node_modules/raw-body/package.json new file mode 100644 index 000000000..50fc90ad4 --- /dev/null +++ b/node_modules/raw-body/package.json @@ -0,0 +1,49 @@ +{ + "name": "raw-body", + "description": "Get and validate the raw body of a readable stream.", + "version": "2.5.1", + "author": "Jonathan Ong (http://jongleberry.com)", + "contributors": [ + "Douglas Christopher Wilson ", + "Raynos " + ], + "license": "MIT", + "repository": "stream-utils/raw-body", + "dependencies": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "devDependencies": { + "bluebird": "3.7.2", + "eslint": "7.32.0", + "eslint-config-standard": "14.1.1", + "eslint-plugin-import": "2.25.4", + "eslint-plugin-markdown": "2.2.1", + "eslint-plugin-node": "11.1.0", + "eslint-plugin-promise": "5.2.0", + "eslint-plugin-standard": "4.1.0", + "mocha": "9.2.1", + "nyc": "15.1.0", + "readable-stream": "2.3.7", + "safe-buffer": "5.2.1" + }, + "engines": { + "node": ">= 0.8" + }, + "files": [ + "HISTORY.md", + "LICENSE", + "README.md", + "SECURITY.md", + "index.d.ts", + "index.js" + ], + "scripts": { + "lint": "eslint .", + "test": "mocha --trace-deprecation --reporter spec --bail --check-leaks test/", + "test-ci": "nyc --reporter=lcovonly --reporter=text npm test", + "test-cov": "nyc --reporter=html --reporter=text npm test" + } +} diff --git a/node_modules/safe-buffer/LICENSE b/node_modules/safe-buffer/LICENSE new file mode 100644 index 000000000..0c068ceec --- /dev/null +++ b/node_modules/safe-buffer/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Feross Aboukhadijeh + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/node_modules/safe-buffer/README.md b/node_modules/safe-buffer/README.md new file mode 100644 index 000000000..e9a81afd0 --- /dev/null +++ b/node_modules/safe-buffer/README.md @@ -0,0 +1,584 @@ +# safe-buffer [![travis][travis-image]][travis-url] [![npm][npm-image]][npm-url] [![downloads][downloads-image]][downloads-url] [![javascript style guide][standard-image]][standard-url] + +[travis-image]: https://img.shields.io/travis/feross/safe-buffer/master.svg +[travis-url]: https://travis-ci.org/feross/safe-buffer +[npm-image]: https://img.shields.io/npm/v/safe-buffer.svg +[npm-url]: https://npmjs.org/package/safe-buffer +[downloads-image]: https://img.shields.io/npm/dm/safe-buffer.svg +[downloads-url]: https://npmjs.org/package/safe-buffer +[standard-image]: https://img.shields.io/badge/code_style-standard-brightgreen.svg +[standard-url]: https://standardjs.com + +#### Safer Node.js Buffer API + +**Use the new Node.js Buffer APIs (`Buffer.from`, `Buffer.alloc`, +`Buffer.allocUnsafe`, `Buffer.allocUnsafeSlow`) in all versions of Node.js.** + +**Uses the built-in implementation when available.** + +## install + +``` +npm install safe-buffer +``` + +## usage + +The goal of this package is to provide a safe replacement for the node.js `Buffer`. + +It's a drop-in replacement for `Buffer`. You can use it by adding one `require` line to +the top of your node.js modules: + +```js +var Buffer = require('safe-buffer').Buffer + +// Existing buffer code will continue to work without issues: + +new Buffer('hey', 'utf8') +new Buffer([1, 2, 3], 'utf8') +new Buffer(obj) +new Buffer(16) // create an uninitialized buffer (potentially unsafe) + +// But you can use these new explicit APIs to make clear what you want: + +Buffer.from('hey', 'utf8') // convert from many types to a Buffer +Buffer.alloc(16) // create a zero-filled buffer (safe) +Buffer.allocUnsafe(16) // create an uninitialized buffer (potentially unsafe) +``` + +## api + +### Class Method: Buffer.from(array) + + +* `array` {Array} + +Allocates a new `Buffer` using an `array` of octets. + +```js +const buf = Buffer.from([0x62,0x75,0x66,0x66,0x65,0x72]); + // creates a new Buffer containing ASCII bytes + // ['b','u','f','f','e','r'] +``` + +A `TypeError` will be thrown if `array` is not an `Array`. + +### Class Method: Buffer.from(arrayBuffer[, byteOffset[, length]]) + + +* `arrayBuffer` {ArrayBuffer} The `.buffer` property of a `TypedArray` or + a `new ArrayBuffer()` +* `byteOffset` {Number} Default: `0` +* `length` {Number} Default: `arrayBuffer.length - byteOffset` + +When passed a reference to the `.buffer` property of a `TypedArray` instance, +the newly created `Buffer` will share the same allocated memory as the +TypedArray. + +```js +const arr = new Uint16Array(2); +arr[0] = 5000; +arr[1] = 4000; + +const buf = Buffer.from(arr.buffer); // shares the memory with arr; + +console.log(buf); + // Prints: + +// changing the TypedArray changes the Buffer also +arr[1] = 6000; + +console.log(buf); + // Prints: +``` + +The optional `byteOffset` and `length` arguments specify a memory range within +the `arrayBuffer` that will be shared by the `Buffer`. + +```js +const ab = new ArrayBuffer(10); +const buf = Buffer.from(ab, 0, 2); +console.log(buf.length); + // Prints: 2 +``` + +A `TypeError` will be thrown if `arrayBuffer` is not an `ArrayBuffer`. + +### Class Method: Buffer.from(buffer) + + +* `buffer` {Buffer} + +Copies the passed `buffer` data onto a new `Buffer` instance. + +```js +const buf1 = Buffer.from('buffer'); +const buf2 = Buffer.from(buf1); + +buf1[0] = 0x61; +console.log(buf1.toString()); + // 'auffer' +console.log(buf2.toString()); + // 'buffer' (copy is not changed) +``` + +A `TypeError` will be thrown if `buffer` is not a `Buffer`. + +### Class Method: Buffer.from(str[, encoding]) + + +* `str` {String} String to encode. +* `encoding` {String} Encoding to use, Default: `'utf8'` + +Creates a new `Buffer` containing the given JavaScript string `str`. If +provided, the `encoding` parameter identifies the character encoding. +If not provided, `encoding` defaults to `'utf8'`. + +```js +const buf1 = Buffer.from('this is a tést'); +console.log(buf1.toString()); + // prints: this is a tést +console.log(buf1.toString('ascii')); + // prints: this is a tC)st + +const buf2 = Buffer.from('7468697320697320612074c3a97374', 'hex'); +console.log(buf2.toString()); + // prints: this is a tést +``` + +A `TypeError` will be thrown if `str` is not a string. + +### Class Method: Buffer.alloc(size[, fill[, encoding]]) + + +* `size` {Number} +* `fill` {Value} Default: `undefined` +* `encoding` {String} Default: `utf8` + +Allocates a new `Buffer` of `size` bytes. If `fill` is `undefined`, the +`Buffer` will be *zero-filled*. + +```js +const buf = Buffer.alloc(5); +console.log(buf); + // +``` + +The `size` must be less than or equal to the value of +`require('buffer').kMaxLength` (on 64-bit architectures, `kMaxLength` is +`(2^31)-1`). Otherwise, a [`RangeError`][] is thrown. A zero-length Buffer will +be created if a `size` less than or equal to 0 is specified. + +If `fill` is specified, the allocated `Buffer` will be initialized by calling +`buf.fill(fill)`. See [`buf.fill()`][] for more information. + +```js +const buf = Buffer.alloc(5, 'a'); +console.log(buf); + // +``` + +If both `fill` and `encoding` are specified, the allocated `Buffer` will be +initialized by calling `buf.fill(fill, encoding)`. For example: + +```js +const buf = Buffer.alloc(11, 'aGVsbG8gd29ybGQ=', 'base64'); +console.log(buf); + // +``` + +Calling `Buffer.alloc(size)` can be significantly slower than the alternative +`Buffer.allocUnsafe(size)` but ensures that the newly created `Buffer` instance +contents will *never contain sensitive data*. + +A `TypeError` will be thrown if `size` is not a number. + +### Class Method: Buffer.allocUnsafe(size) + + +* `size` {Number} + +Allocates a new *non-zero-filled* `Buffer` of `size` bytes. The `size` must +be less than or equal to the value of `require('buffer').kMaxLength` (on 64-bit +architectures, `kMaxLength` is `(2^31)-1`). Otherwise, a [`RangeError`][] is +thrown. A zero-length Buffer will be created if a `size` less than or equal to +0 is specified. + +The underlying memory for `Buffer` instances created in this way is *not +initialized*. The contents of the newly created `Buffer` are unknown and +*may contain sensitive data*. Use [`buf.fill(0)`][] to initialize such +`Buffer` instances to zeroes. + +```js +const buf = Buffer.allocUnsafe(5); +console.log(buf); + // + // (octets will be different, every time) +buf.fill(0); +console.log(buf); + // +``` + +A `TypeError` will be thrown if `size` is not a number. + +Note that the `Buffer` module pre-allocates an internal `Buffer` instance of +size `Buffer.poolSize` that is used as a pool for the fast allocation of new +`Buffer` instances created using `Buffer.allocUnsafe(size)` (and the deprecated +`new Buffer(size)` constructor) only when `size` is less than or equal to +`Buffer.poolSize >> 1` (floor of `Buffer.poolSize` divided by two). The default +value of `Buffer.poolSize` is `8192` but can be modified. + +Use of this pre-allocated internal memory pool is a key difference between +calling `Buffer.alloc(size, fill)` vs. `Buffer.allocUnsafe(size).fill(fill)`. +Specifically, `Buffer.alloc(size, fill)` will *never* use the internal Buffer +pool, while `Buffer.allocUnsafe(size).fill(fill)` *will* use the internal +Buffer pool if `size` is less than or equal to half `Buffer.poolSize`. The +difference is subtle but can be important when an application requires the +additional performance that `Buffer.allocUnsafe(size)` provides. + +### Class Method: Buffer.allocUnsafeSlow(size) + + +* `size` {Number} + +Allocates a new *non-zero-filled* and non-pooled `Buffer` of `size` bytes. The +`size` must be less than or equal to the value of +`require('buffer').kMaxLength` (on 64-bit architectures, `kMaxLength` is +`(2^31)-1`). Otherwise, a [`RangeError`][] is thrown. A zero-length Buffer will +be created if a `size` less than or equal to 0 is specified. + +The underlying memory for `Buffer` instances created in this way is *not +initialized*. The contents of the newly created `Buffer` are unknown and +*may contain sensitive data*. Use [`buf.fill(0)`][] to initialize such +`Buffer` instances to zeroes. + +When using `Buffer.allocUnsafe()` to allocate new `Buffer` instances, +allocations under 4KB are, by default, sliced from a single pre-allocated +`Buffer`. This allows applications to avoid the garbage collection overhead of +creating many individually allocated Buffers. This approach improves both +performance and memory usage by eliminating the need to track and cleanup as +many `Persistent` objects. + +However, in the case where a developer may need to retain a small chunk of +memory from a pool for an indeterminate amount of time, it may be appropriate +to create an un-pooled Buffer instance using `Buffer.allocUnsafeSlow()` then +copy out the relevant bits. + +```js +// need to keep around a few small chunks of memory +const store = []; + +socket.on('readable', () => { + const data = socket.read(); + // allocate for retained data + const sb = Buffer.allocUnsafeSlow(10); + // copy the data into the new allocation + data.copy(sb, 0, 0, 10); + store.push(sb); +}); +``` + +Use of `Buffer.allocUnsafeSlow()` should be used only as a last resort *after* +a developer has observed undue memory retention in their applications. + +A `TypeError` will be thrown if `size` is not a number. + +### All the Rest + +The rest of the `Buffer` API is exactly the same as in node.js. +[See the docs](https://nodejs.org/api/buffer.html). + + +## Related links + +- [Node.js issue: Buffer(number) is unsafe](https://github.com/nodejs/node/issues/4660) +- [Node.js Enhancement Proposal: Buffer.from/Buffer.alloc/Buffer.zalloc/Buffer() soft-deprecate](https://github.com/nodejs/node-eps/pull/4) + +## Why is `Buffer` unsafe? + +Today, the node.js `Buffer` constructor is overloaded to handle many different argument +types like `String`, `Array`, `Object`, `TypedArrayView` (`Uint8Array`, etc.), +`ArrayBuffer`, and also `Number`. + +The API is optimized for convenience: you can throw any type at it, and it will try to do +what you want. + +Because the Buffer constructor is so powerful, you often see code like this: + +```js +// Convert UTF-8 strings to hex +function toHex (str) { + return new Buffer(str).toString('hex') +} +``` + +***But what happens if `toHex` is called with a `Number` argument?*** + +### Remote Memory Disclosure + +If an attacker can make your program call the `Buffer` constructor with a `Number` +argument, then they can make it allocate uninitialized memory from the node.js process. +This could potentially disclose TLS private keys, user data, or database passwords. + +When the `Buffer` constructor is passed a `Number` argument, it returns an +**UNINITIALIZED** block of memory of the specified `size`. When you create a `Buffer` like +this, you **MUST** overwrite the contents before returning it to the user. + +From the [node.js docs](https://nodejs.org/api/buffer.html#buffer_new_buffer_size): + +> `new Buffer(size)` +> +> - `size` Number +> +> The underlying memory for `Buffer` instances created in this way is not initialized. +> **The contents of a newly created `Buffer` are unknown and could contain sensitive +> data.** Use `buf.fill(0)` to initialize a Buffer to zeroes. + +(Emphasis our own.) + +Whenever the programmer intended to create an uninitialized `Buffer` you often see code +like this: + +```js +var buf = new Buffer(16) + +// Immediately overwrite the uninitialized buffer with data from another buffer +for (var i = 0; i < buf.length; i++) { + buf[i] = otherBuf[i] +} +``` + + +### Would this ever be a problem in real code? + +Yes. It's surprisingly common to forget to check the type of your variables in a +dynamically-typed language like JavaScript. + +Usually the consequences of assuming the wrong type is that your program crashes with an +uncaught exception. But the failure mode for forgetting to check the type of arguments to +the `Buffer` constructor is more catastrophic. + +Here's an example of a vulnerable service that takes a JSON payload and converts it to +hex: + +```js +// Take a JSON payload {str: "some string"} and convert it to hex +var server = http.createServer(function (req, res) { + var data = '' + req.setEncoding('utf8') + req.on('data', function (chunk) { + data += chunk + }) + req.on('end', function () { + var body = JSON.parse(data) + res.end(new Buffer(body.str).toString('hex')) + }) +}) + +server.listen(8080) +``` + +In this example, an http client just has to send: + +```json +{ + "str": 1000 +} +``` + +and it will get back 1,000 bytes of uninitialized memory from the server. + +This is a very serious bug. It's similar in severity to the +[the Heartbleed bug](http://heartbleed.com/) that allowed disclosure of OpenSSL process +memory by remote attackers. + + +### Which real-world packages were vulnerable? + +#### [`bittorrent-dht`](https://www.npmjs.com/package/bittorrent-dht) + +[Mathias Buus](https://github.com/mafintosh) and I +([Feross Aboukhadijeh](http://feross.org/)) found this issue in one of our own packages, +[`bittorrent-dht`](https://www.npmjs.com/package/bittorrent-dht). The bug would allow +anyone on the internet to send a series of messages to a user of `bittorrent-dht` and get +them to reveal 20 bytes at a time of uninitialized memory from the node.js process. + +Here's +[the commit](https://github.com/feross/bittorrent-dht/commit/6c7da04025d5633699800a99ec3fbadf70ad35b8) +that fixed it. We released a new fixed version, created a +[Node Security Project disclosure](https://nodesecurity.io/advisories/68), and deprecated all +vulnerable versions on npm so users will get a warning to upgrade to a newer version. + +#### [`ws`](https://www.npmjs.com/package/ws) + +That got us wondering if there were other vulnerable packages. Sure enough, within a short +period of time, we found the same issue in [`ws`](https://www.npmjs.com/package/ws), the +most popular WebSocket implementation in node.js. + +If certain APIs were called with `Number` parameters instead of `String` or `Buffer` as +expected, then uninitialized server memory would be disclosed to the remote peer. + +These were the vulnerable methods: + +```js +socket.send(number) +socket.ping(number) +socket.pong(number) +``` + +Here's a vulnerable socket server with some echo functionality: + +```js +server.on('connection', function (socket) { + socket.on('message', function (message) { + message = JSON.parse(message) + if (message.type === 'echo') { + socket.send(message.data) // send back the user's message + } + }) +}) +``` + +`socket.send(number)` called on the server, will disclose server memory. + +Here's [the release](https://github.com/websockets/ws/releases/tag/1.0.1) where the issue +was fixed, with a more detailed explanation. Props to +[Arnout Kazemier](https://github.com/3rd-Eden) for the quick fix. Here's the +[Node Security Project disclosure](https://nodesecurity.io/advisories/67). + + +### What's the solution? + +It's important that node.js offers a fast way to get memory otherwise performance-critical +applications would needlessly get a lot slower. + +But we need a better way to *signal our intent* as programmers. **When we want +uninitialized memory, we should request it explicitly.** + +Sensitive functionality should not be packed into a developer-friendly API that loosely +accepts many different types. This type of API encourages the lazy practice of passing +variables in without checking the type very carefully. + +#### A new API: `Buffer.allocUnsafe(number)` + +The functionality of creating buffers with uninitialized memory should be part of another +API. We propose `Buffer.allocUnsafe(number)`. This way, it's not part of an API that +frequently gets user input of all sorts of different types passed into it. + +```js +var buf = Buffer.allocUnsafe(16) // careful, uninitialized memory! + +// Immediately overwrite the uninitialized buffer with data from another buffer +for (var i = 0; i < buf.length; i++) { + buf[i] = otherBuf[i] +} +``` + + +### How do we fix node.js core? + +We sent [a PR to node.js core](https://github.com/nodejs/node/pull/4514) (merged as +`semver-major`) which defends against one case: + +```js +var str = 16 +new Buffer(str, 'utf8') +``` + +In this situation, it's implied that the programmer intended the first argument to be a +string, since they passed an encoding as a second argument. Today, node.js will allocate +uninitialized memory in the case of `new Buffer(number, encoding)`, which is probably not +what the programmer intended. + +But this is only a partial solution, since if the programmer does `new Buffer(variable)` +(without an `encoding` parameter) there's no way to know what they intended. If `variable` +is sometimes a number, then uninitialized memory will sometimes be returned. + +### What's the real long-term fix? + +We could deprecate and remove `new Buffer(number)` and use `Buffer.allocUnsafe(number)` when +we need uninitialized memory. But that would break 1000s of packages. + +~~We believe the best solution is to:~~ + +~~1. Change `new Buffer(number)` to return safe, zeroed-out memory~~ + +~~2. Create a new API for creating uninitialized Buffers. We propose: `Buffer.allocUnsafe(number)`~~ + +#### Update + +We now support adding three new APIs: + +- `Buffer.from(value)` - convert from any type to a buffer +- `Buffer.alloc(size)` - create a zero-filled buffer +- `Buffer.allocUnsafe(size)` - create an uninitialized buffer with given size + +This solves the core problem that affected `ws` and `bittorrent-dht` which is +`Buffer(variable)` getting tricked into taking a number argument. + +This way, existing code continues working and the impact on the npm ecosystem will be +minimal. Over time, npm maintainers can migrate performance-critical code to use +`Buffer.allocUnsafe(number)` instead of `new Buffer(number)`. + + +### Conclusion + +We think there's a serious design issue with the `Buffer` API as it exists today. It +promotes insecure software by putting high-risk functionality into a convenient API +with friendly "developer ergonomics". + +This wasn't merely a theoretical exercise because we found the issue in some of the +most popular npm packages. + +Fortunately, there's an easy fix that can be applied today. Use `safe-buffer` in place of +`buffer`. + +```js +var Buffer = require('safe-buffer').Buffer +``` + +Eventually, we hope that node.js core can switch to this new, safer behavior. We believe +the impact on the ecosystem would be minimal since it's not a breaking change. +Well-maintained, popular packages would be updated to use `Buffer.alloc` quickly, while +older, insecure packages would magically become safe from this attack vector. + + +## links + +- [Node.js PR: buffer: throw if both length and enc are passed](https://github.com/nodejs/node/pull/4514) +- [Node Security Project disclosure for `ws`](https://nodesecurity.io/advisories/67) +- [Node Security Project disclosure for`bittorrent-dht`](https://nodesecurity.io/advisories/68) + + +## credit + +The original issues in `bittorrent-dht` +([disclosure](https://nodesecurity.io/advisories/68)) and +`ws` ([disclosure](https://nodesecurity.io/advisories/67)) were discovered by +[Mathias Buus](https://github.com/mafintosh) and +[Feross Aboukhadijeh](http://feross.org/). + +Thanks to [Adam Baldwin](https://github.com/evilpacket) for helping disclose these issues +and for his work running the [Node Security Project](https://nodesecurity.io/). + +Thanks to [John Hiesey](https://github.com/jhiesey) for proofreading this README and +auditing the code. + + +## license + +MIT. Copyright (C) [Feross Aboukhadijeh](http://feross.org) diff --git a/node_modules/safe-buffer/index.d.ts b/node_modules/safe-buffer/index.d.ts new file mode 100644 index 000000000..e9fed809a --- /dev/null +++ b/node_modules/safe-buffer/index.d.ts @@ -0,0 +1,187 @@ +declare module "safe-buffer" { + export class Buffer { + length: number + write(string: string, offset?: number, length?: number, encoding?: string): number; + toString(encoding?: string, start?: number, end?: number): string; + toJSON(): { type: 'Buffer', data: any[] }; + equals(otherBuffer: Buffer): boolean; + compare(otherBuffer: Buffer, targetStart?: number, targetEnd?: number, sourceStart?: number, sourceEnd?: number): number; + copy(targetBuffer: Buffer, targetStart?: number, sourceStart?: number, sourceEnd?: number): number; + slice(start?: number, end?: number): Buffer; + writeUIntLE(value: number, offset: number, byteLength: number, noAssert?: boolean): number; + writeUIntBE(value: number, offset: number, byteLength: number, noAssert?: boolean): number; + writeIntLE(value: number, offset: number, byteLength: number, noAssert?: boolean): number; + writeIntBE(value: number, offset: number, byteLength: number, noAssert?: boolean): number; + readUIntLE(offset: number, byteLength: number, noAssert?: boolean): number; + readUIntBE(offset: number, byteLength: number, noAssert?: boolean): number; + readIntLE(offset: number, byteLength: number, noAssert?: boolean): number; + readIntBE(offset: number, byteLength: number, noAssert?: boolean): number; + readUInt8(offset: number, noAssert?: boolean): number; + readUInt16LE(offset: number, noAssert?: boolean): number; + readUInt16BE(offset: number, noAssert?: boolean): number; + readUInt32LE(offset: number, noAssert?: boolean): number; + readUInt32BE(offset: number, noAssert?: boolean): number; + readInt8(offset: number, noAssert?: boolean): number; + readInt16LE(offset: number, noAssert?: boolean): number; + readInt16BE(offset: number, noAssert?: boolean): number; + readInt32LE(offset: number, noAssert?: boolean): number; + readInt32BE(offset: number, noAssert?: boolean): number; + readFloatLE(offset: number, noAssert?: boolean): number; + readFloatBE(offset: number, noAssert?: boolean): number; + readDoubleLE(offset: number, noAssert?: boolean): number; + readDoubleBE(offset: number, noAssert?: boolean): number; + swap16(): Buffer; + swap32(): Buffer; + swap64(): Buffer; + writeUInt8(value: number, offset: number, noAssert?: boolean): number; + writeUInt16LE(value: number, offset: number, noAssert?: boolean): number; + writeUInt16BE(value: number, offset: number, noAssert?: boolean): number; + writeUInt32LE(value: number, offset: number, noAssert?: boolean): number; + writeUInt32BE(value: number, offset: number, noAssert?: boolean): number; + writeInt8(value: number, offset: number, noAssert?: boolean): number; + writeInt16LE(value: number, offset: number, noAssert?: boolean): number; + writeInt16BE(value: number, offset: number, noAssert?: boolean): number; + writeInt32LE(value: number, offset: number, noAssert?: boolean): number; + writeInt32BE(value: number, offset: number, noAssert?: boolean): number; + writeFloatLE(value: number, offset: number, noAssert?: boolean): number; + writeFloatBE(value: number, offset: number, noAssert?: boolean): number; + writeDoubleLE(value: number, offset: number, noAssert?: boolean): number; + writeDoubleBE(value: number, offset: number, noAssert?: boolean): number; + fill(value: any, offset?: number, end?: number): this; + indexOf(value: string | number | Buffer, byteOffset?: number, encoding?: string): number; + lastIndexOf(value: string | number | Buffer, byteOffset?: number, encoding?: string): number; + includes(value: string | number | Buffer, byteOffset?: number, encoding?: string): boolean; + + /** + * Allocates a new buffer containing the given {str}. + * + * @param str String to store in buffer. + * @param encoding encoding to use, optional. Default is 'utf8' + */ + constructor (str: string, encoding?: string); + /** + * Allocates a new buffer of {size} octets. + * + * @param size count of octets to allocate. + */ + constructor (size: number); + /** + * Allocates a new buffer containing the given {array} of octets. + * + * @param array The octets to store. + */ + constructor (array: Uint8Array); + /** + * Produces a Buffer backed by the same allocated memory as + * the given {ArrayBuffer}. + * + * + * @param arrayBuffer The ArrayBuffer with which to share memory. + */ + constructor (arrayBuffer: ArrayBuffer); + /** + * Allocates a new buffer containing the given {array} of octets. + * + * @param array The octets to store. + */ + constructor (array: any[]); + /** + * Copies the passed {buffer} data onto a new {Buffer} instance. + * + * @param buffer The buffer to copy. + */ + constructor (buffer: Buffer); + prototype: Buffer; + /** + * Allocates a new Buffer using an {array} of octets. + * + * @param array + */ + static from(array: any[]): Buffer; + /** + * When passed a reference to the .buffer property of a TypedArray instance, + * the newly created Buffer will share the same allocated memory as the TypedArray. + * The optional {byteOffset} and {length} arguments specify a memory range + * within the {arrayBuffer} that will be shared by the Buffer. + * + * @param arrayBuffer The .buffer property of a TypedArray or a new ArrayBuffer() + * @param byteOffset + * @param length + */ + static from(arrayBuffer: ArrayBuffer, byteOffset?: number, length?: number): Buffer; + /** + * Copies the passed {buffer} data onto a new Buffer instance. + * + * @param buffer + */ + static from(buffer: Buffer): Buffer; + /** + * Creates a new Buffer containing the given JavaScript string {str}. + * If provided, the {encoding} parameter identifies the character encoding. + * If not provided, {encoding} defaults to 'utf8'. + * + * @param str + */ + static from(str: string, encoding?: string): Buffer; + /** + * Returns true if {obj} is a Buffer + * + * @param obj object to test. + */ + static isBuffer(obj: any): obj is Buffer; + /** + * Returns true if {encoding} is a valid encoding argument. + * Valid string encodings in Node 0.12: 'ascii'|'utf8'|'utf16le'|'ucs2'(alias of 'utf16le')|'base64'|'binary'(deprecated)|'hex' + * + * @param encoding string to test. + */ + static isEncoding(encoding: string): boolean; + /** + * Gives the actual byte length of a string. encoding defaults to 'utf8'. + * This is not the same as String.prototype.length since that returns the number of characters in a string. + * + * @param string string to test. + * @param encoding encoding used to evaluate (defaults to 'utf8') + */ + static byteLength(string: string, encoding?: string): number; + /** + * Returns a buffer which is the result of concatenating all the buffers in the list together. + * + * If the list has no items, or if the totalLength is 0, then it returns a zero-length buffer. + * If the list has exactly one item, then the first item of the list is returned. + * If the list has more than one item, then a new Buffer is created. + * + * @param list An array of Buffer objects to concatenate + * @param totalLength Total length of the buffers when concatenated. + * If totalLength is not provided, it is read from the buffers in the list. However, this adds an additional loop to the function, so it is faster to provide the length explicitly. + */ + static concat(list: Buffer[], totalLength?: number): Buffer; + /** + * The same as buf1.compare(buf2). + */ + static compare(buf1: Buffer, buf2: Buffer): number; + /** + * Allocates a new buffer of {size} octets. + * + * @param size count of octets to allocate. + * @param fill if specified, buffer will be initialized by calling buf.fill(fill). + * If parameter is omitted, buffer will be filled with zeros. + * @param encoding encoding used for call to buf.fill while initalizing + */ + static alloc(size: number, fill?: string | Buffer | number, encoding?: string): Buffer; + /** + * Allocates a new buffer of {size} octets, leaving memory not initialized, so the contents + * of the newly created Buffer are unknown and may contain sensitive data. + * + * @param size count of octets to allocate + */ + static allocUnsafe(size: number): Buffer; + /** + * Allocates a new non-pooled buffer of {size} octets, leaving memory not initialized, so the contents + * of the newly created Buffer are unknown and may contain sensitive data. + * + * @param size count of octets to allocate + */ + static allocUnsafeSlow(size: number): Buffer; + } +} \ No newline at end of file diff --git a/node_modules/safe-buffer/index.js b/node_modules/safe-buffer/index.js new file mode 100644 index 000000000..f8d3ec988 --- /dev/null +++ b/node_modules/safe-buffer/index.js @@ -0,0 +1,65 @@ +/*! safe-buffer. MIT License. Feross Aboukhadijeh */ +/* eslint-disable node/no-deprecated-api */ +var buffer = require('buffer') +var Buffer = buffer.Buffer + +// alternative to using Object.keys for old browsers +function copyProps (src, dst) { + for (var key in src) { + dst[key] = src[key] + } +} +if (Buffer.from && Buffer.alloc && Buffer.allocUnsafe && Buffer.allocUnsafeSlow) { + module.exports = buffer +} else { + // Copy properties from require('buffer') + copyProps(buffer, exports) + exports.Buffer = SafeBuffer +} + +function SafeBuffer (arg, encodingOrOffset, length) { + return Buffer(arg, encodingOrOffset, length) +} + +SafeBuffer.prototype = Object.create(Buffer.prototype) + +// Copy static methods from Buffer +copyProps(Buffer, SafeBuffer) + +SafeBuffer.from = function (arg, encodingOrOffset, length) { + if (typeof arg === 'number') { + throw new TypeError('Argument must not be a number') + } + return Buffer(arg, encodingOrOffset, length) +} + +SafeBuffer.alloc = function (size, fill, encoding) { + if (typeof size !== 'number') { + throw new TypeError('Argument must be a number') + } + var buf = Buffer(size) + if (fill !== undefined) { + if (typeof encoding === 'string') { + buf.fill(fill, encoding) + } else { + buf.fill(fill) + } + } else { + buf.fill(0) + } + return buf +} + +SafeBuffer.allocUnsafe = function (size) { + if (typeof size !== 'number') { + throw new TypeError('Argument must be a number') + } + return Buffer(size) +} + +SafeBuffer.allocUnsafeSlow = function (size) { + if (typeof size !== 'number') { + throw new TypeError('Argument must be a number') + } + return buffer.SlowBuffer(size) +} diff --git a/node_modules/safe-buffer/package.json b/node_modules/safe-buffer/package.json new file mode 100644 index 000000000..f2869e256 --- /dev/null +++ b/node_modules/safe-buffer/package.json @@ -0,0 +1,51 @@ +{ + "name": "safe-buffer", + "description": "Safer Node.js Buffer API", + "version": "5.2.1", + "author": { + "name": "Feross Aboukhadijeh", + "email": "feross@feross.org", + "url": "https://feross.org" + }, + "bugs": { + "url": "https://github.com/feross/safe-buffer/issues" + }, + "devDependencies": { + "standard": "*", + "tape": "^5.0.0" + }, + "homepage": "https://github.com/feross/safe-buffer", + "keywords": [ + "buffer", + "buffer allocate", + "node security", + "safe", + "safe-buffer", + "security", + "uninitialized" + ], + "license": "MIT", + "main": "index.js", + "types": "index.d.ts", + "repository": { + "type": "git", + "url": "git://github.com/feross/safe-buffer.git" + }, + "scripts": { + "test": "standard && tape test/*.js" + }, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] +} diff --git a/node_modules/safer-buffer/LICENSE b/node_modules/safer-buffer/LICENSE new file mode 100644 index 000000000..4fe9e6f10 --- /dev/null +++ b/node_modules/safer-buffer/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2018 Nikita Skovoroda + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/node_modules/safer-buffer/Porting-Buffer.md b/node_modules/safer-buffer/Porting-Buffer.md new file mode 100644 index 000000000..68d86bab0 --- /dev/null +++ b/node_modules/safer-buffer/Porting-Buffer.md @@ -0,0 +1,268 @@ +# Porting to the Buffer.from/Buffer.alloc API + + +## Overview + +- [Variant 1: Drop support for Node.js ≤ 4.4.x and 5.0.0 — 5.9.x.](#variant-1) (*recommended*) +- [Variant 2: Use a polyfill](#variant-2) +- [Variant 3: manual detection, with safeguards](#variant-3) + +### Finding problematic bits of code using grep + +Just run `grep -nrE '[^a-zA-Z](Slow)?Buffer\s*\(' --exclude-dir node_modules`. + +It will find all the potentially unsafe places in your own code (with some considerably unlikely +exceptions). + +### Finding problematic bits of code using Node.js 8 + +If you’re using Node.js ≥ 8.0.0 (which is recommended), Node.js exposes multiple options that help with finding the relevant pieces of code: + +- `--trace-warnings` will make Node.js show a stack trace for this warning and other warnings that are printed by Node.js. +- `--trace-deprecation` does the same thing, but only for deprecation warnings. +- `--pending-deprecation` will show more types of deprecation warnings. In particular, it will show the `Buffer()` deprecation warning, even on Node.js 8. + +You can set these flags using an environment variable: + +```console +$ export NODE_OPTIONS='--trace-warnings --pending-deprecation' +$ cat example.js +'use strict'; +const foo = new Buffer('foo'); +$ node example.js +(node:7147) [DEP0005] DeprecationWarning: The Buffer() and new Buffer() constructors are not recommended for use due to security and usability concerns. Please use the new Buffer.alloc(), Buffer.allocUnsafe(), or Buffer.from() construction methods instead. + at showFlaggedDeprecation (buffer.js:127:13) + at new Buffer (buffer.js:148:3) + at Object. (/path/to/example.js:2:13) + [... more stack trace lines ...] +``` + +### Finding problematic bits of code using linters + +Eslint rules [no-buffer-constructor](https://eslint.org/docs/rules/no-buffer-constructor) +or +[node/no-deprecated-api](https://github.com/mysticatea/eslint-plugin-node/blob/master/docs/rules/no-deprecated-api.md) +also find calls to deprecated `Buffer()` API. Those rules are included in some pre-sets. + +There is a drawback, though, that it doesn't always +[work correctly](https://github.com/chalker/safer-buffer#why-not-safe-buffer) when `Buffer` is +overriden e.g. with a polyfill, so recommended is a combination of this and some other method +described above. + + +## Variant 1: Drop support for Node.js ≤ 4.4.x and 5.0.0 — 5.9.x. + +This is the recommended solution nowadays that would imply only minimal overhead. + +The Node.js 5.x release line has been unsupported since July 2016, and the Node.js 4.x release line reaches its End of Life in April 2018 (→ [Schedule](https://github.com/nodejs/Release#release-schedule)). This means that these versions of Node.js will *not* receive any updates, even in case of security issues, so using these release lines should be avoided, if at all possible. + +What you would do in this case is to convert all `new Buffer()` or `Buffer()` calls to use `Buffer.alloc()` or `Buffer.from()`, in the following way: + +- For `new Buffer(number)`, replace it with `Buffer.alloc(number)`. +- For `new Buffer(string)` (or `new Buffer(string, encoding)`), replace it with `Buffer.from(string)` (or `Buffer.from(string, encoding)`). +- For all other combinations of arguments (these are much rarer), also replace `new Buffer(...arguments)` with `Buffer.from(...arguments)`. + +Note that `Buffer.alloc()` is also _faster_ on the current Node.js versions than +`new Buffer(size).fill(0)`, which is what you would otherwise need to ensure zero-filling. + +Enabling eslint rule [no-buffer-constructor](https://eslint.org/docs/rules/no-buffer-constructor) +or +[node/no-deprecated-api](https://github.com/mysticatea/eslint-plugin-node/blob/master/docs/rules/no-deprecated-api.md) +is recommended to avoid accidential unsafe Buffer API usage. + +There is also a [JSCodeshift codemod](https://github.com/joyeecheung/node-dep-codemod#dep005) +for automatically migrating Buffer constructors to `Buffer.alloc()` or `Buffer.from()`. +Note that it currently only works with cases where the arguments are literals or where the +constructor is invoked with two arguments. + +_If you currently support those older Node.js versions and dropping them would be a semver-major change +for you, or if you support older branches of your packages, consider using [Variant 2](#variant-2) +or [Variant 3](#variant-3) on older branches, so people using those older branches will also receive +the fix. That way, you will eradicate potential issues caused by unguarded Buffer API usage and +your users will not observe a runtime deprecation warning when running your code on Node.js 10._ + + +## Variant 2: Use a polyfill + +Utilize [safer-buffer](https://www.npmjs.com/package/safer-buffer) as a polyfill to support older +Node.js versions. + +You would take exacly the same steps as in [Variant 1](#variant-1), but with a polyfill +`const Buffer = require('safer-buffer').Buffer` in all files where you use the new `Buffer` api. + +Make sure that you do not use old `new Buffer` API — in any files where the line above is added, +using old `new Buffer()` API will _throw_. It will be easy to notice that in CI, though. + +Alternatively, you could use [buffer-from](https://www.npmjs.com/package/buffer-from) and/or +[buffer-alloc](https://www.npmjs.com/package/buffer-alloc) [ponyfills](https://ponyfill.com/) — +those are great, the only downsides being 4 deps in the tree and slightly more code changes to +migrate off them (as you would be using e.g. `Buffer.from` under a different name). If you need only +`Buffer.from` polyfilled — `buffer-from` alone which comes with no extra dependencies. + +_Alternatively, you could use [safe-buffer](https://www.npmjs.com/package/safe-buffer) — it also +provides a polyfill, but takes a different approach which has +[it's drawbacks](https://github.com/chalker/safer-buffer#why-not-safe-buffer). It will allow you +to also use the older `new Buffer()` API in your code, though — but that's arguably a benefit, as +it is problematic, can cause issues in your code, and will start emitting runtime deprecation +warnings starting with Node.js 10._ + +Note that in either case, it is important that you also remove all calls to the old Buffer +API manually — just throwing in `safe-buffer` doesn't fix the problem by itself, it just provides +a polyfill for the new API. I have seen people doing that mistake. + +Enabling eslint rule [no-buffer-constructor](https://eslint.org/docs/rules/no-buffer-constructor) +or +[node/no-deprecated-api](https://github.com/mysticatea/eslint-plugin-node/blob/master/docs/rules/no-deprecated-api.md) +is recommended. + +_Don't forget to drop the polyfill usage once you drop support for Node.js < 4.5.0._ + + +## Variant 3 — manual detection, with safeguards + +This is useful if you create Buffer instances in only a few places (e.g. one), or you have your own +wrapper around them. + +### Buffer(0) + +This special case for creating empty buffers can be safely replaced with `Buffer.concat([])`, which +returns the same result all the way down to Node.js 0.8.x. + +### Buffer(notNumber) + +Before: + +```js +var buf = new Buffer(notNumber, encoding); +``` + +After: + +```js +var buf; +if (Buffer.from && Buffer.from !== Uint8Array.from) { + buf = Buffer.from(notNumber, encoding); +} else { + if (typeof notNumber === 'number') + throw new Error('The "size" argument must be of type number.'); + buf = new Buffer(notNumber, encoding); +} +``` + +`encoding` is optional. + +Note that the `typeof notNumber` before `new Buffer` is required (for cases when `notNumber` argument is not +hard-coded) and _is not caused by the deprecation of Buffer constructor_ — it's exactly _why_ the +Buffer constructor is deprecated. Ecosystem packages lacking this type-check caused numereous +security issues — situations when unsanitized user input could end up in the `Buffer(arg)` create +problems ranging from DoS to leaking sensitive information to the attacker from the process memory. + +When `notNumber` argument is hardcoded (e.g. literal `"abc"` or `[0,1,2]`), the `typeof` check can +be omitted. + +Also note that using TypeScript does not fix this problem for you — when libs written in +`TypeScript` are used from JS, or when user input ends up there — it behaves exactly as pure JS, as +all type checks are translation-time only and are not present in the actual JS code which TS +compiles to. + +### Buffer(number) + +For Node.js 0.10.x (and below) support: + +```js +var buf; +if (Buffer.alloc) { + buf = Buffer.alloc(number); +} else { + buf = new Buffer(number); + buf.fill(0); +} +``` + +Otherwise (Node.js ≥ 0.12.x): + +```js +const buf = Buffer.alloc ? Buffer.alloc(number) : new Buffer(number).fill(0); +``` + +## Regarding Buffer.allocUnsafe + +Be extra cautious when using `Buffer.allocUnsafe`: + * Don't use it if you don't have a good reason to + * e.g. you probably won't ever see a performance difference for small buffers, in fact, those + might be even faster with `Buffer.alloc()`, + * if your code is not in the hot code path — you also probably won't notice a difference, + * keep in mind that zero-filling minimizes the potential risks. + * If you use it, make sure that you never return the buffer in a partially-filled state, + * if you are writing to it sequentially — always truncate it to the actuall written length + +Errors in handling buffers allocated with `Buffer.allocUnsafe` could result in various issues, +ranged from undefined behaviour of your code to sensitive data (user input, passwords, certs) +leaking to the remote attacker. + +_Note that the same applies to `new Buffer` usage without zero-filling, depending on the Node.js +version (and lacking type checks also adds DoS to the list of potential problems)._ + + +## FAQ + + +### What is wrong with the `Buffer` constructor? + +The `Buffer` constructor could be used to create a buffer in many different ways: + +- `new Buffer(42)` creates a `Buffer` of 42 bytes. Before Node.js 8, this buffer contained + *arbitrary memory* for performance reasons, which could include anything ranging from + program source code to passwords and encryption keys. +- `new Buffer('abc')` creates a `Buffer` that contains the UTF-8-encoded version of + the string `'abc'`. A second argument could specify another encoding: For example, + `new Buffer(string, 'base64')` could be used to convert a Base64 string into the original + sequence of bytes that it represents. +- There are several other combinations of arguments. + +This meant that, in code like `var buffer = new Buffer(foo);`, *it is not possible to tell +what exactly the contents of the generated buffer are* without knowing the type of `foo`. + +Sometimes, the value of `foo` comes from an external source. For example, this function +could be exposed as a service on a web server, converting a UTF-8 string into its Base64 form: + +``` +function stringToBase64(req, res) { + // The request body should have the format of `{ string: 'foobar' }` + const rawBytes = new Buffer(req.body.string) + const encoded = rawBytes.toString('base64') + res.end({ encoded: encoded }) +} +``` + +Note that this code does *not* validate the type of `req.body.string`: + +- `req.body.string` is expected to be a string. If this is the case, all goes well. +- `req.body.string` is controlled by the client that sends the request. +- If `req.body.string` is the *number* `50`, the `rawBytes` would be 50 bytes: + - Before Node.js 8, the content would be uninitialized + - After Node.js 8, the content would be `50` bytes with the value `0` + +Because of the missing type check, an attacker could intentionally send a number +as part of the request. Using this, they can either: + +- Read uninitialized memory. This **will** leak passwords, encryption keys and other + kinds of sensitive information. (Information leak) +- Force the program to allocate a large amount of memory. For example, when specifying + `500000000` as the input value, each request will allocate 500MB of memory. + This can be used to either exhaust the memory available of a program completely + and make it crash, or slow it down significantly. (Denial of Service) + +Both of these scenarios are considered serious security issues in a real-world +web server context. + +when using `Buffer.from(req.body.string)` instead, passing a number will always +throw an exception instead, giving a controlled behaviour that can always be +handled by the program. + + +### The `Buffer()` constructor has been deprecated for a while. Is this really an issue? + +Surveys of code in the `npm` ecosystem have shown that the `Buffer()` constructor is still +widely used. This includes new code, and overall usage of such code has actually been +*increasing*. diff --git a/node_modules/safer-buffer/Readme.md b/node_modules/safer-buffer/Readme.md new file mode 100644 index 000000000..14b082290 --- /dev/null +++ b/node_modules/safer-buffer/Readme.md @@ -0,0 +1,156 @@ +# safer-buffer [![travis][travis-image]][travis-url] [![npm][npm-image]][npm-url] [![javascript style guide][standard-image]][standard-url] [![Security Responsible Disclosure][secuirty-image]][secuirty-url] + +[travis-image]: https://travis-ci.org/ChALkeR/safer-buffer.svg?branch=master +[travis-url]: https://travis-ci.org/ChALkeR/safer-buffer +[npm-image]: https://img.shields.io/npm/v/safer-buffer.svg +[npm-url]: https://npmjs.org/package/safer-buffer +[standard-image]: https://img.shields.io/badge/code_style-standard-brightgreen.svg +[standard-url]: https://standardjs.com +[secuirty-image]: https://img.shields.io/badge/Security-Responsible%20Disclosure-green.svg +[secuirty-url]: https://github.com/nodejs/security-wg/blob/master/processes/responsible_disclosure_template.md + +Modern Buffer API polyfill without footguns, working on Node.js from 0.8 to current. + +## How to use? + +First, port all `Buffer()` and `new Buffer()` calls to `Buffer.alloc()` and `Buffer.from()` API. + +Then, to achieve compatibility with outdated Node.js versions (`<4.5.0` and 5.x `<5.9.0`), use +`const Buffer = require('safer-buffer').Buffer` in all files where you make calls to the new +Buffer API. _Use `var` instead of `const` if you need that for your Node.js version range support._ + +Also, see the +[porting Buffer](https://github.com/ChALkeR/safer-buffer/blob/master/Porting-Buffer.md) guide. + +## Do I need it? + +Hopefully, not — dropping support for outdated Node.js versions should be fine nowdays, and that +is the recommended path forward. You _do_ need to port to the `Buffer.alloc()` and `Buffer.from()` +though. + +See the [porting guide](https://github.com/ChALkeR/safer-buffer/blob/master/Porting-Buffer.md) +for a better description. + +## Why not [safe-buffer](https://npmjs.com/safe-buffer)? + +_In short: while `safe-buffer` serves as a polyfill for the new API, it allows old API usage and +itself contains footguns._ + +`safe-buffer` could be used safely to get the new API while still keeping support for older +Node.js versions (like this module), but while analyzing ecosystem usage of the old Buffer API +I found out that `safe-buffer` is itself causing problems in some cases. + +For example, consider the following snippet: + +```console +$ cat example.unsafe.js +console.log(Buffer(20)) +$ ./node-v6.13.0-linux-x64/bin/node example.unsafe.js + +$ standard example.unsafe.js +standard: Use JavaScript Standard Style (https://standardjs.com) + /home/chalker/repo/safer-buffer/example.unsafe.js:2:13: 'Buffer()' was deprecated since v6. Use 'Buffer.alloc()' or 'Buffer.from()' (use 'https://www.npmjs.com/package/safe-buffer' for '<4.5.0') instead. +``` + +This is allocates and writes to console an uninitialized chunk of memory. +[standard](https://www.npmjs.com/package/standard) linter (among others) catch that and warn people +to avoid using unsafe API. + +Let's now throw in `safe-buffer`! + +```console +$ cat example.safe-buffer.js +const Buffer = require('safe-buffer').Buffer +console.log(Buffer(20)) +$ standard example.safe-buffer.js +$ ./node-v6.13.0-linux-x64/bin/node example.safe-buffer.js + +``` + +See the problem? Adding in `safe-buffer` _magically removes the lint warning_, but the behavior +remains identiсal to what we had before, and when launched on Node.js 6.x LTS — this dumps out +chunks of uninitialized memory. +_And this code will still emit runtime warnings on Node.js 10.x and above._ + +That was done by design. I first considered changing `safe-buffer`, prohibiting old API usage or +emitting warnings on it, but that significantly diverges from `safe-buffer` design. After some +discussion, it was decided to move my approach into a separate package, and _this is that separate +package_. + +This footgun is not imaginary — I observed top-downloaded packages doing that kind of thing, +«fixing» the lint warning by blindly including `safe-buffer` without any actual changes. + +Also in some cases, even if the API _was_ migrated to use of safe Buffer API — a random pull request +can bring unsafe Buffer API usage back to the codebase by adding new calls — and that could go +unnoticed even if you have a linter prohibiting that (becase of the reason stated above), and even +pass CI. _I also observed that being done in popular packages._ + +Some examples: + * [webdriverio](https://github.com/webdriverio/webdriverio/commit/05cbd3167c12e4930f09ef7cf93b127ba4effae4#diff-124380949022817b90b622871837d56cR31) + (a module with 548 759 downloads/month), + * [websocket-stream](https://github.com/maxogden/websocket-stream/commit/c9312bd24d08271687d76da0fe3c83493871cf61) + (218 288 d/m, fix in [maxogden/websocket-stream#142](https://github.com/maxogden/websocket-stream/pull/142)), + * [node-serialport](https://github.com/node-serialport/node-serialport/commit/e8d9d2b16c664224920ce1c895199b1ce2def48c) + (113 138 d/m, fix in [node-serialport/node-serialport#1510](https://github.com/node-serialport/node-serialport/pull/1510)), + * [karma](https://github.com/karma-runner/karma/commit/3d94b8cf18c695104ca195334dc75ff054c74eec) + (3 973 193 d/m, fix in [karma-runner/karma#2947](https://github.com/karma-runner/karma/pull/2947)), + * [spdy-transport](https://github.com/spdy-http2/spdy-transport/commit/5375ac33f4a62a4f65bcfc2827447d42a5dbe8b1) + (5 970 727 d/m, fix in [spdy-http2/spdy-transport#53](https://github.com/spdy-http2/spdy-transport/pull/53)). + * And there are a lot more over the ecosystem. + +I filed a PR at +[mysticatea/eslint-plugin-node#110](https://github.com/mysticatea/eslint-plugin-node/pull/110) to +partially fix that (for cases when that lint rule is used), but it is a semver-major change for +linter rules and presets, so it would take significant time for that to reach actual setups. +_It also hasn't been released yet (2018-03-20)._ + +Also, `safer-buffer` discourages the usage of `.allocUnsafe()`, which is often done by a mistake. +It still supports it with an explicit concern barier, by placing it under +`require('safer-buffer/dangereous')`. + +## But isn't throwing bad? + +Not really. It's an error that could be noticed and fixed early, instead of causing havoc later like +unguarded `new Buffer()` calls that end up receiving user input can do. + +This package affects only the files where `var Buffer = require('safer-buffer').Buffer` was done, so +it is really simple to keep track of things and make sure that you don't mix old API usage with that. +Also, CI should hint anything that you might have missed. + +New commits, if tested, won't land new usage of unsafe Buffer API this way. +_Node.js 10.x also deals with that by printing a runtime depecation warning._ + +### Would it affect third-party modules? + +No, unless you explicitly do an awful thing like monkey-patching or overriding the built-in `Buffer`. +Don't do that. + +### But I don't want throwing… + +That is also fine! + +Also, it could be better in some cases when you don't comprehensive enough test coverage. + +In that case — just don't override `Buffer` and use +`var SaferBuffer = require('safer-buffer').Buffer` instead. + +That way, everything using `Buffer` natively would still work, but there would be two drawbacks: + +* `Buffer.from`/`Buffer.alloc` won't be polyfilled — use `SaferBuffer.from` and + `SaferBuffer.alloc` instead. +* You are still open to accidentally using the insecure deprecated API — use a linter to catch that. + +Note that using a linter to catch accidential `Buffer` constructor usage in this case is strongly +recommended. `Buffer` is not overriden in this usecase, so linters won't get confused. + +## «Without footguns»? + +Well, it is still possible to do _some_ things with `Buffer` API, e.g. accessing `.buffer` property +on older versions and duping things from there. You shouldn't do that in your code, probabably. + +The intention is to remove the most significant footguns that affect lots of packages in the +ecosystem, and to do it in the proper way. + +Also, this package doesn't protect against security issues affecting some Node.js versions, so for +usage in your own production code, it is still recommended to update to a Node.js version +[supported by upstream](https://github.com/nodejs/release#release-schedule). diff --git a/node_modules/safer-buffer/dangerous.js b/node_modules/safer-buffer/dangerous.js new file mode 100644 index 000000000..ca41fdc54 --- /dev/null +++ b/node_modules/safer-buffer/dangerous.js @@ -0,0 +1,58 @@ +/* eslint-disable node/no-deprecated-api */ + +'use strict' + +var buffer = require('buffer') +var Buffer = buffer.Buffer +var safer = require('./safer.js') +var Safer = safer.Buffer + +var dangerous = {} + +var key + +for (key in safer) { + if (!safer.hasOwnProperty(key)) continue + dangerous[key] = safer[key] +} + +var Dangereous = dangerous.Buffer = {} + +// Copy Safer API +for (key in Safer) { + if (!Safer.hasOwnProperty(key)) continue + Dangereous[key] = Safer[key] +} + +// Copy those missing unsafe methods, if they are present +for (key in Buffer) { + if (!Buffer.hasOwnProperty(key)) continue + if (Dangereous.hasOwnProperty(key)) continue + Dangereous[key] = Buffer[key] +} + +if (!Dangereous.allocUnsafe) { + Dangereous.allocUnsafe = function (size) { + if (typeof size !== 'number') { + throw new TypeError('The "size" argument must be of type number. Received type ' + typeof size) + } + if (size < 0 || size >= 2 * (1 << 30)) { + throw new RangeError('The value "' + size + '" is invalid for option "size"') + } + return Buffer(size) + } +} + +if (!Dangereous.allocUnsafeSlow) { + Dangereous.allocUnsafeSlow = function (size) { + if (typeof size !== 'number') { + throw new TypeError('The "size" argument must be of type number. Received type ' + typeof size) + } + if (size < 0 || size >= 2 * (1 << 30)) { + throw new RangeError('The value "' + size + '" is invalid for option "size"') + } + return buffer.SlowBuffer(size) + } +} + +module.exports = dangerous diff --git a/node_modules/safer-buffer/package.json b/node_modules/safer-buffer/package.json new file mode 100644 index 000000000..d452b04ae --- /dev/null +++ b/node_modules/safer-buffer/package.json @@ -0,0 +1,34 @@ +{ + "name": "safer-buffer", + "version": "2.1.2", + "description": "Modern Buffer API polyfill without footguns", + "main": "safer.js", + "scripts": { + "browserify-test": "browserify --external tape tests.js > browserify-tests.js && tape browserify-tests.js", + "test": "standard && tape tests.js" + }, + "author": { + "name": "Nikita Skovoroda", + "email": "chalkerx@gmail.com", + "url": "https://github.com/ChALkeR" + }, + "license": "MIT", + "repository": { + "type": "git", + "url": "git+https://github.com/ChALkeR/safer-buffer.git" + }, + "bugs": { + "url": "https://github.com/ChALkeR/safer-buffer/issues" + }, + "devDependencies": { + "standard": "^11.0.1", + "tape": "^4.9.0" + }, + "files": [ + "Porting-Buffer.md", + "Readme.md", + "tests.js", + "dangerous.js", + "safer.js" + ] +} diff --git a/node_modules/safer-buffer/safer.js b/node_modules/safer-buffer/safer.js new file mode 100644 index 000000000..37c7e1aa6 --- /dev/null +++ b/node_modules/safer-buffer/safer.js @@ -0,0 +1,77 @@ +/* eslint-disable node/no-deprecated-api */ + +'use strict' + +var buffer = require('buffer') +var Buffer = buffer.Buffer + +var safer = {} + +var key + +for (key in buffer) { + if (!buffer.hasOwnProperty(key)) continue + if (key === 'SlowBuffer' || key === 'Buffer') continue + safer[key] = buffer[key] +} + +var Safer = safer.Buffer = {} +for (key in Buffer) { + if (!Buffer.hasOwnProperty(key)) continue + if (key === 'allocUnsafe' || key === 'allocUnsafeSlow') continue + Safer[key] = Buffer[key] +} + +safer.Buffer.prototype = Buffer.prototype + +if (!Safer.from || Safer.from === Uint8Array.from) { + Safer.from = function (value, encodingOrOffset, length) { + if (typeof value === 'number') { + throw new TypeError('The "value" argument must not be of type number. Received type ' + typeof value) + } + if (value && typeof value.length === 'undefined') { + throw new TypeError('The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type ' + typeof value) + } + return Buffer(value, encodingOrOffset, length) + } +} + +if (!Safer.alloc) { + Safer.alloc = function (size, fill, encoding) { + if (typeof size !== 'number') { + throw new TypeError('The "size" argument must be of type number. Received type ' + typeof size) + } + if (size < 0 || size >= 2 * (1 << 30)) { + throw new RangeError('The value "' + size + '" is invalid for option "size"') + } + var buf = Buffer(size) + if (!fill || fill.length === 0) { + buf.fill(0) + } else if (typeof encoding === 'string') { + buf.fill(fill, encoding) + } else { + buf.fill(fill) + } + return buf + } +} + +if (!safer.kStringMaxLength) { + try { + safer.kStringMaxLength = process.binding('buffer').kStringMaxLength + } catch (e) { + // we can't determine kStringMaxLength in environments where process.binding + // is unsupported, so let's not set it + } +} + +if (!safer.constants) { + safer.constants = { + MAX_LENGTH: safer.kMaxLength + } + if (safer.kStringMaxLength) { + safer.constants.MAX_STRING_LENGTH = safer.kStringMaxLength + } +} + +module.exports = safer diff --git a/node_modules/safer-buffer/tests.js b/node_modules/safer-buffer/tests.js new file mode 100644 index 000000000..7ed2777c9 --- /dev/null +++ b/node_modules/safer-buffer/tests.js @@ -0,0 +1,406 @@ +/* eslint-disable node/no-deprecated-api */ + +'use strict' + +var test = require('tape') + +var buffer = require('buffer') + +var index = require('./') +var safer = require('./safer') +var dangerous = require('./dangerous') + +/* Inheritance tests */ + +test('Default is Safer', function (t) { + t.equal(index, safer) + t.notEqual(safer, dangerous) + t.notEqual(index, dangerous) + t.end() +}) + +test('Is not a function', function (t) { + [index, safer, dangerous].forEach(function (impl) { + t.equal(typeof impl, 'object') + t.equal(typeof impl.Buffer, 'object') + }); + [buffer].forEach(function (impl) { + t.equal(typeof impl, 'object') + t.equal(typeof impl.Buffer, 'function') + }) + t.end() +}) + +test('Constructor throws', function (t) { + [index, safer, dangerous].forEach(function (impl) { + t.throws(function () { impl.Buffer() }) + t.throws(function () { impl.Buffer(0) }) + t.throws(function () { impl.Buffer('a') }) + t.throws(function () { impl.Buffer('a', 'utf-8') }) + t.throws(function () { return new impl.Buffer() }) + t.throws(function () { return new impl.Buffer(0) }) + t.throws(function () { return new impl.Buffer('a') }) + t.throws(function () { return new impl.Buffer('a', 'utf-8') }) + }) + t.end() +}) + +test('Safe methods exist', function (t) { + [index, safer, dangerous].forEach(function (impl) { + t.equal(typeof impl.Buffer.alloc, 'function', 'alloc') + t.equal(typeof impl.Buffer.from, 'function', 'from') + }) + t.end() +}) + +test('Unsafe methods exist only in Dangerous', function (t) { + [index, safer].forEach(function (impl) { + t.equal(typeof impl.Buffer.allocUnsafe, 'undefined') + t.equal(typeof impl.Buffer.allocUnsafeSlow, 'undefined') + }); + [dangerous].forEach(function (impl) { + t.equal(typeof impl.Buffer.allocUnsafe, 'function') + t.equal(typeof impl.Buffer.allocUnsafeSlow, 'function') + }) + t.end() +}) + +test('Generic methods/properties are defined and equal', function (t) { + ['poolSize', 'isBuffer', 'concat', 'byteLength'].forEach(function (method) { + [index, safer, dangerous].forEach(function (impl) { + t.equal(impl.Buffer[method], buffer.Buffer[method], method) + t.notEqual(typeof impl.Buffer[method], 'undefined', method) + }) + }) + t.end() +}) + +test('Built-in buffer static methods/properties are inherited', function (t) { + Object.keys(buffer).forEach(function (method) { + if (method === 'SlowBuffer' || method === 'Buffer') return; + [index, safer, dangerous].forEach(function (impl) { + t.equal(impl[method], buffer[method], method) + t.notEqual(typeof impl[method], 'undefined', method) + }) + }) + t.end() +}) + +test('Built-in Buffer static methods/properties are inherited', function (t) { + Object.keys(buffer.Buffer).forEach(function (method) { + if (method === 'allocUnsafe' || method === 'allocUnsafeSlow') return; + [index, safer, dangerous].forEach(function (impl) { + t.equal(impl.Buffer[method], buffer.Buffer[method], method) + t.notEqual(typeof impl.Buffer[method], 'undefined', method) + }) + }) + t.end() +}) + +test('.prototype property of Buffer is inherited', function (t) { + [index, safer, dangerous].forEach(function (impl) { + t.equal(impl.Buffer.prototype, buffer.Buffer.prototype, 'prototype') + t.notEqual(typeof impl.Buffer.prototype, 'undefined', 'prototype') + }) + t.end() +}) + +test('All Safer methods are present in Dangerous', function (t) { + Object.keys(safer).forEach(function (method) { + if (method === 'Buffer') return; + [index, safer, dangerous].forEach(function (impl) { + t.equal(impl[method], safer[method], method) + if (method !== 'kStringMaxLength') { + t.notEqual(typeof impl[method], 'undefined', method) + } + }) + }) + Object.keys(safer.Buffer).forEach(function (method) { + [index, safer, dangerous].forEach(function (impl) { + t.equal(impl.Buffer[method], safer.Buffer[method], method) + t.notEqual(typeof impl.Buffer[method], 'undefined', method) + }) + }) + t.end() +}) + +test('Safe methods from Dangerous methods are present in Safer', function (t) { + Object.keys(dangerous).forEach(function (method) { + if (method === 'Buffer') return; + [index, safer, dangerous].forEach(function (impl) { + t.equal(impl[method], dangerous[method], method) + if (method !== 'kStringMaxLength') { + t.notEqual(typeof impl[method], 'undefined', method) + } + }) + }) + Object.keys(dangerous.Buffer).forEach(function (method) { + if (method === 'allocUnsafe' || method === 'allocUnsafeSlow') return; + [index, safer, dangerous].forEach(function (impl) { + t.equal(impl.Buffer[method], dangerous.Buffer[method], method) + t.notEqual(typeof impl.Buffer[method], 'undefined', method) + }) + }) + t.end() +}) + +/* Behaviour tests */ + +test('Methods return Buffers', function (t) { + [index, safer, dangerous].forEach(function (impl) { + t.ok(buffer.Buffer.isBuffer(impl.Buffer.alloc(0))) + t.ok(buffer.Buffer.isBuffer(impl.Buffer.alloc(0, 10))) + t.ok(buffer.Buffer.isBuffer(impl.Buffer.alloc(0, 'a'))) + t.ok(buffer.Buffer.isBuffer(impl.Buffer.alloc(10))) + t.ok(buffer.Buffer.isBuffer(impl.Buffer.alloc(10, 'x'))) + t.ok(buffer.Buffer.isBuffer(impl.Buffer.alloc(9, 'ab'))) + t.ok(buffer.Buffer.isBuffer(impl.Buffer.from(''))) + t.ok(buffer.Buffer.isBuffer(impl.Buffer.from('string'))) + t.ok(buffer.Buffer.isBuffer(impl.Buffer.from('string', 'utf-8'))) + t.ok(buffer.Buffer.isBuffer(impl.Buffer.from('b25ldHdvdGhyZWU=', 'base64'))) + t.ok(buffer.Buffer.isBuffer(impl.Buffer.from([0, 42, 3]))) + t.ok(buffer.Buffer.isBuffer(impl.Buffer.from(new Uint8Array([0, 42, 3])))) + t.ok(buffer.Buffer.isBuffer(impl.Buffer.from([]))) + }); + ['allocUnsafe', 'allocUnsafeSlow'].forEach(function (method) { + t.ok(buffer.Buffer.isBuffer(dangerous.Buffer[method](0))) + t.ok(buffer.Buffer.isBuffer(dangerous.Buffer[method](10))) + }) + t.end() +}) + +test('Constructor is buffer.Buffer', function (t) { + [index, safer, dangerous].forEach(function (impl) { + t.equal(impl.Buffer.alloc(0).constructor, buffer.Buffer) + t.equal(impl.Buffer.alloc(0, 10).constructor, buffer.Buffer) + t.equal(impl.Buffer.alloc(0, 'a').constructor, buffer.Buffer) + t.equal(impl.Buffer.alloc(10).constructor, buffer.Buffer) + t.equal(impl.Buffer.alloc(10, 'x').constructor, buffer.Buffer) + t.equal(impl.Buffer.alloc(9, 'ab').constructor, buffer.Buffer) + t.equal(impl.Buffer.from('').constructor, buffer.Buffer) + t.equal(impl.Buffer.from('string').constructor, buffer.Buffer) + t.equal(impl.Buffer.from('string', 'utf-8').constructor, buffer.Buffer) + t.equal(impl.Buffer.from('b25ldHdvdGhyZWU=', 'base64').constructor, buffer.Buffer) + t.equal(impl.Buffer.from([0, 42, 3]).constructor, buffer.Buffer) + t.equal(impl.Buffer.from(new Uint8Array([0, 42, 3])).constructor, buffer.Buffer) + t.equal(impl.Buffer.from([]).constructor, buffer.Buffer) + }); + [0, 10, 100].forEach(function (arg) { + t.equal(dangerous.Buffer.allocUnsafe(arg).constructor, buffer.Buffer) + t.equal(dangerous.Buffer.allocUnsafeSlow(arg).constructor, buffer.SlowBuffer(0).constructor) + }) + t.end() +}) + +test('Invalid calls throw', function (t) { + [index, safer, dangerous].forEach(function (impl) { + t.throws(function () { impl.Buffer.from(0) }) + t.throws(function () { impl.Buffer.from(10) }) + t.throws(function () { impl.Buffer.from(10, 'utf-8') }) + t.throws(function () { impl.Buffer.from('string', 'invalid encoding') }) + t.throws(function () { impl.Buffer.from(-10) }) + t.throws(function () { impl.Buffer.from(1e90) }) + t.throws(function () { impl.Buffer.from(Infinity) }) + t.throws(function () { impl.Buffer.from(-Infinity) }) + t.throws(function () { impl.Buffer.from(NaN) }) + t.throws(function () { impl.Buffer.from(null) }) + t.throws(function () { impl.Buffer.from(undefined) }) + t.throws(function () { impl.Buffer.from() }) + t.throws(function () { impl.Buffer.from({}) }) + t.throws(function () { impl.Buffer.alloc('') }) + t.throws(function () { impl.Buffer.alloc('string') }) + t.throws(function () { impl.Buffer.alloc('string', 'utf-8') }) + t.throws(function () { impl.Buffer.alloc('b25ldHdvdGhyZWU=', 'base64') }) + t.throws(function () { impl.Buffer.alloc(-10) }) + t.throws(function () { impl.Buffer.alloc(1e90) }) + t.throws(function () { impl.Buffer.alloc(2 * (1 << 30)) }) + t.throws(function () { impl.Buffer.alloc(Infinity) }) + t.throws(function () { impl.Buffer.alloc(-Infinity) }) + t.throws(function () { impl.Buffer.alloc(null) }) + t.throws(function () { impl.Buffer.alloc(undefined) }) + t.throws(function () { impl.Buffer.alloc() }) + t.throws(function () { impl.Buffer.alloc([]) }) + t.throws(function () { impl.Buffer.alloc([0, 42, 3]) }) + t.throws(function () { impl.Buffer.alloc({}) }) + }); + ['allocUnsafe', 'allocUnsafeSlow'].forEach(function (method) { + t.throws(function () { dangerous.Buffer[method]('') }) + t.throws(function () { dangerous.Buffer[method]('string') }) + t.throws(function () { dangerous.Buffer[method]('string', 'utf-8') }) + t.throws(function () { dangerous.Buffer[method](2 * (1 << 30)) }) + t.throws(function () { dangerous.Buffer[method](Infinity) }) + if (dangerous.Buffer[method] === buffer.Buffer.allocUnsafe) { + t.skip('Skipping, older impl of allocUnsafe coerced negative sizes to 0') + } else { + t.throws(function () { dangerous.Buffer[method](-10) }) + t.throws(function () { dangerous.Buffer[method](-1e90) }) + t.throws(function () { dangerous.Buffer[method](-Infinity) }) + } + t.throws(function () { dangerous.Buffer[method](null) }) + t.throws(function () { dangerous.Buffer[method](undefined) }) + t.throws(function () { dangerous.Buffer[method]() }) + t.throws(function () { dangerous.Buffer[method]([]) }) + t.throws(function () { dangerous.Buffer[method]([0, 42, 3]) }) + t.throws(function () { dangerous.Buffer[method]({}) }) + }) + t.end() +}) + +test('Buffers have appropriate lengths', function (t) { + [index, safer, dangerous].forEach(function (impl) { + t.equal(impl.Buffer.alloc(0).length, 0) + t.equal(impl.Buffer.alloc(10).length, 10) + t.equal(impl.Buffer.from('').length, 0) + t.equal(impl.Buffer.from('string').length, 6) + t.equal(impl.Buffer.from('string', 'utf-8').length, 6) + t.equal(impl.Buffer.from('b25ldHdvdGhyZWU=', 'base64').length, 11) + t.equal(impl.Buffer.from([0, 42, 3]).length, 3) + t.equal(impl.Buffer.from(new Uint8Array([0, 42, 3])).length, 3) + t.equal(impl.Buffer.from([]).length, 0) + }); + ['allocUnsafe', 'allocUnsafeSlow'].forEach(function (method) { + t.equal(dangerous.Buffer[method](0).length, 0) + t.equal(dangerous.Buffer[method](10).length, 10) + }) + t.end() +}) + +test('Buffers have appropriate lengths (2)', function (t) { + t.equal(index.Buffer.alloc, safer.Buffer.alloc) + t.equal(index.Buffer.alloc, dangerous.Buffer.alloc) + var ok = true; + [ safer.Buffer.alloc, + dangerous.Buffer.allocUnsafe, + dangerous.Buffer.allocUnsafeSlow + ].forEach(function (method) { + for (var i = 0; i < 1e2; i++) { + var length = Math.round(Math.random() * 1e5) + var buf = method(length) + if (!buffer.Buffer.isBuffer(buf)) ok = false + if (buf.length !== length) ok = false + } + }) + t.ok(ok) + t.end() +}) + +test('.alloc(size) is zero-filled and has correct length', function (t) { + t.equal(index.Buffer.alloc, safer.Buffer.alloc) + t.equal(index.Buffer.alloc, dangerous.Buffer.alloc) + var ok = true + for (var i = 0; i < 1e2; i++) { + var length = Math.round(Math.random() * 2e6) + var buf = index.Buffer.alloc(length) + if (!buffer.Buffer.isBuffer(buf)) ok = false + if (buf.length !== length) ok = false + var j + for (j = 0; j < length; j++) { + if (buf[j] !== 0) ok = false + } + buf.fill(1) + for (j = 0; j < length; j++) { + if (buf[j] !== 1) ok = false + } + } + t.ok(ok) + t.end() +}) + +test('.allocUnsafe / .allocUnsafeSlow are fillable and have correct lengths', function (t) { + ['allocUnsafe', 'allocUnsafeSlow'].forEach(function (method) { + var ok = true + for (var i = 0; i < 1e2; i++) { + var length = Math.round(Math.random() * 2e6) + var buf = dangerous.Buffer[method](length) + if (!buffer.Buffer.isBuffer(buf)) ok = false + if (buf.length !== length) ok = false + buf.fill(0, 0, length) + var j + for (j = 0; j < length; j++) { + if (buf[j] !== 0) ok = false + } + buf.fill(1, 0, length) + for (j = 0; j < length; j++) { + if (buf[j] !== 1) ok = false + } + } + t.ok(ok, method) + }) + t.end() +}) + +test('.alloc(size, fill) is `fill`-filled', function (t) { + t.equal(index.Buffer.alloc, safer.Buffer.alloc) + t.equal(index.Buffer.alloc, dangerous.Buffer.alloc) + var ok = true + for (var i = 0; i < 1e2; i++) { + var length = Math.round(Math.random() * 2e6) + var fill = Math.round(Math.random() * 255) + var buf = index.Buffer.alloc(length, fill) + if (!buffer.Buffer.isBuffer(buf)) ok = false + if (buf.length !== length) ok = false + for (var j = 0; j < length; j++) { + if (buf[j] !== fill) ok = false + } + } + t.ok(ok) + t.end() +}) + +test('.alloc(size, fill) is `fill`-filled', function (t) { + t.equal(index.Buffer.alloc, safer.Buffer.alloc) + t.equal(index.Buffer.alloc, dangerous.Buffer.alloc) + var ok = true + for (var i = 0; i < 1e2; i++) { + var length = Math.round(Math.random() * 2e6) + var fill = Math.round(Math.random() * 255) + var buf = index.Buffer.alloc(length, fill) + if (!buffer.Buffer.isBuffer(buf)) ok = false + if (buf.length !== length) ok = false + for (var j = 0; j < length; j++) { + if (buf[j] !== fill) ok = false + } + } + t.ok(ok) + t.deepEqual(index.Buffer.alloc(9, 'a'), index.Buffer.alloc(9, 97)) + t.notDeepEqual(index.Buffer.alloc(9, 'a'), index.Buffer.alloc(9, 98)) + + var tmp = new buffer.Buffer(2) + tmp.fill('ok') + if (tmp[1] === tmp[0]) { + // Outdated Node.js + t.deepEqual(index.Buffer.alloc(5, 'ok'), index.Buffer.from('ooooo')) + } else { + t.deepEqual(index.Buffer.alloc(5, 'ok'), index.Buffer.from('okoko')) + } + t.notDeepEqual(index.Buffer.alloc(5, 'ok'), index.Buffer.from('kokok')) + + t.end() +}) + +test('safer.Buffer.from returns results same as Buffer constructor', function (t) { + [index, safer, dangerous].forEach(function (impl) { + t.deepEqual(impl.Buffer.from(''), new buffer.Buffer('')) + t.deepEqual(impl.Buffer.from('string'), new buffer.Buffer('string')) + t.deepEqual(impl.Buffer.from('string', 'utf-8'), new buffer.Buffer('string', 'utf-8')) + t.deepEqual(impl.Buffer.from('b25ldHdvdGhyZWU=', 'base64'), new buffer.Buffer('b25ldHdvdGhyZWU=', 'base64')) + t.deepEqual(impl.Buffer.from([0, 42, 3]), new buffer.Buffer([0, 42, 3])) + t.deepEqual(impl.Buffer.from(new Uint8Array([0, 42, 3])), new buffer.Buffer(new Uint8Array([0, 42, 3]))) + t.deepEqual(impl.Buffer.from([]), new buffer.Buffer([])) + }) + t.end() +}) + +test('safer.Buffer.from returns consistent results', function (t) { + [index, safer, dangerous].forEach(function (impl) { + t.deepEqual(impl.Buffer.from(''), impl.Buffer.alloc(0)) + t.deepEqual(impl.Buffer.from([]), impl.Buffer.alloc(0)) + t.deepEqual(impl.Buffer.from(new Uint8Array([])), impl.Buffer.alloc(0)) + t.deepEqual(impl.Buffer.from('string', 'utf-8'), impl.Buffer.from('string')) + t.deepEqual(impl.Buffer.from('string'), impl.Buffer.from([115, 116, 114, 105, 110, 103])) + t.deepEqual(impl.Buffer.from('string'), impl.Buffer.from(impl.Buffer.from('string'))) + t.deepEqual(impl.Buffer.from('b25ldHdvdGhyZWU=', 'base64'), impl.Buffer.from('onetwothree')) + t.notDeepEqual(impl.Buffer.from('b25ldHdvdGhyZWU='), impl.Buffer.from('onetwothree')) + }) + t.end() +}) diff --git a/node_modules/saslprep/.editorconfig b/node_modules/saslprep/.editorconfig new file mode 100644 index 000000000..d1d8a4176 --- /dev/null +++ b/node_modules/saslprep/.editorconfig @@ -0,0 +1,10 @@ +# http://editorconfig.org +root = true + +[*] +indent_style = space +indent_size = 2 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true diff --git a/node_modules/saslprep/.gitattributes b/node_modules/saslprep/.gitattributes new file mode 100644 index 000000000..3ba45360c --- /dev/null +++ b/node_modules/saslprep/.gitattributes @@ -0,0 +1 @@ +*.mem binary diff --git a/node_modules/saslprep/.travis.yml b/node_modules/saslprep/.travis.yml new file mode 100644 index 000000000..0bca82653 --- /dev/null +++ b/node_modules/saslprep/.travis.yml @@ -0,0 +1,10 @@ +sudo: false +language: node_js +node_js: + - "6" + - "8" + - "10" + - "12" + +before_install: +- npm install -g npm@6 diff --git a/node_modules/saslprep/CHANGELOG.md b/node_modules/saslprep/CHANGELOG.md new file mode 100644 index 000000000..779807877 --- /dev/null +++ b/node_modules/saslprep/CHANGELOG.md @@ -0,0 +1,19 @@ +# Change Log +All notable changes to the "saslprep" package will be documented in this file. + +## [1.0.3] - 2019-05-01 + +- Correctly get code points >U+FFFF ([#5](https://github.com/reklatsmasters/saslprep/pull/5)) +- Fix perfomance downgrades from [#5](https://github.com/reklatsmasters/saslprep/pull/5). + +## [1.0.2] - 2018-09-13 + +- Reduced initialization time ([#3](https://github.com/reklatsmasters/saslprep/issues/3)) + +## [1.0.1] - 2018-06-20 + +- Reduced stack overhead of range creation ([#2](https://github.com/reklatsmasters/saslprep/pull/2)) + +## [1.0.0] - 2017-06-21 + +- First release diff --git a/node_modules/saslprep/LICENSE b/node_modules/saslprep/LICENSE new file mode 100644 index 000000000..481c7a50f --- /dev/null +++ b/node_modules/saslprep/LICENSE @@ -0,0 +1,22 @@ +Copyright (c) 2014 Dmitry Tsvettsikh + +Permission is hereby granted, free of charge, to any person +obtaining a copy of this software and associated documentation +files (the "Software"), to deal in the Software without +restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/node_modules/saslprep/code-points.mem b/node_modules/saslprep/code-points.mem new file mode 100644 index 0000000000000000000000000000000000000000..4781b066802688bdf954d2e89bcfac967db29c09 GIT binary patch literal 419864 zcmeI*O^9Si9RTop)4e+(t{DX(dsufSM8xBQfdsOo2lf&{@FWO&5cZ;Y@FWHe%nKV~ z@sxvzw;c53DIgdRk!c;t<{;##B4%51h#=^gL^8Y6+hx^z-92x{*9;3Umv`GA&vUy%enler!HTQKkA3&c=OSJMn7j|JGjl-d;Iey^#7>ZH0(RWYm^YJNA>kJ59aOu`p6X{MHRe9bu8cD2oYvN=9*ybv z%TyjdGTZ46aN&^<{xI6U)O2~U(!G+Yl0gPYRjbu8Wx~a<(#z+pIGvPkC#O7E&NgnV zIeue)&FW_ULfI&__U^^i@bTrer0O33=x2+%W4?Qo^)pjbsxinkv-K<<-Z9O6ZEyaQ zcB_@u#{%W}q9N0;ypzw%<*<}a^^Ob|R8?1xx0U*l{Mfi-J@SG5+xHJnzAqkVA73p) zfWWZ=`LSE4W4mY|K!5-N0t5&UATSizd-XW}{r>FO4Bx#OzCAE{nLD@VvjcA?1PBnA ze}O7c;{B8P-)Ji&@Gu01QMDYyI+%*sOCglv+~@Yqqm#Pz_SKwJ*n6ekt-IE7xb$i{ z#vJ7-%1?!2rG0Ri^X0*sx?FU--CIQw%Y*Zsb~)W#QAMFvj~+Qsr{Zh=QgU=xwFC$d zAV7cs0RjXF5FkK+009C72oNAZfB*pkrx2*aLB}2IZvhtFBipAEvDq7W9J^}&<>l~& z=Z6hT7u&hviF4icy{;$Z#$Rfh)bDEDcnTt22oNAJj{^NkPm$UP5FkK+009C72oNAZ zfB*pk1PBlya5e=N=WpRu-1tFH?r+Uep=aLS_2t}!1M%`E=_N&nH;IH{&FT4 zVA2E#5FkK+009C72oNAZfB*pk1PBlyK!5-N0tDtqVE;Gx53TDIQTIm zIQs(S*`MN>nqk~d)2W{+PVszkrlxK(QxGVpFoq#!SYT-_Rh1zb5B|v}x z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5;&ITaB9pVN)CECK`w5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&USSSJU|ApFaizPsS009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7csfjJcr|DV&1wJZVz2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5LhUI)_PiQ zY@~%+y~PqBK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB=E{5NI_*|FQ%K5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7e?Yzp*ebJ}K2fB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72s8ykSewfEzdsXvos!llv!K)XN+!bACMEW{kJW7s~i{EW^`xUX5|{=UXrRtoY&_gwz< zRvE$%TJf3i_%h&Xxb|Z>^W9wXR6Vl#j!mc_rtE>35?{Z6IbwcGK;>nSRoF zHt&;$O2P80zs-^hqp)?4qhw2`7#YP=_?Tw>wDeltgbe?$_^GM=@ z?HoDm9erzgM=HMNFC|BJRZD;X0RjXF5FkK+009C72oNAZfB*pk1PBlya0-DOe>pzY z-vZ3vILv9#>4l5=+gV#xaVim;YNYBg{{HIj=YJUg^!l*j-g~>b;hnpk&0)>Sr{)*n zj_ut&1&%HR2oRWKfn%Q^H4q>`fB*pk1PBlyK!5-N0t5&UAVA>E3Jm7>U0X{dK!5-N z0t5&U__zX7c= character.codePointAt(0); +const first = x => x[0]; +const last = x => x[x.length - 1]; + +/** + * Convert provided string into an array of Unicode Code Points. + * Based on https://stackoverflow.com/a/21409165/1556249 + * and https://www.npmjs.com/package/code-point-at. + * @param {string} input + * @returns {number[]} + */ +function toCodePoints(input) { + const codepoints = []; + const size = input.length; + + for (let i = 0; i < size; i += 1) { + const before = input.charCodeAt(i); + + if (before >= 0xd800 && before <= 0xdbff && size > i + 1) { + const next = input.charCodeAt(i + 1); + + if (next >= 0xdc00 && next <= 0xdfff) { + codepoints.push((before - 0xd800) * 0x400 + next - 0xdc00 + 0x10000); + i += 1; + continue; + } + } + + codepoints.push(before); + } + + return codepoints; +} + +/** + * SASLprep. + * @param {string} input + * @param {Object} opts + * @param {boolean} opts.allowUnassigned + * @returns {string} + */ +function saslprep(input, opts = {}) { + if (typeof input !== 'string') { + throw new TypeError('Expected string.'); + } + + if (input.length === 0) { + return ''; + } + + // 1. Map + const mapped_input = toCodePoints(input) + // 1.1 mapping to space + .map(character => (mapping2space.get(character) ? 0x20 : character)) + // 1.2 mapping to nothing + .filter(character => !mapping2nothing.get(character)); + + // 2. Normalize + const normalized_input = String.fromCodePoint + .apply(null, mapped_input) + .normalize('NFKC'); + + const normalized_map = toCodePoints(normalized_input); + + // 3. Prohibit + const hasProhibited = normalized_map.some(character => + prohibited_characters.get(character) + ); + + if (hasProhibited) { + throw new Error( + 'Prohibited character, see https://tools.ietf.org/html/rfc4013#section-2.3' + ); + } + + // Unassigned Code Points + if (opts.allowUnassigned !== true) { + const hasUnassigned = normalized_map.some(character => + unassigned_code_points.get(character) + ); + + if (hasUnassigned) { + throw new Error( + 'Unassigned code point, see https://tools.ietf.org/html/rfc4013#section-2.5' + ); + } + } + + // 4. check bidi + + const hasBidiRAL = normalized_map.some(character => + bidirectional_r_al.get(character) + ); + + const hasBidiL = normalized_map.some(character => + bidirectional_l.get(character) + ); + + // 4.1 If a string contains any RandALCat character, the string MUST NOT + // contain any LCat character. + if (hasBidiRAL && hasBidiL) { + throw new Error( + 'String must not contain RandALCat and LCat at the same time,' + + ' see https://tools.ietf.org/html/rfc3454#section-6' + ); + } + + /** + * 4.2 If a string contains any RandALCat character, a RandALCat + * character MUST be the first character of the string, and a + * RandALCat character MUST be the last character of the string. + */ + + const isFirstBidiRAL = bidirectional_r_al.get( + getCodePoint(first(normalized_input)) + ); + const isLastBidiRAL = bidirectional_r_al.get( + getCodePoint(last(normalized_input)) + ); + + if (hasBidiRAL && !(isFirstBidiRAL && isLastBidiRAL)) { + throw new Error( + 'Bidirectional RandALCat character must be the first and the last' + + ' character of the string, see https://tools.ietf.org/html/rfc3454#section-6' + ); + } + + return normalized_input; +} diff --git a/node_modules/saslprep/lib/code-points.js b/node_modules/saslprep/lib/code-points.js new file mode 100644 index 000000000..222182c83 --- /dev/null +++ b/node_modules/saslprep/lib/code-points.js @@ -0,0 +1,996 @@ +'use strict'; + +const { range } = require('./util'); + +/** + * A.1 Unassigned code points in Unicode 3.2 + * @link https://tools.ietf.org/html/rfc3454#appendix-A.1 + */ +const unassigned_code_points = new Set([ + 0x0221, + ...range(0x0234, 0x024f), + ...range(0x02ae, 0x02af), + ...range(0x02ef, 0x02ff), + ...range(0x0350, 0x035f), + ...range(0x0370, 0x0373), + ...range(0x0376, 0x0379), + ...range(0x037b, 0x037d), + ...range(0x037f, 0x0383), + 0x038b, + 0x038d, + 0x03a2, + 0x03cf, + ...range(0x03f7, 0x03ff), + 0x0487, + 0x04cf, + ...range(0x04f6, 0x04f7), + ...range(0x04fa, 0x04ff), + ...range(0x0510, 0x0530), + ...range(0x0557, 0x0558), + 0x0560, + 0x0588, + ...range(0x058b, 0x0590), + 0x05a2, + 0x05ba, + ...range(0x05c5, 0x05cf), + ...range(0x05eb, 0x05ef), + ...range(0x05f5, 0x060b), + ...range(0x060d, 0x061a), + ...range(0x061c, 0x061e), + 0x0620, + ...range(0x063b, 0x063f), + ...range(0x0656, 0x065f), + ...range(0x06ee, 0x06ef), + 0x06ff, + 0x070e, + ...range(0x072d, 0x072f), + ...range(0x074b, 0x077f), + ...range(0x07b2, 0x0900), + 0x0904, + ...range(0x093a, 0x093b), + ...range(0x094e, 0x094f), + ...range(0x0955, 0x0957), + ...range(0x0971, 0x0980), + 0x0984, + ...range(0x098d, 0x098e), + ...range(0x0991, 0x0992), + 0x09a9, + 0x09b1, + ...range(0x09b3, 0x09b5), + ...range(0x09ba, 0x09bb), + 0x09bd, + ...range(0x09c5, 0x09c6), + ...range(0x09c9, 0x09ca), + ...range(0x09ce, 0x09d6), + ...range(0x09d8, 0x09db), + 0x09de, + ...range(0x09e4, 0x09e5), + ...range(0x09fb, 0x0a01), + ...range(0x0a03, 0x0a04), + ...range(0x0a0b, 0x0a0e), + ...range(0x0a11, 0x0a12), + 0x0a29, + 0x0a31, + 0x0a34, + 0x0a37, + ...range(0x0a3a, 0x0a3b), + 0x0a3d, + ...range(0x0a43, 0x0a46), + ...range(0x0a49, 0x0a4a), + ...range(0x0a4e, 0x0a58), + 0x0a5d, + ...range(0x0a5f, 0x0a65), + ...range(0x0a75, 0x0a80), + 0x0a84, + 0x0a8c, + 0x0a8e, + 0x0a92, + 0x0aa9, + 0x0ab1, + 0x0ab4, + ...range(0x0aba, 0x0abb), + 0x0ac6, + 0x0aca, + ...range(0x0ace, 0x0acf), + ...range(0x0ad1, 0x0adf), + ...range(0x0ae1, 0x0ae5), + ...range(0x0af0, 0x0b00), + 0x0b04, + ...range(0x0b0d, 0x0b0e), + ...range(0x0b11, 0x0b12), + 0x0b29, + 0x0b31, + ...range(0x0b34, 0x0b35), + ...range(0x0b3a, 0x0b3b), + ...range(0x0b44, 0x0b46), + ...range(0x0b49, 0x0b4a), + ...range(0x0b4e, 0x0b55), + ...range(0x0b58, 0x0b5b), + 0x0b5e, + ...range(0x0b62, 0x0b65), + ...range(0x0b71, 0x0b81), + 0x0b84, + ...range(0x0b8b, 0x0b8d), + 0x0b91, + ...range(0x0b96, 0x0b98), + 0x0b9b, + 0x0b9d, + ...range(0x0ba0, 0x0ba2), + ...range(0x0ba5, 0x0ba7), + ...range(0x0bab, 0x0bad), + 0x0bb6, + ...range(0x0bba, 0x0bbd), + ...range(0x0bc3, 0x0bc5), + 0x0bc9, + ...range(0x0bce, 0x0bd6), + ...range(0x0bd8, 0x0be6), + ...range(0x0bf3, 0x0c00), + 0x0c04, + 0x0c0d, + 0x0c11, + 0x0c29, + 0x0c34, + ...range(0x0c3a, 0x0c3d), + 0x0c45, + 0x0c49, + ...range(0x0c4e, 0x0c54), + ...range(0x0c57, 0x0c5f), + ...range(0x0c62, 0x0c65), + ...range(0x0c70, 0x0c81), + 0x0c84, + 0x0c8d, + 0x0c91, + 0x0ca9, + 0x0cb4, + ...range(0x0cba, 0x0cbd), + 0x0cc5, + 0x0cc9, + ...range(0x0cce, 0x0cd4), + ...range(0x0cd7, 0x0cdd), + 0x0cdf, + ...range(0x0ce2, 0x0ce5), + ...range(0x0cf0, 0x0d01), + 0x0d04, + 0x0d0d, + 0x0d11, + 0x0d29, + ...range(0x0d3a, 0x0d3d), + ...range(0x0d44, 0x0d45), + 0x0d49, + ...range(0x0d4e, 0x0d56), + ...range(0x0d58, 0x0d5f), + ...range(0x0d62, 0x0d65), + ...range(0x0d70, 0x0d81), + 0x0d84, + ...range(0x0d97, 0x0d99), + 0x0db2, + 0x0dbc, + ...range(0x0dbe, 0x0dbf), + ...range(0x0dc7, 0x0dc9), + ...range(0x0dcb, 0x0dce), + 0x0dd5, + 0x0dd7, + ...range(0x0de0, 0x0df1), + ...range(0x0df5, 0x0e00), + ...range(0x0e3b, 0x0e3e), + ...range(0x0e5c, 0x0e80), + 0x0e83, + ...range(0x0e85, 0x0e86), + 0x0e89, + ...range(0x0e8b, 0x0e8c), + ...range(0x0e8e, 0x0e93), + 0x0e98, + 0x0ea0, + 0x0ea4, + 0x0ea6, + ...range(0x0ea8, 0x0ea9), + 0x0eac, + 0x0eba, + ...range(0x0ebe, 0x0ebf), + 0x0ec5, + 0x0ec7, + ...range(0x0ece, 0x0ecf), + ...range(0x0eda, 0x0edb), + ...range(0x0ede, 0x0eff), + 0x0f48, + ...range(0x0f6b, 0x0f70), + ...range(0x0f8c, 0x0f8f), + 0x0f98, + 0x0fbd, + ...range(0x0fcd, 0x0fce), + ...range(0x0fd0, 0x0fff), + 0x1022, + 0x1028, + 0x102b, + ...range(0x1033, 0x1035), + ...range(0x103a, 0x103f), + ...range(0x105a, 0x109f), + ...range(0x10c6, 0x10cf), + ...range(0x10f9, 0x10fa), + ...range(0x10fc, 0x10ff), + ...range(0x115a, 0x115e), + ...range(0x11a3, 0x11a7), + ...range(0x11fa, 0x11ff), + 0x1207, + 0x1247, + 0x1249, + ...range(0x124e, 0x124f), + 0x1257, + 0x1259, + ...range(0x125e, 0x125f), + 0x1287, + 0x1289, + ...range(0x128e, 0x128f), + 0x12af, + 0x12b1, + ...range(0x12b6, 0x12b7), + 0x12bf, + 0x12c1, + ...range(0x12c6, 0x12c7), + 0x12cf, + 0x12d7, + 0x12ef, + 0x130f, + 0x1311, + ...range(0x1316, 0x1317), + 0x131f, + 0x1347, + ...range(0x135b, 0x1360), + ...range(0x137d, 0x139f), + ...range(0x13f5, 0x1400), + ...range(0x1677, 0x167f), + ...range(0x169d, 0x169f), + ...range(0x16f1, 0x16ff), + 0x170d, + ...range(0x1715, 0x171f), + ...range(0x1737, 0x173f), + ...range(0x1754, 0x175f), + 0x176d, + 0x1771, + ...range(0x1774, 0x177f), + ...range(0x17dd, 0x17df), + ...range(0x17ea, 0x17ff), + 0x180f, + ...range(0x181a, 0x181f), + ...range(0x1878, 0x187f), + ...range(0x18aa, 0x1dff), + ...range(0x1e9c, 0x1e9f), + ...range(0x1efa, 0x1eff), + ...range(0x1f16, 0x1f17), + ...range(0x1f1e, 0x1f1f), + ...range(0x1f46, 0x1f47), + ...range(0x1f4e, 0x1f4f), + 0x1f58, + 0x1f5a, + 0x1f5c, + 0x1f5e, + ...range(0x1f7e, 0x1f7f), + 0x1fb5, + 0x1fc5, + ...range(0x1fd4, 0x1fd5), + 0x1fdc, + ...range(0x1ff0, 0x1ff1), + 0x1ff5, + 0x1fff, + ...range(0x2053, 0x2056), + ...range(0x2058, 0x205e), + ...range(0x2064, 0x2069), + ...range(0x2072, 0x2073), + ...range(0x208f, 0x209f), + ...range(0x20b2, 0x20cf), + ...range(0x20eb, 0x20ff), + ...range(0x213b, 0x213c), + ...range(0x214c, 0x2152), + ...range(0x2184, 0x218f), + ...range(0x23cf, 0x23ff), + ...range(0x2427, 0x243f), + ...range(0x244b, 0x245f), + 0x24ff, + ...range(0x2614, 0x2615), + 0x2618, + ...range(0x267e, 0x267f), + ...range(0x268a, 0x2700), + 0x2705, + ...range(0x270a, 0x270b), + 0x2728, + 0x274c, + 0x274e, + ...range(0x2753, 0x2755), + 0x2757, + ...range(0x275f, 0x2760), + ...range(0x2795, 0x2797), + 0x27b0, + ...range(0x27bf, 0x27cf), + ...range(0x27ec, 0x27ef), + ...range(0x2b00, 0x2e7f), + 0x2e9a, + ...range(0x2ef4, 0x2eff), + ...range(0x2fd6, 0x2fef), + ...range(0x2ffc, 0x2fff), + 0x3040, + ...range(0x3097, 0x3098), + ...range(0x3100, 0x3104), + ...range(0x312d, 0x3130), + 0x318f, + ...range(0x31b8, 0x31ef), + ...range(0x321d, 0x321f), + ...range(0x3244, 0x3250), + ...range(0x327c, 0x327e), + ...range(0x32cc, 0x32cf), + 0x32ff, + ...range(0x3377, 0x337a), + ...range(0x33de, 0x33df), + 0x33ff, + ...range(0x4db6, 0x4dff), + ...range(0x9fa6, 0x9fff), + ...range(0xa48d, 0xa48f), + ...range(0xa4c7, 0xabff), + ...range(0xd7a4, 0xd7ff), + ...range(0xfa2e, 0xfa2f), + ...range(0xfa6b, 0xfaff), + ...range(0xfb07, 0xfb12), + ...range(0xfb18, 0xfb1c), + 0xfb37, + 0xfb3d, + 0xfb3f, + 0xfb42, + 0xfb45, + ...range(0xfbb2, 0xfbd2), + ...range(0xfd40, 0xfd4f), + ...range(0xfd90, 0xfd91), + ...range(0xfdc8, 0xfdcf), + ...range(0xfdfd, 0xfdff), + ...range(0xfe10, 0xfe1f), + ...range(0xfe24, 0xfe2f), + ...range(0xfe47, 0xfe48), + 0xfe53, + 0xfe67, + ...range(0xfe6c, 0xfe6f), + 0xfe75, + ...range(0xfefd, 0xfefe), + 0xff00, + ...range(0xffbf, 0xffc1), + ...range(0xffc8, 0xffc9), + ...range(0xffd0, 0xffd1), + ...range(0xffd8, 0xffd9), + ...range(0xffdd, 0xffdf), + 0xffe7, + ...range(0xffef, 0xfff8), + ...range(0x10000, 0x102ff), + 0x1031f, + ...range(0x10324, 0x1032f), + ...range(0x1034b, 0x103ff), + ...range(0x10426, 0x10427), + ...range(0x1044e, 0x1cfff), + ...range(0x1d0f6, 0x1d0ff), + ...range(0x1d127, 0x1d129), + ...range(0x1d1de, 0x1d3ff), + 0x1d455, + 0x1d49d, + ...range(0x1d4a0, 0x1d4a1), + ...range(0x1d4a3, 0x1d4a4), + ...range(0x1d4a7, 0x1d4a8), + 0x1d4ad, + 0x1d4ba, + 0x1d4bc, + 0x1d4c1, + 0x1d4c4, + 0x1d506, + ...range(0x1d50b, 0x1d50c), + 0x1d515, + 0x1d51d, + 0x1d53a, + 0x1d53f, + 0x1d545, + ...range(0x1d547, 0x1d549), + 0x1d551, + ...range(0x1d6a4, 0x1d6a7), + ...range(0x1d7ca, 0x1d7cd), + ...range(0x1d800, 0x1fffd), + ...range(0x2a6d7, 0x2f7ff), + ...range(0x2fa1e, 0x2fffd), + ...range(0x30000, 0x3fffd), + ...range(0x40000, 0x4fffd), + ...range(0x50000, 0x5fffd), + ...range(0x60000, 0x6fffd), + ...range(0x70000, 0x7fffd), + ...range(0x80000, 0x8fffd), + ...range(0x90000, 0x9fffd), + ...range(0xa0000, 0xafffd), + ...range(0xb0000, 0xbfffd), + ...range(0xc0000, 0xcfffd), + ...range(0xd0000, 0xdfffd), + 0xe0000, + ...range(0xe0002, 0xe001f), + ...range(0xe0080, 0xefffd), +]); + +/** + * B.1 Commonly mapped to nothing + * @link https://tools.ietf.org/html/rfc3454#appendix-B.1 + */ +const commonly_mapped_to_nothing = new Set([ + 0x00ad, + 0x034f, + 0x1806, + 0x180b, + 0x180c, + 0x180d, + 0x200b, + 0x200c, + 0x200d, + 0x2060, + 0xfe00, + 0xfe01, + 0xfe02, + 0xfe03, + 0xfe04, + 0xfe05, + 0xfe06, + 0xfe07, + 0xfe08, + 0xfe09, + 0xfe0a, + 0xfe0b, + 0xfe0c, + 0xfe0d, + 0xfe0e, + 0xfe0f, + 0xfeff, +]); + +/** + * C.1.2 Non-ASCII space characters + * @link https://tools.ietf.org/html/rfc3454#appendix-C.1.2 + */ +const non_ASCII_space_characters = new Set([ + 0x00a0 /* NO-BREAK SPACE */, + 0x1680 /* OGHAM SPACE MARK */, + 0x2000 /* EN QUAD */, + 0x2001 /* EM QUAD */, + 0x2002 /* EN SPACE */, + 0x2003 /* EM SPACE */, + 0x2004 /* THREE-PER-EM SPACE */, + 0x2005 /* FOUR-PER-EM SPACE */, + 0x2006 /* SIX-PER-EM SPACE */, + 0x2007 /* FIGURE SPACE */, + 0x2008 /* PUNCTUATION SPACE */, + 0x2009 /* THIN SPACE */, + 0x200a /* HAIR SPACE */, + 0x200b /* ZERO WIDTH SPACE */, + 0x202f /* NARROW NO-BREAK SPACE */, + 0x205f /* MEDIUM MATHEMATICAL SPACE */, + 0x3000 /* IDEOGRAPHIC SPACE */, +]); + +/** + * 2.3. Prohibited Output + * @type {Set} + */ +const prohibited_characters = new Set([ + ...non_ASCII_space_characters, + + /** + * C.2.1 ASCII control characters + * @link https://tools.ietf.org/html/rfc3454#appendix-C.2.1 + */ + ...range(0, 0x001f) /* [CONTROL CHARACTERS] */, + 0x007f /* DELETE */, + + /** + * C.2.2 Non-ASCII control characters + * @link https://tools.ietf.org/html/rfc3454#appendix-C.2.2 + */ + ...range(0x0080, 0x009f) /* [CONTROL CHARACTERS] */, + 0x06dd /* ARABIC END OF AYAH */, + 0x070f /* SYRIAC ABBREVIATION MARK */, + 0x180e /* MONGOLIAN VOWEL SEPARATOR */, + 0x200c /* ZERO WIDTH NON-JOINER */, + 0x200d /* ZERO WIDTH JOINER */, + 0x2028 /* LINE SEPARATOR */, + 0x2029 /* PARAGRAPH SEPARATOR */, + 0x2060 /* WORD JOINER */, + 0x2061 /* FUNCTION APPLICATION */, + 0x2062 /* INVISIBLE TIMES */, + 0x2063 /* INVISIBLE SEPARATOR */, + ...range(0x206a, 0x206f) /* [CONTROL CHARACTERS] */, + 0xfeff /* ZERO WIDTH NO-BREAK SPACE */, + ...range(0xfff9, 0xfffc) /* [CONTROL CHARACTERS] */, + ...range(0x1d173, 0x1d17a) /* [MUSICAL CONTROL CHARACTERS] */, + + /** + * C.3 Private use + * @link https://tools.ietf.org/html/rfc3454#appendix-C.3 + */ + ...range(0xe000, 0xf8ff) /* [PRIVATE USE, PLANE 0] */, + ...range(0xf0000, 0xffffd) /* [PRIVATE USE, PLANE 15] */, + ...range(0x100000, 0x10fffd) /* [PRIVATE USE, PLANE 16] */, + + /** + * C.4 Non-character code points + * @link https://tools.ietf.org/html/rfc3454#appendix-C.4 + */ + ...range(0xfdd0, 0xfdef) /* [NONCHARACTER CODE POINTS] */, + ...range(0xfffe, 0xffff) /* [NONCHARACTER CODE POINTS] */, + ...range(0x1fffe, 0x1ffff) /* [NONCHARACTER CODE POINTS] */, + ...range(0x2fffe, 0x2ffff) /* [NONCHARACTER CODE POINTS] */, + ...range(0x3fffe, 0x3ffff) /* [NONCHARACTER CODE POINTS] */, + ...range(0x4fffe, 0x4ffff) /* [NONCHARACTER CODE POINTS] */, + ...range(0x5fffe, 0x5ffff) /* [NONCHARACTER CODE POINTS] */, + ...range(0x6fffe, 0x6ffff) /* [NONCHARACTER CODE POINTS] */, + ...range(0x7fffe, 0x7ffff) /* [NONCHARACTER CODE POINTS] */, + ...range(0x8fffe, 0x8ffff) /* [NONCHARACTER CODE POINTS] */, + ...range(0x9fffe, 0x9ffff) /* [NONCHARACTER CODE POINTS] */, + ...range(0xafffe, 0xaffff) /* [NONCHARACTER CODE POINTS] */, + ...range(0xbfffe, 0xbffff) /* [NONCHARACTER CODE POINTS] */, + ...range(0xcfffe, 0xcffff) /* [NONCHARACTER CODE POINTS] */, + ...range(0xdfffe, 0xdffff) /* [NONCHARACTER CODE POINTS] */, + ...range(0xefffe, 0xeffff) /* [NONCHARACTER CODE POINTS] */, + ...range(0x10fffe, 0x10ffff) /* [NONCHARACTER CODE POINTS] */, + + /** + * C.5 Surrogate codes + * @link https://tools.ietf.org/html/rfc3454#appendix-C.5 + */ + ...range(0xd800, 0xdfff), + + /** + * C.6 Inappropriate for plain text + * @link https://tools.ietf.org/html/rfc3454#appendix-C.6 + */ + 0xfff9 /* INTERLINEAR ANNOTATION ANCHOR */, + 0xfffa /* INTERLINEAR ANNOTATION SEPARATOR */, + 0xfffb /* INTERLINEAR ANNOTATION TERMINATOR */, + 0xfffc /* OBJECT REPLACEMENT CHARACTER */, + 0xfffd /* REPLACEMENT CHARACTER */, + + /** + * C.7 Inappropriate for canonical representation + * @link https://tools.ietf.org/html/rfc3454#appendix-C.7 + */ + ...range(0x2ff0, 0x2ffb) /* [IDEOGRAPHIC DESCRIPTION CHARACTERS] */, + + /** + * C.8 Change display properties or are deprecated + * @link https://tools.ietf.org/html/rfc3454#appendix-C.8 + */ + 0x0340 /* COMBINING GRAVE TONE MARK */, + 0x0341 /* COMBINING ACUTE TONE MARK */, + 0x200e /* LEFT-TO-RIGHT MARK */, + 0x200f /* RIGHT-TO-LEFT MARK */, + 0x202a /* LEFT-TO-RIGHT EMBEDDING */, + 0x202b /* RIGHT-TO-LEFT EMBEDDING */, + 0x202c /* POP DIRECTIONAL FORMATTING */, + 0x202d /* LEFT-TO-RIGHT OVERRIDE */, + 0x202e /* RIGHT-TO-LEFT OVERRIDE */, + 0x206a /* INHIBIT SYMMETRIC SWAPPING */, + 0x206b /* ACTIVATE SYMMETRIC SWAPPING */, + 0x206c /* INHIBIT ARABIC FORM SHAPING */, + 0x206d /* ACTIVATE ARABIC FORM SHAPING */, + 0x206e /* NATIONAL DIGIT SHAPES */, + 0x206f /* NOMINAL DIGIT SHAPES */, + + /** + * C.9 Tagging characters + * @link https://tools.ietf.org/html/rfc3454#appendix-C.9 + */ + 0xe0001 /* LANGUAGE TAG */, + ...range(0xe0020, 0xe007f) /* [TAGGING CHARACTERS] */, +]); + +/** + * D.1 Characters with bidirectional property "R" or "AL" + * @link https://tools.ietf.org/html/rfc3454#appendix-D.1 + */ +const bidirectional_r_al = new Set([ + 0x05be, + 0x05c0, + 0x05c3, + ...range(0x05d0, 0x05ea), + ...range(0x05f0, 0x05f4), + 0x061b, + 0x061f, + ...range(0x0621, 0x063a), + ...range(0x0640, 0x064a), + ...range(0x066d, 0x066f), + ...range(0x0671, 0x06d5), + 0x06dd, + ...range(0x06e5, 0x06e6), + ...range(0x06fa, 0x06fe), + ...range(0x0700, 0x070d), + 0x0710, + ...range(0x0712, 0x072c), + ...range(0x0780, 0x07a5), + 0x07b1, + 0x200f, + 0xfb1d, + ...range(0xfb1f, 0xfb28), + ...range(0xfb2a, 0xfb36), + ...range(0xfb38, 0xfb3c), + 0xfb3e, + ...range(0xfb40, 0xfb41), + ...range(0xfb43, 0xfb44), + ...range(0xfb46, 0xfbb1), + ...range(0xfbd3, 0xfd3d), + ...range(0xfd50, 0xfd8f), + ...range(0xfd92, 0xfdc7), + ...range(0xfdf0, 0xfdfc), + ...range(0xfe70, 0xfe74), + ...range(0xfe76, 0xfefc), +]); + +/** + * D.2 Characters with bidirectional property "L" + * @link https://tools.ietf.org/html/rfc3454#appendix-D.2 + */ +const bidirectional_l = new Set([ + ...range(0x0041, 0x005a), + ...range(0x0061, 0x007a), + 0x00aa, + 0x00b5, + 0x00ba, + ...range(0x00c0, 0x00d6), + ...range(0x00d8, 0x00f6), + ...range(0x00f8, 0x0220), + ...range(0x0222, 0x0233), + ...range(0x0250, 0x02ad), + ...range(0x02b0, 0x02b8), + ...range(0x02bb, 0x02c1), + ...range(0x02d0, 0x02d1), + ...range(0x02e0, 0x02e4), + 0x02ee, + 0x037a, + 0x0386, + ...range(0x0388, 0x038a), + 0x038c, + ...range(0x038e, 0x03a1), + ...range(0x03a3, 0x03ce), + ...range(0x03d0, 0x03f5), + ...range(0x0400, 0x0482), + ...range(0x048a, 0x04ce), + ...range(0x04d0, 0x04f5), + ...range(0x04f8, 0x04f9), + ...range(0x0500, 0x050f), + ...range(0x0531, 0x0556), + ...range(0x0559, 0x055f), + ...range(0x0561, 0x0587), + 0x0589, + 0x0903, + ...range(0x0905, 0x0939), + ...range(0x093d, 0x0940), + ...range(0x0949, 0x094c), + 0x0950, + ...range(0x0958, 0x0961), + ...range(0x0964, 0x0970), + ...range(0x0982, 0x0983), + ...range(0x0985, 0x098c), + ...range(0x098f, 0x0990), + ...range(0x0993, 0x09a8), + ...range(0x09aa, 0x09b0), + 0x09b2, + ...range(0x09b6, 0x09b9), + ...range(0x09be, 0x09c0), + ...range(0x09c7, 0x09c8), + ...range(0x09cb, 0x09cc), + 0x09d7, + ...range(0x09dc, 0x09dd), + ...range(0x09df, 0x09e1), + ...range(0x09e6, 0x09f1), + ...range(0x09f4, 0x09fa), + ...range(0x0a05, 0x0a0a), + ...range(0x0a0f, 0x0a10), + ...range(0x0a13, 0x0a28), + ...range(0x0a2a, 0x0a30), + ...range(0x0a32, 0x0a33), + ...range(0x0a35, 0x0a36), + ...range(0x0a38, 0x0a39), + ...range(0x0a3e, 0x0a40), + ...range(0x0a59, 0x0a5c), + 0x0a5e, + ...range(0x0a66, 0x0a6f), + ...range(0x0a72, 0x0a74), + 0x0a83, + ...range(0x0a85, 0x0a8b), + 0x0a8d, + ...range(0x0a8f, 0x0a91), + ...range(0x0a93, 0x0aa8), + ...range(0x0aaa, 0x0ab0), + ...range(0x0ab2, 0x0ab3), + ...range(0x0ab5, 0x0ab9), + ...range(0x0abd, 0x0ac0), + 0x0ac9, + ...range(0x0acb, 0x0acc), + 0x0ad0, + 0x0ae0, + ...range(0x0ae6, 0x0aef), + ...range(0x0b02, 0x0b03), + ...range(0x0b05, 0x0b0c), + ...range(0x0b0f, 0x0b10), + ...range(0x0b13, 0x0b28), + ...range(0x0b2a, 0x0b30), + ...range(0x0b32, 0x0b33), + ...range(0x0b36, 0x0b39), + ...range(0x0b3d, 0x0b3e), + 0x0b40, + ...range(0x0b47, 0x0b48), + ...range(0x0b4b, 0x0b4c), + 0x0b57, + ...range(0x0b5c, 0x0b5d), + ...range(0x0b5f, 0x0b61), + ...range(0x0b66, 0x0b70), + 0x0b83, + ...range(0x0b85, 0x0b8a), + ...range(0x0b8e, 0x0b90), + ...range(0x0b92, 0x0b95), + ...range(0x0b99, 0x0b9a), + 0x0b9c, + ...range(0x0b9e, 0x0b9f), + ...range(0x0ba3, 0x0ba4), + ...range(0x0ba8, 0x0baa), + ...range(0x0bae, 0x0bb5), + ...range(0x0bb7, 0x0bb9), + ...range(0x0bbe, 0x0bbf), + ...range(0x0bc1, 0x0bc2), + ...range(0x0bc6, 0x0bc8), + ...range(0x0bca, 0x0bcc), + 0x0bd7, + ...range(0x0be7, 0x0bf2), + ...range(0x0c01, 0x0c03), + ...range(0x0c05, 0x0c0c), + ...range(0x0c0e, 0x0c10), + ...range(0x0c12, 0x0c28), + ...range(0x0c2a, 0x0c33), + ...range(0x0c35, 0x0c39), + ...range(0x0c41, 0x0c44), + ...range(0x0c60, 0x0c61), + ...range(0x0c66, 0x0c6f), + ...range(0x0c82, 0x0c83), + ...range(0x0c85, 0x0c8c), + ...range(0x0c8e, 0x0c90), + ...range(0x0c92, 0x0ca8), + ...range(0x0caa, 0x0cb3), + ...range(0x0cb5, 0x0cb9), + 0x0cbe, + ...range(0x0cc0, 0x0cc4), + ...range(0x0cc7, 0x0cc8), + ...range(0x0cca, 0x0ccb), + ...range(0x0cd5, 0x0cd6), + 0x0cde, + ...range(0x0ce0, 0x0ce1), + ...range(0x0ce6, 0x0cef), + ...range(0x0d02, 0x0d03), + ...range(0x0d05, 0x0d0c), + ...range(0x0d0e, 0x0d10), + ...range(0x0d12, 0x0d28), + ...range(0x0d2a, 0x0d39), + ...range(0x0d3e, 0x0d40), + ...range(0x0d46, 0x0d48), + ...range(0x0d4a, 0x0d4c), + 0x0d57, + ...range(0x0d60, 0x0d61), + ...range(0x0d66, 0x0d6f), + ...range(0x0d82, 0x0d83), + ...range(0x0d85, 0x0d96), + ...range(0x0d9a, 0x0db1), + ...range(0x0db3, 0x0dbb), + 0x0dbd, + ...range(0x0dc0, 0x0dc6), + ...range(0x0dcf, 0x0dd1), + ...range(0x0dd8, 0x0ddf), + ...range(0x0df2, 0x0df4), + ...range(0x0e01, 0x0e30), + ...range(0x0e32, 0x0e33), + ...range(0x0e40, 0x0e46), + ...range(0x0e4f, 0x0e5b), + ...range(0x0e81, 0x0e82), + 0x0e84, + ...range(0x0e87, 0x0e88), + 0x0e8a, + 0x0e8d, + ...range(0x0e94, 0x0e97), + ...range(0x0e99, 0x0e9f), + ...range(0x0ea1, 0x0ea3), + 0x0ea5, + 0x0ea7, + ...range(0x0eaa, 0x0eab), + ...range(0x0ead, 0x0eb0), + ...range(0x0eb2, 0x0eb3), + 0x0ebd, + ...range(0x0ec0, 0x0ec4), + 0x0ec6, + ...range(0x0ed0, 0x0ed9), + ...range(0x0edc, 0x0edd), + ...range(0x0f00, 0x0f17), + ...range(0x0f1a, 0x0f34), + 0x0f36, + 0x0f38, + ...range(0x0f3e, 0x0f47), + ...range(0x0f49, 0x0f6a), + 0x0f7f, + 0x0f85, + ...range(0x0f88, 0x0f8b), + ...range(0x0fbe, 0x0fc5), + ...range(0x0fc7, 0x0fcc), + 0x0fcf, + ...range(0x1000, 0x1021), + ...range(0x1023, 0x1027), + ...range(0x1029, 0x102a), + 0x102c, + 0x1031, + 0x1038, + ...range(0x1040, 0x1057), + ...range(0x10a0, 0x10c5), + ...range(0x10d0, 0x10f8), + 0x10fb, + ...range(0x1100, 0x1159), + ...range(0x115f, 0x11a2), + ...range(0x11a8, 0x11f9), + ...range(0x1200, 0x1206), + ...range(0x1208, 0x1246), + 0x1248, + ...range(0x124a, 0x124d), + ...range(0x1250, 0x1256), + 0x1258, + ...range(0x125a, 0x125d), + ...range(0x1260, 0x1286), + 0x1288, + ...range(0x128a, 0x128d), + ...range(0x1290, 0x12ae), + 0x12b0, + ...range(0x12b2, 0x12b5), + ...range(0x12b8, 0x12be), + 0x12c0, + ...range(0x12c2, 0x12c5), + ...range(0x12c8, 0x12ce), + ...range(0x12d0, 0x12d6), + ...range(0x12d8, 0x12ee), + ...range(0x12f0, 0x130e), + 0x1310, + ...range(0x1312, 0x1315), + ...range(0x1318, 0x131e), + ...range(0x1320, 0x1346), + ...range(0x1348, 0x135a), + ...range(0x1361, 0x137c), + ...range(0x13a0, 0x13f4), + ...range(0x1401, 0x1676), + ...range(0x1681, 0x169a), + ...range(0x16a0, 0x16f0), + ...range(0x1700, 0x170c), + ...range(0x170e, 0x1711), + ...range(0x1720, 0x1731), + ...range(0x1735, 0x1736), + ...range(0x1740, 0x1751), + ...range(0x1760, 0x176c), + ...range(0x176e, 0x1770), + ...range(0x1780, 0x17b6), + ...range(0x17be, 0x17c5), + ...range(0x17c7, 0x17c8), + ...range(0x17d4, 0x17da), + 0x17dc, + ...range(0x17e0, 0x17e9), + ...range(0x1810, 0x1819), + ...range(0x1820, 0x1877), + ...range(0x1880, 0x18a8), + ...range(0x1e00, 0x1e9b), + ...range(0x1ea0, 0x1ef9), + ...range(0x1f00, 0x1f15), + ...range(0x1f18, 0x1f1d), + ...range(0x1f20, 0x1f45), + ...range(0x1f48, 0x1f4d), + ...range(0x1f50, 0x1f57), + 0x1f59, + 0x1f5b, + 0x1f5d, + ...range(0x1f5f, 0x1f7d), + ...range(0x1f80, 0x1fb4), + ...range(0x1fb6, 0x1fbc), + 0x1fbe, + ...range(0x1fc2, 0x1fc4), + ...range(0x1fc6, 0x1fcc), + ...range(0x1fd0, 0x1fd3), + ...range(0x1fd6, 0x1fdb), + ...range(0x1fe0, 0x1fec), + ...range(0x1ff2, 0x1ff4), + ...range(0x1ff6, 0x1ffc), + 0x200e, + 0x2071, + 0x207f, + 0x2102, + 0x2107, + ...range(0x210a, 0x2113), + 0x2115, + ...range(0x2119, 0x211d), + 0x2124, + 0x2126, + 0x2128, + ...range(0x212a, 0x212d), + ...range(0x212f, 0x2131), + ...range(0x2133, 0x2139), + ...range(0x213d, 0x213f), + ...range(0x2145, 0x2149), + ...range(0x2160, 0x2183), + ...range(0x2336, 0x237a), + 0x2395, + ...range(0x249c, 0x24e9), + ...range(0x3005, 0x3007), + ...range(0x3021, 0x3029), + ...range(0x3031, 0x3035), + ...range(0x3038, 0x303c), + ...range(0x3041, 0x3096), + ...range(0x309d, 0x309f), + ...range(0x30a1, 0x30fa), + ...range(0x30fc, 0x30ff), + ...range(0x3105, 0x312c), + ...range(0x3131, 0x318e), + ...range(0x3190, 0x31b7), + ...range(0x31f0, 0x321c), + ...range(0x3220, 0x3243), + ...range(0x3260, 0x327b), + ...range(0x327f, 0x32b0), + ...range(0x32c0, 0x32cb), + ...range(0x32d0, 0x32fe), + ...range(0x3300, 0x3376), + ...range(0x337b, 0x33dd), + ...range(0x33e0, 0x33fe), + ...range(0x3400, 0x4db5), + ...range(0x4e00, 0x9fa5), + ...range(0xa000, 0xa48c), + ...range(0xac00, 0xd7a3), + ...range(0xd800, 0xfa2d), + ...range(0xfa30, 0xfa6a), + ...range(0xfb00, 0xfb06), + ...range(0xfb13, 0xfb17), + ...range(0xff21, 0xff3a), + ...range(0xff41, 0xff5a), + ...range(0xff66, 0xffbe), + ...range(0xffc2, 0xffc7), + ...range(0xffca, 0xffcf), + ...range(0xffd2, 0xffd7), + ...range(0xffda, 0xffdc), + ...range(0x10300, 0x1031e), + ...range(0x10320, 0x10323), + ...range(0x10330, 0x1034a), + ...range(0x10400, 0x10425), + ...range(0x10428, 0x1044d), + ...range(0x1d000, 0x1d0f5), + ...range(0x1d100, 0x1d126), + ...range(0x1d12a, 0x1d166), + ...range(0x1d16a, 0x1d172), + ...range(0x1d183, 0x1d184), + ...range(0x1d18c, 0x1d1a9), + ...range(0x1d1ae, 0x1d1dd), + ...range(0x1d400, 0x1d454), + ...range(0x1d456, 0x1d49c), + ...range(0x1d49e, 0x1d49f), + 0x1d4a2, + ...range(0x1d4a5, 0x1d4a6), + ...range(0x1d4a9, 0x1d4ac), + ...range(0x1d4ae, 0x1d4b9), + 0x1d4bb, + ...range(0x1d4bd, 0x1d4c0), + ...range(0x1d4c2, 0x1d4c3), + ...range(0x1d4c5, 0x1d505), + ...range(0x1d507, 0x1d50a), + ...range(0x1d50d, 0x1d514), + ...range(0x1d516, 0x1d51c), + ...range(0x1d51e, 0x1d539), + ...range(0x1d53b, 0x1d53e), + ...range(0x1d540, 0x1d544), + 0x1d546, + ...range(0x1d54a, 0x1d550), + ...range(0x1d552, 0x1d6a3), + ...range(0x1d6a8, 0x1d7c9), + ...range(0x20000, 0x2a6d6), + ...range(0x2f800, 0x2fa1d), + ...range(0xf0000, 0xffffd), + ...range(0x100000, 0x10fffd), +]); + +module.exports = { + unassigned_code_points, + commonly_mapped_to_nothing, + non_ASCII_space_characters, + prohibited_characters, + bidirectional_r_al, + bidirectional_l, +}; diff --git a/node_modules/saslprep/lib/memory-code-points.js b/node_modules/saslprep/lib/memory-code-points.js new file mode 100644 index 000000000..cb0289c87 --- /dev/null +++ b/node_modules/saslprep/lib/memory-code-points.js @@ -0,0 +1,39 @@ +'use strict'; + +const fs = require('fs'); +const path = require('path'); +const bitfield = require('sparse-bitfield'); + +/* eslint-disable-next-line security/detect-non-literal-fs-filename */ +const memory = fs.readFileSync(path.resolve(__dirname, '../code-points.mem')); +let offset = 0; + +/** + * Loads each code points sequence from buffer. + * @returns {bitfield} + */ +function read() { + const size = memory.readUInt32BE(offset); + offset += 4; + + const codepoints = memory.slice(offset, offset + size); + offset += size; + + return bitfield({ buffer: codepoints }); +} + +const unassigned_code_points = read(); +const commonly_mapped_to_nothing = read(); +const non_ASCII_space_characters = read(); +const prohibited_characters = read(); +const bidirectional_r_al = read(); +const bidirectional_l = read(); + +module.exports = { + unassigned_code_points, + commonly_mapped_to_nothing, + non_ASCII_space_characters, + prohibited_characters, + bidirectional_r_al, + bidirectional_l, +}; diff --git a/node_modules/saslprep/lib/util.js b/node_modules/saslprep/lib/util.js new file mode 100644 index 000000000..506bdc992 --- /dev/null +++ b/node_modules/saslprep/lib/util.js @@ -0,0 +1,21 @@ +'use strict'; + +/** + * Create an array of numbers. + * @param {number} from + * @param {number} to + * @returns {number[]} + */ +function range(from, to) { + // TODO: make this inlined. + const list = new Array(to - from + 1); + + for (let i = 0; i < list.length; i += 1) { + list[i] = from + i; + } + return list; +} + +module.exports = { + range, +}; diff --git a/node_modules/saslprep/package.json b/node_modules/saslprep/package.json new file mode 100644 index 000000000..23c35627b --- /dev/null +++ b/node_modules/saslprep/package.json @@ -0,0 +1,72 @@ +{ + "name": "saslprep", + "version": "1.0.3", + "description": "SASLprep: Stringprep Profile for User Names and Passwords, rfc4013.", + "main": "index.js", + "scripts": { + "test": "npm run lint && npm run unit-test", + "lint": "npx eslint --quiet .", + "unit-test": "npx jest", + "gen-code-points": "node generate-code-points.js > code-points.mem" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/reklatsmasters/saslprep.git" + }, + "keywords": [ + "sasl", + "saslprep", + "stringprep", + "rfc4013", + "4013" + ], + "author": "Dmitry Tsvettsikh ", + "license": "MIT", + "bugs": { + "url": "https://github.com/reklatsmasters/saslprep/issues" + }, + "engines": { + "node": ">=6" + }, + "homepage": "https://github.com/reklatsmasters/saslprep#readme", + "devDependencies": { + "@nodertc/eslint-config": "^0.2.1", + "eslint": "^5.16.0", + "jest": "^23.6.0", + "prettier": "^1.14.3" + }, + "dependencies": { + "sparse-bitfield": "^3.0.3" + }, + "eslintConfig": { + "extends": "@nodertc", + "rules": { + "camelcase": "off", + "no-continue": "off" + }, + "overrides": [ + { + "files": [ + "test/*.js" + ], + "env": { + "jest": true + }, + "rules": { + "require-jsdoc": "off" + } + } + ] + }, + "jest": { + "modulePaths": [ + "" + ], + "testMatch": [ + "**/test/*.js" + ], + "testPathIgnorePatterns": [ + "/node_modules/" + ] + } +} diff --git a/node_modules/saslprep/readme.md b/node_modules/saslprep/readme.md new file mode 100644 index 000000000..8ff3d70d7 --- /dev/null +++ b/node_modules/saslprep/readme.md @@ -0,0 +1,31 @@ +# saslprep +[![Build Status](https://travis-ci.org/reklatsmasters/saslprep.svg?branch=master)](https://travis-ci.org/reklatsmasters/saslprep) +[![npm](https://img.shields.io/npm/v/saslprep.svg)](https://npmjs.org/package/saslprep) +[![node](https://img.shields.io/node/v/saslprep.svg)](https://npmjs.org/package/saslprep) +[![license](https://img.shields.io/npm/l/saslprep.svg)](https://npmjs.org/package/saslprep) +[![downloads](https://img.shields.io/npm/dm/saslprep.svg)](https://npmjs.org/package/saslprep) + +Stringprep Profile for User Names and Passwords, [rfc4013](https://tools.ietf.org/html/rfc4013) + +### Usage + +```js +const saslprep = require('saslprep') + +saslprep('password\u00AD') // password +saslprep('password\u0007') // Error: prohibited character +``` + +### API + +##### `saslprep(input: String, opts: Options): String` + +Normalize user name or password. + +##### `Options.allowUnassigned: bool` + +A special behavior for unassigned code points, see https://tools.ietf.org/html/rfc4013#section-2.5. Disabled by default. + +## License + +MIT, 2017-2019 (c) Dmitriy Tsvettsikh diff --git a/node_modules/saslprep/test/index.js b/node_modules/saslprep/test/index.js new file mode 100644 index 000000000..80c71af5e --- /dev/null +++ b/node_modules/saslprep/test/index.js @@ -0,0 +1,76 @@ +'use strict'; + +const saslprep = require('..'); + +const chr = String.fromCodePoint; + +test('should work with liatin letters', () => { + const str = 'user'; + expect(saslprep(str)).toEqual(str); +}); + +test('should work be case preserved', () => { + const str = 'USER'; + expect(saslprep(str)).toEqual(str); +}); + +test('should work with high code points (> U+FFFF)', () => { + const str = '\uD83D\uDE00'; + expect(saslprep(str, { allowUnassigned: true })).toEqual(str); +}); + +test('should remove `mapped to nothing` characters', () => { + expect(saslprep('I\u00ADX')).toEqual('IX'); +}); + +test('should replace `Non-ASCII space characters` with space', () => { + expect(saslprep('a\u00A0b')).toEqual('a\u0020b'); +}); + +test('should normalize as NFKC', () => { + expect(saslprep('\u00AA')).toEqual('a'); + expect(saslprep('\u2168')).toEqual('IX'); +}); + +test('should throws when prohibited characters', () => { + // C.2.1 ASCII control characters + expect(() => saslprep('a\u007Fb')).toThrow(); + + // C.2.2 Non-ASCII control characters + expect(() => saslprep('a\u06DDb')).toThrow(); + + // C.3 Private use + expect(() => saslprep('a\uE000b')).toThrow(); + + // C.4 Non-character code points + expect(() => saslprep(`a${chr(0x1fffe)}b`)).toThrow(); + + // C.5 Surrogate codes + expect(() => saslprep('a\uD800b')).toThrow(); + + // C.6 Inappropriate for plain text + expect(() => saslprep('a\uFFF9b')).toThrow(); + + // C.7 Inappropriate for canonical representation + expect(() => saslprep('a\u2FF0b')).toThrow(); + + // C.8 Change display properties or are deprecated + expect(() => saslprep('a\u200Eb')).toThrow(); + + // C.9 Tagging characters + expect(() => saslprep(`a${chr(0xe0001)}b`)).toThrow(); +}); + +test('should not containt RandALCat and LCat bidi', () => { + expect(() => saslprep('a\u06DD\u00AAb')).toThrow(); +}); + +test('RandALCat should be first and last', () => { + expect(() => saslprep('\u0627\u0031\u0628')).not.toThrow(); + expect(() => saslprep('\u0627\u0031')).toThrow(); +}); + +test('should handle unassigned code points', () => { + expect(() => saslprep('a\u0487')).toThrow(); + expect(() => saslprep('a\u0487', { allowUnassigned: true })).not.toThrow(); +}); diff --git a/node_modules/saslprep/test/util.js b/node_modules/saslprep/test/util.js new file mode 100644 index 000000000..355db3f85 --- /dev/null +++ b/node_modules/saslprep/test/util.js @@ -0,0 +1,16 @@ +'use strict'; + +const { setFlagsFromString } = require('v8'); +const { range } = require('../lib/util'); + +// 984 by default. +setFlagsFromString('--stack_size=500'); + +test('should work', () => { + const list = range(1, 3); + expect(list).toEqual([1, 2, 3]); +}); + +test('should work for large ranges', () => { + expect(() => range(1, 1e6)).not.toThrow(); +}); diff --git a/node_modules/send/HISTORY.md b/node_modules/send/HISTORY.md new file mode 100644 index 000000000..a73977494 --- /dev/null +++ b/node_modules/send/HISTORY.md @@ -0,0 +1,521 @@ +0.18.0 / 2022-03-23 +=================== + + * Fix emitted 416 error missing headers property + * Limit the headers removed for 304 response + * deps: depd@2.0.0 + - Replace internal `eval` usage with `Function` constructor + - Use instance methods on `process` to check for listeners + * deps: destroy@1.2.0 + * deps: http-errors@2.0.0 + - deps: depd@2.0.0 + - deps: statuses@2.0.1 + * deps: on-finished@2.4.1 + * deps: statuses@2.0.1 + +0.17.2 / 2021-12-11 +=================== + + * pref: ignore empty http tokens + * deps: http-errors@1.8.1 + - deps: inherits@2.0.4 + - deps: toidentifier@1.0.1 + - deps: setprototypeof@1.2.0 + * deps: ms@2.1.3 + +0.17.1 / 2019-05-10 +=================== + + * Set stricter CSP header in redirect & error responses + * deps: range-parser@~1.2.1 + +0.17.0 / 2019-05-03 +=================== + + * deps: http-errors@~1.7.2 + - Set constructor name when possible + - Use `toidentifier` module to make class names + - deps: depd@~1.1.2 + - deps: setprototypeof@1.1.1 + - deps: statuses@'>= 1.5.0 < 2' + * deps: mime@1.6.0 + - Add extensions for JPEG-2000 images + - Add new `font/*` types from IANA + - Add WASM mapping + - Update `.bdoc` to `application/bdoc` + - Update `.bmp` to `image/bmp` + - Update `.m4a` to `audio/mp4` + - Update `.rtf` to `application/rtf` + - Update `.wav` to `audio/wav` + - Update `.xml` to `application/xml` + - Update generic extensions to `application/octet-stream`: + `.deb`, `.dll`, `.dmg`, `.exe`, `.iso`, `.msi` + - Use mime-score module to resolve extension conflicts + * deps: ms@2.1.1 + - Add `week`/`w` support + - Fix negative number handling + * deps: statuses@~1.5.0 + * perf: remove redundant `path.normalize` call + +0.16.2 / 2018-02-07 +=================== + + * Fix incorrect end tag in default error & redirects + * deps: depd@~1.1.2 + - perf: remove argument reassignment + * deps: encodeurl@~1.0.2 + - Fix encoding `%` as last character + * deps: statuses@~1.4.0 + +0.16.1 / 2017-09-29 +=================== + + * Fix regression in edge-case behavior for empty `path` + +0.16.0 / 2017-09-27 +=================== + + * Add `immutable` option + * Fix missing `` in default error & redirects + * Use instance methods on steam to check for listeners + * deps: mime@1.4.1 + - Add 70 new types for file extensions + - Set charset as "UTF-8" for .js and .json + * perf: improve path validation speed + +0.15.6 / 2017-09-22 +=================== + + * deps: debug@2.6.9 + * perf: improve `If-Match` token parsing + +0.15.5 / 2017-09-20 +=================== + + * deps: etag@~1.8.1 + - perf: replace regular expression with substring + * deps: fresh@0.5.2 + - Fix handling of modified headers with invalid dates + - perf: improve ETag match loop + - perf: improve `If-None-Match` token parsing + +0.15.4 / 2017-08-05 +=================== + + * deps: debug@2.6.8 + * deps: depd@~1.1.1 + - Remove unnecessary `Buffer` loading + * deps: http-errors@~1.6.2 + - deps: depd@1.1.1 + +0.15.3 / 2017-05-16 +=================== + + * deps: debug@2.6.7 + - deps: ms@2.0.0 + * deps: ms@2.0.0 + +0.15.2 / 2017-04-26 +=================== + + * deps: debug@2.6.4 + - Fix `DEBUG_MAX_ARRAY_LENGTH` + - deps: ms@0.7.3 + * deps: ms@1.0.0 + +0.15.1 / 2017-03-04 +=================== + + * Fix issue when `Date.parse` does not return `NaN` on invalid date + * Fix strict violation in broken environments + +0.15.0 / 2017-02-25 +=================== + + * Support `If-Match` and `If-Unmodified-Since` headers + * Add `res` and `path` arguments to `directory` event + * Remove usage of `res._headers` private field + - Improves compatibility with Node.js 8 nightly + * Send complete HTML document in redirect & error responses + * Set default CSP header in redirect & error responses + * Use `res.getHeaderNames()` when available + * Use `res.headersSent` when available + * deps: debug@2.6.1 + - Allow colors in workers + - Deprecated `DEBUG_FD` environment variable set to `3` or higher + - Fix error when running under React Native + - Use same color for same namespace + - deps: ms@0.7.2 + * deps: etag@~1.8.0 + * deps: fresh@0.5.0 + - Fix false detection of `no-cache` request directive + - Fix incorrect result when `If-None-Match` has both `*` and ETags + - Fix weak `ETag` matching to match spec + - perf: delay reading header values until needed + - perf: enable strict mode + - perf: hoist regular expressions + - perf: remove duplicate conditional + - perf: remove unnecessary boolean coercions + - perf: skip checking modified time if ETag check failed + - perf: skip parsing `If-None-Match` when no `ETag` header + - perf: use `Date.parse` instead of `new Date` + * deps: http-errors@~1.6.1 + - Make `message` property enumerable for `HttpError`s + - deps: setprototypeof@1.0.3 + +0.14.2 / 2017-01-23 +=================== + + * deps: http-errors@~1.5.1 + - deps: inherits@2.0.3 + - deps: setprototypeof@1.0.2 + - deps: statuses@'>= 1.3.1 < 2' + * deps: ms@0.7.2 + * deps: statuses@~1.3.1 + +0.14.1 / 2016-06-09 +=================== + + * Fix redirect error when `path` contains raw non-URL characters + * Fix redirect when `path` starts with multiple forward slashes + +0.14.0 / 2016-06-06 +=================== + + * Add `acceptRanges` option + * Add `cacheControl` option + * Attempt to combine multiple ranges into single range + * Correctly inherit from `Stream` class + * Fix `Content-Range` header in 416 responses when using `start`/`end` options + * Fix `Content-Range` header missing from default 416 responses + * Ignore non-byte `Range` headers + * deps: http-errors@~1.5.0 + - Add `HttpError` export, for `err instanceof createError.HttpError` + - Support new code `421 Misdirected Request` + - Use `setprototypeof` module to replace `__proto__` setting + - deps: inherits@2.0.1 + - deps: statuses@'>= 1.3.0 < 2' + - perf: enable strict mode + * deps: range-parser@~1.2.0 + - Fix incorrectly returning -1 when there is at least one valid range + - perf: remove internal function + * deps: statuses@~1.3.0 + - Add `421 Misdirected Request` + - perf: enable strict mode + * perf: remove argument reassignment + +0.13.2 / 2016-03-05 +=================== + + * Fix invalid `Content-Type` header when `send.mime.default_type` unset + +0.13.1 / 2016-01-16 +=================== + + * deps: depd@~1.1.0 + - Support web browser loading + - perf: enable strict mode + * deps: destroy@~1.0.4 + - perf: enable strict mode + * deps: escape-html@~1.0.3 + - perf: enable strict mode + - perf: optimize string replacement + - perf: use faster string coercion + * deps: range-parser@~1.0.3 + - perf: enable strict mode + +0.13.0 / 2015-06-16 +=================== + + * Allow Node.js HTTP server to set `Date` response header + * Fix incorrectly removing `Content-Location` on 304 response + * Improve the default redirect response headers + * Send appropriate headers on default error response + * Use `http-errors` for standard emitted errors + * Use `statuses` instead of `http` module for status messages + * deps: escape-html@1.0.2 + * deps: etag@~1.7.0 + - Improve stat performance by removing hashing + * deps: fresh@0.3.0 + - Add weak `ETag` matching support + * deps: on-finished@~2.3.0 + - Add defined behavior for HTTP `CONNECT` requests + - Add defined behavior for HTTP `Upgrade` requests + - deps: ee-first@1.1.1 + * perf: enable strict mode + * perf: remove unnecessary array allocations + +0.12.3 / 2015-05-13 +=================== + + * deps: debug@~2.2.0 + - deps: ms@0.7.1 + * deps: depd@~1.0.1 + * deps: etag@~1.6.0 + - Improve support for JXcore + - Support "fake" stats objects in environments without `fs` + * deps: ms@0.7.1 + - Prevent extraordinarily long inputs + * deps: on-finished@~2.2.1 + +0.12.2 / 2015-03-13 +=================== + + * Throw errors early for invalid `extensions` or `index` options + * deps: debug@~2.1.3 + - Fix high intensity foreground color for bold + - deps: ms@0.7.0 + +0.12.1 / 2015-02-17 +=================== + + * Fix regression sending zero-length files + +0.12.0 / 2015-02-16 +=================== + + * Always read the stat size from the file + * Fix mutating passed-in `options` + * deps: mime@1.3.4 + +0.11.1 / 2015-01-20 +=================== + + * Fix `root` path disclosure + +0.11.0 / 2015-01-05 +=================== + + * deps: debug@~2.1.1 + * deps: etag@~1.5.1 + - deps: crc@3.2.1 + * deps: ms@0.7.0 + - Add `milliseconds` + - Add `msecs` + - Add `secs` + - Add `mins` + - Add `hrs` + - Add `yrs` + * deps: on-finished@~2.2.0 + +0.10.1 / 2014-10-22 +=================== + + * deps: on-finished@~2.1.1 + - Fix handling of pipelined requests + +0.10.0 / 2014-10-15 +=================== + + * deps: debug@~2.1.0 + - Implement `DEBUG_FD` env variable support + * deps: depd@~1.0.0 + * deps: etag@~1.5.0 + - Improve string performance + - Slightly improve speed for weak ETags over 1KB + +0.9.3 / 2014-09-24 +================== + + * deps: etag@~1.4.0 + - Support "fake" stats objects + +0.9.2 / 2014-09-15 +================== + + * deps: depd@0.4.5 + * deps: etag@~1.3.1 + * deps: range-parser@~1.0.2 + +0.9.1 / 2014-09-07 +================== + + * deps: fresh@0.2.4 + +0.9.0 / 2014-09-07 +================== + + * Add `lastModified` option + * Use `etag` to generate `ETag` header + * deps: debug@~2.0.0 + +0.8.5 / 2014-09-04 +================== + + * Fix malicious path detection for empty string path + +0.8.4 / 2014-09-04 +================== + + * Fix a path traversal issue when using `root` + +0.8.3 / 2014-08-16 +================== + + * deps: destroy@1.0.3 + - renamed from dethroy + * deps: on-finished@2.1.0 + +0.8.2 / 2014-08-14 +================== + + * Work around `fd` leak in Node.js 0.10 for `fs.ReadStream` + * deps: dethroy@1.0.2 + +0.8.1 / 2014-08-05 +================== + + * Fix `extensions` behavior when file already has extension + +0.8.0 / 2014-08-05 +================== + + * Add `extensions` option + +0.7.4 / 2014-08-04 +================== + + * Fix serving index files without root dir + +0.7.3 / 2014-07-29 +================== + + * Fix incorrect 403 on Windows and Node.js 0.11 + +0.7.2 / 2014-07-27 +================== + + * deps: depd@0.4.4 + - Work-around v8 generating empty stack traces + +0.7.1 / 2014-07-26 +================== + + * deps: depd@0.4.3 + - Fix exception when global `Error.stackTraceLimit` is too low + +0.7.0 / 2014-07-20 +================== + + * Deprecate `hidden` option; use `dotfiles` option + * Add `dotfiles` option + * deps: debug@1.0.4 + * deps: depd@0.4.2 + - Add `TRACE_DEPRECATION` environment variable + - Remove non-standard grey color from color output + - Support `--no-deprecation` argument + - Support `--trace-deprecation` argument + +0.6.0 / 2014-07-11 +================== + + * Deprecate `from` option; use `root` option + * Deprecate `send.etag()` -- use `etag` in `options` + * Deprecate `send.hidden()` -- use `hidden` in `options` + * Deprecate `send.index()` -- use `index` in `options` + * Deprecate `send.maxage()` -- use `maxAge` in `options` + * Deprecate `send.root()` -- use `root` in `options` + * Cap `maxAge` value to 1 year + * deps: debug@1.0.3 + - Add support for multiple wildcards in namespaces + +0.5.0 / 2014-06-28 +================== + + * Accept string for `maxAge` (converted by `ms`) + * Add `headers` event + * Include link in default redirect response + * Use `EventEmitter.listenerCount` to count listeners + +0.4.3 / 2014-06-11 +================== + + * Do not throw un-catchable error on file open race condition + * Use `escape-html` for HTML escaping + * deps: debug@1.0.2 + - fix some debugging output colors on node.js 0.8 + * deps: finished@1.2.2 + * deps: fresh@0.2.2 + +0.4.2 / 2014-06-09 +================== + + * fix "event emitter leak" warnings + * deps: debug@1.0.1 + * deps: finished@1.2.1 + +0.4.1 / 2014-06-02 +================== + + * Send `max-age` in `Cache-Control` in correct format + +0.4.0 / 2014-05-27 +================== + + * Calculate ETag with md5 for reduced collisions + * Fix wrong behavior when index file matches directory + * Ignore stream errors after request ends + - Goodbye `EBADF, read` + * Skip directories in index file search + * deps: debug@0.8.1 + +0.3.0 / 2014-04-24 +================== + + * Fix sending files with dots without root set + * Coerce option types + * Accept API options in options object + * Set etags to "weak" + * Include file path in etag + * Make "Can't set headers after they are sent." catchable + * Send full entity-body for multi range requests + * Default directory access to 403 when index disabled + * Support multiple index paths + * Support "If-Range" header + * Control whether to generate etags + * deps: mime@1.2.11 + +0.2.0 / 2014-01-29 +================== + + * update range-parser and fresh + +0.1.4 / 2013-08-11 +================== + + * update fresh + +0.1.3 / 2013-07-08 +================== + + * Revert "Fix fd leak" + +0.1.2 / 2013-07-03 +================== + + * Fix fd leak + +0.1.0 / 2012-08-25 +================== + + * add options parameter to send() that is passed to fs.createReadStream() [kanongil] + +0.0.4 / 2012-08-16 +================== + + * allow custom "Accept-Ranges" definition + +0.0.3 / 2012-07-16 +================== + + * fix normalization of the root directory. Closes #3 + +0.0.2 / 2012-07-09 +================== + + * add passing of req explicitly for now (YUCK) + +0.0.1 / 2010-01-03 +================== + + * Initial release diff --git a/node_modules/send/LICENSE b/node_modules/send/LICENSE new file mode 100644 index 000000000..b6ea1c1fd --- /dev/null +++ b/node_modules/send/LICENSE @@ -0,0 +1,23 @@ +(The MIT License) + +Copyright (c) 2012 TJ Holowaychuk +Copyright (c) 2014-2022 Douglas Christopher Wilson + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +'Software'), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/node_modules/send/README.md b/node_modules/send/README.md new file mode 100644 index 000000000..fadf8383c --- /dev/null +++ b/node_modules/send/README.md @@ -0,0 +1,327 @@ +# send + +[![NPM Version][npm-version-image]][npm-url] +[![NPM Downloads][npm-downloads-image]][npm-url] +[![Linux Build][github-actions-ci-image]][github-actions-ci-url] +[![Windows Build][appveyor-image]][appveyor-url] +[![Test Coverage][coveralls-image]][coveralls-url] + +Send is a library for streaming files from the file system as a http response +supporting partial responses (Ranges), conditional-GET negotiation (If-Match, +If-Unmodified-Since, If-None-Match, If-Modified-Since), high test coverage, +and granular events which may be leveraged to take appropriate actions in your +application or framework. + +Looking to serve up entire folders mapped to URLs? Try [serve-static](https://www.npmjs.org/package/serve-static). + +## Installation + +This is a [Node.js](https://nodejs.org/en/) module available through the +[npm registry](https://www.npmjs.com/). Installation is done using the +[`npm install` command](https://docs.npmjs.com/getting-started/installing-npm-packages-locally): + +```bash +$ npm install send +``` + +## API + +```js +var send = require('send') +``` + +### send(req, path, [options]) + +Create a new `SendStream` for the given path to send to a `res`. The `req` is +the Node.js HTTP request and the `path` is a urlencoded path to send (urlencoded, +not the actual file-system path). + +#### Options + +##### acceptRanges + +Enable or disable accepting ranged requests, defaults to true. +Disabling this will not send `Accept-Ranges` and ignore the contents +of the `Range` request header. + +##### cacheControl + +Enable or disable setting `Cache-Control` response header, defaults to +true. Disabling this will ignore the `immutable` and `maxAge` options. + +##### dotfiles + +Set how "dotfiles" are treated when encountered. A dotfile is a file +or directory that begins with a dot ("."). Note this check is done on +the path itself without checking if the path actually exists on the +disk. If `root` is specified, only the dotfiles above the root are +checked (i.e. the root itself can be within a dotfile when when set +to "deny"). + + - `'allow'` No special treatment for dotfiles. + - `'deny'` Send a 403 for any request for a dotfile. + - `'ignore'` Pretend like the dotfile does not exist and 404. + +The default value is _similar_ to `'ignore'`, with the exception that +this default will not ignore the files within a directory that begins +with a dot, for backward-compatibility. + +##### end + +Byte offset at which the stream ends, defaults to the length of the file +minus 1. The end is inclusive in the stream, meaning `end: 3` will include +the 4th byte in the stream. + +##### etag + +Enable or disable etag generation, defaults to true. + +##### extensions + +If a given file doesn't exist, try appending one of the given extensions, +in the given order. By default, this is disabled (set to `false`). An +example value that will serve extension-less HTML files: `['html', 'htm']`. +This is skipped if the requested file already has an extension. + +##### immutable + +Enable or disable the `immutable` directive in the `Cache-Control` response +header, defaults to `false`. If set to `true`, the `maxAge` option should +also be specified to enable caching. The `immutable` directive will prevent +supported clients from making conditional requests during the life of the +`maxAge` option to check if the file has changed. + +##### index + +By default send supports "index.html" files, to disable this +set `false` or to supply a new index pass a string or an array +in preferred order. + +##### lastModified + +Enable or disable `Last-Modified` header, defaults to true. Uses the file +system's last modified value. + +##### maxAge + +Provide a max-age in milliseconds for http caching, defaults to 0. +This can also be a string accepted by the +[ms](https://www.npmjs.org/package/ms#readme) module. + +##### root + +Serve files relative to `path`. + +##### start + +Byte offset at which the stream starts, defaults to 0. The start is inclusive, +meaning `start: 2` will include the 3rd byte in the stream. + +#### Events + +The `SendStream` is an event emitter and will emit the following events: + + - `error` an error occurred `(err)` + - `directory` a directory was requested `(res, path)` + - `file` a file was requested `(path, stat)` + - `headers` the headers are about to be set on a file `(res, path, stat)` + - `stream` file streaming has started `(stream)` + - `end` streaming has completed + +#### .pipe + +The `pipe` method is used to pipe the response into the Node.js HTTP response +object, typically `send(req, path, options).pipe(res)`. + +### .mime + +The `mime` export is the global instance of of the +[`mime` npm module](https://www.npmjs.com/package/mime). + +This is used to configure the MIME types that are associated with file extensions +as well as other options for how to resolve the MIME type of a file (like the +default type to use for an unknown file extension). + +## Error-handling + +By default when no `error` listeners are present an automatic response will be +made, otherwise you have full control over the response, aka you may show a 5xx +page etc. + +## Caching + +It does _not_ perform internal caching, you should use a reverse proxy cache +such as Varnish for this, or those fancy things called CDNs. If your +application is small enough that it would benefit from single-node memory +caching, it's small enough that it does not need caching at all ;). + +## Debugging + +To enable `debug()` instrumentation output export __DEBUG__: + +``` +$ DEBUG=send node app +``` + +## Running tests + +``` +$ npm install +$ npm test +``` + +## Examples + +### Serve a specific file + +This simple example will send a specific file to all requests. + +```js +var http = require('http') +var send = require('send') + +var server = http.createServer(function onRequest (req, res) { + send(req, '/path/to/index.html') + .pipe(res) +}) + +server.listen(3000) +``` + +### Serve all files from a directory + +This simple example will just serve up all the files in a +given directory as the top-level. For example, a request +`GET /foo.txt` will send back `/www/public/foo.txt`. + +```js +var http = require('http') +var parseUrl = require('parseurl') +var send = require('send') + +var server = http.createServer(function onRequest (req, res) { + send(req, parseUrl(req).pathname, { root: '/www/public' }) + .pipe(res) +}) + +server.listen(3000) +``` + +### Custom file types + +```js +var http = require('http') +var parseUrl = require('parseurl') +var send = require('send') + +// Default unknown types to text/plain +send.mime.default_type = 'text/plain' + +// Add a custom type +send.mime.define({ + 'application/x-my-type': ['x-mt', 'x-mtt'] +}) + +var server = http.createServer(function onRequest (req, res) { + send(req, parseUrl(req).pathname, { root: '/www/public' }) + .pipe(res) +}) + +server.listen(3000) +``` + +### Custom directory index view + +This is a example of serving up a structure of directories with a +custom function to render a listing of a directory. + +```js +var http = require('http') +var fs = require('fs') +var parseUrl = require('parseurl') +var send = require('send') + +// Transfer arbitrary files from within /www/example.com/public/* +// with a custom handler for directory listing +var server = http.createServer(function onRequest (req, res) { + send(req, parseUrl(req).pathname, { index: false, root: '/www/public' }) + .once('directory', directory) + .pipe(res) +}) + +server.listen(3000) + +// Custom directory handler +function directory (res, path) { + var stream = this + + // redirect to trailing slash for consistent url + if (!stream.hasTrailingSlash()) { + return stream.redirect(path) + } + + // get directory list + fs.readdir(path, function onReaddir (err, list) { + if (err) return stream.error(err) + + // render an index for the directory + res.setHeader('Content-Type', 'text/plain; charset=UTF-8') + res.end(list.join('\n') + '\n') + }) +} +``` + +### Serving from a root directory with custom error-handling + +```js +var http = require('http') +var parseUrl = require('parseurl') +var send = require('send') + +var server = http.createServer(function onRequest (req, res) { + // your custom error-handling logic: + function error (err) { + res.statusCode = err.status || 500 + res.end(err.message) + } + + // your custom headers + function headers (res, path, stat) { + // serve all files for download + res.setHeader('Content-Disposition', 'attachment') + } + + // your custom directory handling logic: + function redirect () { + res.statusCode = 301 + res.setHeader('Location', req.url + '/') + res.end('Redirecting to ' + req.url + '/') + } + + // transfer arbitrary files from within + // /www/example.com/public/* + send(req, parseUrl(req).pathname, { root: '/www/public' }) + .on('error', error) + .on('directory', redirect) + .on('headers', headers) + .pipe(res) +}) + +server.listen(3000) +``` + +## License + +[MIT](LICENSE) + +[appveyor-image]: https://badgen.net/appveyor/ci/dougwilson/send/master?label=windows +[appveyor-url]: https://ci.appveyor.com/project/dougwilson/send +[coveralls-image]: https://badgen.net/coveralls/c/github/pillarjs/send/master +[coveralls-url]: https://coveralls.io/r/pillarjs/send?branch=master +[github-actions-ci-image]: https://badgen.net/github/checks/pillarjs/send/master?label=linux +[github-actions-ci-url]: https://github.com/pillarjs/send/actions/workflows/ci.yml +[node-image]: https://badgen.net/npm/node/send +[node-url]: https://nodejs.org/en/download/ +[npm-downloads-image]: https://badgen.net/npm/dm/send +[npm-url]: https://npmjs.org/package/send +[npm-version-image]: https://badgen.net/npm/v/send diff --git a/node_modules/send/SECURITY.md b/node_modules/send/SECURITY.md new file mode 100644 index 000000000..46b48f7b0 --- /dev/null +++ b/node_modules/send/SECURITY.md @@ -0,0 +1,24 @@ +# Security Policies and Procedures + +## Reporting a Bug + +The `send` team and community take all security bugs seriously. Thank you +for improving the security of Express. We appreciate your efforts and +responsible disclosure and will make every effort to acknowledge your +contributions. + +Report security bugs by emailing the current owner(s) of `send`. This information +can be found in the npm registry using the command `npm owner ls send`. +If unsure or unable to get the information from the above, open an issue +in the [project issue tracker](https://github.com/pillarjs/send/issues) +asking for the current contact information. + +To ensure the timely response to your report, please ensure that the entirety +of the report is contained within the email body and not solely behind a web +link or an attachment. + +At least one owner will acknowledge your email within 48 hours, and will send a +more detailed response within 48 hours indicating the next steps in handling +your report. After the initial reply to your report, the owners will +endeavor to keep you informed of the progress towards a fix and full +announcement, and may ask for additional information or guidance. diff --git a/node_modules/send/index.js b/node_modules/send/index.js new file mode 100644 index 000000000..89afd7e58 --- /dev/null +++ b/node_modules/send/index.js @@ -0,0 +1,1143 @@ +/*! + * send + * Copyright(c) 2012 TJ Holowaychuk + * Copyright(c) 2014-2022 Douglas Christopher Wilson + * MIT Licensed + */ + +'use strict' + +/** + * Module dependencies. + * @private + */ + +var createError = require('http-errors') +var debug = require('debug')('send') +var deprecate = require('depd')('send') +var destroy = require('destroy') +var encodeUrl = require('encodeurl') +var escapeHtml = require('escape-html') +var etag = require('etag') +var fresh = require('fresh') +var fs = require('fs') +var mime = require('mime') +var ms = require('ms') +var onFinished = require('on-finished') +var parseRange = require('range-parser') +var path = require('path') +var statuses = require('statuses') +var Stream = require('stream') +var util = require('util') + +/** + * Path function references. + * @private + */ + +var extname = path.extname +var join = path.join +var normalize = path.normalize +var resolve = path.resolve +var sep = path.sep + +/** + * Regular expression for identifying a bytes Range header. + * @private + */ + +var BYTES_RANGE_REGEXP = /^ *bytes=/ + +/** + * Maximum value allowed for the max age. + * @private + */ + +var MAX_MAXAGE = 60 * 60 * 24 * 365 * 1000 // 1 year + +/** + * Regular expression to match a path with a directory up component. + * @private + */ + +var UP_PATH_REGEXP = /(?:^|[\\/])\.\.(?:[\\/]|$)/ + +/** + * Module exports. + * @public + */ + +module.exports = send +module.exports.mime = mime + +/** + * Return a `SendStream` for `req` and `path`. + * + * @param {object} req + * @param {string} path + * @param {object} [options] + * @return {SendStream} + * @public + */ + +function send (req, path, options) { + return new SendStream(req, path, options) +} + +/** + * Initialize a `SendStream` with the given `path`. + * + * @param {Request} req + * @param {String} path + * @param {object} [options] + * @private + */ + +function SendStream (req, path, options) { + Stream.call(this) + + var opts = options || {} + + this.options = opts + this.path = path + this.req = req + + this._acceptRanges = opts.acceptRanges !== undefined + ? Boolean(opts.acceptRanges) + : true + + this._cacheControl = opts.cacheControl !== undefined + ? Boolean(opts.cacheControl) + : true + + this._etag = opts.etag !== undefined + ? Boolean(opts.etag) + : true + + this._dotfiles = opts.dotfiles !== undefined + ? opts.dotfiles + : 'ignore' + + if (this._dotfiles !== 'ignore' && this._dotfiles !== 'allow' && this._dotfiles !== 'deny') { + throw new TypeError('dotfiles option must be "allow", "deny", or "ignore"') + } + + this._hidden = Boolean(opts.hidden) + + if (opts.hidden !== undefined) { + deprecate('hidden: use dotfiles: \'' + (this._hidden ? 'allow' : 'ignore') + '\' instead') + } + + // legacy support + if (opts.dotfiles === undefined) { + this._dotfiles = undefined + } + + this._extensions = opts.extensions !== undefined + ? normalizeList(opts.extensions, 'extensions option') + : [] + + this._immutable = opts.immutable !== undefined + ? Boolean(opts.immutable) + : false + + this._index = opts.index !== undefined + ? normalizeList(opts.index, 'index option') + : ['index.html'] + + this._lastModified = opts.lastModified !== undefined + ? Boolean(opts.lastModified) + : true + + this._maxage = opts.maxAge || opts.maxage + this._maxage = typeof this._maxage === 'string' + ? ms(this._maxage) + : Number(this._maxage) + this._maxage = !isNaN(this._maxage) + ? Math.min(Math.max(0, this._maxage), MAX_MAXAGE) + : 0 + + this._root = opts.root + ? resolve(opts.root) + : null + + if (!this._root && opts.from) { + this.from(opts.from) + } +} + +/** + * Inherits from `Stream`. + */ + +util.inherits(SendStream, Stream) + +/** + * Enable or disable etag generation. + * + * @param {Boolean} val + * @return {SendStream} + * @api public + */ + +SendStream.prototype.etag = deprecate.function(function etag (val) { + this._etag = Boolean(val) + debug('etag %s', this._etag) + return this +}, 'send.etag: pass etag as option') + +/** + * Enable or disable "hidden" (dot) files. + * + * @param {Boolean} path + * @return {SendStream} + * @api public + */ + +SendStream.prototype.hidden = deprecate.function(function hidden (val) { + this._hidden = Boolean(val) + this._dotfiles = undefined + debug('hidden %s', this._hidden) + return this +}, 'send.hidden: use dotfiles option') + +/** + * Set index `paths`, set to a falsy + * value to disable index support. + * + * @param {String|Boolean|Array} paths + * @return {SendStream} + * @api public + */ + +SendStream.prototype.index = deprecate.function(function index (paths) { + var index = !paths ? [] : normalizeList(paths, 'paths argument') + debug('index %o', paths) + this._index = index + return this +}, 'send.index: pass index as option') + +/** + * Set root `path`. + * + * @param {String} path + * @return {SendStream} + * @api public + */ + +SendStream.prototype.root = function root (path) { + this._root = resolve(String(path)) + debug('root %s', this._root) + return this +} + +SendStream.prototype.from = deprecate.function(SendStream.prototype.root, + 'send.from: pass root as option') + +SendStream.prototype.root = deprecate.function(SendStream.prototype.root, + 'send.root: pass root as option') + +/** + * Set max-age to `maxAge`. + * + * @param {Number} maxAge + * @return {SendStream} + * @api public + */ + +SendStream.prototype.maxage = deprecate.function(function maxage (maxAge) { + this._maxage = typeof maxAge === 'string' + ? ms(maxAge) + : Number(maxAge) + this._maxage = !isNaN(this._maxage) + ? Math.min(Math.max(0, this._maxage), MAX_MAXAGE) + : 0 + debug('max-age %d', this._maxage) + return this +}, 'send.maxage: pass maxAge as option') + +/** + * Emit error with `status`. + * + * @param {number} status + * @param {Error} [err] + * @private + */ + +SendStream.prototype.error = function error (status, err) { + // emit if listeners instead of responding + if (hasListeners(this, 'error')) { + return this.emit('error', createHttpError(status, err)) + } + + var res = this.res + var msg = statuses.message[status] || String(status) + var doc = createHtmlDocument('Error', escapeHtml(msg)) + + // clear existing headers + clearHeaders(res) + + // add error headers + if (err && err.headers) { + setHeaders(res, err.headers) + } + + // send basic response + res.statusCode = status + res.setHeader('Content-Type', 'text/html; charset=UTF-8') + res.setHeader('Content-Length', Buffer.byteLength(doc)) + res.setHeader('Content-Security-Policy', "default-src 'none'") + res.setHeader('X-Content-Type-Options', 'nosniff') + res.end(doc) +} + +/** + * Check if the pathname ends with "/". + * + * @return {boolean} + * @private + */ + +SendStream.prototype.hasTrailingSlash = function hasTrailingSlash () { + return this.path[this.path.length - 1] === '/' +} + +/** + * Check if this is a conditional GET request. + * + * @return {Boolean} + * @api private + */ + +SendStream.prototype.isConditionalGET = function isConditionalGET () { + return this.req.headers['if-match'] || + this.req.headers['if-unmodified-since'] || + this.req.headers['if-none-match'] || + this.req.headers['if-modified-since'] +} + +/** + * Check if the request preconditions failed. + * + * @return {boolean} + * @private + */ + +SendStream.prototype.isPreconditionFailure = function isPreconditionFailure () { + var req = this.req + var res = this.res + + // if-match + var match = req.headers['if-match'] + if (match) { + var etag = res.getHeader('ETag') + return !etag || (match !== '*' && parseTokenList(match).every(function (match) { + return match !== etag && match !== 'W/' + etag && 'W/' + match !== etag + })) + } + + // if-unmodified-since + var unmodifiedSince = parseHttpDate(req.headers['if-unmodified-since']) + if (!isNaN(unmodifiedSince)) { + var lastModified = parseHttpDate(res.getHeader('Last-Modified')) + return isNaN(lastModified) || lastModified > unmodifiedSince + } + + return false +} + +/** + * Strip various content header fields for a change in entity. + * + * @private + */ + +SendStream.prototype.removeContentHeaderFields = function removeContentHeaderFields () { + var res = this.res + + res.removeHeader('Content-Encoding') + res.removeHeader('Content-Language') + res.removeHeader('Content-Length') + res.removeHeader('Content-Range') + res.removeHeader('Content-Type') +} + +/** + * Respond with 304 not modified. + * + * @api private + */ + +SendStream.prototype.notModified = function notModified () { + var res = this.res + debug('not modified') + this.removeContentHeaderFields() + res.statusCode = 304 + res.end() +} + +/** + * Raise error that headers already sent. + * + * @api private + */ + +SendStream.prototype.headersAlreadySent = function headersAlreadySent () { + var err = new Error('Can\'t set headers after they are sent.') + debug('headers already sent') + this.error(500, err) +} + +/** + * Check if the request is cacheable, aka + * responded with 2xx or 304 (see RFC 2616 section 14.2{5,6}). + * + * @return {Boolean} + * @api private + */ + +SendStream.prototype.isCachable = function isCachable () { + var statusCode = this.res.statusCode + return (statusCode >= 200 && statusCode < 300) || + statusCode === 304 +} + +/** + * Handle stat() error. + * + * @param {Error} error + * @private + */ + +SendStream.prototype.onStatError = function onStatError (error) { + switch (error.code) { + case 'ENAMETOOLONG': + case 'ENOENT': + case 'ENOTDIR': + this.error(404, error) + break + default: + this.error(500, error) + break + } +} + +/** + * Check if the cache is fresh. + * + * @return {Boolean} + * @api private + */ + +SendStream.prototype.isFresh = function isFresh () { + return fresh(this.req.headers, { + etag: this.res.getHeader('ETag'), + 'last-modified': this.res.getHeader('Last-Modified') + }) +} + +/** + * Check if the range is fresh. + * + * @return {Boolean} + * @api private + */ + +SendStream.prototype.isRangeFresh = function isRangeFresh () { + var ifRange = this.req.headers['if-range'] + + if (!ifRange) { + return true + } + + // if-range as etag + if (ifRange.indexOf('"') !== -1) { + var etag = this.res.getHeader('ETag') + return Boolean(etag && ifRange.indexOf(etag) !== -1) + } + + // if-range as modified date + var lastModified = this.res.getHeader('Last-Modified') + return parseHttpDate(lastModified) <= parseHttpDate(ifRange) +} + +/** + * Redirect to path. + * + * @param {string} path + * @private + */ + +SendStream.prototype.redirect = function redirect (path) { + var res = this.res + + if (hasListeners(this, 'directory')) { + this.emit('directory', res, path) + return + } + + if (this.hasTrailingSlash()) { + this.error(403) + return + } + + var loc = encodeUrl(collapseLeadingSlashes(this.path + '/')) + var doc = createHtmlDocument('Redirecting', 'Redirecting to ' + + escapeHtml(loc) + '') + + // redirect + res.statusCode = 301 + res.setHeader('Content-Type', 'text/html; charset=UTF-8') + res.setHeader('Content-Length', Buffer.byteLength(doc)) + res.setHeader('Content-Security-Policy', "default-src 'none'") + res.setHeader('X-Content-Type-Options', 'nosniff') + res.setHeader('Location', loc) + res.end(doc) +} + +/** + * Pipe to `res. + * + * @param {Stream} res + * @return {Stream} res + * @api public + */ + +SendStream.prototype.pipe = function pipe (res) { + // root path + var root = this._root + + // references + this.res = res + + // decode the path + var path = decode(this.path) + if (path === -1) { + this.error(400) + return res + } + + // null byte(s) + if (~path.indexOf('\0')) { + this.error(400) + return res + } + + var parts + if (root !== null) { + // normalize + if (path) { + path = normalize('.' + sep + path) + } + + // malicious path + if (UP_PATH_REGEXP.test(path)) { + debug('malicious path "%s"', path) + this.error(403) + return res + } + + // explode path parts + parts = path.split(sep) + + // join / normalize from optional root dir + path = normalize(join(root, path)) + } else { + // ".." is malicious without "root" + if (UP_PATH_REGEXP.test(path)) { + debug('malicious path "%s"', path) + this.error(403) + return res + } + + // explode path parts + parts = normalize(path).split(sep) + + // resolve the path + path = resolve(path) + } + + // dotfile handling + if (containsDotFile(parts)) { + var access = this._dotfiles + + // legacy support + if (access === undefined) { + access = parts[parts.length - 1][0] === '.' + ? (this._hidden ? 'allow' : 'ignore') + : 'allow' + } + + debug('%s dotfile "%s"', access, path) + switch (access) { + case 'allow': + break + case 'deny': + this.error(403) + return res + case 'ignore': + default: + this.error(404) + return res + } + } + + // index file support + if (this._index.length && this.hasTrailingSlash()) { + this.sendIndex(path) + return res + } + + this.sendFile(path) + return res +} + +/** + * Transfer `path`. + * + * @param {String} path + * @api public + */ + +SendStream.prototype.send = function send (path, stat) { + var len = stat.size + var options = this.options + var opts = {} + var res = this.res + var req = this.req + var ranges = req.headers.range + var offset = options.start || 0 + + if (headersSent(res)) { + // impossible to send now + this.headersAlreadySent() + return + } + + debug('pipe "%s"', path) + + // set header fields + this.setHeader(path, stat) + + // set content-type + this.type(path) + + // conditional GET support + if (this.isConditionalGET()) { + if (this.isPreconditionFailure()) { + this.error(412) + return + } + + if (this.isCachable() && this.isFresh()) { + this.notModified() + return + } + } + + // adjust len to start/end options + len = Math.max(0, len - offset) + if (options.end !== undefined) { + var bytes = options.end - offset + 1 + if (len > bytes) len = bytes + } + + // Range support + if (this._acceptRanges && BYTES_RANGE_REGEXP.test(ranges)) { + // parse + ranges = parseRange(len, ranges, { + combine: true + }) + + // If-Range support + if (!this.isRangeFresh()) { + debug('range stale') + ranges = -2 + } + + // unsatisfiable + if (ranges === -1) { + debug('range unsatisfiable') + + // Content-Range + res.setHeader('Content-Range', contentRange('bytes', len)) + + // 416 Requested Range Not Satisfiable + return this.error(416, { + headers: { 'Content-Range': res.getHeader('Content-Range') } + }) + } + + // valid (syntactically invalid/multiple ranges are treated as a regular response) + if (ranges !== -2 && ranges.length === 1) { + debug('range %j', ranges) + + // Content-Range + res.statusCode = 206 + res.setHeader('Content-Range', contentRange('bytes', len, ranges[0])) + + // adjust for requested range + offset += ranges[0].start + len = ranges[0].end - ranges[0].start + 1 + } + } + + // clone options + for (var prop in options) { + opts[prop] = options[prop] + } + + // set read options + opts.start = offset + opts.end = Math.max(offset, offset + len - 1) + + // content-length + res.setHeader('Content-Length', len) + + // HEAD support + if (req.method === 'HEAD') { + res.end() + return + } + + this.stream(path, opts) +} + +/** + * Transfer file for `path`. + * + * @param {String} path + * @api private + */ +SendStream.prototype.sendFile = function sendFile (path) { + var i = 0 + var self = this + + debug('stat "%s"', path) + fs.stat(path, function onstat (err, stat) { + if (err && err.code === 'ENOENT' && !extname(path) && path[path.length - 1] !== sep) { + // not found, check extensions + return next(err) + } + if (err) return self.onStatError(err) + if (stat.isDirectory()) return self.redirect(path) + self.emit('file', path, stat) + self.send(path, stat) + }) + + function next (err) { + if (self._extensions.length <= i) { + return err + ? self.onStatError(err) + : self.error(404) + } + + var p = path + '.' + self._extensions[i++] + + debug('stat "%s"', p) + fs.stat(p, function (err, stat) { + if (err) return next(err) + if (stat.isDirectory()) return next() + self.emit('file', p, stat) + self.send(p, stat) + }) + } +} + +/** + * Transfer index for `path`. + * + * @param {String} path + * @api private + */ +SendStream.prototype.sendIndex = function sendIndex (path) { + var i = -1 + var self = this + + function next (err) { + if (++i >= self._index.length) { + if (err) return self.onStatError(err) + return self.error(404) + } + + var p = join(path, self._index[i]) + + debug('stat "%s"', p) + fs.stat(p, function (err, stat) { + if (err) return next(err) + if (stat.isDirectory()) return next() + self.emit('file', p, stat) + self.send(p, stat) + }) + } + + next() +} + +/** + * Stream `path` to the response. + * + * @param {String} path + * @param {Object} options + * @api private + */ + +SendStream.prototype.stream = function stream (path, options) { + var self = this + var res = this.res + + // pipe + var stream = fs.createReadStream(path, options) + this.emit('stream', stream) + stream.pipe(res) + + // cleanup + function cleanup () { + destroy(stream, true) + } + + // response finished, cleanup + onFinished(res, cleanup) + + // error handling + stream.on('error', function onerror (err) { + // clean up stream early + cleanup() + + // error + self.onStatError(err) + }) + + // end + stream.on('end', function onend () { + self.emit('end') + }) +} + +/** + * Set content-type based on `path` + * if it hasn't been explicitly set. + * + * @param {String} path + * @api private + */ + +SendStream.prototype.type = function type (path) { + var res = this.res + + if (res.getHeader('Content-Type')) return + + var type = mime.lookup(path) + + if (!type) { + debug('no content-type') + return + } + + var charset = mime.charsets.lookup(type) + + debug('content-type %s', type) + res.setHeader('Content-Type', type + (charset ? '; charset=' + charset : '')) +} + +/** + * Set response header fields, most + * fields may be pre-defined. + * + * @param {String} path + * @param {Object} stat + * @api private + */ + +SendStream.prototype.setHeader = function setHeader (path, stat) { + var res = this.res + + this.emit('headers', res, path, stat) + + if (this._acceptRanges && !res.getHeader('Accept-Ranges')) { + debug('accept ranges') + res.setHeader('Accept-Ranges', 'bytes') + } + + if (this._cacheControl && !res.getHeader('Cache-Control')) { + var cacheControl = 'public, max-age=' + Math.floor(this._maxage / 1000) + + if (this._immutable) { + cacheControl += ', immutable' + } + + debug('cache-control %s', cacheControl) + res.setHeader('Cache-Control', cacheControl) + } + + if (this._lastModified && !res.getHeader('Last-Modified')) { + var modified = stat.mtime.toUTCString() + debug('modified %s', modified) + res.setHeader('Last-Modified', modified) + } + + if (this._etag && !res.getHeader('ETag')) { + var val = etag(stat) + debug('etag %s', val) + res.setHeader('ETag', val) + } +} + +/** + * Clear all headers from a response. + * + * @param {object} res + * @private + */ + +function clearHeaders (res) { + var headers = getHeaderNames(res) + + for (var i = 0; i < headers.length; i++) { + res.removeHeader(headers[i]) + } +} + +/** + * Collapse all leading slashes into a single slash + * + * @param {string} str + * @private + */ +function collapseLeadingSlashes (str) { + for (var i = 0; i < str.length; i++) { + if (str[i] !== '/') { + break + } + } + + return i > 1 + ? '/' + str.substr(i) + : str +} + +/** + * Determine if path parts contain a dotfile. + * + * @api private + */ + +function containsDotFile (parts) { + for (var i = 0; i < parts.length; i++) { + var part = parts[i] + if (part.length > 1 && part[0] === '.') { + return true + } + } + + return false +} + +/** + * Create a Content-Range header. + * + * @param {string} type + * @param {number} size + * @param {array} [range] + */ + +function contentRange (type, size, range) { + return type + ' ' + (range ? range.start + '-' + range.end : '*') + '/' + size +} + +/** + * Create a minimal HTML document. + * + * @param {string} title + * @param {string} body + * @private + */ + +function createHtmlDocument (title, body) { + return '\n' + + '\n' + + '\n' + + '\n' + + '' + title + '\n' + + '\n' + + '\n' + + '
' + body + '
\n' + + '\n' + + '\n' +} + +/** + * Create a HttpError object from simple arguments. + * + * @param {number} status + * @param {Error|object} err + * @private + */ + +function createHttpError (status, err) { + if (!err) { + return createError(status) + } + + return err instanceof Error + ? createError(status, err, { expose: false }) + : createError(status, err) +} + +/** + * decodeURIComponent. + * + * Allows V8 to only deoptimize this fn instead of all + * of send(). + * + * @param {String} path + * @api private + */ + +function decode (path) { + try { + return decodeURIComponent(path) + } catch (err) { + return -1 + } +} + +/** + * Get the header names on a respnse. + * + * @param {object} res + * @returns {array[string]} + * @private + */ + +function getHeaderNames (res) { + return typeof res.getHeaderNames !== 'function' + ? Object.keys(res._headers || {}) + : res.getHeaderNames() +} + +/** + * Determine if emitter has listeners of a given type. + * + * The way to do this check is done three different ways in Node.js >= 0.8 + * so this consolidates them into a minimal set using instance methods. + * + * @param {EventEmitter} emitter + * @param {string} type + * @returns {boolean} + * @private + */ + +function hasListeners (emitter, type) { + var count = typeof emitter.listenerCount !== 'function' + ? emitter.listeners(type).length + : emitter.listenerCount(type) + + return count > 0 +} + +/** + * Determine if the response headers have been sent. + * + * @param {object} res + * @returns {boolean} + * @private + */ + +function headersSent (res) { + return typeof res.headersSent !== 'boolean' + ? Boolean(res._header) + : res.headersSent +} + +/** + * Normalize the index option into an array. + * + * @param {boolean|string|array} val + * @param {string} name + * @private + */ + +function normalizeList (val, name) { + var list = [].concat(val || []) + + for (var i = 0; i < list.length; i++) { + if (typeof list[i] !== 'string') { + throw new TypeError(name + ' must be array of strings or false') + } + } + + return list +} + +/** + * Parse an HTTP Date into a number. + * + * @param {string} date + * @private + */ + +function parseHttpDate (date) { + var timestamp = date && Date.parse(date) + + return typeof timestamp === 'number' + ? timestamp + : NaN +} + +/** + * Parse a HTTP token list. + * + * @param {string} str + * @private + */ + +function parseTokenList (str) { + var end = 0 + var list = [] + var start = 0 + + // gather tokens + for (var i = 0, len = str.length; i < len; i++) { + switch (str.charCodeAt(i)) { + case 0x20: /* */ + if (start === end) { + start = end = i + 1 + } + break + case 0x2c: /* , */ + if (start !== end) { + list.push(str.substring(start, end)) + } + start = end = i + 1 + break + default: + end = i + 1 + break + } + } + + // final token + if (start !== end) { + list.push(str.substring(start, end)) + } + + return list +} + +/** + * Set an object of headers on a response. + * + * @param {object} res + * @param {object} headers + * @private + */ + +function setHeaders (res, headers) { + var keys = Object.keys(headers) + + for (var i = 0; i < keys.length; i++) { + var key = keys[i] + res.setHeader(key, headers[key]) + } +} diff --git a/node_modules/send/node_modules/ms/index.js b/node_modules/send/node_modules/ms/index.js new file mode 100644 index 000000000..ea734fb73 --- /dev/null +++ b/node_modules/send/node_modules/ms/index.js @@ -0,0 +1,162 @@ +/** + * Helpers. + */ + +var s = 1000; +var m = s * 60; +var h = m * 60; +var d = h * 24; +var w = d * 7; +var y = d * 365.25; + +/** + * Parse or format the given `val`. + * + * Options: + * + * - `long` verbose formatting [false] + * + * @param {String|Number} val + * @param {Object} [options] + * @throws {Error} throw an error if val is not a non-empty string or a number + * @return {String|Number} + * @api public + */ + +module.exports = function (val, options) { + options = options || {}; + var type = typeof val; + if (type === 'string' && val.length > 0) { + return parse(val); + } else if (type === 'number' && isFinite(val)) { + return options.long ? fmtLong(val) : fmtShort(val); + } + throw new Error( + 'val is not a non-empty string or a valid number. val=' + + JSON.stringify(val) + ); +}; + +/** + * Parse the given `str` and return milliseconds. + * + * @param {String} str + * @return {Number} + * @api private + */ + +function parse(str) { + str = String(str); + if (str.length > 100) { + return; + } + var match = /^(-?(?:\d+)?\.?\d+) *(milliseconds?|msecs?|ms|seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|weeks?|w|years?|yrs?|y)?$/i.exec( + str + ); + if (!match) { + return; + } + var n = parseFloat(match[1]); + var type = (match[2] || 'ms').toLowerCase(); + switch (type) { + case 'years': + case 'year': + case 'yrs': + case 'yr': + case 'y': + return n * y; + case 'weeks': + case 'week': + case 'w': + return n * w; + case 'days': + case 'day': + case 'd': + return n * d; + case 'hours': + case 'hour': + case 'hrs': + case 'hr': + case 'h': + return n * h; + case 'minutes': + case 'minute': + case 'mins': + case 'min': + case 'm': + return n * m; + case 'seconds': + case 'second': + case 'secs': + case 'sec': + case 's': + return n * s; + case 'milliseconds': + case 'millisecond': + case 'msecs': + case 'msec': + case 'ms': + return n; + default: + return undefined; + } +} + +/** + * Short format for `ms`. + * + * @param {Number} ms + * @return {String} + * @api private + */ + +function fmtShort(ms) { + var msAbs = Math.abs(ms); + if (msAbs >= d) { + return Math.round(ms / d) + 'd'; + } + if (msAbs >= h) { + return Math.round(ms / h) + 'h'; + } + if (msAbs >= m) { + return Math.round(ms / m) + 'm'; + } + if (msAbs >= s) { + return Math.round(ms / s) + 's'; + } + return ms + 'ms'; +} + +/** + * Long format for `ms`. + * + * @param {Number} ms + * @return {String} + * @api private + */ + +function fmtLong(ms) { + var msAbs = Math.abs(ms); + if (msAbs >= d) { + return plural(ms, msAbs, d, 'day'); + } + if (msAbs >= h) { + return plural(ms, msAbs, h, 'hour'); + } + if (msAbs >= m) { + return plural(ms, msAbs, m, 'minute'); + } + if (msAbs >= s) { + return plural(ms, msAbs, s, 'second'); + } + return ms + ' ms'; +} + +/** + * Pluralization helper. + */ + +function plural(ms, msAbs, n, name) { + var isPlural = msAbs >= n * 1.5; + return Math.round(ms / n) + ' ' + name + (isPlural ? 's' : ''); +} diff --git a/node_modules/send/node_modules/ms/license.md b/node_modules/send/node_modules/ms/license.md new file mode 100644 index 000000000..fa5d39b62 --- /dev/null +++ b/node_modules/send/node_modules/ms/license.md @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2020 Vercel, Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/node_modules/send/node_modules/ms/package.json b/node_modules/send/node_modules/ms/package.json new file mode 100644 index 000000000..49971890d --- /dev/null +++ b/node_modules/send/node_modules/ms/package.json @@ -0,0 +1,38 @@ +{ + "name": "ms", + "version": "2.1.3", + "description": "Tiny millisecond conversion utility", + "repository": "vercel/ms", + "main": "./index", + "files": [ + "index.js" + ], + "scripts": { + "precommit": "lint-staged", + "lint": "eslint lib/* bin/*", + "test": "mocha tests.js" + }, + "eslintConfig": { + "extends": "eslint:recommended", + "env": { + "node": true, + "es6": true + } + }, + "lint-staged": { + "*.js": [ + "npm run lint", + "prettier --single-quote --write", + "git add" + ] + }, + "license": "MIT", + "devDependencies": { + "eslint": "4.18.2", + "expect.js": "0.3.1", + "husky": "0.14.3", + "lint-staged": "5.0.0", + "mocha": "4.0.1", + "prettier": "2.0.5" + } +} diff --git a/node_modules/send/node_modules/ms/readme.md b/node_modules/send/node_modules/ms/readme.md new file mode 100644 index 000000000..0fc1abb3b --- /dev/null +++ b/node_modules/send/node_modules/ms/readme.md @@ -0,0 +1,59 @@ +# ms + +![CI](https://github.com/vercel/ms/workflows/CI/badge.svg) + +Use this package to easily convert various time formats to milliseconds. + +## Examples + +```js +ms('2 days') // 172800000 +ms('1d') // 86400000 +ms('10h') // 36000000 +ms('2.5 hrs') // 9000000 +ms('2h') // 7200000 +ms('1m') // 60000 +ms('5s') // 5000 +ms('1y') // 31557600000 +ms('100') // 100 +ms('-3 days') // -259200000 +ms('-1h') // -3600000 +ms('-200') // -200 +``` + +### Convert from Milliseconds + +```js +ms(60000) // "1m" +ms(2 * 60000) // "2m" +ms(-3 * 60000) // "-3m" +ms(ms('10 hours')) // "10h" +``` + +### Time Format Written-Out + +```js +ms(60000, { long: true }) // "1 minute" +ms(2 * 60000, { long: true }) // "2 minutes" +ms(-3 * 60000, { long: true }) // "-3 minutes" +ms(ms('10 hours'), { long: true }) // "10 hours" +``` + +## Features + +- Works both in [Node.js](https://nodejs.org) and in the browser +- If a number is supplied to `ms`, a string with a unit is returned +- If a string that contains the number is supplied, it returns it as a number (e.g.: it returns `100` for `'100'`) +- If you pass a string with a number and a valid unit, the number of equivalent milliseconds is returned + +## Related Packages + +- [ms.macro](https://github.com/knpwrs/ms.macro) - Run `ms` as a macro at build-time. + +## Caught a Bug? + +1. [Fork](https://help.github.com/articles/fork-a-repo/) this repository to your own GitHub account and then [clone](https://help.github.com/articles/cloning-a-repository/) it to your local device +2. Link the package to the global module directory: `npm link` +3. Within the module you want to test your local development instance of ms, just link it to the dependencies: `npm link ms`. Instead of the default one from npm, Node.js will now use your clone of ms! + +As always, you can run the tests using: `npm test` diff --git a/node_modules/send/package.json b/node_modules/send/package.json new file mode 100644 index 000000000..7f269d515 --- /dev/null +++ b/node_modules/send/package.json @@ -0,0 +1,62 @@ +{ + "name": "send", + "description": "Better streaming static file server with Range and conditional-GET support", + "version": "0.18.0", + "author": "TJ Holowaychuk ", + "contributors": [ + "Douglas Christopher Wilson ", + "James Wyatt Cready ", + "Jesús Leganés Combarro " + ], + "license": "MIT", + "repository": "pillarjs/send", + "keywords": [ + "static", + "file", + "server" + ], + "dependencies": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "devDependencies": { + "after": "0.8.2", + "eslint": "7.32.0", + "eslint-config-standard": "14.1.1", + "eslint-plugin-import": "2.25.4", + "eslint-plugin-markdown": "2.2.1", + "eslint-plugin-node": "11.1.0", + "eslint-plugin-promise": "5.2.0", + "eslint-plugin-standard": "4.1.0", + "mocha": "9.2.2", + "nyc": "15.1.0", + "supertest": "6.2.2" + }, + "files": [ + "HISTORY.md", + "LICENSE", + "README.md", + "SECURITY.md", + "index.js" + ], + "engines": { + "node": ">= 0.8.0" + }, + "scripts": { + "lint": "eslint .", + "test": "mocha --check-leaks --reporter spec --bail", + "test-ci": "nyc --reporter=lcov --reporter=text npm test", + "test-cov": "nyc --reporter=html --reporter=text npm test" + } +} diff --git a/node_modules/serve-static/HISTORY.md b/node_modules/serve-static/HISTORY.md new file mode 100644 index 000000000..6b5845635 --- /dev/null +++ b/node_modules/serve-static/HISTORY.md @@ -0,0 +1,471 @@ +1.15.0 / 2022-03-24 +=================== + + * deps: send@0.18.0 + - Fix emitted 416 error missing headers property + - Limit the headers removed for 304 response + - deps: depd@2.0.0 + - deps: destroy@1.2.0 + - deps: http-errors@2.0.0 + - deps: on-finished@2.4.1 + - deps: statuses@2.0.1 + +1.14.2 / 2021-12-15 +=================== + + * deps: send@0.17.2 + - deps: http-errors@1.8.1 + - deps: ms@2.1.3 + - pref: ignore empty http tokens + +1.14.1 / 2019-05-10 +=================== + + * Set stricter CSP header in redirect response + * deps: send@0.17.1 + - deps: range-parser@~1.2.1 + +1.14.0 / 2019-05-07 +=================== + + * deps: parseurl@~1.3.3 + * deps: send@0.17.0 + - deps: http-errors@~1.7.2 + - deps: mime@1.6.0 + - deps: ms@2.1.1 + - deps: statuses@~1.5.0 + - perf: remove redundant `path.normalize` call + +1.13.2 / 2018-02-07 +=================== + + * Fix incorrect end tag in redirects + * deps: encodeurl@~1.0.2 + - Fix encoding `%` as last character + * deps: send@0.16.2 + - deps: depd@~1.1.2 + - deps: encodeurl@~1.0.2 + - deps: statuses@~1.4.0 + +1.13.1 / 2017-09-29 +=================== + + * Fix regression when `root` is incorrectly set to a file + * deps: send@0.16.1 + +1.13.0 / 2017-09-27 +=================== + + * deps: send@0.16.0 + - Add 70 new types for file extensions + - Add `immutable` option + - Fix missing `` in default error & redirects + - Set charset as "UTF-8" for .js and .json + - Use instance methods on steam to check for listeners + - deps: mime@1.4.1 + - perf: improve path validation speed + +1.12.6 / 2017-09-22 +=================== + + * deps: send@0.15.6 + - deps: debug@2.6.9 + - perf: improve `If-Match` token parsing + * perf: improve slash collapsing + +1.12.5 / 2017-09-21 +=================== + + * deps: parseurl@~1.3.2 + - perf: reduce overhead for full URLs + - perf: unroll the "fast-path" `RegExp` + * deps: send@0.15.5 + - Fix handling of modified headers with invalid dates + - deps: etag@~1.8.1 + - deps: fresh@0.5.2 + +1.12.4 / 2017-08-05 +=================== + + * deps: send@0.15.4 + - deps: debug@2.6.8 + - deps: depd@~1.1.1 + - deps: http-errors@~1.6.2 + +1.12.3 / 2017-05-16 +=================== + + * deps: send@0.15.3 + - deps: debug@2.6.7 + +1.12.2 / 2017-04-26 +=================== + + * deps: send@0.15.2 + - deps: debug@2.6.4 + +1.12.1 / 2017-03-04 +=================== + + * deps: send@0.15.1 + - Fix issue when `Date.parse` does not return `NaN` on invalid date + - Fix strict violation in broken environments + +1.12.0 / 2017-02-25 +=================== + + * Send complete HTML document in redirect response + * Set default CSP header in redirect response + * deps: send@0.15.0 + - Fix false detection of `no-cache` request directive + - Fix incorrect result when `If-None-Match` has both `*` and ETags + - Fix weak `ETag` matching to match spec + - Remove usage of `res._headers` private field + - Support `If-Match` and `If-Unmodified-Since` headers + - Use `res.getHeaderNames()` when available + - Use `res.headersSent` when available + - deps: debug@2.6.1 + - deps: etag@~1.8.0 + - deps: fresh@0.5.0 + - deps: http-errors@~1.6.1 + +1.11.2 / 2017-01-23 +=================== + + * deps: send@0.14.2 + - deps: http-errors@~1.5.1 + - deps: ms@0.7.2 + - deps: statuses@~1.3.1 + +1.11.1 / 2016-06-10 +=================== + + * Fix redirect error when `req.url` contains raw non-URL characters + * deps: send@0.14.1 + +1.11.0 / 2016-06-07 +=================== + + * Use status code 301 for redirects + * deps: send@0.14.0 + - Add `acceptRanges` option + - Add `cacheControl` option + - Attempt to combine multiple ranges into single range + - Correctly inherit from `Stream` class + - Fix `Content-Range` header in 416 responses when using `start`/`end` options + - Fix `Content-Range` header missing from default 416 responses + - Ignore non-byte `Range` headers + - deps: http-errors@~1.5.0 + - deps: range-parser@~1.2.0 + - deps: statuses@~1.3.0 + - perf: remove argument reassignment + +1.10.3 / 2016-05-30 +=================== + + * deps: send@0.13.2 + - Fix invalid `Content-Type` header when `send.mime.default_type` unset + +1.10.2 / 2016-01-19 +=================== + + * deps: parseurl@~1.3.1 + - perf: enable strict mode + +1.10.1 / 2016-01-16 +=================== + + * deps: escape-html@~1.0.3 + - perf: enable strict mode + - perf: optimize string replacement + - perf: use faster string coercion + * deps: send@0.13.1 + - deps: depd@~1.1.0 + - deps: destroy@~1.0.4 + - deps: escape-html@~1.0.3 + - deps: range-parser@~1.0.3 + +1.10.0 / 2015-06-17 +=================== + + * Add `fallthrough` option + - Allows declaring this middleware is the final destination + - Provides better integration with Express patterns + * Fix reading options from options prototype + * Improve the default redirect response headers + * deps: escape-html@1.0.2 + * deps: send@0.13.0 + - Allow Node.js HTTP server to set `Date` response header + - Fix incorrectly removing `Content-Location` on 304 response + - Improve the default redirect response headers + - Send appropriate headers on default error response + - Use `http-errors` for standard emitted errors + - Use `statuses` instead of `http` module for status messages + - deps: escape-html@1.0.2 + - deps: etag@~1.7.0 + - deps: fresh@0.3.0 + - deps: on-finished@~2.3.0 + - perf: enable strict mode + - perf: remove unnecessary array allocations + * perf: enable strict mode + * perf: remove argument reassignment + +1.9.3 / 2015-05-14 +================== + + * deps: send@0.12.3 + - deps: debug@~2.2.0 + - deps: depd@~1.0.1 + - deps: etag@~1.6.0 + - deps: ms@0.7.1 + - deps: on-finished@~2.2.1 + +1.9.2 / 2015-03-14 +================== + + * deps: send@0.12.2 + - Throw errors early for invalid `extensions` or `index` options + - deps: debug@~2.1.3 + +1.9.1 / 2015-02-17 +================== + + * deps: send@0.12.1 + - Fix regression sending zero-length files + +1.9.0 / 2015-02-16 +================== + + * deps: send@0.12.0 + - Always read the stat size from the file + - Fix mutating passed-in `options` + - deps: mime@1.3.4 + +1.8.1 / 2015-01-20 +================== + + * Fix redirect loop in Node.js 0.11.14 + * deps: send@0.11.1 + - Fix root path disclosure + +1.8.0 / 2015-01-05 +================== + + * deps: send@0.11.0 + - deps: debug@~2.1.1 + - deps: etag@~1.5.1 + - deps: ms@0.7.0 + - deps: on-finished@~2.2.0 + +1.7.2 / 2015-01-02 +================== + + * Fix potential open redirect when mounted at root + +1.7.1 / 2014-10-22 +================== + + * deps: send@0.10.1 + - deps: on-finished@~2.1.1 + +1.7.0 / 2014-10-15 +================== + + * deps: send@0.10.0 + - deps: debug@~2.1.0 + - deps: depd@~1.0.0 + - deps: etag@~1.5.0 + +1.6.5 / 2015-02-04 +================== + + * Fix potential open redirect when mounted at root + - Back-ported from v1.7.2 + +1.6.4 / 2014-10-08 +================== + + * Fix redirect loop when index file serving disabled + +1.6.3 / 2014-09-24 +================== + + * deps: send@0.9.3 + - deps: etag@~1.4.0 + +1.6.2 / 2014-09-15 +================== + + * deps: send@0.9.2 + - deps: depd@0.4.5 + - deps: etag@~1.3.1 + - deps: range-parser@~1.0.2 + +1.6.1 / 2014-09-07 +================== + + * deps: send@0.9.1 + - deps: fresh@0.2.4 + +1.6.0 / 2014-09-07 +================== + + * deps: send@0.9.0 + - Add `lastModified` option + - Use `etag` to generate `ETag` header + - deps: debug@~2.0.0 + +1.5.4 / 2014-09-04 +================== + + * deps: send@0.8.5 + - Fix a path traversal issue when using `root` + - Fix malicious path detection for empty string path + +1.5.3 / 2014-08-17 +================== + + * deps: send@0.8.3 + +1.5.2 / 2014-08-14 +================== + + * deps: send@0.8.2 + - Work around `fd` leak in Node.js 0.10 for `fs.ReadStream` + +1.5.1 / 2014-08-09 +================== + + * Fix parsing of weird `req.originalUrl` values + * deps: parseurl@~1.3.0 + * deps: utils-merge@1.0.0 + +1.5.0 / 2014-08-05 +================== + + * deps: send@0.8.1 + - Add `extensions` option + +1.4.4 / 2014-08-04 +================== + + * deps: send@0.7.4 + - Fix serving index files without root dir + +1.4.3 / 2014-07-29 +================== + + * deps: send@0.7.3 + - Fix incorrect 403 on Windows and Node.js 0.11 + +1.4.2 / 2014-07-27 +================== + + * deps: send@0.7.2 + - deps: depd@0.4.4 + +1.4.1 / 2014-07-26 +================== + + * deps: send@0.7.1 + - deps: depd@0.4.3 + +1.4.0 / 2014-07-21 +================== + + * deps: parseurl@~1.2.0 + - Cache URLs based on original value + - Remove no-longer-needed URL mis-parse work-around + - Simplify the "fast-path" `RegExp` + * deps: send@0.7.0 + - Add `dotfiles` option + - deps: debug@1.0.4 + - deps: depd@0.4.2 + +1.3.2 / 2014-07-11 +================== + + * deps: send@0.6.0 + - Cap `maxAge` value to 1 year + - deps: debug@1.0.3 + +1.3.1 / 2014-07-09 +================== + + * deps: parseurl@~1.1.3 + - faster parsing of href-only URLs + +1.3.0 / 2014-06-28 +================== + + * Add `setHeaders` option + * Include HTML link in redirect response + * deps: send@0.5.0 + - Accept string for `maxAge` (converted by `ms`) + +1.2.3 / 2014-06-11 +================== + + * deps: send@0.4.3 + - Do not throw un-catchable error on file open race condition + - Use `escape-html` for HTML escaping + - deps: debug@1.0.2 + - deps: finished@1.2.2 + - deps: fresh@0.2.2 + +1.2.2 / 2014-06-09 +================== + + * deps: send@0.4.2 + - fix "event emitter leak" warnings + - deps: debug@1.0.1 + - deps: finished@1.2.1 + +1.2.1 / 2014-06-02 +================== + + * use `escape-html` for escaping + * deps: send@0.4.1 + - Send `max-age` in `Cache-Control` in correct format + +1.2.0 / 2014-05-29 +================== + + * deps: send@0.4.0 + - Calculate ETag with md5 for reduced collisions + - Fix wrong behavior when index file matches directory + - Ignore stream errors after request ends + - Skip directories in index file search + - deps: debug@0.8.1 + +1.1.0 / 2014-04-24 +================== + + * Accept options directly to `send` module + * deps: send@0.3.0 + +1.0.4 / 2014-04-07 +================== + + * Resolve relative paths at middleware setup + * Use parseurl to parse the URL from request + +1.0.3 / 2014-03-20 +================== + + * Do not rely on connect-like environments + +1.0.2 / 2014-03-06 +================== + + * deps: send@0.2.0 + +1.0.1 / 2014-03-05 +================== + + * Add mime export for back-compat + +1.0.0 / 2014-03-05 +================== + + * Genesis from `connect` diff --git a/node_modules/serve-static/LICENSE b/node_modules/serve-static/LICENSE new file mode 100644 index 000000000..cbe62e8e7 --- /dev/null +++ b/node_modules/serve-static/LICENSE @@ -0,0 +1,25 @@ +(The MIT License) + +Copyright (c) 2010 Sencha Inc. +Copyright (c) 2011 LearnBoost +Copyright (c) 2011 TJ Holowaychuk +Copyright (c) 2014-2016 Douglas Christopher Wilson + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +'Software'), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/node_modules/serve-static/README.md b/node_modules/serve-static/README.md new file mode 100644 index 000000000..262d944ab --- /dev/null +++ b/node_modules/serve-static/README.md @@ -0,0 +1,257 @@ +# serve-static + +[![NPM Version][npm-version-image]][npm-url] +[![NPM Downloads][npm-downloads-image]][npm-url] +[![Linux Build][github-actions-ci-image]][github-actions-ci-url] +[![Windows Build][appveyor-image]][appveyor-url] +[![Test Coverage][coveralls-image]][coveralls-url] + +## Install + +This is a [Node.js](https://nodejs.org/en/) module available through the +[npm registry](https://www.npmjs.com/). Installation is done using the +[`npm install` command](https://docs.npmjs.com/getting-started/installing-npm-packages-locally): + +```sh +$ npm install serve-static +``` + +## API + +```js +var serveStatic = require('serve-static') +``` + +### serveStatic(root, options) + +Create a new middleware function to serve files from within a given root +directory. The file to serve will be determined by combining `req.url` +with the provided root directory. When a file is not found, instead of +sending a 404 response, this module will instead call `next()` to move on +to the next middleware, allowing for stacking and fall-backs. + +#### Options + +##### acceptRanges + +Enable or disable accepting ranged requests, defaults to true. +Disabling this will not send `Accept-Ranges` and ignore the contents +of the `Range` request header. + +##### cacheControl + +Enable or disable setting `Cache-Control` response header, defaults to +true. Disabling this will ignore the `immutable` and `maxAge` options. + +##### dotfiles + + Set how "dotfiles" are treated when encountered. A dotfile is a file +or directory that begins with a dot ("."). Note this check is done on +the path itself without checking if the path actually exists on the +disk. If `root` is specified, only the dotfiles above the root are +checked (i.e. the root itself can be within a dotfile when set +to "deny"). + + - `'allow'` No special treatment for dotfiles. + - `'deny'` Deny a request for a dotfile and 403/`next()`. + - `'ignore'` Pretend like the dotfile does not exist and 404/`next()`. + +The default value is similar to `'ignore'`, with the exception that this +default will not ignore the files within a directory that begins with a dot. + +##### etag + +Enable or disable etag generation, defaults to true. + +##### extensions + +Set file extension fallbacks. When set, if a file is not found, the given +extensions will be added to the file name and search for. The first that +exists will be served. Example: `['html', 'htm']`. + +The default value is `false`. + +##### fallthrough + +Set the middleware to have client errors fall-through as just unhandled +requests, otherwise forward a client error. The difference is that client +errors like a bad request or a request to a non-existent file will cause +this middleware to simply `next()` to your next middleware when this value +is `true`. When this value is `false`, these errors (even 404s), will invoke +`next(err)`. + +Typically `true` is desired such that multiple physical directories can be +mapped to the same web address or for routes to fill in non-existent files. + +The value `false` can be used if this middleware is mounted at a path that +is designed to be strictly a single file system directory, which allows for +short-circuiting 404s for less overhead. This middleware will also reply to +all methods. + +The default value is `true`. + +##### immutable + +Enable or disable the `immutable` directive in the `Cache-Control` response +header, defaults to `false`. If set to `true`, the `maxAge` option should +also be specified to enable caching. The `immutable` directive will prevent +supported clients from making conditional requests during the life of the +`maxAge` option to check if the file has changed. + +##### index + +By default this module will send "index.html" files in response to a request +on a directory. To disable this set `false` or to supply a new index pass a +string or an array in preferred order. + +##### lastModified + +Enable or disable `Last-Modified` header, defaults to true. Uses the file +system's last modified value. + +##### maxAge + +Provide a max-age in milliseconds for http caching, defaults to 0. This +can also be a string accepted by the [ms](https://www.npmjs.org/package/ms#readme) +module. + +##### redirect + +Redirect to trailing "/" when the pathname is a dir. Defaults to `true`. + +##### setHeaders + +Function to set custom headers on response. Alterations to the headers need to +occur synchronously. The function is called as `fn(res, path, stat)`, where +the arguments are: + + - `res` the response object + - `path` the file path that is being sent + - `stat` the stat object of the file that is being sent + +## Examples + +### Serve files with vanilla node.js http server + +```js +var finalhandler = require('finalhandler') +var http = require('http') +var serveStatic = require('serve-static') + +// Serve up public/ftp folder +var serve = serveStatic('public/ftp', { index: ['index.html', 'index.htm'] }) + +// Create server +var server = http.createServer(function onRequest (req, res) { + serve(req, res, finalhandler(req, res)) +}) + +// Listen +server.listen(3000) +``` + +### Serve all files as downloads + +```js +var contentDisposition = require('content-disposition') +var finalhandler = require('finalhandler') +var http = require('http') +var serveStatic = require('serve-static') + +// Serve up public/ftp folder +var serve = serveStatic('public/ftp', { + index: false, + setHeaders: setHeaders +}) + +// Set header to force download +function setHeaders (res, path) { + res.setHeader('Content-Disposition', contentDisposition(path)) +} + +// Create server +var server = http.createServer(function onRequest (req, res) { + serve(req, res, finalhandler(req, res)) +}) + +// Listen +server.listen(3000) +``` + +### Serving using express + +#### Simple + +This is a simple example of using Express. + +```js +var express = require('express') +var serveStatic = require('serve-static') + +var app = express() + +app.use(serveStatic('public/ftp', { index: ['default.html', 'default.htm'] })) +app.listen(3000) +``` + +#### Multiple roots + +This example shows a simple way to search through multiple directories. +Files are searched for in `public-optimized/` first, then `public/` second +as a fallback. + +```js +var express = require('express') +var path = require('path') +var serveStatic = require('serve-static') + +var app = express() + +app.use(serveStatic(path.join(__dirname, 'public-optimized'))) +app.use(serveStatic(path.join(__dirname, 'public'))) +app.listen(3000) +``` + +#### Different settings for paths + +This example shows how to set a different max age depending on the served +file type. In this example, HTML files are not cached, while everything else +is for 1 day. + +```js +var express = require('express') +var path = require('path') +var serveStatic = require('serve-static') + +var app = express() + +app.use(serveStatic(path.join(__dirname, 'public'), { + maxAge: '1d', + setHeaders: setCustomCacheControl +})) + +app.listen(3000) + +function setCustomCacheControl (res, path) { + if (serveStatic.mime.lookup(path) === 'text/html') { + // Custom Cache-Control for HTML files + res.setHeader('Cache-Control', 'public, max-age=0') + } +} +``` + +## License + +[MIT](LICENSE) + +[appveyor-image]: https://badgen.net/appveyor/ci/dougwilson/serve-static/master?label=windows +[appveyor-url]: https://ci.appveyor.com/project/dougwilson/serve-static +[coveralls-image]: https://badgen.net/coveralls/c/github/expressjs/serve-static/master +[coveralls-url]: https://coveralls.io/r/expressjs/serve-static?branch=master +[github-actions-ci-image]: https://badgen.net/github/checks/expressjs/serve-static/master?label=linux +[github-actions-ci-url]: https://github.com/expressjs/serve-static/actions/workflows/ci.yml +[node-image]: https://badgen.net/npm/node/serve-static +[node-url]: https://nodejs.org/en/download/ +[npm-downloads-image]: https://badgen.net/npm/dm/serve-static +[npm-url]: https://npmjs.org/package/serve-static +[npm-version-image]: https://badgen.net/npm/v/serve-static diff --git a/node_modules/serve-static/index.js b/node_modules/serve-static/index.js new file mode 100644 index 000000000..b7d3984c4 --- /dev/null +++ b/node_modules/serve-static/index.js @@ -0,0 +1,210 @@ +/*! + * serve-static + * Copyright(c) 2010 Sencha Inc. + * Copyright(c) 2011 TJ Holowaychuk + * Copyright(c) 2014-2016 Douglas Christopher Wilson + * MIT Licensed + */ + +'use strict' + +/** + * Module dependencies. + * @private + */ + +var encodeUrl = require('encodeurl') +var escapeHtml = require('escape-html') +var parseUrl = require('parseurl') +var resolve = require('path').resolve +var send = require('send') +var url = require('url') + +/** + * Module exports. + * @public + */ + +module.exports = serveStatic +module.exports.mime = send.mime + +/** + * @param {string} root + * @param {object} [options] + * @return {function} + * @public + */ + +function serveStatic (root, options) { + if (!root) { + throw new TypeError('root path required') + } + + if (typeof root !== 'string') { + throw new TypeError('root path must be a string') + } + + // copy options object + var opts = Object.create(options || null) + + // fall-though + var fallthrough = opts.fallthrough !== false + + // default redirect + var redirect = opts.redirect !== false + + // headers listener + var setHeaders = opts.setHeaders + + if (setHeaders && typeof setHeaders !== 'function') { + throw new TypeError('option setHeaders must be function') + } + + // setup options for send + opts.maxage = opts.maxage || opts.maxAge || 0 + opts.root = resolve(root) + + // construct directory listener + var onDirectory = redirect + ? createRedirectDirectoryListener() + : createNotFoundDirectoryListener() + + return function serveStatic (req, res, next) { + if (req.method !== 'GET' && req.method !== 'HEAD') { + if (fallthrough) { + return next() + } + + // method not allowed + res.statusCode = 405 + res.setHeader('Allow', 'GET, HEAD') + res.setHeader('Content-Length', '0') + res.end() + return + } + + var forwardError = !fallthrough + var originalUrl = parseUrl.original(req) + var path = parseUrl(req).pathname + + // make sure redirect occurs at mount + if (path === '/' && originalUrl.pathname.substr(-1) !== '/') { + path = '' + } + + // create send stream + var stream = send(req, path, opts) + + // add directory handler + stream.on('directory', onDirectory) + + // add headers listener + if (setHeaders) { + stream.on('headers', setHeaders) + } + + // add file listener for fallthrough + if (fallthrough) { + stream.on('file', function onFile () { + // once file is determined, always forward error + forwardError = true + }) + } + + // forward errors + stream.on('error', function error (err) { + if (forwardError || !(err.statusCode < 500)) { + next(err) + return + } + + next() + }) + + // pipe + stream.pipe(res) + } +} + +/** + * Collapse all leading slashes into a single slash + * @private + */ +function collapseLeadingSlashes (str) { + for (var i = 0; i < str.length; i++) { + if (str.charCodeAt(i) !== 0x2f /* / */) { + break + } + } + + return i > 1 + ? '/' + str.substr(i) + : str +} + +/** + * Create a minimal HTML document. + * + * @param {string} title + * @param {string} body + * @private + */ + +function createHtmlDocument (title, body) { + return '\n' + + '\n' + + '\n' + + '\n' + + '' + title + '\n' + + '\n' + + '\n' + + '
' + body + '
\n' + + '\n' + + '\n' +} + +/** + * Create a directory listener that just 404s. + * @private + */ + +function createNotFoundDirectoryListener () { + return function notFound () { + this.error(404) + } +} + +/** + * Create a directory listener that performs a redirect. + * @private + */ + +function createRedirectDirectoryListener () { + return function redirect (res) { + if (this.hasTrailingSlash()) { + this.error(404) + return + } + + // get original URL + var originalUrl = parseUrl.original(this.req) + + // append trailing slash + originalUrl.path = null + originalUrl.pathname = collapseLeadingSlashes(originalUrl.pathname + '/') + + // reformat the URL + var loc = encodeUrl(url.format(originalUrl)) + var doc = createHtmlDocument('Redirecting', 'Redirecting to ' + + escapeHtml(loc) + '') + + // send redirect response + res.statusCode = 301 + res.setHeader('Content-Type', 'text/html; charset=UTF-8') + res.setHeader('Content-Length', Buffer.byteLength(doc)) + res.setHeader('Content-Security-Policy', "default-src 'none'") + res.setHeader('X-Content-Type-Options', 'nosniff') + res.setHeader('Location', loc) + res.end(doc) + } +} diff --git a/node_modules/serve-static/package.json b/node_modules/serve-static/package.json new file mode 100644 index 000000000..9d935f5d8 --- /dev/null +++ b/node_modules/serve-static/package.json @@ -0,0 +1,42 @@ +{ + "name": "serve-static", + "description": "Serve static files", + "version": "1.15.0", + "author": "Douglas Christopher Wilson ", + "license": "MIT", + "repository": "expressjs/serve-static", + "dependencies": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.18.0" + }, + "devDependencies": { + "eslint": "7.32.0", + "eslint-config-standard": "14.1.1", + "eslint-plugin-import": "2.25.4", + "eslint-plugin-markdown": "2.2.1", + "eslint-plugin-node": "11.1.0", + "eslint-plugin-promise": "5.2.0", + "eslint-plugin-standard": "4.1.0", + "mocha": "9.2.2", + "nyc": "15.1.0", + "safe-buffer": "5.2.1", + "supertest": "6.2.2" + }, + "files": [ + "LICENSE", + "HISTORY.md", + "index.js" + ], + "engines": { + "node": ">= 0.8.0" + }, + "scripts": { + "lint": "eslint .", + "test": "mocha --reporter spec --bail --check-leaks test/", + "test-ci": "nyc --reporter=lcov --reporter=text npm test", + "test-cov": "nyc --reporter=html --reporter=text npm test", + "version": "node scripts/version-history.js && git add HISTORY.md" + } +} diff --git a/node_modules/setprototypeof/LICENSE b/node_modules/setprototypeof/LICENSE new file mode 100644 index 000000000..61afa2f18 --- /dev/null +++ b/node_modules/setprototypeof/LICENSE @@ -0,0 +1,13 @@ +Copyright (c) 2015, Wes Todd + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION +OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN +CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. diff --git a/node_modules/setprototypeof/README.md b/node_modules/setprototypeof/README.md new file mode 100644 index 000000000..791eeff0c --- /dev/null +++ b/node_modules/setprototypeof/README.md @@ -0,0 +1,31 @@ +# Polyfill for `Object.setPrototypeOf` + +[![NPM Version](https://img.shields.io/npm/v/setprototypeof.svg)](https://npmjs.org/package/setprototypeof) +[![NPM Downloads](https://img.shields.io/npm/dm/setprototypeof.svg)](https://npmjs.org/package/setprototypeof) +[![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg)](https://github.com/standard/standard) + +A simple cross platform implementation to set the prototype of an instianted object. Supports all modern browsers and at least back to IE8. + +## Usage: + +``` +$ npm install --save setprototypeof +``` + +```javascript +var setPrototypeOf = require('setprototypeof') + +var obj = {} +setPrototypeOf(obj, { + foo: function () { + return 'bar' + } +}) +obj.foo() // bar +``` + +TypeScript is also supported: + +```typescript +import setPrototypeOf from 'setprototypeof' +``` diff --git a/node_modules/setprototypeof/index.d.ts b/node_modules/setprototypeof/index.d.ts new file mode 100644 index 000000000..f108ecd0a --- /dev/null +++ b/node_modules/setprototypeof/index.d.ts @@ -0,0 +1,2 @@ +declare function setPrototypeOf(o: any, proto: object | null): any; +export = setPrototypeOf; diff --git a/node_modules/setprototypeof/index.js b/node_modules/setprototypeof/index.js new file mode 100644 index 000000000..c5270551e --- /dev/null +++ b/node_modules/setprototypeof/index.js @@ -0,0 +1,17 @@ +'use strict' +/* eslint no-proto: 0 */ +module.exports = Object.setPrototypeOf || ({ __proto__: [] } instanceof Array ? setProtoOf : mixinProperties) + +function setProtoOf (obj, proto) { + obj.__proto__ = proto + return obj +} + +function mixinProperties (obj, proto) { + for (var prop in proto) { + if (!Object.prototype.hasOwnProperty.call(obj, prop)) { + obj[prop] = proto[prop] + } + } + return obj +} diff --git a/node_modules/setprototypeof/package.json b/node_modules/setprototypeof/package.json new file mode 100644 index 000000000..f20915bea --- /dev/null +++ b/node_modules/setprototypeof/package.json @@ -0,0 +1,38 @@ +{ + "name": "setprototypeof", + "version": "1.2.0", + "description": "A small polyfill for Object.setprototypeof", + "main": "index.js", + "typings": "index.d.ts", + "scripts": { + "test": "standard && mocha", + "testallversions": "npm run node010 && npm run node4 && npm run node6 && npm run node9 && npm run node11", + "testversion": "docker run -it --rm -v $(PWD):/usr/src/app -w /usr/src/app node:${NODE_VER} npm install mocha@${MOCHA_VER:-latest} && npm t", + "node010": "NODE_VER=0.10 MOCHA_VER=3 npm run testversion", + "node4": "NODE_VER=4 npm run testversion", + "node6": "NODE_VER=6 npm run testversion", + "node9": "NODE_VER=9 npm run testversion", + "node11": "NODE_VER=11 npm run testversion", + "prepublishOnly": "npm t", + "postpublish": "git push origin && git push origin --tags" + }, + "repository": { + "type": "git", + "url": "https://github.com/wesleytodd/setprototypeof.git" + }, + "keywords": [ + "polyfill", + "object", + "setprototypeof" + ], + "author": "Wes Todd", + "license": "ISC", + "bugs": { + "url": "https://github.com/wesleytodd/setprototypeof/issues" + }, + "homepage": "https://github.com/wesleytodd/setprototypeof", + "devDependencies": { + "mocha": "^6.1.4", + "standard": "^13.0.2" + } +} diff --git a/node_modules/setprototypeof/test/index.js b/node_modules/setprototypeof/test/index.js new file mode 100644 index 000000000..afeb4ddb2 --- /dev/null +++ b/node_modules/setprototypeof/test/index.js @@ -0,0 +1,24 @@ +'use strict' +/* eslint-env mocha */ +/* eslint no-proto: 0 */ +var assert = require('assert') +var setPrototypeOf = require('..') + +describe('setProtoOf(obj, proto)', function () { + it('should merge objects', function () { + var obj = { a: 1, b: 2 } + var proto = { b: 3, c: 4 } + var mergeObj = setPrototypeOf(obj, proto) + + if (Object.getPrototypeOf) { + assert.strictEqual(Object.getPrototypeOf(obj), proto) + } else if ({ __proto__: [] } instanceof Array) { + assert.strictEqual(obj.__proto__, proto) + } else { + assert.strictEqual(obj.a, 1) + assert.strictEqual(obj.b, 2) + assert.strictEqual(obj.c, 4) + } + assert.strictEqual(mergeObj, obj) + }) +}) diff --git a/node_modules/side-channel/.eslintignore b/node_modules/side-channel/.eslintignore new file mode 100644 index 000000000..404abb221 --- /dev/null +++ b/node_modules/side-channel/.eslintignore @@ -0,0 +1 @@ +coverage/ diff --git a/node_modules/side-channel/.eslintrc b/node_modules/side-channel/.eslintrc new file mode 100644 index 000000000..850ac1fa8 --- /dev/null +++ b/node_modules/side-channel/.eslintrc @@ -0,0 +1,11 @@ +{ + "root": true, + + "extends": "@ljharb", + + "rules": { + "max-lines-per-function": 0, + "max-params": 0, + "new-cap": [2, { "capIsNewExceptions": ["GetIntrinsic"] }], + }, +} diff --git a/node_modules/side-channel/.github/FUNDING.yml b/node_modules/side-channel/.github/FUNDING.yml new file mode 100644 index 000000000..2a94840c6 --- /dev/null +++ b/node_modules/side-channel/.github/FUNDING.yml @@ -0,0 +1,12 @@ +# These are supported funding model platforms + +github: [ljharb] +patreon: # Replace with a single Patreon username +open_collective: # Replace with a single Open Collective username +ko_fi: # Replace with a single Ko-fi username +tidelift: npm/side-channel +community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry +liberapay: # Replace with a single Liberapay username +issuehunt: # Replace with a single IssueHunt username +otechie: # Replace with a single Otechie username +custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] diff --git a/node_modules/side-channel/.nycrc b/node_modules/side-channel/.nycrc new file mode 100644 index 000000000..1826526e0 --- /dev/null +++ b/node_modules/side-channel/.nycrc @@ -0,0 +1,13 @@ +{ + "all": true, + "check-coverage": false, + "reporter": ["text-summary", "text", "html", "json"], + "lines": 86, + "statements": 85.93, + "functions": 82.43, + "branches": 76.06, + "exclude": [ + "coverage", + "test" + ] +} diff --git a/node_modules/side-channel/CHANGELOG.md b/node_modules/side-channel/CHANGELOG.md new file mode 100644 index 000000000..a3d161fac --- /dev/null +++ b/node_modules/side-channel/CHANGELOG.md @@ -0,0 +1,65 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [v1.0.4](https://github.com/ljharb/side-channel/compare/v1.0.3...v1.0.4) - 2020-12-29 + +### Commits + +- [Tests] migrate tests to Github Actions [`10909cb`](https://github.com/ljharb/side-channel/commit/10909cbf8ce9c0bf96f604cf13d7ffd5a22c2d40) +- [Refactor] Use a linked list rather than an array, and move accessed nodes to the beginning [`195613f`](https://github.com/ljharb/side-channel/commit/195613f28b5c1e6072ef0b61b5beebaf2b6a304e) +- [meta] do not publish github action workflow files [`290ec29`](https://github.com/ljharb/side-channel/commit/290ec29cd21a60585145b4a7237ec55228c52c27) +- [Tests] run `nyc` on all tests; use `tape` runner [`ea6d030`](https://github.com/ljharb/side-channel/commit/ea6d030ff3fe6be2eca39e859d644c51ecd88869) +- [actions] add "Allow Edits" workflow [`d464d8f`](https://github.com/ljharb/side-channel/commit/d464d8fe52b5eddf1504a0ed97f0941a90f32c15) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `auto-changelog` [`02daca8`](https://github.com/ljharb/side-channel/commit/02daca87c6809821c97be468d1afa2f5ef447383) +- [Refactor] use `call-bind` and `get-intrinsic` instead of `es-abstract` [`e09d481`](https://github.com/ljharb/side-channel/commit/e09d481528452ebafa5cdeae1af665c35aa2deee) +- [Deps] update `object.assign` [`ee83aa8`](https://github.com/ljharb/side-channel/commit/ee83aa81df313b5e46319a63adb05cf0c179079a) +- [actions] update rebase action to use checkout v2 [`7726b0b`](https://github.com/ljharb/side-channel/commit/7726b0b058b632fccea709f58960871defaaa9d7) + +## [v1.0.3](https://github.com/ljharb/side-channel/compare/v1.0.2...v1.0.3) - 2020-08-23 + +### Commits + +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `auto-changelog`, `tape` [`1f10561`](https://github.com/ljharb/side-channel/commit/1f105611ef3acf32dec8032ae5c0baa5e56bb868) +- [Deps] update `es-abstract`, `object-inspect` [`bc20159`](https://github.com/ljharb/side-channel/commit/bc201597949a505e37cef9eaf24c7010831e6f03) +- [Dev Deps] update `@ljharb/eslint-config`, `tape` [`b9b2b22`](https://github.com/ljharb/side-channel/commit/b9b2b225f9e0ea72a6ec2b89348f0bd690bc9ed1) +- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `tape` [`7055ab4`](https://github.com/ljharb/side-channel/commit/7055ab4de0860606efd2003674a74f1fe6ebc07e) +- [Dev Deps] update `auto-changelog`; add `aud` [`d278c37`](https://github.com/ljharb/side-channel/commit/d278c37d08227be4f84aa769fcd919e73feeba40) +- [actions] switch Automatic Rebase workflow to `pull_request_target` event [`3bcf982`](https://github.com/ljharb/side-channel/commit/3bcf982faa122745b39c33ce83d32fdf003741c6) +- [Tests] only audit prod deps [`18d01c4`](https://github.com/ljharb/side-channel/commit/18d01c4015b82a3d75044c4d5ba7917b2eac01ec) +- [Deps] update `es-abstract` [`6ab096d`](https://github.com/ljharb/side-channel/commit/6ab096d9de2b482cf5e0717e34e212f5b2b9bc9a) +- [Dev Deps] update `tape` [`9dc174c`](https://github.com/ljharb/side-channel/commit/9dc174cc651dfd300b4b72da936a0a7eda5f9452) +- [Deps] update `es-abstract` [`431d0f0`](https://github.com/ljharb/side-channel/commit/431d0f0ff11fbd2ae6f3115582a356d3a1cfce82) +- [Deps] update `es-abstract` [`49869fd`](https://github.com/ljharb/side-channel/commit/49869fd323bf4453f0ba515c0fb265cf5ab7b932) +- [meta] Add package.json to package's exports [`77d9cdc`](https://github.com/ljharb/side-channel/commit/77d9cdceb2a9e47700074f2ae0c0a202e7dac0d4) + +## [v1.0.2](https://github.com/ljharb/side-channel/compare/v1.0.1...v1.0.2) - 2019-12-20 + +### Commits + +- [Dev Deps] update `@ljharb/eslint-config`, `tape` [`4a526df`](https://github.com/ljharb/side-channel/commit/4a526df44e4701566ed001ec78546193f818b082) +- [Deps] update `es-abstract` [`d4f6e62`](https://github.com/ljharb/side-channel/commit/d4f6e629b6fb93a07415db7f30d3c90fd7f264fe) + +## [v1.0.1](https://github.com/ljharb/side-channel/compare/v1.0.0...v1.0.1) - 2019-12-01 + +### Commits + +- [Fix] add missing "exports" [`d212907`](https://github.com/ljharb/side-channel/commit/d2129073abf0701a5343bf28aa2145617604dc2e) + +## v1.0.0 - 2019-12-01 + +### Commits + +- Initial implementation [`dbebd3a`](https://github.com/ljharb/side-channel/commit/dbebd3a4b5ed64242f9a6810efe7c4214cd8cde4) +- Initial tests [`73bdefe`](https://github.com/ljharb/side-channel/commit/73bdefe568c9076cf8c0b8719bc2141aec0e19b8) +- Initial commit [`43c03e1`](https://github.com/ljharb/side-channel/commit/43c03e1c2849ec50a87b7a5cd76238a62b0b8770) +- npm init [`5c090a7`](https://github.com/ljharb/side-channel/commit/5c090a765d66a5527d9889b89aeff78dee91348c) +- [meta] add `auto-changelog` [`a5c4e56`](https://github.com/ljharb/side-channel/commit/a5c4e5675ec02d5eb4d84b4243aeea2a1d38fbec) +- [actions] add automatic rebasing / merge commit blocking [`bab1683`](https://github.com/ljharb/side-channel/commit/bab1683d8f9754b086e94397699fdc645e0d7077) +- [meta] add `funding` field; create FUNDING.yml [`63d7aea`](https://github.com/ljharb/side-channel/commit/63d7aeaf34f5650650ae97ca4b9fae685bd0937c) +- [Tests] add `npm run lint` [`46a5a81`](https://github.com/ljharb/side-channel/commit/46a5a81705cd2664f83df232c01dbbf2ee952885) +- Only apps should have lockfiles [`8b16b03`](https://github.com/ljharb/side-channel/commit/8b16b0305f00895d90c4e2e5773c854cfea0e448) +- [meta] add `safe-publish-latest` [`2f098ef`](https://github.com/ljharb/side-channel/commit/2f098ef092a39399cfe548b19a1fc03c2fd2f490) diff --git a/node_modules/side-channel/LICENSE b/node_modules/side-channel/LICENSE new file mode 100644 index 000000000..3900dd7e2 --- /dev/null +++ b/node_modules/side-channel/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2019 Jordan Harband + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/node_modules/side-channel/README.md b/node_modules/side-channel/README.md new file mode 100644 index 000000000..7fa4f0680 --- /dev/null +++ b/node_modules/side-channel/README.md @@ -0,0 +1,2 @@ +# side-channel +Store information about any JS value in a side channel. Uses WeakMap if available. diff --git a/node_modules/side-channel/index.js b/node_modules/side-channel/index.js new file mode 100644 index 000000000..f1c48264f --- /dev/null +++ b/node_modules/side-channel/index.js @@ -0,0 +1,124 @@ +'use strict'; + +var GetIntrinsic = require('get-intrinsic'); +var callBound = require('call-bind/callBound'); +var inspect = require('object-inspect'); + +var $TypeError = GetIntrinsic('%TypeError%'); +var $WeakMap = GetIntrinsic('%WeakMap%', true); +var $Map = GetIntrinsic('%Map%', true); + +var $weakMapGet = callBound('WeakMap.prototype.get', true); +var $weakMapSet = callBound('WeakMap.prototype.set', true); +var $weakMapHas = callBound('WeakMap.prototype.has', true); +var $mapGet = callBound('Map.prototype.get', true); +var $mapSet = callBound('Map.prototype.set', true); +var $mapHas = callBound('Map.prototype.has', true); + +/* + * This function traverses the list returning the node corresponding to the + * given key. + * + * That node is also moved to the head of the list, so that if it's accessed + * again we don't need to traverse the whole list. By doing so, all the recently + * used nodes can be accessed relatively quickly. + */ +var listGetNode = function (list, key) { // eslint-disable-line consistent-return + for (var prev = list, curr; (curr = prev.next) !== null; prev = curr) { + if (curr.key === key) { + prev.next = curr.next; + curr.next = list.next; + list.next = curr; // eslint-disable-line no-param-reassign + return curr; + } + } +}; + +var listGet = function (objects, key) { + var node = listGetNode(objects, key); + return node && node.value; +}; +var listSet = function (objects, key, value) { + var node = listGetNode(objects, key); + if (node) { + node.value = value; + } else { + // Prepend the new node to the beginning of the list + objects.next = { // eslint-disable-line no-param-reassign + key: key, + next: objects.next, + value: value + }; + } +}; +var listHas = function (objects, key) { + return !!listGetNode(objects, key); +}; + +module.exports = function getSideChannel() { + var $wm; + var $m; + var $o; + var channel = { + assert: function (key) { + if (!channel.has(key)) { + throw new $TypeError('Side channel does not contain ' + inspect(key)); + } + }, + get: function (key) { // eslint-disable-line consistent-return + if ($WeakMap && key && (typeof key === 'object' || typeof key === 'function')) { + if ($wm) { + return $weakMapGet($wm, key); + } + } else if ($Map) { + if ($m) { + return $mapGet($m, key); + } + } else { + if ($o) { // eslint-disable-line no-lonely-if + return listGet($o, key); + } + } + }, + has: function (key) { + if ($WeakMap && key && (typeof key === 'object' || typeof key === 'function')) { + if ($wm) { + return $weakMapHas($wm, key); + } + } else if ($Map) { + if ($m) { + return $mapHas($m, key); + } + } else { + if ($o) { // eslint-disable-line no-lonely-if + return listHas($o, key); + } + } + return false; + }, + set: function (key, value) { + if ($WeakMap && key && (typeof key === 'object' || typeof key === 'function')) { + if (!$wm) { + $wm = new $WeakMap(); + } + $weakMapSet($wm, key, value); + } else if ($Map) { + if (!$m) { + $m = new $Map(); + } + $mapSet($m, key, value); + } else { + if (!$o) { + /* + * Initialize the linked list as an empty node, so that we don't have + * to special-case handling of the first node: we can always refer to + * it as (previous node).next, instead of something like (list).head + */ + $o = { key: {}, next: null }; + } + listSet($o, key, value); + } + } + }; + return channel; +}; diff --git a/node_modules/side-channel/package.json b/node_modules/side-channel/package.json new file mode 100644 index 000000000..a3e33f661 --- /dev/null +++ b/node_modules/side-channel/package.json @@ -0,0 +1,67 @@ +{ + "name": "side-channel", + "version": "1.0.4", + "description": "Store information about any JS value in a side channel. Uses WeakMap if available.", + "main": "index.js", + "exports": { + "./package.json": "./package.json", + ".": [ + { + "default": "./index.js" + }, + "./index.js" + ] + }, + "scripts": { + "prepublish": "safe-publish-latest", + "lint": "eslint .", + "pretest": "npm run lint", + "tests-only": "nyc tape 'test/**/*.js'", + "test": "npm run tests-only", + "posttest": "npx aud --production", + "version": "auto-changelog && git add CHANGELOG.md", + "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/ljharb/side-channel.git" + }, + "keywords": [ + "weakmap", + "map", + "side", + "channel", + "metadata" + ], + "author": "Jordan Harband ", + "funding": { + "url": "https://github.com/sponsors/ljharb" + }, + "license": "MIT", + "bugs": { + "url": "https://github.com/ljharb/side-channel/issues" + }, + "homepage": "https://github.com/ljharb/side-channel#readme", + "devDependencies": { + "@ljharb/eslint-config": "^17.3.0", + "aud": "^1.1.3", + "auto-changelog": "^2.2.1", + "eslint": "^7.16.0", + "nyc": "^10.3.2", + "safe-publish-latest": "^1.1.4", + "tape": "^5.0.1" + }, + "dependencies": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + }, + "auto-changelog": { + "output": "CHANGELOG.md", + "template": "keepachangelog", + "unreleased": false, + "commitLimit": false, + "backfillLimit": false, + "hideCredit": true + } +} diff --git a/node_modules/side-channel/test/index.js b/node_modules/side-channel/test/index.js new file mode 100644 index 000000000..3b92ef7eb --- /dev/null +++ b/node_modules/side-channel/test/index.js @@ -0,0 +1,78 @@ +'use strict'; + +var test = require('tape'); + +var getSideChannel = require('../'); + +test('export', function (t) { + t.equal(typeof getSideChannel, 'function', 'is a function'); + t.equal(getSideChannel.length, 0, 'takes no arguments'); + + var channel = getSideChannel(); + t.ok(channel, 'is truthy'); + t.equal(typeof channel, 'object', 'is an object'); + + t.end(); +}); + +test('assert', function (t) { + var channel = getSideChannel(); + t['throws']( + function () { channel.assert({}); }, + TypeError, + 'nonexistent value throws' + ); + + var o = {}; + channel.set(o, 'data'); + t.doesNotThrow(function () { channel.assert(o); }, 'existent value noops'); + + t.end(); +}); + +test('has', function (t) { + var channel = getSideChannel(); + var o = []; + + t.equal(channel.has(o), false, 'nonexistent value yields false'); + + channel.set(o, 'foo'); + t.equal(channel.has(o), true, 'existent value yields true'); + + t.end(); +}); + +test('get', function (t) { + var channel = getSideChannel(); + var o = {}; + t.equal(channel.get(o), undefined, 'nonexistent value yields undefined'); + + var data = {}; + channel.set(o, data); + t.equal(channel.get(o), data, '"get" yields data set by "set"'); + + t.end(); +}); + +test('set', function (t) { + var channel = getSideChannel(); + var o = function () {}; + t.equal(channel.get(o), undefined, 'value not set'); + + channel.set(o, 42); + t.equal(channel.get(o), 42, 'value was set'); + + channel.set(o, Infinity); + t.equal(channel.get(o), Infinity, 'value was set again'); + + var o2 = {}; + channel.set(o2, 17); + t.equal(channel.get(o), Infinity, 'o is not modified'); + t.equal(channel.get(o2), 17, 'o2 is set'); + + channel.set(o, 14); + t.equal(channel.get(o), 14, 'o is modified'); + t.equal(channel.get(o2), 17, 'o2 is not modified'); + + t.end(); +}); diff --git a/node_modules/smart-buffer/.prettierrc.yaml b/node_modules/smart-buffer/.prettierrc.yaml new file mode 100644 index 000000000..9a4f5ed75 --- /dev/null +++ b/node_modules/smart-buffer/.prettierrc.yaml @@ -0,0 +1,5 @@ +parser: typescript +printWidth: 120 +tabWidth: 2 +singleQuote: true +trailingComma: none \ No newline at end of file diff --git a/node_modules/smart-buffer/.travis.yml b/node_modules/smart-buffer/.travis.yml new file mode 100644 index 000000000..eec71ceca --- /dev/null +++ b/node_modules/smart-buffer/.travis.yml @@ -0,0 +1,13 @@ +language: node_js +node_js: + - 6 + - 8 + - 10 + - 12 + - stable + +before_script: + - npm install -g typescript + - tsc -p ./ + +script: "npm run coveralls" \ No newline at end of file diff --git a/node_modules/smart-buffer/LICENSE b/node_modules/smart-buffer/LICENSE new file mode 100644 index 000000000..aab5771a9 --- /dev/null +++ b/node_modules/smart-buffer/LICENSE @@ -0,0 +1,20 @@ +The MIT License (MIT) + +Copyright (c) 2013-2017 Josh Glazebrook + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/node_modules/smart-buffer/README.md b/node_modules/smart-buffer/README.md new file mode 100644 index 000000000..6e498288e --- /dev/null +++ b/node_modules/smart-buffer/README.md @@ -0,0 +1,633 @@ +smart-buffer [![Build Status](https://travis-ci.org/JoshGlazebrook/smart-buffer.svg?branch=master)](https://travis-ci.org/JoshGlazebrook/smart-buffer) [![Coverage Status](https://coveralls.io/repos/github/JoshGlazebrook/smart-buffer/badge.svg?branch=master)](https://coveralls.io/github/JoshGlazebrook/smart-buffer?branch=master) +============= + +smart-buffer is a Buffer wrapper that adds automatic read & write offset tracking, string operations, data insertions, and more. + +![stats](https://nodei.co/npm/smart-buffer.png?downloads=true&downloadRank=true&stars=true "stats") + +**Key Features**: +* Proxies all of the Buffer write and read functions +* Keeps track of read and write offsets automatically +* Grows the internal Buffer as needed +* Useful string operations. (Null terminating strings) +* Allows for inserting values at specific points in the Buffer +* Built in TypeScript +* Type Definitions Provided +* Browser Support (using Webpack/Browserify) +* Full test coverage + +**Requirements**: +* Node v4.0+ is supported at this time. (Versions prior to 2.0 will work on node 0.10) + + + +## Breaking Changes in v4.0 + +* Old constructor patterns have been completely removed. It's now required to use the SmartBuffer.fromXXX() factory constructors. +* rewind(), skip(), moveTo() have been removed. (see [offsets](#offsets)) +* Internal private properties are now prefixed with underscores (_) +* **All** writeXXX() methods that are given an offset will now **overwrite data** instead of insert. (see [write vs insert](#write-vs-insert)) +* insertXXX() methods have been added for when you want to insert data at a specific offset (this replaces the old behavior of writeXXX() when an offset was provided) + + +## Looking for v3 docs? + +Legacy documentation for version 3 and prior can be found [here](https://github.com/JoshGlazebrook/smart-buffer/blob/master/docs/README_v3.md). + +## Installing: + +`yarn add smart-buffer` + +or + +`npm install smart-buffer` + +Note: The published NPM package includes the built javascript library. +If you cloned this repo and wish to build the library manually use: + +`npm run build` + +## Using smart-buffer + +```javascript +// Javascript +const SmartBuffer = require('smart-buffer').SmartBuffer; + +// Typescript +import { SmartBuffer, SmartBufferOptions} from 'smart-buffer'; +``` + +### Simple Example + +Building a packet that uses the following protocol specification: + +`[PacketType:2][PacketLength:2][Data:XX]` + +To build this packet using the vanilla Buffer class, you would have to count up the length of the data payload beforehand. You would also need to keep track of the current "cursor" position in your Buffer so you write everything in the right places. With smart-buffer you don't have to do either of those things. + +```javascript +function createLoginPacket(username, password, age, country) { + const packet = new SmartBuffer(); + packet.writeUInt16LE(0x0060); // Some packet type + packet.writeStringNT(username); + packet.writeStringNT(password); + packet.writeUInt8(age); + packet.writeStringNT(country); + packet.insertUInt16LE(packet.length - 2, 2); + + return packet.toBuffer(); +} +``` +With the above function, you now can do this: +```javascript +const login = createLoginPacket("Josh", "secret123", 22, "United States"); + +// +``` +Notice that the `[PacketLength:2]` value (1e 00) was inserted at position 2. + +Reading back the packet we created above is just as easy: +```javascript + +const reader = SmartBuffer.fromBuffer(login); + +const logininfo = { + packetType: reader.readUInt16LE(), + packetLength: reader.readUInt16LE(), + username: reader.readStringNT(), + password: reader.readStringNT(), + age: reader.readUInt8(), + country: reader.readStringNT() +}; + +/* +{ + packetType: 96, (0x0060) + packetLength: 30, + username: 'Josh', + password: 'secret123', + age: 22, + country: 'United States' +} +*/ +``` + + +## Write vs Insert +In prior versions of SmartBuffer, .writeXXX(value, offset) calls would insert data when an offset was provided. In version 4, this will now overwrite the data at the offset position. To insert data there are now corresponding .insertXXX(value, offset) methods. + +**SmartBuffer v3**: +```javascript +const buff = SmartBuffer.fromBuffer(new Buffer([1,2,3,4,5,6])); +buff.writeInt8(7, 2); +console.log(buff.toBuffer()) + +// +``` + +**SmartBuffer v4**: +```javascript +const buff = SmartBuffer.fromBuffer(new Buffer([1,2,3,4,5,6])); +buff.writeInt8(7, 2); +console.log(buff.toBuffer()); + +// +``` + +To insert you instead should use: +```javascript +const buff = SmartBuffer.fromBuffer(new Buffer([1,2,3,4,5,6])); +buff.insertInt8(7, 2); +console.log(buff.toBuffer()); + +// +``` + +**Note:** Insert/Writing to a position beyond the currently tracked internal Buffer will zero pad to your offset. + +## Constructing a smart-buffer + +There are a few different ways to construct a SmartBuffer instance. + +```javascript +// Creating SmartBuffer from existing Buffer +const buff = SmartBuffer.fromBuffer(buffer); // Creates instance from buffer. (Uses default utf8 encoding) +const buff = SmartBuffer.fromBuffer(buffer, 'ascii'); // Creates instance from buffer with ascii encoding for strings. + +// Creating SmartBuffer with specified internal Buffer size. (Note: this is not a hard cap, the internal buffer will grow as needed). +const buff = SmartBuffer.fromSize(1024); // Creates instance with internal Buffer size of 1024. +const buff = SmartBuffer.fromSize(1024, 'utf8'); // Creates instance with internal Buffer size of 1024, and utf8 encoding for strings. + +// Creating SmartBuffer with options object. This one specifies size and encoding. +const buff = SmartBuffer.fromOptions({ + size: 1024, + encoding: 'ascii' +}); + +// Creating SmartBuffer with options object. This one specified an existing Buffer. +const buff = SmartBuffer.fromOptions({ + buff: buffer +}); + +// Creating SmartBuffer from a string. +const buff = SmartBuffer.fromBuffer(Buffer.from('some string', 'utf8')); + +// Just want a regular SmartBuffer with all default options? +const buff = new SmartBuffer(); +``` + +# Api Reference: + +**Note:** SmartBuffer is fully documented with Typescript definitions as well as jsdocs so your favorite editor/IDE will have intellisense. + +**Table of Contents** + +1. [Constructing](#constructing) +2. **Numbers** + 1. [Integers](#integers) + 2. [Floating Points](#floating-point-numbers) +3. **Strings** + 1. [Strings](#strings) + 2. [Null Terminated Strings](#null-terminated-strings) +4. [Buffers](#buffers) +5. [Offsets](#offsets) +6. [Other](#other) + + +## Constructing + +### constructor() +### constructor([options]) +- ```options``` *{SmartBufferOptions}* An optional options object to construct a SmartBuffer with. + +Examples: +```javascript +const buff = new SmartBuffer(); +const buff = new SmartBuffer({ + size: 1024, + encoding: 'ascii' +}); +``` + +### Class Method: fromBuffer(buffer[, encoding]) +- ```buffer``` *{Buffer}* The Buffer instance to wrap. +- ```encoding``` *{string}* The string encoding to use. ```Default: 'utf8'``` + +Examples: +```javascript +const someBuffer = Buffer.from('some string'); +const buff = SmartBuffer.fromBuffer(someBuffer); // Defaults to utf8 +const buff = SmartBuffer.fromBuffer(someBuffer, 'ascii'); +``` + +### Class Method: fromSize(size[, encoding]) +- ```size``` *{number}* The size to initialize the internal Buffer. +- ```encoding``` *{string}* The string encoding to use. ```Default: 'utf8'``` + +Examples: +```javascript +const buff = SmartBuffer.fromSize(1024); // Defaults to utf8 +const buff = SmartBuffer.fromSize(1024, 'ascii'); +``` + +### Class Method: fromOptions(options) +- ```options``` *{SmartBufferOptions}* The Buffer instance to wrap. + +```typescript +interface SmartBufferOptions { + encoding?: BufferEncoding; // Defaults to utf8 + size?: number; // Defaults to 4096 + buff?: Buffer; +} +``` + +Examples: +```javascript +const buff = SmartBuffer.fromOptions({ + size: 1024 +}; +const buff = SmartBuffer.fromOptions({ + size: 1024, + encoding: 'utf8' +}); +const buff = SmartBuffer.fromOptions({ + encoding: 'utf8' +}); + +const someBuff = Buffer.from('some string', 'utf8'); +const buff = SmartBuffer.fromOptions({ + buffer: someBuff, + encoding: 'utf8' +}); +``` + +## Integers + +### buff.readInt8([offset]) +### buff.readUInt8([offset]) +- ```offset``` *{number}* Optional position to start reading data from. **Default**: ```Auto managed offset``` +- Returns *{number}* + +Read a Int8 value. + +### buff.readInt16BE([offset]) +### buff.readInt16LE([offset]) +### buff.readUInt16BE([offset]) +### buff.readUInt16LE([offset]) +- ```offset``` *{number}* Optional position to start reading data from. **Default**: ```Auto managed offset``` +- Returns *{number}* + +Read a 16 bit integer value. + +### buff.readInt32BE([offset]) +### buff.readInt32LE([offset]) +### buff.readUInt32BE([offset]) +### buff.readUInt32LE([offset]) +- ```offset``` *{number}* Optional position to start reading data from. **Default**: ```Auto managed offset``` +- Returns *{number}* + +Read a 32 bit integer value. + + +### buff.writeInt8(value[, offset]) +### buff.writeUInt8(value[, offset]) +- ```value``` *{number}* The value to write. +- ```offset``` *{number}* An optional offset to write this value to. **Default:** ```Auto managed offset``` +- Returns *{this}* + +Write a Int8 value. + +### buff.insertInt8(value, offset) +### buff.insertUInt8(value, offset) +- ```value``` *{number}* The value to insert. +- ```offset``` *{number}* The offset to insert this data at. +- Returns *{this}* + +Insert a Int8 value. + + +### buff.writeInt16BE(value[, offset]) +### buff.writeInt16LE(value[, offset]) +### buff.writeUInt16BE(value[, offset]) +### buff.writeUInt16LE(value[, offset]) +- ```value``` *{number}* The value to write. +- ```offset``` *{number}* An optional offset to write this value to. **Default:** ```Auto managed offset``` +- Returns *{this}* + +Write a 16 bit integer value. + +### buff.insertInt16BE(value, offset) +### buff.insertInt16LE(value, offset) +### buff.insertUInt16BE(value, offset) +### buff.insertUInt16LE(value, offset) +- ```value``` *{number}* The value to insert. +- ```offset``` *{number}* The offset to insert this data at. +- Returns *{this}* + +Insert a 16 bit integer value. + + +### buff.writeInt32BE(value[, offset]) +### buff.writeInt32LE(value[, offset]) +### buff.writeUInt32BE(value[, offset]) +### buff.writeUInt32LE(value[, offset]) +- ```value``` *{number}* The value to write. +- ```offset``` *{number}* An optional offset to write this value to. **Default:** ```Auto managed offset``` +- Returns *{this}* + +Write a 32 bit integer value. + +### buff.insertInt32BE(value, offset) +### buff.insertInt32LE(value, offset) +### buff.insertUInt32BE(value, offset) +### buff.nsertUInt32LE(value, offset) +- ```value``` *{number}* The value to insert. +- ```offset``` *{number}* The offset to insert this data at. +- Returns *{this}* + +Insert a 32 bit integer value. + + +## Floating Point Numbers + +### buff.readFloatBE([offset]) +### buff.readFloatLE([offset]) +- ```offset``` *{number}* Optional position to start reading data from. **Default**: ```Auto managed offset``` +- Returns *{number}* + +Read a Float value. + +### buff.readDoubleBE([offset]) +### buff.readDoubleLE([offset]) +- ```offset``` *{number}* Optional position to start reading data from. **Default**: ```Auto managed offset``` +- Returns *{number}* + +Read a Double value. + + +### buff.writeFloatBE(value[, offset]) +### buff.writeFloatLE(value[, offset]) +- ```value``` *{number}* The value to write. +- ```offset``` *{number}* An optional offset to write this value to. **Default:** ```Auto managed offset``` +- Returns *{this}* + +Write a Float value. + +### buff.insertFloatBE(value, offset) +### buff.insertFloatLE(value, offset) +- ```value``` *{number}* The value to insert. +- ```offset``` *{number}* The offset to insert this data at. +- Returns *{this}* + +Insert a Float value. + + +### buff.writeDoubleBE(value[, offset]) +### buff.writeDoubleLE(value[, offset]) +- ```value``` *{number}* The value to write. +- ```offset``` *{number}* An optional offset to write this value to. **Default:** ```Auto managed offset``` +- Returns *{this}* + +Write a Double value. + +### buff.insertDoubleBE(value, offset) +### buff.insertDoubleLE(value, offset) +- ```value``` *{number}* The value to insert. +- ```offset``` *{number}* The offset to insert this data at. +- Returns *{this}* + +Insert a Double value. + +## Strings + +### buff.readString() +### buff.readString(size[, encoding]) +### buff.readString(encoding) +- ```size``` *{number}* The number of bytes to read. **Default:** ```Reads to the end of the Buffer.``` +- ```encoding``` *{string}* The string encoding to use. **Default:** ```utf8```. + +Read a string value. + +Examples: +```javascript +const buff = SmartBuffer.fromBuffer(Buffer.from('hello there', 'utf8')); +buff.readString(); // 'hello there' +buff.readString(2); // 'he' +buff.readString(2, 'utf8'); // 'he' +buff.readString('utf8'); // 'hello there' +``` + +### buff.writeString(value) +### buff.writeString(value[, offset]) +### buff.writeString(value[, encoding]) +### buff.writeString(value[, offset[, encoding]]) +- ```value``` *{string}* The string value to write. +- ```offset``` *{number}* The offset to write this value to. **Default:** ```Auto managed offset``` +- ```encoding``` *{string}* An optional string encoding to use. **Default:** ```utf8``` + +Write a string value. + +Examples: +```javascript +buff.writeString('hello'); // Auto managed offset +buff.writeString('hello', 2); +buff.writeString('hello', 'utf8') // Auto managed offset +buff.writeString('hello', 2, 'utf8'); +``` + +### buff.insertString(value, offset[, encoding]) +- ```value``` *{string}* The string value to write. +- ```offset``` *{number}* The offset to write this value to. +- ```encoding``` *{string}* An optional string encoding to use. **Default:** ```utf8``` + +Insert a string value. + +Examples: +```javascript +buff.insertString('hello', 2); +buff.insertString('hello', 2, 'utf8'); +``` + +## Null Terminated Strings + +### buff.readStringNT() +### buff.readStringNT(encoding) +- ```encoding``` *{string}* The string encoding to use. **Default:** ```utf8```. + +Read a null terminated string value. (If a null is not found, it will read to the end of the Buffer). + +Examples: +```javascript +const buff = SmartBuffer.fromBuffer(Buffer.from('hello\0 there', 'utf8')); +buff.readStringNT(); // 'hello' + +// If we called this again: +buff.readStringNT(); // ' there' +``` + +### buff.writeStringNT(value) +### buff.writeStringNT(value[, offset]) +### buff.writeStringNT(value[, encoding]) +### buff.writeStringNT(value[, offset[, encoding]]) +- ```value``` *{string}* The string value to write. +- ```offset``` *{number}* The offset to write this value to. **Default:** ```Auto managed offset``` +- ```encoding``` *{string}* An optional string encoding to use. **Default:** ```utf8``` + +Write a null terminated string value. + +Examples: +```javascript +buff.writeStringNT('hello'); // Auto managed offset +buff.writeStringNT('hello', 2); // +buff.writeStringNT('hello', 'utf8') // Auto managed offset +buff.writeStringNT('hello', 2, 'utf8'); +``` + +### buff.insertStringNT(value, offset[, encoding]) +- ```value``` *{string}* The string value to write. +- ```offset``` *{number}* The offset to write this value to. +- ```encoding``` *{string}* An optional string encoding to use. **Default:** ```utf8``` + +Insert a null terminated string value. + +Examples: +```javascript +buff.insertStringNT('hello', 2); +buff.insertStringNT('hello', 2, 'utf8'); +``` + +## Buffers + +### buff.readBuffer([length]) +- ```length``` *{number}* The number of bytes to read into a Buffer. **Default:** ```Reads to the end of the Buffer``` + +Read a Buffer of a specified size. + +### buff.writeBuffer(value[, offset]) +- ```value``` *{Buffer}* The buffer value to write. +- ```offset``` *{number}* An optional offset to write the value to. **Default:** ```Auto managed offset``` + +### buff.insertBuffer(value, offset) +- ```value``` *{Buffer}* The buffer value to write. +- ```offset``` *{number}* The offset to write the value to. + + +### buff.readBufferNT() + +Read a null terminated Buffer. + +### buff.writeBufferNT(value[, offset]) +- ```value``` *{Buffer}* The buffer value to write. +- ```offset``` *{number}* An optional offset to write the value to. **Default:** ```Auto managed offset``` + +Write a null terminated Buffer. + + +### buff.insertBufferNT(value, offset) +- ```value``` *{Buffer}* The buffer value to write. +- ```offset``` *{number}* The offset to write the value to. + +Insert a null terminated Buffer. + + +## Offsets + +### buff.readOffset +### buff.readOffset(offset) +- ```offset``` *{number}* The new read offset value to set. +- Returns: ```The current read offset``` + +Gets or sets the current read offset. + +Examples: +```javascript +const currentOffset = buff.readOffset; // 5 + +buff.readOffset = 10; + +console.log(buff.readOffset) // 10 +``` + +### buff.writeOffset +### buff.writeOffset(offset) +- ```offset``` *{number}* The new write offset value to set. +- Returns: ```The current write offset``` + +Gets or sets the current write offset. + +Examples: +```javascript +const currentOffset = buff.writeOffset; // 5 + +buff.writeOffset = 10; + +console.log(buff.writeOffset) // 10 +``` + +### buff.encoding +### buff.encoding(encoding) +- ```encoding``` *{string}* The new string encoding to set. +- Returns: ```The current string encoding``` + +Gets or sets the current string encoding. + +Examples: +```javascript +const currentEncoding = buff.encoding; // 'utf8' + +buff.encoding = 'ascii'; + +console.log(buff.encoding) // 'ascii' +``` + +## Other + +### buff.clear() + +Clear and resets the SmartBuffer instance. + +### buff.remaining() +- Returns ```Remaining data left to be read``` + +Gets the number of remaining bytes to be read. + + +### buff.internalBuffer +- Returns: *{Buffer}* + +Gets the internally managed Buffer (Includes unmanaged data). + +Examples: +```javascript +const buff = SmartBuffer.fromSize(16); +buff.writeString('hello'); +console.log(buff.InternalBuffer); // +``` + +### buff.toBuffer() +- Returns: *{Buffer}* + +Gets a sliced Buffer instance of the internally managed Buffer. (Only includes managed data) + +Examples: +```javascript +const buff = SmartBuffer.fromSize(16); +buff.writeString('hello'); +console.log(buff.toBuffer()); // +``` + +### buff.toString([encoding]) +- ```encoding``` *{string}* The string encoding to use when converting to a string. **Default:** ```utf8``` +- Returns *{string}* + +Gets a string representation of all data in the SmartBuffer. + +### buff.destroy() + +Destroys the SmartBuffer instance. + + + +## License + +This work is licensed under the [MIT license](http://en.wikipedia.org/wiki/MIT_License). diff --git a/node_modules/smart-buffer/build/smartbuffer.js b/node_modules/smart-buffer/build/smartbuffer.js new file mode 100644 index 000000000..5353ae11d --- /dev/null +++ b/node_modules/smart-buffer/build/smartbuffer.js @@ -0,0 +1,1233 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +const utils_1 = require("./utils"); +// The default Buffer size if one is not provided. +const DEFAULT_SMARTBUFFER_SIZE = 4096; +// The default string encoding to use for reading/writing strings. +const DEFAULT_SMARTBUFFER_ENCODING = 'utf8'; +class SmartBuffer { + /** + * Creates a new SmartBuffer instance. + * + * @param options { SmartBufferOptions } The SmartBufferOptions to apply to this instance. + */ + constructor(options) { + this.length = 0; + this._encoding = DEFAULT_SMARTBUFFER_ENCODING; + this._writeOffset = 0; + this._readOffset = 0; + if (SmartBuffer.isSmartBufferOptions(options)) { + // Checks for encoding + if (options.encoding) { + utils_1.checkEncoding(options.encoding); + this._encoding = options.encoding; + } + // Checks for initial size length + if (options.size) { + if (utils_1.isFiniteInteger(options.size) && options.size > 0) { + this._buff = Buffer.allocUnsafe(options.size); + } + else { + throw new Error(utils_1.ERRORS.INVALID_SMARTBUFFER_SIZE); + } + // Check for initial Buffer + } + else if (options.buff) { + if (Buffer.isBuffer(options.buff)) { + this._buff = options.buff; + this.length = options.buff.length; + } + else { + throw new Error(utils_1.ERRORS.INVALID_SMARTBUFFER_BUFFER); + } + } + else { + this._buff = Buffer.allocUnsafe(DEFAULT_SMARTBUFFER_SIZE); + } + } + else { + // If something was passed but it's not a SmartBufferOptions object + if (typeof options !== 'undefined') { + throw new Error(utils_1.ERRORS.INVALID_SMARTBUFFER_OBJECT); + } + // Otherwise default to sane options + this._buff = Buffer.allocUnsafe(DEFAULT_SMARTBUFFER_SIZE); + } + } + /** + * Creates a new SmartBuffer instance with the provided internal Buffer size and optional encoding. + * + * @param size { Number } The size of the internal Buffer. + * @param encoding { String } The BufferEncoding to use for strings. + * + * @return { SmartBuffer } + */ + static fromSize(size, encoding) { + return new this({ + size: size, + encoding: encoding + }); + } + /** + * Creates a new SmartBuffer instance with the provided Buffer and optional encoding. + * + * @param buffer { Buffer } The Buffer to use as the internal Buffer value. + * @param encoding { String } The BufferEncoding to use for strings. + * + * @return { SmartBuffer } + */ + static fromBuffer(buff, encoding) { + return new this({ + buff: buff, + encoding: encoding + }); + } + /** + * Creates a new SmartBuffer instance with the provided SmartBufferOptions options. + * + * @param options { SmartBufferOptions } The options to use when creating the SmartBuffer instance. + */ + static fromOptions(options) { + return new this(options); + } + /** + * Type checking function that determines if an object is a SmartBufferOptions object. + */ + static isSmartBufferOptions(options) { + const castOptions = options; + return (castOptions && + (castOptions.encoding !== undefined || castOptions.size !== undefined || castOptions.buff !== undefined)); + } + // Signed integers + /** + * Reads an Int8 value from the current read position or an optionally provided offset. + * + * @param offset { Number } The offset to read data from (optional) + * @return { Number } + */ + readInt8(offset) { + return this._readNumberValue(Buffer.prototype.readInt8, 1, offset); + } + /** + * Reads an Int16BE value from the current read position or an optionally provided offset. + * + * @param offset { Number } The offset to read data from (optional) + * @return { Number } + */ + readInt16BE(offset) { + return this._readNumberValue(Buffer.prototype.readInt16BE, 2, offset); + } + /** + * Reads an Int16LE value from the current read position or an optionally provided offset. + * + * @param offset { Number } The offset to read data from (optional) + * @return { Number } + */ + readInt16LE(offset) { + return this._readNumberValue(Buffer.prototype.readInt16LE, 2, offset); + } + /** + * Reads an Int32BE value from the current read position or an optionally provided offset. + * + * @param offset { Number } The offset to read data from (optional) + * @return { Number } + */ + readInt32BE(offset) { + return this._readNumberValue(Buffer.prototype.readInt32BE, 4, offset); + } + /** + * Reads an Int32LE value from the current read position or an optionally provided offset. + * + * @param offset { Number } The offset to read data from (optional) + * @return { Number } + */ + readInt32LE(offset) { + return this._readNumberValue(Buffer.prototype.readInt32LE, 4, offset); + } + /** + * Reads a BigInt64BE value from the current read position or an optionally provided offset. + * + * @param offset { Number } The offset to read data from (optional) + * @return { BigInt } + */ + readBigInt64BE(offset) { + utils_1.bigIntAndBufferInt64Check('readBigInt64BE'); + return this._readNumberValue(Buffer.prototype.readBigInt64BE, 8, offset); + } + /** + * Reads a BigInt64LE value from the current read position or an optionally provided offset. + * + * @param offset { Number } The offset to read data from (optional) + * @return { BigInt } + */ + readBigInt64LE(offset) { + utils_1.bigIntAndBufferInt64Check('readBigInt64LE'); + return this._readNumberValue(Buffer.prototype.readBigInt64LE, 8, offset); + } + /** + * Writes an Int8 value to the current write position (or at optional offset). + * + * @param value { Number } The value to write. + * @param offset { Number } The offset to write the value at. + * + * @return this + */ + writeInt8(value, offset) { + this._writeNumberValue(Buffer.prototype.writeInt8, 1, value, offset); + return this; + } + /** + * Inserts an Int8 value at the given offset value. + * + * @param value { Number } The value to insert. + * @param offset { Number } The offset to insert the value at. + * + * @return this + */ + insertInt8(value, offset) { + return this._insertNumberValue(Buffer.prototype.writeInt8, 1, value, offset); + } + /** + * Writes an Int16BE value to the current write position (or at optional offset). + * + * @param value { Number } The value to write. + * @param offset { Number } The offset to write the value at. + * + * @return this + */ + writeInt16BE(value, offset) { + return this._writeNumberValue(Buffer.prototype.writeInt16BE, 2, value, offset); + } + /** + * Inserts an Int16BE value at the given offset value. + * + * @param value { Number } The value to insert. + * @param offset { Number } The offset to insert the value at. + * + * @return this + */ + insertInt16BE(value, offset) { + return this._insertNumberValue(Buffer.prototype.writeInt16BE, 2, value, offset); + } + /** + * Writes an Int16LE value to the current write position (or at optional offset). + * + * @param value { Number } The value to write. + * @param offset { Number } The offset to write the value at. + * + * @return this + */ + writeInt16LE(value, offset) { + return this._writeNumberValue(Buffer.prototype.writeInt16LE, 2, value, offset); + } + /** + * Inserts an Int16LE value at the given offset value. + * + * @param value { Number } The value to insert. + * @param offset { Number } The offset to insert the value at. + * + * @return this + */ + insertInt16LE(value, offset) { + return this._insertNumberValue(Buffer.prototype.writeInt16LE, 2, value, offset); + } + /** + * Writes an Int32BE value to the current write position (or at optional offset). + * + * @param value { Number } The value to write. + * @param offset { Number } The offset to write the value at. + * + * @return this + */ + writeInt32BE(value, offset) { + return this._writeNumberValue(Buffer.prototype.writeInt32BE, 4, value, offset); + } + /** + * Inserts an Int32BE value at the given offset value. + * + * @param value { Number } The value to insert. + * @param offset { Number } The offset to insert the value at. + * + * @return this + */ + insertInt32BE(value, offset) { + return this._insertNumberValue(Buffer.prototype.writeInt32BE, 4, value, offset); + } + /** + * Writes an Int32LE value to the current write position (or at optional offset). + * + * @param value { Number } The value to write. + * @param offset { Number } The offset to write the value at. + * + * @return this + */ + writeInt32LE(value, offset) { + return this._writeNumberValue(Buffer.prototype.writeInt32LE, 4, value, offset); + } + /** + * Inserts an Int32LE value at the given offset value. + * + * @param value { Number } The value to insert. + * @param offset { Number } The offset to insert the value at. + * + * @return this + */ + insertInt32LE(value, offset) { + return this._insertNumberValue(Buffer.prototype.writeInt32LE, 4, value, offset); + } + /** + * Writes a BigInt64BE value to the current write position (or at optional offset). + * + * @param value { BigInt } The value to write. + * @param offset { Number } The offset to write the value at. + * + * @return this + */ + writeBigInt64BE(value, offset) { + utils_1.bigIntAndBufferInt64Check('writeBigInt64BE'); + return this._writeNumberValue(Buffer.prototype.writeBigInt64BE, 8, value, offset); + } + /** + * Inserts a BigInt64BE value at the given offset value. + * + * @param value { BigInt } The value to insert. + * @param offset { Number } The offset to insert the value at. + * + * @return this + */ + insertBigInt64BE(value, offset) { + utils_1.bigIntAndBufferInt64Check('writeBigInt64BE'); + return this._insertNumberValue(Buffer.prototype.writeBigInt64BE, 8, value, offset); + } + /** + * Writes a BigInt64LE value to the current write position (or at optional offset). + * + * @param value { BigInt } The value to write. + * @param offset { Number } The offset to write the value at. + * + * @return this + */ + writeBigInt64LE(value, offset) { + utils_1.bigIntAndBufferInt64Check('writeBigInt64LE'); + return this._writeNumberValue(Buffer.prototype.writeBigInt64LE, 8, value, offset); + } + /** + * Inserts a Int64LE value at the given offset value. + * + * @param value { BigInt } The value to insert. + * @param offset { Number } The offset to insert the value at. + * + * @return this + */ + insertBigInt64LE(value, offset) { + utils_1.bigIntAndBufferInt64Check('writeBigInt64LE'); + return this._insertNumberValue(Buffer.prototype.writeBigInt64LE, 8, value, offset); + } + // Unsigned Integers + /** + * Reads an UInt8 value from the current read position or an optionally provided offset. + * + * @param offset { Number } The offset to read data from (optional) + * @return { Number } + */ + readUInt8(offset) { + return this._readNumberValue(Buffer.prototype.readUInt8, 1, offset); + } + /** + * Reads an UInt16BE value from the current read position or an optionally provided offset. + * + * @param offset { Number } The offset to read data from (optional) + * @return { Number } + */ + readUInt16BE(offset) { + return this._readNumberValue(Buffer.prototype.readUInt16BE, 2, offset); + } + /** + * Reads an UInt16LE value from the current read position or an optionally provided offset. + * + * @param offset { Number } The offset to read data from (optional) + * @return { Number } + */ + readUInt16LE(offset) { + return this._readNumberValue(Buffer.prototype.readUInt16LE, 2, offset); + } + /** + * Reads an UInt32BE value from the current read position or an optionally provided offset. + * + * @param offset { Number } The offset to read data from (optional) + * @return { Number } + */ + readUInt32BE(offset) { + return this._readNumberValue(Buffer.prototype.readUInt32BE, 4, offset); + } + /** + * Reads an UInt32LE value from the current read position or an optionally provided offset. + * + * @param offset { Number } The offset to read data from (optional) + * @return { Number } + */ + readUInt32LE(offset) { + return this._readNumberValue(Buffer.prototype.readUInt32LE, 4, offset); + } + /** + * Reads a BigUInt64BE value from the current read position or an optionally provided offset. + * + * @param offset { Number } The offset to read data from (optional) + * @return { BigInt } + */ + readBigUInt64BE(offset) { + utils_1.bigIntAndBufferInt64Check('readBigUInt64BE'); + return this._readNumberValue(Buffer.prototype.readBigUInt64BE, 8, offset); + } + /** + * Reads a BigUInt64LE value from the current read position or an optionally provided offset. + * + * @param offset { Number } The offset to read data from (optional) + * @return { BigInt } + */ + readBigUInt64LE(offset) { + utils_1.bigIntAndBufferInt64Check('readBigUInt64LE'); + return this._readNumberValue(Buffer.prototype.readBigUInt64LE, 8, offset); + } + /** + * Writes an UInt8 value to the current write position (or at optional offset). + * + * @param value { Number } The value to write. + * @param offset { Number } The offset to write the value at. + * + * @return this + */ + writeUInt8(value, offset) { + return this._writeNumberValue(Buffer.prototype.writeUInt8, 1, value, offset); + } + /** + * Inserts an UInt8 value at the given offset value. + * + * @param value { Number } The value to insert. + * @param offset { Number } The offset to insert the value at. + * + * @return this + */ + insertUInt8(value, offset) { + return this._insertNumberValue(Buffer.prototype.writeUInt8, 1, value, offset); + } + /** + * Writes an UInt16BE value to the current write position (or at optional offset). + * + * @param value { Number } The value to write. + * @param offset { Number } The offset to write the value at. + * + * @return this + */ + writeUInt16BE(value, offset) { + return this._writeNumberValue(Buffer.prototype.writeUInt16BE, 2, value, offset); + } + /** + * Inserts an UInt16BE value at the given offset value. + * + * @param value { Number } The value to insert. + * @param offset { Number } The offset to insert the value at. + * + * @return this + */ + insertUInt16BE(value, offset) { + return this._insertNumberValue(Buffer.prototype.writeUInt16BE, 2, value, offset); + } + /** + * Writes an UInt16LE value to the current write position (or at optional offset). + * + * @param value { Number } The value to write. + * @param offset { Number } The offset to write the value at. + * + * @return this + */ + writeUInt16LE(value, offset) { + return this._writeNumberValue(Buffer.prototype.writeUInt16LE, 2, value, offset); + } + /** + * Inserts an UInt16LE value at the given offset value. + * + * @param value { Number } The value to insert. + * @param offset { Number } The offset to insert the value at. + * + * @return this + */ + insertUInt16LE(value, offset) { + return this._insertNumberValue(Buffer.prototype.writeUInt16LE, 2, value, offset); + } + /** + * Writes an UInt32BE value to the current write position (or at optional offset). + * + * @param value { Number } The value to write. + * @param offset { Number } The offset to write the value at. + * + * @return this + */ + writeUInt32BE(value, offset) { + return this._writeNumberValue(Buffer.prototype.writeUInt32BE, 4, value, offset); + } + /** + * Inserts an UInt32BE value at the given offset value. + * + * @param value { Number } The value to insert. + * @param offset { Number } The offset to insert the value at. + * + * @return this + */ + insertUInt32BE(value, offset) { + return this._insertNumberValue(Buffer.prototype.writeUInt32BE, 4, value, offset); + } + /** + * Writes an UInt32LE value to the current write position (or at optional offset). + * + * @param value { Number } The value to write. + * @param offset { Number } The offset to write the value at. + * + * @return this + */ + writeUInt32LE(value, offset) { + return this._writeNumberValue(Buffer.prototype.writeUInt32LE, 4, value, offset); + } + /** + * Inserts an UInt32LE value at the given offset value. + * + * @param value { Number } The value to insert. + * @param offset { Number } The offset to insert the value at. + * + * @return this + */ + insertUInt32LE(value, offset) { + return this._insertNumberValue(Buffer.prototype.writeUInt32LE, 4, value, offset); + } + /** + * Writes a BigUInt64BE value to the current write position (or at optional offset). + * + * @param value { Number } The value to write. + * @param offset { Number } The offset to write the value at. + * + * @return this + */ + writeBigUInt64BE(value, offset) { + utils_1.bigIntAndBufferInt64Check('writeBigUInt64BE'); + return this._writeNumberValue(Buffer.prototype.writeBigUInt64BE, 8, value, offset); + } + /** + * Inserts a BigUInt64BE value at the given offset value. + * + * @param value { Number } The value to insert. + * @param offset { Number } The offset to insert the value at. + * + * @return this + */ + insertBigUInt64BE(value, offset) { + utils_1.bigIntAndBufferInt64Check('writeBigUInt64BE'); + return this._insertNumberValue(Buffer.prototype.writeBigUInt64BE, 8, value, offset); + } + /** + * Writes a BigUInt64LE value to the current write position (or at optional offset). + * + * @param value { Number } The value to write. + * @param offset { Number } The offset to write the value at. + * + * @return this + */ + writeBigUInt64LE(value, offset) { + utils_1.bigIntAndBufferInt64Check('writeBigUInt64LE'); + return this._writeNumberValue(Buffer.prototype.writeBigUInt64LE, 8, value, offset); + } + /** + * Inserts a BigUInt64LE value at the given offset value. + * + * @param value { Number } The value to insert. + * @param offset { Number } The offset to insert the value at. + * + * @return this + */ + insertBigUInt64LE(value, offset) { + utils_1.bigIntAndBufferInt64Check('writeBigUInt64LE'); + return this._insertNumberValue(Buffer.prototype.writeBigUInt64LE, 8, value, offset); + } + // Floating Point + /** + * Reads an FloatBE value from the current read position or an optionally provided offset. + * + * @param offset { Number } The offset to read data from (optional) + * @return { Number } + */ + readFloatBE(offset) { + return this._readNumberValue(Buffer.prototype.readFloatBE, 4, offset); + } + /** + * Reads an FloatLE value from the current read position or an optionally provided offset. + * + * @param offset { Number } The offset to read data from (optional) + * @return { Number } + */ + readFloatLE(offset) { + return this._readNumberValue(Buffer.prototype.readFloatLE, 4, offset); + } + /** + * Writes a FloatBE value to the current write position (or at optional offset). + * + * @param value { Number } The value to write. + * @param offset { Number } The offset to write the value at. + * + * @return this + */ + writeFloatBE(value, offset) { + return this._writeNumberValue(Buffer.prototype.writeFloatBE, 4, value, offset); + } + /** + * Inserts a FloatBE value at the given offset value. + * + * @param value { Number } The value to insert. + * @param offset { Number } The offset to insert the value at. + * + * @return this + */ + insertFloatBE(value, offset) { + return this._insertNumberValue(Buffer.prototype.writeFloatBE, 4, value, offset); + } + /** + * Writes a FloatLE value to the current write position (or at optional offset). + * + * @param value { Number } The value to write. + * @param offset { Number } The offset to write the value at. + * + * @return this + */ + writeFloatLE(value, offset) { + return this._writeNumberValue(Buffer.prototype.writeFloatLE, 4, value, offset); + } + /** + * Inserts a FloatLE value at the given offset value. + * + * @param value { Number } The value to insert. + * @param offset { Number } The offset to insert the value at. + * + * @return this + */ + insertFloatLE(value, offset) { + return this._insertNumberValue(Buffer.prototype.writeFloatLE, 4, value, offset); + } + // Double Floating Point + /** + * Reads an DoublEBE value from the current read position or an optionally provided offset. + * + * @param offset { Number } The offset to read data from (optional) + * @return { Number } + */ + readDoubleBE(offset) { + return this._readNumberValue(Buffer.prototype.readDoubleBE, 8, offset); + } + /** + * Reads an DoubleLE value from the current read position or an optionally provided offset. + * + * @param offset { Number } The offset to read data from (optional) + * @return { Number } + */ + readDoubleLE(offset) { + return this._readNumberValue(Buffer.prototype.readDoubleLE, 8, offset); + } + /** + * Writes a DoubleBE value to the current write position (or at optional offset). + * + * @param value { Number } The value to write. + * @param offset { Number } The offset to write the value at. + * + * @return this + */ + writeDoubleBE(value, offset) { + return this._writeNumberValue(Buffer.prototype.writeDoubleBE, 8, value, offset); + } + /** + * Inserts a DoubleBE value at the given offset value. + * + * @param value { Number } The value to insert. + * @param offset { Number } The offset to insert the value at. + * + * @return this + */ + insertDoubleBE(value, offset) { + return this._insertNumberValue(Buffer.prototype.writeDoubleBE, 8, value, offset); + } + /** + * Writes a DoubleLE value to the current write position (or at optional offset). + * + * @param value { Number } The value to write. + * @param offset { Number } The offset to write the value at. + * + * @return this + */ + writeDoubleLE(value, offset) { + return this._writeNumberValue(Buffer.prototype.writeDoubleLE, 8, value, offset); + } + /** + * Inserts a DoubleLE value at the given offset value. + * + * @param value { Number } The value to insert. + * @param offset { Number } The offset to insert the value at. + * + * @return this + */ + insertDoubleLE(value, offset) { + return this._insertNumberValue(Buffer.prototype.writeDoubleLE, 8, value, offset); + } + // Strings + /** + * Reads a String from the current read position. + * + * @param arg1 { Number | String } The number of bytes to read as a String, or the BufferEncoding to use for + * the string (Defaults to instance level encoding). + * @param encoding { String } The BufferEncoding to use for the string (Defaults to instance level encoding). + * + * @return { String } + */ + readString(arg1, encoding) { + let lengthVal; + // Length provided + if (typeof arg1 === 'number') { + utils_1.checkLengthValue(arg1); + lengthVal = Math.min(arg1, this.length - this._readOffset); + } + else { + encoding = arg1; + lengthVal = this.length - this._readOffset; + } + // Check encoding + if (typeof encoding !== 'undefined') { + utils_1.checkEncoding(encoding); + } + const value = this._buff.slice(this._readOffset, this._readOffset + lengthVal).toString(encoding || this._encoding); + this._readOffset += lengthVal; + return value; + } + /** + * Inserts a String + * + * @param value { String } The String value to insert. + * @param offset { Number } The offset to insert the string at. + * @param encoding { String } The BufferEncoding to use for writing strings (defaults to instance encoding). + * + * @return this + */ + insertString(value, offset, encoding) { + utils_1.checkOffsetValue(offset); + return this._handleString(value, true, offset, encoding); + } + /** + * Writes a String + * + * @param value { String } The String value to write. + * @param arg2 { Number | String } The offset to write the string at, or the BufferEncoding to use. + * @param encoding { String } The BufferEncoding to use for writing strings (defaults to instance encoding). + * + * @return this + */ + writeString(value, arg2, encoding) { + return this._handleString(value, false, arg2, encoding); + } + /** + * Reads a null-terminated String from the current read position. + * + * @param encoding { String } The BufferEncoding to use for the string (Defaults to instance level encoding). + * + * @return { String } + */ + readStringNT(encoding) { + if (typeof encoding !== 'undefined') { + utils_1.checkEncoding(encoding); + } + // Set null character position to the end SmartBuffer instance. + let nullPos = this.length; + // Find next null character (if one is not found, default from above is used) + for (let i = this._readOffset; i < this.length; i++) { + if (this._buff[i] === 0x00) { + nullPos = i; + break; + } + } + // Read string value + const value = this._buff.slice(this._readOffset, nullPos); + // Increment internal Buffer read offset + this._readOffset = nullPos + 1; + return value.toString(encoding || this._encoding); + } + /** + * Inserts a null-terminated String. + * + * @param value { String } The String value to write. + * @param arg2 { Number | String } The offset to write the string to, or the BufferEncoding to use. + * @param encoding { String } The BufferEncoding to use for writing strings (defaults to instance encoding). + * + * @return this + */ + insertStringNT(value, offset, encoding) { + utils_1.checkOffsetValue(offset); + // Write Values + this.insertString(value, offset, encoding); + this.insertUInt8(0x00, offset + value.length); + return this; + } + /** + * Writes a null-terminated String. + * + * @param value { String } The String value to write. + * @param arg2 { Number | String } The offset to write the string to, or the BufferEncoding to use. + * @param encoding { String } The BufferEncoding to use for writing strings (defaults to instance encoding). + * + * @return this + */ + writeStringNT(value, arg2, encoding) { + // Write Values + this.writeString(value, arg2, encoding); + this.writeUInt8(0x00, typeof arg2 === 'number' ? arg2 + value.length : this.writeOffset); + return this; + } + // Buffers + /** + * Reads a Buffer from the internal read position. + * + * @param length { Number } The length of data to read as a Buffer. + * + * @return { Buffer } + */ + readBuffer(length) { + if (typeof length !== 'undefined') { + utils_1.checkLengthValue(length); + } + const lengthVal = typeof length === 'number' ? length : this.length; + const endPoint = Math.min(this.length, this._readOffset + lengthVal); + // Read buffer value + const value = this._buff.slice(this._readOffset, endPoint); + // Increment internal Buffer read offset + this._readOffset = endPoint; + return value; + } + /** + * Writes a Buffer to the current write position. + * + * @param value { Buffer } The Buffer to write. + * @param offset { Number } The offset to write the Buffer to. + * + * @return this + */ + insertBuffer(value, offset) { + utils_1.checkOffsetValue(offset); + return this._handleBuffer(value, true, offset); + } + /** + * Writes a Buffer to the current write position. + * + * @param value { Buffer } The Buffer to write. + * @param offset { Number } The offset to write the Buffer to. + * + * @return this + */ + writeBuffer(value, offset) { + return this._handleBuffer(value, false, offset); + } + /** + * Reads a null-terminated Buffer from the current read poisiton. + * + * @return { Buffer } + */ + readBufferNT() { + // Set null character position to the end SmartBuffer instance. + let nullPos = this.length; + // Find next null character (if one is not found, default from above is used) + for (let i = this._readOffset; i < this.length; i++) { + if (this._buff[i] === 0x00) { + nullPos = i; + break; + } + } + // Read value + const value = this._buff.slice(this._readOffset, nullPos); + // Increment internal Buffer read offset + this._readOffset = nullPos + 1; + return value; + } + /** + * Inserts a null-terminated Buffer. + * + * @param value { Buffer } The Buffer to write. + * @param offset { Number } The offset to write the Buffer to. + * + * @return this + */ + insertBufferNT(value, offset) { + utils_1.checkOffsetValue(offset); + // Write Values + this.insertBuffer(value, offset); + this.insertUInt8(0x00, offset + value.length); + return this; + } + /** + * Writes a null-terminated Buffer. + * + * @param value { Buffer } The Buffer to write. + * @param offset { Number } The offset to write the Buffer to. + * + * @return this + */ + writeBufferNT(value, offset) { + // Checks for valid numberic value; + if (typeof offset !== 'undefined') { + utils_1.checkOffsetValue(offset); + } + // Write Values + this.writeBuffer(value, offset); + this.writeUInt8(0x00, typeof offset === 'number' ? offset + value.length : this._writeOffset); + return this; + } + /** + * Clears the SmartBuffer instance to its original empty state. + */ + clear() { + this._writeOffset = 0; + this._readOffset = 0; + this.length = 0; + return this; + } + /** + * Gets the remaining data left to be read from the SmartBuffer instance. + * + * @return { Number } + */ + remaining() { + return this.length - this._readOffset; + } + /** + * Gets the current read offset value of the SmartBuffer instance. + * + * @return { Number } + */ + get readOffset() { + return this._readOffset; + } + /** + * Sets the read offset value of the SmartBuffer instance. + * + * @param offset { Number } - The offset value to set. + */ + set readOffset(offset) { + utils_1.checkOffsetValue(offset); + // Check for bounds. + utils_1.checkTargetOffset(offset, this); + this._readOffset = offset; + } + /** + * Gets the current write offset value of the SmartBuffer instance. + * + * @return { Number } + */ + get writeOffset() { + return this._writeOffset; + } + /** + * Sets the write offset value of the SmartBuffer instance. + * + * @param offset { Number } - The offset value to set. + */ + set writeOffset(offset) { + utils_1.checkOffsetValue(offset); + // Check for bounds. + utils_1.checkTargetOffset(offset, this); + this._writeOffset = offset; + } + /** + * Gets the currently set string encoding of the SmartBuffer instance. + * + * @return { BufferEncoding } The string Buffer encoding currently set. + */ + get encoding() { + return this._encoding; + } + /** + * Sets the string encoding of the SmartBuffer instance. + * + * @param encoding { BufferEncoding } The string Buffer encoding to set. + */ + set encoding(encoding) { + utils_1.checkEncoding(encoding); + this._encoding = encoding; + } + /** + * Gets the underlying internal Buffer. (This includes unmanaged data in the Buffer) + * + * @return { Buffer } The Buffer value. + */ + get internalBuffer() { + return this._buff; + } + /** + * Gets the value of the internal managed Buffer (Includes managed data only) + * + * @param { Buffer } + */ + toBuffer() { + return this._buff.slice(0, this.length); + } + /** + * Gets the String value of the internal managed Buffer + * + * @param encoding { String } The BufferEncoding to display the Buffer as (defaults to instance level encoding). + */ + toString(encoding) { + const encodingVal = typeof encoding === 'string' ? encoding : this._encoding; + // Check for invalid encoding. + utils_1.checkEncoding(encodingVal); + return this._buff.toString(encodingVal, 0, this.length); + } + /** + * Destroys the SmartBuffer instance. + */ + destroy() { + this.clear(); + return this; + } + /** + * Handles inserting and writing strings. + * + * @param value { String } The String value to insert. + * @param isInsert { Boolean } True if inserting a string, false if writing. + * @param arg2 { Number | String } The offset to insert the string at, or the BufferEncoding to use. + * @param encoding { String } The BufferEncoding to use for writing strings (defaults to instance encoding). + */ + _handleString(value, isInsert, arg3, encoding) { + let offsetVal = this._writeOffset; + let encodingVal = this._encoding; + // Check for offset + if (typeof arg3 === 'number') { + offsetVal = arg3; + // Check for encoding + } + else if (typeof arg3 === 'string') { + utils_1.checkEncoding(arg3); + encodingVal = arg3; + } + // Check for encoding (third param) + if (typeof encoding === 'string') { + utils_1.checkEncoding(encoding); + encodingVal = encoding; + } + // Calculate bytelength of string. + const byteLength = Buffer.byteLength(value, encodingVal); + // Ensure there is enough internal Buffer capacity. + if (isInsert) { + this.ensureInsertable(byteLength, offsetVal); + } + else { + this._ensureWriteable(byteLength, offsetVal); + } + // Write value + this._buff.write(value, offsetVal, byteLength, encodingVal); + // Increment internal Buffer write offset; + if (isInsert) { + this._writeOffset += byteLength; + } + else { + // If an offset was given, check to see if we wrote beyond the current writeOffset. + if (typeof arg3 === 'number') { + this._writeOffset = Math.max(this._writeOffset, offsetVal + byteLength); + } + else { + // If no offset was given, we wrote to the end of the SmartBuffer so increment writeOffset. + this._writeOffset += byteLength; + } + } + return this; + } + /** + * Handles writing or insert of a Buffer. + * + * @param value { Buffer } The Buffer to write. + * @param offset { Number } The offset to write the Buffer to. + */ + _handleBuffer(value, isInsert, offset) { + const offsetVal = typeof offset === 'number' ? offset : this._writeOffset; + // Ensure there is enough internal Buffer capacity. + if (isInsert) { + this.ensureInsertable(value.length, offsetVal); + } + else { + this._ensureWriteable(value.length, offsetVal); + } + // Write buffer value + value.copy(this._buff, offsetVal); + // Increment internal Buffer write offset; + if (isInsert) { + this._writeOffset += value.length; + } + else { + // If an offset was given, check to see if we wrote beyond the current writeOffset. + if (typeof offset === 'number') { + this._writeOffset = Math.max(this._writeOffset, offsetVal + value.length); + } + else { + // If no offset was given, we wrote to the end of the SmartBuffer so increment writeOffset. + this._writeOffset += value.length; + } + } + return this; + } + /** + * Ensures that the internal Buffer is large enough to read data. + * + * @param length { Number } The length of the data that needs to be read. + * @param offset { Number } The offset of the data that needs to be read. + */ + ensureReadable(length, offset) { + // Offset value defaults to managed read offset. + let offsetVal = this._readOffset; + // If an offset was provided, use it. + if (typeof offset !== 'undefined') { + // Checks for valid numberic value; + utils_1.checkOffsetValue(offset); + // Overide with custom offset. + offsetVal = offset; + } + // Checks if offset is below zero, or the offset+length offset is beyond the total length of the managed data. + if (offsetVal < 0 || offsetVal + length > this.length) { + throw new Error(utils_1.ERRORS.INVALID_READ_BEYOND_BOUNDS); + } + } + /** + * Ensures that the internal Buffer is large enough to insert data. + * + * @param dataLength { Number } The length of the data that needs to be written. + * @param offset { Number } The offset of the data to be written. + */ + ensureInsertable(dataLength, offset) { + // Checks for valid numberic value; + utils_1.checkOffsetValue(offset); + // Ensure there is enough internal Buffer capacity. + this._ensureCapacity(this.length + dataLength); + // If an offset was provided and its not the very end of the buffer, copy data into appropriate location in regards to the offset. + if (offset < this.length) { + this._buff.copy(this._buff, offset + dataLength, offset, this._buff.length); + } + // Adjust tracked smart buffer length + if (offset + dataLength > this.length) { + this.length = offset + dataLength; + } + else { + this.length += dataLength; + } + } + /** + * Ensures that the internal Buffer is large enough to write data. + * + * @param dataLength { Number } The length of the data that needs to be written. + * @param offset { Number } The offset of the data to be written (defaults to writeOffset). + */ + _ensureWriteable(dataLength, offset) { + const offsetVal = typeof offset === 'number' ? offset : this._writeOffset; + // Ensure enough capacity to write data. + this._ensureCapacity(offsetVal + dataLength); + // Adjust SmartBuffer length (if offset + length is larger than managed length, adjust length) + if (offsetVal + dataLength > this.length) { + this.length = offsetVal + dataLength; + } + } + /** + * Ensures that the internal Buffer is large enough to write at least the given amount of data. + * + * @param minLength { Number } The minimum length of the data needs to be written. + */ + _ensureCapacity(minLength) { + const oldLength = this._buff.length; + if (minLength > oldLength) { + let data = this._buff; + let newLength = (oldLength * 3) / 2 + 1; + if (newLength < minLength) { + newLength = minLength; + } + this._buff = Buffer.allocUnsafe(newLength); + data.copy(this._buff, 0, 0, oldLength); + } + } + /** + * Reads a numeric number value using the provided function. + * + * @typeparam T { number | bigint } The type of the value to be read + * + * @param func { Function(offset: number) => number } The function to read data on the internal Buffer with. + * @param byteSize { Number } The number of bytes read. + * @param offset { Number } The offset to read from (optional). When this is not provided, the managed readOffset is used instead. + * + * @returns { T } the number value + */ + _readNumberValue(func, byteSize, offset) { + this.ensureReadable(byteSize, offset); + // Call Buffer.readXXXX(); + const value = func.call(this._buff, typeof offset === 'number' ? offset : this._readOffset); + // Adjust internal read offset if an optional read offset was not provided. + if (typeof offset === 'undefined') { + this._readOffset += byteSize; + } + return value; + } + /** + * Inserts a numeric number value based on the given offset and value. + * + * @typeparam T { number | bigint } The type of the value to be written + * + * @param func { Function(offset: T, offset?) => number} The function to write data on the internal Buffer with. + * @param byteSize { Number } The number of bytes written. + * @param value { T } The number value to write. + * @param offset { Number } the offset to write the number at (REQUIRED). + * + * @returns SmartBuffer this buffer + */ + _insertNumberValue(func, byteSize, value, offset) { + // Check for invalid offset values. + utils_1.checkOffsetValue(offset); + // Ensure there is enough internal Buffer capacity. (raw offset is passed) + this.ensureInsertable(byteSize, offset); + // Call buffer.writeXXXX(); + func.call(this._buff, value, offset); + // Adjusts internally managed write offset. + this._writeOffset += byteSize; + return this; + } + /** + * Writes a numeric number value based on the given offset and value. + * + * @typeparam T { number | bigint } The type of the value to be written + * + * @param func { Function(offset: T, offset?) => number} The function to write data on the internal Buffer with. + * @param byteSize { Number } The number of bytes written. + * @param value { T } The number value to write. + * @param offset { Number } the offset to write the number at (REQUIRED). + * + * @returns SmartBuffer this buffer + */ + _writeNumberValue(func, byteSize, value, offset) { + // If an offset was provided, validate it. + if (typeof offset === 'number') { + // Check if we're writing beyond the bounds of the managed data. + if (offset < 0) { + throw new Error(utils_1.ERRORS.INVALID_WRITE_BEYOND_BOUNDS); + } + utils_1.checkOffsetValue(offset); + } + // Default to writeOffset if no offset value was given. + const offsetVal = typeof offset === 'number' ? offset : this._writeOffset; + // Ensure there is enough internal Buffer capacity. (raw offset is passed) + this._ensureWriteable(byteSize, offsetVal); + func.call(this._buff, value, offsetVal); + // If an offset was given, check to see if we wrote beyond the current writeOffset. + if (typeof offset === 'number') { + this._writeOffset = Math.max(this._writeOffset, offsetVal + byteSize); + } + else { + // If no numeric offset was given, we wrote to the end of the SmartBuffer so increment writeOffset. + this._writeOffset += byteSize; + } + return this; + } +} +exports.SmartBuffer = SmartBuffer; +//# sourceMappingURL=smartbuffer.js.map \ No newline at end of file diff --git a/node_modules/smart-buffer/build/smartbuffer.js.map b/node_modules/smart-buffer/build/smartbuffer.js.map new file mode 100644 index 000000000..37f0d6e16 --- /dev/null +++ b/node_modules/smart-buffer/build/smartbuffer.js.map @@ -0,0 +1 @@ +{"version":3,"file":"smartbuffer.js","sourceRoot":"","sources":["../src/smartbuffer.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/smart-buffer/build/utils.js b/node_modules/smart-buffer/build/utils.js new file mode 100644 index 000000000..6d5598123 --- /dev/null +++ b/node_modules/smart-buffer/build/utils.js @@ -0,0 +1,108 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +const buffer_1 = require("buffer"); +/** + * Error strings + */ +const ERRORS = { + INVALID_ENCODING: 'Invalid encoding provided. Please specify a valid encoding the internal Node.js Buffer supports.', + INVALID_SMARTBUFFER_SIZE: 'Invalid size provided. Size must be a valid integer greater than zero.', + INVALID_SMARTBUFFER_BUFFER: 'Invalid Buffer provided in SmartBufferOptions.', + INVALID_SMARTBUFFER_OBJECT: 'Invalid SmartBufferOptions object supplied to SmartBuffer constructor or factory methods.', + INVALID_OFFSET: 'An invalid offset value was provided.', + INVALID_OFFSET_NON_NUMBER: 'An invalid offset value was provided. A numeric value is required.', + INVALID_LENGTH: 'An invalid length value was provided.', + INVALID_LENGTH_NON_NUMBER: 'An invalid length value was provived. A numeric value is required.', + INVALID_TARGET_OFFSET: 'Target offset is beyond the bounds of the internal SmartBuffer data.', + INVALID_TARGET_LENGTH: 'Specified length value moves cursor beyong the bounds of the internal SmartBuffer data.', + INVALID_READ_BEYOND_BOUNDS: 'Attempted to read beyond the bounds of the managed data.', + INVALID_WRITE_BEYOND_BOUNDS: 'Attempted to write beyond the bounds of the managed data.' +}; +exports.ERRORS = ERRORS; +/** + * Checks if a given encoding is a valid Buffer encoding. (Throws an exception if check fails) + * + * @param { String } encoding The encoding string to check. + */ +function checkEncoding(encoding) { + if (!buffer_1.Buffer.isEncoding(encoding)) { + throw new Error(ERRORS.INVALID_ENCODING); + } +} +exports.checkEncoding = checkEncoding; +/** + * Checks if a given number is a finite integer. (Throws an exception if check fails) + * + * @param { Number } value The number value to check. + */ +function isFiniteInteger(value) { + return typeof value === 'number' && isFinite(value) && isInteger(value); +} +exports.isFiniteInteger = isFiniteInteger; +/** + * Checks if an offset/length value is valid. (Throws an exception if check fails) + * + * @param value The value to check. + * @param offset True if checking an offset, false if checking a length. + */ +function checkOffsetOrLengthValue(value, offset) { + if (typeof value === 'number') { + // Check for non finite/non integers + if (!isFiniteInteger(value) || value < 0) { + throw new Error(offset ? ERRORS.INVALID_OFFSET : ERRORS.INVALID_LENGTH); + } + } + else { + throw new Error(offset ? ERRORS.INVALID_OFFSET_NON_NUMBER : ERRORS.INVALID_LENGTH_NON_NUMBER); + } +} +/** + * Checks if a length value is valid. (Throws an exception if check fails) + * + * @param { Number } length The value to check. + */ +function checkLengthValue(length) { + checkOffsetOrLengthValue(length, false); +} +exports.checkLengthValue = checkLengthValue; +/** + * Checks if a offset value is valid. (Throws an exception if check fails) + * + * @param { Number } offset The value to check. + */ +function checkOffsetValue(offset) { + checkOffsetOrLengthValue(offset, true); +} +exports.checkOffsetValue = checkOffsetValue; +/** + * Checks if a target offset value is out of bounds. (Throws an exception if check fails) + * + * @param { Number } offset The offset value to check. + * @param { SmartBuffer } buff The SmartBuffer instance to check against. + */ +function checkTargetOffset(offset, buff) { + if (offset < 0 || offset > buff.length) { + throw new Error(ERRORS.INVALID_TARGET_OFFSET); + } +} +exports.checkTargetOffset = checkTargetOffset; +/** + * Determines whether a given number is a integer. + * @param value The number to check. + */ +function isInteger(value) { + return typeof value === 'number' && isFinite(value) && Math.floor(value) === value; +} +/** + * Throws if Node.js version is too low to support bigint + */ +function bigIntAndBufferInt64Check(bufferMethod) { + if (typeof BigInt === 'undefined') { + throw new Error('Platform does not support JS BigInt type.'); + } + if (typeof buffer_1.Buffer.prototype[bufferMethod] === 'undefined') { + throw new Error(`Platform does not support Buffer.prototype.${bufferMethod}.`); + } +} +exports.bigIntAndBufferInt64Check = bigIntAndBufferInt64Check; +//# sourceMappingURL=utils.js.map \ No newline at end of file diff --git a/node_modules/smart-buffer/build/utils.js.map b/node_modules/smart-buffer/build/utils.js.map new file mode 100644 index 000000000..fc7388d3b --- /dev/null +++ b/node_modules/smart-buffer/build/utils.js.map @@ -0,0 +1 @@ +{"version":3,"file":"utils.js","sourceRoot":"","sources":["../src/utils.ts"],"names":[],"mappings":";;AACA,mCAAgC;AAEhC;;GAEG;AACH,MAAM,MAAM,GAAG;IACb,gBAAgB,EAAE,kGAAkG;IACpH,wBAAwB,EAAE,wEAAwE;IAClG,0BAA0B,EAAE,gDAAgD;IAC5E,0BAA0B,EAAE,2FAA2F;IACvH,cAAc,EAAE,uCAAuC;IACvD,yBAAyB,EAAE,oEAAoE;IAC/F,cAAc,EAAE,uCAAuC;IACvD,yBAAyB,EAAE,oEAAoE;IAC/F,qBAAqB,EAAE,sEAAsE;IAC7F,qBAAqB,EAAE,yFAAyF;IAChH,0BAA0B,EAAE,0DAA0D;IACtF,2BAA2B,EAAE,2DAA2D;CACzF,CAAC;AAuGA,wBAAM;AArGR;;;;GAIG;AACH,SAAS,aAAa,CAAC,QAAwB;IAC7C,IAAI,CAAC,eAAM,CAAC,UAAU,CAAC,QAAQ,CAAC,EAAE;QAChC,MAAM,IAAI,KAAK,CAAC,MAAM,CAAC,gBAAgB,CAAC,CAAC;KAC1C;AACH,CAAC;AA4F0B,sCAAa;AA1FxC;;;;GAIG;AACH,SAAS,eAAe,CAAC,KAAa;IACpC,OAAO,OAAO,KAAK,KAAK,QAAQ,IAAI,QAAQ,CAAC,KAAK,CAAC,IAAI,SAAS,CAAC,KAAK,CAAC,CAAC;AAC1E,CAAC;AAmFS,0CAAe;AAjFzB;;;;;GAKG;AACH,SAAS,wBAAwB,CAAC,KAAU,EAAE,MAAe;IAC3D,IAAI,OAAO,KAAK,KAAK,QAAQ,EAAE;QAC7B,oCAAoC;QACpC,IAAI,CAAC,eAAe,CAAC,KAAK,CAAC,IAAI,KAAK,GAAG,CAAC,EAAE;YACxC,MAAM,IAAI,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,CAAC,cAAc,CAAC,CAAC,CAAC,MAAM,CAAC,cAAc,CAAC,CAAC;SACzE;KACF;SAAM;QACL,MAAM,IAAI,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,CAAC,yBAAyB,CAAC,CAAC,CAAC,MAAM,CAAC,yBAAyB,CAAC,CAAC;KAC/F;AACH,CAAC;AAED;;;;GAIG;AACH,SAAS,gBAAgB,CAAC,MAAW;IACnC,wBAAwB,CAAC,MAAM,EAAE,KAAK,CAAC,CAAC;AAC1C,CAAC;AA0DC,4CAAgB;AAxDlB;;;;GAIG;AACH,SAAS,gBAAgB,CAAC,MAAW;IACnC,wBAAwB,CAAC,MAAM,EAAE,IAAI,CAAC,CAAC;AACzC,CAAC;AAgDyC,4CAAgB;AA9C1D;;;;;GAKG;AACH,SAAS,iBAAiB,CAAC,MAAc,EAAE,IAAiB;IAC1D,IAAI,MAAM,GAAG,CAAC,IAAI,MAAM,GAAG,IAAI,CAAC,MAAM,EAAE;QACtC,MAAM,IAAI,KAAK,CAAC,MAAM,CAAC,qBAAqB,CAAC,CAAC;KAC/C;AACH,CAAC;AAqCmB,8CAAiB;AAnCrC;;;GAGG;AACH,SAAS,SAAS,CAAC,KAAa;IAC9B,OAAO,OAAO,KAAK,KAAK,QAAQ,IAAI,QAAQ,CAAC,KAAK,CAAC,IAAI,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,KAAK,CAAC;AACrF,CAAC;AAcD;;GAEG;AACH,SAAS,yBAAyB,CAAC,YAA0B;IAC3D,IAAI,OAAO,MAAM,KAAK,WAAW,EAAE;QACjC,MAAM,IAAI,KAAK,CAAC,2CAA2C,CAAC,CAAC;KAC9D;IAED,IAAI,OAAO,eAAM,CAAC,SAAS,CAAC,YAAY,CAAC,KAAK,WAAW,EAAE;QACzD,MAAM,IAAI,KAAK,CAAC,8CAA8C,YAAY,GAAG,CAAC,CAAC;KAChF;AACH,CAAC;AAIsC,8DAAyB"} \ No newline at end of file diff --git a/node_modules/smart-buffer/docs/CHANGELOG.md b/node_modules/smart-buffer/docs/CHANGELOG.md new file mode 100644 index 000000000..1199a4d6d --- /dev/null +++ b/node_modules/smart-buffer/docs/CHANGELOG.md @@ -0,0 +1,70 @@ +# Change Log +## 4.1.0 +> Released 07/24/2019 +* Adds int64 support for node v12+ +* Drops support for node v4 + +## 4.0 +> Released 10/21/2017 +* Major breaking changes arriving in v4. + +### New Features +* Ability to read data from a specific offset. ex: readInt8(5) +* Ability to write over data when an offset is given (see breaking changes) ex: writeInt8(5, 0); +* Ability to set internal read and write offsets. + + + +### Breaking Changes + +* Old constructor patterns have been completely removed. It's now required to use the SmartBuffer.fromXXX() factory constructors. Read more on the v4 docs. +* rewind(), skip(), moveTo() have been removed. +* Internal private properties are now prefixed with underscores (_). +* **All** writeXXX() methods that are given an offset will now **overwrite data** instead of insert +* insertXXX() methods have been added for when you want to insert data at a specific offset (this replaces the old behavior of writeXXX() when an offset was provided) + + +### Other Changes +* Standardizd error messaging +* Standardized offset/length bounds and sanity checking +* General overall cleanup of code. + +## 3.0.3 +> Released 02/19/2017 +* Adds missing type definitions for some internal functions. + +## 3.0.2 +> Released 02/17/2017 + +### Bug Fixes +* Fixes a bug where using readString with a length of zero resulted in reading the remaining data instead of returning an empty string. (Fixed by Seldszar) + +## 3.0.1 +> Released 02/15/2017 + +### Bug Fixes +* Fixes a bug leftover from the TypeScript refactor where .readIntXXX() resulted in .readUIntXXX() being called by mistake. + +## 3.0 +> Released 02/12/2017 + +### Bug Fixes +* readUIntXXXX() methods will now throw an exception if they attempt to read beyond the bounds of the valid buffer data available. + * **Note** This is technically a breaking change, so version is bumped to 3.x. + +## 2.0 +> Relased 01/30/2017 + +### New Features: + +* Entire package re-written in TypeScript (2.1) +* Backwards compatibility is preserved for now +* New factory methods for creating SmartBuffer instances + * SmartBuffer.fromSize() + * SmartBuffer.fromBuffer() + * SmartBuffer.fromOptions() +* New SmartBufferOptions constructor options +* Added additional tests + +### Bug Fixes: +* Fixes a bug where reading null terminated strings may result in an exception. diff --git a/node_modules/smart-buffer/docs/README_v3.md b/node_modules/smart-buffer/docs/README_v3.md new file mode 100644 index 000000000..b7c48b8b5 --- /dev/null +++ b/node_modules/smart-buffer/docs/README_v3.md @@ -0,0 +1,367 @@ +smart-buffer [![Build Status](https://travis-ci.org/JoshGlazebrook/smart-buffer.svg?branch=master)](https://travis-ci.org/JoshGlazebrook/smart-buffer) [![Coverage Status](https://coveralls.io/repos/github/JoshGlazebrook/smart-buffer/badge.svg?branch=master)](https://coveralls.io/github/JoshGlazebrook/smart-buffer?branch=master) +============= + +smart-buffer is a light Buffer wrapper that takes away the need to keep track of what position to read and write data to and from the underlying Buffer. It also adds null terminating string operations and **grows** as you add more data. + +![stats](https://nodei.co/npm/smart-buffer.png?downloads=true&downloadRank=true&stars=true "stats") + +### What it's useful for: + +I created smart-buffer because I wanted to simplify the process of using Buffer for building and reading network packets to send over a socket. Rather than having to keep track of which position I need to write a UInt16 to after adding a string of variable length, I simply don't have to. + +Key Features: +* Proxies all of the Buffer write and read functions. +* Keeps track of read and write positions for you. +* Grows the internal Buffer as you add data to it. +* Useful string operations. (Null terminating strings) +* Allows for inserting values at specific points in the internal Buffer. +* Built in TypeScript +* Type Definitions Provided + +Requirements: +* Node v4.0+ is supported at this time. (Versions prior to 2.0 will work on node 0.10) + + +#### Note: +smart-buffer can be used for writing to an underlying buffer as well as reading from it. It however does not function correctly if you're mixing both read and write operations with each other. + +## Breaking Changes with 2.0 +The latest version (2.0+) is written in TypeScript, and are compiled to ES6 Javascript. This means the earliest Node.js it supports will be 4.x (in strict mode.) If you're using version 6 and above it will work without any issues. From an API standpoint, 2.0 is backwards compatible. The only difference is SmartBuffer is not exported directly as the root module. + +## Breaking Changes with 3.0 +Starting with 3.0, if any of the readIntXXXX() methods are called and the requested data is larger than the bounds of the internally managed valid buffer data, an exception will now be thrown. + +## Installing: + +`npm install smart-buffer` + +or + +`yarn add smart-buffer` + +Note: The published NPM package includes the built javascript library. +If you cloned this repo and wish to build the library manually use: + +`tsc -p ./` + +## Using smart-buffer + +### Example + +Say you were building a packet that had to conform to the following protocol: + +`[PacketType:2][PacketLength:2][Data:XX]` + +To build this packet using the vanilla Buffer class, you would have to count up the length of the data payload beforehand. You would also need to keep track of the current "cursor" position in your Buffer so you write everything in the right places. With smart-buffer you don't have to do either of those things. + +```javascript +// 1.x (javascript) +var SmartBuffer = require('smart-buffer'); + +// 1.x (typescript) +import SmartBuffer = require('smart-buffer'); + +// 2.x+ (javascript) +const SmartBuffer = require('smart-buffer').SmartBuffer; + +// 2.x+ (typescript) +import { SmartBuffer, SmartBufferOptions} from 'smart-buffer'; + +function createLoginPacket(username, password, age, country) { + let packet = new SmartBuffer(); + packet.writeUInt16LE(0x0060); // Login Packet Type/ID + packet.writeStringNT(username); + packet.writeStringNT(password); + packet.writeUInt8(age); + packet.writeStringNT(country); + packet.writeUInt16LE(packet.length - 2, 2); + + return packet.toBuffer(); +} +``` +With the above function, you now can do this: +```javascript +let login = createLoginPacket("Josh", "secret123", 22, "United States"); + +// +``` +Notice that the `[PacketLength:2]` part of the packet was inserted after we had added everything else, and as shown in the Buffer dump above, is in the correct location along with everything else. + +Reading back the packet we created above is just as easy: +```javascript + +let reader = SmartBuffer.fromBuffer(login); + +let logininfo = { + packetType: reader.readUInt16LE(), + packetLength: reader.readUInt16LE(), + username: reader.readStringNT(), + password: reader.readStringNT(), + age: reader.readUInt8(), + country: reader.readStringNT() +}; + +/* +{ + packetType: 96, (0x0060) + packetLength: 30, + username: 'Josh', + password: 'secret123', + age: 22, + country: 'United States' +}; +*/ +``` + +# Api Reference: + +### Constructing a smart-buffer + +smart-buffer has a few different ways to construct an instance. Starting with version 2.0, the following factory methods are preffered. + +```javascript +let SmartBuffer = require('smart-buffer'); + +// Creating SmartBuffer from existing Buffer +let buff = SmartBuffer.fromBuffer(buffer); // Creates instance from buffer. (Uses default utf8 encoding) +let buff = SmartBuffer.fromBuffer(buffer, 'ascii'); // Creates instance from buffer with ascii encoding for Strings. + +// Creating SmartBuffer with specified internal Buffer size. +let buff = SmartBuffer.fromSize(1024); // Creates instance with internal Buffer size of 1024. +let buff = SmartBuffer.fromSize(1024, 'utf8'); // Creates instance with intenral Buffer size of 1024, and utf8 encoding. + +// Creating SmartBuffer with options object. This one specifies size and encoding. +let buff = SmartBuffer.fromOptions({ + size: 1024, + encoding: 'ascii' +}); + +// Creating SmartBuffer with options object. This one specified an existing Buffer. +let buff = SmartBuffer.fromOptions({ + buff: buffer +}); + +// Just want a regular SmartBuffer with all default options? +let buff = new SmartBuffer(); +``` + +## Backwards Compatibility: + +All constructors used prior to 2.0 still are supported. However it's not recommended to use these. + +```javascript +let writer = new SmartBuffer(); // Defaults to utf8, 4096 length internal Buffer. +let writer = new SmartBuffer(1024); // Defaults to utf8, 1024 length internal Buffer. +let writer = new SmartBuffer('ascii'); // Sets to ascii encoding, 4096 length internal buffer. +let writer = new SmartBuffer(1024, 'ascii'); // Sets to ascii encoding, 1024 length internal buffer. +``` + +## Reading Data + +smart-buffer supports all of the common read functions you will find in the vanilla Buffer class. The only difference is, you do not need to specify which location to start reading from. This is possible because as you read data out of a smart-buffer, it automatically progresses an internal read offset/position to know where to pick up from on the next read. + +## Reading Numeric Values + +When numeric values, you simply need to call the function you want, and the data is returned. + +Supported Operations: +* readInt8 +* readInt16BE +* readInt16LE +* readInt32BE +* readInt32LE +* readBigInt64LE +* readBigInt64BE +* readUInt8 +* readUInt16BE +* readUInt16LE +* readUInt32BE +* readUInt32LE +* readBigUInt64LE +* readBigUInt64BE +* readFloatBE +* readFloatLE +* readDoubleBE +* readDoubleLE + +```javascript +let reader = new SmartBuffer(somebuffer); +let num = reader.readInt8(); +``` + +## Reading String Values + +When reading String values, you can either choose to read a null terminated string, or a string of a specified length. + +### SmartBuffer.readStringNT( [encoding] ) +> `String` **String encoding to use** - Defaults to the encoding set in the constructor. + +returns `String` + +> Note: When readStringNT is called and there is no null character found, smart-buffer will read to the end of the internal Buffer. + +### SmartBuffer.readString( [length] ) +### SmartBuffer.readString( [encoding] ) +### SmartBuffer.readString( [length], [encoding] ) +> `Number` **Length of the string to read** + +> `String` **String encoding to use** - Defaults to the encoding set in the constructor, or utf8. + +returns `String` + +> Note: When readString is called without a specified length, smart-buffer will read to the end of the internal Buffer. + + + +## Reading Buffer Values + +### SmartBuffer.readBuffer( length ) +> `Number` **Length of data to read into a Buffer** + +returns `Buffer` + +> Note: This function uses `slice` to retrieve the Buffer. + + +### SmartBuffer.readBufferNT() + +returns `Buffer` + +> Note: This reads the next sequence of bytes in the buffer until a null (0x00) value is found. (Null terminated buffer) +> Note: This function uses `slice` to retrieve the Buffer. + + +## Writing Data + +smart-buffer supports all of the common write functions you will find in the vanilla Buffer class. The only difference is, you do not need to specify which location to write to in your Buffer by default. You do however have the option of **inserting** a piece of data into your smart-buffer at a given location. + + +## Writing Numeric Values + + +For numeric values, you simply need to call the function you want, and the data is written at the end of the internal Buffer's current write position. You can specify a offset/position to **insert** the given value at, but keep in mind this does not override data at the given position. This feature also does not work properly when inserting a value beyond the current internal length of the smart-buffer (length being the .length property of the smart-buffer instance you're writing to) + +Supported Operations: +* writeInt8 +* writeInt16BE +* writeInt16LE +* writeInt32BE +* writeInt32LE +* writeBigInt64BE +* writeBigInt64LE +* writeUInt8 +* writeUInt16BE +* writeUInt16LE +* writeUInt32BE +* writeUInt32LE +* writeBigUInt64BE +* writeBigUInt64LE +* writeFloatBE +* writeFloatLE +* writeDoubleBE +* writeDoubleLE + +The following signature is the same for all the above functions: + +### SmartBuffer.writeInt8( value, [offset] ) +> `Number` **A valid Int8 number** + +> `Number` **The position to insert this value at** + +returns this + +> Note: All write operations return `this` to allow for chaining. + +## Writing String Values + +When reading String values, you can either choose to write a null terminated string, or a non null terminated string. + +### SmartBuffer.writeStringNT( value, [offset], [encoding] ) +### SmartBuffer.writeStringNT( value, [offset] ) +### SmartBuffer.writeStringNT( value, [encoding] ) +> `String` **String value to write** + +> `Number` **The position to insert this String at** + +> `String` **The String encoding to use.** - Defaults to the encoding set in the constructor, or utf8. + +returns this + +### SmartBuffer.writeString( value, [offset], [encoding] ) +### SmartBuffer.writeString( value, [offset] ) +### SmartBuffer.writeString( value, [encoding] ) +> `String` **String value to write** + +> `Number` **The position to insert this String at** + +> `String` **The String encoding to use** - Defaults to the encoding set in the constructor, or utf8. + +returns this + + +## Writing Buffer Values + +### SmartBuffer.writeBuffer( value, [offset] ) +> `Buffer` **Buffer value to write** + +> `Number` **The position to insert this Buffer's content at** + +returns this + +### SmartBuffer.writeBufferNT( value, [offset] ) +> `Buffer` **Buffer value to write** + +> `Number` **The position to insert this Buffer's content at** + +returns this + + +## Utility Functions + +### SmartBuffer.clear() +Resets the SmartBuffer to its default state where it can be reused for reading or writing. + +### SmartBuffer.remaining() + +returns `Number` The amount of data left to read based on the current read Position. + +### SmartBuffer.skip( value ) +> `Number` **The amount of bytes to skip ahead** + +Skips the read position ahead by the given value. + +returns this + +### SmartBuffer.rewind( value ) +> `Number` **The amount of bytes to reward backwards** + +Rewinds the read position backwards by the given value. + +returns this + +### SmartBuffer.moveTo( position ) +> `Number` **The point to skip the read position to** + +Moves the read position to the given point. +returns this + +### SmartBuffer.toBuffer() + +returns `Buffer` A Buffer containing the contents of the internal Buffer. + +> Note: This uses the slice function. + +### SmartBuffer.toString( [encoding] ) +> `String` **The String encoding to use** - Defaults to the encoding set in the constructor, or utf8. + +returns `String` The internal Buffer in String representation. + +## Properties + +### SmartBuffer.length + +returns `Number` **The length of the data that is being tracked in the internal Buffer** - Does NOT return the absolute length of the internal Buffer being written to. + +## License + +This work is licensed under the [MIT license](http://en.wikipedia.org/wiki/MIT_License). \ No newline at end of file diff --git a/node_modules/smart-buffer/docs/ROADMAP.md b/node_modules/smart-buffer/docs/ROADMAP.md new file mode 100644 index 000000000..e69de29bb diff --git a/node_modules/smart-buffer/package.json b/node_modules/smart-buffer/package.json new file mode 100644 index 000000000..2f326f248 --- /dev/null +++ b/node_modules/smart-buffer/package.json @@ -0,0 +1,79 @@ +{ + "name": "smart-buffer", + "version": "4.2.0", + "description": "smart-buffer is a Buffer wrapper that adds automatic read & write offset tracking, string operations, data insertions, and more.", + "main": "build/smartbuffer.js", + "contributors": ["syvita"], + "homepage": "https://github.com/JoshGlazebrook/smart-buffer/", + "repository": { + "type": "git", + "url": "https://github.com/JoshGlazebrook/smart-buffer.git" + }, + "bugs": { + "url": "https://github.com/JoshGlazebrook/smart-buffer/issues" + }, + "keywords": [ + "buffer", + "smart", + "packet", + "serialize", + "network", + "cursor", + "simple" + ], + "engines": { + "node": ">= 6.0.0", + "npm": ">= 3.0.0" + }, + "author": "Josh Glazebrook", + "license": "MIT", + "readmeFilename": "README.md", + "devDependencies": { + "@types/chai": "4.1.7", + "@types/mocha": "5.2.7", + "@types/node": "^12.0.0", + "chai": "4.2.0", + "coveralls": "3.0.5", + "istanbul": "^0.4.5", + "mocha": "6.2.0", + "mocha-lcov-reporter": "^1.3.0", + "nyc": "14.1.1", + "source-map-support": "0.5.12", + "ts-node": "8.3.0", + "tslint": "5.18.0", + "typescript": "^3.2.1" + }, + "typings": "typings/smartbuffer.d.ts", + "dependencies": {}, + "scripts": { + "prepublish": "npm install -g typescript && npm run build", + "test": "NODE_ENV=test mocha --recursive --require ts-node/register test/**/*.ts", + "coverage": "NODE_ENV=test nyc npm test", + "coveralls": "NODE_ENV=test nyc npm test && nyc report --reporter=text-lcov | coveralls", + "lint": "tslint --type-check --project tsconfig.json 'src/**/*.ts'", + "build": "tsc -p ./" + }, + "nyc": { + "extension": [ + ".ts", + ".tsx" + ], + "include": [ + "src/*.ts", + "src/**/*.ts" + ], + "exclude": [ + "**.*.d.ts", + "node_modules", + "typings" + ], + "require": [ + "ts-node/register" + ], + "reporter": [ + "json", + "html" + ], + "all": true + } +} diff --git a/node_modules/smart-buffer/typings/smartbuffer.d.ts b/node_modules/smart-buffer/typings/smartbuffer.d.ts new file mode 100644 index 000000000..d07379b29 --- /dev/null +++ b/node_modules/smart-buffer/typings/smartbuffer.d.ts @@ -0,0 +1,755 @@ +/// +/** + * Object interface for constructing new SmartBuffer instances. + */ +interface SmartBufferOptions { + encoding?: BufferEncoding; + size?: number; + buff?: Buffer; +} +declare class SmartBuffer { + length: number; + private _encoding; + private _buff; + private _writeOffset; + private _readOffset; + /** + * Creates a new SmartBuffer instance. + * + * @param options { SmartBufferOptions } The SmartBufferOptions to apply to this instance. + */ + constructor(options?: SmartBufferOptions); + /** + * Creates a new SmartBuffer instance with the provided internal Buffer size and optional encoding. + * + * @param size { Number } The size of the internal Buffer. + * @param encoding { String } The BufferEncoding to use for strings. + * + * @return { SmartBuffer } + */ + static fromSize(size: number, encoding?: BufferEncoding): SmartBuffer; + /** + * Creates a new SmartBuffer instance with the provided Buffer and optional encoding. + * + * @param buffer { Buffer } The Buffer to use as the internal Buffer value. + * @param encoding { String } The BufferEncoding to use for strings. + * + * @return { SmartBuffer } + */ + static fromBuffer(buff: Buffer, encoding?: BufferEncoding): SmartBuffer; + /** + * Creates a new SmartBuffer instance with the provided SmartBufferOptions options. + * + * @param options { SmartBufferOptions } The options to use when creating the SmartBuffer instance. + */ + static fromOptions(options: SmartBufferOptions): SmartBuffer; + /** + * Type checking function that determines if an object is a SmartBufferOptions object. + */ + static isSmartBufferOptions(options: SmartBufferOptions): options is SmartBufferOptions; + /** + * Reads an Int8 value from the current read position or an optionally provided offset. + * + * @param offset { Number } The offset to read data from (optional) + * @return { Number } + */ + readInt8(offset?: number): number; + /** + * Reads an Int16BE value from the current read position or an optionally provided offset. + * + * @param offset { Number } The offset to read data from (optional) + * @return { Number } + */ + readInt16BE(offset?: number): number; + /** + * Reads an Int16LE value from the current read position or an optionally provided offset. + * + * @param offset { Number } The offset to read data from (optional) + * @return { Number } + */ + readInt16LE(offset?: number): number; + /** + * Reads an Int32BE value from the current read position or an optionally provided offset. + * + * @param offset { Number } The offset to read data from (optional) + * @return { Number } + */ + readInt32BE(offset?: number): number; + /** + * Reads an Int32LE value from the current read position or an optionally provided offset. + * + * @param offset { Number } The offset to read data from (optional) + * @return { Number } + */ + readInt32LE(offset?: number): number; + /** + * Reads a BigInt64BE value from the current read position or an optionally provided offset. + * + * @param offset { Number } The offset to read data from (optional) + * @return { BigInt } + */ + readBigInt64BE(offset?: number): bigint; + /** + * Reads a BigInt64LE value from the current read position or an optionally provided offset. + * + * @param offset { Number } The offset to read data from (optional) + * @return { BigInt } + */ + readBigInt64LE(offset?: number): bigint; + /** + * Writes an Int8 value to the current write position (or at optional offset). + * + * @param value { Number } The value to write. + * @param offset { Number } The offset to write the value at. + * + * @return this + */ + writeInt8(value: number, offset?: number): SmartBuffer; + /** + * Inserts an Int8 value at the given offset value. + * + * @param value { Number } The value to insert. + * @param offset { Number } The offset to insert the value at. + * + * @return this + */ + insertInt8(value: number, offset: number): SmartBuffer; + /** + * Writes an Int16BE value to the current write position (or at optional offset). + * + * @param value { Number } The value to write. + * @param offset { Number } The offset to write the value at. + * + * @return this + */ + writeInt16BE(value: number, offset?: number): SmartBuffer; + /** + * Inserts an Int16BE value at the given offset value. + * + * @param value { Number } The value to insert. + * @param offset { Number } The offset to insert the value at. + * + * @return this + */ + insertInt16BE(value: number, offset: number): SmartBuffer; + /** + * Writes an Int16LE value to the current write position (or at optional offset). + * + * @param value { Number } The value to write. + * @param offset { Number } The offset to write the value at. + * + * @return this + */ + writeInt16LE(value: number, offset?: number): SmartBuffer; + /** + * Inserts an Int16LE value at the given offset value. + * + * @param value { Number } The value to insert. + * @param offset { Number } The offset to insert the value at. + * + * @return this + */ + insertInt16LE(value: number, offset: number): SmartBuffer; + /** + * Writes an Int32BE value to the current write position (or at optional offset). + * + * @param value { Number } The value to write. + * @param offset { Number } The offset to write the value at. + * + * @return this + */ + writeInt32BE(value: number, offset?: number): SmartBuffer; + /** + * Inserts an Int32BE value at the given offset value. + * + * @param value { Number } The value to insert. + * @param offset { Number } The offset to insert the value at. + * + * @return this + */ + insertInt32BE(value: number, offset: number): SmartBuffer; + /** + * Writes an Int32LE value to the current write position (or at optional offset). + * + * @param value { Number } The value to write. + * @param offset { Number } The offset to write the value at. + * + * @return this + */ + writeInt32LE(value: number, offset?: number): SmartBuffer; + /** + * Inserts an Int32LE value at the given offset value. + * + * @param value { Number } The value to insert. + * @param offset { Number } The offset to insert the value at. + * + * @return this + */ + insertInt32LE(value: number, offset: number): SmartBuffer; + /** + * Writes a BigInt64BE value to the current write position (or at optional offset). + * + * @param value { BigInt } The value to write. + * @param offset { Number } The offset to write the value at. + * + * @return this + */ + writeBigInt64BE(value: bigint, offset?: number): SmartBuffer; + /** + * Inserts a BigInt64BE value at the given offset value. + * + * @param value { BigInt } The value to insert. + * @param offset { Number } The offset to insert the value at. + * + * @return this + */ + insertBigInt64BE(value: bigint, offset: number): SmartBuffer; + /** + * Writes a BigInt64LE value to the current write position (or at optional offset). + * + * @param value { BigInt } The value to write. + * @param offset { Number } The offset to write the value at. + * + * @return this + */ + writeBigInt64LE(value: bigint, offset?: number): SmartBuffer; + /** + * Inserts a Int64LE value at the given offset value. + * + * @param value { BigInt } The value to insert. + * @param offset { Number } The offset to insert the value at. + * + * @return this + */ + insertBigInt64LE(value: bigint, offset: number): SmartBuffer; + /** + * Reads an UInt8 value from the current read position or an optionally provided offset. + * + * @param offset { Number } The offset to read data from (optional) + * @return { Number } + */ + readUInt8(offset?: number): number; + /** + * Reads an UInt16BE value from the current read position or an optionally provided offset. + * + * @param offset { Number } The offset to read data from (optional) + * @return { Number } + */ + readUInt16BE(offset?: number): number; + /** + * Reads an UInt16LE value from the current read position or an optionally provided offset. + * + * @param offset { Number } The offset to read data from (optional) + * @return { Number } + */ + readUInt16LE(offset?: number): number; + /** + * Reads an UInt32BE value from the current read position or an optionally provided offset. + * + * @param offset { Number } The offset to read data from (optional) + * @return { Number } + */ + readUInt32BE(offset?: number): number; + /** + * Reads an UInt32LE value from the current read position or an optionally provided offset. + * + * @param offset { Number } The offset to read data from (optional) + * @return { Number } + */ + readUInt32LE(offset?: number): number; + /** + * Reads a BigUInt64BE value from the current read position or an optionally provided offset. + * + * @param offset { Number } The offset to read data from (optional) + * @return { BigInt } + */ + readBigUInt64BE(offset?: number): bigint; + /** + * Reads a BigUInt64LE value from the current read position or an optionally provided offset. + * + * @param offset { Number } The offset to read data from (optional) + * @return { BigInt } + */ + readBigUInt64LE(offset?: number): bigint; + /** + * Writes an UInt8 value to the current write position (or at optional offset). + * + * @param value { Number } The value to write. + * @param offset { Number } The offset to write the value at. + * + * @return this + */ + writeUInt8(value: number, offset?: number): SmartBuffer; + /** + * Inserts an UInt8 value at the given offset value. + * + * @param value { Number } The value to insert. + * @param offset { Number } The offset to insert the value at. + * + * @return this + */ + insertUInt8(value: number, offset: number): SmartBuffer; + /** + * Writes an UInt16BE value to the current write position (or at optional offset). + * + * @param value { Number } The value to write. + * @param offset { Number } The offset to write the value at. + * + * @return this + */ + writeUInt16BE(value: number, offset?: number): SmartBuffer; + /** + * Inserts an UInt16BE value at the given offset value. + * + * @param value { Number } The value to insert. + * @param offset { Number } The offset to insert the value at. + * + * @return this + */ + insertUInt16BE(value: number, offset: number): SmartBuffer; + /** + * Writes an UInt16LE value to the current write position (or at optional offset). + * + * @param value { Number } The value to write. + * @param offset { Number } The offset to write the value at. + * + * @return this + */ + writeUInt16LE(value: number, offset?: number): SmartBuffer; + /** + * Inserts an UInt16LE value at the given offset value. + * + * @param value { Number } The value to insert. + * @param offset { Number } The offset to insert the value at. + * + * @return this + */ + insertUInt16LE(value: number, offset: number): SmartBuffer; + /** + * Writes an UInt32BE value to the current write position (or at optional offset). + * + * @param value { Number } The value to write. + * @param offset { Number } The offset to write the value at. + * + * @return this + */ + writeUInt32BE(value: number, offset?: number): SmartBuffer; + /** + * Inserts an UInt32BE value at the given offset value. + * + * @param value { Number } The value to insert. + * @param offset { Number } The offset to insert the value at. + * + * @return this + */ + insertUInt32BE(value: number, offset: number): SmartBuffer; + /** + * Writes an UInt32LE value to the current write position (or at optional offset). + * + * @param value { Number } The value to write. + * @param offset { Number } The offset to write the value at. + * + * @return this + */ + writeUInt32LE(value: number, offset?: number): SmartBuffer; + /** + * Inserts an UInt32LE value at the given offset value. + * + * @param value { Number } The value to insert. + * @param offset { Number } The offset to insert the value at. + * + * @return this + */ + insertUInt32LE(value: number, offset: number): SmartBuffer; + /** + * Writes a BigUInt64BE value to the current write position (or at optional offset). + * + * @param value { Number } The value to write. + * @param offset { Number } The offset to write the value at. + * + * @return this + */ + writeBigUInt64BE(value: bigint, offset?: number): SmartBuffer; + /** + * Inserts a BigUInt64BE value at the given offset value. + * + * @param value { Number } The value to insert. + * @param offset { Number } The offset to insert the value at. + * + * @return this + */ + insertBigUInt64BE(value: bigint, offset: number): SmartBuffer; + /** + * Writes a BigUInt64LE value to the current write position (or at optional offset). + * + * @param value { Number } The value to write. + * @param offset { Number } The offset to write the value at. + * + * @return this + */ + writeBigUInt64LE(value: bigint, offset?: number): SmartBuffer; + /** + * Inserts a BigUInt64LE value at the given offset value. + * + * @param value { Number } The value to insert. + * @param offset { Number } The offset to insert the value at. + * + * @return this + */ + insertBigUInt64LE(value: bigint, offset: number): SmartBuffer; + /** + * Reads an FloatBE value from the current read position or an optionally provided offset. + * + * @param offset { Number } The offset to read data from (optional) + * @return { Number } + */ + readFloatBE(offset?: number): number; + /** + * Reads an FloatLE value from the current read position or an optionally provided offset. + * + * @param offset { Number } The offset to read data from (optional) + * @return { Number } + */ + readFloatLE(offset?: number): number; + /** + * Writes a FloatBE value to the current write position (or at optional offset). + * + * @param value { Number } The value to write. + * @param offset { Number } The offset to write the value at. + * + * @return this + */ + writeFloatBE(value: number, offset?: number): SmartBuffer; + /** + * Inserts a FloatBE value at the given offset value. + * + * @param value { Number } The value to insert. + * @param offset { Number } The offset to insert the value at. + * + * @return this + */ + insertFloatBE(value: number, offset: number): SmartBuffer; + /** + * Writes a FloatLE value to the current write position (or at optional offset). + * + * @param value { Number } The value to write. + * @param offset { Number } The offset to write the value at. + * + * @return this + */ + writeFloatLE(value: number, offset?: number): SmartBuffer; + /** + * Inserts a FloatLE value at the given offset value. + * + * @param value { Number } The value to insert. + * @param offset { Number } The offset to insert the value at. + * + * @return this + */ + insertFloatLE(value: number, offset: number): SmartBuffer; + /** + * Reads an DoublEBE value from the current read position or an optionally provided offset. + * + * @param offset { Number } The offset to read data from (optional) + * @return { Number } + */ + readDoubleBE(offset?: number): number; + /** + * Reads an DoubleLE value from the current read position or an optionally provided offset. + * + * @param offset { Number } The offset to read data from (optional) + * @return { Number } + */ + readDoubleLE(offset?: number): number; + /** + * Writes a DoubleBE value to the current write position (or at optional offset). + * + * @param value { Number } The value to write. + * @param offset { Number } The offset to write the value at. + * + * @return this + */ + writeDoubleBE(value: number, offset?: number): SmartBuffer; + /** + * Inserts a DoubleBE value at the given offset value. + * + * @param value { Number } The value to insert. + * @param offset { Number } The offset to insert the value at. + * + * @return this + */ + insertDoubleBE(value: number, offset: number): SmartBuffer; + /** + * Writes a DoubleLE value to the current write position (or at optional offset). + * + * @param value { Number } The value to write. + * @param offset { Number } The offset to write the value at. + * + * @return this + */ + writeDoubleLE(value: number, offset?: number): SmartBuffer; + /** + * Inserts a DoubleLE value at the given offset value. + * + * @param value { Number } The value to insert. + * @param offset { Number } The offset to insert the value at. + * + * @return this + */ + insertDoubleLE(value: number, offset: number): SmartBuffer; + /** + * Reads a String from the current read position. + * + * @param arg1 { Number | String } The number of bytes to read as a String, or the BufferEncoding to use for + * the string (Defaults to instance level encoding). + * @param encoding { String } The BufferEncoding to use for the string (Defaults to instance level encoding). + * + * @return { String } + */ + readString(arg1?: number | BufferEncoding, encoding?: BufferEncoding): string; + /** + * Inserts a String + * + * @param value { String } The String value to insert. + * @param offset { Number } The offset to insert the string at. + * @param encoding { String } The BufferEncoding to use for writing strings (defaults to instance encoding). + * + * @return this + */ + insertString(value: string, offset: number, encoding?: BufferEncoding): SmartBuffer; + /** + * Writes a String + * + * @param value { String } The String value to write. + * @param arg2 { Number | String } The offset to write the string at, or the BufferEncoding to use. + * @param encoding { String } The BufferEncoding to use for writing strings (defaults to instance encoding). + * + * @return this + */ + writeString(value: string, arg2?: number | BufferEncoding, encoding?: BufferEncoding): SmartBuffer; + /** + * Reads a null-terminated String from the current read position. + * + * @param encoding { String } The BufferEncoding to use for the string (Defaults to instance level encoding). + * + * @return { String } + */ + readStringNT(encoding?: BufferEncoding): string; + /** + * Inserts a null-terminated String. + * + * @param value { String } The String value to write. + * @param arg2 { Number | String } The offset to write the string to, or the BufferEncoding to use. + * @param encoding { String } The BufferEncoding to use for writing strings (defaults to instance encoding). + * + * @return this + */ + insertStringNT(value: string, offset: number, encoding?: BufferEncoding): SmartBuffer; + /** + * Writes a null-terminated String. + * + * @param value { String } The String value to write. + * @param arg2 { Number | String } The offset to write the string to, or the BufferEncoding to use. + * @param encoding { String } The BufferEncoding to use for writing strings (defaults to instance encoding). + * + * @return this + */ + writeStringNT(value: string, arg2?: number | BufferEncoding, encoding?: BufferEncoding): SmartBuffer; + /** + * Reads a Buffer from the internal read position. + * + * @param length { Number } The length of data to read as a Buffer. + * + * @return { Buffer } + */ + readBuffer(length?: number): Buffer; + /** + * Writes a Buffer to the current write position. + * + * @param value { Buffer } The Buffer to write. + * @param offset { Number } The offset to write the Buffer to. + * + * @return this + */ + insertBuffer(value: Buffer, offset: number): SmartBuffer; + /** + * Writes a Buffer to the current write position. + * + * @param value { Buffer } The Buffer to write. + * @param offset { Number } The offset to write the Buffer to. + * + * @return this + */ + writeBuffer(value: Buffer, offset?: number): SmartBuffer; + /** + * Reads a null-terminated Buffer from the current read poisiton. + * + * @return { Buffer } + */ + readBufferNT(): Buffer; + /** + * Inserts a null-terminated Buffer. + * + * @param value { Buffer } The Buffer to write. + * @param offset { Number } The offset to write the Buffer to. + * + * @return this + */ + insertBufferNT(value: Buffer, offset: number): SmartBuffer; + /** + * Writes a null-terminated Buffer. + * + * @param value { Buffer } The Buffer to write. + * @param offset { Number } The offset to write the Buffer to. + * + * @return this + */ + writeBufferNT(value: Buffer, offset?: number): SmartBuffer; + /** + * Clears the SmartBuffer instance to its original empty state. + */ + clear(): SmartBuffer; + /** + * Gets the remaining data left to be read from the SmartBuffer instance. + * + * @return { Number } + */ + remaining(): number; + /** + * Gets the current read offset value of the SmartBuffer instance. + * + * @return { Number } + */ + /** + * Sets the read offset value of the SmartBuffer instance. + * + * @param offset { Number } - The offset value to set. + */ + readOffset: number; + /** + * Gets the current write offset value of the SmartBuffer instance. + * + * @return { Number } + */ + /** + * Sets the write offset value of the SmartBuffer instance. + * + * @param offset { Number } - The offset value to set. + */ + writeOffset: number; + /** + * Gets the currently set string encoding of the SmartBuffer instance. + * + * @return { BufferEncoding } The string Buffer encoding currently set. + */ + /** + * Sets the string encoding of the SmartBuffer instance. + * + * @param encoding { BufferEncoding } The string Buffer encoding to set. + */ + encoding: BufferEncoding; + /** + * Gets the underlying internal Buffer. (This includes unmanaged data in the Buffer) + * + * @return { Buffer } The Buffer value. + */ + readonly internalBuffer: Buffer; + /** + * Gets the value of the internal managed Buffer (Includes managed data only) + * + * @param { Buffer } + */ + toBuffer(): Buffer; + /** + * Gets the String value of the internal managed Buffer + * + * @param encoding { String } The BufferEncoding to display the Buffer as (defaults to instance level encoding). + */ + toString(encoding?: BufferEncoding): string; + /** + * Destroys the SmartBuffer instance. + */ + destroy(): SmartBuffer; + /** + * Handles inserting and writing strings. + * + * @param value { String } The String value to insert. + * @param isInsert { Boolean } True if inserting a string, false if writing. + * @param arg2 { Number | String } The offset to insert the string at, or the BufferEncoding to use. + * @param encoding { String } The BufferEncoding to use for writing strings (defaults to instance encoding). + */ + private _handleString; + /** + * Handles writing or insert of a Buffer. + * + * @param value { Buffer } The Buffer to write. + * @param offset { Number } The offset to write the Buffer to. + */ + private _handleBuffer; + /** + * Ensures that the internal Buffer is large enough to read data. + * + * @param length { Number } The length of the data that needs to be read. + * @param offset { Number } The offset of the data that needs to be read. + */ + private ensureReadable; + /** + * Ensures that the internal Buffer is large enough to insert data. + * + * @param dataLength { Number } The length of the data that needs to be written. + * @param offset { Number } The offset of the data to be written. + */ + private ensureInsertable; + /** + * Ensures that the internal Buffer is large enough to write data. + * + * @param dataLength { Number } The length of the data that needs to be written. + * @param offset { Number } The offset of the data to be written (defaults to writeOffset). + */ + private _ensureWriteable; + /** + * Ensures that the internal Buffer is large enough to write at least the given amount of data. + * + * @param minLength { Number } The minimum length of the data needs to be written. + */ + private _ensureCapacity; + /** + * Reads a numeric number value using the provided function. + * + * @typeparam T { number | bigint } The type of the value to be read + * + * @param func { Function(offset: number) => number } The function to read data on the internal Buffer with. + * @param byteSize { Number } The number of bytes read. + * @param offset { Number } The offset to read from (optional). When this is not provided, the managed readOffset is used instead. + * + * @returns { T } the number value + */ + private _readNumberValue; + /** + * Inserts a numeric number value based on the given offset and value. + * + * @typeparam T { number | bigint } The type of the value to be written + * + * @param func { Function(offset: T, offset?) => number} The function to write data on the internal Buffer with. + * @param byteSize { Number } The number of bytes written. + * @param value { T } The number value to write. + * @param offset { Number } the offset to write the number at (REQUIRED). + * + * @returns SmartBuffer this buffer + */ + private _insertNumberValue; + /** + * Writes a numeric number value based on the given offset and value. + * + * @typeparam T { number | bigint } The type of the value to be written + * + * @param func { Function(offset: T, offset?) => number} The function to write data on the internal Buffer with. + * @param byteSize { Number } The number of bytes written. + * @param value { T } The number value to write. + * @param offset { Number } the offset to write the number at (REQUIRED). + * + * @returns SmartBuffer this buffer + */ + private _writeNumberValue; +} +export { SmartBufferOptions, SmartBuffer }; diff --git a/node_modules/smart-buffer/typings/utils.d.ts b/node_modules/smart-buffer/typings/utils.d.ts new file mode 100644 index 000000000..b32b4d44c --- /dev/null +++ b/node_modules/smart-buffer/typings/utils.d.ts @@ -0,0 +1,66 @@ +/// +import { SmartBuffer } from './smartbuffer'; +import { Buffer } from 'buffer'; +/** + * Error strings + */ +declare const ERRORS: { + INVALID_ENCODING: string; + INVALID_SMARTBUFFER_SIZE: string; + INVALID_SMARTBUFFER_BUFFER: string; + INVALID_SMARTBUFFER_OBJECT: string; + INVALID_OFFSET: string; + INVALID_OFFSET_NON_NUMBER: string; + INVALID_LENGTH: string; + INVALID_LENGTH_NON_NUMBER: string; + INVALID_TARGET_OFFSET: string; + INVALID_TARGET_LENGTH: string; + INVALID_READ_BEYOND_BOUNDS: string; + INVALID_WRITE_BEYOND_BOUNDS: string; +}; +/** + * Checks if a given encoding is a valid Buffer encoding. (Throws an exception if check fails) + * + * @param { String } encoding The encoding string to check. + */ +declare function checkEncoding(encoding: BufferEncoding): void; +/** + * Checks if a given number is a finite integer. (Throws an exception if check fails) + * + * @param { Number } value The number value to check. + */ +declare function isFiniteInteger(value: number): boolean; +/** + * Checks if a length value is valid. (Throws an exception if check fails) + * + * @param { Number } length The value to check. + */ +declare function checkLengthValue(length: any): void; +/** + * Checks if a offset value is valid. (Throws an exception if check fails) + * + * @param { Number } offset The value to check. + */ +declare function checkOffsetValue(offset: any): void; +/** + * Checks if a target offset value is out of bounds. (Throws an exception if check fails) + * + * @param { Number } offset The offset value to check. + * @param { SmartBuffer } buff The SmartBuffer instance to check against. + */ +declare function checkTargetOffset(offset: number, buff: SmartBuffer): void; +interface Buffer { + readBigInt64BE(offset?: number): bigint; + readBigInt64LE(offset?: number): bigint; + readBigUInt64BE(offset?: number): bigint; + readBigUInt64LE(offset?: number): bigint; + writeBigInt64BE(value: bigint, offset?: number): number; + writeBigInt64LE(value: bigint, offset?: number): number; + writeBigUInt64BE(value: bigint, offset?: number): number; + writeBigUInt64LE(value: bigint, offset?: number): number; +} +/** + * Throws if Node.js version is too low to support bigint + */ +declare function bigIntAndBufferInt64Check(bufferMethod: keyof Buffer): void; +export { ERRORS, isFiniteInteger, checkEncoding, checkOffsetValue, checkLengthValue, checkTargetOffset, bigIntAndBufferInt64Check }; diff --git a/node_modules/socks/.eslintrc.cjs b/node_modules/socks/.eslintrc.cjs new file mode 100644 index 000000000..cc5d089e6 --- /dev/null +++ b/node_modules/socks/.eslintrc.cjs @@ -0,0 +1,11 @@ +module.exports = { + root: true, + parser: '@typescript-eslint/parser', + plugins: [ + '@typescript-eslint', + ], + extends: [ + 'eslint:recommended', + 'plugin:@typescript-eslint/recommended', + ], +}; \ No newline at end of file diff --git a/node_modules/socks/.prettierrc.yaml b/node_modules/socks/.prettierrc.yaml new file mode 100644 index 000000000..d7b733504 --- /dev/null +++ b/node_modules/socks/.prettierrc.yaml @@ -0,0 +1,7 @@ +parser: typescript +printWidth: 80 +tabWidth: 2 +singleQuote: true +trailingComma: all +arrowParens: always +bracketSpacing: false \ No newline at end of file diff --git a/node_modules/socks/LICENSE b/node_modules/socks/LICENSE new file mode 100644 index 000000000..b2442a9e7 --- /dev/null +++ b/node_modules/socks/LICENSE @@ -0,0 +1,20 @@ +The MIT License (MIT) + +Copyright (c) 2013 Josh Glazebrook + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/node_modules/socks/README.md b/node_modules/socks/README.md new file mode 100644 index 000000000..b796220c6 --- /dev/null +++ b/node_modules/socks/README.md @@ -0,0 +1,686 @@ +# socks [![Build Status](https://travis-ci.org/JoshGlazebrook/socks.svg?branch=master)](https://travis-ci.org/JoshGlazebrook/socks) [![Coverage Status](https://coveralls.io/repos/github/JoshGlazebrook/socks/badge.svg?branch=master)](https://coveralls.io/github/JoshGlazebrook/socks?branch=v2) + +Fully featured SOCKS proxy client supporting SOCKSv4, SOCKSv4a, and SOCKSv5. Includes Bind and Associate functionality. + +> Looking for Node.js agent? Check [node-socks-proxy-agent](https://github.com/TooTallNate/node-socks-proxy-agent). + +### Features + +* Supports SOCKS v4, v4a, v5, and v5h protocols. +* Supports the CONNECT, BIND, and ASSOCIATE commands. +* Supports callbacks, promises, and events for proxy connection creation async flow control. +* Supports proxy chaining (CONNECT only). +* Supports user/password authentication. +* Supports custom authentication. +* Built in UDP frame creation & parse functions. +* Created with TypeScript, type definitions are provided. + +### Requirements + +* Node.js v10.0+ (Please use [v1](https://github.com/JoshGlazebrook/socks/tree/82d83923ad960693d8b774cafe17443ded7ed584) for older versions of Node.js) + +### Looking for v1? +* Docs for v1 are available [here](https://github.com/JoshGlazebrook/socks/tree/82d83923ad960693d8b774cafe17443ded7ed584) + +## Installation + +`yarn add socks` + +or + +`npm install --save socks` + +## Usage + +```typescript +// TypeScript +import { SocksClient, SocksClientOptions, SocksClientChainOptions } from 'socks'; + +// ES6 JavaScript +import { SocksClient } from 'socks'; + +// Legacy JavaScript +const SocksClient = require('socks').SocksClient; +``` + +## Quick Start Example + +Connect to github.com (192.30.253.113) on port 80, using a SOCKS proxy. + +```javascript +const options = { + proxy: { + host: '159.203.75.200', // ipv4 or ipv6 or hostname + port: 1080, + type: 5 // Proxy version (4 or 5) + }, + + command: 'connect', // SOCKS command (createConnection factory function only supports the connect command) + + destination: { + host: '192.30.253.113', // github.com (hostname lookups are supported with SOCKS v4a and 5) + port: 80 + } +}; + +// Async/Await +try { + const info = await SocksClient.createConnection(options); + + console.log(info.socket); + // (this is a raw net.Socket that is established to the destination host through the given proxy server) +} catch (err) { + // Handle errors +} + +// Promises +SocksClient.createConnection(options) +.then(info => { + console.log(info.socket); + // (this is a raw net.Socket that is established to the destination host through the given proxy server) +}) +.catch(err => { + // Handle errors +}); + +// Callbacks +SocksClient.createConnection(options, (err, info) => { + if (!err) { + console.log(info.socket); + // (this is a raw net.Socket that is established to the destination host through the given proxy server) + } else { + // Handle errors + } +}); +``` + +## Chaining Proxies + +**Note:** Chaining is only supported when using the SOCKS connect command, and chaining can only be done through the special factory chaining function. + +This example makes a proxy chain through two SOCKS proxies to ip-api.com. Once the connection to the destination is established it sends an HTTP request to get a JSON response that returns ip info for the requesting ip. + +```javascript +const options = { + destination: { + host: 'ip-api.com', // host names are supported with SOCKS v4a and SOCKS v5. + port: 80 + }, + command: 'connect', // Only the connect command is supported when chaining proxies. + proxies: [ // The chain order is the order in the proxies array, meaning the last proxy will establish a connection to the destination. + { + host: '159.203.75.235', // ipv4, ipv6, or hostname + port: 1081, + type: 5 + }, + { + host: '104.131.124.203', // ipv4, ipv6, or hostname + port: 1081, + type: 5 + } + ] +} + +// Async/Await +try { + const info = await SocksClient.createConnectionChain(options); + + console.log(info.socket); + // (this is a raw net.Socket that is established to the destination host through the given proxy servers) + + console.log(info.socket.remoteAddress) // The remote address of the returned socket is the first proxy in the chain. + // 159.203.75.235 + + info.socket.write('GET /json HTTP/1.1\nHost: ip-api.com\n\n'); + info.socket.on('data', (data) => { + console.log(data.toString()); // ip-api.com sees that the last proxy in the chain (104.131.124.203) is connected to it. + /* + HTTP/1.1 200 OK + Access-Control-Allow-Origin: * + Content-Type: application/json; charset=utf-8 + Date: Sun, 24 Dec 2017 03:47:51 GMT + Content-Length: 300 + + { + "as":"AS14061 Digital Ocean, Inc.", + "city":"Clifton", + "country":"United States", + "countryCode":"US", + "isp":"Digital Ocean", + "lat":40.8326, + "lon":-74.1307, + "org":"Digital Ocean", + "query":"104.131.124.203", + "region":"NJ", + "regionName":"New Jersey", + "status":"success", + "timezone":"America/New_York", + "zip":"07014" + } + */ + }); +} catch (err) { + // Handle errors +} + +// Promises +SocksClient.createConnectionChain(options) +.then(info => { + console.log(info.socket); + // (this is a raw net.Socket that is established to the destination host through the given proxy server) + + console.log(info.socket.remoteAddress) // The remote address of the returned socket is the first proxy in the chain. + // 159.203.75.235 + + info.socket.write('GET /json HTTP/1.1\nHost: ip-api.com\n\n'); + info.socket.on('data', (data) => { + console.log(data.toString()); // ip-api.com sees that the last proxy in the chain (104.131.124.203) is connected to it. + /* + HTTP/1.1 200 OK + Access-Control-Allow-Origin: * + Content-Type: application/json; charset=utf-8 + Date: Sun, 24 Dec 2017 03:47:51 GMT + Content-Length: 300 + + { + "as":"AS14061 Digital Ocean, Inc.", + "city":"Clifton", + "country":"United States", + "countryCode":"US", + "isp":"Digital Ocean", + "lat":40.8326, + "lon":-74.1307, + "org":"Digital Ocean", + "query":"104.131.124.203", + "region":"NJ", + "regionName":"New Jersey", + "status":"success", + "timezone":"America/New_York", + "zip":"07014" + } + */ + }); +}) +.catch(err => { + // Handle errors +}); + +// Callbacks +SocksClient.createConnectionChain(options, (err, info) => { + if (!err) { + console.log(info.socket); + // (this is a raw net.Socket that is established to the destination host through the given proxy server) + + console.log(info.socket.remoteAddress) // The remote address of the returned socket is the first proxy in the chain. + // 159.203.75.235 + + info.socket.write('GET /json HTTP/1.1\nHost: ip-api.com\n\n'); + info.socket.on('data', (data) => { + console.log(data.toString()); // ip-api.com sees that the last proxy in the chain (104.131.124.203) is connected to it. + /* + HTTP/1.1 200 OK + Access-Control-Allow-Origin: * + Content-Type: application/json; charset=utf-8 + Date: Sun, 24 Dec 2017 03:47:51 GMT + Content-Length: 300 + + { + "as":"AS14061 Digital Ocean, Inc.", + "city":"Clifton", + "country":"United States", + "countryCode":"US", + "isp":"Digital Ocean", + "lat":40.8326, + "lon":-74.1307, + "org":"Digital Ocean", + "query":"104.131.124.203", + "region":"NJ", + "regionName":"New Jersey", + "status":"success", + "timezone":"America/New_York", + "zip":"07014" + } + */ + }); + } else { + // Handle errors + } +}); +``` + +## Bind Example (TCP Relay) + +When the bind command is sent to a SOCKS v4/v5 proxy server, the proxy server starts listening on a new TCP port and the proxy relays then remote host information back to the client. When another remote client connects to the proxy server on this port the SOCKS proxy sends a notification that an incoming connection has been accepted to the initial client and a full duplex stream is now established to the initial client and the client that connected to that special port. + +```javascript +const options = { + proxy: { + host: '159.203.75.235', // ipv4, ipv6, or hostname + port: 1081, + type: 5 + }, + + command: 'bind', + + // When using BIND, the destination should be the remote client that is expected to connect to the SOCKS proxy. Using 0.0.0.0 makes the Proxy accept any incoming connection on that port. + destination: { + host: '0.0.0.0', + port: 0 + } +}; + +// Creates a new SocksClient instance. +const client = new SocksClient(options); + +// When the SOCKS proxy has bound a new port and started listening, this event is fired. +client.on('bound', info => { + console.log(info.remoteHost); + /* + { + host: "159.203.75.235", + port: 57362 + } + */ +}); + +// When a client connects to the newly bound port on the SOCKS proxy, this event is fired. +client.on('established', info => { + // info.remoteHost is the remote address of the client that connected to the SOCKS proxy. + console.log(info.remoteHost); + /* + host: 67.171.34.23, + port: 49823 + */ + + console.log(info.socket); + // (This is a raw net.Socket that is a connection between the initial client and the remote client that connected to the proxy) + + // Handle received data... + info.socket.on('data', data => { + console.log('recv', data); + }); +}); + +// An error occurred trying to establish this SOCKS connection. +client.on('error', err => { + console.error(err); +}); + +// Start connection to proxy +client.connect(); +``` + +## Associate Example (UDP Relay) + +When the associate command is sent to a SOCKS v5 proxy server, it sets up a UDP relay that allows the client to send UDP packets to a remote host through the proxy server, and also receive UDP packet responses back through the proxy server. + +```javascript +const options = { + proxy: { + host: '159.203.75.235', // ipv4, ipv6, or hostname + port: 1081, + type: 5 + }, + + command: 'associate', + + // When using associate, the destination should be the remote client that is expected to send UDP packets to the proxy server to be forwarded. This should be your local ip, or optionally the wildcard address (0.0.0.0) UDP Client <-> Proxy <-> UDP Client + destination: { + host: '0.0.0.0', + port: 0 + } +}; + +// Create a local UDP socket for sending packets to the proxy. +const udpSocket = dgram.createSocket('udp4'); +udpSocket.bind(); + +// Listen for incoming UDP packets from the proxy server. +udpSocket.on('message', (message, rinfo) => { + console.log(SocksClient.parseUDPFrame(message)); + /* + { frameNumber: 0, + remoteHost: { host: '165.227.108.231', port: 4444 }, // The remote host that replied with a UDP packet + data: // The data + } + */ +}); + +let client = new SocksClient(associateOptions); + +// When the UDP relay is established, this event is fired and includes the UDP relay port to send data to on the proxy server. +client.on('established', info => { + console.log(info.remoteHost); + /* + { + host: '159.203.75.235', + port: 44711 + } + */ + + // Send 'hello' to 165.227.108.231:4444 + const packet = SocksClient.createUDPFrame({ + remoteHost: { host: '165.227.108.231', port: 4444 }, + data: Buffer.from(line) + }); + udpSocket.send(packet, info.remoteHost.port, info.remoteHost.host); +}); + +// Start connection +client.connect(); +``` + +**Note:** The associate TCP connection to the proxy must remain open for the UDP relay to work. + +## Additional Examples + +[Documentation](docs/index.md) + + +## Migrating from v1 + +Looking for a guide to migrate from v1? Look [here](docs/migratingFromV1.md) + +## Api Reference: + +**Note:** socks includes full TypeScript definitions. These can even be used without using TypeScript as most IDEs (such as VS Code) will use these type definition files for auto completion intellisense even in JavaScript files. + +* Class: SocksClient + * [new SocksClient(options[, callback])](#new-socksclientoptions) + * [Class Method: SocksClient.createConnection(options[, callback])](#class-method-socksclientcreateconnectionoptions-callback) + * [Class Method: SocksClient.createConnectionChain(options[, callback])](#class-method-socksclientcreateconnectionchainoptions-callback) + * [Class Method: SocksClient.createUDPFrame(options)](#class-method-socksclientcreateudpframedetails) + * [Class Method: SocksClient.parseUDPFrame(data)](#class-method-socksclientparseudpframedata) + * [Event: 'error'](#event-error) + * [Event: 'bound'](#event-bound) + * [Event: 'established'](#event-established) + * [client.connect()](#clientconnect) + * [client.socksClientOptions](#clientconnect) + +### SocksClient + +SocksClient establishes SOCKS proxy connections to remote destination hosts. These proxy connections are fully transparent to the server and once established act as full duplex streams. SOCKS v4, v4a, v5, and v5h are supported, as well as the connect, bind, and associate commands. + +SocksClient supports creating connections using callbacks, promises, and async/await flow control using two static factory functions createConnection and createConnectionChain. It also internally extends EventEmitter which results in allowing event handling based async flow control. + +**SOCKS Compatibility Table** + +Note: When using 4a please specify type: 4, and when using 5h please specify type 5. + +| Socks Version | TCP | UDP | IPv4 | IPv6 | Hostname | +| --- | :---: | :---: | :---: | :---: | :---: | +| SOCKS v4 | ✅ | ❌ | ✅ | ❌ | ❌ | +| SOCKS v4a | ✅ | ❌ | ✅ | ❌ | ✅ | +| SOCKS v5 (includes v5h) | ✅ | ✅ | ✅ | ✅ | ✅ | + +### new SocksClient(options) + +* ```options``` {SocksClientOptions} - An object describing the SOCKS proxy to use, the command to send and establish, and the destination host to connect to. + +### SocksClientOptions + +```typescript +{ + proxy: { + host: '159.203.75.200', // ipv4, ipv6, or hostname + port: 1080, + type: 5, // Proxy version (4 or 5). For v4a use 4, for v5h use 5. + + // Optional fields + userId: 'some username', // Used for SOCKS4 userId auth, and SOCKS5 user/pass auth in conjunction with password. + password: 'some password', // Used in conjunction with userId for user/pass auth for SOCKS5 proxies. + custom_auth_method: 0x80, // If using a custom auth method, specify the type here. If this is set, ALL other custom_auth_*** options must be set as well. + custom_auth_request_handler: async () =>. { + // This will be called when it's time to send the custom auth handshake. You must return a Buffer containing the data to send as your authentication. + return Buffer.from([0x01,0x02,0x03]); + }, + // This is the expected size (bytes) of the custom auth response from the proxy server. + custom_auth_response_size: 2, + // This is called when the auth response is received. The received packet is passed in as a Buffer, and you must return a boolean indicating the response from the server said your custom auth was successful or failed. + custom_auth_response_handler: async (data) => { + return data[1] === 0x00; + } + }, + + command: 'connect', // connect, bind, associate + + destination: { + host: '192.30.253.113', // ipv4, ipv6, hostname. Hostnames work with v4a and v5. + port: 80 + }, + + // Optional fields + timeout: 30000, // How long to wait to establish a proxy connection. (defaults to 30 seconds) + + set_tcp_nodelay: true // If true, will turn on the underlying sockets TCP_NODELAY option. +} +``` + +### Class Method: SocksClient.createConnection(options[, callback]) +* ```options``` { SocksClientOptions } - An object describing the SOCKS proxy to use, the command to send and establish, and the destination host to connect to. +* ```callback``` { Function } - Optional callback function that is called when the proxy connection is established, or an error occurs. +* ```returns``` { Promise } - A Promise is returned that is resolved when the proxy connection is established, or rejected when an error occurs. + +Creates a new proxy connection through the given proxy to the given destination host. This factory function supports callbacks and promises for async flow control. + +**Note:** If a callback function is provided, the promise will always resolve regardless of an error occurring. Please be sure to exclusively use either promises or callbacks when using this factory function. + +```typescript +const options = { + proxy: { + host: '159.203.75.200', // ipv4, ipv6, or hostname + port: 1080, + type: 5 // Proxy version (4 or 5) + }, + + command: 'connect', // connect, bind, associate + + destination: { + host: '192.30.253.113', // ipv4, ipv6, or hostname + port: 80 + } +} + +// Await/Async (uses a Promise) +try { + const info = await SocksClient.createConnection(options); + console.log(info); + /* + { + socket: , // Raw net.Socket + } + */ + / (this is a raw net.Socket that is established to the destination host through the given proxy server) + +} catch (err) { + // Handle error... +} + +// Promise +SocksClient.createConnection(options) +.then(info => { + console.log(info); + /* + { + socket: , // Raw net.Socket + } + */ +}) +.catch(err => { + // Handle error... +}); + +// Callback +SocksClient.createConnection(options, (err, info) => { + if (!err) { + console.log(info); + /* + { + socket: , // Raw net.Socket + } + */ + } else { + // Handle error... + } +}); +``` + +### Class Method: SocksClient.createConnectionChain(options[, callback]) +* ```options``` { SocksClientChainOptions } - An object describing a list of SOCKS proxies to use, the command to send and establish, and the destination host to connect to. +* ```callback``` { Function } - Optional callback function that is called when the proxy connection chain is established, or an error occurs. +* ```returns``` { Promise } - A Promise is returned that is resolved when the proxy connection chain is established, or rejected when an error occurs. + +Creates a new proxy connection chain through a list of at least two SOCKS proxies to the given destination host. This factory method supports callbacks and promises for async flow control. + +**Note:** If a callback function is provided, the promise will always resolve regardless of an error occurring. Please be sure to exclusively use either promises or callbacks when using this factory function. + +**Note:** At least two proxies must be provided for the chain to be established. + +```typescript +const options = { + proxies: [ // The chain order is the order in the proxies array, meaning the last proxy will establish a connection to the destination. + { + host: '159.203.75.235', // ipv4, ipv6, or hostname + port: 1081, + type: 5 + }, + { + host: '104.131.124.203', // ipv4, ipv6, or hostname + port: 1081, + type: 5 + } + ] + + command: 'connect', // Only connect is supported in chaining mode. + + destination: { + host: '192.30.253.113', // ipv4, ipv6, hostname + port: 80 + } +} +``` + +### Class Method: SocksClient.createUDPFrame(details) +* ```details``` { SocksUDPFrameDetails } - An object containing the remote host, frame number, and frame data to use when creating a SOCKS UDP frame packet. +* ```returns``` { Buffer } - A Buffer containing all of the UDP frame data. + +Creates a SOCKS UDP frame relay packet that is sent and received via a SOCKS proxy when using the associate command for UDP packet forwarding. + +**SocksUDPFrameDetails** + +```typescript +{ + frameNumber: 0, // The frame number (used for breaking up larger packets) + + remoteHost: { // The remote host to have the proxy send data to, or the remote host that send this data. + host: '1.2.3.4', + port: 1234 + }, + + data: // A Buffer instance of data to include in the packet (actual data sent to the remote host) +} +interface SocksUDPFrameDetails { + // The frame number of the packet. + frameNumber?: number; + + // The remote host. + remoteHost: SocksRemoteHost; + + // The packet data. + data: Buffer; +} +``` + +### Class Method: SocksClient.parseUDPFrame(data) +* ```data``` { Buffer } - A Buffer instance containing SOCKS UDP frame data to parse. +* ```returns``` { SocksUDPFrameDetails } - An object containing the remote host, frame number, and frame data of the SOCKS UDP frame. + +```typescript +const frame = SocksClient.parseUDPFrame(data); +console.log(frame); +/* +{ + frameNumber: 0, + remoteHost: { + host: '1.2.3.4', + port: 1234 + }, + data: +} +*/ +``` + +Parses a Buffer instance and returns the parsed SocksUDPFrameDetails object. + +## Event: 'error' +* ```err``` { SocksClientError } - An Error object containing an error message and the original SocksClientOptions. + +This event is emitted if an error occurs when trying to establish the proxy connection. + +## Event: 'bound' +* ```info``` { SocksClientBoundEvent } An object containing a Socket and SocksRemoteHost info. + +This event is emitted when using the BIND command on a remote SOCKS proxy server. This event indicates the proxy server is now listening for incoming connections on a specified port. + +**SocksClientBoundEvent** +```typescript +{ + socket: net.Socket, // The underlying raw Socket + remoteHost: { + host: '1.2.3.4', // The remote host that is listening (usually the proxy itself) + port: 4444 // The remote port the proxy is listening on for incoming connections (when using BIND). + } +} +``` + +## Event: 'established' +* ```info``` { SocksClientEstablishedEvent } An object containing a Socket and SocksRemoteHost info. + +This event is emitted when the following conditions are met: +1. When using the CONNECT command, and a proxy connection has been established to the remote host. +2. When using the BIND command, and an incoming connection has been accepted by the proxy and a TCP relay has been established. +3. When using the ASSOCIATE command, and a UDP relay has been established. + +When using BIND, 'bound' is first emitted to indicate the SOCKS server is waiting for an incoming connection, and provides the remote port the SOCKS server is listening on. + +When using ASSOCIATE, 'established' is emitted with the remote UDP port the SOCKS server is accepting UDP frame packets on. + +**SocksClientEstablishedEvent** +```typescript +{ + socket: net.Socket, // The underlying raw Socket + remoteHost: { + host: '1.2.3.4', // The remote host that is listening (usually the proxy itself) + port: 52738 // The remote port the proxy is listening on for incoming connections (when using BIND). + } +} +``` + +## client.connect() + +Starts connecting to the remote SOCKS proxy server to establish a proxy connection to the destination host. + +## client.socksClientOptions +* ```returns``` { SocksClientOptions } The options that were passed to the SocksClient. + +Gets the options that were passed to the SocksClient when it was created. + + +**SocksClientError** +```typescript +{ // Subclassed from Error. + message: 'An error has occurred', + options: { + // SocksClientOptions + } +} +``` + +# Further Reading: + +Please read the SOCKS 5 specifications for more information on how to use BIND and Associate. +http://www.ietf.org/rfc/rfc1928.txt + +# License + +This work is licensed under the [MIT license](http://en.wikipedia.org/wiki/MIT_License). diff --git a/node_modules/socks/build/client/socksclient.js b/node_modules/socks/build/client/socksclient.js new file mode 100644 index 000000000..c3439169e --- /dev/null +++ b/node_modules/socks/build/client/socksclient.js @@ -0,0 +1,793 @@ +"use strict"; +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); +}; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SocksClientError = exports.SocksClient = void 0; +const events_1 = require("events"); +const net = require("net"); +const ip = require("ip"); +const smart_buffer_1 = require("smart-buffer"); +const constants_1 = require("../common/constants"); +const helpers_1 = require("../common/helpers"); +const receivebuffer_1 = require("../common/receivebuffer"); +const util_1 = require("../common/util"); +Object.defineProperty(exports, "SocksClientError", { enumerable: true, get: function () { return util_1.SocksClientError; } }); +class SocksClient extends events_1.EventEmitter { + constructor(options) { + super(); + this.options = Object.assign({}, options); + // Validate SocksClientOptions + (0, helpers_1.validateSocksClientOptions)(options); + // Default state + this.setState(constants_1.SocksClientState.Created); + } + /** + * Creates a new SOCKS connection. + * + * Note: Supports callbacks and promises. Only supports the connect command. + * @param options { SocksClientOptions } Options. + * @param callback { Function } An optional callback function. + * @returns { Promise } + */ + static createConnection(options, callback) { + return new Promise((resolve, reject) => { + // Validate SocksClientOptions + try { + (0, helpers_1.validateSocksClientOptions)(options, ['connect']); + } + catch (err) { + if (typeof callback === 'function') { + callback(err); + // eslint-disable-next-line @typescript-eslint/no-explicit-any + return resolve(err); // Resolves pending promise (prevents memory leaks). + } + else { + return reject(err); + } + } + const client = new SocksClient(options); + client.connect(options.existing_socket); + client.once('established', (info) => { + client.removeAllListeners(); + if (typeof callback === 'function') { + callback(null, info); + resolve(info); // Resolves pending promise (prevents memory leaks). + } + else { + resolve(info); + } + }); + // Error occurred, failed to establish connection. + client.once('error', (err) => { + client.removeAllListeners(); + if (typeof callback === 'function') { + callback(err); + // eslint-disable-next-line @typescript-eslint/no-explicit-any + resolve(err); // Resolves pending promise (prevents memory leaks). + } + else { + reject(err); + } + }); + }); + } + /** + * Creates a new SOCKS connection chain to a destination host through 2 or more SOCKS proxies. + * + * Note: Supports callbacks and promises. Only supports the connect method. + * Note: Implemented via createConnection() factory function. + * @param options { SocksClientChainOptions } Options + * @param callback { Function } An optional callback function. + * @returns { Promise } + */ + static createConnectionChain(options, callback) { + // eslint-disable-next-line no-async-promise-executor + return new Promise((resolve, reject) => __awaiter(this, void 0, void 0, function* () { + // Validate SocksClientChainOptions + try { + (0, helpers_1.validateSocksClientChainOptions)(options); + } + catch (err) { + if (typeof callback === 'function') { + callback(err); + // eslint-disable-next-line @typescript-eslint/no-explicit-any + return resolve(err); // Resolves pending promise (prevents memory leaks). + } + else { + return reject(err); + } + } + // Shuffle proxies + if (options.randomizeChain) { + (0, util_1.shuffleArray)(options.proxies); + } + try { + let sock; + for (let i = 0; i < options.proxies.length; i++) { + const nextProxy = options.proxies[i]; + // If we've reached the last proxy in the chain, the destination is the actual destination, otherwise it's the next proxy. + const nextDestination = i === options.proxies.length - 1 + ? options.destination + : { + host: options.proxies[i + 1].host || + options.proxies[i + 1].ipaddress, + port: options.proxies[i + 1].port, + }; + // Creates the next connection in the chain. + const result = yield SocksClient.createConnection({ + command: 'connect', + proxy: nextProxy, + destination: nextDestination, + existing_socket: sock, + }); + // If sock is undefined, assign it here. + sock = sock || result.socket; + } + if (typeof callback === 'function') { + callback(null, { socket: sock }); + resolve({ socket: sock }); // Resolves pending promise (prevents memory leaks). + } + else { + resolve({ socket: sock }); + } + } + catch (err) { + if (typeof callback === 'function') { + callback(err); + // eslint-disable-next-line @typescript-eslint/no-explicit-any + resolve(err); // Resolves pending promise (prevents memory leaks). + } + else { + reject(err); + } + } + })); + } + /** + * Creates a SOCKS UDP Frame. + * @param options + */ + static createUDPFrame(options) { + const buff = new smart_buffer_1.SmartBuffer(); + buff.writeUInt16BE(0); + buff.writeUInt8(options.frameNumber || 0); + // IPv4/IPv6/Hostname + if (net.isIPv4(options.remoteHost.host)) { + buff.writeUInt8(constants_1.Socks5HostType.IPv4); + buff.writeUInt32BE(ip.toLong(options.remoteHost.host)); + } + else if (net.isIPv6(options.remoteHost.host)) { + buff.writeUInt8(constants_1.Socks5HostType.IPv6); + buff.writeBuffer(ip.toBuffer(options.remoteHost.host)); + } + else { + buff.writeUInt8(constants_1.Socks5HostType.Hostname); + buff.writeUInt8(Buffer.byteLength(options.remoteHost.host)); + buff.writeString(options.remoteHost.host); + } + // Port + buff.writeUInt16BE(options.remoteHost.port); + // Data + buff.writeBuffer(options.data); + return buff.toBuffer(); + } + /** + * Parses a SOCKS UDP frame. + * @param data + */ + static parseUDPFrame(data) { + const buff = smart_buffer_1.SmartBuffer.fromBuffer(data); + buff.readOffset = 2; + const frameNumber = buff.readUInt8(); + const hostType = buff.readUInt8(); + let remoteHost; + if (hostType === constants_1.Socks5HostType.IPv4) { + remoteHost = ip.fromLong(buff.readUInt32BE()); + } + else if (hostType === constants_1.Socks5HostType.IPv6) { + remoteHost = ip.toString(buff.readBuffer(16)); + } + else { + remoteHost = buff.readString(buff.readUInt8()); + } + const remotePort = buff.readUInt16BE(); + return { + frameNumber, + remoteHost: { + host: remoteHost, + port: remotePort, + }, + data: buff.readBuffer(), + }; + } + /** + * Internal state setter. If the SocksClient is in an error state, it cannot be changed to a non error state. + */ + setState(newState) { + if (this.state !== constants_1.SocksClientState.Error) { + this.state = newState; + } + } + /** + * Starts the connection establishment to the proxy and destination. + * @param existingSocket Connected socket to use instead of creating a new one (internal use). + */ + connect(existingSocket) { + this.onDataReceived = (data) => this.onDataReceivedHandler(data); + this.onClose = () => this.onCloseHandler(); + this.onError = (err) => this.onErrorHandler(err); + this.onConnect = () => this.onConnectHandler(); + // Start timeout timer (defaults to 30 seconds) + const timer = setTimeout(() => this.onEstablishedTimeout(), this.options.timeout || constants_1.DEFAULT_TIMEOUT); + // check whether unref is available as it differs from browser to NodeJS (#33) + if (timer.unref && typeof timer.unref === 'function') { + timer.unref(); + } + // If an existing socket is provided, use it to negotiate SOCKS handshake. Otherwise create a new Socket. + if (existingSocket) { + this.socket = existingSocket; + } + else { + this.socket = new net.Socket(); + } + // Attach Socket error handlers. + this.socket.once('close', this.onClose); + this.socket.once('error', this.onError); + this.socket.once('connect', this.onConnect); + this.socket.on('data', this.onDataReceived); + this.setState(constants_1.SocksClientState.Connecting); + this.receiveBuffer = new receivebuffer_1.ReceiveBuffer(); + if (existingSocket) { + this.socket.emit('connect'); + } + else { + this.socket.connect(this.getSocketOptions()); + if (this.options.set_tcp_nodelay !== undefined && + this.options.set_tcp_nodelay !== null) { + this.socket.setNoDelay(!!this.options.set_tcp_nodelay); + } + } + // Listen for established event so we can re-emit any excess data received during handshakes. + this.prependOnceListener('established', (info) => { + setImmediate(() => { + if (this.receiveBuffer.length > 0) { + const excessData = this.receiveBuffer.get(this.receiveBuffer.length); + info.socket.emit('data', excessData); + } + info.socket.resume(); + }); + }); + } + // Socket options (defaults host/port to options.proxy.host/options.proxy.port) + getSocketOptions() { + return Object.assign(Object.assign({}, this.options.socket_options), { host: this.options.proxy.host || this.options.proxy.ipaddress, port: this.options.proxy.port }); + } + /** + * Handles internal Socks timeout callback. + * Note: If the Socks client is not BoundWaitingForConnection or Established, the connection will be closed. + */ + onEstablishedTimeout() { + if (this.state !== constants_1.SocksClientState.Established && + this.state !== constants_1.SocksClientState.BoundWaitingForConnection) { + this.closeSocket(constants_1.ERRORS.ProxyConnectionTimedOut); + } + } + /** + * Handles Socket connect event. + */ + onConnectHandler() { + this.setState(constants_1.SocksClientState.Connected); + // Send initial handshake. + if (this.options.proxy.type === 4) { + this.sendSocks4InitialHandshake(); + } + else { + this.sendSocks5InitialHandshake(); + } + this.setState(constants_1.SocksClientState.SentInitialHandshake); + } + /** + * Handles Socket data event. + * @param data + */ + onDataReceivedHandler(data) { + /* + All received data is appended to a ReceiveBuffer. + This makes sure that all the data we need is received before we attempt to process it. + */ + this.receiveBuffer.append(data); + // Process data that we have. + this.processData(); + } + /** + * Handles processing of the data we have received. + */ + processData() { + // If we have enough data to process the next step in the SOCKS handshake, proceed. + while (this.state !== constants_1.SocksClientState.Established && + this.state !== constants_1.SocksClientState.Error && + this.receiveBuffer.length >= this.nextRequiredPacketBufferSize) { + // Sent initial handshake, waiting for response. + if (this.state === constants_1.SocksClientState.SentInitialHandshake) { + if (this.options.proxy.type === 4) { + // Socks v4 only has one handshake response. + this.handleSocks4FinalHandshakeResponse(); + } + else { + // Socks v5 has two handshakes, handle initial one here. + this.handleInitialSocks5HandshakeResponse(); + } + // Sent auth request for Socks v5, waiting for response. + } + else if (this.state === constants_1.SocksClientState.SentAuthentication) { + this.handleInitialSocks5AuthenticationHandshakeResponse(); + // Sent final Socks v5 handshake, waiting for final response. + } + else if (this.state === constants_1.SocksClientState.SentFinalHandshake) { + this.handleSocks5FinalHandshakeResponse(); + // Socks BIND established. Waiting for remote connection via proxy. + } + else if (this.state === constants_1.SocksClientState.BoundWaitingForConnection) { + if (this.options.proxy.type === 4) { + this.handleSocks4IncomingConnectionResponse(); + } + else { + this.handleSocks5IncomingConnectionResponse(); + } + } + else { + this.closeSocket(constants_1.ERRORS.InternalError); + break; + } + } + } + /** + * Handles Socket close event. + * @param had_error + */ + onCloseHandler() { + this.closeSocket(constants_1.ERRORS.SocketClosed); + } + /** + * Handles Socket error event. + * @param err + */ + onErrorHandler(err) { + this.closeSocket(err.message); + } + /** + * Removes internal event listeners on the underlying Socket. + */ + removeInternalSocketHandlers() { + // Pauses data flow of the socket (this is internally resumed after 'established' is emitted) + this.socket.pause(); + this.socket.removeListener('data', this.onDataReceived); + this.socket.removeListener('close', this.onClose); + this.socket.removeListener('error', this.onError); + this.socket.removeListener('connect', this.onConnect); + } + /** + * Closes and destroys the underlying Socket. Emits an error event. + * @param err { String } An error string to include in error event. + */ + closeSocket(err) { + // Make sure only one 'error' event is fired for the lifetime of this SocksClient instance. + if (this.state !== constants_1.SocksClientState.Error) { + // Set internal state to Error. + this.setState(constants_1.SocksClientState.Error); + // Destroy Socket + this.socket.destroy(); + // Remove internal listeners + this.removeInternalSocketHandlers(); + // Fire 'error' event. + this.emit('error', new util_1.SocksClientError(err, this.options)); + } + } + /** + * Sends initial Socks v4 handshake request. + */ + sendSocks4InitialHandshake() { + const userId = this.options.proxy.userId || ''; + const buff = new smart_buffer_1.SmartBuffer(); + buff.writeUInt8(0x04); + buff.writeUInt8(constants_1.SocksCommand[this.options.command]); + buff.writeUInt16BE(this.options.destination.port); + // Socks 4 (IPv4) + if (net.isIPv4(this.options.destination.host)) { + buff.writeBuffer(ip.toBuffer(this.options.destination.host)); + buff.writeStringNT(userId); + // Socks 4a (hostname) + } + else { + buff.writeUInt8(0x00); + buff.writeUInt8(0x00); + buff.writeUInt8(0x00); + buff.writeUInt8(0x01); + buff.writeStringNT(userId); + buff.writeStringNT(this.options.destination.host); + } + this.nextRequiredPacketBufferSize = + constants_1.SOCKS_INCOMING_PACKET_SIZES.Socks4Response; + this.socket.write(buff.toBuffer()); + } + /** + * Handles Socks v4 handshake response. + * @param data + */ + handleSocks4FinalHandshakeResponse() { + const data = this.receiveBuffer.get(8); + if (data[1] !== constants_1.Socks4Response.Granted) { + this.closeSocket(`${constants_1.ERRORS.Socks4ProxyRejectedConnection} - (${constants_1.Socks4Response[data[1]]})`); + } + else { + // Bind response + if (constants_1.SocksCommand[this.options.command] === constants_1.SocksCommand.bind) { + const buff = smart_buffer_1.SmartBuffer.fromBuffer(data); + buff.readOffset = 2; + const remoteHost = { + port: buff.readUInt16BE(), + host: ip.fromLong(buff.readUInt32BE()), + }; + // If host is 0.0.0.0, set to proxy host. + if (remoteHost.host === '0.0.0.0') { + remoteHost.host = this.options.proxy.ipaddress; + } + this.setState(constants_1.SocksClientState.BoundWaitingForConnection); + this.emit('bound', { remoteHost, socket: this.socket }); + // Connect response + } + else { + this.setState(constants_1.SocksClientState.Established); + this.removeInternalSocketHandlers(); + this.emit('established', { socket: this.socket }); + } + } + } + /** + * Handles Socks v4 incoming connection request (BIND) + * @param data + */ + handleSocks4IncomingConnectionResponse() { + const data = this.receiveBuffer.get(8); + if (data[1] !== constants_1.Socks4Response.Granted) { + this.closeSocket(`${constants_1.ERRORS.Socks4ProxyRejectedIncomingBoundConnection} - (${constants_1.Socks4Response[data[1]]})`); + } + else { + const buff = smart_buffer_1.SmartBuffer.fromBuffer(data); + buff.readOffset = 2; + const remoteHost = { + port: buff.readUInt16BE(), + host: ip.fromLong(buff.readUInt32BE()), + }; + this.setState(constants_1.SocksClientState.Established); + this.removeInternalSocketHandlers(); + this.emit('established', { remoteHost, socket: this.socket }); + } + } + /** + * Sends initial Socks v5 handshake request. + */ + sendSocks5InitialHandshake() { + const buff = new smart_buffer_1.SmartBuffer(); + // By default we always support no auth. + const supportedAuthMethods = [constants_1.Socks5Auth.NoAuth]; + // We should only tell the proxy we support user/pass auth if auth info is actually provided. + // Note: As of Tor v0.3.5.7+, if user/pass auth is an option from the client, by default it will always take priority. + if (this.options.proxy.userId || this.options.proxy.password) { + supportedAuthMethods.push(constants_1.Socks5Auth.UserPass); + } + // Custom auth method? + if (this.options.proxy.custom_auth_method !== undefined) { + supportedAuthMethods.push(this.options.proxy.custom_auth_method); + } + // Build handshake packet + buff.writeUInt8(0x05); + buff.writeUInt8(supportedAuthMethods.length); + for (const authMethod of supportedAuthMethods) { + buff.writeUInt8(authMethod); + } + this.nextRequiredPacketBufferSize = + constants_1.SOCKS_INCOMING_PACKET_SIZES.Socks5InitialHandshakeResponse; + this.socket.write(buff.toBuffer()); + this.setState(constants_1.SocksClientState.SentInitialHandshake); + } + /** + * Handles initial Socks v5 handshake response. + * @param data + */ + handleInitialSocks5HandshakeResponse() { + const data = this.receiveBuffer.get(2); + if (data[0] !== 0x05) { + this.closeSocket(constants_1.ERRORS.InvalidSocks5IntiailHandshakeSocksVersion); + } + else if (data[1] === constants_1.SOCKS5_NO_ACCEPTABLE_AUTH) { + this.closeSocket(constants_1.ERRORS.InvalidSocks5InitialHandshakeNoAcceptedAuthType); + } + else { + // If selected Socks v5 auth method is no auth, send final handshake request. + if (data[1] === constants_1.Socks5Auth.NoAuth) { + this.socks5ChosenAuthType = constants_1.Socks5Auth.NoAuth; + this.sendSocks5CommandRequest(); + // If selected Socks v5 auth method is user/password, send auth handshake. + } + else if (data[1] === constants_1.Socks5Auth.UserPass) { + this.socks5ChosenAuthType = constants_1.Socks5Auth.UserPass; + this.sendSocks5UserPassAuthentication(); + // If selected Socks v5 auth method is the custom_auth_method, send custom handshake. + } + else if (data[1] === this.options.proxy.custom_auth_method) { + this.socks5ChosenAuthType = this.options.proxy.custom_auth_method; + this.sendSocks5CustomAuthentication(); + } + else { + this.closeSocket(constants_1.ERRORS.InvalidSocks5InitialHandshakeUnknownAuthType); + } + } + } + /** + * Sends Socks v5 user & password auth handshake. + * + * Note: No auth and user/pass are currently supported. + */ + sendSocks5UserPassAuthentication() { + const userId = this.options.proxy.userId || ''; + const password = this.options.proxy.password || ''; + const buff = new smart_buffer_1.SmartBuffer(); + buff.writeUInt8(0x01); + buff.writeUInt8(Buffer.byteLength(userId)); + buff.writeString(userId); + buff.writeUInt8(Buffer.byteLength(password)); + buff.writeString(password); + this.nextRequiredPacketBufferSize = + constants_1.SOCKS_INCOMING_PACKET_SIZES.Socks5UserPassAuthenticationResponse; + this.socket.write(buff.toBuffer()); + this.setState(constants_1.SocksClientState.SentAuthentication); + } + sendSocks5CustomAuthentication() { + return __awaiter(this, void 0, void 0, function* () { + this.nextRequiredPacketBufferSize = + this.options.proxy.custom_auth_response_size; + this.socket.write(yield this.options.proxy.custom_auth_request_handler()); + this.setState(constants_1.SocksClientState.SentAuthentication); + }); + } + handleSocks5CustomAuthHandshakeResponse(data) { + return __awaiter(this, void 0, void 0, function* () { + return yield this.options.proxy.custom_auth_response_handler(data); + }); + } + handleSocks5AuthenticationNoAuthHandshakeResponse(data) { + return __awaiter(this, void 0, void 0, function* () { + return data[1] === 0x00; + }); + } + handleSocks5AuthenticationUserPassHandshakeResponse(data) { + return __awaiter(this, void 0, void 0, function* () { + return data[1] === 0x00; + }); + } + /** + * Handles Socks v5 auth handshake response. + * @param data + */ + handleInitialSocks5AuthenticationHandshakeResponse() { + return __awaiter(this, void 0, void 0, function* () { + this.setState(constants_1.SocksClientState.ReceivedAuthenticationResponse); + let authResult = false; + if (this.socks5ChosenAuthType === constants_1.Socks5Auth.NoAuth) { + authResult = yield this.handleSocks5AuthenticationNoAuthHandshakeResponse(this.receiveBuffer.get(2)); + } + else if (this.socks5ChosenAuthType === constants_1.Socks5Auth.UserPass) { + authResult = + yield this.handleSocks5AuthenticationUserPassHandshakeResponse(this.receiveBuffer.get(2)); + } + else if (this.socks5ChosenAuthType === this.options.proxy.custom_auth_method) { + authResult = yield this.handleSocks5CustomAuthHandshakeResponse(this.receiveBuffer.get(this.options.proxy.custom_auth_response_size)); + } + if (!authResult) { + this.closeSocket(constants_1.ERRORS.Socks5AuthenticationFailed); + } + else { + this.sendSocks5CommandRequest(); + } + }); + } + /** + * Sends Socks v5 final handshake request. + */ + sendSocks5CommandRequest() { + const buff = new smart_buffer_1.SmartBuffer(); + buff.writeUInt8(0x05); + buff.writeUInt8(constants_1.SocksCommand[this.options.command]); + buff.writeUInt8(0x00); + // ipv4, ipv6, domain? + if (net.isIPv4(this.options.destination.host)) { + buff.writeUInt8(constants_1.Socks5HostType.IPv4); + buff.writeBuffer(ip.toBuffer(this.options.destination.host)); + } + else if (net.isIPv6(this.options.destination.host)) { + buff.writeUInt8(constants_1.Socks5HostType.IPv6); + buff.writeBuffer(ip.toBuffer(this.options.destination.host)); + } + else { + buff.writeUInt8(constants_1.Socks5HostType.Hostname); + buff.writeUInt8(this.options.destination.host.length); + buff.writeString(this.options.destination.host); + } + buff.writeUInt16BE(this.options.destination.port); + this.nextRequiredPacketBufferSize = + constants_1.SOCKS_INCOMING_PACKET_SIZES.Socks5ResponseHeader; + this.socket.write(buff.toBuffer()); + this.setState(constants_1.SocksClientState.SentFinalHandshake); + } + /** + * Handles Socks v5 final handshake response. + * @param data + */ + handleSocks5FinalHandshakeResponse() { + // Peek at available data (we need at least 5 bytes to get the hostname length) + const header = this.receiveBuffer.peek(5); + if (header[0] !== 0x05 || header[1] !== constants_1.Socks5Response.Granted) { + this.closeSocket(`${constants_1.ERRORS.InvalidSocks5FinalHandshakeRejected} - ${constants_1.Socks5Response[header[1]]}`); + } + else { + // Read address type + const addressType = header[3]; + let remoteHost; + let buff; + // IPv4 + if (addressType === constants_1.Socks5HostType.IPv4) { + // Check if data is available. + const dataNeeded = constants_1.SOCKS_INCOMING_PACKET_SIZES.Socks5ResponseIPv4; + if (this.receiveBuffer.length < dataNeeded) { + this.nextRequiredPacketBufferSize = dataNeeded; + return; + } + buff = smart_buffer_1.SmartBuffer.fromBuffer(this.receiveBuffer.get(dataNeeded).slice(4)); + remoteHost = { + host: ip.fromLong(buff.readUInt32BE()), + port: buff.readUInt16BE(), + }; + // If given host is 0.0.0.0, assume remote proxy ip instead. + if (remoteHost.host === '0.0.0.0') { + remoteHost.host = this.options.proxy.ipaddress; + } + // Hostname + } + else if (addressType === constants_1.Socks5HostType.Hostname) { + const hostLength = header[4]; + const dataNeeded = constants_1.SOCKS_INCOMING_PACKET_SIZES.Socks5ResponseHostname(hostLength); // header + host length + host + port + // Check if data is available. + if (this.receiveBuffer.length < dataNeeded) { + this.nextRequiredPacketBufferSize = dataNeeded; + return; + } + buff = smart_buffer_1.SmartBuffer.fromBuffer(this.receiveBuffer.get(dataNeeded).slice(5)); + remoteHost = { + host: buff.readString(hostLength), + port: buff.readUInt16BE(), + }; + // IPv6 + } + else if (addressType === constants_1.Socks5HostType.IPv6) { + // Check if data is available. + const dataNeeded = constants_1.SOCKS_INCOMING_PACKET_SIZES.Socks5ResponseIPv6; + if (this.receiveBuffer.length < dataNeeded) { + this.nextRequiredPacketBufferSize = dataNeeded; + return; + } + buff = smart_buffer_1.SmartBuffer.fromBuffer(this.receiveBuffer.get(dataNeeded).slice(4)); + remoteHost = { + host: ip.toString(buff.readBuffer(16)), + port: buff.readUInt16BE(), + }; + } + // We have everything we need + this.setState(constants_1.SocksClientState.ReceivedFinalResponse); + // If using CONNECT, the client is now in the established state. + if (constants_1.SocksCommand[this.options.command] === constants_1.SocksCommand.connect) { + this.setState(constants_1.SocksClientState.Established); + this.removeInternalSocketHandlers(); + this.emit('established', { remoteHost, socket: this.socket }); + } + else if (constants_1.SocksCommand[this.options.command] === constants_1.SocksCommand.bind) { + /* If using BIND, the Socks client is now in BoundWaitingForConnection state. + This means that the remote proxy server is waiting for a remote connection to the bound port. */ + this.setState(constants_1.SocksClientState.BoundWaitingForConnection); + this.nextRequiredPacketBufferSize = + constants_1.SOCKS_INCOMING_PACKET_SIZES.Socks5ResponseHeader; + this.emit('bound', { remoteHost, socket: this.socket }); + /* + If using Associate, the Socks client is now Established. And the proxy server is now accepting UDP packets at the + given bound port. This initial Socks TCP connection must remain open for the UDP relay to continue to work. + */ + } + else if (constants_1.SocksCommand[this.options.command] === constants_1.SocksCommand.associate) { + this.setState(constants_1.SocksClientState.Established); + this.removeInternalSocketHandlers(); + this.emit('established', { + remoteHost, + socket: this.socket, + }); + } + } + } + /** + * Handles Socks v5 incoming connection request (BIND). + */ + handleSocks5IncomingConnectionResponse() { + // Peek at available data (we need at least 5 bytes to get the hostname length) + const header = this.receiveBuffer.peek(5); + if (header[0] !== 0x05 || header[1] !== constants_1.Socks5Response.Granted) { + this.closeSocket(`${constants_1.ERRORS.Socks5ProxyRejectedIncomingBoundConnection} - ${constants_1.Socks5Response[header[1]]}`); + } + else { + // Read address type + const addressType = header[3]; + let remoteHost; + let buff; + // IPv4 + if (addressType === constants_1.Socks5HostType.IPv4) { + // Check if data is available. + const dataNeeded = constants_1.SOCKS_INCOMING_PACKET_SIZES.Socks5ResponseIPv4; + if (this.receiveBuffer.length < dataNeeded) { + this.nextRequiredPacketBufferSize = dataNeeded; + return; + } + buff = smart_buffer_1.SmartBuffer.fromBuffer(this.receiveBuffer.get(dataNeeded).slice(4)); + remoteHost = { + host: ip.fromLong(buff.readUInt32BE()), + port: buff.readUInt16BE(), + }; + // If given host is 0.0.0.0, assume remote proxy ip instead. + if (remoteHost.host === '0.0.0.0') { + remoteHost.host = this.options.proxy.ipaddress; + } + // Hostname + } + else if (addressType === constants_1.Socks5HostType.Hostname) { + const hostLength = header[4]; + const dataNeeded = constants_1.SOCKS_INCOMING_PACKET_SIZES.Socks5ResponseHostname(hostLength); // header + host length + port + // Check if data is available. + if (this.receiveBuffer.length < dataNeeded) { + this.nextRequiredPacketBufferSize = dataNeeded; + return; + } + buff = smart_buffer_1.SmartBuffer.fromBuffer(this.receiveBuffer.get(dataNeeded).slice(5)); + remoteHost = { + host: buff.readString(hostLength), + port: buff.readUInt16BE(), + }; + // IPv6 + } + else if (addressType === constants_1.Socks5HostType.IPv6) { + // Check if data is available. + const dataNeeded = constants_1.SOCKS_INCOMING_PACKET_SIZES.Socks5ResponseIPv6; + if (this.receiveBuffer.length < dataNeeded) { + this.nextRequiredPacketBufferSize = dataNeeded; + return; + } + buff = smart_buffer_1.SmartBuffer.fromBuffer(this.receiveBuffer.get(dataNeeded).slice(4)); + remoteHost = { + host: ip.toString(buff.readBuffer(16)), + port: buff.readUInt16BE(), + }; + } + this.setState(constants_1.SocksClientState.Established); + this.removeInternalSocketHandlers(); + this.emit('established', { remoteHost, socket: this.socket }); + } + } + get socksClientOptions() { + return Object.assign({}, this.options); + } +} +exports.SocksClient = SocksClient; +//# sourceMappingURL=socksclient.js.map \ No newline at end of file diff --git a/node_modules/socks/build/client/socksclient.js.map b/node_modules/socks/build/client/socksclient.js.map new file mode 100644 index 000000000..f01f317e6 --- /dev/null +++ b/node_modules/socks/build/client/socksclient.js.map @@ -0,0 +1 @@ +{"version":3,"file":"socksclient.js","sourceRoot":"","sources":["../../src/client/socksclient.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,mCAAoC;AACpC,2BAA2B;AAC3B,yBAAyB;AACzB,+CAAyC;AACzC,mDAkB6B;AAC7B,+CAG2B;AAC3B,2DAAsD;AACtD,yCAA8D;AAw7B5D,iGAx7BM,uBAAgB,OAw7BN;AA95BlB,MAAM,WAAY,SAAQ,qBAAY;IAgBpC,YAAY,OAA2B;QACrC,KAAK,EAAE,CAAC;QACR,IAAI,CAAC,OAAO,qBACP,OAAO,CACX,CAAC;QAEF,8BAA8B;QAC9B,IAAA,oCAA0B,EAAC,OAAO,CAAC,CAAC;QAEpC,gBAAgB;QAChB,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,OAAO,CAAC,CAAC;IAC1C,CAAC;IAED;;;;;;;OAOG;IACH,MAAM,CAAC,gBAAgB,CACrB,OAA2B,EAC3B,QAGS;QAET,OAAO,IAAI,OAAO,CAA8B,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;YAClE,8BAA8B;YAC9B,IAAI;gBACF,IAAA,oCAA0B,EAAC,OAAO,EAAE,CAAC,SAAS,CAAC,CAAC,CAAC;aAClD;YAAC,OAAO,GAAG,EAAE;gBACZ,IAAI,OAAO,QAAQ,KAAK,UAAU,EAAE;oBAClC,QAAQ,CAAC,GAAG,CAAC,CAAC;oBACd,8DAA8D;oBAC9D,OAAO,OAAO,CAAC,GAAU,CAAC,CAAC,CAAC,oDAAoD;iBACjF;qBAAM;oBACL,OAAO,MAAM,CAAC,GAAG,CAAC,CAAC;iBACpB;aACF;YAED,MAAM,MAAM,GAAG,IAAI,WAAW,CAAC,OAAO,CAAC,CAAC;YACxC,MAAM,CAAC,OAAO,CAAC,OAAO,CAAC,eAAe,CAAC,CAAC;YACxC,MAAM,CAAC,IAAI,CAAC,aAAa,EAAE,CAAC,IAAiC,EAAE,EAAE;gBAC/D,MAAM,CAAC,kBAAkB,EAAE,CAAC;gBAC5B,IAAI,OAAO,QAAQ,KAAK,UAAU,EAAE;oBAClC,QAAQ,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;oBACrB,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,oDAAoD;iBACpE;qBAAM;oBACL,OAAO,CAAC,IAAI,CAAC,CAAC;iBACf;YACH,CAAC,CAAC,CAAC;YAEH,kDAAkD;YAClD,MAAM,CAAC,IAAI,CAAC,OAAO,EAAE,CAAC,GAAU,EAAE,EAAE;gBAClC,MAAM,CAAC,kBAAkB,EAAE,CAAC;gBAC5B,IAAI,OAAO,QAAQ,KAAK,UAAU,EAAE;oBAClC,QAAQ,CAAC,GAAG,CAAC,CAAC;oBACd,8DAA8D;oBAC9D,OAAO,CAAC,GAAU,CAAC,CAAC,CAAC,oDAAoD;iBAC1E;qBAAM;oBACL,MAAM,CAAC,GAAG,CAAC,CAAC;iBACb;YACH,CAAC,CAAC,CAAC;QACL,CAAC,CAAC,CAAC;IACL,CAAC;IAED;;;;;;;;OAQG;IACH,MAAM,CAAC,qBAAqB,CAC1B,OAAgC,EAChC,QAGS;QAET,qDAAqD;QACrD,OAAO,IAAI,OAAO,CAA8B,CAAO,OAAO,EAAE,MAAM,EAAE,EAAE;YACxE,mCAAmC;YACnC,IAAI;gBACF,IAAA,yCAA+B,EAAC,OAAO,CAAC,CAAC;aAC1C;YAAC,OAAO,GAAG,EAAE;gBACZ,IAAI,OAAO,QAAQ,KAAK,UAAU,EAAE;oBAClC,QAAQ,CAAC,GAAG,CAAC,CAAC;oBACd,8DAA8D;oBAC9D,OAAO,OAAO,CAAC,GAAU,CAAC,CAAC,CAAC,oDAAoD;iBACjF;qBAAM;oBACL,OAAO,MAAM,CAAC,GAAG,CAAC,CAAC;iBACpB;aACF;YAED,kBAAkB;YAClB,IAAI,OAAO,CAAC,cAAc,EAAE;gBAC1B,IAAA,mBAAY,EAAC,OAAO,CAAC,OAAO,CAAC,CAAC;aAC/B;YAED,IAAI;gBACF,IAAI,IAAgB,CAAC;gBAErB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,OAAO,CAAC,OAAO,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;oBAC/C,MAAM,SAAS,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;oBAErC,0HAA0H;oBAC1H,MAAM,eAAe,GACnB,CAAC,KAAK,OAAO,CAAC,OAAO,CAAC,MAAM,GAAG,CAAC;wBAC9B,CAAC,CAAC,OAAO,CAAC,WAAW;wBACrB,CAAC,CAAC;4BACE,IAAI,EACF,OAAO,CAAC,OAAO,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI;gCAC3B,OAAO,CAAC,OAAO,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,SAAS;4BAClC,IAAI,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI;yBAClC,CAAC;oBAER,4CAA4C;oBAC5C,MAAM,MAAM,GAAG,MAAM,WAAW,CAAC,gBAAgB,CAAC;wBAChD,OAAO,EAAE,SAAS;wBAClB,KAAK,EAAE,SAAS;wBAChB,WAAW,EAAE,eAAe;wBAC5B,eAAe,EAAE,IAAI;qBACtB,CAAC,CAAC;oBAEH,wCAAwC;oBACxC,IAAI,GAAG,IAAI,IAAI,MAAM,CAAC,MAAM,CAAC;iBAC9B;gBAED,IAAI,OAAO,QAAQ,KAAK,UAAU,EAAE;oBAClC,QAAQ,CAAC,IAAI,EAAE,EAAC,MAAM,EAAE,IAAI,EAAC,CAAC,CAAC;oBAC/B,OAAO,CAAC,EAAC,MAAM,EAAE,IAAI,EAAC,CAAC,CAAC,CAAC,oDAAoD;iBAC9E;qBAAM;oBACL,OAAO,CAAC,EAAC,MAAM,EAAE,IAAI,EAAC,CAAC,CAAC;iBACzB;aACF;YAAC,OAAO,GAAG,EAAE;gBACZ,IAAI,OAAO,QAAQ,KAAK,UAAU,EAAE;oBAClC,QAAQ,CAAC,GAAG,CAAC,CAAC;oBACd,8DAA8D;oBAC9D,OAAO,CAAC,GAAU,CAAC,CAAC,CAAC,oDAAoD;iBAC1E;qBAAM;oBACL,MAAM,CAAC,GAAG,CAAC,CAAC;iBACb;aACF;QACH,CAAC,CAAA,CAAC,CAAC;IACL,CAAC;IAED;;;OAGG;IACH,MAAM,CAAC,cAAc,CAAC,OAA6B;QACjD,MAAM,IAAI,GAAG,IAAI,0BAAW,EAAE,CAAC;QAC/B,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC;QACtB,IAAI,CAAC,UAAU,CAAC,OAAO,CAAC,WAAW,IAAI,CAAC,CAAC,CAAC;QAE1C,qBAAqB;QACrB,IAAI,GAAG,CAAC,MAAM,CAAC,OAAO,CAAC,UAAU,CAAC,IAAI,CAAC,EAAE;YACvC,IAAI,CAAC,UAAU,CAAC,0BAAc,CAAC,IAAI,CAAC,CAAC;YACrC,IAAI,CAAC,aAAa,CAAC,EAAE,CAAC,MAAM,CAAC,OAAO,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC,CAAC;SACxD;aAAM,IAAI,GAAG,CAAC,MAAM,CAAC,OAAO,CAAC,UAAU,CAAC,IAAI,CAAC,EAAE;YAC9C,IAAI,CAAC,UAAU,CAAC,0BAAc,CAAC,IAAI,CAAC,CAAC;YACrC,IAAI,CAAC,WAAW,CAAC,EAAE,CAAC,QAAQ,CAAC,OAAO,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC,CAAC;SACxD;aAAM;YACL,IAAI,CAAC,UAAU,CAAC,0BAAc,CAAC,QAAQ,CAAC,CAAC;YACzC,IAAI,CAAC,UAAU,CAAC,MAAM,CAAC,UAAU,CAAC,OAAO,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC,CAAC;YAC5D,IAAI,CAAC,WAAW,CAAC,OAAO,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;SAC3C;QAED,OAAO;QACP,IAAI,CAAC,aAAa,CAAC,OAAO,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;QAE5C,OAAO;QACP,IAAI,CAAC,WAAW,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;QAE/B,OAAO,IAAI,CAAC,QAAQ,EAAE,CAAC;IACzB,CAAC;IAED;;;OAGG;IACH,MAAM,CAAC,aAAa,CAAC,IAAY;QAC/B,MAAM,IAAI,GAAG,0BAAW,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;QAC1C,IAAI,CAAC,UAAU,GAAG,CAAC,CAAC;QAEpB,MAAM,WAAW,GAAG,IAAI,CAAC,SAAS,EAAE,CAAC;QACrC,MAAM,QAAQ,GAAmB,IAAI,CAAC,SAAS,EAAE,CAAC;QAClD,IAAI,UAAU,CAAC;QAEf,IAAI,QAAQ,KAAK,0BAAc,CAAC,IAAI,EAAE;YACpC,UAAU,GAAG,EAAE,CAAC,QAAQ,CAAC,IAAI,CAAC,YAAY,EAAE,CAAC,CAAC;SAC/C;aAAM,IAAI,QAAQ,KAAK,0BAAc,CAAC,IAAI,EAAE;YAC3C,UAAU,GAAG,EAAE,CAAC,QAAQ,CAAC,IAAI,CAAC,UAAU,CAAC,EAAE,CAAC,CAAC,CAAC;SAC/C;aAAM;YACL,UAAU,GAAG,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,SAAS,EAAE,CAAC,CAAC;SAChD;QAED,MAAM,UAAU,GAAG,IAAI,CAAC,YAAY,EAAE,CAAC;QAEvC,OAAO;YACL,WAAW;YACX,UAAU,EAAE;gBACV,IAAI,EAAE,UAAU;gBAChB,IAAI,EAAE,UAAU;aACjB;YACD,IAAI,EAAE,IAAI,CAAC,UAAU,EAAE;SACxB,CAAC;IACJ,CAAC;IAED;;OAEG;IACK,QAAQ,CAAC,QAA0B;QACzC,IAAI,IAAI,CAAC,KAAK,KAAK,4BAAgB,CAAC,KAAK,EAAE;YACzC,IAAI,CAAC,KAAK,GAAG,QAAQ,CAAC;SACvB;IACH,CAAC;IAED;;;OAGG;IACI,OAAO,CAAC,cAAuB;QACpC,IAAI,CAAC,cAAc,GAAG,CAAC,IAAY,EAAE,EAAE,CAAC,IAAI,CAAC,qBAAqB,CAAC,IAAI,CAAC,CAAC;QACzE,IAAI,CAAC,OAAO,GAAG,GAAG,EAAE,CAAC,IAAI,CAAC,cAAc,EAAE,CAAC;QAC3C,IAAI,CAAC,OAAO,GAAG,CAAC,GAAU,EAAE,EAAE,CAAC,IAAI,CAAC,cAAc,CAAC,GAAG,CAAC,CAAC;QACxD,IAAI,CAAC,SAAS,GAAG,GAAG,EAAE,CAAC,IAAI,CAAC,gBAAgB,EAAE,CAAC;QAE/C,+CAA+C;QAC/C,MAAM,KAAK,GAAG,UAAU,CACtB,GAAG,EAAE,CAAC,IAAI,CAAC,oBAAoB,EAAE,EACjC,IAAI,CAAC,OAAO,CAAC,OAAO,IAAI,2BAAe,CACxC,CAAC;QAEF,8EAA8E;QAC9E,IAAI,KAAK,CAAC,KAAK,IAAI,OAAO,KAAK,CAAC,KAAK,KAAK,UAAU,EAAE;YACpD,KAAK,CAAC,KAAK,EAAE,CAAC;SACf;QAED,yGAAyG;QACzG,IAAI,cAAc,EAAE;YAClB,IAAI,CAAC,MAAM,GAAG,cAAc,CAAC;SAC9B;aAAM;YACL,IAAI,CAAC,MAAM,GAAG,IAAI,GAAG,CAAC,MAAM,EAAE,CAAC;SAChC;QAED,gCAAgC;QAChC,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,EAAE,IAAI,CAAC,OAAO,CAAC,CAAC;QACxC,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,EAAE,IAAI,CAAC,OAAO,CAAC,CAAC;QACxC,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,SAAS,EAAE,IAAI,CAAC,SAAS,CAAC,CAAC;QAC5C,IAAI,CAAC,MAAM,CAAC,EAAE,CAAC,MAAM,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;QAE5C,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,UAAU,CAAC,CAAC;QAC3C,IAAI,CAAC,aAAa,GAAG,IAAI,6BAAa,EAAE,CAAC;QAEzC,IAAI,cAAc,EAAE;YAClB,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;SAC7B;aAAM;YACJ,IAAI,CAAC,MAAqB,CAAC,OAAO,CAAC,IAAI,CAAC,gBAAgB,EAAE,CAAC,CAAC;YAE7D,IACE,IAAI,CAAC,OAAO,CAAC,eAAe,KAAK,SAAS;gBAC1C,IAAI,CAAC,OAAO,CAAC,eAAe,KAAK,IAAI,EACrC;gBACC,IAAI,CAAC,MAAqB,CAAC,UAAU,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,eAAe,CAAC,CAAC;aACxE;SACF;QAED,6FAA6F;QAC7F,IAAI,CAAC,mBAAmB,CAAC,aAAa,EAAE,CAAC,IAAI,EAAE,EAAE;YAC/C,YAAY,CAAC,GAAG,EAAE;gBAChB,IAAI,IAAI,CAAC,aAAa,CAAC,MAAM,GAAG,CAAC,EAAE;oBACjC,MAAM,UAAU,GAAG,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,IAAI,CAAC,aAAa,CAAC,MAAM,CAAC,CAAC;oBAErE,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,EAAE,UAAU,CAAC,CAAC;iBACtC;gBACD,IAAI,CAAC,MAAM,CAAC,MAAM,EAAE,CAAC;YACvB,CAAC,CAAC,CAAC;QACL,CAAC,CAAC,CAAC;IACL,CAAC;IAED,+EAA+E;IACvE,gBAAgB;QACtB,uCACK,IAAI,CAAC,OAAO,CAAC,cAAc,KAC9B,IAAI,EAAE,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,IAAI,IAAI,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,SAAS,EAC7D,IAAI,EAAE,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,IAAI,IAC7B;IACJ,CAAC;IAED;;;OAGG;IACK,oBAAoB;QAC1B,IACE,IAAI,CAAC,KAAK,KAAK,4BAAgB,CAAC,WAAW;YAC3C,IAAI,CAAC,KAAK,KAAK,4BAAgB,CAAC,yBAAyB,EACzD;YACA,IAAI,CAAC,WAAW,CAAC,kBAAM,CAAC,uBAAuB,CAAC,CAAC;SAClD;IACH,CAAC;IAED;;OAEG;IACK,gBAAgB;QACtB,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,SAAS,CAAC,CAAC;QAE1C,0BAA0B;QAC1B,IAAI,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,IAAI,KAAK,CAAC,EAAE;YACjC,IAAI,CAAC,0BAA0B,EAAE,CAAC;SACnC;aAAM;YACL,IAAI,CAAC,0BAA0B,EAAE,CAAC;SACnC;QAED,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,oBAAoB,CAAC,CAAC;IACvD,CAAC;IAED;;;OAGG;IACK,qBAAqB,CAAC,IAAY;QACxC;;;UAGE;QACF,IAAI,CAAC,aAAa,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;QAEhC,6BAA6B;QAC7B,IAAI,CAAC,WAAW,EAAE,CAAC;IACrB,CAAC;IAED;;OAEG;IACK,WAAW;QACjB,mFAAmF;QACnF,OACE,IAAI,CAAC,KAAK,KAAK,4BAAgB,CAAC,WAAW;YAC3C,IAAI,CAAC,KAAK,KAAK,4BAAgB,CAAC,KAAK;YACrC,IAAI,CAAC,aAAa,CAAC,MAAM,IAAI,IAAI,CAAC,4BAA4B,EAC9D;YACA,gDAAgD;YAChD,IAAI,IAAI,CAAC,KAAK,KAAK,4BAAgB,CAAC,oBAAoB,EAAE;gBACxD,IAAI,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,IAAI,KAAK,CAAC,EAAE;oBACjC,4CAA4C;oBAC5C,IAAI,CAAC,kCAAkC,EAAE,CAAC;iBAC3C;qBAAM;oBACL,wDAAwD;oBACxD,IAAI,CAAC,oCAAoC,EAAE,CAAC;iBAC7C;gBACD,wDAAwD;aACzD;iBAAM,IAAI,IAAI,CAAC,KAAK,KAAK,4BAAgB,CAAC,kBAAkB,EAAE;gBAC7D,IAAI,CAAC,kDAAkD,EAAE,CAAC;gBAC1D,6DAA6D;aAC9D;iBAAM,IAAI,IAAI,CAAC,KAAK,KAAK,4BAAgB,CAAC,kBAAkB,EAAE;gBAC7D,IAAI,CAAC,kCAAkC,EAAE,CAAC;gBAC1C,mEAAmE;aACpE;iBAAM,IAAI,IAAI,CAAC,KAAK,KAAK,4BAAgB,CAAC,yBAAyB,EAAE;gBACpE,IAAI,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,IAAI,KAAK,CAAC,EAAE;oBACjC,IAAI,CAAC,sCAAsC,EAAE,CAAC;iBAC/C;qBAAM;oBACL,IAAI,CAAC,sCAAsC,EAAE,CAAC;iBAC/C;aACF;iBAAM;gBACL,IAAI,CAAC,WAAW,CAAC,kBAAM,CAAC,aAAa,CAAC,CAAC;gBACvC,MAAM;aACP;SACF;IACH,CAAC;IAED;;;OAGG;IACK,cAAc;QACpB,IAAI,CAAC,WAAW,CAAC,kBAAM,CAAC,YAAY,CAAC,CAAC;IACxC,CAAC;IAED;;;OAGG;IACK,cAAc,CAAC,GAAU;QAC/B,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC;IAChC,CAAC;IAED;;OAEG;IACK,4BAA4B;QAClC,6FAA6F;QAC7F,IAAI,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC;QACpB,IAAI,CAAC,MAAM,CAAC,cAAc,CAAC,MAAM,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;QACxD,IAAI,CAAC,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,IAAI,CAAC,OAAO,CAAC,CAAC;QAClD,IAAI,CAAC,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,IAAI,CAAC,OAAO,CAAC,CAAC;QAClD,IAAI,CAAC,MAAM,CAAC,cAAc,CAAC,SAAS,EAAE,IAAI,CAAC,SAAS,CAAC,CAAC;IACxD,CAAC;IAED;;;OAGG;IACK,WAAW,CAAC,GAAW;QAC7B,2FAA2F;QAC3F,IAAI,IAAI,CAAC,KAAK,KAAK,4BAAgB,CAAC,KAAK,EAAE;YACzC,+BAA+B;YAC/B,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,KAAK,CAAC,CAAC;YAEtC,iBAAiB;YACjB,IAAI,CAAC,MAAM,CAAC,OAAO,EAAE,CAAC;YAEtB,4BAA4B;YAC5B,IAAI,CAAC,4BAA4B,EAAE,CAAC;YAEpC,sBAAsB;YACtB,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE,IAAI,uBAAgB,CAAC,GAAG,EAAE,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC;SAC7D;IACH,CAAC;IAED;;OAEG;IACK,0BAA0B;QAChC,MAAM,MAAM,GAAG,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,MAAM,IAAI,EAAE,CAAC;QAE/C,MAAM,IAAI,GAAG,IAAI,0BAAW,EAAE,CAAC;QAC/B,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;QACtB,IAAI,CAAC,UAAU,CAAC,wBAAY,CAAC,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,CAAC;QACpD,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC;QAElD,iBAAiB;QACjB,IAAI,GAAG,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,EAAE;YAC7C,IAAI,CAAC,WAAW,CAAC,EAAE,CAAC,QAAQ,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC,CAAC;YAC7D,IAAI,CAAC,aAAa,CAAC,MAAM,CAAC,CAAC;YAC3B,sBAAsB;SACvB;aAAM;YACL,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;YACtB,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;YACtB,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;YACtB,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;YACtB,IAAI,CAAC,aAAa,CAAC,MAAM,CAAC,CAAC;YAC3B,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC;SACnD;QAED,IAAI,CAAC,4BAA4B;YAC/B,uCAA2B,CAAC,cAAc,CAAC;QAC7C,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,IAAI,CAAC,QAAQ,EAAE,CAAC,CAAC;IACrC,CAAC;IAED;;;OAGG;IACK,kCAAkC;QACxC,MAAM,IAAI,GAAG,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;QAEvC,IAAI,IAAI,CAAC,CAAC,CAAC,KAAK,0BAAc,CAAC,OAAO,EAAE;YACtC,IAAI,CAAC,WAAW,CACd,GAAG,kBAAM,CAAC,6BAA6B,OACrC,0BAAc,CAAC,IAAI,CAAC,CAAC,CAAC,CACxB,GAAG,CACJ,CAAC;SACH;aAAM;YACL,gBAAgB;YAChB,IAAI,wBAAY,CAAC,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,KAAK,wBAAY,CAAC,IAAI,EAAE;gBAC5D,MAAM,IAAI,GAAG,0BAAW,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;gBAC1C,IAAI,CAAC,UAAU,GAAG,CAAC,CAAC;gBAEpB,MAAM,UAAU,GAAoB;oBAClC,IAAI,EAAE,IAAI,CAAC,YAAY,EAAE;oBACzB,IAAI,EAAE,EAAE,CAAC,QAAQ,CAAC,IAAI,CAAC,YAAY,EAAE,CAAC;iBACvC,CAAC;gBAEF,yCAAyC;gBACzC,IAAI,UAAU,CAAC,IAAI,KAAK,SAAS,EAAE;oBACjC,UAAU,CAAC,IAAI,GAAG,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,SAAS,CAAC;iBAChD;gBACD,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,yBAAyB,CAAC,CAAC;gBAC1D,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE,EAAC,UAAU,EAAE,MAAM,EAAE,IAAI,CAAC,MAAM,EAAC,CAAC,CAAC;gBAEtD,mBAAmB;aACpB;iBAAM;gBACL,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,WAAW,CAAC,CAAC;gBAC5C,IAAI,CAAC,4BAA4B,EAAE,CAAC;gBACpC,IAAI,CAAC,IAAI,CAAC,aAAa,EAAE,EAAC,MAAM,EAAE,IAAI,CAAC,MAAM,EAAC,CAAC,CAAC;aACjD;SACF;IACH,CAAC;IAED;;;OAGG;IACK,sCAAsC;QAC5C,MAAM,IAAI,GAAG,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;QAEvC,IAAI,IAAI,CAAC,CAAC,CAAC,KAAK,0BAAc,CAAC,OAAO,EAAE;YACtC,IAAI,CAAC,WAAW,CACd,GAAG,kBAAM,CAAC,0CAA0C,OAClD,0BAAc,CAAC,IAAI,CAAC,CAAC,CAAC,CACxB,GAAG,CACJ,CAAC;SACH;aAAM;YACL,MAAM,IAAI,GAAG,0BAAW,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;YAC1C,IAAI,CAAC,UAAU,GAAG,CAAC,CAAC;YAEpB,MAAM,UAAU,GAAoB;gBAClC,IAAI,EAAE,IAAI,CAAC,YAAY,EAAE;gBACzB,IAAI,EAAE,EAAE,CAAC,QAAQ,CAAC,IAAI,CAAC,YAAY,EAAE,CAAC;aACvC,CAAC;YAEF,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,WAAW,CAAC,CAAC;YAC5C,IAAI,CAAC,4BAA4B,EAAE,CAAC;YACpC,IAAI,CAAC,IAAI,CAAC,aAAa,EAAE,EAAC,UAAU,EAAE,MAAM,EAAE,IAAI,CAAC,MAAM,EAAC,CAAC,CAAC;SAC7D;IACH,CAAC;IAED;;OAEG;IACK,0BAA0B;QAChC,MAAM,IAAI,GAAG,IAAI,0BAAW,EAAE,CAAC;QAE/B,wCAAwC;QACxC,MAAM,oBAAoB,GAAG,CAAC,sBAAU,CAAC,MAAM,CAAC,CAAC;QAEjD,6FAA6F;QAC7F,sHAAsH;QACtH,IAAI,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,MAAM,IAAI,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,QAAQ,EAAE;YAC5D,oBAAoB,CAAC,IAAI,CAAC,sBAAU,CAAC,QAAQ,CAAC,CAAC;SAChD;QAED,sBAAsB;QACtB,IAAI,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,kBAAkB,KAAK,SAAS,EAAE;YACvD,oBAAoB,CAAC,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,kBAAkB,CAAC,CAAC;SAClE;QAED,yBAAyB;QACzB,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;QACtB,IAAI,CAAC,UAAU,CAAC,oBAAoB,CAAC,MAAM,CAAC,CAAC;QAC7C,KAAK,MAAM,UAAU,IAAI,oBAAoB,EAAE;YAC7C,IAAI,CAAC,UAAU,CAAC,UAAU,CAAC,CAAC;SAC7B;QAED,IAAI,CAAC,4BAA4B;YAC/B,uCAA2B,CAAC,8BAA8B,CAAC;QAC7D,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,IAAI,CAAC,QAAQ,EAAE,CAAC,CAAC;QACnC,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,oBAAoB,CAAC,CAAC;IACvD,CAAC;IAED;;;OAGG;IACK,oCAAoC;QAC1C,MAAM,IAAI,GAAG,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;QAEvC,IAAI,IAAI,CAAC,CAAC,CAAC,KAAK,IAAI,EAAE;YACpB,IAAI,CAAC,WAAW,CAAC,kBAAM,CAAC,yCAAyC,CAAC,CAAC;SACpE;aAAM,IAAI,IAAI,CAAC,CAAC,CAAC,KAAK,qCAAyB,EAAE;YAChD,IAAI,CAAC,WAAW,CAAC,kBAAM,CAAC,+CAA+C,CAAC,CAAC;SAC1E;aAAM;YACL,6EAA6E;YAC7E,IAAI,IAAI,CAAC,CAAC,CAAC,KAAK,sBAAU,CAAC,MAAM,EAAE;gBACjC,IAAI,CAAC,oBAAoB,GAAG,sBAAU,CAAC,MAAM,CAAC;gBAC9C,IAAI,CAAC,wBAAwB,EAAE,CAAC;gBAChC,0EAA0E;aAC3E;iBAAM,IAAI,IAAI,CAAC,CAAC,CAAC,KAAK,sBAAU,CAAC,QAAQ,EAAE;gBAC1C,IAAI,CAAC,oBAAoB,GAAG,sBAAU,CAAC,QAAQ,CAAC;gBAChD,IAAI,CAAC,gCAAgC,EAAE,CAAC;gBACxC,qFAAqF;aACtF;iBAAM,IAAI,IAAI,CAAC,CAAC,CAAC,KAAK,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,kBAAkB,EAAE;gBAC5D,IAAI,CAAC,oBAAoB,GAAG,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,kBAAkB,CAAC;gBAClE,IAAI,CAAC,8BAA8B,EAAE,CAAC;aACvC;iBAAM;gBACL,IAAI,CAAC,WAAW,CAAC,kBAAM,CAAC,4CAA4C,CAAC,CAAC;aACvE;SACF;IACH,CAAC;IAED;;;;OAIG;IACK,gCAAgC;QACtC,MAAM,MAAM,GAAG,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,MAAM,IAAI,EAAE,CAAC;QAC/C,MAAM,QAAQ,GAAG,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,QAAQ,IAAI,EAAE,CAAC;QAEnD,MAAM,IAAI,GAAG,IAAI,0BAAW,EAAE,CAAC;QAC/B,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;QACtB,IAAI,CAAC,UAAU,CAAC,MAAM,CAAC,UAAU,CAAC,MAAM,CAAC,CAAC,CAAC;QAC3C,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC;QACzB,IAAI,CAAC,UAAU,CAAC,MAAM,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC,CAAC;QAC7C,IAAI,CAAC,WAAW,CAAC,QAAQ,CAAC,CAAC;QAE3B,IAAI,CAAC,4BAA4B;YAC/B,uCAA2B,CAAC,oCAAoC,CAAC;QACnE,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,IAAI,CAAC,QAAQ,EAAE,CAAC,CAAC;QACnC,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,kBAAkB,CAAC,CAAC;IACrD,CAAC;IAEa,8BAA8B;;YAC1C,IAAI,CAAC,4BAA4B;gBAC/B,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,yBAAyB,CAAC;YAC/C,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,2BAA2B,EAAE,CAAC,CAAC;YAC1E,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,kBAAkB,CAAC,CAAC;QACrD,CAAC;KAAA;IAEa,uCAAuC,CAAC,IAAY;;YAChE,OAAO,MAAM,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,4BAA4B,CAAC,IAAI,CAAC,CAAC;QACrE,CAAC;KAAA;IAEa,iDAAiD,CAC7D,IAAY;;YAEZ,OAAO,IAAI,CAAC,CAAC,CAAC,KAAK,IAAI,CAAC;QAC1B,CAAC;KAAA;IAEa,mDAAmD,CAC/D,IAAY;;YAEZ,OAAO,IAAI,CAAC,CAAC,CAAC,KAAK,IAAI,CAAC;QAC1B,CAAC;KAAA;IAED;;;OAGG;IACW,kDAAkD;;YAC9D,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,8BAA8B,CAAC,CAAC;YAE/D,IAAI,UAAU,GAAG,KAAK,CAAC;YAEvB,IAAI,IAAI,CAAC,oBAAoB,KAAK,sBAAU,CAAC,MAAM,EAAE;gBACnD,UAAU,GAAG,MAAM,IAAI,CAAC,iDAAiD,CACvE,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,CAAC,CAAC,CAC1B,CAAC;aACH;iBAAM,IAAI,IAAI,CAAC,oBAAoB,KAAK,sBAAU,CAAC,QAAQ,EAAE;gBAC5D,UAAU;oBACR,MAAM,IAAI,CAAC,mDAAmD,CAC5D,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,CAAC,CAAC,CAC1B,CAAC;aACL;iBAAM,IACL,IAAI,CAAC,oBAAoB,KAAK,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,kBAAkB,EACnE;gBACA,UAAU,GAAG,MAAM,IAAI,CAAC,uCAAuC,CAC7D,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,yBAAyB,CAAC,CACrE,CAAC;aACH;YAED,IAAI,CAAC,UAAU,EAAE;gBACf,IAAI,CAAC,WAAW,CAAC,kBAAM,CAAC,0BAA0B,CAAC,CAAC;aACrD;iBAAM;gBACL,IAAI,CAAC,wBAAwB,EAAE,CAAC;aACjC;QACH,CAAC;KAAA;IAED;;OAEG;IACK,wBAAwB;QAC9B,MAAM,IAAI,GAAG,IAAI,0BAAW,EAAE,CAAC;QAE/B,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;QACtB,IAAI,CAAC,UAAU,CAAC,wBAAY,CAAC,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,CAAC;QACpD,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;QAEtB,sBAAsB;QACtB,IAAI,GAAG,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,EAAE;YAC7C,IAAI,CAAC,UAAU,CAAC,0BAAc,CAAC,IAAI,CAAC,CAAC;YACrC,IAAI,CAAC,WAAW,CAAC,EAAE,CAAC,QAAQ,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC,CAAC;SAC9D;aAAM,IAAI,GAAG,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,EAAE;YACpD,IAAI,CAAC,UAAU,CAAC,0BAAc,CAAC,IAAI,CAAC,CAAC;YACrC,IAAI,CAAC,WAAW,CAAC,EAAE,CAAC,QAAQ,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC,CAAC;SAC9D;aAAM;YACL,IAAI,CAAC,UAAU,CAAC,0BAAc,CAAC,QAAQ,CAAC,CAAC;YACzC,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;YACtD,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC;SACjD;QACD,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC;QAElD,IAAI,CAAC,4BAA4B;YAC/B,uCAA2B,CAAC,oBAAoB,CAAC;QACnD,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,IAAI,CAAC,QAAQ,EAAE,CAAC,CAAC;QACnC,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,kBAAkB,CAAC,CAAC;IACrD,CAAC;IAED;;;OAGG;IACK,kCAAkC;QACxC,+EAA+E;QAC/E,MAAM,MAAM,GAAG,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;QAE1C,IAAI,MAAM,CAAC,CAAC,CAAC,KAAK,IAAI,IAAI,MAAM,CAAC,CAAC,CAAC,KAAK,0BAAc,CAAC,OAAO,EAAE;YAC9D,IAAI,CAAC,WAAW,CACd,GAAG,kBAAM,CAAC,mCAAmC,MAC3C,0BAAc,CAAC,MAAM,CAAC,CAAC,CAAC,CAC1B,EAAE,CACH,CAAC;SACH;aAAM;YACL,oBAAoB;YACpB,MAAM,WAAW,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC;YAE9B,IAAI,UAA2B,CAAC;YAChC,IAAI,IAAiB,CAAC;YAEtB,OAAO;YACP,IAAI,WAAW,KAAK,0BAAc,CAAC,IAAI,EAAE;gBACvC,8BAA8B;gBAC9B,MAAM,UAAU,GAAG,uCAA2B,CAAC,kBAAkB,CAAC;gBAClE,IAAI,IAAI,CAAC,aAAa,CAAC,MAAM,GAAG,UAAU,EAAE;oBAC1C,IAAI,CAAC,4BAA4B,GAAG,UAAU,CAAC;oBAC/C,OAAO;iBACR;gBAED,IAAI,GAAG,0BAAW,CAAC,UAAU,CAC3B,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAC5C,CAAC;gBAEF,UAAU,GAAG;oBACX,IAAI,EAAE,EAAE,CAAC,QAAQ,CAAC,IAAI,CAAC,YAAY,EAAE,CAAC;oBACtC,IAAI,EAAE,IAAI,CAAC,YAAY,EAAE;iBAC1B,CAAC;gBAEF,4DAA4D;gBAC5D,IAAI,UAAU,CAAC,IAAI,KAAK,SAAS,EAAE;oBACjC,UAAU,CAAC,IAAI,GAAG,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,SAAS,CAAC;iBAChD;gBAED,WAAW;aACZ;iBAAM,IAAI,WAAW,KAAK,0BAAc,CAAC,QAAQ,EAAE;gBAClD,MAAM,UAAU,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC;gBAC7B,MAAM,UAAU,GACd,uCAA2B,CAAC,sBAAsB,CAAC,UAAU,CAAC,CAAC,CAAC,qCAAqC;gBAEvG,8BAA8B;gBAC9B,IAAI,IAAI,CAAC,aAAa,CAAC,MAAM,GAAG,UAAU,EAAE;oBAC1C,IAAI,CAAC,4BAA4B,GAAG,UAAU,CAAC;oBAC/C,OAAO;iBACR;gBAED,IAAI,GAAG,0BAAW,CAAC,UAAU,CAC3B,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAC5C,CAAC;gBAEF,UAAU,GAAG;oBACX,IAAI,EAAE,IAAI,CAAC,UAAU,CAAC,UAAU,CAAC;oBACjC,IAAI,EAAE,IAAI,CAAC,YAAY,EAAE;iBAC1B,CAAC;gBACF,OAAO;aACR;iBAAM,IAAI,WAAW,KAAK,0BAAc,CAAC,IAAI,EAAE;gBAC9C,8BAA8B;gBAC9B,MAAM,UAAU,GAAG,uCAA2B,CAAC,kBAAkB,CAAC;gBAClE,IAAI,IAAI,CAAC,aAAa,CAAC,MAAM,GAAG,UAAU,EAAE;oBAC1C,IAAI,CAAC,4BAA4B,GAAG,UAAU,CAAC;oBAC/C,OAAO;iBACR;gBAED,IAAI,GAAG,0BAAW,CAAC,UAAU,CAC3B,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAC5C,CAAC;gBAEF,UAAU,GAAG;oBACX,IAAI,EAAE,EAAE,CAAC,QAAQ,CAAC,IAAI,CAAC,UAAU,CAAC,EAAE,CAAC,CAAC;oBACtC,IAAI,EAAE,IAAI,CAAC,YAAY,EAAE;iBAC1B,CAAC;aACH;YAED,6BAA6B;YAC7B,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,qBAAqB,CAAC,CAAC;YAEtD,gEAAgE;YAChE,IAAI,wBAAY,CAAC,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,KAAK,wBAAY,CAAC,OAAO,EAAE;gBAC/D,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,WAAW,CAAC,CAAC;gBAC5C,IAAI,CAAC,4BAA4B,EAAE,CAAC;gBACpC,IAAI,CAAC,IAAI,CAAC,aAAa,EAAE,EAAC,UAAU,EAAE,MAAM,EAAE,IAAI,CAAC,MAAM,EAAC,CAAC,CAAC;aAC7D;iBAAM,IAAI,wBAAY,CAAC,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,KAAK,wBAAY,CAAC,IAAI,EAAE;gBACnE;mHACmG;gBACnG,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,yBAAyB,CAAC,CAAC;gBAC1D,IAAI,CAAC,4BAA4B;oBAC/B,uCAA2B,CAAC,oBAAoB,CAAC;gBACnD,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE,EAAC,UAAU,EAAE,MAAM,EAAE,IAAI,CAAC,MAAM,EAAC,CAAC,CAAC;gBACtD;;;kBAGE;aACH;iBAAM,IACL,wBAAY,CAAC,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,KAAK,wBAAY,CAAC,SAAS,EAC7D;gBACA,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,WAAW,CAAC,CAAC;gBAC5C,IAAI,CAAC,4BAA4B,EAAE,CAAC;gBACpC,IAAI,CAAC,IAAI,CAAC,aAAa,EAAE;oBACvB,UAAU;oBACV,MAAM,EAAE,IAAI,CAAC,MAAM;iBACpB,CAAC,CAAC;aACJ;SACF;IACH,CAAC;IAED;;OAEG;IACK,sCAAsC;QAC5C,+EAA+E;QAC/E,MAAM,MAAM,GAAG,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;QAE1C,IAAI,MAAM,CAAC,CAAC,CAAC,KAAK,IAAI,IAAI,MAAM,CAAC,CAAC,CAAC,KAAK,0BAAc,CAAC,OAAO,EAAE;YAC9D,IAAI,CAAC,WAAW,CACd,GAAG,kBAAM,CAAC,0CAA0C,MAClD,0BAAc,CAAC,MAAM,CAAC,CAAC,CAAC,CAC1B,EAAE,CACH,CAAC;SACH;aAAM;YACL,oBAAoB;YACpB,MAAM,WAAW,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC;YAE9B,IAAI,UAA2B,CAAC;YAChC,IAAI,IAAiB,CAAC;YAEtB,OAAO;YACP,IAAI,WAAW,KAAK,0BAAc,CAAC,IAAI,EAAE;gBACvC,8BAA8B;gBAC9B,MAAM,UAAU,GAAG,uCAA2B,CAAC,kBAAkB,CAAC;gBAClE,IAAI,IAAI,CAAC,aAAa,CAAC,MAAM,GAAG,UAAU,EAAE;oBAC1C,IAAI,CAAC,4BAA4B,GAAG,UAAU,CAAC;oBAC/C,OAAO;iBACR;gBAED,IAAI,GAAG,0BAAW,CAAC,UAAU,CAC3B,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAC5C,CAAC;gBAEF,UAAU,GAAG;oBACX,IAAI,EAAE,EAAE,CAAC,QAAQ,CAAC,IAAI,CAAC,YAAY,EAAE,CAAC;oBACtC,IAAI,EAAE,IAAI,CAAC,YAAY,EAAE;iBAC1B,CAAC;gBAEF,4DAA4D;gBAC5D,IAAI,UAAU,CAAC,IAAI,KAAK,SAAS,EAAE;oBACjC,UAAU,CAAC,IAAI,GAAG,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,SAAS,CAAC;iBAChD;gBAED,WAAW;aACZ;iBAAM,IAAI,WAAW,KAAK,0BAAc,CAAC,QAAQ,EAAE;gBAClD,MAAM,UAAU,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC;gBAC7B,MAAM,UAAU,GACd,uCAA2B,CAAC,sBAAsB,CAAC,UAAU,CAAC,CAAC,CAAC,8BAA8B;gBAEhG,8BAA8B;gBAC9B,IAAI,IAAI,CAAC,aAAa,CAAC,MAAM,GAAG,UAAU,EAAE;oBAC1C,IAAI,CAAC,4BAA4B,GAAG,UAAU,CAAC;oBAC/C,OAAO;iBACR;gBAED,IAAI,GAAG,0BAAW,CAAC,UAAU,CAC3B,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAC5C,CAAC;gBAEF,UAAU,GAAG;oBACX,IAAI,EAAE,IAAI,CAAC,UAAU,CAAC,UAAU,CAAC;oBACjC,IAAI,EAAE,IAAI,CAAC,YAAY,EAAE;iBAC1B,CAAC;gBACF,OAAO;aACR;iBAAM,IAAI,WAAW,KAAK,0BAAc,CAAC,IAAI,EAAE;gBAC9C,8BAA8B;gBAC9B,MAAM,UAAU,GAAG,uCAA2B,CAAC,kBAAkB,CAAC;gBAClE,IAAI,IAAI,CAAC,aAAa,CAAC,MAAM,GAAG,UAAU,EAAE;oBAC1C,IAAI,CAAC,4BAA4B,GAAG,UAAU,CAAC;oBAC/C,OAAO;iBACR;gBAED,IAAI,GAAG,0BAAW,CAAC,UAAU,CAC3B,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAC5C,CAAC;gBAEF,UAAU,GAAG;oBACX,IAAI,EAAE,EAAE,CAAC,QAAQ,CAAC,IAAI,CAAC,UAAU,CAAC,EAAE,CAAC,CAAC;oBACtC,IAAI,EAAE,IAAI,CAAC,YAAY,EAAE;iBAC1B,CAAC;aACH;YAED,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,WAAW,CAAC,CAAC;YAC5C,IAAI,CAAC,4BAA4B,EAAE,CAAC;YACpC,IAAI,CAAC,IAAI,CAAC,aAAa,EAAE,EAAC,UAAU,EAAE,MAAM,EAAE,IAAI,CAAC,MAAM,EAAC,CAAC,CAAC;SAC7D;IACH,CAAC;IAED,IAAI,kBAAkB;QACpB,yBACK,IAAI,CAAC,OAAO,EACf;IACJ,CAAC;CACF;AAGC,kCAAW"} \ No newline at end of file diff --git a/node_modules/socks/build/common/constants.js b/node_modules/socks/build/common/constants.js new file mode 100644 index 000000000..3c9ff90ac --- /dev/null +++ b/node_modules/socks/build/common/constants.js @@ -0,0 +1,114 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SOCKS5_NO_ACCEPTABLE_AUTH = exports.SOCKS5_CUSTOM_AUTH_END = exports.SOCKS5_CUSTOM_AUTH_START = exports.SOCKS_INCOMING_PACKET_SIZES = exports.SocksClientState = exports.Socks5Response = exports.Socks5HostType = exports.Socks5Auth = exports.Socks4Response = exports.SocksCommand = exports.ERRORS = exports.DEFAULT_TIMEOUT = void 0; +const DEFAULT_TIMEOUT = 30000; +exports.DEFAULT_TIMEOUT = DEFAULT_TIMEOUT; +// prettier-ignore +const ERRORS = { + InvalidSocksCommand: 'An invalid SOCKS command was provided. Valid options are connect, bind, and associate.', + InvalidSocksCommandForOperation: 'An invalid SOCKS command was provided. Only a subset of commands are supported for this operation.', + InvalidSocksCommandChain: 'An invalid SOCKS command was provided. Chaining currently only supports the connect command.', + InvalidSocksClientOptionsDestination: 'An invalid destination host was provided.', + InvalidSocksClientOptionsExistingSocket: 'An invalid existing socket was provided. This should be an instance of stream.Duplex.', + InvalidSocksClientOptionsProxy: 'Invalid SOCKS proxy details were provided.', + InvalidSocksClientOptionsTimeout: 'An invalid timeout value was provided. Please enter a value above 0 (in ms).', + InvalidSocksClientOptionsProxiesLength: 'At least two socks proxies must be provided for chaining.', + InvalidSocksClientOptionsCustomAuthRange: 'Custom auth must be a value between 0x80 and 0xFE.', + InvalidSocksClientOptionsCustomAuthOptions: 'When a custom_auth_method is provided, custom_auth_request_handler, custom_auth_response_size, and custom_auth_response_handler must also be provided and valid.', + NegotiationError: 'Negotiation error', + SocketClosed: 'Socket closed', + ProxyConnectionTimedOut: 'Proxy connection timed out', + InternalError: 'SocksClient internal error (this should not happen)', + InvalidSocks4HandshakeResponse: 'Received invalid Socks4 handshake response', + Socks4ProxyRejectedConnection: 'Socks4 Proxy rejected connection', + InvalidSocks4IncomingConnectionResponse: 'Socks4 invalid incoming connection response', + Socks4ProxyRejectedIncomingBoundConnection: 'Socks4 Proxy rejected incoming bound connection', + InvalidSocks5InitialHandshakeResponse: 'Received invalid Socks5 initial handshake response', + InvalidSocks5IntiailHandshakeSocksVersion: 'Received invalid Socks5 initial handshake (invalid socks version)', + InvalidSocks5InitialHandshakeNoAcceptedAuthType: 'Received invalid Socks5 initial handshake (no accepted authentication type)', + InvalidSocks5InitialHandshakeUnknownAuthType: 'Received invalid Socks5 initial handshake (unknown authentication type)', + Socks5AuthenticationFailed: 'Socks5 Authentication failed', + InvalidSocks5FinalHandshake: 'Received invalid Socks5 final handshake response', + InvalidSocks5FinalHandshakeRejected: 'Socks5 proxy rejected connection', + InvalidSocks5IncomingConnectionResponse: 'Received invalid Socks5 incoming connection response', + Socks5ProxyRejectedIncomingBoundConnection: 'Socks5 Proxy rejected incoming bound connection', +}; +exports.ERRORS = ERRORS; +const SOCKS_INCOMING_PACKET_SIZES = { + Socks5InitialHandshakeResponse: 2, + Socks5UserPassAuthenticationResponse: 2, + // Command response + incoming connection (bind) + Socks5ResponseHeader: 5, + Socks5ResponseIPv4: 10, + Socks5ResponseIPv6: 22, + Socks5ResponseHostname: (hostNameLength) => hostNameLength + 7, + // Command response + incoming connection (bind) + Socks4Response: 8, // 2 header + 2 port + 4 ip +}; +exports.SOCKS_INCOMING_PACKET_SIZES = SOCKS_INCOMING_PACKET_SIZES; +var SocksCommand; +(function (SocksCommand) { + SocksCommand[SocksCommand["connect"] = 1] = "connect"; + SocksCommand[SocksCommand["bind"] = 2] = "bind"; + SocksCommand[SocksCommand["associate"] = 3] = "associate"; +})(SocksCommand || (SocksCommand = {})); +exports.SocksCommand = SocksCommand; +var Socks4Response; +(function (Socks4Response) { + Socks4Response[Socks4Response["Granted"] = 90] = "Granted"; + Socks4Response[Socks4Response["Failed"] = 91] = "Failed"; + Socks4Response[Socks4Response["Rejected"] = 92] = "Rejected"; + Socks4Response[Socks4Response["RejectedIdent"] = 93] = "RejectedIdent"; +})(Socks4Response || (Socks4Response = {})); +exports.Socks4Response = Socks4Response; +var Socks5Auth; +(function (Socks5Auth) { + Socks5Auth[Socks5Auth["NoAuth"] = 0] = "NoAuth"; + Socks5Auth[Socks5Auth["GSSApi"] = 1] = "GSSApi"; + Socks5Auth[Socks5Auth["UserPass"] = 2] = "UserPass"; +})(Socks5Auth || (Socks5Auth = {})); +exports.Socks5Auth = Socks5Auth; +const SOCKS5_CUSTOM_AUTH_START = 0x80; +exports.SOCKS5_CUSTOM_AUTH_START = SOCKS5_CUSTOM_AUTH_START; +const SOCKS5_CUSTOM_AUTH_END = 0xfe; +exports.SOCKS5_CUSTOM_AUTH_END = SOCKS5_CUSTOM_AUTH_END; +const SOCKS5_NO_ACCEPTABLE_AUTH = 0xff; +exports.SOCKS5_NO_ACCEPTABLE_AUTH = SOCKS5_NO_ACCEPTABLE_AUTH; +var Socks5Response; +(function (Socks5Response) { + Socks5Response[Socks5Response["Granted"] = 0] = "Granted"; + Socks5Response[Socks5Response["Failure"] = 1] = "Failure"; + Socks5Response[Socks5Response["NotAllowed"] = 2] = "NotAllowed"; + Socks5Response[Socks5Response["NetworkUnreachable"] = 3] = "NetworkUnreachable"; + Socks5Response[Socks5Response["HostUnreachable"] = 4] = "HostUnreachable"; + Socks5Response[Socks5Response["ConnectionRefused"] = 5] = "ConnectionRefused"; + Socks5Response[Socks5Response["TTLExpired"] = 6] = "TTLExpired"; + Socks5Response[Socks5Response["CommandNotSupported"] = 7] = "CommandNotSupported"; + Socks5Response[Socks5Response["AddressNotSupported"] = 8] = "AddressNotSupported"; +})(Socks5Response || (Socks5Response = {})); +exports.Socks5Response = Socks5Response; +var Socks5HostType; +(function (Socks5HostType) { + Socks5HostType[Socks5HostType["IPv4"] = 1] = "IPv4"; + Socks5HostType[Socks5HostType["Hostname"] = 3] = "Hostname"; + Socks5HostType[Socks5HostType["IPv6"] = 4] = "IPv6"; +})(Socks5HostType || (Socks5HostType = {})); +exports.Socks5HostType = Socks5HostType; +var SocksClientState; +(function (SocksClientState) { + SocksClientState[SocksClientState["Created"] = 0] = "Created"; + SocksClientState[SocksClientState["Connecting"] = 1] = "Connecting"; + SocksClientState[SocksClientState["Connected"] = 2] = "Connected"; + SocksClientState[SocksClientState["SentInitialHandshake"] = 3] = "SentInitialHandshake"; + SocksClientState[SocksClientState["ReceivedInitialHandshakeResponse"] = 4] = "ReceivedInitialHandshakeResponse"; + SocksClientState[SocksClientState["SentAuthentication"] = 5] = "SentAuthentication"; + SocksClientState[SocksClientState["ReceivedAuthenticationResponse"] = 6] = "ReceivedAuthenticationResponse"; + SocksClientState[SocksClientState["SentFinalHandshake"] = 7] = "SentFinalHandshake"; + SocksClientState[SocksClientState["ReceivedFinalResponse"] = 8] = "ReceivedFinalResponse"; + SocksClientState[SocksClientState["BoundWaitingForConnection"] = 9] = "BoundWaitingForConnection"; + SocksClientState[SocksClientState["Established"] = 10] = "Established"; + SocksClientState[SocksClientState["Disconnected"] = 11] = "Disconnected"; + SocksClientState[SocksClientState["Error"] = 99] = "Error"; +})(SocksClientState || (SocksClientState = {})); +exports.SocksClientState = SocksClientState; +//# sourceMappingURL=constants.js.map \ No newline at end of file diff --git a/node_modules/socks/build/common/constants.js.map b/node_modules/socks/build/common/constants.js.map new file mode 100644 index 000000000..c1e070dea --- /dev/null +++ b/node_modules/socks/build/common/constants.js.map @@ -0,0 +1 @@ +{"version":3,"file":"constants.js","sourceRoot":"","sources":["../../src/common/constants.ts"],"names":[],"mappings":";;;AAIA,MAAM,eAAe,GAAG,KAAK,CAAC;AA4M5B,0CAAe;AAxMjB,kBAAkB;AAClB,MAAM,MAAM,GAAG;IACb,mBAAmB,EAAE,wFAAwF;IAC7G,+BAA+B,EAAE,oGAAoG;IACrI,wBAAwB,EAAE,8FAA8F;IACxH,oCAAoC,EAAE,2CAA2C;IACjF,uCAAuC,EAAE,uFAAuF;IAChI,8BAA8B,EAAE,4CAA4C;IAC5E,gCAAgC,EAAE,8EAA8E;IAChH,sCAAsC,EAAE,2DAA2D;IACnG,wCAAwC,EAAE,oDAAoD;IAC9F,0CAA0C,EAAE,kKAAkK;IAC9M,gBAAgB,EAAE,mBAAmB;IACrC,YAAY,EAAE,eAAe;IAC7B,uBAAuB,EAAE,4BAA4B;IACrD,aAAa,EAAE,qDAAqD;IACpE,8BAA8B,EAAE,4CAA4C;IAC5E,6BAA6B,EAAE,kCAAkC;IACjE,uCAAuC,EAAE,6CAA6C;IACtF,0CAA0C,EAAE,iDAAiD;IAC7F,qCAAqC,EAAE,oDAAoD;IAC3F,yCAAyC,EAAE,mEAAmE;IAC9G,+CAA+C,EAAE,6EAA6E;IAC9H,4CAA4C,EAAE,yEAAyE;IACvH,0BAA0B,EAAE,8BAA8B;IAC1D,2BAA2B,EAAE,kDAAkD;IAC/E,mCAAmC,EAAE,kCAAkC;IACvE,uCAAuC,EAAE,sDAAsD;IAC/F,0CAA0C,EAAE,iDAAiD;CAC9F,CAAC;AA4KA,wBAAM;AA1KR,MAAM,2BAA2B,GAAG;IAClC,8BAA8B,EAAE,CAAC;IACjC,oCAAoC,EAAE,CAAC;IACvC,gDAAgD;IAChD,oBAAoB,EAAE,CAAC;IACvB,kBAAkB,EAAE,EAAE;IACtB,kBAAkB,EAAE,EAAE;IACtB,sBAAsB,EAAE,CAAC,cAAsB,EAAE,EAAE,CAAC,cAAc,GAAG,CAAC;IACtE,gDAAgD;IAChD,cAAc,EAAE,CAAC,EAAE,2BAA2B;CAC/C,CAAC;AAgLA,kEAA2B;AA5K7B,IAAK,YAIJ;AAJD,WAAK,YAAY;IACf,qDAAc,CAAA;IACd,+CAAW,CAAA;IACX,yDAAgB,CAAA;AAClB,CAAC,EAJI,YAAY,KAAZ,YAAY,QAIhB;AA0JC,oCAAY;AAxJd,IAAK,cAKJ;AALD,WAAK,cAAc;IACjB,0DAAc,CAAA;IACd,wDAAa,CAAA;IACb,4DAAe,CAAA;IACf,sEAAoB,CAAA;AACtB,CAAC,EALI,cAAc,KAAd,cAAc,QAKlB;AAoJC,wCAAc;AAlJhB,IAAK,UAIJ;AAJD,WAAK,UAAU;IACb,+CAAa,CAAA;IACb,+CAAa,CAAA;IACb,mDAAe,CAAA;AACjB,CAAC,EAJI,UAAU,KAAV,UAAU,QAId;AA+IC,gCAAU;AA7IZ,MAAM,wBAAwB,GAAG,IAAI,CAAC;AA0JpC,4DAAwB;AAzJ1B,MAAM,sBAAsB,GAAG,IAAI,CAAC;AA0JlC,wDAAsB;AAxJxB,MAAM,yBAAyB,GAAG,IAAI,CAAC;AAyJrC,8DAAyB;AAvJ3B,IAAK,cAUJ;AAVD,WAAK,cAAc;IACjB,yDAAc,CAAA;IACd,yDAAc,CAAA;IACd,+DAAiB,CAAA;IACjB,+EAAyB,CAAA;IACzB,yEAAsB,CAAA;IACtB,6EAAwB,CAAA;IACxB,+DAAiB,CAAA;IACjB,iFAA0B,CAAA;IAC1B,iFAA0B,CAAA;AAC5B,CAAC,EAVI,cAAc,KAAd,cAAc,QAUlB;AAgIC,wCAAc;AA9HhB,IAAK,cAIJ;AAJD,WAAK,cAAc;IACjB,mDAAW,CAAA;IACX,2DAAe,CAAA;IACf,mDAAW,CAAA;AACb,CAAC,EAJI,cAAc,KAAd,cAAc,QAIlB;AAyHC,wCAAc;AAvHhB,IAAK,gBAcJ;AAdD,WAAK,gBAAgB;IACnB,6DAAW,CAAA;IACX,mEAAc,CAAA;IACd,iEAAa,CAAA;IACb,uFAAwB,CAAA;IACxB,+GAAoC,CAAA;IACpC,mFAAsB,CAAA;IACtB,2GAAkC,CAAA;IAClC,mFAAsB,CAAA;IACtB,yFAAyB,CAAA;IACzB,iGAA6B,CAAA;IAC7B,sEAAgB,CAAA;IAChB,wEAAiB,CAAA;IACjB,0DAAU,CAAA;AACZ,CAAC,EAdI,gBAAgB,KAAhB,gBAAgB,QAcpB;AA2GC,4CAAgB"} \ No newline at end of file diff --git a/node_modules/socks/build/common/helpers.js b/node_modules/socks/build/common/helpers.js new file mode 100644 index 000000000..f84db8f67 --- /dev/null +++ b/node_modules/socks/build/common/helpers.js @@ -0,0 +1,128 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.validateSocksClientChainOptions = exports.validateSocksClientOptions = void 0; +const util_1 = require("./util"); +const constants_1 = require("./constants"); +const stream = require("stream"); +/** + * Validates the provided SocksClientOptions + * @param options { SocksClientOptions } + * @param acceptedCommands { string[] } A list of accepted SocksProxy commands. + */ +function validateSocksClientOptions(options, acceptedCommands = ['connect', 'bind', 'associate']) { + // Check SOCKs command option. + if (!constants_1.SocksCommand[options.command]) { + throw new util_1.SocksClientError(constants_1.ERRORS.InvalidSocksCommand, options); + } + // Check SocksCommand for acceptable command. + if (acceptedCommands.indexOf(options.command) === -1) { + throw new util_1.SocksClientError(constants_1.ERRORS.InvalidSocksCommandForOperation, options); + } + // Check destination + if (!isValidSocksRemoteHost(options.destination)) { + throw new util_1.SocksClientError(constants_1.ERRORS.InvalidSocksClientOptionsDestination, options); + } + // Check SOCKS proxy to use + if (!isValidSocksProxy(options.proxy)) { + throw new util_1.SocksClientError(constants_1.ERRORS.InvalidSocksClientOptionsProxy, options); + } + // Validate custom auth (if set) + validateCustomProxyAuth(options.proxy, options); + // Check timeout + if (options.timeout && !isValidTimeoutValue(options.timeout)) { + throw new util_1.SocksClientError(constants_1.ERRORS.InvalidSocksClientOptionsTimeout, options); + } + // Check existing_socket (if provided) + if (options.existing_socket && + !(options.existing_socket instanceof stream.Duplex)) { + throw new util_1.SocksClientError(constants_1.ERRORS.InvalidSocksClientOptionsExistingSocket, options); + } +} +exports.validateSocksClientOptions = validateSocksClientOptions; +/** + * Validates the SocksClientChainOptions + * @param options { SocksClientChainOptions } + */ +function validateSocksClientChainOptions(options) { + // Only connect is supported when chaining. + if (options.command !== 'connect') { + throw new util_1.SocksClientError(constants_1.ERRORS.InvalidSocksCommandChain, options); + } + // Check destination + if (!isValidSocksRemoteHost(options.destination)) { + throw new util_1.SocksClientError(constants_1.ERRORS.InvalidSocksClientOptionsDestination, options); + } + // Validate proxies (length) + if (!(options.proxies && + Array.isArray(options.proxies) && + options.proxies.length >= 2)) { + throw new util_1.SocksClientError(constants_1.ERRORS.InvalidSocksClientOptionsProxiesLength, options); + } + // Validate proxies + options.proxies.forEach((proxy) => { + if (!isValidSocksProxy(proxy)) { + throw new util_1.SocksClientError(constants_1.ERRORS.InvalidSocksClientOptionsProxy, options); + } + // Validate custom auth (if set) + validateCustomProxyAuth(proxy, options); + }); + // Check timeout + if (options.timeout && !isValidTimeoutValue(options.timeout)) { + throw new util_1.SocksClientError(constants_1.ERRORS.InvalidSocksClientOptionsTimeout, options); + } +} +exports.validateSocksClientChainOptions = validateSocksClientChainOptions; +function validateCustomProxyAuth(proxy, options) { + if (proxy.custom_auth_method !== undefined) { + // Invalid auth method range + if (proxy.custom_auth_method < constants_1.SOCKS5_CUSTOM_AUTH_START || + proxy.custom_auth_method > constants_1.SOCKS5_CUSTOM_AUTH_END) { + throw new util_1.SocksClientError(constants_1.ERRORS.InvalidSocksClientOptionsCustomAuthRange, options); + } + // Missing custom_auth_request_handler + if (proxy.custom_auth_request_handler === undefined || + typeof proxy.custom_auth_request_handler !== 'function') { + throw new util_1.SocksClientError(constants_1.ERRORS.InvalidSocksClientOptionsCustomAuthOptions, options); + } + // Missing custom_auth_response_size + if (proxy.custom_auth_response_size === undefined) { + throw new util_1.SocksClientError(constants_1.ERRORS.InvalidSocksClientOptionsCustomAuthOptions, options); + } + // Missing/invalid custom_auth_response_handler + if (proxy.custom_auth_response_handler === undefined || + typeof proxy.custom_auth_response_handler !== 'function') { + throw new util_1.SocksClientError(constants_1.ERRORS.InvalidSocksClientOptionsCustomAuthOptions, options); + } + } +} +/** + * Validates a SocksRemoteHost + * @param remoteHost { SocksRemoteHost } + */ +function isValidSocksRemoteHost(remoteHost) { + return (remoteHost && + typeof remoteHost.host === 'string' && + typeof remoteHost.port === 'number' && + remoteHost.port >= 0 && + remoteHost.port <= 65535); +} +/** + * Validates a SocksProxy + * @param proxy { SocksProxy } + */ +function isValidSocksProxy(proxy) { + return (proxy && + (typeof proxy.host === 'string' || typeof proxy.ipaddress === 'string') && + typeof proxy.port === 'number' && + proxy.port >= 0 && + proxy.port <= 65535 && + (proxy.type === 4 || proxy.type === 5)); +} +/** + * Validates a timeout value. + * @param value { Number } + */ +function isValidTimeoutValue(value) { + return typeof value === 'number' && value > 0; +} +//# sourceMappingURL=helpers.js.map \ No newline at end of file diff --git a/node_modules/socks/build/common/helpers.js.map b/node_modules/socks/build/common/helpers.js.map new file mode 100644 index 000000000..dae124861 --- /dev/null +++ b/node_modules/socks/build/common/helpers.js.map @@ -0,0 +1 @@ +{"version":3,"file":"helpers.js","sourceRoot":"","sources":["../../src/common/helpers.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/socks/build/common/receivebuffer.js b/node_modules/socks/build/common/receivebuffer.js new file mode 100644 index 000000000..3dacbf9b9 --- /dev/null +++ b/node_modules/socks/build/common/receivebuffer.js @@ -0,0 +1,43 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.ReceiveBuffer = void 0; +class ReceiveBuffer { + constructor(size = 4096) { + this.buffer = Buffer.allocUnsafe(size); + this.offset = 0; + this.originalSize = size; + } + get length() { + return this.offset; + } + append(data) { + if (!Buffer.isBuffer(data)) { + throw new Error('Attempted to append a non-buffer instance to ReceiveBuffer.'); + } + if (this.offset + data.length >= this.buffer.length) { + const tmp = this.buffer; + this.buffer = Buffer.allocUnsafe(Math.max(this.buffer.length + this.originalSize, this.buffer.length + data.length)); + tmp.copy(this.buffer); + } + data.copy(this.buffer, this.offset); + return (this.offset += data.length); + } + peek(length) { + if (length > this.offset) { + throw new Error('Attempted to read beyond the bounds of the managed internal data.'); + } + return this.buffer.slice(0, length); + } + get(length) { + if (length > this.offset) { + throw new Error('Attempted to read beyond the bounds of the managed internal data.'); + } + const value = Buffer.allocUnsafe(length); + this.buffer.slice(0, length).copy(value); + this.buffer.copyWithin(0, length, length + this.offset - length); + this.offset -= length; + return value; + } +} +exports.ReceiveBuffer = ReceiveBuffer; +//# sourceMappingURL=receivebuffer.js.map \ No newline at end of file diff --git a/node_modules/socks/build/common/receivebuffer.js.map b/node_modules/socks/build/common/receivebuffer.js.map new file mode 100644 index 000000000..af5e22090 --- /dev/null +++ b/node_modules/socks/build/common/receivebuffer.js.map @@ -0,0 +1 @@ +{"version":3,"file":"receivebuffer.js","sourceRoot":"","sources":["../../src/common/receivebuffer.ts"],"names":[],"mappings":";;;AAAA,MAAM,aAAa;IAKjB,YAAY,IAAI,GAAG,IAAI;QACrB,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC;QACvC,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC;QAChB,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC;IAC3B,CAAC;IAED,IAAI,MAAM;QACR,OAAO,IAAI,CAAC,MAAM,CAAC;IACrB,CAAC;IAED,MAAM,CAAC,IAAY;QACjB,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,IAAI,CAAC,EAAE;YAC1B,MAAM,IAAI,KAAK,CACb,6DAA6D,CAC9D,CAAC;SACH;QAED,IAAI,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,IAAI,IAAI,CAAC,MAAM,CAAC,MAAM,EAAE;YACnD,MAAM,GAAG,GAAG,IAAI,CAAC,MAAM,CAAC;YACxB,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC,WAAW,CAC9B,IAAI,CAAC,GAAG,CACN,IAAI,CAAC,MAAM,CAAC,MAAM,GAAG,IAAI,CAAC,YAAY,EACtC,IAAI,CAAC,MAAM,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CACjC,CACF,CAAC;YACF,GAAG,CAAC,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;SACvB;QAED,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC,CAAC;QACpC,OAAO,CAAC,IAAI,CAAC,MAAM,IAAI,IAAI,CAAC,MAAM,CAAC,CAAC;IACtC,CAAC;IAED,IAAI,CAAC,MAAc;QACjB,IAAI,MAAM,GAAG,IAAI,CAAC,MAAM,EAAE;YACxB,MAAM,IAAI,KAAK,CACb,mEAAmE,CACpE,CAAC;SACH;QACD,OAAO,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC;IACtC,CAAC;IAED,GAAG,CAAC,MAAc;QAChB,IAAI,MAAM,GAAG,IAAI,CAAC,MAAM,EAAE;YACxB,MAAM,IAAI,KAAK,CACb,mEAAmE,CACpE,CAAC;SACH;QAED,MAAM,KAAK,GAAG,MAAM,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC;QACzC,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;QACzC,IAAI,CAAC,MAAM,CAAC,UAAU,CAAC,CAAC,EAAE,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC,CAAC;QACjE,IAAI,CAAC,MAAM,IAAI,MAAM,CAAC;QAEtB,OAAO,KAAK,CAAC;IACf,CAAC;CACF;AAEO,sCAAa"} \ No newline at end of file diff --git a/node_modules/socks/build/common/util.js b/node_modules/socks/build/common/util.js new file mode 100644 index 000000000..f66b72e43 --- /dev/null +++ b/node_modules/socks/build/common/util.js @@ -0,0 +1,25 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.shuffleArray = exports.SocksClientError = void 0; +/** + * Error wrapper for SocksClient + */ +class SocksClientError extends Error { + constructor(message, options) { + super(message); + this.options = options; + } +} +exports.SocksClientError = SocksClientError; +/** + * Shuffles a given array. + * @param array The array to shuffle. + */ +function shuffleArray(array) { + for (let i = array.length - 1; i > 0; i--) { + const j = Math.floor(Math.random() * (i + 1)); + [array[i], array[j]] = [array[j], array[i]]; + } +} +exports.shuffleArray = shuffleArray; +//# sourceMappingURL=util.js.map \ No newline at end of file diff --git a/node_modules/socks/build/common/util.js.map b/node_modules/socks/build/common/util.js.map new file mode 100644 index 000000000..f1993233d --- /dev/null +++ b/node_modules/socks/build/common/util.js.map @@ -0,0 +1 @@ +{"version":3,"file":"util.js","sourceRoot":"","sources":["../../src/common/util.ts"],"names":[],"mappings":";;;AAEA;;GAEG;AACH,MAAM,gBAAiB,SAAQ,KAAK;IAClC,YACE,OAAe,EACR,OAAqD;QAE5D,KAAK,CAAC,OAAO,CAAC,CAAC;QAFR,YAAO,GAAP,OAAO,CAA8C;IAG9D,CAAC;CACF;AAuBuB,4CAAgB;AArBxC;;;GAGG;AACH,SAAS,YAAY,CAAC,KAAgB;IACpC,KAAK,IAAI,CAAC,GAAG,KAAK,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,EAAE,EAAE;QACzC,MAAM,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;QAC9C,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC;KAC7C;AACH,CAAC;AAYyC,oCAAY"} \ No newline at end of file diff --git a/node_modules/socks/build/index.js b/node_modules/socks/build/index.js new file mode 100644 index 000000000..05fbb1d94 --- /dev/null +++ b/node_modules/socks/build/index.js @@ -0,0 +1,18 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __exportStar = (this && this.__exportStar) || function(m, exports) { + for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p); +}; +Object.defineProperty(exports, "__esModule", { value: true }); +__exportStar(require("./client/socksclient"), exports); +//# sourceMappingURL=index.js.map \ No newline at end of file diff --git a/node_modules/socks/build/index.js.map b/node_modules/socks/build/index.js.map new file mode 100644 index 000000000..0e2bcb27b --- /dev/null +++ b/node_modules/socks/build/index.js.map @@ -0,0 +1 @@ +{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,uDAAqC"} \ No newline at end of file diff --git a/node_modules/socks/docs/examples/index.md b/node_modules/socks/docs/examples/index.md new file mode 100644 index 000000000..87bfe250e --- /dev/null +++ b/node_modules/socks/docs/examples/index.md @@ -0,0 +1,17 @@ +# socks examples + +## TypeScript Examples + +[Connect command](typescript/connectExample.md) + +[Bind command](typescript/bindExample.md) + +[Associate command](typescript/associateExample.md) + +## JavaScript Examples + +[Connect command](javascript/connectExample.md) + +[Bind command](javascript/bindExample.md) + +[Associate command](javascript/associateExample.md) \ No newline at end of file diff --git a/node_modules/socks/docs/examples/javascript/associateExample.md b/node_modules/socks/docs/examples/javascript/associateExample.md new file mode 100644 index 000000000..c2c7b17b7 --- /dev/null +++ b/node_modules/socks/docs/examples/javascript/associateExample.md @@ -0,0 +1,90 @@ +# socks examples + +## Example for SOCKS 'associate' command + +The associate command tells the SOCKS proxy server to establish a UDP relay. The server binds to a new UDP port and communicates the newly opened port back to the origin client. From here, any SOCKS UDP frame packets sent to this special UDP port on the Proxy server will be forwarded to the desired destination, and any responses will be forwarded back to the origin client (you). + +This can be used for things such as DNS queries, and other UDP communicates. + +**Connection Steps** + +1. Client -(associate)-> Proxy (Tells the proxy to create a UDP relay and bind on a new port) +2. Client <-(port)- Proxy (Tells the origin client which port it opened and is accepting UDP frame packets on) + +At this point the proxy is accepting UDP frames on the specified port. + +3. Client --(udp frame) -> Proxy -> Destination (The origin client sends a UDP frame to the proxy on the UDP port, and the proxy then forwards it to the destination specified in the UDP frame.) +4. Client <--(udp frame) <-- Proxy <-- Destination (The destination client responds to the udp packet sent in #3) + +## Usage + +The 'associate' command can only be used by creating a new SocksClient instance and listening for the 'established' event. + +**Note:** UDP packets relayed through the proxy servers are encompassed in a special Socks UDP frame format. SocksClient.createUDPFrame() and SocksClient.parseUDPFrame() create and parse these special UDP packets. + +```typescript +const dgram = require('dgram'); +const SocksClient = require('socks').SocksClient; + +// Create a local UDP socket for sending/receiving packets to/from the proxy. +const udpSocket = dgram.createSocket('udp4'); +udpSocket.bind(); + +// Listen for incoming UDP packets from the proxy server. +udpSocket.on('message', (message, rinfo) => { + console.log(SocksClient.parseUDPFrame(message)); + /* + { frameNumber: 0, + remoteHost: { host: '8.8.8.8', port: 53 }, // The remote host that replied with a UDP packet + data: // The data + } + */ +}); + +const options = { + proxy: { + host: '104.131.124.203', + port: 1081, + type: 5 + }, + + // This should be the ip and port of the expected client that will be sending UDP frames to the newly opened UDP port on the server. + // Most SOCKS servers accept 0.0.0.0 as a wildcard address to accept UDP frames from any source. + destination: { + host: '0.0.0.0', + port: 0 + }, + + command: 'associate' +}; + +const client = new SocksClient(options); + +// This event is fired when the SOCKS server has started listening on a new UDP port for UDP relaying. +client.on('established', info => { + console.log(info); + /* + { + socket: , + remoteHost: { // This is the remote port on the SOCKS proxy server to send UDP frame packets to. + host: '104.131.124.203', + port: 58232 + } + } + */ + + // Send a udp frame to 8.8.8.8 on port 53 through the proxy. + const packet = SocksClient.createUDPFrame({ + remoteHost: { host: '8.8.8.8', port: 53 }, + data: Buffer.from('hello') // A DNS lookup in the real world. + }); + + // Send packet. + udpSocket.send(packet, info.remoteHost.port, info.remoteHost.host); +}); + +// SOCKS proxy failed to bind. +client.on('error', () => { + // Handle errors +}); +``` diff --git a/node_modules/socks/docs/examples/javascript/bindExample.md b/node_modules/socks/docs/examples/javascript/bindExample.md new file mode 100644 index 000000000..be601d522 --- /dev/null +++ b/node_modules/socks/docs/examples/javascript/bindExample.md @@ -0,0 +1,83 @@ +# socks examples + +## Example for SOCKS 'bind' command + +The bind command tells the SOCKS proxy server to bind and listen on a new TCP port for an incoming connection. It communicates the newly opened port back to the origin client. Once a incoming connection is accepted by the SOCKS proxy server it then communicates the remote host that connected to the SOCKS proxy back through the same initial connection via the origin client. + +This can be used for things such as FTP clients which require incoming TCP connections, etc. + +**Connection Steps** + +1. Client -(bind)-> Proxy (Tells the proxy to bind to a new port) +2. Client <-(port)- Proxy (Tells the origin client which port it opened) +3. Client2 --> Proxy (Other client connects to the proxy on this port) +4. Client <--(client2's host info) (Proxy tells the origin client who connected to it) +5. Original connection to the proxy is now a full TCP stream between client (you) and client2. +6. Client <--> Proxy <--> Client2 + + +## Usage + +The 'bind' command can only be used by creating a new SocksClient instance and listening for 'bound' and 'established' events. + + +```typescript +const SocksClient = require('socks').SocksClient; + +const options = { + proxy: { + host: '104.131.124.203', + port: 1081, + type: 5 + }, + + // This should be the ip and port of the expected client that will connect to the SOCKS proxy server on the newly bound port. + // Most SOCKS servers accept 0.0.0.0 as a wildcard address to accept any client. + destination: { + host: '0.0.0.0', + port: 0 + }, + + command: 'bind' +}; + +const client = new SocksClient(options); + +// This event is fired when the SOCKS server has started listening on a new port for incoming connections. +client.on('bound', (info) => { + console.log(info); + /* + { + socket: , + remoteHost: { // This is the remote ip and port of the SOCKS proxy that is now accepting incoming connections. + host: '104.131.124.203', + port: 49928 + } + } + */ +}); + +// This event is fired when the SOCKS server has accepted an incoming connection on the newly bound port. +client.on('established', (info) => { + console.log(info); + /* + { + socket: , + remoteHost: { // This is the remote ip and port that connected to the SOCKS proxy on the newly bound port. + host: '1.2.3.4', + port: 58232 + } + } + */ + + // At this point info.socket is a regular net.Socket TCP connection between client and client2 (1.2.3.4) (the client which connected to the proxy on the newly bound port.) + + console.log(info.socket); + // (this is a raw net.Socket that is established to the destination host through the given proxy servers) +}); + +// SOCKS proxy failed to bind. +client.on('error', () => { + // Handle errors +}); +``` \ No newline at end of file diff --git a/node_modules/socks/docs/examples/javascript/connectExample.md b/node_modules/socks/docs/examples/javascript/connectExample.md new file mode 100644 index 000000000..66244c5b8 --- /dev/null +++ b/node_modules/socks/docs/examples/javascript/connectExample.md @@ -0,0 +1,258 @@ +# socks examples + +## Example for SOCKS 'connect' command + +The connect command is the most common use-case for a SOCKS proxy. This establishes a direct connection to a destination host through a proxy server. The destination host only has knowledge of the proxy server connecting to it and does not know about the origin client (you). + +**Origin Client (you) <-> Proxy Server <-> Destination Server** + +In this example, we are connecting to a web server on port 80, and sending a very basic HTTP request to receive a response. It's worth noting that there are many socks-http-agents that can be used with the node http module (and libraries such as request.js) to make this easier. This HTTP request is used as a simple example. + +The 'connect' command can be used via the SocksClient.createConnection() factory function as well as by creating a SocksClient instance and using event handlers. + +### Using createConnection with async/await + +Since SocksClient.createConnection returns a Promise, we can easily use async/await for flow control. + +```typescript +const SocksClient = require('socks').SocksClient; + +const options = { + proxy: { + host: '104.131.124.203', + port: 1081, + type: 5 + }, + + destination: { + host: 'ip-api.com', // host names are supported with SOCKS v4a and SOCKS v5. + port: 80 + }, + + command: 'connect' +}; + +async function start() { + try { + const info = await SocksClient.createConnection(options); + + console.log(info.socket); + // (this is a raw net.Socket that is established to the destination host through the given proxy servers) + + info.socket.write('GET /json HTTP/1.1\nHost: ip-api.com\n\n'); + info.socket.on('data', (data) => { + console.log(data.toString()); // ip-api.com sees that the last proxy (104.131.124.203) is connected to it and not the origin client (you). + /* + HTTP/1.1 200 OK + Access-Control-Allow-Origin: * + Content-Type: application/json; charset=utf-8 + Date: Sun, 24 Dec 2017 03:47:51 GMT + Content-Length: 300 + + { + "as":"AS14061 Digital Ocean, Inc.", + "city":"Clifton", + "country":"United States", + "countryCode":"US", + "isp":"Digital Ocean", + "lat":40.8326, + "lon":-74.1307, + "org":"Digital Ocean", + "query":"104.131.124.203", + "region":"NJ", + "regionName":"New Jersey", + "status":"success", + "timezone":"America/New_York", + "zip":"07014" + } + */ + } catch (err) { + // Handle errors + } +} + +start(); +``` + +### Using createConnection with Promises + +```typescript +const SocksClient = require('socks').SocksClient; + +const options = { + proxy: { + ipaddress: '104.131.124.203', + port: 1081, + type: 5 + }, + + destination: { + host: 'ip-api.com', // host names are supported with SOCKS v4a and SOCKS v5. + port: 80 + }, + + command: 'connect' +}; + +SocksClient.createConnection(options) +.then(info => { + console.log(info.socket); + // (this is a raw net.Socket that is established to the destination host through the given proxy servers) + + info.socket.write('GET /json HTTP/1.1\nHost: ip-api.com\n\n'); + info.socket.on('data', (data) => { + console.log(data.toString()); // ip-api.com sees that the last proxy (104.131.124.203) is connected to it and not the origin client (you). + /* + HTTP/1.1 200 OK + Access-Control-Allow-Origin: * + Content-Type: application/json; charset=utf-8 + Date: Sun, 24 Dec 2017 03:47:51 GMT + Content-Length: 300 + + { + "as":"AS14061 Digital Ocean, Inc.", + "city":"Clifton", + "country":"United States", + "countryCode":"US", + "isp":"Digital Ocean", + "lat":40.8326, + "lon":-74.1307, + "org":"Digital Ocean", + "query":"104.131.124.203", + "region":"NJ", + "regionName":"New Jersey", + "status":"success", + "timezone":"America/New_York", + "zip":"07014" + } + */ +}) +.catch(err => { + // handle errors +}); +``` + +### Using createConnection with callbacks + +SocksClient.createConnection() optionally accepts a callback function as a second parameter. + +**Note:** If a callback function is provided, a Promise is still returned from the function, but the promise will always resolve regardless of if there was en error. (tldr: Do not mix callbacks and Promises). + +```typescript +const SocksClient = require('socks').SocksClient; + +const options = { + proxy: { + ipaddress: '104.131.124.203', + port: 1081, + type: 5 + }, + + destination: { + host: 'ip-api.com', // host names are supported with SOCKS v4a and SOCKS v5. + port: 80 + }, + + command: 'connect' +}; + +SocksClient.createConnection(options, (err, info) => { + if (err) { + // handle errors + } else { + console.log(info.socket); + // (this is a raw net.Socket that is established to the destination host through the given proxy servers) + + info.socket.write('GET /json HTTP/1.1\nHost: ip-api.com\n\n'); + info.socket.on('data', (data) => { + console.log(data.toString()); // ip-api.com sees that the last proxy (104.131.124.203) is connected to it and not the origin client (you). + /* + HTTP/1.1 200 OK + Access-Control-Allow-Origin: * + Content-Type: application/json; charset=utf-8 + Date: Sun, 24 Dec 2017 03:47:51 GMT + Content-Length: 300 + + { + "as":"AS14061 Digital Ocean, Inc.", + "city":"Clifton", + "country":"United States", + "countryCode":"US", + "isp":"Digital Ocean", + "lat":40.8326, + "lon":-74.1307, + "org":"Digital Ocean", + "query":"104.131.124.203", + "region":"NJ", + "regionName":"New Jersey", + "status":"success", + "timezone":"America/New_York", + "zip":"07014" + } + */ + } +}) +``` + +### Using event handlers + +SocksClient also supports instance creation of a SocksClient. This allows for event based flow control. + +```typescript +const SocksClient = require('socks').SocksClient; + +const options = { + proxy: { + ipaddress: '104.131.124.203', + port: 1081, + type: 5 + }, + + destination: { + host: 'ip-api.com', // host names are supported with SOCKS v4a and SOCKS v5. + port: 80 + }, + + command: 'connect' +}; + +const client = new SocksClient(options); + +client.on('established', (info) => { + console.log(info.socket); + // (this is a raw net.Socket that is established to the destination host through the given proxy servers) + + info.socket.write('GET /json HTTP/1.1\nHost: ip-api.com\n\n'); + info.socket.on('data', (data) => { + console.log(data.toString()); // ip-api.com sees that the last proxy (104.131.124.203) is connected to it and not the origin client (you). + /* + HTTP/1.1 200 OK + Access-Control-Allow-Origin: * + Content-Type: application/json; charset=utf-8 + Date: Sun, 24 Dec 2017 03:47:51 GMT + Content-Length: 300 + + { + "as":"AS14061 Digital Ocean, Inc.", + "city":"Clifton", + "country":"United States", + "countryCode":"US", + "isp":"Digital Ocean", + "lat":40.8326, + "lon":-74.1307, + "org":"Digital Ocean", + "query":"104.131.124.203", + "region":"NJ", + "regionName":"New Jersey", + "status":"success", + "timezone":"America/New_York", + "zip":"07014" + } + */ +}); + +// Failed to establish proxy connection to destination. +client.on('error', () => { + // Handle errors +}); +``` \ No newline at end of file diff --git a/node_modules/socks/docs/examples/typescript/associateExample.md b/node_modules/socks/docs/examples/typescript/associateExample.md new file mode 100644 index 000000000..e8ca19344 --- /dev/null +++ b/node_modules/socks/docs/examples/typescript/associateExample.md @@ -0,0 +1,93 @@ +# socks examples + +## Example for SOCKS 'associate' command + +The associate command tells the SOCKS proxy server to establish a UDP relay. The server binds to a new UDP port and communicates the newly opened port back to the origin client. From here, any SOCKS UDP frame packets sent to this special UDP port on the Proxy server will be forwarded to the desired destination, and any responses will be forwarded back to the origin client (you). + +This can be used for things such as DNS queries, and other UDP communicates. + +**Connection Steps** + +1. Client -(associate)-> Proxy (Tells the proxy to create a UDP relay and bind on a new port) +2. Client <-(port)- Proxy (Tells the origin client which port it opened and is accepting UDP frame packets on) + +At this point the proxy is accepting UDP frames on the specified port. + +3. Client --(udp frame) -> Proxy -> Destination (The origin client sends a UDP frame to the proxy on the UDP port, and the proxy then forwards it to the destination specified in the UDP frame.) +4. Client <--(udp frame) <-- Proxy <-- Destination (The destination client responds to the udp packet sent in #3) + +## Usage + +The 'associate' command can only be used by creating a new SocksClient instance and listening for the 'established' event. + +**Note:** UDP packets relayed through the proxy servers are packaged in a special Socks UDP frame format. SocksClient.createUDPFrame() and SocksClient.parseUDPFrame() create and parse these special UDP packets. + +```typescript +import * as dgram from 'dgram'; +import { SocksClient, SocksClientOptions } from 'socks'; + +// Create a local UDP socket for sending/receiving packets to/from the proxy. +const udpSocket = dgram.createSocket('udp4'); +udpSocket.bind(); + +// Listen for incoming UDP packets from the proxy server. +udpSocket.on('message', (message, rinfo) => { + console.log(SocksClient.parseUDPFrame(message)); + /* + { frameNumber: 0, + remoteHost: { host: '8.8.8.8', port: 53 }, // The remote host that replied with a UDP packet + data: // The data + } + */ +}); + +const options: SocksClientOptions = { + proxy: { + host: '104.131.124.203', + port: 1081, + type: 5 + }, + + // This should be the ip and port of the expected client that will be sending UDP frames to the newly opened UDP port on the server. + // Most SOCKS servers accept 0.0.0.0 as a wildcard address to accept UDP frames from any source. + destination: { + host: '0.0.0.0', + port: 0 + }, + + command: 'associate' +}; + +const client = new SocksClient(options); + +// This event is fired when the SOCKS server has started listening on a new UDP port for UDP relaying. +client.on('established', info => { + console.log(info); + /* + { + socket: , + remoteHost: { // This is the remote port on the SOCKS proxy server to send UDP frame packets to. + host: '104.131.124.203', + port: 58232 + } + } + */ + + // Send a udp frame to 8.8.8.8 on port 53 through the proxy. + const packet = SocksClient.createUDPFrame({ + remoteHost: { host: '8.8.8.8', port: 53 }, + data: Buffer.from('hello') // A DNS lookup in the real world. + }); + + // Send packet. + udpSocket.send(packet, info.remoteHost.port, info.remoteHost.host); +}); + +// SOCKS proxy failed to bind. +client.on('error', () => { + // Handle errors +}); + +// Start connection +client.connect(); +``` diff --git a/node_modules/socks/docs/examples/typescript/bindExample.md b/node_modules/socks/docs/examples/typescript/bindExample.md new file mode 100644 index 000000000..6b7607df7 --- /dev/null +++ b/node_modules/socks/docs/examples/typescript/bindExample.md @@ -0,0 +1,86 @@ +# socks examples + +## Example for SOCKS 'bind' command + +The bind command tells the SOCKS proxy server to bind and listen on a new TCP port for an incoming connection. It communicates the newly opened port back to the origin client. Once a incoming connection is accepted by the SOCKS proxy server it then communicates the remote host that connected to the SOCKS proxy back through the same initial connection via the origin client. + +This can be used for things such as FTP clients which require incoming TCP connections, etc. + +**Connection Steps** + +1. Client -(bind)-> Proxy (Tells the proxy to bind to a new port) +2. Client <-(port)- Proxy (Tells the origin client which port it opened) +3. Client2 --> Proxy (Other client connects to the proxy on this port) +4. Client <--(client2's host info) (Proxy tells the origin client who connected to it) +5. Original connection to the proxy is now a full TCP stream between client (you) and client2. +6. Client <--> Proxy <--> Client2 + + +## Usage + +The 'bind' command can only be used by creating a new SocksClient instance and listening for 'bound' and 'established' events. + + +```typescript +import { SocksClient, SocksClientOptions } from 'socks'; + +const options: SocksClientOptions = { + proxy: { + host: '104.131.124.203', + port: 1081, + type: 5 + }, + + // This should be the ip and port of the expected client that will connect to the SOCKS proxy server on the newly bound port. + // Most SOCKS servers accept 0.0.0.0 as a wildcard address to accept any client. + destination: { + host: '0.0.0.0', + port: 0 + }, + + command: 'bind' +}; + +const client = new SocksClient(options); + +// This event is fired when the SOCKS server has started listening on a new port for incoming connections. +client.on('bound', (info) => { + console.log(info); + /* + { + socket: , + remoteHost: { // This is the remote ip and port of the SOCKS proxy that is now accepting incoming connections. + host: '104.131.124.203', + port: 49928 + } + } + */ +}); + +// This event is fired when the SOCKS server has accepted an incoming connection on the newly bound port. +client.on('established', (info) => { + console.log(info); + /* + { + socket: , + remoteHost: { // This is the remote ip and port that connected to the SOCKS proxy on the newly bound port. + host: '1.2.3.4', + port: 58232 + } + } + */ + + // At this point info.socket is a regular net.Socket TCP connection between client and client2 (1.2.3.4) (the client which connected to the proxy on the newly bound port.) + + console.log(info.socket); + // (this is a raw net.Socket that is established to the destination host through the given proxy servers) +}); + +// SOCKS proxy failed to bind. +client.on('error', () => { + // Handle errors +}); + +// Start connection +client.connect(); +``` \ No newline at end of file diff --git a/node_modules/socks/docs/examples/typescript/connectExample.md b/node_modules/socks/docs/examples/typescript/connectExample.md new file mode 100644 index 000000000..30606d0ba --- /dev/null +++ b/node_modules/socks/docs/examples/typescript/connectExample.md @@ -0,0 +1,265 @@ +# socks examples + +## Example for SOCKS 'connect' command + +The connect command is the most common use-case for a SOCKS proxy. This establishes a direct connection to a destination host through a proxy server. The destination host only has knowledge of the proxy server connecting to it and does not know about the origin client (you). + +**Origin Client (you) <-> Proxy Server <-> Destination Server** + +In this example, we are connecting to a web server on port 80, and sending a very basic HTTP request to receive a response. It's worth noting that there are many socks-http-agents that can be used with the node http module (and libraries such as request.js) to make this easier. This HTTP request is used as a simple example. + +The 'connect' command can be used via the SocksClient.createConnection() factory function as well as by creating a SocksClient instance and using event handlers. + +### Using createConnection with async/await + +Since SocksClient.createConnection returns a Promise, we can easily use async/await for flow control. + +```typescript +import { SocksClient, SocksClientOptions } from 'socks'; + +const options: SocksClientOptions = { + proxy: { + host: '104.131.124.203', + port: 1081, + type: 5 + }, + + destination: { + host: 'ip-api.com', // host names are supported with SOCKS v4a and SOCKS v5. + port: 80 + }, + + command: 'connect' +}; + +async function start() { + try { + const info = await SocksClient.createConnection(options); + + console.log(info.socket); + // (this is a raw net.Socket that is established to the destination host through the given proxy servers) + + info.socket.write('GET /json HTTP/1.1\nHost: ip-api.com\n\n'); + info.socket.on('data', (data) => { + console.log(data.toString()); // ip-api.com sees that the last proxy (104.131.124.203) is connected to it and not the origin client (you). + /* + HTTP/1.1 200 OK + Access-Control-Allow-Origin: * + Content-Type: application/json; charset=utf-8 + Date: Sun, 24 Dec 2017 03:47:51 GMT + Content-Length: 300 + + { + "as":"AS14061 Digital Ocean, Inc.", + "city":"Clifton", + "country":"United States", + "countryCode":"US", + "isp":"Digital Ocean", + "lat":40.8326, + "lon":-74.1307, + "org":"Digital Ocean", + "query":"104.131.124.203", + "region":"NJ", + "regionName":"New Jersey", + "status":"success", + "timezone":"America/New_York", + "zip":"07014" + } + */ + }); + } catch (err) { + // Handle errors + } +} + +start(); +``` + +### Using createConnection with Promises + +```typescript +import { SocksClient, SocksClientOptions } from 'socks'; + +const options: SocksClientOptions = { + proxy: { + ipaddress: '104.131.124.203', + port: 1081, + type: 5 + }, + + destination: { + host: 'ip-api.com', // host names are supported with SOCKS v4a and SOCKS v5. + port: 80 + }, + + command: 'connect' +}; + +SocksClient.createConnection(options) +.then(info => { + console.log(info.socket); + // (this is a raw net.Socket that is established to the destination host through the given proxy servers) + + info.socket.write('GET /json HTTP/1.1\nHost: ip-api.com\n\n'); + info.socket.on('data', (data) => { + console.log(data.toString()); // ip-api.com sees that the last proxy (104.131.124.203) is connected to it and not the origin client (you). + /* + HTTP/1.1 200 OK + Access-Control-Allow-Origin: * + Content-Type: application/json; charset=utf-8 + Date: Sun, 24 Dec 2017 03:47:51 GMT + Content-Length: 300 + + { + "as":"AS14061 Digital Ocean, Inc.", + "city":"Clifton", + "country":"United States", + "countryCode":"US", + "isp":"Digital Ocean", + "lat":40.8326, + "lon":-74.1307, + "org":"Digital Ocean", + "query":"104.131.124.203", + "region":"NJ", + "regionName":"New Jersey", + "status":"success", + "timezone":"America/New_York", + "zip":"07014" + } + */ + }); +}) +.catch(err => { + // handle errors +}); +``` + +### Using createConnection with callbacks + +SocksClient.createConnection() optionally accepts a callback function as a second parameter. + +**Note:** If a callback function is provided, a Promise is still returned from the function, but the promise will always resolve regardless of if there was en error. (tldr: Do not mix callbacks and Promises). + +```typescript +import { SocksClient, SocksClientOptions } from 'socks'; + +const options: SocksClientOptions = { + proxy: { + ipaddress: '104.131.124.203', + port: 1081, + type: 5 + }, + + destination: { + host: 'ip-api.com', // host names are supported with SOCKS v4a and SOCKS v5. + port: 80 + }, + + command: 'connect' +}; + +SocksClient.createConnection(options, (err, info) => { + if (err) { + // handle errors + } else { + console.log(info.socket); + // (this is a raw net.Socket that is established to the destination host through the given proxy servers) + + info.socket.write('GET /json HTTP/1.1\nHost: ip-api.com\n\n'); + info.socket.on('data', (data) => { + console.log(data.toString()); // ip-api.com sees that the last proxy (104.131.124.203) is connected to it and not the origin client (you). + /* + HTTP/1.1 200 OK + Access-Control-Allow-Origin: * + Content-Type: application/json; charset=utf-8 + Date: Sun, 24 Dec 2017 03:47:51 GMT + Content-Length: 300 + + { + "as":"AS14061 Digital Ocean, Inc.", + "city":"Clifton", + "country":"United States", + "countryCode":"US", + "isp":"Digital Ocean", + "lat":40.8326, + "lon":-74.1307, + "org":"Digital Ocean", + "query":"104.131.124.203", + "region":"NJ", + "regionName":"New Jersey", + "status":"success", + "timezone":"America/New_York", + "zip":"07014" + } + */ + }); + } +}) +``` + +### Using event handlers + +SocksClient also supports instance creation of a SocksClient. This allows for event based flow control. + +```typescript +import { SocksClient, SocksClientOptions } from 'socks'; + +const options: SocksClientOptions = { + proxy: { + ipaddress: '104.131.124.203', + port: 1081, + type: 5 + }, + + destination: { + host: 'ip-api.com', // host names are supported with SOCKS v4a and SOCKS v5. + port: 80 + }, + + command: 'connect' +}; + +const client = new SocksClient(options); + +client.on('established', (info) => { + console.log(info.socket); + // (this is a raw net.Socket that is established to the destination host through the given proxy servers) + + info.socket.write('GET /json HTTP/1.1\nHost: ip-api.com\n\n'); + info.socket.on('data', (data) => { + console.log(data.toString()); // ip-api.com sees that the last proxy (104.131.124.203) is connected to it and not the origin client (you). + /* + HTTP/1.1 200 OK + Access-Control-Allow-Origin: * + Content-Type: application/json; charset=utf-8 + Date: Sun, 24 Dec 2017 03:47:51 GMT + Content-Length: 300 + + { + "as":"AS14061 Digital Ocean, Inc.", + "city":"Clifton", + "country":"United States", + "countryCode":"US", + "isp":"Digital Ocean", + "lat":40.8326, + "lon":-74.1307, + "org":"Digital Ocean", + "query":"104.131.124.203", + "region":"NJ", + "regionName":"New Jersey", + "status":"success", + "timezone":"America/New_York", + "zip":"07014" + } + */ + }); +}); + +// Failed to establish proxy connection to destination. +client.on('error', () => { + // Handle errors +}); + +// Start connection +client.connect(); +``` \ No newline at end of file diff --git a/node_modules/socks/docs/index.md b/node_modules/socks/docs/index.md new file mode 100644 index 000000000..3eb1d7118 --- /dev/null +++ b/node_modules/socks/docs/index.md @@ -0,0 +1,5 @@ +# Documentation + +- [API Reference](https://github.com/JoshGlazebrook/socks#api-reference) + +- [Code Examples](./examples/index.md) \ No newline at end of file diff --git a/node_modules/socks/docs/migratingFromV1.md b/node_modules/socks/docs/migratingFromV1.md new file mode 100644 index 000000000..dd008384b --- /dev/null +++ b/node_modules/socks/docs/migratingFromV1.md @@ -0,0 +1,86 @@ +# socks + +## Migrating from v1 + +For the most part, migrating from v1 takes minimal effort as v2 still supports factory creation of proxy connections with callback support. + +### Notable breaking changes + +- In an options object, the proxy 'command' is now required and does not default to 'connect'. +- **In an options object, 'target' is now known as 'destination'.** +- Sockets are no longer paused after a SOCKS connection is made, so socket.resume() is no longer required. (Please be sure to attach data handlers immediately to the Socket to avoid losing data). +- In v2, only the 'connect' command is supported via the factory SocksClient.createConnection function. (BIND and ASSOCIATE must be used with a SocksClient instance via event handlers). +- In v2, the factory SocksClient.createConnection function callback is called with a single object rather than separate socket and info object. +- A SOCKS http/https agent is no longer bundled into the library. + +For informational purposes, here is the original getting started example from v1 converted to work with v2. + +### Before (v1) + +```javascript +var Socks = require('socks'); + +var options = { + proxy: { + ipaddress: "202.101.228.108", + port: 1080, + type: 5 + }, + target: { + host: "google.com", + port: 80 + }, + command: 'connect' +}; + +Socks.createConnection(options, function(err, socket, info) { + if (err) + console.log(err); + else { + socket.write("GET / HTTP/1.1\nHost: google.com\n\n"); + socket.on('data', function(data) { + console.log(data.length); + console.log(data); + }); + + // PLEASE NOTE: sockets need to be resumed before any data will come in or out as they are paused right before this callback is fired. + socket.resume(); + + // 569 + // = 10.13.0", + "npm": ">= 3.0.0" + }, + "author": "Josh Glazebrook", + "contributors": [ + "castorw" + ], + "license": "MIT", + "readmeFilename": "README.md", + "devDependencies": { + "@types/ip": "1.1.0", + "@types/mocha": "^9.1.1", + "@types/node": "^18.0.6", + "@typescript-eslint/eslint-plugin": "^5.30.6", + "@typescript-eslint/parser": "^5.30.6", + "eslint": "^8.20.0", + "mocha": "^10.0.0", + "prettier": "^2.7.1", + "ts-node": "^10.9.1", + "typescript": "^4.7.4" + }, + "dependencies": { + "ip": "^2.0.0", + "smart-buffer": "^4.2.0" + }, + "scripts": { + "prepublish": "npm install -g typescript && npm run build", + "test": "NODE_ENV=test mocha --recursive --require ts-node/register test/**/*.ts", + "prettier": "prettier --write ./src/**/*.ts --config .prettierrc.yaml", + "lint": "eslint 'src/**/*.ts'", + "build": "rm -rf build typings && prettier --write ./src/**/*.ts --config .prettierrc.yaml && tsc -p ." + } +} diff --git a/node_modules/socks/typings/client/socksclient.d.ts b/node_modules/socks/typings/client/socksclient.d.ts new file mode 100644 index 000000000..b886d9571 --- /dev/null +++ b/node_modules/socks/typings/client/socksclient.d.ts @@ -0,0 +1,162 @@ +/// +/// +/// +import { EventEmitter } from 'events'; +import { SocksClientOptions, SocksClientChainOptions, SocksRemoteHost, SocksProxy, SocksClientBoundEvent, SocksClientEstablishedEvent, SocksUDPFrameDetails } from '../common/constants'; +import { SocksClientError } from '../common/util'; +import { Duplex } from 'stream'; +declare interface SocksClient { + on(event: 'error', listener: (err: SocksClientError) => void): this; + on(event: 'bound', listener: (info: SocksClientBoundEvent) => void): this; + on(event: 'established', listener: (info: SocksClientEstablishedEvent) => void): this; + once(event: string, listener: (...args: unknown[]) => void): this; + once(event: 'error', listener: (err: SocksClientError) => void): this; + once(event: 'bound', listener: (info: SocksClientBoundEvent) => void): this; + once(event: 'established', listener: (info: SocksClientEstablishedEvent) => void): this; + emit(event: string | symbol, ...args: unknown[]): boolean; + emit(event: 'error', err: SocksClientError): boolean; + emit(event: 'bound', info: SocksClientBoundEvent): boolean; + emit(event: 'established', info: SocksClientEstablishedEvent): boolean; +} +declare class SocksClient extends EventEmitter implements SocksClient { + private options; + private socket; + private state; + private receiveBuffer; + private nextRequiredPacketBufferSize; + private socks5ChosenAuthType; + private onDataReceived; + private onClose; + private onError; + private onConnect; + constructor(options: SocksClientOptions); + /** + * Creates a new SOCKS connection. + * + * Note: Supports callbacks and promises. Only supports the connect command. + * @param options { SocksClientOptions } Options. + * @param callback { Function } An optional callback function. + * @returns { Promise } + */ + static createConnection(options: SocksClientOptions, callback?: (error: Error | null, info?: SocksClientEstablishedEvent) => void): Promise; + /** + * Creates a new SOCKS connection chain to a destination host through 2 or more SOCKS proxies. + * + * Note: Supports callbacks and promises. Only supports the connect method. + * Note: Implemented via createConnection() factory function. + * @param options { SocksClientChainOptions } Options + * @param callback { Function } An optional callback function. + * @returns { Promise } + */ + static createConnectionChain(options: SocksClientChainOptions, callback?: (error: Error | null, socket?: SocksClientEstablishedEvent) => void): Promise; + /** + * Creates a SOCKS UDP Frame. + * @param options + */ + static createUDPFrame(options: SocksUDPFrameDetails): Buffer; + /** + * Parses a SOCKS UDP frame. + * @param data + */ + static parseUDPFrame(data: Buffer): SocksUDPFrameDetails; + /** + * Internal state setter. If the SocksClient is in an error state, it cannot be changed to a non error state. + */ + private setState; + /** + * Starts the connection establishment to the proxy and destination. + * @param existingSocket Connected socket to use instead of creating a new one (internal use). + */ + connect(existingSocket?: Duplex): void; + private getSocketOptions; + /** + * Handles internal Socks timeout callback. + * Note: If the Socks client is not BoundWaitingForConnection or Established, the connection will be closed. + */ + private onEstablishedTimeout; + /** + * Handles Socket connect event. + */ + private onConnectHandler; + /** + * Handles Socket data event. + * @param data + */ + private onDataReceivedHandler; + /** + * Handles processing of the data we have received. + */ + private processData; + /** + * Handles Socket close event. + * @param had_error + */ + private onCloseHandler; + /** + * Handles Socket error event. + * @param err + */ + private onErrorHandler; + /** + * Removes internal event listeners on the underlying Socket. + */ + private removeInternalSocketHandlers; + /** + * Closes and destroys the underlying Socket. Emits an error event. + * @param err { String } An error string to include in error event. + */ + private closeSocket; + /** + * Sends initial Socks v4 handshake request. + */ + private sendSocks4InitialHandshake; + /** + * Handles Socks v4 handshake response. + * @param data + */ + private handleSocks4FinalHandshakeResponse; + /** + * Handles Socks v4 incoming connection request (BIND) + * @param data + */ + private handleSocks4IncomingConnectionResponse; + /** + * Sends initial Socks v5 handshake request. + */ + private sendSocks5InitialHandshake; + /** + * Handles initial Socks v5 handshake response. + * @param data + */ + private handleInitialSocks5HandshakeResponse; + /** + * Sends Socks v5 user & password auth handshake. + * + * Note: No auth and user/pass are currently supported. + */ + private sendSocks5UserPassAuthentication; + private sendSocks5CustomAuthentication; + private handleSocks5CustomAuthHandshakeResponse; + private handleSocks5AuthenticationNoAuthHandshakeResponse; + private handleSocks5AuthenticationUserPassHandshakeResponse; + /** + * Handles Socks v5 auth handshake response. + * @param data + */ + private handleInitialSocks5AuthenticationHandshakeResponse; + /** + * Sends Socks v5 final handshake request. + */ + private sendSocks5CommandRequest; + /** + * Handles Socks v5 final handshake response. + * @param data + */ + private handleSocks5FinalHandshakeResponse; + /** + * Handles Socks v5 incoming connection request (BIND). + */ + private handleSocks5IncomingConnectionResponse; + get socksClientOptions(): SocksClientOptions; +} +export { SocksClient, SocksClientOptions, SocksClientChainOptions, SocksClientError, SocksRemoteHost, SocksProxy, SocksUDPFrameDetails, }; diff --git a/node_modules/socks/typings/common/constants.d.ts b/node_modules/socks/typings/common/constants.d.ts new file mode 100644 index 000000000..32a570528 --- /dev/null +++ b/node_modules/socks/typings/common/constants.d.ts @@ -0,0 +1,152 @@ +/// +/// +/// +import { Duplex } from 'stream'; +import { Socket, SocketConnectOpts } from 'net'; +import { RequireOnlyOne } from './util'; +declare const DEFAULT_TIMEOUT = 30000; +declare type SocksProxyType = 4 | 5; +declare const ERRORS: { + InvalidSocksCommand: string; + InvalidSocksCommandForOperation: string; + InvalidSocksCommandChain: string; + InvalidSocksClientOptionsDestination: string; + InvalidSocksClientOptionsExistingSocket: string; + InvalidSocksClientOptionsProxy: string; + InvalidSocksClientOptionsTimeout: string; + InvalidSocksClientOptionsProxiesLength: string; + InvalidSocksClientOptionsCustomAuthRange: string; + InvalidSocksClientOptionsCustomAuthOptions: string; + NegotiationError: string; + SocketClosed: string; + ProxyConnectionTimedOut: string; + InternalError: string; + InvalidSocks4HandshakeResponse: string; + Socks4ProxyRejectedConnection: string; + InvalidSocks4IncomingConnectionResponse: string; + Socks4ProxyRejectedIncomingBoundConnection: string; + InvalidSocks5InitialHandshakeResponse: string; + InvalidSocks5IntiailHandshakeSocksVersion: string; + InvalidSocks5InitialHandshakeNoAcceptedAuthType: string; + InvalidSocks5InitialHandshakeUnknownAuthType: string; + Socks5AuthenticationFailed: string; + InvalidSocks5FinalHandshake: string; + InvalidSocks5FinalHandshakeRejected: string; + InvalidSocks5IncomingConnectionResponse: string; + Socks5ProxyRejectedIncomingBoundConnection: string; +}; +declare const SOCKS_INCOMING_PACKET_SIZES: { + Socks5InitialHandshakeResponse: number; + Socks5UserPassAuthenticationResponse: number; + Socks5ResponseHeader: number; + Socks5ResponseIPv4: number; + Socks5ResponseIPv6: number; + Socks5ResponseHostname: (hostNameLength: number) => number; + Socks4Response: number; +}; +declare type SocksCommandOption = 'connect' | 'bind' | 'associate'; +declare enum SocksCommand { + connect = 1, + bind = 2, + associate = 3 +} +declare enum Socks4Response { + Granted = 90, + Failed = 91, + Rejected = 92, + RejectedIdent = 93 +} +declare enum Socks5Auth { + NoAuth = 0, + GSSApi = 1, + UserPass = 2 +} +declare const SOCKS5_CUSTOM_AUTH_START = 128; +declare const SOCKS5_CUSTOM_AUTH_END = 254; +declare const SOCKS5_NO_ACCEPTABLE_AUTH = 255; +declare enum Socks5Response { + Granted = 0, + Failure = 1, + NotAllowed = 2, + NetworkUnreachable = 3, + HostUnreachable = 4, + ConnectionRefused = 5, + TTLExpired = 6, + CommandNotSupported = 7, + AddressNotSupported = 8 +} +declare enum Socks5HostType { + IPv4 = 1, + Hostname = 3, + IPv6 = 4 +} +declare enum SocksClientState { + Created = 0, + Connecting = 1, + Connected = 2, + SentInitialHandshake = 3, + ReceivedInitialHandshakeResponse = 4, + SentAuthentication = 5, + ReceivedAuthenticationResponse = 6, + SentFinalHandshake = 7, + ReceivedFinalResponse = 8, + BoundWaitingForConnection = 9, + Established = 10, + Disconnected = 11, + Error = 99 +} +/** + * Represents a SocksProxy + */ +declare type SocksProxy = RequireOnlyOne<{ + ipaddress?: string; + host?: string; + port: number; + type: SocksProxyType; + userId?: string; + password?: string; + custom_auth_method?: number; + custom_auth_request_handler?: () => Promise; + custom_auth_response_size?: number; + custom_auth_response_handler?: (data: Buffer) => Promise; +}, 'host' | 'ipaddress'>; +/** + * Represents a remote host + */ +interface SocksRemoteHost { + host: string; + port: number; +} +/** + * SocksClient connection options. + */ +interface SocksClientOptions { + command: SocksCommandOption; + destination: SocksRemoteHost; + proxy: SocksProxy; + timeout?: number; + existing_socket?: Duplex; + set_tcp_nodelay?: boolean; + socket_options?: SocketConnectOpts; +} +/** + * SocksClient chain connection options. + */ +interface SocksClientChainOptions { + command: 'connect'; + destination: SocksRemoteHost; + proxies: SocksProxy[]; + timeout?: number; + randomizeChain?: false; +} +interface SocksClientEstablishedEvent { + socket: Socket; + remoteHost?: SocksRemoteHost; +} +declare type SocksClientBoundEvent = SocksClientEstablishedEvent; +interface SocksUDPFrameDetails { + frameNumber?: number; + remoteHost: SocksRemoteHost; + data: Buffer; +} +export { DEFAULT_TIMEOUT, ERRORS, SocksProxyType, SocksCommand, Socks4Response, Socks5Auth, Socks5HostType, Socks5Response, SocksClientState, SocksProxy, SocksRemoteHost, SocksCommandOption, SocksClientOptions, SocksClientChainOptions, SocksClientEstablishedEvent, SocksClientBoundEvent, SocksUDPFrameDetails, SOCKS_INCOMING_PACKET_SIZES, SOCKS5_CUSTOM_AUTH_START, SOCKS5_CUSTOM_AUTH_END, SOCKS5_NO_ACCEPTABLE_AUTH, }; diff --git a/node_modules/socks/typings/common/helpers.d.ts b/node_modules/socks/typings/common/helpers.d.ts new file mode 100644 index 000000000..8c3a10697 --- /dev/null +++ b/node_modules/socks/typings/common/helpers.d.ts @@ -0,0 +1,13 @@ +import { SocksClientOptions, SocksClientChainOptions } from '../client/socksclient'; +/** + * Validates the provided SocksClientOptions + * @param options { SocksClientOptions } + * @param acceptedCommands { string[] } A list of accepted SocksProxy commands. + */ +declare function validateSocksClientOptions(options: SocksClientOptions, acceptedCommands?: string[]): void; +/** + * Validates the SocksClientChainOptions + * @param options { SocksClientChainOptions } + */ +declare function validateSocksClientChainOptions(options: SocksClientChainOptions): void; +export { validateSocksClientOptions, validateSocksClientChainOptions }; diff --git a/node_modules/socks/typings/common/receivebuffer.d.ts b/node_modules/socks/typings/common/receivebuffer.d.ts new file mode 100644 index 000000000..756e98b58 --- /dev/null +++ b/node_modules/socks/typings/common/receivebuffer.d.ts @@ -0,0 +1,12 @@ +/// +declare class ReceiveBuffer { + private buffer; + private offset; + private originalSize; + constructor(size?: number); + get length(): number; + append(data: Buffer): number; + peek(length: number): Buffer; + get(length: number): Buffer; +} +export { ReceiveBuffer }; diff --git a/node_modules/socks/typings/common/util.d.ts b/node_modules/socks/typings/common/util.d.ts new file mode 100644 index 000000000..83f20e7b5 --- /dev/null +++ b/node_modules/socks/typings/common/util.d.ts @@ -0,0 +1,17 @@ +import { SocksClientOptions, SocksClientChainOptions } from './constants'; +/** + * Error wrapper for SocksClient + */ +declare class SocksClientError extends Error { + options: SocksClientOptions | SocksClientChainOptions; + constructor(message: string, options: SocksClientOptions | SocksClientChainOptions); +} +/** + * Shuffles a given array. + * @param array The array to shuffle. + */ +declare function shuffleArray(array: unknown[]): void; +declare type RequireOnlyOne = Pick> & { + [K in Keys]?: Required> & Partial, undefined>>; +}[Keys]; +export { RequireOnlyOne, SocksClientError, shuffleArray }; diff --git a/node_modules/socks/typings/index.d.ts b/node_modules/socks/typings/index.d.ts new file mode 100644 index 000000000..fbf9006ef --- /dev/null +++ b/node_modules/socks/typings/index.d.ts @@ -0,0 +1 @@ +export * from './client/socksclient'; diff --git a/node_modules/sparse-bitfield/.npmignore b/node_modules/sparse-bitfield/.npmignore new file mode 100644 index 000000000..3c3629e64 --- /dev/null +++ b/node_modules/sparse-bitfield/.npmignore @@ -0,0 +1 @@ +node_modules diff --git a/node_modules/sparse-bitfield/.travis.yml b/node_modules/sparse-bitfield/.travis.yml new file mode 100644 index 000000000..c04282170 --- /dev/null +++ b/node_modules/sparse-bitfield/.travis.yml @@ -0,0 +1,6 @@ +language: node_js +node_js: + - '0.10' + - '0.12' + - '4.0' + - '5.0' diff --git a/node_modules/sparse-bitfield/LICENSE b/node_modules/sparse-bitfield/LICENSE new file mode 100644 index 000000000..bae9da7bf --- /dev/null +++ b/node_modules/sparse-bitfield/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2016 Mathias Buus + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/node_modules/sparse-bitfield/README.md b/node_modules/sparse-bitfield/README.md new file mode 100644 index 000000000..7b6b8f9ed --- /dev/null +++ b/node_modules/sparse-bitfield/README.md @@ -0,0 +1,62 @@ +# sparse-bitfield + +Bitfield implementation that allocates a series of 1kb buffers to support sparse bitfields +without allocating a massive buffer. If you want to simple implementation of a flat bitfield +see the [bitfield](https://github.com/fb55/bitfield) module. + +This module is mostly useful if you need a big bitfield where you won't nessecarily set every bit. + +``` +npm install sparse-bitfield +``` + +[![build status](http://img.shields.io/travis/mafintosh/sparse-bitfield.svg?style=flat)](http://travis-ci.org/mafintosh/sparse-bitfield) + +## Usage + +``` js +var bitfield = require('sparse-bitfield') +var bits = bitfield() + +bits.set(0, true) // set first bit +bits.set(1, true) // set second bit +bits.set(1000000000000, true) // set the 1.000.000.000.000th bit +``` + +Running the above example will allocate two 1kb buffers internally. +Each 1kb buffer can hold information about 8192 bits so the first one will be used to store information about the first two bits and the second will be used to store the 1.000.000.000.000th bit. + +## API + +#### `var bits = bitfield([options])` + +Create a new bitfield. Options include + +``` js +{ + pageSize: 1024, // how big should the partial buffers be + buffer: anExistingBitfield, + trackUpdates: false // track when pages are being updated in the pager +} +``` + +#### `bits.set(index, value)` + +Set a bit to true or false. + +#### `bits.get(index)` + +Get the value of a bit. + +#### `bits.pages` + +A [memory-pager](https://github.com/mafintosh/memory-pager) instance that is managing the underlying memory. +If you set `trackUpdates` to true in the constructor you can use `.lastUpdate()` on this instance to get the last updated memory page. + +#### `var buffer = bits.toBuffer()` + +Get a single buffer representing the entire bitfield. + +## License + +MIT diff --git a/node_modules/sparse-bitfield/index.js b/node_modules/sparse-bitfield/index.js new file mode 100644 index 000000000..ff458c974 --- /dev/null +++ b/node_modules/sparse-bitfield/index.js @@ -0,0 +1,95 @@ +var pager = require('memory-pager') + +module.exports = Bitfield + +function Bitfield (opts) { + if (!(this instanceof Bitfield)) return new Bitfield(opts) + if (!opts) opts = {} + if (Buffer.isBuffer(opts)) opts = {buffer: opts} + + this.pageOffset = opts.pageOffset || 0 + this.pageSize = opts.pageSize || 1024 + this.pages = opts.pages || pager(this.pageSize) + + this.byteLength = this.pages.length * this.pageSize + this.length = 8 * this.byteLength + + if (!powerOfTwo(this.pageSize)) throw new Error('The page size should be a power of two') + + this._trackUpdates = !!opts.trackUpdates + this._pageMask = this.pageSize - 1 + + if (opts.buffer) { + for (var i = 0; i < opts.buffer.length; i += this.pageSize) { + this.pages.set(i / this.pageSize, opts.buffer.slice(i, i + this.pageSize)) + } + this.byteLength = opts.buffer.length + this.length = 8 * this.byteLength + } +} + +Bitfield.prototype.get = function (i) { + var o = i & 7 + var j = (i - o) / 8 + + return !!(this.getByte(j) & (128 >> o)) +} + +Bitfield.prototype.getByte = function (i) { + var o = i & this._pageMask + var j = (i - o) / this.pageSize + var page = this.pages.get(j, true) + + return page ? page.buffer[o + this.pageOffset] : 0 +} + +Bitfield.prototype.set = function (i, v) { + var o = i & 7 + var j = (i - o) / 8 + var b = this.getByte(j) + + return this.setByte(j, v ? b | (128 >> o) : b & (255 ^ (128 >> o))) +} + +Bitfield.prototype.toBuffer = function () { + var all = alloc(this.pages.length * this.pageSize) + + for (var i = 0; i < this.pages.length; i++) { + var next = this.pages.get(i, true) + var allOffset = i * this.pageSize + if (next) next.buffer.copy(all, allOffset, this.pageOffset, this.pageOffset + this.pageSize) + } + + return all +} + +Bitfield.prototype.setByte = function (i, b) { + var o = i & this._pageMask + var j = (i - o) / this.pageSize + var page = this.pages.get(j, false) + + o += this.pageOffset + + if (page.buffer[o] === b) return false + page.buffer[o] = b + + if (i >= this.byteLength) { + this.byteLength = i + 1 + this.length = this.byteLength * 8 + } + + if (this._trackUpdates) this.pages.updated(page) + + return true +} + +function alloc (n) { + if (Buffer.alloc) return Buffer.alloc(n) + var b = new Buffer(n) + b.fill(0) + return b +} + +function powerOfTwo (x) { + return !(x & (x - 1)) +} diff --git a/node_modules/sparse-bitfield/package.json b/node_modules/sparse-bitfield/package.json new file mode 100644 index 000000000..092a23f61 --- /dev/null +++ b/node_modules/sparse-bitfield/package.json @@ -0,0 +1,27 @@ +{ + "name": "sparse-bitfield", + "version": "3.0.3", + "description": "Bitfield that allocates a series of small buffers to support sparse bits without allocating a massive buffer", + "main": "index.js", + "dependencies": { + "memory-pager": "^1.0.2" + }, + "devDependencies": { + "buffer-alloc": "^1.1.0", + "standard": "^9.0.0", + "tape": "^4.6.3" + }, + "scripts": { + "test": "standard && tape test.js" + }, + "repository": { + "type": "git", + "url": "https://github.com/mafintosh/sparse-bitfield.git" + }, + "author": "Mathias Buus (@mafintosh)", + "license": "MIT", + "bugs": { + "url": "https://github.com/mafintosh/sparse-bitfield/issues" + }, + "homepage": "https://github.com/mafintosh/sparse-bitfield" +} diff --git a/node_modules/sparse-bitfield/test.js b/node_modules/sparse-bitfield/test.js new file mode 100644 index 000000000..ae42ef467 --- /dev/null +++ b/node_modules/sparse-bitfield/test.js @@ -0,0 +1,79 @@ +var alloc = require('buffer-alloc') +var tape = require('tape') +var bitfield = require('./') + +tape('set and get', function (t) { + var bits = bitfield() + + t.same(bits.get(0), false, 'first bit is false') + bits.set(0, true) + t.same(bits.get(0), true, 'first bit is true') + t.same(bits.get(1), false, 'second bit is false') + bits.set(0, false) + t.same(bits.get(0), false, 'first bit is reset') + t.end() +}) + +tape('set large and get', function (t) { + var bits = bitfield() + + t.same(bits.get(9999999999999), false, 'large bit is false') + bits.set(9999999999999, true) + t.same(bits.get(9999999999999), true, 'large bit is true') + t.same(bits.get(9999999999999 + 1), false, 'large bit + 1 is false') + bits.set(9999999999999, false) + t.same(bits.get(9999999999999), false, 'large bit is reset') + t.end() +}) + +tape('get and set buffer', function (t) { + var bits = bitfield({trackUpdates: true}) + + t.same(bits.pages.get(0, true), undefined) + t.same(bits.pages.get(Math.floor(9999999999999 / 8 / 1024), true), undefined) + bits.set(9999999999999, true) + + var bits2 = bitfield() + var upd = bits.pages.lastUpdate() + bits2.pages.set(Math.floor(upd.offset / 1024), upd.buffer) + t.same(bits2.get(9999999999999), true, 'bit is set') + t.end() +}) + +tape('toBuffer', function (t) { + var bits = bitfield() + + t.same(bits.toBuffer(), alloc(0)) + + bits.set(0, true) + + t.same(bits.toBuffer(), bits.pages.get(0).buffer) + + bits.set(9000, true) + + t.same(bits.toBuffer(), Buffer.concat([bits.pages.get(0).buffer, bits.pages.get(1).buffer])) + t.end() +}) + +tape('pass in buffer', function (t) { + var bits = bitfield() + + bits.set(0, true) + bits.set(9000, true) + + var clone = bitfield(bits.toBuffer()) + + t.same(clone.get(0), true) + t.same(clone.get(9000), true) + t.end() +}) + +tape('set small buffer', function (t) { + var buf = alloc(1) + buf[0] = 255 + var bits = bitfield(buf) + + t.same(bits.get(0), true) + t.same(bits.pages.get(0).buffer.length, bits.pageSize) + t.end() +}) diff --git a/node_modules/statuses/HISTORY.md b/node_modules/statuses/HISTORY.md new file mode 100644 index 000000000..fa4556ef2 --- /dev/null +++ b/node_modules/statuses/HISTORY.md @@ -0,0 +1,82 @@ +2.0.1 / 2021-01-03 +================== + + * Fix returning values from `Object.prototype` + +2.0.0 / 2020-04-19 +================== + + * Drop support for Node.js 0.6 + * Fix messaging casing of `418 I'm a Teapot` + * Remove code 306 + * Remove `status[code]` exports; use `status.message[code]` + * Remove `status[msg]` exports; use `status.code[msg]` + * Rename `425 Unordered Collection` to standard `425 Too Early` + * Rename `STATUS_CODES` export to `message` + * Return status message for `statuses(code)` when given code + +1.5.0 / 2018-03-27 +================== + + * Add `103 Early Hints` + +1.4.0 / 2017-10-20 +================== + + * Add `STATUS_CODES` export + +1.3.1 / 2016-11-11 +================== + + * Fix return type in JSDoc + +1.3.0 / 2016-05-17 +================== + + * Add `421 Misdirected Request` + * perf: enable strict mode + +1.2.1 / 2015-02-01 +================== + + * Fix message for status 451 + - `451 Unavailable For Legal Reasons` + +1.2.0 / 2014-09-28 +================== + + * Add `208 Already Repored` + * Add `226 IM Used` + * Add `306 (Unused)` + * Add `415 Unable For Legal Reasons` + * Add `508 Loop Detected` + +1.1.1 / 2014-09-24 +================== + + * Add missing 308 to `codes.json` + +1.1.0 / 2014-09-21 +================== + + * Add `codes.json` for universal support + +1.0.4 / 2014-08-20 +================== + + * Package cleanup + +1.0.3 / 2014-06-08 +================== + + * Add 308 to `.redirect` category + +1.0.2 / 2014-03-13 +================== + + * Add `.retry` category + +1.0.1 / 2014-03-12 +================== + + * Initial release diff --git a/node_modules/statuses/LICENSE b/node_modules/statuses/LICENSE new file mode 100644 index 000000000..28a316182 --- /dev/null +++ b/node_modules/statuses/LICENSE @@ -0,0 +1,23 @@ + +The MIT License (MIT) + +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2016 Douglas Christopher Wilson + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/node_modules/statuses/README.md b/node_modules/statuses/README.md new file mode 100644 index 000000000..57967e6e6 --- /dev/null +++ b/node_modules/statuses/README.md @@ -0,0 +1,136 @@ +# statuses + +[![NPM Version][npm-version-image]][npm-url] +[![NPM Downloads][npm-downloads-image]][npm-url] +[![Node.js Version][node-version-image]][node-version-url] +[![Build Status][ci-image]][ci-url] +[![Test Coverage][coveralls-image]][coveralls-url] + +HTTP status utility for node. + +This module provides a list of status codes and messages sourced from +a few different projects: + + * The [IANA Status Code Registry](https://www.iana.org/assignments/http-status-codes/http-status-codes.xhtml) + * The [Node.js project](https://nodejs.org/) + * The [NGINX project](https://www.nginx.com/) + * The [Apache HTTP Server project](https://httpd.apache.org/) + +## Installation + +This is a [Node.js](https://nodejs.org/en/) module available through the +[npm registry](https://www.npmjs.com/). Installation is done using the +[`npm install` command](https://docs.npmjs.com/getting-started/installing-npm-packages-locally): + +```sh +$ npm install statuses +``` + +## API + + + +```js +var status = require('statuses') +``` + +### status(code) + +Returns the status message string for a known HTTP status code. The code +may be a number or a string. An error is thrown for an unknown status code. + + + +```js +status(403) // => 'Forbidden' +status('403') // => 'Forbidden' +status(306) // throws +``` + +### status(msg) + +Returns the numeric status code for a known HTTP status message. The message +is case-insensitive. An error is thrown for an unknown status message. + + + +```js +status('forbidden') // => 403 +status('Forbidden') // => 403 +status('foo') // throws +``` + +### status.codes + +Returns an array of all the status codes as `Integer`s. + +### status.code[msg] + +Returns the numeric status code for a known status message (in lower-case), +otherwise `undefined`. + + + +```js +status['not found'] // => 404 +``` + +### status.empty[code] + +Returns `true` if a status code expects an empty body. + + + +```js +status.empty[200] // => undefined +status.empty[204] // => true +status.empty[304] // => true +``` + +### status.message[code] + +Returns the string message for a known numeric status code, otherwise +`undefined`. This object is the same format as the +[Node.js http module `http.STATUS_CODES`](https://nodejs.org/dist/latest/docs/api/http.html#http_http_status_codes). + + + +```js +status.message[404] // => 'Not Found' +``` + +### status.redirect[code] + +Returns `true` if a status code is a valid redirect status. + + + +```js +status.redirect[200] // => undefined +status.redirect[301] // => true +``` + +### status.retry[code] + +Returns `true` if you should retry the rest. + + + +```js +status.retry[501] // => undefined +status.retry[503] // => true +``` + +## License + +[MIT](LICENSE) + +[ci-image]: https://badgen.net/github/checks/jshttp/statuses/master?label=ci +[ci-url]: https://github.com/jshttp/statuses/actions?query=workflow%3Aci +[coveralls-image]: https://badgen.net/coveralls/c/github/jshttp/statuses/master +[coveralls-url]: https://coveralls.io/r/jshttp/statuses?branch=master +[node-version-image]: https://badgen.net/npm/node/statuses +[node-version-url]: https://nodejs.org/en/download +[npm-downloads-image]: https://badgen.net/npm/dm/statuses +[npm-url]: https://npmjs.org/package/statuses +[npm-version-image]: https://badgen.net/npm/v/statuses diff --git a/node_modules/statuses/codes.json b/node_modules/statuses/codes.json new file mode 100644 index 000000000..1333ed10b --- /dev/null +++ b/node_modules/statuses/codes.json @@ -0,0 +1,65 @@ +{ + "100": "Continue", + "101": "Switching Protocols", + "102": "Processing", + "103": "Early Hints", + "200": "OK", + "201": "Created", + "202": "Accepted", + "203": "Non-Authoritative Information", + "204": "No Content", + "205": "Reset Content", + "206": "Partial Content", + "207": "Multi-Status", + "208": "Already Reported", + "226": "IM Used", + "300": "Multiple Choices", + "301": "Moved Permanently", + "302": "Found", + "303": "See Other", + "304": "Not Modified", + "305": "Use Proxy", + "307": "Temporary Redirect", + "308": "Permanent Redirect", + "400": "Bad Request", + "401": "Unauthorized", + "402": "Payment Required", + "403": "Forbidden", + "404": "Not Found", + "405": "Method Not Allowed", + "406": "Not Acceptable", + "407": "Proxy Authentication Required", + "408": "Request Timeout", + "409": "Conflict", + "410": "Gone", + "411": "Length Required", + "412": "Precondition Failed", + "413": "Payload Too Large", + "414": "URI Too Long", + "415": "Unsupported Media Type", + "416": "Range Not Satisfiable", + "417": "Expectation Failed", + "418": "I'm a Teapot", + "421": "Misdirected Request", + "422": "Unprocessable Entity", + "423": "Locked", + "424": "Failed Dependency", + "425": "Too Early", + "426": "Upgrade Required", + "428": "Precondition Required", + "429": "Too Many Requests", + "431": "Request Header Fields Too Large", + "451": "Unavailable For Legal Reasons", + "500": "Internal Server Error", + "501": "Not Implemented", + "502": "Bad Gateway", + "503": "Service Unavailable", + "504": "Gateway Timeout", + "505": "HTTP Version Not Supported", + "506": "Variant Also Negotiates", + "507": "Insufficient Storage", + "508": "Loop Detected", + "509": "Bandwidth Limit Exceeded", + "510": "Not Extended", + "511": "Network Authentication Required" +} diff --git a/node_modules/statuses/index.js b/node_modules/statuses/index.js new file mode 100644 index 000000000..ea351c553 --- /dev/null +++ b/node_modules/statuses/index.js @@ -0,0 +1,146 @@ +/*! + * statuses + * Copyright(c) 2014 Jonathan Ong + * Copyright(c) 2016 Douglas Christopher Wilson + * MIT Licensed + */ + +'use strict' + +/** + * Module dependencies. + * @private + */ + +var codes = require('./codes.json') + +/** + * Module exports. + * @public + */ + +module.exports = status + +// status code to message map +status.message = codes + +// status message (lower-case) to code map +status.code = createMessageToStatusCodeMap(codes) + +// array of status codes +status.codes = createStatusCodeList(codes) + +// status codes for redirects +status.redirect = { + 300: true, + 301: true, + 302: true, + 303: true, + 305: true, + 307: true, + 308: true +} + +// status codes for empty bodies +status.empty = { + 204: true, + 205: true, + 304: true +} + +// status codes for when you should retry the request +status.retry = { + 502: true, + 503: true, + 504: true +} + +/** + * Create a map of message to status code. + * @private + */ + +function createMessageToStatusCodeMap (codes) { + var map = {} + + Object.keys(codes).forEach(function forEachCode (code) { + var message = codes[code] + var status = Number(code) + + // populate map + map[message.toLowerCase()] = status + }) + + return map +} + +/** + * Create a list of all status codes. + * @private + */ + +function createStatusCodeList (codes) { + return Object.keys(codes).map(function mapCode (code) { + return Number(code) + }) +} + +/** + * Get the status code for given message. + * @private + */ + +function getStatusCode (message) { + var msg = message.toLowerCase() + + if (!Object.prototype.hasOwnProperty.call(status.code, msg)) { + throw new Error('invalid status message: "' + message + '"') + } + + return status.code[msg] +} + +/** + * Get the status message for given code. + * @private + */ + +function getStatusMessage (code) { + if (!Object.prototype.hasOwnProperty.call(status.message, code)) { + throw new Error('invalid status code: ' + code) + } + + return status.message[code] +} + +/** + * Get the status code. + * + * Given a number, this will throw if it is not a known status + * code, otherwise the code will be returned. Given a string, + * the string will be parsed for a number and return the code + * if valid, otherwise will lookup the code assuming this is + * the status message. + * + * @param {string|number} code + * @returns {number} + * @public + */ + +function status (code) { + if (typeof code === 'number') { + return getStatusMessage(code) + } + + if (typeof code !== 'string') { + throw new TypeError('code must be a number or string') + } + + // '403' + var n = parseInt(code, 10) + if (!isNaN(n)) { + return getStatusMessage(n) + } + + return getStatusCode(code) +} diff --git a/node_modules/statuses/package.json b/node_modules/statuses/package.json new file mode 100644 index 000000000..8c3e719b5 --- /dev/null +++ b/node_modules/statuses/package.json @@ -0,0 +1,49 @@ +{ + "name": "statuses", + "description": "HTTP status utility", + "version": "2.0.1", + "contributors": [ + "Douglas Christopher Wilson ", + "Jonathan Ong (http://jongleberry.com)" + ], + "repository": "jshttp/statuses", + "license": "MIT", + "keywords": [ + "http", + "status", + "code" + ], + "files": [ + "HISTORY.md", + "index.js", + "codes.json", + "LICENSE" + ], + "devDependencies": { + "csv-parse": "4.14.2", + "eslint": "7.17.0", + "eslint-config-standard": "14.1.1", + "eslint-plugin-import": "2.22.1", + "eslint-plugin-markdown": "1.0.2", + "eslint-plugin-node": "11.1.0", + "eslint-plugin-promise": "4.2.1", + "eslint-plugin-standard": "4.1.0", + "mocha": "8.2.1", + "nyc": "15.1.0", + "raw-body": "2.4.1", + "stream-to-array": "2.3.0" + }, + "engines": { + "node": ">= 0.8" + }, + "scripts": { + "build": "node scripts/build.js", + "fetch": "node scripts/fetch-apache.js && node scripts/fetch-iana.js && node scripts/fetch-nginx.js && node scripts/fetch-node.js", + "lint": "eslint --plugin markdown --ext js,md .", + "test": "mocha --reporter spec --check-leaks --bail test/", + "test-ci": "nyc --reporter=lcov --reporter=text npm test", + "test-cov": "nyc --reporter=html --reporter=text npm test", + "update": "npm run fetch && npm run build", + "version": "node scripts/version-history.js && git add HISTORY.md" + } +} diff --git a/node_modules/toidentifier/HISTORY.md b/node_modules/toidentifier/HISTORY.md new file mode 100644 index 000000000..cb7cc8927 --- /dev/null +++ b/node_modules/toidentifier/HISTORY.md @@ -0,0 +1,9 @@ +1.0.1 / 2021-11-14 +================== + + * pref: enable strict mode + +1.0.0 / 2018-07-09 +================== + + * Initial release diff --git a/node_modules/toidentifier/LICENSE b/node_modules/toidentifier/LICENSE new file mode 100644 index 000000000..de22d1597 --- /dev/null +++ b/node_modules/toidentifier/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2016 Douglas Christopher Wilson + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/node_modules/toidentifier/README.md b/node_modules/toidentifier/README.md new file mode 100644 index 000000000..57e8a78ab --- /dev/null +++ b/node_modules/toidentifier/README.md @@ -0,0 +1,61 @@ +# toidentifier + +[![NPM Version][npm-image]][npm-url] +[![NPM Downloads][downloads-image]][downloads-url] +[![Build Status][github-actions-ci-image]][github-actions-ci-url] +[![Test Coverage][codecov-image]][codecov-url] + +> Convert a string of words to a JavaScript identifier + +## Install + +This is a [Node.js](https://nodejs.org/en/) module available through the +[npm registry](https://www.npmjs.com/). Installation is done using the +[`npm install` command](https://docs.npmjs.com/getting-started/installing-npm-packages-locally): + +```bash +$ npm install toidentifier +``` + +## Example + +```js +var toIdentifier = require('toidentifier') + +console.log(toIdentifier('Bad Request')) +// => "BadRequest" +``` + +## API + +This CommonJS module exports a single default function: `toIdentifier`. + +### toIdentifier(string) + +Given a string as the argument, it will be transformed according to +the following rules and the new string will be returned: + +1. Split into words separated by space characters (`0x20`). +2. Upper case the first character of each word. +3. Join the words together with no separator. +4. Remove all non-word (`[0-9a-z_]`) characters. + +## License + +[MIT](LICENSE) + +[codecov-image]: https://img.shields.io/codecov/c/github/component/toidentifier.svg +[codecov-url]: https://codecov.io/gh/component/toidentifier +[downloads-image]: https://img.shields.io/npm/dm/toidentifier.svg +[downloads-url]: https://npmjs.org/package/toidentifier +[github-actions-ci-image]: https://img.shields.io/github/workflow/status/component/toidentifier/ci/master?label=ci +[github-actions-ci-url]: https://github.com/component/toidentifier?query=workflow%3Aci +[npm-image]: https://img.shields.io/npm/v/toidentifier.svg +[npm-url]: https://npmjs.org/package/toidentifier + + +## + +[npm]: https://www.npmjs.com/ + +[yarn]: https://yarnpkg.com/ diff --git a/node_modules/toidentifier/index.js b/node_modules/toidentifier/index.js new file mode 100644 index 000000000..9295d024a --- /dev/null +++ b/node_modules/toidentifier/index.js @@ -0,0 +1,32 @@ +/*! + * toidentifier + * Copyright(c) 2016 Douglas Christopher Wilson + * MIT Licensed + */ + +'use strict' + +/** + * Module exports. + * @public + */ + +module.exports = toIdentifier + +/** + * Trasform the given string into a JavaScript identifier + * + * @param {string} str + * @returns {string} + * @public + */ + +function toIdentifier (str) { + return str + .split(' ') + .map(function (token) { + return token.slice(0, 1).toUpperCase() + token.slice(1) + }) + .join('') + .replace(/[^ _0-9a-z]/gi, '') +} diff --git a/node_modules/toidentifier/package.json b/node_modules/toidentifier/package.json new file mode 100644 index 000000000..42db1a664 --- /dev/null +++ b/node_modules/toidentifier/package.json @@ -0,0 +1,38 @@ +{ + "name": "toidentifier", + "description": "Convert a string of words to a JavaScript identifier", + "version": "1.0.1", + "author": "Douglas Christopher Wilson ", + "contributors": [ + "Douglas Christopher Wilson ", + "Nick Baugh (http://niftylettuce.com/)" + ], + "repository": "component/toidentifier", + "devDependencies": { + "eslint": "7.32.0", + "eslint-config-standard": "14.1.1", + "eslint-plugin-import": "2.25.3", + "eslint-plugin-markdown": "2.2.1", + "eslint-plugin-node": "11.1.0", + "eslint-plugin-promise": "4.3.1", + "eslint-plugin-standard": "4.1.0", + "mocha": "9.1.3", + "nyc": "15.1.0" + }, + "engines": { + "node": ">=0.6" + }, + "license": "MIT", + "files": [ + "HISTORY.md", + "LICENSE", + "index.js" + ], + "scripts": { + "lint": "eslint .", + "test": "mocha --reporter spec --bail --check-leaks test/", + "test-ci": "nyc --reporter=lcov --reporter=text npm test", + "test-cov": "nyc --reporter=html --reporter=text npm test", + "version": "node scripts/version-history.js && git add HISTORY.md" + } +} diff --git a/node_modules/tr46/LICENSE.md b/node_modules/tr46/LICENSE.md new file mode 100644 index 000000000..62c0de28a --- /dev/null +++ b/node_modules/tr46/LICENSE.md @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Sebastian Mayr + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/node_modules/tr46/README.md b/node_modules/tr46/README.md new file mode 100644 index 000000000..1df7915b7 --- /dev/null +++ b/node_modules/tr46/README.md @@ -0,0 +1,78 @@ +# tr46 + +An JavaScript implementation of [Unicode Technical Standard #46: Unicode IDNA Compatibility Processing](https://unicode.org/reports/tr46/). + +## Installation + +[Node.js](http://nodejs.org) ≥ 12 is required. To install, type this at the command line: + +```shell +npm install tr46 +# or +yarn add tr46 +``` + +## API + +### `toASCII(domainName[, options])` + +Converts a string of Unicode symbols to a case-folded Punycode string of ASCII symbols. + +Available options: + +* [`checkBidi`](#checkBidi) +* [`checkHyphens`](#checkHyphens) +* [`checkJoiners`](#checkJoiners) +* [`processingOption`](#processingOption) +* [`useSTD3ASCIIRules`](#useSTD3ASCIIRules) +* [`verifyDNSLength`](#verifyDNSLength) + +### `toUnicode(domainName[, options])` + +Converts a case-folded Punycode string of ASCII symbols to a string of Unicode symbols. + +Available options: + +* [`checkBidi`](#checkBidi) +* [`checkHyphens`](#checkHyphens) +* [`checkJoiners`](#checkJoiners) +* [`processingOption`](#processingOption) +* [`useSTD3ASCIIRules`](#useSTD3ASCIIRules) + +## Options + +### `checkBidi` + +Type: `boolean` +Default value: `false` +When set to `true`, any bi-directional text within the input will be checked for validation. + +### `checkHyphens` + +Type: `boolean` +Default value: `false` +When set to `true`, the positions of any hyphen characters within the input will be checked for validation. + +### `checkJoiners` + +Type: `boolean` +Default value: `false` +When set to `true`, any word joiner characters within the input will be checked for validation. + +### `processingOption` + +Type: `string` +Default value: `"nontransitional"` +When set to `"transitional"`, symbols within the input will be validated according to the older IDNA2003 protocol. When set to `"nontransitional"`, the current IDNA2008 protocol will be used. + +### `useSTD3ASCIIRules` + +Type: `boolean` +Default value: `false` +When set to `true`, input will be validated according to [STD3 Rules](http://unicode.org/reports/tr46/#STD3_Rules). + +### `verifyDNSLength` + +Type: `boolean` +Default value: `false` +When set to `true`, the length of each DNS label within the input will be checked for validation. diff --git a/node_modules/tr46/index.js b/node_modules/tr46/index.js new file mode 100644 index 000000000..7ce053272 --- /dev/null +++ b/node_modules/tr46/index.js @@ -0,0 +1,298 @@ +"use strict"; + +const punycode = require("punycode"); +const regexes = require("./lib/regexes.js"); +const mappingTable = require("./lib/mappingTable.json"); +const { STATUS_MAPPING } = require("./lib/statusMapping.js"); + +function containsNonASCII(str) { + return /[^\x00-\x7F]/u.test(str); +} + +function findStatus(val, { useSTD3ASCIIRules }) { + let start = 0; + let end = mappingTable.length - 1; + + while (start <= end) { + const mid = Math.floor((start + end) / 2); + + const target = mappingTable[mid]; + const min = Array.isArray(target[0]) ? target[0][0] : target[0]; + const max = Array.isArray(target[0]) ? target[0][1] : target[0]; + + if (min <= val && max >= val) { + if (useSTD3ASCIIRules && + (target[1] === STATUS_MAPPING.disallowed_STD3_valid || target[1] === STATUS_MAPPING.disallowed_STD3_mapped)) { + return [STATUS_MAPPING.disallowed, ...target.slice(2)]; + } else if (target[1] === STATUS_MAPPING.disallowed_STD3_valid) { + return [STATUS_MAPPING.valid, ...target.slice(2)]; + } else if (target[1] === STATUS_MAPPING.disallowed_STD3_mapped) { + return [STATUS_MAPPING.mapped, ...target.slice(2)]; + } + + return target.slice(1); + } else if (min > val) { + end = mid - 1; + } else { + start = mid + 1; + } + } + + return null; +} + +function mapChars(domainName, { useSTD3ASCIIRules, processingOption }) { + let hasError = false; + let processed = ""; + + for (const ch of domainName) { + const [status, mapping] = findStatus(ch.codePointAt(0), { useSTD3ASCIIRules }); + + switch (status) { + case STATUS_MAPPING.disallowed: + hasError = true; + processed += ch; + break; + case STATUS_MAPPING.ignored: + break; + case STATUS_MAPPING.mapped: + processed += mapping; + break; + case STATUS_MAPPING.deviation: + if (processingOption === "transitional") { + processed += mapping; + } else { + processed += ch; + } + break; + case STATUS_MAPPING.valid: + processed += ch; + break; + } + } + + return { + string: processed, + error: hasError + }; +} + +function validateLabel(label, { checkHyphens, checkBidi, checkJoiners, processingOption, useSTD3ASCIIRules }) { + if (label.normalize("NFC") !== label) { + return false; + } + + const codePoints = Array.from(label); + + if (checkHyphens) { + if ((codePoints[2] === "-" && codePoints[3] === "-") || + (label.startsWith("-") || label.endsWith("-"))) { + return false; + } + } + + if (label.includes(".") || + (codePoints.length > 0 && regexes.combiningMarks.test(codePoints[0]))) { + return false; + } + + for (const ch of codePoints) { + const [status] = findStatus(ch.codePointAt(0), { useSTD3ASCIIRules }); + if ((processingOption === "transitional" && status !== STATUS_MAPPING.valid) || + (processingOption === "nontransitional" && + status !== STATUS_MAPPING.valid && status !== STATUS_MAPPING.deviation)) { + return false; + } + } + + // https://tools.ietf.org/html/rfc5892#appendix-A + if (checkJoiners) { + let last = 0; + for (const [i, ch] of codePoints.entries()) { + if (ch === "\u200C" || ch === "\u200D") { + if (i > 0) { + if (regexes.combiningClassVirama.test(codePoints[i - 1])) { + continue; + } + if (ch === "\u200C") { + // TODO: make this more efficient + const next = codePoints.indexOf("\u200C", i + 1); + const test = next < 0 ? codePoints.slice(last) : codePoints.slice(last, next); + if (regexes.validZWNJ.test(test.join(""))) { + last = i + 1; + continue; + } + } + } + return false; + } + } + } + + // https://tools.ietf.org/html/rfc5893#section-2 + if (checkBidi) { + let rtl; + + // 1 + if (regexes.bidiS1LTR.test(codePoints[0])) { + rtl = false; + } else if (regexes.bidiS1RTL.test(codePoints[0])) { + rtl = true; + } else { + return false; + } + + if (rtl) { + // 2-4 + if (!regexes.bidiS2.test(label) || + !regexes.bidiS3.test(label) || + (regexes.bidiS4EN.test(label) && regexes.bidiS4AN.test(label))) { + return false; + } + } else if (!regexes.bidiS5.test(label) || + !regexes.bidiS6.test(label)) { // 5-6 + return false; + } + } + + return true; +} + +function isBidiDomain(labels) { + const domain = labels.map(label => { + if (label.startsWith("xn--")) { + try { + return punycode.decode(label.substring(4)); + } catch (err) { + return ""; + } + } + return label; + }).join("."); + return regexes.bidiDomain.test(domain); +} + +function processing(domainName, options) { + const { processingOption } = options; + + // 1. Map. + let { string, error } = mapChars(domainName, options); + + // 2. Normalize. + string = string.normalize("NFC"); + + // 3. Break. + const labels = string.split("."); + const isBidi = isBidiDomain(labels); + + // 4. Convert/Validate. + for (const [i, origLabel] of labels.entries()) { + let label = origLabel; + let curProcessing = processingOption; + if (label.startsWith("xn--")) { + try { + label = punycode.decode(label.substring(4)); + labels[i] = label; + } catch (err) { + error = true; + continue; + } + curProcessing = "nontransitional"; + } + + // No need to validate if we already know there is an error. + if (error) { + continue; + } + const validation = validateLabel(label, { + ...options, + processingOption: curProcessing, + checkBidi: options.checkBidi && isBidi + }); + if (!validation) { + error = true; + } + } + + return { + string: labels.join("."), + error + }; +} + +function toASCII(domainName, { + checkHyphens = false, + checkBidi = false, + checkJoiners = false, + useSTD3ASCIIRules = false, + processingOption = "nontransitional", + verifyDNSLength = false +} = {}) { + if (processingOption !== "transitional" && processingOption !== "nontransitional") { + throw new RangeError("processingOption must be either transitional or nontransitional"); + } + + const result = processing(domainName, { + processingOption, + checkHyphens, + checkBidi, + checkJoiners, + useSTD3ASCIIRules + }); + let labels = result.string.split("."); + labels = labels.map(l => { + if (containsNonASCII(l)) { + try { + return `xn--${punycode.encode(l)}`; + } catch (e) { + result.error = true; + } + } + return l; + }); + + if (verifyDNSLength) { + const total = labels.join(".").length; + if (total > 253 || total === 0) { + result.error = true; + } + + for (let i = 0; i < labels.length; ++i) { + if (labels[i].length > 63 || labels[i].length === 0) { + result.error = true; + break; + } + } + } + + if (result.error) { + return null; + } + return labels.join("."); +} + +function toUnicode(domainName, { + checkHyphens = false, + checkBidi = false, + checkJoiners = false, + useSTD3ASCIIRules = false, + processingOption = "nontransitional" +} = {}) { + const result = processing(domainName, { + processingOption, + checkHyphens, + checkBidi, + checkJoiners, + useSTD3ASCIIRules + }); + + return { + domain: result.string, + error: result.error + }; +} + +module.exports = { + toASCII, + toUnicode +}; diff --git a/node_modules/tr46/lib/mappingTable.json b/node_modules/tr46/lib/mappingTable.json new file mode 100644 index 000000000..3d71a5eff --- /dev/null +++ b/node_modules/tr46/lib/mappingTable.json @@ -0,0 +1 @@ +[[[0,44],4],[[45,46],2],[47,4],[[48,57],2],[[58,64],4],[65,1,"a"],[66,1,"b"],[67,1,"c"],[68,1,"d"],[69,1,"e"],[70,1,"f"],[71,1,"g"],[72,1,"h"],[73,1,"i"],[74,1,"j"],[75,1,"k"],[76,1,"l"],[77,1,"m"],[78,1,"n"],[79,1,"o"],[80,1,"p"],[81,1,"q"],[82,1,"r"],[83,1,"s"],[84,1,"t"],[85,1,"u"],[86,1,"v"],[87,1,"w"],[88,1,"x"],[89,1,"y"],[90,1,"z"],[[91,96],4],[[97,122],2],[[123,127],4],[[128,159],3],[160,5," "],[[161,167],2],[168,5," ̈"],[169,2],[170,1,"a"],[[171,172],2],[173,7],[174,2],[175,5," ̄"],[[176,177],2],[178,1,"2"],[179,1,"3"],[180,5," ́"],[181,1,"μ"],[182,2],[183,2],[184,5," ̧"],[185,1,"1"],[186,1,"o"],[187,2],[188,1,"1⁄4"],[189,1,"1⁄2"],[190,1,"3⁄4"],[191,2],[192,1,"à"],[193,1,"á"],[194,1,"â"],[195,1,"ã"],[196,1,"ä"],[197,1,"å"],[198,1,"æ"],[199,1,"ç"],[200,1,"è"],[201,1,"é"],[202,1,"ê"],[203,1,"ë"],[204,1,"ì"],[205,1,"í"],[206,1,"î"],[207,1,"ï"],[208,1,"ð"],[209,1,"ñ"],[210,1,"ò"],[211,1,"ó"],[212,1,"ô"],[213,1,"õ"],[214,1,"ö"],[215,2],[216,1,"ø"],[217,1,"ù"],[218,1,"ú"],[219,1,"û"],[220,1,"ü"],[221,1,"ý"],[222,1,"þ"],[223,6,"ss"],[[224,246],2],[247,2],[[248,255],2],[256,1,"ā"],[257,2],[258,1,"ă"],[259,2],[260,1,"ą"],[261,2],[262,1,"ć"],[263,2],[264,1,"ĉ"],[265,2],[266,1,"ċ"],[267,2],[268,1,"č"],[269,2],[270,1,"ď"],[271,2],[272,1,"đ"],[273,2],[274,1,"ē"],[275,2],[276,1,"ĕ"],[277,2],[278,1,"ė"],[279,2],[280,1,"ę"],[281,2],[282,1,"ě"],[283,2],[284,1,"ĝ"],[285,2],[286,1,"ğ"],[287,2],[288,1,"ġ"],[289,2],[290,1,"ģ"],[291,2],[292,1,"ĥ"],[293,2],[294,1,"ħ"],[295,2],[296,1,"ĩ"],[297,2],[298,1,"ī"],[299,2],[300,1,"ĭ"],[301,2],[302,1,"į"],[303,2],[304,1,"i̇"],[305,2],[[306,307],1,"ij"],[308,1,"ĵ"],[309,2],[310,1,"ķ"],[[311,312],2],[313,1,"ĺ"],[314,2],[315,1,"ļ"],[316,2],[317,1,"ľ"],[318,2],[[319,320],1,"l·"],[321,1,"ł"],[322,2],[323,1,"ń"],[324,2],[325,1,"ņ"],[326,2],[327,1,"ň"],[328,2],[329,1,"ʼn"],[330,1,"ŋ"],[331,2],[332,1,"ō"],[333,2],[334,1,"ŏ"],[335,2],[336,1,"ő"],[337,2],[338,1,"œ"],[339,2],[340,1,"ŕ"],[341,2],[342,1,"ŗ"],[343,2],[344,1,"ř"],[345,2],[346,1,"ś"],[347,2],[348,1,"ŝ"],[349,2],[350,1,"ş"],[351,2],[352,1,"š"],[353,2],[354,1,"ţ"],[355,2],[356,1,"ť"],[357,2],[358,1,"ŧ"],[359,2],[360,1,"ũ"],[361,2],[362,1,"ū"],[363,2],[364,1,"ŭ"],[365,2],[366,1,"ů"],[367,2],[368,1,"ű"],[369,2],[370,1,"ų"],[371,2],[372,1,"ŵ"],[373,2],[374,1,"ŷ"],[375,2],[376,1,"ÿ"],[377,1,"ź"],[378,2],[379,1,"ż"],[380,2],[381,1,"ž"],[382,2],[383,1,"s"],[384,2],[385,1,"ɓ"],[386,1,"ƃ"],[387,2],[388,1,"ƅ"],[389,2],[390,1,"ɔ"],[391,1,"ƈ"],[392,2],[393,1,"ɖ"],[394,1,"ɗ"],[395,1,"ƌ"],[[396,397],2],[398,1,"ǝ"],[399,1,"ə"],[400,1,"ɛ"],[401,1,"ƒ"],[402,2],[403,1,"ɠ"],[404,1,"ɣ"],[405,2],[406,1,"ɩ"],[407,1,"ɨ"],[408,1,"ƙ"],[[409,411],2],[412,1,"ɯ"],[413,1,"ɲ"],[414,2],[415,1,"ɵ"],[416,1,"ơ"],[417,2],[418,1,"ƣ"],[419,2],[420,1,"ƥ"],[421,2],[422,1,"ʀ"],[423,1,"ƨ"],[424,2],[425,1,"ʃ"],[[426,427],2],[428,1,"ƭ"],[429,2],[430,1,"ʈ"],[431,1,"ư"],[432,2],[433,1,"ʊ"],[434,1,"ʋ"],[435,1,"ƴ"],[436,2],[437,1,"ƶ"],[438,2],[439,1,"ʒ"],[440,1,"ƹ"],[[441,443],2],[444,1,"ƽ"],[[445,451],2],[[452,454],1,"dž"],[[455,457],1,"lj"],[[458,460],1,"nj"],[461,1,"ǎ"],[462,2],[463,1,"ǐ"],[464,2],[465,1,"ǒ"],[466,2],[467,1,"ǔ"],[468,2],[469,1,"ǖ"],[470,2],[471,1,"ǘ"],[472,2],[473,1,"ǚ"],[474,2],[475,1,"ǜ"],[[476,477],2],[478,1,"ǟ"],[479,2],[480,1,"ǡ"],[481,2],[482,1,"ǣ"],[483,2],[484,1,"ǥ"],[485,2],[486,1,"ǧ"],[487,2],[488,1,"ǩ"],[489,2],[490,1,"ǫ"],[491,2],[492,1,"ǭ"],[493,2],[494,1,"ǯ"],[[495,496],2],[[497,499],1,"dz"],[500,1,"ǵ"],[501,2],[502,1,"ƕ"],[503,1,"ƿ"],[504,1,"ǹ"],[505,2],[506,1,"ǻ"],[507,2],[508,1,"ǽ"],[509,2],[510,1,"ǿ"],[511,2],[512,1,"ȁ"],[513,2],[514,1,"ȃ"],[515,2],[516,1,"ȅ"],[517,2],[518,1,"ȇ"],[519,2],[520,1,"ȉ"],[521,2],[522,1,"ȋ"],[523,2],[524,1,"ȍ"],[525,2],[526,1,"ȏ"],[527,2],[528,1,"ȑ"],[529,2],[530,1,"ȓ"],[531,2],[532,1,"ȕ"],[533,2],[534,1,"ȗ"],[535,2],[536,1,"ș"],[537,2],[538,1,"ț"],[539,2],[540,1,"ȝ"],[541,2],[542,1,"ȟ"],[543,2],[544,1,"ƞ"],[545,2],[546,1,"ȣ"],[547,2],[548,1,"ȥ"],[549,2],[550,1,"ȧ"],[551,2],[552,1,"ȩ"],[553,2],[554,1,"ȫ"],[555,2],[556,1,"ȭ"],[557,2],[558,1,"ȯ"],[559,2],[560,1,"ȱ"],[561,2],[562,1,"ȳ"],[563,2],[[564,566],2],[[567,569],2],[570,1,"ⱥ"],[571,1,"ȼ"],[572,2],[573,1,"ƚ"],[574,1,"ⱦ"],[[575,576],2],[577,1,"ɂ"],[578,2],[579,1,"ƀ"],[580,1,"ʉ"],[581,1,"ʌ"],[582,1,"ɇ"],[583,2],[584,1,"ɉ"],[585,2],[586,1,"ɋ"],[587,2],[588,1,"ɍ"],[589,2],[590,1,"ɏ"],[591,2],[[592,680],2],[[681,685],2],[[686,687],2],[688,1,"h"],[689,1,"ɦ"],[690,1,"j"],[691,1,"r"],[692,1,"ɹ"],[693,1,"ɻ"],[694,1,"ʁ"],[695,1,"w"],[696,1,"y"],[[697,705],2],[[706,709],2],[[710,721],2],[[722,727],2],[728,5," ̆"],[729,5," ̇"],[730,5," ̊"],[731,5," ̨"],[732,5," ̃"],[733,5," ̋"],[734,2],[735,2],[736,1,"ɣ"],[737,1,"l"],[738,1,"s"],[739,1,"x"],[740,1,"ʕ"],[[741,745],2],[[746,747],2],[748,2],[749,2],[750,2],[[751,767],2],[[768,831],2],[832,1,"̀"],[833,1,"́"],[834,2],[835,1,"̓"],[836,1,"̈́"],[837,1,"ι"],[[838,846],2],[847,7],[[848,855],2],[[856,860],2],[[861,863],2],[[864,865],2],[866,2],[[867,879],2],[880,1,"ͱ"],[881,2],[882,1,"ͳ"],[883,2],[884,1,"ʹ"],[885,2],[886,1,"ͷ"],[887,2],[[888,889],3],[890,5," ι"],[[891,893],2],[894,5,";"],[895,1,"ϳ"],[[896,899],3],[900,5," ́"],[901,5," ̈́"],[902,1,"ά"],[903,1,"·"],[904,1,"έ"],[905,1,"ή"],[906,1,"ί"],[907,3],[908,1,"ό"],[909,3],[910,1,"ύ"],[911,1,"ώ"],[912,2],[913,1,"α"],[914,1,"β"],[915,1,"γ"],[916,1,"δ"],[917,1,"ε"],[918,1,"ζ"],[919,1,"η"],[920,1,"θ"],[921,1,"ι"],[922,1,"κ"],[923,1,"λ"],[924,1,"μ"],[925,1,"ν"],[926,1,"ξ"],[927,1,"ο"],[928,1,"π"],[929,1,"ρ"],[930,3],[931,1,"σ"],[932,1,"τ"],[933,1,"υ"],[934,1,"φ"],[935,1,"χ"],[936,1,"ψ"],[937,1,"ω"],[938,1,"ϊ"],[939,1,"ϋ"],[[940,961],2],[962,6,"σ"],[[963,974],2],[975,1,"ϗ"],[976,1,"β"],[977,1,"θ"],[978,1,"υ"],[979,1,"ύ"],[980,1,"ϋ"],[981,1,"φ"],[982,1,"π"],[983,2],[984,1,"ϙ"],[985,2],[986,1,"ϛ"],[987,2],[988,1,"ϝ"],[989,2],[990,1,"ϟ"],[991,2],[992,1,"ϡ"],[993,2],[994,1,"ϣ"],[995,2],[996,1,"ϥ"],[997,2],[998,1,"ϧ"],[999,2],[1000,1,"ϩ"],[1001,2],[1002,1,"ϫ"],[1003,2],[1004,1,"ϭ"],[1005,2],[1006,1,"ϯ"],[1007,2],[1008,1,"κ"],[1009,1,"ρ"],[1010,1,"σ"],[1011,2],[1012,1,"θ"],[1013,1,"ε"],[1014,2],[1015,1,"ϸ"],[1016,2],[1017,1,"σ"],[1018,1,"ϻ"],[1019,2],[1020,2],[1021,1,"ͻ"],[1022,1,"ͼ"],[1023,1,"ͽ"],[1024,1,"ѐ"],[1025,1,"ё"],[1026,1,"ђ"],[1027,1,"ѓ"],[1028,1,"є"],[1029,1,"ѕ"],[1030,1,"і"],[1031,1,"ї"],[1032,1,"ј"],[1033,1,"љ"],[1034,1,"њ"],[1035,1,"ћ"],[1036,1,"ќ"],[1037,1,"ѝ"],[1038,1,"ў"],[1039,1,"џ"],[1040,1,"а"],[1041,1,"б"],[1042,1,"в"],[1043,1,"г"],[1044,1,"д"],[1045,1,"е"],[1046,1,"ж"],[1047,1,"з"],[1048,1,"и"],[1049,1,"й"],[1050,1,"к"],[1051,1,"л"],[1052,1,"м"],[1053,1,"н"],[1054,1,"о"],[1055,1,"п"],[1056,1,"р"],[1057,1,"с"],[1058,1,"т"],[1059,1,"у"],[1060,1,"ф"],[1061,1,"х"],[1062,1,"ц"],[1063,1,"ч"],[1064,1,"ш"],[1065,1,"щ"],[1066,1,"ъ"],[1067,1,"ы"],[1068,1,"ь"],[1069,1,"э"],[1070,1,"ю"],[1071,1,"я"],[[1072,1103],2],[1104,2],[[1105,1116],2],[1117,2],[[1118,1119],2],[1120,1,"ѡ"],[1121,2],[1122,1,"ѣ"],[1123,2],[1124,1,"ѥ"],[1125,2],[1126,1,"ѧ"],[1127,2],[1128,1,"ѩ"],[1129,2],[1130,1,"ѫ"],[1131,2],[1132,1,"ѭ"],[1133,2],[1134,1,"ѯ"],[1135,2],[1136,1,"ѱ"],[1137,2],[1138,1,"ѳ"],[1139,2],[1140,1,"ѵ"],[1141,2],[1142,1,"ѷ"],[1143,2],[1144,1,"ѹ"],[1145,2],[1146,1,"ѻ"],[1147,2],[1148,1,"ѽ"],[1149,2],[1150,1,"ѿ"],[1151,2],[1152,1,"ҁ"],[1153,2],[1154,2],[[1155,1158],2],[1159,2],[[1160,1161],2],[1162,1,"ҋ"],[1163,2],[1164,1,"ҍ"],[1165,2],[1166,1,"ҏ"],[1167,2],[1168,1,"ґ"],[1169,2],[1170,1,"ғ"],[1171,2],[1172,1,"ҕ"],[1173,2],[1174,1,"җ"],[1175,2],[1176,1,"ҙ"],[1177,2],[1178,1,"қ"],[1179,2],[1180,1,"ҝ"],[1181,2],[1182,1,"ҟ"],[1183,2],[1184,1,"ҡ"],[1185,2],[1186,1,"ң"],[1187,2],[1188,1,"ҥ"],[1189,2],[1190,1,"ҧ"],[1191,2],[1192,1,"ҩ"],[1193,2],[1194,1,"ҫ"],[1195,2],[1196,1,"ҭ"],[1197,2],[1198,1,"ү"],[1199,2],[1200,1,"ұ"],[1201,2],[1202,1,"ҳ"],[1203,2],[1204,1,"ҵ"],[1205,2],[1206,1,"ҷ"],[1207,2],[1208,1,"ҹ"],[1209,2],[1210,1,"һ"],[1211,2],[1212,1,"ҽ"],[1213,2],[1214,1,"ҿ"],[1215,2],[1216,3],[1217,1,"ӂ"],[1218,2],[1219,1,"ӄ"],[1220,2],[1221,1,"ӆ"],[1222,2],[1223,1,"ӈ"],[1224,2],[1225,1,"ӊ"],[1226,2],[1227,1,"ӌ"],[1228,2],[1229,1,"ӎ"],[1230,2],[1231,2],[1232,1,"ӑ"],[1233,2],[1234,1,"ӓ"],[1235,2],[1236,1,"ӕ"],[1237,2],[1238,1,"ӗ"],[1239,2],[1240,1,"ә"],[1241,2],[1242,1,"ӛ"],[1243,2],[1244,1,"ӝ"],[1245,2],[1246,1,"ӟ"],[1247,2],[1248,1,"ӡ"],[1249,2],[1250,1,"ӣ"],[1251,2],[1252,1,"ӥ"],[1253,2],[1254,1,"ӧ"],[1255,2],[1256,1,"ө"],[1257,2],[1258,1,"ӫ"],[1259,2],[1260,1,"ӭ"],[1261,2],[1262,1,"ӯ"],[1263,2],[1264,1,"ӱ"],[1265,2],[1266,1,"ӳ"],[1267,2],[1268,1,"ӵ"],[1269,2],[1270,1,"ӷ"],[1271,2],[1272,1,"ӹ"],[1273,2],[1274,1,"ӻ"],[1275,2],[1276,1,"ӽ"],[1277,2],[1278,1,"ӿ"],[1279,2],[1280,1,"ԁ"],[1281,2],[1282,1,"ԃ"],[1283,2],[1284,1,"ԅ"],[1285,2],[1286,1,"ԇ"],[1287,2],[1288,1,"ԉ"],[1289,2],[1290,1,"ԋ"],[1291,2],[1292,1,"ԍ"],[1293,2],[1294,1,"ԏ"],[1295,2],[1296,1,"ԑ"],[1297,2],[1298,1,"ԓ"],[1299,2],[1300,1,"ԕ"],[1301,2],[1302,1,"ԗ"],[1303,2],[1304,1,"ԙ"],[1305,2],[1306,1,"ԛ"],[1307,2],[1308,1,"ԝ"],[1309,2],[1310,1,"ԟ"],[1311,2],[1312,1,"ԡ"],[1313,2],[1314,1,"ԣ"],[1315,2],[1316,1,"ԥ"],[1317,2],[1318,1,"ԧ"],[1319,2],[1320,1,"ԩ"],[1321,2],[1322,1,"ԫ"],[1323,2],[1324,1,"ԭ"],[1325,2],[1326,1,"ԯ"],[1327,2],[1328,3],[1329,1,"ա"],[1330,1,"բ"],[1331,1,"գ"],[1332,1,"դ"],[1333,1,"ե"],[1334,1,"զ"],[1335,1,"է"],[1336,1,"ը"],[1337,1,"թ"],[1338,1,"ժ"],[1339,1,"ի"],[1340,1,"լ"],[1341,1,"խ"],[1342,1,"ծ"],[1343,1,"կ"],[1344,1,"հ"],[1345,1,"ձ"],[1346,1,"ղ"],[1347,1,"ճ"],[1348,1,"մ"],[1349,1,"յ"],[1350,1,"ն"],[1351,1,"շ"],[1352,1,"ո"],[1353,1,"չ"],[1354,1,"պ"],[1355,1,"ջ"],[1356,1,"ռ"],[1357,1,"ս"],[1358,1,"վ"],[1359,1,"տ"],[1360,1,"ր"],[1361,1,"ց"],[1362,1,"ւ"],[1363,1,"փ"],[1364,1,"ք"],[1365,1,"օ"],[1366,1,"ֆ"],[[1367,1368],3],[1369,2],[[1370,1375],2],[1376,2],[[1377,1414],2],[1415,1,"եւ"],[1416,2],[1417,2],[1418,2],[[1419,1420],3],[[1421,1422],2],[1423,2],[1424,3],[[1425,1441],2],[1442,2],[[1443,1455],2],[[1456,1465],2],[1466,2],[[1467,1469],2],[1470,2],[1471,2],[1472,2],[[1473,1474],2],[1475,2],[1476,2],[1477,2],[1478,2],[1479,2],[[1480,1487],3],[[1488,1514],2],[[1515,1518],3],[1519,2],[[1520,1524],2],[[1525,1535],3],[[1536,1539],3],[1540,3],[1541,3],[[1542,1546],2],[1547,2],[1548,2],[[1549,1551],2],[[1552,1557],2],[[1558,1562],2],[1563,2],[1564,3],[1565,2],[1566,2],[1567,2],[1568,2],[[1569,1594],2],[[1595,1599],2],[1600,2],[[1601,1618],2],[[1619,1621],2],[[1622,1624],2],[[1625,1630],2],[1631,2],[[1632,1641],2],[[1642,1645],2],[[1646,1647],2],[[1648,1652],2],[1653,1,"اٴ"],[1654,1,"وٴ"],[1655,1,"ۇٴ"],[1656,1,"يٴ"],[[1657,1719],2],[[1720,1721],2],[[1722,1726],2],[1727,2],[[1728,1742],2],[1743,2],[[1744,1747],2],[1748,2],[[1749,1756],2],[1757,3],[1758,2],[[1759,1768],2],[1769,2],[[1770,1773],2],[[1774,1775],2],[[1776,1785],2],[[1786,1790],2],[1791,2],[[1792,1805],2],[1806,3],[1807,3],[[1808,1836],2],[[1837,1839],2],[[1840,1866],2],[[1867,1868],3],[[1869,1871],2],[[1872,1901],2],[[1902,1919],2],[[1920,1968],2],[1969,2],[[1970,1983],3],[[1984,2037],2],[[2038,2042],2],[[2043,2044],3],[2045,2],[[2046,2047],2],[[2048,2093],2],[[2094,2095],3],[[2096,2110],2],[2111,3],[[2112,2139],2],[[2140,2141],3],[2142,2],[2143,3],[[2144,2154],2],[[2155,2159],3],[[2160,2183],2],[2184,2],[[2185,2190],2],[2191,3],[[2192,2193],3],[[2194,2199],3],[[2200,2207],2],[2208,2],[2209,2],[[2210,2220],2],[[2221,2226],2],[[2227,2228],2],[2229,2],[[2230,2237],2],[[2238,2247],2],[[2248,2258],2],[2259,2],[[2260,2273],2],[2274,3],[2275,2],[[2276,2302],2],[2303,2],[2304,2],[[2305,2307],2],[2308,2],[[2309,2361],2],[[2362,2363],2],[[2364,2381],2],[2382,2],[2383,2],[[2384,2388],2],[2389,2],[[2390,2391],2],[2392,1,"क़"],[2393,1,"ख़"],[2394,1,"ग़"],[2395,1,"ज़"],[2396,1,"ड़"],[2397,1,"ढ़"],[2398,1,"फ़"],[2399,1,"य़"],[[2400,2403],2],[[2404,2405],2],[[2406,2415],2],[2416,2],[[2417,2418],2],[[2419,2423],2],[2424,2],[[2425,2426],2],[[2427,2428],2],[2429,2],[[2430,2431],2],[2432,2],[[2433,2435],2],[2436,3],[[2437,2444],2],[[2445,2446],3],[[2447,2448],2],[[2449,2450],3],[[2451,2472],2],[2473,3],[[2474,2480],2],[2481,3],[2482,2],[[2483,2485],3],[[2486,2489],2],[[2490,2491],3],[2492,2],[2493,2],[[2494,2500],2],[[2501,2502],3],[[2503,2504],2],[[2505,2506],3],[[2507,2509],2],[2510,2],[[2511,2518],3],[2519,2],[[2520,2523],3],[2524,1,"ড়"],[2525,1,"ঢ়"],[2526,3],[2527,1,"য়"],[[2528,2531],2],[[2532,2533],3],[[2534,2545],2],[[2546,2554],2],[2555,2],[2556,2],[2557,2],[2558,2],[[2559,2560],3],[2561,2],[2562,2],[2563,2],[2564,3],[[2565,2570],2],[[2571,2574],3],[[2575,2576],2],[[2577,2578],3],[[2579,2600],2],[2601,3],[[2602,2608],2],[2609,3],[2610,2],[2611,1,"ਲ਼"],[2612,3],[2613,2],[2614,1,"ਸ਼"],[2615,3],[[2616,2617],2],[[2618,2619],3],[2620,2],[2621,3],[[2622,2626],2],[[2627,2630],3],[[2631,2632],2],[[2633,2634],3],[[2635,2637],2],[[2638,2640],3],[2641,2],[[2642,2648],3],[2649,1,"ਖ਼"],[2650,1,"ਗ਼"],[2651,1,"ਜ਼"],[2652,2],[2653,3],[2654,1,"ਫ਼"],[[2655,2661],3],[[2662,2676],2],[2677,2],[2678,2],[[2679,2688],3],[[2689,2691],2],[2692,3],[[2693,2699],2],[2700,2],[2701,2],[2702,3],[[2703,2705],2],[2706,3],[[2707,2728],2],[2729,3],[[2730,2736],2],[2737,3],[[2738,2739],2],[2740,3],[[2741,2745],2],[[2746,2747],3],[[2748,2757],2],[2758,3],[[2759,2761],2],[2762,3],[[2763,2765],2],[[2766,2767],3],[2768,2],[[2769,2783],3],[2784,2],[[2785,2787],2],[[2788,2789],3],[[2790,2799],2],[2800,2],[2801,2],[[2802,2808],3],[2809,2],[[2810,2815],2],[2816,3],[[2817,2819],2],[2820,3],[[2821,2828],2],[[2829,2830],3],[[2831,2832],2],[[2833,2834],3],[[2835,2856],2],[2857,3],[[2858,2864],2],[2865,3],[[2866,2867],2],[2868,3],[2869,2],[[2870,2873],2],[[2874,2875],3],[[2876,2883],2],[2884,2],[[2885,2886],3],[[2887,2888],2],[[2889,2890],3],[[2891,2893],2],[[2894,2900],3],[2901,2],[[2902,2903],2],[[2904,2907],3],[2908,1,"ଡ଼"],[2909,1,"ଢ଼"],[2910,3],[[2911,2913],2],[[2914,2915],2],[[2916,2917],3],[[2918,2927],2],[2928,2],[2929,2],[[2930,2935],2],[[2936,2945],3],[[2946,2947],2],[2948,3],[[2949,2954],2],[[2955,2957],3],[[2958,2960],2],[2961,3],[[2962,2965],2],[[2966,2968],3],[[2969,2970],2],[2971,3],[2972,2],[2973,3],[[2974,2975],2],[[2976,2978],3],[[2979,2980],2],[[2981,2983],3],[[2984,2986],2],[[2987,2989],3],[[2990,2997],2],[2998,2],[[2999,3001],2],[[3002,3005],3],[[3006,3010],2],[[3011,3013],3],[[3014,3016],2],[3017,3],[[3018,3021],2],[[3022,3023],3],[3024,2],[[3025,3030],3],[3031,2],[[3032,3045],3],[3046,2],[[3047,3055],2],[[3056,3058],2],[[3059,3066],2],[[3067,3071],3],[3072,2],[[3073,3075],2],[3076,2],[[3077,3084],2],[3085,3],[[3086,3088],2],[3089,3],[[3090,3112],2],[3113,3],[[3114,3123],2],[3124,2],[[3125,3129],2],[[3130,3131],3],[3132,2],[3133,2],[[3134,3140],2],[3141,3],[[3142,3144],2],[3145,3],[[3146,3149],2],[[3150,3156],3],[[3157,3158],2],[3159,3],[[3160,3161],2],[3162,2],[[3163,3164],3],[3165,2],[[3166,3167],3],[[3168,3169],2],[[3170,3171],2],[[3172,3173],3],[[3174,3183],2],[[3184,3190],3],[3191,2],[[3192,3199],2],[3200,2],[3201,2],[[3202,3203],2],[3204,2],[[3205,3212],2],[3213,3],[[3214,3216],2],[3217,3],[[3218,3240],2],[3241,3],[[3242,3251],2],[3252,3],[[3253,3257],2],[[3258,3259],3],[[3260,3261],2],[[3262,3268],2],[3269,3],[[3270,3272],2],[3273,3],[[3274,3277],2],[[3278,3284],3],[[3285,3286],2],[[3287,3292],3],[3293,2],[3294,2],[3295,3],[[3296,3297],2],[[3298,3299],2],[[3300,3301],3],[[3302,3311],2],[3312,3],[[3313,3314],2],[[3315,3327],3],[3328,2],[3329,2],[[3330,3331],2],[3332,2],[[3333,3340],2],[3341,3],[[3342,3344],2],[3345,3],[[3346,3368],2],[3369,2],[[3370,3385],2],[3386,2],[[3387,3388],2],[3389,2],[[3390,3395],2],[3396,2],[3397,3],[[3398,3400],2],[3401,3],[[3402,3405],2],[3406,2],[3407,2],[[3408,3411],3],[[3412,3414],2],[3415,2],[[3416,3422],2],[3423,2],[[3424,3425],2],[[3426,3427],2],[[3428,3429],3],[[3430,3439],2],[[3440,3445],2],[[3446,3448],2],[3449,2],[[3450,3455],2],[3456,3],[3457,2],[[3458,3459],2],[3460,3],[[3461,3478],2],[[3479,3481],3],[[3482,3505],2],[3506,3],[[3507,3515],2],[3516,3],[3517,2],[[3518,3519],3],[[3520,3526],2],[[3527,3529],3],[3530,2],[[3531,3534],3],[[3535,3540],2],[3541,3],[3542,2],[3543,3],[[3544,3551],2],[[3552,3557],3],[[3558,3567],2],[[3568,3569],3],[[3570,3571],2],[3572,2],[[3573,3584],3],[[3585,3634],2],[3635,1,"ํา"],[[3636,3642],2],[[3643,3646],3],[3647,2],[[3648,3662],2],[3663,2],[[3664,3673],2],[[3674,3675],2],[[3676,3712],3],[[3713,3714],2],[3715,3],[3716,2],[3717,3],[3718,2],[[3719,3720],2],[3721,2],[3722,2],[3723,3],[3724,2],[3725,2],[[3726,3731],2],[[3732,3735],2],[3736,2],[[3737,3743],2],[3744,2],[[3745,3747],2],[3748,3],[3749,2],[3750,3],[3751,2],[[3752,3753],2],[[3754,3755],2],[3756,2],[[3757,3762],2],[3763,1,"ໍາ"],[[3764,3769],2],[3770,2],[[3771,3773],2],[[3774,3775],3],[[3776,3780],2],[3781,3],[3782,2],[3783,3],[[3784,3789],2],[[3790,3791],3],[[3792,3801],2],[[3802,3803],3],[3804,1,"ຫນ"],[3805,1,"ຫມ"],[[3806,3807],2],[[3808,3839],3],[3840,2],[[3841,3850],2],[3851,2],[3852,1,"་"],[[3853,3863],2],[[3864,3865],2],[[3866,3871],2],[[3872,3881],2],[[3882,3892],2],[3893,2],[3894,2],[3895,2],[3896,2],[3897,2],[[3898,3901],2],[[3902,3906],2],[3907,1,"གྷ"],[[3908,3911],2],[3912,3],[[3913,3916],2],[3917,1,"ཌྷ"],[[3918,3921],2],[3922,1,"དྷ"],[[3923,3926],2],[3927,1,"བྷ"],[[3928,3931],2],[3932,1,"ཛྷ"],[[3933,3944],2],[3945,1,"ཀྵ"],[3946,2],[[3947,3948],2],[[3949,3952],3],[[3953,3954],2],[3955,1,"ཱི"],[3956,2],[3957,1,"ཱུ"],[3958,1,"ྲྀ"],[3959,1,"ྲཱྀ"],[3960,1,"ླྀ"],[3961,1,"ླཱྀ"],[[3962,3968],2],[3969,1,"ཱྀ"],[[3970,3972],2],[3973,2],[[3974,3979],2],[[3980,3983],2],[[3984,3986],2],[3987,1,"ྒྷ"],[[3988,3989],2],[3990,2],[3991,2],[3992,3],[[3993,3996],2],[3997,1,"ྜྷ"],[[3998,4001],2],[4002,1,"ྡྷ"],[[4003,4006],2],[4007,1,"ྦྷ"],[[4008,4011],2],[4012,1,"ྫྷ"],[4013,2],[[4014,4016],2],[[4017,4023],2],[4024,2],[4025,1,"ྐྵ"],[[4026,4028],2],[4029,3],[[4030,4037],2],[4038,2],[[4039,4044],2],[4045,3],[4046,2],[4047,2],[[4048,4049],2],[[4050,4052],2],[[4053,4056],2],[[4057,4058],2],[[4059,4095],3],[[4096,4129],2],[4130,2],[[4131,4135],2],[4136,2],[[4137,4138],2],[4139,2],[[4140,4146],2],[[4147,4149],2],[[4150,4153],2],[[4154,4159],2],[[4160,4169],2],[[4170,4175],2],[[4176,4185],2],[[4186,4249],2],[[4250,4253],2],[[4254,4255],2],[[4256,4293],3],[4294,3],[4295,1,"ⴧ"],[[4296,4300],3],[4301,1,"ⴭ"],[[4302,4303],3],[[4304,4342],2],[[4343,4344],2],[[4345,4346],2],[4347,2],[4348,1,"ნ"],[[4349,4351],2],[[4352,4441],2],[[4442,4446],2],[[4447,4448],3],[[4449,4514],2],[[4515,4519],2],[[4520,4601],2],[[4602,4607],2],[[4608,4614],2],[4615,2],[[4616,4678],2],[4679,2],[4680,2],[4681,3],[[4682,4685],2],[[4686,4687],3],[[4688,4694],2],[4695,3],[4696,2],[4697,3],[[4698,4701],2],[[4702,4703],3],[[4704,4742],2],[4743,2],[4744,2],[4745,3],[[4746,4749],2],[[4750,4751],3],[[4752,4782],2],[4783,2],[4784,2],[4785,3],[[4786,4789],2],[[4790,4791],3],[[4792,4798],2],[4799,3],[4800,2],[4801,3],[[4802,4805],2],[[4806,4807],3],[[4808,4814],2],[4815,2],[[4816,4822],2],[4823,3],[[4824,4846],2],[4847,2],[[4848,4878],2],[4879,2],[4880,2],[4881,3],[[4882,4885],2],[[4886,4887],3],[[4888,4894],2],[4895,2],[[4896,4934],2],[4935,2],[[4936,4954],2],[[4955,4956],3],[[4957,4958],2],[4959,2],[4960,2],[[4961,4988],2],[[4989,4991],3],[[4992,5007],2],[[5008,5017],2],[[5018,5023],3],[[5024,5108],2],[5109,2],[[5110,5111],3],[5112,1,"Ᏸ"],[5113,1,"Ᏹ"],[5114,1,"Ᏺ"],[5115,1,"Ᏻ"],[5116,1,"Ᏼ"],[5117,1,"Ᏽ"],[[5118,5119],3],[5120,2],[[5121,5740],2],[[5741,5742],2],[[5743,5750],2],[[5751,5759],2],[5760,3],[[5761,5786],2],[[5787,5788],2],[[5789,5791],3],[[5792,5866],2],[[5867,5872],2],[[5873,5880],2],[[5881,5887],3],[[5888,5900],2],[5901,2],[[5902,5908],2],[5909,2],[[5910,5918],3],[5919,2],[[5920,5940],2],[[5941,5942],2],[[5943,5951],3],[[5952,5971],2],[[5972,5983],3],[[5984,5996],2],[5997,3],[[5998,6000],2],[6001,3],[[6002,6003],2],[[6004,6015],3],[[6016,6067],2],[[6068,6069],3],[[6070,6099],2],[[6100,6102],2],[6103,2],[[6104,6107],2],[6108,2],[6109,2],[[6110,6111],3],[[6112,6121],2],[[6122,6127],3],[[6128,6137],2],[[6138,6143],3],[[6144,6149],2],[6150,3],[[6151,6154],2],[[6155,6157],7],[6158,3],[6159,7],[[6160,6169],2],[[6170,6175],3],[[6176,6263],2],[6264,2],[[6265,6271],3],[[6272,6313],2],[6314,2],[[6315,6319],3],[[6320,6389],2],[[6390,6399],3],[[6400,6428],2],[[6429,6430],2],[6431,3],[[6432,6443],2],[[6444,6447],3],[[6448,6459],2],[[6460,6463],3],[6464,2],[[6465,6467],3],[[6468,6469],2],[[6470,6509],2],[[6510,6511],3],[[6512,6516],2],[[6517,6527],3],[[6528,6569],2],[[6570,6571],2],[[6572,6575],3],[[6576,6601],2],[[6602,6607],3],[[6608,6617],2],[6618,2],[[6619,6621],3],[[6622,6623],2],[[6624,6655],2],[[6656,6683],2],[[6684,6685],3],[[6686,6687],2],[[6688,6750],2],[6751,3],[[6752,6780],2],[[6781,6782],3],[[6783,6793],2],[[6794,6799],3],[[6800,6809],2],[[6810,6815],3],[[6816,6822],2],[6823,2],[[6824,6829],2],[[6830,6831],3],[[6832,6845],2],[6846,2],[[6847,6848],2],[[6849,6862],2],[[6863,6911],3],[[6912,6987],2],[6988,2],[[6989,6991],3],[[6992,7001],2],[[7002,7018],2],[[7019,7027],2],[[7028,7036],2],[[7037,7038],2],[7039,3],[[7040,7082],2],[[7083,7085],2],[[7086,7097],2],[[7098,7103],2],[[7104,7155],2],[[7156,7163],3],[[7164,7167],2],[[7168,7223],2],[[7224,7226],3],[[7227,7231],2],[[7232,7241],2],[[7242,7244],3],[[7245,7293],2],[[7294,7295],2],[7296,1,"в"],[7297,1,"д"],[7298,1,"о"],[7299,1,"с"],[[7300,7301],1,"т"],[7302,1,"ъ"],[7303,1,"ѣ"],[7304,1,"ꙋ"],[[7305,7311],3],[7312,1,"ა"],[7313,1,"ბ"],[7314,1,"გ"],[7315,1,"დ"],[7316,1,"ე"],[7317,1,"ვ"],[7318,1,"ზ"],[7319,1,"თ"],[7320,1,"ი"],[7321,1,"კ"],[7322,1,"ლ"],[7323,1,"მ"],[7324,1,"ნ"],[7325,1,"ო"],[7326,1,"პ"],[7327,1,"ჟ"],[7328,1,"რ"],[7329,1,"ს"],[7330,1,"ტ"],[7331,1,"უ"],[7332,1,"ფ"],[7333,1,"ქ"],[7334,1,"ღ"],[7335,1,"ყ"],[7336,1,"შ"],[7337,1,"ჩ"],[7338,1,"ც"],[7339,1,"ძ"],[7340,1,"წ"],[7341,1,"ჭ"],[7342,1,"ხ"],[7343,1,"ჯ"],[7344,1,"ჰ"],[7345,1,"ჱ"],[7346,1,"ჲ"],[7347,1,"ჳ"],[7348,1,"ჴ"],[7349,1,"ჵ"],[7350,1,"ჶ"],[7351,1,"ჷ"],[7352,1,"ჸ"],[7353,1,"ჹ"],[7354,1,"ჺ"],[[7355,7356],3],[7357,1,"ჽ"],[7358,1,"ჾ"],[7359,1,"ჿ"],[[7360,7367],2],[[7368,7375],3],[[7376,7378],2],[7379,2],[[7380,7410],2],[[7411,7414],2],[7415,2],[[7416,7417],2],[7418,2],[[7419,7423],3],[[7424,7467],2],[7468,1,"a"],[7469,1,"æ"],[7470,1,"b"],[7471,2],[7472,1,"d"],[7473,1,"e"],[7474,1,"ǝ"],[7475,1,"g"],[7476,1,"h"],[7477,1,"i"],[7478,1,"j"],[7479,1,"k"],[7480,1,"l"],[7481,1,"m"],[7482,1,"n"],[7483,2],[7484,1,"o"],[7485,1,"ȣ"],[7486,1,"p"],[7487,1,"r"],[7488,1,"t"],[7489,1,"u"],[7490,1,"w"],[7491,1,"a"],[7492,1,"ɐ"],[7493,1,"ɑ"],[7494,1,"ᴂ"],[7495,1,"b"],[7496,1,"d"],[7497,1,"e"],[7498,1,"ə"],[7499,1,"ɛ"],[7500,1,"ɜ"],[7501,1,"g"],[7502,2],[7503,1,"k"],[7504,1,"m"],[7505,1,"ŋ"],[7506,1,"o"],[7507,1,"ɔ"],[7508,1,"ᴖ"],[7509,1,"ᴗ"],[7510,1,"p"],[7511,1,"t"],[7512,1,"u"],[7513,1,"ᴝ"],[7514,1,"ɯ"],[7515,1,"v"],[7516,1,"ᴥ"],[7517,1,"β"],[7518,1,"γ"],[7519,1,"δ"],[7520,1,"φ"],[7521,1,"χ"],[7522,1,"i"],[7523,1,"r"],[7524,1,"u"],[7525,1,"v"],[7526,1,"β"],[7527,1,"γ"],[7528,1,"ρ"],[7529,1,"φ"],[7530,1,"χ"],[7531,2],[[7532,7543],2],[7544,1,"н"],[[7545,7578],2],[7579,1,"ɒ"],[7580,1,"c"],[7581,1,"ɕ"],[7582,1,"ð"],[7583,1,"ɜ"],[7584,1,"f"],[7585,1,"ɟ"],[7586,1,"ɡ"],[7587,1,"ɥ"],[7588,1,"ɨ"],[7589,1,"ɩ"],[7590,1,"ɪ"],[7591,1,"ᵻ"],[7592,1,"ʝ"],[7593,1,"ɭ"],[7594,1,"ᶅ"],[7595,1,"ʟ"],[7596,1,"ɱ"],[7597,1,"ɰ"],[7598,1,"ɲ"],[7599,1,"ɳ"],[7600,1,"ɴ"],[7601,1,"ɵ"],[7602,1,"ɸ"],[7603,1,"ʂ"],[7604,1,"ʃ"],[7605,1,"ƫ"],[7606,1,"ʉ"],[7607,1,"ʊ"],[7608,1,"ᴜ"],[7609,1,"ʋ"],[7610,1,"ʌ"],[7611,1,"z"],[7612,1,"ʐ"],[7613,1,"ʑ"],[7614,1,"ʒ"],[7615,1,"θ"],[[7616,7619],2],[[7620,7626],2],[[7627,7654],2],[[7655,7669],2],[[7670,7673],2],[7674,2],[7675,2],[7676,2],[7677,2],[[7678,7679],2],[7680,1,"ḁ"],[7681,2],[7682,1,"ḃ"],[7683,2],[7684,1,"ḅ"],[7685,2],[7686,1,"ḇ"],[7687,2],[7688,1,"ḉ"],[7689,2],[7690,1,"ḋ"],[7691,2],[7692,1,"ḍ"],[7693,2],[7694,1,"ḏ"],[7695,2],[7696,1,"ḑ"],[7697,2],[7698,1,"ḓ"],[7699,2],[7700,1,"ḕ"],[7701,2],[7702,1,"ḗ"],[7703,2],[7704,1,"ḙ"],[7705,2],[7706,1,"ḛ"],[7707,2],[7708,1,"ḝ"],[7709,2],[7710,1,"ḟ"],[7711,2],[7712,1,"ḡ"],[7713,2],[7714,1,"ḣ"],[7715,2],[7716,1,"ḥ"],[7717,2],[7718,1,"ḧ"],[7719,2],[7720,1,"ḩ"],[7721,2],[7722,1,"ḫ"],[7723,2],[7724,1,"ḭ"],[7725,2],[7726,1,"ḯ"],[7727,2],[7728,1,"ḱ"],[7729,2],[7730,1,"ḳ"],[7731,2],[7732,1,"ḵ"],[7733,2],[7734,1,"ḷ"],[7735,2],[7736,1,"ḹ"],[7737,2],[7738,1,"ḻ"],[7739,2],[7740,1,"ḽ"],[7741,2],[7742,1,"ḿ"],[7743,2],[7744,1,"ṁ"],[7745,2],[7746,1,"ṃ"],[7747,2],[7748,1,"ṅ"],[7749,2],[7750,1,"ṇ"],[7751,2],[7752,1,"ṉ"],[7753,2],[7754,1,"ṋ"],[7755,2],[7756,1,"ṍ"],[7757,2],[7758,1,"ṏ"],[7759,2],[7760,1,"ṑ"],[7761,2],[7762,1,"ṓ"],[7763,2],[7764,1,"ṕ"],[7765,2],[7766,1,"ṗ"],[7767,2],[7768,1,"ṙ"],[7769,2],[7770,1,"ṛ"],[7771,2],[7772,1,"ṝ"],[7773,2],[7774,1,"ṟ"],[7775,2],[7776,1,"ṡ"],[7777,2],[7778,1,"ṣ"],[7779,2],[7780,1,"ṥ"],[7781,2],[7782,1,"ṧ"],[7783,2],[7784,1,"ṩ"],[7785,2],[7786,1,"ṫ"],[7787,2],[7788,1,"ṭ"],[7789,2],[7790,1,"ṯ"],[7791,2],[7792,1,"ṱ"],[7793,2],[7794,1,"ṳ"],[7795,2],[7796,1,"ṵ"],[7797,2],[7798,1,"ṷ"],[7799,2],[7800,1,"ṹ"],[7801,2],[7802,1,"ṻ"],[7803,2],[7804,1,"ṽ"],[7805,2],[7806,1,"ṿ"],[7807,2],[7808,1,"ẁ"],[7809,2],[7810,1,"ẃ"],[7811,2],[7812,1,"ẅ"],[7813,2],[7814,1,"ẇ"],[7815,2],[7816,1,"ẉ"],[7817,2],[7818,1,"ẋ"],[7819,2],[7820,1,"ẍ"],[7821,2],[7822,1,"ẏ"],[7823,2],[7824,1,"ẑ"],[7825,2],[7826,1,"ẓ"],[7827,2],[7828,1,"ẕ"],[[7829,7833],2],[7834,1,"aʾ"],[7835,1,"ṡ"],[[7836,7837],2],[7838,1,"ss"],[7839,2],[7840,1,"ạ"],[7841,2],[7842,1,"ả"],[7843,2],[7844,1,"ấ"],[7845,2],[7846,1,"ầ"],[7847,2],[7848,1,"ẩ"],[7849,2],[7850,1,"ẫ"],[7851,2],[7852,1,"ậ"],[7853,2],[7854,1,"ắ"],[7855,2],[7856,1,"ằ"],[7857,2],[7858,1,"ẳ"],[7859,2],[7860,1,"ẵ"],[7861,2],[7862,1,"ặ"],[7863,2],[7864,1,"ẹ"],[7865,2],[7866,1,"ẻ"],[7867,2],[7868,1,"ẽ"],[7869,2],[7870,1,"ế"],[7871,2],[7872,1,"ề"],[7873,2],[7874,1,"ể"],[7875,2],[7876,1,"ễ"],[7877,2],[7878,1,"ệ"],[7879,2],[7880,1,"ỉ"],[7881,2],[7882,1,"ị"],[7883,2],[7884,1,"ọ"],[7885,2],[7886,1,"ỏ"],[7887,2],[7888,1,"ố"],[7889,2],[7890,1,"ồ"],[7891,2],[7892,1,"ổ"],[7893,2],[7894,1,"ỗ"],[7895,2],[7896,1,"ộ"],[7897,2],[7898,1,"ớ"],[7899,2],[7900,1,"ờ"],[7901,2],[7902,1,"ở"],[7903,2],[7904,1,"ỡ"],[7905,2],[7906,1,"ợ"],[7907,2],[7908,1,"ụ"],[7909,2],[7910,1,"ủ"],[7911,2],[7912,1,"ứ"],[7913,2],[7914,1,"ừ"],[7915,2],[7916,1,"ử"],[7917,2],[7918,1,"ữ"],[7919,2],[7920,1,"ự"],[7921,2],[7922,1,"ỳ"],[7923,2],[7924,1,"ỵ"],[7925,2],[7926,1,"ỷ"],[7927,2],[7928,1,"ỹ"],[7929,2],[7930,1,"ỻ"],[7931,2],[7932,1,"ỽ"],[7933,2],[7934,1,"ỿ"],[7935,2],[[7936,7943],2],[7944,1,"ἀ"],[7945,1,"ἁ"],[7946,1,"ἂ"],[7947,1,"ἃ"],[7948,1,"ἄ"],[7949,1,"ἅ"],[7950,1,"ἆ"],[7951,1,"ἇ"],[[7952,7957],2],[[7958,7959],3],[7960,1,"ἐ"],[7961,1,"ἑ"],[7962,1,"ἒ"],[7963,1,"ἓ"],[7964,1,"ἔ"],[7965,1,"ἕ"],[[7966,7967],3],[[7968,7975],2],[7976,1,"ἠ"],[7977,1,"ἡ"],[7978,1,"ἢ"],[7979,1,"ἣ"],[7980,1,"ἤ"],[7981,1,"ἥ"],[7982,1,"ἦ"],[7983,1,"ἧ"],[[7984,7991],2],[7992,1,"ἰ"],[7993,1,"ἱ"],[7994,1,"ἲ"],[7995,1,"ἳ"],[7996,1,"ἴ"],[7997,1,"ἵ"],[7998,1,"ἶ"],[7999,1,"ἷ"],[[8000,8005],2],[[8006,8007],3],[8008,1,"ὀ"],[8009,1,"ὁ"],[8010,1,"ὂ"],[8011,1,"ὃ"],[8012,1,"ὄ"],[8013,1,"ὅ"],[[8014,8015],3],[[8016,8023],2],[8024,3],[8025,1,"ὑ"],[8026,3],[8027,1,"ὓ"],[8028,3],[8029,1,"ὕ"],[8030,3],[8031,1,"ὗ"],[[8032,8039],2],[8040,1,"ὠ"],[8041,1,"ὡ"],[8042,1,"ὢ"],[8043,1,"ὣ"],[8044,1,"ὤ"],[8045,1,"ὥ"],[8046,1,"ὦ"],[8047,1,"ὧ"],[8048,2],[8049,1,"ά"],[8050,2],[8051,1,"έ"],[8052,2],[8053,1,"ή"],[8054,2],[8055,1,"ί"],[8056,2],[8057,1,"ό"],[8058,2],[8059,1,"ύ"],[8060,2],[8061,1,"ώ"],[[8062,8063],3],[8064,1,"ἀι"],[8065,1,"ἁι"],[8066,1,"ἂι"],[8067,1,"ἃι"],[8068,1,"ἄι"],[8069,1,"ἅι"],[8070,1,"ἆι"],[8071,1,"ἇι"],[8072,1,"ἀι"],[8073,1,"ἁι"],[8074,1,"ἂι"],[8075,1,"ἃι"],[8076,1,"ἄι"],[8077,1,"ἅι"],[8078,1,"ἆι"],[8079,1,"ἇι"],[8080,1,"ἠι"],[8081,1,"ἡι"],[8082,1,"ἢι"],[8083,1,"ἣι"],[8084,1,"ἤι"],[8085,1,"ἥι"],[8086,1,"ἦι"],[8087,1,"ἧι"],[8088,1,"ἠι"],[8089,1,"ἡι"],[8090,1,"ἢι"],[8091,1,"ἣι"],[8092,1,"ἤι"],[8093,1,"ἥι"],[8094,1,"ἦι"],[8095,1,"ἧι"],[8096,1,"ὠι"],[8097,1,"ὡι"],[8098,1,"ὢι"],[8099,1,"ὣι"],[8100,1,"ὤι"],[8101,1,"ὥι"],[8102,1,"ὦι"],[8103,1,"ὧι"],[8104,1,"ὠι"],[8105,1,"ὡι"],[8106,1,"ὢι"],[8107,1,"ὣι"],[8108,1,"ὤι"],[8109,1,"ὥι"],[8110,1,"ὦι"],[8111,1,"ὧι"],[[8112,8113],2],[8114,1,"ὰι"],[8115,1,"αι"],[8116,1,"άι"],[8117,3],[8118,2],[8119,1,"ᾶι"],[8120,1,"ᾰ"],[8121,1,"ᾱ"],[8122,1,"ὰ"],[8123,1,"ά"],[8124,1,"αι"],[8125,5," ̓"],[8126,1,"ι"],[8127,5," ̓"],[8128,5," ͂"],[8129,5," ̈͂"],[8130,1,"ὴι"],[8131,1,"ηι"],[8132,1,"ήι"],[8133,3],[8134,2],[8135,1,"ῆι"],[8136,1,"ὲ"],[8137,1,"έ"],[8138,1,"ὴ"],[8139,1,"ή"],[8140,1,"ηι"],[8141,5," ̓̀"],[8142,5," ̓́"],[8143,5," ̓͂"],[[8144,8146],2],[8147,1,"ΐ"],[[8148,8149],3],[[8150,8151],2],[8152,1,"ῐ"],[8153,1,"ῑ"],[8154,1,"ὶ"],[8155,1,"ί"],[8156,3],[8157,5," ̔̀"],[8158,5," ̔́"],[8159,5," ̔͂"],[[8160,8162],2],[8163,1,"ΰ"],[[8164,8167],2],[8168,1,"ῠ"],[8169,1,"ῡ"],[8170,1,"ὺ"],[8171,1,"ύ"],[8172,1,"ῥ"],[8173,5," ̈̀"],[8174,5," ̈́"],[8175,5,"`"],[[8176,8177],3],[8178,1,"ὼι"],[8179,1,"ωι"],[8180,1,"ώι"],[8181,3],[8182,2],[8183,1,"ῶι"],[8184,1,"ὸ"],[8185,1,"ό"],[8186,1,"ὼ"],[8187,1,"ώ"],[8188,1,"ωι"],[8189,5," ́"],[8190,5," ̔"],[8191,3],[[8192,8202],5," "],[8203,7],[[8204,8205],6,""],[[8206,8207],3],[8208,2],[8209,1,"‐"],[[8210,8214],2],[8215,5," ̳"],[[8216,8227],2],[[8228,8230],3],[8231,2],[[8232,8238],3],[8239,5," "],[[8240,8242],2],[8243,1,"′′"],[8244,1,"′′′"],[8245,2],[8246,1,"‵‵"],[8247,1,"‵‵‵"],[[8248,8251],2],[8252,5,"!!"],[8253,2],[8254,5," ̅"],[[8255,8262],2],[8263,5,"??"],[8264,5,"?!"],[8265,5,"!?"],[[8266,8269],2],[[8270,8274],2],[[8275,8276],2],[[8277,8278],2],[8279,1,"′′′′"],[[8280,8286],2],[8287,5," "],[8288,7],[[8289,8291],3],[8292,7],[8293,3],[[8294,8297],3],[[8298,8303],3],[8304,1,"0"],[8305,1,"i"],[[8306,8307],3],[8308,1,"4"],[8309,1,"5"],[8310,1,"6"],[8311,1,"7"],[8312,1,"8"],[8313,1,"9"],[8314,5,"+"],[8315,1,"−"],[8316,5,"="],[8317,5,"("],[8318,5,")"],[8319,1,"n"],[8320,1,"0"],[8321,1,"1"],[8322,1,"2"],[8323,1,"3"],[8324,1,"4"],[8325,1,"5"],[8326,1,"6"],[8327,1,"7"],[8328,1,"8"],[8329,1,"9"],[8330,5,"+"],[8331,1,"−"],[8332,5,"="],[8333,5,"("],[8334,5,")"],[8335,3],[8336,1,"a"],[8337,1,"e"],[8338,1,"o"],[8339,1,"x"],[8340,1,"ə"],[8341,1,"h"],[8342,1,"k"],[8343,1,"l"],[8344,1,"m"],[8345,1,"n"],[8346,1,"p"],[8347,1,"s"],[8348,1,"t"],[[8349,8351],3],[[8352,8359],2],[8360,1,"rs"],[[8361,8362],2],[8363,2],[8364,2],[[8365,8367],2],[[8368,8369],2],[[8370,8373],2],[[8374,8376],2],[8377,2],[8378,2],[[8379,8381],2],[8382,2],[8383,2],[8384,2],[[8385,8399],3],[[8400,8417],2],[[8418,8419],2],[[8420,8426],2],[8427,2],[[8428,8431],2],[8432,2],[[8433,8447],3],[8448,5,"a/c"],[8449,5,"a/s"],[8450,1,"c"],[8451,1,"°c"],[8452,2],[8453,5,"c/o"],[8454,5,"c/u"],[8455,1,"ɛ"],[8456,2],[8457,1,"°f"],[8458,1,"g"],[[8459,8462],1,"h"],[8463,1,"ħ"],[[8464,8465],1,"i"],[[8466,8467],1,"l"],[8468,2],[8469,1,"n"],[8470,1,"no"],[[8471,8472],2],[8473,1,"p"],[8474,1,"q"],[[8475,8477],1,"r"],[[8478,8479],2],[8480,1,"sm"],[8481,1,"tel"],[8482,1,"tm"],[8483,2],[8484,1,"z"],[8485,2],[8486,1,"ω"],[8487,2],[8488,1,"z"],[8489,2],[8490,1,"k"],[8491,1,"å"],[8492,1,"b"],[8493,1,"c"],[8494,2],[[8495,8496],1,"e"],[8497,1,"f"],[8498,3],[8499,1,"m"],[8500,1,"o"],[8501,1,"א"],[8502,1,"ב"],[8503,1,"ג"],[8504,1,"ד"],[8505,1,"i"],[8506,2],[8507,1,"fax"],[8508,1,"π"],[[8509,8510],1,"γ"],[8511,1,"π"],[8512,1,"∑"],[[8513,8516],2],[[8517,8518],1,"d"],[8519,1,"e"],[8520,1,"i"],[8521,1,"j"],[[8522,8523],2],[8524,2],[8525,2],[8526,2],[8527,2],[8528,1,"1⁄7"],[8529,1,"1⁄9"],[8530,1,"1⁄10"],[8531,1,"1⁄3"],[8532,1,"2⁄3"],[8533,1,"1⁄5"],[8534,1,"2⁄5"],[8535,1,"3⁄5"],[8536,1,"4⁄5"],[8537,1,"1⁄6"],[8538,1,"5⁄6"],[8539,1,"1⁄8"],[8540,1,"3⁄8"],[8541,1,"5⁄8"],[8542,1,"7⁄8"],[8543,1,"1⁄"],[8544,1,"i"],[8545,1,"ii"],[8546,1,"iii"],[8547,1,"iv"],[8548,1,"v"],[8549,1,"vi"],[8550,1,"vii"],[8551,1,"viii"],[8552,1,"ix"],[8553,1,"x"],[8554,1,"xi"],[8555,1,"xii"],[8556,1,"l"],[8557,1,"c"],[8558,1,"d"],[8559,1,"m"],[8560,1,"i"],[8561,1,"ii"],[8562,1,"iii"],[8563,1,"iv"],[8564,1,"v"],[8565,1,"vi"],[8566,1,"vii"],[8567,1,"viii"],[8568,1,"ix"],[8569,1,"x"],[8570,1,"xi"],[8571,1,"xii"],[8572,1,"l"],[8573,1,"c"],[8574,1,"d"],[8575,1,"m"],[[8576,8578],2],[8579,3],[8580,2],[[8581,8584],2],[8585,1,"0⁄3"],[[8586,8587],2],[[8588,8591],3],[[8592,8682],2],[[8683,8691],2],[[8692,8703],2],[[8704,8747],2],[8748,1,"∫∫"],[8749,1,"∫∫∫"],[8750,2],[8751,1,"∮∮"],[8752,1,"∮∮∮"],[[8753,8799],2],[8800,4],[[8801,8813],2],[[8814,8815],4],[[8816,8945],2],[[8946,8959],2],[8960,2],[8961,2],[[8962,9000],2],[9001,1,"〈"],[9002,1,"〉"],[[9003,9082],2],[9083,2],[9084,2],[[9085,9114],2],[[9115,9166],2],[[9167,9168],2],[[9169,9179],2],[[9180,9191],2],[9192,2],[[9193,9203],2],[[9204,9210],2],[[9211,9214],2],[9215,2],[[9216,9252],2],[[9253,9254],2],[[9255,9279],3],[[9280,9290],2],[[9291,9311],3],[9312,1,"1"],[9313,1,"2"],[9314,1,"3"],[9315,1,"4"],[9316,1,"5"],[9317,1,"6"],[9318,1,"7"],[9319,1,"8"],[9320,1,"9"],[9321,1,"10"],[9322,1,"11"],[9323,1,"12"],[9324,1,"13"],[9325,1,"14"],[9326,1,"15"],[9327,1,"16"],[9328,1,"17"],[9329,1,"18"],[9330,1,"19"],[9331,1,"20"],[9332,5,"(1)"],[9333,5,"(2)"],[9334,5,"(3)"],[9335,5,"(4)"],[9336,5,"(5)"],[9337,5,"(6)"],[9338,5,"(7)"],[9339,5,"(8)"],[9340,5,"(9)"],[9341,5,"(10)"],[9342,5,"(11)"],[9343,5,"(12)"],[9344,5,"(13)"],[9345,5,"(14)"],[9346,5,"(15)"],[9347,5,"(16)"],[9348,5,"(17)"],[9349,5,"(18)"],[9350,5,"(19)"],[9351,5,"(20)"],[[9352,9371],3],[9372,5,"(a)"],[9373,5,"(b)"],[9374,5,"(c)"],[9375,5,"(d)"],[9376,5,"(e)"],[9377,5,"(f)"],[9378,5,"(g)"],[9379,5,"(h)"],[9380,5,"(i)"],[9381,5,"(j)"],[9382,5,"(k)"],[9383,5,"(l)"],[9384,5,"(m)"],[9385,5,"(n)"],[9386,5,"(o)"],[9387,5,"(p)"],[9388,5,"(q)"],[9389,5,"(r)"],[9390,5,"(s)"],[9391,5,"(t)"],[9392,5,"(u)"],[9393,5,"(v)"],[9394,5,"(w)"],[9395,5,"(x)"],[9396,5,"(y)"],[9397,5,"(z)"],[9398,1,"a"],[9399,1,"b"],[9400,1,"c"],[9401,1,"d"],[9402,1,"e"],[9403,1,"f"],[9404,1,"g"],[9405,1,"h"],[9406,1,"i"],[9407,1,"j"],[9408,1,"k"],[9409,1,"l"],[9410,1,"m"],[9411,1,"n"],[9412,1,"o"],[9413,1,"p"],[9414,1,"q"],[9415,1,"r"],[9416,1,"s"],[9417,1,"t"],[9418,1,"u"],[9419,1,"v"],[9420,1,"w"],[9421,1,"x"],[9422,1,"y"],[9423,1,"z"],[9424,1,"a"],[9425,1,"b"],[9426,1,"c"],[9427,1,"d"],[9428,1,"e"],[9429,1,"f"],[9430,1,"g"],[9431,1,"h"],[9432,1,"i"],[9433,1,"j"],[9434,1,"k"],[9435,1,"l"],[9436,1,"m"],[9437,1,"n"],[9438,1,"o"],[9439,1,"p"],[9440,1,"q"],[9441,1,"r"],[9442,1,"s"],[9443,1,"t"],[9444,1,"u"],[9445,1,"v"],[9446,1,"w"],[9447,1,"x"],[9448,1,"y"],[9449,1,"z"],[9450,1,"0"],[[9451,9470],2],[9471,2],[[9472,9621],2],[[9622,9631],2],[[9632,9711],2],[[9712,9719],2],[[9720,9727],2],[[9728,9747],2],[[9748,9749],2],[[9750,9751],2],[9752,2],[9753,2],[[9754,9839],2],[[9840,9841],2],[[9842,9853],2],[[9854,9855],2],[[9856,9865],2],[[9866,9873],2],[[9874,9884],2],[9885,2],[[9886,9887],2],[[9888,9889],2],[[9890,9905],2],[9906,2],[[9907,9916],2],[[9917,9919],2],[[9920,9923],2],[[9924,9933],2],[9934,2],[[9935,9953],2],[9954,2],[9955,2],[[9956,9959],2],[[9960,9983],2],[9984,2],[[9985,9988],2],[9989,2],[[9990,9993],2],[[9994,9995],2],[[9996,10023],2],[10024,2],[[10025,10059],2],[10060,2],[10061,2],[10062,2],[[10063,10066],2],[[10067,10069],2],[10070,2],[10071,2],[[10072,10078],2],[[10079,10080],2],[[10081,10087],2],[[10088,10101],2],[[10102,10132],2],[[10133,10135],2],[[10136,10159],2],[10160,2],[[10161,10174],2],[10175,2],[[10176,10182],2],[[10183,10186],2],[10187,2],[10188,2],[10189,2],[[10190,10191],2],[[10192,10219],2],[[10220,10223],2],[[10224,10239],2],[[10240,10495],2],[[10496,10763],2],[10764,1,"∫∫∫∫"],[[10765,10867],2],[10868,5,"::="],[10869,5,"=="],[10870,5,"==="],[[10871,10971],2],[10972,1,"⫝̸"],[[10973,11007],2],[[11008,11021],2],[[11022,11027],2],[[11028,11034],2],[[11035,11039],2],[[11040,11043],2],[[11044,11084],2],[[11085,11087],2],[[11088,11092],2],[[11093,11097],2],[[11098,11123],2],[[11124,11125],3],[[11126,11157],2],[11158,3],[11159,2],[[11160,11193],2],[[11194,11196],2],[[11197,11208],2],[11209,2],[[11210,11217],2],[11218,2],[[11219,11243],2],[[11244,11247],2],[[11248,11262],2],[11263,2],[11264,1,"ⰰ"],[11265,1,"ⰱ"],[11266,1,"ⰲ"],[11267,1,"ⰳ"],[11268,1,"ⰴ"],[11269,1,"ⰵ"],[11270,1,"ⰶ"],[11271,1,"ⰷ"],[11272,1,"ⰸ"],[11273,1,"ⰹ"],[11274,1,"ⰺ"],[11275,1,"ⰻ"],[11276,1,"ⰼ"],[11277,1,"ⰽ"],[11278,1,"ⰾ"],[11279,1,"ⰿ"],[11280,1,"ⱀ"],[11281,1,"ⱁ"],[11282,1,"ⱂ"],[11283,1,"ⱃ"],[11284,1,"ⱄ"],[11285,1,"ⱅ"],[11286,1,"ⱆ"],[11287,1,"ⱇ"],[11288,1,"ⱈ"],[11289,1,"ⱉ"],[11290,1,"ⱊ"],[11291,1,"ⱋ"],[11292,1,"ⱌ"],[11293,1,"ⱍ"],[11294,1,"ⱎ"],[11295,1,"ⱏ"],[11296,1,"ⱐ"],[11297,1,"ⱑ"],[11298,1,"ⱒ"],[11299,1,"ⱓ"],[11300,1,"ⱔ"],[11301,1,"ⱕ"],[11302,1,"ⱖ"],[11303,1,"ⱗ"],[11304,1,"ⱘ"],[11305,1,"ⱙ"],[11306,1,"ⱚ"],[11307,1,"ⱛ"],[11308,1,"ⱜ"],[11309,1,"ⱝ"],[11310,1,"ⱞ"],[11311,1,"ⱟ"],[[11312,11358],2],[11359,2],[11360,1,"ⱡ"],[11361,2],[11362,1,"ɫ"],[11363,1,"ᵽ"],[11364,1,"ɽ"],[[11365,11366],2],[11367,1,"ⱨ"],[11368,2],[11369,1,"ⱪ"],[11370,2],[11371,1,"ⱬ"],[11372,2],[11373,1,"ɑ"],[11374,1,"ɱ"],[11375,1,"ɐ"],[11376,1,"ɒ"],[11377,2],[11378,1,"ⱳ"],[11379,2],[11380,2],[11381,1,"ⱶ"],[[11382,11383],2],[[11384,11387],2],[11388,1,"j"],[11389,1,"v"],[11390,1,"ȿ"],[11391,1,"ɀ"],[11392,1,"ⲁ"],[11393,2],[11394,1,"ⲃ"],[11395,2],[11396,1,"ⲅ"],[11397,2],[11398,1,"ⲇ"],[11399,2],[11400,1,"ⲉ"],[11401,2],[11402,1,"ⲋ"],[11403,2],[11404,1,"ⲍ"],[11405,2],[11406,1,"ⲏ"],[11407,2],[11408,1,"ⲑ"],[11409,2],[11410,1,"ⲓ"],[11411,2],[11412,1,"ⲕ"],[11413,2],[11414,1,"ⲗ"],[11415,2],[11416,1,"ⲙ"],[11417,2],[11418,1,"ⲛ"],[11419,2],[11420,1,"ⲝ"],[11421,2],[11422,1,"ⲟ"],[11423,2],[11424,1,"ⲡ"],[11425,2],[11426,1,"ⲣ"],[11427,2],[11428,1,"ⲥ"],[11429,2],[11430,1,"ⲧ"],[11431,2],[11432,1,"ⲩ"],[11433,2],[11434,1,"ⲫ"],[11435,2],[11436,1,"ⲭ"],[11437,2],[11438,1,"ⲯ"],[11439,2],[11440,1,"ⲱ"],[11441,2],[11442,1,"ⲳ"],[11443,2],[11444,1,"ⲵ"],[11445,2],[11446,1,"ⲷ"],[11447,2],[11448,1,"ⲹ"],[11449,2],[11450,1,"ⲻ"],[11451,2],[11452,1,"ⲽ"],[11453,2],[11454,1,"ⲿ"],[11455,2],[11456,1,"ⳁ"],[11457,2],[11458,1,"ⳃ"],[11459,2],[11460,1,"ⳅ"],[11461,2],[11462,1,"ⳇ"],[11463,2],[11464,1,"ⳉ"],[11465,2],[11466,1,"ⳋ"],[11467,2],[11468,1,"ⳍ"],[11469,2],[11470,1,"ⳏ"],[11471,2],[11472,1,"ⳑ"],[11473,2],[11474,1,"ⳓ"],[11475,2],[11476,1,"ⳕ"],[11477,2],[11478,1,"ⳗ"],[11479,2],[11480,1,"ⳙ"],[11481,2],[11482,1,"ⳛ"],[11483,2],[11484,1,"ⳝ"],[11485,2],[11486,1,"ⳟ"],[11487,2],[11488,1,"ⳡ"],[11489,2],[11490,1,"ⳣ"],[[11491,11492],2],[[11493,11498],2],[11499,1,"ⳬ"],[11500,2],[11501,1,"ⳮ"],[[11502,11505],2],[11506,1,"ⳳ"],[11507,2],[[11508,11512],3],[[11513,11519],2],[[11520,11557],2],[11558,3],[11559,2],[[11560,11564],3],[11565,2],[[11566,11567],3],[[11568,11621],2],[[11622,11623],2],[[11624,11630],3],[11631,1,"ⵡ"],[11632,2],[[11633,11646],3],[11647,2],[[11648,11670],2],[[11671,11679],3],[[11680,11686],2],[11687,3],[[11688,11694],2],[11695,3],[[11696,11702],2],[11703,3],[[11704,11710],2],[11711,3],[[11712,11718],2],[11719,3],[[11720,11726],2],[11727,3],[[11728,11734],2],[11735,3],[[11736,11742],2],[11743,3],[[11744,11775],2],[[11776,11799],2],[[11800,11803],2],[[11804,11805],2],[[11806,11822],2],[11823,2],[11824,2],[11825,2],[[11826,11835],2],[[11836,11842],2],[[11843,11844],2],[[11845,11849],2],[[11850,11854],2],[11855,2],[[11856,11858],2],[[11859,11869],2],[[11870,11903],3],[[11904,11929],2],[11930,3],[[11931,11934],2],[11935,1,"母"],[[11936,12018],2],[12019,1,"龟"],[[12020,12031],3],[12032,1,"一"],[12033,1,"丨"],[12034,1,"丶"],[12035,1,"丿"],[12036,1,"乙"],[12037,1,"亅"],[12038,1,"二"],[12039,1,"亠"],[12040,1,"人"],[12041,1,"儿"],[12042,1,"入"],[12043,1,"八"],[12044,1,"冂"],[12045,1,"冖"],[12046,1,"冫"],[12047,1,"几"],[12048,1,"凵"],[12049,1,"刀"],[12050,1,"力"],[12051,1,"勹"],[12052,1,"匕"],[12053,1,"匚"],[12054,1,"匸"],[12055,1,"十"],[12056,1,"卜"],[12057,1,"卩"],[12058,1,"厂"],[12059,1,"厶"],[12060,1,"又"],[12061,1,"口"],[12062,1,"囗"],[12063,1,"土"],[12064,1,"士"],[12065,1,"夂"],[12066,1,"夊"],[12067,1,"夕"],[12068,1,"大"],[12069,1,"女"],[12070,1,"子"],[12071,1,"宀"],[12072,1,"寸"],[12073,1,"小"],[12074,1,"尢"],[12075,1,"尸"],[12076,1,"屮"],[12077,1,"山"],[12078,1,"巛"],[12079,1,"工"],[12080,1,"己"],[12081,1,"巾"],[12082,1,"干"],[12083,1,"幺"],[12084,1,"广"],[12085,1,"廴"],[12086,1,"廾"],[12087,1,"弋"],[12088,1,"弓"],[12089,1,"彐"],[12090,1,"彡"],[12091,1,"彳"],[12092,1,"心"],[12093,1,"戈"],[12094,1,"戶"],[12095,1,"手"],[12096,1,"支"],[12097,1,"攴"],[12098,1,"文"],[12099,1,"斗"],[12100,1,"斤"],[12101,1,"方"],[12102,1,"无"],[12103,1,"日"],[12104,1,"曰"],[12105,1,"月"],[12106,1,"木"],[12107,1,"欠"],[12108,1,"止"],[12109,1,"歹"],[12110,1,"殳"],[12111,1,"毋"],[12112,1,"比"],[12113,1,"毛"],[12114,1,"氏"],[12115,1,"气"],[12116,1,"水"],[12117,1,"火"],[12118,1,"爪"],[12119,1,"父"],[12120,1,"爻"],[12121,1,"爿"],[12122,1,"片"],[12123,1,"牙"],[12124,1,"牛"],[12125,1,"犬"],[12126,1,"玄"],[12127,1,"玉"],[12128,1,"瓜"],[12129,1,"瓦"],[12130,1,"甘"],[12131,1,"生"],[12132,1,"用"],[12133,1,"田"],[12134,1,"疋"],[12135,1,"疒"],[12136,1,"癶"],[12137,1,"白"],[12138,1,"皮"],[12139,1,"皿"],[12140,1,"目"],[12141,1,"矛"],[12142,1,"矢"],[12143,1,"石"],[12144,1,"示"],[12145,1,"禸"],[12146,1,"禾"],[12147,1,"穴"],[12148,1,"立"],[12149,1,"竹"],[12150,1,"米"],[12151,1,"糸"],[12152,1,"缶"],[12153,1,"网"],[12154,1,"羊"],[12155,1,"羽"],[12156,1,"老"],[12157,1,"而"],[12158,1,"耒"],[12159,1,"耳"],[12160,1,"聿"],[12161,1,"肉"],[12162,1,"臣"],[12163,1,"自"],[12164,1,"至"],[12165,1,"臼"],[12166,1,"舌"],[12167,1,"舛"],[12168,1,"舟"],[12169,1,"艮"],[12170,1,"色"],[12171,1,"艸"],[12172,1,"虍"],[12173,1,"虫"],[12174,1,"血"],[12175,1,"行"],[12176,1,"衣"],[12177,1,"襾"],[12178,1,"見"],[12179,1,"角"],[12180,1,"言"],[12181,1,"谷"],[12182,1,"豆"],[12183,1,"豕"],[12184,1,"豸"],[12185,1,"貝"],[12186,1,"赤"],[12187,1,"走"],[12188,1,"足"],[12189,1,"身"],[12190,1,"車"],[12191,1,"辛"],[12192,1,"辰"],[12193,1,"辵"],[12194,1,"邑"],[12195,1,"酉"],[12196,1,"釆"],[12197,1,"里"],[12198,1,"金"],[12199,1,"長"],[12200,1,"門"],[12201,1,"阜"],[12202,1,"隶"],[12203,1,"隹"],[12204,1,"雨"],[12205,1,"靑"],[12206,1,"非"],[12207,1,"面"],[12208,1,"革"],[12209,1,"韋"],[12210,1,"韭"],[12211,1,"音"],[12212,1,"頁"],[12213,1,"風"],[12214,1,"飛"],[12215,1,"食"],[12216,1,"首"],[12217,1,"香"],[12218,1,"馬"],[12219,1,"骨"],[12220,1,"高"],[12221,1,"髟"],[12222,1,"鬥"],[12223,1,"鬯"],[12224,1,"鬲"],[12225,1,"鬼"],[12226,1,"魚"],[12227,1,"鳥"],[12228,1,"鹵"],[12229,1,"鹿"],[12230,1,"麥"],[12231,1,"麻"],[12232,1,"黃"],[12233,1,"黍"],[12234,1,"黑"],[12235,1,"黹"],[12236,1,"黽"],[12237,1,"鼎"],[12238,1,"鼓"],[12239,1,"鼠"],[12240,1,"鼻"],[12241,1,"齊"],[12242,1,"齒"],[12243,1,"龍"],[12244,1,"龜"],[12245,1,"龠"],[[12246,12271],3],[[12272,12283],3],[[12284,12287],3],[12288,5," "],[12289,2],[12290,1,"."],[[12291,12292],2],[[12293,12295],2],[[12296,12329],2],[[12330,12333],2],[[12334,12341],2],[12342,1,"〒"],[12343,2],[12344,1,"十"],[12345,1,"卄"],[12346,1,"卅"],[12347,2],[12348,2],[12349,2],[12350,2],[12351,2],[12352,3],[[12353,12436],2],[[12437,12438],2],[[12439,12440],3],[[12441,12442],2],[12443,5," ゙"],[12444,5," ゚"],[[12445,12446],2],[12447,1,"より"],[12448,2],[[12449,12542],2],[12543,1,"コト"],[[12544,12548],3],[[12549,12588],2],[12589,2],[12590,2],[12591,2],[12592,3],[12593,1,"ᄀ"],[12594,1,"ᄁ"],[12595,1,"ᆪ"],[12596,1,"ᄂ"],[12597,1,"ᆬ"],[12598,1,"ᆭ"],[12599,1,"ᄃ"],[12600,1,"ᄄ"],[12601,1,"ᄅ"],[12602,1,"ᆰ"],[12603,1,"ᆱ"],[12604,1,"ᆲ"],[12605,1,"ᆳ"],[12606,1,"ᆴ"],[12607,1,"ᆵ"],[12608,1,"ᄚ"],[12609,1,"ᄆ"],[12610,1,"ᄇ"],[12611,1,"ᄈ"],[12612,1,"ᄡ"],[12613,1,"ᄉ"],[12614,1,"ᄊ"],[12615,1,"ᄋ"],[12616,1,"ᄌ"],[12617,1,"ᄍ"],[12618,1,"ᄎ"],[12619,1,"ᄏ"],[12620,1,"ᄐ"],[12621,1,"ᄑ"],[12622,1,"ᄒ"],[12623,1,"ᅡ"],[12624,1,"ᅢ"],[12625,1,"ᅣ"],[12626,1,"ᅤ"],[12627,1,"ᅥ"],[12628,1,"ᅦ"],[12629,1,"ᅧ"],[12630,1,"ᅨ"],[12631,1,"ᅩ"],[12632,1,"ᅪ"],[12633,1,"ᅫ"],[12634,1,"ᅬ"],[12635,1,"ᅭ"],[12636,1,"ᅮ"],[12637,1,"ᅯ"],[12638,1,"ᅰ"],[12639,1,"ᅱ"],[12640,1,"ᅲ"],[12641,1,"ᅳ"],[12642,1,"ᅴ"],[12643,1,"ᅵ"],[12644,3],[12645,1,"ᄔ"],[12646,1,"ᄕ"],[12647,1,"ᇇ"],[12648,1,"ᇈ"],[12649,1,"ᇌ"],[12650,1,"ᇎ"],[12651,1,"ᇓ"],[12652,1,"ᇗ"],[12653,1,"ᇙ"],[12654,1,"ᄜ"],[12655,1,"ᇝ"],[12656,1,"ᇟ"],[12657,1,"ᄝ"],[12658,1,"ᄞ"],[12659,1,"ᄠ"],[12660,1,"ᄢ"],[12661,1,"ᄣ"],[12662,1,"ᄧ"],[12663,1,"ᄩ"],[12664,1,"ᄫ"],[12665,1,"ᄬ"],[12666,1,"ᄭ"],[12667,1,"ᄮ"],[12668,1,"ᄯ"],[12669,1,"ᄲ"],[12670,1,"ᄶ"],[12671,1,"ᅀ"],[12672,1,"ᅇ"],[12673,1,"ᅌ"],[12674,1,"ᇱ"],[12675,1,"ᇲ"],[12676,1,"ᅗ"],[12677,1,"ᅘ"],[12678,1,"ᅙ"],[12679,1,"ᆄ"],[12680,1,"ᆅ"],[12681,1,"ᆈ"],[12682,1,"ᆑ"],[12683,1,"ᆒ"],[12684,1,"ᆔ"],[12685,1,"ᆞ"],[12686,1,"ᆡ"],[12687,3],[[12688,12689],2],[12690,1,"一"],[12691,1,"二"],[12692,1,"三"],[12693,1,"四"],[12694,1,"上"],[12695,1,"中"],[12696,1,"下"],[12697,1,"甲"],[12698,1,"乙"],[12699,1,"丙"],[12700,1,"丁"],[12701,1,"天"],[12702,1,"地"],[12703,1,"人"],[[12704,12727],2],[[12728,12730],2],[[12731,12735],2],[[12736,12751],2],[[12752,12771],2],[[12772,12783],3],[[12784,12799],2],[12800,5,"(ᄀ)"],[12801,5,"(ᄂ)"],[12802,5,"(ᄃ)"],[12803,5,"(ᄅ)"],[12804,5,"(ᄆ)"],[12805,5,"(ᄇ)"],[12806,5,"(ᄉ)"],[12807,5,"(ᄋ)"],[12808,5,"(ᄌ)"],[12809,5,"(ᄎ)"],[12810,5,"(ᄏ)"],[12811,5,"(ᄐ)"],[12812,5,"(ᄑ)"],[12813,5,"(ᄒ)"],[12814,5,"(가)"],[12815,5,"(나)"],[12816,5,"(다)"],[12817,5,"(라)"],[12818,5,"(마)"],[12819,5,"(바)"],[12820,5,"(사)"],[12821,5,"(아)"],[12822,5,"(자)"],[12823,5,"(차)"],[12824,5,"(카)"],[12825,5,"(타)"],[12826,5,"(파)"],[12827,5,"(하)"],[12828,5,"(주)"],[12829,5,"(오전)"],[12830,5,"(오후)"],[12831,3],[12832,5,"(一)"],[12833,5,"(二)"],[12834,5,"(三)"],[12835,5,"(四)"],[12836,5,"(五)"],[12837,5,"(六)"],[12838,5,"(七)"],[12839,5,"(八)"],[12840,5,"(九)"],[12841,5,"(十)"],[12842,5,"(月)"],[12843,5,"(火)"],[12844,5,"(水)"],[12845,5,"(木)"],[12846,5,"(金)"],[12847,5,"(土)"],[12848,5,"(日)"],[12849,5,"(株)"],[12850,5,"(有)"],[12851,5,"(社)"],[12852,5,"(名)"],[12853,5,"(特)"],[12854,5,"(財)"],[12855,5,"(祝)"],[12856,5,"(労)"],[12857,5,"(代)"],[12858,5,"(呼)"],[12859,5,"(学)"],[12860,5,"(監)"],[12861,5,"(企)"],[12862,5,"(資)"],[12863,5,"(協)"],[12864,5,"(祭)"],[12865,5,"(休)"],[12866,5,"(自)"],[12867,5,"(至)"],[12868,1,"問"],[12869,1,"幼"],[12870,1,"文"],[12871,1,"箏"],[[12872,12879],2],[12880,1,"pte"],[12881,1,"21"],[12882,1,"22"],[12883,1,"23"],[12884,1,"24"],[12885,1,"25"],[12886,1,"26"],[12887,1,"27"],[12888,1,"28"],[12889,1,"29"],[12890,1,"30"],[12891,1,"31"],[12892,1,"32"],[12893,1,"33"],[12894,1,"34"],[12895,1,"35"],[12896,1,"ᄀ"],[12897,1,"ᄂ"],[12898,1,"ᄃ"],[12899,1,"ᄅ"],[12900,1,"ᄆ"],[12901,1,"ᄇ"],[12902,1,"ᄉ"],[12903,1,"ᄋ"],[12904,1,"ᄌ"],[12905,1,"ᄎ"],[12906,1,"ᄏ"],[12907,1,"ᄐ"],[12908,1,"ᄑ"],[12909,1,"ᄒ"],[12910,1,"가"],[12911,1,"나"],[12912,1,"다"],[12913,1,"라"],[12914,1,"마"],[12915,1,"바"],[12916,1,"사"],[12917,1,"아"],[12918,1,"자"],[12919,1,"차"],[12920,1,"카"],[12921,1,"타"],[12922,1,"파"],[12923,1,"하"],[12924,1,"참고"],[12925,1,"주의"],[12926,1,"우"],[12927,2],[12928,1,"一"],[12929,1,"二"],[12930,1,"三"],[12931,1,"四"],[12932,1,"五"],[12933,1,"六"],[12934,1,"七"],[12935,1,"八"],[12936,1,"九"],[12937,1,"十"],[12938,1,"月"],[12939,1,"火"],[12940,1,"水"],[12941,1,"木"],[12942,1,"金"],[12943,1,"土"],[12944,1,"日"],[12945,1,"株"],[12946,1,"有"],[12947,1,"社"],[12948,1,"名"],[12949,1,"特"],[12950,1,"財"],[12951,1,"祝"],[12952,1,"労"],[12953,1,"秘"],[12954,1,"男"],[12955,1,"女"],[12956,1,"適"],[12957,1,"優"],[12958,1,"印"],[12959,1,"注"],[12960,1,"項"],[12961,1,"休"],[12962,1,"写"],[12963,1,"正"],[12964,1,"上"],[12965,1,"中"],[12966,1,"下"],[12967,1,"左"],[12968,1,"右"],[12969,1,"医"],[12970,1,"宗"],[12971,1,"学"],[12972,1,"監"],[12973,1,"企"],[12974,1,"資"],[12975,1,"協"],[12976,1,"夜"],[12977,1,"36"],[12978,1,"37"],[12979,1,"38"],[12980,1,"39"],[12981,1,"40"],[12982,1,"41"],[12983,1,"42"],[12984,1,"43"],[12985,1,"44"],[12986,1,"45"],[12987,1,"46"],[12988,1,"47"],[12989,1,"48"],[12990,1,"49"],[12991,1,"50"],[12992,1,"1月"],[12993,1,"2月"],[12994,1,"3月"],[12995,1,"4月"],[12996,1,"5月"],[12997,1,"6月"],[12998,1,"7月"],[12999,1,"8月"],[13000,1,"9月"],[13001,1,"10月"],[13002,1,"11月"],[13003,1,"12月"],[13004,1,"hg"],[13005,1,"erg"],[13006,1,"ev"],[13007,1,"ltd"],[13008,1,"ア"],[13009,1,"イ"],[13010,1,"ウ"],[13011,1,"エ"],[13012,1,"オ"],[13013,1,"カ"],[13014,1,"キ"],[13015,1,"ク"],[13016,1,"ケ"],[13017,1,"コ"],[13018,1,"サ"],[13019,1,"シ"],[13020,1,"ス"],[13021,1,"セ"],[13022,1,"ソ"],[13023,1,"タ"],[13024,1,"チ"],[13025,1,"ツ"],[13026,1,"テ"],[13027,1,"ト"],[13028,1,"ナ"],[13029,1,"ニ"],[13030,1,"ヌ"],[13031,1,"ネ"],[13032,1,"ノ"],[13033,1,"ハ"],[13034,1,"ヒ"],[13035,1,"フ"],[13036,1,"ヘ"],[13037,1,"ホ"],[13038,1,"マ"],[13039,1,"ミ"],[13040,1,"ム"],[13041,1,"メ"],[13042,1,"モ"],[13043,1,"ヤ"],[13044,1,"ユ"],[13045,1,"ヨ"],[13046,1,"ラ"],[13047,1,"リ"],[13048,1,"ル"],[13049,1,"レ"],[13050,1,"ロ"],[13051,1,"ワ"],[13052,1,"ヰ"],[13053,1,"ヱ"],[13054,1,"ヲ"],[13055,1,"令和"],[13056,1,"アパート"],[13057,1,"アルファ"],[13058,1,"アンペア"],[13059,1,"アール"],[13060,1,"イニング"],[13061,1,"インチ"],[13062,1,"ウォン"],[13063,1,"エスクード"],[13064,1,"エーカー"],[13065,1,"オンス"],[13066,1,"オーム"],[13067,1,"カイリ"],[13068,1,"カラット"],[13069,1,"カロリー"],[13070,1,"ガロン"],[13071,1,"ガンマ"],[13072,1,"ギガ"],[13073,1,"ギニー"],[13074,1,"キュリー"],[13075,1,"ギルダー"],[13076,1,"キロ"],[13077,1,"キログラム"],[13078,1,"キロメートル"],[13079,1,"キロワット"],[13080,1,"グラム"],[13081,1,"グラムトン"],[13082,1,"クルゼイロ"],[13083,1,"クローネ"],[13084,1,"ケース"],[13085,1,"コルナ"],[13086,1,"コーポ"],[13087,1,"サイクル"],[13088,1,"サンチーム"],[13089,1,"シリング"],[13090,1,"センチ"],[13091,1,"セント"],[13092,1,"ダース"],[13093,1,"デシ"],[13094,1,"ドル"],[13095,1,"トン"],[13096,1,"ナノ"],[13097,1,"ノット"],[13098,1,"ハイツ"],[13099,1,"パーセント"],[13100,1,"パーツ"],[13101,1,"バーレル"],[13102,1,"ピアストル"],[13103,1,"ピクル"],[13104,1,"ピコ"],[13105,1,"ビル"],[13106,1,"ファラッド"],[13107,1,"フィート"],[13108,1,"ブッシェル"],[13109,1,"フラン"],[13110,1,"ヘクタール"],[13111,1,"ペソ"],[13112,1,"ペニヒ"],[13113,1,"ヘルツ"],[13114,1,"ペンス"],[13115,1,"ページ"],[13116,1,"ベータ"],[13117,1,"ポイント"],[13118,1,"ボルト"],[13119,1,"ホン"],[13120,1,"ポンド"],[13121,1,"ホール"],[13122,1,"ホーン"],[13123,1,"マイクロ"],[13124,1,"マイル"],[13125,1,"マッハ"],[13126,1,"マルク"],[13127,1,"マンション"],[13128,1,"ミクロン"],[13129,1,"ミリ"],[13130,1,"ミリバール"],[13131,1,"メガ"],[13132,1,"メガトン"],[13133,1,"メートル"],[13134,1,"ヤード"],[13135,1,"ヤール"],[13136,1,"ユアン"],[13137,1,"リットル"],[13138,1,"リラ"],[13139,1,"ルピー"],[13140,1,"ルーブル"],[13141,1,"レム"],[13142,1,"レントゲン"],[13143,1,"ワット"],[13144,1,"0点"],[13145,1,"1点"],[13146,1,"2点"],[13147,1,"3点"],[13148,1,"4点"],[13149,1,"5点"],[13150,1,"6点"],[13151,1,"7点"],[13152,1,"8点"],[13153,1,"9点"],[13154,1,"10点"],[13155,1,"11点"],[13156,1,"12点"],[13157,1,"13点"],[13158,1,"14点"],[13159,1,"15点"],[13160,1,"16点"],[13161,1,"17点"],[13162,1,"18点"],[13163,1,"19点"],[13164,1,"20点"],[13165,1,"21点"],[13166,1,"22点"],[13167,1,"23点"],[13168,1,"24点"],[13169,1,"hpa"],[13170,1,"da"],[13171,1,"au"],[13172,1,"bar"],[13173,1,"ov"],[13174,1,"pc"],[13175,1,"dm"],[13176,1,"dm2"],[13177,1,"dm3"],[13178,1,"iu"],[13179,1,"平成"],[13180,1,"昭和"],[13181,1,"大正"],[13182,1,"明治"],[13183,1,"株式会社"],[13184,1,"pa"],[13185,1,"na"],[13186,1,"μa"],[13187,1,"ma"],[13188,1,"ka"],[13189,1,"kb"],[13190,1,"mb"],[13191,1,"gb"],[13192,1,"cal"],[13193,1,"kcal"],[13194,1,"pf"],[13195,1,"nf"],[13196,1,"μf"],[13197,1,"μg"],[13198,1,"mg"],[13199,1,"kg"],[13200,1,"hz"],[13201,1,"khz"],[13202,1,"mhz"],[13203,1,"ghz"],[13204,1,"thz"],[13205,1,"μl"],[13206,1,"ml"],[13207,1,"dl"],[13208,1,"kl"],[13209,1,"fm"],[13210,1,"nm"],[13211,1,"μm"],[13212,1,"mm"],[13213,1,"cm"],[13214,1,"km"],[13215,1,"mm2"],[13216,1,"cm2"],[13217,1,"m2"],[13218,1,"km2"],[13219,1,"mm3"],[13220,1,"cm3"],[13221,1,"m3"],[13222,1,"km3"],[13223,1,"m∕s"],[13224,1,"m∕s2"],[13225,1,"pa"],[13226,1,"kpa"],[13227,1,"mpa"],[13228,1,"gpa"],[13229,1,"rad"],[13230,1,"rad∕s"],[13231,1,"rad∕s2"],[13232,1,"ps"],[13233,1,"ns"],[13234,1,"μs"],[13235,1,"ms"],[13236,1,"pv"],[13237,1,"nv"],[13238,1,"μv"],[13239,1,"mv"],[13240,1,"kv"],[13241,1,"mv"],[13242,1,"pw"],[13243,1,"nw"],[13244,1,"μw"],[13245,1,"mw"],[13246,1,"kw"],[13247,1,"mw"],[13248,1,"kω"],[13249,1,"mω"],[13250,3],[13251,1,"bq"],[13252,1,"cc"],[13253,1,"cd"],[13254,1,"c∕kg"],[13255,3],[13256,1,"db"],[13257,1,"gy"],[13258,1,"ha"],[13259,1,"hp"],[13260,1,"in"],[13261,1,"kk"],[13262,1,"km"],[13263,1,"kt"],[13264,1,"lm"],[13265,1,"ln"],[13266,1,"log"],[13267,1,"lx"],[13268,1,"mb"],[13269,1,"mil"],[13270,1,"mol"],[13271,1,"ph"],[13272,3],[13273,1,"ppm"],[13274,1,"pr"],[13275,1,"sr"],[13276,1,"sv"],[13277,1,"wb"],[13278,1,"v∕m"],[13279,1,"a∕m"],[13280,1,"1日"],[13281,1,"2日"],[13282,1,"3日"],[13283,1,"4日"],[13284,1,"5日"],[13285,1,"6日"],[13286,1,"7日"],[13287,1,"8日"],[13288,1,"9日"],[13289,1,"10日"],[13290,1,"11日"],[13291,1,"12日"],[13292,1,"13日"],[13293,1,"14日"],[13294,1,"15日"],[13295,1,"16日"],[13296,1,"17日"],[13297,1,"18日"],[13298,1,"19日"],[13299,1,"20日"],[13300,1,"21日"],[13301,1,"22日"],[13302,1,"23日"],[13303,1,"24日"],[13304,1,"25日"],[13305,1,"26日"],[13306,1,"27日"],[13307,1,"28日"],[13308,1,"29日"],[13309,1,"30日"],[13310,1,"31日"],[13311,1,"gal"],[[13312,19893],2],[[19894,19903],2],[[19904,19967],2],[[19968,40869],2],[[40870,40891],2],[[40892,40899],2],[[40900,40907],2],[40908,2],[[40909,40917],2],[[40918,40938],2],[[40939,40943],2],[[40944,40956],2],[[40957,40959],2],[[40960,42124],2],[[42125,42127],3],[[42128,42145],2],[[42146,42147],2],[[42148,42163],2],[42164,2],[[42165,42176],2],[42177,2],[[42178,42180],2],[42181,2],[42182,2],[[42183,42191],3],[[42192,42237],2],[[42238,42239],2],[[42240,42508],2],[[42509,42511],2],[[42512,42539],2],[[42540,42559],3],[42560,1,"ꙁ"],[42561,2],[42562,1,"ꙃ"],[42563,2],[42564,1,"ꙅ"],[42565,2],[42566,1,"ꙇ"],[42567,2],[42568,1,"ꙉ"],[42569,2],[42570,1,"ꙋ"],[42571,2],[42572,1,"ꙍ"],[42573,2],[42574,1,"ꙏ"],[42575,2],[42576,1,"ꙑ"],[42577,2],[42578,1,"ꙓ"],[42579,2],[42580,1,"ꙕ"],[42581,2],[42582,1,"ꙗ"],[42583,2],[42584,1,"ꙙ"],[42585,2],[42586,1,"ꙛ"],[42587,2],[42588,1,"ꙝ"],[42589,2],[42590,1,"ꙟ"],[42591,2],[42592,1,"ꙡ"],[42593,2],[42594,1,"ꙣ"],[42595,2],[42596,1,"ꙥ"],[42597,2],[42598,1,"ꙧ"],[42599,2],[42600,1,"ꙩ"],[42601,2],[42602,1,"ꙫ"],[42603,2],[42604,1,"ꙭ"],[[42605,42607],2],[[42608,42611],2],[[42612,42619],2],[[42620,42621],2],[42622,2],[42623,2],[42624,1,"ꚁ"],[42625,2],[42626,1,"ꚃ"],[42627,2],[42628,1,"ꚅ"],[42629,2],[42630,1,"ꚇ"],[42631,2],[42632,1,"ꚉ"],[42633,2],[42634,1,"ꚋ"],[42635,2],[42636,1,"ꚍ"],[42637,2],[42638,1,"ꚏ"],[42639,2],[42640,1,"ꚑ"],[42641,2],[42642,1,"ꚓ"],[42643,2],[42644,1,"ꚕ"],[42645,2],[42646,1,"ꚗ"],[42647,2],[42648,1,"ꚙ"],[42649,2],[42650,1,"ꚛ"],[42651,2],[42652,1,"ъ"],[42653,1,"ь"],[42654,2],[42655,2],[[42656,42725],2],[[42726,42735],2],[[42736,42737],2],[[42738,42743],2],[[42744,42751],3],[[42752,42774],2],[[42775,42778],2],[[42779,42783],2],[[42784,42785],2],[42786,1,"ꜣ"],[42787,2],[42788,1,"ꜥ"],[42789,2],[42790,1,"ꜧ"],[42791,2],[42792,1,"ꜩ"],[42793,2],[42794,1,"ꜫ"],[42795,2],[42796,1,"ꜭ"],[42797,2],[42798,1,"ꜯ"],[[42799,42801],2],[42802,1,"ꜳ"],[42803,2],[42804,1,"ꜵ"],[42805,2],[42806,1,"ꜷ"],[42807,2],[42808,1,"ꜹ"],[42809,2],[42810,1,"ꜻ"],[42811,2],[42812,1,"ꜽ"],[42813,2],[42814,1,"ꜿ"],[42815,2],[42816,1,"ꝁ"],[42817,2],[42818,1,"ꝃ"],[42819,2],[42820,1,"ꝅ"],[42821,2],[42822,1,"ꝇ"],[42823,2],[42824,1,"ꝉ"],[42825,2],[42826,1,"ꝋ"],[42827,2],[42828,1,"ꝍ"],[42829,2],[42830,1,"ꝏ"],[42831,2],[42832,1,"ꝑ"],[42833,2],[42834,1,"ꝓ"],[42835,2],[42836,1,"ꝕ"],[42837,2],[42838,1,"ꝗ"],[42839,2],[42840,1,"ꝙ"],[42841,2],[42842,1,"ꝛ"],[42843,2],[42844,1,"ꝝ"],[42845,2],[42846,1,"ꝟ"],[42847,2],[42848,1,"ꝡ"],[42849,2],[42850,1,"ꝣ"],[42851,2],[42852,1,"ꝥ"],[42853,2],[42854,1,"ꝧ"],[42855,2],[42856,1,"ꝩ"],[42857,2],[42858,1,"ꝫ"],[42859,2],[42860,1,"ꝭ"],[42861,2],[42862,1,"ꝯ"],[42863,2],[42864,1,"ꝯ"],[[42865,42872],2],[42873,1,"ꝺ"],[42874,2],[42875,1,"ꝼ"],[42876,2],[42877,1,"ᵹ"],[42878,1,"ꝿ"],[42879,2],[42880,1,"ꞁ"],[42881,2],[42882,1,"ꞃ"],[42883,2],[42884,1,"ꞅ"],[42885,2],[42886,1,"ꞇ"],[[42887,42888],2],[[42889,42890],2],[42891,1,"ꞌ"],[42892,2],[42893,1,"ɥ"],[42894,2],[42895,2],[42896,1,"ꞑ"],[42897,2],[42898,1,"ꞓ"],[42899,2],[[42900,42901],2],[42902,1,"ꞗ"],[42903,2],[42904,1,"ꞙ"],[42905,2],[42906,1,"ꞛ"],[42907,2],[42908,1,"ꞝ"],[42909,2],[42910,1,"ꞟ"],[42911,2],[42912,1,"ꞡ"],[42913,2],[42914,1,"ꞣ"],[42915,2],[42916,1,"ꞥ"],[42917,2],[42918,1,"ꞧ"],[42919,2],[42920,1,"ꞩ"],[42921,2],[42922,1,"ɦ"],[42923,1,"ɜ"],[42924,1,"ɡ"],[42925,1,"ɬ"],[42926,1,"ɪ"],[42927,2],[42928,1,"ʞ"],[42929,1,"ʇ"],[42930,1,"ʝ"],[42931,1,"ꭓ"],[42932,1,"ꞵ"],[42933,2],[42934,1,"ꞷ"],[42935,2],[42936,1,"ꞹ"],[42937,2],[42938,1,"ꞻ"],[42939,2],[42940,1,"ꞽ"],[42941,2],[42942,1,"ꞿ"],[42943,2],[42944,1,"ꟁ"],[42945,2],[42946,1,"ꟃ"],[42947,2],[42948,1,"ꞔ"],[42949,1,"ʂ"],[42950,1,"ᶎ"],[42951,1,"ꟈ"],[42952,2],[42953,1,"ꟊ"],[42954,2],[[42955,42959],3],[42960,1,"ꟑ"],[42961,2],[42962,3],[42963,2],[42964,3],[42965,2],[42966,1,"ꟗ"],[42967,2],[42968,1,"ꟙ"],[42969,2],[[42970,42993],3],[42994,1,"c"],[42995,1,"f"],[42996,1,"q"],[42997,1,"ꟶ"],[42998,2],[42999,2],[43000,1,"ħ"],[43001,1,"œ"],[43002,2],[[43003,43007],2],[[43008,43047],2],[[43048,43051],2],[43052,2],[[43053,43055],3],[[43056,43065],2],[[43066,43071],3],[[43072,43123],2],[[43124,43127],2],[[43128,43135],3],[[43136,43204],2],[43205,2],[[43206,43213],3],[[43214,43215],2],[[43216,43225],2],[[43226,43231],3],[[43232,43255],2],[[43256,43258],2],[43259,2],[43260,2],[43261,2],[[43262,43263],2],[[43264,43309],2],[[43310,43311],2],[[43312,43347],2],[[43348,43358],3],[43359,2],[[43360,43388],2],[[43389,43391],3],[[43392,43456],2],[[43457,43469],2],[43470,3],[[43471,43481],2],[[43482,43485],3],[[43486,43487],2],[[43488,43518],2],[43519,3],[[43520,43574],2],[[43575,43583],3],[[43584,43597],2],[[43598,43599],3],[[43600,43609],2],[[43610,43611],3],[[43612,43615],2],[[43616,43638],2],[[43639,43641],2],[[43642,43643],2],[[43644,43647],2],[[43648,43714],2],[[43715,43738],3],[[43739,43741],2],[[43742,43743],2],[[43744,43759],2],[[43760,43761],2],[[43762,43766],2],[[43767,43776],3],[[43777,43782],2],[[43783,43784],3],[[43785,43790],2],[[43791,43792],3],[[43793,43798],2],[[43799,43807],3],[[43808,43814],2],[43815,3],[[43816,43822],2],[43823,3],[[43824,43866],2],[43867,2],[43868,1,"ꜧ"],[43869,1,"ꬷ"],[43870,1,"ɫ"],[43871,1,"ꭒ"],[[43872,43875],2],[[43876,43877],2],[[43878,43879],2],[43880,2],[43881,1,"ʍ"],[[43882,43883],2],[[43884,43887],3],[43888,1,"Ꭰ"],[43889,1,"Ꭱ"],[43890,1,"Ꭲ"],[43891,1,"Ꭳ"],[43892,1,"Ꭴ"],[43893,1,"Ꭵ"],[43894,1,"Ꭶ"],[43895,1,"Ꭷ"],[43896,1,"Ꭸ"],[43897,1,"Ꭹ"],[43898,1,"Ꭺ"],[43899,1,"Ꭻ"],[43900,1,"Ꭼ"],[43901,1,"Ꭽ"],[43902,1,"Ꭾ"],[43903,1,"Ꭿ"],[43904,1,"Ꮀ"],[43905,1,"Ꮁ"],[43906,1,"Ꮂ"],[43907,1,"Ꮃ"],[43908,1,"Ꮄ"],[43909,1,"Ꮅ"],[43910,1,"Ꮆ"],[43911,1,"Ꮇ"],[43912,1,"Ꮈ"],[43913,1,"Ꮉ"],[43914,1,"Ꮊ"],[43915,1,"Ꮋ"],[43916,1,"Ꮌ"],[43917,1,"Ꮍ"],[43918,1,"Ꮎ"],[43919,1,"Ꮏ"],[43920,1,"Ꮐ"],[43921,1,"Ꮑ"],[43922,1,"Ꮒ"],[43923,1,"Ꮓ"],[43924,1,"Ꮔ"],[43925,1,"Ꮕ"],[43926,1,"Ꮖ"],[43927,1,"Ꮗ"],[43928,1,"Ꮘ"],[43929,1,"Ꮙ"],[43930,1,"Ꮚ"],[43931,1,"Ꮛ"],[43932,1,"Ꮜ"],[43933,1,"Ꮝ"],[43934,1,"Ꮞ"],[43935,1,"Ꮟ"],[43936,1,"Ꮠ"],[43937,1,"Ꮡ"],[43938,1,"Ꮢ"],[43939,1,"Ꮣ"],[43940,1,"Ꮤ"],[43941,1,"Ꮥ"],[43942,1,"Ꮦ"],[43943,1,"Ꮧ"],[43944,1,"Ꮨ"],[43945,1,"Ꮩ"],[43946,1,"Ꮪ"],[43947,1,"Ꮫ"],[43948,1,"Ꮬ"],[43949,1,"Ꮭ"],[43950,1,"Ꮮ"],[43951,1,"Ꮯ"],[43952,1,"Ꮰ"],[43953,1,"Ꮱ"],[43954,1,"Ꮲ"],[43955,1,"Ꮳ"],[43956,1,"Ꮴ"],[43957,1,"Ꮵ"],[43958,1,"Ꮶ"],[43959,1,"Ꮷ"],[43960,1,"Ꮸ"],[43961,1,"Ꮹ"],[43962,1,"Ꮺ"],[43963,1,"Ꮻ"],[43964,1,"Ꮼ"],[43965,1,"Ꮽ"],[43966,1,"Ꮾ"],[43967,1,"Ꮿ"],[[43968,44010],2],[44011,2],[[44012,44013],2],[[44014,44015],3],[[44016,44025],2],[[44026,44031],3],[[44032,55203],2],[[55204,55215],3],[[55216,55238],2],[[55239,55242],3],[[55243,55291],2],[[55292,55295],3],[[55296,57343],3],[[57344,63743],3],[63744,1,"豈"],[63745,1,"更"],[63746,1,"車"],[63747,1,"賈"],[63748,1,"滑"],[63749,1,"串"],[63750,1,"句"],[[63751,63752],1,"龜"],[63753,1,"契"],[63754,1,"金"],[63755,1,"喇"],[63756,1,"奈"],[63757,1,"懶"],[63758,1,"癩"],[63759,1,"羅"],[63760,1,"蘿"],[63761,1,"螺"],[63762,1,"裸"],[63763,1,"邏"],[63764,1,"樂"],[63765,1,"洛"],[63766,1,"烙"],[63767,1,"珞"],[63768,1,"落"],[63769,1,"酪"],[63770,1,"駱"],[63771,1,"亂"],[63772,1,"卵"],[63773,1,"欄"],[63774,1,"爛"],[63775,1,"蘭"],[63776,1,"鸞"],[63777,1,"嵐"],[63778,1,"濫"],[63779,1,"藍"],[63780,1,"襤"],[63781,1,"拉"],[63782,1,"臘"],[63783,1,"蠟"],[63784,1,"廊"],[63785,1,"朗"],[63786,1,"浪"],[63787,1,"狼"],[63788,1,"郎"],[63789,1,"來"],[63790,1,"冷"],[63791,1,"勞"],[63792,1,"擄"],[63793,1,"櫓"],[63794,1,"爐"],[63795,1,"盧"],[63796,1,"老"],[63797,1,"蘆"],[63798,1,"虜"],[63799,1,"路"],[63800,1,"露"],[63801,1,"魯"],[63802,1,"鷺"],[63803,1,"碌"],[63804,1,"祿"],[63805,1,"綠"],[63806,1,"菉"],[63807,1,"錄"],[63808,1,"鹿"],[63809,1,"論"],[63810,1,"壟"],[63811,1,"弄"],[63812,1,"籠"],[63813,1,"聾"],[63814,1,"牢"],[63815,1,"磊"],[63816,1,"賂"],[63817,1,"雷"],[63818,1,"壘"],[63819,1,"屢"],[63820,1,"樓"],[63821,1,"淚"],[63822,1,"漏"],[63823,1,"累"],[63824,1,"縷"],[63825,1,"陋"],[63826,1,"勒"],[63827,1,"肋"],[63828,1,"凜"],[63829,1,"凌"],[63830,1,"稜"],[63831,1,"綾"],[63832,1,"菱"],[63833,1,"陵"],[63834,1,"讀"],[63835,1,"拏"],[63836,1,"樂"],[63837,1,"諾"],[63838,1,"丹"],[63839,1,"寧"],[63840,1,"怒"],[63841,1,"率"],[63842,1,"異"],[63843,1,"北"],[63844,1,"磻"],[63845,1,"便"],[63846,1,"復"],[63847,1,"不"],[63848,1,"泌"],[63849,1,"數"],[63850,1,"索"],[63851,1,"參"],[63852,1,"塞"],[63853,1,"省"],[63854,1,"葉"],[63855,1,"說"],[63856,1,"殺"],[63857,1,"辰"],[63858,1,"沈"],[63859,1,"拾"],[63860,1,"若"],[63861,1,"掠"],[63862,1,"略"],[63863,1,"亮"],[63864,1,"兩"],[63865,1,"凉"],[63866,1,"梁"],[63867,1,"糧"],[63868,1,"良"],[63869,1,"諒"],[63870,1,"量"],[63871,1,"勵"],[63872,1,"呂"],[63873,1,"女"],[63874,1,"廬"],[63875,1,"旅"],[63876,1,"濾"],[63877,1,"礪"],[63878,1,"閭"],[63879,1,"驪"],[63880,1,"麗"],[63881,1,"黎"],[63882,1,"力"],[63883,1,"曆"],[63884,1,"歷"],[63885,1,"轢"],[63886,1,"年"],[63887,1,"憐"],[63888,1,"戀"],[63889,1,"撚"],[63890,1,"漣"],[63891,1,"煉"],[63892,1,"璉"],[63893,1,"秊"],[63894,1,"練"],[63895,1,"聯"],[63896,1,"輦"],[63897,1,"蓮"],[63898,1,"連"],[63899,1,"鍊"],[63900,1,"列"],[63901,1,"劣"],[63902,1,"咽"],[63903,1,"烈"],[63904,1,"裂"],[63905,1,"說"],[63906,1,"廉"],[63907,1,"念"],[63908,1,"捻"],[63909,1,"殮"],[63910,1,"簾"],[63911,1,"獵"],[63912,1,"令"],[63913,1,"囹"],[63914,1,"寧"],[63915,1,"嶺"],[63916,1,"怜"],[63917,1,"玲"],[63918,1,"瑩"],[63919,1,"羚"],[63920,1,"聆"],[63921,1,"鈴"],[63922,1,"零"],[63923,1,"靈"],[63924,1,"領"],[63925,1,"例"],[63926,1,"禮"],[63927,1,"醴"],[63928,1,"隸"],[63929,1,"惡"],[63930,1,"了"],[63931,1,"僚"],[63932,1,"寮"],[63933,1,"尿"],[63934,1,"料"],[63935,1,"樂"],[63936,1,"燎"],[63937,1,"療"],[63938,1,"蓼"],[63939,1,"遼"],[63940,1,"龍"],[63941,1,"暈"],[63942,1,"阮"],[63943,1,"劉"],[63944,1,"杻"],[63945,1,"柳"],[63946,1,"流"],[63947,1,"溜"],[63948,1,"琉"],[63949,1,"留"],[63950,1,"硫"],[63951,1,"紐"],[63952,1,"類"],[63953,1,"六"],[63954,1,"戮"],[63955,1,"陸"],[63956,1,"倫"],[63957,1,"崙"],[63958,1,"淪"],[63959,1,"輪"],[63960,1,"律"],[63961,1,"慄"],[63962,1,"栗"],[63963,1,"率"],[63964,1,"隆"],[63965,1,"利"],[63966,1,"吏"],[63967,1,"履"],[63968,1,"易"],[63969,1,"李"],[63970,1,"梨"],[63971,1,"泥"],[63972,1,"理"],[63973,1,"痢"],[63974,1,"罹"],[63975,1,"裏"],[63976,1,"裡"],[63977,1,"里"],[63978,1,"離"],[63979,1,"匿"],[63980,1,"溺"],[63981,1,"吝"],[63982,1,"燐"],[63983,1,"璘"],[63984,1,"藺"],[63985,1,"隣"],[63986,1,"鱗"],[63987,1,"麟"],[63988,1,"林"],[63989,1,"淋"],[63990,1,"臨"],[63991,1,"立"],[63992,1,"笠"],[63993,1,"粒"],[63994,1,"狀"],[63995,1,"炙"],[63996,1,"識"],[63997,1,"什"],[63998,1,"茶"],[63999,1,"刺"],[64000,1,"切"],[64001,1,"度"],[64002,1,"拓"],[64003,1,"糖"],[64004,1,"宅"],[64005,1,"洞"],[64006,1,"暴"],[64007,1,"輻"],[64008,1,"行"],[64009,1,"降"],[64010,1,"見"],[64011,1,"廓"],[64012,1,"兀"],[64013,1,"嗀"],[[64014,64015],2],[64016,1,"塚"],[64017,2],[64018,1,"晴"],[[64019,64020],2],[64021,1,"凞"],[64022,1,"猪"],[64023,1,"益"],[64024,1,"礼"],[64025,1,"神"],[64026,1,"祥"],[64027,1,"福"],[64028,1,"靖"],[64029,1,"精"],[64030,1,"羽"],[64031,2],[64032,1,"蘒"],[64033,2],[64034,1,"諸"],[[64035,64036],2],[64037,1,"逸"],[64038,1,"都"],[[64039,64041],2],[64042,1,"飯"],[64043,1,"飼"],[64044,1,"館"],[64045,1,"鶴"],[64046,1,"郞"],[64047,1,"隷"],[64048,1,"侮"],[64049,1,"僧"],[64050,1,"免"],[64051,1,"勉"],[64052,1,"勤"],[64053,1,"卑"],[64054,1,"喝"],[64055,1,"嘆"],[64056,1,"器"],[64057,1,"塀"],[64058,1,"墨"],[64059,1,"層"],[64060,1,"屮"],[64061,1,"悔"],[64062,1,"慨"],[64063,1,"憎"],[64064,1,"懲"],[64065,1,"敏"],[64066,1,"既"],[64067,1,"暑"],[64068,1,"梅"],[64069,1,"海"],[64070,1,"渚"],[64071,1,"漢"],[64072,1,"煮"],[64073,1,"爫"],[64074,1,"琢"],[64075,1,"碑"],[64076,1,"社"],[64077,1,"祉"],[64078,1,"祈"],[64079,1,"祐"],[64080,1,"祖"],[64081,1,"祝"],[64082,1,"禍"],[64083,1,"禎"],[64084,1,"穀"],[64085,1,"突"],[64086,1,"節"],[64087,1,"練"],[64088,1,"縉"],[64089,1,"繁"],[64090,1,"署"],[64091,1,"者"],[64092,1,"臭"],[[64093,64094],1,"艹"],[64095,1,"著"],[64096,1,"褐"],[64097,1,"視"],[64098,1,"謁"],[64099,1,"謹"],[64100,1,"賓"],[64101,1,"贈"],[64102,1,"辶"],[64103,1,"逸"],[64104,1,"難"],[64105,1,"響"],[64106,1,"頻"],[64107,1,"恵"],[64108,1,"𤋮"],[64109,1,"舘"],[[64110,64111],3],[64112,1,"並"],[64113,1,"况"],[64114,1,"全"],[64115,1,"侀"],[64116,1,"充"],[64117,1,"冀"],[64118,1,"勇"],[64119,1,"勺"],[64120,1,"喝"],[64121,1,"啕"],[64122,1,"喙"],[64123,1,"嗢"],[64124,1,"塚"],[64125,1,"墳"],[64126,1,"奄"],[64127,1,"奔"],[64128,1,"婢"],[64129,1,"嬨"],[64130,1,"廒"],[64131,1,"廙"],[64132,1,"彩"],[64133,1,"徭"],[64134,1,"惘"],[64135,1,"慎"],[64136,1,"愈"],[64137,1,"憎"],[64138,1,"慠"],[64139,1,"懲"],[64140,1,"戴"],[64141,1,"揄"],[64142,1,"搜"],[64143,1,"摒"],[64144,1,"敖"],[64145,1,"晴"],[64146,1,"朗"],[64147,1,"望"],[64148,1,"杖"],[64149,1,"歹"],[64150,1,"殺"],[64151,1,"流"],[64152,1,"滛"],[64153,1,"滋"],[64154,1,"漢"],[64155,1,"瀞"],[64156,1,"煮"],[64157,1,"瞧"],[64158,1,"爵"],[64159,1,"犯"],[64160,1,"猪"],[64161,1,"瑱"],[64162,1,"甆"],[64163,1,"画"],[64164,1,"瘝"],[64165,1,"瘟"],[64166,1,"益"],[64167,1,"盛"],[64168,1,"直"],[64169,1,"睊"],[64170,1,"着"],[64171,1,"磌"],[64172,1,"窱"],[64173,1,"節"],[64174,1,"类"],[64175,1,"絛"],[64176,1,"練"],[64177,1,"缾"],[64178,1,"者"],[64179,1,"荒"],[64180,1,"華"],[64181,1,"蝹"],[64182,1,"襁"],[64183,1,"覆"],[64184,1,"視"],[64185,1,"調"],[64186,1,"諸"],[64187,1,"請"],[64188,1,"謁"],[64189,1,"諾"],[64190,1,"諭"],[64191,1,"謹"],[64192,1,"變"],[64193,1,"贈"],[64194,1,"輸"],[64195,1,"遲"],[64196,1,"醙"],[64197,1,"鉶"],[64198,1,"陼"],[64199,1,"難"],[64200,1,"靖"],[64201,1,"韛"],[64202,1,"響"],[64203,1,"頋"],[64204,1,"頻"],[64205,1,"鬒"],[64206,1,"龜"],[64207,1,"𢡊"],[64208,1,"𢡄"],[64209,1,"𣏕"],[64210,1,"㮝"],[64211,1,"䀘"],[64212,1,"䀹"],[64213,1,"𥉉"],[64214,1,"𥳐"],[64215,1,"𧻓"],[64216,1,"齃"],[64217,1,"龎"],[[64218,64255],3],[64256,1,"ff"],[64257,1,"fi"],[64258,1,"fl"],[64259,1,"ffi"],[64260,1,"ffl"],[[64261,64262],1,"st"],[[64263,64274],3],[64275,1,"մն"],[64276,1,"մե"],[64277,1,"մի"],[64278,1,"վն"],[64279,1,"մխ"],[[64280,64284],3],[64285,1,"יִ"],[64286,2],[64287,1,"ײַ"],[64288,1,"ע"],[64289,1,"א"],[64290,1,"ד"],[64291,1,"ה"],[64292,1,"כ"],[64293,1,"ל"],[64294,1,"ם"],[64295,1,"ר"],[64296,1,"ת"],[64297,5,"+"],[64298,1,"שׁ"],[64299,1,"שׂ"],[64300,1,"שּׁ"],[64301,1,"שּׂ"],[64302,1,"אַ"],[64303,1,"אָ"],[64304,1,"אּ"],[64305,1,"בּ"],[64306,1,"גּ"],[64307,1,"דּ"],[64308,1,"הּ"],[64309,1,"וּ"],[64310,1,"זּ"],[64311,3],[64312,1,"טּ"],[64313,1,"יּ"],[64314,1,"ךּ"],[64315,1,"כּ"],[64316,1,"לּ"],[64317,3],[64318,1,"מּ"],[64319,3],[64320,1,"נּ"],[64321,1,"סּ"],[64322,3],[64323,1,"ףּ"],[64324,1,"פּ"],[64325,3],[64326,1,"צּ"],[64327,1,"קּ"],[64328,1,"רּ"],[64329,1,"שּ"],[64330,1,"תּ"],[64331,1,"וֹ"],[64332,1,"בֿ"],[64333,1,"כֿ"],[64334,1,"פֿ"],[64335,1,"אל"],[[64336,64337],1,"ٱ"],[[64338,64341],1,"ٻ"],[[64342,64345],1,"پ"],[[64346,64349],1,"ڀ"],[[64350,64353],1,"ٺ"],[[64354,64357],1,"ٿ"],[[64358,64361],1,"ٹ"],[[64362,64365],1,"ڤ"],[[64366,64369],1,"ڦ"],[[64370,64373],1,"ڄ"],[[64374,64377],1,"ڃ"],[[64378,64381],1,"چ"],[[64382,64385],1,"ڇ"],[[64386,64387],1,"ڍ"],[[64388,64389],1,"ڌ"],[[64390,64391],1,"ڎ"],[[64392,64393],1,"ڈ"],[[64394,64395],1,"ژ"],[[64396,64397],1,"ڑ"],[[64398,64401],1,"ک"],[[64402,64405],1,"گ"],[[64406,64409],1,"ڳ"],[[64410,64413],1,"ڱ"],[[64414,64415],1,"ں"],[[64416,64419],1,"ڻ"],[[64420,64421],1,"ۀ"],[[64422,64425],1,"ہ"],[[64426,64429],1,"ھ"],[[64430,64431],1,"ے"],[[64432,64433],1,"ۓ"],[[64434,64449],2],[64450,2],[[64451,64466],3],[[64467,64470],1,"ڭ"],[[64471,64472],1,"ۇ"],[[64473,64474],1,"ۆ"],[[64475,64476],1,"ۈ"],[64477,1,"ۇٴ"],[[64478,64479],1,"ۋ"],[[64480,64481],1,"ۅ"],[[64482,64483],1,"ۉ"],[[64484,64487],1,"ې"],[[64488,64489],1,"ى"],[[64490,64491],1,"ئا"],[[64492,64493],1,"ئە"],[[64494,64495],1,"ئو"],[[64496,64497],1,"ئۇ"],[[64498,64499],1,"ئۆ"],[[64500,64501],1,"ئۈ"],[[64502,64504],1,"ئې"],[[64505,64507],1,"ئى"],[[64508,64511],1,"ی"],[64512,1,"ئج"],[64513,1,"ئح"],[64514,1,"ئم"],[64515,1,"ئى"],[64516,1,"ئي"],[64517,1,"بج"],[64518,1,"بح"],[64519,1,"بخ"],[64520,1,"بم"],[64521,1,"بى"],[64522,1,"بي"],[64523,1,"تج"],[64524,1,"تح"],[64525,1,"تخ"],[64526,1,"تم"],[64527,1,"تى"],[64528,1,"تي"],[64529,1,"ثج"],[64530,1,"ثم"],[64531,1,"ثى"],[64532,1,"ثي"],[64533,1,"جح"],[64534,1,"جم"],[64535,1,"حج"],[64536,1,"حم"],[64537,1,"خج"],[64538,1,"خح"],[64539,1,"خم"],[64540,1,"سج"],[64541,1,"سح"],[64542,1,"سخ"],[64543,1,"سم"],[64544,1,"صح"],[64545,1,"صم"],[64546,1,"ضج"],[64547,1,"ضح"],[64548,1,"ضخ"],[64549,1,"ضم"],[64550,1,"طح"],[64551,1,"طم"],[64552,1,"ظم"],[64553,1,"عج"],[64554,1,"عم"],[64555,1,"غج"],[64556,1,"غم"],[64557,1,"فج"],[64558,1,"فح"],[64559,1,"فخ"],[64560,1,"فم"],[64561,1,"فى"],[64562,1,"في"],[64563,1,"قح"],[64564,1,"قم"],[64565,1,"قى"],[64566,1,"قي"],[64567,1,"كا"],[64568,1,"كج"],[64569,1,"كح"],[64570,1,"كخ"],[64571,1,"كل"],[64572,1,"كم"],[64573,1,"كى"],[64574,1,"كي"],[64575,1,"لج"],[64576,1,"لح"],[64577,1,"لخ"],[64578,1,"لم"],[64579,1,"لى"],[64580,1,"لي"],[64581,1,"مج"],[64582,1,"مح"],[64583,1,"مخ"],[64584,1,"مم"],[64585,1,"مى"],[64586,1,"مي"],[64587,1,"نج"],[64588,1,"نح"],[64589,1,"نخ"],[64590,1,"نم"],[64591,1,"نى"],[64592,1,"ني"],[64593,1,"هج"],[64594,1,"هم"],[64595,1,"هى"],[64596,1,"هي"],[64597,1,"يج"],[64598,1,"يح"],[64599,1,"يخ"],[64600,1,"يم"],[64601,1,"يى"],[64602,1,"يي"],[64603,1,"ذٰ"],[64604,1,"رٰ"],[64605,1,"ىٰ"],[64606,5," ٌّ"],[64607,5," ٍّ"],[64608,5," َّ"],[64609,5," ُّ"],[64610,5," ِّ"],[64611,5," ّٰ"],[64612,1,"ئر"],[64613,1,"ئز"],[64614,1,"ئم"],[64615,1,"ئن"],[64616,1,"ئى"],[64617,1,"ئي"],[64618,1,"بر"],[64619,1,"بز"],[64620,1,"بم"],[64621,1,"بن"],[64622,1,"بى"],[64623,1,"بي"],[64624,1,"تر"],[64625,1,"تز"],[64626,1,"تم"],[64627,1,"تن"],[64628,1,"تى"],[64629,1,"تي"],[64630,1,"ثر"],[64631,1,"ثز"],[64632,1,"ثم"],[64633,1,"ثن"],[64634,1,"ثى"],[64635,1,"ثي"],[64636,1,"فى"],[64637,1,"في"],[64638,1,"قى"],[64639,1,"قي"],[64640,1,"كا"],[64641,1,"كل"],[64642,1,"كم"],[64643,1,"كى"],[64644,1,"كي"],[64645,1,"لم"],[64646,1,"لى"],[64647,1,"لي"],[64648,1,"ما"],[64649,1,"مم"],[64650,1,"نر"],[64651,1,"نز"],[64652,1,"نم"],[64653,1,"نن"],[64654,1,"نى"],[64655,1,"ني"],[64656,1,"ىٰ"],[64657,1,"ير"],[64658,1,"يز"],[64659,1,"يم"],[64660,1,"ين"],[64661,1,"يى"],[64662,1,"يي"],[64663,1,"ئج"],[64664,1,"ئح"],[64665,1,"ئخ"],[64666,1,"ئم"],[64667,1,"ئه"],[64668,1,"بج"],[64669,1,"بح"],[64670,1,"بخ"],[64671,1,"بم"],[64672,1,"به"],[64673,1,"تج"],[64674,1,"تح"],[64675,1,"تخ"],[64676,1,"تم"],[64677,1,"ته"],[64678,1,"ثم"],[64679,1,"جح"],[64680,1,"جم"],[64681,1,"حج"],[64682,1,"حم"],[64683,1,"خج"],[64684,1,"خم"],[64685,1,"سج"],[64686,1,"سح"],[64687,1,"سخ"],[64688,1,"سم"],[64689,1,"صح"],[64690,1,"صخ"],[64691,1,"صم"],[64692,1,"ضج"],[64693,1,"ضح"],[64694,1,"ضخ"],[64695,1,"ضم"],[64696,1,"طح"],[64697,1,"ظم"],[64698,1,"عج"],[64699,1,"عم"],[64700,1,"غج"],[64701,1,"غم"],[64702,1,"فج"],[64703,1,"فح"],[64704,1,"فخ"],[64705,1,"فم"],[64706,1,"قح"],[64707,1,"قم"],[64708,1,"كج"],[64709,1,"كح"],[64710,1,"كخ"],[64711,1,"كل"],[64712,1,"كم"],[64713,1,"لج"],[64714,1,"لح"],[64715,1,"لخ"],[64716,1,"لم"],[64717,1,"له"],[64718,1,"مج"],[64719,1,"مح"],[64720,1,"مخ"],[64721,1,"مم"],[64722,1,"نج"],[64723,1,"نح"],[64724,1,"نخ"],[64725,1,"نم"],[64726,1,"نه"],[64727,1,"هج"],[64728,1,"هم"],[64729,1,"هٰ"],[64730,1,"يج"],[64731,1,"يح"],[64732,1,"يخ"],[64733,1,"يم"],[64734,1,"يه"],[64735,1,"ئم"],[64736,1,"ئه"],[64737,1,"بم"],[64738,1,"به"],[64739,1,"تم"],[64740,1,"ته"],[64741,1,"ثم"],[64742,1,"ثه"],[64743,1,"سم"],[64744,1,"سه"],[64745,1,"شم"],[64746,1,"شه"],[64747,1,"كل"],[64748,1,"كم"],[64749,1,"لم"],[64750,1,"نم"],[64751,1,"نه"],[64752,1,"يم"],[64753,1,"يه"],[64754,1,"ـَّ"],[64755,1,"ـُّ"],[64756,1,"ـِّ"],[64757,1,"طى"],[64758,1,"طي"],[64759,1,"عى"],[64760,1,"عي"],[64761,1,"غى"],[64762,1,"غي"],[64763,1,"سى"],[64764,1,"سي"],[64765,1,"شى"],[64766,1,"شي"],[64767,1,"حى"],[64768,1,"حي"],[64769,1,"جى"],[64770,1,"جي"],[64771,1,"خى"],[64772,1,"خي"],[64773,1,"صى"],[64774,1,"صي"],[64775,1,"ضى"],[64776,1,"ضي"],[64777,1,"شج"],[64778,1,"شح"],[64779,1,"شخ"],[64780,1,"شم"],[64781,1,"شر"],[64782,1,"سر"],[64783,1,"صر"],[64784,1,"ضر"],[64785,1,"طى"],[64786,1,"طي"],[64787,1,"عى"],[64788,1,"عي"],[64789,1,"غى"],[64790,1,"غي"],[64791,1,"سى"],[64792,1,"سي"],[64793,1,"شى"],[64794,1,"شي"],[64795,1,"حى"],[64796,1,"حي"],[64797,1,"جى"],[64798,1,"جي"],[64799,1,"خى"],[64800,1,"خي"],[64801,1,"صى"],[64802,1,"صي"],[64803,1,"ضى"],[64804,1,"ضي"],[64805,1,"شج"],[64806,1,"شح"],[64807,1,"شخ"],[64808,1,"شم"],[64809,1,"شر"],[64810,1,"سر"],[64811,1,"صر"],[64812,1,"ضر"],[64813,1,"شج"],[64814,1,"شح"],[64815,1,"شخ"],[64816,1,"شم"],[64817,1,"سه"],[64818,1,"شه"],[64819,1,"طم"],[64820,1,"سج"],[64821,1,"سح"],[64822,1,"سخ"],[64823,1,"شج"],[64824,1,"شح"],[64825,1,"شخ"],[64826,1,"طم"],[64827,1,"ظم"],[[64828,64829],1,"اً"],[[64830,64831],2],[[64832,64847],2],[64848,1,"تجم"],[[64849,64850],1,"تحج"],[64851,1,"تحم"],[64852,1,"تخم"],[64853,1,"تمج"],[64854,1,"تمح"],[64855,1,"تمخ"],[[64856,64857],1,"جمح"],[64858,1,"حمي"],[64859,1,"حمى"],[64860,1,"سحج"],[64861,1,"سجح"],[64862,1,"سجى"],[[64863,64864],1,"سمح"],[64865,1,"سمج"],[[64866,64867],1,"سمم"],[[64868,64869],1,"صحح"],[64870,1,"صمم"],[[64871,64872],1,"شحم"],[64873,1,"شجي"],[[64874,64875],1,"شمخ"],[[64876,64877],1,"شمم"],[64878,1,"ضحى"],[[64879,64880],1,"ضخم"],[[64881,64882],1,"طمح"],[64883,1,"طمم"],[64884,1,"طمي"],[64885,1,"عجم"],[[64886,64887],1,"عمم"],[64888,1,"عمى"],[64889,1,"غمم"],[64890,1,"غمي"],[64891,1,"غمى"],[[64892,64893],1,"فخم"],[64894,1,"قمح"],[64895,1,"قمم"],[64896,1,"لحم"],[64897,1,"لحي"],[64898,1,"لحى"],[[64899,64900],1,"لجج"],[[64901,64902],1,"لخم"],[[64903,64904],1,"لمح"],[64905,1,"محج"],[64906,1,"محم"],[64907,1,"محي"],[64908,1,"مجح"],[64909,1,"مجم"],[64910,1,"مخج"],[64911,1,"مخم"],[[64912,64913],3],[64914,1,"مجخ"],[64915,1,"همج"],[64916,1,"همم"],[64917,1,"نحم"],[64918,1,"نحى"],[[64919,64920],1,"نجم"],[64921,1,"نجى"],[64922,1,"نمي"],[64923,1,"نمى"],[[64924,64925],1,"يمم"],[64926,1,"بخي"],[64927,1,"تجي"],[64928,1,"تجى"],[64929,1,"تخي"],[64930,1,"تخى"],[64931,1,"تمي"],[64932,1,"تمى"],[64933,1,"جمي"],[64934,1,"جحى"],[64935,1,"جمى"],[64936,1,"سخى"],[64937,1,"صحي"],[64938,1,"شحي"],[64939,1,"ضحي"],[64940,1,"لجي"],[64941,1,"لمي"],[64942,1,"يحي"],[64943,1,"يجي"],[64944,1,"يمي"],[64945,1,"ممي"],[64946,1,"قمي"],[64947,1,"نحي"],[64948,1,"قمح"],[64949,1,"لحم"],[64950,1,"عمي"],[64951,1,"كمي"],[64952,1,"نجح"],[64953,1,"مخي"],[64954,1,"لجم"],[64955,1,"كمم"],[64956,1,"لجم"],[64957,1,"نجح"],[64958,1,"جحي"],[64959,1,"حجي"],[64960,1,"مجي"],[64961,1,"فمي"],[64962,1,"بحي"],[64963,1,"كمم"],[64964,1,"عجم"],[64965,1,"صمم"],[64966,1,"سخي"],[64967,1,"نجي"],[[64968,64974],3],[64975,2],[[64976,65007],3],[65008,1,"صلے"],[65009,1,"قلے"],[65010,1,"الله"],[65011,1,"اكبر"],[65012,1,"محمد"],[65013,1,"صلعم"],[65014,1,"رسول"],[65015,1,"عليه"],[65016,1,"وسلم"],[65017,1,"صلى"],[65018,5,"صلى الله عليه وسلم"],[65019,5,"جل جلاله"],[65020,1,"ریال"],[65021,2],[[65022,65023],2],[[65024,65039],7],[65040,5,","],[65041,1,"、"],[65042,3],[65043,5,":"],[65044,5,";"],[65045,5,"!"],[65046,5,"?"],[65047,1,"〖"],[65048,1,"〗"],[65049,3],[[65050,65055],3],[[65056,65059],2],[[65060,65062],2],[[65063,65069],2],[[65070,65071],2],[65072,3],[65073,1,"—"],[65074,1,"–"],[[65075,65076],5,"_"],[65077,5,"("],[65078,5,")"],[65079,5,"{"],[65080,5,"}"],[65081,1,"〔"],[65082,1,"〕"],[65083,1,"【"],[65084,1,"】"],[65085,1,"《"],[65086,1,"》"],[65087,1,"〈"],[65088,1,"〉"],[65089,1,"「"],[65090,1,"」"],[65091,1,"『"],[65092,1,"』"],[[65093,65094],2],[65095,5,"["],[65096,5,"]"],[[65097,65100],5," ̅"],[[65101,65103],5,"_"],[65104,5,","],[65105,1,"、"],[65106,3],[65107,3],[65108,5,";"],[65109,5,":"],[65110,5,"?"],[65111,5,"!"],[65112,1,"—"],[65113,5,"("],[65114,5,")"],[65115,5,"{"],[65116,5,"}"],[65117,1,"〔"],[65118,1,"〕"],[65119,5,"#"],[65120,5,"&"],[65121,5,"*"],[65122,5,"+"],[65123,1,"-"],[65124,5,"<"],[65125,5,">"],[65126,5,"="],[65127,3],[65128,5,"\\"],[65129,5,"$"],[65130,5,"%"],[65131,5,"@"],[[65132,65135],3],[65136,5," ً"],[65137,1,"ـً"],[65138,5," ٌ"],[65139,2],[65140,5," ٍ"],[65141,3],[65142,5," َ"],[65143,1,"ـَ"],[65144,5," ُ"],[65145,1,"ـُ"],[65146,5," ِ"],[65147,1,"ـِ"],[65148,5," ّ"],[65149,1,"ـّ"],[65150,5," ْ"],[65151,1,"ـْ"],[65152,1,"ء"],[[65153,65154],1,"آ"],[[65155,65156],1,"أ"],[[65157,65158],1,"ؤ"],[[65159,65160],1,"إ"],[[65161,65164],1,"ئ"],[[65165,65166],1,"ا"],[[65167,65170],1,"ب"],[[65171,65172],1,"ة"],[[65173,65176],1,"ت"],[[65177,65180],1,"ث"],[[65181,65184],1,"ج"],[[65185,65188],1,"ح"],[[65189,65192],1,"خ"],[[65193,65194],1,"د"],[[65195,65196],1,"ذ"],[[65197,65198],1,"ر"],[[65199,65200],1,"ز"],[[65201,65204],1,"س"],[[65205,65208],1,"ش"],[[65209,65212],1,"ص"],[[65213,65216],1,"ض"],[[65217,65220],1,"ط"],[[65221,65224],1,"ظ"],[[65225,65228],1,"ع"],[[65229,65232],1,"غ"],[[65233,65236],1,"ف"],[[65237,65240],1,"ق"],[[65241,65244],1,"ك"],[[65245,65248],1,"ل"],[[65249,65252],1,"م"],[[65253,65256],1,"ن"],[[65257,65260],1,"ه"],[[65261,65262],1,"و"],[[65263,65264],1,"ى"],[[65265,65268],1,"ي"],[[65269,65270],1,"لآ"],[[65271,65272],1,"لأ"],[[65273,65274],1,"لإ"],[[65275,65276],1,"لا"],[[65277,65278],3],[65279,7],[65280,3],[65281,5,"!"],[65282,5,"\""],[65283,5,"#"],[65284,5,"$"],[65285,5,"%"],[65286,5,"&"],[65287,5,"'"],[65288,5,"("],[65289,5,")"],[65290,5,"*"],[65291,5,"+"],[65292,5,","],[65293,1,"-"],[65294,1,"."],[65295,5,"/"],[65296,1,"0"],[65297,1,"1"],[65298,1,"2"],[65299,1,"3"],[65300,1,"4"],[65301,1,"5"],[65302,1,"6"],[65303,1,"7"],[65304,1,"8"],[65305,1,"9"],[65306,5,":"],[65307,5,";"],[65308,5,"<"],[65309,5,"="],[65310,5,">"],[65311,5,"?"],[65312,5,"@"],[65313,1,"a"],[65314,1,"b"],[65315,1,"c"],[65316,1,"d"],[65317,1,"e"],[65318,1,"f"],[65319,1,"g"],[65320,1,"h"],[65321,1,"i"],[65322,1,"j"],[65323,1,"k"],[65324,1,"l"],[65325,1,"m"],[65326,1,"n"],[65327,1,"o"],[65328,1,"p"],[65329,1,"q"],[65330,1,"r"],[65331,1,"s"],[65332,1,"t"],[65333,1,"u"],[65334,1,"v"],[65335,1,"w"],[65336,1,"x"],[65337,1,"y"],[65338,1,"z"],[65339,5,"["],[65340,5,"\\"],[65341,5,"]"],[65342,5,"^"],[65343,5,"_"],[65344,5,"`"],[65345,1,"a"],[65346,1,"b"],[65347,1,"c"],[65348,1,"d"],[65349,1,"e"],[65350,1,"f"],[65351,1,"g"],[65352,1,"h"],[65353,1,"i"],[65354,1,"j"],[65355,1,"k"],[65356,1,"l"],[65357,1,"m"],[65358,1,"n"],[65359,1,"o"],[65360,1,"p"],[65361,1,"q"],[65362,1,"r"],[65363,1,"s"],[65364,1,"t"],[65365,1,"u"],[65366,1,"v"],[65367,1,"w"],[65368,1,"x"],[65369,1,"y"],[65370,1,"z"],[65371,5,"{"],[65372,5,"|"],[65373,5,"}"],[65374,5,"~"],[65375,1,"⦅"],[65376,1,"⦆"],[65377,1,"."],[65378,1,"「"],[65379,1,"」"],[65380,1,"、"],[65381,1,"・"],[65382,1,"ヲ"],[65383,1,"ァ"],[65384,1,"ィ"],[65385,1,"ゥ"],[65386,1,"ェ"],[65387,1,"ォ"],[65388,1,"ャ"],[65389,1,"ュ"],[65390,1,"ョ"],[65391,1,"ッ"],[65392,1,"ー"],[65393,1,"ア"],[65394,1,"イ"],[65395,1,"ウ"],[65396,1,"エ"],[65397,1,"オ"],[65398,1,"カ"],[65399,1,"キ"],[65400,1,"ク"],[65401,1,"ケ"],[65402,1,"コ"],[65403,1,"サ"],[65404,1,"シ"],[65405,1,"ス"],[65406,1,"セ"],[65407,1,"ソ"],[65408,1,"タ"],[65409,1,"チ"],[65410,1,"ツ"],[65411,1,"テ"],[65412,1,"ト"],[65413,1,"ナ"],[65414,1,"ニ"],[65415,1,"ヌ"],[65416,1,"ネ"],[65417,1,"ノ"],[65418,1,"ハ"],[65419,1,"ヒ"],[65420,1,"フ"],[65421,1,"ヘ"],[65422,1,"ホ"],[65423,1,"マ"],[65424,1,"ミ"],[65425,1,"ム"],[65426,1,"メ"],[65427,1,"モ"],[65428,1,"ヤ"],[65429,1,"ユ"],[65430,1,"ヨ"],[65431,1,"ラ"],[65432,1,"リ"],[65433,1,"ル"],[65434,1,"レ"],[65435,1,"ロ"],[65436,1,"ワ"],[65437,1,"ン"],[65438,1,"゙"],[65439,1,"゚"],[65440,3],[65441,1,"ᄀ"],[65442,1,"ᄁ"],[65443,1,"ᆪ"],[65444,1,"ᄂ"],[65445,1,"ᆬ"],[65446,1,"ᆭ"],[65447,1,"ᄃ"],[65448,1,"ᄄ"],[65449,1,"ᄅ"],[65450,1,"ᆰ"],[65451,1,"ᆱ"],[65452,1,"ᆲ"],[65453,1,"ᆳ"],[65454,1,"ᆴ"],[65455,1,"ᆵ"],[65456,1,"ᄚ"],[65457,1,"ᄆ"],[65458,1,"ᄇ"],[65459,1,"ᄈ"],[65460,1,"ᄡ"],[65461,1,"ᄉ"],[65462,1,"ᄊ"],[65463,1,"ᄋ"],[65464,1,"ᄌ"],[65465,1,"ᄍ"],[65466,1,"ᄎ"],[65467,1,"ᄏ"],[65468,1,"ᄐ"],[65469,1,"ᄑ"],[65470,1,"ᄒ"],[[65471,65473],3],[65474,1,"ᅡ"],[65475,1,"ᅢ"],[65476,1,"ᅣ"],[65477,1,"ᅤ"],[65478,1,"ᅥ"],[65479,1,"ᅦ"],[[65480,65481],3],[65482,1,"ᅧ"],[65483,1,"ᅨ"],[65484,1,"ᅩ"],[65485,1,"ᅪ"],[65486,1,"ᅫ"],[65487,1,"ᅬ"],[[65488,65489],3],[65490,1,"ᅭ"],[65491,1,"ᅮ"],[65492,1,"ᅯ"],[65493,1,"ᅰ"],[65494,1,"ᅱ"],[65495,1,"ᅲ"],[[65496,65497],3],[65498,1,"ᅳ"],[65499,1,"ᅴ"],[65500,1,"ᅵ"],[[65501,65503],3],[65504,1,"¢"],[65505,1,"£"],[65506,1,"¬"],[65507,5," ̄"],[65508,1,"¦"],[65509,1,"¥"],[65510,1,"₩"],[65511,3],[65512,1,"│"],[65513,1,"←"],[65514,1,"↑"],[65515,1,"→"],[65516,1,"↓"],[65517,1,"■"],[65518,1,"○"],[[65519,65528],3],[[65529,65531],3],[65532,3],[65533,3],[[65534,65535],3],[[65536,65547],2],[65548,3],[[65549,65574],2],[65575,3],[[65576,65594],2],[65595,3],[[65596,65597],2],[65598,3],[[65599,65613],2],[[65614,65615],3],[[65616,65629],2],[[65630,65663],3],[[65664,65786],2],[[65787,65791],3],[[65792,65794],2],[[65795,65798],3],[[65799,65843],2],[[65844,65846],3],[[65847,65855],2],[[65856,65930],2],[[65931,65932],2],[[65933,65934],2],[65935,3],[[65936,65947],2],[65948,2],[[65949,65951],3],[65952,2],[[65953,65999],3],[[66000,66044],2],[66045,2],[[66046,66175],3],[[66176,66204],2],[[66205,66207],3],[[66208,66256],2],[[66257,66271],3],[66272,2],[[66273,66299],2],[[66300,66303],3],[[66304,66334],2],[66335,2],[[66336,66339],2],[[66340,66348],3],[[66349,66351],2],[[66352,66368],2],[66369,2],[[66370,66377],2],[66378,2],[[66379,66383],3],[[66384,66426],2],[[66427,66431],3],[[66432,66461],2],[66462,3],[66463,2],[[66464,66499],2],[[66500,66503],3],[[66504,66511],2],[[66512,66517],2],[[66518,66559],3],[66560,1,"𐐨"],[66561,1,"𐐩"],[66562,1,"𐐪"],[66563,1,"𐐫"],[66564,1,"𐐬"],[66565,1,"𐐭"],[66566,1,"𐐮"],[66567,1,"𐐯"],[66568,1,"𐐰"],[66569,1,"𐐱"],[66570,1,"𐐲"],[66571,1,"𐐳"],[66572,1,"𐐴"],[66573,1,"𐐵"],[66574,1,"𐐶"],[66575,1,"𐐷"],[66576,1,"𐐸"],[66577,1,"𐐹"],[66578,1,"𐐺"],[66579,1,"𐐻"],[66580,1,"𐐼"],[66581,1,"𐐽"],[66582,1,"𐐾"],[66583,1,"𐐿"],[66584,1,"𐑀"],[66585,1,"𐑁"],[66586,1,"𐑂"],[66587,1,"𐑃"],[66588,1,"𐑄"],[66589,1,"𐑅"],[66590,1,"𐑆"],[66591,1,"𐑇"],[66592,1,"𐑈"],[66593,1,"𐑉"],[66594,1,"𐑊"],[66595,1,"𐑋"],[66596,1,"𐑌"],[66597,1,"𐑍"],[66598,1,"𐑎"],[66599,1,"𐑏"],[[66600,66637],2],[[66638,66717],2],[[66718,66719],3],[[66720,66729],2],[[66730,66735],3],[66736,1,"𐓘"],[66737,1,"𐓙"],[66738,1,"𐓚"],[66739,1,"𐓛"],[66740,1,"𐓜"],[66741,1,"𐓝"],[66742,1,"𐓞"],[66743,1,"𐓟"],[66744,1,"𐓠"],[66745,1,"𐓡"],[66746,1,"𐓢"],[66747,1,"𐓣"],[66748,1,"𐓤"],[66749,1,"𐓥"],[66750,1,"𐓦"],[66751,1,"𐓧"],[66752,1,"𐓨"],[66753,1,"𐓩"],[66754,1,"𐓪"],[66755,1,"𐓫"],[66756,1,"𐓬"],[66757,1,"𐓭"],[66758,1,"𐓮"],[66759,1,"𐓯"],[66760,1,"𐓰"],[66761,1,"𐓱"],[66762,1,"𐓲"],[66763,1,"𐓳"],[66764,1,"𐓴"],[66765,1,"𐓵"],[66766,1,"𐓶"],[66767,1,"𐓷"],[66768,1,"𐓸"],[66769,1,"𐓹"],[66770,1,"𐓺"],[66771,1,"𐓻"],[[66772,66775],3],[[66776,66811],2],[[66812,66815],3],[[66816,66855],2],[[66856,66863],3],[[66864,66915],2],[[66916,66926],3],[66927,2],[66928,1,"𐖗"],[66929,1,"𐖘"],[66930,1,"𐖙"],[66931,1,"𐖚"],[66932,1,"𐖛"],[66933,1,"𐖜"],[66934,1,"𐖝"],[66935,1,"𐖞"],[66936,1,"𐖟"],[66937,1,"𐖠"],[66938,1,"𐖡"],[66939,3],[66940,1,"𐖣"],[66941,1,"𐖤"],[66942,1,"𐖥"],[66943,1,"𐖦"],[66944,1,"𐖧"],[66945,1,"𐖨"],[66946,1,"𐖩"],[66947,1,"𐖪"],[66948,1,"𐖫"],[66949,1,"𐖬"],[66950,1,"𐖭"],[66951,1,"𐖮"],[66952,1,"𐖯"],[66953,1,"𐖰"],[66954,1,"𐖱"],[66955,3],[66956,1,"𐖳"],[66957,1,"𐖴"],[66958,1,"𐖵"],[66959,1,"𐖶"],[66960,1,"𐖷"],[66961,1,"𐖸"],[66962,1,"𐖹"],[66963,3],[66964,1,"𐖻"],[66965,1,"𐖼"],[66966,3],[[66967,66977],2],[66978,3],[[66979,66993],2],[66994,3],[[66995,67001],2],[67002,3],[[67003,67004],2],[[67005,67071],3],[[67072,67382],2],[[67383,67391],3],[[67392,67413],2],[[67414,67423],3],[[67424,67431],2],[[67432,67455],3],[67456,2],[67457,1,"ː"],[67458,1,"ˑ"],[67459,1,"æ"],[67460,1,"ʙ"],[67461,1,"ɓ"],[67462,3],[67463,1,"ʣ"],[67464,1,"ꭦ"],[67465,1,"ʥ"],[67466,1,"ʤ"],[67467,1,"ɖ"],[67468,1,"ɗ"],[67469,1,"ᶑ"],[67470,1,"ɘ"],[67471,1,"ɞ"],[67472,1,"ʩ"],[67473,1,"ɤ"],[67474,1,"ɢ"],[67475,1,"ɠ"],[67476,1,"ʛ"],[67477,1,"ħ"],[67478,1,"ʜ"],[67479,1,"ɧ"],[67480,1,"ʄ"],[67481,1,"ʪ"],[67482,1,"ʫ"],[67483,1,"ɬ"],[67484,1,"𝼄"],[67485,1,"ꞎ"],[67486,1,"ɮ"],[67487,1,"𝼅"],[67488,1,"ʎ"],[67489,1,"𝼆"],[67490,1,"ø"],[67491,1,"ɶ"],[67492,1,"ɷ"],[67493,1,"q"],[67494,1,"ɺ"],[67495,1,"𝼈"],[67496,1,"ɽ"],[67497,1,"ɾ"],[67498,1,"ʀ"],[67499,1,"ʨ"],[67500,1,"ʦ"],[67501,1,"ꭧ"],[67502,1,"ʧ"],[67503,1,"ʈ"],[67504,1,"ⱱ"],[67505,3],[67506,1,"ʏ"],[67507,1,"ʡ"],[67508,1,"ʢ"],[67509,1,"ʘ"],[67510,1,"ǀ"],[67511,1,"ǁ"],[67512,1,"ǂ"],[67513,1,"𝼊"],[67514,1,"𝼞"],[[67515,67583],3],[[67584,67589],2],[[67590,67591],3],[67592,2],[67593,3],[[67594,67637],2],[67638,3],[[67639,67640],2],[[67641,67643],3],[67644,2],[[67645,67646],3],[67647,2],[[67648,67669],2],[67670,3],[[67671,67679],2],[[67680,67702],2],[[67703,67711],2],[[67712,67742],2],[[67743,67750],3],[[67751,67759],2],[[67760,67807],3],[[67808,67826],2],[67827,3],[[67828,67829],2],[[67830,67834],3],[[67835,67839],2],[[67840,67861],2],[[67862,67865],2],[[67866,67867],2],[[67868,67870],3],[67871,2],[[67872,67897],2],[[67898,67902],3],[67903,2],[[67904,67967],3],[[67968,68023],2],[[68024,68027],3],[[68028,68029],2],[[68030,68031],2],[[68032,68047],2],[[68048,68049],3],[[68050,68095],2],[[68096,68099],2],[68100,3],[[68101,68102],2],[[68103,68107],3],[[68108,68115],2],[68116,3],[[68117,68119],2],[68120,3],[[68121,68147],2],[[68148,68149],2],[[68150,68151],3],[[68152,68154],2],[[68155,68158],3],[68159,2],[[68160,68167],2],[68168,2],[[68169,68175],3],[[68176,68184],2],[[68185,68191],3],[[68192,68220],2],[[68221,68223],2],[[68224,68252],2],[[68253,68255],2],[[68256,68287],3],[[68288,68295],2],[68296,2],[[68297,68326],2],[[68327,68330],3],[[68331,68342],2],[[68343,68351],3],[[68352,68405],2],[[68406,68408],3],[[68409,68415],2],[[68416,68437],2],[[68438,68439],3],[[68440,68447],2],[[68448,68466],2],[[68467,68471],3],[[68472,68479],2],[[68480,68497],2],[[68498,68504],3],[[68505,68508],2],[[68509,68520],3],[[68521,68527],2],[[68528,68607],3],[[68608,68680],2],[[68681,68735],3],[68736,1,"𐳀"],[68737,1,"𐳁"],[68738,1,"𐳂"],[68739,1,"𐳃"],[68740,1,"𐳄"],[68741,1,"𐳅"],[68742,1,"𐳆"],[68743,1,"𐳇"],[68744,1,"𐳈"],[68745,1,"𐳉"],[68746,1,"𐳊"],[68747,1,"𐳋"],[68748,1,"𐳌"],[68749,1,"𐳍"],[68750,1,"𐳎"],[68751,1,"𐳏"],[68752,1,"𐳐"],[68753,1,"𐳑"],[68754,1,"𐳒"],[68755,1,"𐳓"],[68756,1,"𐳔"],[68757,1,"𐳕"],[68758,1,"𐳖"],[68759,1,"𐳗"],[68760,1,"𐳘"],[68761,1,"𐳙"],[68762,1,"𐳚"],[68763,1,"𐳛"],[68764,1,"𐳜"],[68765,1,"𐳝"],[68766,1,"𐳞"],[68767,1,"𐳟"],[68768,1,"𐳠"],[68769,1,"𐳡"],[68770,1,"𐳢"],[68771,1,"𐳣"],[68772,1,"𐳤"],[68773,1,"𐳥"],[68774,1,"𐳦"],[68775,1,"𐳧"],[68776,1,"𐳨"],[68777,1,"𐳩"],[68778,1,"𐳪"],[68779,1,"𐳫"],[68780,1,"𐳬"],[68781,1,"𐳭"],[68782,1,"𐳮"],[68783,1,"𐳯"],[68784,1,"𐳰"],[68785,1,"𐳱"],[68786,1,"𐳲"],[[68787,68799],3],[[68800,68850],2],[[68851,68857],3],[[68858,68863],2],[[68864,68903],2],[[68904,68911],3],[[68912,68921],2],[[68922,69215],3],[[69216,69246],2],[69247,3],[[69248,69289],2],[69290,3],[[69291,69292],2],[69293,2],[[69294,69295],3],[[69296,69297],2],[[69298,69375],3],[[69376,69404],2],[[69405,69414],2],[69415,2],[[69416,69423],3],[[69424,69456],2],[[69457,69465],2],[[69466,69487],3],[[69488,69509],2],[[69510,69513],2],[[69514,69551],3],[[69552,69572],2],[[69573,69579],2],[[69580,69599],3],[[69600,69622],2],[[69623,69631],3],[[69632,69702],2],[[69703,69709],2],[[69710,69713],3],[[69714,69733],2],[[69734,69743],2],[[69744,69749],2],[[69750,69758],3],[69759,2],[[69760,69818],2],[[69819,69820],2],[69821,3],[[69822,69825],2],[69826,2],[[69827,69836],3],[69837,3],[[69838,69839],3],[[69840,69864],2],[[69865,69871],3],[[69872,69881],2],[[69882,69887],3],[[69888,69940],2],[69941,3],[[69942,69951],2],[[69952,69955],2],[[69956,69958],2],[69959,2],[[69960,69967],3],[[69968,70003],2],[[70004,70005],2],[70006,2],[[70007,70015],3],[[70016,70084],2],[[70085,70088],2],[[70089,70092],2],[70093,2],[[70094,70095],2],[[70096,70105],2],[70106,2],[70107,2],[70108,2],[[70109,70111],2],[70112,3],[[70113,70132],2],[[70133,70143],3],[[70144,70161],2],[70162,3],[[70163,70199],2],[[70200,70205],2],[70206,2],[[70207,70271],3],[[70272,70278],2],[70279,3],[70280,2],[70281,3],[[70282,70285],2],[70286,3],[[70287,70301],2],[70302,3],[[70303,70312],2],[70313,2],[[70314,70319],3],[[70320,70378],2],[[70379,70383],3],[[70384,70393],2],[[70394,70399],3],[70400,2],[[70401,70403],2],[70404,3],[[70405,70412],2],[[70413,70414],3],[[70415,70416],2],[[70417,70418],3],[[70419,70440],2],[70441,3],[[70442,70448],2],[70449,3],[[70450,70451],2],[70452,3],[[70453,70457],2],[70458,3],[70459,2],[[70460,70468],2],[[70469,70470],3],[[70471,70472],2],[[70473,70474],3],[[70475,70477],2],[[70478,70479],3],[70480,2],[[70481,70486],3],[70487,2],[[70488,70492],3],[[70493,70499],2],[[70500,70501],3],[[70502,70508],2],[[70509,70511],3],[[70512,70516],2],[[70517,70655],3],[[70656,70730],2],[[70731,70735],2],[[70736,70745],2],[70746,2],[70747,2],[70748,3],[70749,2],[70750,2],[70751,2],[[70752,70753],2],[[70754,70783],3],[[70784,70853],2],[70854,2],[70855,2],[[70856,70863],3],[[70864,70873],2],[[70874,71039],3],[[71040,71093],2],[[71094,71095],3],[[71096,71104],2],[[71105,71113],2],[[71114,71127],2],[[71128,71133],2],[[71134,71167],3],[[71168,71232],2],[[71233,71235],2],[71236,2],[[71237,71247],3],[[71248,71257],2],[[71258,71263],3],[[71264,71276],2],[[71277,71295],3],[[71296,71351],2],[71352,2],[71353,2],[[71354,71359],3],[[71360,71369],2],[[71370,71423],3],[[71424,71449],2],[71450,2],[[71451,71452],3],[[71453,71467],2],[[71468,71471],3],[[71472,71481],2],[[71482,71487],2],[[71488,71494],2],[[71495,71679],3],[[71680,71738],2],[71739,2],[[71740,71839],3],[71840,1,"𑣀"],[71841,1,"𑣁"],[71842,1,"𑣂"],[71843,1,"𑣃"],[71844,1,"𑣄"],[71845,1,"𑣅"],[71846,1,"𑣆"],[71847,1,"𑣇"],[71848,1,"𑣈"],[71849,1,"𑣉"],[71850,1,"𑣊"],[71851,1,"𑣋"],[71852,1,"𑣌"],[71853,1,"𑣍"],[71854,1,"𑣎"],[71855,1,"𑣏"],[71856,1,"𑣐"],[71857,1,"𑣑"],[71858,1,"𑣒"],[71859,1,"𑣓"],[71860,1,"𑣔"],[71861,1,"𑣕"],[71862,1,"𑣖"],[71863,1,"𑣗"],[71864,1,"𑣘"],[71865,1,"𑣙"],[71866,1,"𑣚"],[71867,1,"𑣛"],[71868,1,"𑣜"],[71869,1,"𑣝"],[71870,1,"𑣞"],[71871,1,"𑣟"],[[71872,71913],2],[[71914,71922],2],[[71923,71934],3],[71935,2],[[71936,71942],2],[[71943,71944],3],[71945,2],[[71946,71947],3],[[71948,71955],2],[71956,3],[[71957,71958],2],[71959,3],[[71960,71989],2],[71990,3],[[71991,71992],2],[[71993,71994],3],[[71995,72003],2],[[72004,72006],2],[[72007,72015],3],[[72016,72025],2],[[72026,72095],3],[[72096,72103],2],[[72104,72105],3],[[72106,72151],2],[[72152,72153],3],[[72154,72161],2],[72162,2],[[72163,72164],2],[[72165,72191],3],[[72192,72254],2],[[72255,72262],2],[72263,2],[[72264,72271],3],[[72272,72323],2],[[72324,72325],2],[[72326,72345],2],[[72346,72348],2],[72349,2],[[72350,72354],2],[[72355,72367],3],[[72368,72383],2],[[72384,72440],2],[[72441,72703],3],[[72704,72712],2],[72713,3],[[72714,72758],2],[72759,3],[[72760,72768],2],[[72769,72773],2],[[72774,72783],3],[[72784,72793],2],[[72794,72812],2],[[72813,72815],3],[[72816,72817],2],[[72818,72847],2],[[72848,72849],3],[[72850,72871],2],[72872,3],[[72873,72886],2],[[72887,72959],3],[[72960,72966],2],[72967,3],[[72968,72969],2],[72970,3],[[72971,73014],2],[[73015,73017],3],[73018,2],[73019,3],[[73020,73021],2],[73022,3],[[73023,73031],2],[[73032,73039],3],[[73040,73049],2],[[73050,73055],3],[[73056,73061],2],[73062,3],[[73063,73064],2],[73065,3],[[73066,73102],2],[73103,3],[[73104,73105],2],[73106,3],[[73107,73112],2],[[73113,73119],3],[[73120,73129],2],[[73130,73439],3],[[73440,73462],2],[[73463,73464],2],[[73465,73647],3],[73648,2],[[73649,73663],3],[[73664,73713],2],[[73714,73726],3],[73727,2],[[73728,74606],2],[[74607,74648],2],[74649,2],[[74650,74751],3],[[74752,74850],2],[[74851,74862],2],[74863,3],[[74864,74867],2],[74868,2],[[74869,74879],3],[[74880,75075],2],[[75076,77711],3],[[77712,77808],2],[[77809,77810],2],[[77811,77823],3],[[77824,78894],2],[78895,3],[[78896,78904],3],[[78905,82943],3],[[82944,83526],2],[[83527,92159],3],[[92160,92728],2],[[92729,92735],3],[[92736,92766],2],[92767,3],[[92768,92777],2],[[92778,92781],3],[[92782,92783],2],[[92784,92862],2],[92863,3],[[92864,92873],2],[[92874,92879],3],[[92880,92909],2],[[92910,92911],3],[[92912,92916],2],[92917,2],[[92918,92927],3],[[92928,92982],2],[[92983,92991],2],[[92992,92995],2],[[92996,92997],2],[[92998,93007],3],[[93008,93017],2],[93018,3],[[93019,93025],2],[93026,3],[[93027,93047],2],[[93048,93052],3],[[93053,93071],2],[[93072,93759],3],[93760,1,"𖹠"],[93761,1,"𖹡"],[93762,1,"𖹢"],[93763,1,"𖹣"],[93764,1,"𖹤"],[93765,1,"𖹥"],[93766,1,"𖹦"],[93767,1,"𖹧"],[93768,1,"𖹨"],[93769,1,"𖹩"],[93770,1,"𖹪"],[93771,1,"𖹫"],[93772,1,"𖹬"],[93773,1,"𖹭"],[93774,1,"𖹮"],[93775,1,"𖹯"],[93776,1,"𖹰"],[93777,1,"𖹱"],[93778,1,"𖹲"],[93779,1,"𖹳"],[93780,1,"𖹴"],[93781,1,"𖹵"],[93782,1,"𖹶"],[93783,1,"𖹷"],[93784,1,"𖹸"],[93785,1,"𖹹"],[93786,1,"𖹺"],[93787,1,"𖹻"],[93788,1,"𖹼"],[93789,1,"𖹽"],[93790,1,"𖹾"],[93791,1,"𖹿"],[[93792,93823],2],[[93824,93850],2],[[93851,93951],3],[[93952,94020],2],[[94021,94026],2],[[94027,94030],3],[94031,2],[[94032,94078],2],[[94079,94087],2],[[94088,94094],3],[[94095,94111],2],[[94112,94175],3],[94176,2],[94177,2],[94178,2],[94179,2],[94180,2],[[94181,94191],3],[[94192,94193],2],[[94194,94207],3],[[94208,100332],2],[[100333,100337],2],[[100338,100343],2],[[100344,100351],3],[[100352,101106],2],[[101107,101589],2],[[101590,101631],3],[[101632,101640],2],[[101641,110575],3],[[110576,110579],2],[110580,3],[[110581,110587],2],[110588,3],[[110589,110590],2],[110591,3],[[110592,110593],2],[[110594,110878],2],[[110879,110882],2],[[110883,110927],3],[[110928,110930],2],[[110931,110947],3],[[110948,110951],2],[[110952,110959],3],[[110960,111355],2],[[111356,113663],3],[[113664,113770],2],[[113771,113775],3],[[113776,113788],2],[[113789,113791],3],[[113792,113800],2],[[113801,113807],3],[[113808,113817],2],[[113818,113819],3],[113820,2],[[113821,113822],2],[113823,2],[[113824,113827],7],[[113828,118527],3],[[118528,118573],2],[[118574,118575],3],[[118576,118598],2],[[118599,118607],3],[[118608,118723],2],[[118724,118783],3],[[118784,119029],2],[[119030,119039],3],[[119040,119078],2],[[119079,119080],3],[119081,2],[[119082,119133],2],[119134,1,"𝅗𝅥"],[119135,1,"𝅘𝅥"],[119136,1,"𝅘𝅥𝅮"],[119137,1,"𝅘𝅥𝅯"],[119138,1,"𝅘𝅥𝅰"],[119139,1,"𝅘𝅥𝅱"],[119140,1,"𝅘𝅥𝅲"],[[119141,119154],2],[[119155,119162],3],[[119163,119226],2],[119227,1,"𝆹𝅥"],[119228,1,"𝆺𝅥"],[119229,1,"𝆹𝅥𝅮"],[119230,1,"𝆺𝅥𝅮"],[119231,1,"𝆹𝅥𝅯"],[119232,1,"𝆺𝅥𝅯"],[[119233,119261],2],[[119262,119272],2],[[119273,119274],2],[[119275,119295],3],[[119296,119365],2],[[119366,119519],3],[[119520,119539],2],[[119540,119551],3],[[119552,119638],2],[[119639,119647],3],[[119648,119665],2],[[119666,119672],2],[[119673,119807],3],[119808,1,"a"],[119809,1,"b"],[119810,1,"c"],[119811,1,"d"],[119812,1,"e"],[119813,1,"f"],[119814,1,"g"],[119815,1,"h"],[119816,1,"i"],[119817,1,"j"],[119818,1,"k"],[119819,1,"l"],[119820,1,"m"],[119821,1,"n"],[119822,1,"o"],[119823,1,"p"],[119824,1,"q"],[119825,1,"r"],[119826,1,"s"],[119827,1,"t"],[119828,1,"u"],[119829,1,"v"],[119830,1,"w"],[119831,1,"x"],[119832,1,"y"],[119833,1,"z"],[119834,1,"a"],[119835,1,"b"],[119836,1,"c"],[119837,1,"d"],[119838,1,"e"],[119839,1,"f"],[119840,1,"g"],[119841,1,"h"],[119842,1,"i"],[119843,1,"j"],[119844,1,"k"],[119845,1,"l"],[119846,1,"m"],[119847,1,"n"],[119848,1,"o"],[119849,1,"p"],[119850,1,"q"],[119851,1,"r"],[119852,1,"s"],[119853,1,"t"],[119854,1,"u"],[119855,1,"v"],[119856,1,"w"],[119857,1,"x"],[119858,1,"y"],[119859,1,"z"],[119860,1,"a"],[119861,1,"b"],[119862,1,"c"],[119863,1,"d"],[119864,1,"e"],[119865,1,"f"],[119866,1,"g"],[119867,1,"h"],[119868,1,"i"],[119869,1,"j"],[119870,1,"k"],[119871,1,"l"],[119872,1,"m"],[119873,1,"n"],[119874,1,"o"],[119875,1,"p"],[119876,1,"q"],[119877,1,"r"],[119878,1,"s"],[119879,1,"t"],[119880,1,"u"],[119881,1,"v"],[119882,1,"w"],[119883,1,"x"],[119884,1,"y"],[119885,1,"z"],[119886,1,"a"],[119887,1,"b"],[119888,1,"c"],[119889,1,"d"],[119890,1,"e"],[119891,1,"f"],[119892,1,"g"],[119893,3],[119894,1,"i"],[119895,1,"j"],[119896,1,"k"],[119897,1,"l"],[119898,1,"m"],[119899,1,"n"],[119900,1,"o"],[119901,1,"p"],[119902,1,"q"],[119903,1,"r"],[119904,1,"s"],[119905,1,"t"],[119906,1,"u"],[119907,1,"v"],[119908,1,"w"],[119909,1,"x"],[119910,1,"y"],[119911,1,"z"],[119912,1,"a"],[119913,1,"b"],[119914,1,"c"],[119915,1,"d"],[119916,1,"e"],[119917,1,"f"],[119918,1,"g"],[119919,1,"h"],[119920,1,"i"],[119921,1,"j"],[119922,1,"k"],[119923,1,"l"],[119924,1,"m"],[119925,1,"n"],[119926,1,"o"],[119927,1,"p"],[119928,1,"q"],[119929,1,"r"],[119930,1,"s"],[119931,1,"t"],[119932,1,"u"],[119933,1,"v"],[119934,1,"w"],[119935,1,"x"],[119936,1,"y"],[119937,1,"z"],[119938,1,"a"],[119939,1,"b"],[119940,1,"c"],[119941,1,"d"],[119942,1,"e"],[119943,1,"f"],[119944,1,"g"],[119945,1,"h"],[119946,1,"i"],[119947,1,"j"],[119948,1,"k"],[119949,1,"l"],[119950,1,"m"],[119951,1,"n"],[119952,1,"o"],[119953,1,"p"],[119954,1,"q"],[119955,1,"r"],[119956,1,"s"],[119957,1,"t"],[119958,1,"u"],[119959,1,"v"],[119960,1,"w"],[119961,1,"x"],[119962,1,"y"],[119963,1,"z"],[119964,1,"a"],[119965,3],[119966,1,"c"],[119967,1,"d"],[[119968,119969],3],[119970,1,"g"],[[119971,119972],3],[119973,1,"j"],[119974,1,"k"],[[119975,119976],3],[119977,1,"n"],[119978,1,"o"],[119979,1,"p"],[119980,1,"q"],[119981,3],[119982,1,"s"],[119983,1,"t"],[119984,1,"u"],[119985,1,"v"],[119986,1,"w"],[119987,1,"x"],[119988,1,"y"],[119989,1,"z"],[119990,1,"a"],[119991,1,"b"],[119992,1,"c"],[119993,1,"d"],[119994,3],[119995,1,"f"],[119996,3],[119997,1,"h"],[119998,1,"i"],[119999,1,"j"],[120000,1,"k"],[120001,1,"l"],[120002,1,"m"],[120003,1,"n"],[120004,3],[120005,1,"p"],[120006,1,"q"],[120007,1,"r"],[120008,1,"s"],[120009,1,"t"],[120010,1,"u"],[120011,1,"v"],[120012,1,"w"],[120013,1,"x"],[120014,1,"y"],[120015,1,"z"],[120016,1,"a"],[120017,1,"b"],[120018,1,"c"],[120019,1,"d"],[120020,1,"e"],[120021,1,"f"],[120022,1,"g"],[120023,1,"h"],[120024,1,"i"],[120025,1,"j"],[120026,1,"k"],[120027,1,"l"],[120028,1,"m"],[120029,1,"n"],[120030,1,"o"],[120031,1,"p"],[120032,1,"q"],[120033,1,"r"],[120034,1,"s"],[120035,1,"t"],[120036,1,"u"],[120037,1,"v"],[120038,1,"w"],[120039,1,"x"],[120040,1,"y"],[120041,1,"z"],[120042,1,"a"],[120043,1,"b"],[120044,1,"c"],[120045,1,"d"],[120046,1,"e"],[120047,1,"f"],[120048,1,"g"],[120049,1,"h"],[120050,1,"i"],[120051,1,"j"],[120052,1,"k"],[120053,1,"l"],[120054,1,"m"],[120055,1,"n"],[120056,1,"o"],[120057,1,"p"],[120058,1,"q"],[120059,1,"r"],[120060,1,"s"],[120061,1,"t"],[120062,1,"u"],[120063,1,"v"],[120064,1,"w"],[120065,1,"x"],[120066,1,"y"],[120067,1,"z"],[120068,1,"a"],[120069,1,"b"],[120070,3],[120071,1,"d"],[120072,1,"e"],[120073,1,"f"],[120074,1,"g"],[[120075,120076],3],[120077,1,"j"],[120078,1,"k"],[120079,1,"l"],[120080,1,"m"],[120081,1,"n"],[120082,1,"o"],[120083,1,"p"],[120084,1,"q"],[120085,3],[120086,1,"s"],[120087,1,"t"],[120088,1,"u"],[120089,1,"v"],[120090,1,"w"],[120091,1,"x"],[120092,1,"y"],[120093,3],[120094,1,"a"],[120095,1,"b"],[120096,1,"c"],[120097,1,"d"],[120098,1,"e"],[120099,1,"f"],[120100,1,"g"],[120101,1,"h"],[120102,1,"i"],[120103,1,"j"],[120104,1,"k"],[120105,1,"l"],[120106,1,"m"],[120107,1,"n"],[120108,1,"o"],[120109,1,"p"],[120110,1,"q"],[120111,1,"r"],[120112,1,"s"],[120113,1,"t"],[120114,1,"u"],[120115,1,"v"],[120116,1,"w"],[120117,1,"x"],[120118,1,"y"],[120119,1,"z"],[120120,1,"a"],[120121,1,"b"],[120122,3],[120123,1,"d"],[120124,1,"e"],[120125,1,"f"],[120126,1,"g"],[120127,3],[120128,1,"i"],[120129,1,"j"],[120130,1,"k"],[120131,1,"l"],[120132,1,"m"],[120133,3],[120134,1,"o"],[[120135,120137],3],[120138,1,"s"],[120139,1,"t"],[120140,1,"u"],[120141,1,"v"],[120142,1,"w"],[120143,1,"x"],[120144,1,"y"],[120145,3],[120146,1,"a"],[120147,1,"b"],[120148,1,"c"],[120149,1,"d"],[120150,1,"e"],[120151,1,"f"],[120152,1,"g"],[120153,1,"h"],[120154,1,"i"],[120155,1,"j"],[120156,1,"k"],[120157,1,"l"],[120158,1,"m"],[120159,1,"n"],[120160,1,"o"],[120161,1,"p"],[120162,1,"q"],[120163,1,"r"],[120164,1,"s"],[120165,1,"t"],[120166,1,"u"],[120167,1,"v"],[120168,1,"w"],[120169,1,"x"],[120170,1,"y"],[120171,1,"z"],[120172,1,"a"],[120173,1,"b"],[120174,1,"c"],[120175,1,"d"],[120176,1,"e"],[120177,1,"f"],[120178,1,"g"],[120179,1,"h"],[120180,1,"i"],[120181,1,"j"],[120182,1,"k"],[120183,1,"l"],[120184,1,"m"],[120185,1,"n"],[120186,1,"o"],[120187,1,"p"],[120188,1,"q"],[120189,1,"r"],[120190,1,"s"],[120191,1,"t"],[120192,1,"u"],[120193,1,"v"],[120194,1,"w"],[120195,1,"x"],[120196,1,"y"],[120197,1,"z"],[120198,1,"a"],[120199,1,"b"],[120200,1,"c"],[120201,1,"d"],[120202,1,"e"],[120203,1,"f"],[120204,1,"g"],[120205,1,"h"],[120206,1,"i"],[120207,1,"j"],[120208,1,"k"],[120209,1,"l"],[120210,1,"m"],[120211,1,"n"],[120212,1,"o"],[120213,1,"p"],[120214,1,"q"],[120215,1,"r"],[120216,1,"s"],[120217,1,"t"],[120218,1,"u"],[120219,1,"v"],[120220,1,"w"],[120221,1,"x"],[120222,1,"y"],[120223,1,"z"],[120224,1,"a"],[120225,1,"b"],[120226,1,"c"],[120227,1,"d"],[120228,1,"e"],[120229,1,"f"],[120230,1,"g"],[120231,1,"h"],[120232,1,"i"],[120233,1,"j"],[120234,1,"k"],[120235,1,"l"],[120236,1,"m"],[120237,1,"n"],[120238,1,"o"],[120239,1,"p"],[120240,1,"q"],[120241,1,"r"],[120242,1,"s"],[120243,1,"t"],[120244,1,"u"],[120245,1,"v"],[120246,1,"w"],[120247,1,"x"],[120248,1,"y"],[120249,1,"z"],[120250,1,"a"],[120251,1,"b"],[120252,1,"c"],[120253,1,"d"],[120254,1,"e"],[120255,1,"f"],[120256,1,"g"],[120257,1,"h"],[120258,1,"i"],[120259,1,"j"],[120260,1,"k"],[120261,1,"l"],[120262,1,"m"],[120263,1,"n"],[120264,1,"o"],[120265,1,"p"],[120266,1,"q"],[120267,1,"r"],[120268,1,"s"],[120269,1,"t"],[120270,1,"u"],[120271,1,"v"],[120272,1,"w"],[120273,1,"x"],[120274,1,"y"],[120275,1,"z"],[120276,1,"a"],[120277,1,"b"],[120278,1,"c"],[120279,1,"d"],[120280,1,"e"],[120281,1,"f"],[120282,1,"g"],[120283,1,"h"],[120284,1,"i"],[120285,1,"j"],[120286,1,"k"],[120287,1,"l"],[120288,1,"m"],[120289,1,"n"],[120290,1,"o"],[120291,1,"p"],[120292,1,"q"],[120293,1,"r"],[120294,1,"s"],[120295,1,"t"],[120296,1,"u"],[120297,1,"v"],[120298,1,"w"],[120299,1,"x"],[120300,1,"y"],[120301,1,"z"],[120302,1,"a"],[120303,1,"b"],[120304,1,"c"],[120305,1,"d"],[120306,1,"e"],[120307,1,"f"],[120308,1,"g"],[120309,1,"h"],[120310,1,"i"],[120311,1,"j"],[120312,1,"k"],[120313,1,"l"],[120314,1,"m"],[120315,1,"n"],[120316,1,"o"],[120317,1,"p"],[120318,1,"q"],[120319,1,"r"],[120320,1,"s"],[120321,1,"t"],[120322,1,"u"],[120323,1,"v"],[120324,1,"w"],[120325,1,"x"],[120326,1,"y"],[120327,1,"z"],[120328,1,"a"],[120329,1,"b"],[120330,1,"c"],[120331,1,"d"],[120332,1,"e"],[120333,1,"f"],[120334,1,"g"],[120335,1,"h"],[120336,1,"i"],[120337,1,"j"],[120338,1,"k"],[120339,1,"l"],[120340,1,"m"],[120341,1,"n"],[120342,1,"o"],[120343,1,"p"],[120344,1,"q"],[120345,1,"r"],[120346,1,"s"],[120347,1,"t"],[120348,1,"u"],[120349,1,"v"],[120350,1,"w"],[120351,1,"x"],[120352,1,"y"],[120353,1,"z"],[120354,1,"a"],[120355,1,"b"],[120356,1,"c"],[120357,1,"d"],[120358,1,"e"],[120359,1,"f"],[120360,1,"g"],[120361,1,"h"],[120362,1,"i"],[120363,1,"j"],[120364,1,"k"],[120365,1,"l"],[120366,1,"m"],[120367,1,"n"],[120368,1,"o"],[120369,1,"p"],[120370,1,"q"],[120371,1,"r"],[120372,1,"s"],[120373,1,"t"],[120374,1,"u"],[120375,1,"v"],[120376,1,"w"],[120377,1,"x"],[120378,1,"y"],[120379,1,"z"],[120380,1,"a"],[120381,1,"b"],[120382,1,"c"],[120383,1,"d"],[120384,1,"e"],[120385,1,"f"],[120386,1,"g"],[120387,1,"h"],[120388,1,"i"],[120389,1,"j"],[120390,1,"k"],[120391,1,"l"],[120392,1,"m"],[120393,1,"n"],[120394,1,"o"],[120395,1,"p"],[120396,1,"q"],[120397,1,"r"],[120398,1,"s"],[120399,1,"t"],[120400,1,"u"],[120401,1,"v"],[120402,1,"w"],[120403,1,"x"],[120404,1,"y"],[120405,1,"z"],[120406,1,"a"],[120407,1,"b"],[120408,1,"c"],[120409,1,"d"],[120410,1,"e"],[120411,1,"f"],[120412,1,"g"],[120413,1,"h"],[120414,1,"i"],[120415,1,"j"],[120416,1,"k"],[120417,1,"l"],[120418,1,"m"],[120419,1,"n"],[120420,1,"o"],[120421,1,"p"],[120422,1,"q"],[120423,1,"r"],[120424,1,"s"],[120425,1,"t"],[120426,1,"u"],[120427,1,"v"],[120428,1,"w"],[120429,1,"x"],[120430,1,"y"],[120431,1,"z"],[120432,1,"a"],[120433,1,"b"],[120434,1,"c"],[120435,1,"d"],[120436,1,"e"],[120437,1,"f"],[120438,1,"g"],[120439,1,"h"],[120440,1,"i"],[120441,1,"j"],[120442,1,"k"],[120443,1,"l"],[120444,1,"m"],[120445,1,"n"],[120446,1,"o"],[120447,1,"p"],[120448,1,"q"],[120449,1,"r"],[120450,1,"s"],[120451,1,"t"],[120452,1,"u"],[120453,1,"v"],[120454,1,"w"],[120455,1,"x"],[120456,1,"y"],[120457,1,"z"],[120458,1,"a"],[120459,1,"b"],[120460,1,"c"],[120461,1,"d"],[120462,1,"e"],[120463,1,"f"],[120464,1,"g"],[120465,1,"h"],[120466,1,"i"],[120467,1,"j"],[120468,1,"k"],[120469,1,"l"],[120470,1,"m"],[120471,1,"n"],[120472,1,"o"],[120473,1,"p"],[120474,1,"q"],[120475,1,"r"],[120476,1,"s"],[120477,1,"t"],[120478,1,"u"],[120479,1,"v"],[120480,1,"w"],[120481,1,"x"],[120482,1,"y"],[120483,1,"z"],[120484,1,"ı"],[120485,1,"ȷ"],[[120486,120487],3],[120488,1,"α"],[120489,1,"β"],[120490,1,"γ"],[120491,1,"δ"],[120492,1,"ε"],[120493,1,"ζ"],[120494,1,"η"],[120495,1,"θ"],[120496,1,"ι"],[120497,1,"κ"],[120498,1,"λ"],[120499,1,"μ"],[120500,1,"ν"],[120501,1,"ξ"],[120502,1,"ο"],[120503,1,"π"],[120504,1,"ρ"],[120505,1,"θ"],[120506,1,"σ"],[120507,1,"τ"],[120508,1,"υ"],[120509,1,"φ"],[120510,1,"χ"],[120511,1,"ψ"],[120512,1,"ω"],[120513,1,"∇"],[120514,1,"α"],[120515,1,"β"],[120516,1,"γ"],[120517,1,"δ"],[120518,1,"ε"],[120519,1,"ζ"],[120520,1,"η"],[120521,1,"θ"],[120522,1,"ι"],[120523,1,"κ"],[120524,1,"λ"],[120525,1,"μ"],[120526,1,"ν"],[120527,1,"ξ"],[120528,1,"ο"],[120529,1,"π"],[120530,1,"ρ"],[[120531,120532],1,"σ"],[120533,1,"τ"],[120534,1,"υ"],[120535,1,"φ"],[120536,1,"χ"],[120537,1,"ψ"],[120538,1,"ω"],[120539,1,"∂"],[120540,1,"ε"],[120541,1,"θ"],[120542,1,"κ"],[120543,1,"φ"],[120544,1,"ρ"],[120545,1,"π"],[120546,1,"α"],[120547,1,"β"],[120548,1,"γ"],[120549,1,"δ"],[120550,1,"ε"],[120551,1,"ζ"],[120552,1,"η"],[120553,1,"θ"],[120554,1,"ι"],[120555,1,"κ"],[120556,1,"λ"],[120557,1,"μ"],[120558,1,"ν"],[120559,1,"ξ"],[120560,1,"ο"],[120561,1,"π"],[120562,1,"ρ"],[120563,1,"θ"],[120564,1,"σ"],[120565,1,"τ"],[120566,1,"υ"],[120567,1,"φ"],[120568,1,"χ"],[120569,1,"ψ"],[120570,1,"ω"],[120571,1,"∇"],[120572,1,"α"],[120573,1,"β"],[120574,1,"γ"],[120575,1,"δ"],[120576,1,"ε"],[120577,1,"ζ"],[120578,1,"η"],[120579,1,"θ"],[120580,1,"ι"],[120581,1,"κ"],[120582,1,"λ"],[120583,1,"μ"],[120584,1,"ν"],[120585,1,"ξ"],[120586,1,"ο"],[120587,1,"π"],[120588,1,"ρ"],[[120589,120590],1,"σ"],[120591,1,"τ"],[120592,1,"υ"],[120593,1,"φ"],[120594,1,"χ"],[120595,1,"ψ"],[120596,1,"ω"],[120597,1,"∂"],[120598,1,"ε"],[120599,1,"θ"],[120600,1,"κ"],[120601,1,"φ"],[120602,1,"ρ"],[120603,1,"π"],[120604,1,"α"],[120605,1,"β"],[120606,1,"γ"],[120607,1,"δ"],[120608,1,"ε"],[120609,1,"ζ"],[120610,1,"η"],[120611,1,"θ"],[120612,1,"ι"],[120613,1,"κ"],[120614,1,"λ"],[120615,1,"μ"],[120616,1,"ν"],[120617,1,"ξ"],[120618,1,"ο"],[120619,1,"π"],[120620,1,"ρ"],[120621,1,"θ"],[120622,1,"σ"],[120623,1,"τ"],[120624,1,"υ"],[120625,1,"φ"],[120626,1,"χ"],[120627,1,"ψ"],[120628,1,"ω"],[120629,1,"∇"],[120630,1,"α"],[120631,1,"β"],[120632,1,"γ"],[120633,1,"δ"],[120634,1,"ε"],[120635,1,"ζ"],[120636,1,"η"],[120637,1,"θ"],[120638,1,"ι"],[120639,1,"κ"],[120640,1,"λ"],[120641,1,"μ"],[120642,1,"ν"],[120643,1,"ξ"],[120644,1,"ο"],[120645,1,"π"],[120646,1,"ρ"],[[120647,120648],1,"σ"],[120649,1,"τ"],[120650,1,"υ"],[120651,1,"φ"],[120652,1,"χ"],[120653,1,"ψ"],[120654,1,"ω"],[120655,1,"∂"],[120656,1,"ε"],[120657,1,"θ"],[120658,1,"κ"],[120659,1,"φ"],[120660,1,"ρ"],[120661,1,"π"],[120662,1,"α"],[120663,1,"β"],[120664,1,"γ"],[120665,1,"δ"],[120666,1,"ε"],[120667,1,"ζ"],[120668,1,"η"],[120669,1,"θ"],[120670,1,"ι"],[120671,1,"κ"],[120672,1,"λ"],[120673,1,"μ"],[120674,1,"ν"],[120675,1,"ξ"],[120676,1,"ο"],[120677,1,"π"],[120678,1,"ρ"],[120679,1,"θ"],[120680,1,"σ"],[120681,1,"τ"],[120682,1,"υ"],[120683,1,"φ"],[120684,1,"χ"],[120685,1,"ψ"],[120686,1,"ω"],[120687,1,"∇"],[120688,1,"α"],[120689,1,"β"],[120690,1,"γ"],[120691,1,"δ"],[120692,1,"ε"],[120693,1,"ζ"],[120694,1,"η"],[120695,1,"θ"],[120696,1,"ι"],[120697,1,"κ"],[120698,1,"λ"],[120699,1,"μ"],[120700,1,"ν"],[120701,1,"ξ"],[120702,1,"ο"],[120703,1,"π"],[120704,1,"ρ"],[[120705,120706],1,"σ"],[120707,1,"τ"],[120708,1,"υ"],[120709,1,"φ"],[120710,1,"χ"],[120711,1,"ψ"],[120712,1,"ω"],[120713,1,"∂"],[120714,1,"ε"],[120715,1,"θ"],[120716,1,"κ"],[120717,1,"φ"],[120718,1,"ρ"],[120719,1,"π"],[120720,1,"α"],[120721,1,"β"],[120722,1,"γ"],[120723,1,"δ"],[120724,1,"ε"],[120725,1,"ζ"],[120726,1,"η"],[120727,1,"θ"],[120728,1,"ι"],[120729,1,"κ"],[120730,1,"λ"],[120731,1,"μ"],[120732,1,"ν"],[120733,1,"ξ"],[120734,1,"ο"],[120735,1,"π"],[120736,1,"ρ"],[120737,1,"θ"],[120738,1,"σ"],[120739,1,"τ"],[120740,1,"υ"],[120741,1,"φ"],[120742,1,"χ"],[120743,1,"ψ"],[120744,1,"ω"],[120745,1,"∇"],[120746,1,"α"],[120747,1,"β"],[120748,1,"γ"],[120749,1,"δ"],[120750,1,"ε"],[120751,1,"ζ"],[120752,1,"η"],[120753,1,"θ"],[120754,1,"ι"],[120755,1,"κ"],[120756,1,"λ"],[120757,1,"μ"],[120758,1,"ν"],[120759,1,"ξ"],[120760,1,"ο"],[120761,1,"π"],[120762,1,"ρ"],[[120763,120764],1,"σ"],[120765,1,"τ"],[120766,1,"υ"],[120767,1,"φ"],[120768,1,"χ"],[120769,1,"ψ"],[120770,1,"ω"],[120771,1,"∂"],[120772,1,"ε"],[120773,1,"θ"],[120774,1,"κ"],[120775,1,"φ"],[120776,1,"ρ"],[120777,1,"π"],[[120778,120779],1,"ϝ"],[[120780,120781],3],[120782,1,"0"],[120783,1,"1"],[120784,1,"2"],[120785,1,"3"],[120786,1,"4"],[120787,1,"5"],[120788,1,"6"],[120789,1,"7"],[120790,1,"8"],[120791,1,"9"],[120792,1,"0"],[120793,1,"1"],[120794,1,"2"],[120795,1,"3"],[120796,1,"4"],[120797,1,"5"],[120798,1,"6"],[120799,1,"7"],[120800,1,"8"],[120801,1,"9"],[120802,1,"0"],[120803,1,"1"],[120804,1,"2"],[120805,1,"3"],[120806,1,"4"],[120807,1,"5"],[120808,1,"6"],[120809,1,"7"],[120810,1,"8"],[120811,1,"9"],[120812,1,"0"],[120813,1,"1"],[120814,1,"2"],[120815,1,"3"],[120816,1,"4"],[120817,1,"5"],[120818,1,"6"],[120819,1,"7"],[120820,1,"8"],[120821,1,"9"],[120822,1,"0"],[120823,1,"1"],[120824,1,"2"],[120825,1,"3"],[120826,1,"4"],[120827,1,"5"],[120828,1,"6"],[120829,1,"7"],[120830,1,"8"],[120831,1,"9"],[[120832,121343],2],[[121344,121398],2],[[121399,121402],2],[[121403,121452],2],[[121453,121460],2],[121461,2],[[121462,121475],2],[121476,2],[[121477,121483],2],[[121484,121498],3],[[121499,121503],2],[121504,3],[[121505,121519],2],[[121520,122623],3],[[122624,122654],2],[[122655,122879],3],[[122880,122886],2],[122887,3],[[122888,122904],2],[[122905,122906],3],[[122907,122913],2],[122914,3],[[122915,122916],2],[122917,3],[[122918,122922],2],[[122923,123135],3],[[123136,123180],2],[[123181,123183],3],[[123184,123197],2],[[123198,123199],3],[[123200,123209],2],[[123210,123213],3],[123214,2],[123215,2],[[123216,123535],3],[[123536,123566],2],[[123567,123583],3],[[123584,123641],2],[[123642,123646],3],[123647,2],[[123648,124895],3],[[124896,124902],2],[124903,3],[[124904,124907],2],[124908,3],[[124909,124910],2],[124911,3],[[124912,124926],2],[124927,3],[[124928,125124],2],[[125125,125126],3],[[125127,125135],2],[[125136,125142],2],[[125143,125183],3],[125184,1,"𞤢"],[125185,1,"𞤣"],[125186,1,"𞤤"],[125187,1,"𞤥"],[125188,1,"𞤦"],[125189,1,"𞤧"],[125190,1,"𞤨"],[125191,1,"𞤩"],[125192,1,"𞤪"],[125193,1,"𞤫"],[125194,1,"𞤬"],[125195,1,"𞤭"],[125196,1,"𞤮"],[125197,1,"𞤯"],[125198,1,"𞤰"],[125199,1,"𞤱"],[125200,1,"𞤲"],[125201,1,"𞤳"],[125202,1,"𞤴"],[125203,1,"𞤵"],[125204,1,"𞤶"],[125205,1,"𞤷"],[125206,1,"𞤸"],[125207,1,"𞤹"],[125208,1,"𞤺"],[125209,1,"𞤻"],[125210,1,"𞤼"],[125211,1,"𞤽"],[125212,1,"𞤾"],[125213,1,"𞤿"],[125214,1,"𞥀"],[125215,1,"𞥁"],[125216,1,"𞥂"],[125217,1,"𞥃"],[[125218,125258],2],[125259,2],[[125260,125263],3],[[125264,125273],2],[[125274,125277],3],[[125278,125279],2],[[125280,126064],3],[[126065,126132],2],[[126133,126208],3],[[126209,126269],2],[[126270,126463],3],[126464,1,"ا"],[126465,1,"ب"],[126466,1,"ج"],[126467,1,"د"],[126468,3],[126469,1,"و"],[126470,1,"ز"],[126471,1,"ح"],[126472,1,"ط"],[126473,1,"ي"],[126474,1,"ك"],[126475,1,"ل"],[126476,1,"م"],[126477,1,"ن"],[126478,1,"س"],[126479,1,"ع"],[126480,1,"ف"],[126481,1,"ص"],[126482,1,"ق"],[126483,1,"ر"],[126484,1,"ش"],[126485,1,"ت"],[126486,1,"ث"],[126487,1,"خ"],[126488,1,"ذ"],[126489,1,"ض"],[126490,1,"ظ"],[126491,1,"غ"],[126492,1,"ٮ"],[126493,1,"ں"],[126494,1,"ڡ"],[126495,1,"ٯ"],[126496,3],[126497,1,"ب"],[126498,1,"ج"],[126499,3],[126500,1,"ه"],[[126501,126502],3],[126503,1,"ح"],[126504,3],[126505,1,"ي"],[126506,1,"ك"],[126507,1,"ل"],[126508,1,"م"],[126509,1,"ن"],[126510,1,"س"],[126511,1,"ع"],[126512,1,"ف"],[126513,1,"ص"],[126514,1,"ق"],[126515,3],[126516,1,"ش"],[126517,1,"ت"],[126518,1,"ث"],[126519,1,"خ"],[126520,3],[126521,1,"ض"],[126522,3],[126523,1,"غ"],[[126524,126529],3],[126530,1,"ج"],[[126531,126534],3],[126535,1,"ح"],[126536,3],[126537,1,"ي"],[126538,3],[126539,1,"ل"],[126540,3],[126541,1,"ن"],[126542,1,"س"],[126543,1,"ع"],[126544,3],[126545,1,"ص"],[126546,1,"ق"],[126547,3],[126548,1,"ش"],[[126549,126550],3],[126551,1,"خ"],[126552,3],[126553,1,"ض"],[126554,3],[126555,1,"غ"],[126556,3],[126557,1,"ں"],[126558,3],[126559,1,"ٯ"],[126560,3],[126561,1,"ب"],[126562,1,"ج"],[126563,3],[126564,1,"ه"],[[126565,126566],3],[126567,1,"ح"],[126568,1,"ط"],[126569,1,"ي"],[126570,1,"ك"],[126571,3],[126572,1,"م"],[126573,1,"ن"],[126574,1,"س"],[126575,1,"ع"],[126576,1,"ف"],[126577,1,"ص"],[126578,1,"ق"],[126579,3],[126580,1,"ش"],[126581,1,"ت"],[126582,1,"ث"],[126583,1,"خ"],[126584,3],[126585,1,"ض"],[126586,1,"ظ"],[126587,1,"غ"],[126588,1,"ٮ"],[126589,3],[126590,1,"ڡ"],[126591,3],[126592,1,"ا"],[126593,1,"ب"],[126594,1,"ج"],[126595,1,"د"],[126596,1,"ه"],[126597,1,"و"],[126598,1,"ز"],[126599,1,"ح"],[126600,1,"ط"],[126601,1,"ي"],[126602,3],[126603,1,"ل"],[126604,1,"م"],[126605,1,"ن"],[126606,1,"س"],[126607,1,"ع"],[126608,1,"ف"],[126609,1,"ص"],[126610,1,"ق"],[126611,1,"ر"],[126612,1,"ش"],[126613,1,"ت"],[126614,1,"ث"],[126615,1,"خ"],[126616,1,"ذ"],[126617,1,"ض"],[126618,1,"ظ"],[126619,1,"غ"],[[126620,126624],3],[126625,1,"ب"],[126626,1,"ج"],[126627,1,"د"],[126628,3],[126629,1,"و"],[126630,1,"ز"],[126631,1,"ح"],[126632,1,"ط"],[126633,1,"ي"],[126634,3],[126635,1,"ل"],[126636,1,"م"],[126637,1,"ن"],[126638,1,"س"],[126639,1,"ع"],[126640,1,"ف"],[126641,1,"ص"],[126642,1,"ق"],[126643,1,"ر"],[126644,1,"ش"],[126645,1,"ت"],[126646,1,"ث"],[126647,1,"خ"],[126648,1,"ذ"],[126649,1,"ض"],[126650,1,"ظ"],[126651,1,"غ"],[[126652,126703],3],[[126704,126705],2],[[126706,126975],3],[[126976,127019],2],[[127020,127023],3],[[127024,127123],2],[[127124,127135],3],[[127136,127150],2],[[127151,127152],3],[[127153,127166],2],[127167,2],[127168,3],[[127169,127183],2],[127184,3],[[127185,127199],2],[[127200,127221],2],[[127222,127231],3],[127232,3],[127233,5,"0,"],[127234,5,"1,"],[127235,5,"2,"],[127236,5,"3,"],[127237,5,"4,"],[127238,5,"5,"],[127239,5,"6,"],[127240,5,"7,"],[127241,5,"8,"],[127242,5,"9,"],[[127243,127244],2],[[127245,127247],2],[127248,5,"(a)"],[127249,5,"(b)"],[127250,5,"(c)"],[127251,5,"(d)"],[127252,5,"(e)"],[127253,5,"(f)"],[127254,5,"(g)"],[127255,5,"(h)"],[127256,5,"(i)"],[127257,5,"(j)"],[127258,5,"(k)"],[127259,5,"(l)"],[127260,5,"(m)"],[127261,5,"(n)"],[127262,5,"(o)"],[127263,5,"(p)"],[127264,5,"(q)"],[127265,5,"(r)"],[127266,5,"(s)"],[127267,5,"(t)"],[127268,5,"(u)"],[127269,5,"(v)"],[127270,5,"(w)"],[127271,5,"(x)"],[127272,5,"(y)"],[127273,5,"(z)"],[127274,1,"〔s〕"],[127275,1,"c"],[127276,1,"r"],[127277,1,"cd"],[127278,1,"wz"],[127279,2],[127280,1,"a"],[127281,1,"b"],[127282,1,"c"],[127283,1,"d"],[127284,1,"e"],[127285,1,"f"],[127286,1,"g"],[127287,1,"h"],[127288,1,"i"],[127289,1,"j"],[127290,1,"k"],[127291,1,"l"],[127292,1,"m"],[127293,1,"n"],[127294,1,"o"],[127295,1,"p"],[127296,1,"q"],[127297,1,"r"],[127298,1,"s"],[127299,1,"t"],[127300,1,"u"],[127301,1,"v"],[127302,1,"w"],[127303,1,"x"],[127304,1,"y"],[127305,1,"z"],[127306,1,"hv"],[127307,1,"mv"],[127308,1,"sd"],[127309,1,"ss"],[127310,1,"ppv"],[127311,1,"wc"],[[127312,127318],2],[127319,2],[[127320,127326],2],[127327,2],[[127328,127337],2],[127338,1,"mc"],[127339,1,"md"],[127340,1,"mr"],[[127341,127343],2],[[127344,127352],2],[127353,2],[127354,2],[[127355,127356],2],[[127357,127358],2],[127359,2],[[127360,127369],2],[[127370,127373],2],[[127374,127375],2],[127376,1,"dj"],[[127377,127386],2],[[127387,127404],2],[127405,2],[[127406,127461],3],[[127462,127487],2],[127488,1,"ほか"],[127489,1,"ココ"],[127490,1,"サ"],[[127491,127503],3],[127504,1,"手"],[127505,1,"字"],[127506,1,"双"],[127507,1,"デ"],[127508,1,"二"],[127509,1,"多"],[127510,1,"解"],[127511,1,"天"],[127512,1,"交"],[127513,1,"映"],[127514,1,"無"],[127515,1,"料"],[127516,1,"前"],[127517,1,"後"],[127518,1,"再"],[127519,1,"新"],[127520,1,"初"],[127521,1,"終"],[127522,1,"生"],[127523,1,"販"],[127524,1,"声"],[127525,1,"吹"],[127526,1,"演"],[127527,1,"投"],[127528,1,"捕"],[127529,1,"一"],[127530,1,"三"],[127531,1,"遊"],[127532,1,"左"],[127533,1,"中"],[127534,1,"右"],[127535,1,"指"],[127536,1,"走"],[127537,1,"打"],[127538,1,"禁"],[127539,1,"空"],[127540,1,"合"],[127541,1,"満"],[127542,1,"有"],[127543,1,"月"],[127544,1,"申"],[127545,1,"割"],[127546,1,"営"],[127547,1,"配"],[[127548,127551],3],[127552,1,"〔本〕"],[127553,1,"〔三〕"],[127554,1,"〔二〕"],[127555,1,"〔安〕"],[127556,1,"〔点〕"],[127557,1,"〔打〕"],[127558,1,"〔盗〕"],[127559,1,"〔勝〕"],[127560,1,"〔敗〕"],[[127561,127567],3],[127568,1,"得"],[127569,1,"可"],[[127570,127583],3],[[127584,127589],2],[[127590,127743],3],[[127744,127776],2],[[127777,127788],2],[[127789,127791],2],[[127792,127797],2],[127798,2],[[127799,127868],2],[127869,2],[[127870,127871],2],[[127872,127891],2],[[127892,127903],2],[[127904,127940],2],[127941,2],[[127942,127946],2],[[127947,127950],2],[[127951,127955],2],[[127956,127967],2],[[127968,127984],2],[[127985,127991],2],[[127992,127999],2],[[128000,128062],2],[128063,2],[128064,2],[128065,2],[[128066,128247],2],[128248,2],[[128249,128252],2],[[128253,128254],2],[128255,2],[[128256,128317],2],[[128318,128319],2],[[128320,128323],2],[[128324,128330],2],[[128331,128335],2],[[128336,128359],2],[[128360,128377],2],[128378,2],[[128379,128419],2],[128420,2],[[128421,128506],2],[[128507,128511],2],[128512,2],[[128513,128528],2],[128529,2],[[128530,128532],2],[128533,2],[128534,2],[128535,2],[128536,2],[128537,2],[128538,2],[128539,2],[[128540,128542],2],[128543,2],[[128544,128549],2],[[128550,128551],2],[[128552,128555],2],[128556,2],[128557,2],[[128558,128559],2],[[128560,128563],2],[128564,2],[[128565,128576],2],[[128577,128578],2],[[128579,128580],2],[[128581,128591],2],[[128592,128639],2],[[128640,128709],2],[[128710,128719],2],[128720,2],[[128721,128722],2],[[128723,128724],2],[128725,2],[[128726,128727],2],[[128728,128732],3],[[128733,128735],2],[[128736,128748],2],[[128749,128751],3],[[128752,128755],2],[[128756,128758],2],[[128759,128760],2],[128761,2],[128762,2],[[128763,128764],2],[[128765,128767],3],[[128768,128883],2],[[128884,128895],3],[[128896,128980],2],[[128981,128984],2],[[128985,128991],3],[[128992,129003],2],[[129004,129007],3],[129008,2],[[129009,129023],3],[[129024,129035],2],[[129036,129039],3],[[129040,129095],2],[[129096,129103],3],[[129104,129113],2],[[129114,129119],3],[[129120,129159],2],[[129160,129167],3],[[129168,129197],2],[[129198,129199],3],[[129200,129201],2],[[129202,129279],3],[[129280,129291],2],[129292,2],[[129293,129295],2],[[129296,129304],2],[[129305,129310],2],[129311,2],[[129312,129319],2],[[129320,129327],2],[129328,2],[[129329,129330],2],[[129331,129342],2],[129343,2],[[129344,129355],2],[129356,2],[[129357,129359],2],[[129360,129374],2],[[129375,129387],2],[[129388,129392],2],[129393,2],[129394,2],[[129395,129398],2],[[129399,129400],2],[129401,2],[129402,2],[129403,2],[[129404,129407],2],[[129408,129412],2],[[129413,129425],2],[[129426,129431],2],[[129432,129442],2],[[129443,129444],2],[[129445,129450],2],[[129451,129453],2],[[129454,129455],2],[[129456,129465],2],[[129466,129471],2],[129472,2],[[129473,129474],2],[[129475,129482],2],[129483,2],[129484,2],[[129485,129487],2],[[129488,129510],2],[[129511,129535],2],[[129536,129619],2],[[129620,129631],3],[[129632,129645],2],[[129646,129647],3],[[129648,129651],2],[129652,2],[[129653,129655],3],[[129656,129658],2],[[129659,129660],2],[[129661,129663],3],[[129664,129666],2],[[129667,129670],2],[[129671,129679],3],[[129680,129685],2],[[129686,129704],2],[[129705,129708],2],[[129709,129711],3],[[129712,129718],2],[[129719,129722],2],[[129723,129727],3],[[129728,129730],2],[[129731,129733],2],[[129734,129743],3],[[129744,129750],2],[[129751,129753],2],[[129754,129759],3],[[129760,129767],2],[[129768,129775],3],[[129776,129782],2],[[129783,129791],3],[[129792,129938],2],[129939,3],[[129940,129994],2],[[129995,130031],3],[130032,1,"0"],[130033,1,"1"],[130034,1,"2"],[130035,1,"3"],[130036,1,"4"],[130037,1,"5"],[130038,1,"6"],[130039,1,"7"],[130040,1,"8"],[130041,1,"9"],[[130042,131069],3],[[131070,131071],3],[[131072,173782],2],[[173783,173789],2],[[173790,173791],2],[[173792,173823],3],[[173824,177972],2],[[177973,177976],2],[[177977,177983],3],[[177984,178205],2],[[178206,178207],3],[[178208,183969],2],[[183970,183983],3],[[183984,191456],2],[[191457,194559],3],[194560,1,"丽"],[194561,1,"丸"],[194562,1,"乁"],[194563,1,"𠄢"],[194564,1,"你"],[194565,1,"侮"],[194566,1,"侻"],[194567,1,"倂"],[194568,1,"偺"],[194569,1,"備"],[194570,1,"僧"],[194571,1,"像"],[194572,1,"㒞"],[194573,1,"𠘺"],[194574,1,"免"],[194575,1,"兔"],[194576,1,"兤"],[194577,1,"具"],[194578,1,"𠔜"],[194579,1,"㒹"],[194580,1,"內"],[194581,1,"再"],[194582,1,"𠕋"],[194583,1,"冗"],[194584,1,"冤"],[194585,1,"仌"],[194586,1,"冬"],[194587,1,"况"],[194588,1,"𩇟"],[194589,1,"凵"],[194590,1,"刃"],[194591,1,"㓟"],[194592,1,"刻"],[194593,1,"剆"],[194594,1,"割"],[194595,1,"剷"],[194596,1,"㔕"],[194597,1,"勇"],[194598,1,"勉"],[194599,1,"勤"],[194600,1,"勺"],[194601,1,"包"],[194602,1,"匆"],[194603,1,"北"],[194604,1,"卉"],[194605,1,"卑"],[194606,1,"博"],[194607,1,"即"],[194608,1,"卽"],[[194609,194611],1,"卿"],[194612,1,"𠨬"],[194613,1,"灰"],[194614,1,"及"],[194615,1,"叟"],[194616,1,"𠭣"],[194617,1,"叫"],[194618,1,"叱"],[194619,1,"吆"],[194620,1,"咞"],[194621,1,"吸"],[194622,1,"呈"],[194623,1,"周"],[194624,1,"咢"],[194625,1,"哶"],[194626,1,"唐"],[194627,1,"啓"],[194628,1,"啣"],[[194629,194630],1,"善"],[194631,1,"喙"],[194632,1,"喫"],[194633,1,"喳"],[194634,1,"嗂"],[194635,1,"圖"],[194636,1,"嘆"],[194637,1,"圗"],[194638,1,"噑"],[194639,1,"噴"],[194640,1,"切"],[194641,1,"壮"],[194642,1,"城"],[194643,1,"埴"],[194644,1,"堍"],[194645,1,"型"],[194646,1,"堲"],[194647,1,"報"],[194648,1,"墬"],[194649,1,"𡓤"],[194650,1,"売"],[194651,1,"壷"],[194652,1,"夆"],[194653,1,"多"],[194654,1,"夢"],[194655,1,"奢"],[194656,1,"𡚨"],[194657,1,"𡛪"],[194658,1,"姬"],[194659,1,"娛"],[194660,1,"娧"],[194661,1,"姘"],[194662,1,"婦"],[194663,1,"㛮"],[194664,3],[194665,1,"嬈"],[[194666,194667],1,"嬾"],[194668,1,"𡧈"],[194669,1,"寃"],[194670,1,"寘"],[194671,1,"寧"],[194672,1,"寳"],[194673,1,"𡬘"],[194674,1,"寿"],[194675,1,"将"],[194676,3],[194677,1,"尢"],[194678,1,"㞁"],[194679,1,"屠"],[194680,1,"屮"],[194681,1,"峀"],[194682,1,"岍"],[194683,1,"𡷤"],[194684,1,"嵃"],[194685,1,"𡷦"],[194686,1,"嵮"],[194687,1,"嵫"],[194688,1,"嵼"],[194689,1,"巡"],[194690,1,"巢"],[194691,1,"㠯"],[194692,1,"巽"],[194693,1,"帨"],[194694,1,"帽"],[194695,1,"幩"],[194696,1,"㡢"],[194697,1,"𢆃"],[194698,1,"㡼"],[194699,1,"庰"],[194700,1,"庳"],[194701,1,"庶"],[194702,1,"廊"],[194703,1,"𪎒"],[194704,1,"廾"],[[194705,194706],1,"𢌱"],[194707,1,"舁"],[[194708,194709],1,"弢"],[194710,1,"㣇"],[194711,1,"𣊸"],[194712,1,"𦇚"],[194713,1,"形"],[194714,1,"彫"],[194715,1,"㣣"],[194716,1,"徚"],[194717,1,"忍"],[194718,1,"志"],[194719,1,"忹"],[194720,1,"悁"],[194721,1,"㤺"],[194722,1,"㤜"],[194723,1,"悔"],[194724,1,"𢛔"],[194725,1,"惇"],[194726,1,"慈"],[194727,1,"慌"],[194728,1,"慎"],[194729,1,"慌"],[194730,1,"慺"],[194731,1,"憎"],[194732,1,"憲"],[194733,1,"憤"],[194734,1,"憯"],[194735,1,"懞"],[194736,1,"懲"],[194737,1,"懶"],[194738,1,"成"],[194739,1,"戛"],[194740,1,"扝"],[194741,1,"抱"],[194742,1,"拔"],[194743,1,"捐"],[194744,1,"𢬌"],[194745,1,"挽"],[194746,1,"拼"],[194747,1,"捨"],[194748,1,"掃"],[194749,1,"揤"],[194750,1,"𢯱"],[194751,1,"搢"],[194752,1,"揅"],[194753,1,"掩"],[194754,1,"㨮"],[194755,1,"摩"],[194756,1,"摾"],[194757,1,"撝"],[194758,1,"摷"],[194759,1,"㩬"],[194760,1,"敏"],[194761,1,"敬"],[194762,1,"𣀊"],[194763,1,"旣"],[194764,1,"書"],[194765,1,"晉"],[194766,1,"㬙"],[194767,1,"暑"],[194768,1,"㬈"],[194769,1,"㫤"],[194770,1,"冒"],[194771,1,"冕"],[194772,1,"最"],[194773,1,"暜"],[194774,1,"肭"],[194775,1,"䏙"],[194776,1,"朗"],[194777,1,"望"],[194778,1,"朡"],[194779,1,"杞"],[194780,1,"杓"],[194781,1,"𣏃"],[194782,1,"㭉"],[194783,1,"柺"],[194784,1,"枅"],[194785,1,"桒"],[194786,1,"梅"],[194787,1,"𣑭"],[194788,1,"梎"],[194789,1,"栟"],[194790,1,"椔"],[194791,1,"㮝"],[194792,1,"楂"],[194793,1,"榣"],[194794,1,"槪"],[194795,1,"檨"],[194796,1,"𣚣"],[194797,1,"櫛"],[194798,1,"㰘"],[194799,1,"次"],[194800,1,"𣢧"],[194801,1,"歔"],[194802,1,"㱎"],[194803,1,"歲"],[194804,1,"殟"],[194805,1,"殺"],[194806,1,"殻"],[194807,1,"𣪍"],[194808,1,"𡴋"],[194809,1,"𣫺"],[194810,1,"汎"],[194811,1,"𣲼"],[194812,1,"沿"],[194813,1,"泍"],[194814,1,"汧"],[194815,1,"洖"],[194816,1,"派"],[194817,1,"海"],[194818,1,"流"],[194819,1,"浩"],[194820,1,"浸"],[194821,1,"涅"],[194822,1,"𣴞"],[194823,1,"洴"],[194824,1,"港"],[194825,1,"湮"],[194826,1,"㴳"],[194827,1,"滋"],[194828,1,"滇"],[194829,1,"𣻑"],[194830,1,"淹"],[194831,1,"潮"],[194832,1,"𣽞"],[194833,1,"𣾎"],[194834,1,"濆"],[194835,1,"瀹"],[194836,1,"瀞"],[194837,1,"瀛"],[194838,1,"㶖"],[194839,1,"灊"],[194840,1,"災"],[194841,1,"灷"],[194842,1,"炭"],[194843,1,"𠔥"],[194844,1,"煅"],[194845,1,"𤉣"],[194846,1,"熜"],[194847,3],[194848,1,"爨"],[194849,1,"爵"],[194850,1,"牐"],[194851,1,"𤘈"],[194852,1,"犀"],[194853,1,"犕"],[194854,1,"𤜵"],[194855,1,"𤠔"],[194856,1,"獺"],[194857,1,"王"],[194858,1,"㺬"],[194859,1,"玥"],[[194860,194861],1,"㺸"],[194862,1,"瑇"],[194863,1,"瑜"],[194864,1,"瑱"],[194865,1,"璅"],[194866,1,"瓊"],[194867,1,"㼛"],[194868,1,"甤"],[194869,1,"𤰶"],[194870,1,"甾"],[194871,1,"𤲒"],[194872,1,"異"],[194873,1,"𢆟"],[194874,1,"瘐"],[194875,1,"𤾡"],[194876,1,"𤾸"],[194877,1,"𥁄"],[194878,1,"㿼"],[194879,1,"䀈"],[194880,1,"直"],[194881,1,"𥃳"],[194882,1,"𥃲"],[194883,1,"𥄙"],[194884,1,"𥄳"],[194885,1,"眞"],[[194886,194887],1,"真"],[194888,1,"睊"],[194889,1,"䀹"],[194890,1,"瞋"],[194891,1,"䁆"],[194892,1,"䂖"],[194893,1,"𥐝"],[194894,1,"硎"],[194895,1,"碌"],[194896,1,"磌"],[194897,1,"䃣"],[194898,1,"𥘦"],[194899,1,"祖"],[194900,1,"𥚚"],[194901,1,"𥛅"],[194902,1,"福"],[194903,1,"秫"],[194904,1,"䄯"],[194905,1,"穀"],[194906,1,"穊"],[194907,1,"穏"],[194908,1,"𥥼"],[[194909,194910],1,"𥪧"],[194911,3],[194912,1,"䈂"],[194913,1,"𥮫"],[194914,1,"篆"],[194915,1,"築"],[194916,1,"䈧"],[194917,1,"𥲀"],[194918,1,"糒"],[194919,1,"䊠"],[194920,1,"糨"],[194921,1,"糣"],[194922,1,"紀"],[194923,1,"𥾆"],[194924,1,"絣"],[194925,1,"䌁"],[194926,1,"緇"],[194927,1,"縂"],[194928,1,"繅"],[194929,1,"䌴"],[194930,1,"𦈨"],[194931,1,"𦉇"],[194932,1,"䍙"],[194933,1,"𦋙"],[194934,1,"罺"],[194935,1,"𦌾"],[194936,1,"羕"],[194937,1,"翺"],[194938,1,"者"],[194939,1,"𦓚"],[194940,1,"𦔣"],[194941,1,"聠"],[194942,1,"𦖨"],[194943,1,"聰"],[194944,1,"𣍟"],[194945,1,"䏕"],[194946,1,"育"],[194947,1,"脃"],[194948,1,"䐋"],[194949,1,"脾"],[194950,1,"媵"],[194951,1,"𦞧"],[194952,1,"𦞵"],[194953,1,"𣎓"],[194954,1,"𣎜"],[194955,1,"舁"],[194956,1,"舄"],[194957,1,"辞"],[194958,1,"䑫"],[194959,1,"芑"],[194960,1,"芋"],[194961,1,"芝"],[194962,1,"劳"],[194963,1,"花"],[194964,1,"芳"],[194965,1,"芽"],[194966,1,"苦"],[194967,1,"𦬼"],[194968,1,"若"],[194969,1,"茝"],[194970,1,"荣"],[194971,1,"莭"],[194972,1,"茣"],[194973,1,"莽"],[194974,1,"菧"],[194975,1,"著"],[194976,1,"荓"],[194977,1,"菊"],[194978,1,"菌"],[194979,1,"菜"],[194980,1,"𦰶"],[194981,1,"𦵫"],[194982,1,"𦳕"],[194983,1,"䔫"],[194984,1,"蓱"],[194985,1,"蓳"],[194986,1,"蔖"],[194987,1,"𧏊"],[194988,1,"蕤"],[194989,1,"𦼬"],[194990,1,"䕝"],[194991,1,"䕡"],[194992,1,"𦾱"],[194993,1,"𧃒"],[194994,1,"䕫"],[194995,1,"虐"],[194996,1,"虜"],[194997,1,"虧"],[194998,1,"虩"],[194999,1,"蚩"],[195000,1,"蚈"],[195001,1,"蜎"],[195002,1,"蛢"],[195003,1,"蝹"],[195004,1,"蜨"],[195005,1,"蝫"],[195006,1,"螆"],[195007,3],[195008,1,"蟡"],[195009,1,"蠁"],[195010,1,"䗹"],[195011,1,"衠"],[195012,1,"衣"],[195013,1,"𧙧"],[195014,1,"裗"],[195015,1,"裞"],[195016,1,"䘵"],[195017,1,"裺"],[195018,1,"㒻"],[195019,1,"𧢮"],[195020,1,"𧥦"],[195021,1,"䚾"],[195022,1,"䛇"],[195023,1,"誠"],[195024,1,"諭"],[195025,1,"變"],[195026,1,"豕"],[195027,1,"𧲨"],[195028,1,"貫"],[195029,1,"賁"],[195030,1,"贛"],[195031,1,"起"],[195032,1,"𧼯"],[195033,1,"𠠄"],[195034,1,"跋"],[195035,1,"趼"],[195036,1,"跰"],[195037,1,"𠣞"],[195038,1,"軔"],[195039,1,"輸"],[195040,1,"𨗒"],[195041,1,"𨗭"],[195042,1,"邔"],[195043,1,"郱"],[195044,1,"鄑"],[195045,1,"𨜮"],[195046,1,"鄛"],[195047,1,"鈸"],[195048,1,"鋗"],[195049,1,"鋘"],[195050,1,"鉼"],[195051,1,"鏹"],[195052,1,"鐕"],[195053,1,"𨯺"],[195054,1,"開"],[195055,1,"䦕"],[195056,1,"閷"],[195057,1,"𨵷"],[195058,1,"䧦"],[195059,1,"雃"],[195060,1,"嶲"],[195061,1,"霣"],[195062,1,"𩅅"],[195063,1,"𩈚"],[195064,1,"䩮"],[195065,1,"䩶"],[195066,1,"韠"],[195067,1,"𩐊"],[195068,1,"䪲"],[195069,1,"𩒖"],[[195070,195071],1,"頋"],[195072,1,"頩"],[195073,1,"𩖶"],[195074,1,"飢"],[195075,1,"䬳"],[195076,1,"餩"],[195077,1,"馧"],[195078,1,"駂"],[195079,1,"駾"],[195080,1,"䯎"],[195081,1,"𩬰"],[195082,1,"鬒"],[195083,1,"鱀"],[195084,1,"鳽"],[195085,1,"䳎"],[195086,1,"䳭"],[195087,1,"鵧"],[195088,1,"𪃎"],[195089,1,"䳸"],[195090,1,"𪄅"],[195091,1,"𪈎"],[195092,1,"𪊑"],[195093,1,"麻"],[195094,1,"䵖"],[195095,1,"黹"],[195096,1,"黾"],[195097,1,"鼅"],[195098,1,"鼏"],[195099,1,"鼖"],[195100,1,"鼻"],[195101,1,"𪘀"],[[195102,196605],3],[[196606,196607],3],[[196608,201546],2],[[201547,262141],3],[[262142,262143],3],[[262144,327677],3],[[327678,327679],3],[[327680,393213],3],[[393214,393215],3],[[393216,458749],3],[[458750,458751],3],[[458752,524285],3],[[524286,524287],3],[[524288,589821],3],[[589822,589823],3],[[589824,655357],3],[[655358,655359],3],[[655360,720893],3],[[720894,720895],3],[[720896,786429],3],[[786430,786431],3],[[786432,851965],3],[[851966,851967],3],[[851968,917501],3],[[917502,917503],3],[917504,3],[917505,3],[[917506,917535],3],[[917536,917631],3],[[917632,917759],3],[[917760,917999],7],[[918000,983037],3],[[983038,983039],3],[[983040,1048573],3],[[1048574,1048575],3],[[1048576,1114109],3],[[1114110,1114111],3]] \ No newline at end of file diff --git a/node_modules/tr46/lib/regexes.js b/node_modules/tr46/lib/regexes.js new file mode 100644 index 000000000..4dd8051e2 --- /dev/null +++ b/node_modules/tr46/lib/regexes.js @@ -0,0 +1,29 @@ +"use strict"; + +const combiningMarks = /[\u0300-\u036F\u0483-\u0489\u0591-\u05BD\u05BF\u05C1\u05C2\u05C4\u05C5\u05C7\u0610-\u061A\u064B-\u065F\u0670\u06D6-\u06DC\u06DF-\u06E4\u06E7\u06E8\u06EA-\u06ED\u0711\u0730-\u074A\u07A6-\u07B0\u07EB-\u07F3\u07FD\u0816-\u0819\u081B-\u0823\u0825-\u0827\u0829-\u082D\u0859-\u085B\u0898-\u089F\u08CA-\u08E1\u08E3-\u0903\u093A-\u093C\u093E-\u094F\u0951-\u0957\u0962\u0963\u0981-\u0983\u09BC\u09BE-\u09C4\u09C7\u09C8\u09CB-\u09CD\u09D7\u09E2\u09E3\u09FE\u0A01-\u0A03\u0A3C\u0A3E-\u0A42\u0A47\u0A48\u0A4B-\u0A4D\u0A51\u0A70\u0A71\u0A75\u0A81-\u0A83\u0ABC\u0ABE-\u0AC5\u0AC7-\u0AC9\u0ACB-\u0ACD\u0AE2\u0AE3\u0AFA-\u0AFF\u0B01-\u0B03\u0B3C\u0B3E-\u0B44\u0B47\u0B48\u0B4B-\u0B4D\u0B55-\u0B57\u0B62\u0B63\u0B82\u0BBE-\u0BC2\u0BC6-\u0BC8\u0BCA-\u0BCD\u0BD7\u0C00-\u0C04\u0C3C\u0C3E-\u0C44\u0C46-\u0C48\u0C4A-\u0C4D\u0C55\u0C56\u0C62\u0C63\u0C81-\u0C83\u0CBC\u0CBE-\u0CC4\u0CC6-\u0CC8\u0CCA-\u0CCD\u0CD5\u0CD6\u0CE2\u0CE3\u0D00-\u0D03\u0D3B\u0D3C\u0D3E-\u0D44\u0D46-\u0D48\u0D4A-\u0D4D\u0D57\u0D62\u0D63\u0D81-\u0D83\u0DCA\u0DCF-\u0DD4\u0DD6\u0DD8-\u0DDF\u0DF2\u0DF3\u0E31\u0E34-\u0E3A\u0E47-\u0E4E\u0EB1\u0EB4-\u0EBC\u0EC8-\u0ECD\u0F18\u0F19\u0F35\u0F37\u0F39\u0F3E\u0F3F\u0F71-\u0F84\u0F86\u0F87\u0F8D-\u0F97\u0F99-\u0FBC\u0FC6\u102B-\u103E\u1056-\u1059\u105E-\u1060\u1062-\u1064\u1067-\u106D\u1071-\u1074\u1082-\u108D\u108F\u109A-\u109D\u135D-\u135F\u1712-\u1715\u1732-\u1734\u1752\u1753\u1772\u1773\u17B4-\u17D3\u17DD\u180B-\u180D\u180F\u1885\u1886\u18A9\u1920-\u192B\u1930-\u193B\u1A17-\u1A1B\u1A55-\u1A5E\u1A60-\u1A7C\u1A7F\u1AB0-\u1ACE\u1B00-\u1B04\u1B34-\u1B44\u1B6B-\u1B73\u1B80-\u1B82\u1BA1-\u1BAD\u1BE6-\u1BF3\u1C24-\u1C37\u1CD0-\u1CD2\u1CD4-\u1CE8\u1CED\u1CF4\u1CF7-\u1CF9\u1DC0-\u1DFF\u20D0-\u20F0\u2CEF-\u2CF1\u2D7F\u2DE0-\u2DFF\u302A-\u302F\u3099\u309A\uA66F-\uA672\uA674-\uA67D\uA69E\uA69F\uA6F0\uA6F1\uA802\uA806\uA80B\uA823-\uA827\uA82C\uA880\uA881\uA8B4-\uA8C5\uA8E0-\uA8F1\uA8FF\uA926-\uA92D\uA947-\uA953\uA980-\uA983\uA9B3-\uA9C0\uA9E5\uAA29-\uAA36\uAA43\uAA4C\uAA4D\uAA7B-\uAA7D\uAAB0\uAAB2-\uAAB4\uAAB7\uAAB8\uAABE\uAABF\uAAC1\uAAEB-\uAAEF\uAAF5\uAAF6\uABE3-\uABEA\uABEC\uABED\uFB1E\uFE00-\uFE0F\uFE20-\uFE2F\u{101FD}\u{102E0}\u{10376}-\u{1037A}\u{10A01}-\u{10A03}\u{10A05}\u{10A06}\u{10A0C}-\u{10A0F}\u{10A38}-\u{10A3A}\u{10A3F}\u{10AE5}\u{10AE6}\u{10D24}-\u{10D27}\u{10EAB}\u{10EAC}\u{10F46}-\u{10F50}\u{10F82}-\u{10F85}\u{11000}-\u{11002}\u{11038}-\u{11046}\u{11070}\u{11073}\u{11074}\u{1107F}-\u{11082}\u{110B0}-\u{110BA}\u{110C2}\u{11100}-\u{11102}\u{11127}-\u{11134}\u{11145}\u{11146}\u{11173}\u{11180}-\u{11182}\u{111B3}-\u{111C0}\u{111C9}-\u{111CC}\u{111CE}\u{111CF}\u{1122C}-\u{11237}\u{1123E}\u{112DF}-\u{112EA}\u{11300}-\u{11303}\u{1133B}\u{1133C}\u{1133E}-\u{11344}\u{11347}\u{11348}\u{1134B}-\u{1134D}\u{11357}\u{11362}\u{11363}\u{11366}-\u{1136C}\u{11370}-\u{11374}\u{11435}-\u{11446}\u{1145E}\u{114B0}-\u{114C3}\u{115AF}-\u{115B5}\u{115B8}-\u{115C0}\u{115DC}\u{115DD}\u{11630}-\u{11640}\u{116AB}-\u{116B7}\u{1171D}-\u{1172B}\u{1182C}-\u{1183A}\u{11930}-\u{11935}\u{11937}\u{11938}\u{1193B}-\u{1193E}\u{11940}\u{11942}\u{11943}\u{119D1}-\u{119D7}\u{119DA}-\u{119E0}\u{119E4}\u{11A01}-\u{11A0A}\u{11A33}-\u{11A39}\u{11A3B}-\u{11A3E}\u{11A47}\u{11A51}-\u{11A5B}\u{11A8A}-\u{11A99}\u{11C2F}-\u{11C36}\u{11C38}-\u{11C3F}\u{11C92}-\u{11CA7}\u{11CA9}-\u{11CB6}\u{11D31}-\u{11D36}\u{11D3A}\u{11D3C}\u{11D3D}\u{11D3F}-\u{11D45}\u{11D47}\u{11D8A}-\u{11D8E}\u{11D90}\u{11D91}\u{11D93}-\u{11D97}\u{11EF3}-\u{11EF6}\u{16AF0}-\u{16AF4}\u{16B30}-\u{16B36}\u{16F4F}\u{16F51}-\u{16F87}\u{16F8F}-\u{16F92}\u{16FE4}\u{16FF0}\u{16FF1}\u{1BC9D}\u{1BC9E}\u{1CF00}-\u{1CF2D}\u{1CF30}-\u{1CF46}\u{1D165}-\u{1D169}\u{1D16D}-\u{1D172}\u{1D17B}-\u{1D182}\u{1D185}-\u{1D18B}\u{1D1AA}-\u{1D1AD}\u{1D242}-\u{1D244}\u{1DA00}-\u{1DA36}\u{1DA3B}-\u{1DA6C}\u{1DA75}\u{1DA84}\u{1DA9B}-\u{1DA9F}\u{1DAA1}-\u{1DAAF}\u{1E000}-\u{1E006}\u{1E008}-\u{1E018}\u{1E01B}-\u{1E021}\u{1E023}\u{1E024}\u{1E026}-\u{1E02A}\u{1E130}-\u{1E136}\u{1E2AE}\u{1E2EC}-\u{1E2EF}\u{1E8D0}-\u{1E8D6}\u{1E944}-\u{1E94A}\u{E0100}-\u{E01EF}]/u; +const combiningClassVirama = /[\u094D\u09CD\u0A4D\u0ACD\u0B4D\u0BCD\u0C4D\u0CCD\u0D3B\u0D3C\u0D4D\u0DCA\u0E3A\u0EBA\u0F84\u1039\u103A\u1714\u1734\u17D2\u1A60\u1B44\u1BAA\u1BAB\u1BF2\u1BF3\u2D7F\uA806\uA8C4\uA953\uA9C0\uAAF6\uABED\u{10A3F}\u{11046}\u{1107F}\u{110B9}\u{11133}\u{11134}\u{111C0}\u{11235}\u{112EA}\u{1134D}\u{11442}\u{114C2}\u{115BF}\u{1163F}\u{116B6}\u{1172B}\u{11839}\u{119E0}\u{11A34}\u{11A47}\u{11A99}\u{11C3F}\u{11D44}\u{11D45}\u{11D97}]/u; +const validZWNJ = /[\u0620\u0626\u0628\u062A-\u062E\u0633-\u063F\u0641-\u0647\u0649\u064A\u066E\u066F\u0678-\u0687\u069A-\u06BF\u06C1\u06C2\u06CC\u06CE\u06D0\u06D1\u06FA-\u06FC\u06FF\u0712-\u0714\u071A-\u071D\u071F-\u0727\u0729\u072B\u072D\u072E\u074E-\u0758\u075C-\u076A\u076D-\u0770\u0772\u0775-\u0777\u077A-\u077F\u07CA-\u07EA\u0841-\u0845\u0848\u084A-\u0853\u0855\u0860\u0862-\u0865\u0868\u08A0-\u08A9\u08AF\u08B0\u08B3\u08B4\u08B6-\u08B8\u08BA-\u08BD\u1807\u1820-\u1878\u1887-\u18A8\u18AA\uA840-\uA872\u{10AC0}-\u{10AC4}\u{10ACD}\u{10AD3}-\u{10ADC}\u{10ADE}-\u{10AE0}\u{10AEB}-\u{10AEE}\u{10B80}\u{10B82}\u{10B86}-\u{10B88}\u{10B8A}\u{10B8B}\u{10B8D}\u{10B90}\u{10BAD}\u{10BAE}\u{10D00}-\u{10D21}\u{10D23}\u{10F30}-\u{10F32}\u{10F34}-\u{10F44}\u{10F51}-\u{10F53}\u{1E900}-\u{1E943}][\xAD\u0300-\u036F\u0483-\u0489\u0591-\u05BD\u05BF\u05C1\u05C2\u05C4\u05C5\u05C7\u0610-\u061A\u061C\u064B-\u065F\u0670\u06D6-\u06DC\u06DF-\u06E4\u06E7\u06E8\u06EA-\u06ED\u070F\u0711\u0730-\u074A\u07A6-\u07B0\u07EB-\u07F3\u07FD\u0816-\u0819\u081B-\u0823\u0825-\u0827\u0829-\u082D\u0859-\u085B\u08D3-\u08E1\u08E3-\u0902\u093A\u093C\u0941-\u0948\u094D\u0951-\u0957\u0962\u0963\u0981\u09BC\u09C1-\u09C4\u09CD\u09E2\u09E3\u09FE\u0A01\u0A02\u0A3C\u0A41\u0A42\u0A47\u0A48\u0A4B-\u0A4D\u0A51\u0A70\u0A71\u0A75\u0A81\u0A82\u0ABC\u0AC1-\u0AC5\u0AC7\u0AC8\u0ACD\u0AE2\u0AE3\u0AFA-\u0AFF\u0B01\u0B3C\u0B3F\u0B41-\u0B44\u0B4D\u0B56\u0B62\u0B63\u0B82\u0BC0\u0BCD\u0C00\u0C04\u0C3E-\u0C40\u0C46-\u0C48\u0C4A-\u0C4D\u0C55\u0C56\u0C62\u0C63\u0C81\u0CBC\u0CBF\u0CC6\u0CCC\u0CCD\u0CE2\u0CE3\u0D00\u0D01\u0D3B\u0D3C\u0D41-\u0D44\u0D4D\u0D62\u0D63\u0DCA\u0DD2-\u0DD4\u0DD6\u0E31\u0E34-\u0E3A\u0E47-\u0E4E\u0EB1\u0EB4-\u0EBC\u0EC8-\u0ECD\u0F18\u0F19\u0F35\u0F37\u0F39\u0F71-\u0F7E\u0F80-\u0F84\u0F86\u0F87\u0F8D-\u0F97\u0F99-\u0FBC\u0FC6\u102D-\u1030\u1032-\u1037\u1039\u103A\u103D\u103E\u1058\u1059\u105E-\u1060\u1071-\u1074\u1082\u1085\u1086\u108D\u109D\u135D-\u135F\u1712-\u1714\u1732-\u1734\u1752\u1753\u1772\u1773\u17B4\u17B5\u17B7-\u17BD\u17C6\u17C9-\u17D3\u17DD\u180B-\u180D\u1885\u1886\u18A9\u1920-\u1922\u1927\u1928\u1932\u1939-\u193B\u1A17\u1A18\u1A1B\u1A56\u1A58-\u1A5E\u1A60\u1A62\u1A65-\u1A6C\u1A73-\u1A7C\u1A7F\u1AB0-\u1ABE\u1B00-\u1B03\u1B34\u1B36-\u1B3A\u1B3C\u1B42\u1B6B-\u1B73\u1B80\u1B81\u1BA2-\u1BA5\u1BA8\u1BA9\u1BAB-\u1BAD\u1BE6\u1BE8\u1BE9\u1BED\u1BEF-\u1BF1\u1C2C-\u1C33\u1C36\u1C37\u1CD0-\u1CD2\u1CD4-\u1CE0\u1CE2-\u1CE8\u1CED\u1CF4\u1CF8\u1CF9\u1DC0-\u1DF9\u1DFB-\u1DFF\u200B\u200E\u200F\u202A-\u202E\u2060-\u2064\u206A-\u206F\u20D0-\u20F0\u2CEF-\u2CF1\u2D7F\u2DE0-\u2DFF\u302A-\u302D\u3099\u309A\uA66F-\uA672\uA674-\uA67D\uA69E\uA69F\uA6F0\uA6F1\uA802\uA806\uA80B\uA825\uA826\uA8C4\uA8C5\uA8E0-\uA8F1\uA8FF\uA926-\uA92D\uA947-\uA951\uA980-\uA982\uA9B3\uA9B6-\uA9B9\uA9BC\uA9BD\uA9E5\uAA29-\uAA2E\uAA31\uAA32\uAA35\uAA36\uAA43\uAA4C\uAA7C\uAAB0\uAAB2-\uAAB4\uAAB7\uAAB8\uAABE\uAABF\uAAC1\uAAEC\uAAED\uAAF6\uABE5\uABE8\uABED\uFB1E\uFE00-\uFE0F\uFE20-\uFE2F\uFEFF\uFFF9-\uFFFB\u{101FD}\u{102E0}\u{10376}-\u{1037A}\u{10A01}-\u{10A03}\u{10A05}\u{10A06}\u{10A0C}-\u{10A0F}\u{10A38}-\u{10A3A}\u{10A3F}\u{10AE5}\u{10AE6}\u{10D24}-\u{10D27}\u{10F46}-\u{10F50}\u{11001}\u{11038}-\u{11046}\u{1107F}-\u{11081}\u{110B3}-\u{110B6}\u{110B9}\u{110BA}\u{11100}-\u{11102}\u{11127}-\u{1112B}\u{1112D}-\u{11134}\u{11173}\u{11180}\u{11181}\u{111B6}-\u{111BE}\u{111C9}-\u{111CC}\u{1122F}-\u{11231}\u{11234}\u{11236}\u{11237}\u{1123E}\u{112DF}\u{112E3}-\u{112EA}\u{11300}\u{11301}\u{1133B}\u{1133C}\u{11340}\u{11366}-\u{1136C}\u{11370}-\u{11374}\u{11438}-\u{1143F}\u{11442}-\u{11444}\u{11446}\u{1145E}\u{114B3}-\u{114B8}\u{114BA}\u{114BF}\u{114C0}\u{114C2}\u{114C3}\u{115B2}-\u{115B5}\u{115BC}\u{115BD}\u{115BF}\u{115C0}\u{115DC}\u{115DD}\u{11633}-\u{1163A}\u{1163D}\u{1163F}\u{11640}\u{116AB}\u{116AD}\u{116B0}-\u{116B5}\u{116B7}\u{1171D}-\u{1171F}\u{11722}-\u{11725}\u{11727}-\u{1172B}\u{1182F}-\u{11837}\u{11839}\u{1183A}\u{119D4}-\u{119D7}\u{119DA}\u{119DB}\u{119E0}\u{11A01}-\u{11A0A}\u{11A33}-\u{11A38}\u{11A3B}-\u{11A3E}\u{11A47}\u{11A51}-\u{11A56}\u{11A59}-\u{11A5B}\u{11A8A}-\u{11A96}\u{11A98}\u{11A99}\u{11C30}-\u{11C36}\u{11C38}-\u{11C3D}\u{11C3F}\u{11C92}-\u{11CA7}\u{11CAA}-\u{11CB0}\u{11CB2}\u{11CB3}\u{11CB5}\u{11CB6}\u{11D31}-\u{11D36}\u{11D3A}\u{11D3C}\u{11D3D}\u{11D3F}-\u{11D45}\u{11D47}\u{11D90}\u{11D91}\u{11D95}\u{11D97}\u{11EF3}\u{11EF4}\u{13430}-\u{13438}\u{16AF0}-\u{16AF4}\u{16B30}-\u{16B36}\u{16F4F}\u{16F8F}-\u{16F92}\u{1BC9D}\u{1BC9E}\u{1BCA0}-\u{1BCA3}\u{1D167}-\u{1D169}\u{1D173}-\u{1D182}\u{1D185}-\u{1D18B}\u{1D1AA}-\u{1D1AD}\u{1D242}-\u{1D244}\u{1DA00}-\u{1DA36}\u{1DA3B}-\u{1DA6C}\u{1DA75}\u{1DA84}\u{1DA9B}-\u{1DA9F}\u{1DAA1}-\u{1DAAF}\u{1E000}-\u{1E006}\u{1E008}-\u{1E018}\u{1E01B}-\u{1E021}\u{1E023}\u{1E024}\u{1E026}-\u{1E02A}\u{1E130}-\u{1E136}\u{1E2EC}-\u{1E2EF}\u{1E8D0}-\u{1E8D6}\u{1E944}-\u{1E94B}\u{E0001}\u{E0020}-\u{E007F}\u{E0100}-\u{E01EF}]*\u200C[\xAD\u0300-\u036F\u0483-\u0489\u0591-\u05BD\u05BF\u05C1\u05C2\u05C4\u05C5\u05C7\u0610-\u061A\u061C\u064B-\u065F\u0670\u06D6-\u06DC\u06DF-\u06E4\u06E7\u06E8\u06EA-\u06ED\u070F\u0711\u0730-\u074A\u07A6-\u07B0\u07EB-\u07F3\u07FD\u0816-\u0819\u081B-\u0823\u0825-\u0827\u0829-\u082D\u0859-\u085B\u08D3-\u08E1\u08E3-\u0902\u093A\u093C\u0941-\u0948\u094D\u0951-\u0957\u0962\u0963\u0981\u09BC\u09C1-\u09C4\u09CD\u09E2\u09E3\u09FE\u0A01\u0A02\u0A3C\u0A41\u0A42\u0A47\u0A48\u0A4B-\u0A4D\u0A51\u0A70\u0A71\u0A75\u0A81\u0A82\u0ABC\u0AC1-\u0AC5\u0AC7\u0AC8\u0ACD\u0AE2\u0AE3\u0AFA-\u0AFF\u0B01\u0B3C\u0B3F\u0B41-\u0B44\u0B4D\u0B56\u0B62\u0B63\u0B82\u0BC0\u0BCD\u0C00\u0C04\u0C3E-\u0C40\u0C46-\u0C48\u0C4A-\u0C4D\u0C55\u0C56\u0C62\u0C63\u0C81\u0CBC\u0CBF\u0CC6\u0CCC\u0CCD\u0CE2\u0CE3\u0D00\u0D01\u0D3B\u0D3C\u0D41-\u0D44\u0D4D\u0D62\u0D63\u0DCA\u0DD2-\u0DD4\u0DD6\u0E31\u0E34-\u0E3A\u0E47-\u0E4E\u0EB1\u0EB4-\u0EBC\u0EC8-\u0ECD\u0F18\u0F19\u0F35\u0F37\u0F39\u0F71-\u0F7E\u0F80-\u0F84\u0F86\u0F87\u0F8D-\u0F97\u0F99-\u0FBC\u0FC6\u102D-\u1030\u1032-\u1037\u1039\u103A\u103D\u103E\u1058\u1059\u105E-\u1060\u1071-\u1074\u1082\u1085\u1086\u108D\u109D\u135D-\u135F\u1712-\u1714\u1732-\u1734\u1752\u1753\u1772\u1773\u17B4\u17B5\u17B7-\u17BD\u17C6\u17C9-\u17D3\u17DD\u180B-\u180D\u1885\u1886\u18A9\u1920-\u1922\u1927\u1928\u1932\u1939-\u193B\u1A17\u1A18\u1A1B\u1A56\u1A58-\u1A5E\u1A60\u1A62\u1A65-\u1A6C\u1A73-\u1A7C\u1A7F\u1AB0-\u1ABE\u1B00-\u1B03\u1B34\u1B36-\u1B3A\u1B3C\u1B42\u1B6B-\u1B73\u1B80\u1B81\u1BA2-\u1BA5\u1BA8\u1BA9\u1BAB-\u1BAD\u1BE6\u1BE8\u1BE9\u1BED\u1BEF-\u1BF1\u1C2C-\u1C33\u1C36\u1C37\u1CD0-\u1CD2\u1CD4-\u1CE0\u1CE2-\u1CE8\u1CED\u1CF4\u1CF8\u1CF9\u1DC0-\u1DF9\u1DFB-\u1DFF\u200B\u200E\u200F\u202A-\u202E\u2060-\u2064\u206A-\u206F\u20D0-\u20F0\u2CEF-\u2CF1\u2D7F\u2DE0-\u2DFF\u302A-\u302D\u3099\u309A\uA66F-\uA672\uA674-\uA67D\uA69E\uA69F\uA6F0\uA6F1\uA802\uA806\uA80B\uA825\uA826\uA8C4\uA8C5\uA8E0-\uA8F1\uA8FF\uA926-\uA92D\uA947-\uA951\uA980-\uA982\uA9B3\uA9B6-\uA9B9\uA9BC\uA9BD\uA9E5\uAA29-\uAA2E\uAA31\uAA32\uAA35\uAA36\uAA43\uAA4C\uAA7C\uAAB0\uAAB2-\uAAB4\uAAB7\uAAB8\uAABE\uAABF\uAAC1\uAAEC\uAAED\uAAF6\uABE5\uABE8\uABED\uFB1E\uFE00-\uFE0F\uFE20-\uFE2F\uFEFF\uFFF9-\uFFFB\u{101FD}\u{102E0}\u{10376}-\u{1037A}\u{10A01}-\u{10A03}\u{10A05}\u{10A06}\u{10A0C}-\u{10A0F}\u{10A38}-\u{10A3A}\u{10A3F}\u{10AE5}\u{10AE6}\u{10D24}-\u{10D27}\u{10F46}-\u{10F50}\u{11001}\u{11038}-\u{11046}\u{1107F}-\u{11081}\u{110B3}-\u{110B6}\u{110B9}\u{110BA}\u{11100}-\u{11102}\u{11127}-\u{1112B}\u{1112D}-\u{11134}\u{11173}\u{11180}\u{11181}\u{111B6}-\u{111BE}\u{111C9}-\u{111CC}\u{1122F}-\u{11231}\u{11234}\u{11236}\u{11237}\u{1123E}\u{112DF}\u{112E3}-\u{112EA}\u{11300}\u{11301}\u{1133B}\u{1133C}\u{11340}\u{11366}-\u{1136C}\u{11370}-\u{11374}\u{11438}-\u{1143F}\u{11442}-\u{11444}\u{11446}\u{1145E}\u{114B3}-\u{114B8}\u{114BA}\u{114BF}\u{114C0}\u{114C2}\u{114C3}\u{115B2}-\u{115B5}\u{115BC}\u{115BD}\u{115BF}\u{115C0}\u{115DC}\u{115DD}\u{11633}-\u{1163A}\u{1163D}\u{1163F}\u{11640}\u{116AB}\u{116AD}\u{116B0}-\u{116B5}\u{116B7}\u{1171D}-\u{1171F}\u{11722}-\u{11725}\u{11727}-\u{1172B}\u{1182F}-\u{11837}\u{11839}\u{1183A}\u{119D4}-\u{119D7}\u{119DA}\u{119DB}\u{119E0}\u{11A01}-\u{11A0A}\u{11A33}-\u{11A38}\u{11A3B}-\u{11A3E}\u{11A47}\u{11A51}-\u{11A56}\u{11A59}-\u{11A5B}\u{11A8A}-\u{11A96}\u{11A98}\u{11A99}\u{11C30}-\u{11C36}\u{11C38}-\u{11C3D}\u{11C3F}\u{11C92}-\u{11CA7}\u{11CAA}-\u{11CB0}\u{11CB2}\u{11CB3}\u{11CB5}\u{11CB6}\u{11D31}-\u{11D36}\u{11D3A}\u{11D3C}\u{11D3D}\u{11D3F}-\u{11D45}\u{11D47}\u{11D90}\u{11D91}\u{11D95}\u{11D97}\u{11EF3}\u{11EF4}\u{13430}-\u{13438}\u{16AF0}-\u{16AF4}\u{16B30}-\u{16B36}\u{16F4F}\u{16F8F}-\u{16F92}\u{1BC9D}\u{1BC9E}\u{1BCA0}-\u{1BCA3}\u{1D167}-\u{1D169}\u{1D173}-\u{1D182}\u{1D185}-\u{1D18B}\u{1D1AA}-\u{1D1AD}\u{1D242}-\u{1D244}\u{1DA00}-\u{1DA36}\u{1DA3B}-\u{1DA6C}\u{1DA75}\u{1DA84}\u{1DA9B}-\u{1DA9F}\u{1DAA1}-\u{1DAAF}\u{1E000}-\u{1E006}\u{1E008}-\u{1E018}\u{1E01B}-\u{1E021}\u{1E023}\u{1E024}\u{1E026}-\u{1E02A}\u{1E130}-\u{1E136}\u{1E2EC}-\u{1E2EF}\u{1E8D0}-\u{1E8D6}\u{1E944}-\u{1E94B}\u{E0001}\u{E0020}-\u{E007F}\u{E0100}-\u{E01EF}]*[\u0620\u0622-\u063F\u0641-\u064A\u066E\u066F\u0671-\u0673\u0675-\u06D3\u06D5\u06EE\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u077F\u07CA-\u07EA\u0840-\u0855\u0860\u0862-\u0865\u0867-\u086A\u08A0-\u08AC\u08AE-\u08B4\u08B6-\u08BD\u1807\u1820-\u1878\u1887-\u18A8\u18AA\uA840-\uA871\u{10AC0}-\u{10AC5}\u{10AC7}\u{10AC9}\u{10ACA}\u{10ACE}-\u{10AD6}\u{10AD8}-\u{10AE1}\u{10AE4}\u{10AEB}-\u{10AEF}\u{10B80}-\u{10B91}\u{10BA9}-\u{10BAE}\u{10D01}-\u{10D23}\u{10F30}-\u{10F44}\u{10F51}-\u{10F54}\u{1E900}-\u{1E943}]/u; +const bidiDomain = /[\u05BE\u05C0\u05C3\u05C6\u05D0-\u05EA\u05EF-\u05F4\u0600-\u0605\u0608\u060B\u060D\u061B-\u064A\u0660-\u0669\u066B-\u066F\u0671-\u06D5\u06DD\u06E5\u06E6\u06EE\u06EF\u06FA-\u070D\u070F\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07C0-\u07EA\u07F4\u07F5\u07FA\u07FE-\u0815\u081A\u0824\u0828\u0830-\u083E\u0840-\u0858\u085E\u0860-\u086A\u0870-\u088E\u0890\u0891\u08A0-\u08C9\u08E2\u200F\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBC2\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFC\uFE70-\uFE74\uFE76-\uFEFC\u{10800}-\u{10805}\u{10808}\u{1080A}-\u{10835}\u{10837}\u{10838}\u{1083C}\u{1083F}-\u{10855}\u{10857}-\u{1089E}\u{108A7}-\u{108AF}\u{108E0}-\u{108F2}\u{108F4}\u{108F5}\u{108FB}-\u{1091B}\u{10920}-\u{10939}\u{1093F}\u{10980}-\u{109B7}\u{109BC}-\u{109CF}\u{109D2}-\u{10A00}\u{10A10}-\u{10A13}\u{10A15}-\u{10A17}\u{10A19}-\u{10A35}\u{10A40}-\u{10A48}\u{10A50}-\u{10A58}\u{10A60}-\u{10A9F}\u{10AC0}-\u{10AE4}\u{10AEB}-\u{10AF6}\u{10B00}-\u{10B35}\u{10B40}-\u{10B55}\u{10B58}-\u{10B72}\u{10B78}-\u{10B91}\u{10B99}-\u{10B9C}\u{10BA9}-\u{10BAF}\u{10C00}-\u{10C48}\u{10C80}-\u{10CB2}\u{10CC0}-\u{10CF2}\u{10CFA}-\u{10D23}\u{10D30}-\u{10D39}\u{10E60}-\u{10E7E}\u{10E80}-\u{10EA9}\u{10EAD}\u{10EB0}\u{10EB1}\u{10F00}-\u{10F27}\u{10F30}-\u{10F45}\u{10F51}-\u{10F59}\u{10F70}-\u{10F81}\u{10F86}-\u{10F89}\u{10FB0}-\u{10FCB}\u{10FE0}-\u{10FF6}\u{1E800}-\u{1E8C4}\u{1E8C7}-\u{1E8CF}\u{1E900}-\u{1E943}\u{1E94B}\u{1E950}-\u{1E959}\u{1E95E}\u{1E95F}\u{1EC71}-\u{1ECB4}\u{1ED01}-\u{1ED3D}\u{1EE00}-\u{1EE03}\u{1EE05}-\u{1EE1F}\u{1EE21}\u{1EE22}\u{1EE24}\u{1EE27}\u{1EE29}-\u{1EE32}\u{1EE34}-\u{1EE37}\u{1EE39}\u{1EE3B}\u{1EE42}\u{1EE47}\u{1EE49}\u{1EE4B}\u{1EE4D}-\u{1EE4F}\u{1EE51}\u{1EE52}\u{1EE54}\u{1EE57}\u{1EE59}\u{1EE5B}\u{1EE5D}\u{1EE5F}\u{1EE61}\u{1EE62}\u{1EE64}\u{1EE67}-\u{1EE6A}\u{1EE6C}-\u{1EE72}\u{1EE74}-\u{1EE77}\u{1EE79}-\u{1EE7C}\u{1EE7E}\u{1EE80}-\u{1EE89}\u{1EE8B}-\u{1EE9B}\u{1EEA1}-\u{1EEA3}\u{1EEA5}-\u{1EEA9}\u{1EEAB}-\u{1EEBB}]/u; +const bidiS1LTR = /[A-Za-z\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02B8\u02BB-\u02C1\u02D0\u02D1\u02E0-\u02E4\u02EE\u0370-\u0373\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0482\u048A-\u052F\u0531-\u0556\u0559-\u0589\u0903-\u0939\u093B\u093D-\u0940\u0949-\u094C\u094E-\u0950\u0958-\u0961\u0964-\u0980\u0982\u0983\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD-\u09C0\u09C7\u09C8\u09CB\u09CC\u09CE\u09D7\u09DC\u09DD\u09DF-\u09E1\u09E6-\u09F1\u09F4-\u09FA\u09FC\u09FD\u0A03\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A3E-\u0A40\u0A59-\u0A5C\u0A5E\u0A66-\u0A6F\u0A72-\u0A74\u0A76\u0A83\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD-\u0AC0\u0AC9\u0ACB\u0ACC\u0AD0\u0AE0\u0AE1\u0AE6-\u0AF0\u0AF9\u0B02\u0B03\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B3E\u0B40\u0B47\u0B48\u0B4B\u0B4C\u0B57\u0B5C\u0B5D\u0B5F-\u0B61\u0B66-\u0B77\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BBE\u0BBF\u0BC1\u0BC2\u0BC6-\u0BC8\u0BCA-\u0BCC\u0BD0\u0BD7\u0BE6-\u0BF2\u0C01-\u0C03\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D\u0C41-\u0C44\u0C58-\u0C5A\u0C5D\u0C60\u0C61\u0C66-\u0C6F\u0C77\u0C7F\u0C80\u0C82-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD-\u0CC4\u0CC6-\u0CC8\u0CCA\u0CCB\u0CD5\u0CD6\u0CDD\u0CDE\u0CE0\u0CE1\u0CE6-\u0CEF\u0CF1\u0CF2\u0D02-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D-\u0D40\u0D46-\u0D48\u0D4A-\u0D4C\u0D4E\u0D4F\u0D54-\u0D61\u0D66-\u0D7F\u0D82\u0D83\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0DCF-\u0DD1\u0DD8-\u0DDF\u0DE6-\u0DEF\u0DF2-\u0DF4\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E4F-\u0E5B\u0E81\u0E82\u0E84\u0E86-\u0E8A\u0E8C-\u0EA3\u0EA5\u0EA7-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0ED0-\u0ED9\u0EDC-\u0EDF\u0F00-\u0F17\u0F1A-\u0F34\u0F36\u0F38\u0F3E-\u0F47\u0F49-\u0F6C\u0F7F\u0F85\u0F88-\u0F8C\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE-\u0FDA\u1000-\u102C\u1031\u1038\u103B\u103C\u103F-\u1057\u105A-\u105D\u1061-\u1070\u1075-\u1081\u1083\u1084\u1087-\u108C\u108E-\u109C\u109E-\u10C5\u10C7\u10CD\u10D0-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1360-\u137C\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u167F\u1681-\u169A\u16A0-\u16F8\u1700-\u1711\u1715\u171F-\u1731\u1734-\u1736\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17B6\u17BE-\u17C5\u17C7\u17C8\u17D4-\u17DA\u17DC\u17E0-\u17E9\u1810-\u1819\u1820-\u1878\u1880-\u1884\u1887-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191E\u1923-\u1926\u1929-\u192B\u1930\u1931\u1933-\u1938\u1946-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u19D0-\u19DA\u1A00-\u1A16\u1A19\u1A1A\u1A1E-\u1A55\u1A57\u1A61\u1A63\u1A64\u1A6D-\u1A72\u1A80-\u1A89\u1A90-\u1A99\u1AA0-\u1AAD\u1B04-\u1B33\u1B35\u1B3B\u1B3D-\u1B41\u1B43-\u1B4C\u1B50-\u1B6A\u1B74-\u1B7E\u1B82-\u1BA1\u1BA6\u1BA7\u1BAA\u1BAE-\u1BE5\u1BE7\u1BEA-\u1BEC\u1BEE\u1BF2\u1BF3\u1BFC-\u1C2B\u1C34\u1C35\u1C3B-\u1C49\u1C4D-\u1C88\u1C90-\u1CBA\u1CBD-\u1CC7\u1CD3\u1CE1\u1CE9-\u1CEC\u1CEE-\u1CF3\u1CF5-\u1CF7\u1CFA\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u200E\u2071\u207F\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u214F\u2160-\u2188\u2336-\u237A\u2395\u249C-\u24E9\u26AC\u2800-\u28FF\u2C00-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D70\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u3005-\u3007\u3021-\u3029\u302E\u302F\u3031-\u3035\u3038-\u303C\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312F\u3131-\u318E\u3190-\u31BF\u31F0-\u321C\u3220-\u324F\u3260-\u327B\u327F-\u32B0\u32C0-\u32CB\u32D0-\u3376\u337B-\u33DD\u33E0-\u33FE\u3400-\u4DBF\u4E00-\uA48C\uA4D0-\uA60C\uA610-\uA62B\uA640-\uA66E\uA680-\uA69D\uA6A0-\uA6EF\uA6F2-\uA6F7\uA722-\uA787\uA789-\uA7CA\uA7D0\uA7D1\uA7D3\uA7D5-\uA7D9\uA7F2-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA824\uA827\uA830-\uA837\uA840-\uA873\uA880-\uA8C3\uA8CE-\uA8D9\uA8F2-\uA8FE\uA900-\uA925\uA92E-\uA946\uA952\uA953\uA95F-\uA97C\uA983-\uA9B2\uA9B4\uA9B5\uA9BA\uA9BB\uA9BE-\uA9CD\uA9CF-\uA9D9\uA9DE-\uA9E4\uA9E6-\uA9FE\uAA00-\uAA28\uAA2F\uAA30\uAA33\uAA34\uAA40-\uAA42\uAA44-\uAA4B\uAA4D\uAA50-\uAA59\uAA5C-\uAA7B\uAA7D-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAAEB\uAAEE-\uAAF5\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB69\uAB70-\uABE4\uABE6\uABE7\uABE9-\uABEC\uABF0-\uABF9\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uD800-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC\u{10000}-\u{1000B}\u{1000D}-\u{10026}\u{10028}-\u{1003A}\u{1003C}\u{1003D}\u{1003F}-\u{1004D}\u{10050}-\u{1005D}\u{10080}-\u{100FA}\u{10100}\u{10102}\u{10107}-\u{10133}\u{10137}-\u{1013F}\u{1018D}\u{1018E}\u{101D0}-\u{101FC}\u{10280}-\u{1029C}\u{102A0}-\u{102D0}\u{10300}-\u{10323}\u{1032D}-\u{1034A}\u{10350}-\u{10375}\u{10380}-\u{1039D}\u{1039F}-\u{103C3}\u{103C8}-\u{103D5}\u{10400}-\u{1049D}\u{104A0}-\u{104A9}\u{104B0}-\u{104D3}\u{104D8}-\u{104FB}\u{10500}-\u{10527}\u{10530}-\u{10563}\u{1056F}-\u{1057A}\u{1057C}-\u{1058A}\u{1058C}-\u{10592}\u{10594}\u{10595}\u{10597}-\u{105A1}\u{105A3}-\u{105B1}\u{105B3}-\u{105B9}\u{105BB}\u{105BC}\u{10600}-\u{10736}\u{10740}-\u{10755}\u{10760}-\u{10767}\u{10780}-\u{10785}\u{10787}-\u{107B0}\u{107B2}-\u{107BA}\u{11000}\u{11002}-\u{11037}\u{11047}-\u{1104D}\u{11066}-\u{1106F}\u{11071}\u{11072}\u{11075}\u{11082}-\u{110B2}\u{110B7}\u{110B8}\u{110BB}-\u{110C1}\u{110CD}\u{110D0}-\u{110E8}\u{110F0}-\u{110F9}\u{11103}-\u{11126}\u{1112C}\u{11136}-\u{11147}\u{11150}-\u{11172}\u{11174}-\u{11176}\u{11182}-\u{111B5}\u{111BF}-\u{111C8}\u{111CD}\u{111CE}\u{111D0}-\u{111DF}\u{111E1}-\u{111F4}\u{11200}-\u{11211}\u{11213}-\u{1122E}\u{11232}\u{11233}\u{11235}\u{11238}-\u{1123D}\u{11280}-\u{11286}\u{11288}\u{1128A}-\u{1128D}\u{1128F}-\u{1129D}\u{1129F}-\u{112A9}\u{112B0}-\u{112DE}\u{112E0}-\u{112E2}\u{112F0}-\u{112F9}\u{11302}\u{11303}\u{11305}-\u{1130C}\u{1130F}\u{11310}\u{11313}-\u{11328}\u{1132A}-\u{11330}\u{11332}\u{11333}\u{11335}-\u{11339}\u{1133D}-\u{1133F}\u{11341}-\u{11344}\u{11347}\u{11348}\u{1134B}-\u{1134D}\u{11350}\u{11357}\u{1135D}-\u{11363}\u{11400}-\u{11437}\u{11440}\u{11441}\u{11445}\u{11447}-\u{1145B}\u{1145D}\u{1145F}-\u{11461}\u{11480}-\u{114B2}\u{114B9}\u{114BB}-\u{114BE}\u{114C1}\u{114C4}-\u{114C7}\u{114D0}-\u{114D9}\u{11580}-\u{115B1}\u{115B8}-\u{115BB}\u{115BE}\u{115C1}-\u{115DB}\u{11600}-\u{11632}\u{1163B}\u{1163C}\u{1163E}\u{11641}-\u{11644}\u{11650}-\u{11659}\u{11680}-\u{116AA}\u{116AC}\u{116AE}\u{116AF}\u{116B6}\u{116B8}\u{116B9}\u{116C0}-\u{116C9}\u{11700}-\u{1171A}\u{11720}\u{11721}\u{11726}\u{11730}-\u{11746}\u{11800}-\u{1182E}\u{11838}\u{1183B}\u{118A0}-\u{118F2}\u{118FF}-\u{11906}\u{11909}\u{1190C}-\u{11913}\u{11915}\u{11916}\u{11918}-\u{11935}\u{11937}\u{11938}\u{1193D}\u{1193F}-\u{11942}\u{11944}-\u{11946}\u{11950}-\u{11959}\u{119A0}-\u{119A7}\u{119AA}-\u{119D3}\u{119DC}-\u{119DF}\u{119E1}-\u{119E4}\u{11A00}\u{11A07}\u{11A08}\u{11A0B}-\u{11A32}\u{11A39}\u{11A3A}\u{11A3F}-\u{11A46}\u{11A50}\u{11A57}\u{11A58}\u{11A5C}-\u{11A89}\u{11A97}\u{11A9A}-\u{11AA2}\u{11AB0}-\u{11AF8}\u{11C00}-\u{11C08}\u{11C0A}-\u{11C2F}\u{11C3E}-\u{11C45}\u{11C50}-\u{11C6C}\u{11C70}-\u{11C8F}\u{11CA9}\u{11CB1}\u{11CB4}\u{11D00}-\u{11D06}\u{11D08}\u{11D09}\u{11D0B}-\u{11D30}\u{11D46}\u{11D50}-\u{11D59}\u{11D60}-\u{11D65}\u{11D67}\u{11D68}\u{11D6A}-\u{11D8E}\u{11D93}\u{11D94}\u{11D96}\u{11D98}\u{11DA0}-\u{11DA9}\u{11EE0}-\u{11EF2}\u{11EF5}-\u{11EF8}\u{11FB0}\u{11FC0}-\u{11FD4}\u{11FFF}-\u{12399}\u{12400}-\u{1246E}\u{12470}-\u{12474}\u{12480}-\u{12543}\u{12F90}-\u{12FF2}\u{13000}-\u{1342E}\u{13430}-\u{13438}\u{14400}-\u{14646}\u{16800}-\u{16A38}\u{16A40}-\u{16A5E}\u{16A60}-\u{16A69}\u{16A6E}-\u{16ABE}\u{16AC0}-\u{16AC9}\u{16AD0}-\u{16AED}\u{16AF5}\u{16B00}-\u{16B2F}\u{16B37}-\u{16B45}\u{16B50}-\u{16B59}\u{16B5B}-\u{16B61}\u{16B63}-\u{16B77}\u{16B7D}-\u{16B8F}\u{16E40}-\u{16E9A}\u{16F00}-\u{16F4A}\u{16F50}-\u{16F87}\u{16F93}-\u{16F9F}\u{16FE0}\u{16FE1}\u{16FE3}\u{16FF0}\u{16FF1}\u{17000}-\u{187F7}\u{18800}-\u{18CD5}\u{18D00}-\u{18D08}\u{1AFF0}-\u{1AFF3}\u{1AFF5}-\u{1AFFB}\u{1AFFD}\u{1AFFE}\u{1B000}-\u{1B122}\u{1B150}-\u{1B152}\u{1B164}-\u{1B167}\u{1B170}-\u{1B2FB}\u{1BC00}-\u{1BC6A}\u{1BC70}-\u{1BC7C}\u{1BC80}-\u{1BC88}\u{1BC90}-\u{1BC99}\u{1BC9C}\u{1BC9F}\u{1CF50}-\u{1CFC3}\u{1D000}-\u{1D0F5}\u{1D100}-\u{1D126}\u{1D129}-\u{1D166}\u{1D16A}-\u{1D172}\u{1D183}\u{1D184}\u{1D18C}-\u{1D1A9}\u{1D1AE}-\u{1D1E8}\u{1D2E0}-\u{1D2F3}\u{1D360}-\u{1D378}\u{1D400}-\u{1D454}\u{1D456}-\u{1D49C}\u{1D49E}\u{1D49F}\u{1D4A2}\u{1D4A5}\u{1D4A6}\u{1D4A9}-\u{1D4AC}\u{1D4AE}-\u{1D4B9}\u{1D4BB}\u{1D4BD}-\u{1D4C3}\u{1D4C5}-\u{1D505}\u{1D507}-\u{1D50A}\u{1D50D}-\u{1D514}\u{1D516}-\u{1D51C}\u{1D51E}-\u{1D539}\u{1D53B}-\u{1D53E}\u{1D540}-\u{1D544}\u{1D546}\u{1D54A}-\u{1D550}\u{1D552}-\u{1D6A5}\u{1D6A8}-\u{1D6DA}\u{1D6DC}-\u{1D714}\u{1D716}-\u{1D74E}\u{1D750}-\u{1D788}\u{1D78A}-\u{1D7C2}\u{1D7C4}-\u{1D7CB}\u{1D800}-\u{1D9FF}\u{1DA37}-\u{1DA3A}\u{1DA6D}-\u{1DA74}\u{1DA76}-\u{1DA83}\u{1DA85}-\u{1DA8B}\u{1DF00}-\u{1DF1E}\u{1E100}-\u{1E12C}\u{1E137}-\u{1E13D}\u{1E140}-\u{1E149}\u{1E14E}\u{1E14F}\u{1E290}-\u{1E2AD}\u{1E2C0}-\u{1E2EB}\u{1E2F0}-\u{1E2F9}\u{1E7E0}-\u{1E7E6}\u{1E7E8}-\u{1E7EB}\u{1E7ED}\u{1E7EE}\u{1E7F0}-\u{1E7FE}\u{1F110}-\u{1F12E}\u{1F130}-\u{1F169}\u{1F170}-\u{1F1AC}\u{1F1E6}-\u{1F202}\u{1F210}-\u{1F23B}\u{1F240}-\u{1F248}\u{1F250}\u{1F251}\u{20000}-\u{2A6DF}\u{2A700}-\u{2B738}\u{2B740}-\u{2B81D}\u{2B820}-\u{2CEA1}\u{2CEB0}-\u{2EBE0}\u{2F800}-\u{2FA1D}\u{30000}-\u{3134A}\u{F0000}-\u{FFFFD}\u{100000}-\u{10FFFD}]/u; +const bidiS1RTL = /[\u05BE\u05C0\u05C3\u05C6\u05D0-\u05EA\u05EF-\u05F4\u0608\u060B\u060D\u061B-\u064A\u066D-\u066F\u0671-\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u070D\u070F\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07C0-\u07EA\u07F4\u07F5\u07FA\u07FE-\u0815\u081A\u0824\u0828\u0830-\u083E\u0840-\u0858\u085E\u0860-\u086A\u0870-\u088E\u08A0-\u08C9\u200F\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBC2\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFC\uFE70-\uFE74\uFE76-\uFEFC\u{10800}-\u{10805}\u{10808}\u{1080A}-\u{10835}\u{10837}\u{10838}\u{1083C}\u{1083F}-\u{10855}\u{10857}-\u{1089E}\u{108A7}-\u{108AF}\u{108E0}-\u{108F2}\u{108F4}\u{108F5}\u{108FB}-\u{1091B}\u{10920}-\u{10939}\u{1093F}\u{10980}-\u{109B7}\u{109BC}-\u{109CF}\u{109D2}-\u{10A00}\u{10A10}-\u{10A13}\u{10A15}-\u{10A17}\u{10A19}-\u{10A35}\u{10A40}-\u{10A48}\u{10A50}-\u{10A58}\u{10A60}-\u{10A9F}\u{10AC0}-\u{10AE4}\u{10AEB}-\u{10AF6}\u{10B00}-\u{10B35}\u{10B40}-\u{10B55}\u{10B58}-\u{10B72}\u{10B78}-\u{10B91}\u{10B99}-\u{10B9C}\u{10BA9}-\u{10BAF}\u{10C00}-\u{10C48}\u{10C80}-\u{10CB2}\u{10CC0}-\u{10CF2}\u{10CFA}-\u{10D23}\u{10E80}-\u{10EA9}\u{10EAD}\u{10EB0}\u{10EB1}\u{10F00}-\u{10F27}\u{10F30}-\u{10F45}\u{10F51}-\u{10F59}\u{10F70}-\u{10F81}\u{10F86}-\u{10F89}\u{10FB0}-\u{10FCB}\u{10FE0}-\u{10FF6}\u{1E800}-\u{1E8C4}\u{1E8C7}-\u{1E8CF}\u{1E900}-\u{1E943}\u{1E94B}\u{1E950}-\u{1E959}\u{1E95E}\u{1E95F}\u{1EC71}-\u{1ECB4}\u{1ED01}-\u{1ED3D}\u{1EE00}-\u{1EE03}\u{1EE05}-\u{1EE1F}\u{1EE21}\u{1EE22}\u{1EE24}\u{1EE27}\u{1EE29}-\u{1EE32}\u{1EE34}-\u{1EE37}\u{1EE39}\u{1EE3B}\u{1EE42}\u{1EE47}\u{1EE49}\u{1EE4B}\u{1EE4D}-\u{1EE4F}\u{1EE51}\u{1EE52}\u{1EE54}\u{1EE57}\u{1EE59}\u{1EE5B}\u{1EE5D}\u{1EE5F}\u{1EE61}\u{1EE62}\u{1EE64}\u{1EE67}-\u{1EE6A}\u{1EE6C}-\u{1EE72}\u{1EE74}-\u{1EE77}\u{1EE79}-\u{1EE7C}\u{1EE7E}\u{1EE80}-\u{1EE89}\u{1EE8B}-\u{1EE9B}\u{1EEA1}-\u{1EEA3}\u{1EEA5}-\u{1EEA9}\u{1EEAB}-\u{1EEBB}]/u; +const bidiS2 = /^[\0-\x08\x0E-\x1B!-@\[-`\{-\x84\x86-\xA9\xAB-\xB4\xB6-\xB9\xBB-\xBF\xD7\xF7\u02B9\u02BA\u02C2-\u02CF\u02D2-\u02DF\u02E5-\u02ED\u02EF-\u036F\u0374\u0375\u037E\u0384\u0385\u0387\u03F6\u0483-\u0489\u058A\u058D-\u058F\u0591-\u05C7\u05D0-\u05EA\u05EF-\u05F4\u0600-\u070D\u070F-\u074A\u074D-\u07B1\u07C0-\u07FA\u07FD-\u082D\u0830-\u083E\u0840-\u085B\u085E\u0860-\u086A\u0870-\u088E\u0890\u0891\u0898-\u0902\u093A\u093C\u0941-\u0948\u094D\u0951-\u0957\u0962\u0963\u0981\u09BC\u09C1-\u09C4\u09CD\u09E2\u09E3\u09F2\u09F3\u09FB\u09FE\u0A01\u0A02\u0A3C\u0A41\u0A42\u0A47\u0A48\u0A4B-\u0A4D\u0A51\u0A70\u0A71\u0A75\u0A81\u0A82\u0ABC\u0AC1-\u0AC5\u0AC7\u0AC8\u0ACD\u0AE2\u0AE3\u0AF1\u0AFA-\u0AFF\u0B01\u0B3C\u0B3F\u0B41-\u0B44\u0B4D\u0B55\u0B56\u0B62\u0B63\u0B82\u0BC0\u0BCD\u0BF3-\u0BFA\u0C00\u0C04\u0C3C\u0C3E-\u0C40\u0C46-\u0C48\u0C4A-\u0C4D\u0C55\u0C56\u0C62\u0C63\u0C78-\u0C7E\u0C81\u0CBC\u0CCC\u0CCD\u0CE2\u0CE3\u0D00\u0D01\u0D3B\u0D3C\u0D41-\u0D44\u0D4D\u0D62\u0D63\u0D81\u0DCA\u0DD2-\u0DD4\u0DD6\u0E31\u0E34-\u0E3A\u0E3F\u0E47-\u0E4E\u0EB1\u0EB4-\u0EBC\u0EC8-\u0ECD\u0F18\u0F19\u0F35\u0F37\u0F39-\u0F3D\u0F71-\u0F7E\u0F80-\u0F84\u0F86\u0F87\u0F8D-\u0F97\u0F99-\u0FBC\u0FC6\u102D-\u1030\u1032-\u1037\u1039\u103A\u103D\u103E\u1058\u1059\u105E-\u1060\u1071-\u1074\u1082\u1085\u1086\u108D\u109D\u135D-\u135F\u1390-\u1399\u1400\u169B\u169C\u1712-\u1714\u1732\u1733\u1752\u1753\u1772\u1773\u17B4\u17B5\u17B7-\u17BD\u17C6\u17C9-\u17D3\u17DB\u17DD\u17F0-\u17F9\u1800-\u180F\u1885\u1886\u18A9\u1920-\u1922\u1927\u1928\u1932\u1939-\u193B\u1940\u1944\u1945\u19DE-\u19FF\u1A17\u1A18\u1A1B\u1A56\u1A58-\u1A5E\u1A60\u1A62\u1A65-\u1A6C\u1A73-\u1A7C\u1A7F\u1AB0-\u1ACE\u1B00-\u1B03\u1B34\u1B36-\u1B3A\u1B3C\u1B42\u1B6B-\u1B73\u1B80\u1B81\u1BA2-\u1BA5\u1BA8\u1BA9\u1BAB-\u1BAD\u1BE6\u1BE8\u1BE9\u1BED\u1BEF-\u1BF1\u1C2C-\u1C33\u1C36\u1C37\u1CD0-\u1CD2\u1CD4-\u1CE0\u1CE2-\u1CE8\u1CED\u1CF4\u1CF8\u1CF9\u1DC0-\u1DFF\u1FBD\u1FBF-\u1FC1\u1FCD-\u1FCF\u1FDD-\u1FDF\u1FED-\u1FEF\u1FFD\u1FFE\u200B-\u200D\u200F-\u2027\u202F-\u205E\u2060-\u2064\u206A-\u2070\u2074-\u207E\u2080-\u208E\u20A0-\u20C0\u20D0-\u20F0\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116-\u2118\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u2140-\u2144\u214A-\u214D\u2150-\u215F\u2189-\u218B\u2190-\u2335\u237B-\u2394\u2396-\u2426\u2440-\u244A\u2460-\u249B\u24EA-\u26AB\u26AD-\u27FF\u2900-\u2B73\u2B76-\u2B95\u2B97-\u2BFF\u2CE5-\u2CEA\u2CEF-\u2CF1\u2CF9-\u2CFF\u2D7F\u2DE0-\u2E5D\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3001-\u3004\u3008-\u3020\u302A-\u302D\u3030\u3036\u3037\u303D-\u303F\u3099-\u309C\u30A0\u30FB\u31C0-\u31E3\u321D\u321E\u3250-\u325F\u327C-\u327E\u32B1-\u32BF\u32CC-\u32CF\u3377-\u337A\u33DE\u33DF\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA60D-\uA60F\uA66F-\uA67F\uA69E\uA69F\uA6F0\uA6F1\uA700-\uA721\uA788\uA802\uA806\uA80B\uA825\uA826\uA828-\uA82C\uA838\uA839\uA874-\uA877\uA8C4\uA8C5\uA8E0-\uA8F1\uA8FF\uA926-\uA92D\uA947-\uA951\uA980-\uA982\uA9B3\uA9B6-\uA9B9\uA9BC\uA9BD\uA9E5\uAA29-\uAA2E\uAA31\uAA32\uAA35\uAA36\uAA43\uAA4C\uAA7C\uAAB0\uAAB2-\uAAB4\uAAB7\uAAB8\uAABE\uAABF\uAAC1\uAAEC\uAAED\uAAF6\uAB6A\uAB6B\uABE5\uABE8\uABED\uFB1D-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBC2\uFBD3-\uFD8F\uFD92-\uFDC7\uFDCF\uFDF0-\uFE19\uFE20-\uFE52\uFE54-\uFE66\uFE68-\uFE6B\uFE70-\uFE74\uFE76-\uFEFC\uFEFF\uFF01-\uFF20\uFF3B-\uFF40\uFF5B-\uFF65\uFFE0-\uFFE6\uFFE8-\uFFEE\uFFF9-\uFFFD\u{10101}\u{10140}-\u{1018C}\u{10190}-\u{1019C}\u{101A0}\u{101FD}\u{102E0}-\u{102FB}\u{10376}-\u{1037A}\u{10800}-\u{10805}\u{10808}\u{1080A}-\u{10835}\u{10837}\u{10838}\u{1083C}\u{1083F}-\u{10855}\u{10857}-\u{1089E}\u{108A7}-\u{108AF}\u{108E0}-\u{108F2}\u{108F4}\u{108F5}\u{108FB}-\u{1091B}\u{1091F}-\u{10939}\u{1093F}\u{10980}-\u{109B7}\u{109BC}-\u{109CF}\u{109D2}-\u{10A03}\u{10A05}\u{10A06}\u{10A0C}-\u{10A13}\u{10A15}-\u{10A17}\u{10A19}-\u{10A35}\u{10A38}-\u{10A3A}\u{10A3F}-\u{10A48}\u{10A50}-\u{10A58}\u{10A60}-\u{10A9F}\u{10AC0}-\u{10AE6}\u{10AEB}-\u{10AF6}\u{10B00}-\u{10B35}\u{10B39}-\u{10B55}\u{10B58}-\u{10B72}\u{10B78}-\u{10B91}\u{10B99}-\u{10B9C}\u{10BA9}-\u{10BAF}\u{10C00}-\u{10C48}\u{10C80}-\u{10CB2}\u{10CC0}-\u{10CF2}\u{10CFA}-\u{10D27}\u{10D30}-\u{10D39}\u{10E60}-\u{10E7E}\u{10E80}-\u{10EA9}\u{10EAB}-\u{10EAD}\u{10EB0}\u{10EB1}\u{10F00}-\u{10F27}\u{10F30}-\u{10F59}\u{10F70}-\u{10F89}\u{10FB0}-\u{10FCB}\u{10FE0}-\u{10FF6}\u{11001}\u{11038}-\u{11046}\u{11052}-\u{11065}\u{11070}\u{11073}\u{11074}\u{1107F}-\u{11081}\u{110B3}-\u{110B6}\u{110B9}\u{110BA}\u{110C2}\u{11100}-\u{11102}\u{11127}-\u{1112B}\u{1112D}-\u{11134}\u{11173}\u{11180}\u{11181}\u{111B6}-\u{111BE}\u{111C9}-\u{111CC}\u{111CF}\u{1122F}-\u{11231}\u{11234}\u{11236}\u{11237}\u{1123E}\u{112DF}\u{112E3}-\u{112EA}\u{11300}\u{11301}\u{1133B}\u{1133C}\u{11340}\u{11366}-\u{1136C}\u{11370}-\u{11374}\u{11438}-\u{1143F}\u{11442}-\u{11444}\u{11446}\u{1145E}\u{114B3}-\u{114B8}\u{114BA}\u{114BF}\u{114C0}\u{114C2}\u{114C3}\u{115B2}-\u{115B5}\u{115BC}\u{115BD}\u{115BF}\u{115C0}\u{115DC}\u{115DD}\u{11633}-\u{1163A}\u{1163D}\u{1163F}\u{11640}\u{11660}-\u{1166C}\u{116AB}\u{116AD}\u{116B0}-\u{116B5}\u{116B7}\u{1171D}-\u{1171F}\u{11722}-\u{11725}\u{11727}-\u{1172B}\u{1182F}-\u{11837}\u{11839}\u{1183A}\u{1193B}\u{1193C}\u{1193E}\u{11943}\u{119D4}-\u{119D7}\u{119DA}\u{119DB}\u{119E0}\u{11A01}-\u{11A06}\u{11A09}\u{11A0A}\u{11A33}-\u{11A38}\u{11A3B}-\u{11A3E}\u{11A47}\u{11A51}-\u{11A56}\u{11A59}-\u{11A5B}\u{11A8A}-\u{11A96}\u{11A98}\u{11A99}\u{11C30}-\u{11C36}\u{11C38}-\u{11C3D}\u{11C92}-\u{11CA7}\u{11CAA}-\u{11CB0}\u{11CB2}\u{11CB3}\u{11CB5}\u{11CB6}\u{11D31}-\u{11D36}\u{11D3A}\u{11D3C}\u{11D3D}\u{11D3F}-\u{11D45}\u{11D47}\u{11D90}\u{11D91}\u{11D95}\u{11D97}\u{11EF3}\u{11EF4}\u{11FD5}-\u{11FF1}\u{16AF0}-\u{16AF4}\u{16B30}-\u{16B36}\u{16F4F}\u{16F8F}-\u{16F92}\u{16FE2}\u{16FE4}\u{1BC9D}\u{1BC9E}\u{1BCA0}-\u{1BCA3}\u{1CF00}-\u{1CF2D}\u{1CF30}-\u{1CF46}\u{1D167}-\u{1D169}\u{1D173}-\u{1D182}\u{1D185}-\u{1D18B}\u{1D1AA}-\u{1D1AD}\u{1D1E9}\u{1D1EA}\u{1D200}-\u{1D245}\u{1D300}-\u{1D356}\u{1D6DB}\u{1D715}\u{1D74F}\u{1D789}\u{1D7C3}\u{1D7CE}-\u{1D7FF}\u{1DA00}-\u{1DA36}\u{1DA3B}-\u{1DA6C}\u{1DA75}\u{1DA84}\u{1DA9B}-\u{1DA9F}\u{1DAA1}-\u{1DAAF}\u{1E000}-\u{1E006}\u{1E008}-\u{1E018}\u{1E01B}-\u{1E021}\u{1E023}\u{1E024}\u{1E026}-\u{1E02A}\u{1E130}-\u{1E136}\u{1E2AE}\u{1E2EC}-\u{1E2EF}\u{1E2FF}\u{1E800}-\u{1E8C4}\u{1E8C7}-\u{1E8D6}\u{1E900}-\u{1E94B}\u{1E950}-\u{1E959}\u{1E95E}\u{1E95F}\u{1EC71}-\u{1ECB4}\u{1ED01}-\u{1ED3D}\u{1EE00}-\u{1EE03}\u{1EE05}-\u{1EE1F}\u{1EE21}\u{1EE22}\u{1EE24}\u{1EE27}\u{1EE29}-\u{1EE32}\u{1EE34}-\u{1EE37}\u{1EE39}\u{1EE3B}\u{1EE42}\u{1EE47}\u{1EE49}\u{1EE4B}\u{1EE4D}-\u{1EE4F}\u{1EE51}\u{1EE52}\u{1EE54}\u{1EE57}\u{1EE59}\u{1EE5B}\u{1EE5D}\u{1EE5F}\u{1EE61}\u{1EE62}\u{1EE64}\u{1EE67}-\u{1EE6A}\u{1EE6C}-\u{1EE72}\u{1EE74}-\u{1EE77}\u{1EE79}-\u{1EE7C}\u{1EE7E}\u{1EE80}-\u{1EE89}\u{1EE8B}-\u{1EE9B}\u{1EEA1}-\u{1EEA3}\u{1EEA5}-\u{1EEA9}\u{1EEAB}-\u{1EEBB}\u{1EEF0}\u{1EEF1}\u{1F000}-\u{1F02B}\u{1F030}-\u{1F093}\u{1F0A0}-\u{1F0AE}\u{1F0B1}-\u{1F0BF}\u{1F0C1}-\u{1F0CF}\u{1F0D1}-\u{1F0F5}\u{1F100}-\u{1F10F}\u{1F12F}\u{1F16A}-\u{1F16F}\u{1F1AD}\u{1F260}-\u{1F265}\u{1F300}-\u{1F6D7}\u{1F6DD}-\u{1F6EC}\u{1F6F0}-\u{1F6FC}\u{1F700}-\u{1F773}\u{1F780}-\u{1F7D8}\u{1F7E0}-\u{1F7EB}\u{1F7F0}\u{1F800}-\u{1F80B}\u{1F810}-\u{1F847}\u{1F850}-\u{1F859}\u{1F860}-\u{1F887}\u{1F890}-\u{1F8AD}\u{1F8B0}\u{1F8B1}\u{1F900}-\u{1FA53}\u{1FA60}-\u{1FA6D}\u{1FA70}-\u{1FA74}\u{1FA78}-\u{1FA7C}\u{1FA80}-\u{1FA86}\u{1FA90}-\u{1FAAC}\u{1FAB0}-\u{1FABA}\u{1FAC0}-\u{1FAC5}\u{1FAD0}-\u{1FAD9}\u{1FAE0}-\u{1FAE7}\u{1FAF0}-\u{1FAF6}\u{1FB00}-\u{1FB92}\u{1FB94}-\u{1FBCA}\u{1FBF0}-\u{1FBF9}\u{E0001}\u{E0020}-\u{E007F}\u{E0100}-\u{E01EF}]*$/u; +const bidiS3 = /[0-9\xB2\xB3\xB9\u05BE\u05C0\u05C3\u05C6\u05D0-\u05EA\u05EF-\u05F4\u0600-\u0605\u0608\u060B\u060D\u061B-\u064A\u0660-\u0669\u066B-\u066F\u0671-\u06D5\u06DD\u06E5\u06E6\u06EE-\u070D\u070F\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07C0-\u07EA\u07F4\u07F5\u07FA\u07FE-\u0815\u081A\u0824\u0828\u0830-\u083E\u0840-\u0858\u085E\u0860-\u086A\u0870-\u088E\u0890\u0891\u08A0-\u08C9\u08E2\u200F\u2070\u2074-\u2079\u2080-\u2089\u2488-\u249B\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBC2\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFC\uFE70-\uFE74\uFE76-\uFEFC\uFF10-\uFF19\u{102E1}-\u{102FB}\u{10800}-\u{10805}\u{10808}\u{1080A}-\u{10835}\u{10837}\u{10838}\u{1083C}\u{1083F}-\u{10855}\u{10857}-\u{1089E}\u{108A7}-\u{108AF}\u{108E0}-\u{108F2}\u{108F4}\u{108F5}\u{108FB}-\u{1091B}\u{10920}-\u{10939}\u{1093F}\u{10980}-\u{109B7}\u{109BC}-\u{109CF}\u{109D2}-\u{10A00}\u{10A10}-\u{10A13}\u{10A15}-\u{10A17}\u{10A19}-\u{10A35}\u{10A40}-\u{10A48}\u{10A50}-\u{10A58}\u{10A60}-\u{10A9F}\u{10AC0}-\u{10AE4}\u{10AEB}-\u{10AF6}\u{10B00}-\u{10B35}\u{10B40}-\u{10B55}\u{10B58}-\u{10B72}\u{10B78}-\u{10B91}\u{10B99}-\u{10B9C}\u{10BA9}-\u{10BAF}\u{10C00}-\u{10C48}\u{10C80}-\u{10CB2}\u{10CC0}-\u{10CF2}\u{10CFA}-\u{10D23}\u{10D30}-\u{10D39}\u{10E60}-\u{10E7E}\u{10E80}-\u{10EA9}\u{10EAD}\u{10EB0}\u{10EB1}\u{10F00}-\u{10F27}\u{10F30}-\u{10F45}\u{10F51}-\u{10F59}\u{10F70}-\u{10F81}\u{10F86}-\u{10F89}\u{10FB0}-\u{10FCB}\u{10FE0}-\u{10FF6}\u{1D7CE}-\u{1D7FF}\u{1E800}-\u{1E8C4}\u{1E8C7}-\u{1E8CF}\u{1E900}-\u{1E943}\u{1E94B}\u{1E950}-\u{1E959}\u{1E95E}\u{1E95F}\u{1EC71}-\u{1ECB4}\u{1ED01}-\u{1ED3D}\u{1EE00}-\u{1EE03}\u{1EE05}-\u{1EE1F}\u{1EE21}\u{1EE22}\u{1EE24}\u{1EE27}\u{1EE29}-\u{1EE32}\u{1EE34}-\u{1EE37}\u{1EE39}\u{1EE3B}\u{1EE42}\u{1EE47}\u{1EE49}\u{1EE4B}\u{1EE4D}-\u{1EE4F}\u{1EE51}\u{1EE52}\u{1EE54}\u{1EE57}\u{1EE59}\u{1EE5B}\u{1EE5D}\u{1EE5F}\u{1EE61}\u{1EE62}\u{1EE64}\u{1EE67}-\u{1EE6A}\u{1EE6C}-\u{1EE72}\u{1EE74}-\u{1EE77}\u{1EE79}-\u{1EE7C}\u{1EE7E}\u{1EE80}-\u{1EE89}\u{1EE8B}-\u{1EE9B}\u{1EEA1}-\u{1EEA3}\u{1EEA5}-\u{1EEA9}\u{1EEAB}-\u{1EEBB}\u{1F100}-\u{1F10A}\u{1FBF0}-\u{1FBF9}][\u0300-\u036F\u0483-\u0489\u0591-\u05BD\u05BF\u05C1\u05C2\u05C4\u05C5\u05C7\u0610-\u061A\u064B-\u065F\u0670\u06D6-\u06DC\u06DF-\u06E4\u06E7\u06E8\u06EA-\u06ED\u0711\u0730-\u074A\u07A6-\u07B0\u07EB-\u07F3\u07FD\u0816-\u0819\u081B-\u0823\u0825-\u0827\u0829-\u082D\u0859-\u085B\u0898-\u089F\u08CA-\u08E1\u08E3-\u0902\u093A\u093C\u0941-\u0948\u094D\u0951-\u0957\u0962\u0963\u0981\u09BC\u09C1-\u09C4\u09CD\u09E2\u09E3\u09FE\u0A01\u0A02\u0A3C\u0A41\u0A42\u0A47\u0A48\u0A4B-\u0A4D\u0A51\u0A70\u0A71\u0A75\u0A81\u0A82\u0ABC\u0AC1-\u0AC5\u0AC7\u0AC8\u0ACD\u0AE2\u0AE3\u0AFA-\u0AFF\u0B01\u0B3C\u0B3F\u0B41-\u0B44\u0B4D\u0B55\u0B56\u0B62\u0B63\u0B82\u0BC0\u0BCD\u0C00\u0C04\u0C3C\u0C3E-\u0C40\u0C46-\u0C48\u0C4A-\u0C4D\u0C55\u0C56\u0C62\u0C63\u0C81\u0CBC\u0CCC\u0CCD\u0CE2\u0CE3\u0D00\u0D01\u0D3B\u0D3C\u0D41-\u0D44\u0D4D\u0D62\u0D63\u0D81\u0DCA\u0DD2-\u0DD4\u0DD6\u0E31\u0E34-\u0E3A\u0E47-\u0E4E\u0EB1\u0EB4-\u0EBC\u0EC8-\u0ECD\u0F18\u0F19\u0F35\u0F37\u0F39\u0F71-\u0F7E\u0F80-\u0F84\u0F86\u0F87\u0F8D-\u0F97\u0F99-\u0FBC\u0FC6\u102D-\u1030\u1032-\u1037\u1039\u103A\u103D\u103E\u1058\u1059\u105E-\u1060\u1071-\u1074\u1082\u1085\u1086\u108D\u109D\u135D-\u135F\u1712-\u1714\u1732\u1733\u1752\u1753\u1772\u1773\u17B4\u17B5\u17B7-\u17BD\u17C6\u17C9-\u17D3\u17DD\u180B-\u180D\u180F\u1885\u1886\u18A9\u1920-\u1922\u1927\u1928\u1932\u1939-\u193B\u1A17\u1A18\u1A1B\u1A56\u1A58-\u1A5E\u1A60\u1A62\u1A65-\u1A6C\u1A73-\u1A7C\u1A7F\u1AB0-\u1ACE\u1B00-\u1B03\u1B34\u1B36-\u1B3A\u1B3C\u1B42\u1B6B-\u1B73\u1B80\u1B81\u1BA2-\u1BA5\u1BA8\u1BA9\u1BAB-\u1BAD\u1BE6\u1BE8\u1BE9\u1BED\u1BEF-\u1BF1\u1C2C-\u1C33\u1C36\u1C37\u1CD0-\u1CD2\u1CD4-\u1CE0\u1CE2-\u1CE8\u1CED\u1CF4\u1CF8\u1CF9\u1DC0-\u1DFF\u20D0-\u20F0\u2CEF-\u2CF1\u2D7F\u2DE0-\u2DFF\u302A-\u302D\u3099\u309A\uA66F-\uA672\uA674-\uA67D\uA69E\uA69F\uA6F0\uA6F1\uA802\uA806\uA80B\uA825\uA826\uA82C\uA8C4\uA8C5\uA8E0-\uA8F1\uA8FF\uA926-\uA92D\uA947-\uA951\uA980-\uA982\uA9B3\uA9B6-\uA9B9\uA9BC\uA9BD\uA9E5\uAA29-\uAA2E\uAA31\uAA32\uAA35\uAA36\uAA43\uAA4C\uAA7C\uAAB0\uAAB2-\uAAB4\uAAB7\uAAB8\uAABE\uAABF\uAAC1\uAAEC\uAAED\uAAF6\uABE5\uABE8\uABED\uFB1E\uFE00-\uFE0F\uFE20-\uFE2F\u{101FD}\u{102E0}\u{10376}-\u{1037A}\u{10A01}-\u{10A03}\u{10A05}\u{10A06}\u{10A0C}-\u{10A0F}\u{10A38}-\u{10A3A}\u{10A3F}\u{10AE5}\u{10AE6}\u{10D24}-\u{10D27}\u{10EAB}\u{10EAC}\u{10F46}-\u{10F50}\u{10F82}-\u{10F85}\u{11001}\u{11038}-\u{11046}\u{11070}\u{11073}\u{11074}\u{1107F}-\u{11081}\u{110B3}-\u{110B6}\u{110B9}\u{110BA}\u{110C2}\u{11100}-\u{11102}\u{11127}-\u{1112B}\u{1112D}-\u{11134}\u{11173}\u{11180}\u{11181}\u{111B6}-\u{111BE}\u{111C9}-\u{111CC}\u{111CF}\u{1122F}-\u{11231}\u{11234}\u{11236}\u{11237}\u{1123E}\u{112DF}\u{112E3}-\u{112EA}\u{11300}\u{11301}\u{1133B}\u{1133C}\u{11340}\u{11366}-\u{1136C}\u{11370}-\u{11374}\u{11438}-\u{1143F}\u{11442}-\u{11444}\u{11446}\u{1145E}\u{114B3}-\u{114B8}\u{114BA}\u{114BF}\u{114C0}\u{114C2}\u{114C3}\u{115B2}-\u{115B5}\u{115BC}\u{115BD}\u{115BF}\u{115C0}\u{115DC}\u{115DD}\u{11633}-\u{1163A}\u{1163D}\u{1163F}\u{11640}\u{116AB}\u{116AD}\u{116B0}-\u{116B5}\u{116B7}\u{1171D}-\u{1171F}\u{11722}-\u{11725}\u{11727}-\u{1172B}\u{1182F}-\u{11837}\u{11839}\u{1183A}\u{1193B}\u{1193C}\u{1193E}\u{11943}\u{119D4}-\u{119D7}\u{119DA}\u{119DB}\u{119E0}\u{11A01}-\u{11A06}\u{11A09}\u{11A0A}\u{11A33}-\u{11A38}\u{11A3B}-\u{11A3E}\u{11A47}\u{11A51}-\u{11A56}\u{11A59}-\u{11A5B}\u{11A8A}-\u{11A96}\u{11A98}\u{11A99}\u{11C30}-\u{11C36}\u{11C38}-\u{11C3D}\u{11C92}-\u{11CA7}\u{11CAA}-\u{11CB0}\u{11CB2}\u{11CB3}\u{11CB5}\u{11CB6}\u{11D31}-\u{11D36}\u{11D3A}\u{11D3C}\u{11D3D}\u{11D3F}-\u{11D45}\u{11D47}\u{11D90}\u{11D91}\u{11D95}\u{11D97}\u{11EF3}\u{11EF4}\u{16AF0}-\u{16AF4}\u{16B30}-\u{16B36}\u{16F4F}\u{16F8F}-\u{16F92}\u{16FE4}\u{1BC9D}\u{1BC9E}\u{1CF00}-\u{1CF2D}\u{1CF30}-\u{1CF46}\u{1D167}-\u{1D169}\u{1D17B}-\u{1D182}\u{1D185}-\u{1D18B}\u{1D1AA}-\u{1D1AD}\u{1D242}-\u{1D244}\u{1DA00}-\u{1DA36}\u{1DA3B}-\u{1DA6C}\u{1DA75}\u{1DA84}\u{1DA9B}-\u{1DA9F}\u{1DAA1}-\u{1DAAF}\u{1E000}-\u{1E006}\u{1E008}-\u{1E018}\u{1E01B}-\u{1E021}\u{1E023}\u{1E024}\u{1E026}-\u{1E02A}\u{1E130}-\u{1E136}\u{1E2AE}\u{1E2EC}-\u{1E2EF}\u{1E8D0}-\u{1E8D6}\u{1E944}-\u{1E94A}\u{E0100}-\u{E01EF}]*$/u; +const bidiS4EN = /[0-9\xB2\xB3\xB9\u06F0-\u06F9\u2070\u2074-\u2079\u2080-\u2089\u2488-\u249B\uFF10-\uFF19\u{102E1}-\u{102FB}\u{1D7CE}-\u{1D7FF}\u{1F100}-\u{1F10A}\u{1FBF0}-\u{1FBF9}]/u; +const bidiS4AN = /[\u0600-\u0605\u0660-\u0669\u066B\u066C\u06DD\u0890\u0891\u08E2\u{10D30}-\u{10D39}\u{10E60}-\u{10E7E}]/u; +const bidiS5 = /^[\0-\x08\x0E-\x1B!-\x84\x86-\u0377\u037A-\u037F\u0384-\u038A\u038C\u038E-\u03A1\u03A3-\u052F\u0531-\u0556\u0559-\u058A\u058D-\u058F\u0591-\u05BD\u05BF\u05C1\u05C2\u05C4\u05C5\u05C7\u0606\u0607\u0609\u060A\u060C\u060E-\u061A\u064B-\u065F\u066A\u0670\u06D6-\u06DC\u06DE-\u06E4\u06E7-\u06ED\u06F0-\u06F9\u0711\u0730-\u074A\u07A6-\u07B0\u07EB-\u07F3\u07F6-\u07F9\u07FD\u0816-\u0819\u081B-\u0823\u0825-\u0827\u0829-\u082D\u0859-\u085B\u0898-\u089F\u08CA-\u08E1\u08E3-\u0983\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BC-\u09C4\u09C7\u09C8\u09CB-\u09CE\u09D7\u09DC\u09DD\u09DF-\u09E3\u09E6-\u09FE\u0A01-\u0A03\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A3C\u0A3E-\u0A42\u0A47\u0A48\u0A4B-\u0A4D\u0A51\u0A59-\u0A5C\u0A5E\u0A66-\u0A76\u0A81-\u0A83\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABC-\u0AC5\u0AC7-\u0AC9\u0ACB-\u0ACD\u0AD0\u0AE0-\u0AE3\u0AE6-\u0AF1\u0AF9-\u0AFF\u0B01-\u0B03\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3C-\u0B44\u0B47\u0B48\u0B4B-\u0B4D\u0B55-\u0B57\u0B5C\u0B5D\u0B5F-\u0B63\u0B66-\u0B77\u0B82\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BBE-\u0BC2\u0BC6-\u0BC8\u0BCA-\u0BCD\u0BD0\u0BD7\u0BE6-\u0BFA\u0C00-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3C-\u0C44\u0C46-\u0C48\u0C4A-\u0C4D\u0C55\u0C56\u0C58-\u0C5A\u0C5D\u0C60-\u0C63\u0C66-\u0C6F\u0C77-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBC-\u0CC4\u0CC6-\u0CC8\u0CCA-\u0CCD\u0CD5\u0CD6\u0CDD\u0CDE\u0CE0-\u0CE3\u0CE6-\u0CEF\u0CF1\u0CF2\u0D00-\u0D0C\u0D0E-\u0D10\u0D12-\u0D44\u0D46-\u0D48\u0D4A-\u0D4F\u0D54-\u0D63\u0D66-\u0D7F\u0D81-\u0D83\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0DCA\u0DCF-\u0DD4\u0DD6\u0DD8-\u0DDF\u0DE6-\u0DEF\u0DF2-\u0DF4\u0E01-\u0E3A\u0E3F-\u0E5B\u0E81\u0E82\u0E84\u0E86-\u0E8A\u0E8C-\u0EA3\u0EA5\u0EA7-\u0EBD\u0EC0-\u0EC4\u0EC6\u0EC8-\u0ECD\u0ED0-\u0ED9\u0EDC-\u0EDF\u0F00-\u0F47\u0F49-\u0F6C\u0F71-\u0F97\u0F99-\u0FBC\u0FBE-\u0FCC\u0FCE-\u0FDA\u1000-\u10C5\u10C7\u10CD\u10D0-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u135D-\u137C\u1380-\u1399\u13A0-\u13F5\u13F8-\u13FD\u1400-\u167F\u1681-\u169C\u16A0-\u16F8\u1700-\u1715\u171F-\u1736\u1740-\u1753\u1760-\u176C\u176E-\u1770\u1772\u1773\u1780-\u17DD\u17E0-\u17E9\u17F0-\u17F9\u1800-\u1819\u1820-\u1878\u1880-\u18AA\u18B0-\u18F5\u1900-\u191E\u1920-\u192B\u1930-\u193B\u1940\u1944-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u19D0-\u19DA\u19DE-\u1A1B\u1A1E-\u1A5E\u1A60-\u1A7C\u1A7F-\u1A89\u1A90-\u1A99\u1AA0-\u1AAD\u1AB0-\u1ACE\u1B00-\u1B4C\u1B50-\u1B7E\u1B80-\u1BF3\u1BFC-\u1C37\u1C3B-\u1C49\u1C4D-\u1C88\u1C90-\u1CBA\u1CBD-\u1CC7\u1CD0-\u1CFA\u1D00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FC4\u1FC6-\u1FD3\u1FD6-\u1FDB\u1FDD-\u1FEF\u1FF2-\u1FF4\u1FF6-\u1FFE\u200B-\u200E\u2010-\u2027\u202F-\u205E\u2060-\u2064\u206A-\u2071\u2074-\u208E\u2090-\u209C\u20A0-\u20C0\u20D0-\u20F0\u2100-\u218B\u2190-\u2426\u2440-\u244A\u2460-\u2B73\u2B76-\u2B95\u2B97-\u2CF3\u2CF9-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D70\u2D7F-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2DE0-\u2E5D\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3001-\u303F\u3041-\u3096\u3099-\u30FF\u3105-\u312F\u3131-\u318E\u3190-\u31E3\u31F0-\u321E\u3220-\uA48C\uA490-\uA4C6\uA4D0-\uA62B\uA640-\uA6F7\uA700-\uA7CA\uA7D0\uA7D1\uA7D3\uA7D5-\uA7D9\uA7F2-\uA82C\uA830-\uA839\uA840-\uA877\uA880-\uA8C5\uA8CE-\uA8D9\uA8E0-\uA953\uA95F-\uA97C\uA980-\uA9CD\uA9CF-\uA9D9\uA9DE-\uA9FE\uAA00-\uAA36\uAA40-\uAA4D\uAA50-\uAA59\uAA5C-\uAAC2\uAADB-\uAAF6\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB6B\uAB70-\uABED\uABF0-\uABF9\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uD800-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1E\uFB29\uFD3E-\uFD4F\uFDCF\uFDFD-\uFE19\uFE20-\uFE52\uFE54-\uFE66\uFE68-\uFE6B\uFEFF\uFF01-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC\uFFE0-\uFFE6\uFFE8-\uFFEE\uFFF9-\uFFFD\u{10000}-\u{1000B}\u{1000D}-\u{10026}\u{10028}-\u{1003A}\u{1003C}\u{1003D}\u{1003F}-\u{1004D}\u{10050}-\u{1005D}\u{10080}-\u{100FA}\u{10100}-\u{10102}\u{10107}-\u{10133}\u{10137}-\u{1018E}\u{10190}-\u{1019C}\u{101A0}\u{101D0}-\u{101FD}\u{10280}-\u{1029C}\u{102A0}-\u{102D0}\u{102E0}-\u{102FB}\u{10300}-\u{10323}\u{1032D}-\u{1034A}\u{10350}-\u{1037A}\u{10380}-\u{1039D}\u{1039F}-\u{103C3}\u{103C8}-\u{103D5}\u{10400}-\u{1049D}\u{104A0}-\u{104A9}\u{104B0}-\u{104D3}\u{104D8}-\u{104FB}\u{10500}-\u{10527}\u{10530}-\u{10563}\u{1056F}-\u{1057A}\u{1057C}-\u{1058A}\u{1058C}-\u{10592}\u{10594}\u{10595}\u{10597}-\u{105A1}\u{105A3}-\u{105B1}\u{105B3}-\u{105B9}\u{105BB}\u{105BC}\u{10600}-\u{10736}\u{10740}-\u{10755}\u{10760}-\u{10767}\u{10780}-\u{10785}\u{10787}-\u{107B0}\u{107B2}-\u{107BA}\u{1091F}\u{10A01}-\u{10A03}\u{10A05}\u{10A06}\u{10A0C}-\u{10A0F}\u{10A38}-\u{10A3A}\u{10A3F}\u{10AE5}\u{10AE6}\u{10B39}-\u{10B3F}\u{10D24}-\u{10D27}\u{10EAB}\u{10EAC}\u{10F46}-\u{10F50}\u{10F82}-\u{10F85}\u{11000}-\u{1104D}\u{11052}-\u{11075}\u{1107F}-\u{110C2}\u{110CD}\u{110D0}-\u{110E8}\u{110F0}-\u{110F9}\u{11100}-\u{11134}\u{11136}-\u{11147}\u{11150}-\u{11176}\u{11180}-\u{111DF}\u{111E1}-\u{111F4}\u{11200}-\u{11211}\u{11213}-\u{1123E}\u{11280}-\u{11286}\u{11288}\u{1128A}-\u{1128D}\u{1128F}-\u{1129D}\u{1129F}-\u{112A9}\u{112B0}-\u{112EA}\u{112F0}-\u{112F9}\u{11300}-\u{11303}\u{11305}-\u{1130C}\u{1130F}\u{11310}\u{11313}-\u{11328}\u{1132A}-\u{11330}\u{11332}\u{11333}\u{11335}-\u{11339}\u{1133B}-\u{11344}\u{11347}\u{11348}\u{1134B}-\u{1134D}\u{11350}\u{11357}\u{1135D}-\u{11363}\u{11366}-\u{1136C}\u{11370}-\u{11374}\u{11400}-\u{1145B}\u{1145D}-\u{11461}\u{11480}-\u{114C7}\u{114D0}-\u{114D9}\u{11580}-\u{115B5}\u{115B8}-\u{115DD}\u{11600}-\u{11644}\u{11650}-\u{11659}\u{11660}-\u{1166C}\u{11680}-\u{116B9}\u{116C0}-\u{116C9}\u{11700}-\u{1171A}\u{1171D}-\u{1172B}\u{11730}-\u{11746}\u{11800}-\u{1183B}\u{118A0}-\u{118F2}\u{118FF}-\u{11906}\u{11909}\u{1190C}-\u{11913}\u{11915}\u{11916}\u{11918}-\u{11935}\u{11937}\u{11938}\u{1193B}-\u{11946}\u{11950}-\u{11959}\u{119A0}-\u{119A7}\u{119AA}-\u{119D7}\u{119DA}-\u{119E4}\u{11A00}-\u{11A47}\u{11A50}-\u{11AA2}\u{11AB0}-\u{11AF8}\u{11C00}-\u{11C08}\u{11C0A}-\u{11C36}\u{11C38}-\u{11C45}\u{11C50}-\u{11C6C}\u{11C70}-\u{11C8F}\u{11C92}-\u{11CA7}\u{11CA9}-\u{11CB6}\u{11D00}-\u{11D06}\u{11D08}\u{11D09}\u{11D0B}-\u{11D36}\u{11D3A}\u{11D3C}\u{11D3D}\u{11D3F}-\u{11D47}\u{11D50}-\u{11D59}\u{11D60}-\u{11D65}\u{11D67}\u{11D68}\u{11D6A}-\u{11D8E}\u{11D90}\u{11D91}\u{11D93}-\u{11D98}\u{11DA0}-\u{11DA9}\u{11EE0}-\u{11EF8}\u{11FB0}\u{11FC0}-\u{11FF1}\u{11FFF}-\u{12399}\u{12400}-\u{1246E}\u{12470}-\u{12474}\u{12480}-\u{12543}\u{12F90}-\u{12FF2}\u{13000}-\u{1342E}\u{13430}-\u{13438}\u{14400}-\u{14646}\u{16800}-\u{16A38}\u{16A40}-\u{16A5E}\u{16A60}-\u{16A69}\u{16A6E}-\u{16ABE}\u{16AC0}-\u{16AC9}\u{16AD0}-\u{16AED}\u{16AF0}-\u{16AF5}\u{16B00}-\u{16B45}\u{16B50}-\u{16B59}\u{16B5B}-\u{16B61}\u{16B63}-\u{16B77}\u{16B7D}-\u{16B8F}\u{16E40}-\u{16E9A}\u{16F00}-\u{16F4A}\u{16F4F}-\u{16F87}\u{16F8F}-\u{16F9F}\u{16FE0}-\u{16FE4}\u{16FF0}\u{16FF1}\u{17000}-\u{187F7}\u{18800}-\u{18CD5}\u{18D00}-\u{18D08}\u{1AFF0}-\u{1AFF3}\u{1AFF5}-\u{1AFFB}\u{1AFFD}\u{1AFFE}\u{1B000}-\u{1B122}\u{1B150}-\u{1B152}\u{1B164}-\u{1B167}\u{1B170}-\u{1B2FB}\u{1BC00}-\u{1BC6A}\u{1BC70}-\u{1BC7C}\u{1BC80}-\u{1BC88}\u{1BC90}-\u{1BC99}\u{1BC9C}-\u{1BCA3}\u{1CF00}-\u{1CF2D}\u{1CF30}-\u{1CF46}\u{1CF50}-\u{1CFC3}\u{1D000}-\u{1D0F5}\u{1D100}-\u{1D126}\u{1D129}-\u{1D1EA}\u{1D200}-\u{1D245}\u{1D2E0}-\u{1D2F3}\u{1D300}-\u{1D356}\u{1D360}-\u{1D378}\u{1D400}-\u{1D454}\u{1D456}-\u{1D49C}\u{1D49E}\u{1D49F}\u{1D4A2}\u{1D4A5}\u{1D4A6}\u{1D4A9}-\u{1D4AC}\u{1D4AE}-\u{1D4B9}\u{1D4BB}\u{1D4BD}-\u{1D4C3}\u{1D4C5}-\u{1D505}\u{1D507}-\u{1D50A}\u{1D50D}-\u{1D514}\u{1D516}-\u{1D51C}\u{1D51E}-\u{1D539}\u{1D53B}-\u{1D53E}\u{1D540}-\u{1D544}\u{1D546}\u{1D54A}-\u{1D550}\u{1D552}-\u{1D6A5}\u{1D6A8}-\u{1D7CB}\u{1D7CE}-\u{1DA8B}\u{1DA9B}-\u{1DA9F}\u{1DAA1}-\u{1DAAF}\u{1DF00}-\u{1DF1E}\u{1E000}-\u{1E006}\u{1E008}-\u{1E018}\u{1E01B}-\u{1E021}\u{1E023}\u{1E024}\u{1E026}-\u{1E02A}\u{1E100}-\u{1E12C}\u{1E130}-\u{1E13D}\u{1E140}-\u{1E149}\u{1E14E}\u{1E14F}\u{1E290}-\u{1E2AE}\u{1E2C0}-\u{1E2F9}\u{1E2FF}\u{1E7E0}-\u{1E7E6}\u{1E7E8}-\u{1E7EB}\u{1E7ED}\u{1E7EE}\u{1E7F0}-\u{1E7FE}\u{1E8D0}-\u{1E8D6}\u{1E944}-\u{1E94A}\u{1EEF0}\u{1EEF1}\u{1F000}-\u{1F02B}\u{1F030}-\u{1F093}\u{1F0A0}-\u{1F0AE}\u{1F0B1}-\u{1F0BF}\u{1F0C1}-\u{1F0CF}\u{1F0D1}-\u{1F0F5}\u{1F100}-\u{1F1AD}\u{1F1E6}-\u{1F202}\u{1F210}-\u{1F23B}\u{1F240}-\u{1F248}\u{1F250}\u{1F251}\u{1F260}-\u{1F265}\u{1F300}-\u{1F6D7}\u{1F6DD}-\u{1F6EC}\u{1F6F0}-\u{1F6FC}\u{1F700}-\u{1F773}\u{1F780}-\u{1F7D8}\u{1F7E0}-\u{1F7EB}\u{1F7F0}\u{1F800}-\u{1F80B}\u{1F810}-\u{1F847}\u{1F850}-\u{1F859}\u{1F860}-\u{1F887}\u{1F890}-\u{1F8AD}\u{1F8B0}\u{1F8B1}\u{1F900}-\u{1FA53}\u{1FA60}-\u{1FA6D}\u{1FA70}-\u{1FA74}\u{1FA78}-\u{1FA7C}\u{1FA80}-\u{1FA86}\u{1FA90}-\u{1FAAC}\u{1FAB0}-\u{1FABA}\u{1FAC0}-\u{1FAC5}\u{1FAD0}-\u{1FAD9}\u{1FAE0}-\u{1FAE7}\u{1FAF0}-\u{1FAF6}\u{1FB00}-\u{1FB92}\u{1FB94}-\u{1FBCA}\u{1FBF0}-\u{1FBF9}\u{20000}-\u{2A6DF}\u{2A700}-\u{2B738}\u{2B740}-\u{2B81D}\u{2B820}-\u{2CEA1}\u{2CEB0}-\u{2EBE0}\u{2F800}-\u{2FA1D}\u{30000}-\u{3134A}\u{E0001}\u{E0020}-\u{E007F}\u{E0100}-\u{E01EF}\u{F0000}-\u{FFFFD}\u{100000}-\u{10FFFD}]*$/u; +const bidiS6 = /[0-9A-Za-z\xAA\xB2\xB3\xB5\xB9\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02B8\u02BB-\u02C1\u02D0\u02D1\u02E0-\u02E4\u02EE\u0370-\u0373\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0482\u048A-\u052F\u0531-\u0556\u0559-\u0589\u06F0-\u06F9\u0903-\u0939\u093B\u093D-\u0940\u0949-\u094C\u094E-\u0950\u0958-\u0961\u0964-\u0980\u0982\u0983\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD-\u09C0\u09C7\u09C8\u09CB\u09CC\u09CE\u09D7\u09DC\u09DD\u09DF-\u09E1\u09E6-\u09F1\u09F4-\u09FA\u09FC\u09FD\u0A03\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A3E-\u0A40\u0A59-\u0A5C\u0A5E\u0A66-\u0A6F\u0A72-\u0A74\u0A76\u0A83\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD-\u0AC0\u0AC9\u0ACB\u0ACC\u0AD0\u0AE0\u0AE1\u0AE6-\u0AF0\u0AF9\u0B02\u0B03\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B3E\u0B40\u0B47\u0B48\u0B4B\u0B4C\u0B57\u0B5C\u0B5D\u0B5F-\u0B61\u0B66-\u0B77\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BBE\u0BBF\u0BC1\u0BC2\u0BC6-\u0BC8\u0BCA-\u0BCC\u0BD0\u0BD7\u0BE6-\u0BF2\u0C01-\u0C03\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D\u0C41-\u0C44\u0C58-\u0C5A\u0C5D\u0C60\u0C61\u0C66-\u0C6F\u0C77\u0C7F\u0C80\u0C82-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD-\u0CC4\u0CC6-\u0CC8\u0CCA\u0CCB\u0CD5\u0CD6\u0CDD\u0CDE\u0CE0\u0CE1\u0CE6-\u0CEF\u0CF1\u0CF2\u0D02-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D-\u0D40\u0D46-\u0D48\u0D4A-\u0D4C\u0D4E\u0D4F\u0D54-\u0D61\u0D66-\u0D7F\u0D82\u0D83\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0DCF-\u0DD1\u0DD8-\u0DDF\u0DE6-\u0DEF\u0DF2-\u0DF4\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E4F-\u0E5B\u0E81\u0E82\u0E84\u0E86-\u0E8A\u0E8C-\u0EA3\u0EA5\u0EA7-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0ED0-\u0ED9\u0EDC-\u0EDF\u0F00-\u0F17\u0F1A-\u0F34\u0F36\u0F38\u0F3E-\u0F47\u0F49-\u0F6C\u0F7F\u0F85\u0F88-\u0F8C\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE-\u0FDA\u1000-\u102C\u1031\u1038\u103B\u103C\u103F-\u1057\u105A-\u105D\u1061-\u1070\u1075-\u1081\u1083\u1084\u1087-\u108C\u108E-\u109C\u109E-\u10C5\u10C7\u10CD\u10D0-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1360-\u137C\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u167F\u1681-\u169A\u16A0-\u16F8\u1700-\u1711\u1715\u171F-\u1731\u1734-\u1736\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17B6\u17BE-\u17C5\u17C7\u17C8\u17D4-\u17DA\u17DC\u17E0-\u17E9\u1810-\u1819\u1820-\u1878\u1880-\u1884\u1887-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191E\u1923-\u1926\u1929-\u192B\u1930\u1931\u1933-\u1938\u1946-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u19D0-\u19DA\u1A00-\u1A16\u1A19\u1A1A\u1A1E-\u1A55\u1A57\u1A61\u1A63\u1A64\u1A6D-\u1A72\u1A80-\u1A89\u1A90-\u1A99\u1AA0-\u1AAD\u1B04-\u1B33\u1B35\u1B3B\u1B3D-\u1B41\u1B43-\u1B4C\u1B50-\u1B6A\u1B74-\u1B7E\u1B82-\u1BA1\u1BA6\u1BA7\u1BAA\u1BAE-\u1BE5\u1BE7\u1BEA-\u1BEC\u1BEE\u1BF2\u1BF3\u1BFC-\u1C2B\u1C34\u1C35\u1C3B-\u1C49\u1C4D-\u1C88\u1C90-\u1CBA\u1CBD-\u1CC7\u1CD3\u1CE1\u1CE9-\u1CEC\u1CEE-\u1CF3\u1CF5-\u1CF7\u1CFA\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u200E\u2070\u2071\u2074-\u2079\u207F-\u2089\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u214F\u2160-\u2188\u2336-\u237A\u2395\u2488-\u24E9\u26AC\u2800-\u28FF\u2C00-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D70\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u3005-\u3007\u3021-\u3029\u302E\u302F\u3031-\u3035\u3038-\u303C\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312F\u3131-\u318E\u3190-\u31BF\u31F0-\u321C\u3220-\u324F\u3260-\u327B\u327F-\u32B0\u32C0-\u32CB\u32D0-\u3376\u337B-\u33DD\u33E0-\u33FE\u3400-\u4DBF\u4E00-\uA48C\uA4D0-\uA60C\uA610-\uA62B\uA640-\uA66E\uA680-\uA69D\uA6A0-\uA6EF\uA6F2-\uA6F7\uA722-\uA787\uA789-\uA7CA\uA7D0\uA7D1\uA7D3\uA7D5-\uA7D9\uA7F2-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA824\uA827\uA830-\uA837\uA840-\uA873\uA880-\uA8C3\uA8CE-\uA8D9\uA8F2-\uA8FE\uA900-\uA925\uA92E-\uA946\uA952\uA953\uA95F-\uA97C\uA983-\uA9B2\uA9B4\uA9B5\uA9BA\uA9BB\uA9BE-\uA9CD\uA9CF-\uA9D9\uA9DE-\uA9E4\uA9E6-\uA9FE\uAA00-\uAA28\uAA2F\uAA30\uAA33\uAA34\uAA40-\uAA42\uAA44-\uAA4B\uAA4D\uAA50-\uAA59\uAA5C-\uAA7B\uAA7D-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAAEB\uAAEE-\uAAF5\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB69\uAB70-\uABE4\uABE6\uABE7\uABE9-\uABEC\uABF0-\uABF9\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uD800-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFF10-\uFF19\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC\u{10000}-\u{1000B}\u{1000D}-\u{10026}\u{10028}-\u{1003A}\u{1003C}\u{1003D}\u{1003F}-\u{1004D}\u{10050}-\u{1005D}\u{10080}-\u{100FA}\u{10100}\u{10102}\u{10107}-\u{10133}\u{10137}-\u{1013F}\u{1018D}\u{1018E}\u{101D0}-\u{101FC}\u{10280}-\u{1029C}\u{102A0}-\u{102D0}\u{102E1}-\u{102FB}\u{10300}-\u{10323}\u{1032D}-\u{1034A}\u{10350}-\u{10375}\u{10380}-\u{1039D}\u{1039F}-\u{103C3}\u{103C8}-\u{103D5}\u{10400}-\u{1049D}\u{104A0}-\u{104A9}\u{104B0}-\u{104D3}\u{104D8}-\u{104FB}\u{10500}-\u{10527}\u{10530}-\u{10563}\u{1056F}-\u{1057A}\u{1057C}-\u{1058A}\u{1058C}-\u{10592}\u{10594}\u{10595}\u{10597}-\u{105A1}\u{105A3}-\u{105B1}\u{105B3}-\u{105B9}\u{105BB}\u{105BC}\u{10600}-\u{10736}\u{10740}-\u{10755}\u{10760}-\u{10767}\u{10780}-\u{10785}\u{10787}-\u{107B0}\u{107B2}-\u{107BA}\u{11000}\u{11002}-\u{11037}\u{11047}-\u{1104D}\u{11066}-\u{1106F}\u{11071}\u{11072}\u{11075}\u{11082}-\u{110B2}\u{110B7}\u{110B8}\u{110BB}-\u{110C1}\u{110CD}\u{110D0}-\u{110E8}\u{110F0}-\u{110F9}\u{11103}-\u{11126}\u{1112C}\u{11136}-\u{11147}\u{11150}-\u{11172}\u{11174}-\u{11176}\u{11182}-\u{111B5}\u{111BF}-\u{111C8}\u{111CD}\u{111CE}\u{111D0}-\u{111DF}\u{111E1}-\u{111F4}\u{11200}-\u{11211}\u{11213}-\u{1122E}\u{11232}\u{11233}\u{11235}\u{11238}-\u{1123D}\u{11280}-\u{11286}\u{11288}\u{1128A}-\u{1128D}\u{1128F}-\u{1129D}\u{1129F}-\u{112A9}\u{112B0}-\u{112DE}\u{112E0}-\u{112E2}\u{112F0}-\u{112F9}\u{11302}\u{11303}\u{11305}-\u{1130C}\u{1130F}\u{11310}\u{11313}-\u{11328}\u{1132A}-\u{11330}\u{11332}\u{11333}\u{11335}-\u{11339}\u{1133D}-\u{1133F}\u{11341}-\u{11344}\u{11347}\u{11348}\u{1134B}-\u{1134D}\u{11350}\u{11357}\u{1135D}-\u{11363}\u{11400}-\u{11437}\u{11440}\u{11441}\u{11445}\u{11447}-\u{1145B}\u{1145D}\u{1145F}-\u{11461}\u{11480}-\u{114B2}\u{114B9}\u{114BB}-\u{114BE}\u{114C1}\u{114C4}-\u{114C7}\u{114D0}-\u{114D9}\u{11580}-\u{115B1}\u{115B8}-\u{115BB}\u{115BE}\u{115C1}-\u{115DB}\u{11600}-\u{11632}\u{1163B}\u{1163C}\u{1163E}\u{11641}-\u{11644}\u{11650}-\u{11659}\u{11680}-\u{116AA}\u{116AC}\u{116AE}\u{116AF}\u{116B6}\u{116B8}\u{116B9}\u{116C0}-\u{116C9}\u{11700}-\u{1171A}\u{11720}\u{11721}\u{11726}\u{11730}-\u{11746}\u{11800}-\u{1182E}\u{11838}\u{1183B}\u{118A0}-\u{118F2}\u{118FF}-\u{11906}\u{11909}\u{1190C}-\u{11913}\u{11915}\u{11916}\u{11918}-\u{11935}\u{11937}\u{11938}\u{1193D}\u{1193F}-\u{11942}\u{11944}-\u{11946}\u{11950}-\u{11959}\u{119A0}-\u{119A7}\u{119AA}-\u{119D3}\u{119DC}-\u{119DF}\u{119E1}-\u{119E4}\u{11A00}\u{11A07}\u{11A08}\u{11A0B}-\u{11A32}\u{11A39}\u{11A3A}\u{11A3F}-\u{11A46}\u{11A50}\u{11A57}\u{11A58}\u{11A5C}-\u{11A89}\u{11A97}\u{11A9A}-\u{11AA2}\u{11AB0}-\u{11AF8}\u{11C00}-\u{11C08}\u{11C0A}-\u{11C2F}\u{11C3E}-\u{11C45}\u{11C50}-\u{11C6C}\u{11C70}-\u{11C8F}\u{11CA9}\u{11CB1}\u{11CB4}\u{11D00}-\u{11D06}\u{11D08}\u{11D09}\u{11D0B}-\u{11D30}\u{11D46}\u{11D50}-\u{11D59}\u{11D60}-\u{11D65}\u{11D67}\u{11D68}\u{11D6A}-\u{11D8E}\u{11D93}\u{11D94}\u{11D96}\u{11D98}\u{11DA0}-\u{11DA9}\u{11EE0}-\u{11EF2}\u{11EF5}-\u{11EF8}\u{11FB0}\u{11FC0}-\u{11FD4}\u{11FFF}-\u{12399}\u{12400}-\u{1246E}\u{12470}-\u{12474}\u{12480}-\u{12543}\u{12F90}-\u{12FF2}\u{13000}-\u{1342E}\u{13430}-\u{13438}\u{14400}-\u{14646}\u{16800}-\u{16A38}\u{16A40}-\u{16A5E}\u{16A60}-\u{16A69}\u{16A6E}-\u{16ABE}\u{16AC0}-\u{16AC9}\u{16AD0}-\u{16AED}\u{16AF5}\u{16B00}-\u{16B2F}\u{16B37}-\u{16B45}\u{16B50}-\u{16B59}\u{16B5B}-\u{16B61}\u{16B63}-\u{16B77}\u{16B7D}-\u{16B8F}\u{16E40}-\u{16E9A}\u{16F00}-\u{16F4A}\u{16F50}-\u{16F87}\u{16F93}-\u{16F9F}\u{16FE0}\u{16FE1}\u{16FE3}\u{16FF0}\u{16FF1}\u{17000}-\u{187F7}\u{18800}-\u{18CD5}\u{18D00}-\u{18D08}\u{1AFF0}-\u{1AFF3}\u{1AFF5}-\u{1AFFB}\u{1AFFD}\u{1AFFE}\u{1B000}-\u{1B122}\u{1B150}-\u{1B152}\u{1B164}-\u{1B167}\u{1B170}-\u{1B2FB}\u{1BC00}-\u{1BC6A}\u{1BC70}-\u{1BC7C}\u{1BC80}-\u{1BC88}\u{1BC90}-\u{1BC99}\u{1BC9C}\u{1BC9F}\u{1CF50}-\u{1CFC3}\u{1D000}-\u{1D0F5}\u{1D100}-\u{1D126}\u{1D129}-\u{1D166}\u{1D16A}-\u{1D172}\u{1D183}\u{1D184}\u{1D18C}-\u{1D1A9}\u{1D1AE}-\u{1D1E8}\u{1D2E0}-\u{1D2F3}\u{1D360}-\u{1D378}\u{1D400}-\u{1D454}\u{1D456}-\u{1D49C}\u{1D49E}\u{1D49F}\u{1D4A2}\u{1D4A5}\u{1D4A6}\u{1D4A9}-\u{1D4AC}\u{1D4AE}-\u{1D4B9}\u{1D4BB}\u{1D4BD}-\u{1D4C3}\u{1D4C5}-\u{1D505}\u{1D507}-\u{1D50A}\u{1D50D}-\u{1D514}\u{1D516}-\u{1D51C}\u{1D51E}-\u{1D539}\u{1D53B}-\u{1D53E}\u{1D540}-\u{1D544}\u{1D546}\u{1D54A}-\u{1D550}\u{1D552}-\u{1D6A5}\u{1D6A8}-\u{1D6DA}\u{1D6DC}-\u{1D714}\u{1D716}-\u{1D74E}\u{1D750}-\u{1D788}\u{1D78A}-\u{1D7C2}\u{1D7C4}-\u{1D7CB}\u{1D7CE}-\u{1D9FF}\u{1DA37}-\u{1DA3A}\u{1DA6D}-\u{1DA74}\u{1DA76}-\u{1DA83}\u{1DA85}-\u{1DA8B}\u{1DF00}-\u{1DF1E}\u{1E100}-\u{1E12C}\u{1E137}-\u{1E13D}\u{1E140}-\u{1E149}\u{1E14E}\u{1E14F}\u{1E290}-\u{1E2AD}\u{1E2C0}-\u{1E2EB}\u{1E2F0}-\u{1E2F9}\u{1E7E0}-\u{1E7E6}\u{1E7E8}-\u{1E7EB}\u{1E7ED}\u{1E7EE}\u{1E7F0}-\u{1E7FE}\u{1F100}-\u{1F10A}\u{1F110}-\u{1F12E}\u{1F130}-\u{1F169}\u{1F170}-\u{1F1AC}\u{1F1E6}-\u{1F202}\u{1F210}-\u{1F23B}\u{1F240}-\u{1F248}\u{1F250}\u{1F251}\u{1FBF0}-\u{1FBF9}\u{20000}-\u{2A6DF}\u{2A700}-\u{2B738}\u{2B740}-\u{2B81D}\u{2B820}-\u{2CEA1}\u{2CEB0}-\u{2EBE0}\u{2F800}-\u{2FA1D}\u{30000}-\u{3134A}\u{F0000}-\u{FFFFD}\u{100000}-\u{10FFFD}][\u0300-\u036F\u0483-\u0489\u0591-\u05BD\u05BF\u05C1\u05C2\u05C4\u05C5\u05C7\u0610-\u061A\u064B-\u065F\u0670\u06D6-\u06DC\u06DF-\u06E4\u06E7\u06E8\u06EA-\u06ED\u0711\u0730-\u074A\u07A6-\u07B0\u07EB-\u07F3\u07FD\u0816-\u0819\u081B-\u0823\u0825-\u0827\u0829-\u082D\u0859-\u085B\u0898-\u089F\u08CA-\u08E1\u08E3-\u0902\u093A\u093C\u0941-\u0948\u094D\u0951-\u0957\u0962\u0963\u0981\u09BC\u09C1-\u09C4\u09CD\u09E2\u09E3\u09FE\u0A01\u0A02\u0A3C\u0A41\u0A42\u0A47\u0A48\u0A4B-\u0A4D\u0A51\u0A70\u0A71\u0A75\u0A81\u0A82\u0ABC\u0AC1-\u0AC5\u0AC7\u0AC8\u0ACD\u0AE2\u0AE3\u0AFA-\u0AFF\u0B01\u0B3C\u0B3F\u0B41-\u0B44\u0B4D\u0B55\u0B56\u0B62\u0B63\u0B82\u0BC0\u0BCD\u0C00\u0C04\u0C3C\u0C3E-\u0C40\u0C46-\u0C48\u0C4A-\u0C4D\u0C55\u0C56\u0C62\u0C63\u0C81\u0CBC\u0CCC\u0CCD\u0CE2\u0CE3\u0D00\u0D01\u0D3B\u0D3C\u0D41-\u0D44\u0D4D\u0D62\u0D63\u0D81\u0DCA\u0DD2-\u0DD4\u0DD6\u0E31\u0E34-\u0E3A\u0E47-\u0E4E\u0EB1\u0EB4-\u0EBC\u0EC8-\u0ECD\u0F18\u0F19\u0F35\u0F37\u0F39\u0F71-\u0F7E\u0F80-\u0F84\u0F86\u0F87\u0F8D-\u0F97\u0F99-\u0FBC\u0FC6\u102D-\u1030\u1032-\u1037\u1039\u103A\u103D\u103E\u1058\u1059\u105E-\u1060\u1071-\u1074\u1082\u1085\u1086\u108D\u109D\u135D-\u135F\u1712-\u1714\u1732\u1733\u1752\u1753\u1772\u1773\u17B4\u17B5\u17B7-\u17BD\u17C6\u17C9-\u17D3\u17DD\u180B-\u180D\u180F\u1885\u1886\u18A9\u1920-\u1922\u1927\u1928\u1932\u1939-\u193B\u1A17\u1A18\u1A1B\u1A56\u1A58-\u1A5E\u1A60\u1A62\u1A65-\u1A6C\u1A73-\u1A7C\u1A7F\u1AB0-\u1ACE\u1B00-\u1B03\u1B34\u1B36-\u1B3A\u1B3C\u1B42\u1B6B-\u1B73\u1B80\u1B81\u1BA2-\u1BA5\u1BA8\u1BA9\u1BAB-\u1BAD\u1BE6\u1BE8\u1BE9\u1BED\u1BEF-\u1BF1\u1C2C-\u1C33\u1C36\u1C37\u1CD0-\u1CD2\u1CD4-\u1CE0\u1CE2-\u1CE8\u1CED\u1CF4\u1CF8\u1CF9\u1DC0-\u1DFF\u20D0-\u20F0\u2CEF-\u2CF1\u2D7F\u2DE0-\u2DFF\u302A-\u302D\u3099\u309A\uA66F-\uA672\uA674-\uA67D\uA69E\uA69F\uA6F0\uA6F1\uA802\uA806\uA80B\uA825\uA826\uA82C\uA8C4\uA8C5\uA8E0-\uA8F1\uA8FF\uA926-\uA92D\uA947-\uA951\uA980-\uA982\uA9B3\uA9B6-\uA9B9\uA9BC\uA9BD\uA9E5\uAA29-\uAA2E\uAA31\uAA32\uAA35\uAA36\uAA43\uAA4C\uAA7C\uAAB0\uAAB2-\uAAB4\uAAB7\uAAB8\uAABE\uAABF\uAAC1\uAAEC\uAAED\uAAF6\uABE5\uABE8\uABED\uFB1E\uFE00-\uFE0F\uFE20-\uFE2F\u{101FD}\u{102E0}\u{10376}-\u{1037A}\u{10A01}-\u{10A03}\u{10A05}\u{10A06}\u{10A0C}-\u{10A0F}\u{10A38}-\u{10A3A}\u{10A3F}\u{10AE5}\u{10AE6}\u{10D24}-\u{10D27}\u{10EAB}\u{10EAC}\u{10F46}-\u{10F50}\u{10F82}-\u{10F85}\u{11001}\u{11038}-\u{11046}\u{11070}\u{11073}\u{11074}\u{1107F}-\u{11081}\u{110B3}-\u{110B6}\u{110B9}\u{110BA}\u{110C2}\u{11100}-\u{11102}\u{11127}-\u{1112B}\u{1112D}-\u{11134}\u{11173}\u{11180}\u{11181}\u{111B6}-\u{111BE}\u{111C9}-\u{111CC}\u{111CF}\u{1122F}-\u{11231}\u{11234}\u{11236}\u{11237}\u{1123E}\u{112DF}\u{112E3}-\u{112EA}\u{11300}\u{11301}\u{1133B}\u{1133C}\u{11340}\u{11366}-\u{1136C}\u{11370}-\u{11374}\u{11438}-\u{1143F}\u{11442}-\u{11444}\u{11446}\u{1145E}\u{114B3}-\u{114B8}\u{114BA}\u{114BF}\u{114C0}\u{114C2}\u{114C3}\u{115B2}-\u{115B5}\u{115BC}\u{115BD}\u{115BF}\u{115C0}\u{115DC}\u{115DD}\u{11633}-\u{1163A}\u{1163D}\u{1163F}\u{11640}\u{116AB}\u{116AD}\u{116B0}-\u{116B5}\u{116B7}\u{1171D}-\u{1171F}\u{11722}-\u{11725}\u{11727}-\u{1172B}\u{1182F}-\u{11837}\u{11839}\u{1183A}\u{1193B}\u{1193C}\u{1193E}\u{11943}\u{119D4}-\u{119D7}\u{119DA}\u{119DB}\u{119E0}\u{11A01}-\u{11A06}\u{11A09}\u{11A0A}\u{11A33}-\u{11A38}\u{11A3B}-\u{11A3E}\u{11A47}\u{11A51}-\u{11A56}\u{11A59}-\u{11A5B}\u{11A8A}-\u{11A96}\u{11A98}\u{11A99}\u{11C30}-\u{11C36}\u{11C38}-\u{11C3D}\u{11C92}-\u{11CA7}\u{11CAA}-\u{11CB0}\u{11CB2}\u{11CB3}\u{11CB5}\u{11CB6}\u{11D31}-\u{11D36}\u{11D3A}\u{11D3C}\u{11D3D}\u{11D3F}-\u{11D45}\u{11D47}\u{11D90}\u{11D91}\u{11D95}\u{11D97}\u{11EF3}\u{11EF4}\u{16AF0}-\u{16AF4}\u{16B30}-\u{16B36}\u{16F4F}\u{16F8F}-\u{16F92}\u{16FE4}\u{1BC9D}\u{1BC9E}\u{1CF00}-\u{1CF2D}\u{1CF30}-\u{1CF46}\u{1D167}-\u{1D169}\u{1D17B}-\u{1D182}\u{1D185}-\u{1D18B}\u{1D1AA}-\u{1D1AD}\u{1D242}-\u{1D244}\u{1DA00}-\u{1DA36}\u{1DA3B}-\u{1DA6C}\u{1DA75}\u{1DA84}\u{1DA9B}-\u{1DA9F}\u{1DAA1}-\u{1DAAF}\u{1E000}-\u{1E006}\u{1E008}-\u{1E018}\u{1E01B}-\u{1E021}\u{1E023}\u{1E024}\u{1E026}-\u{1E02A}\u{1E130}-\u{1E136}\u{1E2AE}\u{1E2EC}-\u{1E2EF}\u{1E8D0}-\u{1E8D6}\u{1E944}-\u{1E94A}\u{E0100}-\u{E01EF}]*$/u; + +module.exports = { + combiningMarks, + combiningClassVirama, + validZWNJ, + bidiDomain, + bidiS1LTR, + bidiS1RTL, + bidiS2, + bidiS3, + bidiS4EN, + bidiS4AN, + bidiS5, + bidiS6 +}; diff --git a/node_modules/tr46/lib/statusMapping.js b/node_modules/tr46/lib/statusMapping.js new file mode 100644 index 000000000..cfed6d6a7 --- /dev/null +++ b/node_modules/tr46/lib/statusMapping.js @@ -0,0 +1,11 @@ +"use strict"; + +module.exports.STATUS_MAPPING = { + mapped: 1, + valid: 2, + disallowed: 3, + disallowed_STD3_valid: 4, + disallowed_STD3_mapped: 5, + deviation: 6, + ignored: 7 +}; diff --git a/node_modules/tr46/package.json b/node_modules/tr46/package.json new file mode 100644 index 000000000..8e79ba6cd --- /dev/null +++ b/node_modules/tr46/package.json @@ -0,0 +1,47 @@ +{ + "name": "tr46", + "version": "3.0.0", + "engines": { + "node": ">=12" + }, + "description": "An implementation of the Unicode UTS #46: Unicode IDNA Compatibility Processing", + "main": "index.js", + "files": [ + "index.js", + "lib/mappingTable.json", + "lib/regexes.js", + "lib/statusMapping.js" + ], + "scripts": { + "test": "mocha", + "lint": "eslint .", + "pretest": "node scripts/getLatestTests.js", + "prepublish": "node scripts/generateMappingTable.js && node scripts/generateRegexes.js" + }, + "repository": "https://github.com/jsdom/tr46", + "keywords": [ + "unicode", + "tr46", + "uts46", + "punycode", + "url", + "whatwg" + ], + "author": "Sebastian Mayr ", + "contributors": [ + "Timothy Gu " + ], + "license": "MIT", + "dependencies": { + "punycode": "^2.1.1" + }, + "devDependencies": { + "@domenic/eslint-config": "^1.4.0", + "@unicode/unicode-14.0.0": "^1.2.1", + "eslint": "^7.32.0", + "minipass-fetch": "^1.4.1", + "mocha": "^9.1.1", + "regenerate": "^1.4.2" + }, + "unicodeVersion": "14.0.0" +} diff --git a/node_modules/type-is/HISTORY.md b/node_modules/type-is/HISTORY.md new file mode 100644 index 000000000..8de21f7ae --- /dev/null +++ b/node_modules/type-is/HISTORY.md @@ -0,0 +1,259 @@ +1.6.18 / 2019-04-26 +=================== + + * Fix regression passing request object to `typeis.is` + +1.6.17 / 2019-04-25 +=================== + + * deps: mime-types@~2.1.24 + - Add Apple file extensions from IANA + - Add extension `.csl` to `application/vnd.citationstyles.style+xml` + - Add extension `.es` to `application/ecmascript` + - Add extension `.nq` to `application/n-quads` + - Add extension `.nt` to `application/n-triples` + - Add extension `.owl` to `application/rdf+xml` + - Add extensions `.siv` and `.sieve` to `application/sieve` + - Add extensions from IANA for `image/*` types + - Add extensions from IANA for `model/*` types + - Add extensions to HEIC image types + - Add new mime types + - Add `text/mdx` with extension `.mdx` + * perf: prevent internal `throw` on invalid type + +1.6.16 / 2018-02-16 +=================== + + * deps: mime-types@~2.1.18 + - Add `application/raml+yaml` with extension `.raml` + - Add `application/wasm` with extension `.wasm` + - Add `text/shex` with extension `.shex` + - Add extensions for JPEG-2000 images + - Add extensions from IANA for `message/*` types + - Add extension `.mjs` to `application/javascript` + - Add extension `.wadl` to `application/vnd.sun.wadl+xml` + - Add extension `.gz` to `application/gzip` + - Add glTF types and extensions + - Add new mime types + - Update extensions `.md` and `.markdown` to be `text/markdown` + - Update font MIME types + - Update `text/hjson` to registered `application/hjson` + +1.6.15 / 2017-03-31 +=================== + + * deps: mime-types@~2.1.15 + - Add new mime types + +1.6.14 / 2016-11-18 +=================== + + * deps: mime-types@~2.1.13 + - Add new mime types + +1.6.13 / 2016-05-18 +=================== + + * deps: mime-types@~2.1.11 + - Add new mime types + +1.6.12 / 2016-02-28 +=================== + + * deps: mime-types@~2.1.10 + - Add new mime types + - Fix extension of `application/dash+xml` + - Update primary extension for `audio/mp4` + +1.6.11 / 2016-01-29 +=================== + + * deps: mime-types@~2.1.9 + - Add new mime types + +1.6.10 / 2015-12-01 +=================== + + * deps: mime-types@~2.1.8 + - Add new mime types + +1.6.9 / 2015-09-27 +================== + + * deps: mime-types@~2.1.7 + - Add new mime types + +1.6.8 / 2015-09-04 +================== + + * deps: mime-types@~2.1.6 + - Add new mime types + +1.6.7 / 2015-08-20 +================== + + * Fix type error when given invalid type to match against + * deps: mime-types@~2.1.5 + - Add new mime types + +1.6.6 / 2015-07-31 +================== + + * deps: mime-types@~2.1.4 + - Add new mime types + +1.6.5 / 2015-07-16 +================== + + * deps: mime-types@~2.1.3 + - Add new mime types + +1.6.4 / 2015-07-01 +================== + + * deps: mime-types@~2.1.2 + - Add new mime types + * perf: enable strict mode + * perf: remove argument reassignment + +1.6.3 / 2015-06-08 +================== + + * deps: mime-types@~2.1.1 + - Add new mime types + * perf: reduce try block size + * perf: remove bitwise operations + +1.6.2 / 2015-05-10 +================== + + * deps: mime-types@~2.0.11 + - Add new mime types + +1.6.1 / 2015-03-13 +================== + + * deps: mime-types@~2.0.10 + - Add new mime types + +1.6.0 / 2015-02-12 +================== + + * fix false-positives in `hasBody` `Transfer-Encoding` check + * support wildcard for both type and subtype (`*/*`) + +1.5.7 / 2015-02-09 +================== + + * fix argument reassignment + * deps: mime-types@~2.0.9 + - Add new mime types + +1.5.6 / 2015-01-29 +================== + + * deps: mime-types@~2.0.8 + - Add new mime types + +1.5.5 / 2014-12-30 +================== + + * deps: mime-types@~2.0.7 + - Add new mime types + - Fix missing extensions + - Fix various invalid MIME type entries + - Remove example template MIME types + - deps: mime-db@~1.5.0 + +1.5.4 / 2014-12-10 +================== + + * deps: mime-types@~2.0.4 + - Add new mime types + - deps: mime-db@~1.3.0 + +1.5.3 / 2014-11-09 +================== + + * deps: mime-types@~2.0.3 + - Add new mime types + - deps: mime-db@~1.2.0 + +1.5.2 / 2014-09-28 +================== + + * deps: mime-types@~2.0.2 + - Add new mime types + - deps: mime-db@~1.1.0 + +1.5.1 / 2014-09-07 +================== + + * Support Node.js 0.6 + * deps: media-typer@0.3.0 + * deps: mime-types@~2.0.1 + - Support Node.js 0.6 + +1.5.0 / 2014-09-05 +================== + + * fix `hasbody` to be true for `content-length: 0` + +1.4.0 / 2014-09-02 +================== + + * update mime-types + +1.3.2 / 2014-06-24 +================== + + * use `~` range on mime-types + +1.3.1 / 2014-06-19 +================== + + * fix global variable leak + +1.3.0 / 2014-06-19 +================== + + * improve type parsing + + - invalid media type never matches + - media type not case-sensitive + - extra LWS does not affect results + +1.2.2 / 2014-06-19 +================== + + * fix behavior on unknown type argument + +1.2.1 / 2014-06-03 +================== + + * switch dependency from `mime` to `mime-types@1.0.0` + +1.2.0 / 2014-05-11 +================== + + * support suffix matching: + + - `+json` matches `application/vnd+json` + - `*/vnd+json` matches `application/vnd+json` + - `application/*+json` matches `application/vnd+json` + +1.1.0 / 2014-04-12 +================== + + * add non-array values support + * expose internal utilities: + + - `.is()` + - `.hasBody()` + - `.normalize()` + - `.match()` + +1.0.1 / 2014-03-30 +================== + + * add `multipart` as a shorthand diff --git a/node_modules/type-is/LICENSE b/node_modules/type-is/LICENSE new file mode 100644 index 000000000..386b7b694 --- /dev/null +++ b/node_modules/type-is/LICENSE @@ -0,0 +1,23 @@ +(The MIT License) + +Copyright (c) 2014 Jonathan Ong +Copyright (c) 2014-2015 Douglas Christopher Wilson + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +'Software'), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/node_modules/type-is/README.md b/node_modules/type-is/README.md new file mode 100644 index 000000000..b85ef8f78 --- /dev/null +++ b/node_modules/type-is/README.md @@ -0,0 +1,170 @@ +# type-is + +[![NPM Version][npm-version-image]][npm-url] +[![NPM Downloads][npm-downloads-image]][npm-url] +[![Node.js Version][node-version-image]][node-version-url] +[![Build Status][travis-image]][travis-url] +[![Test Coverage][coveralls-image]][coveralls-url] + +Infer the content-type of a request. + +### Install + +This is a [Node.js](https://nodejs.org/en/) module available through the +[npm registry](https://www.npmjs.com/). Installation is done using the +[`npm install` command](https://docs.npmjs.com/getting-started/installing-npm-packages-locally): + +```sh +$ npm install type-is +``` + +## API + +```js +var http = require('http') +var typeis = require('type-is') + +http.createServer(function (req, res) { + var istext = typeis(req, ['text/*']) + res.end('you ' + (istext ? 'sent' : 'did not send') + ' me text') +}) +``` + +### typeis(request, types) + +Checks if the `request` is one of the `types`. If the request has no body, +even if there is a `Content-Type` header, then `null` is returned. If the +`Content-Type` header is invalid or does not matches any of the `types`, then +`false` is returned. Otherwise, a string of the type that matched is returned. + +The `request` argument is expected to be a Node.js HTTP request. The `types` +argument is an array of type strings. + +Each type in the `types` array can be one of the following: + +- A file extension name such as `json`. This name will be returned if matched. +- A mime type such as `application/json`. +- A mime type with a wildcard such as `*/*` or `*/json` or `application/*`. + The full mime type will be returned if matched. +- A suffix such as `+json`. This can be combined with a wildcard such as + `*/vnd+json` or `application/*+json`. The full mime type will be returned + if matched. + +Some examples to illustrate the inputs and returned value: + + + +```js +// req.headers.content-type = 'application/json' + +typeis(req, ['json']) // => 'json' +typeis(req, ['html', 'json']) // => 'json' +typeis(req, ['application/*']) // => 'application/json' +typeis(req, ['application/json']) // => 'application/json' + +typeis(req, ['html']) // => false +``` + +### typeis.hasBody(request) + +Returns a Boolean if the given `request` has a body, regardless of the +`Content-Type` header. + +Having a body has no relation to how large the body is (it may be 0 bytes). +This is similar to how file existence works. If a body does exist, then this +indicates that there is data to read from the Node.js request stream. + + + +```js +if (typeis.hasBody(req)) { + // read the body, since there is one + + req.on('data', function (chunk) { + // ... + }) +} +``` + +### typeis.is(mediaType, types) + +Checks if the `mediaType` is one of the `types`. If the `mediaType` is invalid +or does not matches any of the `types`, then `false` is returned. Otherwise, a +string of the type that matched is returned. + +The `mediaType` argument is expected to be a +[media type](https://tools.ietf.org/html/rfc6838) string. The `types` argument +is an array of type strings. + +Each type in the `types` array can be one of the following: + +- A file extension name such as `json`. This name will be returned if matched. +- A mime type such as `application/json`. +- A mime type with a wildcard such as `*/*` or `*/json` or `application/*`. + The full mime type will be returned if matched. +- A suffix such as `+json`. This can be combined with a wildcard such as + `*/vnd+json` or `application/*+json`. The full mime type will be returned + if matched. + +Some examples to illustrate the inputs and returned value: + + + +```js +var mediaType = 'application/json' + +typeis.is(mediaType, ['json']) // => 'json' +typeis.is(mediaType, ['html', 'json']) // => 'json' +typeis.is(mediaType, ['application/*']) // => 'application/json' +typeis.is(mediaType, ['application/json']) // => 'application/json' + +typeis.is(mediaType, ['html']) // => false +``` + +## Examples + +### Example body parser + +```js +var express = require('express') +var typeis = require('type-is') + +var app = express() + +app.use(function bodyParser (req, res, next) { + if (!typeis.hasBody(req)) { + return next() + } + + switch (typeis(req, ['urlencoded', 'json', 'multipart'])) { + case 'urlencoded': + // parse urlencoded body + throw new Error('implement urlencoded body parsing') + case 'json': + // parse json body + throw new Error('implement json body parsing') + case 'multipart': + // parse multipart body + throw new Error('implement multipart body parsing') + default: + // 415 error code + res.statusCode = 415 + res.end() + break + } +}) +``` + +## License + +[MIT](LICENSE) + +[coveralls-image]: https://badgen.net/coveralls/c/github/jshttp/type-is/master +[coveralls-url]: https://coveralls.io/r/jshttp/type-is?branch=master +[node-version-image]: https://badgen.net/npm/node/type-is +[node-version-url]: https://nodejs.org/en/download +[npm-downloads-image]: https://badgen.net/npm/dm/type-is +[npm-url]: https://npmjs.org/package/type-is +[npm-version-image]: https://badgen.net/npm/v/type-is +[travis-image]: https://badgen.net/travis/jshttp/type-is/master +[travis-url]: https://travis-ci.org/jshttp/type-is diff --git a/node_modules/type-is/index.js b/node_modules/type-is/index.js new file mode 100644 index 000000000..890ad76c7 --- /dev/null +++ b/node_modules/type-is/index.js @@ -0,0 +1,266 @@ +/*! + * type-is + * Copyright(c) 2014 Jonathan Ong + * Copyright(c) 2014-2015 Douglas Christopher Wilson + * MIT Licensed + */ + +'use strict' + +/** + * Module dependencies. + * @private + */ + +var typer = require('media-typer') +var mime = require('mime-types') + +/** + * Module exports. + * @public + */ + +module.exports = typeofrequest +module.exports.is = typeis +module.exports.hasBody = hasbody +module.exports.normalize = normalize +module.exports.match = mimeMatch + +/** + * Compare a `value` content-type with `types`. + * Each `type` can be an extension like `html`, + * a special shortcut like `multipart` or `urlencoded`, + * or a mime type. + * + * If no types match, `false` is returned. + * Otherwise, the first `type` that matches is returned. + * + * @param {String} value + * @param {Array} types + * @public + */ + +function typeis (value, types_) { + var i + var types = types_ + + // remove parameters and normalize + var val = tryNormalizeType(value) + + // no type or invalid + if (!val) { + return false + } + + // support flattened arguments + if (types && !Array.isArray(types)) { + types = new Array(arguments.length - 1) + for (i = 0; i < types.length; i++) { + types[i] = arguments[i + 1] + } + } + + // no types, return the content type + if (!types || !types.length) { + return val + } + + var type + for (i = 0; i < types.length; i++) { + if (mimeMatch(normalize(type = types[i]), val)) { + return type[0] === '+' || type.indexOf('*') !== -1 + ? val + : type + } + } + + // no matches + return false +} + +/** + * Check if a request has a request body. + * A request with a body __must__ either have `transfer-encoding` + * or `content-length` headers set. + * http://www.w3.org/Protocols/rfc2616/rfc2616-sec4.html#sec4.3 + * + * @param {Object} request + * @return {Boolean} + * @public + */ + +function hasbody (req) { + return req.headers['transfer-encoding'] !== undefined || + !isNaN(req.headers['content-length']) +} + +/** + * Check if the incoming request contains the "Content-Type" + * header field, and it contains any of the give mime `type`s. + * If there is no request body, `null` is returned. + * If there is no content type, `false` is returned. + * Otherwise, it returns the first `type` that matches. + * + * Examples: + * + * // With Content-Type: text/html; charset=utf-8 + * this.is('html'); // => 'html' + * this.is('text/html'); // => 'text/html' + * this.is('text/*', 'application/json'); // => 'text/html' + * + * // When Content-Type is application/json + * this.is('json', 'urlencoded'); // => 'json' + * this.is('application/json'); // => 'application/json' + * this.is('html', 'application/*'); // => 'application/json' + * + * this.is('html'); // => false + * + * @param {String|Array} types... + * @return {String|false|null} + * @public + */ + +function typeofrequest (req, types_) { + var types = types_ + + // no body + if (!hasbody(req)) { + return null + } + + // support flattened arguments + if (arguments.length > 2) { + types = new Array(arguments.length - 1) + for (var i = 0; i < types.length; i++) { + types[i] = arguments[i + 1] + } + } + + // request content type + var value = req.headers['content-type'] + + return typeis(value, types) +} + +/** + * Normalize a mime type. + * If it's a shorthand, expand it to a valid mime type. + * + * In general, you probably want: + * + * var type = is(req, ['urlencoded', 'json', 'multipart']); + * + * Then use the appropriate body parsers. + * These three are the most common request body types + * and are thus ensured to work. + * + * @param {String} type + * @private + */ + +function normalize (type) { + if (typeof type !== 'string') { + // invalid type + return false + } + + switch (type) { + case 'urlencoded': + return 'application/x-www-form-urlencoded' + case 'multipart': + return 'multipart/*' + } + + if (type[0] === '+') { + // "+json" -> "*/*+json" expando + return '*/*' + type + } + + return type.indexOf('/') === -1 + ? mime.lookup(type) + : type +} + +/** + * Check if `expected` mime type + * matches `actual` mime type with + * wildcard and +suffix support. + * + * @param {String} expected + * @param {String} actual + * @return {Boolean} + * @private + */ + +function mimeMatch (expected, actual) { + // invalid type + if (expected === false) { + return false + } + + // split types + var actualParts = actual.split('/') + var expectedParts = expected.split('/') + + // invalid format + if (actualParts.length !== 2 || expectedParts.length !== 2) { + return false + } + + // validate type + if (expectedParts[0] !== '*' && expectedParts[0] !== actualParts[0]) { + return false + } + + // validate suffix wildcard + if (expectedParts[1].substr(0, 2) === '*+') { + return expectedParts[1].length <= actualParts[1].length + 1 && + expectedParts[1].substr(1) === actualParts[1].substr(1 - expectedParts[1].length) + } + + // validate subtype + if (expectedParts[1] !== '*' && expectedParts[1] !== actualParts[1]) { + return false + } + + return true +} + +/** + * Normalize a type and remove parameters. + * + * @param {string} value + * @return {string} + * @private + */ + +function normalizeType (value) { + // parse the type + var type = typer.parse(value) + + // remove the parameters + type.parameters = undefined + + // reformat it + return typer.format(type) +} + +/** + * Try to normalize a type and remove parameters. + * + * @param {string} value + * @return {string} + * @private + */ + +function tryNormalizeType (value) { + if (!value) { + return null + } + + try { + return normalizeType(value) + } catch (err) { + return null + } +} diff --git a/node_modules/type-is/package.json b/node_modules/type-is/package.json new file mode 100644 index 000000000..97ba5f14b --- /dev/null +++ b/node_modules/type-is/package.json @@ -0,0 +1,45 @@ +{ + "name": "type-is", + "description": "Infer the content-type of a request.", + "version": "1.6.18", + "contributors": [ + "Douglas Christopher Wilson ", + "Jonathan Ong (http://jongleberry.com)" + ], + "license": "MIT", + "repository": "jshttp/type-is", + "dependencies": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "devDependencies": { + "eslint": "5.16.0", + "eslint-config-standard": "12.0.0", + "eslint-plugin-import": "2.17.2", + "eslint-plugin-markdown": "1.0.0", + "eslint-plugin-node": "8.0.1", + "eslint-plugin-promise": "4.1.1", + "eslint-plugin-standard": "4.0.0", + "mocha": "6.1.4", + "nyc": "14.0.0" + }, + "engines": { + "node": ">= 0.6" + }, + "files": [ + "LICENSE", + "HISTORY.md", + "index.js" + ], + "scripts": { + "lint": "eslint --plugin markdown --ext js,md .", + "test": "mocha --reporter spec --check-leaks --bail test/", + "test-cov": "nyc --reporter=html --reporter=text npm test", + "test-travis": "nyc --reporter=text npm test" + }, + "keywords": [ + "content", + "type", + "checking" + ] +} diff --git a/node_modules/unpipe/HISTORY.md b/node_modules/unpipe/HISTORY.md new file mode 100644 index 000000000..85e0f8d74 --- /dev/null +++ b/node_modules/unpipe/HISTORY.md @@ -0,0 +1,4 @@ +1.0.0 / 2015-06-14 +================== + + * Initial release diff --git a/node_modules/unpipe/LICENSE b/node_modules/unpipe/LICENSE new file mode 100644 index 000000000..aed013827 --- /dev/null +++ b/node_modules/unpipe/LICENSE @@ -0,0 +1,22 @@ +(The MIT License) + +Copyright (c) 2015 Douglas Christopher Wilson + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +'Software'), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/node_modules/unpipe/README.md b/node_modules/unpipe/README.md new file mode 100644 index 000000000..e536ad2c0 --- /dev/null +++ b/node_modules/unpipe/README.md @@ -0,0 +1,43 @@ +# unpipe + +[![NPM Version][npm-image]][npm-url] +[![NPM Downloads][downloads-image]][downloads-url] +[![Node.js Version][node-image]][node-url] +[![Build Status][travis-image]][travis-url] +[![Test Coverage][coveralls-image]][coveralls-url] + +Unpipe a stream from all destinations. + +## Installation + +```sh +$ npm install unpipe +``` + +## API + +```js +var unpipe = require('unpipe') +``` + +### unpipe(stream) + +Unpipes all destinations from a given stream. With stream 2+, this is +equivalent to `stream.unpipe()`. When used with streams 1 style streams +(typically Node.js 0.8 and below), this module attempts to undo the +actions done in `stream.pipe(dest)`. + +## License + +[MIT](LICENSE) + +[npm-image]: https://img.shields.io/npm/v/unpipe.svg +[npm-url]: https://npmjs.org/package/unpipe +[node-image]: https://img.shields.io/node/v/unpipe.svg +[node-url]: http://nodejs.org/download/ +[travis-image]: https://img.shields.io/travis/stream-utils/unpipe.svg +[travis-url]: https://travis-ci.org/stream-utils/unpipe +[coveralls-image]: https://img.shields.io/coveralls/stream-utils/unpipe.svg +[coveralls-url]: https://coveralls.io/r/stream-utils/unpipe?branch=master +[downloads-image]: https://img.shields.io/npm/dm/unpipe.svg +[downloads-url]: https://npmjs.org/package/unpipe diff --git a/node_modules/unpipe/index.js b/node_modules/unpipe/index.js new file mode 100644 index 000000000..15c3d97a1 --- /dev/null +++ b/node_modules/unpipe/index.js @@ -0,0 +1,69 @@ +/*! + * unpipe + * Copyright(c) 2015 Douglas Christopher Wilson + * MIT Licensed + */ + +'use strict' + +/** + * Module exports. + * @public + */ + +module.exports = unpipe + +/** + * Determine if there are Node.js pipe-like data listeners. + * @private + */ + +function hasPipeDataListeners(stream) { + var listeners = stream.listeners('data') + + for (var i = 0; i < listeners.length; i++) { + if (listeners[i].name === 'ondata') { + return true + } + } + + return false +} + +/** + * Unpipe a stream from all destinations. + * + * @param {object} stream + * @public + */ + +function unpipe(stream) { + if (!stream) { + throw new TypeError('argument stream is required') + } + + if (typeof stream.unpipe === 'function') { + // new-style + stream.unpipe() + return + } + + // Node.js 0.8 hack + if (!hasPipeDataListeners(stream)) { + return + } + + var listener + var listeners = stream.listeners('close') + + for (var i = 0; i < listeners.length; i++) { + listener = listeners[i] + + if (listener.name !== 'cleanup' && listener.name !== 'onclose') { + continue + } + + // invoke the listener + listener.call(stream) + } +} diff --git a/node_modules/unpipe/package.json b/node_modules/unpipe/package.json new file mode 100644 index 000000000..a2b73583b --- /dev/null +++ b/node_modules/unpipe/package.json @@ -0,0 +1,27 @@ +{ + "name": "unpipe", + "description": "Unpipe a stream from all destinations", + "version": "1.0.0", + "author": "Douglas Christopher Wilson ", + "license": "MIT", + "repository": "stream-utils/unpipe", + "devDependencies": { + "istanbul": "0.3.15", + "mocha": "2.2.5", + "readable-stream": "1.1.13" + }, + "files": [ + "HISTORY.md", + "LICENSE", + "README.md", + "index.js" + ], + "engines": { + "node": ">= 0.8" + }, + "scripts": { + "test": "mocha --reporter spec --bail --check-leaks test/", + "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/", + "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/" + } +} diff --git a/node_modules/utils-merge/.npmignore b/node_modules/utils-merge/.npmignore new file mode 100644 index 000000000..3e5384418 --- /dev/null +++ b/node_modules/utils-merge/.npmignore @@ -0,0 +1,9 @@ +CONTRIBUTING.md +Makefile +docs/ +examples/ +reports/ +test/ + +.jshintrc +.travis.yml diff --git a/node_modules/utils-merge/LICENSE b/node_modules/utils-merge/LICENSE new file mode 100644 index 000000000..76f6d083d --- /dev/null +++ b/node_modules/utils-merge/LICENSE @@ -0,0 +1,20 @@ +The MIT License (MIT) + +Copyright (c) 2013-2017 Jared Hanson + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/node_modules/utils-merge/README.md b/node_modules/utils-merge/README.md new file mode 100644 index 000000000..0cb711712 --- /dev/null +++ b/node_modules/utils-merge/README.md @@ -0,0 +1,34 @@ +# utils-merge + +[![Version](https://img.shields.io/npm/v/utils-merge.svg?label=version)](https://www.npmjs.com/package/utils-merge) +[![Build](https://img.shields.io/travis/jaredhanson/utils-merge.svg)](https://travis-ci.org/jaredhanson/utils-merge) +[![Quality](https://img.shields.io/codeclimate/github/jaredhanson/utils-merge.svg?label=quality)](https://codeclimate.com/github/jaredhanson/utils-merge) +[![Coverage](https://img.shields.io/coveralls/jaredhanson/utils-merge.svg)](https://coveralls.io/r/jaredhanson/utils-merge) +[![Dependencies](https://img.shields.io/david/jaredhanson/utils-merge.svg)](https://david-dm.org/jaredhanson/utils-merge) + + +Merges the properties from a source object into a destination object. + +## Install + +```bash +$ npm install utils-merge +``` + +## Usage + +```javascript +var a = { foo: 'bar' } + , b = { bar: 'baz' }; + +merge(a, b); +// => { foo: 'bar', bar: 'baz' } +``` + +## License + +[The MIT License](http://opensource.org/licenses/MIT) + +Copyright (c) 2013-2017 Jared Hanson <[http://jaredhanson.net/](http://jaredhanson.net/)> + + Sponsor diff --git a/node_modules/utils-merge/index.js b/node_modules/utils-merge/index.js new file mode 100644 index 000000000..4265c694f --- /dev/null +++ b/node_modules/utils-merge/index.js @@ -0,0 +1,23 @@ +/** + * Merge object b with object a. + * + * var a = { foo: 'bar' } + * , b = { bar: 'baz' }; + * + * merge(a, b); + * // => { foo: 'bar', bar: 'baz' } + * + * @param {Object} a + * @param {Object} b + * @return {Object} + * @api public + */ + +exports = module.exports = function(a, b){ + if (a && b) { + for (var key in b) { + a[key] = b[key]; + } + } + return a; +}; diff --git a/node_modules/utils-merge/package.json b/node_modules/utils-merge/package.json new file mode 100644 index 000000000..e36b0781c --- /dev/null +++ b/node_modules/utils-merge/package.json @@ -0,0 +1,40 @@ +{ + "name": "utils-merge", + "version": "1.0.1", + "description": "merge() utility function", + "keywords": [ + "util" + ], + "author": { + "name": "Jared Hanson", + "email": "jaredhanson@gmail.com", + "url": "http://www.jaredhanson.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/jaredhanson/utils-merge.git" + }, + "bugs": { + "url": "http://github.com/jaredhanson/utils-merge/issues" + }, + "license": "MIT", + "licenses": [ + { + "type": "MIT", + "url": "http://opensource.org/licenses/MIT" + } + ], + "main": "./index", + "dependencies": {}, + "devDependencies": { + "make-node": "0.3.x", + "mocha": "1.x.x", + "chai": "1.x.x" + }, + "engines": { + "node": ">= 0.4.0" + }, + "scripts": { + "test": "node_modules/.bin/mocha --reporter spec --require test/bootstrap/node test/*.test.js" + } +} diff --git a/node_modules/vary/HISTORY.md b/node_modules/vary/HISTORY.md new file mode 100644 index 000000000..f6cbcf7f9 --- /dev/null +++ b/node_modules/vary/HISTORY.md @@ -0,0 +1,39 @@ +1.1.2 / 2017-09-23 +================== + + * perf: improve header token parsing speed + +1.1.1 / 2017-03-20 +================== + + * perf: hoist regular expression + +1.1.0 / 2015-09-29 +================== + + * Only accept valid field names in the `field` argument + - Ensures the resulting string is a valid HTTP header value + +1.0.1 / 2015-07-08 +================== + + * Fix setting empty header from empty `field` + * perf: enable strict mode + * perf: remove argument reassignments + +1.0.0 / 2014-08-10 +================== + + * Accept valid `Vary` header string as `field` + * Add `vary.append` for low-level string manipulation + * Move to `jshttp` orgainzation + +0.1.0 / 2014-06-05 +================== + + * Support array of fields to set + +0.0.0 / 2014-06-04 +================== + + * Initial release diff --git a/node_modules/vary/LICENSE b/node_modules/vary/LICENSE new file mode 100644 index 000000000..84441fbb5 --- /dev/null +++ b/node_modules/vary/LICENSE @@ -0,0 +1,22 @@ +(The MIT License) + +Copyright (c) 2014-2017 Douglas Christopher Wilson + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +'Software'), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/node_modules/vary/README.md b/node_modules/vary/README.md new file mode 100644 index 000000000..cc000b346 --- /dev/null +++ b/node_modules/vary/README.md @@ -0,0 +1,101 @@ +# vary + +[![NPM Version][npm-image]][npm-url] +[![NPM Downloads][downloads-image]][downloads-url] +[![Node.js Version][node-version-image]][node-version-url] +[![Build Status][travis-image]][travis-url] +[![Test Coverage][coveralls-image]][coveralls-url] + +Manipulate the HTTP Vary header + +## Installation + +This is a [Node.js](https://nodejs.org/en/) module available through the +[npm registry](https://www.npmjs.com/). Installation is done using the +[`npm install` command](https://docs.npmjs.com/getting-started/installing-npm-packages-locally): + +```sh +$ npm install vary +``` + +## API + + + +```js +var vary = require('vary') +``` + +### vary(res, field) + +Adds the given header `field` to the `Vary` response header of `res`. +This can be a string of a single field, a string of a valid `Vary` +header, or an array of multiple fields. + +This will append the header if not already listed, otherwise leaves +it listed in the current location. + + + +```js +// Append "Origin" to the Vary header of the response +vary(res, 'Origin') +``` + +### vary.append(header, field) + +Adds the given header `field` to the `Vary` response header string `header`. +This can be a string of a single field, a string of a valid `Vary` header, +or an array of multiple fields. + +This will append the header if not already listed, otherwise leaves +it listed in the current location. The new header string is returned. + + + +```js +// Get header string appending "Origin" to "Accept, User-Agent" +vary.append('Accept, User-Agent', 'Origin') +``` + +## Examples + +### Updating the Vary header when content is based on it + +```js +var http = require('http') +var vary = require('vary') + +http.createServer(function onRequest (req, res) { + // about to user-agent sniff + vary(res, 'User-Agent') + + var ua = req.headers['user-agent'] || '' + var isMobile = /mobi|android|touch|mini/i.test(ua) + + // serve site, depending on isMobile + res.setHeader('Content-Type', 'text/html') + res.end('You are (probably) ' + (isMobile ? '' : 'not ') + 'a mobile user') +}) +``` + +## Testing + +```sh +$ npm test +``` + +## License + +[MIT](LICENSE) + +[npm-image]: https://img.shields.io/npm/v/vary.svg +[npm-url]: https://npmjs.org/package/vary +[node-version-image]: https://img.shields.io/node/v/vary.svg +[node-version-url]: https://nodejs.org/en/download +[travis-image]: https://img.shields.io/travis/jshttp/vary/master.svg +[travis-url]: https://travis-ci.org/jshttp/vary +[coveralls-image]: https://img.shields.io/coveralls/jshttp/vary/master.svg +[coveralls-url]: https://coveralls.io/r/jshttp/vary +[downloads-image]: https://img.shields.io/npm/dm/vary.svg +[downloads-url]: https://npmjs.org/package/vary diff --git a/node_modules/vary/index.js b/node_modules/vary/index.js new file mode 100644 index 000000000..5b5e74127 --- /dev/null +++ b/node_modules/vary/index.js @@ -0,0 +1,149 @@ +/*! + * vary + * Copyright(c) 2014-2017 Douglas Christopher Wilson + * MIT Licensed + */ + +'use strict' + +/** + * Module exports. + */ + +module.exports = vary +module.exports.append = append + +/** + * RegExp to match field-name in RFC 7230 sec 3.2 + * + * field-name = token + * token = 1*tchar + * tchar = "!" / "#" / "$" / "%" / "&" / "'" / "*" + * / "+" / "-" / "." / "^" / "_" / "`" / "|" / "~" + * / DIGIT / ALPHA + * ; any VCHAR, except delimiters + */ + +var FIELD_NAME_REGEXP = /^[!#$%&'*+\-.^_`|~0-9A-Za-z]+$/ + +/** + * Append a field to a vary header. + * + * @param {String} header + * @param {String|Array} field + * @return {String} + * @public + */ + +function append (header, field) { + if (typeof header !== 'string') { + throw new TypeError('header argument is required') + } + + if (!field) { + throw new TypeError('field argument is required') + } + + // get fields array + var fields = !Array.isArray(field) + ? parse(String(field)) + : field + + // assert on invalid field names + for (var j = 0; j < fields.length; j++) { + if (!FIELD_NAME_REGEXP.test(fields[j])) { + throw new TypeError('field argument contains an invalid header name') + } + } + + // existing, unspecified vary + if (header === '*') { + return header + } + + // enumerate current values + var val = header + var vals = parse(header.toLowerCase()) + + // unspecified vary + if (fields.indexOf('*') !== -1 || vals.indexOf('*') !== -1) { + return '*' + } + + for (var i = 0; i < fields.length; i++) { + var fld = fields[i].toLowerCase() + + // append value (case-preserving) + if (vals.indexOf(fld) === -1) { + vals.push(fld) + val = val + ? val + ', ' + fields[i] + : fields[i] + } + } + + return val +} + +/** + * Parse a vary header into an array. + * + * @param {String} header + * @return {Array} + * @private + */ + +function parse (header) { + var end = 0 + var list = [] + var start = 0 + + // gather tokens + for (var i = 0, len = header.length; i < len; i++) { + switch (header.charCodeAt(i)) { + case 0x20: /* */ + if (start === end) { + start = end = i + 1 + } + break + case 0x2c: /* , */ + list.push(header.substring(start, end)) + start = end = i + 1 + break + default: + end = i + 1 + break + } + } + + // final token + list.push(header.substring(start, end)) + + return list +} + +/** + * Mark that a request is varied on a header field. + * + * @param {Object} res + * @param {String|Array} field + * @public + */ + +function vary (res, field) { + if (!res || !res.getHeader || !res.setHeader) { + // quack quack + throw new TypeError('res argument is required') + } + + // get existing header + var val = res.getHeader('Vary') || '' + var header = Array.isArray(val) + ? val.join(', ') + : String(val) + + // set new header + if ((val = append(header, field))) { + res.setHeader('Vary', val) + } +} diff --git a/node_modules/vary/package.json b/node_modules/vary/package.json new file mode 100644 index 000000000..028f72a93 --- /dev/null +++ b/node_modules/vary/package.json @@ -0,0 +1,43 @@ +{ + "name": "vary", + "description": "Manipulate the HTTP Vary header", + "version": "1.1.2", + "author": "Douglas Christopher Wilson ", + "license": "MIT", + "keywords": [ + "http", + "res", + "vary" + ], + "repository": "jshttp/vary", + "devDependencies": { + "beautify-benchmark": "0.2.4", + "benchmark": "2.1.4", + "eslint": "3.19.0", + "eslint-config-standard": "10.2.1", + "eslint-plugin-import": "2.7.0", + "eslint-plugin-markdown": "1.0.0-beta.6", + "eslint-plugin-node": "5.1.1", + "eslint-plugin-promise": "3.5.0", + "eslint-plugin-standard": "3.0.1", + "istanbul": "0.4.5", + "mocha": "2.5.3", + "supertest": "1.1.0" + }, + "files": [ + "HISTORY.md", + "LICENSE", + "README.md", + "index.js" + ], + "engines": { + "node": ">= 0.8" + }, + "scripts": { + "bench": "node benchmark/index.js", + "lint": "eslint --plugin markdown --ext js,md .", + "test": "mocha --reporter spec --bail --check-leaks test/", + "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/", + "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/" + } +} diff --git a/node_modules/webidl-conversions/LICENSE.md b/node_modules/webidl-conversions/LICENSE.md new file mode 100644 index 000000000..d4a994f50 --- /dev/null +++ b/node_modules/webidl-conversions/LICENSE.md @@ -0,0 +1,12 @@ +# The BSD 2-Clause License + +Copyright (c) 2014, Domenic Denicola +All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/node_modules/webidl-conversions/README.md b/node_modules/webidl-conversions/README.md new file mode 100644 index 000000000..16cc39315 --- /dev/null +++ b/node_modules/webidl-conversions/README.md @@ -0,0 +1,99 @@ +# Web IDL Type Conversions on JavaScript Values + +This package implements, in JavaScript, the algorithms to convert a given JavaScript value according to a given [Web IDL](http://heycam.github.io/webidl/) [type](http://heycam.github.io/webidl/#idl-types). + +The goal is that you should be able to write code like + +```js +"use strict"; +const conversions = require("webidl-conversions"); + +function doStuff(x, y) { + x = conversions["boolean"](x); + y = conversions["unsigned long"](y); + // actual algorithm code here +} +``` + +and your function `doStuff` will behave the same as a Web IDL operation declared as + +```webidl +undefined doStuff(boolean x, unsigned long y); +``` + +## API + +This package's main module's default export is an object with a variety of methods, each corresponding to a different Web IDL type. Each method, when invoked on a JavaScript value, will give back the new JavaScript value that results after passing through the Web IDL conversion rules. (See below for more details on what that means.) Alternately, the method could throw an error, if the Web IDL algorithm is specified to do so: for example `conversions["float"](NaN)` [will throw a `TypeError`](http://heycam.github.io/webidl/#es-float). + +Each method also accepts a second, optional, parameter for miscellaneous options. For conversion methods that throw errors, a string option `{ context }` may be provided to provide more information in the error message. (For example, `conversions["float"](NaN, { context: "Argument 1 of Interface's operation" })` will throw an error with message `"Argument 1 of Interface's operation is not a finite floating-point value."`) + +If we are dealing with multiple JavaScript realms (such as those created using Node.js' [vm](https://nodejs.org/api/vm.html) module or the HTML `iframe` element), and exceptions from another realm need to be thrown, one can supply an object option `globals` containing the following properties: + +```js +{ + globals: { + Number, + String, + TypeError + } +} +``` + +Those specific functions will be used when throwing exceptions. + +Specific conversions may also accept other options, the details of which can be found below. + +## Conversions implemented + +Conversions for all of the basic types from the Web IDL specification are implemented: + +- [`any`](https://heycam.github.io/webidl/#es-any) +- [`undefined`](https://heycam.github.io/webidl/#es-undefined) +- [`boolean`](https://heycam.github.io/webidl/#es-boolean) +- [Integer types](https://heycam.github.io/webidl/#es-integer-types), which can additionally be provided the boolean options `{ clamp, enforceRange }` as a second parameter +- [`float`](https://heycam.github.io/webidl/#es-float), [`unrestricted float`](https://heycam.github.io/webidl/#es-unrestricted-float) +- [`double`](https://heycam.github.io/webidl/#es-double), [`unrestricted double`](https://heycam.github.io/webidl/#es-unrestricted-double) +- [`DOMString`](https://heycam.github.io/webidl/#es-DOMString), which can additionally be provided the boolean option `{ treatNullAsEmptyString }` as a second parameter +- [`ByteString`](https://heycam.github.io/webidl/#es-ByteString), [`USVString`](https://heycam.github.io/webidl/#es-USVString) +- [`object`](https://heycam.github.io/webidl/#es-object) +- [Buffer source types](https://heycam.github.io/webidl/#es-buffer-source-types), which can additionally be provided with the boolean option `{ allowShared }` as a second parameter + +Additionally, for convenience, the following derived type definitions are implemented: + +- [`ArrayBufferView`](https://heycam.github.io/webidl/#ArrayBufferView), which can additionally be provided with the boolean option `{ allowShared }` as a second parameter +- [`BufferSource`](https://heycam.github.io/webidl/#BufferSource) +- [`DOMTimeStamp`](https://heycam.github.io/webidl/#DOMTimeStamp) + +Derived types, such as nullable types, promise types, sequences, records, etc. are not handled by this library. You may wish to investigate the [webidl2js](https://github.com/jsdom/webidl2js) project. + +### A note on the `long long` types + +The `long long` and `unsigned long long` Web IDL types can hold values that cannot be stored in JavaScript numbers. Conversions are still accurate as we make use of BigInt in the conversion process, but in the case of `unsigned long long` we simply cannot represent some possible output values in JavaScript. For example, converting the JavaScript number `-1` to a Web IDL `unsigned long long` is supposed to produce the Web IDL value `18446744073709551615`. Since we are representing our Web IDL values in JavaScript, we can't represent `18446744073709551615`, so we instead the best we could do is `18446744073709551616` as the output. + +To mitigate this, we could return the raw BigInt value from the conversion function, but right now it is not implemented. If your use case requires such precision, [file an issue](https://github.com/jsdom/webidl-conversions/issues/new). + +On the other hand, `long long` conversion is always accurate, since the input value can never be more precise than the output value. + +### A note on `BufferSource` types + +All of the `BufferSource` types will throw when the relevant `ArrayBuffer` has been detached. This technically is not part of the [specified conversion algorithm](https://heycam.github.io/webidl/#es-buffer-source-types), but instead part of the [getting a reference/getting a copy](https://heycam.github.io/webidl/#ref-for-dfn-get-buffer-source-reference%E2%91%A0) algorithms. We've consolidated them here for convenience and ease of implementation, but if there is a need to separate them in the future, please open an issue so we can investigate. + +## Background + +What's actually going on here, conceptually, is pretty weird. Let's try to explain. + +Web IDL, as part of its madness-inducing design, has its own type system. When people write algorithms in web platform specs, they usually operate on Web IDL values, i.e. instances of Web IDL types. For example, if they were specifying the algorithm for our `doStuff` operation above, they would treat `x` as a Web IDL value of [Web IDL type `boolean`](http://heycam.github.io/webidl/#idl-boolean). Crucially, they would _not_ treat `x` as a JavaScript variable whose value is either the JavaScript `true` or `false`. They're instead working in a different type system altogether, with its own rules. + +Separately from its type system, Web IDL defines a ["binding"](http://heycam.github.io/webidl/#ecmascript-binding) of the type system into JavaScript. This contains rules like: when you pass a JavaScript value to the JavaScript method that manifests a given Web IDL operation, how does that get converted into a Web IDL value? For example, a JavaScript `true` passed in the position of a Web IDL `boolean` argument becomes a Web IDL `true`. But, a JavaScript `true` passed in the position of a [Web IDL `unsigned long`](http://heycam.github.io/webidl/#idl-unsigned-long) becomes a Web IDL `1`. And so on. + +Finally, we have the actual implementation code. This is usually C++, although these days [some smart people are using Rust](https://github.com/servo/servo). The implementation, of course, has its own type system. So when they implement the Web IDL algorithms, they don't actually use Web IDL values, since those aren't "real" outside of specs. Instead, implementations apply the Web IDL binding rules in such a way as to convert incoming JavaScript values into C++ values. For example, if code in the browser called `doStuff(true, true)`, then the implementation code would eventually receive a C++ `bool` containing `true` and a C++ `uint32_t` containing `1`. + +The upside of all this is that implementations can abstract all the conversion logic away, letting Web IDL handle it, and focus on implementing the relevant methods in C++ with values of the correct type already provided. That is payoff of Web IDL, in a nutshell. + +And getting to that payoff is the goal of _this_ project—but for JavaScript implementations, instead of C++ ones. That is, this library is designed to make it easier for JavaScript developers to write functions that behave like a given Web IDL operation. So conceptually, the conversion pipeline, which in its general form is JavaScript values ↦ Web IDL values ↦ implementation-language values, in this case becomes JavaScript values ↦ Web IDL values ↦ JavaScript values. And that intermediate step is where all the logic is performed: a JavaScript `true` becomes a Web IDL `1` in an unsigned long context, which then becomes a JavaScript `1`. + +## Don't use this + +Seriously, why would you ever use this? You really shouldn't. Web IDL is … strange, and you shouldn't be emulating its semantics. If you're looking for a generic argument-processing library, you should find one with better rules than those from Web IDL. In general, your JavaScript should not be trying to become more like Web IDL; if anything, we should fix Web IDL to make it more like JavaScript. + +The _only_ people who should use this are those trying to create faithful implementations (or polyfills) of web platform interfaces defined in Web IDL. Its main consumer is the [jsdom](https://github.com/jsdom/jsdom) project. diff --git a/node_modules/webidl-conversions/lib/index.js b/node_modules/webidl-conversions/lib/index.js new file mode 100644 index 000000000..0229347c1 --- /dev/null +++ b/node_modules/webidl-conversions/lib/index.js @@ -0,0 +1,450 @@ +"use strict"; + +function makeException(ErrorType, message, options) { + if (options.globals) { + ErrorType = options.globals[ErrorType.name]; + } + return new ErrorType(`${options.context ? options.context : "Value"} ${message}.`); +} + +function toNumber(value, options) { + if (typeof value === "bigint") { + throw makeException(TypeError, "is a BigInt which cannot be converted to a number", options); + } + if (!options.globals) { + return Number(value); + } + return options.globals.Number(value); +} + +// Round x to the nearest integer, choosing the even integer if it lies halfway between two. +function evenRound(x) { + // There are four cases for numbers with fractional part being .5: + // + // case | x | floor(x) | round(x) | expected | x <> 0 | x % 1 | x & 1 | example + // 1 | 2n + 0.5 | 2n | 2n + 1 | 2n | > | 0.5 | 0 | 0.5 -> 0 + // 2 | 2n + 1.5 | 2n + 1 | 2n + 2 | 2n + 2 | > | 0.5 | 1 | 1.5 -> 2 + // 3 | -2n - 0.5 | -2n - 1 | -2n | -2n | < | -0.5 | 0 | -0.5 -> 0 + // 4 | -2n - 1.5 | -2n - 2 | -2n - 1 | -2n - 2 | < | -0.5 | 1 | -1.5 -> -2 + // (where n is a non-negative integer) + // + // Branch here for cases 1 and 4 + if ((x > 0 && (x % 1) === +0.5 && (x & 1) === 0) || + (x < 0 && (x % 1) === -0.5 && (x & 1) === 1)) { + return censorNegativeZero(Math.floor(x)); + } + + return censorNegativeZero(Math.round(x)); +} + +function integerPart(n) { + return censorNegativeZero(Math.trunc(n)); +} + +function sign(x) { + return x < 0 ? -1 : 1; +} + +function modulo(x, y) { + // https://tc39.github.io/ecma262/#eqn-modulo + // Note that http://stackoverflow.com/a/4467559/3191 does NOT work for large modulos + const signMightNotMatch = x % y; + if (sign(y) !== sign(signMightNotMatch)) { + return signMightNotMatch + y; + } + return signMightNotMatch; +} + +function censorNegativeZero(x) { + return x === 0 ? 0 : x; +} + +function createIntegerConversion(bitLength, { unsigned }) { + let lowerBound, upperBound; + if (unsigned) { + lowerBound = 0; + upperBound = 2 ** bitLength - 1; + } else { + lowerBound = -(2 ** (bitLength - 1)); + upperBound = 2 ** (bitLength - 1) - 1; + } + + const twoToTheBitLength = 2 ** bitLength; + const twoToOneLessThanTheBitLength = 2 ** (bitLength - 1); + + return (value, options = {}) => { + let x = toNumber(value, options); + x = censorNegativeZero(x); + + if (options.enforceRange) { + if (!Number.isFinite(x)) { + throw makeException(TypeError, "is not a finite number", options); + } + + x = integerPart(x); + + if (x < lowerBound || x > upperBound) { + throw makeException( + TypeError, + `is outside the accepted range of ${lowerBound} to ${upperBound}, inclusive`, + options + ); + } + + return x; + } + + if (!Number.isNaN(x) && options.clamp) { + x = Math.min(Math.max(x, lowerBound), upperBound); + x = evenRound(x); + return x; + } + + if (!Number.isFinite(x) || x === 0) { + return 0; + } + x = integerPart(x); + + // Math.pow(2, 64) is not accurately representable in JavaScript, so try to avoid these per-spec operations if + // possible. Hopefully it's an optimization for the non-64-bitLength cases too. + if (x >= lowerBound && x <= upperBound) { + return x; + } + + // These will not work great for bitLength of 64, but oh well. See the README for more details. + x = modulo(x, twoToTheBitLength); + if (!unsigned && x >= twoToOneLessThanTheBitLength) { + return x - twoToTheBitLength; + } + return x; + }; +} + +function createLongLongConversion(bitLength, { unsigned }) { + const upperBound = Number.MAX_SAFE_INTEGER; + const lowerBound = unsigned ? 0 : Number.MIN_SAFE_INTEGER; + const asBigIntN = unsigned ? BigInt.asUintN : BigInt.asIntN; + + return (value, options = {}) => { + let x = toNumber(value, options); + x = censorNegativeZero(x); + + if (options.enforceRange) { + if (!Number.isFinite(x)) { + throw makeException(TypeError, "is not a finite number", options); + } + + x = integerPart(x); + + if (x < lowerBound || x > upperBound) { + throw makeException( + TypeError, + `is outside the accepted range of ${lowerBound} to ${upperBound}, inclusive`, + options + ); + } + + return x; + } + + if (!Number.isNaN(x) && options.clamp) { + x = Math.min(Math.max(x, lowerBound), upperBound); + x = evenRound(x); + return x; + } + + if (!Number.isFinite(x) || x === 0) { + return 0; + } + + let xBigInt = BigInt(integerPart(x)); + xBigInt = asBigIntN(bitLength, xBigInt); + return Number(xBigInt); + }; +} + +exports.any = value => { + return value; +}; + +exports.undefined = () => { + return undefined; +}; + +exports.boolean = value => { + return Boolean(value); +}; + +exports.byte = createIntegerConversion(8, { unsigned: false }); +exports.octet = createIntegerConversion(8, { unsigned: true }); + +exports.short = createIntegerConversion(16, { unsigned: false }); +exports["unsigned short"] = createIntegerConversion(16, { unsigned: true }); + +exports.long = createIntegerConversion(32, { unsigned: false }); +exports["unsigned long"] = createIntegerConversion(32, { unsigned: true }); + +exports["long long"] = createLongLongConversion(64, { unsigned: false }); +exports["unsigned long long"] = createLongLongConversion(64, { unsigned: true }); + +exports.double = (value, options = {}) => { + const x = toNumber(value, options); + + if (!Number.isFinite(x)) { + throw makeException(TypeError, "is not a finite floating-point value", options); + } + + return x; +}; + +exports["unrestricted double"] = (value, options = {}) => { + const x = toNumber(value, options); + + return x; +}; + +exports.float = (value, options = {}) => { + const x = toNumber(value, options); + + if (!Number.isFinite(x)) { + throw makeException(TypeError, "is not a finite floating-point value", options); + } + + if (Object.is(x, -0)) { + return x; + } + + const y = Math.fround(x); + + if (!Number.isFinite(y)) { + throw makeException(TypeError, "is outside the range of a single-precision floating-point value", options); + } + + return y; +}; + +exports["unrestricted float"] = (value, options = {}) => { + const x = toNumber(value, options); + + if (isNaN(x)) { + return x; + } + + if (Object.is(x, -0)) { + return x; + } + + return Math.fround(x); +}; + +exports.DOMString = (value, options = {}) => { + if (options.treatNullAsEmptyString && value === null) { + return ""; + } + + if (typeof value === "symbol") { + throw makeException(TypeError, "is a symbol, which cannot be converted to a string", options); + } + + const StringCtor = options.globals ? options.globals.String : String; + return StringCtor(value); +}; + +exports.ByteString = (value, options = {}) => { + const x = exports.DOMString(value, options); + let c; + for (let i = 0; (c = x.codePointAt(i)) !== undefined; ++i) { + if (c > 255) { + throw makeException(TypeError, "is not a valid ByteString", options); + } + } + + return x; +}; + +exports.USVString = (value, options = {}) => { + const S = exports.DOMString(value, options); + const n = S.length; + const U = []; + for (let i = 0; i < n; ++i) { + const c = S.charCodeAt(i); + if (c < 0xD800 || c > 0xDFFF) { + U.push(String.fromCodePoint(c)); + } else if (0xDC00 <= c && c <= 0xDFFF) { + U.push(String.fromCodePoint(0xFFFD)); + } else if (i === n - 1) { + U.push(String.fromCodePoint(0xFFFD)); + } else { + const d = S.charCodeAt(i + 1); + if (0xDC00 <= d && d <= 0xDFFF) { + const a = c & 0x3FF; + const b = d & 0x3FF; + U.push(String.fromCodePoint((2 << 15) + ((2 << 9) * a) + b)); + ++i; + } else { + U.push(String.fromCodePoint(0xFFFD)); + } + } + } + + return U.join(""); +}; + +exports.object = (value, options = {}) => { + if (value === null || (typeof value !== "object" && typeof value !== "function")) { + throw makeException(TypeError, "is not an object", options); + } + + return value; +}; + +const abByteLengthGetter = + Object.getOwnPropertyDescriptor(ArrayBuffer.prototype, "byteLength").get; +const sabByteLengthGetter = + typeof SharedArrayBuffer === "function" ? + Object.getOwnPropertyDescriptor(SharedArrayBuffer.prototype, "byteLength").get : + null; + +function isNonSharedArrayBuffer(value) { + try { + // This will throw on SharedArrayBuffers, but not detached ArrayBuffers. + // (The spec says it should throw, but the spec conflicts with implementations: https://github.com/tc39/ecma262/issues/678) + abByteLengthGetter.call(value); + + return true; + } catch { + return false; + } +} + +function isSharedArrayBuffer(value) { + try { + sabByteLengthGetter.call(value); + return true; + } catch { + return false; + } +} + +function isArrayBufferDetached(value) { + try { + // eslint-disable-next-line no-new + new Uint8Array(value); + return false; + } catch { + return true; + } +} + +exports.ArrayBuffer = (value, options = {}) => { + if (!isNonSharedArrayBuffer(value)) { + if (options.allowShared && !isSharedArrayBuffer(value)) { + throw makeException(TypeError, "is not an ArrayBuffer or SharedArrayBuffer", options); + } + throw makeException(TypeError, "is not an ArrayBuffer", options); + } + if (isArrayBufferDetached(value)) { + throw makeException(TypeError, "is a detached ArrayBuffer", options); + } + + return value; +}; + +const dvByteLengthGetter = + Object.getOwnPropertyDescriptor(DataView.prototype, "byteLength").get; +exports.DataView = (value, options = {}) => { + try { + dvByteLengthGetter.call(value); + } catch (e) { + throw makeException(TypeError, "is not a DataView", options); + } + + if (!options.allowShared && isSharedArrayBuffer(value.buffer)) { + throw makeException(TypeError, "is backed by a SharedArrayBuffer, which is not allowed", options); + } + if (isArrayBufferDetached(value.buffer)) { + throw makeException(TypeError, "is backed by a detached ArrayBuffer", options); + } + + return value; +}; + +// Returns the unforgeable `TypedArray` constructor name or `undefined`, +// if the `this` value isn't a valid `TypedArray` object. +// +// https://tc39.es/ecma262/#sec-get-%typedarray%.prototype-@@tostringtag +const typedArrayNameGetter = Object.getOwnPropertyDescriptor( + Object.getPrototypeOf(Uint8Array).prototype, + Symbol.toStringTag +).get; +[ + Int8Array, + Int16Array, + Int32Array, + Uint8Array, + Uint16Array, + Uint32Array, + Uint8ClampedArray, + Float32Array, + Float64Array +].forEach(func => { + const { name } = func; + const article = /^[AEIOU]/u.test(name) ? "an" : "a"; + exports[name] = (value, options = {}) => { + if (!ArrayBuffer.isView(value) || typedArrayNameGetter.call(value) !== name) { + throw makeException(TypeError, `is not ${article} ${name} object`, options); + } + if (!options.allowShared && isSharedArrayBuffer(value.buffer)) { + throw makeException(TypeError, "is a view on a SharedArrayBuffer, which is not allowed", options); + } + if (isArrayBufferDetached(value.buffer)) { + throw makeException(TypeError, "is a view on a detached ArrayBuffer", options); + } + + return value; + }; +}); + +// Common definitions + +exports.ArrayBufferView = (value, options = {}) => { + if (!ArrayBuffer.isView(value)) { + throw makeException(TypeError, "is not a view on an ArrayBuffer or SharedArrayBuffer", options); + } + + if (!options.allowShared && isSharedArrayBuffer(value.buffer)) { + throw makeException(TypeError, "is a view on a SharedArrayBuffer, which is not allowed", options); + } + + if (isArrayBufferDetached(value.buffer)) { + throw makeException(TypeError, "is a view on a detached ArrayBuffer", options); + } + return value; +}; + +exports.BufferSource = (value, options = {}) => { + if (ArrayBuffer.isView(value)) { + if (!options.allowShared && isSharedArrayBuffer(value.buffer)) { + throw makeException(TypeError, "is a view on a SharedArrayBuffer, which is not allowed", options); + } + + if (isArrayBufferDetached(value.buffer)) { + throw makeException(TypeError, "is a view on a detached ArrayBuffer", options); + } + return value; + } + + if (!options.allowShared && !isNonSharedArrayBuffer(value)) { + throw makeException(TypeError, "is not an ArrayBuffer or a view on one", options); + } + if (options.allowShared && !isSharedArrayBuffer(value) && !isNonSharedArrayBuffer(value)) { + throw makeException(TypeError, "is not an ArrayBuffer, SharedArrayBuffer, or a view on one", options); + } + if (isArrayBufferDetached(value)) { + throw makeException(TypeError, "is a detached ArrayBuffer", options); + } + + return value; +}; + +exports.DOMTimeStamp = exports["unsigned long long"]; diff --git a/node_modules/webidl-conversions/package.json b/node_modules/webidl-conversions/package.json new file mode 100644 index 000000000..20747bb42 --- /dev/null +++ b/node_modules/webidl-conversions/package.json @@ -0,0 +1,35 @@ +{ + "name": "webidl-conversions", + "version": "7.0.0", + "description": "Implements the WebIDL algorithms for converting to and from JavaScript values", + "main": "lib/index.js", + "scripts": { + "lint": "eslint .", + "test": "mocha test/*.js", + "test-no-sab": "mocha --parallel --jobs 2 --require test/helpers/delete-sab.js test/*.js", + "coverage": "nyc mocha test/*.js" + }, + "_scripts_comments": { + "test-no-sab": "Node.js internals are broken by deleting SharedArrayBuffer if you run tests on the main thread. Using Mocha's parallel mode avoids this." + }, + "repository": "jsdom/webidl-conversions", + "keywords": [ + "webidl", + "web", + "types" + ], + "files": [ + "lib/" + ], + "author": "Domenic Denicola (https://domenic.me/)", + "license": "BSD-2-Clause", + "devDependencies": { + "@domenic/eslint-config": "^1.3.0", + "eslint": "^7.32.0", + "mocha": "^9.1.1", + "nyc": "^15.1.0" + }, + "engines": { + "node": ">=12" + } +} diff --git a/node_modules/whatwg-url/LICENSE.txt b/node_modules/whatwg-url/LICENSE.txt new file mode 100644 index 000000000..8e8c25c3a --- /dev/null +++ b/node_modules/whatwg-url/LICENSE.txt @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Sebastian Mayr + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/node_modules/whatwg-url/README.md b/node_modules/whatwg-url/README.md new file mode 100644 index 000000000..4d089006f --- /dev/null +++ b/node_modules/whatwg-url/README.md @@ -0,0 +1,106 @@ +# whatwg-url + +whatwg-url is a full implementation of the WHATWG [URL Standard](https://url.spec.whatwg.org/). It can be used standalone, but it also exposes a lot of the internal algorithms that are useful for integrating a URL parser into a project like [jsdom](https://github.com/jsdom/jsdom). + +## Specification conformance + +whatwg-url is currently up to date with the URL spec up to commit [43c2713](https://github.com/whatwg/url/commit/43c27137a0bc82c4b800fe74be893255fbeb35f4). + +For `file:` URLs, whose [origin is left unspecified](https://url.spec.whatwg.org/#concept-url-origin), whatwg-url chooses to use a new opaque origin (which serializes to `"null"`). + +whatwg-url does not yet implement any encoding handling beyond UTF-8. That is, the _encoding override_ parameter does not exist in our API. + +## API + +### The `URL` and `URLSearchParams` classes + +The main API is provided by the [`URL`](https://url.spec.whatwg.org/#url-class) and [`URLSearchParams`](https://url.spec.whatwg.org/#interface-urlsearchparams) exports, which follows the spec's behavior in all ways (including e.g. `USVString` conversion). Most consumers of this library will want to use these. + +### Low-level URL Standard API + +The following methods are exported for use by places like jsdom that need to implement things like [`HTMLHyperlinkElementUtils`](https://html.spec.whatwg.org/#htmlhyperlinkelementutils). They mostly operate on or return an "internal URL" or ["URL record"](https://url.spec.whatwg.org/#concept-url) type. + +- [URL parser](https://url.spec.whatwg.org/#concept-url-parser): `parseURL(input, { baseURL })` +- [Basic URL parser](https://url.spec.whatwg.org/#concept-basic-url-parser): `basicURLParse(input, { baseURL, url, stateOverride })` +- [URL serializer](https://url.spec.whatwg.org/#concept-url-serializer): `serializeURL(urlRecord, excludeFragment)` +- [Host serializer](https://url.spec.whatwg.org/#concept-host-serializer): `serializeHost(hostFromURLRecord)` +- [URL path serializer](https://url.spec.whatwg.org/#url-path-serializer): `serializePath(urlRecord)` +- [Serialize an integer](https://url.spec.whatwg.org/#serialize-an-integer): `serializeInteger(number)` +- [Origin](https://url.spec.whatwg.org/#concept-url-origin) [serializer](https://html.spec.whatwg.org/multipage/origin.html#ascii-serialisation-of-an-origin): `serializeURLOrigin(urlRecord)` +- [Set the username](https://url.spec.whatwg.org/#set-the-username): `setTheUsername(urlRecord, usernameString)` +- [Set the password](https://url.spec.whatwg.org/#set-the-password): `setThePassword(urlRecord, passwordString)` +- [Has an opaque path](https://url.spec.whatwg.org/#url-opaque-path): `hasAnOpaquePath(urlRecord)` +- [Cannot have a username/password/port](https://url.spec.whatwg.org/#cannot-have-a-username-password-port): `cannotHaveAUsernamePasswordPort(urlRecord)` +- [Percent decode bytes](https://url.spec.whatwg.org/#percent-decode): `percentDecodeBytes(uint8Array)` +- [Percent decode a string](https://url.spec.whatwg.org/#percent-decode-string): `percentDecodeString(string)` + +The `stateOverride` parameter is one of the following strings: + +- [`"scheme start"`](https://url.spec.whatwg.org/#scheme-start-state) +- [`"scheme"`](https://url.spec.whatwg.org/#scheme-state) +- [`"no scheme"`](https://url.spec.whatwg.org/#no-scheme-state) +- [`"special relative or authority"`](https://url.spec.whatwg.org/#special-relative-or-authority-state) +- [`"path or authority"`](https://url.spec.whatwg.org/#path-or-authority-state) +- [`"relative"`](https://url.spec.whatwg.org/#relative-state) +- [`"relative slash"`](https://url.spec.whatwg.org/#relative-slash-state) +- [`"special authority slashes"`](https://url.spec.whatwg.org/#special-authority-slashes-state) +- [`"special authority ignore slashes"`](https://url.spec.whatwg.org/#special-authority-ignore-slashes-state) +- [`"authority"`](https://url.spec.whatwg.org/#authority-state) +- [`"host"`](https://url.spec.whatwg.org/#host-state) +- [`"hostname"`](https://url.spec.whatwg.org/#hostname-state) +- [`"port"`](https://url.spec.whatwg.org/#port-state) +- [`"file"`](https://url.spec.whatwg.org/#file-state) +- [`"file slash"`](https://url.spec.whatwg.org/#file-slash-state) +- [`"file host"`](https://url.spec.whatwg.org/#file-host-state) +- [`"path start"`](https://url.spec.whatwg.org/#path-start-state) +- [`"path"`](https://url.spec.whatwg.org/#path-state) +- [`"opaque path"`](https://url.spec.whatwg.org/#cannot-be-a-base-url-path-state) +- [`"query"`](https://url.spec.whatwg.org/#query-state) +- [`"fragment"`](https://url.spec.whatwg.org/#fragment-state) + +The URL record type has the following API: + +- [`scheme`](https://url.spec.whatwg.org/#concept-url-scheme) +- [`username`](https://url.spec.whatwg.org/#concept-url-username) +- [`password`](https://url.spec.whatwg.org/#concept-url-password) +- [`host`](https://url.spec.whatwg.org/#concept-url-host) +- [`port`](https://url.spec.whatwg.org/#concept-url-port) +- [`path`](https://url.spec.whatwg.org/#concept-url-path) (as an array of strings, or a string) +- [`query`](https://url.spec.whatwg.org/#concept-url-query) +- [`fragment`](https://url.spec.whatwg.org/#concept-url-fragment) + +These properties should be treated with care, as in general changing them will cause the URL record to be in an inconsistent state until the appropriate invocation of `basicURLParse` is used to fix it up. You can see examples of this in the URL Standard, where there are many step sequences like "4. Set context object’s url’s fragment to the empty string. 5. Basic URL parse _input_ with context object’s url as _url_ and fragment state as _state override_." In between those two steps, a URL record is in an unusable state. + +The return value of "failure" in the spec is represented by `null`. That is, functions like `parseURL` and `basicURLParse` can return _either_ a URL record _or_ `null`. + +### `whatwg-url/webidl2js-wrapper` module + +This module exports the `URL` and `URLSearchParams` [interface wrappers API](https://github.com/jsdom/webidl2js#for-interfaces) generated by [webidl2js](https://github.com/jsdom/webidl2js). + +## Development instructions + +First, install [Node.js](https://nodejs.org/). Then, fetch the dependencies of whatwg-url, by running from this directory: + + npm install + +To run tests: + + npm test + +To generate a coverage report: + + npm run coverage + +To build and run the live viewer: + + npm run prepare + npm run build-live-viewer + +Serve the contents of the `live-viewer` directory using any web server. + +## Supporting whatwg-url + +The jsdom project (including whatwg-url) is a community-driven project maintained by a team of [volunteers](https://github.com/orgs/jsdom/people). You could support us by: + +- [Getting professional support for whatwg-url](https://tidelift.com/subscription/pkg/npm-whatwg-url?utm_source=npm-whatwg-url&utm_medium=referral&utm_campaign=readme) as part of a Tidelift subscription. Tidelift helps making open source sustainable for us while giving teams assurances for maintenance, licensing, and security. +- Contributing directly to the project. diff --git a/node_modules/whatwg-url/index.js b/node_modules/whatwg-url/index.js new file mode 100644 index 000000000..c470e48e4 --- /dev/null +++ b/node_modules/whatwg-url/index.js @@ -0,0 +1,27 @@ +"use strict"; + +const { URL, URLSearchParams } = require("./webidl2js-wrapper"); +const urlStateMachine = require("./lib/url-state-machine"); +const percentEncoding = require("./lib/percent-encoding"); + +const sharedGlobalObject = { Array, Object, Promise, String, TypeError }; +URL.install(sharedGlobalObject, ["Window"]); +URLSearchParams.install(sharedGlobalObject, ["Window"]); + +exports.URL = sharedGlobalObject.URL; +exports.URLSearchParams = sharedGlobalObject.URLSearchParams; + +exports.parseURL = urlStateMachine.parseURL; +exports.basicURLParse = urlStateMachine.basicURLParse; +exports.serializeURL = urlStateMachine.serializeURL; +exports.serializePath = urlStateMachine.serializePath; +exports.serializeHost = urlStateMachine.serializeHost; +exports.serializeInteger = urlStateMachine.serializeInteger; +exports.serializeURLOrigin = urlStateMachine.serializeURLOrigin; +exports.setTheUsername = urlStateMachine.setTheUsername; +exports.setThePassword = urlStateMachine.setThePassword; +exports.cannotHaveAUsernamePasswordPort = urlStateMachine.cannotHaveAUsernamePasswordPort; +exports.hasAnOpaquePath = urlStateMachine.hasAnOpaquePath; + +exports.percentDecodeString = percentEncoding.percentDecodeString; +exports.percentDecodeBytes = percentEncoding.percentDecodeBytes; diff --git a/node_modules/whatwg-url/lib/Function.js b/node_modules/whatwg-url/lib/Function.js new file mode 100644 index 000000000..ea8712fd7 --- /dev/null +++ b/node_modules/whatwg-url/lib/Function.js @@ -0,0 +1,42 @@ +"use strict"; + +const conversions = require("webidl-conversions"); +const utils = require("./utils.js"); + +exports.convert = (globalObject, value, { context = "The provided value" } = {}) => { + if (typeof value !== "function") { + throw new globalObject.TypeError(context + " is not a function"); + } + + function invokeTheCallbackFunction(...args) { + const thisArg = utils.tryWrapperForImpl(this); + let callResult; + + for (let i = 0; i < args.length; i++) { + args[i] = utils.tryWrapperForImpl(args[i]); + } + + callResult = Reflect.apply(value, thisArg, args); + + callResult = conversions["any"](callResult, { context: context, globals: globalObject }); + + return callResult; + } + + invokeTheCallbackFunction.construct = (...args) => { + for (let i = 0; i < args.length; i++) { + args[i] = utils.tryWrapperForImpl(args[i]); + } + + let callResult = Reflect.construct(value, args); + + callResult = conversions["any"](callResult, { context: context, globals: globalObject }); + + return callResult; + }; + + invokeTheCallbackFunction[utils.wrapperSymbol] = value; + invokeTheCallbackFunction.objectReference = value; + + return invokeTheCallbackFunction; +}; diff --git a/node_modules/whatwg-url/lib/URL-impl.js b/node_modules/whatwg-url/lib/URL-impl.js new file mode 100644 index 000000000..db3a0aea0 --- /dev/null +++ b/node_modules/whatwg-url/lib/URL-impl.js @@ -0,0 +1,209 @@ +"use strict"; +const usm = require("./url-state-machine"); +const urlencoded = require("./urlencoded"); +const URLSearchParams = require("./URLSearchParams"); + +exports.implementation = class URLImpl { + constructor(globalObject, constructorArgs) { + const url = constructorArgs[0]; + const base = constructorArgs[1]; + + let parsedBase = null; + if (base !== undefined) { + parsedBase = usm.basicURLParse(base); + if (parsedBase === null) { + throw new TypeError(`Invalid base URL: ${base}`); + } + } + + const parsedURL = usm.basicURLParse(url, { baseURL: parsedBase }); + if (parsedURL === null) { + throw new TypeError(`Invalid URL: ${url}`); + } + + const query = parsedURL.query !== null ? parsedURL.query : ""; + + this._url = parsedURL; + + // We cannot invoke the "new URLSearchParams object" algorithm without going through the constructor, which strips + // question mark by default. Therefore the doNotStripQMark hack is used. + this._query = URLSearchParams.createImpl(globalObject, [query], { doNotStripQMark: true }); + this._query._url = this; + } + + get href() { + return usm.serializeURL(this._url); + } + + set href(v) { + const parsedURL = usm.basicURLParse(v); + if (parsedURL === null) { + throw new TypeError(`Invalid URL: ${v}`); + } + + this._url = parsedURL; + + this._query._list.splice(0); + const { query } = parsedURL; + if (query !== null) { + this._query._list = urlencoded.parseUrlencodedString(query); + } + } + + get origin() { + return usm.serializeURLOrigin(this._url); + } + + get protocol() { + return `${this._url.scheme}:`; + } + + set protocol(v) { + usm.basicURLParse(`${v}:`, { url: this._url, stateOverride: "scheme start" }); + } + + get username() { + return this._url.username; + } + + set username(v) { + if (usm.cannotHaveAUsernamePasswordPort(this._url)) { + return; + } + + usm.setTheUsername(this._url, v); + } + + get password() { + return this._url.password; + } + + set password(v) { + if (usm.cannotHaveAUsernamePasswordPort(this._url)) { + return; + } + + usm.setThePassword(this._url, v); + } + + get host() { + const url = this._url; + + if (url.host === null) { + return ""; + } + + if (url.port === null) { + return usm.serializeHost(url.host); + } + + return `${usm.serializeHost(url.host)}:${usm.serializeInteger(url.port)}`; + } + + set host(v) { + if (usm.hasAnOpaquePath(this._url)) { + return; + } + + usm.basicURLParse(v, { url: this._url, stateOverride: "host" }); + } + + get hostname() { + if (this._url.host === null) { + return ""; + } + + return usm.serializeHost(this._url.host); + } + + set hostname(v) { + if (usm.hasAnOpaquePath(this._url)) { + return; + } + + usm.basicURLParse(v, { url: this._url, stateOverride: "hostname" }); + } + + get port() { + if (this._url.port === null) { + return ""; + } + + return usm.serializeInteger(this._url.port); + } + + set port(v) { + if (usm.cannotHaveAUsernamePasswordPort(this._url)) { + return; + } + + if (v === "") { + this._url.port = null; + } else { + usm.basicURLParse(v, { url: this._url, stateOverride: "port" }); + } + } + + get pathname() { + return usm.serializePath(this._url); + } + + set pathname(v) { + if (usm.hasAnOpaquePath(this._url)) { + return; + } + + this._url.path = []; + usm.basicURLParse(v, { url: this._url, stateOverride: "path start" }); + } + + get search() { + if (this._url.query === null || this._url.query === "") { + return ""; + } + + return `?${this._url.query}`; + } + + set search(v) { + const url = this._url; + + if (v === "") { + url.query = null; + this._query._list = []; + return; + } + + const input = v[0] === "?" ? v.substring(1) : v; + url.query = ""; + usm.basicURLParse(input, { url, stateOverride: "query" }); + this._query._list = urlencoded.parseUrlencodedString(input); + } + + get searchParams() { + return this._query; + } + + get hash() { + if (this._url.fragment === null || this._url.fragment === "") { + return ""; + } + + return `#${this._url.fragment}`; + } + + set hash(v) { + if (v === "") { + this._url.fragment = null; + return; + } + + const input = v[0] === "#" ? v.substring(1) : v; + this._url.fragment = ""; + usm.basicURLParse(input, { url: this._url, stateOverride: "fragment" }); + } + + toJSON() { + return this.href; + } +}; diff --git a/node_modules/whatwg-url/lib/URL.js b/node_modules/whatwg-url/lib/URL.js new file mode 100644 index 000000000..d62ac3e76 --- /dev/null +++ b/node_modules/whatwg-url/lib/URL.js @@ -0,0 +1,442 @@ +"use strict"; + +const conversions = require("webidl-conversions"); +const utils = require("./utils.js"); + +const implSymbol = utils.implSymbol; +const ctorRegistrySymbol = utils.ctorRegistrySymbol; + +const interfaceName = "URL"; + +exports.is = value => { + return utils.isObject(value) && utils.hasOwn(value, implSymbol) && value[implSymbol] instanceof Impl.implementation; +}; +exports.isImpl = value => { + return utils.isObject(value) && value instanceof Impl.implementation; +}; +exports.convert = (globalObject, value, { context = "The provided value" } = {}) => { + if (exports.is(value)) { + return utils.implForWrapper(value); + } + throw new globalObject.TypeError(`${context} is not of type 'URL'.`); +}; + +function makeWrapper(globalObject, newTarget) { + let proto; + if (newTarget !== undefined) { + proto = newTarget.prototype; + } + + if (!utils.isObject(proto)) { + proto = globalObject[ctorRegistrySymbol]["URL"].prototype; + } + + return Object.create(proto); +} + +exports.create = (globalObject, constructorArgs, privateData) => { + const wrapper = makeWrapper(globalObject); + return exports.setup(wrapper, globalObject, constructorArgs, privateData); +}; + +exports.createImpl = (globalObject, constructorArgs, privateData) => { + const wrapper = exports.create(globalObject, constructorArgs, privateData); + return utils.implForWrapper(wrapper); +}; + +exports._internalSetup = (wrapper, globalObject) => {}; + +exports.setup = (wrapper, globalObject, constructorArgs = [], privateData = {}) => { + privateData.wrapper = wrapper; + + exports._internalSetup(wrapper, globalObject); + Object.defineProperty(wrapper, implSymbol, { + value: new Impl.implementation(globalObject, constructorArgs, privateData), + configurable: true + }); + + wrapper[implSymbol][utils.wrapperSymbol] = wrapper; + if (Impl.init) { + Impl.init(wrapper[implSymbol]); + } + return wrapper; +}; + +exports.new = (globalObject, newTarget) => { + const wrapper = makeWrapper(globalObject, newTarget); + + exports._internalSetup(wrapper, globalObject); + Object.defineProperty(wrapper, implSymbol, { + value: Object.create(Impl.implementation.prototype), + configurable: true + }); + + wrapper[implSymbol][utils.wrapperSymbol] = wrapper; + if (Impl.init) { + Impl.init(wrapper[implSymbol]); + } + return wrapper[implSymbol]; +}; + +const exposed = new Set(["Window", "Worker"]); + +exports.install = (globalObject, globalNames) => { + if (!globalNames.some(globalName => exposed.has(globalName))) { + return; + } + + const ctorRegistry = utils.initCtorRegistry(globalObject); + class URL { + constructor(url) { + if (arguments.length < 1) { + throw new globalObject.TypeError( + `Failed to construct 'URL': 1 argument required, but only ${arguments.length} present.` + ); + } + const args = []; + { + let curArg = arguments[0]; + curArg = conversions["USVString"](curArg, { + context: "Failed to construct 'URL': parameter 1", + globals: globalObject + }); + args.push(curArg); + } + { + let curArg = arguments[1]; + if (curArg !== undefined) { + curArg = conversions["USVString"](curArg, { + context: "Failed to construct 'URL': parameter 2", + globals: globalObject + }); + } + args.push(curArg); + } + return exports.setup(Object.create(new.target.prototype), globalObject, args); + } + + toJSON() { + const esValue = this !== null && this !== undefined ? this : globalObject; + if (!exports.is(esValue)) { + throw new globalObject.TypeError("'toJSON' called on an object that is not a valid instance of URL."); + } + + return esValue[implSymbol].toJSON(); + } + + get href() { + const esValue = this !== null && this !== undefined ? this : globalObject; + + if (!exports.is(esValue)) { + throw new globalObject.TypeError("'get href' called on an object that is not a valid instance of URL."); + } + + return esValue[implSymbol]["href"]; + } + + set href(V) { + const esValue = this !== null && this !== undefined ? this : globalObject; + + if (!exports.is(esValue)) { + throw new globalObject.TypeError("'set href' called on an object that is not a valid instance of URL."); + } + + V = conversions["USVString"](V, { + context: "Failed to set the 'href' property on 'URL': The provided value", + globals: globalObject + }); + + esValue[implSymbol]["href"] = V; + } + + toString() { + const esValue = this; + if (!exports.is(esValue)) { + throw new globalObject.TypeError("'toString' called on an object that is not a valid instance of URL."); + } + + return esValue[implSymbol]["href"]; + } + + get origin() { + const esValue = this !== null && this !== undefined ? this : globalObject; + + if (!exports.is(esValue)) { + throw new globalObject.TypeError("'get origin' called on an object that is not a valid instance of URL."); + } + + return esValue[implSymbol]["origin"]; + } + + get protocol() { + const esValue = this !== null && this !== undefined ? this : globalObject; + + if (!exports.is(esValue)) { + throw new globalObject.TypeError("'get protocol' called on an object that is not a valid instance of URL."); + } + + return esValue[implSymbol]["protocol"]; + } + + set protocol(V) { + const esValue = this !== null && this !== undefined ? this : globalObject; + + if (!exports.is(esValue)) { + throw new globalObject.TypeError("'set protocol' called on an object that is not a valid instance of URL."); + } + + V = conversions["USVString"](V, { + context: "Failed to set the 'protocol' property on 'URL': The provided value", + globals: globalObject + }); + + esValue[implSymbol]["protocol"] = V; + } + + get username() { + const esValue = this !== null && this !== undefined ? this : globalObject; + + if (!exports.is(esValue)) { + throw new globalObject.TypeError("'get username' called on an object that is not a valid instance of URL."); + } + + return esValue[implSymbol]["username"]; + } + + set username(V) { + const esValue = this !== null && this !== undefined ? this : globalObject; + + if (!exports.is(esValue)) { + throw new globalObject.TypeError("'set username' called on an object that is not a valid instance of URL."); + } + + V = conversions["USVString"](V, { + context: "Failed to set the 'username' property on 'URL': The provided value", + globals: globalObject + }); + + esValue[implSymbol]["username"] = V; + } + + get password() { + const esValue = this !== null && this !== undefined ? this : globalObject; + + if (!exports.is(esValue)) { + throw new globalObject.TypeError("'get password' called on an object that is not a valid instance of URL."); + } + + return esValue[implSymbol]["password"]; + } + + set password(V) { + const esValue = this !== null && this !== undefined ? this : globalObject; + + if (!exports.is(esValue)) { + throw new globalObject.TypeError("'set password' called on an object that is not a valid instance of URL."); + } + + V = conversions["USVString"](V, { + context: "Failed to set the 'password' property on 'URL': The provided value", + globals: globalObject + }); + + esValue[implSymbol]["password"] = V; + } + + get host() { + const esValue = this !== null && this !== undefined ? this : globalObject; + + if (!exports.is(esValue)) { + throw new globalObject.TypeError("'get host' called on an object that is not a valid instance of URL."); + } + + return esValue[implSymbol]["host"]; + } + + set host(V) { + const esValue = this !== null && this !== undefined ? this : globalObject; + + if (!exports.is(esValue)) { + throw new globalObject.TypeError("'set host' called on an object that is not a valid instance of URL."); + } + + V = conversions["USVString"](V, { + context: "Failed to set the 'host' property on 'URL': The provided value", + globals: globalObject + }); + + esValue[implSymbol]["host"] = V; + } + + get hostname() { + const esValue = this !== null && this !== undefined ? this : globalObject; + + if (!exports.is(esValue)) { + throw new globalObject.TypeError("'get hostname' called on an object that is not a valid instance of URL."); + } + + return esValue[implSymbol]["hostname"]; + } + + set hostname(V) { + const esValue = this !== null && this !== undefined ? this : globalObject; + + if (!exports.is(esValue)) { + throw new globalObject.TypeError("'set hostname' called on an object that is not a valid instance of URL."); + } + + V = conversions["USVString"](V, { + context: "Failed to set the 'hostname' property on 'URL': The provided value", + globals: globalObject + }); + + esValue[implSymbol]["hostname"] = V; + } + + get port() { + const esValue = this !== null && this !== undefined ? this : globalObject; + + if (!exports.is(esValue)) { + throw new globalObject.TypeError("'get port' called on an object that is not a valid instance of URL."); + } + + return esValue[implSymbol]["port"]; + } + + set port(V) { + const esValue = this !== null && this !== undefined ? this : globalObject; + + if (!exports.is(esValue)) { + throw new globalObject.TypeError("'set port' called on an object that is not a valid instance of URL."); + } + + V = conversions["USVString"](V, { + context: "Failed to set the 'port' property on 'URL': The provided value", + globals: globalObject + }); + + esValue[implSymbol]["port"] = V; + } + + get pathname() { + const esValue = this !== null && this !== undefined ? this : globalObject; + + if (!exports.is(esValue)) { + throw new globalObject.TypeError("'get pathname' called on an object that is not a valid instance of URL."); + } + + return esValue[implSymbol]["pathname"]; + } + + set pathname(V) { + const esValue = this !== null && this !== undefined ? this : globalObject; + + if (!exports.is(esValue)) { + throw new globalObject.TypeError("'set pathname' called on an object that is not a valid instance of URL."); + } + + V = conversions["USVString"](V, { + context: "Failed to set the 'pathname' property on 'URL': The provided value", + globals: globalObject + }); + + esValue[implSymbol]["pathname"] = V; + } + + get search() { + const esValue = this !== null && this !== undefined ? this : globalObject; + + if (!exports.is(esValue)) { + throw new globalObject.TypeError("'get search' called on an object that is not a valid instance of URL."); + } + + return esValue[implSymbol]["search"]; + } + + set search(V) { + const esValue = this !== null && this !== undefined ? this : globalObject; + + if (!exports.is(esValue)) { + throw new globalObject.TypeError("'set search' called on an object that is not a valid instance of URL."); + } + + V = conversions["USVString"](V, { + context: "Failed to set the 'search' property on 'URL': The provided value", + globals: globalObject + }); + + esValue[implSymbol]["search"] = V; + } + + get searchParams() { + const esValue = this !== null && this !== undefined ? this : globalObject; + + if (!exports.is(esValue)) { + throw new globalObject.TypeError("'get searchParams' called on an object that is not a valid instance of URL."); + } + + return utils.getSameObject(this, "searchParams", () => { + return utils.tryWrapperForImpl(esValue[implSymbol]["searchParams"]); + }); + } + + get hash() { + const esValue = this !== null && this !== undefined ? this : globalObject; + + if (!exports.is(esValue)) { + throw new globalObject.TypeError("'get hash' called on an object that is not a valid instance of URL."); + } + + return esValue[implSymbol]["hash"]; + } + + set hash(V) { + const esValue = this !== null && this !== undefined ? this : globalObject; + + if (!exports.is(esValue)) { + throw new globalObject.TypeError("'set hash' called on an object that is not a valid instance of URL."); + } + + V = conversions["USVString"](V, { + context: "Failed to set the 'hash' property on 'URL': The provided value", + globals: globalObject + }); + + esValue[implSymbol]["hash"] = V; + } + } + Object.defineProperties(URL.prototype, { + toJSON: { enumerable: true }, + href: { enumerable: true }, + toString: { enumerable: true }, + origin: { enumerable: true }, + protocol: { enumerable: true }, + username: { enumerable: true }, + password: { enumerable: true }, + host: { enumerable: true }, + hostname: { enumerable: true }, + port: { enumerable: true }, + pathname: { enumerable: true }, + search: { enumerable: true }, + searchParams: { enumerable: true }, + hash: { enumerable: true }, + [Symbol.toStringTag]: { value: "URL", configurable: true } + }); + ctorRegistry[interfaceName] = URL; + + Object.defineProperty(globalObject, interfaceName, { + configurable: true, + writable: true, + value: URL + }); + + if (globalNames.includes("Window")) { + Object.defineProperty(globalObject, "webkitURL", { + configurable: true, + writable: true, + value: URL + }); + } +}; + +const Impl = require("./URL-impl.js"); diff --git a/node_modules/whatwg-url/lib/URLSearchParams-impl.js b/node_modules/whatwg-url/lib/URLSearchParams-impl.js new file mode 100644 index 000000000..ef8d604ed --- /dev/null +++ b/node_modules/whatwg-url/lib/URLSearchParams-impl.js @@ -0,0 +1,130 @@ +"use strict"; +const urlencoded = require("./urlencoded"); + +exports.implementation = class URLSearchParamsImpl { + constructor(globalObject, constructorArgs, { doNotStripQMark = false }) { + let init = constructorArgs[0]; + this._list = []; + this._url = null; + + if (!doNotStripQMark && typeof init === "string" && init[0] === "?") { + init = init.slice(1); + } + + if (Array.isArray(init)) { + for (const pair of init) { + if (pair.length !== 2) { + throw new TypeError("Failed to construct 'URLSearchParams': parameter 1 sequence's element does not " + + "contain exactly two elements."); + } + this._list.push([pair[0], pair[1]]); + } + } else if (typeof init === "object" && Object.getPrototypeOf(init) === null) { + for (const name of Object.keys(init)) { + const value = init[name]; + this._list.push([name, value]); + } + } else { + this._list = urlencoded.parseUrlencodedString(init); + } + } + + _updateSteps() { + if (this._url !== null) { + let query = urlencoded.serializeUrlencoded(this._list); + if (query === "") { + query = null; + } + this._url._url.query = query; + } + } + + append(name, value) { + this._list.push([name, value]); + this._updateSteps(); + } + + delete(name) { + let i = 0; + while (i < this._list.length) { + if (this._list[i][0] === name) { + this._list.splice(i, 1); + } else { + i++; + } + } + this._updateSteps(); + } + + get(name) { + for (const tuple of this._list) { + if (tuple[0] === name) { + return tuple[1]; + } + } + return null; + } + + getAll(name) { + const output = []; + for (const tuple of this._list) { + if (tuple[0] === name) { + output.push(tuple[1]); + } + } + return output; + } + + has(name) { + for (const tuple of this._list) { + if (tuple[0] === name) { + return true; + } + } + return false; + } + + set(name, value) { + let found = false; + let i = 0; + while (i < this._list.length) { + if (this._list[i][0] === name) { + if (found) { + this._list.splice(i, 1); + } else { + found = true; + this._list[i][1] = value; + i++; + } + } else { + i++; + } + } + if (!found) { + this._list.push([name, value]); + } + this._updateSteps(); + } + + sort() { + this._list.sort((a, b) => { + if (a[0] < b[0]) { + return -1; + } + if (a[0] > b[0]) { + return 1; + } + return 0; + }); + + this._updateSteps(); + } + + [Symbol.iterator]() { + return this._list[Symbol.iterator](); + } + + toString() { + return urlencoded.serializeUrlencoded(this._list); + } +}; diff --git a/node_modules/whatwg-url/lib/URLSearchParams.js b/node_modules/whatwg-url/lib/URLSearchParams.js new file mode 100644 index 000000000..a7c24eff8 --- /dev/null +++ b/node_modules/whatwg-url/lib/URLSearchParams.js @@ -0,0 +1,472 @@ +"use strict"; + +const conversions = require("webidl-conversions"); +const utils = require("./utils.js"); + +const Function = require("./Function.js"); +const newObjectInRealm = utils.newObjectInRealm; +const implSymbol = utils.implSymbol; +const ctorRegistrySymbol = utils.ctorRegistrySymbol; + +const interfaceName = "URLSearchParams"; + +exports.is = value => { + return utils.isObject(value) && utils.hasOwn(value, implSymbol) && value[implSymbol] instanceof Impl.implementation; +}; +exports.isImpl = value => { + return utils.isObject(value) && value instanceof Impl.implementation; +}; +exports.convert = (globalObject, value, { context = "The provided value" } = {}) => { + if (exports.is(value)) { + return utils.implForWrapper(value); + } + throw new globalObject.TypeError(`${context} is not of type 'URLSearchParams'.`); +}; + +exports.createDefaultIterator = (globalObject, target, kind) => { + const ctorRegistry = globalObject[ctorRegistrySymbol]; + const iteratorPrototype = ctorRegistry["URLSearchParams Iterator"]; + const iterator = Object.create(iteratorPrototype); + Object.defineProperty(iterator, utils.iterInternalSymbol, { + value: { target, kind, index: 0 }, + configurable: true + }); + return iterator; +}; + +function makeWrapper(globalObject, newTarget) { + let proto; + if (newTarget !== undefined) { + proto = newTarget.prototype; + } + + if (!utils.isObject(proto)) { + proto = globalObject[ctorRegistrySymbol]["URLSearchParams"].prototype; + } + + return Object.create(proto); +} + +exports.create = (globalObject, constructorArgs, privateData) => { + const wrapper = makeWrapper(globalObject); + return exports.setup(wrapper, globalObject, constructorArgs, privateData); +}; + +exports.createImpl = (globalObject, constructorArgs, privateData) => { + const wrapper = exports.create(globalObject, constructorArgs, privateData); + return utils.implForWrapper(wrapper); +}; + +exports._internalSetup = (wrapper, globalObject) => {}; + +exports.setup = (wrapper, globalObject, constructorArgs = [], privateData = {}) => { + privateData.wrapper = wrapper; + + exports._internalSetup(wrapper, globalObject); + Object.defineProperty(wrapper, implSymbol, { + value: new Impl.implementation(globalObject, constructorArgs, privateData), + configurable: true + }); + + wrapper[implSymbol][utils.wrapperSymbol] = wrapper; + if (Impl.init) { + Impl.init(wrapper[implSymbol]); + } + return wrapper; +}; + +exports.new = (globalObject, newTarget) => { + const wrapper = makeWrapper(globalObject, newTarget); + + exports._internalSetup(wrapper, globalObject); + Object.defineProperty(wrapper, implSymbol, { + value: Object.create(Impl.implementation.prototype), + configurable: true + }); + + wrapper[implSymbol][utils.wrapperSymbol] = wrapper; + if (Impl.init) { + Impl.init(wrapper[implSymbol]); + } + return wrapper[implSymbol]; +}; + +const exposed = new Set(["Window", "Worker"]); + +exports.install = (globalObject, globalNames) => { + if (!globalNames.some(globalName => exposed.has(globalName))) { + return; + } + + const ctorRegistry = utils.initCtorRegistry(globalObject); + class URLSearchParams { + constructor() { + const args = []; + { + let curArg = arguments[0]; + if (curArg !== undefined) { + if (utils.isObject(curArg)) { + if (curArg[Symbol.iterator] !== undefined) { + if (!utils.isObject(curArg)) { + throw new globalObject.TypeError( + "Failed to construct 'URLSearchParams': parameter 1" + " sequence" + " is not an iterable object." + ); + } else { + const V = []; + const tmp = curArg; + for (let nextItem of tmp) { + if (!utils.isObject(nextItem)) { + throw new globalObject.TypeError( + "Failed to construct 'URLSearchParams': parameter 1" + + " sequence" + + "'s element" + + " is not an iterable object." + ); + } else { + const V = []; + const tmp = nextItem; + for (let nextItem of tmp) { + nextItem = conversions["USVString"](nextItem, { + context: + "Failed to construct 'URLSearchParams': parameter 1" + + " sequence" + + "'s element" + + "'s element", + globals: globalObject + }); + + V.push(nextItem); + } + nextItem = V; + } + + V.push(nextItem); + } + curArg = V; + } + } else { + if (!utils.isObject(curArg)) { + throw new globalObject.TypeError( + "Failed to construct 'URLSearchParams': parameter 1" + " record" + " is not an object." + ); + } else { + const result = Object.create(null); + for (const key of Reflect.ownKeys(curArg)) { + const desc = Object.getOwnPropertyDescriptor(curArg, key); + if (desc && desc.enumerable) { + let typedKey = key; + + typedKey = conversions["USVString"](typedKey, { + context: "Failed to construct 'URLSearchParams': parameter 1" + " record" + "'s key", + globals: globalObject + }); + + let typedValue = curArg[key]; + + typedValue = conversions["USVString"](typedValue, { + context: "Failed to construct 'URLSearchParams': parameter 1" + " record" + "'s value", + globals: globalObject + }); + + result[typedKey] = typedValue; + } + } + curArg = result; + } + } + } else { + curArg = conversions["USVString"](curArg, { + context: "Failed to construct 'URLSearchParams': parameter 1", + globals: globalObject + }); + } + } else { + curArg = ""; + } + args.push(curArg); + } + return exports.setup(Object.create(new.target.prototype), globalObject, args); + } + + append(name, value) { + const esValue = this !== null && this !== undefined ? this : globalObject; + if (!exports.is(esValue)) { + throw new globalObject.TypeError( + "'append' called on an object that is not a valid instance of URLSearchParams." + ); + } + + if (arguments.length < 2) { + throw new globalObject.TypeError( + `Failed to execute 'append' on 'URLSearchParams': 2 arguments required, but only ${arguments.length} present.` + ); + } + const args = []; + { + let curArg = arguments[0]; + curArg = conversions["USVString"](curArg, { + context: "Failed to execute 'append' on 'URLSearchParams': parameter 1", + globals: globalObject + }); + args.push(curArg); + } + { + let curArg = arguments[1]; + curArg = conversions["USVString"](curArg, { + context: "Failed to execute 'append' on 'URLSearchParams': parameter 2", + globals: globalObject + }); + args.push(curArg); + } + return utils.tryWrapperForImpl(esValue[implSymbol].append(...args)); + } + + delete(name) { + const esValue = this !== null && this !== undefined ? this : globalObject; + if (!exports.is(esValue)) { + throw new globalObject.TypeError( + "'delete' called on an object that is not a valid instance of URLSearchParams." + ); + } + + if (arguments.length < 1) { + throw new globalObject.TypeError( + `Failed to execute 'delete' on 'URLSearchParams': 1 argument required, but only ${arguments.length} present.` + ); + } + const args = []; + { + let curArg = arguments[0]; + curArg = conversions["USVString"](curArg, { + context: "Failed to execute 'delete' on 'URLSearchParams': parameter 1", + globals: globalObject + }); + args.push(curArg); + } + return utils.tryWrapperForImpl(esValue[implSymbol].delete(...args)); + } + + get(name) { + const esValue = this !== null && this !== undefined ? this : globalObject; + if (!exports.is(esValue)) { + throw new globalObject.TypeError("'get' called on an object that is not a valid instance of URLSearchParams."); + } + + if (arguments.length < 1) { + throw new globalObject.TypeError( + `Failed to execute 'get' on 'URLSearchParams': 1 argument required, but only ${arguments.length} present.` + ); + } + const args = []; + { + let curArg = arguments[0]; + curArg = conversions["USVString"](curArg, { + context: "Failed to execute 'get' on 'URLSearchParams': parameter 1", + globals: globalObject + }); + args.push(curArg); + } + return esValue[implSymbol].get(...args); + } + + getAll(name) { + const esValue = this !== null && this !== undefined ? this : globalObject; + if (!exports.is(esValue)) { + throw new globalObject.TypeError( + "'getAll' called on an object that is not a valid instance of URLSearchParams." + ); + } + + if (arguments.length < 1) { + throw new globalObject.TypeError( + `Failed to execute 'getAll' on 'URLSearchParams': 1 argument required, but only ${arguments.length} present.` + ); + } + const args = []; + { + let curArg = arguments[0]; + curArg = conversions["USVString"](curArg, { + context: "Failed to execute 'getAll' on 'URLSearchParams': parameter 1", + globals: globalObject + }); + args.push(curArg); + } + return utils.tryWrapperForImpl(esValue[implSymbol].getAll(...args)); + } + + has(name) { + const esValue = this !== null && this !== undefined ? this : globalObject; + if (!exports.is(esValue)) { + throw new globalObject.TypeError("'has' called on an object that is not a valid instance of URLSearchParams."); + } + + if (arguments.length < 1) { + throw new globalObject.TypeError( + `Failed to execute 'has' on 'URLSearchParams': 1 argument required, but only ${arguments.length} present.` + ); + } + const args = []; + { + let curArg = arguments[0]; + curArg = conversions["USVString"](curArg, { + context: "Failed to execute 'has' on 'URLSearchParams': parameter 1", + globals: globalObject + }); + args.push(curArg); + } + return esValue[implSymbol].has(...args); + } + + set(name, value) { + const esValue = this !== null && this !== undefined ? this : globalObject; + if (!exports.is(esValue)) { + throw new globalObject.TypeError("'set' called on an object that is not a valid instance of URLSearchParams."); + } + + if (arguments.length < 2) { + throw new globalObject.TypeError( + `Failed to execute 'set' on 'URLSearchParams': 2 arguments required, but only ${arguments.length} present.` + ); + } + const args = []; + { + let curArg = arguments[0]; + curArg = conversions["USVString"](curArg, { + context: "Failed to execute 'set' on 'URLSearchParams': parameter 1", + globals: globalObject + }); + args.push(curArg); + } + { + let curArg = arguments[1]; + curArg = conversions["USVString"](curArg, { + context: "Failed to execute 'set' on 'URLSearchParams': parameter 2", + globals: globalObject + }); + args.push(curArg); + } + return utils.tryWrapperForImpl(esValue[implSymbol].set(...args)); + } + + sort() { + const esValue = this !== null && this !== undefined ? this : globalObject; + if (!exports.is(esValue)) { + throw new globalObject.TypeError("'sort' called on an object that is not a valid instance of URLSearchParams."); + } + + return utils.tryWrapperForImpl(esValue[implSymbol].sort()); + } + + toString() { + const esValue = this !== null && this !== undefined ? this : globalObject; + if (!exports.is(esValue)) { + throw new globalObject.TypeError( + "'toString' called on an object that is not a valid instance of URLSearchParams." + ); + } + + return esValue[implSymbol].toString(); + } + + keys() { + if (!exports.is(this)) { + throw new globalObject.TypeError("'keys' called on an object that is not a valid instance of URLSearchParams."); + } + return exports.createDefaultIterator(globalObject, this, "key"); + } + + values() { + if (!exports.is(this)) { + throw new globalObject.TypeError( + "'values' called on an object that is not a valid instance of URLSearchParams." + ); + } + return exports.createDefaultIterator(globalObject, this, "value"); + } + + entries() { + if (!exports.is(this)) { + throw new globalObject.TypeError( + "'entries' called on an object that is not a valid instance of URLSearchParams." + ); + } + return exports.createDefaultIterator(globalObject, this, "key+value"); + } + + forEach(callback) { + if (!exports.is(this)) { + throw new globalObject.TypeError( + "'forEach' called on an object that is not a valid instance of URLSearchParams." + ); + } + if (arguments.length < 1) { + throw new globalObject.TypeError( + "Failed to execute 'forEach' on 'iterable': 1 argument required, but only 0 present." + ); + } + callback = Function.convert(globalObject, callback, { + context: "Failed to execute 'forEach' on 'iterable': The callback provided as parameter 1" + }); + const thisArg = arguments[1]; + let pairs = Array.from(this[implSymbol]); + let i = 0; + while (i < pairs.length) { + const [key, value] = pairs[i].map(utils.tryWrapperForImpl); + callback.call(thisArg, value, key, this); + pairs = Array.from(this[implSymbol]); + i++; + } + } + } + Object.defineProperties(URLSearchParams.prototype, { + append: { enumerable: true }, + delete: { enumerable: true }, + get: { enumerable: true }, + getAll: { enumerable: true }, + has: { enumerable: true }, + set: { enumerable: true }, + sort: { enumerable: true }, + toString: { enumerable: true }, + keys: { enumerable: true }, + values: { enumerable: true }, + entries: { enumerable: true }, + forEach: { enumerable: true }, + [Symbol.toStringTag]: { value: "URLSearchParams", configurable: true }, + [Symbol.iterator]: { value: URLSearchParams.prototype.entries, configurable: true, writable: true } + }); + ctorRegistry[interfaceName] = URLSearchParams; + + ctorRegistry["URLSearchParams Iterator"] = Object.create(ctorRegistry["%IteratorPrototype%"], { + [Symbol.toStringTag]: { + configurable: true, + value: "URLSearchParams Iterator" + } + }); + utils.define(ctorRegistry["URLSearchParams Iterator"], { + next() { + const internal = this && this[utils.iterInternalSymbol]; + if (!internal) { + throw new globalObject.TypeError("next() called on a value that is not a URLSearchParams iterator object"); + } + + const { target, kind, index } = internal; + const values = Array.from(target[implSymbol]); + const len = values.length; + if (index >= len) { + return newObjectInRealm(globalObject, { value: undefined, done: true }); + } + + const pair = values[index]; + internal.index = index + 1; + return newObjectInRealm(globalObject, utils.iteratorResult(pair.map(utils.tryWrapperForImpl), kind)); + } + }); + + Object.defineProperty(globalObject, interfaceName, { + configurable: true, + writable: true, + value: URLSearchParams + }); +}; + +const Impl = require("./URLSearchParams-impl.js"); diff --git a/node_modules/whatwg-url/lib/VoidFunction.js b/node_modules/whatwg-url/lib/VoidFunction.js new file mode 100644 index 000000000..9a00672a7 --- /dev/null +++ b/node_modules/whatwg-url/lib/VoidFunction.js @@ -0,0 +1,26 @@ +"use strict"; + +const conversions = require("webidl-conversions"); +const utils = require("./utils.js"); + +exports.convert = (globalObject, value, { context = "The provided value" } = {}) => { + if (typeof value !== "function") { + throw new globalObject.TypeError(context + " is not a function"); + } + + function invokeTheCallbackFunction() { + const thisArg = utils.tryWrapperForImpl(this); + let callResult; + + callResult = Reflect.apply(value, thisArg, []); + } + + invokeTheCallbackFunction.construct = () => { + let callResult = Reflect.construct(value, []); + }; + + invokeTheCallbackFunction[utils.wrapperSymbol] = value; + invokeTheCallbackFunction.objectReference = value; + + return invokeTheCallbackFunction; +}; diff --git a/node_modules/whatwg-url/lib/encoding.js b/node_modules/whatwg-url/lib/encoding.js new file mode 100644 index 000000000..cb66b8f10 --- /dev/null +++ b/node_modules/whatwg-url/lib/encoding.js @@ -0,0 +1,16 @@ +"use strict"; +const utf8Encoder = new TextEncoder(); +const utf8Decoder = new TextDecoder("utf-8", { ignoreBOM: true }); + +function utf8Encode(string) { + return utf8Encoder.encode(string); +} + +function utf8DecodeWithoutBOM(bytes) { + return utf8Decoder.decode(bytes); +} + +module.exports = { + utf8Encode, + utf8DecodeWithoutBOM +}; diff --git a/node_modules/whatwg-url/lib/infra.js b/node_modules/whatwg-url/lib/infra.js new file mode 100644 index 000000000..4a984a3b3 --- /dev/null +++ b/node_modules/whatwg-url/lib/infra.js @@ -0,0 +1,26 @@ +"use strict"; + +// Note that we take code points as JS numbers, not JS strings. + +function isASCIIDigit(c) { + return c >= 0x30 && c <= 0x39; +} + +function isASCIIAlpha(c) { + return (c >= 0x41 && c <= 0x5A) || (c >= 0x61 && c <= 0x7A); +} + +function isASCIIAlphanumeric(c) { + return isASCIIAlpha(c) || isASCIIDigit(c); +} + +function isASCIIHex(c) { + return isASCIIDigit(c) || (c >= 0x41 && c <= 0x46) || (c >= 0x61 && c <= 0x66); +} + +module.exports = { + isASCIIDigit, + isASCIIAlpha, + isASCIIAlphanumeric, + isASCIIHex +}; diff --git a/node_modules/whatwg-url/lib/percent-encoding.js b/node_modules/whatwg-url/lib/percent-encoding.js new file mode 100644 index 000000000..f8308673c --- /dev/null +++ b/node_modules/whatwg-url/lib/percent-encoding.js @@ -0,0 +1,142 @@ +"use strict"; +const { isASCIIHex } = require("./infra"); +const { utf8Encode } = require("./encoding"); + +function p(char) { + return char.codePointAt(0); +} + +// https://url.spec.whatwg.org/#percent-encode +function percentEncode(c) { + let hex = c.toString(16).toUpperCase(); + if (hex.length === 1) { + hex = `0${hex}`; + } + + return `%${hex}`; +} + +// https://url.spec.whatwg.org/#percent-decode +function percentDecodeBytes(input) { + const output = new Uint8Array(input.byteLength); + let outputIndex = 0; + for (let i = 0; i < input.byteLength; ++i) { + const byte = input[i]; + if (byte !== 0x25) { + output[outputIndex++] = byte; + } else if (byte === 0x25 && (!isASCIIHex(input[i + 1]) || !isASCIIHex(input[i + 2]))) { + output[outputIndex++] = byte; + } else { + const bytePoint = parseInt(String.fromCodePoint(input[i + 1], input[i + 2]), 16); + output[outputIndex++] = bytePoint; + i += 2; + } + } + + return output.slice(0, outputIndex); +} + +// https://url.spec.whatwg.org/#string-percent-decode +function percentDecodeString(input) { + const bytes = utf8Encode(input); + return percentDecodeBytes(bytes); +} + +// https://url.spec.whatwg.org/#c0-control-percent-encode-set +function isC0ControlPercentEncode(c) { + return c <= 0x1F || c > 0x7E; +} + +// https://url.spec.whatwg.org/#fragment-percent-encode-set +const extraFragmentPercentEncodeSet = new Set([p(" "), p("\""), p("<"), p(">"), p("`")]); +function isFragmentPercentEncode(c) { + return isC0ControlPercentEncode(c) || extraFragmentPercentEncodeSet.has(c); +} + +// https://url.spec.whatwg.org/#query-percent-encode-set +const extraQueryPercentEncodeSet = new Set([p(" "), p("\""), p("#"), p("<"), p(">")]); +function isQueryPercentEncode(c) { + return isC0ControlPercentEncode(c) || extraQueryPercentEncodeSet.has(c); +} + +// https://url.spec.whatwg.org/#special-query-percent-encode-set +function isSpecialQueryPercentEncode(c) { + return isQueryPercentEncode(c) || c === p("'"); +} + +// https://url.spec.whatwg.org/#path-percent-encode-set +const extraPathPercentEncodeSet = new Set([p("?"), p("`"), p("{"), p("}")]); +function isPathPercentEncode(c) { + return isQueryPercentEncode(c) || extraPathPercentEncodeSet.has(c); +} + +// https://url.spec.whatwg.org/#userinfo-percent-encode-set +const extraUserinfoPercentEncodeSet = + new Set([p("/"), p(":"), p(";"), p("="), p("@"), p("["), p("\\"), p("]"), p("^"), p("|")]); +function isUserinfoPercentEncode(c) { + return isPathPercentEncode(c) || extraUserinfoPercentEncodeSet.has(c); +} + +// https://url.spec.whatwg.org/#component-percent-encode-set +const extraComponentPercentEncodeSet = new Set([p("$"), p("%"), p("&"), p("+"), p(",")]); +function isComponentPercentEncode(c) { + return isUserinfoPercentEncode(c) || extraComponentPercentEncodeSet.has(c); +} + +// https://url.spec.whatwg.org/#application-x-www-form-urlencoded-percent-encode-set +const extraURLEncodedPercentEncodeSet = new Set([p("!"), p("'"), p("("), p(")"), p("~")]); +function isURLEncodedPercentEncode(c) { + return isComponentPercentEncode(c) || extraURLEncodedPercentEncodeSet.has(c); +} + +// https://url.spec.whatwg.org/#code-point-percent-encode-after-encoding +// https://url.spec.whatwg.org/#utf-8-percent-encode +// Assuming encoding is always utf-8 allows us to trim one of the logic branches. TODO: support encoding. +// The "-Internal" variant here has code points as JS strings. The external version used by other files has code points +// as JS numbers, like the rest of the codebase. +function utf8PercentEncodeCodePointInternal(codePoint, percentEncodePredicate) { + const bytes = utf8Encode(codePoint); + let output = ""; + for (const byte of bytes) { + // Our percentEncodePredicate operates on bytes, not code points, so this is slightly different from the spec. + if (!percentEncodePredicate(byte)) { + output += String.fromCharCode(byte); + } else { + output += percentEncode(byte); + } + } + + return output; +} + +function utf8PercentEncodeCodePoint(codePoint, percentEncodePredicate) { + return utf8PercentEncodeCodePointInternal(String.fromCodePoint(codePoint), percentEncodePredicate); +} + +// https://url.spec.whatwg.org/#string-percent-encode-after-encoding +// https://url.spec.whatwg.org/#string-utf-8-percent-encode +function utf8PercentEncodeString(input, percentEncodePredicate, spaceAsPlus = false) { + let output = ""; + for (const codePoint of input) { + if (spaceAsPlus && codePoint === " ") { + output += "+"; + } else { + output += utf8PercentEncodeCodePointInternal(codePoint, percentEncodePredicate); + } + } + return output; +} + +module.exports = { + isC0ControlPercentEncode, + isFragmentPercentEncode, + isQueryPercentEncode, + isSpecialQueryPercentEncode, + isPathPercentEncode, + isUserinfoPercentEncode, + isURLEncodedPercentEncode, + percentDecodeString, + percentDecodeBytes, + utf8PercentEncodeString, + utf8PercentEncodeCodePoint +}; diff --git a/node_modules/whatwg-url/lib/url-state-machine.js b/node_modules/whatwg-url/lib/url-state-machine.js new file mode 100644 index 000000000..d9ecae2e9 --- /dev/null +++ b/node_modules/whatwg-url/lib/url-state-machine.js @@ -0,0 +1,1244 @@ +"use strict"; +const tr46 = require("tr46"); + +const infra = require("./infra"); +const { utf8DecodeWithoutBOM } = require("./encoding"); +const { percentDecodeString, utf8PercentEncodeCodePoint, utf8PercentEncodeString, isC0ControlPercentEncode, + isFragmentPercentEncode, isQueryPercentEncode, isSpecialQueryPercentEncode, isPathPercentEncode, + isUserinfoPercentEncode } = require("./percent-encoding"); + +function p(char) { + return char.codePointAt(0); +} + +const specialSchemes = { + ftp: 21, + file: null, + http: 80, + https: 443, + ws: 80, + wss: 443 +}; + +const failure = Symbol("failure"); + +function countSymbols(str) { + return [...str].length; +} + +function at(input, idx) { + const c = input[idx]; + return isNaN(c) ? undefined : String.fromCodePoint(c); +} + +function isSingleDot(buffer) { + return buffer === "." || buffer.toLowerCase() === "%2e"; +} + +function isDoubleDot(buffer) { + buffer = buffer.toLowerCase(); + return buffer === ".." || buffer === "%2e." || buffer === ".%2e" || buffer === "%2e%2e"; +} + +function isWindowsDriveLetterCodePoints(cp1, cp2) { + return infra.isASCIIAlpha(cp1) && (cp2 === p(":") || cp2 === p("|")); +} + +function isWindowsDriveLetterString(string) { + return string.length === 2 && infra.isASCIIAlpha(string.codePointAt(0)) && (string[1] === ":" || string[1] === "|"); +} + +function isNormalizedWindowsDriveLetterString(string) { + return string.length === 2 && infra.isASCIIAlpha(string.codePointAt(0)) && string[1] === ":"; +} + +function containsForbiddenHostCodePoint(string) { + return string.search(/\u0000|\u0009|\u000A|\u000D|\u0020|#|%|\/|:|<|>|\?|@|\[|\\|\]|\^|\|/u) !== -1; +} + +function containsForbiddenHostCodePointExcludingPercent(string) { + return string.search(/\u0000|\u0009|\u000A|\u000D|\u0020|#|\/|:|<|>|\?|@|\[|\\|\]|\^|\|/u) !== -1; +} + +function isSpecialScheme(scheme) { + return specialSchemes[scheme] !== undefined; +} + +function isSpecial(url) { + return isSpecialScheme(url.scheme); +} + +function isNotSpecial(url) { + return !isSpecialScheme(url.scheme); +} + +function defaultPort(scheme) { + return specialSchemes[scheme]; +} + +function parseIPv4Number(input) { + if (input === "") { + return failure; + } + + let R = 10; + + if (input.length >= 2 && input.charAt(0) === "0" && input.charAt(1).toLowerCase() === "x") { + input = input.substring(2); + R = 16; + } else if (input.length >= 2 && input.charAt(0) === "0") { + input = input.substring(1); + R = 8; + } + + if (input === "") { + return 0; + } + + let regex = /[^0-7]/u; + if (R === 10) { + regex = /[^0-9]/u; + } + if (R === 16) { + regex = /[^0-9A-Fa-f]/u; + } + + if (regex.test(input)) { + return failure; + } + + return parseInt(input, R); +} + +function parseIPv4(input) { + const parts = input.split("."); + if (parts[parts.length - 1] === "") { + if (parts.length > 1) { + parts.pop(); + } + } + + if (parts.length > 4) { + return failure; + } + + const numbers = []; + for (const part of parts) { + const n = parseIPv4Number(part); + if (n === failure) { + return failure; + } + + numbers.push(n); + } + + for (let i = 0; i < numbers.length - 1; ++i) { + if (numbers[i] > 255) { + return failure; + } + } + if (numbers[numbers.length - 1] >= 256 ** (5 - numbers.length)) { + return failure; + } + + let ipv4 = numbers.pop(); + let counter = 0; + + for (const n of numbers) { + ipv4 += n * 256 ** (3 - counter); + ++counter; + } + + return ipv4; +} + +function serializeIPv4(address) { + let output = ""; + let n = address; + + for (let i = 1; i <= 4; ++i) { + output = String(n % 256) + output; + if (i !== 4) { + output = `.${output}`; + } + n = Math.floor(n / 256); + } + + return output; +} + +function parseIPv6(input) { + const address = [0, 0, 0, 0, 0, 0, 0, 0]; + let pieceIndex = 0; + let compress = null; + let pointer = 0; + + input = Array.from(input, c => c.codePointAt(0)); + + if (input[pointer] === p(":")) { + if (input[pointer + 1] !== p(":")) { + return failure; + } + + pointer += 2; + ++pieceIndex; + compress = pieceIndex; + } + + while (pointer < input.length) { + if (pieceIndex === 8) { + return failure; + } + + if (input[pointer] === p(":")) { + if (compress !== null) { + return failure; + } + ++pointer; + ++pieceIndex; + compress = pieceIndex; + continue; + } + + let value = 0; + let length = 0; + + while (length < 4 && infra.isASCIIHex(input[pointer])) { + value = value * 0x10 + parseInt(at(input, pointer), 16); + ++pointer; + ++length; + } + + if (input[pointer] === p(".")) { + if (length === 0) { + return failure; + } + + pointer -= length; + + if (pieceIndex > 6) { + return failure; + } + + let numbersSeen = 0; + + while (input[pointer] !== undefined) { + let ipv4Piece = null; + + if (numbersSeen > 0) { + if (input[pointer] === p(".") && numbersSeen < 4) { + ++pointer; + } else { + return failure; + } + } + + if (!infra.isASCIIDigit(input[pointer])) { + return failure; + } + + while (infra.isASCIIDigit(input[pointer])) { + const number = parseInt(at(input, pointer)); + if (ipv4Piece === null) { + ipv4Piece = number; + } else if (ipv4Piece === 0) { + return failure; + } else { + ipv4Piece = ipv4Piece * 10 + number; + } + if (ipv4Piece > 255) { + return failure; + } + ++pointer; + } + + address[pieceIndex] = address[pieceIndex] * 0x100 + ipv4Piece; + + ++numbersSeen; + + if (numbersSeen === 2 || numbersSeen === 4) { + ++pieceIndex; + } + } + + if (numbersSeen !== 4) { + return failure; + } + + break; + } else if (input[pointer] === p(":")) { + ++pointer; + if (input[pointer] === undefined) { + return failure; + } + } else if (input[pointer] !== undefined) { + return failure; + } + + address[pieceIndex] = value; + ++pieceIndex; + } + + if (compress !== null) { + let swaps = pieceIndex - compress; + pieceIndex = 7; + while (pieceIndex !== 0 && swaps > 0) { + const temp = address[compress + swaps - 1]; + address[compress + swaps - 1] = address[pieceIndex]; + address[pieceIndex] = temp; + --pieceIndex; + --swaps; + } + } else if (compress === null && pieceIndex !== 8) { + return failure; + } + + return address; +} + +function serializeIPv6(address) { + let output = ""; + const compress = findLongestZeroSequence(address); + let ignore0 = false; + + for (let pieceIndex = 0; pieceIndex <= 7; ++pieceIndex) { + if (ignore0 && address[pieceIndex] === 0) { + continue; + } else if (ignore0) { + ignore0 = false; + } + + if (compress === pieceIndex) { + const separator = pieceIndex === 0 ? "::" : ":"; + output += separator; + ignore0 = true; + continue; + } + + output += address[pieceIndex].toString(16); + + if (pieceIndex !== 7) { + output += ":"; + } + } + + return output; +} + +function parseHost(input, isNotSpecialArg = false) { + if (input[0] === "[") { + if (input[input.length - 1] !== "]") { + return failure; + } + + return parseIPv6(input.substring(1, input.length - 1)); + } + + if (isNotSpecialArg) { + return parseOpaqueHost(input); + } + + const domain = utf8DecodeWithoutBOM(percentDecodeString(input)); + const asciiDomain = domainToASCII(domain); + if (asciiDomain === failure) { + return failure; + } + + if (containsForbiddenHostCodePoint(asciiDomain)) { + return failure; + } + + if (endsInANumber(asciiDomain)) { + return parseIPv4(asciiDomain); + } + + return asciiDomain; +} + +function endsInANumber(input) { + const parts = input.split("."); + if (parts[parts.length - 1] === "") { + if (parts.length === 1) { + return false; + } + parts.pop(); + } + + const last = parts[parts.length - 1]; + if (parseIPv4Number(last) !== failure) { + return true; + } + + if (/^[0-9]+$/u.test(last)) { + return true; + } + + return false; +} + +function parseOpaqueHost(input) { + if (containsForbiddenHostCodePointExcludingPercent(input)) { + return failure; + } + + return utf8PercentEncodeString(input, isC0ControlPercentEncode); +} + +function findLongestZeroSequence(arr) { + let maxIdx = null; + let maxLen = 1; // only find elements > 1 + let currStart = null; + let currLen = 0; + + for (let i = 0; i < arr.length; ++i) { + if (arr[i] !== 0) { + if (currLen > maxLen) { + maxIdx = currStart; + maxLen = currLen; + } + + currStart = null; + currLen = 0; + } else { + if (currStart === null) { + currStart = i; + } + ++currLen; + } + } + + // if trailing zeros + if (currLen > maxLen) { + return currStart; + } + + return maxIdx; +} + +function serializeHost(host) { + if (typeof host === "number") { + return serializeIPv4(host); + } + + // IPv6 serializer + if (host instanceof Array) { + return `[${serializeIPv6(host)}]`; + } + + return host; +} + +function domainToASCII(domain, beStrict = false) { + const result = tr46.toASCII(domain, { + checkBidi: true, + checkHyphens: false, + checkJoiners: true, + useSTD3ASCIIRules: beStrict, + verifyDNSLength: beStrict + }); + if (result === null || result === "") { + return failure; + } + return result; +} + +function trimControlChars(url) { + return url.replace(/^[\u0000-\u001F\u0020]+|[\u0000-\u001F\u0020]+$/ug, ""); +} + +function trimTabAndNewline(url) { + return url.replace(/\u0009|\u000A|\u000D/ug, ""); +} + +function shortenPath(url) { + const { path } = url; + if (path.length === 0) { + return; + } + if (url.scheme === "file" && path.length === 1 && isNormalizedWindowsDriveLetter(path[0])) { + return; + } + + path.pop(); +} + +function includesCredentials(url) { + return url.username !== "" || url.password !== ""; +} + +function cannotHaveAUsernamePasswordPort(url) { + return url.host === null || url.host === "" || hasAnOpaquePath(url) || url.scheme === "file"; +} + +function hasAnOpaquePath(url) { + return typeof url.path === "string"; +} + +function isNormalizedWindowsDriveLetter(string) { + return /^[A-Za-z]:$/u.test(string); +} + +function URLStateMachine(input, base, encodingOverride, url, stateOverride) { + this.pointer = 0; + this.input = input; + this.base = base || null; + this.encodingOverride = encodingOverride || "utf-8"; + this.stateOverride = stateOverride; + this.url = url; + this.failure = false; + this.parseError = false; + + if (!this.url) { + this.url = { + scheme: "", + username: "", + password: "", + host: null, + port: null, + path: [], + query: null, + fragment: null + }; + + const res = trimControlChars(this.input); + if (res !== this.input) { + this.parseError = true; + } + this.input = res; + } + + const res = trimTabAndNewline(this.input); + if (res !== this.input) { + this.parseError = true; + } + this.input = res; + + this.state = stateOverride || "scheme start"; + + this.buffer = ""; + this.atFlag = false; + this.arrFlag = false; + this.passwordTokenSeenFlag = false; + + this.input = Array.from(this.input, c => c.codePointAt(0)); + + for (; this.pointer <= this.input.length; ++this.pointer) { + const c = this.input[this.pointer]; + const cStr = isNaN(c) ? undefined : String.fromCodePoint(c); + + // exec state machine + const ret = this[`parse ${this.state}`](c, cStr); + if (!ret) { + break; // terminate algorithm + } else if (ret === failure) { + this.failure = true; + break; + } + } +} + +URLStateMachine.prototype["parse scheme start"] = function parseSchemeStart(c, cStr) { + if (infra.isASCIIAlpha(c)) { + this.buffer += cStr.toLowerCase(); + this.state = "scheme"; + } else if (!this.stateOverride) { + this.state = "no scheme"; + --this.pointer; + } else { + this.parseError = true; + return failure; + } + + return true; +}; + +URLStateMachine.prototype["parse scheme"] = function parseScheme(c, cStr) { + if (infra.isASCIIAlphanumeric(c) || c === p("+") || c === p("-") || c === p(".")) { + this.buffer += cStr.toLowerCase(); + } else if (c === p(":")) { + if (this.stateOverride) { + if (isSpecial(this.url) && !isSpecialScheme(this.buffer)) { + return false; + } + + if (!isSpecial(this.url) && isSpecialScheme(this.buffer)) { + return false; + } + + if ((includesCredentials(this.url) || this.url.port !== null) && this.buffer === "file") { + return false; + } + + if (this.url.scheme === "file" && this.url.host === "") { + return false; + } + } + this.url.scheme = this.buffer; + if (this.stateOverride) { + if (this.url.port === defaultPort(this.url.scheme)) { + this.url.port = null; + } + return false; + } + this.buffer = ""; + if (this.url.scheme === "file") { + if (this.input[this.pointer + 1] !== p("/") || this.input[this.pointer + 2] !== p("/")) { + this.parseError = true; + } + this.state = "file"; + } else if (isSpecial(this.url) && this.base !== null && this.base.scheme === this.url.scheme) { + this.state = "special relative or authority"; + } else if (isSpecial(this.url)) { + this.state = "special authority slashes"; + } else if (this.input[this.pointer + 1] === p("/")) { + this.state = "path or authority"; + ++this.pointer; + } else { + this.url.path = ""; + this.state = "opaque path"; + } + } else if (!this.stateOverride) { + this.buffer = ""; + this.state = "no scheme"; + this.pointer = -1; + } else { + this.parseError = true; + return failure; + } + + return true; +}; + +URLStateMachine.prototype["parse no scheme"] = function parseNoScheme(c) { + if (this.base === null || (hasAnOpaquePath(this.base) && c !== p("#"))) { + return failure; + } else if (hasAnOpaquePath(this.base) && c === p("#")) { + this.url.scheme = this.base.scheme; + this.url.path = this.base.path; + this.url.query = this.base.query; + this.url.fragment = ""; + this.state = "fragment"; + } else if (this.base.scheme === "file") { + this.state = "file"; + --this.pointer; + } else { + this.state = "relative"; + --this.pointer; + } + + return true; +}; + +URLStateMachine.prototype["parse special relative or authority"] = function parseSpecialRelativeOrAuthority(c) { + if (c === p("/") && this.input[this.pointer + 1] === p("/")) { + this.state = "special authority ignore slashes"; + ++this.pointer; + } else { + this.parseError = true; + this.state = "relative"; + --this.pointer; + } + + return true; +}; + +URLStateMachine.prototype["parse path or authority"] = function parsePathOrAuthority(c) { + if (c === p("/")) { + this.state = "authority"; + } else { + this.state = "path"; + --this.pointer; + } + + return true; +}; + +URLStateMachine.prototype["parse relative"] = function parseRelative(c) { + this.url.scheme = this.base.scheme; + if (c === p("/")) { + this.state = "relative slash"; + } else if (isSpecial(this.url) && c === p("\\")) { + this.parseError = true; + this.state = "relative slash"; + } else { + this.url.username = this.base.username; + this.url.password = this.base.password; + this.url.host = this.base.host; + this.url.port = this.base.port; + this.url.path = this.base.path.slice(); + this.url.query = this.base.query; + if (c === p("?")) { + this.url.query = ""; + this.state = "query"; + } else if (c === p("#")) { + this.url.fragment = ""; + this.state = "fragment"; + } else if (!isNaN(c)) { + this.url.query = null; + this.url.path.pop(); + this.state = "path"; + --this.pointer; + } + } + + return true; +}; + +URLStateMachine.prototype["parse relative slash"] = function parseRelativeSlash(c) { + if (isSpecial(this.url) && (c === p("/") || c === p("\\"))) { + if (c === p("\\")) { + this.parseError = true; + } + this.state = "special authority ignore slashes"; + } else if (c === p("/")) { + this.state = "authority"; + } else { + this.url.username = this.base.username; + this.url.password = this.base.password; + this.url.host = this.base.host; + this.url.port = this.base.port; + this.state = "path"; + --this.pointer; + } + + return true; +}; + +URLStateMachine.prototype["parse special authority slashes"] = function parseSpecialAuthoritySlashes(c) { + if (c === p("/") && this.input[this.pointer + 1] === p("/")) { + this.state = "special authority ignore slashes"; + ++this.pointer; + } else { + this.parseError = true; + this.state = "special authority ignore slashes"; + --this.pointer; + } + + return true; +}; + +URLStateMachine.prototype["parse special authority ignore slashes"] = function parseSpecialAuthorityIgnoreSlashes(c) { + if (c !== p("/") && c !== p("\\")) { + this.state = "authority"; + --this.pointer; + } else { + this.parseError = true; + } + + return true; +}; + +URLStateMachine.prototype["parse authority"] = function parseAuthority(c, cStr) { + if (c === p("@")) { + this.parseError = true; + if (this.atFlag) { + this.buffer = `%40${this.buffer}`; + } + this.atFlag = true; + + // careful, this is based on buffer and has its own pointer (this.pointer != pointer) and inner chars + const len = countSymbols(this.buffer); + for (let pointer = 0; pointer < len; ++pointer) { + const codePoint = this.buffer.codePointAt(pointer); + + if (codePoint === p(":") && !this.passwordTokenSeenFlag) { + this.passwordTokenSeenFlag = true; + continue; + } + const encodedCodePoints = utf8PercentEncodeCodePoint(codePoint, isUserinfoPercentEncode); + if (this.passwordTokenSeenFlag) { + this.url.password += encodedCodePoints; + } else { + this.url.username += encodedCodePoints; + } + } + this.buffer = ""; + } else if (isNaN(c) || c === p("/") || c === p("?") || c === p("#") || + (isSpecial(this.url) && c === p("\\"))) { + if (this.atFlag && this.buffer === "") { + this.parseError = true; + return failure; + } + this.pointer -= countSymbols(this.buffer) + 1; + this.buffer = ""; + this.state = "host"; + } else { + this.buffer += cStr; + } + + return true; +}; + +URLStateMachine.prototype["parse hostname"] = +URLStateMachine.prototype["parse host"] = function parseHostName(c, cStr) { + if (this.stateOverride && this.url.scheme === "file") { + --this.pointer; + this.state = "file host"; + } else if (c === p(":") && !this.arrFlag) { + if (this.buffer === "") { + this.parseError = true; + return failure; + } + + if (this.stateOverride === "hostname") { + return false; + } + + const host = parseHost(this.buffer, isNotSpecial(this.url)); + if (host === failure) { + return failure; + } + + this.url.host = host; + this.buffer = ""; + this.state = "port"; + } else if (isNaN(c) || c === p("/") || c === p("?") || c === p("#") || + (isSpecial(this.url) && c === p("\\"))) { + --this.pointer; + if (isSpecial(this.url) && this.buffer === "") { + this.parseError = true; + return failure; + } else if (this.stateOverride && this.buffer === "" && + (includesCredentials(this.url) || this.url.port !== null)) { + this.parseError = true; + return false; + } + + const host = parseHost(this.buffer, isNotSpecial(this.url)); + if (host === failure) { + return failure; + } + + this.url.host = host; + this.buffer = ""; + this.state = "path start"; + if (this.stateOverride) { + return false; + } + } else { + if (c === p("[")) { + this.arrFlag = true; + } else if (c === p("]")) { + this.arrFlag = false; + } + this.buffer += cStr; + } + + return true; +}; + +URLStateMachine.prototype["parse port"] = function parsePort(c, cStr) { + if (infra.isASCIIDigit(c)) { + this.buffer += cStr; + } else if (isNaN(c) || c === p("/") || c === p("?") || c === p("#") || + (isSpecial(this.url) && c === p("\\")) || + this.stateOverride) { + if (this.buffer !== "") { + const port = parseInt(this.buffer); + if (port > 2 ** 16 - 1) { + this.parseError = true; + return failure; + } + this.url.port = port === defaultPort(this.url.scheme) ? null : port; + this.buffer = ""; + } + if (this.stateOverride) { + return false; + } + this.state = "path start"; + --this.pointer; + } else { + this.parseError = true; + return failure; + } + + return true; +}; + +const fileOtherwiseCodePoints = new Set([p("/"), p("\\"), p("?"), p("#")]); + +function startsWithWindowsDriveLetter(input, pointer) { + const length = input.length - pointer; + return length >= 2 && + isWindowsDriveLetterCodePoints(input[pointer], input[pointer + 1]) && + (length === 2 || fileOtherwiseCodePoints.has(input[pointer + 2])); +} + +URLStateMachine.prototype["parse file"] = function parseFile(c) { + this.url.scheme = "file"; + this.url.host = ""; + + if (c === p("/") || c === p("\\")) { + if (c === p("\\")) { + this.parseError = true; + } + this.state = "file slash"; + } else if (this.base !== null && this.base.scheme === "file") { + this.url.host = this.base.host; + this.url.path = this.base.path.slice(); + this.url.query = this.base.query; + if (c === p("?")) { + this.url.query = ""; + this.state = "query"; + } else if (c === p("#")) { + this.url.fragment = ""; + this.state = "fragment"; + } else if (!isNaN(c)) { + this.url.query = null; + if (!startsWithWindowsDriveLetter(this.input, this.pointer)) { + shortenPath(this.url); + } else { + this.parseError = true; + this.url.path = []; + } + + this.state = "path"; + --this.pointer; + } + } else { + this.state = "path"; + --this.pointer; + } + + return true; +}; + +URLStateMachine.prototype["parse file slash"] = function parseFileSlash(c) { + if (c === p("/") || c === p("\\")) { + if (c === p("\\")) { + this.parseError = true; + } + this.state = "file host"; + } else { + if (this.base !== null && this.base.scheme === "file") { + if (!startsWithWindowsDriveLetter(this.input, this.pointer) && + isNormalizedWindowsDriveLetterString(this.base.path[0])) { + this.url.path.push(this.base.path[0]); + } + this.url.host = this.base.host; + } + this.state = "path"; + --this.pointer; + } + + return true; +}; + +URLStateMachine.prototype["parse file host"] = function parseFileHost(c, cStr) { + if (isNaN(c) || c === p("/") || c === p("\\") || c === p("?") || c === p("#")) { + --this.pointer; + if (!this.stateOverride && isWindowsDriveLetterString(this.buffer)) { + this.parseError = true; + this.state = "path"; + } else if (this.buffer === "") { + this.url.host = ""; + if (this.stateOverride) { + return false; + } + this.state = "path start"; + } else { + let host = parseHost(this.buffer, isNotSpecial(this.url)); + if (host === failure) { + return failure; + } + if (host === "localhost") { + host = ""; + } + this.url.host = host; + + if (this.stateOverride) { + return false; + } + + this.buffer = ""; + this.state = "path start"; + } + } else { + this.buffer += cStr; + } + + return true; +}; + +URLStateMachine.prototype["parse path start"] = function parsePathStart(c) { + if (isSpecial(this.url)) { + if (c === p("\\")) { + this.parseError = true; + } + this.state = "path"; + + if (c !== p("/") && c !== p("\\")) { + --this.pointer; + } + } else if (!this.stateOverride && c === p("?")) { + this.url.query = ""; + this.state = "query"; + } else if (!this.stateOverride && c === p("#")) { + this.url.fragment = ""; + this.state = "fragment"; + } else if (c !== undefined) { + this.state = "path"; + if (c !== p("/")) { + --this.pointer; + } + } else if (this.stateOverride && this.url.host === null) { + this.url.path.push(""); + } + + return true; +}; + +URLStateMachine.prototype["parse path"] = function parsePath(c) { + if (isNaN(c) || c === p("/") || (isSpecial(this.url) && c === p("\\")) || + (!this.stateOverride && (c === p("?") || c === p("#")))) { + if (isSpecial(this.url) && c === p("\\")) { + this.parseError = true; + } + + if (isDoubleDot(this.buffer)) { + shortenPath(this.url); + if (c !== p("/") && !(isSpecial(this.url) && c === p("\\"))) { + this.url.path.push(""); + } + } else if (isSingleDot(this.buffer) && c !== p("/") && + !(isSpecial(this.url) && c === p("\\"))) { + this.url.path.push(""); + } else if (!isSingleDot(this.buffer)) { + if (this.url.scheme === "file" && this.url.path.length === 0 && isWindowsDriveLetterString(this.buffer)) { + this.buffer = `${this.buffer[0]}:`; + } + this.url.path.push(this.buffer); + } + this.buffer = ""; + if (c === p("?")) { + this.url.query = ""; + this.state = "query"; + } + if (c === p("#")) { + this.url.fragment = ""; + this.state = "fragment"; + } + } else { + // TODO: If c is not a URL code point and not "%", parse error. + + if (c === p("%") && + (!infra.isASCIIHex(this.input[this.pointer + 1]) || + !infra.isASCIIHex(this.input[this.pointer + 2]))) { + this.parseError = true; + } + + this.buffer += utf8PercentEncodeCodePoint(c, isPathPercentEncode); + } + + return true; +}; + +URLStateMachine.prototype["parse opaque path"] = function parseOpaquePath(c) { + if (c === p("?")) { + this.url.query = ""; + this.state = "query"; + } else if (c === p("#")) { + this.url.fragment = ""; + this.state = "fragment"; + } else { + // TODO: Add: not a URL code point + if (!isNaN(c) && c !== p("%")) { + this.parseError = true; + } + + if (c === p("%") && + (!infra.isASCIIHex(this.input[this.pointer + 1]) || + !infra.isASCIIHex(this.input[this.pointer + 2]))) { + this.parseError = true; + } + + if (!isNaN(c)) { + this.url.path += utf8PercentEncodeCodePoint(c, isC0ControlPercentEncode); + } + } + + return true; +}; + +URLStateMachine.prototype["parse query"] = function parseQuery(c, cStr) { + if (!isSpecial(this.url) || this.url.scheme === "ws" || this.url.scheme === "wss") { + this.encodingOverride = "utf-8"; + } + + if ((!this.stateOverride && c === p("#")) || isNaN(c)) { + const queryPercentEncodePredicate = isSpecial(this.url) ? isSpecialQueryPercentEncode : isQueryPercentEncode; + this.url.query += utf8PercentEncodeString(this.buffer, queryPercentEncodePredicate); + + this.buffer = ""; + + if (c === p("#")) { + this.url.fragment = ""; + this.state = "fragment"; + } + } else if (!isNaN(c)) { + // TODO: If c is not a URL code point and not "%", parse error. + + if (c === p("%") && + (!infra.isASCIIHex(this.input[this.pointer + 1]) || + !infra.isASCIIHex(this.input[this.pointer + 2]))) { + this.parseError = true; + } + + this.buffer += cStr; + } + + return true; +}; + +URLStateMachine.prototype["parse fragment"] = function parseFragment(c) { + if (!isNaN(c)) { + // TODO: If c is not a URL code point and not "%", parse error. + if (c === p("%") && + (!infra.isASCIIHex(this.input[this.pointer + 1]) || + !infra.isASCIIHex(this.input[this.pointer + 2]))) { + this.parseError = true; + } + + this.url.fragment += utf8PercentEncodeCodePoint(c, isFragmentPercentEncode); + } + + return true; +}; + +function serializeURL(url, excludeFragment) { + let output = `${url.scheme}:`; + if (url.host !== null) { + output += "//"; + + if (url.username !== "" || url.password !== "") { + output += url.username; + if (url.password !== "") { + output += `:${url.password}`; + } + output += "@"; + } + + output += serializeHost(url.host); + + if (url.port !== null) { + output += `:${url.port}`; + } + } + + if (url.host === null && !hasAnOpaquePath(url) && url.path.length > 1 && url.path[0] === "") { + output += "/."; + } + output += serializePath(url); + + if (url.query !== null) { + output += `?${url.query}`; + } + + if (!excludeFragment && url.fragment !== null) { + output += `#${url.fragment}`; + } + + return output; +} + +function serializeOrigin(tuple) { + let result = `${tuple.scheme}://`; + result += serializeHost(tuple.host); + + if (tuple.port !== null) { + result += `:${tuple.port}`; + } + + return result; +} + +function serializePath(url) { + if (hasAnOpaquePath(url)) { + return url.path; + } + + let output = ""; + for (const segment of url.path) { + output += `/${segment}`; + } + return output; +} + +module.exports.serializeURL = serializeURL; + +module.exports.serializePath = serializePath; + +module.exports.serializeURLOrigin = function (url) { + // https://url.spec.whatwg.org/#concept-url-origin + switch (url.scheme) { + case "blob": + try { + return module.exports.serializeURLOrigin(module.exports.parseURL(serializePath(url))); + } catch (e) { + // serializing an opaque origin returns "null" + return "null"; + } + case "ftp": + case "http": + case "https": + case "ws": + case "wss": + return serializeOrigin({ + scheme: url.scheme, + host: url.host, + port: url.port + }); + case "file": + // The spec says: + // > Unfortunate as it is, this is left as an exercise to the reader. When in doubt, return a new opaque origin. + // Browsers tested so far: + // - Chrome says "file://", but treats file: URLs as cross-origin for most (all?) purposes; see e.g. + // https://bugs.chromium.org/p/chromium/issues/detail?id=37586 + // - Firefox says "null", but treats file: URLs as same-origin sometimes based on directory stuff; see + // https://developer.mozilla.org/en-US/docs/Archive/Misc_top_level/Same-origin_policy_for_file:_URIs + return "null"; + default: + // serializing an opaque origin returns "null" + return "null"; + } +}; + +module.exports.basicURLParse = function (input, options) { + if (options === undefined) { + options = {}; + } + + const usm = new URLStateMachine(input, options.baseURL, options.encodingOverride, options.url, options.stateOverride); + if (usm.failure) { + return null; + } + + return usm.url; +}; + +module.exports.setTheUsername = function (url, username) { + url.username = utf8PercentEncodeString(username, isUserinfoPercentEncode); +}; + +module.exports.setThePassword = function (url, password) { + url.password = utf8PercentEncodeString(password, isUserinfoPercentEncode); +}; + +module.exports.serializeHost = serializeHost; + +module.exports.cannotHaveAUsernamePasswordPort = cannotHaveAUsernamePasswordPort; + +module.exports.hasAnOpaquePath = hasAnOpaquePath; + +module.exports.serializeInteger = function (integer) { + return String(integer); +}; + +module.exports.parseURL = function (input, options) { + if (options === undefined) { + options = {}; + } + + // We don't handle blobs, so this just delegates: + return module.exports.basicURLParse(input, { baseURL: options.baseURL, encodingOverride: options.encodingOverride }); +}; diff --git a/node_modules/whatwg-url/lib/urlencoded.js b/node_modules/whatwg-url/lib/urlencoded.js new file mode 100644 index 000000000..e72306374 --- /dev/null +++ b/node_modules/whatwg-url/lib/urlencoded.js @@ -0,0 +1,106 @@ +"use strict"; +const { utf8Encode, utf8DecodeWithoutBOM } = require("./encoding"); +const { percentDecodeBytes, utf8PercentEncodeString, isURLEncodedPercentEncode } = require("./percent-encoding"); + +function p(char) { + return char.codePointAt(0); +} + +// https://url.spec.whatwg.org/#concept-urlencoded-parser +function parseUrlencoded(input) { + const sequences = strictlySplitByteSequence(input, p("&")); + const output = []; + for (const bytes of sequences) { + if (bytes.length === 0) { + continue; + } + + let name, value; + const indexOfEqual = bytes.indexOf(p("=")); + + if (indexOfEqual >= 0) { + name = bytes.slice(0, indexOfEqual); + value = bytes.slice(indexOfEqual + 1); + } else { + name = bytes; + value = new Uint8Array(0); + } + + name = replaceByteInByteSequence(name, 0x2B, 0x20); + value = replaceByteInByteSequence(value, 0x2B, 0x20); + + const nameString = utf8DecodeWithoutBOM(percentDecodeBytes(name)); + const valueString = utf8DecodeWithoutBOM(percentDecodeBytes(value)); + + output.push([nameString, valueString]); + } + return output; +} + +// https://url.spec.whatwg.org/#concept-urlencoded-string-parser +function parseUrlencodedString(input) { + return parseUrlencoded(utf8Encode(input)); +} + +// https://url.spec.whatwg.org/#concept-urlencoded-serializer +function serializeUrlencoded(tuples, encodingOverride = undefined) { + let encoding = "utf-8"; + if (encodingOverride !== undefined) { + // TODO "get the output encoding", i.e. handle encoding labels vs. names. + encoding = encodingOverride; + } + + let output = ""; + for (const [i, tuple] of tuples.entries()) { + // TODO: handle encoding override + + const name = utf8PercentEncodeString(tuple[0], isURLEncodedPercentEncode, true); + + let value = tuple[1]; + if (tuple.length > 2 && tuple[2] !== undefined) { + if (tuple[2] === "hidden" && name === "_charset_") { + value = encoding; + } else if (tuple[2] === "file") { + // value is a File object + value = value.name; + } + } + + value = utf8PercentEncodeString(value, isURLEncodedPercentEncode, true); + + if (i !== 0) { + output += "&"; + } + output += `${name}=${value}`; + } + return output; +} + +function strictlySplitByteSequence(buf, cp) { + const list = []; + let last = 0; + let i = buf.indexOf(cp); + while (i >= 0) { + list.push(buf.slice(last, i)); + last = i + 1; + i = buf.indexOf(cp, last); + } + if (last !== buf.length) { + list.push(buf.slice(last)); + } + return list; +} + +function replaceByteInByteSequence(buf, from, to) { + let i = buf.indexOf(from); + while (i >= 0) { + buf[i] = to; + i = buf.indexOf(from, i + 1); + } + return buf; +} + +module.exports = { + parseUrlencodedString, + serializeUrlencoded +}; diff --git a/node_modules/whatwg-url/lib/utils.js b/node_modules/whatwg-url/lib/utils.js new file mode 100644 index 000000000..3af17706f --- /dev/null +++ b/node_modules/whatwg-url/lib/utils.js @@ -0,0 +1,190 @@ +"use strict"; + +// Returns "Type(value) is Object" in ES terminology. +function isObject(value) { + return (typeof value === "object" && value !== null) || typeof value === "function"; +} + +const hasOwn = Function.prototype.call.bind(Object.prototype.hasOwnProperty); + +// Like `Object.assign`, but using `[[GetOwnProperty]]` and `[[DefineOwnProperty]]` +// instead of `[[Get]]` and `[[Set]]` and only allowing objects +function define(target, source) { + for (const key of Reflect.ownKeys(source)) { + const descriptor = Reflect.getOwnPropertyDescriptor(source, key); + if (descriptor && !Reflect.defineProperty(target, key, descriptor)) { + throw new TypeError(`Cannot redefine property: ${String(key)}`); + } + } +} + +function newObjectInRealm(globalObject, object) { + const ctorRegistry = initCtorRegistry(globalObject); + return Object.defineProperties( + Object.create(ctorRegistry["%Object.prototype%"]), + Object.getOwnPropertyDescriptors(object) + ); +} + +const wrapperSymbol = Symbol("wrapper"); +const implSymbol = Symbol("impl"); +const sameObjectCaches = Symbol("SameObject caches"); +const ctorRegistrySymbol = Symbol.for("[webidl2js] constructor registry"); + +const AsyncIteratorPrototype = Object.getPrototypeOf(Object.getPrototypeOf(async function* () {}).prototype); + +function initCtorRegistry(globalObject) { + if (hasOwn(globalObject, ctorRegistrySymbol)) { + return globalObject[ctorRegistrySymbol]; + } + + const ctorRegistry = Object.create(null); + + // In addition to registering all the WebIDL2JS-generated types in the constructor registry, + // we also register a few intrinsics that we make use of in generated code, since they are not + // easy to grab from the globalObject variable. + ctorRegistry["%Object.prototype%"] = globalObject.Object.prototype; + ctorRegistry["%IteratorPrototype%"] = Object.getPrototypeOf( + Object.getPrototypeOf(new globalObject.Array()[Symbol.iterator]()) + ); + + try { + ctorRegistry["%AsyncIteratorPrototype%"] = Object.getPrototypeOf( + Object.getPrototypeOf( + globalObject.eval("(async function* () {})").prototype + ) + ); + } catch { + ctorRegistry["%AsyncIteratorPrototype%"] = AsyncIteratorPrototype; + } + + globalObject[ctorRegistrySymbol] = ctorRegistry; + return ctorRegistry; +} + +function getSameObject(wrapper, prop, creator) { + if (!wrapper[sameObjectCaches]) { + wrapper[sameObjectCaches] = Object.create(null); + } + + if (prop in wrapper[sameObjectCaches]) { + return wrapper[sameObjectCaches][prop]; + } + + wrapper[sameObjectCaches][prop] = creator(); + return wrapper[sameObjectCaches][prop]; +} + +function wrapperForImpl(impl) { + return impl ? impl[wrapperSymbol] : null; +} + +function implForWrapper(wrapper) { + return wrapper ? wrapper[implSymbol] : null; +} + +function tryWrapperForImpl(impl) { + const wrapper = wrapperForImpl(impl); + return wrapper ? wrapper : impl; +} + +function tryImplForWrapper(wrapper) { + const impl = implForWrapper(wrapper); + return impl ? impl : wrapper; +} + +const iterInternalSymbol = Symbol("internal"); + +function isArrayIndexPropName(P) { + if (typeof P !== "string") { + return false; + } + const i = P >>> 0; + if (i === 2 ** 32 - 1) { + return false; + } + const s = `${i}`; + if (P !== s) { + return false; + } + return true; +} + +const byteLengthGetter = + Object.getOwnPropertyDescriptor(ArrayBuffer.prototype, "byteLength").get; +function isArrayBuffer(value) { + try { + byteLengthGetter.call(value); + return true; + } catch (e) { + return false; + } +} + +function iteratorResult([key, value], kind) { + let result; + switch (kind) { + case "key": + result = key; + break; + case "value": + result = value; + break; + case "key+value": + result = [key, value]; + break; + } + return { value: result, done: false }; +} + +const supportsPropertyIndex = Symbol("supports property index"); +const supportedPropertyIndices = Symbol("supported property indices"); +const supportsPropertyName = Symbol("supports property name"); +const supportedPropertyNames = Symbol("supported property names"); +const indexedGet = Symbol("indexed property get"); +const indexedSetNew = Symbol("indexed property set new"); +const indexedSetExisting = Symbol("indexed property set existing"); +const namedGet = Symbol("named property get"); +const namedSetNew = Symbol("named property set new"); +const namedSetExisting = Symbol("named property set existing"); +const namedDelete = Symbol("named property delete"); + +const asyncIteratorNext = Symbol("async iterator get the next iteration result"); +const asyncIteratorReturn = Symbol("async iterator return steps"); +const asyncIteratorInit = Symbol("async iterator initialization steps"); +const asyncIteratorEOI = Symbol("async iterator end of iteration"); + +module.exports = exports = { + isObject, + hasOwn, + define, + newObjectInRealm, + wrapperSymbol, + implSymbol, + getSameObject, + ctorRegistrySymbol, + initCtorRegistry, + wrapperForImpl, + implForWrapper, + tryWrapperForImpl, + tryImplForWrapper, + iterInternalSymbol, + isArrayBuffer, + isArrayIndexPropName, + supportsPropertyIndex, + supportedPropertyIndices, + supportsPropertyName, + supportedPropertyNames, + indexedGet, + indexedSetNew, + indexedSetExisting, + namedGet, + namedSetNew, + namedSetExisting, + namedDelete, + asyncIteratorNext, + asyncIteratorReturn, + asyncIteratorInit, + asyncIteratorEOI, + iteratorResult +}; diff --git a/node_modules/whatwg-url/package.json b/node_modules/whatwg-url/package.json new file mode 100644 index 000000000..9cb209f9d --- /dev/null +++ b/node_modules/whatwg-url/package.json @@ -0,0 +1,58 @@ +{ + "name": "whatwg-url", + "version": "11.0.0", + "description": "An implementation of the WHATWG URL Standard's URL API and parsing machinery", + "main": "index.js", + "files": [ + "index.js", + "webidl2js-wrapper.js", + "lib/*.js" + ], + "author": "Sebastian Mayr ", + "license": "MIT", + "repository": "jsdom/whatwg-url", + "dependencies": { + "tr46": "^3.0.0", + "webidl-conversions": "^7.0.0" + }, + "devDependencies": { + "@domenic/eslint-config": "^1.4.0", + "benchmark": "^2.1.4", + "browserify": "^17.0.0", + "domexception": "^4.0.0", + "eslint": "^7.32.0", + "got": "^11.8.2", + "jest": "^27.2.4", + "webidl2js": "^17.0.0" + }, + "engines": { + "node": ">=12" + }, + "scripts": { + "coverage": "jest --coverage", + "lint": "eslint .", + "prepare": "node scripts/transform.js", + "pretest": "node scripts/get-latest-platform-tests.js && node scripts/transform.js", + "build-live-viewer": "browserify index.js --standalone whatwgURL > live-viewer/whatwg-url.js", + "test": "jest" + }, + "jest": { + "collectCoverageFrom": [ + "lib/**/*.js", + "!lib/utils.js" + ], + "coverageDirectory": "coverage", + "coverageReporters": [ + "lcov", + "text-summary" + ], + "testEnvironment": "node", + "testMatch": [ + "/test/**/*.js" + ], + "testPathIgnorePatterns": [ + "^/test/testharness.js$", + "^/test/web-platform-tests/" + ] + } +} diff --git a/node_modules/whatwg-url/webidl2js-wrapper.js b/node_modules/whatwg-url/webidl2js-wrapper.js new file mode 100644 index 000000000..b731ace5f --- /dev/null +++ b/node_modules/whatwg-url/webidl2js-wrapper.js @@ -0,0 +1,7 @@ +"use strict"; + +const URL = require("./lib/URL"); +const URLSearchParams = require("./lib/URLSearchParams"); + +exports.URL = URL; +exports.URLSearchParams = URLSearchParams; diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 000000000..a9cfd1f63 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,1375 @@ +{ + "name": "final_project", + "lockfileVersion": 2, + "requires": true, + "packages": { + "": { + "dependencies": { + "express": "^4.18.1", + "mongodb": "^4.10.0" + } + }, + "node_modules/@types/node": { + "version": "18.8.2", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.8.2.tgz", + "integrity": "sha512-cRMwIgdDN43GO4xMWAfJAecYn8wV4JbsOGHNfNUIDiuYkUYAR5ec4Rj7IO2SAhFPEfpPtLtUTbbny/TCT7aDwA==" + }, + "node_modules/@types/webidl-conversions": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@types/webidl-conversions/-/webidl-conversions-7.0.0.tgz", + "integrity": "sha512-xTE1E+YF4aWPJJeUzaZI5DRntlkY3+BCVJi0axFptnjGmAoWxkyREIh/XMrfxVLejwQxMCfDXdICo0VLxThrog==" + }, + "node_modules/@types/whatwg-url": { + "version": "8.2.2", + "resolved": "https://registry.npmjs.org/@types/whatwg-url/-/whatwg-url-8.2.2.tgz", + "integrity": "sha512-FtQu10RWgn3D9U4aazdwIE2yzphmTJREDqNdODHrbrZmmMqI0vMheC/6NE/J1Yveaj8H+ela+YwWTjq5PGmuhA==", + "dependencies": { + "@types/node": "*", + "@types/webidl-conversions": "*" + } + }, + "node_modules/accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "dependencies": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/body-parser": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.0.tgz", + "integrity": "sha512-DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg==", + "dependencies": { + "bytes": "3.1.2", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.10.3", + "raw-body": "2.5.1", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/bson": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/bson/-/bson-4.7.0.tgz", + "integrity": "sha512-VrlEE4vuiO1WTpfof4VmaVolCVYkYTgB9iWgYNOrVlnifpME/06fhFRmONgBhClD5pFC1t9ZWqFUQEQAzY43bA==", + "dependencies": { + "buffer": "^5.6.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "dependencies": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "dependencies": { + "safe-buffer": "5.2.1" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/content-type": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", + "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" + }, + "node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/denque": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/denque/-/denque-2.1.0.tgz", + "integrity": "sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw==", + "engines": { + "node": ">=0.10" + } + }, + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" + }, + "node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" + }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/express": { + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/express/-/express-4.18.1.tgz", + "integrity": "sha512-zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q==", + "dependencies": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.0", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.5.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.2.0", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.7", + "qs": "6.10.3", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.18.0", + "serve-static": "1.15.0", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/finalhandler": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", + "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "node_modules/get-intrinsic": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz", + "integrity": "sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==", + "dependencies": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dependencies": { + "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "dependencies": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "node_modules/ip": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz", + "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==" + }, + "node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/memory-pager": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/memory-pager/-/memory-pager-1.5.0.tgz", + "integrity": "sha512-ZS4Bp4r/Zoeq6+NLJpP+0Zzm0pR8whtGPf1XExKLJBAczGMnSi3It14OiNCStjQjM6NU1okjQGSxgEZN8eBYKg==", + "optional": true + }, + "node_modules/merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==" + }, + "node_modules/methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mongodb": { + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-4.10.0.tgz", + "integrity": "sha512-My2QxLTw0Cc1O9gih0mz4mqo145Jq4rLAQx0Glk/Ha9iYBzYpt4I2QFNRIh35uNFNfe8KFQcdwY1/HKxXBkinw==", + "dependencies": { + "bson": "^4.7.0", + "denque": "^2.1.0", + "mongodb-connection-string-url": "^2.5.3", + "socks": "^2.7.0" + }, + "engines": { + "node": ">=12.9.0" + }, + "optionalDependencies": { + "saslprep": "^1.0.3" + } + }, + "node_modules/mongodb-connection-string-url": { + "version": "2.5.4", + "resolved": "https://registry.npmjs.org/mongodb-connection-string-url/-/mongodb-connection-string-url-2.5.4.tgz", + "integrity": "sha512-SeAxuWs0ez3iI3vvmLk/j2y+zHwigTDKQhtdxTgt5ZCOQQS5+HW4g45/Xw5vzzbn7oQXCNQ24Z40AkJsizEy7w==", + "dependencies": { + "@types/whatwg-url": "^8.2.1", + "whatwg-url": "^11.0.0" + } + }, + "node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/object-inspect": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz", + "integrity": "sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==" + }, + "node_modules/proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "dependencies": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", + "engines": { + "node": ">=6" + } + }, + "node_modules/qs": { + "version": "6.10.3", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.3.tgz", + "integrity": "sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==", + "dependencies": { + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/raw-body": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", + "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", + "dependencies": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + }, + "node_modules/saslprep": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/saslprep/-/saslprep-1.0.3.tgz", + "integrity": "sha512-/MY/PEMbk2SuY5sScONwhUDsV2p77Znkb/q3nSVstq/yQzYJOH/Azh29p9oJLsl3LnQwSvZDKagDGBsBwSooag==", + "optional": true, + "dependencies": { + "sparse-bitfield": "^3.0.3" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/send": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "dependencies": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/send/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + }, + "node_modules/serve-static": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "dependencies": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.18.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" + }, + "node_modules/side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "dependencies": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/smart-buffer": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", + "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", + "engines": { + "node": ">= 6.0.0", + "npm": ">= 3.0.0" + } + }, + "node_modules/socks": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/socks/-/socks-2.7.1.tgz", + "integrity": "sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==", + "dependencies": { + "ip": "^2.0.0", + "smart-buffer": "^4.2.0" + }, + "engines": { + "node": ">= 10.13.0", + "npm": ">= 3.0.0" + } + }, + "node_modules/sparse-bitfield": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/sparse-bitfield/-/sparse-bitfield-3.0.3.tgz", + "integrity": "sha512-kvzhi7vqKTfkh0PZU+2D2PIllw2ymqJKujUcyPMd9Y75Nv4nPbGJZXNhxsgdQab2BmlDct1YnfQCguEvHr7VsQ==", + "optional": true, + "dependencies": { + "memory-pager": "^1.0.2" + } + }, + "node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/tr46": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-3.0.0.tgz", + "integrity": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==", + "dependencies": { + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "dependencies": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/webidl-conversions": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", + "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", + "engines": { + "node": ">=12" + } + }, + "node_modules/whatwg-url": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-11.0.0.tgz", + "integrity": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==", + "dependencies": { + "tr46": "^3.0.0", + "webidl-conversions": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + } + }, + "dependencies": { + "@types/node": { + "version": "18.8.2", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.8.2.tgz", + "integrity": "sha512-cRMwIgdDN43GO4xMWAfJAecYn8wV4JbsOGHNfNUIDiuYkUYAR5ec4Rj7IO2SAhFPEfpPtLtUTbbny/TCT7aDwA==" + }, + "@types/webidl-conversions": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@types/webidl-conversions/-/webidl-conversions-7.0.0.tgz", + "integrity": "sha512-xTE1E+YF4aWPJJeUzaZI5DRntlkY3+BCVJi0axFptnjGmAoWxkyREIh/XMrfxVLejwQxMCfDXdICo0VLxThrog==" + }, + "@types/whatwg-url": { + "version": "8.2.2", + "resolved": "https://registry.npmjs.org/@types/whatwg-url/-/whatwg-url-8.2.2.tgz", + "integrity": "sha512-FtQu10RWgn3D9U4aazdwIE2yzphmTJREDqNdODHrbrZmmMqI0vMheC/6NE/J1Yveaj8H+ela+YwWTjq5PGmuhA==", + "requires": { + "@types/node": "*", + "@types/webidl-conversions": "*" + } + }, + "accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "requires": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + } + }, + "array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" + }, + "base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==" + }, + "body-parser": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.0.tgz", + "integrity": "sha512-DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg==", + "requires": { + "bytes": "3.1.2", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.10.3", + "raw-body": "2.5.1", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + } + }, + "bson": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/bson/-/bson-4.7.0.tgz", + "integrity": "sha512-VrlEE4vuiO1WTpfof4VmaVolCVYkYTgB9iWgYNOrVlnifpME/06fhFRmONgBhClD5pFC1t9ZWqFUQEQAzY43bA==", + "requires": { + "buffer": "^5.6.0" + } + }, + "buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "requires": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" + }, + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + } + }, + "content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "requires": { + "safe-buffer": "5.2.1" + } + }, + "content-type": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", + "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==" + }, + "cookie": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==" + }, + "cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "denque": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/denque/-/denque-2.1.0.tgz", + "integrity": "sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw==" + }, + "depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" + }, + "destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==" + }, + "ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" + }, + "encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==" + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" + }, + "etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==" + }, + "express": { + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/express/-/express-4.18.1.tgz", + "integrity": "sha512-zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q==", + "requires": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.0", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.5.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.2.0", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.7", + "qs": "6.10.3", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.18.0", + "serve-static": "1.15.0", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + } + }, + "finalhandler": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", + "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "requires": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" + } + }, + "forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==" + }, + "fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==" + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "get-intrinsic": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz", + "integrity": "sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==", + "requires": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.3" + } + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "requires": { + "function-bind": "^1.1.1" + } + }, + "has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==" + }, + "http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "requires": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + } + }, + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + }, + "ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==" + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "ip": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz", + "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==" + }, + "ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" + }, + "media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==" + }, + "memory-pager": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/memory-pager/-/memory-pager-1.5.0.tgz", + "integrity": "sha512-ZS4Bp4r/Zoeq6+NLJpP+0Zzm0pR8whtGPf1XExKLJBAczGMnSi3It14OiNCStjQjM6NU1okjQGSxgEZN8eBYKg==", + "optional": true + }, + "merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==" + }, + "methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==" + }, + "mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" + }, + "mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" + }, + "mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "requires": { + "mime-db": "1.52.0" + } + }, + "mongodb": { + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-4.10.0.tgz", + "integrity": "sha512-My2QxLTw0Cc1O9gih0mz4mqo145Jq4rLAQx0Glk/Ha9iYBzYpt4I2QFNRIh35uNFNfe8KFQcdwY1/HKxXBkinw==", + "requires": { + "bson": "^4.7.0", + "denque": "^2.1.0", + "mongodb-connection-string-url": "^2.5.3", + "saslprep": "^1.0.3", + "socks": "^2.7.0" + } + }, + "mongodb-connection-string-url": { + "version": "2.5.4", + "resolved": "https://registry.npmjs.org/mongodb-connection-string-url/-/mongodb-connection-string-url-2.5.4.tgz", + "integrity": "sha512-SeAxuWs0ez3iI3vvmLk/j2y+zHwigTDKQhtdxTgt5ZCOQQS5+HW4g45/Xw5vzzbn7oQXCNQ24Z40AkJsizEy7w==", + "requires": { + "@types/whatwg-url": "^8.2.1", + "whatwg-url": "^11.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==" + }, + "object-inspect": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz", + "integrity": "sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==" + }, + "on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "requires": { + "ee-first": "1.1.1" + } + }, + "parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" + }, + "path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==" + }, + "proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "requires": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + } + }, + "punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" + }, + "qs": { + "version": "6.10.3", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.3.tgz", + "integrity": "sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==", + "requires": { + "side-channel": "^1.0.4" + } + }, + "range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" + }, + "raw-body": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", + "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", + "requires": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + } + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + }, + "saslprep": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/saslprep/-/saslprep-1.0.3.tgz", + "integrity": "sha512-/MY/PEMbk2SuY5sScONwhUDsV2p77Znkb/q3nSVstq/yQzYJOH/Azh29p9oJLsl3LnQwSvZDKagDGBsBwSooag==", + "optional": true, + "requires": { + "sparse-bitfield": "^3.0.3" + } + }, + "send": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "requires": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "dependencies": { + "ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + } + } + }, + "serve-static": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "requires": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.18.0" + } + }, + "setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" + }, + "side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "requires": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + } + }, + "smart-buffer": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", + "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==" + }, + "socks": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/socks/-/socks-2.7.1.tgz", + "integrity": "sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==", + "requires": { + "ip": "^2.0.0", + "smart-buffer": "^4.2.0" + } + }, + "sparse-bitfield": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/sparse-bitfield/-/sparse-bitfield-3.0.3.tgz", + "integrity": "sha512-kvzhi7vqKTfkh0PZU+2D2PIllw2ymqJKujUcyPMd9Y75Nv4nPbGJZXNhxsgdQab2BmlDct1YnfQCguEvHr7VsQ==", + "optional": true, + "requires": { + "memory-pager": "^1.0.2" + } + }, + "statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==" + }, + "toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==" + }, + "tr46": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-3.0.0.tgz", + "integrity": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==", + "requires": { + "punycode": "^2.1.1" + } + }, + "type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "requires": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + } + }, + "unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==" + }, + "utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==" + }, + "vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==" + }, + "webidl-conversions": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", + "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==" + }, + "whatwg-url": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-11.0.0.tgz", + "integrity": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==", + "requires": { + "tr46": "^3.0.0", + "webidl-conversions": "^7.0.0" + } + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 000000000..19bbef7aa --- /dev/null +++ b/package.json @@ -0,0 +1,6 @@ +{ + "dependencies": { + "express": "^4.18.1", + "mongodb": "^4.10.0" + } +} diff --git a/server.js b/server.js new file mode 100644 index 000000000..1d3e1a496 --- /dev/null +++ b/server.js @@ -0,0 +1,53 @@ +const express = require("express"), + app = express() + +app.use(express.static("public")); + +app.use(express.json()); + + + + +const { MongoClient, ServerApiVersion } = require('mongodb'); +const uri = "mongodb+srv://admin:admin@final.nhlyk4z.mongodb.net/?retryWrites=true&w=majority"; +const client = new MongoClient(uri, { useNewUrlParser: true, useUnifiedTopology: true, serverApi: ServerApiVersion.v1 }); + +let collection = null; +let account = null; + +client.connect() + .then( () => { + // will only create collection if it doesn't exist + return client.db( 'A3' ).collection( 'Activity Logs' ) + }) + .then( __collection => { + collection = __collection; + // blank query returns all documents + return collection.find({ }).toArray() + }) + + .then( console.log ) + + .then( () => { + return (client.db("A3").collection("accounts")); + }) + .then( __account => { + account = __account; + // blank query returns all documents + return account.find({ }).toArray() + }) + .then( console.log ) + + + +app.get( '/', (req, res) => { + if (collection !== null){ + collection.find({ }).toArray().then(result => res.json(result)) + } +}) + + + + + +app.listen(process.env.PORT || 8080); \ No newline at end of file From a801cab8678c97d251e9fa6a3b10439d6b49a1c7 Mon Sep 17 00:00:00 2001 From: Livingwell088 <58043224+Livingwell088@users.noreply.github.com> Date: Wed, 5 Oct 2022 14:15:00 -0400 Subject: [PATCH 04/42] Database connected --- server.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/server.js b/server.js index 1d3e1a496..cf658d71d 100644 --- a/server.js +++ b/server.js @@ -18,18 +18,18 @@ let account = null; client.connect() .then( () => { // will only create collection if it doesn't exist - return client.db( 'A3' ).collection( 'Activity Logs' ) + return client.db( 'Final' ).collection( 'Activity Logs' ) }) .then( __collection => { collection = __collection; // blank query returns all documents return collection.find({ }).toArray() }) - + // .then( client.db( 'Final' ).collection( 'Activity Logs' ).insertOne({test: 12, testing: 13})) .then( console.log ) .then( () => { - return (client.db("A3").collection("accounts")); + return (client.db("Final").collection("accounts")); }) .then( __account => { account = __account; @@ -50,4 +50,4 @@ app.get( '/', (req, res) => { -app.listen(process.env.PORT || 8080); \ No newline at end of file +app.listen(process.env.PORT || 9030); \ No newline at end of file From 857ad278702870ac762ff2e2316c489e527a5bba Mon Sep 17 00:00:00 2001 From: Ryan Luu Date: Wed, 5 Oct 2022 17:27:13 -0400 Subject: [PATCH 05/42] updated UI with new buttons and forms --- FredokaOne-Regular.ttf | Bin 0 -> 42452 bytes index.html | 64 +++++++++++++++++++++------- style.css | 67 +++++++++++++++++++++++++++--- unsplash-7rXu_HJO9D8-unsplash.jpg | Bin 0 -> 4120605 bytes 4 files changed, 110 insertions(+), 21 deletions(-) create mode 100644 FredokaOne-Regular.ttf create mode 100644 unsplash-7rXu_HJO9D8-unsplash.jpg diff --git a/FredokaOne-Regular.ttf b/FredokaOne-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..bcef8af186e3e32b1c302da4fdfd9ad98acb83c6 GIT binary patch literal 42452 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 - GitHub Dating + GetHub Express -

GitHub Dating

-
-

Let's Get Started

+

GetHub Express

+
+
+

Personal Information

+
+ +

+ +

+ +

+ +

+

+

+
+
+
+

Tell us about yourself!

- -

- -

- -

- -

- -

- + +

+ +

+ +

+

Mingle or Looking to Date?

+ + + +

+
+
+

Preferences

+
+ +

+ +

+ +

+

Mingle or Looking to Date?

+ + + +

+
+
+ diff --git a/style.css b/style.css index 59f854e16..c37d1b19b 100644 --- a/style.css +++ b/style.css @@ -1,12 +1,67 @@ -label{ - padding-left: 20px; +@font-face { + font-family: "Fredoka"; + src: url(FredokaOne-Regular.ttf) + format("truetype"); + } + +#addr, #fName, #lName, #email{ + margin-left: 5px; + float: right; +} + +#hobbies, #fProject, #currProject{ + margin-left: 5px; + float: right; } #addr, #fName, #lName, #email{ float: right; } -div.container-box { - margin-left: auto; - margin-right: 75%; -} \ No newline at end of file +.float-container { + width: auto; + margin-left: 14%; + border: 2px solid #fff; + display: inline-block; +} + +.float-child { + width: auto; + float: left; + margin: 10px; + padding: 40px; + border: 2px solid palevioletred; + border-radius: 5px; +} + +body { + background-image: url(unsplash-7rXu_HJO9D8-unsplash.jpg); + background-size: cover; +} + +h1 { + font-family: "Fredoka"; + color: cadetblue; + text-align: center; + border: 2px solid #fff; + border-color: rgb(105, 182, 250); + border-radius: 5px; +} + +input[type=submit] { + width: 25%; + font-size: larger; + background-color: cadetblue; + color: white; + padding: 14px 20px; + border: none; + border-radius: 4px; + cursor: pointer; + position: absolute; + left: 40%; + bottom: 10%; + } + +input[type=submit]:hover { + background-color: #2e6768; + } \ No newline at end of file diff --git a/unsplash-7rXu_HJO9D8-unsplash.jpg b/unsplash-7rXu_HJO9D8-unsplash.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fbf280c02a86a222c83835def92c7111aa2865ab GIT binary patch literal 4120605 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

;`Hm`5*Tl=4m2_9a}9w+u2eGEWlHTf?0#9p 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�$v7m1i9o*zw72VwgR|8Lde;$?e5j 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

8E_dBY7dZA(M(v{h-*^biK_UsVFz?IVfO)7 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⪙xlaqr>EI`CGs(_4Zc>0VIV%6k-- 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 eQ`Zhg{#}IwUGt=9$zT(cX_W=IrqA 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≊k%cWF|)S? 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�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

u@Lf$-PT)A$} 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

  • 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

    3ad~)~ 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

    2Aaq64g=#1}zw^t;hP&8a_8; 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 z

    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

    R{SW9aV?A zG`mt>ZcTCwXS`1*RVxt(5>#u_pkWT({~clajWnMdfS>p-(1tl~LK!=LT4`O}W}7Mf z!&^4u&(4z|1A&HyH#!rrMR#O*mwuDRCT4pBaQ>a0QJLSZ?q&ZimbFjX!RHUX^|4Q= zyXk>F$5g$zyxN!(%pr4Qu_7jCU9~jpgnsxk`v*vuwqnhZ?6^@A!wqlz+fl>NRN6fB z?Yc=R2juYT665JLj)-;CnR{8G73K)gXpwUDKMx zAmO!;;nOyD6K%QX4sLS<5<0FeT`Pk&DzjBANYM^;691o%&_YvUrNfd3^#Hn|xptmh-Ay`Q@^C}Lhr~b{tnXZ5ZctduNR8!FZM6MJ&(;^P zp@|sI5t4L?#^jHtibl-S^SI|-4jot9VM$nzI?Z?piP+yy`&8=+E&?Vk{R=Q2#UB8} ze-hydME)9z=6BA8Cwx7B=6xznq=>BK)idKup0C#nXbNn9uf{FUD1SA_ib%QWR9=n$ zju0C6ut<=_+*FyKE|)Mwu`!kxp%IRBy;>lKNugMqE?Xjz3!0XTlp9NGrfd~gS5Ek! z1!x;)#iBgSA!|*){?wK&Th$~Ygvj_+6ZzZ;vW@=tTC}9A^SuJ?$E90MPS0|D1G5BD zs_j=Mf!Qsqd#J0FC3iyBb1o;2f2SrAeMxRYC0MCs9RMn(M|Kp<2)?88hU?5i@{GkM zA9_Jpsh7A5BXE`-cW*>->ec7yo8IdajOk6A9Jkdc+!M(}00tgwtIs>*^4E+hS44+5 zt1~E5>Ur6Ebv9o0k54_ox&pvtc&c=v$InkJ+E54D#wusSa5x9%8clBxt+P7!p;&(Q zxIXwRN)soVU4j1O<#CcKx-wBEBsw+Ny1ThFM3;ptvLy1HKUFkh?db`?G8IAj%HM)& z3AtgPfIY>R?c=F!bIEn}7a0GHaxq_X^kp z8QIQhF*Ms0FQ$XRghsRNSJTERngs-Ki`$XuJ5J3-tE23EcdjfQR-h*cjnF_1>-Wp=QXA$vQbyJ z(L^tGn|&?k2i>-+DqiHOb(J{tnc*4gjdiqvUdsPxw3CRo%W)uM>| zP3?Z%bRlC&hpz`6u^^Al$c5M>$}-#DGXFu2ypx;<{vjzH^iys#*+=6zM&-Jt5yL-_ zj#Jbouj)1-SN@@;$8JG?nQ|*hF>Wlc`gWxEsUw16Qsw77m6Mf3n$3P7q}^WiEA8f2 zaim&b^n^6>H3Vq&&8yI5Pq=tUZHW9Y2e5urwN-q3rmVaqz{f5&?ai;f$B;%j?=BEb z*5d&9V#M|O(!UZ1HcRd+c%iFDiGn{LH=>iKbcv2zZRI|mllBC3B4K`B5q%FN3Zy=+ zOfx+8%V}Yk1rEBTB)1o=f=<4VgBETwt8uxCoQpCv+~? zf?c%vI{ib7Ts8=;+XegBo0LD73~6fG^YgbKcCMFZK`Re#AFTRV2Zn9jP$`0FEX+o1 za@OFIJ<(hX&}9kYXk@| zF38wM$yu9Q_0Pj^&V}#CCPGyf_ORQt78@<{L4^VbvF>ID);`4g8T~5v;hdWv^0{|K zO+*^d)=_6KH!YDnnYAwy9)m?G{DYWW}y0yTK0<>iEm72Ris3bod9ZL6|_$ya6JN-x73o-9-|;B>zv&HkrMgf zkcM(xSD%B6ey$Jhm`9#eT7H;{kntO4kpT^v%MHc4d2}~=v-dd1d|Xln#qF74*0b^1 z_Q`Kgq6NAa))994Dst~oE9OkMw3zu&7 z!rL0lrmQ6iUcw{c+laQ6JSW9NV6ZKvx)(6BonwKL-ANWEubs0k2T^zkZ{+U%oA^T) zYtH8;xR;3mUZ)t71oV<_ik=VSKIDDxthZ3d|F9Apvqn|tWhN0vNk7;(>!32}4zK2# zNFV(*5VN57r$@|4Nb*ICp8*M|HA+};CsxcU?!YSeB2#)pSj<0c=tOK?QVwy* z@)B@7LP`dhJl8QwMH$;mH~$+ZwUs#B>Y0rX=o*-<-LRoC8U7)VkD71IUzJA0Ht60Z2}lWxdYui~feerA;P|7u_pSCxC#J+rDkd z0Ko}NNE$LRmntY6|C*J#Z!jms%5|zb2dw?8vUwcs!zb!Vt&~w+<-0p#wVd1-<-8U7BEzMXzpvx(0LZ$3mS0FXAG$F7=7w zY3X)YqQ#Zbip|bS7r+y3l?TN$X1tG2u@)+9?{6r5?zP%f^%_3c?_+HwHPWz>mhcTu zw^LUX#9e0xw>jVMo7{YxUl2kK@8;#G{eAS{+2Xj1&SjfbAA!`@e;z9eDT*vR5bA6L zzOdlA+PI)Jg&eESRIAEdou!adp1f_;pD)Ibwd!bOth7LR$ZflF74PYPdYb7e-zFS1 zL=f}DSa?C^u-B;Z2L8$E3dSOLmNDGH#Ucq?MqMKVi%TFKfmSW9c?Rbs z2@W-#`r=8us`#rQL5s$_In=(DSZ%F28O20G5skz*3nG%$gc=%xEPv_SbEnF3*K&^L zt1 zx9j!5i&`)voy_4SE`7hp)d9v78~K`3-jifh%aDQp9g(cMg!JQZ7fCd}@Cl$KRoQj# z$+`DjD!L13?`rBfxRUztn@sSC#cv60gnl?pzp0V0zN-#fZ7X-rOFBTBEWH-wLH!5L zva*q0?3A2%Ey8x6?=tmC^JGbe!-Rr%;%?vKr7V+UH%@IK=FY)R!rm+%3=cKup9;>Y zZ?(sJQe0jQC^=h^T*bUxk98~D2koDvJerdrKOBFhNywg0|HtJvnsw(R38>=>lrD*1 zVD2>ZRak!gCkk(t$ON~V_~Nz zU)&CnbIT>o)%$K{C`SYNqBo!EzliVILTDV2qHcU+M^Y8{7Wxd%h!=^mOcvvQe;n`{ z4K*}vywQTZoKYOsOIhIPEjCKOX#LStKkpC^1cWcr zi38_ZA7t|KZhqM1Tk8GCRjpEtJm-6>2#$M=*zEBaDj=N9DDb90#Q>kdICtRkh;g;cv$#enwDxlZRSa~PzCPQIG+s(PwIc>u>_Zz{<< zKUU_Vx{H}wYmF`v@~YcInRDUBnGTiyiy@M)$;@x9@w+mu9%Ldpk@Z(T$QOO7d!}v_ zrx&pW228p`!({NPa(e;SfW;p#SAvP&s{V5S9a&Tf8H;Y4F#EDY*b=l%@fT9UycFB) z?(7CeZPWGxbR%yL4ElrHpr?U2m~$ACk057|>n;nrSRRgno>w+HsAM>Z_?MqEAr~w% zb(+=&N^PDh#Tjsi8oxpw?4a|$9N0kH3kH^N-rT`{zg68u`4xFER{egCH*PmYr)2M*{c|Ako0tyfP$p&J5B%J~l#m(Sv7UMYW)i+{&9HM*1^aOBl?27zdyfn?Fq8 z#)Sfi+;{El#}{c!zBqt(nN-)`0%(DqqiH$~y6rBzIV@^>TH0j7OgalyUu5c&xUos? z9}(&9af=EWIz_mek%W9&*EF&&g_w0QRA1Je!Zn>{pY!l|a$^0}IsJ^dbrIFIi_qYA znD(xnV(J>AsvTvyS%qtwNy89l$2maBJZA9*(P9}MjD{9gI*NY-;F<<^%g z98Dh)2j}-KhbAkaU*>?i3o*|haRI=lO}Q3kKDgiTcr$!F5vee+o^_X4+ueZ^!PXl8 zF8d?8h&?U86&yyKK@y6+?iiK2=}%IIdy2ASspT1u-A>Lq>Gy3RD%}>mA+Cw>HWe`$ zD#Lgkgs{-8)-(PFaT@;{%!OZq7Xtbf!N^dO`1>`6OVzoWJ0XdIA^;j0KOH*pa;Rk1 zo|Ca;eIxGnuv=A5v+`#Oe<24N=n>ZS!!FHyw^B0p-kcHT2c}j>NzyOkfh!&yY|H`!}<_vz%(9*CZocd4D>MXtDAIg%SBdY0U5I5~Xs-$Z)d z#V^LT_it{rtn2s}DwaNsP|y}qF`F@>8*D|4HpXcj;ft@GGktMS(7 zjQ}-fZAgp!jQ(tYT6N_oVe)cLN2=v`tN(JG=`~^UE&lM_S?6Kbim5@QX$39x@WTZP zH`eYrg%DWUl*Hy*d5uB}`zZ68{`_>QZ2N2bPl>U2+bIfjOOBLoMf}D8x#G2*WWmp! zR#Q%ah7T$0Bo*_TBG&r{77*B|Ecx5Ie!#)HF~pGgeKVByo<a58gnqu|$N08S-WTx^?k#K9=0tCq&QLN(*%NJQSK6w$LI$0A|d4Gr|a*q56_zNbyQ@7+ZKN| z#^oiV`#`58vZDT$!9?n8Vsk57+ry`1w8j-r5WGq(r&zHF@h6QKm{+W@6+A!S?+ulJ z&9SJUX&gI4uH+8z@4J5xOy;+^zyF zv58d0OXs4?B#OV(1)CDOi(G2MN1X}58 zIJa@i&v2NW*w)ZDUcCCdR@NG91`CnmmyH#Z!aE5YEtnOcHOf_arMO%=MW`Zuc;2#$ z>8;!%Yw0|S;qN5;-Zw7TRMi^z`jHv<)EH02&(b1{jltNgyQ6Hk#mp%s$$!=6R-H@S zbbM`7SD&kyaT#d6ZIcD_blxuD^})J5((&34^TVcc?fOrEs+ zs2^@cPDwDFSZP|)$-AyT=EhZ;!}l?6NR3auiJv2;W3p)b5g|yn=wDA!OlPF&vd8)I zBqHEjO`jS**DqYT4`1w-yxgfNP;=LE&9U*S`QnL->%3$$4UO{$*gw^jA*t+m!5I0u zRMkkiGCwy)#J%PR6jS15LBSnNIUzIbb2p7qZcpxY`J&?%Kk^;M{5P@u<$JD}9Y)5# zv=R~}rK2PVCm`n^ll7CLi@dt5$F6j*SAIvCc3aFEHjJRBSifn@wWWWnkYkm5XabfQN>#x5^A}t0u zIaj;lfd6STlQ5gjvmj29PB6ny4EEHFVc02?26kQ7E>hqN-|ub~Zk^@n_5t+VdBU3~ zRngq5ykF~v1wNjVPZHe1U^-}&R^`Zss*Db-UMO2T{kSFZeLj*=OR$g$oq&4adm(^rePBm8# zNnI@)CV+0hO4IE);sdA6OeNev$7($;JQ#UtLa3dsEcLVzT_ak(3n{>)9NH;s!Hyms zKex`UlWV}E0O2*PkCOFY(uzoW)5{7CXV@D-kg1{>8cyBIe7GYsj;f+`S>o9XnC=nRYVQ6<$T>ha^MdB(rOYhB zpZDev(m6eU)`(Om|G%1sQGl-3TXvXsR$w4o2glW7hIO8E=bpW?K!=Sn4h~mSC&nLo zl!-5kV)cJVmH-DT>9OHm)h%ySBxBmd&fhJ~1Nl%iz8j8K>)Wx9=4KHAhD2>5y3qb9O=*oyiSBhn@+KoleRTuL`_Eq8ZbbW~bpU6jC56WJp(M>7# zz4wZ$o{{;tDCdwd85zDjWy=?wY+EHJHBab56Ki&Ni$jWIYkV+`w%G(R*(B=Nt8h&EBO`Ol9w-*T`P6zBB7 z{AzEd9^Dn=e#?vXWESUWihEd^0|kn4a3Jdm4I&h+GYwj+@PpfSPPvj||IB*mHb z&NqP-vvx#{GMx5e`;}5SUUQBShcz(+#O>rRwb#V*-CG9T$uz44d!uk$d}R%s;#E4= zQe|{90q}Gs=8iUhvbe0x%~<`J8#JN9;j^%+;LRUtlW?~JbY+Q?yh0PU%$?jfa|vUzAvS~| zlgSFn{rdgw_b=?R?VR&|zh2Mh(qM^&eMnepEIfKm(i~=DUgM#!;Iz-PrlEQCCz5Je z)r~Z?2~96B>maqG!r`sAK}>kHC^1V@^GebC*OBGvv005O0h*KQt7G#^nFcSGnglsQ zy#E~wXA72Y%#-e!SCJJqs{fRiwe2C0+I5^`>el+CeXDz3QT0?7xcmiD@rDCiD8t1b z8|UwQOqUcDQ0JG-KB z$zq^UVIx*k*hXU5d&+v52d>`fPC+L8ceVMEaJ?;-lc!LaPr2n5=UE~olBv!i$(Iy6 z^q+Ox>cve|dX?wIi*9I;q>U-^4=q%CdDhS8yv7BEZ|o_RzGDu&PmT@LygEN=C%5Tb z15UN*@5zyAQz+(QI!jd5d#SsXx?Wkpn!DDRdcSps5>^=I8=oSVd@g6pp+gxLhm$*b zC^6~&Le>nrMW!Y`;_YmWDgal^HAQd=H<{45oaa>cfO1uvf1&u@^XhQ5Fsz2o2aBPb z!@u4z=10=bnM|k%U;lBcW9ZRc zQG$a_UEctov`tyh&^f@L>~S3PGm%mKtv4Y33E1_z`yyx+YuyW5!l#tIYZR`BSdSMo z7;c3#yjJ+I$%Dp6Y&L(umoV0prZtwM%y$(gu_g?%$w-C(9Lv|hHJN+lgy zE;!x2PMOh{`4Vh)8sc|JFB!8Z|<>**@U_GUL|CC#VYt=^SoTn*+ASwp2@ZKj#_I+5%EU6JR~yKJA4UgrJECo2C=#(G z`$gJu--+ZleX+;grz@EeiyaGjI*+Mtx35Asffd^5G%z=)30Es1u#DH%h$osGF^3K; z0@V5cDW|rq@e|p0ncFfl9F&T#h7Y1j0_MB^|8r2t7NeGZKLz_*j&9l8sFH9katyFy zmqy-%=yNAym$Wk1cQfPn`-#};?@B7eiwk>ZW+3t9G*ZkA${1u<9fio+Ge`54Ul@~T)( zJUe(2a!hlYd9Hbx=@inzTLfiANuJTXRcyWDTVRc7n^i0SEyOW3;W?w}XAz^|uOW>{ z^cOKmt!iBj)>omehC?E*Sq^oan*DmRcwA7)71?B$40xv_b_b7HNc+2(jEnW;>u4B@ zrj*FR9PGpj1T|6*F}C#*=EHuxZ3`2-+5P`M_||HaUM+|p_))ROZPlYD7zcUzUz+-S znsZ1iRcYF!2j`0BC;P-=tN-FP3q7O*Kd8BXFj-2pZ+HO#U5~ww>`8dQ6zPvkZ$QQ; zx5uO`p-9S~SzgxW<2or(N5jA|+Z^zpyRY=f9n?aeHPvw^673@s8jTqdq@PU6m?+b~sFC^ix0B3&TTSY#tPU7IrXM=-j+H1yjJlgw z9qKbErGRuQrR+R2u1=-#?)qp{rrC_c*lr$Js|Mpe4he`MK0lnq`e(=Mxb zVR}|j3{XQ|a^20I4Y1T?`BhO6oPxLVvT}dBOkH{6(N75lw~w~h!Y@U&-bq`ZtrORg z(VA9TqP?G8Ry_uL;f{f2d8VsLtLv$u% zZF(#ZGGop|xHPEZG3E5kzoyfD@<@4#r@#XgXFteoRJ#oNHqX2$?G~cU+0fCYIZEdG z_gM5@!?=uit<}j)+B$H29-FGpnE99Sx4%Nyh@$eSukT|d0lA1uGZIpYY7YC$Bs`3Y z>-thn)p;4;hxX4&McWA!rErjLY*$Vz?}15n;#)!?>+1t@$H%yb204*JSL{xR(syJmjB!_b z;=nE0&$^HQ7mx#+LH$UZSFG!fO|7@4k5#*L6@SivE_n?Va#?m8;O^NNG`HohbKCg@ z*TJ$ZUJ8og(SQ&3Kp3Y)bT##Mru^DcLiW$hU$J&eX8X6JQ~!a_bFlYke`CpN3Ts^X z&e3n{93VwDAX$!0SOrX0R;9CV{O?%Pp}4E(MBIH_B#ZadI>*8j9#ex5CA z{c<92p;Y=uj zzZ&s$hjSbOngo(e@w}$S5Nc0hv)N6$&pVxDji>8|`qX;`XxFKtjFQM^i?_hD&n4 z3@S!|)AWg{p>8c)$e}kY=8rsZKFbNSWh&S&u5qOXLPt4kAkT*LEK$*HS|~v7Pu6ew zWHp9ums=Ti>XgsG~gQHUapdE~K;&sl-CWYXtsroES)Ew0$YeEm|yS^Cs5_1Ifqp7$=iWt4>#+m{S0 zC<+OWye(z(9|G)Y%F+K3s`y`84~eOiYy$Uue?vT)YR7ZZ{!CIKVO!n|t4}k7rO?r8 zzlO#?TLpFsMHfg3zS@529!?3@9K39giZ_I>sYyn@JT6wA_8(l(IgeL$1~A)7RmYlA zl%eVCs(a{9OTNa$-oCkV;<+>tl^Z_Db1&(D86*h=Vz25Trrw8NtPC*kXrOB8wtJzy z7@eIo_d@CDvf)jj?O_G?yTReU!xHnKtJVo0%(%l%3arXsQb9{>+X0B;(!W1R`j_9_ zslijvNK);@$JG?!5#ggE3Lnv+x)VFey1mXNHsYKTsQWl}!PY73Koau!?I zXXh#5tMlA464cHBxA83nTpw@J{Qs1TMDvC##PpJU0;%=~40oz&d;cIboQ@}%fjJIgvo?MHBcmWV>Wuk*!y`Ve=R3YBg9 zixb5|fK10@TFdh8ZOqGwo})W%UP2B;OTkeo15bLLISk$qYtF?NQlTO+l{!-#k^Id> zgq*Ibqp<21P#IKyew1?_yF)Kpk#Bze+`i_vw1X}kJ9?rjY-&Cnoj73kx z#w=tcVR1pGF!S)RBylT&O zw2Um+*`Xs~V~ZmVZ>@fHt)(=`cKn@vz%!i(EBY2aDVZz0skK`7V6N(&KyvOUrt24~3p%2MaKx^+CDi^hY-nD&4=k&t6%us5 zq$8#)-J4c4v_^+7ldp$lBMWhOedqg%UHq>vHDxYJs{`t%wG|nXWqs;9gP{$ zwBrulONrYluwsWiJ}__Lc^y0+jcGJ=6@}~*d ze3WC_v`nj&6_rjyvOl2gB_8)A%~dca{28&er9!0s+Qn9U^mC!hci9|?u;Lhf@{K=-Mjy%_7Ua;@Wttx~zb z;J|^@({Y_wQOJg((A&>2YGhFO>aW;kl{gSgU4&7t1=a5x!rI8QNF7IX2P#ctl-3KSS{Ni0cl+{U>-y|fsE>d(o z^z6?CJk05G?`j-ctUMZ@TlY`vSvs(OT_VqIABlF&^y%-LC>wa(b<1`gKQnlO(=-^R z!Z(m~;L6~8m%>{ks^-&RO4r>DN}c+|g>`Z?%&9{hXIvvh?L(}BC`$2-qzgL2)w5rP z#KM{+rVYGMoDSBEMsn<_kR;@d2)3NVR(jn;Ugo;at9?jp2XEV@n7WD%j5{f`1Dg`* zngllt6ZQ@>2kv)9hKHU>K#xv_Yv(*1D^6Od{WDPSB84~|7(9Fta}n!y^XvlhO5xa{ z0wJkdzh;EBm~O#KciPIP!$XpVdf|J4eQ8 z($oH|T5Org$xudp@=b7Z?Ok8McO0Dc1Txr2#%@BKtOSH`8aO+LlV5f0tV`|ig6-=* z<7$|j?5u`*j~trZCcz`SzyST5(CX##Uyyax+oh4Zyvp7W#1}lKQuE(Rhnw7k|GS=P zp|_P0t|{_*@o;O;vqw5+^0Q1l){sYl?IuCf2)NjmVDK zR6vA!k~$HynyiyeUdh={MP>9?98Al?I08!zApAQcxYU{5MFdBCbIVep;^RexcAB_` z#;=gjLZy;#8E<$7!2RcbOFQv;Za%Xro;=a&5~AyARF874g#Xy7P=eKFUxCZ4lkK! zc54$xxw7^&ntcI)`!dceT-pqbqgH?2LTdb?m*Z|NC+Y2BYTb&t zh{OT|8Nz>xHwFePI_~H{IQ-y!mjzx*D2vU;Flc~7(X4>fT4{+iCeX^=Jnf?&f8kp{ zuA-5ZALfbXHQ)zoKT`xcaI6w)q|%1m#zpDf+;!gB54RH`LsH>~Mm4Ze^SwmvpCyy= z96{`Jz`mJSzAL?3vbfhd%_;^3c1b^QdwBJC#`1eLm&r!OYb%VsCy?G%hML0nMMA#c zLG8~pZT0U6YNsUqQEozI2tuxy<=DXZB7tB~bhl>LRF_sW-dnQ)1Bj4QF7kvIu@5CJNi_{63OCa57;yoW$jrtxcc(Y|_mi4`ps+4< zU_z#l(>iya#!2h;S!y{3CzIT!(bll(*H^|&QV35~ zxtuV}C3A23jtEg22#V;+&c$sT-YwpQLknp20MI@}MdD-Gt2z7V0$j)mPnwQra-K3D zSvJ)H67qt0F;76R=?TWQYO=ej~|99mO2=27lD`f=8- za>Q!H-bp#vM8ErO*}K5h4&bsaTNfqCbSPdwS+@esY$mCF`H<$Qxo@ICz@!=a!f4Yo zg{=itv4`*8`U-9AH7e#;u`edXe{ObP@wlEogiZIjB~vj(jWkmfsIZ`c9{=U8u6&Kq z3+MfA*8vO*h%yeztCv&@hI6=Yv^2qVb%<_A^iB?WLhTqi_UU5b$vh20YS!SwrG&MZ zI$698q30w3C`d<%Sq=JE*-;eN(4_c{Ss8 zWhx}W5F5?W4*W*)MFbQzIMnt(Zx-_piT6mK39)6nsxwm5aQmh2Z0FiEFg%3y|FJfJ(w+lL)-n6VmcsjSufCTl& zU{ax}02bWi3D=P9`ffVH_m!`3y@04$#M;GN@E_Hx1_mj5?lFlh?rkiqm6*LA z&ad3Y_7Ia0MxNSSvQYTxp#oI$f#af>r3Dxr{v+4ud8{YKt%C0Vg7}m~9u|W^@v|{m z_*4#st$a2c6ZqQVp!3LAU(dd4#;V7HiCjvHyeloJ+BnJp1p%rPq$PgGMd3dh!GMKp zK^3cpmg#AKijHgP8CP8HTRYv1&az4Epl)Aggb1P93 zY5t%0`|>$E)~S_Sy+6kGJ^4T(hH3IBm)_>bjNbaK>zw0Dt){w!jn0~Fh>B=i_^=t; zPX?tLf~F7FCFkw*`y;yiOWKUt?zI$&Da_ASPT2cl**^7ks1({`@|$IWe&KRSxD0VO zQ8G;1$#Ow^OqqQ`5JX;VI3rfIUY70@!k@RaPfa)^V1)yN>r-!o=&S?Ne*KA7-^py| zJTubUS(AqnhsVu58&YzZpB_UiFPF%yW0TOZhm{<3k8;8dp4P)k*51+#ZD}?8Tic zb?`=(jzPLI2{~?o3vRK^;R?~qCvoNacg#DNJT~=y?lpg^3(xE-UgiF7VDN`P`f?Z|2eC?D$BGb5@}%(4?5X!t4WVmI zL8(u{lC9+Rd2Yq$wJd0SMMW@)(iBg6KNe&4jq@Y^k$kUA( zbAucr+$SfNw(y^yiEqS$@yln+E(2VDZA!lfPPP$^zU8il_Q|q|)0QO?pLC5&n~qtB zuc=2GiL{?(kNM<&YO<$96WQchqA90BE58&opjP(!>mL)13k({eIg}1@uWQpv9LE*;G+kE^FXD#> z(JWa`8UVLN6KISn`$q9lnbr4ndf&E>BFit!EJ}VRY8NxD2?!q6D&2v-!E;O8c<-Zf z9|T~T?kNHU@xKotmJ4k)<*OEjjltTqIY!N9w31kkZ!Ls^6{4)wS#v6>de6=$;)g? zs+F`Z5vFi3Z89p|;&;QIUXiPe4mz}7NPL=-RV!22Pk{8Zv?-{iLbrPY@CAD}TY(%7 zM;*vMjw*gGXyfR4lRh5sXzkQy%LcH@;!(Pt!};ZNwi9&D&L~Jjk@l!s@mryX4f{p- z)sSye_@0zgt8yBO!htI=lZj9ZFzi1EwB*fZyL;VXb>0>|`X}rskOJRw_I8-|5C;TPv}Z?_HTy+ge|U;1C+8Qg@m z4DM?ryYY17O**3|dvmNddjrpX@@j1}3NKg+l}{83!*GGJvsvzpCd9ApoVnD%D?R18 zv33BFT(XlK)_YsQ`%p>6k^D=MmOd)FBTI)=2sk(xq~CQ>b$<-0+>p4-j;SJRR7#`i}BR=Y2fgY3BLBGhEX8Ujzd z^l1R^wzA_Tap9?&Y6yLtDO)%uO`DU0jZAaNyQ4L*B;$VWl{190mn(}o{a8rMBRa0@ zRr~cd(ZMX)L2_$PXLIRzAjTi4O-NFq0la@WIkHdd7v&l9|3>goqo`RC@0EXXxJBV3 z4!13ofI)Vf_5*|>HwVk}Yj&U1ZPrE9N!{xPamE$W*z1p4E1`6Egwi_52?Fw+NGsxc zwdZqlh#jvF1Cf=YS9QGBCjGBsnk+|JMRQ`U8ir!wt`0Ntmi@n;Wp==2ObZP-(|ryF z%4HRhqrIkS%anbDV6x=q5WAcRf7@TpXkKKWu4c}f`c=|Ju5-sCo9jlv_n_4 zSl*ZELCRanr)sa#tb3-{ZGyuz>_obY)tx83BfL2e`x9s0{eXH$|3If7U4vz+PbpRy z@21d4x0Xdz9H_nPn2RpU-0peU%zcjj13zj>hd>&I-~?9DXix8CoS8`Vx2~Mktz_8! zMG~ZrRjx&dc)2c?O|EzW_#3z;kR(;uz6orVt0+h~l67=3Y^93!awIPrsqZfgrq*9B zK_zW$_iN4SMv8@Xeb#uQ#<%d#Ok_;Y(oju}x`%aa?GP`l-bT#o7KA$}aDizGrP7vV z)%qd|E{qT9VCuz((&Vp&5!doq0IltB{br9OOt6ATZiqtBpXw3d8Qqnd#BHM+Il#e&z`uP_LZJvvqRgEGs@Oubqz!PxcXNXWXfv$o14< zz8g<CjeCy?80j;XbfYU7E0u5XWU&}vv`U^d0IqxP-V zFMq(7z}NGn`$yf@4LI-Lx9LPG$5*f&687r;diWjBXu16k>;_syMkS7Q2_07b0ru+; zAr(dd16G)hUyU!g@BP7QQUfM*@)i7ZDDewOUx)h|i2{V8)%%E5^e@7j1CN?QD z^*2*GF0WaQY?Y2moOm~FEEGRsd6igAIs_G^RH5!h{D62BywfL{IVXS{c!jGm-)x0nl9HX+CEpUY>L$$JE9F3 z^=qH17wlc&eCsrrg0FQC%%+@3e0hL!eJA(gAnU#wAcWXkC&K#iZHjB0v3i2(Y!;IY z6bf|>w4*2&bC3gzZG>9q3)dGcgq4QXjirAyPk^r6sC1m&9|4 zbg{vdxU4nDVAsbcU1DBW`#RMFKFxAQ0G8LZh6hY|9Nzr9Gb4vtseu{s|5!*t4PmgZ zuRO&dEs@p&O|4&WgERq|*;Ghv@8qft{}*(sk4&}0X*=$B<5=Hh=J_{?)JQU^I@P%a zGv?BQsn%(GUrJhE7gb@ZSVUhNRjm*ESoJ38FxLzTC`$=v>EvsI#&D)Hh2zs$#dzB_ zvK1mH@Ywg&b?$%Pd(N4_brV|>tx!;v;*I+QR%#xZofiv$t$r5nGsO2XvLwZuW(|~P zus}`wqWmOrFgKWPKWSWH!s*HVfacY#Dda43NOV^4Z;xqW_)Duo`30zVpL!5LPO>M$ zW8|Vbj731bb=LoZe>tgbLpOG1g*OFH93zKrYuaXgHLh6)2^Rmz)^9y5imiInTg8%3 zS0X!6LNMaC|Ds=7x>opc^e}5@gzUmFy~k^?!(Zj07F=>E`y`IqlKQG_A%lYdR3y$n zZ3N>x$1GY&()b-YR7ihN3968$7Y%E8V5Mq!Wm~Ri5&pYAY3*73nn(|aeOiQ+wd)Oq zz-h5BlVp`5PdBPG;~*2%(vyJgUs8555>iY*yBpH-irWQjAqCauCjvz^99(2rwKmUS zRQKn-tL=&4iWK`VFwbIBsTMEd#{6OK-ulVITzXGT0Yqe7e8qi2L+K&kbGYW&9caoe zMjZlFPUrxOlWht5$2Mv>0r8`C2TdT4DnJWuJ-v$-QBW$4b;9+%f6^M%3P)UqU)j?< zDS!RYg#)Tj zfFng8TC~IixSIktI7nDdNlhyybXp>V(q<~t2dc15?$3~D=&dbu542GTuM;6=tZ67b zdVx@wd##}{Bg^?Z7QHP_6An^Y<%!A(xpY2-lQ*P%#=I3eA?$>+>{J2j;@q@`J^PJqEc9A&seOsljGGf;$Zo#3JHX0 zHA=d^*E&@7teJ;t9+$cGk~XAk*btl3UCX@|Sag3>d|FJkwG@hWAjee+6zQ479dsJu z=fB+w#sn0F4wd996sul80ug z8JI0!am`5ZLY9qsajYkVNmyCl*8M#7++nKtg{r8`C}hFTbDGaelnD00L5FG>{FM5v zeOMK*F0t--r@Fh9A)kUq1E>Eo^Nq+xbNOmNhRBt)QYd1t+AMM&ZoMRRU&g>5Q^SL# z?jiFpx2%h$k0Qh!o7Yd&E?E@KIOY#P;zy&tYn-&+=9Qa2g@LtQ$9MN}G*mSx}3T=-r(gtFj6)iINz< zw?Vy{I&t~Y((A#uKmDUtjyoCniH%CCiG}!~MjPj|F=&ew*OM>bY1M6=DiDx$SD&$- z{s|AK68CSLt?F7+P6y;#Sjy#sdj*%wxR2vQY&Wn`Y0fat*jA};VcCcO>N?N2`S2@V z`O)8o{ZL7sw_;w5w$zn4$`w5}Rhkb>vpI;^}Q9M69VPylCC4eo%_=Z9XFw!T=j!d;;TTiyFg$ zu>lX;+I`PhMBQ+30yRub@{H*1CN3w)-1!SBFw{+U+&LF4B;NlZu6*UgO7&A~#Wyum9L?=4RHk$Ns9^0bn9BUT&S5D_bg z%5;{<#H4c0I+b$W9o+W*6jrF6jB&iSo%NH6uu&#=%;-DPE{_9w)C#^TX`_3b$Tb^BU$Xt6k{8rfxmm@-kaJ zmiTQu8}9D#1%Ij*UqsUFInr0&koYS+>t5^*v~{6EGdY5neh=r=x_oJG|Fj$qK=n+F zQ{m}GU=_nP<;v!gBmat1bP<2^ui-GJ=Lb~~)1Qv_5!6_6d&_yfd!@R8G%o(Zxt*|$ zJz*huAsH^33F0w_@v)Z`>-iUUQy$;N$M}u+4aM+0rv7tSm77DYi3O$6o@?&BKnf#| z<@hx`C8C+)2AO~ojbDK(-XY_zS$95qJPo`I39^PS)T`#KE0PqS+p|;eEb2(-;ihEY zX+sM=A;TVCmK7KVGHf3R)X*yRJS=qn-?50qJH>9p3M>`mFn(e;Lk;m{f_cIo+)TsP z+ceoXqnzZQDSOc_yhu?UtgS@7`XjuNUv-lcgXCWz^}VzlGXK*rYlUi;u`U^z8Q~mu zZT1XsMovb5c?R5`VU%&(b;FI57wyk5$gt>_S&(>r#ts6g)}gohe%~fQYAgnTZC}b9 zL?bn>vJomTMqZ4x>3Eyxq#C^7$Y;8K2!yf8!};(yB3YhpA)29^^E`Ib^hRhur);aw zwX7iUGvxx^>|4*O#xERBwG`*Uv6RkPXUZx4_c6(uEiIAFvimidoxwK_szE$_@29$y zWVfoxCo?ekP|db*w9;jwb`7-W+_;H2@(QN!yjr`(Ua0rP+UPWxXMR;@2fQ+~L#;7w zF3>-|w(BUAcC+HHZ$16d14aluHvITEyrfRGx%-FQ3pEf`@l_T{8K zMX*S87UQE4i+LCsb7-ez5!**6Z#COL=G45!Zw2O$w_$0l zoHY3`c0vxrB!_I~j}u*1D2;iBG6Kam48a|eqqE`#luiavDPol|+d-&NV}#xNdL5VQ zao*vwrq=h)JP1&1`JhztG{EVyXEiOUHRjy^RSz;@9{e(!ws&&uEcJ}CY(wWs$Cg;+? zJ9)PQGMLV)t!oSyiVGt$h@=w=V6U8Fu&24&U*H-Tj?zS3i_fQDBY_qa-9T}RiG7ns zPHys5-HMN+V96@*i{j9XevE;v?Xyqmo{Z9;>oel<1iZ~hM$5!`fOal5H;IUL#m+-Z zr_aqCm(MO*96o!~^+T#<pyg%L6!3wVZXF?QRNQt*p4wNw!_DCBpHhIm)piQ?in+flr zDQNR)Lp1>vI(>!D<0#GMUO8uZxXu4e=EMJvaVdz!7iXvKE%^*4e)%)n$f<1XqUS*c3BYLK(4#E3PZ`{Y)TRuPY+X#W zpk)RA-aj-l_Qv*oV;ty6g%4dWY^7tl)F6%|s;g);i^UV*E3vG*l%%p$ckL;i1RBSz z(1wrl#h0+DE(x@Yt&!Fvl5nYdWqVTiXO=f}#g=xGpE=!V;0W{4D~9+tuS$I7IlmTK zST{ddG7C_M`s);czE1Po35H0 zTt)9O3+1~nAx=g*FKwDu!&$Z~m%oW(kTt-Wkp;o9nM-`6Y4N#`BBIR3dj;^($X?V? z0oIZ2JxW2OX|Z?z3wi{M>zCrB5?y>T__ss0@2#lSUTM1bcv@J(Tb9>v2SQUn7p}&o z{X2{Cdbkqzs^z$Z0|b)Xzba9sv7IE^K($qU=`-yr_!Cx^sv#jZ^!b}c-vfx4ak%8nqWd&k_Kd0+ewH-miSe$OOL-C^AoMhUaWUMDuiwdUC;7MA z8^9=v?NB zIqR=4i{EPBcPR9K#)_CJJ~MM&`-M&oC;3`NC>_wt9tMgHx0CMsnxdxm+p(80EP5A_kqr<$K}0J{qwAYtnZJK#^(J% z3zgMarl5F#_WbbGVLbyPO_5fP9ks>3W(HxnD@qx1QwqfkSDa!9)^v|^WkGlb)A1(D z;qH*DbkF@lm*DJPP|+{ruoBU%_a@gXHt5&dKG>JlnCD6HW!!aN*Wg+4#F(5z#Jl$+ z@NSQu^M40;VFL>7_NmLn2LAI?zBy#?DEGWL1fz!>X z!{iPSQ@bA?)Ri{_uoU_Vmfb zKvAQcnyO^(I1jtM@q76b@8f#=OK0qVdQuS-k!}B-0z0Qve_zLdd1m}gvIC@BWs20h zHmx*tsjMRJB&df1rdr5XV6O+Rc+U+zez*{KBoo~*OZNBC(Zb#s=FYuX{`A{z-4$`b z!C=KFjEDRJ=HaQ`vUEo)dmw3Bz;B8vRD&9&h4>RR-9H8!!HMR*EKWGl?L(9QL zRcT_e=kgyM-Z-GvcS}^l(?$vkm&$0)l7gB^Az#b@FFgeSm8E|^LA=-A{=l}jdrh=k z!bYhp){nC0PqQTT_H60O6I7Z{aGsF{ggceo2nic**Q2;Njz}2XTX>5s%liHJE?KdB zO+{ROF9BL~g?-VKHlv#Mj~I;+pJXT^ zIE0p0i3qVg(-!Cf^-tsuy_aM**>8BWvwDVuv2Q+RurAZ@>+u_pU35jIIoaLZZ~kg% z7ZbCpb0?9teR(enU7Y5ucAcSUhI-xmuSJ&{fAn3E{_}`dqO2-}eby;LxeR;VNbfHs z*mi%QJsX0%3vR%)BB4vuuE`QFcD{G0WIuzxUdSqqV?wRX~q z@i=pLHQt`zx&jidNZ=~)EU$j7f2rLgH}cTY4K*cr9|Osr4QRG|KoLcA$40WC zcU$XfTKD`52ZY`Zy-FnNs(xZr)}4H{u94Qhrc|<9;3TBL*@}@K(%2?lsP?D)GDxDqaKXRDTF} zXR>w6V@jLjMyX+P?Fv^*#OkFuu3ptoCv0ky83`I<-OI;E`@y?UeKFhMj=E-=dsQhvQAtG z-+wbxF64>^ddtNMqFJY56m#T>Nklx28(qqpd!Lnkji)5J)h7@$?Y=e%>+tUc=|n$W zXP*B>Ti8vycDUGZ(B070ZFj7fb?a)yPNqwnfp>(ge_ZtSltP@o%-ra&l_D>RVg5xv z#OP4?)@$2acTq7)mM!<BrqNBaJMaHZ=Hc^=N2J z6x(`3>`#&g>6SkO!H%4z-Y#!H7_2VUd#Q^VkrzWCXIU~2vNbb4Y0g-$>~n&k#UAg@ zxa)sJ$L1V<@K^Z3{EHC(7>ABqTS8V83fqKXJsTR=@R5eGSoH{Mkhnng`zsEkNDf;< z#(xxvjsk03_WsF`pA87Ouam-%FU5x4?wQ}hDBHWaNcia&649~R>EX@AHwCVW_qiHt zOuE>{9^Xyd=ndaaZ;xl@Fxodsm+`BA%va2)r?YGm9=?xDRBf}26t)ksE562P>9`HG z?Fe|>j$&YHEn&MUY%bHejlwGf`Ps4>l1BQR?(8DU@+&QNS>!L_U3E`|<1Vo+*Dob&ET3U@D_UxF-U zPbeV)4(3d2XZcjqe%`RW2k$U~rTWE|Ik^-(I2jTs^eNAz|0^Mr&kLden)zl67d(a3 z=<8+n=Hx=)0kmJ52~B&>dS{9U?u2Byo)s!vhI4zGUjy_Re}fkTa9fsvn#VJ32pNHH zgz)6Lp)GHqFDWbbl0R4Vzk<8*#qWP6_Fvix40JcP|AIu!6ajWOn(SU*<7Kdp15+(M z8v<2sGQ&>?Ub7cTw<;M9BC2-?d*J%&U}z zB=-Ca&Wkz&>T+N9T56IHh)WbOnR1yQ8xPCtzGr?`gR}GE*>nB1ceBIfT0JxHR4n%+ zLK|NqxW@dxN2YwbU1 zr0*f)=g{9s0oSOVIHlRJNMpIm{K-vpAj$ZROZDSQdP-Rli&RABpVCZnspzWri7 z_-lfQZ#^&~*Uys3dX6tTNR(5!wt8Ge+dp%PWJ2}Fq-Y0D$lS+KRzT0OJ7rbu5oleq z7=!8>%&GuLrEu`*$vhG1G2=<@bM)YtJn+d&;niM$irzdURuER^vC&D*WieZru@y&E zp)jHV;2+uMN?*#Qs0w$MLsxLp=FFnVvr{lAX@Zai)k88UpIkVyuKN(ua@xlS0}Z&j z!-e@w`x1p2oH9?1PLlinKu-CTfEatz9cSvnzawc8k|^(;ZI@$E$ypf6)U7f@RLCepK--MmwdsMVNn7)VfCn#Q3rR=n71#6q8&yd2)4j31~t%eGuD2e zEOKa-uK>%ZCw;AepT7G${F4SXvMKuE0^uh*tem5L;jDU0%SJC$N1p1N4M+sW65$W5 z*DhwU?LJ=fMxCs=y8>Hrm?h~{@;s%M4X4MXxivW|jWVm5sazDLx*vw7|>QzUx zfaY|T#{-{B`20WMcIO&>re_dG1b?|)A@$9a1GQ8TQE&32jB1+C@C}Z1W(p-A=yfYt zc23^d$o!B!*cEAC!snc&y!&eYzNk)+``u!{O@)ES)E4*>>xq@#dnuUd`Sx*z@kV8{1!~8n0YYNh zf|8-e?sJqiu~lLX>K&Sq>1pUK?4%|K-S5$F^(;#^tX-^*wf{~tx?9?10f|MBh@w_K7tmE5nJX0F|YV(v7TA!hD(<{G+@ zOQvGBxrWT0+%I#fjL9aksgHXm(-l^<-jQz3oW=XD&L{`M z#MSUutwa!um2sN_RK|*Ei<4927}ucS9-BdJ37h3_dJKONKm`~Slqbged~uo#A5>HR zK8!F`Td&C>v;o8Hl*7`wSK2JD(_>=hq-Bf=QaKQR%59)zLa#5WiX|s@Zq-)c!L>7X zzsDm8-I&%GDYoQ^-C|9ng5CV9o}0?SeY8Qde~Pfm2@qOlg&^#08+d=}d#FSg=da0? z>P_1SbYjg$9d_!)aM)xV%w+ci1cVgcu@?+d3@Djopr5w!;v;Hxwd2)Wib zYMH`h9bq87u@7mDfDe19Yl-i4Jk~@cYg;L>cCp-7v3#Ax_lK_ZU336{qPOT&La0;l zb*#Q`j(>Yt;O|eNd%M`gzV`E*s(g_5X-qEQ&8GEq9a}fzToNDB>%h9m?C&sZT)X}q ze6eFSh>Hs^*?QcBD}T~vcrIWY2W7}3UYvbqSuXx{fuB}SXtfH>K-M@HZ0a}N=$Wzv z7DSIqZUQt{US7xL2{aroea|l<_gM+mzc#y0ITdxxl_nmFZTUvKi%EC9;3ic>TTLoM zwE7&S9oHg;p8tUB&UM4AQVV?NExuz;P_@#0=6Xtjl~)>z6Eybi1D(uee+hV#yJ;+j zv%rTW&x)9kv~~epH#9=JG@yH(MpLL)x?{1)%jpXI*j1w$btK1Ep0e2ZtqE``tEO5F z3WR9}7fjj2bVj)%tYT5yMEB7K3v|R~<8Kystqb$3^C6L7*c6AJXDJbUjX}|MQonM8(X@xrKk)FscqrycBwI zazyiWTAyCQx_b5t+Op5Zc|h3bbMCFee3!0{-mSLN>YcmeI7?~AM3r)*!OL9ARzsC$wR8En6swcO9e}rTXV=L(A_=rZ6*v<{BN=UDN0XQr!S`+f+`6 z>z9gT448y-z0DUw-N(B%if#qTdUd-H^DJy^+U}$=p#AwDU%na@SL3r1iWv2b)W2OT zkGktb3Ncx`Uy-#wQVJP2*vB&WQeU-GKtEn)09d0^>9f44f#q*pQS#R*&O3XlVn<`a z*C_-lNUsJCWKGPRcUvjseTb-tB(OE&^AX3+@&u}>D-_BJ1z|Y_@lT%5g2jk`+5G+} zJhu^wCQiVGuUd85chxZZK>TEtE^xmev}%XbTZNt5-Am2g)cgbLf*IaW5|ps@cGT`c z$7&xF#%Etkqu%u0-1p@F-5S0rGEDd|X2Nk1#A63m%wH8oZeKw-d|ME84{>Ixi}Hb2hnMBP2G zu7At422;lQN@J8_lC0d83P03J)*V79k*#f(y)MN|)*5F40AS-fIhLApoHE8b9C?(S zd@1u^DMKJf+uYB88P`(oy-C8k{Hvk5J`B;Lk<|+l5+OQkZof>x%&gTk8NKjBh6-u{ z**(;=4odq^;HoK4mi_bcXT&Pi05I7IffU#wCe|i8~?lC<~|DytQ!DMj^YdqQsOsaV)GBf+KmRK8tdKTN|{ka z>t6C+so4QNL57ii<9|m&>A2gzzL1ftV;zGhwnyI-jp}h{n5^?-A?VNM)3KDsY?2r= z{V$~Fe@7;l(0j!ElnNepO}-~HihM2&Q941|ZyDhJW8Um{o#QHR`tMUx{W6nu3$cjY zsRvfhaz>vXEr&0CjEx|vYa~kF=1FNI$!rX0ljYyY?NVBZ6{Hx1qZ$F_6k}OcyC-9= z`kG;fk+!Z~-OIYyqi7BuyLrCX%Dhg-Qy|}1PY^J~QglI}oO_|zKi&>E1x}9#aHkFq zF+ndfzx(isZX&hRLw-Uo{Ilt0lDPF=@7FuN&i@Kt!+)!ylN1r;h3&xU1_R zXWcLm>CRzGi8eD5=cRnl-K=fW;cI;xDCU}4cnLPT#glEB;{UMD!2K%#V$N{L8)nBb zd@R-%^!ZqXu#AH5r|&a-{Ix8(>@-~94sf(>xOKHNT{~3Muoz|n<>8CNGTR8Te|!&t0kNF+N7f=1}K1v+P@|` zC-0*4;p$j*p6(2X%itfRSWSkR-e-4`Q=%pHJjsOe8l#t`TAwFva$_fTl&rM{9BJQD z2RoX*BlT(z5mxEqU{lAsSy$}C+<*4U%o#BmFcbzb9Pyqmge#YV? zf@|*QcsnfP?y8As^{&o~OTPuK^NgZCyXWj=5lLz-qAmLON~l)|m!vgY(zh6*B51l) zZLvG7RW)`Y2+R6bt*tgQ=)^N;(42AM52@_Mze{$voTw^(vl&_G&)>yD49zb}WxwMJ z!%VdmxEE9KEsL>jQjBGJMy~6>U+b{{@UKanku&NMo!>lAybpX+-# zn!G90Cs~(~z3kNb-hdF7zsW#Mt{bdM)XRKRS^Wx zzo2NaBF>OTZ!3y^2W!}z0IAlVcaI!JUNwstFSj^rH9>UNnX!zlhOpfXAw`LTgyY=) zHb5C1hJ|N%H7Zur4hWIuQHlaGig*LlLgdg567%1u*HNCt<17FuSj8jbW4)-DkcRa>L_Qqj5U2lP5YDr;9)j zP$AX02ihFSMpa_zz)~m!=%c~O^LzYA5`oHB?t1!gyoqQYp zihr~&R|+)QFZ=cIv;Hf;=Jgj^kx{u}=^pzqoLhO`_%vB8d!PFqj_$V0HGs{;0s+|B z*Ng`#+Iq6TG48d&p_NkTY0OB9PTjaa%u=N!5RTB&aqrYn#rf1{#5rG&zHjV9*|n)`os1l0+opuZ~Y`rxH-W9IGLT zes+QHbi_rPR`O#^I9{w~jEr{U9$05+P211|&uyBQPpbzut!%-w5_+)zdahL?=6Oir zXEV?8xg-G1dIo#F(vSv;VRj*%#*dyQ+6c}mC>|ckyZVaivrr+{%ai>npdi$sCynKx z_PN?Yzs6Q;vL>Gdv#c!|7nSl&_tZ(o7&EZXglGd?4ZS7Znf&eYtwmD>G6N4f_RT6n zdHu&INF)D)s74_Nq=9yQUdK2y>`Z3S?p-qeeB?N}lH&l4IqjIUu*~yXSd!8A-uMuhzKC_fSEytk91*-k;*lT}jrkv64by>VU zY>}>2qC~J%^Nb%Emn^cicpU0G4@o;7GuAwWj1cEPQTDZbID;f&XYU3g($DPMn%kLt zw%2=p+BW+g|4`t^CJLRal_Qr2=cK{spN6$fbT}-CDRV#PF3+1cE6dK{C(O`K6hb6O0j6V^ZU8n^5bT`zIHxXbX8=->QNK z6-jrPKAPvMe(g)P@OY=LdmxXD7!x_VH+&YCJ6Gy{apmDAhti@={J1)1E_SSu;jUy! z=K`W)xrYeq;5L@CR@b{<5wjWC`scRi^n}nN~$Q)og3OM z4ys;Tw`YI-aI4^SCL=K#q^&cYw~9;n9Vp?%x4mKiVFi`#NZ<;L_pS>G+*8UXlLQqe zl9sCRA3U}19VK6d)n;UmF$?HH+c*hluB-a%e_Np7AyqH7m~eX8jy^7?U&+{0h7pi_ zkuW8N(kon8#{{66HTmw`_b=^%aQ1iHnQu~x?j|`~+_c1$Q=q#^2d zYOR?fqWB}xf~1y;Ak4?0u2Xu-@8hDsto*CHG+~pNA1gzWo~e%Rd;lX~9tYMv3;#G3 zW>1L;{yQGEA&j$;fQHzFHWLm2<~23t{{$qEP=;~5<&2JO#X3mutN-?vt+0%aW}^!c ziT8?_H7{dU*wZU%h88?~X^#v^QZ>{mm6%_YkZ$K+PKRaGOt^uQ86vJdtJ?1EGHld# zWL=U~%>-^HF_7<_3~oxSNCh^X-QctlX5R$TI`P{b^~f6rnP}+OwXI#or%T#TUZ$av&u6bYt_*tV{U` zWC_=EVtkNVsOuh9DyK7hOSZmarzXchW8UT{iE@4*BTa9ay7TzmN*CRN0}Vzx@v~+2 zFC7fyI*~w|W!#-aH(|{?jz;`}M&8?ds3bLv3V(Fp>*a4=FT(8SA6OM$QYl!(1K<+& z>^a*==yo0^f7kH#aF01j=dzRfp@@16Bo?}Gb(X;c>+ZYZ{#X0IWkAC3dQ{*kg=N&n zeRnuw?mh3QIQyod>2b+dVWXT>MimAhwa@A1gB!F>_|E*Oo@Ql$Com5Gg)ob!;*DQU;+^ zW<%o=4_y+ZidVQTBDr;(P-E!{+_XK#TU~OIw*3r>b>u67XZxobQR=nQoyzq8VPO^{q8E%l1#$_DvJ6xC}jN&Q$d$wZcpMvkNyf&1DMhfFbzV0_hDtfdas?0nm>JgF z%Q5~(bpsTT(!PBuN%qQdGC-I3-t+If30x<|9i)J@Z!KOIVp6#gSIfmAE77fU$k0=2 zTL6|yCWWiNN=)b3`4aLS+;S>R@UuFxq*uAIB6M;K=6%?q3Hv z7b#i+nTHg$#o#QuI}~VVYHW4i0+yToL- z+`4GU)3|8xh0CxOk-9J4c`wZHOE9aArHo@b#7L_c9Ni&g7KqOZ`TdCDp*7J)K<>1(NUX;O=G5Yo@SrFJa2L4 z@2AT^6cy(pn^V)%Wc9L(%vPtKP1%tk9WK`*qW&a=imf$S-mM0ou``k_GJCCb&<=Pr z*BjpWg~IzY)O#kd*6YaT(RB^vOvoah!woQF3{Xk>wEDo2YnfwWs&-QAx}=yf%$atT zi_g1TV0h4xr=}d9e8GNWBW>YJC+RK=V7;e2XxJzh)b8Wn*QfVLc9|KuHqil_Q`|XL zId9(gA@oRKAQZn`=O^5E;Y2N3gz8t;l@Q8Lk>L3$(u5urKAa)dMk^k@6TDF@LGIbtn^pUyB~qxt1CG=J4B7`%j-XqygwTI!|FwG=<_ih z_3YEv{Si)dx8g5lF7_-tY?YROBKbhOgZ+(r(f9>}MJ_$tf1YTFRekVuh&UAr%!m)b za?K1Bjbbf6De8&*ms_eoOB78fU>`0KZ;5GROQ3h;X4J38R%wK$9eU8 z!8TU1c{aG-Xwx|FLX`C@i6~nu*j-CN7V)fW4IOWQM(PfCVZ?>_|GsPLm8uvbGb-7l z`K+K=!KqPs)7x;jZg;~p7XHA}FySmO$F%fXg$lxZjPzbV&lHo#uv@cJP=_P9NHXXJ z4N}ePOyC!%Pj@<1ZO2xsG1VwXE5@i!dGw#@W7DC*!@mpX8cz6SW!uE^LBr=QTo{!R ze7WgYno*VxkgbR@=Tm>KRc=fC2})*Rbu(tg>HoE~gy=pJEB_1YH-E*DB?IP5wV5B< zJ9{IC288fCWa$>=!M%+1AN)z4ROZC$qEYGe_~@T{^XCx0|}@*4sY_jMdz~%;u_%(FPj`;h5iS6 zu#sd*N-?gQ{K|?ewNcM5OGq;U3?W2ZZopcqD0K0uv(Ooph$PkH;78s0*5VzpO0?vreYvVvMKtb#<8I2`1p=h!TBFRB zy8R#xvP6<1Y-1Ti+qdZ?u8kjpX>!1Q5vLa3Y_840DaJ&$=1(NKFD9kUQjL^>x(2Ak zd8kq9V;e7)=smk9R|}s+Bd--lj5D00Nbw<1tRkh|R#~}0hVJ5*tO(6U4+SFcbqXD> zT<;?ZPN?;LA-tUW7po2UR9E=u(3Lfx^m+-m?f3D(VpKm{e7!rdLwa*HBkMEuJ>#gE zRuJ95BF$&^WrK%o_7v42j2ixiAzclcEgH(mSzLqc4 zYCml23Tgj4IK6`lyDQcg=o;<@BE+>hoZ_^z<^5uDoT-c=hnVbpW_SVDyJL$fx5k?L z?`Mkye~tSSf}lLiVno>W2h5rG>s;xhkJp$Pf8NWYI^eg*yakN@4ztk~o`3=28AL;0 zIvg3Af^CF~`Ox(0K{)S+9yQg78$HAI=1tS=< z6)Dvn>1?f&EU&Weml(NFs^C|O<^PW4H8Gj;u2pS~82cY{VdCY7Ro1S>-~qrda(O>D z?L(Mb6s)hZ5hF4|Fw*h3Wfgty(@(!b)QQ7>g$~DW<)V0Kq(T@&oX{OI!9V}@dYD-e zrmg&^!o82APnFoIwJq>Fa>RuCd`zJ~9YLsW@?U%6Am98Wu!2^9+=&ON86@d~f(D1l zTK`Vv5DiQ+^Qip_dU;lGgL^*R3fnoEh2@N0LJi72+wngg4f3rG8%3K-TI1#NAFy)AoOoN*zxP>qdsVbFwMl-5qu4Kq`42j zX#wT3vJ?GdI@Lo0S`>&Y^ZPS1B|`o#rq5hSjet;{E;qikBe8|-{umMIPy5IlW)qM* z`8|%U1Jf*X39YjE!)G1TrrGeNlK-!E@2;Njg*nN#zZBcoAc-^ugTqRrH3!MsL_lH; zTkFC{ZVm|?4;52R4CXX+^2&&C*D4pZ1sw7x6Zq#t5t$Q*_*f6#)a*Uf9tapI_pFVS zL>L@#8gt!1%zC!9dM)?*ztLqYpWPyMI*5rp2ETw!M2TFcbm4sDPi$({{sDe`U?rN% zCtx@{^Kh_|R(6+L++b_un`=5yH>JC{z1*pHH+gJ-U9+t`Et|EgGFj@LRUwPXa@c2ZL| zra`BwsF1KvyJ?q?L#yGF$_w8(bMJWQWwiYT+cVQnnr?5ih3h=vRLYQRH$F;t^fLE4 zpq7~p$O%eQTqQ0F9`m+V*w-Ci(lr%Oteo3@1S99?z8Am^0l!?~p^4aICbNg(C*Tq5 zYYxG?#wwiJ)OUF=10&8>qaK5fC|%1YHd)-ECO;V)bmf3#EVyW{hFku0p@_m%7M$y5 zQ!l_AEwaqB;3&^s;8jm!X1Ck-T4vR;HP7;-T1F?FG)FS0G!zoto=5%(=#EteE!;E4 zSNJkUsP=p41u^Lyw~SaFNXUMod}22?Lf_?OzNzQBSmVz_EnJD3$7KXY=%a~eH&9uq zYZ>}ryu!NZoq}ik+(31rmdlBMRg?Q^=EUy(vdH4G9RzGR3jw4j2-Y}B>aEMxpy3O_ z63(phG&b5Hp@{3kQ>lj6d-YkzhNB~&lxzvt!=tKG|2d<}owjsYw(cADW6M`*ni}(h z_F4f=Gkz5wsmTaWfGS_@3=xe{pKIq3(7D1Ytwgy6sQ(8+KOJ0?dvgY}8v@qLO9)Iv z+6{#+b=#SF3)Y0`a2q}fEC;Yko;6|)uQzuzkDJrUoHwgP5?K?xpN8)#Jb1Tpv-5M{ zfmQOvh1U`hnqww(M^da5-9h!FC~!CRTK10uoch8DX8Te5mKuSVo^%i6TI$4XXjuzb zVs!ms{I{FP)r|JsVqY|86*XMYT>2yF6s} z`|pjOVY``oI#Mg^Qfj?}$RC?*0k&%8)Ytf-Pfw3iT9swo<{U~H<$7~OMpN6+kkOm> zKc*=jVB@aN50s?NrYYd?UbOkN=QTenV2G*T&0&)qWigQ>>Sw5$3>Sl%SK9Tv=={}o zs`NA5)ak7Jw+mQ&rBvQ%jaSE6P>W=3x>X_0Dbzut9NstfYE}FA?fSRWa|o*>9lPsq zEPkL5FGC?osV@N^d=J$(2tKf}{ZeMjafEOdOFyzSDbOy5p=oumQjbIb^|m9ILmP@a zM-Y=DOI{tDmv#i3yr(13p9vSEKesCM{VY}lCuVC|ZP20CjVmi|If-n^*#)ncujCgL z73u~=pk^P_!hVh~*4o=%yT6jUlT5v&5}kxEY100w6(_@0!on&)cPCRDg6cAHi8hA! zjY8`mc?N(r%3?H9@jrVKHY_&qe&{$^=jSau`xOvLvsahX*yP90L0U@U9G-^G5_tB#s z#nW~f2jf*9-@q@q4HS*PmW|x~D(*>Fr|!g&_9wT8y^G6y8Sa{>JAVQTDp>?Q}LGwN`_xc)nI zFp_+PG*F^+KXk2)_`W$KA5_G^lpJ zhdg(5S=6&WV}H-X8`?=B;l;CQUyK>$z%+#V-}fm2W^RfTi2bPDG)B9!;aH%XZMBy1 zs{04*i+iNcr^?+=G&Zzg(na-Z>T8$M6f@JBlrfFJ>Z{y6vq_5aY{=5YZef^uFTi14 zi`$c`fL)C^b!Lm6xL|c<{J1ZwQE7^sY$5cZCj;R~>%vPulAA-J$kR~&L{G9o=W!7q zP}eDzyY7umjXBj&7ox`NLgNbNU3`!vmvj*5ymfTg5CmKgPrP>jv&YK$(_1`4%toqM zU1xfGI|CUemx%>=F4z%Pm5+q=x)nkFF~PjW+Vx$UhS!`oQ9n~y(7p7|a0U0-zeC2PaqEpSe#6exXnqJdZ=zWlft`GGtoqT5lc4S# zOFw>_@FwEWX}bH5b$*Y%Y*Cmdtj?RCMvJ<(Bem}!#9w6?(-O{p!tGlGX3eL4k6?-m#Q2+h8 zxJ~Ot3!e)U6Ye06&{}T}>dtj)Jcz|kb_-Sc`8p8RC9m(k+8+??>dorfEEd8u+;1Mq z#+=%}bMRWS!17Uksm^V{nOk8Fxczc1LCuvn%bS||9xE~TulFW?iits6kzMu&MC27i z&(nB1E~%vN3!cSqI1`n$Rs9dhcXm@h5XMaNWHEKcAI(0Z8)UsDnK(MaCdP*;RTIO~ zm`c&f@}PnO*c#C`VdbMP)nk^#uW>RUl~TZ$rRv=A1OKPh&@%m|bc>AXU)Il&4gjQn zeguDHsQP71+)bbRxvm)tu&U4AH_R~^oB1}qCXO}AD>C0ax^k!FQO zp+Sf5=O4KmQUE_9j9wC>MP$O0acP$Z0p}J3tkd6S*fP-1z4X$4wQBcofk9|KJ`y z84lH7%Lw^aV&N6|abG2QpB`4POvry2v#Ro<&Sp*2zYhyfJ?>UD>D zyU*o5_2-9bCH(Kmm1~%(rm8>J z_I)qmr53OC`(~TV2cMyBk0z;Pv+mu{QMVFqNVXA)Sog<^3MB z%=`CC^S{pWq>6;I-LU~P$JN)>X93VH?L@0)rMnLJ_vjCUvjakROglt+f4`?|{6wCt zOA-a2jHM$2G)JHegil3o@7cRYxRY_6LgN#KwC=7qhdSxB4#$>|)yd|-#H0EsVuj$bBY z%RF~+a1=Nv#=nXzEsesYo$)W6w6sK;)RZLd;t=;%W=`5IA|=WA-7N>{2$Iu+-b7xl ziOfGX3zUSnbd257zV&EsM1Vguk$0NS|6uMzaWADgGOz9?AW!9Zub9n(v3Wc)`I4)L z!pc>gaDf?!BE5ik5xA`J*n)v~*Ly?PnEF77ExsC%LFEe7x;inD`g#s*<*-Cl^O=bt z%68JujI(g(ZF=@V{6jb#u#fZV{CGSgOK4c6@JWO_8KvmhS}5+ahk=dOb$`E)edp<+ z%BT`9q$w;*I5^ms1s~e_f@XNTSoemNaFm70=lvbt?yXUFU)958y{}s{OgQXC;<(li zu~lJi<#>RZT;-u8uDD7gt)<|{dEy%&O*va?<-gUEFRtWb0x!jVd58US{@SH1)coID zc_Jz4qO|KZ?9-}*sW=oUVIchw0xlhoL^|OJMmNc4bED1QteWU`Zk~h^w0p)M+(34D ztFC;U5lzfPyWLaW&YbG$ZrY1Wvj({yjCo7Q;9V3QW9ZIKQFdgR)G;)fUre(TxO0l7 z%%sg+8DSh)W(w?P2D`)#2-bFl*>OP3yw(f+Ys5f)$L`1Ma6onuuz6}rrM7X_i(qKk zr(!!|T~QEP_Qib@dr|0CZBL4JgcN;TCyVA8H724ZUVJe4vv5;Lxo9dTBab<}*86Ty zbB90!Ohv<5)dXCER;lk*D_p`RAGV0?mr3H{7*3|H4HRxoHdvlJn;L~M4SFGs_BSrw zxRKv3Fj?pRjqU=waaw{y35PjGrot`z^>SQ34WBZ!cY+GPm}Bw_vNRB1lNDO&{A0JU zP@U>|G8v1in52A0>HR_wHu=Mn7>X|X$dF4tq&?ccl6Aqd13puXv1*xfLh7&f2q~Zk zr0c)QGYqfmBNyAX+J%b0!p2{U7iN#*{mT2a&*z(8xg{7Lj7h+$q|X>q0_$LA#+99Ov7S5 zY>BggJ1k~X8gI=2lSOFNM>=T z06fMZW;Kqipwcft=WSwj^JX?%(=)~i#VtL{mM&;PwGCu!eE)Na7kJGXW}>W2uC(|( zcTK?SEzkIDG2F&OEUe=i6&BWT(0yF)OP?W9r?$g-m*P)4)W(4xh{!$*7{boRo(r27 z7eg+bpN*2St_UJZ;xCKIn8QZPFp(^+T3MV*b(g!*C*Mu`=BqKq&;+`^aSN9`9E|^? z2I)(xK-vK0Ti1c7-7CR-&A3O>$bU^DRdO{UQLcHN{f6Uyrwwx~cfE2uiL8;4M3Z*n z$kc9H7o+0Y|Bjp-LwHXj-XC$!$m+0NW<&Vk)&UtvlkR|@60LmR&VZY~ z6u}KjW?@A9l5TtB-1npOOV*z{(GZT2(eI5lf3o?l3vj2nL#8cb>MW7UcS~>T*6dSy z7{8@}?+ROm+tkQ!6FQBpNWQa_*so}s7z2xbBa)Wb7UN};L~gJIJE+0iBp_439!t)t zdj{3|qUu?!3YN*2m6uPbO*Wg``TqH0gsgcPp|19;{}lG4G#P!mx6fGce^|~-lD_3+ zC6e!`0Im4n5#P$(923tSeU55`M?u=^H8ijM57REsc=LwR^$Waw07XzLwL8^2DE3^< ztcD{=J)&CcbomXogy|eXl0)FIkNH1(N4^kw(}qF=NpX4}>!^D%%ets?x9E;r{49+L z6_k1lw+7SGA^@CrI^x%zZ9$wqqM#$`1qqt`*x?D5R248j)NEwnYzM3?n6L8#Lr{(7 zuhyda#=DOefSBeLFU-!WLMzl6p>|9sqQGQjJeuo(d0HNTwqMb~!WtL6792&A3zCq! zW=maaV9`7aFWS&I_SqmG#Pez5J-sQ}!pEULv;iBca9Q@;jjxsU6V(e9U;n%vGHPkz z9z{|Y)*_N$9758sGb09>*?*g_??7p=Vu#7oX?`Wnny0oK#%umPIrI>a@WLD#wXo?I zj~*_&X+dQhl;Xsfr#xKNE9i)HZpEUo>k#rA%ojdNEAJg=`ISPaB6c2__MLYcuR`fZ zsq<5l6|Xy7Xwgen;w0mPUVixfjx~F3b)q#&RW(p-r|A9Vv7%39E032W*L>g&t!f$w z4Wb)H#`Zm_6F7SkO9PXcJ*tRCy#ht>kB(<}b?f5WeY-f%(8*sk;>WUVgY}c&IBJw3 zVBhBFc<=UB`)=O`rR}VjCj$d8$Ri0=e8jl;G<^G+XPdf{rZw@`GkW_cr_PMGO^e`K z?YZq;*H1__93_leDgVG4`6Ccfy%PH)FaqF$1QW|RZgb?Qi;wp`tVl$l&OxqSZ-s+` zx5ih0J0U7VP)3`Sb8FYy*JD=Ge?mGg8{UHG@%p_<`RKmL$9n*YwJHDgvh_iN^EChb z__MZKun-(nWM-}R-|r_5C~DkzO#^Me`{*a^-bSumRMIp1x+;kYD$NRBi7m3OkVWcg z_41rLpcuGm^x$IPG!I8P^>-he>8MMGy9G(3EJbJKPIDaemJ1MY-Ll1#GnYrz-YF<*wkrgI)<~*^tvx z!wkLRj9^-AcZUan<8h}k-%e_tTsMqYdHyyBGPJpHRy`n5XDb%Q1;wNhOv0e5+a!B@@3ZgRKc$}8r=cwbL*zURHUM*ll9aS%x5c{aJfXkr8; z7lLY>!oUWeHG_-2g9%fkLtnt%(1Tm-Tgc?y-SmPutTW4(em3g^>HIS31d|*>9^RgE zq~2T*pK+P()%k~4Kobpm51{ENw}XH@WoW1`Z|eg9lk@-?ml1!9c=I*3SYz*gaVAZV zFUY~@F{<(VN6GrGWjoeTnQ#2*a~l?ss*D?~)nXzMo}3au&6ga7&w+L3<%Bec`5m>A zRqe>&@W3zNU6e<*@FY^hk&B^JQz>*%!Y&}MKA**VyGsWuUNSG$k#?QfH#=?Bv)T+G zvMj3{3Ru4*uChPj^)^cG*`*dGE5s1C91N51#>b#XtVFvr&%!W#`g~zKd9U$HE|~GM zKFi^F94GvJckHp%_Hx%BTR<`~k#FpPaI%>X6e`qcPGZJj;9OFNR2-Cji5>U8%aj{QirA zcbaM*IG%A7-|&SjWO3ICP{yO#+ZG3d#_kRWsYi#ko4#Jg{*;wZ|1lra#VOdZex171 zj?I|b#zZT8hi_@~4AHeVv~M(?iS_tgbel)u4+ZSDz7U#rL3a8T|27tPsu$AS-r)gd zpB$l92ZHk3`4U2;JkyuIoB&Y{-4(WM2L(s9BGsz~@5OFK8@6mqv_3AQi?4>3fn7tEh{hh=er&Sxn8nbATQpr8Dmf)@R@n_L*@J)mM(d5Xl>4;E)@Y$!!9NM z9veN=Xg9PtUfEdjJ2tOnFx`bGdJJ@&JIjnNSf$)tOrIE!TlC|wb#1DWW&YkGsVzG^ z9@kNmD@ructdMQWaN2)hiiAO401n7@hOoDE0mth`AK0G*;|A>9Evn6yYvMuYi{>q4Ga`mHa;O{mr8oDjgexYC9j z;9()w-iAdhekr*9PCiO)Xa}oeGiSgYYwR@VgxMgzJIs-Ey{;cy{5u`14n1rDr203cxrg<8i!XG+Pqayp znNWI7K5l;Jq3b8ii*&9iX4B-I&N=N!*M_H3Uv-q;9NZ%O+lmiOjB9{(%2%T!4i-$=oe9!GpcLjzTQjYC~3{KVtJ#DMh8j_18E^m&rvv2-nt%mg|j; zNp77^-^JZpo>2!2%T%$tO(18eNAqGbR4XFCAw;iDZis&m@O##VzcPV5=f`mWk^h1< zcWZ?DBQ}ZW@HL-EgjQ4tg~O7p%YK{KI={;qbMJV%U%lY*z@lGn;pF6derd~9S2R_> z8?O^N94LF=@tk@9S|&l41ztERD6e@k!H^TnJAJ(kB#yC56dH-oyE>j0v2d=e@2v!0 zOtXCG324T#dP2+mK=(cBQ0~C3Kw<7{ZOZKG=MH%$1+>;=t*p4@Cp;KA=~&zK_L9J_ zfG3~7Z|VJ|xP|abcKIY1xtI8=yu$$a(SYHOL3_@Xo*KI?9@XGdVaAd~?6KX9y9RM* zUhST{ooNl?-Q-2BSn`u%|Tz{yWT3TSlQH=Tur?O;$nq!e@(iWtK zPA<%ER{bVEe0YSeN(J#nlBj}NVxNyKfn_Y8Su%%oY-{k2@)@T*fGd5gEJi%W=!8q3 zg~GKqZm8&`(W~z6+YyL)i{}*+3MNv8&*iL}1Qk41p3mx+3&H*w4WF&rGYHDggbT0Y1qU2x{c`< z6(CG9o^8xc(*zU8)gd0g+aX|PlO_F0Cqh6HP_Nhyto+3>R&^f^g|&!pN!Av6=f1(*n+Gn(k7;Xe z1kcr`{~DBBPCxF3h603NfojoFc8RT72=4R!@Jf+3Jc1)`l>l45?TphYK<7~-8y!`B z>Lb6i)swg0NVu3sLmFBH1rS|dGq@o5kg)L4AJy`~XDj@4ax9!Z1FC`8PkQjs*YyOA zc?jHkh3#-f|LKB(l3lsRmd5-$`5H7x_-ZWUB-_ZQCU+V4C&n(1ouX}&+=NT-jo&NS zT%{2G8-scWuc4-dLRWSbm^O58JYmCbyj0{5Vd~ZJKj%M)9(GM`EE3pq06#yZbk8|c z%IovVa8d*BDluGR%7R(@1m)IcoFM+_s4Q-34jv3(O~IHXFNVi6y73o*HL-${&vVy! zQ`Zm6CY_9N&%fAphVMjZg#Lvz^UjfX@~$Q|+WzDQXp@ZKJgV}K%o?xF-t}F}xCy0b zLA74F-jr+@ZD`#`Q;d&+fFF^}b^4B0?~ioBT9hU}tLuTK%0>x-9ce-Km zv;|B_Oz^CX@q_em02!|9YHkWvF{s;}ZIKA+-KVnDix?3I2yjtIcm>!p%y3@i074H! z^|_UrLG@oluGr;6@Cj;Wa82>QT&ojp!TN0?wX_Z#TI%rqvf6VLzQ{P6BNF$S64`@>MaZEhI3H_w^NnuyjM~lE zk1Bo~y4@ujm4K?%^0Ni?vFx(vtSMt;Hh@dD(f2)&X}y7^W^Wzc5UX-%+5)sBcjNNw z=ZSq_l8^?odlU6z?{P@UPnNf?Xm`fcT<5w06%o2r;@Lc(k$CXQe-Gh-a(fuYI3+$6 z|B!HhIUhxoGkVqhEFJHP(i}o*8LhRA%T}3mQbsd@jBA(!NJuJkU6nJaBx`tszb1@0 z1j-mE4*lR##Mbco{tE6lNKu!Y?7A>MaU)%UWwk7H-XScdRn0n4spp7e; z+1Nmc+HIo)f}h34iGXpjlKau~@%c&Detp@v8t7lUQsl8xjOEtr9VfXI1dS)*`ZzUE zH`#~ql<9u^c+};3x-Yybnn|dfW6rRLtM2^xb^H42t>%5J6_RA}QL?msyL69X*CyRA zD{J9i2l`qunrb>kY|ZQ&B}>XW=lq5^e!**A%Hu84CRKR&a-wvs&pwFeQsQQ=14%cV zgvd&}v>w9uC;Ofv>aMN5Z|br;qtqi$24#FBwF1N{lkdYHB`pG$`nB2&A-9qnn&(?f zltgO2RPNFF+GqoGsn>bSEk_sZB3d_jhfld0k%7AHp~3M&*l+DLRl$b{g- z(l+Y8SJ120y7EtIL<9dXtL+Vx;9B3c2Nw4qL>cX5%{mdczJy zc>4tT9BeC-?`32*e9u#>f2k+9!|~q;1Hxhx9FBW!2RAK$(mf< zTeY|<$O40rUQ_)&L3mlUl8iH3g0Mcm&65_g5@C6G`XY++2Bxv4;1 zA{Qt=y7_~4`miUvKkG-zwBqW5)9C+>{AYH$jFsRZFuC?+q`6#_iLAio_*m*mwM+1zz1;Kz>BE zwwJA9MbTW>oT?;;`jhuSgdKx1;T$)P2FjV`rYXil8!1SV$|jx-(2QaU z;&C?Rj*Ykh^UAyN3A$tj*=MwLZHA# zRIMD>3xD?Iojc_hq@;0L8q&J&!ojb#Y44}ljc67!QXIH2S56;WX<$u1AaI#8z}2EQ zuS%CBQ#I~cIwfTF1#LewlhDE*WRf#uMJ`kG`KR1(V31T|6HCp^W1Xvjvd)Q2MCH98dB1gymVj{#n5oRxj`IP&BoZ1&uDwidDT{fDMIo|jk1VjKd`7?VIEjZS$yT_ zSITSG(go*G({uHUoE@fCID-Qi{Oc5^-MwH7M@W? zkd28JfMuwL@f2a=*t;y(;qI*L*owBccDgshV`B$Y%AC}ZwovP>8_))jAFrHSSk6s& zWRc)j?lcWBGGE*+yh=o#PwHGi>dg88+)X?RieV6w&UlO%R4BF^BfD|!GTl0N2m7wJ zF_FwR+QS)(hDTm{*-|UXsN_tUj*3r}_+E$T85`Uk4~X3v=kxIZ0Ul7$cdDi&%kodDDN^&Ofj1Kl&MKM5 zI98rDmdtl7iutK(bYmUpp6^T}EHKK?lrtpc0NVXS!-S0<)G-4(M3l2Hm?I+;%H_jp zcS>*RR<7!=yNmCB#y$1P@Yp1v$F_(iKDHa5cP_XGsDhiEW5lRk9IDvIm9yi|vTwUN zOXm(<@XyL8TIy#5W!k($q6T71j2(k{l|gFR!FmJnE=EbTU*g5KjT||YQfv&-HW5$G)!KbG=nLNs@y~Pb zncFF~p$K_@oizpxZ2cNyod_bL+SULeoYx%;`|69EnGP#qZ%EuFC{!5p;^JSor2?a7 zqlSRL#jcB4{HQ=7m2~8N(K1+ND3zyl(!)uz>G0f_y85ydg{>CTtu(8t3TRy#fSEh(ywpG zCJo~&5L!?*v`L9U6q>26{mVW!OI;=VOguE=%j7B{eb;)4T}4XK(f3nJ>c+)%{)ngu zt14iZOHqfKxFt7T+=|A`LAQ}JG5U*GgJT^96w6MW<*HMdcD;_)=2wJP6uG?myadCJ zZKOjEl})6*WU8wB^0h=*9~L~rB^x9gBQuvVj)~?je9;P(13UvUbQFyk`P8` z)dRX)?U|=f+&NeL?TFyrgp45kVO0$$WiG9jA8!`+jC&+x`6o@!ThX}7{I=H*M{1Mq zR@RFdn`RFp)RfHOrwr6dX0it!T8r?%N4IU9Ez0e)G2aZ?ehGfpYZ5gFMA%n?{`uz% znc?H|B+|^XGs05trnZ_HcBf!d`#NABi+8F0)D^aj(yplR>DW_L@CVHww(Ro~ODjT* zlXMnB*ZlO|tt`C=l5(A=tFcmLe(M*BOq3GH~b8)_~d7T;z*%H?2R7MmIVFcr2g8KrpD- zQjdT1y;4>(JEyrx2ZqP~h?+?~`%#srI($e*sIyg`o^3Rg{Xtx%SzOJA22X)+MXdTXY?^u>{LyEzf#l1lja7EF!o^I}0E0DF&z?E7dZ+GaC2skfljOhS*Rpmw)S z)e~ngqER_iH1r-CPan`taR1EDWUs&E6viG_8xFHBT9wMv)4THZFK`|1p@p~MV4+Ll ze7Wqi1P6i>^6rX>FCH$`?{I9j``TY;^;UiM!P(G=T4P{6yUdf%a7%mpNVb*M3rTmJ zUwqD&t-im<3d_(+Ro~CIqhVQhTd^Az_+PZ&=C0MDt_2@qDz0UVE9f#YvzhMZN-`NqsNQw{ z8%RzaD2- zOTcpdk+WeslD|^c3b)f1rdZ!6)%6Havc@C-52yFErm!wh`-r_El46cHP6i2yJrfh% z=ayYAh(Bgz-HXfz1yna?M@sySr(`^&E%N25-4?RG-P#{tyxtw^c_1o!MIoUm>L>Af zny&4&e&^Ru2q1_qv$`Oyk;$mRt3x%u^altzC%vD-RA@1x7Yf zm}Ty%F@zA@9b9hO1-N#-UnqHTyvwd`tRYnP)JKhC3cRt#*Znwou)xVl{&Tu195x47 zrhpqKXta-!byhye)iH1wY3xPcj{uNwyl#@^9%GZKV>XW>f$sn3+?9I>`JKB4pdK!^ zS@{3b1YyX$v-sNnkIWU>B6#_F=2z@#)Ar!(Mi(e3L+dlyU17qwCN2 zJ@h*k5)oLY))?3bc(~)}GxTa&JKWaWI>Ek*MGRPJ7^{S-aZDq*W#)_v4 zt-42@8r?*b+n{9(^D|&1RESxAl&Q2h!#BJmHVaV($?~yNrcOV7$I?CL{O)GB+@Nc& zp}pP>{OGC*xOXnuwlH>hR)6Mu$`&AU%0y|ylZFtBAwX_xs1m%_&OMeVpyX4MhP=%9 zIy}JP%3qt9#aIt!(s!RJ{}TP8*k@~A<=>;XbFVR$9A|cM&K{o9)@FDL(p{3xa#)$| z2$aA8HP(~~-;Hc*BOhihcUnQ++wM;Mg7R z!WnIG)du%x5vhX$xzvLx>ag}T?Vq}xyOzzH?J?|RGu7gDt=jI}JqjM3>|-%;zmzWD zM)MB-jg69n@5N=z_dAI`yAVLT^Et0l>U@P$5;d?&q&{q2N6Wuw1c1#`OrZ@=-ydVP zJl+ScochaGjyKq^FFmZgDQM_?^O$;hlsNqj zZ)Gx>U5FVz<+vtrwMyW3Up28rt(`XT$wXy4*Ejz3E<6CXzAV4bmS0&ide^KlXcsO$ z^D!f?29tf?qm-?1J2siEtk&MMhW|xwS%~P5 zZabs(p@xrh6DgTE)d^!%$+b|~-mO6J^+oJtJsrNUXF$9O&8UfZ=)gntoCh7`EVx|GUTkgkF1TVWF(3WDluVW1v*-xnK!y9aWIw{a#@RMYXgWgIbjk-RQ|8fu z58uuPLCMWw?wPC$Hw*EEO*H-VFSbB#yRyISz>D5^RE=;psQMxn3~rZk26`A-HfH){ zbWcWdUJC+9cP?>Amv0XzK7272oHwhat@`;iS=36YtlInb5L8=p0-3J!dzPJS$Pbma ztTgFE4hvd4hRWP8RrCz02$mb@^cymeKn4F0uN z!2(p*Y@gJ>F?%^9L|t$eiT=Lm_%FHnJKLp!q;-T}p-GG@)&n-(`d%`@$L$nXvx7m% zg!qisWL8Af)&-XMAKGkPhzmc#B8V9GT09?H!d{%VKPuBFD?_R32Xw ztji*+Ggo%imoXTtYEbCUToHJ#gD-14NF(747h0-XlrH=%(9t2wucjNRmct<&&sdod z<4ffb9&K7razq{2<^paS1-^a~E2@5(F+&QBN20HutNs(tRmQ{Qx1Rkcd_!Uiii!Tn zb-HKq6d5LaiIWvCHBj1}Ohp>s~llS$SWXgyR5;rj{(4Z?^2IpQtH_Ev@99*7= z46Ihs=n~HATxVQ)?zd1L?Y%Ht>Aw_}{F-+z76v@ge(tBD*Nbvk&IxBVrT~22ar?yl zI>jhk+HQo;Y3M4<&uu>RZM~$(M)dtVH#^}Fw%buQ_^qBto?o`hWL)fE`NYyeRCOW# zb+|gL0Kq-8{=WkplRBm6Wo|+0^Q(*dfZvui)0KgN`ZGC%&)nYN3@OtVV9*XeMlH^o zNj@3c688EvvBb;J`uzG*?Sqk1_06wLe5d%kH`Dk4`MSZ}d+0=-no{|tPl#p=D@`lM z>-C1CY1gq9E4&3w?C0X-6wrnc6jD7v!H^=^JA zSF9u5l89Atq!ncNpX2BDBIp|%ONAGdg0m=WXjcDD zk&*MEobJAVN~)~$o+sDOJ0TwG+9aHX4W%|m{_$ff2cr>wPiNINyPf+>X>Guh`Nt%G zVCml2t7eB_9gKT5fo-u*{eVPID}s`@@tNp)a$RV~!b>d%VyVekziifjbrHktd4N*a zS(73?&W^XRj!f&ip*XFb|2{!nEW-}}{~uTizYlxjtM@`?X6*DMKmXEB6))gE>jX3y zj!)NLV>@&;WFxI}=ZuCzX5R6Ct6&QNw%*UZgGUqCxIsV2q@V!~>H{4mzg%x40Dzm4!FFL2RYhNcn80vJW zfj>kLLB>kPu;6^^iE|rFeIZI3$$|&;@s`??G2Yq|Z>)=`HHFGiIwmJLQcnox{wJqp z`Gt%sarKUs(<79J>+L)Iv{e?|L-k3=8&@U+upv+)=X6l`GJ_98`IqyPtHBWE@D(lR z@2pVC1LZyO&y+L}iv?dJMV@a&E=xrgpO+mC8e@{LZSp&XSM%-lH^-PHmG1=!Pj`n$ zkNzx4dUCSj!zfp1~+FR?V8MiG0uc>hZ*Ehv?7? zxhk-|&pC&Es9K~7^0!`X*mGG*Di){LF(%f5y@!5PQm`I`?z^%wn^MPr42Pu&b)2J4 zUR9)}u!R^P;2Zygw6##=(mvK3*%pCze%rxE{YN0fMmDR33z&_F)k>C-QO*p;$T@kS zyuxh~*(=Jq<`snXe@U7v?^GJ7mnShkI3L%R_C%~1S3&bz!sE~KudVugp1cE;RvVpj z@^2w8vXRt6pid<3m%aKqUVu8kh)eb^qQ3>V&-E;XPX!>9`A^bX$9^E>m5f_R$J*hF zp6oTir=F^e3(>=)PCFPVTe4JZ=gxN!yhPriO*cdxsH{wVLKj&DOlobfX-7}uQPJOd z(w?gS;Bwn6FHeE0i2FSc{6m+TOK-?nq-sAS-sGGBdj|s3hHUQ&-|8Y0@?9*Fac&;y zU)xwQyOLiYh`dQmea+gnpipGi&U*Nvnrv;O#&;hT>o7f>{5TA+$MxF!A|XWwkPxy9 z4#g(>AVVRBH~$9BuS7|4De*ZKEIz7cg=`COd(ktJD)MM6vDm;DwvBY%UqA~8p{&*b zZJ1VHqGb(b2Qz!_ekpFzXD-R=@Ja-$utVr(VKHd+asf6*96>!+_6nZ(+V48PV>2_~ z826_n_+et5HMKqCk6(O=Br(qoC||8;6fe)rdSWGci@HEp?8h}@LmWeQFdb{NN~T>E z{HnP7E+v+C&}J}EGCy;x(BE9dz|V5gnG+L932QK-uKb7fi3|_$)YH(IGUXAzyj@zg zswWhv7AVeWJ$8~1@|4Eg&fbOS7*EOMq-G0$@hK*+crRrj7H34oJ`MaE-8Ss{aDl4P zRaQ1rNj*7-DUzFYFLrW?0Xx`T>g7*?5yF>e9bG?wIS=XQ*qQ#%?2s`cEgy^QWDEV4 zy`Li*XbJJ$gJ|SW&c8cMR=r_ID1yPN_F%+_UNfln0*3<=nH1@eovaWSm#1+nb4xst zbqF{o^@tPy?R}Ki=#|em$GR?l=8uiKYR<>$c;sKF4$Q^Zwrh0ld%opHEOBWEm|^@? z;!G1ZIhN=K3!pm;XF-~39;u}7iL@OtUcY{LuvzqRBU{bueqkqHGpkm#M@1FZ|K

    nOpiHE(s|3bNvzTMlt7FvJ4 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

    L>CZ@l`WtEpaY2*;q9s_)jrG_cEAs$ZCi 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 z z>Y?pe#FgU@ZTba__nvvZ@+#LrIl6uB>+X{bnnaiQ7DpBX`$Vs?ev+$qa3fIPcW z?4z+*#kvP--!c(1;o7#~93`rHG*!bNDDYJh6W1K+J1+fv{T!dD3a!>?>iEOp0<7*( zhxZFxISO&xG^8TbP>{M(CHts>l-B(FV$b`qQ@Sck0#=(-0!dLOptj0rTlp}2ZmX#U z2ict>nDJxkOx~M$)R#Cdg=e295v1!uHAjr91*;!(DMj~Ibl2OfAFn%UO(xW=u#m~b zdIVKYw%zBMMCb=A88GP!$6H}W6QuGZF_)ZBH3z-DEE2S$`6arpBq#z=P%iu7WZxNa z=~-Le#Q1wm{U|h_JYwS@h7FrWkd$2sbg>OfT z3OA-g%xiwm!Uw~2+lw7YQ^Mm5m>qynXi-d%vdE`wza?rMg-j&nm6QnFn+jn2WMu-( zul5`A#NszssJ0Z}$-}A-XUz=TQUYc)$3UCuk)lG+N4frOR&S|<)KT*$<2>i|6_V?V zZn{yy#){IX?P!R$^(&!5eXyFByy-vu{;HWBOAR?pTDE+n3Tw zZId?C#dk1A;qs*2!f4y7ro_b+=?Pze`A$Zwh+(}z6LzA)Ar z5FBS+r`mGnl{Qcx$X5leKI6TNH2q~$wG&! zABGf!RdZS)|JX6osgLUZLw>@b(PD(z3e>PAA_XO0`mAnYmu_vW(Z=mr?v@Smc{i9) zMfA@c7-}S4`$`w66M$410NamCjpJ)a%H1Ks1TjB^|FalLFJ>ppN$mqoC2Q(ibC8$1U&n8014x_H_n++;7wKhL z_PlkVc3GPe|9W2~q^1-=uGdzn`Q%Gqa%aoR2vq6LgI=Bdf4J4+EG*06QQl0Y|qTAy6cIvc3?byjx<$X8+Zm{qXvuGdqF%#juEgu*~UOFk?k~tTm<}ApYZ*zgcBzod}VJb3MWFI=< z1TfRld4~(G)iz|dCJ!`75|*$X3N_7b%%1PVn$TR!$}r@=LK|5@ZQY4=T&#?a?rd9q zDRIu>^TX4Eb3cHsD$GnAr-2!nVNA{tifnyv>OXw-j1MSuzwreF#`3LN^iI0fcxv5w{AYS_UZ)Y zO#Yt50<`_dc_2XNx*FLUm1qLngE6RxKb$y=J(+FEjv6Xr2sOB8v0suuwC$3=GsEyp zoXd-df#hv9p%#9*=hEw9$P!J#Jb?y(a4_WyZo)`cd;B!Kf%>B)bTO59ZbswEoDfN!IS9ofzY^MvjlEQ<}b_uvwy0T^& zYhm!IvwMux5I*qVDf22ZI!~1$#fRnZ>^~)HuW`4K`R?ACr`GJkpW;Rs?Yj_2E!AE0 zxa!(0CgYoKj>S8{CgW;*w`9fP$Ybj?)cbA$|HO>8H(p&|hy2^SRFgXlZOhDA?n39_ zq=(@~R+@u_%lGG2M|aF?{E7W`q8cSj_-m_DoU6Wi1eQ`SaH3q8E%!{!>SL>|MJ!30 zXEiI86Ld;exlt*vc0Y72EFwsD7^wQYGYaN$_vUTf?V^{9(a!B(Lw^8+*Dgq2XQ@ee z-00`%!Mz>ZIKdiVU;mubn~4b5U(s2uUSh>a1_K@4S?31Z@aiupbjv?47{>{i)&0i7 zt#v%QS^^&$h3%%dddvk-S;!3@xchq{Tf%3h3~L5cj=oJB3Ua%&x;USyHk=bvGIC)C z%j;=Qih0|T$vc@c>3F*P*Nv78nZ%E{G+7;~XFa*7$4)&4%wQg+1oCdIsO7}nDx?wn zNvBz90_Za?N&$oR6%m2!$7u;c4!b1@pB@-a_=erpGVCbPmL4HxjLHb9)<)Jug(C?b zI}h#pX`Ssiq(T5(c$Ub$O78bWclxLm+i8`5p!X_H#&l*QSEu$-vmLaSe^@n8=jM?F z(lLV$9up>BrMQ_nnh3jMHgr%(EGe+~hc8=xg=RD!!dFq(z-RU(!#Q)1`&EYjs6sK4^mJ zm|jOLLkm6LjXu+7>OiLftVz@Zo`n$d8c6ju_UoNmC-DkmN_m9GK^se`d7!^0SYn5Aklz6)&iJacO4T=NoDaXcN z;Gge=VT}ZHr%0(s-wi!h=^!wl7=(y4=6-*@uaM>8b(ZdU_L&cfgPN@O!7q_HSRS`0 zxgAnYAJqxDKnZKfW*__)+&j(eY4vkKm`apz%ATb&RU5F`?6Y?q&y9pgjI5Vo^&6PY zm<|DZ4|@$Qp+EFmP*Z)A7}i#}bU~h&3Tcbj#4p+qV_p#6I6Y}RaC{5@?Y<(Ob&Cgj z&z7D{U15i}J+uY3CAp&0SzVC!%HO6kj12m7EoBaJ`SS`-Z*NVv=viCeSEo5V3e?xk ziLLbNK9wu`e!|o`FV++5+`>M24DO%;Txcb#zCjKRd&H6ynT^TJP5yx*s7f1bEAJP1 zNlo(p54U^j_Kvn1L4>{U@YWquiST3`*L$MlcSJ@yO-}0kjT0U=$LkN3w|9%h5XRy# zBjZ?*q+M$&kNu?j2z#;>zvBP6LXU$E{nx2Job6V7iT!g4baoK$d9N>YqE01NS+AuC zu(B<#d@wcikA27thSZu@*DsQ8`8H>0Fob;)9ts`pYU5Ic-aYlK`l5Ttx0&(Ny5pVp z)%nrlNZ)_@fQgg(+%}?T4ww?&)YzZyDA`dN=B1Q#bf+Fd_TV;X(1tJIGu_0co<0W! z=HZ7O7a+x@>6X-heiUrq0+W{?Lg{t$ociy8r%JsxrBs2q^}+)&RRVSYbtZqX#L-S% zg{`)ZVV1@!#(0;yh#6|dD04B#nM`c>|G*5d+Cd+ZBlKlffRUEfNbX;qr0+}kW$WhZqSRzu@*anR3V zv3WguRv`)HAEK4IiU*~|LdBs-bB-hKR!&~9sHAz91)=L-s|eizi_uWU`mdmq4z*Y~ zh(bz&P2CU!hN~jeICe@66@YoPgroJ7Ec#`qMyNlyan$#N?wkM`qPYat1nPtv2hzO% zX@fqK_%;KnoUy%yFG@dJdUh)17S3%Q*!%_?I_l&{5=FhY5FmbF25uUvtgwl3v)IC@ zry9y@*B6;xFpIoJg`Zl{Gd|^zBuZDwJO9;|xwNhf5n+^-G2OEY?=ha;g8A3b(8ajh za!qw)tah#*1s`qS9LDV8E;uE^3Vy2BJ+ac&8~uEW80SLF)72>w-n{>;72~xx2-aIa zYhCRjs5zqe_qKd#iYDY_997AS(iQUADZID@yBRG@%~iQ zN0$72VfTa68MeOpLUm7;CF-+1@;2#{{6aJb=|QUbRxTfdlE?EvE=cVS^(W*M_N>oN z&4-f+#Lw2ZH>Qn=H8!zebq z2G>mFp8{C4OgvlrFoIeEtSym;j=C*zhS^l+OpG8>m<34 zoz4OX0H<8LvyP9A%-D%6>E*kMNE26c7d{2ui-@iXl3 zXm)CPuDWS|WSeG}=;$I_anD@t>y*XLex3=N?FX)^y|enc1MhvwaYS*Aa5vZ8=)DZgdze6>x?XL&VzF6nG8W*i#v?1yT>wL*R zd+_6f+yaV`=x_jeA0D~tfD@8+a(Jp&xb(^8#>dL72CUo(*K(>Lw*~#$v zObD(HEPI@PoLbMHn{a7o83Ey#PQodny1AV*Ebj=rwI8TTT_i`NO5}h*F6rfe<)PwO$vC@$Ad?ugpzeCRTm4B*mf`jS=xhN2P zw_9^NyDgbI-Za$8T?nvbaclker#UH-p8M#{DpxM|eVU(N=*H9*dS<;mr5ak+r0!`G zGPQEt2|B_$Gmapp@APCkUEpTZN~GG}geo;L>_EFI#vHXYi+0~Bb<4bk#0Q^+Jtaq% z)QC9DzQ$$t`w8JDrNfybXLt36Q2C#?k}IBfr2`FA7wp-MS+v+bq^Rzwb*^Y30%ylN=>6M6Vd%MhhHlec=zj?qC@pVEf&CEOfEq zftM3&&N77nMOl07XJZI)#9ei@M&M)|mh^fEA<#^!QNr4Pm2_T>1jbO#`jFk&h`pO1 zZrrZvvzoWljc9N0INi*V{T3>tMZQth6GJq3kD+pQC~vB7BdWh>l?HA?MdwNeoZsA zrnhOI;|ogqJ4CsXs#CclZ=gZt{<`L16BN>~&{j5FB}l1jJ4c6GId|&C>=XkWH?jK{ zcS?t$94*Qe?1^c$pHs5s5)suoS7A)MZAmFar(>P(BnT#qCS}uNKR*4tmFcKyFvR@$ zih!E!ed8m-yA)2+L}^Ma$ZMz5*ziOKAaj)0bIW&1)w-$~TYO!-)BEz3_OzfHFgG#D zf@L?lvwY!974}fdikBUUl)SlmXt*0Tu0c^TB$4>&b(eFOO}gUt&YAm!Ji#~pu3NsQ zL+O1BQtr`(0IRt0jQg7ALy+`dNyz99M$AV;RvGkblp-BtQu`vlX!#eUH!Z02XjCpg zg2?c&Akv%m3JC9l+7{iPKq)>#ZavFNoveiz%oz*e;o~b!P0mgqJo%VWGdsSYgSDcC zUJ9x&8&y^gp8iIta0_UD2)(TUu-RAy+lyzH`QANYg0%qpnL#X2k#z1gZR?-G%0*Ho zd$%7-qBQ8x#p_x0Jsw@RmziluNENBO>lK2*-w=wdr$T_@rVC*RBh4gmX{MVlto4r zyxqrYrY^#_{+fca?q*WGKOJ4;qdcsz9GP((IOsUS*vxS>BTCD-4zhK7fV1b6F#j0~ zY~7;}2bUoW5E>On-3A&!aZ?;;l)%%SJn0`=&SPOxPkZPz2A(jDFW5>3SdEgmhshVq z-HM~ugdIm$FgDPvY236J;9bWdBJ$q+TMtCvcSEoXJtZF6hL*rPdoOO#4&pJ4U$z+iu z_*ts4w~~6*_PZW~x%`TdqxgP3OM$x*vh{M#UmQDI1?hxkiR(K^Z4~%9xen7mOYK%q zT-9hS)xqfSxuglI4FfWlLB#V+T3m5+e^SKd#e6fJJV3*LPMp}{ zXfIR}QcPYP39RTnpuy-r`MTyyp2{%Z;vedpJxL~C5>jw3)F*aldO1O?>sz3XY`A29 zt+T-atxm)rEEXDnzi1PaW^;vC7I{(1?FjrBHFdY#CXTMS@W)&-`oeGO$I?cddm+tK z>Nicnw6nqPli4wQNM+kT&zG%Xo>p;P8~Pe*+YHM_YkVB!s}dITaORB`pW2JYUBw&w z1feSikn>X<&(7$3tIA?)`sQ}6sl{Wpjy+u`m(@0-b$h6#`8gR2LQBqNYAI(tnwNFm z<>FC>)j}#hj6wt$fdDfm(M4W`|WTsn{VgLjwy-ee@n0 zk!`#3HvOU_{FJ9g7&P}N&7sbg{3%3)bY4sP?bRY+&&3@R<(~f{4;s3hD2P8OyuR;a z-TdqA(xgQCp;dmrdkIBxMX}53bSsE$v7Leq;QkR-^YU!^GY{lb9rXbPT{6Tt3_vV0 z!%#!UsOYzxv(~kb`Gc6I)41D@i_FGu63y)B-Rnb+a?vVmr#EQ{@$*8ar1wOpu@`xk z0|Qe6)|FR|Gh<$<^(p-%1)|zav8PDp8KKKtWh#M^Lu*&9MtiIS(h@9Nse}OxG=<=X z5c`ah^z8rS!#@cKSy$~SVfAH(GPPH>DE^@iDp5dcrHZFEAdM3>KPBMEETPq zFrt(9KM{*%52i#eN~r_PKW0FOVDLYV%j^ruHVC?!Cb6YN?%%-+HzF?Z@NN<8*P^I6 z&0O8G49;R(BUwC?%EUQ8jLBpf${x1ITKz&=`a54ACHlfU5jZ1KZ?=haBi-ccg#Bkv zu)^a9J@PkLHPb2c!uv1iUL;NBHs#F+)U~<$Z|_%OAU%)YnkJ*00RT)ob@G>`)YdkJ)vF=YbIkA(XacK!Fd`{E`)AFFjAm5{ zlD_8t@6en#?R1sM?u%4~{~bD`xJdnKSB;kS29%f8@la2L>P zfG}*jQ51ndf9)c6)qIs-$r><`d>y~{Ho6xRf{=d^FEUd!XEmFhbtWyS>}VXzaJG%_ zB=vge4$|!UK%2;!KF;q>AuEf{W%0@EUiDR_=6O?i)+;NQzxHCnKr~N9Q8u7T!)jb{xUhHW zIKS}6o=1j~mW`};P|G>S_HflI8L^gtsNjFZQG>$=S=3xF=$U16OUG`h8B z*t}a+mqCddec^UF%6#9*g-fDDs(kllo|POWFExOT{*40Vj7O`aym_{=L+Ywt}CVD*6+qNfUNS7G?hfn z_mAFQi(+x&2Q16e&}?6y84M9xBFFO_dkI6jevZl1&{UUA=E6`(ok>-eLK&R+#o5m6 zQukQiF-idq9Wb#ze^dZakM`P4U3vSS8yT(JKf>SS>^-fLG&=BkmZHH`^btBf)avoj zD62`+Pneo$Qz_qH(aJZtnPg1i9;zT#?d@08^=O(oq(6-<&L7W9x!~sWxkegsTIoRk z#LY?eUE%&g$=9CIyn6$UZl2(SWL0mteY6l)?Lj@m3OCxii?!H?BQX>I$_7 z0V!0B+bTg~d3TRz)}HIXY&<;K`xP7QXe@pw;oL;+Cr58rL>idc#g4~29>}_oq$|oY zoGho3tXiuJKD_BM{Lh)xxS72hUgnN^>hK1l_f%C4>NxY!fgR!17M-flHs5DDJ)8Z2 z27};Vadyzl9oqD2z2~cZGfvD;UXv`(H#%#&UMH8qdKnxe-6H4!(3kl>w>K!QbTvZW z!&L+e%M1uxn)xs(8 zyEUM(>|7W)2!krTfWG9r-!H0vAvrphLjcGFrY!Th7vF* z3Z%j-a7Z;>N-s;kUANO@8})8tp)oU|q3JFx?>qOxSo>Ch85d5E?!Sw>1ytcp2mIm%a0Np({b{?B zrg^enrkv%}B|6`U$#>SP-y0Rc>~pZ%zagPRDV*ke&Ye-CL+o#t{^TSPU7Wht9kry! zPXYbxQgUW6?HXq~Iq>3qt;25-XMUBA!~|;%6}UFu^Au z!Xqg6)`-?nEvka=J-)t4OwjxGSfuN#h_qO0USjU~^Q<+XYtm{pD84?LMJ71*JhtHC zKZDU*sEdvRoA95}(f52EA{Icsu!8icY^W;AzUJT)J`!+B1}IoXK$ClK&aJE9n`oR9 zo`5P-s{~V59N^{Y7t0)L_nDFP1Z{FPPaB+uy4{rVpXfWy49=0VzzN^mv?iE72m|}3 zl+j@^PMYxgkjUdnH(j~!{E^>g97ngnJbvd3w_Z$im7s;2`a?hRJNC?Wh);s=FUz-U=J$MN)@D{u3c_X@Kt9ybuZ31BL)-iF zh0Vt(vI-J@q0miymLFfwZ=jX7gUoxgq~?bFOHDZGa)@sYghO@sZ)ZfDXutRVcBkxfZS*kUBn!2-W_dN%picxvDZL))=kh3$bUxT-VgwDtse0-8=Y3&Xa zbpubh2Rg5NLDqVJN@Hz?TiUym_R{i)OV#EpKCNw6Xmc05HsshJn?4%;m_Mjk8YWg; z@=$B=(U2@5b@<;^O{Gajk@_`6)DVh=i|!e_YWE;5 zNkh_psuUG52qJ0~-e)~|dKK*Dn0SB2c&MCr?C+pNTM_KUc7^eO5h7PxT%x@7hxDjo z>nZ(Lpj!|4K%YTgRu-vAq<=&&RoOD~ze>-StUhUxd!L zw2R>%ez*>Sd$dR`IyoF-M~4I4)LiCxwY#-EJ7M*R_#QdhRIz+F`I5Zqch$vaOt z4XyY3or4;!QttTb+r(ns=`Q)p%B`vl7fulS%(${>SZiB@(HT=h+>w(|3<1aXyIGtsxL*xWrKi9Z?>NsL!(O8wq=B2mI&|*6i%*ZCqSp^- z%m_`Aa1U}tq(yV@T@db-TcK14Y=F9?u){k&zeo1bRQcO~dB!CYbZhpU4VA2r&rYp( z6@7sN@_Q=FAc{Icof^rV_x3|fc)dVvK%!)PJco=h|2xFEyqyl1;tnur8q){OOTSj1 z9ozliq1*b1!VLfb{D(x5)puC2id^f8;ArMM|BKk>0T#>+-DS0XQj^jZXB%mGR@It% z>XKQ8Z0*BI#}qm>e+WWQQ%%5lAIMrGZKRPAW_y;uKHQFaP`{=j`E5DVTG&BpxH-@K z0DHR+IDhOl5C*cweWV|kf2^!(^H_|rBoNT+l56nZ2zM9K=q8=Jw0tR2NX1^fMC9Hi z$3SkU!b{Wcy<(r`QpYA)iK}njl*g~kr*FxJujV@B0T0-*z_7z>0jB$!TqX2;Evam% zj*Wm4is+hSX_)NTXZ<=TlN^@r(g?M-h63Q{WWzPp9kxO&JM7|KY7_~T(UgS@#Dgfsxga(Sz-0A*yK&jNd`J; zYl{<4w2qO4>_*M++!t0=vYU1`9Y#@yn#>lu^&o!)tNTAuu1wR1C^FJfBFB1@_$s%e~7{uH%alP=zKO4QB$meIR?}KC-!oQc*yn(1oY1HmUSeZ1R^aSQX-|;1)Y^1l}!p7j5bk&BK)Q5Km zjo674&z6t70VeB{b4-o5OO%s=Bz|5U4%=fYB|fs9l`@>v0z5Ev?9qEQr&py*3fsE> zs!*DRL`JC}>-+yaVXU_8=2Wcjtm(cA(t?a#rBLEd%mr|=ZOx?S8_f*zZ+7hkWLZ{< zb%eHshKXR{+AuMz&2_SUciJ@v`_+;gQqF$NZ?8N0L&!7G5ki^bCguF{2OR<%iPSP zoJH?lm#Y2Ix}66-8{u-0qI`H@`D)x?v>bV;VT3H9r;f>jzRIz2`XEx+O>}Cnikyw+ zA`D#1BaRDueG`p5CXS-TS{I7X5^+$^zm#i{Qt%sF%rU*?>KBO}Hly<{Bp?k&K3#bh@@q{|2Vwt*p>N!1(%2W5e@AhYAmCb-2JY4k z30_L;6`BE9a@xQ4=O!O(nNBnM^{ks_*t+DcqPT%9;X58V#VJ_V;xU5-z@d2x(Dt7D z(O)<~B@yzpnn>M|{AmdZ$IGBe1j4d99*?4qfR5Ey^z{RsLyspjkLmD9k!zApC+>Rv z%yQm<&-h;(ba5wso)33Ce07l>Atnm_?0A5!kTc;oo0`p@27dg_+OpxAbVK-cU}N@0 zg@f0%zzxAkqoCG3$P=qiX3w^}a2w~&?eJ8zc!Ct8IAJikc%mjBc(gyMc7o%0*mJN> zZyS^CWXrGSoB^aE$l_J{Q+a!4#);K|9>^D8G{vx2Lh zKIiQ7^T=N9=dOx(_|C?Gu{4gXTWA;<-sp`z^^GmyHE{l*bbw{|G2%dOVVYfM;kW%b zGNos5yF!KQB?<8W6q)49d|mRDN};Of8YAyre8ro2K#RVB)2#N>39pcCWU9_P0oO*` zUz(|Y6w5BVG^1;t4&{I;Tp$OeR`fgAPxtFX|b2-G9!2Sw912GR9@8=~bY-c;Mypr-D z#iL{F6wglg?kCWgt(>lmemTb%bo}tXzUT27V|dQF*wLPpFlLmw?T9j|cPGBsh30Ik zCfUxi|4SNafqBOrC0X2XyD0CNyF^kb<0)f-CEyvLJF|kA_-luJwjy|YE3!hcT)M|<9K$cXGD{uZ5H2i?rpxF3@Wxu$nCe+_H9Nd zO`M7Bg`9cHRpaRRF({q)b`T)$)&7993O46Qx6F?xJ>5mP=4(e zCPSHs;R_$jZ_C$oJwkLfEp+#fN4Rx3tvC!ZpLcoZXZhdzaNO!~4f?r7Z@NJwPXPY2bN0PVHCRs|%69_U0G{gagX zTd8t9q6m{+U+i#+G35^L&{J>Qb=^q|UVrnAY1C_6lmJD7Se&i^m*{1{^S+Z8nfSQe z`pQ7t=I?h<5Ub|)({s%(PEwY4o3io#qK4TQw=q^XiQK4ELfTCE4f^g^tH_? z3}d@fWK&BZt;z=|#-P01kGmZq)n#R+O6^Bd+K+w$u^nr|_Q?OR3P0tU^h%&qnBw%` z=d+p|l;qODWILX?%6h;2p2^D&7c{e>!zS!E6&_!84jLYkfb-6>k8rV5YbN2LU66LC zi*sGH=&-nIf55$BLpnrn!o@9Le-lk~GMG-!jQF)?C;h26V$Ybcot`rmw-pO0O zDrPI>bXTqb_4`-CgKXHX(V{rE{TsslQPAQ&(q9{OOx#X(A&%{D2R=bK6>gj!4cjhH zVYB|;=Jpr`)Be8g8NTebS#|}GHSCt0(7hi~dwwFK9^jl`W9^xrxDrXFc|$#SPj$@Y zIc=i%0w8Y=!XakG&$5Jtjn$*{vvX=r7Mxa7g;h4P^R(s;0RGd|DS+-qsH#lTQ> zK9GWBju@82uB=>IPpuxHp56bjQC+pvk9A8Bt2EzrZchC%xoaY;+!J4+zH3zH5=d+@ z5cQMRhor11U?xjKIjQw>|8m!+g2oLmo9AG(j{80-G0Gsgd<{W6GqtcZ|FK6)Ak2tOPB&a*1`SP@thK z9<^^F`+m8nDU zM~@aUs1NNZl0ewNVMCF;nW6pNzr0lv_{3du!RBiSHF%SQ-C{P_k!o)Zh*D}zDYyA} z8k>xxO*iMFw7%m-7jJOLhYWzdGyDpbUF$jHwU?~gCea!Tr#MQZPX zGIXF$tP}qYMn(CGzOs@lGMC-?a*y`=n&#%ZT3Ur%|3&pAO zZW8Jnl8}0COy8C+@O`R|(RXpdnAAL32EEYQab>0Nf5D^u z9eBElY1=Q!Z~HODFhWT63`soY+=J7yxhmr-oqy9yu&)7+1Z%%Zniyl#+Xs49?~zH7yYr8Z4Xsi;>=v5h$S3x`b&OZzseEWElgrZ zw7)=k>{0K(EVfv<{cbcK|2Yox6Kba%fT6?4LdwIlnp7@9=V8QONmU`i~BJ^)jd|FhzOqHbvsd0N}>< z?>r-p!}kA!&G~xn@RZdzJ7xm%cIs3W<=)6Q&1>&TwalN_dRC_{>Hll@ZFLHo;1YEr zej1fsLNytYd_w1kSegI3o$sPNpTz*kyAt_!&25BnDRE`AV%z>)iIt1SzhAugc`WJS zN~*cIA?>nCaylEhr2bx7iSR382r4y`lBPW#M~tBCc=@cD_TaI2se?PO(?~TZhgt^X$+*|cH-2Ix z0?^Cpp2JW6qrqE#dODoLJDG||As+^yKdpfz;|~HYUFlqly>mxavqH^kwd)?b3>+-?!F1ip3gbkUmzYHh>V5hqP)V0M2i3;VZ+ zc0&3qu^DoVTUvKv=PjCVG}f(CxH};jP}3}f7$weE6`03U|V}VixTr~Huo;} zw6J{~tECGq=KessY_H2ii>pEN`2Ii)sv*kadOiugaJ@Vel_$gxq1lyp;)_mFukz8C z_*QW%Sl2osWtGR^!CqxPu_jTd4J&xBP;NJoC*6=3H2GGoab&Ug^vLWr#;j^QdfL3; zxJR<3wO4#r(W_sTC8c)|+xfRct1#}xYeEBPzc}Q|i)YS>c5nZ&>)JSGK_zV#Q}#tRz2>cCe`R8l!HbdzP2^XkXeAwCh;`*n_1~>|u#o?mZ+O6kIwtw* zeKMU(zSz^MUYBoh(WY)ar|H*j{JsXX9jVo8;tv$n#Ok6RYQO39SXarqHG0RZhDJUI z3DMpAAe_wy1JyXV7Z-i~5pohTerC8`HQj0LA|gI-Zr0%?W3;C$y!=f&z}rgvhnnaf z;fqvl7*_He&RSx2vwu=QQuH8w%{^P?k!_%n{$C?YJ!+i%-mBG|oa!dcqpF61;{rR; zh8Sl@!_OnX2ig+l=oWbuT}WfB0pw^p<{qn$KSJ~!htsD%UK3e!%C3yga?!l*pheoG z5J_E3tcY4WsEIfG+|f9{rmMNuF(_LTC(`1`_L?Mta4|rM)nT})zxdz-#lB$9lq)r{ z@Z*7@D9uMGXT93X>U;@8F21;=_8gZ|B4zOH1BlD<8oy5IF#zM3rVoy0c$~zFyneJd z=%RDq2;-t;YZ0dsBvY^^P+<&nymC^=8IlX|IFzriN#6RBu&NtbWvPbtY~)^$GyTtb z2}NN$kQ(k-N~7Di9tY>4goEVWJX$XHeASvd>u5d`eL)VGUd>14ToFs-NK~3efP%Jp(k z-+|?7g_)y|ZT^NNR{z^@ce8lP;fCXqwV`~|i^jL37iVnRRQ4e4ro=m27zg{N!-}}C zcpH8TqRqKn#p#n}bTfjtsBV|#=kB9rWcK($;r^-h&fV6C zqXz@eSA6r#jT#T?xr?b$zRyt70ZNFpKN=%z24COK5V8!yWRWBT!abn zVTD09Qp9{p&wXD*?Kwr580QyMoS~HicyWBhN8O$(6B6=SzJ>Y6PRk_1{*4H6Dl36S z<6_MT_DgKdLY)w;idjsh>T0ixa)p*9+fV;&MQcRw?dWQ|;?bTWWA4N2ZxB~Ug$Fh9 zJzec57Fic4;!g%i%BCW{J*By!VZD7v2w~+aEEX-N+4?pLsfX0j&C=VcaD#Su!yLyH z;z;l&t!RY{wzE?@-sw5366$pbp|hd<-JPxXh6x?iD2C;Ii%w&2aT+OVWGcqgiTd zqum)-a|U{^KMr0MVC+!`xH4Y>TJ)v*m3b^KKy;x(L25%cW2MKqeg&k?Otz%(fhWGP zBa_Y63;uxizy${pX(6#g4NtWDZ0c7jjr*zqhjGBUZ`=siRaLuub~nf7aMxl!V`So+ z*p2cnjF{-u(&PC&h3rZ<=)LOUIdiMe+mBqN=KCOjLK8D&OaSV;6*29csiAB|sm1 zags>Oq^GU%r{Ub~0UmWT9Fizz{MC zO&+b8at4k)g8koh`%a4adykhPHx7qYWur^eK}Jro=^lPg``Havq4#Kg@N134C=<1E zyR}Qd|nQE6bG%BgdosO57(`xbhq1~^T( zz2Ph!f?9H2xuIiT7FH^+_462)UYgf-r!@2$Fx~`qlmr)qMqH>Eb z3p{pA7m9P`2Rb9$Q+SNZLxtZCy~_kIE^DoqhqA@AFGzZs*IAB{hL-yG){YwxH4=2u z8xdbINc}ZF^7I<9jONuOB?o9?XlqFrCrn7#p3QDVVJW>XOlo`znkQd{DKPMzO6o6I zFX@-9?_*xy|N87f$h4$+C8=TCw|&q9KOJsyh0AP022uoCN`ydf223=_X@Pje%>Fm_B+M0UL|e zTbUJ-3rFM<`U^4iXREv;Vh(o<*KTM2OOW~ebI&4FmfF75&xceH?sC3!5#XIE`yTb+ zI8htvo{kG*Rf z68QAuTCS%@A8jh&h>Ah^t;?460RXUPjsGW-rUYoX#dp|A_5*D-h^q_fwk^yTP4QhZ z-w@E5Rj}uczae5VXCQw-9^2)7QrT|72RyKH?KkuZ-2sNim?UucjuGC+#`nP43uhD4 zlOcOmQ;`zZH2g5(j4^!j+@MN0hwGMNz|j_UGD5Eav4#`*z45?M}<+Qjjep8=7A zGP~Re87BO#4<)7QG@{-lMd-cEjUv5f3S@}-Z!&+9MPAN~eeU>}x$!S21yp6x6`;GN zz#kXax_T+4H?)QNh&kcF-x5b&21k9+#Bbbl(ldwEo}^NQluOu4FRLbd?B4~Vyv?+x zfs-G1i1Ur{MHfBysaes}(#RrB10N=vzs?)6{!3n3NBi?sZ3Uv(F~DZrxI*5&!`Nir z$+Vsn?J&W*-}-8s_#BHNpU-m~Z|4ZJ>~_}4?9er3si$|}J`@(a9fpA#UxcLsCLlyK zs6#B#{U?LL961FMf{-*J)zg_toYO3*+54Qnu2z{zh+yaoR+)P|uE5@;KFR1jscy!R(KSha%`T`FofZ|gO?ox;hM2-(KVnW+ zubsJtew|c^vFCb%M^CA@o*AsW*WtwtD~?9W(cO$CT{ENLdOMjg2Q&vipp$uKuzR1 z*M2#FOJbNK=Mo51R-baLzAVPFNe0CORf|wN#fqO*V{fF?&Kw)*v*f^S$s`0GA!QwY zrTgI)=Nvo;W0Tcay0Ci>A2rm5eWoJ+HlfF|le>en=5t*^Y&>3n#?tZqlXf;kx!8HHW!hO%Ka ziBHD3lh>9x&tU^XxX0YChb=wU5hF#qkq(OMgV92Lu}DQ_QqLngbKHn@4uv#|5=()+ zCauyLkO2UegWK0{;bjt$MoUJYQX+8`YoTHrXJ4Sk0d!PkXWdzZxl!{$&reR;pCF^G zz|w$zXFu3_;rA++OM!R3F~OGF#sNO-Qg45ejpXfv+P`qEdrKiZMVs6A z*$)psk?T|ap!Ik4CN=7%3Y)3mIb`JD+9sdiaL3-Lzm{W4-v1oE1rdnS!8qIYD2e11 z$`ktK$5SsqX4U;5uqFOlZ?HXJxBH~Not??se2^BzQr?7)S0qDhMOqy$si!;CD}~-UM7h$#iOTDh>I7eEZJ%WGQtr~bPHFEpW{(c ziJD%A=*zkxk~Ef@*u4mc+>yD=I4N_LPK_|tD*Jc!)LzF_(G1s|5y_^`cU1gRGS#qj zasU&!H0SnfqCuvx{yWAl{`>j0OQNd|Dnb$F5wxWg^_LUce#bWVO)fB%!3U=@H#Bsv zLvqe&D!%urx3XVNcE_e6#Bmn^|jjoLna>gjNk6=zpa;e z{P`~r!>nhVYqYo_ki>-q=&V@azT4YB(6*isBL29*P+=NjwaT-w+ z``o5z_2D{)LkwzT;2lCK0`v_gIvoev$y%GLvl_b$P}v};X_Rg%!lz?{EWU%XeH@a3dgG?Rn z(%QnP@ojf!SOm|v3DloG89!HIU@=qBoM7U`xjkQdYI@3eWWS5~DcLg3NJttrJqKlc z;7ui2Z}_mZ^6yOPms|Nf;9XNLU}is#{qM^SEuz_(XkML=x4h8A%h4 z4PR9mF2}kq={cGR;}ZnRQ2))RG-<96s&nQDHgq7l{AVUM!*wo+hx-!5OoTT?5-(_? zw$P$8FffJi+Wk&nY%`cupaXsEMTf-UANUR>e@tdh$Q|eB(yHM+P))@RNNgE9@H1{L zFkZEUrozWNwD@<_M0%1s@DX6z%(uOaThp-I(+5$+fnC!_rK!4dLxWtG=V9da@;wE? z#9aLnePqCx?T5tp&>R)=(b{F2aEeL?Pj|zsKEpM6O$usyD?cAR=(?F7K4TLyGZ2!o z+p?N$#r{Y03_=}DZBKp_iM%_xY|sTcDUS1-E8fI>m*3zoI(zQ@=(>q#G0xv_#_Sg* z`$-6ZDi?YwdfD@6q_~pw=#G4f_kSXr9g!(dFfrS!B(D2**&6=y{B{D;4Bu$-Dv&L)LFmr=H>Fzw~f}RlB zyh|q*ZHuDq;F^cJlg<~W1>c@l?C^E7+eBU+AL!lT35^9=`qF%|Dw7HtC+4-;IwrB^ zHkKrzwY8&Cj`ht47m7VW422->7mv-XgHKDpAnnV`aB#3ZD_-s*DW>I*%S9c5Jx8XH zA!ZIwhXV1#y)|8*S?cIYR^$5MxrU^%fIELp)3z_Qamhz71OH^q)W(f)W*o`QTjrR7 zWIU39-6N0FJ3r~jLc~liZAsOdeUxL>E@QN|^W$R;l%$Kr)&wu7@=gs{J*7`JTUh*K zt$E!T_VT=VwyrUe7<8>V!pVZf5qVs=^c`wDWH?oHan~~dQ>>*E&hhR}GLKei`Wa2g zt)mZJZT#6A<1*!MfC{6g@)VIeAq#>^99}WjAI@{2B3xME=y3>H8V$WUASC&EFwZ^u zkQU2-y-%IP zE(K^qi+zj|a?oGiJ?dZ5pblS;UO^&=PkzW_Sqv)@$0w2 z=Y>NOGHvwf-CeK;^eue|WQQzaLhU?M<-*rcDXPwSL2JJZ%j;X*g`W$EU-xth|wFQ{^(gY+M-Poq1D_ zE0iFq6niWiO!L5?Qw1l_@09y{Dl*=j!XUj$kvh+mfWb;4bLR&Fch*@L+Q!TI_HRK z(Hkw0nw%#z;G0!i>t&f}(>m`C-G^4g*ot>wG;E&V5&;jVHSC7(rFO*J0$A02kAE!d z2F(g~g-0A4{sJC0{4W8WYZ;b~_)$31a##o*l9nAAwElGCzkk`aBK8lJexN7^WA{dj zsm})-rgtx^^gbEALH$)vZ4r zI~jM{^PuE&tTD5lybF%)7LVPnG$h`m;IjFdn7g~3FaM9CGjU}4|KoVy?nC63GYPqE zlADSsW{#P;#d3>=nOnyw$Epu&-?Xy zJ|B-X1oO;)$4*hYPTRPchgk)-W;pb-C$K37i}v3a_l+O=wz$^t1k)p;@19272ZVZ^ ztfA>%Nc?-dqX6b6=iQ!AF85NUOM@~pgc5#7*6cBdND+m~+TY3o z<(p@R5eM=_p9x=BOdkY3d#rIrIK!E!c(pgfH-OWB(%38d6_+DFY*O*dYqNp9K~6tn z{&&oHi+mII^}l1#L$Q^Op~NH3z8$*RSg)f|owdvH#(D1FQ~P?LSHMH9*~#%BxXo!? zh)>dH+#)YSL0eDzn{7&t9ydvd1v+I4- zSZd9oc-8|Tr(U=HCBjlKTQL28?*7#DsPd%9^LuF6Vwq$(Tj z&ed1l%?NG{w{~O*iN%AsKoQBch$@=2JHOyZ1Y5X5;<1U-fF42%Jv@sujlcJf5RUo& zV?19|{KKBrAcs(%bMV=N8Z_WZHwu!IWzK~X8d<7Uit#F|8&_IUdFYa|M zeVEXZw|&X1RYignL`I$rbosl6&zllAkE^(+J}|WV{IwOvmecQe0!L2S%K|vehfPIc zrr51D4J+KfQ#%$3KX3#-7F_f3EBYsUHk0+x@W%qSz$=!i*)p6+P8AQ8|s&9 z)DOoRL6+@XT}uv?e_}6BXBw7EI3lgp-)l(R{)O7Be)M5oV#Oc(ZoG-I*U;J=dVLTT z%{~c{yP0kjkZ84x()f_a;dx0Tm#xa@N~2^>`Y-j}x=4D3A%H9Qt3!#cO>dv#zN_Ls zTOvdi&q!d#7hU(@Y^}l$G75NJDBQF=x4c7hee-{#tebd~1v6PL@ zFnS=Rae-8|ra9f}SMR@@o#uKgp?r+*gPhEVjg=GK5x)Xi8lx239h%s;+vbUG;Ep@* zDjAN^xXXr1$$s$>8$Yc0mE$6l(RyY@N%K%|!Yy@Nt2LQ_jp^e}-=;s5_U@9t7hVLZ zI+i?dQbpFaXcVCj62J;OT zcMZAQUpvoqi-5S|bcDKzj9erTxB>-6#L4D9a)FtYYtGQV2rdyqx)ViTEJmbh7Zm4Q zSWPgPqmh=m(~2~>qO`GYYI6+8lk^BB+5zZIa~GAbOVJ^4v`&uQ8P0&OEL&1$PN<|& z62r`Yu*D&@`-oFvW48f2B{wIYqJ%dvtXMtHSqx(@tI;c<+a+u5?)y7=bZX=hzv(wj zo@%Sud0O3Yolm;8b~Y)(CkQzbLBDA*;K>TaCq*dwERZxa|)beyu2ZY|&a$I2ZhO zZd!CC+FqBTrZDAOISQ+S$Cl$Lbuy_*Ep`(emGMxMdkdH3>$*RK0&a3<+RZSDeXtzN z>PSx0)leS1)4(&_b@{7UXN~r@IRCLvIg47s@DTjjO%Ff*3dC04(>X#(Q9`s`J>TE@ zCi~Wz9RDPEX9)R5q&(sHwf4yaia@=F>d}?3uiMEaM7F&?`RwIT7t0zbQgHuLP>l)w z(Se!72HDM=#I!DO^HK$(snan;o+hwf#)n|$!}R4Dp+pQEoqA|ZdSl6Yumb*@?0v6Z zSTgv!>Kb7*RKLJ6)MZEsa$pGnpypiq3cO(e>_ZeS>^%W>JsaxOw)&BQaLSUs zKTdYsz8X?wxRG{;kem#Kx?BR`KUB`MuIm^~{wju)=Kom_84wb*!b;Uk`iH@d# zBF`>T0~Gp?M3VTgK$@=&O4j_P^vog{j=K(PffgNT%@*Ka#&Nb_;&u`$S+OeRH`b;K zU;3rR-Y{+La1&wqUgW8GeiA@*f9T09aiiPfw-rG#rk84)92a~38ApcV@Aog;S|`;z znVP#MR8MU3*FjYgye)lmmN89bN)iIBSViSrrx(4>X=2&pVKKXDES#I9+!d!N9ozZt zroIbn_;(`(2=Qum_`)i(+dIcaQ3Bf&d z9-gV_&3Wd90P8{019EjOnN?R6>y($xX?J=8s}X)bNsk+jyspjh{jlj5PJ3OcJj$t! zUP&Se(uTJMK6x%$2I4m*%lZD+$r)$Q7p$u4WZy_K87zBovz+A2R#Hyq>z{Y8+z7jM zKA}}i))e=*(zdMQ?8bsSHh}m~b=AfM@rTH#g3g?)(EgSkncgu<2#FOY{0ZDjAFlvg zV*QP*b(d#)$ownTeKp!UoM#dh(jeZef3zvQT!d@pOl?UrN9wFSg#?2iMO2a)DdU7; zf#i&{J$&;eGTGA7r>tsYGgd{)6N(U84Mq6tC6wDIxg~Ro;NY49s5{?x=*P-dm=3-( z7RNM){F66RT^WRQWw}}Lt_Z|`gVSM=CQGCJ+HHpw{L7x)9CQj(IE&SJiBq7xlGqCv zFZ@#SG*77}ROz-pXsDLr_!L2Uk_tV4!|qd;v__`{E^1BDnNPdnvm3KvpYmuiVN>U+ zDm0^gAmJNNiAzo1Grg-~D&YA)G9uMwgUk1L%WjXce4Tnc4G_-hb{K0v~*>^f}c=cb zs*+%+TDP}vD+PRYY5DbIiI^d0{B~~bIslggEYvQGyN4|s8bL0|I4`C^ukLaQ(kpFReVN!V{URV;z2UDuAikmv z4KUCCGKZ;~jFga12l!{GL3A(OcgRayyfETuF=eE_JSmYob3cds?EIyh;=Rg<9n7Yn z31>#fe|ue+A2A4I#rxu$W@n09;B2lF9+YN=$Q$#^u5>m@aY(4d|H0V&5v5LqVg})^p7Cy)Xf9<2P$QDsaQ4VcD27xcSjUG945l>U>}x1W8l9gPOsDFo zpP|I2AiXx6oq6<|;nb+N`VG$}l4iqR1o@=+udS(x&T%N40pEOV*jzK!b=z$=70FFA z$ZVykrdMy%Ab2-hvC6J~n~j3@)cRAma+UTLhNp%gh`V!HFNcm+mHU zhT#qJ8$p=*uNKUGQVrM8k52PH4OL z4&iyE+Vjq#Ufqd^g+uc?F--IpVaAB{o4pR~AL^VI=Oit67SrHK0o@ux^>N;=5zjk! zFiXh~;=CQ<4(K}1z!=)QhM5aZYk;4)4h`i3ceZ5l#5%t+pX4ZjS<%X0hK{!q>wHL2 zCv#n#T*NT`J60}^IM2fgJ5^ZxckEoDscDSr&q7m#YycF zF&a@F@7#?s;{b&ZF9)(%2d2!`@_+5M$1+|bxjYbC>#7d^zWLd7IU6;mjkteYj^rAZ zF5{{{Ll!*LvdvvgMc)vEhhAC4I@{K->pCXAY{zyx#}B znfmw)=gp*AGp1q2`FouVjQSV+wv62dd9@{Zx!rBy{f9Yyv$*9u&ktx{e{LIFY6?a< zj~U<`&+v@aeOQ+K(npHdXbVE<;F3aO)mZmUJhwRyH;kv{oUSJ&1capUYan%yGJ3H+Bl3TyIi59R1~^p4Q~d$36?HT@l6wJLP|q z3P>=&q@6t`UVAmkH4e1sf?F-!f+~I=|0Do#mY8 zBEs@g=~{R066);l_5dbA0{X}`ip}R0cV7IkcE}BlSi?w%an{J0_r#W(_R7g!4i5>I z0s#NZcQD91NiTnwwVr$I+KA z1H!anzROpBt~ih1?fL!AJ2_&zDg5N~{mfWr$4sZ_7|LJrMX1RD-NoPQ`Nl84=%~CE zrHX(C(fT!Aj_XBD@L0z>C)BG3A7PwP?yb!0yH^91xHDLyn=kzJCF+95!)^vIS9Rbd z-PYJ?L(`-xQ(;{^3OCnehx5rjaMfGmV-ePs#9xLSX&P29C|)D;UT2@Wt_g8E4sZV) zz&;}e&F-ofq-@dkun&E@CA~$MbOq#f#p8EH&rXM?{Ck5EEWtPIwRrn6qAo+8Lexq# zQ)#YB5|gvQNpM0S{cDttt#y;&)kx`=%MqHP8Q(k5;10X3-wX-q*dtH9E~+$%Lw>$u zNGGX>^p@4Ga=YK_7(?jB6N?T1?PTg>z6kUt zpjToshFqR%`zl}NqPeU)U#pf1N5SZPeu9EXj?U7U72Sxv`#ha_viaZQoNQ~yr-qqM zs5ZV5N;7B3xM)Zfe{3*ziUh8nPkzsQhzY!$pQB4o($4e(`A(58wJ;4#J`#W5@q!Vp z&IuY)V`9MF45zy!#b+8~VIb!<>maeTCf;QvQ!h6vcT8c}-F`lDHCQqG(4Vs|8i-3%l@Kk7cEV@?G)xBBdyYb9TqF%?-T9UMlCC_8RWq#lxj6D=^QSMlB0glvZ0); zgH^zJIegk50$;T|?iNK%a{EDdFgJFc*P7DJn`Q)QS^$r}vY0AE0~3C*Hl$w;G&0cw z1_1vl;+NZ=a_ucJ?YQkdUPwK5eWt9DDZ+ky`93b*H<-;;JGql=T^iFv5Vd1PlbX!g^hZz4`%~K9A-nm$md2*tnQO9Qh)gT~_9&HoaA}Aq zM54sYsEN!=)vivp>+*2nk7Zt;nKWsh@cpUElQe1w9v!nI1#PS1=7XmK9ydf^?PTgP zLq;a1AlDzII$eRfFhl34%3Xy;>Ku+aEJt@<{GQHXd{y@Dker$El&X7w`G%XO4Y_#E zZx6`*_jwft!-)I(MkU%JuHe$6``#kWed|(QiyTJP0qu*j*~Om9=m*#O+R;2~xjA0D84H%{W)7}=iYW(6{WiA$WuFT4CJD2NWIxPg8us2ZC&*9aTtu1 zVsVqQ9=e@Exx7}%S4@^5?t>tIR|4qo$EKmC|K2f?5Efc~aFJyf-W)ZWTo=cw@#sM9svV z4rZDEVu9)B@)lZ|4=0DaH4NXdHQU$Jl`gR=Acv|Po2JL>VNGT%=)YsdV>vgC1TXEG z;b(w7keV5gaD8EVN8`6MG6qB?k?R zyTZ8QaGHnT7LyY02Uc&VsPIgQg})b>yVs znFcr&`nFIF@xsf7=(m~fN$(8h?98pgEUNlwPL;8^ZIS64E({^#n%lrzRjaZt(Vqog zhtT+rzMyNUt^A-1c}Tjzh%ytB>u2TrcJ(HWslz2&)h+g5hfN8%O*gc?c-v!4{Dp^i z2WfU|AFRoc99Zn*KfPgL@DFC~Hj`i8o9QSL)(!l#ZSdXEW%8nHJ9?;IOE;{v%Egg{ zEqPML>6^J3B|{$thl-+FDr_e>3*FY}HrA?}(S7cfPx)&Q84ty2iCaUzX?DwcF+F6d z44n#2`5$K5tR}bidgaE?g&fT1K)uKuQGI`;h`md2sPxaE8;`Ws`Fa%@Ngj(RXiG4z&$-~JR~4}e&=t3v z6{m>jchUe>M^3u)8Pku^UPMnnw7*n?V2E=t+ErJjvn#-h2X2lj=33rQLB(z zKT}k=-m=uFlD>9o^k9gEU`u?Bp}YzT$jvWQN-5AToZmFL7qiZM%#w9hCzU24;bz-d zXNjPVkAVG;{T~<6Fut~hG*7#IU99GMRm4x7tD6DelPA|CUt@H|Pm7W+^Uy z9%8=z?-*|v`||MH_1O8&&+7;gw9UN8*OwQf{jf8r$QaZ4ui=bX8!}zWtDg3#CdRlNDP0wSkdRXz8T%W#VRkGOPSX^vmD|v->m#3Q+fLP zXRp8x8AxD@nzvoI-ER`jel2(tbynk_r{B^RD`ki~ z>mqWbXA(~MndgF9Sx9$f7Eo)QGQ=)pLN&wd0YlXTc$4bvEIdTXE0L?uM;)PyGbBY9 znYdjP+F@fjNM%-^ zocd@&XTfg`_r&aOH z8Y0To!s^H#fLQcsPKV>g^Jy;s)&{8sYlN2d7HNn_`7{1b#8D;Jl4Dg5%>GU5nyIOw z>_r{A;&fN=ujat&dl3vnhjtaF*T&yH(pO?%R6aA_nloLcPT{n|=A#lsd{*oJ{@qKN z!^A3o;ON`iI*M#|6Uy5w@#I`_ho_-VS?1?f`yHH>6%FqPA{AL;Dp|qQm`Jo*BvggW ziQ@(HeV37d_E+#*iyfDW+-PWoEU$TMlU78rbcSkc<(x$HJ_yJiow2vU)_u_m@@vN8 z7ri$Xj4n0A8nEhY(%gQy-NKyCyJGg4*a2QIf3y0KR9N^o&G^!a@=DcH=QlR0UX=^H zh*9psv*F`QH!^-ix17u5;C?rwZ^f0-10k&Iy>lm;>e?Wuu5gKYA!)$ShJdSTFy)%( zVEdwT^iU!bIU6eSK_{6``}AhT7om zD1#5c$O37KYFv8YR@LKjd>gg*L>TCuA4B^^*<^!!&>viY>Zn6dmnW~XH}pgL$Vt^| z{rath{_=BaChfJu!Hgdn%PRu?$t_H_N}gaxqM>7$;)^E+NJczc7snas#D2F@I^CuT2w2l? zW2??rB}0fXjE*r*K`Uo6WUqy9m8+lg2oD-`#)Y*P7%Zi5jsqrMvt?ZihpLCC@(f1_ zCI5z?Vr~ysm74UWQKD(pDAkl~sLfn+?sr;LM>uBTOgff2in{52X?gH~XtsLyXAYC9 z#s^P*OcK|9>FqY;bI!;2vJ1f+9`m8nx~;#UQMDpT%O~<(#FM;x^JyD9Y`_qiw40dt zOe8<~^@v}4y`;>{gUcrrQ`bc!^+;M`j%fSbi@{ANF%m`?32cs=cFJ#$C&3ghvCdl~ zhB*SE3JmQ;rgrD_6}%87)UfqgJ9&ZR@WUI%0ieI=lt zr`pZ*RS!n9Ic!cNfN@2I>MB$1>t5kf{*MGluR;!~Lz2=1<8RsvhP!J?l_zmHy1<^& zG=HDu6_$}T1*Fk6=~&5_xSzJ<=B+AaRn~{Oe1q`nqmtN@?B(Yny`jqOTQMK$w{~;p z?w7FzIT|69O6Tr#urbm8xC_1f)Luj#J-gGqx-!Ae)%5SQ!Zde5ll z%^G_Bcg#_M`sntr&PVO3g!naJ$kh~&Wze|2%a1huD zi`?KcEXR8ValmvOu{vGk;z)hb(XZ-G&dME6%{-(3i&sni@!)^QKKF{(#6^RI#2jgv zN*uW-FugqVzhlwNSXYsVblA9NmhrEfJUo{^@3C5geL0`E{X(a3723cnrfh=N&|EdX z@VjmQggx+YPrLuO%~-9lr(%0f%ZuqSDgd>M4xr{flVI;MMV2_&Az}Yh;hu!Lh=4U+Q#Hs&(zK?CcC49~=+9X(C#1EvnqkWTu%RFnQ*3 zBl=Hd3Me6Gn*RE%I^c4HUs}+G8+VP=QI!>f2BQvJX;4eCb%n9d zz^~6>exX=6y*gkkO)8>ASl9BJIQA=%r%|bc9{&%oV(Vj8u$y$yzTJ8o_l@0^3!ItV zWt6FYf5A?|jhQZ`rk?VE+e&iVM53mRCWomq?%-EcZgrvZ!I^L0v1r1z)+hTGeJfC* zUzCqEGTF{2fHh8q^r>fGUOB52PI0V~0ErkE;2gF!^RdcM+p{$_LCJ3i6qBu5mXOmL zM(!9NTe8F&(GHS=X$*_=ys}FdIrgEf4+`xRJ_0{iAI$NE&msIH;ScL$0jK4hcF@&FkvZ`8ZI}1O zH$iTGS$b;{6EM!NY{prqX7Aqyv|=OQi@%AfoaPk zkm8fd)7jihST7dmHWoK`%u!oAGvY^R>L$?Z35~bu2FiCYhF(`vXs$e6r#-gt3ebP7 zso=*2mG*rrji`N)E0K8iX=A=Dq#+Cxt#8t1uTRI7%X9H#ai`|6ueyEb_YnQieQ&jZ zdMvGg@naI8tRvH z^f`R;tWlJ9vx>VAZZJIPQ#+Ku(K;Gni%Wae2%_R3%T*0xxw=VvnGC_37j?5|W_qD9 zAN$I?yk#nynwtMup5DbL!8r`aBldfmf~VcMZq5y3l)}NS5N#$7w(|xWj@3j;E?QB; z%~wJH`Y~YU^}J-<%?YBG6oYYF$Nr+ehHKeRqTtMeP<>*iga%TI0F?}%M~&4hmy zWZDK{9X(m0!GFxkR94hyyMv@1VnE>Z&t}SX7hZ1rmyg$pe3b}a;34g_CcFa2p6*Y~n^=QB9-byeZRm4F1$kPl&C4{1;6_q@pR4d=1m)>>8 zPE9*Hoe*$6y4rE`oVO`1FGV!b_a(jp6tX((lmC25;0`-iHwSx^$tuk?8?UE}GCb1# z=vU30*3Q4V!`u3>rbJ+dOp!P2zi0&eW*p zoWP3D3-1lAx9}C*g zczK5Dl(Lo6E<=kg?$pEQY*>ctagdcaT~4C)8+LdAU;ZVPdFqK+CAdd$L)WiAT34P0 zm-2+;ro448`9Oo9AC@~R=aef`8mP8<@v@mSb~HT zF5e)8+37kD*&P3R5_MAMyqfdB%k2fqAdAYDqLWT6Jr`iu+&^caVr$~9?vdcU0?m{D zs&a#4b9iMjI8F2C97ALw$ZhC1iPKfAjR6zlHS{72r)9(NkyzXEBPw`tV&=*(Tedu; zy@;k2GNZcWSV3%>sln&^!8~rXWA-<~bK7O;#jjlZXO(q@lTof3%DL#P3mDi*W&UV6 zaOAA`=f&ax%Eu7{Tn*!)S9XVmOlE#gJO_o2A763{Zu54%4r94%)F=Wkey~vQRu>l* z&c^=OJl|(fXO^50;kiiF&|TfO(hxsY*UMHaro_)P!Vawhi8Ub;bm3f6Q@a=nd+*69 zc?wTi7}jgQ_k>*iM%gdd1>b$pON4m)CWknStCCIU=Sgc6o=>XaSE1h5xDCbW!2Mf_ z_>H1tZtYy$#Rwp(Vj|cVp2BW|EB7K~l1qXF+v-Xhk;BF5F`jfn&m-xRGxH&{=6XZq z1TV!+ai_|ZI5rnYx;`-P^xrXx0%9=Lcs_>Q9fqjXFf4CcB96?x$IOorNp}ozCpLON z(A^wL?QZ=6w<`5Zs5l{jtca2aHm^qpkB#lFNa6kvW^@rwdVu0qCk)a9liz(n`Ou$F zF9{#OM+g0MsEMkw2o+bHNID-}MEpn|#+m9sIXdHy<^$8~!fNFmw2wdY_n;*T&#k#2 ze4ec#6W5r**CMb|W4GksIUoZT;J;(Fb!X=jX{Cfc_@=dy@4}(6Qlky|-B6c5PC_S; z$qZ8QFHUz=Vha4>__pGCgIF-DDZ{B9j-dG73Bttap-X4AeFW@VV#8iU>L_^9Re~Ao zZnYxV3j**^RCeYfyl#00P=MIcP*3KYcco&97Xm7w&n+YQE_s%iGxQu7pKMM=I(D3s!;; zIv(dOJ5%La{x5?|%XSqy$xpQoQdNF8mUM{e#jj%V|`~qrnJ@7f5xj zp#?i>oR2=%V`YY_f;xg_0;%<8p&8Co@>Wb&a9DUA=E=4Gx}=kmC_IflPlTvY?3O5^ zfW{)e#>j9=bZ}D#WJm6no9Z0DfTAEyaAX^^DY|mucTb0uBqw0L4>Ir0@N!Pd-Fg6x z0lkW{V(R#LdA!(e#Rl<6?4;RfnG=_JRs<`A6L5B&8j<-&9OhMbWKxqlqCay}(%Ug? z@lnVY*4AM1bw*&mLE~&vE}4JhSJOE1E6aBIunr1Y!dj6y9ivA_U-~yuy9o~MYZswp zE1FxEG&R-ryNY|EM^chO2PqnfcO3B;i)FgDl23hK7Z!GtkQ7~ z2866-4GxS7J*iRkhJI9EB97nO&2?d)AUIcJ;W=v?GlYBLKCNb&s?%)U45^uwOY<$? z4GutVg$G+`7L)!i`2Iy$(lqz0Hb=YFQ`1h^=$b27N6z(AeyHBkieETl1NgcgESSzw zAe<%p-v?a}7J+8HL^Ax9YUp(4*>yO>o0ZV%Ic=25v*7Et3c)Aq7+|R0vnekto%V4Kck2Fu2c{`Vc z4S_K@Z|QHLjLvf1ti_79A-%^gga?c6>cvDoQdG2YXOtAN80&}Z zSPu~;FsqDF zw{&8{F$evbArw^|DU1|xx+CjWn+Hx_P<%gA#uSQV+^AD>J0HQv_=hK{beE{S z!k_r_1aNif{xI%$fC;%KjY8}MJ?Y5qQGjO$%H6XS&3!F)eMR(vUAM-vft=+QrY>x> z(gtoYotFz$4Q<;5S9V;vE9z*0?_W`L#OWZw#byQ!q~8YX%fHGS6)!d>rFc(-;B1HF zn{qM+?v$X1y)0ulxiSMQBxZsU{?J~*EFV9*SK(v=6ecW%jp@=e6L07$4Nl%vZd=S$kMAekBjfd&a$VS_+k~2)@Rh(oq#m zefOLQR4LHOcfE|@>aIw154XW!3J2huAzh`rS&)q%$t(ReF5s7V)vhmtgN9e&DFQQ} zyC`Ithl)&qH#vLCUHZJNiuxH7-VI$>RQ7eR_e7d>pcs15ODsF}zhe*U?o~G|+2=(!^6dDEI6FBG%SimO6{Z6nuY&{QKfS_dZq$6Z$nz%b?9 zg%mnta~yOo+4aWmzxPr6Mc7P5DYE1?e#X)En`Q}b3Bz^H zci|WdeI92-@?2Ayrj%LYcO{{?U53zYX784OW>M=PZLDwY`#gb$`}e zK;V_3e$O|2Z;%jR3*shOIy&Tq3qK|rIY;nsRZ|Jrejb{?KP&{P zxpIB%quUjfobpg~bf^;FL5~rDi|{uP3CXuq-@DO2e-Xj(co-+8-Eug^=|Of(zB z>I)zaF}G$v^REU$i1-vi1>|}3?>ZT0Rf8yQc^_gh1R_}Y^|Je0Q}>hWT28svQK;+v zi^gKAp4#wh|HVqtHGySqI@N0w&eA9+a2IYRB{6yk_u_)hLCq}n+W#j0vGn%0lbV2$vG^t>zL%UIq+;Uw2Aqjk?Tb%#STtQa-5nWSl>(nm^6KyQi+LqfJ5g>TH*aKTQuZK>0=gKP zmMJu^TD7*WJeeK)R)~s6DL?Xd;9$36ae6e4cOh8O+s9q}zy$b6fL`i&D)Q+>MG+=! z;l-FmN8MM}zM$cOom-Gr)$eWs2QjAT^=cYm{AZ^K{4b)W|MG&!f5-l)41--ji_XPg zPUxUFrQUPA;)V5?z~GG7fBXjh4=BLWA}Zv9_F>7mZsPl0T5K!l{jkF5u6bPcuD9k! zIBEshU13vSybGsp)Lfd9V0NKrr+dYv%2ykr7gk%`SE@t{4sb=;Ya%(CgJ zux`sM2?P*g89^rOl|GA@(>U*(9PwhT{t|hwZG)iRU2V;&o+lYFZ>$l6FH&+pUwS9H z1`#ezy6h1+)U)FSPtv6O#Q)V{8zvhkO$`&e(!$`ThW_!@gC8Hg|I@2Scei~z#(-0b zk;I`tld2g9y&@Z*_26s8Ym#NP!*6nYo+xT?z9bF}Y?c1SY#sX3k8<^iW!)aP`IIfy84 zla@cHoBZl#bU=m_C&&5kTfGl^kwOWrhPCrhqUB`Uj9)hF=QTxVLlGf=K^(%i2DATQ zh6SWe--rr@oyvQXmy5PJ9%P^^qtYQ`gLyNf3D{qiwK$(}t?u&IMc$21bM`@stiT3W zM_n*IWdZcMa_^#=-=6=8`=Qg(G?VAk9BWSO4@V_V8@D|8@q6%?WWfPQJpG_YOp<=( z5%aXRU*DRpz4uouRM4nU&KY}j5HcL|bQolO4fZhD&G1iu#`cA=*=~MiV(*(yMWZ9NAewAg2Gq9yjN#CN4mmH0U6EKa|-@38b>NP9o(QT6;1_3rTa zR(w4KG7klDMnh+4KdsALrnAIN;~THdr%Jn+WU7&7rMu4Nt2~_hjU6j zJq5Yg{j1(g)h5d(SF&LNp@%s42!(Oe+sXbKDVt60vxGwx+8J7YdA4rl0-C%Mz6D;d`$Fr zzgsVs*oafTa^P~qU!mrOR_$Jark3)`d9l3U4qyj@&9{R*y-8Ln(B5Kl)k6KfAIW_6 zWhPr#&`;~w1|u3Dx)j7%2{;0TD)MtHZ!EMYZ~VxO3^?9>ecrNIiDxX0!}i!=(sQ=fN9X~;sgc5;)2YNPom9Q*R`bzSgG-x|^EGD7)s z!;xp*GcVJ{&xOsZu*0X7JQV^KdSH3t_@VxP#~La3UgP7kISsg|?9sh=Oy{Cam#kNIaMF0k`lX0BoEX<@b$)XzoC=6Ly_=|2 zSyz51kj5zOCZ0`(D=!gUJ}_K;bH@1fdZ+1drwW3>R6-jQQ4;VR`@SBe&pWtr2O{{y z7$zzc?JyEJ$6LpyGnLv_A63%71)&!n>AC_g7Q!u!#pdI~Z_>yWA0XoG?f#)C;>4qe zW-_rVCu>^+5v&|J9BVgG?1>$+MK8y`LQo2zcv<5C`RCb(56oE7W85VU2tYLG=XH_A z&o1w4NKF94bzV*Dq0Oi^uUJ)6oc7M*(-@XBaF=0Y*A90I>RR`wRtB%=m$vlrqC3d9aR>n}>0CxP8M^sz36Q=4tr;|1S zak)?|=gT-DHFlE}aZMdW}pBa>I9LdRO;uJ2dU;k7M z^+$vps!Fa#7VR@JTGdJX`D%}s*A&RXMAQdb7bbDa9@yiE0=CaxYBk}l^$%m$!NUsg z?@c*X2332yaCh#Y2VUDek6ITU^4#RyM6A8s7$W(XW(=jMB8TH~e)+Ub6>8W$x>x_J zM+cKl4_uu8^3KQJ(Q!&p=cPCnG@n!hG}W6?W`?RTkggdu$pPne)`S(tAWnGGCBvtX zeD%gv$xXc$ zINi0$^|Bdey*#XFQM0bL>1yfuukAcQabRlWRYl>E94xzWy>ck;8>oQ|6~fCg#!Htl zqn|lhS6)?LoXiWm;H_MH`=!|pL-(mil`!D4zkV3acRsn{I@w4=z?+d!=r!bO!4_ct zlMZ}YUC~Z$>Sov{qe=$+OhG&n@Y zLP~dExXF7zNNihN)5`s@wk}nHzLjf;8{H386F=Oh$KD;(4Jo?+)wP#PvM3!u#@ET_ z%yFzKtQx|2#C)!KwzylIP8(ynDo0hw{|!8m7NV4TBeRCz!-s)N@Rln77UZ)D7_pL9 z?_XZ ze1{G?p)|#IdnZqIw?x{0EAmNW_4LFvWZ}PKX&^O-;O`L`MYj|z-Hs^vWp-mL2TBME z$b?j?Bsdx?O$h4xKTpR7ox0Qs^LtlU+-}Gguhq_tAxS`T=99AQzt2`u=nF$1b+FOz zOhZ>W%Iru@cGYiHYMNbF2-2EPFtzLOUbK)`o`jMOI3(kOu5X!QR1W88umLB+B>sVGF@CE`HrCYD_M7Z<^R(5DsFR?v#Q74G0J$29* zvLZ-{v1Edto_pdQwwSYR_)6qUWRW{7{$9Z8SeL(hMm35>W&%+GPU#zChTcad(?%}l zZMhVH#{Vcf54R-u_m9`Nbt*IW9+}6H8`NB>4M!>Noht{<9N@rh+0jH(D+57uCx|om zLajtmAw4Q;E-Xw`49#$_^W*m)JlFGFTzo$F{eHh*^MHsM$z*P5k}RioNc@BHH3x*! zr@o5<@Eo4{Z)RmhH|1}4X!q8#iT3}ql2Ij6l^|g8>wr7 zO@3ba_yJ_t6BK}R$FTLXl}{wzyWxnyf->lXxny23$4azT)YbZ9v;L1M_ipvmb$ptb zfbyOmAHPw$q*A&2vIpawyF13i`;r(4su!VSKy_Yz%de`8y{f1pnZ+jB`l#!+o}%GM zhi-d9!~*|rq1K_-o7}fP=78NmmOu{+_ifF8BF?7JUG4=LpDnA|9gz2-J6Glw6Ueq_ zR16%JWp-G3N22ZllnWiA*bGKqvA}X9tcy|+4Ok1SPLP1?SZ4z}z!l=~$^PifoWy%q zaZwwUKbMqL%KlmW+kKVY>)FThD4%!^C0umqVvHcp03m z!?PG&_pzaMTTCMz*ew6B&2^?^^is%fHd`H}eucFvO=xj(*WK*+Ky=dV{hM(1*i`gH z?`WXj_OSW0xT&;s$*E9n8`r?NkVWM*5LXu};AbgVJ~_Wr6!Uu*)Y2g5HJ1)ePpm(EPy&;OY!N-@dP{Wd7RjjL*eY5r z%n0U>E)UZyq6V|0{~pq5+6cOTh9EiYUIMSFgf}h9)(%k0>_Q{3O=2(o1;wK-rCgnv zG`rOcAT|AedbX^$Ik9f!#`Gq6l<&wy!{YGQw&#(?NNB{G9h@MY%*0{TbM8H{0uCm( zS?@?)KnD2hwnsImx&aT-%)zt=W!JUfwo}Zk&Y0)=wXbFf)Vgaf4q`F>R?yqG?YXEP z(v-OsnlJ6?zvR3fv!KPluj~4mKB6sacL)N_r^9%9u?JcGA0N*76B>1lQDM%S=H~up;=+q*+hA@g_+A^{$r(3o1JP! z@xT9_sk`kD5n^9HWsS(3j|v|0O0WHBo&Z9t+hr|y&)JjbyC61%z63KsuOTn5QsgZ) z-fUJqt~A>{IU~cr#_zIX!6u+4&$ZHte-Tg8_vt*D1o+43b36|U)yetryPHvNgKPBQ& zxnd!;NpcpmR{Tnl#xPt_jew`}ul?dj{ndKpOLDl)EqQ$Ye1v=Xv8kj!ZE_M6e-8#= z{4jf>b7X4MHKSPNJRSj=PUICeU}a3mtNwQ;llv)YKh5n0!1Bg#^JlA4ZW38ti3(Z9 z=6QFC4!T9MS;o%G(X#1sOcArZX`oKLg|5^qyiNM)pN_ovZNsIlJ8lcFR`901u^25Y zd%%il0d$(nP;KFjDrgGS(i$aneD6E@GA?*O+t7-mfOhA{#83M5NmA9ZF^NCk6<~<* z78^THv|hVCl3@{@zOVyqR44?+k6k#vtD>=n(0TrfqvO5VU+`YDHIeN(h(P*8WuCR5 z(XiXmVIV?h`y(c#EaD7OROcC?>s4E_L;;U;!~3sy?l!*w&dyVkp+Ya!u__M{)=Cc} z-NGAb%4!V)ISFlk{M|X>Oul7s>JRU#ripG>^QI482po-u!XjEGL-_=$HpUUU zaVc0j)|{#^(5}~@8+wqsCT`kH6n^7>D*NX}Ca#yNcdLMT+iiGbFbz)-cKcK`gO9vR zJjk)D-&CS_JTlvSps=46=w(E75R_vomNp8Se0Qu5U!di3Eqr1KQNLZJMJ1L~ns>8) z)QwjSWmpDePF_t0mCzG%LzlsdMm?1+)N))RMvm9^MKJaJSgXb&`jLl}Ma_&vty@{B z?{uP(MQji2&MSFMjHjh>(ipL&Ee6nylmBm9Eii%xlLSvri(SjqwF{1{>ykV{4nzlnxRxzlh_B=r+F|mi*rxUzY zjYV|Y>9j7#x@_3v6>>OZ5_B?^x}`3@vF7inqZPk(PLZ*E1j_jkn&=tYFz?i(Wp_m{ zu-GB;eRQ@#P-)hh&hNhJs)3rDiFfii>wc4eD5Eb;oVcyfZh-y8>CUwu$ovq)YooYw zh3QQLtfN;>Fq4DBoUrhlqyaCbi#vBebXg1!gaipYfb&?ow-%Xzpt?jiSSYc1PxK+e zQ_VnAfK*G=ocUJh{;lL1>uQTj2A_TfW+)h&j=n4YrJUK(SOv~j8CBBnkGO^y68+Y9 z46Hf&YFT#sTTJ@JulHgeK0`)l!9Bd-4;StZb#BRr9-y|HH*J7F(sf}ls{X@yB7ky^ zt)6?3ceCXj1|`hf>KWrhfc_=ex*@@@!1ez2Fc~=~O ztN3^GM_aFI0480Oo*T>ATRNHB`2;#RsD(`A6(J63 zGcMO&{4w^-W8BB0NYB*KGfe$Nzy)^r$+Vi|8O=qFcb=P8X`O$V z5%cWC==a?|4N@AdBe5Q0@v{O1UH{;B@680wcFLJexXkHVp!%ZcW*seDXMH;ov5%Xy zYPDvHtt8iPA=tt6xTMAwr!51dA!XP1Xj#(smBszSolrJ4V=td*v+?B=&2BnsYpJSM zc!vJ20oJDk8?A;34zv9fhm}$jJHcWQ1Gz);Vtt?=cA}<#)KJR+sh|vM%h4;W)6M(q z4key@ZBw~#iyCi$PBAFs8s}W+6|K6Ol4ycwKk7i2je7a@UP4b%HS_9WEJJV` z$bCW&^)#2=4NglmK9q)qSYcD#djs=MjDoitw+_GE{7n>lW#*GNG5R7AJ2|-ZI2C8b ztMdMF{P56>(uun9Cqgw{c_8Ffdt_<&yxq%*>Wn;lv)bIGg1Ot~Spd^?6$hoL)oR-; z!t;qW+pbr0!Akys;hKCMgqz9omr@|}O!T457U5j;j5eIaFCC6^XpP`_98YGusm)gd zlwLmaY87{J_x^pz7sBDTqP3ZaykD(m)qCKuNoHhXcDu^Z7SpQ!Mts#T*nrG z-d<`rh^Jc}7|JGJb)()dZb@M19h9ntev1anlOOEiY4iT`H06zP!Q8q8i;%4dQRRp1 zxOS9sEL}%Zj9_v)VMRMjeLD6k%9POkaUu4ZS^Emr&XEMhmJ;IHROm@w?^b$wvOp*) zk7qo&e;$xHbGOb`Y1-Uy;uRg9L4BW|!|NTZhzeVT=Qy&RAEm^(R|6kmg8g3!6Rp8=NF*{3NdfS`pN&Q6c+;OyRqb!bq|qX0yKqCe@ro3x~|3jOwZ zqBK*ih-q{6Ba@}J#gZT*&zuad?n@P^Ub8Hhmc}PeTa1)$_BIc7$JroeX2TR&T=it# z7LFo0kBfs#4v-tZk(4tT(VG_*wj`>s@SyAa1?Wp54B@4{dOS%fi;COS9R@@$#^#tj zIy)DgV5(Gw%hn9+c)jU%(6MuF?Hk!6U$0M$9m7TZ{_hMN+4hbk;mHN9H75Nge_;d{ zn_A;6vAW3nHu8ou_2#%qFB?mi1x4ad`uvqH#9C4(GA{J*F%JZrZvIUcrFK&?M)Rx& zS)!Wf?GJcNb{jyoGQ%*yzUn>Hf(%XZ*a3=Lko+2iT$x+Io_|A-v0Fg=1J`-iBO~^R zL3)F!G|?r6xOzhG?#4VIqFxxOHUNqrRav+VEFkZZ@B(KS@qS(Xz=BB&)2g6iZn3Im z(LVz|AbjDc;ZSjOSis*WBJX@E=Y@jDQ)tr$2)od(&pOXOUJOA(lP(q zY9=qvJlmC_T{+d5H5WdBx$r@s`sdeJl>AuQZkbkFkbS;!MRhnTh*jwPgA#0oDDEBmV z8J%pW$~;UM*kW&KOdH2c7c<8}eib2L0_~Z$?N55LD(c=Dk{ z&FXykZjyD*4Wg0AruS$zp^>JVom-lj&Yy|m;o`J>8IDRNdAvV&m@hSfr?X9EPcnKr zI!ia+t+Z0#vr0QpGIB4PDahltoD+xaQ)+zKk*SnVY?hpTyj%Hx?CL<&MT}X5h8-aC zAjigs?=x6vjcF%QYn9}6EA)qh5$I{h231d}Ev&>5gK=7*-&E?EuJmnUT)YwG#!lXV z6zUv;@tqU8Y3XLt^w9b-Mt*V3d{zGPcF#|Y6ai;6;68C}_kF*6zihT}6C4V6f?%Oo zk-vVnN)&3^#mVrX?6|*6BW$!@oo5=vn>vWXxJ_<+YQpf@+lffeUU`aW6?v{C)45+@ zmUc%8TA}@pb?fJfwYhgabr75h2}8mZgyv_1+_;kbTXLFM5U5Ig4q-2NOHg@{i^S$} zE!*e+RVsN2IFSBZZEb}BO%7!0_WT*I!TTOkDSut&Xy4RN97*)p@bDj<2SeW&hUb z4ohne%xn)!QHiNrdUqNnTNPp04GM~!4zt4Z(Cu#IFYXu2e%Z(#Qv{jIL*9Qk060v$>msaQTN@#Kyh?zH?(6f`3>}lBX<%=EoOsZ1PJk(_|nb=!u5r`9Z^mL zSu0a9P~&o~Jt=qVFlQJSsHUTDpV#%!Gv&u5VIT80JIjW3(S&uJp0Gp%5~9(Q%;P@y z#|xh>{cQJl=n>BJnLPT^rT2`hUqLkM;vVqpaj0M4jnY#Y;s4HT`I*QbFQR^A%(2wO zHj|r4*uOi*yPc@se;|O74pejf5a4SJb4w81Ng=2-zzm8lqh9eoC<{BcP|ea!#vFC+ z7wS&U$B&dNY;yhNV?%3~bDK{v=Vm4w8jFQSx35+mqDsi7JfrFSSxaK`<^`X?y`bsy zisB!JNSwIB6Y-P%?3fe1O$_)o{~QF`SNP!Xi=SkLrnU+``&r)9arWIs(U|dlahC(b z`DniIJvgPD8u^{JnWmXrtIk?MXPYytWbftf6m!y3RkIVgyvBNTZNexv=c%PhqPZf6)ziaXSF!H(vgGm#=m^`_EQTcefrv$UcwOkk z>|b57L9LdmuEj?S)85|2<`tbq6N$&9^>b`35YCOE;__|Z?@^IsG&tM2H?9&)nPK7b ztSC`e4(X>i*$bW(^R!#YHGj(ILw^54Hbq`mhC)cn3brsgEjD-ie3@V>F|0D z4bHwJiAe;R5tZIyQM7gZm3q-k4mS;=?cr0YoH9y0Ps!I@PqyvVAeE#e)A+qlWYWyb zXf4L?t_I)+tv__}UcQX3zm}?R``%wlHP?o7Y&}cWYk@Omf^*j0^NteCj{tCNCLGe} zI_v!HbFHP&wduKLVEmSKcbh9Ziak~R7_iB&VKQuyWf_KX7~jyFp+<3*F-34)oYv0@ zx&g$$_W}y__55yY{oLdnE%J()I|X|?|FORUAoi&fzLcg42cw%3)A3Zgj-ExXObAO4 zPFjNl+wNU+|6@}4%B>a8>mSs9tK_64EqkmcDBgQAj9k)0fano;{eHxT|0X8no>##~ zBNxD+!7ACU3Duxsz`vto(ZAq*vrZ{DHwoYV)>KBYxxe2KPM6!PyL#1X{D&@9+>;T6 z7T)XeWE^c^e+n#aq-HZ116&Ls!!d z3A%3qpDI>KssS$0e{ScNs>sGLtZ>SozrS04)ebwrM1|(e}hDdr=^s|_ zJE-LY{o+lZtKTH?BozT~%(T&0iwN$4`XxB?)(TD4m<3Su@YAXnG;l}>Yp7h`IDTMp zer>f^$yOGPuvoqwCxPS_g`JK_cjnLIOv~3gutsH0M^Oj=)O#2*7wZjL173DwC&b!v zFC3O_`NI>P*u1Ch)9JOga828;yS3a4fL}rUY*tT&7}o~yXkRJ>Zqr{2D{#X^N`Ezr ztJDKoAFC(7y%oV18FX`o3t@K&!%pv1sb;dS!>-*;$xXj>y_}2v!XUHyMq`yqXUiNS zR9k{>+lm~Z=8}?R*`qH9)AWrE0XJaOl}yg@m*JF|dNVBnux(-7^3&4J>{VGSH#0}& z0@}H*9u{D-5dARM;Js5+7&KVFrk|v2M}U3@*EQ0tWr8+tdHOUDk)ZoR(`U72okv^} zpBgd%Zp#`(=dWIN+h3n70r1cs);5u(S|1UcZS6MX?!T#D&mcANir;H2&GqDRyGVcV z&-Jy4>tPQq5u`sxy-%s$n2|T^1Wj`F1Yb}&;upff?$_{@{M$Wga&$>m`pL+;C-urMivGqaxB3V_0OV&g?7*7=3 zx_VB@lBJGW&+7YVc6qpEK26c7U9p~bt!36)gtC=&;XbKnnpZhteo|dAwrW1`UHCB3 zo*_~yb78TBViKe^D;lI`{IOst>-WIS#JMFqqdh&Ej^53@x-Cq}-UdOvICfb(qk%{J zJvpw9?Z5iT04G=EGsP$3vTw9eBT={2CF-&DO&qMr;Fv`ytlvbZ9_Vj$erEJj;qa$3=11xOsCx3rD@};`yuwJ7J z&Pu}H>|@LWZ^Qno@d}xI_keO>0^j%@v%(_wogq=+8ka{ZDC;ae6Iz;id!6kQx%?c z-)n_*Q>in@BSE*0h)NY{i|O{7f^d_PbJz9?waWDM%ea~;!T5o}9JP+b&2TE}c98t3 zoB^UEEcVZC=BnV8_7_)TGuNI%yRxEDi|V0uLit-7n&3OUx|=|K)u^npx4Kdp#544$&`7R2PaZv(AgYD|nHi?r(N~h`rIT zc;mlU%z<}B@>v;jJqio-JHAVkYIIem*}Qfe>>eIai3LR*#=3|Of!eJ5-ku3S`{%09 zhP?%wq1_JK5U6+eL~8Z2UO2ouL_B~K@QpRqt`x@I!B`f1RaV(eR0^6VV6XId9rcM7 z`rhpimhDx)q`@G{zDC%u)Z-6}O%LrC_36%9ed-UCqyIajw5OMeysgT;_Gzmzw0pj= zf@a-y~cXj|3bR@2mX;eSO>J(?GTaUciBjb?0XY28qlTdP<*JPQ7 z<{5>fT)kf#n)bVB4QdBk^H(MKOSnFLp-0Z?>-F?*&nA9ClaoHNtra62G)j<9BwV1m zR?sw$C~kO1jI(9uGA_@y{k?Hxl}rWHTxhT8XV0|SuRDd9EKmKi{Qv1_PjIFYQ8a(w zp{h#u-NRmQ!+vGM>|dWaklBhKP_Yiq)TSGn*~%^zdLNn!YWzDZW{i(w4-xc zr+z((hs;Dw8tx5EL~_rs8I(50HyKdpc6L7eWXpcOGyPv2W>jkFwkZd2w^+ zN;r2e41lBBpPZ;A;|IeVTL2_X4q%N}IL5oXEV6Bjo~R!=jV_q>nYEs^fK7;q@1gcA zAXjBgjcUTRbgLR;E04p8YjD^oJX?Ej|3@OEJYO^YwCmlH6g!^>D|HSc5GE zRJH(#bfqNE-if!m+y-(O3D}LG`gT0q>tOrU6J7yGY=RF<{_q_VP!lE=8&7V$nsj+b ztSzxZ|2P`$5fU9{CwGVpdmxrm-7-BJ4;7EeLg|QLyvrYVJ|82-Bs)n+a;*;dOk^Pl zV-v>zm|jnIM0fwwg@2S5b2|o6RwT19CYDmM$CO|@hudYpgC0_<--)Jn%2rI%AXeBm zDVEOs97oq8Z~q9H?O4QMJ7e41|ClESTr6GnxRI+0ETtOGD)dPZD&4M|BfnfQZJ;}> z(Swv|LSyA17O6pT$^FhJU^!c{_(?1)0x-06 z(C!-F<26y^p%5Qk6kp`;XuJfgM6niSeS$s=ZNl7X-={Qtl{(|xouIzHQ$oLRh`j8_ zcltO4K~tIz2RUt`)khS7hIZdM#j1>@Fx^R$2DT4W<(9$z*V$m3Abf%`8_*dolr_J` z;Ynz%?zRdG45e<>d8H@Q;xnJL;r4!H!Ll88WsRMjVuENLPigK+zd_(hM(9w=FfnBR zW$-)XaQl)Ix72u?*86&MDXJ_br8ovrc^)7~cAk6MR6x7x`?-5Mpf7mU_BKS4r;7x) z23SrTTHR?FTo}<*f|F@ToA!SM2e50keO1*oaYduy%s;tS1cvyQB%ra5uVFzh(EcE8 zE>zBEi;Jp;+0(4=<*7fQIjl-$=Fzm5219>jM&ds)&Z95xQDZ|C2@o^vUeWkV#g*`` zu(y{uO~nR&cltT(&5P9K`no|Uh5*D2P2IZVuYvKPYLOlnA5qfNng+|Cl0b%efd(2qwwv6Ru!qN!ee8LaN~rei30SF zekI&~F>u&3)Z2mo=(Ay9-)>CS9#emzE;4QX5x^-6RJWfk9J-HYL$#>J`W=NP#)cTM zDdX+3g+V;`!DI0)CUJta&OuCSHH~YF=}o?I zv)3-Rk~tGo2Ywe7EtQ$peuvV#7M)`W*ewldQSV>&vw0NZ(W$vwU%q-y!4beazM*;h zKD>j?4_Po;f+sy+onJYf8r^LI5q|BZp8o3N=bue5>+e+j{w_i^_5N0VkZNG?6|`^K zJyon5FYis?9T?3WPE}Vj*}<_ak1cn_D1X&uK31MI8QrGa+aq$eCh{_Tg3q) zRJUOu!vPL|Eu*d%!{pnXz5V;KW!=}neCj^hW!xduYa(y<2SV%n<{9|`5vt`ag^q-$SzBIK%FhCHl~%-vpwaa}?_4Arxg?Yi=0mexg5DH(rtY zxllR`h57c8o3chUx&*+7+1>cTGTb9VYX1BW>}mJ6|LH+kaO#OgE_M(8T3o43bYMA> z@5}FQkg1@J3P$_KhfIynFXH?e@9uWAx;%|b2GYBMt6!Iz@g2|NA{S4NJ;>(oHe^h& zoxvVALY++MiK>B^L>;(N;Rfb0JI?$RJY^OEID9r!LKF8}upch&1`#&@C)933_pTt3 zL_$-9#Tm|`X;NBLC*uv9DtaU`2CS<8!}X%z94aRW8J)Mf;FcuoNa-m1VLNo{(|PkJ z$>bIv^Z0=g?9v}XopAlE?H0E}eB(B|8LHc5vVCNip-HED+^vsIh$+^sE%t4 zOT0l}pCU1@M_tto)d5gf*e5@ zjnD3CmmQ!>V0(I4&I6f3o60$nD8Ad~9d~CmU(o;_ehMV^db`&uMLFUc#VfSpzcXBu zZfh5w^l0aiyV5&RFU#(*$=(#IBRhr{NcNc|bFz<=yy8pcioG;*j3xwAPhP8*bxu2Ir|RDHB|m7ulBxCSml$-#S$)9urU=)xO`6T|r>bE+ zL|s8WN_y6=X{kBvmG_PZ01&G6-ZIIrfdF2IPdYYGk9ZbM7P`xp2+ec+OX=&s?z>Zl zIwonZ4v?&+3CLqCnPtVZSYgbH5c^}5ZmY42a2!2*PI8glC%Hyd=M~V(x;q@~Ac&No z?;nQXytD{mFW@*k<8!wu=WbE-WF1*LX%8xYHVNXNqLrGOhuJB8v?IgUHm34dvKlY# z)W;=Y^J3K^?OfrKE3W1bi7yj*FE!ZOYKXgEK8MmTO2>o=OOk=E1FO%?wysP@XFq=N zWdE5%_tD)z3vx&etdu>;u5Uh!3}PJh)yq}*#U`p^@3rDVeCG9OVabxQd1I$}4;|g@ z0M`QIi5zc)lk{G<^oxHcDXVf1E;SRSt`wU4r@t8GRUeH>52Gs%=$CcIW;wOS)=dib z5&Haa2bDLEx%v+gc_AR+s|szb+g~kUSCFg>w0BH zqc1A0k(v{0Rkwh)>Fw(@|3wv11pLWC2jW65PrYX|$*I;Y#60B^0r(BG98py%OxGO1 zO6q%ZO>(Hw$`;;KG_?gHom}*DxN0=dJ=^4juwj5(1hLF%z}oYb^m7|}Zp5`@(}gTo zmKZ;GFMe%sWk@%8HyZ{}3yE#?t?h9^#wMCKwfVltxgM>z-%iWU56qdM=0&(jC}?k2 zG^rQPup9HOLDxZ{*s+`%`Hb?G5qR-DA^gh8zLP07A7A%i6bb1{m#= zE1akPlsH}21)d)4IPu094t}DXn3?U8sOT}lxFkEiV}L#J7pps5^9Pzt)4I(%Vg6!%n%VI1y6u? zjjPnxrumJK4);M=kpcLR#r^Fb*+O$6CDmqN3JiT&IMcyKrea`gzSmMJv8`Pw4X<9| zh;8AVL&x`mlAe@A(`GWqwR95x0e<<@LzZu2QvyRxX`H%uIF|flM~Zf;Qc{Za?y~Et z@h0CLXvXnkpzey`2&oe14zCr=_ers&CtisT8-6-JuUmCv=B9kIZZN zLMSWFr6I0!Mxx zKD!1psz4$we=#Iv`tRF_Xla>p@!El;mI$D3E{a5`npNb7I@V4|0XRClGTxln%orAz zqx(7q&_3Z<$#8;hAt26Y_J}lAC$+g>&qXYRa2EeH>>i<;@`50tAhg^V=BOlp^pcRU zPY*L;3_8(wbnkD8H;K;7mUqoVEg`fLq3y-w^!JPGlwNL^+iQ*M^24I+J$w7lX>-gq z8Bo2;+p3lh1RkRMzAm~x{r2k``bLr8grATIk%5zj=!=sitNMP=l=VUvRl~Ezzpd(>)yS+1u=mahri!AdmVjNK4EOLanYgKiW!HE zJaqSKu@0KdEzFY1==qw4>Vvf6Fh71fT=MxaWnPDIBKGD^B^=8pnZ`Wx9yh4$I?~(!W8CL3G}^dtq!!?I5xq}{_G&8FHQ{rePP?|zi3~wFVCKT7G-W$+c?Pd66e{6XT@_k->9L*Vf;PyLi8XUafTp-7O4kYaae;`XP%E z+iPw3jhbT)w&%5-+GJ03c21d+%-$n7+bxa~lNQB_D}4gAb)Ai6>M%9CL!I6G*&vA? z?*}5Sa$&qGpUK>}HUX9k-=6y2P*+r7eXTppzgmj_-ZC}#;fr$untRA{8)fg1GU*6wwlLm@yjEk!Y7A0!Fuz$KEBZHJA``I z?cKe1M#DD-4sPz4(B^|5$v>@>w(?K2cV$)Q%Dg`Iv(3?>}J$C2NR7q9& zjuR@VGkTsuR3+%Ss^ix>-XOQ)`^3x&qV!Q;M!bbc?u78vf~;b=^U2NSBfe z*()N(#;_uGOdQztnnb@$zWWY(j~%mtGCL}8FwU~?(SFXu?qo0P1S&>o)mgg&zJ8XQ zfDY901zj`B%i0jsi~@$zbSn$jt$9%*3hrYZ=D4;baIH7NFvi=5eBpy(%%VO<<`Nu5 zF8-OtJpt71`M3KcNwz!}B^hg(Xr%!PJ5fnI*Fxb4CnU%I`Z9!wPnw9`+!TY7((8iu zQ@hZvlH%o^en$@!5t3X}Ilz>#jJ!$Fn;l8A867{1G`Rbqvy%pAM_pej+`Q3+8{uuub_C4L!S7b`toVkWfz9y&CR!~HgVlX<(rqu z9o=r`$A|w+IB34#<5hVZVY|l?gF_pLsQO!#xAqE+*n|6)Y2ZO+n<%w3G)*L%os|L7 zFfNklfvyomJr{$rAoH1k?V))?`?~mVlb*`__9$_uxXzJDQJnwtohqB_w(z-kC0%r= zAi->t9&vG*W1R1FOL_kPF}e-Fl&916t);u0wl2xQM4}8q^|Q(FdyRsxXcgHTE>~|(I`J&@lT6`n z#XjFQsl6hJIxH$gVs3Fnwe^u5IxG(pxmoJW(NU=gjO8ig^J7R z|H#Y)0Y^26gc`{(Q94`1!32I(#jiCfP?wwo-_fSJClv)PlBD0RO{?J(d#T{Ds$z3F zi9IL2{Y}puE}KRD>SY66!Q)m#OtIAsJOmqYX`7}l zhZSq6r-Gfw?fI5pUK-*eCeFBo`mEpqB>akXWxNsF=(c`jYI=thTWi{&y0+X|@Kfdc zOn)pA9sHW5+s0%nM$yX_RNUsPW~f1`u`a6S!2hkoUrg9;#%w5GNMd;w(Czwwq_A`_ zMPM(R$@wTRo>~$km2D0oN_Nn0ryUa(`FrHN+bR8G)ZYOjW3gqzFv@wRaPN1Cjl*|w<-2jFuI2%=4kZ9;I!yf-XD|G!g;mRLbt_nX652UaDJB88;%WL> zbmdNb59_K0gsXN#*rptMs6%(UkFb3SJM`PBPIG!h-u1nu1?pex%m}6lO{9k=-f27( zK4(hxpG>*Hz=WE_`Yu;|FSb&GhMd@)6FW-6p^-K`4(}Q6nXYNdE(X8x8T)kbB(iWG zGP>>wFOr_agm8I@As>f^Yu z-qNhQ9kKV*y?w-uu8$}E0)A{w)cz^JJ={VQ7THGt>tbIt$3KvGW_8VNp_u2@KXi6c zWj4(A%kptJ7m?#Ifee8%qwm%9glajsC6<-V?4zh|#TegR+L_f&;Qb=M+mmc=r$tkA zM-noi{42qT=dVE0US5W$D3fPs0(L6LXy1Vu25jB~TwN>F2rC8*Y9z6o$+0H4JkA*Om@Xaz|{7<(SWHg(zEw_&z&N&rNReW zq{HzTjlSrfGy+=Q>;S=a+#i zu+B*<^!(l&k_@xd3>GyzC=4-KZEId@GsjK57W!vY5bTK6?VJzuq^l|(R^*G!6MD4j z#+=++uCoP@UD3#{cNi_gz`82F`Pig}05=x(x)7*S37$Iw;SKRsi%1_tR9Jl4W_5%3 zR+)}_Z0fH~n_s$1@Kj%#sVHyiexX*7$EkGxFoU*;SAA$%dh|d-C30$`M2PYLyb&K* z=tN#v$CDP5{8+UR9kCb&OY-{-0j!q%aBefC1vj2(9v}N|D$5P30c7@WDFq9ri93Oy zlMro*`2iN&OE0)!XY5UOD--h1X~Nz~N#NV`Z4eEaG9({h(6$57xp+RK8Bs_W@bD0S%gyeZS(^>gSo zdRbeKRYP1T`is|BOVq*eTSF65r7r{GW=-%at5LcJ_{yV{{h){{|k}#J75=~ zdBx@(b0+psvKltxGGDovtC#BmTeHgcBp7f`pA3pTcqcF#QRa>M(so6Ht?z(b=LPdx zaRtNsc@_p{rCsc)cAy#2j5pW_@Q4BpT+bbspQ#%@Qae9TxS=B)xsJD3&ht+X+vIAG zfN33CQ8iOueO!pIEfj~T1uv-oZ$5UOe3)&TN%P1@zm(%OsNWwZp1CuE)$4F@qS~Z> z+@1yi;T+D9ZQ=i#aY}KbLRTy_slp*FoX;)=*q`G_3yhgx68cvM`2Kb*ibk7`k=3ym z`1}JUv99B%xg(M!?P+II^CNbNuQGVYDBLWIRw~-BAfVKPbOOa$d^Yo6d!bg{R%j9G zFkC0w%+-c=P-sU$q|Ry=jf>1TQy>GLCrfruyUI_xygEEkv`e<571@ucRvh))__H;u z5MxRHltT=^ZD#|N*g}r`-6RRm%{dHu(4hN!pmL8_i37NcCmXaXn(T4db{43B3$`Jk zvjaXEPrPlMb5D^%JBT>6q|=(C@phAxj`#W6#zR^6q<>@6F8$j-upUwQnW)P9KgmGr zJFqMt!qY}6U(xp7X0hi;V8arA`urskJyXxH2SzO*EALvA^rDLcWAf1|dU8%% z;@k?to?KO!OC~6a(liRb4|m|jTb5egH3Vz|0Fy>C>Je&-`$c}riv*Q`7nvPBY=mU( zTRLXB@yGZ)iCjXHer3zIA@N*ClUIDi{MiV0>~d$%1i9oN#WwY$uW!r6VkoS~H-1ij z`T~x%fMvexr)l1KJL7Jl#dL(-6+kR>CCQb zliv~#gXd1{raa}86P>^{Sz%O*WWdAGs40tKkxET#fQXlS8O<&N{Bs0jIFtQggsz&* z#m4OLh0!2@Wp@He)N<$I6&Fo+HIA-VEgkUOI;rmazOjYQZ@>J3ox`Bp<4Y3&7jv7% z(j!;BG7TR7{P;`VVwY~9Xfx?pV*kj5!Cmw4s+~l^(ST3KZM!MqL!zcafqM z6fK0M+?qh?cb#w4t^4&cCCN{(GuxD71{b9$etrg5YgXMJw2VF9sof{>yl}lZ6DDpY2Aeb%T*rroJBq;1U{_wq~O| zs{frzfB!da#%TomaM)c1@LK2-QbmT%;*ErY@{*Fc9m2p1!)cp640MvDclE9N;4@`j4z z`y3L>G!ya0k2}7;ZJ=SD?!F>^=*1^{i|o&vMu@$yiomfGgV{L5&⪼k{F?m#5(O+ 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�c^H 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

    ^{W`^s%v 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%0At5 zi!4ky{P2Z141qrs2?YZfOT8x6L$`LjWGppQBhdbC@oFBD`9`Wt8&Y{%a1H;5E zh?r@x5D_-mXZ+u>aXrDC9c=C_+=mVAY3HlC@khevvMT{{`&|ui4dhhMMgw~$?hlA; zPD`K@?}X(@tI!Lf+n0-6MfQSm_+H&q_J_^KA5R;%z9apf-N&?4`-ms(PsA5P%P zfx#DVafzrk+QGw?^<3oM;GD8>P zi1XM`d5<+)8f(fEvi!`?o3U`q@SD??j`;t6?x+2#3{VjLZ_u(6C)G0nTqqr5w{FA@<7H;Pg7h-Gdk9O z0q=16#X(oj*y_#i!U1fus+emNbM?+uPIjEGPEV* z_5@D)tp1bZ}!_z3+;367MxJ)>>zo(?boBrY|?Vc2cv z9{7eR#Y^{-?1K-t|8@q6C0GLerXevZfT2gRP^YF>E-wEb#4mQ1Y;ef?CU|c_woG+* zoL&7;HraQWC(Pez2@0^v&^8m=6e(Ukq>Dh*bpP&*HSf$XeYEdR_jlUlXt9hUJH`j< zy%MWbT$c*uePGi9Aon1ZS=@wn7U;C)T8)?ZAmTx}UY~x=2CxKfaPQR2u-K~xGm2Ri z)~7Mj9c84_a3wtW9JA8%O>zc1?8}PgjGFNT?fGtm0@Olx&^Bf^w6&1Nm_qk*4-sJ5 z0j)|&=IY@z@at;!MEW+ZxmlOl2K>uo@t{hpqg>Un;Cfu z)Dq~ChHAY__ExJEs~*FMh)jvG`%6}cVGxUPw%kej);nEzl#G!zNS&Ph5Bt`Q2q6bI z^PRWdJt{KQd~L$%s>29dA2H>wUTy7KXLp$waM+XuM$mSAJY6__d#NO^6nuXm(f>Ro ztL+6wR%z~SoxgS{_q#y&=4fF`hNiqKqgX!V-s*l*zJI!8Q2}HMCV^A-7NYm{YME-{ z7D~nMef9zr=E>JkKlN6sfD z=`Ubi4u}+9!f0XU)KS6D*qH?!dol#cu?|u+K@jeQS|= zF6;8>WTmXhtBi=Fx*t!~$9$OHMITOr--r@Cow~KUs!1emG0ruG7Kb&+hOL1z7)7^etGgwdVV&#L$bt!_HgFk z-`;2N7^brM;SScZZLzb3YQ!Ipm$+t_VRTfL+3W>aBRAJhGO&;Sse&YD?6UT}^2~ZrZre?~a zZ9$LddmzSowRcY@_Na9|tqf%{-t50sUU5)SkZ8Z;2}>S-Y>Ej=Ctrh!8laWD%J_=U zj`sWch!tsu5!*Qcj@04!+eHB5R|+Y}PBBii?x_kgmA-ev)-E121Z}w-P*0sgx}I$|HaxeothRxFKX{dkQ{ef!l=0|$ z>q?9s9B@L+_KJu%bEmaR^rHA7(EbaZxviDl_4q~Ws)s=;A24-DsLN4lr@6%?lO)+& zy(!W~7N&#s%M60P zG7iy7?b*&YsxsRFe1p-?i5DuE#$kgsQrB>gYSIEJW)na)J~1V{T4L*bh2q zaKF%Ach^(Gl{18bi|CX*-+lM?i#5xE&CmZG)8DD^mrgMqYjbY8WU|f7tO!b1jRcY!#%Lah%xo&1DXEg;3zA{#|>T8fc&S_Th$JDC4eCXIA zDUQGNa!`wt>{+ARwy+4FNXOASy!Sst+fmixbCtvA{#2ZWRcg2bqW6k5M;)^}{rdnM z_|%F3`i`RUU}GP&ZuN0n@2{>=^n2S|P^jl6>f^LrXtnoD!x!q`zd}m_;cgSzJKfW5 zBaE8*u2=mFRSISXs0!n1+rvQqhd=Irz4$b^uC~!kOnKsqR`?W5vB7@b@Fu+Cbo20% z4Ts~oORAhE2H$z-IG?cXqkWaTQavZGhf5`(@;;PZ~2U5&zV-m^v(nM6*gtlox@bx zy=yB9+UXfyyv7U}l4i{+u3-qs$kWfUs9sz%V!?nn6JBq z*`0`Gm48aHPCNv?HwkX7p`JBH$wiT4!}y&8+M(m?W|CH|RwXXRpO z>xAD&`AmzgfLPsZm7(6E-6gTNF$Dj~Y{koJ)QIclr6DIL&TYXmv1=>wruXez;LFK1 z)GjcWefg*CWaGZi0(GdYq7!_dUP|s=?txZBIk)~<*=eodo=L>4PD+EC1f>uB5U_yM zbKezVjgylT%8?ZTFrY(S6_U=P?!27wZh_hst6ZWedDX*g1Lnn)Coezh67#CtaFgcY z@(u{U_9WGN+jvTR%HdCWt2^iMFJLFELZ>9>eB1S_wXg=pr&P1M@;tZtR*|XYc>VBf zf^h2-<1gxyB<%~X@-hUgR>w<=0~PwuRUX*ZkFPd(_qE6YIQ4AB{DG;^!Y|!R7ZT2& zSAaIrJ0E>jFg(64E4u6Xwd!(egO=o3Yj>(pjv35Aye|cy9r7uG(XQP6-?8dD zA4CVpLa9mKMD=CFEQg8hh^LQqjj{j=_4B3Y<0p)M6R%=Zo2=GPvllWfi(G}vg!KGD z1Bu3K_MyJV?d@Mm>#y;OVL_(_?XcY0pQ{c`yr*sWbUD7v#A-K3^%udm8HMv#--j=qvhRZ5@04k9+76nqPPi^J z6+X-T{p1MDaqIhOV(>@&dvz{dCFlCFnEIl!(F-p%u2r)iR|mM-CGBCxc?C})Lf4O~ zuP{gTi8J$$T_qfRyI}KhgZp|?LVbQe5v_fL?x>e{z;i$5IQ~2Kx@G<`eWc~>By@Z9 zsN!+<`a8V$=DoSyuF;WNm_u{*edDhe%vH<%Vs{|L&XK^8ViUol=hi&%N1m1H+5lzm z&J-Rf&R`abyi{h)bFou6?{`hA!BWkp4<@CSHE<(T73TX=934PKNx8IPHyNn4EsPxt+_zt0B!<~o8_w3&9&Ay|-iz00t~b}hJdF< ztuuEM{ZGG<>V|^ zs(lrMbGFFj-Lk7PxM~Z#t2F_xD<8aofFjWq=@+Go7o!|My)3^i)CH6fMACgmrc+&Mp`S^>F~k%1~FYE8p7`0*OVOT@lD3e>=I90mWGXf3XH8~3WK1DmE4 zi@g>5A_v2!z5o)RON~7ceqB9QJ}V8^+$_=*xE8LAJP>PT`OhE%gNe@#@f=0JM=H|H zF5EJT$5$LvL3$_qN&7>poFI2~BgacwF!xl6(I9Afp9ld_%BH*(HSUFirWDtqZFX=JF8vlIxpBe7^i9OHNSz7KqiZ+10&5+-oe@CSve&p= z*S_jr$A(qbwua*4F=dnaU?M67sYWowYk6iRa8w_v*k;xZneJAB9pZP|4A+N?)ddw# z+794~H5bu2->*xYXk1RMEMi6K3j{X>KwGO=ME$v(`^H4hDd}6is#s~K=rgVrRthqm zSp<{g$;2BCG`gc@;Z*%C&dusSs!3ih88-;vnM5BOZgL+fg+7JWyJ@+zf6wX!)5$o)|?ql2@ zp#dEa6d}qvh6VrZhz3)%CP#xnW>#vFXFn3v$)lrzq@d?~^&-aBjDZ(*lA<%!x%`e^ zims1;)<3U`U9sviS!it@wHjxc*s@mMXLr4|f1d=drgy}No9Y&LX_pJ(or7OF%K#$& zwOp?IaJJ68=!OZ{VZ7QW=arvv4zaGr4bFv~PJub(0HZ1#`}{%0N%uSJru1wbxqR1L z?YsQzZoHJ|TaTAVmA6*FIw>wN`yUnAV|6pO)d8L7tm+I=s)wm0*c`7i$1eKQGiyk|?9190ll82KA52mu&!>FtEH6W|CMyI+-gbo1!fm+$y(DMN6U`Gk&?VdNcu!WLbiPA z?gj<*^86RKf8PJ{;1zIrezTwq8Lg2Nn4_ag#5{m=B8lUY!jv@nQ~c8twZaeTd;7Nk zIJH(zMLG{FI*l?W9FH3Y)CL}PLrV1OVE$9J-cuEy#tqZ>(^l)hb>cgj4vy7Dk4;pw z=PMl_b7oFM;qv4Qx*`w-eMw(M(R5Rd|{3W+)%~L?OKnE^I|~uZikB+ zecw+}mFp^6&gUumpym{egX5dt1B`8RTKw#F=~E85lYJ|E^%9rbp*3Gbdhg~yi^g>c zwiOSjCrR?x>^(c(IrT2QSWogL@2Ow3!>z*3Ak`zMx*8)R^)4VO;l5UKb;@jQ;7pB1fS-x2 ztx6?jGW`AfmAA{Tbgw*FzSG)fS+t@ds$ch#8#$kExq zVhIdtHposg6V%~2NL=p!(~C-7UiN#B@3dDnLPm@f;p$m!VTal|Y-Zo&L~bB4gjMA+AZ7Uk?cfuGOyK(kUpck%jm6?lKoHtlp%>{T&Wl}l2p zelRE8UjYDnfeM~&t{DbG`Ab|;6>=HkfRZa!g=QwUpOenE_OSxP>R_FXCTA`KTw9ID z;=@-FY+x=kH`D*dcWVV=k4{b@{>-v36X2& zTUY_{T+$+2aZT&r=& zu*=6gNsH6bCf()%tYJo$j3Wer9*+?3z-?9c>sHE(s{E{wZ=VIz2h{hntS6)Y7T##S zXci!h3e?mSpHBg^qLQ*`rgRhPaaq zw{Nivr03_G?@piW^k_i5)KGETe_Ky{7_Sj0UdNK(JXs&b>n#rpHrnFt?dzwnMJ0uN zuKaU%2Yi?Ge@ffB9!$L4db9J7J5XCc%Y5(g`KZc1xr$ipi5B#rG>Ugrc37+ZFzj(o z$zzw`9^mW_!e7BT337k_GY>n9(YB9p4gHAa##R4yN$}UtGk;=o3oCur5&V%)fQ!;H ztLakP;yIldlB~_k(R}CTBYr!B9aP+ePNX}IErRaxrpLp_BO$_JDdv5>PVvY(df7vZ zTRu{ku5`8v7^vz%Ahs~_>ASJRg*_`oV!}ULcZ9oKh%R7$H8|gN-PT-2gD3#zJdwl+ zoJmW)a`d?C^xApd;Fyx1&}R>8+ckzo5Yu+QKkpxTglF=TLLMADaTU`g8kIP2x>wE7on@OF(kN z^mSpyX_!RD6?BdOGLMIV*81zQ8R+y+Jw$c^R3AtdMS1nwx$jTHVs(vJ;R-xL{NaJ_{M?zBcRXI*UEX$F zHP_N$ut`h>E&N<)-Y;0=KrO10gM zNkTo@;$R}~7JjnsU$IqvveV7*gPtUMg?IyQ?i0fb%G;f8AXgJx_pCs-=upiD$KgV6 zdsNI{NxvT!!FNewevO|B?IrH|{MoZ%_aP`yLqj=b;vk}d7?ExA;<4e~MVk09p=>vO_MU2_Y7@s1zn8)b9RE80enWRR zghV^mSKjH(ntatr`8D87^rlyx0sm9NiXVC>wDRi1!R-Dz4J|E*h1tUeTkQO$oQn!$ z6*n4XWO(1FXTkZ63Lys7uwYTU-DxKdK$*cw6D>4F*?pcuI&y7zl|Y zA-UYrcDLOZHFRcXq1#`t>-NK2+qZY<(8N~sh+ZEeV{-D=iD^m#76T1KdZ|k;sZy~&nH*6rfyCCWA--z8Dz0gtBa#C*3)L&tjvPrHu1sm#g=28{3z^3 z)KDtwd*m3eoVml-;;Z%7e~VDs*Ng9F5HB@EU7`l%oLJ=0JsDJzPDilA$DA_wX(OaF zzkY-(@Cww=Fa`DRH}64sGnSe|Mc7_4^lG2(J~P=6f223ZR<>wA*dF*i^3Tn~&{VRB zjNm{~FyU-K6$-5a!EQFJ#J_M32~Zm-Io}i_f5o8}nZpawqM%H=dXQD|@JJsmwF>#s z=5tM{KV2Q;(L3Z5pw`0 z7H`6V6tqtc1o>rr7350I8O~Siad!t3r76b|vCGI2e?HtMgBa1DS^cuFWK(fSF@O8MO!|hX|k(eYHFqyCnR~`tXKPr zheQ9#qAe-}Ljvl{F9trb$X;^o4x>**$NgHN@V__zn!I@S;8J?B#_4~&bS0s)67zbq zyn@21MEJOjF=g(@d({i+2?I&olR3*erTZF|=zMekp<`Z;Oi7K+k16W*2D)0U+YJU# z_toa4Jr_iG=q&Z=-r#SSn~G=toF>FN+ULpzl+zEUuiECTfX_SxEO&vEEMMJya})Eg z@FU*J9^C# zM>C5n%A&P?8hPVM6!uMoOY6op(H-~U(6bmY!dWjb`wS7xKR`+L(A{XMLEYTNx^JpT zWz(*-^Xcy^k{t+T2uq8lP%NS4zm-(LU#`@qmu$tMyYdXJ?rm9q9sSQ{^M8qufMvYr z*M1IVral(>GODGeH7dTscVR$Z7{G2Nk|y#1W&1{*drogRqMBmZi|NN)7z_)n(Ml^S zZX%IKS&nrh`}lM71|`7{w?@A`E)H#>JThdg#uAo4%l;8IF5UavR#I&2@{41321)yj zY`~mQhG_u|FEI*k18bcDM2e$&byvxiwJRTj&KA*Y4tM}z1*ZiY+n6Rv7U7(JI%s$u z;gRF3D~oFDP$U_vqUurX{?o~WgtKRsqfG|EqbQwMWL8d(*Or_B`WfLk2jpE84IE+hgXlBC_F;MC>O2x)ji- zH=>-^bg}UDUc@Dqci|{iZCu7DgwJ}QGF~kkSxE?zhtg?0%Oy2+@j>fzW7|4OYT1Wy z-NNYU&2U@Rsrtl3Vs4&Pc*SEw5V|gw#fgx`oZrLroMcacW8=nJD1Ye{0bk+sn3!6= zfISGDGj>8f5j4;&sUsm1Z!+pr3`W|$#4axAw}G(g6;7oN7?ZD2a#>b4^~@VR@9Cu; zzPPZ?0#QsS{>K`Siq)hjG8IN2K2ixGOASfE4FnXfxzFz}jxxwn%Lko0!wX?qj3~0D zQ+bz}xzdpi{U--Vr5$==>t~0WIO7}KV_y||$YtkZel4M!j4ennS)w*9J70vaf#h>% zM0oKlD@+Cccm3S`H3JI{DoRy#zokM}%Fld$?X`koxILFP;_z7}a$sGGEjQ@x4+mM& z8oE>J_}!SN&GR+QjKC7J6X5)HaYJoYO$41@Tm|=UC`o*XSDB@HUyneAX1^(5u^3%> zf{Np!<6~_W#jDgG3Ov)icSO|4YfuuTRXw~;MOg0@&UvFmaL=Sme_oT-zxYHZt$;3- zQcyCo&R^iMP(>F>!`xxmj<~dzk@e@13ZBLIn>M9;`$l0HmM*@1y(qPc#dx2W$2WcQ zX|V0U{M#;!M}LEL6G;Eld#w7d)Ur)q2$Se$5vvPd`=KTF@qCH`ugF2q17+wHzeA|x zlR1mo_3E^0K@eUQISnGyorGHLm=W@udK{dBM_ohH>H2wF(<+UGDYF~d1FEl*HWBqHJWe3($3Znc-%MxVEc^Hoc zcN!_7jk@PE5CI%%CCTNd$;nAIi5(wo^wCj!Ba*!3BZ8%5__lHf8K~zY{r!1}EBv0( zQMsu_KZ8Ylz~gm>7FZ&RhO56`5lemQ{{wB8Oh{}K{Rez*NI}0cwive9PWC&b z*Ym>5V_RuxuS9T8zr%vPc(!0&1A|rlYvch|jyPMs#pIEghDaE4xv5ubw`#yioGF82nx9IV4k_0nLqA$l zgN%ku4!xQ*^aaaZXD=vPl6+zSy=I-cQxq;{G$AI9{M!jQY|Y&PPjsg>vYy9Jh2wAE^~Li?TJxT4$E6w2nQ(xvfoaIuR;qk{2VPHvXdG^!=5|GU z9QT_Jj-v6G$k1J_^25+}(1#Rt&5(3&i_)N~007LFU8hg5FWoyT-}o)rvzCvpdUE^U zolBQg!8lU?*Ht_}4wwR=Pu#Nz-TB@0CWf5HC#vjGDxv0x@m{*DpgV@zfp8mXSK`cc zQn@;^D8m1ZGwPqq(z2kGayHP@LU?ySEeqii>Mw-={OFNkd%V$)!^OBU z1?rs#vBvxK*2E|wND2e}rDmw(#~+yZ;X|%`FrvB>&fM}Sp$3drRg9Gx!;w>FXW95m zhe-W}KZiI~+&Zv_PY$;hCs$in!O7zT!0nb3W#`<-Dm;l#%Af2>k(y$#n5$0(@#IJ? zF5?(s{W~#Hu~Xvnz=_at&GfiYL{K#j7y0^hNkkQj_Q{T=--PyUcMi&_UVqQMUrEl{ zN-)`;l+~@_i#j$fX7q7xEPhwDwe4Q1G?1%9#oD&3{*EcXT<)(8&~F_=dzdy7n9N4g zC$4YfnAfi6qIS(GwYq5D+%n~;p}a180(E4(g06=~EMQ8*V5SBb2@xv3J2Mc9>v3oH zK%0bvW+03=Rk{V3Y#3IUYXiwF>t;-WSW_hg}{)2FU+rLb=#!F6h73)$%S{o1hM`{gVm$>DF z^Io(zFKnH)An2CRAV}B6wk&fn6vJl^cKBltOFz6Q8gySA(b3TN0~Z@z43G8)>Qebq zHq$JZPj;OGUq7}B-w3+8v)6T8k>p&^1+8cGQXY)s;C;%86f8VjoD&ClxNBf-F z!?9~;_-7U^DjxrC$#8^3^T)MUI zqv*uH#c^pOO*-9aPUy{vQp?H&josh&N7)#`$L^E3nO5aI_hxvL!e4j z2Dg9UaAARw4Fk&feDDoTCN^dSSKsp9=Dt3KP`X-*w9zjp7N zu?6Hvml}-|9;v_1>pbA*Zy3rXaB0}#SEEf2hp#bONQym#Javg84pcaTUOTTOqj(?tA>HfmB_FqrVPTD+AZSndj{NZt z0*b;oL~ND18FUksh6exQ8L@05q>RY8X)yzuZlws12T_ziskKBjFgm9-YIV!|vbLwY z2c@|9-VQ=BG@5FA&@PW=(;?YtxsQpxg4DWy*A|2qBXS}xm4&ML&Y%wY>YW(6KQ)Wj zlUU%DAa3JOudj9v2qpoG^qJ`sUtFhA(`UbGrm{m)br(brzucG$QQ#BC^!gq*EbaWga>Rk*(cS>EA zOhj~8_(nU_){e`#i$yoBchBClxO(7I-O&IO46C4_r2^wl5zQ-dAjzdunL;s*GO>R!A$LA`v`CwEa7Z2x!{ok!F!wXHEnhJhXiJnB+Yn+!CJ z{c5jq%uOW4RKIEdD95rA#8Elz_`;r(nJo&0wPO^SHsf_F74-H&T*}encLDiu4OO8` zJ8AqKP5@R*ol;h=Q6nR*U)u8~R9|f470ruz_v6j)+d%RiN_sl|mSI%VC|5}5cKU4f zti7YMl%xokwIpHUdrr=NJ@BA7LDsyslkCq#Zc&5OK_+vSS*q&krwq(zcLtO9$aOKb6%#6EHa6J8Yep?`4m*C?-$@b%Z?#*oEp=bk5x*JQNG{8C}_ za_`dIlEpB7bYOAtLloT#EDq!h1XSe?u5mJeLGgH4wG`yw*7$CHb%UT~=1_`l=8y%J z52UmZju!|{z|UrzT&!o5n}}HmgvIPrJ8JVeV~cS|SCVtF396h~d7lQcoLE?u6IR>H z-6xQL@2OwA-=EW1eNnG9_s_#d#CtmW(%m*Im<-4(aoMEcdH67xC#la1=ywZMhKC*j z&Kbd7tI(GlebyI8nUR;s6_ECOjD+#qb-2#u$4_!_zXCLq( z>u0k~{#8nK|NHz)hx5xzNz{p^SjD^E$Mwgtx|TxDj>un1uHRtw)o`%7K0^sOMyEW8 z=KfNpQ*-=#{B%R?*3#fB;omi?J#6RXH5S22N6zi7=E3ii*f582;$?wzXf}@@rB$&b zuJeM`@e6vESQ^YCj0>{z`fKbS29@ng`nf=`5{%QSe@M*dC~G)n6s7W7m+X-B?o8Ir zi}~C|ln%@qkQF3FVbd-2Pa0X_ONoi+#St>;rAw&^Rmd{Ep3d>tS32LdnU*tI_q!L? zh@3XgaGhd>z62(>)M6F0m>M)N3x_dq;PIaie zEB$4=PaKeI{AElD}%^}c{z;M}}GVsi|q~dE7J|K1jwiUGK3KNGZb$=V6Ap z=cu0;*{y`XeB$Q(?!G44%A&}-6FxQUhNfY+^O;s}Yk=@|nkf=%l(hu{zkX~U4+Ram zCg!HaC5~rs$N!|p+DBohyRSWpBBa~WC#P!;GG$gy`CY(ZEs%XtV>`7$xRU#thu6Op zWyc}02p65!de2VH&{La-cs#jna*>AJk(Y4g)6Nr-3R#(6uhk^I3MWkbsC`-&!&w*; zNT;T2n&|@pgTCjJe_`2{`;hAB^weMU!}}OfA_B~0S9WY(-RN?#&xVpk0|7z+efFq98Qn|~J75G5lBXgNmysEH)I>PGEL#CpA4j)+F14aax zZt#a>+YS0j?Ie1YvS)=$b^Z0?sF=_fJIO%*!9yLZZf47FWY2OoY_oO@hJcds*?D<+ z+`4p|e8?iANZj?}=GNatH*j%!UBzBI#*UpAVBdG=N$Erzy4mqCE!_&_#8o(HoJoX- zV;FTC!WvZJ$NcD?`@xn#gU)9Wg zYK5Y)s-_WHephBW<=fs=kb{)rlMB=-scPp!xCG%s!xDC(#4}eethX;Bw|!?|A5r5T z9m1R3ulrccHX0W|Qlsphh+nL`2pNS;=cHhk3~D1Pej^us+b3u^JPKyfAO%j#kLh|U z>KG7F>OLpkwq87`CmWYwe@HM*0GU+H6og_PSW4O@_?sW#|f1i5^5>dA2aM7PobGT?si#gR?6 z8ul1;^xbyoAZ;J!VH!BgM~>uNDX6_P35UPw&VCB4Ki^W7E%tesM8)o%*uqaZ5HL+@K=mxX zm%O+i=gAr{wdupL`A?TmOqrvEKVMgy8_lbun`;BS2DKr+rsnjS2TG=5$WiiUojoe! z-P=-o*fG><>c=*X4GcP#p^8DfMI~YF3L@(R%>bQLlU`HD^UGG-XEMuH8daVx32Qsv z@I$AaEomG4vX@6uJZ8){U0_*cNO@KBeb@G?&(}!=MpaI%>njw zn*6(UI&tdM#aGo()(avVT67m$CRFp9j*88PgHp;em{Bfw_U^Oe2m8zUg(-FiRprt- za*a?;>#?nmZbfj+B*OB+>)@sbuPzfA4V!t)qk-GrcsXhaZL`I+*kjGNqD+AKdXg<8 zGJgTbS1;afXYF zr;}ETUZ?N_-bvsPv#k7;K&t9pbYqajOCaQ@x zurew~rbVp8p-c$)sh9?m9=l(snssfvP!y)!Q`T3)Oc7dYC6|Y-Cj|DV{!ENk(qtR zX$+i-STV7M&1UTzS#R#jx%_1C;uf!sD6-vz35rpM_7TJ0#X$=ch*%YGNl3sOYdU=~ z8&nZn#cxl#4MF~eAHJ%Q=6!5Ocls~NC<`>nuhcKuO*=_+^zp6_s(u8ik7f!8Uc8 zkSmV50>X);xo5%BkL=hqv&6*3kU{exhz>2p4u$>Rnudge!bkk?>A>2vP-;tjPC!EU(3VnN00S`GoX z{%VXQ3uFak2U5nKb6(A^4gibs%xX=(O6KuTf zrRJ`2u4fbGr8ODogKpaz{SK|(?Mj^sf^8h?`#4RS>FDSta1JQQy8vv_4-<`cU~_TekgJ^zsq2R@znO? ze9Rtry3x^?ixwWbgn7H;B&7Gl%SjgJuW)E%Lg62&uwsu05bhV8Q+rhAzZ;8CoW7;S zeWDpppc(XOy*sghlZR+kDhg6SVVn4$)O?N^T$OBjW262dWC)q3V4UF=!=VD~sf9z_ z_rFEO;q1lyCzVFP-=owxFa|t%JE#8({~W{iLtiZfE0eFewEn6KX@_z1QWjP>Tdpi# z?@GOBx2kmTp4Nc~_wR@5bx5XnO?fC4` zKEQvdzkcf~(3g57G~w$a0=sV{?Ev);pQUBE1w~dvWbFw<@a82rr zg*RfiQM<^o1h(;*f<|qnJvATZgM@fz=(Xd>F+o@659pspK5aQ`@q>&V|4t#3dc33m zBY*e{EedB{FiS&WK4SiZrYn6ODiSP12?Bnt-~0f}D>TMo^m?4QRQZf|EVmACTLY@? zIT{49@7rUp;>CP$8&A|)_h4!=UMT+cfymwMY+1l0q167xve<=0qD&`YAk4JC{@?U3 zc&*vHCyRP|+D(z;1z?#z&|kRnp2?DHw@BP5g&(td-h~S^ew7jn(vvrON6uC^UB(_S zSw$2NW36hOLbn+3D$Iibkczuw9#nA+RcfU$ka(RHC0-#@e(%9*E?x!_KV}xL2HEQf z3?H;j_EE2JND?SZ_H!#l$8UNYHC;${~q^%tt+jjsok9Wi7 zN7SADCts?>MCV7yZ|ypAq{HUgANz)_dXOFKH~aUOS)k826Aa30_gV*;UEG}y?#LH7 z%edS%zTO^ie@yX+;y|BOPw$)Z@!5m}6Q*7x^WawVtugo$Rq_+I{#NhqfZksh0llX+ z3$w3gq9TyLU8?K$&d)Eib}XJ@uKX5#!XR&vd$TVKu{!bdXScRp1^-j>pr!fp*!kBg3%T2p=!IP?w#C*EUV}%@s9oX!$2{6R8kdIAucXXTYIobzSk>*^qAhD!Td~8u~ z*-(Y?={$+`CNC<<0hTZqVA8F!-=aY`oOoevIA$kH|!UZKUA9Bn~#6RdPz>-qSEPP61V^TNfVZG z<{*PnaW0^Mf$_^x#MhiOT@271w(}v{Sv|rIc{cf-G&1wP;}q~UY7rdDtEcpO;lZOI zc#KeOs7+Cj&TEh^34(_sN2|O-=>di9^F{J*&wH>%^6rLuqh&>4t^ekaAk?>tgkeff zd(46f>W*mJ1Tsq>t_Yh4WT70gmwk8Qr-~Y@Xa0h&r`kpmnSw0iSh{<-%wsROHM?q| z08C&48+`rypBHaH5%&YAy~Z*(-ce2Ht}dF)KD3Q|;*91YM8J)00t+N3vjuPaBBG?! zj-4RiwaeKAzG>34soB-xhMuT-)h!B-4hmF>Hh}uD03Y&yx6YRcDVRF>&0#bFWj(#B z{afFz_PX0wiJn+g2WNj-TA-=yr}SM)-Vk{IpVIWNC%;I%Bpync8KKf90#6v_rJMbt zUoA{LNF}>fd$krEo1tQa8gy-Ng(9}$IXkZq!7Hqe1XJEdxw> zf@zA~EI&}=g&WJ#0+0H^?P)V^94BTnq55St5?vo}_Q%*mL`}7!nyp4@jqM;DVYv(! zt^?%>1IBwe4;$YyL#<`}!W^eHY1)KA${FXtKwiR5w?G3dg@^9CwMl$e``Q6=u+>zN z(t+hI#_)>>1s$(>Hp6_ypI`MvNoli^rv6i5;@bQ`nFoVeDP{k1=J++M?AF#{2w^(P z+V;-8?@&cCs+~29W+3xk9L;$czBPeeUe2zC9vhf){H+3NQ-7LHGJ%c}M!_R>*=KEc z%+;$`o1XsOBGq#r-As&kr!$Jw9v*~XB`{wJ`MgL9e*G^#$7L&zU}R71S>8nAXk=I| zc1X1;arT*eDriWn;538}o6VpOQ;p$2lYH~m#jVpvx`#6Uj}A44`~ z{$l^*-`dlxQmn4Q+{7__q>0P0$n(#soT===P?_q{O)73msNE{jok}u@=Q<-BjOeRr z#0>Wwj!Gprg{ zr~kZX_Q$_j-;SMjo(byypHi7IPy#?}S1F)iBEv+XMCy$Vnp^&}9N=u%wfLuTWEl@c zNhMyJDy-1w+vG702kviTxzQBF0JSxaKv7UUzJ5FmEH)pJwAp)b)1YZ2Uas3X#R^2X zhIy{6XGAfyx+hr^XRqmWzshgE!sS3f|1e(v$xhPF1Dve3-YnT{mhQ+BrNQDthM7vV zZ7LL={i-w#Oaty@(g>t{d>#LO>>Ka74n6#LTWvtvB=1&D+`a*MiUH#3!M zvj0C6|EE;B`@8@#I}HhLI!Cwk;~tqMqK_ov8k!%e`z#bQ475+Yt-P|v`qbhxr1#>*2=`{J@8;tn*s#(Ez2ul zDyPx9W>{}*rA)kP-wBed6npPC1mKl_}1eq*tv`p3I`6>)FFliIzy zQM5^qx=s7+v0ky7#rbsG2q^B7yv30d>6%3->W`=--wG&UFQw=7w?oM_V_V~Gpuvk& zcI`ebL+Y+%jk9+d&;=_}L_&f7UglHeNW+5Y8{xTjNv2DnCJXi4K$h2M3;v`ubsKJG z2HypZ;KIN7$GX4weXfnGT7J4&=vwzZ*dg^pN~d@$_b z2w-Khi4_33jdW6vL~!}r7$90~7osEMA$OpFDDG02JMr!v{FTypH zlhbD;x)$hA&UDgWfETKr!lBkmw1K}(?CU2}P0UnW47pwEjY`ogoGvJky4rUzHk;S_ z+`u$>GsL-PB+gU-8VE^*ET~rrz;DJF z--i5p$|H!KoWF*#df%meC}B_jJ&RSsETEtWzmCK4IdK*Mu5dncXo;QgG02A@{X~pM zm9Rovsy!+#+~q#`K|O(&xA$mTwK`gKw7@y_t! z@Sgk1f$!?i1=cV=yR}T(h^_PJjbfnIz-Lpp`q{4Qf_mX&47eB}wtAneefE)tv5H|t zKB<8kUa6^#w5{uf-BQxw$C1_sLdbqaZv#s61iCKfIn*G*MtypTPXJ_FBiA%EB9o(I z_h&&$qCPR=ZqeXdAKQ5-HUAX(ax#8-`JesD!WWe>XHF&;WhaF8ywEVV4>Ih6$}VW? z*C7kMKyQ=Hya_rI|4^w`4(l%ag}d+ zyf1g%+tEuJlRPvXa!V*p`i4;KEkoaDoi}Yd>ZVRTP7zNMl3QEI1x(IN7v)x*+UtPQ z*4q0YixJprZEY0&kP_oLPYASyQIn#steO=y@Q6^t%CGXoco%e(&j`M+6V&!rcvar4MJfN2jZ`!l^RNuk0>Mi|8WLyhsXZD`SkQp zf2cj5hvsC&4xB!$Ig~4Hh?HD9+--JjfsTnN(qKmTYi4^eeeFFJZ6~U%O1NReK}J<1 z9WrQJ7wsLsBkk5-4`SDQ_>5E;oUm$^6ea-9Yhgp}9#x!49p3<9ruvu&iQ_&S)f~}P z3dv#AX8tPUn-Pf_@eces?q#q}g;NTS&4c@MYx8E9uU0ap2YTMNmF-W6VC`4*( zUbiK7Fkz(TjX9$Wj-3`9sDw1*sEKH}8;D-<=k{SUr>l=yU6RNbUeU1yNx==OU_|9+pM_~a zmPu!-$@uA85}+XsCsY2$1yY9bwxBK4TtoJrexQL_Ej5nkWKTHBAx`~;&RY^BJ1FaQ zWu4AU@7SAAVdjaxvGnebk9dS7LNA6h9NF$XM*lP}mn88S1k6WdFM|S-N%P)tEVe|De=6sW^nevdg~e2@zBM0 zI%{<1lbG>GJ4(J6fFkb5I$l@Xh>UB1${Jh{HrCs?ZS|(2F!jy7)ng4h={j_S@jAF_ zMAxl7ANoaQV$O7hHF(T*@P^)x^?c3^$uRf+rn_CYb43kmGUk=M_xyAExZO2B)nd=q zVhg4LuN)*D{`MKjtV(QM+ss79`Dj6DrbIg2pKl(Z604&$^G)+By1Ke62l7ktmCvg% z5GW9+Xf%~Syahr%)S%Pa2Y>#Yf!fPjiJrvERheNu8d_N4h`#yQl>cwBmseNH%!S8@ zV$Ab+SV;gmF~l;<)|d@t<4Tdz;w;ThJa7Cbn?Z2)y?Y^;`ML+Ey^o#Ot{q1tg{?+i z1=ieP#PGNJ0Ct}lB|c%ylKn;C)L;1bh9zeHqq!K}IAC-RMD_z|=I?sWBUYiyntTVi zx5?`fyY19v1~}Bdlex%XD1*MqCjueP`@6bqb}{})gvb?)2)Yx}n^T`{Oe$Oh9jm8XoMn!PS1aGYANrvsNKVm==AX$PQ@o8tswSov5(SL zwM`(I<;NuYCvQEO7Bc1`Fded0t_;w~bt(Mk*mm`_uEESsDKhP36|PyWU5Wf*=IT(* zw~=aAd(2b#ekce$inl=Dy?gJ7j*=Q(X>On<^UFMVLR%6gH;T!zl?Hk>~9+ioYD1&iK1{P0g=VS4Ji8ez!nyi~A^LZPYy5wQo__-kkCz-^^e5 z^C>4FEyka(#ID^jK?c?r^=UE$rwkncM)*C$28gF)8Xrg62{dd@uwK5>s!MlD`3!{& zN5?n#klc1fokWq!D+h-#_4sC2dwPdoZJOnup^dCO3aK<7ijd14FyZ*VU|KG|F z4v-;-`AJJ_uNIRv&SDZK0qv$8|A39kg>6BXJ-G8;OF>&PSo097<3J z-e~@YygstiTyn~kqx;BBODfwYlf2x!gD_j+h#FnmDVZ(s0u)7ER%nEM%X#RrkhYE7 z0xEe}BjN`Myq1kQcYSVve$0-)+8}WIB1~uvSs(I$g5s4uX@rosPvwE-ikLb54NK8viZf-G$cd-Kx2k7Kyob#M0n@-`l|Tk5C{n- zDkq?=d%XcF#_{zQ{F`z67hO}?i^Dj3=r<#r>1eeyWC}=3HEncANJt3ptXoRT+67%B z9v2D;u#4ZHAL+R_&-pfC!E5EX)fE>j_9R6;s~$plo}I$b77hHq31} zaJK;+b8b(k46q&@58)$aJ0T&|2Ozwo6AoDyu?g8{V*_tn3HT*j2^EUSyar)yZU3J`0*UgA!vqNCeZMn` znl9^*ea@Rk9qslyXJ?V(_ij*dWa~MnHM*7S2xDyNv?W*Hl@0ou*(Yf+8UEUb z-Nz8&0X4rcvP6h6erbof3uHTW?FndIsUn9JWN*u>@ zLjjuc9`8sqw=n)+Xk!YH!Pe=?xF&5o|Jcb}??Cc`p> z9e$^B=}JDM$mfv#$SA{7!Ds*1Ri6>D#hiH1T1r~p8fR?d`j)gAmf;DN!P@301`ul# zeOI=Yz=JkX1{&6Y@x-7F24#FL(QBUMY^sC7Q)kFc`TWLz!KMFS(*JTKG2!c?Vxu2W zWUP2xCZR4CkJN6ds=}a87CiVGYGSOnd;aogy*EDU$9{$g-k1**qIcX4>it(;)!8M(ptLe4N_r$O$Y#!?!j zh=%q<`6FfYXzx9E`0U5{<3%!xqDAeCq5jH9|LW**$jmn<{#RmMiiL=tW2PCoLyK6s z2|@1mMF%MWh{{jw=|Z@GMHhynMTYQTV-#z?^(t&=}sZrU@&7H*=8(5ij4a9VPN>OYp}Ai^0|fy(B}c4Jb@Yu97puJ zfJ5|ulBA!^B!^8M2i{Y;7>g99`bMj=sm{Z7DyclsgqUz<0IdB#{EzV0wZDF+csvyz zL2N7=e=PW>Cm9sYu0%HlabsFMMh5Os{2Iu;cGEP|tX|z>J2bKD3w=Kg)Xj2|BB3wQ zMeODel4l%`Bv*xdIk(h`zxi?;sn%F_L6xoZDQLdzke-~tR{d(|gW#|g5kH37PyQ0wT+nM_IcH1jjaa^C=ay2x4`zSOEKSQ*wtgh} zspM&wS5>2Ab858}9nBw_+@q64hAW@yw@m(^IZu6pf$m+)_a7lxrFb4#kn#0eL~`?$ zU;-D#!&iU2WzsUsbsIKWknQTN(8qmG3&Dn0N8Qe z>(w;U>c(v88$lco*NSE8g1fOM4w+yNWu)F_XUeb7SHZar6)qV1H-DYvKHWJIXABL!agNE6W9qgd zQNr#B69gieoY1QHt$&=RjvTm3%pv)!LQ-Cpb-w${pEl^dNhDY**TlrrE{``rvC7|@ znzIZuZe-7<*}%=kGkIUOOq>fyk+!`YRSsBNM%uBPbb{baeRBN(jnF*k*Fwn13_-14 za6aUCny3YBp&bE~xN%w=$J&iHP=Yx}#v5>ZZnv3o=*6l=O<|o99(OzyEJMd!Fij0l zFsDTc%uK&Z#SJ9Us2*ii?1OXj7$YHD#h*)(As+C4D&7;?rr?ZtUj~LT`!jnO#~uL< zX{$03paw!>bAHKx3yA#R1w9@N5%9SGRM?OIqR%v~vj)3}FYGy+>gIau)dC50v)6#@ z(r-tJpLiyB;D4Nq7{(V-4_~U!ENotKa!Aa`fA43VnTis3vG^64ocl~A4P>-9NwT%t%GzO%0HMQ7t-(pK_ZiHH|2Sw`C7kW)*M1Mdx+pRv9C0UwDUY|ICpfY)>=Rft#eGs$q=+lKb9$cf9Tqd&Nn+l-($)*;N zbkk2oUZ>!&x+30;7UDPH-lcVyec+6g)IWI~HkfHC{(BRSpc8DfyubLCrugA-J}Mm@ z%x0!PLTDr3vwbxZ=oJAa#)J*5lim{q+L`EgxZ(@;f|fYqGAa@+UC~BAyJ;^SpKMQ6 zhd>1G)($ZiFJ~_8%|63D{)#|6IEkmmnAFV@RyB0 zoataD!Yd10i?$_Z6z|6*RLO*gXMjBcz;I%9!o~;e{I9oQQB1dDzmQd%X%@=7ft;ed z6Y3mYOre$~4sCtwKWa7fU3t7gcLsF(wmw4fHv+syXdU2!n&0W*ruH1cw>U!U`76lj zRYhNuyHn6YF%;vFa0Y&Hxk(pL9UrdKBa|SA^puDm#X_+4y8n1Skb3LNnPO+11nii8 zS$!=diAKdZu>?v&c*sk^t1}X|HxbR)l(l^t4%uY}6A<5WI8)Q>)CXpxDt@FK#*VjJ zrEv{Rz?p!`I}YeBHd}Q!BMJ1iQ@my7uS6t4N2MFXr#tCWjV|RNEiLVf;lqWl7NBI3 zqbtLAipva$B<<~omjb>22$qp8mX(!#&r@0PUzW~hyR}<<>osd|D?JpsV!35g?XlrG>`Z${Z zwP&?dL2?!17k9D8%k_bzFwmO_D8r&X6bB{W?KueJN2<{=5ICE<|AZ|lBWht``cDI* zgttugMy^9larJTLyfH^MpMx$VEBnHRfvxA0m$FLxQymp3)WFqiYf=F%?6{n}Xl!k< zyF6@fXmCCWs!3bL-|!zdbwJ3K*99gEQ5)`Kp0NDLBU#j>#eq;^Af9dA!0c`LDY$J;b5nz0Bt`gtYPG!7EE>6N1s`F7l;JkJ?tARor?#M?}SqV`*f~AkE!v3Gh;l zdmI~ZC!18~Gx$wxM-}d*A$jBugj34*=s6##x+B?7=8!`wfOW<$hQ~e+1dq)j#z0JT z*zmCYN;qiCo{3fx;NdxO>1;lmT0)MX;y9P9nuh@4H$Kx#Ifz~trQ5|D+9qJP_KylZ zb!*QJ1n>G?efsrd8Q%=NuvwJ>+?OH01-=0E>^7UM+*;aZdbS4-N7*6PQ=9WZdEjBjwwa4n_&gN#+{YH z%3SGYk5pS_GyWoJaybFZ&<`bvKgvp(5@l%$ny$^C@`wZPJ9x7X#3db(y9L$C8Y@z#SGwN>n) zccf29$S@ELT-BF{gLcT_$fnDouOE4-gO*m2Tk)~)t}I)Y7rPD$ zWvF`3mRHTNWL~6Pjs7_PUh9tF<>YB7&UUkRTu?AEY{oQpyH*%(G$|TAlH~IIFZml? zeyV2|%D>e)on`uE3yqT_5Cq^6z+aoKuM*`tFwb(NF4NPA@czccgZSjaTiT&2_@jkZ zF>tDSm2@rju>VeQ8Bnw_(&icHU4&){O(f}m2uu1MJbEX|3Iz#9H8nn?tT)j^2Q*>2<&`?(4 z)&0e{_kpL%KC&JDdPM%P7ybgziAPpoqOmfsr5)<;T17@HiV9rV&)+G+6MO+oG_ta? zqLr_V5A)1rI#ImqM9fTlhaw;N1(&k9y@8^+#o(4w_xZj&d6H31nNuE!GT_d37P2}7 zKvB04O{=z+?nfXhvCsm#zdyqBj1@L-W1*kgH0IS%WojzYM} zjwjt^*{$9f#xN_~F;X$>3uml26gxg$W{KVrU*vG~R}4<#f;ke=Z$qLM#*}#$&JCB` z(j)prf9*0ZZv-FQ&O7d;$`=?reTG1H@v5hs$Yd#SWV%<>ocxvf6lT?p7R|1`vT8H7^_dfB83+i6qI!ycQIZ9K}pY;l|KlOiz+hRN(8nhEV8t^lk@tuL%yp?6h=nqac z57z0`Dhe`fJh1kIc8p|C$i520=Vfp<{m$?!^K3GHghxNn9DgAyZpiYJJKlX?`(0BC zF^8yyiVnLp52h7Rd=2aK@LVu9bD54)f-zrMDWkH(>MiRr2FfOyuAyxTXbFcJ7{{HG zCej}NtxgU+EXE(dX;V-j$b@IO)sK(sf+9!cnEr;Pl{$pU_SwHsQi>r>;76ldZR@FL z*wij0%M81ba(RwV)=QO)GW7o#z#9tDa2PvGg(Ppz7Jmu;nvR#LDn@=K%+_ztC#&LZ z!%9D}7>NGXgZ>`n0etRK75o>NjPj4XBuT}2rlU;q(s0jZ_Z{6unz>KVL`4d$#H|WF z`0I$;8MR;jH4;ihqy%tF48OE-Q57Yj`%j&ceI><*tO=_Ww3bc4ji+duD(Ua;Kgq7Q zGktKvV75?LyWOb_8OP&-Jdh#xRPOVq>yP_`6W%nLaRL5hXk!5s_MfvKd)(fW6-RvL zd9bfzqZNNa;;NYf`1cQyB}LrD!*yc-hXaM!#7DHA$yPW};X25VZcgJ>jC$^L zAj$5aQ1(GjKGC_z=rMsnxw!d_e@^c^@Ey3MZCE*Jhtd1_;(1&=?o`numM%U&5^VZf zQBqWXUs*NV?RPRszu|*j)gs_9rKdCtw zC`vR0ZjoZQQd*?Keh^E7+zM=;Ol;etbdpVdb*m=V362_~lIkZ#U41h6jr!B=LNcVS3#y+BP?EA=X2~!IXl~!^j?v0OSflQ2 zpN$}H{5vXa5-sie_x6r$C|SiYazaUSl&XO#lT^hLeA6v2TQ#iUb9yow$gI_qz2A|T zV((=@>SLOIbzl&j)JlHpH20xHQHbr8zixxy)}SlPj_=$D!%=xYxMY9}hR@7?>etL_ z4}^I2@$$P*1w|fbZlFVV;ue`mw0k{9K|w&2hiC5~W!KB{u$vS_dG?Dc^_~*Z^s1dK z`k<*AEo^PqK~56kmmL;*$dazaYz*#Ws42&I{^?#IO%Yac5VIoP`GHzl01h9B zA=RTovbO6%dF4l-)@=EPt%`E%ajrm6tIo_2{0HTXKmT2F&c1m@_g!U~8{9=wX9$=e zK5&R*x|L-^^@SzS4CfiFayBG`mX+%pK32OhCx18uXwr19@SA>*x_;aYLi|X;OBDsV zVhbT>H_!Zt?sAtf;Gs8QV7}7K?S6Y=NjfRuMs`K&XhodDdAk~;O&f%R|5pD~zO%!7 z_+=#Oal!3k((;_61924#6RPK$xSXn`C5{g+4En@Jiwl*+%hKJ-hq6E0@imp2n<9K4 z0|V|DC1Uha%#2kT;HH+ZzwZ96;L19tt))9z=XimKM;4r!U<~7<;(9@wZW|+sU@3^i zD!ZDiy!qL9u^h}NpVD9o!YzzV?GPBaC1!2$yR1tF0D4F$)r}^473xM^cvVX16z!*v zIYM~0TFP%ZOu(LeR??mP@zy0K)rSp(T(;LlBMLp4vs9?(*G$_ceTQ7iY?X!=8J0l~ zmU)5nCqi8Vnd4ubTs!@;Nv+;`M|5NSU~h&R6PpN6#J6t~2~n8{Fj>Lt*4CgJzMW!(eI$=pE%OlQ z!9St4*-c)*X(kQ`K>>>gzfTOGKNhQ#ObK334u1#2ajyQ~_)$d)@XS(xsm3D7xw>rcNBRdH1phsPG!G8dsHJk?l_T*zd)+*#a5O|#*luQa5)48 z{91<;s8Jl(n@h{T_Wm;cjC@l zDvH+@g3GcT|Ka-DS1bi#SUdwFaDVNZf{gDiB@EK%i6<;Ww@8^+sgs7$7gcmQVNTT_ z(L&_0`n$hCOyO5SqJ{09qK^xe^Tj_MKAc;W3%Q+g?)rDLb2asamlH>qHL;5>y^V-e zgQ80D+d;WYmn6#*O5sU9SEPy~usz|vc&{GYaMGK`FBYl+*CouzifRdt9u`I;$(E7)3K_XVk$6Mn#%u`Lsh88ILXvwDN(3un9-;=sZYJsG)$0bgL+l1W4mNzMsf{`-p!y397l~ z2&W@_^%s;5{0N)sWQ=x9?>^f*YCoI=dcX&zi03@}$b5|;_vZQTg}Af3&cwt&0x8$@ zpTJ~FRjdIZ;>fMC(&X0qccQRk4~@FLviFK3KhSrI@FT@#894@auDJBjjCa#BmfoYz z5=i!=EVaY~QqsTC9{!l@SQD?M>G3!eV&t<^(vziIk~$b)+@~HmjamVP!5;y+3?iHC zX^>N$;jJUdoa?hekO{75A!(A78(#Qt*X_Cs89CXLe*(@CMypg(+2+0o-^QMb*}H191(&@%Gi} z6`BaFkY!F*`K5V~^khJZpPsk!DT5DDAw_n+bA(?%{rcfnNUXMih)Lyyf?(V41_5}d zz>0MsT(FV7y=n)S++SPsKpwtyA^1ebZgt1Tz03c*wrng?$&&l`h7yki&7^fQI4=Y& zzB^;2fo#T7Si(A)Le^QZ%6NKpzi5&$tP83wffQB{eEC$(*wx~9v;7^iFL@~=&nKI7 zNGgf8R5scW#(T=4SdMVE{}l56|v*@X|nHOXRjq2izP+I8ymTp5!pf zv(nm(_N#e>Om&hll1o&QraiOmcNpD(vYfNBsNSDvp;xq!3yaUmAP}5?KrpXN+Nu?p2w)Sk~y0KO;S7LN%a|;8!0@5W(P?Z9|aYgP09-b zg*3&jGO}mT5Mapg5%rKF4kBB8v(M(RihyMG9_ACsvC16icRUY-gwOz>o(5~c+h$CP zcv#HryyJ^)C4QquhE&)qxaL&o=nHKMweRPnR$b}Cti4wGBc%gcWtuqfJOdw55*N3Z z=I6~u06i;Q7$&UWZHbFdkS(F~cV1Nz$&5>~u{i?Z8x4{$ecS(yqHpJKV2XgF^OZEm zbvx|`A6F`LgRQ6B=r_7~M(0l7@sO!|n{9?C6rAUu=^&~`rWNRonGu#4-m2feb>t7dg9uK(u_!pDL71-D9ls&ZdpQ!pd^ z8fezzy?{{o2P+A!aF<&EJ0uwCF^FGxkz5M#?YS>Is)1m-Kr%o2J&wgt<;OXBYHW>F z%gP?W^Q?i1X(InmkdLNSIjVZ6KeV<=fn9}|Q_GOUrFJkMBJoi-zDhu~@?$;7z2No! zbK6P3Lw@zflxOAhBeJ#q1YADG$v;W-?>PU_R(Xd@AfA153)q*P zQ%dP=r-N>)eqY?eWGCY*IVJFLZq?2Opc^K{PP7bZ5G-d8D^!d|%d1h3Hwtigk#aqyAcK4j-s5)ct7S+@jr|~*0_`C+k^J`{ zOXE%R2caK$nDm;9rJ$FX_b?m)0aB@Fsq_G-lmkXxKvvbWqy1h**LvHf>97;oGYeoC zqd6WvJUm9mC!W8H;yr?QmlNsSpg5x)aC}r)k(aVEuAW1LS0$>Wiz#RB~%;0r{Itdnq;O zCldtzTb;70w-oGJ)BZiY)wX2wBu*0VHR1}R`kBl~?7=ZW=*DDI#3(y)m|gr*{WL~H za@c#zWJ2qPD9M|9>~3Xc<p+V~ zqL2R#Ncp4EzMJ}!ngmuikqFu(&v^u*;ud8^y0<5%Os>=M?!IDT`Y91Va0x!Vs>o5= zmPLBC)>|v}b*7MKieLmMd_w2flz}-=+y`R-GKlMAGvP;F*TYF#?wf($9Z|%$Ia;n~Cg zF|&6t(#F92P9?d*H@~RPYLIYA%iBdJr5YO(Tbq&gFIdz@+cdwYOcpMC$r-(9I>&Hwb!`HPTZ^+T=g=)#vD3ixVJ6*An#dC zME4k%A*QR5GfAD*z3WYlCcj)OKwS!4czl#P{tcKmKG7c1s&@-lVfgwHeCa_XE0K}vruKS0n-qv{`)^ZMD? zkAYH+NctyT4-$8*H8dE#{%Dlg*NiDKlwWWB_cj$bgh{DGQ;W6Kz7CC$m(oki0AlvsN-IZ%rUwgm&^6$QUlC#yk{ibb`D)aq0X1=J;hA(ZN8w;CnLoC9Tb zB>7s%LA;DlHlWw>S8g5#FmLS`@=}xIG;2d3Y z<&K2uqM)^y)?V!8l8_Y>Lg))*H)Lq|$W|`$Y!k-01ebXPlBQo@^bz1S1YLOB4t+RM znlbV=B`4-~F4_FYTbX8R_Dc^{JSPIpf*lVfXgHB0V07;-fbDW%B!!NSya1huEluvo zHStdUC0Ex5>^ldC33(d**LySlcv+4Ix=OczU?VmCn7$TYfQ&V^DA(N>!M}fnlsq6; zYS*cg@calubUv^c2~l@HcUpp0iGLo$2pPW`ui*XQ{;}~u1Mc@KoHQlJO8UB zEPNu1O)atlLX^X!30@y#Vf!1C(f?d2 zX{5|8d6G2_-t|8|OV^jv`kA3~$AMp&6v`Dhee(S&vYBRg8_6q{0(qySaq2`UC zD>5M9!RBTsf=VojKt+#OhLydC*kJGp>cL-!t2E|{zKuaVyai`t&uf*QTh#FGi9m#X zJ2lt^w7Ec5VB7c=No4pRe)}Z!1|+!dd~es{%*kMV}aq< zQ&vC*$+7wDIF+@hOSYCa$A~~$L#nW}j?$TP|MIX(raTKA({z^=zxg)&M+)fSJLE3> z9Z?O>rug*t_e&DO_6yo&@`=Y(l zQ^z4&<6ZStc_R0h!O9qg(2BQ1X8U?AlyfZQ*$9{D`mc!Engy^S4t~!6O4M>cjS0dP zdMKmP3(+#ZzC}qgD3EmXrVlL)X-|(k4kT|a|KC`Sg#K?t|KCqh{{H9H*Q?2CZ?>h+ zgtW>D?|7^RB~NrRc9cY3oIe{MPt1xJt$MB8qjnZL0);LibwvSBFAY^sE4gQy2ro2Y&G~V z5MXDiAXdinrh5Lfzu2Z2Zx&*cPR>&mO2AQlBY=HEgbuBjDJ#4_a z$J#tk-OsrPuBV=UGa;>~>sDV>(&=qlQHK-jx}yKb=%T)0gjbup=LOv(RkI~$hYGaa zV_nB-48qQ_b>H|wQXk7X%;DPlID2swn#h%}aZ|~z^~uT!4zlsYT^ED1YwMSYW7Qg~ zRh5G-C(0^~?%6}!^`Bp`k-t`uM4ZDkO2)|^!F55~m67zIxniNu`8au`(;>UmiI8zg zfs;0@&c6X+SI@82Q_!JE(#^5Litgts1aDUY@jkr5mO!Zi9cu{w4Wxtr|2ergnjo9= ze@j2@^Pd}2CXaV2(br=h?#KDWF=sZ!@`rRgVK`1z{X>V^s;zrTQsRJ~1E^SQ(llVS z9eE|I&hfw}bkCA)JpA-YASMgjCurj^QAbCsAY#vQ}Dcj#noVgsmd}7Jjxk41& z=AW@7UwlPKuTIc8z{62N&WSnPGxU7x&5f!p z*BX5t7s()fI@G?>a#BeH6ecdH)yF5WOLC*ddCd2D=x%husPRCapnt@h`aFq3UAebe zZ#3pJzC|z78RQbuj#LxUvyHtno+>K?;?wY4WY~Lw3&Uex6XUBuD7Y7F0KS0bzCz!U z|EBem{`8yQUj8!BbL?8bIt2F7-vN<|gR2-rpwpZS+VNa36^)yXG6mJOB0Q(s4)0L9 z94)qMP+k|d;Msnk{x6nzBS*F*k)3+Zz09G0^ZJo8C?9ch449P{iU~G9sY~7*jD|yu zy6y1B`Wy{{Y1&r>zph~G`UPIR`tW)82dOPqMI7xkIum9vVt z>TW)$uD*X1qK>cJ6pN**vA?SmsVS>D%qoqWuQQ`=AzRB53$#;5)^%|`HWP-KQ^M|O z^q9}dgDpC?hQ%Y197F0`zdQ(z>0Cs{J2a1!;gAJqxhY|g)Os?{5oM%CO|*&vWPb^D zSXg|h3r*jvX+U_+E+LPoNQL-Ss`|O1LN&*?kgz5^GlWVSa|JFlolvr~G$pLam^X|a zZ>}OkPvt}cy+-89|5iC|Wi%AbRnpwvpS>9hR5A;%>z?cY$;eLS6#yx@n{FhMf&=$) zPPGT#G^*>zWD_KKE{a^1&J9qpN0Uj3OKu-3bh%|U4T@$XhDWPV87h0c}#QP z&t)=5W2;jVuKIUAIfhloBE$$#_uMb3^?kZ1X4XuC_s}=|_U2mP$BjuMm7`!620{*s zZ@Kg#$U}O^U5U>m^GL$iWq)`}2$=wgJG=KNOJ?^!9)-8*3vDV%MgyKucPit)!ipZs z0Eg*!K(On)B+8(8lNT3(b-cLRZ-k0nnCmz*{y;>E82^D>{vO!U)lWMe@g-_ni7Km= z16d7d9woC&8dVi}tvd;R<<;$p%0H>!z9ryL&EsFK&Iqwz$$oWtprXl?aE?A=b>{I4 zIf82ol)mB#+aEyNn}@VtA!70ychmRAk^8fE@IRjTq+i0*yV@cGnU3x_{9NF)k=eCm zFK{`}|2izd6ZO@!YK;D^YOnG$@e2cmLM0GYfIhCB`oq@oge?6QrV%g~CT{Wzyeqqc zbX#tDX*1HpKUjkE>`Q_Mb53~=E!cgczDha0OiUsBjmd7CnQ7dNYR#$bDBgu1Ejh^w z(BdN_S-FeKD=X7$IX(Z#4>%-vuS|@uRa{Z*x_(FjzvJeInMp{K$7$02!}2u3XVl#r z|Fw%vWaAiLbH{Chtc_347L5ZaM`JQVt)2y~*gs-L7eX{w7Kw332r}jQR(j4F5|(N& z#ggrONt2bOLGHXiv_~};UzxTS&pX&gZqmWkowR;y7@sB_68uqJ|)aL^Q@%xP^ zotc?r?vhS_*Y7U}jWIIbZ>5q!Qms19o7_L8;4s_djk{5yjvFssp3j#;=GhFUAoa5- z0m|Vwl z0Z z|861YFZ{<-*p~*2Y9;o8+LorWNnMARjx5N(u?&^YH#<;$HBJ^hTJmjJe?d_r#_}tq z+QD%>jI(~wom!eVm5&GS0fyRFA_HgYBLoO5mE7qqD80Ozu>LY-S8H#vg2`6*M1C#k zbywtW-1L3kZSXK${cIHwdE!-u#8qSTvFV*KY0AvM{3-Z(kUuYj_1v?{cmBsiy(i5A zvBu=$Js`#O%tt$ced@ z>WOfT4Dp+2z*Qfwv_97Y=&@|7u)VN#aQ=|5wl-AI%^HY*IDVGIM0B3X)&yR&0U!ay zAHoFe(jP-%&xaA+l|1a`FA~v$bcR=a2QZh+B)hKd`UgCIFnzCq`NpvK&jG{NjD5SI z>$Rslb{(TR{1fXhAMD&a5jXz{$$r7lujvhRAh0a(NN>OY+W*SU8#@2qRa1T?o9xRT zyPLNZi1%OlHQyJ4IpAUqhj%?fd~jj-A&RR}Ln|xFK#I8RZ<+I z?Qm}S-0RxD)KNnG`KRG#E}4r>$Jy+{)cUnEnDURV z74+xLoztZ~)5{;j&Zx`4hcZ^Gq{udoJuK8t7=;=T;p#J_`{t4#!=bG?8s*V9PN*4L zpoa&&@A3MWUE7HeOLBJc0&vqnI~@Lzs6Nkm+qy{f1SmxD-y-B-N@&3Dj>^#uoq!&j znJqM=Z+(MZisJY1g`Q;>UIl6xJ>-zxD(<&mq~E<0IR&jJPWAqS`gLAxdg1Ype>BeL zt?k?Bjy}TocxH#^*WZ`6hA)@OL1an+*T(^qB`mU4vhqY|5U1{eGg$R2UIIB+kN#-g zKVj*HM~;(y4p!W9&N}To?K9L?nQKZ!$PwC1+h9xDX=a)!b&)~vAZrY32D?7-tMncF z?`H=0^?FM*rdbJRuB}nR6bw^D+vnO$W`K=hop9OBMkRP8l=}uZe|jWL77n6@CU|>4 zQr%J|^5JU!iDDV0}yIb_kpyZZ2`9j&#E(DTa=veK15;i6&?{2{gA=CYH9Fywi zI9rlw%_)`S$!9+?24=(^v*@tN@UXD^2h!)~0{>1sWip3pyOPrSkID8FuY%#uKk?@H z?*jMmT^o1#GGlqY=UCF|;E1c4{*UMHYOiY9xwZ*n0xqX_R>)^TcRT!kPG%QAZ1AAD z?g-u?_Usq^qd}eCrcdpJ(q&7GA7T1hIH!{CFaF2V^@WG&Jh-r9b{&W5NzC%i$n#z1 zYE&V#3j=nlZvl;VN zk1f#iTKkmgPGxV#@2mL$)pT&w4!)YFX1_lxsPSJkpxX}(>Pk)F?Q%5FW&H(;0mT+b zPG28$XLJK(Is))1NMbQ^Cg711Du{rl;Le~DIiH6>&hZeWml}5B%dYa|=UduY=_nW) z@`G%T$te**1sG4XT3gSP9kZj`#^+VXzqct^n^u~oJ-_ncyyJsU7yhxmcVPP0wd>Is zX{Ll+H$v{j5+*9Ans>slq0si+*{^2`&Uv2;Y@RySGar^0sK4JO1-6-6mfAQ@wYmnT zo|ZeMI0ZOf`fNOD>W*cw_l!*b(kj1ah=_U}Fj!Oy5v!GIl4_y3ws<%;VjfCE4(3%o zYfzxm2K}<%U|FP(wv7`XU=oP~o+z0CD?Om2$CSu9lL2+B4?f!EesW;Q^^Lg~BQ*rd z<@ANAG^6v5qdjEd_H^0NM%7>LFV5uzX4kAlx}<*OH%t_Z*ni~jB@_;aBBPbAu~ zO*rJ>BH|Xa0E9tc0oqaw)Im}5GJf6n23os68T;=VOS%Fk9!D_88$$D z2S)+d>IjeMv^pH)Gc;0uMOsaO0+VMGWsv#C?TH)<`#;Ygo?n ziWVBDdbsNH^iT}>8(_+8Y2a@mblpHgQwjVN^;hJXg`SKBmcBaDoOA1~+#%L6in~!6 z%2+!`OVf2XYO}{rYUPQV>`s`gt(L*jk%gB6o!wKlJI4Wa78m3jF<{Hb?wsh|{n=%>o%)AnDtF>R)a$w*yXPN@6r536>q)V~ zAMO#jUzVqfYmb_zRitIKF8#QoeI(voRKvj~ni^mmGnwa})jy?Xm*x-EnPRkQ$(GP6 z>lX4Lk8)2-LACK91>>0k^d{}_J%dBG#NgStC^n-wLlTnjQ9pRMzmpC{=6?G~(CMsc z@%!FgymU+J0wXo+P}^T$u84H^T~{NXS=2>tm#Fm9J9B+g>tEUAspeW10AMYA08uKy zI!2Bbt5kx$D85{R6fgY@;m3dxY23%`zJ$|@O!Dquvmk1$S)Iwp&ffN|D*W)u4jyxd zQ*JIN3YZsyuIFg2JiNmk*?6W-d^h_U*wcZwCrWhpjex~W_>_`J;qKOXlTVm!k&gDX z_O8dDF8<5cC=&N&Crsq=7Z5)h^~$JNN#On~HS};*TV~AEm)As^>A>0OQh0XuTtrjW zn=v7VHx+pY;ujKS`sZ8)Gna)*Q;~`YW9ql9>KQhvCvGydb5vWs^QuYbpMaLwbgwHt z7*|hrBi_)RFywt+*7Gd1AX@u z8au_mLtQ&@xo;Kzn7AZ@K<-DTu5@jWiv*Muus3b7Ix3v-0=MXUxi1rebCEma<2uvP zM$S|Ghp#4fN`C!NXimO%HoMdX2+`h!Scwpr`}iBYK#nNLauMwIZIL9Ys8^VFX; zRp3!(aCR=i8)S<~zD~HJaid9Ndnc&OJQLf34j13p3?j>#>p8R{G1+bzZpAuQ-g#<5 z7LN69q3(_8?Vb`eSqPDJ`Y2V)4%txQG)q<} zKC5rfrY(7W{F2q{{@Q=A1(-`32q2O-GMqc7Sz?#ub+OMb zdPUoakyclzi^ek($6dRde5e*?=TG%;k8{-Ax1(-J4*cver}ad6&T&}ON_5?!IaDR> zQva(bws~ss#&a^131->lTCyi{Ae(_>VrOe}wr;+4i!UORuu+c?+pC_>y=X_PNja)Z zsnqqd;c|47+L(o;^&pZ~=HP(Ahj7xQh(wY#AcMO~X}LDTYz$sHJ?>n#3~gi3Ot^2! zW6ln85fj6f;fzLDm zR{@M-p%gF&c{%f@tJC*RWKCNI1ckPR)}^eSxySz`Zk~Vf_bGw%>8rr$!_@PtyWuTk zRrcpvUacqd-h}79kH4A*o^_1Z*0p2|s_G`&xahx)lfKn5Pji9k&atM>5gcmBH5125 zyZl0?Plsh5M+ZQ)=0cubO8e&^VYwrg5^Vg`O+Az5_e|}~1}lS1m|nkWV18_UW4@M> z{5E(v$OW-TAy*{MH|0|s7Y6Zjz+L+K-p^a=>?U<=?yDr5w`QAs)hYMr4&P6+F{kq<2I=+@n&VuMJ5PbDM-#miiwSGt&Co}dFuGK zSzP9fOEyXVj|F(#jINo=t*%YA-&@-FqnN+V{R5Kl9x+A->}0!k$F#2+J8ra@f2<8R zs%`Q?j8b-FlG?1~Dr;;B1Q(3>kG|N^5;mJ&wMy5vr3D}YWKwh1r)1l-{En@U>P{lM+k!4^ib;QwDbf zzGL3}cxoz_zHKJ*@`-|ex*6wI)G2OZr^QkbX)+Ac#pGag8W%i8HuPX+R&o+R+gJCL zLw@?_e%9pM>l(z<3Jwlg3=Q%Zc)y?{vFVFJL*8+nf-mXRiI$!yH;u11bRD+ou4QxV z2TuVVRn36?{X09M(%2B=QevJb_h|9U(#6#oPiCem3+m0)Z{X$RMK~2FUkj^%7|z4{ zhem2_n7E9*(?ohMVr0-gxG`wk%s`H7AMknM4V?SjSM!Dz-Z|#2;>Ob!dk9pMxZL90 za8gZ|`rOLBzP_fT!p+sh)8LHou?A0WZxjJbveNoVS#B90>?F86j()dNhj$ArF1t5K zLZZ)H2EEYe_Xa0HvEebOsDiW*M1OgC1(w?#+IUia#d}V=)en@nJ4G$$L7`@Ro&HS% zLuYVj_sWHbJwQ1}=N=1T8!TH zPpAteHUaw{6&|o{3Nu<+#L{V&Q=UR$f9&~=_@)Uajs_%dWOn+ncS;-;6^z!+KjrB3 zyXYkHWnl~pI;H9xj^%!x18MNfD|}o1Ba9qjk59B~`d5ze`O@@G*7K5HAI1B#-LnVX z8&c?xz|0A>4Ni}f(v>2L1C@asXMV<0Ajm0nk8boA`eVZsaJQN@mpt+@s(*d1!7Y_R zg62FzoIfmJD*7le@J!eqVdZ}x-al)_z><}(U~YTt**Rx~c^|)7WJ3&_=ubtb7w+>e zq?zQ;Ia(_6oZt~PJCJf=m#Fo2M5N*cy8>ln?xA}PN?FLG%rox6BDk~^BJE{x_o*o3 zvaALd$z9xbSQH$?o*l^8JbmT!jmL0m{VHlU@U4nMfJBw7qgVZ7KgqIZqs6Dne`M2Ebm8@Neo5Y*W1r%vnv%iAbA8xFl$_0{K zTr@tyRCIReeazDoCQ(Ha1JYCE*%S3m5wEPWHAG3#W@wAdlz)WCl@)~l755JtaU95w zphoqCm^>^C?;n3N;wh}pm}(CUykKNzxJOoTM(DWUTBa?-#70+=!JT$*w(%M(iDai8 zpBf$9HC;`=C!HV7Vb=3pP-3Pl@}E-rR}+0H(&*U6#Raotkt$u%gUY6}xeGu>Vw&K9 z6y9xZx^<1d3!cW`q4^y0m;5n$!-n6$ovye)e)W_YtmgdVdpd7VGdy2h+_t;UcSWqn z&rJv069LaHw9SP&s~Ov1d^L`i7zk4<+*@wcQ(H?pQbKR-jzD7Et+=Z<-^@NO=V zgozr^h|X5$R3m`&A4!z%&R6y9A-tjAwunXgU4A|d7>3Nn?eQ({R(Uz2-lM{h9={x- ztU|B)Nh6@Gg98ICQdXk?Tw|TS7I^Q{$@k0>K*(4xd;U)DDGon<;PHc9$*_Ar*9Ozx zOz)bWKL9+)I?2O~J>OVjUw8;d+mGv#xwMp_feeUDHo6(-E{zO#77^cGDAr~FyhQ&X zy&rMHAZFD)wmMA>f}sk{Rtcf_qK=hmTrKLsjaRasZhXn5lGfYU!N!f|IY3=WE2yNdw;JYhJmK3V!NK3HPUhhomOQm$RdVMGD9x zwdE~@(d_*t3+hM^V^x75J6oBjM#hul08O*vT3(4^a;;4O zZUNkOeo`@g0>S*UN`@5f;^N{@W~14qHMd$hwUSKadvr6;fd@vwr1#@Q-GLYq_vf2G zKY@+MI&dwaL}z*rsbsN>$QuaVQ238$%Wz2((C*Sq9v<6K#fSFiyiUao2B@rNA>wBzqxI76TQWyTrzv*yA zMA;eXG(^OZr_YmM?vicpDzfqE!SeQMvzt$HU=9*TyUygvvCeKb-7}dhJ|i8FLLjWl z_yNC$c7^S&L#cSTpd0HIaZ;MOizCze3102r2*k9LD#!d3JN;8YbT*cqM_-}%Pku0p>}A)z``ugZVP$0eP7^+Z-M{0Ix3q90 z=u_7}OuB=fvSFK^d}$gJ*N{#0N7Kp@bJw$Tg8v_q&OMOn@BiZ}g_3K^T@qrJhKa0{ zd?=fe7-oo>F!!R#Dz{v6zie)$n`<`rx#W`T7PBrcbIWz;Q^>6}eWc&%`}?c@@P|(4 zea`E=UeD*_+0T2{k1N!8qrX|`ZQzd_ZJ`A%Q|IF@Wch#$`aLJL8dk?8Fq=KWSy1F~ zcee1uaAj@8Bacp?!;Mm?a>w?wn=^FhFmt8xjLnwniNsg!c{i8*{vLXZ=>g zeWR(5BDaALV^!XBd(Yg_AlPLMs8zv8@G{^)e~^wNRHC}h9dLw=h`6hG;+r{g)8lM ztz$*&{eDieR^|s0MCexZoCCFdy&S&L|C*P$ZO~kczrtY7U zAL`|dK$|JOToXJT8=^_+37WWgyzufzW@h`{i+e4`?3?Dyi0@N;Ur|7?9jKk4jCan# zMFb2FctOAreRE~P&dqVoth&0o+1p!l`A(C5B5rq~1}eB4Yg6cD1@A6=DNe}(ZEukE zw(pe{@YG!{GxLm~5yErlK@sP+?7_pycy0@{QI!RQOu1N&9yWtftMRw6`VyJk9vovE3}x!O&R~O2(1@@Ie#l zJM>Djw!|}J0Pa-2_I4-&li7lZHOlMlp1odJno56MTc=Lf&gx;MXBGK%Z--eG5B06w zA2(2S6&mYI?6&y&iEvg2y;tIUJ;CXX8v#{!fLPZyQ>5i5C!@RIo8H>Hpo7a^EE_Nk zops!=uf=D>O3_zRVsyv$=G>Txev8-qxJa=ngmT?im!m!=2+*`oxE7Vq2MjZ4toiPz z@~EMA*tIF8nP^)5xKC|utt|Dv2$b;#kU4IJ&4pMJB3?RJKl7CF!iSX6Yij|74oxon zJ8pxN2)k7Qf`Z>DPRN@6gKlOcc*x*`DN^W}NN~yh{oM|&`fP^Ir^P3h-jb#UA1)@T z(MxvGF3xx~Dy)(Oj@~PJ&JqM6(0YLdKuKRNa^>REmhHB*Jk_2#4{FO+bAt5hw%80P zs{tx*{sGG?Z6_gyN*tso;Fu1d8nb%Wm$N(^@he%UN*aFps4vKao# z%rX)Zxng8^mfqq)*)Sa@bKMVIQ5(R)_1_gnQ9l zd~wPtM@Oglz?*(7FJdoyd@(@rNTd>wBJvakEml`8EG&B0O7VWL%6yl7)*LP;{$09f zgiEhpfpkL$2QQD9Gw3J&(gBtdARtySH$^~pdOCMNnq8G>Ydgu6W*`=w?k-~aOI@O# z91DCVa$9`sAW3Wv4i|BW&3O2+eYfO=5@1HjDZd)Et~5cM5)~C%2WMfLqGS@gLsY9? znA&BnG>;lVq=s!yj@PfCc-6ygfB0DS8!k%PN$Eq>p%j^kmHeNzWeIB7TuB8DyIo(I zk?D2kd=X`vvYnCQHDPl)*VT-K32$jR5VK$72Ju1_iC+m zwEollc;iR{m-in&f1=)Tlin0kTT47LpRjl9oMZ$i12YI>B|-}dsD=}HEKRCg^~c%j zBEv^O4~B^~LbK>i9{s(O<6UkQrp=bStUfHoYW1tdJ?0M;Oq1?*TMlWO915v8v-s@m z(3w>evDiH#a2y7hA19}1-tuA*V1691UEI_D_MU(S94_IxXVti^Lt6`{C^bJJ&N5tFTXs(G6cM(RD>w--`ebjX1;j6uoytzaIP01!i$%ik z07y6|B}rZ$X3v1xzpC*rt5XXvHUXI8#erhy*UIaG1s@3JvMC?=;02txpnFO&twOIm zqryeZGkNFWyr-{rgzr0}VR<9pB;ChW=JgTK*>5$%1;*_8DWycW#`(kbA)A5uCk4+h zehs|2{^kopaiSu(f0ZHlqOKvAe6+SG-*gqddD=dGPVc zuD02SI{kyDNtye(xkFzqa#S)#!@O%t@VYK%S0G8 zKi*<63s`4!Z`K?jPvj)v^UucWdd<%41sa>Ey)wU1bS zo_Ow30MK?DpBYx~1WhXNRXdgcWScxZ^J5X{jMV5u<&ly%wZMsxWPJYophvAh`_7)E z4tYYPtD5s`)2n~@ zX5K_h&wLb3`okCUv}dgbN7orRDbld*$bDUBe-JtsE9hxP?mHv99+`=7tI>eS*pq6Xk;N=rS7WQ>`?e^ViQmhCiTj%7j zK-=G6?&y(~2_t9E=oresdU!L1K|*KJY22xvij>^On)x-9ZKChEWHP?~NqRanW+s}G zmLm1fG;#Pi{}n;=bnz50*vbbfgqBE)?84oWKDD5onHM7QiC|kUZ%~D!o#%Sj)r2fJ zo%Y2y5$Zg25782!T>hvAi`78d{R51Yn7;-Kdxo#A-K_vJ-=6Crd{cfg>4IeV@Vhj{ z^Mbc%UVK+X+w+u?;ss6Q<^B90RNf1}k9~3fxUc3AW}(ay<34+I6a$P=qkDf zt>FBm6`{`gC-`gVe0cf}Z~<#uK;8mx5?|w}kJ>R$3op9^U%of^Jh@28X`RxI;?)pa z;diG}WC9xk?1A z>G#Kk7@d!{PwHESq%UmUw{LQr6geUcoI!^%?Kq8OsiC#4``Qmd&dD2c8bm)Zl+x zWao2pm4zCZk@9GNZ zGRc=H{_UEn(fc>vL_JX}Y7krppF2)^eci+glsyE%t$3XYyL->M0vTHp+(OWdV{a~x z*W&h*KkO@dMgWb;=q-`kl2$zBjmDN8^R}bj0=>Uirnf>v-KrAD4}th@Wznpe6ghlh z%#A>c4yBn|s*3KgROn8tw&D)92ccCP+u{7+aw%mCia+%i>^`Dz^37}Du<*Ha7Wf)$ zz9k|hL(emyq0Tp|CDmvuAsU}EW@@GgG`_d7MRItLRtA6%*ow;0zPDD#dEJ)#75&fz`1vEzXiq_sfHKWX(gg(y z!($kokBL{jtx84qpjvuRdTXUKzpx&6Xs}PEX7zEev^Oa(o=6_5)?6pADPs2E&#NMvv@t zlmE1}!#cF&V(g<{w(25ghNglj?rC}6?(JN+wlcZp_;d2Io3-`6h8}HFUAF9m--55( z&)%_eqhVFwq?`k&nmy_4Pn(S=xJ>W>9j|@)sK7;`Ovfr4rB;1aleav(;H!nNKzSfT zeRb^g?L<(auKMgM#gO$2GX}K=A9jIkRMW(djF-}#OP>9mqx6;Zkp9If2GdW&|Rldg1C3)iWIQ30pIvw*-Rd>!Vx zz{8ZTQ_^Qo?%5T^;Rc+808(f#&v@$(-`1P0p`Cjqr7h#x`iP9J(QQ5&i!$u|dQL5! z@cF`Df)keisJ#5X)^z`rh$pYs;R3s4|lI4DkR$IJ0e00 z9`>EnWO6uXNW)?<--%SxM#=t$Z_jOXMELbHG1(o*XbY}c*%e4iW4^8z>YiqwA#B87 z$518(rqcff)6M8kT3SWyM)Lv-0% zOI(N7LNlL$F!9_ac^GKXDxc^VS(+Txl6nD)h{=Wx$N=5TLwbcz7K@bS+uGf9@@K1{ z2^wuPR9INVC>0S@Zwrzy?p?Q<3`FD{MUMCCxt~jwL&H$wY*Qzp;z)bE9ClfD>@?J0c1C8>IsYrD28&qh^eNtG#M=x|20vak%i9Cd8u2JMA|L}cS7%EG) zE|+J`m7VKoU*`IrCpWZ+Xv^)} zq*@CP#m1%@e6sH)!#f3H!{elOt0o+tjum~IwTaoJqizaO;cJU=C9;F~!tuGD47GpI z#~v?YV)Y=H2zV&5ok}%S?r9^v@z)lNFYq3Ec_rD{A@MmTxAijjf$m`u(WE`?Kc2<+ z9zUmL;;|OQL#DtLJPkN$=isZLSw|yWa}_j>{|+8uEh*DV!fuH2pA9eWpNMzelUs2A zbYnx4_@`PNEF0yzXZxHb>`e1lJG&Mg`?p*&Ddi-&h+ii}6C~_~j@4CKz$5OotWU1j z)-+=N@acB1YZF$tJ;|C@R5y$vb{NDZ=HD#SLz-BvB0tj1FnU9(j!po&Xk8mPw>q`( z<~`!(Vc@{IvoiPQUHy|}+?)HXI1iI7X5J{#v{EC|%|8QLf~nUyjhQ*s@!-0ejQ!PP zHy|Q@q4bujGrq&!?OyaxfVtRsbQ;wh`Thg$-1-;c%gr5_IjE=9yE{ z^R6tJn-I!RdJN$eXcX}eDg(%|x9kur5y&e6x~@m${E-<0BBv<#$Je1U=OoPcFCU(p zG-{*nt3Sl7-#fMC(fa+dpSbKADYO~IYxbGa=s-N(4fb}Dmw~d#K5e-u(YF5-R=6%c z{ocSU0({3?rpUv}a6vOa*qyy8yH)BO6U`(dcJv62_}a-oe6-KR?CKn!v&#ZU$ag2v z^Yu_bY$$(@(X&$>AHC`PdoiYX1A$Qg9&|62oJl6ntFxJRSml?c2MjC zJ=d<++}o73u#A&BHMNJkWk9#Bb0i9+CFpAoJ`u+I-`|o4E;17SC0_}*Cqv!m`f-9i z3Y72aKd?~WDQL45l(J)qpiVmb{On*Yl)LQ1F_)q6>>xp}d;_eP9PAM}5hQn&aH5-yi82v4@Z z0slhk^nII9(fZh!V*y~~v1+FJDoW1;a$1`G4dai0wfxASNaE?d`9A-n>+65`uJ-Pv z!NzthX>UA`+`60mb(gU9ck(PtqzDYHtQLy@oklEC`+*#Djd1Z@&puHhP4K!lXv!a= zEnH5gYKM)g(XHug45qM~+Rv5_Yq#4{5f-&x^V}XFdwpQ6P!)Pk-@+E+sE;p94EZ)C z-mq*xa4-J&GEm`Ms^i|7Adq79`KJ0Dsq&m;R8)*S zM)zH3BzJYA^jYi~gW=BZ*1EvfJD|xtxk(cFNss+^wJOo$Ib&1h-6oi%RklxuGy(8A z0h)05m4i=)a5rSi8BxM`bdT{#;ag-DpeIapN%KOj|BZT&!?{s_l$XV?6ztSQV^-~IgsLtqq0 zpg{&11?`Ai?|a^!cNKCldCq2~a}WPy5xa(DrDq^}oE-2o6iQWkUH9EXiLz~K=*|@N zq?9e*gS=Qp0*FI7>lMrR;oj{^d15Y4U3wBQ(=%`Uq3?TpqD;_gHiX+>^yWF3t6uM7 zBDNbeQjQesAK8b6?aEik3H5{1mT%aUa=w2MKo?#tb+UhZizXEw_y%CtjnA*fKYM;L zyp~3~i-U+J7|L^6p3B_2K(qAj=R}uUr>CdJb{D4tcel0V^$Wbjt4Tnm4yqpju+cH3 zP4nn`l9qVq?lk-+Bs~?bo$zg`3C>CgUAVpv8`7`d333!K&Kus3@x3F6P}+Yn^$*|v z_2w7qMhct2vKRwmx@rMWqrFqQx_`9_)Z&`7o()v+F3wjgH* z&aG8gQEs69*hACPaDkxMlv8%U49^Kf+LW3UMa17#eW|UZKNCGvW-b*EkSUz?Pu1%j z*@gu%Z5&(`2ep&c-TNP91F)0V0Q$$Fr%_0eHEdaE;fC=hoHfsgV~ZibB(^s09_f zb{QXBAtAujJBy;0KG4IOCO&r#>5z}@)IaVL`!LV&Q}c~)T2!~2Z^&5(BIdV1g?nM< zzTz$ewAP-8Xu}WQ0v}h6k(+T{@ruAu%Mx6TqW}v<;z(7>;VkF@^!HZKEQIy`;d}bF z2o)+f_8fMtiImkLqdPU?asW&2`7BP!X1ljIp01Zwwm;7FgCNA~2r&_{M=dPK;8CJ8 z1mI!34Ws*NOyDoE?yKH}>FMtA`nHzZ@!-j1XGjO*Y#%8!II+ z(1UkBX-aACQq<#<9Tw8U=6>*k!^=hBZnFr&1x3Z(MLGpTZJns#=TT2g_ z?=jWdU8uwqM;}~k2HE#BR7f(qv zon-mk5tpW9se>)LoU~SC=(17s%U;JkQLiPZY=Gt!+f^S!gs-k~St&i`fC$`|eL20K ze#wMWf5>Cme_{ANYY$dlOw;O_33RuMmIBQ-O-D6IE<%Y%H(H$r_@(%Ss$t&E-r&wXru z(7}^$^e%6`{6Bnsmj8TCrTZ%4!DlYRF~oNt<*?`ON}<~5kAjw#Dq4CcY|5WL%rh{< znqGX=nWPpD(yxPix#eIPOBn!SS@-q>qzJKi&B68PUV`;Au{>YWsO}u_;uTt~D!two z%bhUCGzjd{3+Kzi|W`_8|l5jpq zR!Fad%25MoGHRuu9{Z@1qRhP(M0yFAW z#}rxoEf6B&{(f$if%f$!6sYyvMI~8EZVj%l|9hq?77)eLi~e)($xy8xK6{c??l}KG ztnc*8yR{ts3}GhWbdUyP)LXBM$g4`Pq*Y0y?!mpC8}TurqDiL=#tlEQA^F)=*;Ic; zl>WLaY_RZiQby0ly&dBmf_qj=5YeI1rPuhGTTO=W+Tv%YH%Z>z^mUJQ?d|5foSarx zw<_`I-t(M>gPtPxU5mr70=g%+O2oCDRCbHy_U{FpAKHZ+D0f)gB390^QJ&**Dv@|e z76#;JgzNG;%6yd;ECif!q|{ zhbp_edO8PNyAC5lJ<`s-JvANmrZ~n}_-`qX0kD-B*CcMs`&MwY}UP8MUQ!rS)|FE%q7M~5_2Bp`5)W4=(CyN{DL}WY#vy zZQcJ(?wkgF(&;&H_1oRDuu%~VXrihJn$LcWM2NX>b)jBJ8{#osC3s<=&68Yy22*or{iO64%#W6n zCSsYU=FpnCp0s*@#gTPKH6-4bAYJ14x(_cO5ahfF(ZbdW+jd5G7s}Er8NTu9IRwv~ zMI>fW0iykyMri-S;3vK{F*bD`@9N`cUn5Vh- zAc{i^=zn;Fp*cBRcSWNUPTNN>;QS4PKm}6`YTsu-I{*{NrX;Yj@lEU^DK&OaO{Anb zU%m%c`d{-%%@udG=kMx0+ZFliIAS>I4G@a!o9d8xRiAjMl%}E-`vladT|9ev*yjtS zf8Py3Y4_`SK**j4F0kffYH51IR#&9E0i;`u9NmA+zRJ5`Dg}X)KlG)DVEz6i%6Te`9Xpm~2N{|8ebwb%NtS!lUsLH2q-8al3TRTOCH0qz> zdTH%--#`1ID+E(2l0wJslVw2w+xMgkX`}}^P~_uK7G;>fRXxREW;ef#JAfX!<+`T) zDF39q@duCxO3Tz4`lw2(ac54g-qf>_AY^p!A4c@_Ax=nwGR+(nBB zCs$FULPjTyfuVH?<5W zYyW%oo~s)r=Z~(k%rN#yIlzj9btrx5aWQ6ghYU95kK*y`^U=$83Qbc-9Mg;F#Ti_M z!2bTFwI0x)XnZ{F3KD?kNI7>BPnn-x;?Om9376vvj*Tk^^S#%)D$`ND7NVM9-MKfh zw$TsqM)CX4Fmp!Hb&X^8Q+J^el^lG@rb0E~32ScaXuKWDt>DhjeFeOn*7NXhg&kE9mp&z<- z9%kn?9+oP-ju|A5umO8Gb3XCC&u{@4RFefk`To5Itmf88T%xkzMM`L6mGyIx+g%5x z_Ib;XIn<2RE7UDJ3hmylRx5dlB`mFyj?WR@Pq-#79$yg-Mp!GEiATNpO!$Wx^v=#L zFG&gly!hkdRsvPvdJN5aKbO|&Z$OqTmWz|7Xkm1_^YuXb@Q(*}dkamM^klKs9X2wa zs3>f(_mH~PBJJev>P>olxG?_w(EFo2b=QevGPLuQrTx49mfduuiCf`*6K7|?B))eT z$z2b#Qg+*Wf1HUA*{q!ebkCIHlo&eU=^pHzPEsH#ein7;dFcFrM$9*#EDkz-bMZtQAlhgJ8VGS|@_MoNhL_s+b_uYKUcLp*>$H%E`@?}mE-X*! zuiOy)MO<9f74X^J>B|n<>XFhfw=I)322(+6LocspaGKKH)q6gutICN>uYRn1ICn2@O_=)O?Ne|(%dtzS9s%sMaf z85G`N_5I3X551L=NP2dngB!+QL>|5PX8Rmfp zvXjOSBlFMh^I(1^#z&VMxpoZ(jwPRa9Ss7Dq=C?1n_s!pQPw+-RhL(0mZG2NQEQ`V zdA^kL9o7%3moNGtTMTn_*V|^bR(pm-o%WLdQ#D7M=jUVPz@mcB-woV7f3u>@s?#fD z<$C;8)HEYBjgKp{Wav)IxgUa&2MJbt(gxmbvTKgxohI2!E8TPhoODX3G;_{0Z}NST zz%J3ZcF{AuBXhrS(p}L822(~;!hboz=8@f5bi4fdSIN^1o%Qv#e1L5*xcK|NnYM}~ zl+U+!uSspu8SjrJ_CNU59P1~$>jU>oUtFpb%bnh8?eTIDF!JT z#iGj`hP!CKQO4g9W#f`qN(J_60+LwEY{P`szITz$EG)Yme*pcXo)64Q{~?}}X<0Qv zgW46Km4+j)y=0`ppV2J%`AWm|fwFeDudUA*ERJ7Akkl+5@~VlJ5aOS|nW?J(fD|=kd5Z|D9*#UPp zNYZpI@4aSpr`yk#eyc9$(ZinE2mRh*b0pOho=SbK2GIbeBi?;U`R#WnLk)dHFF)+o zac?Df$d0RSD=9I%uKv442?XhsL2iNBDRTMrlpZ<78Q z0U$L0Fok8HFu*6)j*ILrUzUbPwdyl;=2?nhmxB20nqFplNm{%&I`@3H8`)VXh|WQ} zH|~EC09yUdkP{T>&Esx_bh|{}#>c!ulG^~#LT2fVt98mG*Jn}k6*! z5{v)YKfa$@p191#;=PEQ!fs z^O=QTX6<^rIK>YaW>_~g>{(CyJ0p23gh3`mVyH4zgx@=L4~AI(R*YBWHUK~pL#SKw z#M)5R-FA@m@I5QYj~87WRs{KH0) z{~oDMV1b$Lvb}ob*duSU@|eX^v4;V_JSs+Wm2HzKVXKzmBC6%6C7y`fW&MM`|Mogz zyDu$~Xur+?l}>Li-dI5 zR)x;Km&HXJkG%ia&7%;OnfWaH*N3rSyeTS+m3k&EvETntfrPE-Q;qRmgsVL$2`L$i~ff%KQ!yf#kTjR^Yo|x_PaIR zMd4k~%mMes`H!F&f~6dT#|ndd>mJ9{hXl+aFx3ZRQh9w=X7(C~Uha!7_p-f>U-aeNIhRfn z>`n`FUV5#xCB?79a;5rJb$1*?Y-SqQ?JN>f=HL*q znJIK%-P2suYOV$QJP7Z`)O9~ldAp9t!xye%8g&hq<4RLIl0zM?KqcFB-Ph$sG{B_b zXW&qdsIzy-7w_KpawkbYx~#uH z`gu{|-K|@Up5(8ufO{g$5%E|akqYiBW8HM^18WsAu=u^9lf2=*fxN8M>e&%+?kqJ; zGCC3=FE(S}gnvO?*dtF>+Puk}yYb_tlSO``^}EzyM-NusSpxQ+mP>fKx~#=m z#RJK6qFUE`)_gFq8MvTDFRP!|V%v?G483Bjfwk?vL@gUu(-lW%My1;e=Bt9HlL^K> zsLXzTeLG=p`4Moa`waI^(=>ceGh?=V4%LS_%FN2V2gj0n%lf#+UHvDLS}^Cj=`x=~ z-ASD!2g3FeIi&0kw0Z0>ZH??L=HS-mSs_a`{Nz#8P+}sUBFI8z()mD2j5LK}NG-F2 z4vQde)9yyo^XlnxgoET~aF?|M|H6uo?c9yH z^y(zpu~BVO{hB779PQR780a-lU#>=b8CC*^JiiC?2?)0U*$eQKs-}x&t+t<&d}%a7 z2rxdq>{)9GmlrjfJC{$y?w*)OR`hk|%h)AU5su@0VKtr`XbX5~Ln>lLZH@YJ;BP|2d@ya@_ zmjeS^^)05f8Y3GRHxG=`ZX30yFqygewgH$%|2dbpo7_Nh1*&@6<87bK<;aH80Vv|t zgLB{U)Ol9c==>m=TxikZ??b=)kmyk+R4!B;O*ByMP%VscrU~OU(R*Y(nNg1zqrSlL z(qDMDFi+nX&&Nj;CFH zNe77N_GiuS7AV|0jb!jR%IQg-BcyLua^or9nQLpdWsX9fC*5gfWqljRht!iaw6zgI zbV7QgH@e6qJ-eAC-8Wi;9`q0MmkaO44CRd1w@e(t!+1js-Q(+5<s<@_cPgABCh?kql+pbK}rJ?ljG&(<*F#=DEhbE{T5EZVuNlMU+m+^d|7x6O2KV&Al%~eBm&9gMF{ofyU;<5eLtMG1< z!-%(-#+Jz`S4suF6-%kpM8EW*yzQ`|LhjDbMPjmcd{5k}`%Qm)i^J2NabI2M8E(r> z<58*}NN0A_H723aO@gv~t6cLV6df0j&w|>}5s_=zi`?EU-K&bf{pSYJO76m-DyxFr8D zuA9-g0QmFobIo6F>bQaG4UT_}k8-z#05HF9T(Eu?_<~^SDjJ)y&_PII>0h?i?Pbro zm(KQAv-4PgU(w2aaTmJ2vlFD&KA|^IJqQP`^#&vzXgU##$@%)i#7D^1D<(OoRLjqmVBoJ2)F;fhg&j0%P^z~_cnE!>^(NJK;RWE zLNw*mc!%9(f6xe4${hmjdtzYG=Q6Me2Rz1xDivgntD&W`@iOQVpHsdQj{vR$}JWKKOxcG-OJUTuff~; zViLE-8s?L=)TAWqni=~Ub6wna$?TLVkp=QEnkSs9HxzCu-efWAJ=m5EhffUKi3(Dd z#cfT62T3#gex8hZ7CZgIawX{d`kS;Yw|#sFdf-lNFM-@3&H@&V`Bh$LjY> zc5%-c*&V*9a-ZvUv!gf#JD^M1TE_taeXNKkT4FUnnZWW@c%RhMMbe#|47OI-_7im2k_YLqZ6gM#DQQkS!MNNq|V1P znIB9Drfvb?Jc=D(XR$dG)$Z?eHxv=h&_H;VYhpe7;!Lhxq@TRMySRiBM1VYFTjMuA z<;PwQbE-_8HV?y{8DNm^PJa(oJb(R2#&)w^kzbGZW=H!cL~ zt4H2=bT>OZvR1l*``4QOXxxnzaN$)SxwezgVHbn3SyxYIQ;7r8WQZ+3d_URId9%ga ziqUWVl)YBO)w7+Y4>Mj=fRCs~P5a9qK9QmLn5-zpJJvO0TlO2S59?odINxOXtM6p# zJI);?UchE=%$l(KVjMjRNy3M6oxdfY z$@I;9Sem6pU3+CmI!pttbc5YGpAcxf7>FJp|6yH{S|kQDkpLZ<*l$gzd0~J!X+A5w zAA^C?TK6AE9!Pu^j%1#mnb5~+{g8IFx-%)DP9Drg*DBZXm=*@X#NiQ*FCjv>&N*~a@EzX>fD zy31kLOz^;|J$Oh&tIeRQEnX5HFvi9ciRxrs<_y=ntwi6xjXF$l-YiXyIagQaGRG@$ zhCN57*t(7_>h=StX|_R_Mq-f$E|Ys-F}`$?0l z!R4+gZfVbP-{De zw2C&w^?=VjTsBsis8$<2F-+<0a64g5=L6EDe_{`Kxh=LG(!@c^r5SZHwA=JE-(lIm zMv!LebN4_1X|>pAoH+x^P$$msM#yIX2rcGwh1MtK^)6#<(z9|e;?)C+vR;7MT@|?S z{4F8DXjCw$>8K6gmh+J?;JTSV5<;gkpTsQzdNjoHq!w*`j!CNQc()@;p5uDShS>%8>bU;*L{UBxp}8`h;%u|T1oGPM8T(8I-p(4UCgDjG5_oqkCjQ$vNxJZ z5#X<>vwOIFyBu*Ff-bFCAbxOuJ-K%~V&Y1P`lc^i7Il&wC=Ik;G z1sR_*Xo$DsKE0aI+`0;^Yl2ezRmJMYp!xT6H+zz;-QGIYPWk|SCa_lPF)h+)G0q27 zA9H$Z4hn~QKP1T6Y45g(m8A-*3**`a*i7oK?umGQg2Hgy14_~U!pd*HqO#KKQle_^I{*RPQcmnaHCES9Ax zL|by!TklK%HjejO>0miavjD=UvcpQKT*_xD7DAJvSq$#^9C$x_+ba=I(F7jjc+rzN zRrCIU<+iY{JFH&c=i?kgqULxJR0A_5eDfTSXj%Hy4RM3(r5e-dv`Qiq@poAd9ZRpO zRhJ$X0_VKX-QqV zJt@B)^bnF=Ddi@siRRJjNhDua1|c-`ke-G0j`2(88tH-Jnoi>eRQ}dMPcs+wjQlMj z>m(nSQOC(G-?a9W!$9k(*jHOiRi({ocyS{rEoU&8k$G)wl!JZX3&{(>G$?rs2Y;40 zXdBB9Dhb~^Nx_907%A|+cr{wxG`Ts(sezo33{z%FGo$0KQ)|uak*4>}#2=_CGv4W4 z3{Pla^J?I$j81N*)b#Yl7~5l=Tr4b4dA({n+KuENgU`zIO&>O+tTm^Z)fHBaE0lV} z!61k*%MuiW50*OF@F}lWaY-jkp3Kds<)FX?%CUMDjJz~Bk4I@$RRYf01N;P zZvKRg3~Lc5Cn5X4I#|~}+hwguRMZ%!&v&%V}-BYgID2)17#6jXsa{`B(6jlD1_Y4%EpmJnea zz6d?_QCk}I!qx(Q`HCL@Zh5c7`?2AC10YRS9+p^h)Ao5nKN#Ut#kEwMAcQf_B+n6= zEu~4xQ)BwzI=?eu(p_%qyDFGrbJNp#$~~Qoam)z7UF+2BB}kp)r#w;-3^GB$LM*n8 zWtHDGhN2#_kf`*HU?4eaeq=P|`)#23>ec6KZ{|qGygz)iB+>2n+XKM784ex;fFJv~ z{p*iR2ms*9@Q;f7{S%vO+l&#d#vI+q3;z)H&ZP#TT= ztIKogNZ~2}h+i*GpCI1iry2?eSNE9`4SM+DFEDlq7pPU4s+cwZl%*TBM8K(Z)!0RG zpaz2$!q}*B+DuITk&RETn`XhHMGwpwwY_6DiB~AJB1vX6wZ~s`%Ye3=p1Havz4++S zn^*Qk?D{I6O>wy?;-0dXceWHY5=}Kst#u6s~UtFl}FtWmMA)(LP}9H zz-oIWOH0j!D_2{Xa$or{tXES8E@p@?z^K0O*7U$NaGv7h>%9ST)ZU^e& z0R6tpQmr;uo$M17B`TW_tvu%v75lbuW4?!ay7mfPgpVAAFUQQUjDtxWR14uB7Hx1v z#wPaFYAW2l-sFzOyq6OL?2Dfi#`g3haL-CW-4eE zzz+eCbj-k(*vzGSRUsC`G8UuR!q@`-On@c0py~?J%{iD}0hZzw(c)P)S5hPM#;hmL zZcDqfy_3;s0MgU`+IBP6C7h(aGKG6!$roQdFG7a?L0$)nXr9tN@Mz`H$R~zWx|VP z9#=0E=`;o|bf$B9^3>Cw8usWJp=a%TKylK9wA9Ii|yEW7S;;AtT)={2BUU2}8ey zc1OE@{F}}l-_m{DWuW9`Y@g&<=L92;Rb_w>h$5(q zuLy(~gm&GWoD_}E%(v3)cCA{-Q{Vw2Pwy=Sz7#xS8A$9)5ZX8)z_r}h3A{IBq*;&R zv&j0RwcV=TCx8CD+Sxg`X+4z< z4$2@6{NcLn+5+MwyYUJ$cX{Of)ekrbc9VcczS6R;>oTVfIpj`rfZ^a9sh((HS8Tj= zbz*w7FKihf3NA7?U!UyoC~kwQYqFnPPIvj6Q#6ic&9~f|&75byk%WHZY?Zaav$w&X^>*7!iCHsIk0Sd((AhdA|d0)NFHn4K-!f>78qE* zr**`?R_3EE8@gy+={qac7ja@nz=N!B{RpI^tiuA#mpZc#bn9n5%}7Z(;arD=CzKaF z8Lsvi{2I~TqlVnq37F4bwSnxqinD{6cw=8|4Uw=K<@y;qblLn^5%lVZU3A(S$UB2j zRCpBnpPl`E$pd6``6>Pi`4G&!pzm#ZivkM!`B}!9oIY0Je3^PxrkXsU*B$jVd~rL< zkavEN>aC@Sc4={ko|?;XVe*4@3Fxe*?K~C%QQ`sQsk|7e0n4>aIT2Bmm9I7kQ8AxT zT9$F2$LIkMIFP>V8f~qyXMpjH0p5bK-zK(j>jATovDDZn|8c>Yu=&`&@4v#7H{gsC zS3Ih4ypl)Z%(bJKj0EL>$5F158A1T$Mv+Xq#(OUGkvj;u<}t3K-b_wX40UPDmg7m#1@(ji9%zv}q7z-h_` zp@Ev~w7gq!r?;q~JGleDi&IfdZ;bYR(?P`@G(TC^ED6P=X*h?oa&10ool{H4pLYFP zfA}kuADInv3LKm~^)kIGK>_mdQw<9YK*WIE27j4=4`0QjiN^1d;GaBC9sM|nw!F%B zQnG;pUr6A7O+po@`x*Seni#?hqc=AX#N{~lv_Cr(d&qqgF%lko3mp0T{Uz~lN{Dt zjC3gl8n&uK?`>&skx0y*QSxl^PnpVnJ-^r#(I{-$pK@J4nrC;aILLos-#R+_=BR6< zuirvNZqC2AUI0Q_xMZ|T$P6XKnm{w(a;Wuy53EMlQ_=IU6<5|}BtEW~I8(1?y?CF7 z>twMdmoDa8wBaFcVTCKdb3V7cY~p|aGVtibx_731f6tHZLr9p za0)-VIGdps4VxgMq5Fk7UX6OLQ&hpth?CaT5Pa&#OuyL*spX5L702S#sZga77@?Fdp!wv_~?{H4f%B7XU8WiL%N4Ub;psm0pR^$T5>Q%pfefb#q&^+PgSg31IJSkt&9zH)|@k|@c3snPT^VEFj)I3%t$_yX(WAPngYhxe-nykXK~UTOrKVh zr=Xl}YjTp-wvCL;Ren;-|2nC_mHjt|2gLET22Sn#UG_15c3%AR3VaEw-x_-x{5AV$ z75GesbQ?c8)rT+ch~L21`*heze-x=DecXGq9?DRHq7Z}tNO14p{iLV+3Gd-6d+rh| zfM-5W(|6VRxJNrQn)60(DPmfJ=l?JF|Ej(=QxEF&RqgB!9I2}2cr7jtjs{s+NN9lM19Jt8&rGe z?^2JM%EJ^S58V8ZD{n7oizN5P(JFi+>i&ORzvS%yxB+bz7(luGG5RIxn=LzNH)rrh zNF%vSU%J1ciqqQF&S*2VkG%#Us3IJPkSOF^s)IzS2n@GPRzg3{P}e$67ngzf*yEI6 zBX#`4X%Q&BNzLLK!^i7ZkW62t4Q}@kx zB~*793!UB7)omogvGhSd2Mg0zYw>}C6FT{fJkm~}EyY?m)td^ve$em0c|+?#R%S-V z9JU7RVD;(BChI4sb&r5aIDc`yq{l!GFhMJCvfec<)5~1J74XMU{?%6kgyAF6FJBfa zWny{eaL}5mdeByB_R3V_eBsppCi6uDM)+UpEFfENP7rsMw+=HnfoRnCuif8+4UKj` zuFWr{3o*f)3B$PIh7HXpLRpQ6OLWLKsy4W<}zqv9^nBwl@`;> zZ)s&92S!l74Lhh*K>dW9jRvZy>RdDYeK_cSR6PyP$FdgJ&`j}mvim36fCFonwhftsap8u=P=hQ1cUaRmJ%eI6?#U|Uk?FM3C9 zsm2}hX&wvM7$2(*6vsVck&*rpWL@3||8ZRfoJrtmogL3yl|Ru~nbr6*t>*TfY)ua` z8^j5SM1HPN&v|u0P9&8)F@T=My49~PEG*!ld{s($=an;4k>1^J4wzFMz5@0plv2we zOM8-GmUcb!3tiR~=U&_&)4JKo@KCdN3|Nem)VL`57S@tvNAlKu9-bA|SeY3XPlmVj zN2WI%wk@)z_<0xBm7>zz<@UXI5IQ{UuEwM1eJJ+zd@9m zJGE1u2nTwP2whe+u9L!vG=2CZ3+u^zPwD43OX&$10D55C1d-ZXnF5815OW?whtKgy zPiQ9$1~G5<-msc#88WBKba$oh0*-REIp=p5f9tDO1#lsJE2tf<(uw%=Qb^*P#$nJB ze#|PFAg-caX?AtpvHT0M9IPW*A~yNapmL;p1$3bE(ls@`f8Ay3VZXkdJ`;^L&7HU* z_3Ot_1%dLw&VF_4AV>iKQRXdU`(dxnr=`3*yhq_Guk)^VG&8dg%Pw}-?T(J<9y+Kt zzaH#bV4JHtKi6($5^2xI+sJ8xci#pXZSEvfE^T4)@f59&1x>})_Gp~>4D%l&t-h#h zsXUfZwei#WdYObj=7?<;Fj?=<#G5Yz@|kAe1ekTB%`+;kN#@px7vl}!$-sv9vCbn} zG+GAj4EJPH{EV(a0gk4XS4D5pZUlN=O*mdBKENL``P!d#XhZK znPTQ!T;zlFg;5q$sW2Z5`>)U{XpVeP<_Sl(^6X%=jF80K3q_sgmC{Nc6OF(P!pej{ zX3zEFpZAA8mEsnGlu(ypK`ffPBgdaKs^WI)i|Uzca;Qj~lN#&aC_x=&g|kEs*tLyx z>bbYIF7bu#ifCJ)^1JYD7Oo)R3OIr#t~Unq8`nHavv$ocMrp%6^3nD^O!;HorGO!c z$k&aawmyqSbem+uJXK=0_&pEdL>{zpz9e5e%nX{7lfW^Mu3H-Z;jDm%Vn5R9gi7?s zmhy5@SZKtUsv5qahi{)X&2G8}HBf#8?I!L&4K}$*x8u~S@JFX5Q!o`!0m_21PA zzTf%~fe-CYLK(mlVy;|#8Cq+1>iUro@`S*#eYnFnX`P??{6>6-0k2&rwaJ{~^f(05 zLAp15{O920(Glvgj2v^Tm57PIr_R8MRq&SRzI`%A(6K&k%|nH!_3$U6|5SZIC3lAd zI9vsGs-w5owr@ZV?Ui3e-z^Gw+z^o1?k{L$YL4jk4=3Ays=fB+`%8@Ar{^}Fq_yl! zLUwHYZmUN=cjEN~kAMAWnIHVnjwP=%UpWVA$(j#C+tsQoP^iKJ2mH_RtRg73-6qwN z$fn&a;-OkxFL0nDGnp-+P0)c7O4CnNg`$X)J7|i!9op02y!rMY*Ed(>!7|gwEDJl_ z+2cG)^jBgfj#q+3odankFbyTd18OF{;^Fl;{!Yp2SpYouN|gb(*tF+p((dw)?YjCy zV70Zp99~LqIiMska-y#{Q_aFeBrC7Xc40Bs3LRxv^T7C>b7mf(5>&+L!e9vN5vr3E z#lzQ&GtB@nh35|$ckV>xxy3ED_-8wOUM-)v$*-L|2M(|7Av;FpH7WT=R(qA)gt^!+ zElUw%(ug~Ljhc%aPD)-{JJ(KZRSavbjcaWyVVDs3+_yXEhOVjXczM%>LZR#g4CX}b zd2vTn(%axKKNv+;m zpn%_K6?#hj*IgSm)p(F(v! zMjf$ibD^{s+SbMQ+zqW`fZGYI#dzz#AYVICPmX-iZ4mk7kLImD%j|Y@yr%t;_qiU7 zt)H{+Lf=@_KQOE-<2;?4olEdMribBj8ht?7Gb*#z2^uA!&41E2Xq?$iX`L4$YRv8CE*Cv4^GwynWn&~UAyS6)A2sX^md2iVT?+W7v*)!uW) z-2Jzc;7d#B>qeNxtYbQ@!tu#X0(!xPu&A}gi|bw=(VOT8+0(N^!;(Z9d8re@`FvGz z)H8f=L!*K#-4F7OhoCKi`cIV27qY=yJp8; zfjwK!CQ%mTd>JMfY8W`_lPD4T3$X*Yt5J~2fWv_T9z@=5IN8Vv^Sk?Ldv|_?6iwl7)2#L;QyFZXHF+vIc)i1&H)1)4gH~9y(f661Y+L z?v%hNk>9H3IAY_g$UvFrmUYa`Kg8A_!*bj|huWNo3a-V9!fU_14r0m;#eKJD_6a?6 z>*(QL!FtX0cGP^4;;*b!W`)Y4r6>NWjVM}GqDHV;`1J`Vig3h z7zgg76crUP!GfLxXjk9}@dyRln(58XUukoZ#t;R_T z!5(%>lKb*DR>p|**!{%lLl^(!%4iAX9Wvl&*mnQ;bx&S;?{+sZrw=Ww;x{*djPd(_ zTm^g2d;a4pexdnX)RYxD-hp1&6%Tq;{|2EB0PP zaH?HzeJW82`$;|r%ptwawSmz6@A=GYzCNz~a9x2Hbfp5jay|+?_!Sqe?xAH0D#U+& zKC_BOAV6WjqFz@Ls4dmWrB7?{LQ`S7f_w&W$mg|lNLcy8+C;6_t z2WRZX4MNjjsys7Dx%Zr#!9$JJLZERXI2aUanZxp`uu%zJ+^P9RK4%Z#orsa9OKp1> z97TEtXXbvVJFSl0qmj;r4J*eXe4|`92$`99I9<}Dk_$ivFSPT!C06?|r3N)Sbj-<3iglt7wfB|2x`Ku=x6(R3$CfU$uU>iY942D@EB=KX1Q|Hki}~!5SC)?(vgm}ZU@zFXnt&WZeY)A z(mz!`b0&Op2F)|)kv$i({PS6PlCKx~NyB4ixu&btMzp>HyKN_>PD~(^>mc%IP2v?rnB)^%<;9}( z5eLdifd}pFeb~h5CG$x%Urc2utgk@ZUiR#F&@JClMBF%&yst7Zny2-Xj7XLotfS0( zbu}!tW~x~tU?OU~bnQUG%@pwVF**K6W9W=JDeQ@pY}JtTgO7G4=GhqqmdGr8BwOW` z+Lr?yIfv4dT)WwEda+!yi@BJCfxd<_8S5-loKlbOIH3d3Z#j+dzH7(XP+x#iS+a<9 zgnvHZHTfJPMwWT4V=1jkH#Ddt`F~CV{BeyRMqSp$Qu80U)hoG>gd<_q9>P(&VAw;i zgF4^sHs|pwj!WR8b8B-2Uq-^WJseClJN(Yz&Mj;iiH&v~Ea<|e9V}AV&xf|lP?Nz{ zpRyM9t7k}AT)M)w56`RKn2rhu>?}m`zb|VjqglB{J{QJWuDZ2poyqYBg|`%$Pv^20 zw1b1Q@kLny{^PxUtAB$ih@g!!5qPu$8ZERvk|(x3p<6vOqI^{$! zbnG1|J(rL2&CF>_aOaOK1p>Q4sw%&GMV)zXE{*Je3%`65q?^X>+m-aiR2~)(%T?Yg zbPt>W`F}m|SD^8oezfZ?tM+k+Ce0h!J5HfP z6=mMEZjyCSv;Mt&rTQv&+Tr6K2=E4yinKaV)F^58Rw+x%pk|!*Hya1}x24<`dTsxt z(Dp&!*spiwpOK6H@iu&QJ8*AE>m~c2z5lo(nkQC%PV7r~E!xf``UAH!=e)WuonXT|W{oUMH zu$3Euv7tPh#i=W0^EIM@*wULE-lY&iZJSyI_APw|bec(pTaFH64 zzn3XB;wL7@eF+dd987$375G>msN!X|i+Yi=eVtF0pCOo`(ctA|F!7l1AgQj{EZnY> zhfz_`wO=?(17d#cQ7-LKjI>wk$b0i+ncH?jE1FUFUo}kSp=d5uAVu4lfsO!0nmrNR zUUsdRr=GWq!PJ}EmxaBZK257BU3KV#F;T9h}~}(Z8EJQGNDGk_?r88VxmUbTh$I81X9_zPM!-#C8`{cXkLNOxN8ZwXD7F zYxb{sqezwffZM`C-Bs)MFlYMzUKS(^F%7$+y|BP zkxEczyi!WZ$L1Xfp}8AGS?=-}NBTZ6 zev?M#qqgeB2V~7fQ@&=U67sOu;ucLGzWL_#birt6o9_DRpO{v+(wrr6Tt}Ij?E_9L zdRwMNBt|R-(Xe~m>hs8gB3DXDYf>O^nBkS4$w}f(lVUx(<@-N`RAy%|+-@3cMF$Ee zAD;0dRDzYbT6N00p*PXb_5&Qp#Z&&FD|dFj>aVdKi<#8txL<*_w(6Rnk=AZ&kl04c z?_c5iyO!u`zykjgeSu~6JniIwLtJl0W=uvFr`&64bRinIz5FfqyV2L!w_DvgTV$_X zgbyRQ;pKg8CUcLMSBg1Wz?R?L58gGMw1$F|RDzQxL4nnp=@xHPLSgW+pKbBC68$4y zJ``7<31~exJ(E}lg@`1?NH$;l7Z$eL#u<{Y`zl{GcXR!E@?nrOJ58@?xn5oZ2tU|* z9tD7%-bKeLITpjSaQuRTf-tcx5z*2U@YyW|o+~Uo;@{kFA(CX>(-(3J+nq08Z9K$8 zrl%K~1#)ql951AmOOJ&Wy5RCiUJC5y}%eP+jIzUiK3 z^l$dG^FiF1p)orydz=uu#PhwX-Al8tHJc|Oy~(}FZI$hi=H!+23JJ#f)>J`thdeRY zKh*FQ(6k{_qZ;qO+Cg?Ah4*16Pt-!QT$}bnV^d9~a=&&`=Ae919%BS>rzQ5Fp7Nmi z%voio>2?AgfijBi{MA@Y-LMIdzES~%;)`&v$jP070-LgTaV}x-M2x;60yPKkeSVT; zo@nXCWsxf|tXxz8ummkA+IXWKT+%zA^2?3vrFmN*dblCSG{ zgWq^Wi6L2?d$5pJD$jGXzpFt|(-N;zJlYg~NAf?ee+{TxhB{_h-aeic73Qe5-)c;D z3;JQ4l9$r4*@ZuwqU@Mx)Iv{GEKB0e5f_S<9bb&5Z4P3*~86ZCj~GzXCB-f@2x|TQF#{SO{b?Q0IxR1TI!y5kaX7t|{|S z#~f#ob+1GVNn>EHFp60&`JdI7?5IX*wGAi(Rjb{Dg4FCdQ#`z>e-2j)@wc&$z7-DE z7~SjHJ}57`hvtNJ0odi-EfzSKCdptdsBQA^lJ}b!pxOEuk(KVJ9PceToif4b$80JT z+Jk6&mNlmY+G<@l;W()w(SCv-uv4ZR3H72A=ad_~+r>|BTHKHw0}YN^ZTkwsyQ3|_ z55(q<+bVAu2l;z9D048T$;k`$3EmBLUJ0J8)_8G|vIZ+f^vhxRpXxC> zCP9y*PqhtO2{-$uJC|g=7tnftsq<2EdZOx6(l?wlttaTrukHJ%Riv#h0Bn&f|9p## z(7x@`JuZ zN(hYu3bF)Psrqg~_vi(d2zCw1>-~qWAHfr1EP|hKg1U37JCi0OJR5s! zSC{t|b8pSRJ}ytbJ@)H7d=_NK?VZzi<=tpO^&YD1cH_%k{t*26xtR~eXZAs7Ur{mP zI^PAc1m#jL)GdSWDfCYUDsGF@9MArLvsR`zdi>h(zAg?!U0(YE=mExhTSB1-Gt4OY zlr5_hAq7cBQi>f)1tL4N;*{zYaAOC|ZTRf0fQ_7bSiWnb-_gE|67vB?$xk5d@ zowR!Zi~1Iw7bzGWS>=r5eg3ewj~Qm>UFpCGKW}&;3(?_DYxP>w$D!R zisRBB>p{HZsq2k=GD5t)RXO`-|9zQ2s3f`T^Q+Y;Cogka;Sds7QwV&#T-~#A(zEdw zILgIyy1Jc!!XT$hAwa17l6YQTRaP}{Tb5%m14!YVar5&~RCS$)ZDIL%o1&QAU8&=| zYR05cr_+{Wlhe~26)f-mrywz)`6!Bf)u31=vlYZdvKl4 z$OnuLM)?b~)%W+@%)d)0tG)ejYoV>+6X$n%f7seZ8o~82y`OI|+?-ZNV{|vZ9M8)V zJs(n+tg0rwfE5Q`+dOAn&IVy;YR}@6@793nH)lF{KE8SUnFu6QXvRsUyv2uEznAtz z@QI1!4l6))$$VDW8zPgQkX_Kh0<9d1qUfvWWd`tHQ%wv`3i3)n9!@Bq!Xri!3dJ5A zRQs84-NZGAy=hy!==J4Qk1m$QaxczdtLOxvogR0fKfQlp8D8Or&Z5Pco9n?I(4}%y zovbwD{fgoXZ_*z#jnN5@jnC-Sd^s`79Jd})YH^N18lHCP!ky9!v`65ha!P$nNjn<|Gum=9)FybWgV z8|HR~FF^UaAI1w`b^}8MX0v_roWt%KTC$A)Lo}K>x)y>peHBvL3z>`-UlsUW)mEr? zJeaC3Fi=6Df-IvT7zk$6FmGVXsWPlH7iW_XMQ61Js&UvfQeSgV<;Zv z>FW0Iao^hg7hur6;Si}-9*fX`}W4;elEP+c9 z(ud67=uY~1O;PuG2L9BG+sOtu7a7;{NbD&Rfcml)oO-g4NAsVWjrOINV!(Y# z>=3TkYV1(|cMs*(m^EgUvF9VTi$DDV?Hq2`Z1&Q+&Xoaj%aA_4idXm!C2@%n%V(_Bwpa@QBuPr#d(kGYq$ z-A6}ZYP*W72vx2_tPrmfu`z}kVFLZOdax1XJn&D&7U;C2?$IK-Lu!J`ZP z9_2DTCT>eDfG7Y#F}vt&*zg12-2#SN))JxZGHLbR1ALgOrCo6Yzs&R&Cs_gV8m~IqATnE5eNEz_FljxAunq{KxfY?avJO z#n}0^x1{l%t|Fn$)mNRXDDhzFy%3K=d+#dt_RALAkuQrf#o5du=F>EMI!z$XwkRa0 z*EdEE(itxt6+&>S_!t#Fmp45TRJAb{0L;zR(<`<2i#G|3=$A6@K&TgB&eusT1LNrf z*AlY3026#n?HksllwPG_;+`IFNHb_6q`lPLO33HRENu# z=&bxlx%+DC6GTd{yjex(iisKw&I;t*pDT<1O@JRm3{2i(%mBFEQbHj@NfQ zJJxQisL*EjBr7eS<|J+yTKwVOR(TmI-nS6zWVCT7_M)50AnEP8 zFE{6D)AU;bB;v|R1$M9S?A%-ycJEb=`Qh5#?jO5hzr!bOi_lmKk}&N3L;^fTq!p8( zD7RNYI78OeB|X^*2WhT5;VWelQL|tKUxE1WG3KESN|1E1(v@^CbNOrczrP{dOE70` z){l$S7b=e#$%pqJ9U=sbMesy)0F2k_*^D3GEM|@=6`NpA>-yJ1_q_)_gp9k%=dRJDCa%7IDUwMx~B^sgfjC(sX_`{n+ta?@~cT&*qNqLqG26xg(A}Qz@L|#LYGQSo< zG{Y&iBm-$=DUGPhyZhzIyxMf9sf4L$>Ia-hhf)P?S~+ym(NzauPh##91WC4w3?z1s zGR{^O_HQP)fbjX>hwbM)&Lwyz-T& zDZ`?65J*pjZY!bgkW=XTvATZL8HPG*$-5ex&!51#(uYpK>d_k6icr4b=v3z3mjwg) zCLnU+wA{^|o&6Tx3!rdDzux?49f~ai-$T%H?26HtQKQ?>HU7{OoBM0=t`nK(fl z?ehbyqVIN*Tk${qfS!26w~)$J<;M8)3&VatG0kHCik3nA8{J}4|_HKicSHRrK8 zlkiOequ9g(NS?ZSsk|}onW3KexO&p6<9x#iX*G112#_x8L5oq#Kw^6bxi_&Tc}FJ~ z>KxXMI#?j-^I5B_d-->FJm0jnE4rdUP3!i)$2|Lu)csLTsg5b9Js3Usw!BZAbxnx} zPc$nO7w1lZq|e^zGhlaSzKQ<>kJwt<)i~)QY}B4o*}t~9xYr-Fwz!9HdA+mhMBDq~ zRWqTC_10_=4?ycXlfU?8^f256FDhn@P15?mk%N45*s5>jf&yw9Kd%9O{oma_D>-e! z^WSWIp0k;w+3uEoESO>y=I(zhiYliOwENKhb+>=}R~5@(sy$Vyy7ElxBrP$xXw=+1 zjc774#&>=oY#{ifEZEOFA-P)vXmGzQGXJ5?!iRxPjsOZcM9J^)6-C8K(c&ryLhnSf zvI4Ye!;O!+)W(&}5m)(4oIh#ez4$shdzI_3Ypdkg)1wDnntd;FKc+@DQTA?U$>n*V zootjs8=X21gwRE>?_EyQ`m%tr0=#cF`LD1h62(7?Vih=3lj``_Vd)+|TV4sum1jN= z)}9>k7${h8XxqVH#uxZ5uIkzC%xpzKVmiq}%mYeJTard)u|IF^_3cuo3-&!6n5Vl} zO8s!QE0Ln=Yc{@7=pn5nh9z-AZInBQ=YqH8<@aK@J|BDUWIZ}w_xsowJoVcmzGBQ1 z3PlZOGH2KS-XTFWmrPZ{7?UESUblz!meJewcR-&n)Vq|jL(8Oy`p*bZO|(!SczOE) zYG>*3GHMu&S3nfR1J*g0it7jZc~MY5QW)M3{nv2?4rwlaJ{1H(1pdB^BCw@R_MGvQ zng~BWa*)5@e4GGP)u!0ZoL#0-oOFZ2y3EIFeLCEU(i?Rn=*5L;^*|NTB+k936-^ny zj0XR;Tnu;8v16^y-#Sgop3T5Pb(tX#L*q;C1(2RX{Aei#`4!Rq}|f?4(XECSh6?{(dffe&qCvE8?j*fBO$-NiVAEF z1Ven&ihM^ZJ`+I_PLHLxIR2i!tY5qGIXY~&DKcXny(o!&5){!o?R|QzIc9GL?KeVn z-U^in)v5CmNSI0Sum#`dETY3UU+|nNRLw8IK0Eb`!kM}DR570$8C%1=8+d^q2ynE9 zBi<@-+eEoNg@V1W09gW}oZRAQAd8E@swfI8NJG12#Tj1Z1(3mxmXn`;7X~?H{TwG! zo;^frvVW)H%(4wBF{9g=Zv14c3qivJBi>kUUr7@*+(?Z zY7K~*f$eK!b9MYg#=e(=ORdbSVvUm9IRdSx@U)h49c+w4e`Z^SU1(Z-@1FJq%!FQNM1H1;KPPLgn-lx z(KK}YK49cEeILM1C50NHi0az zaqdrN>@(3=BJlZSy|#9J0exCuKkgP*^g&F(_F(;M>H^X7h0>Y9+NeAbwF+TE{G3OM zmD2)%pQF;9LZj72A&QCu=5s$U7{qm7lYi%vQ5`d_o!>Rp;(MaEL)5R-JaeBUAqEE1 zH0N-tM=HgGR5?Lz`8uo$hh|UF&?@c>T7&o7r&n(rRRO1uj8irhak-o;F99%n!SH~0 zBaP6Z6}76{uFKrjTr9QKOr#$1J~Y^^*lge@qfBUD_q$j55H>jx!(WUw!alZc;zdb@jo|6mt#07iUcP+){@LGjAzr=wZuH`GcR=>y77IL* zj_-9BBz?`|>r=qxqG{&b^c=PT9jR}SI9u<5l#v%YJac%aQ{qp#h@AYVSYxgJa}pIc zN-)%rY;Y#waM(HBI}7a4$Z)phMqiWk3cO}~H3cVjhA!J{;Yo&CTB)Np^XjA!gsCuS z7H3Ad2Q8^owY}zr0Z{YTaMX_%l4OTAKs~WYfub@K>bx5wt6sRv6i4fdqda#eF*A!~ zT@vNQe#JKAd#TIGr_S9tDhfvAe=~sk38bIGDU=31WqQ<1`@z7&<7;scCc9a7Em}18 z-2AX=d0nFo#IwApG?l8W%iqwajC-B$`-fLvXb5`Bqv+cAnJ!frdYa~4_IL0*tmmZv zH@*z*_a5>s&0lvTVk6?OK?9r}!|-9>ZRppXKh{s3CdWH97J>@WHoP znXTwsMCTXmB|`mZ#;a6+kMZReOh+wYGBgP_IdvLELmC`?>6`V!S?i-F)q*-bh7WV8 zdT4=3u&bjHbkXOP^qiWN1i<__Iw%Co*2wO?GvAsPu+f~d8@B!7Csg;KQgP{F{ps$I zx!D8}(9pL}`ze3UmDiKh4ZPzs(uThqtUf05QadR-;iG@x96A!^niC8$pX~M{JbDTG zINpSk56_)%MK613vnm4klNx-pB6V14<8;^mEijuT*lH9Abvn_R?iuZyglbq)k7*tX z&e|Vz|8p00b0f+U@R8HkI)I#k@@}4N_8os(C?#778x|7OQRn5N#ofF}9r9+) z^q1RJeLq73!!y9G&7+zFsytX~)c6tI?ops<^z1>TsUMG(B*EY>)VvPro$% zNwL|nuG={{GY#*riC;1YxQPG^MQliY{FcEzPS@hgCr(7W$Ax94Tk~L+oK!%0{J7uJrR-ki1Apb`lj8~LWByq~Q-!Fp7k5%Q!lo?w?{rxZbXh+$x)8b( z@Otb17+d$-z1i>!00~!EV2f?(>{t{^PR1&#!{>+FakBp7UN2nA0zVEMeZG}p_m#ie z(LCwV<)%U<1xc@MWqkK9zgg-vISi%8m(dz;R3H`sj0@yWQnkG&X~TcCF<{Mq#siqm zR%e<6r``g#^tV{CEthTvDsSc-(0^cI4Hwf^!>c36I_LDJH(G@xLhKL1th~F^>q163 zGpBed#XyF3yFT0b66Olk*u7ZN|IGj!4w)|(u$P5ip9}DRq3K1wOt)^jVrfIk@zsVW z&<|INrM${15r8w4d#7ioqT-&R30ftG*Xd>XOt^_d$M(y2929gQRiOT_ zRcw(O5S1mHUeY0>73K11*XS^egq?H+J~FU<6P19gj09#RrzwFlqOtK|!I)_+my?za zP1bhPJA7ik13(lnpx1l%_x7KdR%Em*@@N^P4?(ifFKI=Mk!s{aA(r7 z(Yx`B?%tQ}FDI!Jl~zIZ5lU;3|JJAYSqm#dC~C~ssBgD>+M*BNWGn8;?mbqYWMdmb z{^LUIg|)ccJ#+6~82aC?`H3S{dMH1^-1h-L4a7B^i(~HxG0v+#7scY?w@TdHO6yAM ze)wNKJI`V**2`T?r&Vbg7v|41I@AYD)c4B(cdm7!u_LFRM^OU?bF%pd4$*j9*S^)7 zyBa}uY!Ew3@ENK+l1E%6FK&|B{!JzSd2|6*t?pJ+A2b?4?p)c}x&Nv;e8vk#-kZ7e zqJL@Qg+=!21aTr_WkJ(k<&H|spYpXR$hqTBx4iqg1=TUCiIl++TKZ^{?UkHm^J71T z-dh)im5?eZUIx{ifiU8^Su}mf8Bw4Oz;?*|j&VBKGVAX3O4p{rlU)Y-$*ZXi)p_w3 z7UEUJbHVB4UN(kS-b*xlcdOf8&N-2#SAuguN59ZAP21I~bOE2<_`P27O}QIOuVca0 zbz6KdaecT@-z(GQujH|Mnht_qb`Q(0J$OjAXUBB^is8?4XKg!}WR>Z9gUqs7`}WvZ z*;_B74PGlT^|n|1l{e1+_}aA$zZdM;c3m~SzM^^pYD`#8U!)2?Ju_5s1;5V0>z1#9}-&Hl}Gtu-6@~?(x5nrqK-N8 zAy3cniRsPJiO3}1JJiQ??L=rwzO1YwQ^0YOed(E(Aqq59`^TvkBJ z+zJ4&Qk&l0A-HqL>2d8x&*s4x+6f~c7zFL-l`aVM6J*y;IKbfU)c;%vjo6U}5zoX9Vm;WY%qbTFASGYRu@Ffn1CN1W8!7vF`tUen0$LYN)ZJr@$!H z`4@{jp=|5q(18OUfnR})LQx82?jkxcKP8T^ygKt_->p3>>pT>(HbnrD+Wmac&T|o9 zpYWRAKs7=`C&r0Cr|JXc!W|kzS0}iv!W1YC9{a9yfpAZ{)N=9EYIav24iPGz;)hBT z=1vRC+lcxnZ6|zkFl>3KzySN=j*x=GdAf^cU-sjSQ^KhLfl%{X&A#FpK(Jx&be`Fb zXEx7(#y;@^=RbuCSm5>mSkh=D^@F>X*BC?pz;W?eOMD)BYRP3x7xtI zosHYpkGcYqMbd!U>s;*CL@f7zT#!9411U`FdTihF;Uct&4r;=0lq42_+~^n~UnY?x zgC`C>>bxc|k8=Z``;0ht0Qt&T6b+sirxS#{Nq31*Rw{8!*>m63)7kGC4KEdbo~h+#nVp8`lRXT66B`06EmmlW!iRM>K50Uew8}yI?W*p?Un92o^rnXM^gl&4jZwothET)D*GotpGH;%Ar>#Xz$^ug3 z?B2Oi+|YV$QiFk-hm#jMI@>QdH-%n4y^@3DYR7>#?EAgeKfK#-cCKx@t;PP7ryEtp zy1q6>oI>^$4Tw*A1XihgI-RarFnSBD+rM9gXhU5b3hgEWdK0EM<@kb0m0soNX?42> z@F-nU#T*o-Nvdjn-6)^%Xg7#k`_cdL^d<02|9||7Zzx&vm1~g{6>`)fM7It{r5tmG z5@zPeeI-i8S|!wkPLxJs?rn}th;nV1%o;ivqcG?9|60HQ|NrRmt-h_v=e76ybv$3s z*Yi~?!q`8`0kSjx{M#+Bp5L%}F0#t_)lHo=7It>L*Nf!`DD%Ihwe>#Q4nvrol10}y ztbNoH`N?Gq98SbKmPd<1evTwTCrJKQXLsPj!d2)WK{?DUtYF+X?QL1cm9ch}1bBB8 zRHJ7dL=L6^6fs-!PHIoXqyI!|X;xR6%rU)%7_*$S*43<_XD9)!# z(6Ede98JYr@$6lT4slg9mvW}f_HZlSI_Zz9VE5SNOvjDVKE@^ExN*aAqg2^%3o)@2 z)GxSYRSYs88iA`a2Up7ZCf@@VT~gFc-COyqbfe5Flh`Nx$H`l z^$&0XTnuL4S5LYioTYHw^=sy(cbqkhmhLIiBF(td6nQBdl_}3F&D5!4>Ff!goyt)f zG)d|~%k5%JcfJdodM;c3jutxmzTef6y~U#l?_6y@k%r>CN5GmV?$T?&WJMLK2a^THeZ zf8J4b^xGzbZ82gnaO5ZDCEHXeDr03e%LADK*T+(ia%ACKvphC7s@h#NtF;VgG?dnF zo*NMb-|PxviMEtCkNZvIMB9s#a!Z-eNqb$C1;?GOJQOxnp^hl$dfHc&z>3MSvR~~< z2{xmZC2_%;Pi(F%OJmR>zwC=#K-u}*)R@;fSG4mN-vI{Np0L$Jhd$jVZdaw%RhSS@ zTt7Rze{96Q&9tknh!}AtbuwtKPqJ8Hn%~&!-&XXXP%9Mc!=#(nn-(aIC4ZLY4`;$w z$`WHERk^gNn_mO3c@h@D|U{89`ei&EPb-sD-8y*RL#pu)FxLZRr zf704)c2i^G^5a}-z2=2+XMTUyDt`sMJ&-tQk9#6OBnsN)RnJ2^(-wlXTh@3Olte5# z6VJB{E_|@#OzYvE2AkDX^*G&yzPMLs@{aGxgW2&Pg{2|~r92xoPKMu?(O$Lj=JcoF zK>v`RT`yc~#*UpDvshnUpA|AinVnU%{Qe-qB0a+GPgF`)dPk6JAF>?2%fbG^*Usi6 z5e#Cl&8DW-264aE9Vr9HZ)&**2yd`6RtbIEM0ytVD3)1;#o>ZzgHq3^T1v85gtl9V_1>l-XXw>an+MDEjW=B9g>B zgEFjk9lTJJIUKaX(p8U9p{la7Z*67C2L`zg{jG2$U?M+XrJSr z{3mjNpCeZ{_VXpz)=fDpc@y|ONMFt>-fdi*9Sq()1!6(j70%4*_Yq;ABm7(mHZMAD zU7!L;*EzrT-?bKZT0dB?B^RIS+FWdxSc(26Q&>7xcvD^GR=xYoPi#nsH8D}z5caX* zXu+EA1#X+CbiQTp=l*$i2P6L@evWo?kHg4jnAh0#?(r%k>y5=kYtjMTyMoy%w@rha zYjE?+yUofJnR)q5$@DsImkcBSgo{UR65G#OkB zn=lGs+$hL??0aA5^w}4#N1}0Avx9T{j_Hi=Q8c(bU2-WlTi%zxtL2mlLEJ>8jda;V ze<?32#)7(%!%diWxP_ z>qAAniQ;Fyl^b!-;|~5NXwq!vbJnehL(JsIeGt%oS5%owOyFW5MNlkOa=P##yb(Lh z{#2em>IYxi&6*N91_*CtHm5 zabZkoCrpvjy!!lVYjAXH#Fwg=>&ha%OeC)M{c(Mk(*)z18xaiXP``5 z9hXHrMHo&y_BHeJ@HXG~M-#>>eG>Bpj;}+=lVSfv`wr><`|~vg6l4rCcxBsvKJbG) zhsd>!;-2Vvqvh3w{>dz|aU+2i-U7uX5_mXZn***z0Gb1El<|cVSX?#fNkzRM4Q@4^ zgvPu0lL*&A$OmDNZQT%6mP6f>#Oy++J^RLN$h&iT-f)^Xye}*A>R2HO3H0%z?yh_* zpT+G)m(>++oN^fZLOQ`etfvdmGG>$nmA&aoASaG4NS|_EZ^Rx}V&sxhba*Hklr(B8 zVX2CXw$=_0tx>8vnj%wLd@xZif&WBrfkB)JjI=a+9xqw+^zTu&a%{V&P$gkydh=1+ zZFhh$0lL6($eiPj8$a6WL%basqt;@S73|{#VdaipkXP|O6 zy$Ug8m4vB>egZuqm#ZCPu()#0O_}HeCRw+r1*-8p3#_xF7|7bdnun5hY2Hw) zK&j{H>b`MxvO~ah_4g>A1-a-}9>H=m5*vPW%<^HY^Nr^rzFkcCA10Qn6^=8PZ%t&n*&q| zzXv-x%x=NHqT&{$hE|UD5u9g40r^d4}fu2r&+lD!Vi7anOZ8|b`#>i~;rDL(%wFUSDnR&#j;S~2e zT@mhy3xHSF>k-7&>9>AAH@&+k4<#8u#lV_~*rcCC?~6dE?SMwgxhhWu>#xb>I9A^v zlm9718jlQp9{qUdlggk56!cjrks&`j@{Zq78gmI5{xp4`(6C8Y$`i(3_Q!(gj>{BP zGNm!4{@V}0s>&S7gLgjq{GW)$vgU&b&4&@1_pTUpDm<}oiu~oYy{3v2IJ$DrgReD| zEx&}CLLlosewuVN7@!(5B+~Lc8U1dg&pRubJ>j)Q@sn=Sr{x8O@iG$5rjE^RI2&q5xpxAK&}mEtHEp z8h!;vrX1fI{}LdqQwj^1n+9){EAC{ZAH9|_l<_UqR0C-gaM}?7uBx%_HD%;I?p6Wu z0t~u)J%&Fx8&sjb5_Vmm*zCMXqhcWZRC!`iE$SEZO>oID$7pN)hLofGw}voYcmUEl z;aF0yao5gU6aypnp&mYY*6D>+d{#qSvYLmCk}H0rsrov5ouJ3-Kz=AVPRW{tF8$eI zdV4sjzos~)^fFk~8k9+I$x2PVva#iwZKh@6MnGEb0rdS=qP|5M`_Y0x{B^f81u4-l zWCR;l-(`1}r-7&cy>p2B22&OE4$2sV=6)}1QUR9utzU*aILMv_=4TjooLWA61G0<^DQJ4gTWIZWs{~k0q z;Y^E#_^kg(N+m<3dOvdT>&=9$e+vz=4)_}?!{`s7-~lF?u-Dd~gL;6z@PU3g^KI#6 z%Px>X+Me!>Dn!xW^t2MTo9o0HOUnwo`L=H=g9F}=aT=)umg&g<%3c`MgJ>^szNBmD@-=OGq>Pev8+pQG3ZKYl=avQasuUIZ&8AK$n#e~WnByd;A(IZ7c*J5 z0#t!ZyUrJuv8&TshFv2ceL8MdTz&r|yR7QZ7%7+(bO^A%FZ45-UK37U!Hb5d!dIuD zZU8UvFJrONx&6wv^#P=6zg?34Uk3{P7uI8n>|Qeq92&=sOW%eUU$1IaQ1G34ut$M@ ze&%AG+@h70@7Zi?L;QHG1-`BBEI3vIy+XwD%zU`UT~wj9f|w_SxK)Uh^ z2OT5}0;b43R@6{fd1}V^2_<*gqrw|g>fModo*Tt$hl{y5i)Fn=#!E-cex4q@uxzE6kWw z9stw*{8EIF8l3O$W>lz2Qrj)Gvf4*^g;n2=ok|ngG6_2*c=yZ2jk_78+mq)e*kyOD zgsz;06GB*8S}1?%fC~mn%)3^udt?;f{+nLaCT10#`?~4=>2F1N+-4Eg&rrP?*3sMd z)pWdBGEWvgDZpg5Xey<6N=pWCGM5xA61z|@xmSSJ{5#iQYH(Ja^6pM8M@_Mi0>WVa z=JwXaZjI)bOsDe&E;bu;He)hWd|BR|-4xVbem^rPtk5znRy2=?1<9U)wuG@urT=Wc_69QUex~=|K#)i|3r>t_gzq$VU*fS zTe>MESgG>V$}zK1AGkalHo!a#6ofTodTy1%a%@>vIN*Eh z<#wFO$CcdwI1;2+beQ<%-ycFvumf1*AE-KsK+0Uueq<(Fw2~C^MNEi~gCE3_C$_1b z>8dZlP6q5<)y}0a?&DF~+8F;-_UW}MUSr6jYkDy4Ms&(a=1Jh}h5Mm6Qrndx6m0Pr zG?W0}^5}xWS)-zreLmL+%E=Gw{9P4(JI3L0H!}Maj>~Xhvf4~XT4Dq7D2F&S!dY+^ z=iFwxps&tU!0=HPdZrU|=No-didw%sS9K-#-11`|ZxbiSkNsObY^S@i8M>(Ii2f#Z$#q6hF(mdp?s5B$ZybVv(Y^jX(8Nc5<>6zb!=0&Y7Jab!scmnB1*i z*2XGJ9IVyy9Vv_pHD&+tXpYXF49*@rR+HBf-8u+)z)%Oi32+|Ze6U&CU#hMEW=());DGKPVKhZ=GoBb+1!9gU-yqiV3Jf<9sjpOKmZ+Sx`s?T9bhggo<_X2 z1nZ1Te*%GgjF~GXt#uAp9<;n@t6@57tNx(Xi$NjP?K_u7Qkoef#i|?{t|6G*YRWon zI|9a2#Rpa#w(Ex2F^sF&a{e_?di5W*w68EthFQ(!seUa?W>+D&uR_;FjXVGDIKPio z9Vn{>DHCLF#O`jU(%_1OI*S(P2|jW1-7YbW#V90|eWkd$A1LII96d9^#Z<#8HdYC? zW)HS{j#r@s+kp34O;*Ru2$QshtG+!-Gds>3_JJ$?YWrr*UyplZ48H$LPl#&rP$}5Z|TCM#y{OPIb6`$^+#`h!BI#-uwP^18YQYQu-PoHz@g7|EC;{&lv z$T=gwCbN~gPu@fpbB2?|)HVo=H0GqG#eIw9lJ|m6ClYO1JTK`3n}!%UZQ<(we22J} z*61;(wD(uH+L=}3Z>IcDQog*>awX{;Cw5}K?;pMw;g<2>pUY}0t_~obBi_(<`QqHb z_AG|~YhO@+;3PvY&B;7wJnHd*?9ZP5#t-!sQese`>M@C4EgO>zojzJD3pRijQXq3= zIzyX6>C1-lI2>hKRh`WfV#r??!*q&!#}1J&_%i>Ixu_WGXIweWr!dPnWS1(3hVls2(f!_=E@e2jdo)YufP^`P_3&Haa^ z;_9M?r{8{nBtr&GjvhVh!YSLA3j1(; zyK?UvPu-jL@pPIGw;y`=FbP=Nbn{5hTBMrjoonY;zkgp+{vNhmvYX4S{_>^!L7MPN z9IpE7fDawg3T!6MW1E_Qa7F!oE4!?hCIxULj}-|GG;UOa#MZ4&#a_^#n=CWmd`e+i zm@(wJk|KX$oFR791MrcYcZMCNo?6x32wI%ua6e&R=%S%t8wPr!+^Bd4eAZPDyT^x1 zjuH=&jD2(t-w@$sZan8%?k+!f<^KJUBGRlPMA}gpgeWFxyM{s1y8F@|#m`%&<9_j2 zo`#g)=>nW#L(9F4v{2BFbg$iTn`GrH25Z&yhy?m|4Cr53YGfl`g4%)1kS#ZW6IRt* zuFOe^-NkLSe6O}u|dxCzt0@39IS8Z+T<}hOcrA(!V2@6G!RCxlQEfLldNc*2WSepXeu#Iy0U@QuTG7j zJ?VGgT)wa_fh(Iy?C~-->J@#{*!}F{P~jVllYz%4JrxuH64W3Tih6`&rtPX>(&-~5)LA_GlNFDt)74+`5{X?!T+Kc>@*{hL?{-qQSr8;R1 zRkse2uE$B9`im#gU(gf4`$YR+NNP~@p3YO~A85H;XgyLLnsv6|xI-Ivq|Wc8;q(&_ z#1H_gK{xf5-uq!VlZQzMw(#<=FGfyI8mC+Crx1f#Ie9M2NjQE_400 z$%TOmdh_RZoh{PcT&^X4X`MxUE_zrlakCFcP?DnqlSddDI~oUSo1=3T)q?_ajop38 z2ZG&DHAzsvm#ox0egLC00=yi@=rGctMn)Y`3yeJ(4vK{I-D(A%t%C8^+lY+-6^hP- zM5c?6@z~k5X*;{}j%S6?AD6@r&MErf-ulo-TNh8KkE2l(hsS!Crrr;g?ISK7&RGYP z)09|inGFe)G9G1uq+!e`hOxG-LD4_bcG#`+7%6}ACC~M>PiV^|KGAHhSm?Gu+IB*{ zP`<=}z}H_ytOFPvGu*OS;=C26$f1!)B#tqU9hBIuUO=P>|Bp(SX~uB3EPBVCptMphB=I==tSyz2Zui zUr4StnH=7Uiyyqr##Vj--ElWn)M%x^JiXPbB$^Rl{&td&{FwF(GBV z#mRE;=yi4LLU}@AasW)*g(L7zAkxS(1V=?De|cto!&u={jMCUiK%lC!QXn~b{Apx1 zj8}p`jEh+W{~o2bHtm;vE?KT5b|F_g_JC<5XJ_66dk)l4K7Wz87dH0!)41q8%Gv0v zzZgHp&|gdqe!{1hVbHZdyYloTr_8dv#?`Ti|7K}2APl-Opqa>qZPVH2Zz?P`WY_E2 z%G@EpJ~Kq9=Ou1`R;RM5_`0b~lCGoxsVe0%9$UJB2rYRBqSi}B<@%%CKo8I(hf4b> zxSo>|ge@P2Q<`?p``V4XWpa>qQ||?prl*Gjj3}-zutI8(EY#NzK4q(DjX%fBnk>0j=>f&F0YpUh zm6ASoIsI>}p&T8&Z_NNBHxF z=tx2L)TgUk+RWuF(n`yf+5Qb*3Qvt#KAN~3#0VJ+T>F5m&q#muMxOi_Qo)Sb$Am4@ zHrl_Z?agc;LT%`qaU*6hA0ByI%bq?yPIC5Jm;_Z5nU)juGSn zy~s}#ULV%sMQ7CHE3vRC*#4(>>#eJPb~&-JgN$;iE#CRCZfUj9&(J-0*ycV0xIS_$rLil|>bOq|IdiTTe`b9^HTT%5>A?4m6e?WJmao*gIy&dK zFnm!#0J!qpqt{&frb2^~D1x%Kb6CZP6W|e#^GeSYRBb&WD@z7N~~W^nP& z%PlFFbFY(gf$UJGA_p?+60oe~_1-hj4rdu}f1yYM&e^|O%oACWsMGr#Hm?PCK%+mq z_~V*NBhXT$Oa>SsNSL!>)RQC&JZ9+8XJwVg<#>V@2A{4&DeNVsl@{(%blnGp<6*ZJ z+Pxw%!0+I57OvL`fp@^XA?Q_6CZlDzp2g5UB@FRnx85HjFe<{kZElj3@-b*>!?K?E zSyZ~Zw2DMh-Be!U+Y>QQa8W8@lt~Zm!P!00lW{}c?$VA_78`*O5m|cQK|oOqx^!a~ z@#xYUxwQJvyPO5Ey@sxT-SkQE4n$gZ$!3h=mF)$V4n^8+wL2}X{AXW{MGn69=T`b$ zh9SY}@^PK&(B00o&}GmYKFCRTc-wSg-pTe(y+u z5A~U<)@2!Ig!Cw8mioz+`gd}~aTOgIY1{Z7=Y@neu1h>5Y*(kha|J4W}53*90vRc3rZ}x7bZWf5pr%LwEIjEtz zZ<`;q?pnVcJ5ZV0KT?JZPVa;ED_sBHVvxL_Q!1qdDI!6`za0C1W0C(dFLXdJamy{< z1>)G3XDN9nDUH}N202}>P+jqG7P{Z%GOQ8VWn18)>00HfvX4?7$`krvT_}tigOqvrwxofoSTI6`EsmmFd&R*20E7W8CYo0Z?N{5hy`BBwRXcDg2h z`VxkeDOzh3M{Tt~VrTvM?IQeS;4RyHtAm*XEf*x3ZW_G)N8rh~$hgC=*W(bAlr)}t z&)blS7Zvm~H%~?_2{Y4HgrxXTqGyY!42M|!b{`S5PJXxZ*}|l`D`^JNZ{ZwG6^cIC zV@FHNRJ;vaS#>jHEi~*kONxE_AH1KVJWPBI&2lL+>GFV9cj0qQWfr#XjZ?4JY^Cy? zw!`TtorkSFf2Xq9ty>RN&+=BUIx_}!u`kg{Yb|IFi*NF)PXn>r5XD@I(oasZ;#1;! zQ@?Wm#zbiEQj*McP_LMcSsD zYoQ4%$nM9=-vEQs(u!6UDm1~wZjPq{XlSL%PUXJUcBAr~Y>)jXg4@xINF+#=w{z;G z!-l=a2_14c` zlfws~GFiT9s|EqeKye+T9+jxU+U2`Fd6O|Li&0nz8I!vTfH>35&r`+t&rIZ#7%4!! zps*%|?6S8FyGZ$U6|6`ect zBK7A|LsG_&S-Er=2yz2QHsm;B6G4fQkT{fFhiU-SzNf_!*JW2d;eaL=EX*H2p}Gs8 zgDppfQre=^>E~d{Yg*$W%6R?82M;xzGslVyb5E5nXKsf@U2@(1H4`BE*I2MN&A0m* z{)Kgx(q0VgH&kzcbs2@!C>*vL&d%4?*~x)oA?o`MSQCq%)dwTY|NPyWaO82z@W3Ed zJnmi$TqS^}@W*a}G@F6>(avblt%8FlOd6qZnlK$ZN%Ga-g*j9(eSbvabW4r7nAvJg zIsp%IIi;{@7?1;*MVPaYhn%`3r~@UM1RDj1!l4kXe7nh}jI{4k;pyXupTnPWl64f8 zp4>|hW^L9w)wBESqn}Yu_trktjm{{2jebZ%?Z|))(qpV*j}buUg!@f0LwlzKDH9iX z1GLx)>xSOqde8{$);jb0Ah*Qpn+eN{QR3Tjsv(_0dHe4(*D6?jn33jmdez|)%q|cJ ze)r)^VE*mra07lp^|S|#A+2eGcmp{P^!>p!;CNWkllaM533GMG+DJaAqGDJzI|~m_ zwdKTuIGzA1H_CVzCH*g^V+Qp#2Jh=79&NgMLyE@jisSYf*M*Y;W{>g^+qymJ3D;7> z%@5w5%THX7#9>g~sJw@nusZ3;O<&*b1t%P+D;>|YqE4+)EnE3Z+e$sBgATi1dUWxh z73tQ8kq9XepwHdjeYn+GL*cOeH3yreHA zvVaIBgU4mTuR=o<4+`Lx^G$Wd%-7fam}lfBpcmMTrm<)oPM6*^lF&Z;TzDAnu8>ip z$!SD_lo@tca$T*}1X6F9pdAsRE-mdaZ6(&FnlQcJBX-q`EKr*O%$JiSzD*6aQDZdK zB{_Z3_lxMCX)hcp*n8=oV2fK_`ETa~l$5-??jU|_O)<9Lj0x>>IhZ8sv<~CwKa=cMPV9p6uA)wg*I zg%rNLmJf!bTs9P+s~-jj>F;M;?*Aq8dmI=6K0SS)Nm6EctYRSqF5FhM40o&-x|tBo zpywJ>4&jomPJ`l+I%pBaEn88|<97x%U7H_>ogrbq)wN3cIMfVlNh_FejEvkHB&NY2 z*3z!7h@1Mv;jJ~kzG6q`6`v-pBWERfmSHm;>gLt>bp3LVE~^s`ADzbBic$@d5JId> zym_ad!mpud8-bhXig-QkH*bj*r@!I}8j9aR4P^V$>G1R^Y*OLk94V>fGJwTMm~QUg zi!< zz0$gmM7pfDS1H-Mtq7W+aH`7Y#NntHhf(TPl~{^TyP3d|`rnl(j$KX$rvZzcz(RlT z2`)$Fw8VRFhA%B z-^^i|W;{f+sYSiGxqGh7W!$qtAs{+Qiq+Vm(Yh&1>E1`DC0ENfX;f=NgUnLkC)u_9 zhNQb?uWg)?x_-j&eECg*qWR;v5x4pDm0*sMF)-~QmUS7nf4HX9&3FsDLe2y7$}*M8 zKkg`Vq0ghox99B^I_6OBt}<-z$IGxIvfX|=GU#1sANeio5`6#D$S1pJNtx)S4H7}E zM?Gto_C!xekIs>YMe!hs;;gx@p|(v3Iyea<3e@m$+dgG2rcb!hz#Nl?QW+fm6JrIwig%jRe@?suvmj)#ld-_x7%}{ z8D9;cYH`d&hp6jo(u!SmTNQ*N6Zgm_ToWO3{)t+bUFWH-_}ezM@gn~+~1a8sPZ zU~~*UOiN2UNsfP-;;BP_{JQLGf&Rnmj@6;FAB9jfFb%}(>Ki@fZk+nDTK^7xPh2G9 z+ENJfpb}H5!vPp2;QEc92Sw+YWaZ1VZy{?C2wgfERdijg0oYK` z_yu1>pDRS*gW5_kK5uo`BO{dt-iP$~In7RMga`1aVYA5e5&YEMix1W7_OG=UoGm(Db-Ze= zoR*ekr7c=rn?#~mVcs}s-F^59Lo(MbQs5lD+G1WFXDQPv#-AUz5w+G`r-6JuC%N8wjzY`;I~FKg%gqn}%+>86_7jF<{f3=%IM z))NdEbvsgRvfdGle{g|^`Hi|6PENFVZTWBZD!%I4K`pM)ff%LK@;LX{mG+tD@!7D6 zf{L~fsQ7lBA4&|D1MYB>5@D0mS$e04PkM@#+*nUxsS-D8+zm#>OL~WKy~9bm5?PUC zVSx43i_ez;yrg(=<%sPGe%ry@uy#2z&t*-OFh55FH6#aI3=7^1rh#Et2xY-LgBlm1 zVFH=PUk}5kv%e7NWG0$vR|V(SxDyjUWas~77*-I7-czu6;NKN3wcou?v6vt}G##*v z%UZ_$Hp3d0JnTGl;z&9YiAjf5^9HwPx!#8xA9ay~5F^=FfB-|+-Eyi8bH{AYUH##7 zLWg9T9~ZslNsYM)H#m^%f{Z21^SEYvIPBUun1MXN*BN5f!~PDo{7RVU?ZU;!QdFjT zYOnLVo`T}RAq+Y_BYkMEOiGEC{-=Ore*LX=pgEC{kp;1-d3*v5qA88lhB$Uqf14G^ z2|*Umv_iwF#U~*78uaV>4VmN<}8-FCjahY zs6Tw#BV{Z|!J=t@^G@^v6Lu~!TR$Fi4J*Er*@t+@AZu$}e<>uhbp}2iNn%1C3ZW^3 z*9+kqyfJtlFidr*pA+0BDqC4F$Z1%p8RP0;ruPd~Ysgd*5AvNtm*e>Nc~6 zX>Hoc+6^g#Jwsg2inf5ZfFzLAlzcfve5>nxgUYi&Zv1-L-)T~RIAy?Y_nZR%H)KUu z?g%EucQhrd^N$I_&E}|XwRZvw?Cz&rj@UxixD&~{IcT^PQDf=4y+*T^_8SM(9+;Gg z1J1APH>wHY*r%p@5o_XtGkPx>JeJC)FRtw_Lf_x`ZIy_MGz!KT-_Ar@9+#KPuWwAo z1#*VH%IjvR;EV4H_QyiSo;7W?MAPk~!_%_3&M`X-=f<9@V&~| zmHLrZK;OXU0FxDx#NYsKoX3*ymgE22dD4$W8kA@kiPqKD5LT;89KjPb>lCblD;kor z^cU3UcQ>VD3C6>2iHm00I{WzByb?b;$C50NJjy20=eMcNDi;Xao~qYXwPA?C6coi8 znrEIyup3%`7a|^rHyG~YHx9*Dyco9JQ)FZRY6>ok+q|3H6!x1Nit1ovbyRp z-2qxjuM<#b!3V?gLms!$@J8PD64fjl5k9~Fz;o10Z1tm6kM zah(fipX+f_Z14fvgY(kXh+N30FQ#68;ef6b|JCiCRx{?5E~uG4y`+xXsLz3=b{UUA z)%v;~Xxeinsfx7grpR~db*&Ba7g&uB_X%6+GF;P!I>FC^+fyVC>#uV$W`7cLmW0Eq z>%ws`YHj}Vz|G)~uy=mX;u9c->#)k2u%w`GZ5rC)J2prD`qP@Mq0I5=7A>+S2@`lL z?~!EL-vdx=Spf+Mvf7+G-mA<`@J(giO!}~Vi-dTBak7Nf9`p!je!!*S zI^y!Joa=4N_6a|MgrTG5inpj#n%Ou)C9;vb6L&k^j5x-b$)}s{M5H@>5Ll1SsMz3t zA+>FxTO_)yg$rva3m%{P<% z78yx^F*bw8>-_7^{A%fv3#`+aZM75dV6U8px#Qt1CE!~9B0}`s3d!2|_u#1E1o|BH zNK&G}LD*;R6^7ebWv@kHoTak*C!jx|U|NiV@FSWP(g~&hP4RCzPGFMRJ`dKo6V1P$ zL9WgJo&RK5O9k6n*O-e^Q&CV7bcm-W{Rn%{;&=_p-|G~g1k>b#Tx@+QzdEY?V@X_g)px?g?Q#DXJ{psF>@Z;{kkaq3soWlk8cZ1gp91U;@-W9D$m&W8#!=fF1#{Du1~~@7j`VbPZO()Q)g0 zu)-!9xk~(gf64a=&bJy$Z?;!kIfbwzM^xAwApU?w$~n6D|3s8IX0k)7?L`T0%3s_I zjhSd)B<3zi7(*MJq>ds1brAw>!EwCORiLW7QeYP%6Nq;t5u^|CsIUv|liXX3Er5#G z?gN87-L{6Ra#&MoJqDfhy^>n*6a_g4d<8}odF*)=dFL5D_b(`!&4dPe8*Bh`J3!0*%>fZgdW!tF`_Ka>Gdao!^dlK^Ojo zmd8hi;<}|$XvpeB5HBUIDg;6a*P@4Xb5PSH(_u*_g{eH0qNe)dXM&)3=p0gvxe8=l z(=Q}Y-auyty8ghF^VWD^elOrKayUifapDfKW6amUfe|WK z0SP$EIC8;gIpzTTP`Vmeu^eLzdQHIM6k^Gx6i3pA^o<)Hk}&yAH*D{%ho=L5iP!Mb zRcQ7J+2Vi?=%e;3#S0TKfSsiQG5}7o5JCLO%sUK({hwX0fkZ0zbL?lW72!u~Fz&j> zZ6Ajt>E@9Mf0~B9n#MUP?A2|&q*iGaYlVQu%t0=FKGq_GI310}YS$n=V+TTCj=KlVl7DKD569 zIf5Q77~qGHVvYXa;W`EUD`5dJCVXk_|BQDawnWtih`OFL3kxtbLW7|Z&lxdj_Du7M z>GKMwYKn(oyL$sjYw|6wi81MP>G{D%`>ZLdMAMz>ULMEOP-UMwnN1%WgJKDyE^K9I zV|55lyRF}s>(2PjZ}0k<5*}`3Cao*ULEmK{4ZaNRs~cHke_d7l+tPh*RQl+<6fvVt zUZPtHA1!DfLA%a_-}bH51zUY6@KlBNrcW|KtLfc7C= zA0gH({E9`)v7eyu38zGOtcg}d*gLr+X$$&Vo3K1(xJO5p`T{gJeAmz66+kWavC$IyT615W@SDwqMr7>b0W z40xeU@~pGVl?lS3!2#DIAP;(i(ZHgAUlCpyI9>2YSjhMH_WiZ#|BMN51V;D&3?sCU zRP1|r+fG>BDm<)A=pY$~2)}$)ha(AdAFAQe`DVQub&yP#XfdEk87b1zVFYxv-t?XI zK7DJI6Uhp7>KkRFHrLSZ&i^wc`7~)2zxA{Qx7hn0B`9>^w1@BZ$IlyEry@pLb1b0= zhFm2ry|znQ3hk*?YiggaCs5-b;ks?A9x=18m`1?V#kLyI&(G~9vc=Tpqf4SRAKd-$ zpNKSQyb1jS6e)iJ)JtwD=Ibbp%cTeKe*91bE)O~0_q~dI|C^J zNzL_>iB{8mtv~8ia81!qRJBWmfx#r%#lLdhvJbuM@SbDIm!fmo-gMJFXShc@wDc`^ z)yty2?m9F)*jc9_uDPBET*(Q~B7*Z8dGV#mJA$&QWfx$KNiCLkt4kK=SC@9wzIO)6kr2Zd z{^tK4Bxt~b9rA44tf_x*XykHCKN0O}Nfc&rqI~7t?jGL6koFNSP<5vgOn~pix>Cw@P z{OMT9=HEpR{}XWtIErA~!XpSp7=_VlM#ww`_K`5K6+V>&4x|u55Z+2~W;rC&`v~S0 z<3Z;4xOLJF#6+8POv<~`@K_o3HAp`P2`e$9fe7^lOv3bL{u4y)-}h-6140p4^d6Z5 z0{SvU&O>XY-G_gYW#4Qv*tFo=b!_qS|7* zkT=~!e`eTg&XD@G8h81<6Y}D!2I(+`X}vo(>iG7y>V3R{%AopfeF%~eChducRgnzg zI@I{56GzM#VpiV7Eit(jHotRl+d2cT<)qd}d#~bXP{}0Kakrbe=(RcPDD^ndwV?x1 z41N=ChMM}@;Cyedy3N&4N1`6Oy-ZE19{Z#u-n`kPXx)ywhPpMF-x>mISqp9TI%)Bw zUmYrYANue+dx_SK#2=V@v@Sd1$B2yss@k3^3J2BdL{Rz_MDQACQ`Gj#kl$DG?yUvF zMHjc9<kIIC6bMTD;=P+Xeik-7mrploTCN zBpkJV75VQDTd178=BRDubU{s%HbCKG;YKv={gxfyqw`EQHYP)c42Kt3-K;WU5V z9?{56jVvtSjtXSSm1KOD&z;hy|Yq#lxKp$IS!9&&cDDL@!d z;LQ{M*vtgMQ*nXAn{-eQ>ZuhI3=G)feZB9PJ1uVUb9`MWiw_Fm^ACQv(H7&Lh3I2x zwLyIzRPeX^JMo(QEXSQAbH{?%^4X5wR^A+fl*hY7H3>Osl;iD}uC})Rm@7etZ>&A+ z{ThCT1l3m`pSc@ax)FEKqLPe_HL7A7cUAW2!eg}08NLVMG+0*;GQ+IkzqliX-aEx@ zKsDwLN~@CM663ZZm?zACS!o(`wt(@oV%Gtoe{`0G=Y>&#U(r8B0T?8+Pc@z`N?n6X z6sWk$$9?-~wVi5k=-YJ383JNmac`Y_J6TYpNxua+wiu%_{NP(Nhb0a2Tm^hVG)s|I zX8O)uD{@44meK3%r|o8C=zOE1bh`C0_=-^TqwK;sv?2;CM-n!2p7G%X_$Zzu^4mPa>&g7+8STv4TL0Q_e@O6}Pp|!Lv|S=6n|Bh+>Mcsb4Py z%zIqr6Qx5MM~xb;Yl?X_Q&;_yVmXOuXGRN;50vxcN#Y_zW}~I6DI)W9z>$$~cIWS+ z+TpmC7mGP#W~u1dy{W>MHGYpX2G0+ubN$!;ha&Au{KlOP^w}dfh9Zny{+`3hJ6Y(8 zY0u8RKfB}(#Fi0V2gY72l6?KV=1g!&cz_Y>=%ce%M;@3$6VGd|%418@tYm_NYvt)2th3eCv{UrK^DU}cDh`J?h#uV@-m_h2qU^-^S3c8nug^Ur zS==CJ0xN|_zCBYmVWAuCz?0wy1ibVTtf$KaLyH`oYi!RL7d91;tX?z zTn^TdwKQs@3~+J+Bl`9sC$G@S8;0gRo9m_uS}nfaZoS*9ZpDiy4#&Ehes9{50i3SbujS;3(@61#28ia*(+aC*h-RqV zs-6Pop$#yxcDc+1+>(O%>Nc^_p$O!@w|}Wer)qe9|~~+ZybVbDzQ;l)I)N(I*#* zI%|8)(VGDA8$>AVA8@Ph7#c}XO&f_5oJQ@fnf#e4IF>Y&^E4o6RU2(vB3p}|ZHFyI zH~bm^LRoXOWZ`Rm+gqD!+>`QSF|DEf^TCZLqTjc#YZ%eFaF*+v(s8#mKe*To_Q_#s zr7f2y+3zOta6K*6R16ITxbL2SAZwi8DvqdaNJpbF3HUA)xPN=O;&}g&2XmeG;?}hW$PC-x7sPgo&mXkEmn@#<&=_uWV<=&IiuT3hu&ORMzvix> zyPM_pHO(DSaLfaou9Ku9$XBZVnwMd#+yx;hEDcEb)ob_ z6b4nonj6j+2dzK55rgNsUX6d5xHSlN9@VZyX^eIcah>-#136bmp>=iI+1FC!PnT57 z3boFd_#G{ezG>+g(0?m{?jv#V73SPacF3-CWW>uwmBFT+5BRT4G2vAe=U<=8?=CFT zGe3d--!AX4fj(784 za(X@#s)OQy2G+RNLgWA}eZIuCy;|Ns9tl##u+j?FPTICiRIj}uV`$BJVdoP(6( zDC%wRJ;IS9lsLw55C?@Et0QC`vPWf)C{dr^)%W)gbPLz@x}LAc^YOSpQvEoYcJ<^C ztugd&&G1+6w*&9{h|q=FH^U6H>ZgxfvYolOfm*%Zfb~0NH5O}X95ePjsYDw~t%8fq zJ(G+7AsS!bunmDAN`6U(YX%|?La4WD(;f3%(Pt_V#0MX>-l( z*s161zl#pFg5G#4SdZ7i(%Wn2Ng*I?2H`+1J@{)sRsQ-fET(wqSqO>8AK+sFyrNA> z`2Joym5BV00W%X4qiy83j9x^R~DDOn(A@kjF*J&YPXHtA%4uR zy`|!%`i{c?>|}c47OILGlV3|xLzAbEj_;fvcGa>? zsJySVaf@7*#=G~O-D|J;`F8*LjrT!w6PT4P2N>i!^GuV)%vnEg^-0;@l;E}_AXY>Q zD8k_9#!W*C0VmI|D<*QTZIA_aMj)a?E*FJ!GvAAu$U=jlM5Eg`X9rdTNh6%lY_Yw$>bnTeTp}#?L9oOl>~z(gww|cB;YAO^ zaX!h>DfPK$6uC#gtXxs;?(d|UK|s{CmxG;x>gRR~Pqo^6W`NS!-aU&`pn?45ZqG!= zSp(~l$3Opf<`c)1!P8wJM&jSqv~0}6z~Ibxpqet!w;k1N`BJo6#=WA_CKXVUx$5LrN@cDs9fEGPvyc&)6r9=Ez!1<2Q#qa(uD{nAKmy&N7FgkTm@# zxqx2wj!}1&;329XR|goifhTYvLM8vYn@A5w?rF&GAm=alAL+wS{?nH1Nx60+4VWBH zt${MWwbq=K6oJ(JNHw^>8~9zf&B?Io0U(5__NjnrK| z*CF_GDP;`_>$(5VyCHvt&D>1Eii7VjazTAGBZc@SpboPOQ`32tKUWoe|rcZXMmJ+t&pO*eevPg}X%8 zl}uFm(aX)B{k@xv0VIMmD_Fb8x$^tVOut0bmBn}lpXB%98+PWE|7ZN0tZ55BJ2bgY17v*QpZce* z0Hd;O$MfA7_B#&3(E>i*jHi|TyAs>@xu1OuPcF_;Ps|M0zXSwk+5*qYJE@!#C*6(D z6;+BxleXo+cEm&!NaFed*iKh{(E#~f#x8i;&pt^Q4-zlix`DhHGC^dW3Ql(NxR)NW zu|DCTsE0nqS#jCG7h0HQw{4Oqm61Orq}qSETnO;2&Z- z%tNESU z7t^OzxG$o9Hou!$cJ+=YU4o>;CSJMtKRZ?1AC7LB02ZmQ;r^x^O1;2&bRDJSi}$W_ zK^G?SHT`4)H0x+fp%=2z3mOHY8W1~3Hc6vNKvcOsyuw6&z(BeCx7qLW9^+d}{P zjQ%hE^arVSHo4Iqj*aBU3cA`wzSF#roHG-xagD^sx?b@c5#{-}yOVwt+;fU7u%Nu8 z26MMLTdC{!4teFoGcxUd{LC=i9Uq;A)OU(ret3xif0z4nFRXx-H!ZY{^L4-T6!aS@ZfDw5#xCNHF=4I_l4F?fOKE;;_M+HxM+x8 zB#+m^p0V%(di7fr^?0JxmFVaIAaO1R*6p@aH0QQ3W5&5KOegY;xadtrMq(|gB_+3` z@Ni@7*W9uYI+L4-K_c^dK09Zefe!v!ha?=(DFKJ=8_7a3H5gX|>{seXR?D8w0JS1_ zZ*!Z1FP>zlkDj1zf}ex-X*>I7gw^vgI^qJUk0Z}rS>SmV!*2I|?OjrMfNa{CCs)=BPXoDR z{{v=Op!cPsu{KrG~h;Ecr0$lEWbb7&F7Hi0fnwe7W} z+*;JXP{O4A*TeSEbEC_Yh+P(!dJ{ z4=>gKE}yqK(=?}Xwp2pogd+~=h?##_qkiGF72>ObgamZ`qyF*j;;U~hC+;q5ybLS6 zRe&{>riwD4dMd)A&Vv9MQ&vYi&6hQ~+E9*2#!KK1UK_u8zLyr-z19YbfJRhA~SG2KIODHf=~V^?b4 zmS$qr#($2=og8?u?g_+Tl|^wMCLd0A+w%q6DF+OCG-^7z*>__u`gs!*iBPx+Bu|KV z*0ufdc>rw$NQH018397&^bTK*zOn4X<-7{fqPe#_h2*bS{UNV()~zK{4tVlgVLtcl zL1{eBkfqNWdw-e!)HA)uU-pk#h)nWQ#Yjj2yX~DvUmvrpP8E20;h&ghx_#6h?NaUQ znd+H4N@^>UJmr}91T>xjwtWL!8}MBd%|`v&w2vrg0f^UlTh-2=HO#fC==0{kH;~I7 zA7aGRk?q9Hc6XCR#iqR6c)nbo^IgD4N?rOD5b|wmc%(wDNXl&t;d0^$e%*xiT6&$R z#nfhNFIK;UJh^wM_8A)3RHKI)o9xoA$||s2pDKE|Ra>>#oa81^VAWF!-5BTYLYLfZ z4Lb)Msgrty(<6ZFZL+3_Kfc1l_qL8t&7(I!-R{EvNAsTKv7E2{3i^-LKk`6ei|TK! z8bl40X%&vkyQT}PU+*RgwHI*}PE-ix_ANkbLV=5CzgGJ~uieib9ZQmI$i@+d zc;Q4|THGFWd2FJCyrgWkhMaQ}NgFTx<+ogc^dzprLL#d;Z3 z&y;?MK>m>Jh*yPg6y~uR47;$pAkJiYojlAvNFA*6z zl;L{giSqW@ApjBn)Bf3+EuO^%0U*~Qety9<^cVJ*!4^=B26$S5ydF;d3FFLOqpLMg zHGCRU(KN#`ky_-xKIU&VKIoL3HZ|(2)2M3?ReL&PDq`LqUiHYff#00yE4<+h zd^=YcU4atQd+kR}mOf2kZv4dtNcXUPu-%1YnuT}!_fOeYp*i?{=GdiW{l{vb#69!N z3Dso{X`-Yr(_Z=F(EZ?D&U6vH_FW`{%$MF&L{pVXW&eA=e@m6}pm&RXhVgrjEsX+; z|2uP@$@B+yUxGnLZ1)=D*>^8D?;1r(H0%PlcJlQ9*AM|k61d_#!OZ>b3+|F_k@$q1 z#2#9L0gufRJmCY`#$AJ9_Ayo|XpnE=Ldq21&2mM~UpJqry2ff)6ao2_at+#!4}UJ$ zUMzSL5!2I1axJC7>K*>%!2?x6Izf5bX%4rE`qAoqFAk1h**b61)7zlotoZ5N9 z>e!xew7qg)XX`1y(qn}bSsUPo_FdMwve+z8b>qWcR_laZ%5J`^(EVOn^C%>bP(h_C zHfV+8CqACauT(+m42mT6iVyB~X zUm-BLf-oG076jv0vS0vGV^mf$ohb#*0G_k~sy;p=@*;_61%oK_UXQg@uiRd|>fv33 z0=WYadUS)Eitb#&MmAPC*`;xJyvLbLb9$PpoHXY2MFBYm?bK>S0l)V}hrPG|U@5Ef zh8OiUUWvu^Y{V}0+)dXhzqf?%YQjAkMT) z+oN39uKt3DVVCtkY(v+9T`DB!`#%LwN?-U%+-kWy&wmRBodyB`7d`p_Gsk-7_q<#u z&jLt1|93}A6TV5_bTD20-x+2wGxD%q!$hAW;^@mP zag%e5g^%dv4tx-LBEyg&K+Fu(Ey9$!KyU)l08%nwiS-10<6ab;x8mtWMe^j;`vSc8 zv_C&Qz9-PTf;jOFe}Y~TUaNsEP0H#`5S0MF;Gbrp#&o^;OVr8SxrxcmfyGzJ&KE)^ zQ=Y1!yuPQk9Sc?w#9C+yg8JTIp_ZKLS}Jn*X}*(|uhOEbkTt;+NYluTyr=qM(-~Rc zlmVuthGJB6z&}WyYwK`eo(%Y}h-L0go;|Zjo})7i$2adZ_XYjS%Q>(zB&dh`=Ojh* zg$gn}KA*b(_{_epMAhD_|3>}Ykjv&;>D#+sJt$jm9qRsfCfRvn98Fw}oDmFyb9q%c z-=W&Sa#@acbW65+&adFwIzoN%v+)RqEiClTbk{pd_K6ro%u)hmf5!eOx`uryP;noG z2X=M({)@l^@X^(YuYPB%cbEngW%;{03Ay%sj5Aco=yPiYC~&{tG-2qNa+ce*6PDA5 zklpUZ0xR@haSjC&zA8U`>uGL`&P`QF&+Gz9wMR#rjBm-hyX@&*vfIP$v>fh#?}5dj zrMOjZaF=Azz1Ka9NgWD*rQ51&Ri*yMoHioBbS&701JToch(zx-|sO&mTW;KUE#d8_3r+7r#uxhAQP zmDTi#+9>Lg(w&`6;?aG;hQbw9L<5?}6?eImbNzY>u`eU3JY!7q>n2IE)2B#_d zRQS!?_xc(AHsw5VVg(5L8x1n|h4hZ-`@3y`yb0h>r|Ml}Q{rq-mWGTJEXK9TM?y+S zgl*t`W%=c`PM%B3;_|0+m%>dRA#S(LhB56`30ZNaNcHc201b^Ttge*^eo{fjT+UOT z0$k8$z3FEFf36w~!S#!S4uI|4QiH;QbwmHbtC%y3P{suhMmjgETg>tF&`gZBJFR7u zaZn>DeA{1Q_OHMbBM{@MISYWCnU+*pONy&XsXTXHW73YtExE-2s0f=;_FnxGOGh{6 zcc&f!6t}r$*J9E$i;&#NNkp;cL(hM&xD<5qI~7@M9GsU&U4p+-Mxyq?ISo!8zAd#? zlOFI>tlC(kUG#U9_tp&2*IDAg;A;K1M;p~U&J|9xIlUIAasdQ!GBQz}q4$2#f8!}F z3WouZ@zi?m-JFF*A)>>lD?x_4ZUkG@C+FBgC$ZPGjivoz(;eyR zTDfjPIv{w}h~mKs+Mm;=l+!|$l`jQkmAQFg2s5d5+lWsh9lH5jRODn*gY?9;3ZzGk zj{{g03_c{P_vt?&0sspM;mceho$Pi)Ic8ErCjv*n<21L{rn>J*0P%cZUA?>ieEH^s z@G^tYeE?-%a5;GIEySAU`XKnmqIR;Y?~N@uhCMd-G#k{yLM_H_5`j#(z0v0MmBpnm62dZXLEs_t z<=tW5{EwchO*L9PrZK-va%ooM9b1;R{!3GX%R`<@>sTv+QRA zAB-1BX*q3wR7AvO-^w$p_Zy&9muZ`a1weU>P>8&8U*w00q}}rsX}DT0eF%_%M;+$7h486fj{0E_FbO@yu2BU?nC*{EgR1s zgS!7xB{+1M_8M2AgWz+FI)aqBzl^}_BV$m2KK%yeNZk&&#@v-@5CahLD?3iMEO^VI zRdCYyh~mUy$Ip2lhuy&s09Nd?mhg1BMYLRDP0bm^b(Gg?LMay=1PD*OCCLXLI%uN)BGMaJ-9 zuI1tlf>ryq_S$KGE*R{;e3yk;zPDUQs~v_1h2!2dCyeG#=T=|NR0+f((6N7tX$z6v zsyxW0i2w)3v6_nPDBs(m{>V<>R@P1n);X-AMIM%FujwDwEp$OBK4XpxuAa zA+Tw>_S|ZaU5gax!zjmkPE>AXKj?<5S**EZsdBPuD%YaZQ)1nz^4m!vCx;j%hjbRF z=JRw)FpXZ;;5)_w1lRNZmy2~`DuAj1dT3a@g1<+Ta)AGLD)f_8YApgTT zC%#JPewxZS&AG89qVb+KF|`_n$SpT|n{8|-lDb@FZ5I!~wSSB$xoV7{6tdqvD!;e9 zEK})k_n>X#vr}T)q~e#d7E6b9)1?)&NqSduazC=H-)Q5YH?M<#9 z#=M?KwfcV^yIY%V&HLdt0f2P&hF=l{?tR|;HCh5LaJin>yq~PfkCvOHkDC;|d-Iz7 zF%jM!g>O&nAvyh|g7|ohXDV_rD^?)cX~rvg`cL-=)Q)r?f2>jC|Ps z_|5X!z}cps)QS$i7*pW-qY$w^^#|_VxI0;X-wujZwp=P))%Do-%|JSdxNK~_s(Soc zA*au!0eDRPfQQwgF=*z9|r`zR;uSmP2*R8^ZgE! zeRHqSp4ov%Jm~VMxvDY=M0Pg9UzeFd zu6m^a3LwcztUjdhm$i$!9V9Fq(aS?vR!+Yf95B`-+kiYV3J-!)tJsP_?Hb4`=Gr;Yq#jdlilXs z=mF}*4sJ%_i~d0;{eUpY9x@Q5Kt%oaN@J2ZbE9p^RMz4H3$>e2hJ#O|X$ zI@Va3A7G%gbVvlbLpHhnu`)KfNiQ3j@>sdo1x)~u`#`>M-u>}>YHp;({uCkEzNoQ0 zt3KMXK9AY0id3|^l=Y6)Wk+%#$aL#z%uU>X-EmyG@yxZl>_Er`pl4w7c=7_p-t`19 zEFOFR{qdKPnVNJ~tMQkQNB8@-5^9I_(?f~)oUb04lBYX+97%taOHX6wH>@deJ}@!7 zP5*gX<1e27eK@1bb>`ezhBFKo&Yx#Ed!FI^*|TTPa-HM63_5=Wa-Cc9h7Hg+;4THT zrM8XG(l_Egx}6zvo=Tds88HF-HJKfLow|-{(4^3b4?Ul<5oqrn zmT6Ly%5G)~ihvGpcl2%zBZr7y~?x(FqQrVx5^JPNx#lF{)r7|G!se!}Kh@2L6j zMSOjxFOFW)VcG3GE|BF?2%OqjSI#nQMjc8lqyBzz>JeNh^gpu zvTh!mI;_FoEJe8CSWZJpD+`@WLI^kDU-OvshIlu?HuFT9j?8Pmr=1MCVY+v;j*5@3 znDu6v<FOy-4riqY}5;c@}Nt%&@v9GZc zDBJs~t-TYb*eE4AV1Pj`K!|-=mnn6=$X~5o_ESt4qmW(@fh80vCND2HlD`K>8%WK)|76a ztbh$VO|ON=1#Zu4(UsFa`q9|06y_hJCl%bn=UI#WjT`YYbVoR?^L%D@T=njR6Er>tUu9rYbDVske{xoL?cd*EA9ZtDqHk#@w*fI3RH%XX z6Xo`2)Qn71`pdWvlD6C-tjAjNy4<(}ZGHXCa$2EW9IJ*kw{&6p?ql|BYWvws=sCXZ zR=yD>7>o}FllCObbDbj*FnE8lLLMXi(C7w{j{aWnI-`2LS@^Tr5{-b*UP)v}>6?#0 ztEH}raF;?&bXr%~n@UMny6+}NbsDR>XxvJv)C;sIi)?LZmr;3E-4^u%6hSJ&lA@$Oho02C^H11=?^}j05 zOdu>+DGjtMSAW?p+wT`1h;*h63=K?^UAQ6BfwHvwYeNHU`^_K6za(Bwu<^}K+p1E7 z;PouJ5s^sK^LNw`BKDTN#@SNJ?(%t{SD!D0`elYAdRpV-40UboQ|+QmB?>h z&=#5$>EZ%mvV1DorUg8G_q8?k3FL$4e!Jm~+n1&fhtlg_m3V8c7DBaDvNG)cXElIGE!}qkg6Eq;R zDGu^lVIGn07ZVPp@t`9+Gy+BvK@kF$jK=5;|7F~T;<+2hj*fSSd;4&< z*KTCU%O5LvDf4FN8Lnu4$b`WHD;^1VB!b-KF>w}9G&e6Nb)0Mo#X1_~#eq8&N3dLW z;61j|QZ5;b5-8&vii1nzUh-Y28JM~&@eqcJxUdf64{JyjZE*N4Y8%5gEUo4Vn9d} z^#NM8O|JZK0?tNW(=7L%q%X5d*>3_jtWtuzptt-mJJ#(E`@k?rn==LtL){!sbwB5~ z52<-Q5kKVX*rZo#?9-o(8)=i7vB%+6P|~r{R>+@ zdx9Jng}^thH+#2c3}cTBNh?yGY$c0r&}gcfLoabcfyKNmN78d@gg-L_ewaOowt708 z1Wz~IEtDjD^Mptr;j1ujbW; zrS;87-|Cwx6nmVsC$GeNXi`VXc9rZoZh!` z5ATtc&-udK3ALN367xGzrHti`MRw%%EUBy*9k3w}7t2tV84i6%3Sl|s+l8unJ?~em zbjw?xE}O8@DShxFH)TI0t4lCOG2=T*lzrr!-!Kj78E00^GP8z3tyV#1?C*OG_>+VE zK7Fyrv`2qTRoT8uEYrNvHl9rYH$Q+Evlu0cTZNJCH2Xv+e~b6D?cq0H$<#0V;J3al zm}{dWBLZ^4XRh+Ksa!1Q(~VW=sThKLys$X%3TW~zl*x*FZs-Y08>Jm6L^|R1If(*O zM23>IevkgOHVK&{-3}@wv4qRZyQaU5$@;1zin9IbX^nH?$(@7A`moIME%jMF$|j+O z?A`|T%uj5i?C`f#I@vo^1$><2+@vO~TSC1e+%?Ca!d!-595{|vPm?s!1lc2akYa0T zPUblT!ofFJd0~_0LeP)}>tUXT3h6tNOd$0=U(%)gVab^woh-@R6q~{!ONFK&%@reSs@MoUT>axE9xwUu zJ+qyH#!WF9FU5evj4r5jr|c#z*nPj*$8)R0Uv%}ISG-r))~gu-sgLb@2e&ihi2Tt; zUYZu4>1MGJoSJHk5gD4FGFjkrSSCXAo#EkLhGhk2Zj8TC%5VYec)L;=QUim#U2iic z+`mXMxAiiF#w1i;<>Rv*@IwS^HqficYM5T{06}7X()TLOUYulBo^f*$H;m%FQ;p>5 zpv0MrCW7Yi0iz~2?|GA~bM_tTrx`!ZHyg}7N?rKca_~s>QNR-0d}tVvw+u7#62_0d zHHgDz#;sHoI!dQachv3E2rH2H%fv=(29;Xw*c6^HwJ?>+CY6+52x}T9@ErEcndDDZ z{1!~Y64`MeHb|Ei4vN#*ELNa1dGF%_vueHyRt$f@WU>Wo>f(e|Ixh*yD`Z72c#XTovmmy}G(MAbVo74wF)f4Ooz+@uP*-GE@sx5GJE=VgE2HBX+|>3?D?9UuKQ z;H0B2dsp(xcs6HjAD+Y|pAs?+2Cwg-yL1|g_ntRteF>xJ{7iL}i(2VfbY(W8v;kbX zN?_I?c%qcXM-4-&z7u3Jz56(;6MNKD$-W$2fw2o#eul%1Ab;!1k8i1 z#NP5U-z>jz+e7bO$;j-9{tOFGePOK!y%8eaxY^-)=Xh*lCQe^d_L`BY9u8qyhj59Z z%j7f;%pUfKfuP>?s1+l@gtuR_enC>`RJ`XikEbsM|eh z+r4N*%yAn%H8sUE5#;2(RV6Qs5`khx#0Xwim{(&Zjw!)6R;B6Z{5E6+Az8NzWb2J) zx~87J2)ZGkR0iW0=?=x&1Z?*ug9A?1zTHuN&ftbCBFn_Qgo%iFq+CWg$~QazjHAvr z<_&iM?a--C;U83JB_}h*sLh{qz!F?NV27DA(Sws%MIHf5566Vn#Ys6QkWyY`R*H}m zNF52@^)|L?!W*}YZwY}|_SF-mY>2Y84QPuTc>Zo)+#O3EM6?n2?f7-@OBW1L`lY9^ zLy6OeI5i~5MTa|33zuK4OFOtTZHTzppVK&uHaQlivUtpNx^j+aj?+u-J67j5j~ zS@SUWVRrfoAnCPOTqcZu0Nb4dQa!AQ*^K;}nqrPD5)9@cRoMU4n6BR^r9f5RPYNDx zacbH{wUtUJ;C^okw5tq0@ufL51q$+JSv2kN6Pi6Um&h44+f=ncE8e7`6AchMwhj6? zU;4HM?+hxZ3@a@51``vo-dAR2h8ZtUKtxI0s88-8#i7x&8HI{32!mYwo(XeG!PQxE zf*xqZh%JiG%)vN+igveplWLsZvmY84FH2+}jy(vI0NvM$VL5?*By`~j6xdpz9Lp!> zLC4J^aR?1H^eAGbrS_D4bH0*Nk~W;qlOj5u7q^Ela;Z4LCJa;S%&@bC4TPpms%|?I z%)WwQN86mo+Zbk3utXvqYWt7b1Z<_5p2tKm#<;q)nLQx2KIBurW8O)8a*u;qp@Gbr zR$9qfLw)u`;c}kF-pwtfsrQYg2CW=DJ=t(Jm%icc?Hvm62Pall89z_JtN2mGn*065 z_K!{;z?x3XVUj~5gLa#r<|U?Q@bycj!-gVnfUmKRNsI#Dh)(@-HPox*?tbPCOHWCg z;bGcB-G+*E3uxj>dm z>;;f>f}E=@etCt0xXM^6={V@O#OVNb6npuRp12EHhSnjVN}b$)eS z7#g)LF*UuqBj)q2?$C$guPnyQ%WO+))6fyR7?0D>r^@(XQRb2`e5asv{4K57nP$sx zW;eHuJ#(_CnGUnV8Hpa;4Pq;FesgAJzVNhLy!58)HRDEOsZ5C51cldd)=)zrsm1Eac~MqCbQ~Uz9duOr1kCymw8ff?8>6>8M@n^AhV`}j>|MHX#R1100!b$v zxOp#4H(%{R?~y7D0X@fQU_=4k(1dXkc|s!&8=z5bV>e38NYMc-HR~W@nMAOhBxhX} z|8L2vm$0TS>3R+6fbXM0^SAA-SNz}LEgC=yWGRnIc6UO9Rn<#{h$}X-#$_ln%R~BU zx(+$z-f;PEmK;eo=IMuQ28L334aro?ocx4U71u5P@t+YZ2}a0AjMyr_!NQt;=kbB? z*uHsOb$hfM)>3p?Ti=Vb*Vlep!*7O6xuLYbkL-2`Wc1Wc^8KEC3(JFBmkN?H6uF!k z&O}#&@gj{dh}le%%@i#O&SaM?I`0X_j5HXVLn>||r+FUw@W<|J99f8_8-;KdwxuNN zI*fl0Md46p7)-D_A}zW>kQ!M2Qnr}+U;^m9?K~$39dOvmCyh`7PCAeD$RcZPg8g5? z5PEt;kwn|}$q6bvH)6H^lo>>8j964UB+aQQy<+al^^_*-wl;Vm;x?9 z8NC%2rEA)@8)<&nuI@eO@VW~V`yg{wpSmS)>FavYLRhh))`8D3i~lykbY&`5(vz7^ zXCkOZhO;?&c-$-HjJI5aEQ2o^7+ZXfS^>Y79L$eRJGOi-Bo#XGNQ&)c_}9=)Rr>ss zs=zH;u(ZE2JKHpyQz&*?ft(VbS7*)?C}1IWhb0F>fqzL=!bw*j6o4`?1b9w=mFg|Y z3hFesvAh*FHQgkZ(dimD4}z{03#4FHtYBUW4RJ|M7UnM2VoJN?p`PD`GvAQoGK$$} z6b(_Cy|&m2jBi$4J;FxXT$+?mLZ`uC-rJ=gi3ZWXB;J4OG>A4rLSRLFbLctN@B+$; z3TowB*btyULh(Yfqf3>XH5C&0O>hC>$*GD|CtAPZ@Q zAQ8D|7A}lZ*|1iV9%%x}9+nlCWRz*$mwsXtH~Tle2bCQ^HMB`QIJqivk~@Ql5=`YLHh9<8XZY=cAi+@lfN@SDn5y74Y*dQL z$SB>a&hJHYSsrRwtZSBHJ}VycP%@P%Wty~%)I*s=vg1IUmc`WO2YEo_SK$0zS{s=P zfiTZz#KjC#Z5M3iIg>0NmZUMj3s`Mr@fL5YJbx(4PAiIIoeBoD@-Nt_*ezQ2y3u~82wj+=ydt_q|Rx+FN-AX`L?Ba%LZYwvdFs& zxJsS}<0I??nAl`evgPVVK{YgM3zgjv5py)$8(REl>rus@o$#-C?-rImN674aN!9k} zWP2kJiP0AUK)y*zrMuTN?PQdk=@hUGcJ`7`XOk+^igypgs7|9M-G$@z8^Z?pjq_>E zWhFW9Y#HpNf5^R2z`(f933qYEdWb)&f3055O(rJZJ$uXX3&!WNLedLDfAS7aor$8%$h{fBdtfhkj6C z-+6n+L!sMYeF&aWtI9TGv|LpNHv;Q$S<&B8{XTu{3x)CJuZ{kQ(*dzuoO%&Z&Y)6? zLi@GTa?9z(l4W-+g{t0)RSeJ|5R^i$T?`xPwP918?*b7l@8Qqf)ZqNgg}yX-H+5yt zMrpiczhZlOZKEy}Ms^KzYJ0T&wc~5V+@EcJFe%593|tXlCR(?FTpmz3;uuvm)4>HqirZf+_ zqn2b-8A@-k)HHrp9Moq&+h$==xuW#Lcj3ELYu*KXaNR68l7Mqq-mYxYGgOzZ8{Y_BW zI)6T#g)l`U^(#dkG5!-P3|j8E&AczpGZXOXLiXnLip9?JI)k1g%J$DA@6M*kJ~LLm5~Ps+(=K7kvs`wgSMej^h!v|^*z&2 z?>_IuN-<`W-Fx2J`c{#J(+$vi^fMd^dzrya@F}XE?UpE67Nnuk zhnR!-;(^<-&t%5-1V_fn9l|ERCDiw_=aJ=X^QV9v#_aAV=)i`jK4?u@NnjJiN;AoDtInZ;AX?aeTG7;(I#86iAH+$^aNB6ECq`8tk38p z*EFGWq%%rqF)_BobT02$Jzh2@7%U8(8`iuKxy(MutK@32+o$E@Gf3xmrY%-K1tsl$ z!a3^nh8Z8JAX+vUlN+RVW>4n!P%HJRl!41})HubMK(<8Wl`NCK%bult1R+3Fd&tXy z^GxRRi6TXN5{$l0RnLGN`!BtoUCB|Cu(h}aGX@W1FxHiDo$bvx5A*{1olFv6qZ;-? zM7d*PAf?4I4-^g2uOHWnIffu$$Mx&Dph~q4mBwj@+u2jut}y60jPEMx~+p z)A{;g-Htl~{qqWUt7&T;1JBzhgxlE7%kWCJ0)5XiYGR{%zQK7)g0(_Z+&n?FMed~$ zTOKH$ho`}#ECiyhVCgY{E$J^cS=dbohT;ldexMa7ahK8{bggduxzbKu4>5`*O9KGcb<9_@hd zl~^GuI*{3ZE&wZ}_Ar_Gho(YDO$HU>;tF>&*-q#-YOo(KNi+50?)x5v2pb?X87dx2 zqcZoUck4CeWw+sAka0FBnRkTU<5R{QQ*wng$iVv6;MzC8k0_&*`yZ!{f0NxwlG8ou zgc>^->%&TM&3>GPYGR@R7HIAWE4Ms+^1#9T9ZEKr_= zjbVC={otxa;hXR&5Hg^`u z92cvX`3sOf37$w-#fJ&e`+={iiIilL%WwkU0!rwr(E>U*jaVx7EH6lsxwX@a;(tLi zSu%`eB&Ea3{pw485gL!qgQKS=!)xoBU+;}nK+mbh0?9dqDCbCQ2FIR%I)@H@ZGN zfV_-`yRaB7Wbfaw+3elFV};2~Ti?IFHVk4J$>J;YxNOaaG}Sa>#l@2qS~n+D#e${L zD3K$9PcEcQcYx@Ry0~3Es`x#cONm}0$)osCvG}EMaQ+)hA&P@>xjO|tJGEI|J=3&b z1S+&orZgp#&Dq9l%{HQC3EyY!ZfMf^#BWiyM-#|ux3ndNDkPt71okZT)9EOtA|a$; zY?vV)8r8$OnLw_>z}fCRK>Hr;#kDwf215x_f~#l;OqQN@6Gf&k?gV<2wYo8n3luxJ zeB3!L#GCL-EAGSS0NgD1*_d!!CU*Hw1?_E{mLwvIbE|4|_$9BUEO5l zqsgnZ@r-=}We9`%3hD0{jM)C)8R|*DD_3d2I#FEMf)Mr6)1{xEP^B5~5RnJ^l~&NAVFVINU(l^nqSz(Y#hRuJN(nz zz!JDLR*R;f8hV^io%EZ`8R#fuX%U!bsW@}8T=F1d&Z*6_H)8+)QFJc;Oz-g@@7L|1 z+^yu2Hn*AEp&6muE^L^~m`g5|4RaYPm+7Q_X@+UCxz$K*7@J#WRv{g^E9DyFD5OH< z5)xg0`|U6Iejne@KA-pJ^?JTvZ@~SAiJDH+mQ9_lyiKRW27fb6vjiNSTQhxr=!tqJ zB(}&pOc(i0`A{KGm){%|A-x0_5M8lZ^OlY?Am#-6t=vBMIbz*p*21OWW}%b&L-+OQ zWf>vN_={0b;B30mGj-~6^M#-96LO6T5z^7wQ33bfBorOimrU0Ipb5K?nE&*_P24s4 z!urs~0nP~iel|<1u%3n5d(JVz;x;^eo#_?t1X<2Mo))7Vm57X4064u$TL;XfsU$Tr4xYkEa$ zvVnfGDrAk87tyIVmlnSf$g=%h*BF;ZcedRXK1X5q=CQ zIk4|U-E9J5>xc&qB8+&wQ;$9H0xJ%ellM<}t1!{>W8rV#7MBmO$q(|03zq{sTiTO% zc9c0y3or9pycrT>!>}ZMd0FLTl_gldajOu((QG9lgqf|n8dBcoaN>Z_$4D+(NSZhz zrD{|$fZK#dmPHgln|ikL--*XG5rpqe1^G_iFGZ+->iy;&ubN>0i3fd@sh`zF{$P@c ze&~&WS;k7ck;a6F4irC|xK_T&+KG(3cQ`zwM$GgJ(vs!aE%ar8_JLr!-eirA=3@lm zO}h%!dQA=O^%Gq_-Z&HOQjBtcyj`n^8a-~m#le=bVS2y|Y$c}I%bC8jTnwdqsHG!E z)jQ!@Ug+^q##DV|4lJ`WMpB-;>b7|D*L2IK-Q(BqB6idQC3D_yEj!m!oqQ{Vu(Qsc zv1GQsA1ZIad_O~C;5pr_0kdm5^EpQZ2OcE^-}0t2q*{fbHA_DI7F_zp)HDh42m3qI zlsdgK9C{p6CAqn3>3O*dbD8GM^OTp;Y20Q=3Hs4!lEN3m?iACLMaeC{GAS{K$79BH z8v@xaHH&?$x-8^zAH*f{IrXueLtR(H5QDSlos`oQ2{r3E5 z>6%6`#b88E=%d0;1vJ>Go>a_rL&re9XdO8FlhK{d8sas0lX_QJCWM(oy_3E8Xspz? zr>Smo$KV-%$Kdyypw{P?29DT~uZ;EHmG)H*G)d{D)G)}BKOBvnOBh>W@{H}zX_uyT z_t(r$PDEbfues0 z9I@d*alOyv3jBfCa`nWqs;`gw-&#T8Vp=zmEz~3EbI{qJp~l|Z0FkF=n9LSLz3Q!5 zzb9x5(3tglTl+q5`$ZJhM51UIE~3ABr!|M~9y5BWQWv`2*ckEbS+`<|2EKP4r_ zJbHI9#7+J~mDV`^=NKtg@2uF8Q|IY~toPG}3xfe@QZAykZVRoxRB3pt{tetJ%mca( zTjGc<0nDbC&^mYnLMW6j#E9+~uFdVZjYbv@3T3Q4gah)XKQxOSZBLlJN&;a&Rkui0 zri35n*)9K_CsZYVHP{e zjF~0QasjIXFm|UFjH0M+I)QVfT&^}eG`|IOM;yC>OH<+yAc}N5}T;vk9TsoCzcn2q}7?Xl5On+PM9q@yy9V> zpJq@sQI9-`qYh_{!=zd|)6T|t3plNA4|6trI8+aXb%XlG9ce4Rt)Q00342{;tI2># z^s0vm1^}T6Fhcgc?i;5gkP*3k;p?h!IB;rAf)m25Ff*8}{1aLSBRGAN4Pglu42gw* zuoRTC$Ws&xie2oST5m_n2GUytnIRz|(y0iV%aY=VZn)kRBI+Z3=VN3}W$Q;+bf2-% z`@kXCB16UeCQw!c?@{Z4^`|DEN6Pr*kporiV&vH`f@ORWwz{0%YN{T4Nc|%?tRdsf zRzTz}o;$a2g{m~2QxIPW!Tc`7x4ZY3rpVAO;~ z@p1P|3PLklo=!CD`bf-PQ87Z_Zij9(+hc|!O2fL7?%+@nEl$7vJU6s+(@`MM2#E6n zO1funGKcFuvcD%`ge{s{$!v+#iTz>Qk}91TXmLkGBIs;gPo9=udhPqO>xZn#2U7wY zZV?JA?O06Ce)D3*-F;w+LYNRY~f zX!bcBMFx0nlE~K9tq*Y;wQr5lUKOe`hg&>qMk|ZA#_Ms3}zu{#jvocNqxod z#LM8|X1^P^J}jE&YpviW(5BUS z4((hz6uPV{yxGTLtyHGr#{N4Bjm)m9f2&0Eet_e*eEX) zpjLQWZ)IeE)#SRg?j*S8LikLtyYE%e322wew{lLt48NP37ifXin+hQklW0EoCzctHfyr*-S}AwtgqqvpUnBA>T%-C3>Q;-U&@O5#RnyiVYO=tmQa8aaYMxHBg)Bhkg+#gi_%*z~ zsao0X&~#l{k)NEYja?NWH-Rm6?LKxCgg5(kFB$$+dRD#Tayh%^>A}Piaa~OIYQjkK zteyz~j0;yh0sxP3qFBn6FbiIWKLv9zHi|bdb2IDeq(pLiKw+)h2L(As-e^p@JOC!w z4O*73p_7Q~p@l=a5!ZEhUj+1RsXW$7lFLBQ5bws)nzHMm7WWeV(%)v zC@O_!`Ba0bVH8wmQsh2M1LXs;BH-DB@VPY4Bb@TE6L5_=uLVu;l#4Ym zBu_nDd8SgU=ZCug5UZMCA+In*hZE23kNc{lFG(06OYQ(@KbVrPAK_=4?5@WqMrFoi zfAbkz+D&BZ7lOvc8QOq<1tk?crF-1{|6#?5g*afmajDk_r1~q*T01bno9|_on}w2D_wjm4~A_S#PEiNQtyFccp53%VlqP zlbB}jo}m+e_}xDpffs(9t3PtYWb!e+^_$hwokqfD$M@*Thlv3+7&X;km2`zAdI!-` z$tqD_q=MCy{ie~*l}6+^p9&E765YFbD^HQn~s2Q=4EjkeOx@7 zj(AAtXZ>}%syzEgRr0Ok={wA3U2R2)4y9%IMr8Q3y0ebQ^RrXbyx~lFr5|?U#hIZ1 z<=uzeX=6h$Pi;2!ACb!H>k+!zs)J#m6@# zYk?0UTSAwr5>s?1-cJ@TpKp$cqAu-Lu5zcsiOmlaCOJW>_TMQbug;{pIp71LSILqF zlF*N;x49W3pWXK;Z)ayY(7mL`Gxo?F?Ai|mw>@xjK%XXN1Le{a=4nPM)`#`n?#mQQj@7 zJvupKFVxdkQ$OW5se0I?=Z}`Js>vL4Mr!>Qpplabyj_n2{hiI zt~4EPO+9#C-|DC)_Tfz#9L0U26HvzLD0#7cQRy^`(;>E|s?}M%HkBS9-cEx*j2p*( z6waD#VhdWa`F7tA_YwZ=(s%-m(U!={5OM-Btusp{eZ2$`8&txnDzq<2q`_Oq&3Vy% zIIvL`*P2w3gPB0!&UBHL*1bAuopYe_5E8%*R`qGzwir^n!c{h}`Nv@Z%Dka!Q%rX? zJ$1Vp0AR3A02;_ySdJI1n07*_EXx=nsWz!Ec7KvGOrw`eic(+Y106KGl4(B_MS+mEA z?cu*OM#rzv=aXerm4y*jg$~``@pu_}NXEH{dV+T$#o?}i+wFLlms+3dIhTA|dELf! zHE~bEm_$#;+vlD}^h*1x@0l+8&H-X*c9ZGmo#!_`UnD!YGc>&LdR)032-W4G5;Q-_1JejaN^gD_N7o3Ps zp%H`aVCCuHezvGCwpYNc#qklmyYXRi(q%1o9l3O`sbmebGgUg9h-nq;gqS6QbUYcp?8D9-iGt zf4MJY|J_N4d^AG9eV`HLlnW>1pEc|6TCv6vs5UBU3IU;1rWN~{J|w<3#~b@Ezsy2E zykg|P@xSTm;j&z#SU05sT?D*IiE3=5>f5^j)r*vN;4_$@`VIzq+Y19=K+mBd*U&>Eto|cvdV? za~zZ|Aj(KSIWn~|EKL|#1ci3a`$o~CCz_PXNYvu{REe}hd@_$nPRWATcP0<~*~RoULL@79 zM(((pSDVZ{AHU><)pxEo;cX{Oa=($^`<^fu7fojEF93R_?ZYtqO4e}T!#%ouCPraf zU*59rPP;RRMfGUV2Wa+xUEnLD)}2LmWP25nXI$#EYEB}&QSDshp?iBYqqj8^MrNb? z`&8SQf=Q8+{$!A8lb0o5Kk(xIuDz1-_?H2nCzgwTESp|_XYo6@v^brAXZD6^Mv>mO z+Ev{ZnjM!_HpmqO4Pc!sI85pUg7UP@`2^$`&SEMx=po)vhJO_>G>2bEN1>u-06p@U zkFj2*X-UDs$LJ$`ZgF|Wvm&Q^IK8pXE*{)R$`%Uu;>M^*Whz$_(2&LOf0eGHU)WM7 zF`;5O0|9a^N+VIX96I)Q+JRsAaUa|?BsGuAHj+w*C6d>g%RVQ*<-4((^vCRspRauQ zuBVr!kA0mVPbs3Wb6Ke)jB4n$+fmpeZ_#Vhli>t6p1eifd+&GJe-rfCR-n7SbC>Zj zlu4OuIzcm(+8%{fDFO+6=hZt&L!f8H8gY1^iiImg1mG%R7_gOpM-C`2(I>X|sx&^^ zJ1ISFo%L;!x~7B$WVRj!p#hOL=_$?T512XJ<;qJQll}f(0y({o^-Qp{;Pmuk>a3#UNfBYaPQ5T^M1BJjmX3rExKM1aGKd01{~C85)U}W{DSv!}gFXmfFkf|XK}w2l*2fdV9M7MXcCj_!Up$EcWl z>nh<0)|v03r3yRRAiF^{pVegEjA-)(^5G2jNAeSOm25#1ZrT`A09lGu1PK zfe(cBA!I6{lCn`qxSk}7NoYvGM7Hap+p+w!IXi0P6{eow;EC1}+ zC4V#?uFb^#1_#!+`pu*UWaWOm`avD&?<%!g8FZ7>y+R1IsaCZJY0^{SU9I@}v}DxrZ5uys9# z@(7V`O{b*IgG0G`nHURoRZgn+?bJMEdOnd*-}t#^$2;KrlIEXXI{y|@d;ML!Dgr(m z=ck5&4q^JcXYgCZ=J(x8kcpQB2tt1%4B>0smxr_R1WNQyP;LJc(yxLPN}sAcJ3oS6 zk?NFKZ`KiLI(miE-QKZVx|cvR=4eG?#H^ihE#MyKC?qRIO-|NjsNM~6(+l_DtN}vP z+iS45vLdu=sw)xRM)|`2yw|Ah##Bg8z|$T6KTb|Eo@2U~LO|&9{yg2AW#Jo|NVVKL zA@4udN?10%%+&IzQn=*jI1}nJZbGvPh1ZL_plsjp!ebKHDiGI!9-G8pTp>Ux;&7eI)An*6@VxGuZSJ6@xQN~tPe(HEO`|bkqqQN85$Yv6e+9wQb zez9_qW1ZA-M;KT z4S<@(sBgy%lM-XldAIAY3@#g-j}xT@Rm_Lo?){Zv-xEQUbrwxgq4li7{gcZZB3tFNS+Y(CC{HuvK3IFPyM^vFs3gL z(^+(I(9yE%R#vCDWfUTvqu8b5A}9BWP4d6aldm$Y%fscXE3L!!C^t(EN+A@+Ho&@{ ze^u$xNKw%K`CC$7$0T(M;Ie>nchz`ID|rFEMlTyqkQ|UH#W@4z$dG>2x=Z$A-UI?2 z9^7eHg7nJpo`8|q1KWt-~X z; z+Xk;%>+*Yn<|)Tk`#)6hYX}vEYKk`S1o{d|QrD}mLMsiQWCUhY@0Rj7RxI(IzjNjG zt~-`7KRf36I~L7nO*X%tuvJBW)}K;q>T_UBcqfuAwF_~&gd?ERe7Igvl{cReujSX6 zSEe>>yI)`(9{ClOQ|!O_efjH~rND{6$2Wa&{|rFyw3f6XVx}&Sw%O!WBim&6SG;d$>=2bqW7-7qZ@aj5prqO-0Fr%JG}wnrc9Yy4bJddhlbU zLa!z5{baRau(+?p2M;o4lFjva$0vJ&-4yq%HPZmdeL$c5eQpLAsUX~1&8!CAdNp~BGB8%b_kt!G$>G|%}xwV9sx zF$ez2X}(R&q7P|uWIc6%Km;7X!Bu@d8*Qu8bcWns@ITg;c<1PRYm-&ec#WZ6PsH@_ zZ%cR!Bk=ZZt>X#soR>w}lYUpi-Da0rshh;d(!Z~;w&erYFUG}HthNK$8SM?ptPWYPP(nv^1&jTVG6LxDJc(tB1 z@;JW}E>zPxY3^-c)gKK3N?`MIQl+U%i>;7upy0RG1JnP2>%>o-CcZT=VrozCHe0vslTMP z@+ih^M@xb#yIsBR2-wy_8<(y;i`UA9dYF?qBMKVe6_^v;Yh3dfT)@@1i2oNX^~vIN~C z8EnS8e7YPdl=e<)QtSJbgVf{#`o<8OIPv3o@AA7d#-pay;>FZ zKv;Wq?C!I=%b%7-H>U1?KQ2ww@)N^_txOy=$GE0eURHc*VKTln_G;sTP2^4_VS2=B z;6v%us};}lG)jPidB1C3$X)~ICgd|a(Brui`S;q~!sJHk6NGr+R_)>7vJ)C%48RDkzd-)Nx8yIkb;Q8X*||v8kI0`HEgvC%Gc&`N zBGw@&F9v7&{IHLzT20mT3g4@r^1UZayWaz>B?u^INcD#4cZO-yLErX3Zl)Ibk#j8=ugYAawY z1v>O)h^fB-Bgt>-0;TBJ!x`otv?vv{b88snAzH z1REhHzZz~x9t?iC;ZXjul6TY_6@U4V@}AJV0U2^Lj6qOGues};nJOIAC*nQlLwo6S z6?lhs+%qTgJ{+wYlpjS9wQ|k(YG}JqL2RbaOJh#y8x`Gjumi(lqywF$(JID&0I`%m z5kkB9z!&|$+5+2Ril0UnuRRDmKYf29xdU3Vu$7l&6ZSLrMm+e>uH5pi;Y;D8Dh19z zv&wiU?Eeu|IPQCP$wS*FxBj<~ex8fBAI|V}Q;zV`as_y{^KB!~IUbmr&RtL8$70=! z>f--VIp&>%TpZMr&+Ql43i2snoddUiIX!RWtis0Td3b~u4}W|ib>p;4`3`@?XTYk( zvpz4sSkpkHmzSL$z}L_~(g%$#ikzsqk3q;L!!QISvf@1-Z&0n9B5+u)GbH=_U?+$j zg_jXTOZRO{h{|E=koL7;urE-<9%|8Y?4ipqI0@0TY}K2`Uc#3ZT1|98lB@sh%78^S z+a0I=X{u4gBwY{#;n1-OC! z@KFopBbPRSv=HXHJJTJBV39=b$Y+4sX=SWT{0NNg(KX{PxO#pM=ika{QI{K?hPbP( zbB@1WEv<|@e=wTNWno_2a!+A`ME=0Om#nlo_lDgV#<0}LuRB{#p4Rno>7N|{x#`PL z<3)V}Es09njT5D|5&A0F%iu0jtfTy*tN6I%0<$e>q-KNFXEvH}=b9hq0QmFsl^WW3 zis`}V^-)9_AFI5V1%OBEgq zaM55=Emu{uWniBgm&e4r5Y<)|${Gy+V!T)rd14fl1k-{(FY7jq{I^6k4h)`MS?S@^_wBWWuzV~w&n=5Anm-M^B2WIhvk!lezbzYY z6qIs$_m;A*+r!RkTnI|~lL9Q|YBK=Ok#kW^)|+dKut-sPmy;3|tgOcNez5i1dfM$b z?8MX%%5v-Ze}Hcg@GU71Bi8+ycx&=XrrWHfIBX{~0bapgfTpQsQc^s(x`Ki54-T=9e{Y-OGZg z$!&+-T{DJ#edIyD$f>J)b)YJ{N;>hi8(~Fed*?!7!@%2RxQ-bR7w2muI^O-}?~$^S z7a8RM^5*u}_%LdneVHVgzZ;q7B}IfhoaTw1yAS_M1tsqV{!|Six<6CUX?1LMiPMiW zF6SC^+7QCS(JgcD!#k=`R%g4WlHmfueWz+Q!9BOxQr=#AGU|}?Z@Y!l+m`Gb<(^-# zRvLox5mx)DzqH*p@#R~pz9b&oKUxK`{k(d{Xa4jSnhsRBG@mJS?ZsvQp^n31I)r0z z$*{|5;bh(ojOQ98;HV-mzNMjw5}uNDHFRlkTwmV$whS%<*&I4?)K=@A$)vO;1m1}!KwFHj&}~iB^TZ*)+5pSWN1lv$$nb)UMltXnZQcQ?c7i8^l+N ztWx-kV{|up-I{U_ycPGsUQ70q5vzX2^RtZwFT>V<7pA&(fW18HMm!7pd=ju0-9sID z*K&A6A>Tl|a#-+!}R}%Y1I3LZ%0Usv7aC(u_fj>%8F;F=H|lu& z>)hrw^waOfRVm(ZgHg1%ywz{xyhpXi*%#BEYD+Cug1Vk&BHX$g6R!;?WN3J=o_=w< zb|a(VV+j#B+8#M@v7L*`G*_Izy zZY}2eUt10+`<6J-_FWw^<0I!(nHI!!lt+P67iG9*1Aw7Mzd$pHsJ7|-qqpputct;( z%3;xuXx98duS=jZ2y7;d#daobj@S2xh!5+b3-WXQN3P}q11^% z=?!{n+D9vm^XOOWVr?MBwUuGFXcE&+SxtjM(l;63s8|wFqm5{C#B5#UfoFxK#x;V5 zoMBFohx4?44ofmE=;3XfI3y|MwvOjLbqaeCm_1P=K6<5Nr7${`x@>z6EeL`Y?+Ke_w zhR@&=Pacg~z>f|nW7PDT4lVR|!yS4Sj3Xu*(S9bnFexR4#3$Kz(Qiei5uHK5BY$8B z%_Xhp)HDo)l<*G?G|544SJCx65FBZvx?#jCF0uhqQEg zXGYDxGfzNEr}1FbR_5o-!vb723A~Ey)S<-#`kOUPUc;7+S_4B<(}O>khJL>(|Fi2q z$HCaq?{B7cJT{JFPdT0RWv%o#tWm&laOH5BB@<=@PStj3$+Nw4{II^9{5f+_Xb;lM z3Bu3Cm1UL7@bU{Mf>WeIM_5bIFO}#G=OZ|S*WEd!l@BNLi&J6!6Ixu7ZT$;OfI@-L z8#_mjv8#7=AJkIym^~slVNGV+GQ3Fr3m?EBDjZ-5+g71Z>LZ_omT5M4dEYrKe`0YX zS<-rFvf=e;i28ED@xI$(Ohrj?EPZQ3t)CV6d$s6+;+>g5^`4-Af4Bh_ogcj?*Oy;z zR?DbK`}Y^}3!2JO@7>DN%N57sPnlW8{L=kx#*Vj)os4O15BrPu6F+J`bq&ccgCjjd z?Po{zvý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�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%0A)A$KC82L z)4xJVKk7;KT>chQOy69tmSAK|8Nf#WnS3HDppBm}J6777^BFKUDU ziEM3F$A*l;_0JsK&GY3$cR&)HzVm*#MaiWp%L{r=#(zYrC#_n5EP)G{@ty0O*Cb6V z_3GE$6Z3Ces$nz=+agEfQwJWb>f3;sw|B7TP(o^utV8(n3mEHZ+GUiAAvQx4C($+g zbO|#_b;TD!Epk+lk#pseae-Z9sH-b~t*)-Fc^QqU4H)a%w7ess&`wRHT1nuFXnzSD zCmdrUriVf8ADIIgk!#n6?-QEggH(>Glcoy^d8ybG(eSFN>cw)!8|ts(GKy;~=I(dD zXG&bJuEINRNWOH5N!;r1i+mYPyXu$JL}(V(D~s*P7(Bj#2>|{uT7-zpB;oE3|E|Mj zGNGNBcn=%K)!6z2pSkdDjaaJ=^^5JLqP=4CneB96Acqa8|K+l2uvyXJ!`zX66!!Hr z?jj$S4VC;Oa^8Q#S>s*_W?{+?gk~r??vJ3kD=pZR89Z*bc-@p(>eOY6F?UxtwLBJ; zEExVHlF2jQv-dGrqgMnp`S!f~|4?{e!u=T0@#9vK*JO}wH$K<76Kn#z56eoM527Nk z2N?y%0wovJt6GaiO;&t>+Z74GOx6`_sx_?CJw4~@^IUusyD&qVaOdbP64okufL3>qw z;7BGU3{64~7gu%d`L-j=((ZT3)JZdtu)Hke@yf|{S3`eQiq>TF21ZH{2TL0t_Z3DI zk0B>63Q^g_aB9e0fFOGDz}csGdJt~cY22d6#r|$5ji_*w=-QNuQoB$csS;nyZ7;w* zKZjL#wZkjQ9{@dX-#C=F@eex0z@!)k$>YSB>wyn-}NJRKYuQpMhrP^ z_m9a%U`CF6k3_l_?6pBAV3?Oa*&quR6+Z=uf0G&UJ9O(W2?Z(Z?~{}6VTuxuO222t zaWKa*V5Up0bf9G_>XPoxK`=QSCMJ)A(UbPf3~ml~EDmZO!Z@ZiIBU34GShZjPrg67 zfjkxGAeitSswS0~1vG;`#8z`){#jp{&|`{fAlud^Q30Oq{6-Jr&c6OH?6~HBRtj2U zUHiVmVt4G(#hACn_RngWiE`kwR-L$%2TA%D(AH%Lh-@PRQPew#Sw zdJg&SrS0^a;-0ATsqoaI9xL%MQQGaAdM>O>6)LVveL~QhFn17c#(nJRTiTD!RD?pM z=%U72#d8*7lT%9jSya#d#klv72x)IzCXMzoQkGDWB6=b@V{I+Z+CX7*@q-S*AVU;|%dz6oU z)nAnAL`_sX`(UV2*(mJCv0&glY!(A z*Y4kN{ECfDO2-5E3GR_Xlm7SfoL6h4;`gWS@h)E|BOA;Wb?&ImATY!u!SBO)z`Wd z+5P)3DjEa@cx%;_c>EK;wcMOQuu#5!$fCug50x2^H2oNAd)itF@NNB(fAm#sTx8PVcK-zCv%`HF6U3w`m-<9kz>D84>qC8`xtAAEVgOVYS;t9A>lnEj`OBp%T^lJ@^ zXUV*x_v|4iNs2WEmW7Gzx}CLFq#?DZ6{Y3F~*%vtg_rx|>ja;5HBs-TFU;3wbM@(I7koZ1>J* zDw1W9D?3GZa_-t1`9Ibhkt~ycG`8>c%H%k*EaBA|j`Q~XeXgB2i15X9Ui2k(X~PD? zk&|T`K-`PeYSMSsG?JZpe77@AslKIY%2u`H!A=keU6J+|vL}6Uq6rDQBT`vvsAa3S zZ>t62%iPuF71^oP_xf>DbJxsreh$!wE`O-cF{pQ9j4XV`8g(Y?+pcf)SY9^K@xWHA zpL4xv$vQ*U<AcA#;+YYq%fITuzFxR2*d=+O%t{ z-#?3SJ9i=&)M41XU6zF+h*6IVw2Uhs{_B(=DA1kXMYZKa_3Mg;E(LgWVLx^+b%{K% z7}zv0z+EQS749JX2dL%5A_qVlHwTKA6_sCjuyI;jTblhS+E*X^kfEDGXTLf{7a7;7 z@C&Z68^{&gWv@EXU~=x5o?V{$b(@imX>tp0xxY`6^9=qa7RFKdDcjW6Gv0*see>#y z{&r59OV^0q6ZN#UqU~{C1rc}?Z3js;A%%&Aj$sVu06scRzsQ66_E6-ney93;+n>cC zAW=pUsGg--zq zpxsT+Qf~kCo$LqJWs;Fod2DQO6G+X~FT9(szA&_=Zku87b8zWs9`#=cu7?_z2N1Qu zEYie|Ub>1f-@2UiEHx0{Wo#Rma<$8IIKS?eLp4^wM;H6mtHP6b?)Hy-Bnhe8A%{Vr z!|5O^JD|{F{{o^nLY+AL`h=V~VuwT6qT%h{ybHdxm$zRn%q=98_iIO%>4)#fWKmcU8H+N_yM0e*}}rUXLIf;*Pa^ zx^~@SfM}(pHa@zDPQGwUqM`(Yq=KGAIZ;lze|~eb<}6Xaw}r=&jTA@0;SL@K*GMK; zNN>$etxjrI?lCBEhDnBX!PXXr%@Dy47w$dvXHWmKgWH3n7cVe>@_B zhFiy>A8MEChp=HtK7p35D>51Qoj=JE7oKi_{Jz7xSN!|mdLVl8*8EarJdKzly&1mb zCsUMG_k|8rsF^I;&y{CWzm8tisq3;!=VqkxJ=~^m>LrC3u5_SIGpy3mVBa-p6g z6?w>^&`|wYKsY{t2{sEjUwrsb>a!x<;^OntJ$>~lcD3){2Q~x-m6v`o-W_B4$m;R; zgQk}WO|cor{iA@dZ+vbn_q=7_htxv=ppcSXBoc|I58)G%C_EiAV;CF`H!2Co!5W2O zJXS2~#5bO;WK2OpL80X_7SB-c>7tL&dtZNDBg~{?sc7H@jb+s(CwW=+$ZAJy@OfdoLek1tZ zY17Wjp)j*kQjkNv+&Cu)v{Am`?d1vk;MySgj!p3^jbt&uYL(PM6)omTSx0ZV77>jHU6;W5F4fC-9Z{j~G9Oj@<*wjC4M+d6;=v^m7Ex>N8Rz-UJ{Zoe25 zeCji`QhSI+GThg}#RuS{81W4q!HdvK9kxT-o~9PfUudh_{q>jLAO|&u^?qKBS_odxfy*&qhXX;r=xWPWF<2kPHAkeP|&6_pk{C@y)&}WVH&|MQB zK%RM6Ex3oxwOUD)z4n-~iL77jyD&c zROBg}05_h^*-v}b^#><6LVB`(MCJA01QmRm41O3A86$pyJMT*5R}K@59@-dqF!t!Ub{_ zFx|E`v%qc6=;iv}z|IzMb^06jqe(agV-##u{1I`hp9x{y6-N|$+^?i=MDYDXtsG-} z85!Z5gHGvjoylkg(q9V?thT9~3z4F1?^{uj!SF)`bM1&A$q%FjKGpjc@K<*Dq2v^E zp1&A*R+L6-oPotFh{TDqtEiK152rWHUQ?eMiq(}M--T7s&xL6(FYmJ={6~)iE!7y@ zXiHHJw!q;Z6;Srq9Eh#iF2P1#NLv0eup zy=-EKPiC|jGQLjuM%*pXk@JhlN3V-3aaEF=8_h2BeihFwr<^wiKs;FJ7OxdOQKXre zPltOuurVFWn0W>VU^l8LaIVfI0{$wX3JXx`fSX|0D~uiJ7m!$7BA6^LMlFD*Ea5|uUo0lfNbHPYuxhC zYX3x)tE-#(Fv#w|IMC+G4<=V9P$oah-9~ye3`I?{@V6Vtm3fOuLS4S@#5w2Xm0QIk z;wVI=TB*4|pbGjyp^e5J#Yv7f)n5N z%RA2btqSsoHkE4X`PiiAy|?FOP8cwtEirc?I8J(jHxlviiafOQT`&o7gRShQH*1-G zLZJ{q5*}!ne3C6(TEh`Q(Zi(2?Ah5F5F#k;nbiGG_C)aVvc_u-x;zW$-hujkmJNih zKwx=`9Rocq`397HXlL%!DgXP~{k_d@XoV%^Dft=8O+7GT+~=dSyLP=gd_xagkPKfb z{3EgqW*_UBe?&GVgaE}aO5Ri@__J`sZ`6H}^tvK;CqhcuD^&FGGq-6~yG7-V@eZ?Q zQ`h>Ww6^**EZO1q*WS|k?gJWeEHzQm%*rF$KgHjDQX-cWa~99S)A(z4SrW5ov=K#1Z zVB~N2ViFtOQo;Y9`n=9n1)KJHK|g9Kq_SYYFkg#9{2 ziPSWWHJ0)bwY@X78FE*DT$S!T#)!j z1YE!YZ?OqR>3kGLqMulRdahd8xT+jYrT&wXw5S=@Q(-$rO}k*0bz)UvhY5){XDA}t z2pT-H!o}+y&5NErZv7Kum=RruKo|s^=eYyH9&NRm&?16W6nqT91)_aR4hIexIdyvct8I zCDg9ppHr$c$v6CkMQmWGfXgP9^4a`|gGX~lWesg;cSLsBRo|!G`A@=nE+rC(sjT`W zRhR5?3?4@!d?Lr7cYF6Xi+RqRIJHJ*H1!AIK{_XRs41XiR5is?I>#oz?j?sU(KBa0 zX5k_GqD`yoLEBO!%w89J_s=4347;C~TJ%OZu?gI$%TOzwD?qZKy)_8fj3ZBNZqB1| zfNTofG(m8$aR7cC)W!(QKO!o}BLW-k0!!`#tWRx2M)#0fDkD%Cwd8>%{EOr*FRF~w zDd%je%F#IVW!@mhqVIZK@pesaWJO(Qs>P4;H;o1RuYg%eMWtQ{{1H$7Hy|<|`(7z- zT*opzAo(LT`nNWF+g_W{Dce^Cv1m;a(@?K!l3rC|alAS7$b^Fr{g4{SB@2DM#GaG+H(1t`*Vje95n0 zI8_@M=kEQAVLClb^{?cZVg@<24>!bE+mC;)^zW#8?NSx@ri41VI3G>VQeT$=*cV`n zZoLG1UC7LN4UVK{=L;&ll*+^eK%I%SD;=r{ozSk*?U;RA2ne`@dpD zkKSfTeALXZ-t|=4oLz^Xu5NQIh=L#2-UN;%R97HTTn}uq>Y~gV0K-MCjMjOBaD#9$ zSL14BY^cg4!D`do%}`6|FSHb@)qlq|>HxQXi;a67aJiTMh%D%r14K7>RejEO z7;JN9V23aCcfHtwGpDcf4R1ADgr#hkBr^-0B!`*8qR@av-#;RWW{7$gFTLB$EM*!{wEiQVA zxnGEC>zEB;b^++w^N~}f z52o^{$hA(KCd0KZ0o0O32xdf9+^7!ETd7)MA-UI zp)XsRxQ847eyw!)`JN7s44}<~lPLKQ$g6;eR|=C9WQNeo{U(d|g864Kq`q9X!0P;& zI*N+QyS}U@Pt`o4r=ebOn(ym+@W4PHZ|Q0&INrRdZ1bCdK2&^iA97pE+2GOvE7J_Gw}8<^sqf}F&z_qTvVIPCQp*&pAhVfn38)!K7( zifWt2^|njp0>4u#*H7BVVD=pu?=|ID{HtSIyohZ1q zVe>T@XR9>a1S=B0;O2+%?{4CeVFL6s9_shWJp$ZPg#OwldkWVd8py5xrJp#wqRyG$ zZxoCbzvD^s&typ`N)!uRKVb^p)qE|RDB}~22`e2NLT3FuXT%5KwL19wCBqkP8QHy8 zI<6i6#>vn2vRx=KVj@GL+S+y?RAymn)2`GCQg2kjGQ|)v%eAaaUs(n)$gwem6@+Z! z(hx#lDN~{CY;GqOhPe8Z3#aows$V zIR52HVgLNFl!g%Y#t2Vf7GSp8Lh$weRyircUV`av%SolAX9YaR$6Xou*t3kG`8i@= z{NS+;JvWAYQ~Pvo10zg;qkF2iHu@4x|JNUp95_$|g1!&ZfsLK2po2Cad?vKD2~t*5 zLhjy<H7oqk5Z5 z#SpN^?+&Frrc&{PKq$X2a!x7OW75#Il!iUK!F-f8yr<~f9A}nu?O42-AtTD{KHp6r z#;X1lda}2pG0Y;R2`*c0w-Bt7#vJk?78K-_Aqn`yE7V(^aFjL0t(x7+NWEa2zp=%W zLF4=(>&rh>i95C$x-&J$6=kvRlay!-Z7&AJ( zy>#F{z`<}h3zM7sgT9mlI-7QN@|E}p5VO~y>vqrq7hRNnuzmF6@9FJ-M9y3`l8jW? z`?7U;H=rNy5xL|sMfh7Cz#?!s%E50>Cvg7Z0Ja`tcRw z%gOmqGUe3(Ojl*t53d5DNsiHD@FrGQ3He&$tmeS1)zwIjC4C9pt+nKVkQ{hF#e*0% z8u%w_gKRbpLM%d|EF#w~pq4jraQd?MoK{q5lV3#rGVTZeAg*`#8SERlKVK0{OCG;@ z0BiZ380Wk~*DD2A880pTB&Vv(88QQ`<*VFWU#E3zwD%XCA1S7uFDm-Ndc`ZpTkr(} zGOEnL#Fx-V(y~~;P4i5~vwFUZ6V^yJBjq~R?B*PI_2vgpWT|Zreg`+qMGT!|wVbre0rHVBsm*H1}6>8e9kfgj!aqbP81faYRB-$%iwReg9v)Q-0gtZVy&W%HlvyiO8~c zJe${~U)T={Gg(|9F9c+K{8rm2FG!5%MO;t^fW#(Dy_4PtZtTRIgfAXrmJ|-u#QC@K zxS<-1qVM?~e9);@`}N~Wey0%JE^4ILt5bWy9c~#MR4nLz85pXoK7@^D?Mo&Q@SJ+g zAh_a9lyBi3%Yw~Nz4eG^2yjoF*`r>EnRE*0Ezb|EM%^$^goZ zUI173LHDZKv}Mk;#b=H5p-W)unEDjd9A<9nYD!w9o#n;r6m?{KYOd>3_q~&3CF@Eu zPU&jiy|ucP@m@851Y56Rv^|iaL8LTB zMqEFIU25W{oZRH|*`sxS!Hx>vo2ByW4m)Ob+Vbqp{WfFm7Q^mWT0roPSj)&@4hXRV z(P_P!X7oxNb4By$!T=!wvSWgLMbHTv42Xc3Fzy=`LB#Vvb5$a)HjP>}73ZHIIKY?X zuLzkNz&RuO3VQ)=OSs`PQI-7kN-Z4Tk>~jd;Jd6Mlm!`}EJV4ZtDJjl$y=B5P&N=+ zZ3Fg2z4TtZ^TQgz0XpZrGQIvijs+CjGnVu|iM#j}W#pl zWywC{(_gnz6qWIlC%Fp(x7CGW&& zgwoEi7Y9^}14ySRg7qC_DKV4Kmr-?D`7C8odBH_dU%CX zc(cptRT} zZ|4flLx#s@`E%?~LBV8(aBgyH*&KHoW-l?PkeByIq^op9LPh%9M|{uyuC)rxJAZng zXy&Ew0p5QnVRTU|n!;uaDrX)XL>xwH%=T?WowO%O*@2j&QJizsQ35VEL-QWv&6pn$v; z0DaI-aE`P$_x6MNQr8lwJCmq~DWEuM2wg*I#vPkffS{zX!iU#tIGE2doe5PB%cI2H zw2lG)jECTSt+K81hO%dzG>-gQ^?8I)k)-!_H9IaZY%pl4YC3mHo>?Fz(hJhZy#Y_QD2WpTtC(9$7!hnYlewxpHOuJ5(83`u2KD{0QHunq@GZK1NadFVb z`=X`Y)ln?s+-h;Lxs)fH-2qX6cKAPvoYbDX!!!k}CPU?Ai_4nY+lWw_6hLv<>`uG8 zOQqjRom>~a#(^u9wFz|4^4qlEouzA8{4IbEe1y~BbFK*SG z3-bbI1mWk)&$LQeTlIDq=*=&<5|dD8xVRbr%a8z*HkSedXry+-|A_q8DV!IuS~g*S zsn`WJ^3qANUj$KH;;U+p3CG1vO~itVgA;PH=~e0?F^+KA{minjG)x|Dj)}-FsIRgQ zu3>?i3DuJ%kfX#R$}r3z;RqoQr?@u(v#|!87+Wb5^i)B`IgEV_0 zNZnIXC6ccw-OdUrRV?g8kJnZxf+){U;JxQ)0&fBi$@Cy%r;e6zfiNPzsg z0ZNMD5tWVt;_0>GIdO~fI@WfdrkT4^&{E0BQDer4{Ss;J{0aWl_=L2v`0I%jU+9Vc zd50clwR3LXy4K*MBhiBgd$q#AXA6Q(IT(R_f`39rr-LuP0)59mA%;1AqboW2@kINw z{Y##!^C~*7*zs^s+4Va>eSZt@On!+U^#?c%?dGhg?gv9~f(WOtDW@%O;U~Gh)?8LN zOudyd+r~UAmM$B%OWf4S(*!|C3Ny9hXNW~z99#Ur#^bxUABx=9o~*buXbptm&#_3& zCDlM$ScI{7BliXZyu*Uo4IsmWr-8>YKhNe7pyMayu;|XX$uWzRx0hDNH+1HoFf=A6 zLAyNNVHO}Ty95MI^hSNfZxmb9Fo|ifh3Rj#HF)+zPL!FOy2Jk=B0|C@9t@$aGR^&C zOTjRU_dmZ-&{e`MiWr;^!%U#LUtXE!>y`NdH@6_4!fP_u%j6cJdJLL~WD-zOpsa!a zx!#nSk4Ag>h5wWg2={ci8@DRfCudUUK4C$efl=^85xAU?=4RL=-ne((e@S5^CWd}J zNU-fKHt1KLBG)@^;*;)y+R@n?j|J8+xz$xo8L@oSkJdR` z=9Q#%`l;ope@f7vE|l3BiyD#LK}z17U~tIuL(&$z*A))@CDPZx}k0=A=VC$sW45azvS%>|TbN57r1EoO0JUz7K zp8`l#{T9jpaP8Plx!=RbrYAgFLDN65 zhFxLZBwd=eauNM2?%HU=`uoqtj&c`czKS@LlRtI$zLUj0n$2SGskzc}^Oix}?qK_@ z*&zOYiyBV&o8aQrfsLR_w$3i^6RE9s&w%Hxfq^8e85?pR&(gl;qEK9ZHeP-waAw8^ z^vZaI-YbB3UdXjIE_Tg*x630@&S%|2HUgG7!IvgMIUBZD<|fxT2K$bzWI0O`O174p zY*-lRWw?Rh%2rkN_ZHbA38VaMAe%PZjX80>mFzrY+QgYH{jvImosAB9GBLFQ*}&tkoO zspjuH5>KB0Av>M(oYHCAADue({60U3wu}!pvD|er{RQ~{pdBzYJz`|%&XxP!-$w-} zj)MIHW+&Og;2p6`o*j3_Y}hka^sLoSNkXxAbG*|MkyiuSX1YaF@wcv-b_HDBaGGDA zm5&~cGYr9<)CTQ5O+t1l2HJ9Zmx);(+dnThBC5T<;7iz&wfBTWYBZo4DI9Rg(7rbM z$Ov($dzosMob;%f?*0jQ$I!bdc1OP1Igm^KJr(B+Fu9KrVAue-$X}{M%u`o6?w~hx zM;!mv4Bll9KnxF>uLk+k!9st`M0*!V66zk{&2_pTI>1Gt0dW7?5(JLUmE%V_XZ22i{=XMyREuUVxkj=@&cKKKc4 z)>$9zBB{!#Q!5XiXK^B|w@LM%cP4)2fDW4|nRyVhgY{&js^gJwRL*BkH|66YW zx~Mj1jT!N!Zw)z_%jo&Ruiz=GQ@MgT2mH8SaBhDGc^kw%yvCeOTH6HNU(YD8iUC86 z2xT{h&yAssq70nfsEoDz%{QRwIHo?|i83N26Br}qX-a76E={StJhNUgQn;$*8BO~Y z59}?$Wgz)ml^K~R)s>)!u|b>F2ORXlmIwvqVoV2I{h`11cG`44nl!3gxo_1MgQUw( zpa6eBWY_ z-W^eP-s(5y-`NaUeAXMJ-|jTNQt<|}Qcpr*P{SY2DD26vr8|)8v#0nG4!{kaOwQ3; zY|wy!P92N^a~!nDj1iD!Pnun1EN^XX5O)DE?WEWxUodaVHTMVvJ=@Co8Y!#WBG1SN zpS8*fZUu{UJqbvxn8W3SyzqSye*J5J55Rs&obCyp7%sZN>KLu8nsHfU`>u{|xYUMK zRV00r9U#dwe~R!LQZOztS?yote0+KSkU=O2d%N!r7)Ze6oS$9~Gl!i} z`DOXza!INdxdXH<6*PZ1MI_66&d5jlG&oB}*rkwyX(z#u|MR3cR-w@|O+r+7C?I8% z4j<>-+t{dD<$QzAs$~lA3aI?-Wg!iC3fnC&d9WtH1Yo8TH$VkL4)EpbUq5Z7Mtsx! zWmW8ampaM_nSb`nZ0DT{wV3AT-36=}i;7*Z^L77HW6W$(`@${p8>mwAtCK8AJD|P7 zKTF3d6(WZuOK)mTqNr8LUe##-vB+8JwsSFGcOx|D5JeeO!pc+df1ae+chP9a6?A8^ zY=C3Kz{lvejmw5Xk&b?yLWZfxze#K>ckWr>Zt$ZFmGM(vN`4 zv$o1{M!~_h2ZIy>p$?oc;QI-W4{Mc>hL6tXD4;s~$aZVo`N_+p9x)whn#TZKjYBhq zi9fl@Y3lJ4bmh!15~`EANQ&L()pr%1z${%bZ|YR3c%ba_3QLcHNS`e?-e3s0zNa9R zD~%JRQxK>@=n_pr5}#c)GrfstmT;>cHfsWG5UWUTmOU+@Z7eaEYd;`3+d0c9o&lrL z8pUJw_R$KG>0T-Y-|o5z zbJuvoV7e$d?ro44n-!&uVUUxd4_u+Y5a}eK_8-i*smxM9fbARZiG23NCXtTOHDrv; zvDDl)S7%jJkYKk?Y#k3b<-vYOWdk&UO$NIa4A`^ZB!U{bd&jW??KdE-0+g@Lx8fE# zH2*g%9$T~Jf`S}#KmRxG#DZM#*u$h0lelVAF5HLfOIeqGI7>iO&im4dxiRq{ZGSX5 zEh{@|9SQWjvgz+q!Vcn@b-%Kl=Lz~c+I z(8_K}U?zCr??v?0+nQdsNA}lzjCo(0VLkhle(jxKSFdREMQJbmdSFK+oPe{~|8T7w zKkf@%er~k;!yY-$0IomXxRI?SKU$q_k6}oZIWKD>;fn z8s!2oohU@1i3=55Uqt9E@uiFBz4QN(V-XeVY2!s&c-0$2JN#Ms>q@FMDH38;|22Fb z!0h)BpPQ|c2U|HDAY(qJstElR2NF{Ju_^$Q(c{bwf`(Zj<{>g(|q z_E0F%bUL?Gy+LSzMe-;Z1&X+nujX9eG3?fsmk-5#^KIdQ^_ zqcqJgI4-!YqAGl|zio&O#PFpVHs4R*C@OGqRI8K?ZV{E}6-|EG4fqhkIk`;G)h3hX zSc>xHw@dvKo~z^<_jH00YN`rbZgEvw|}sOz1u4o7>AkfE>m zpOEeQQu0+jFzTU5AE@fcomfEPQl0qF|L$cLdXA(7rZT?A0Q+V*w{)njPNev)?eJi2 z5V$gpD3pRid<6|2B=aReg+k*01(#-K(0pYLc!pqUMnoByEE?`%Z$W!oCg# z#H5mg&n1(9;L`fdoV!g!cJ^+%ANm=vCccB8^aPbR4)!Ll5%j1A22dR<@VLRj4lO-C zekSP6J?w?r!GSwPqLhal40gR2Czy8gn(Y-YwapS&)WeVday$uVnOpe3KR!RSu5G$= z!aLP|bH<8vGg;G~XA%QS!dCTEc!=CNsO5{ey7)0B}YG zwe2@0obBoGOqWGUM43!bo_x{sc<}kWW&a@py&Uc8Rm<9unxc$Kg(#@(zwC`IMNCny zij~V9N_m~-P~|;0JpA*PK^EH$jCihxlSnz|5umy78ZHONLm}-nNZ4TM?Br0~BV+(3 zP&=KqOvj9T;v^-LD=5FfBHD4?{loo1gMD-f(ous~&oIaLsF8=e*AAJeQMRgBE$phF3>| zraP*tByIN7i#4t^xjJ`*aaCMVHFzK&niFwwoz(yOI;CI)*(_r?U~v8Xws@ue@MESn)HV4BnB6m4WXOkkwZo^>l{)kGVGt#F!56X{^uK^f=n*u|p##<)YNX7XQ08t}Oq$fkL!~{opIBcV@1hX#=~Tq4 z1HV0>fE_u%uM}` zdgMMD`0BXmraM%N3Ph(hN7Qm3Mwr2GAQP)iNF>%>T-xM$tdXmXn&F8)!)9mg<- zK^L2HM3_koVyVsUqsO59;`IlA?;)No63zt?t2`XNwJKPp}1hZ6(v}yP#)d~j`?f= zAt(s-h9iEgG-7w0L-6ABxVE1#nx{6o){%72rjeljLeRfwj`KXYMdVQ%dMnzGMQ250 zW#+tM*WifBXm;KtJjV}JIleT|<6d}tYX4!;@}ewbMY|x5*aogK!93PA@u6@JGTH3% z_Y|+^%l`vzb#k^3w9#$UOQvq>+*K;D&F^`C?cvcuE|y=)jb-^Xdf9b!>xzpWLc<)Q z(r5buk6Aid+3i3$y-GL3i;EoN)4A(UzZsK=pQ+>B#_2f@RB=0rNi5AQ{^6Q^4(y=y=76_~aJxNp<9ZN4WUGVpI!`G*DsM{VU)g z=3Way^!*A!6A>!k73OXenjt6Jubx2Lg}d~@z-<0=RR4e$w;fWoF_rXC1`WOT%j$YbjA3jX9?D7{D7 zN%n!^B?j$Hpveo(V6s^>T5Kf+XOGA{J_uLMfq^%BJo5+PX5otGZV;cq{U~WgdDhnc z7K0zUk*Fz4sLOit)M1036N10sxYCD{elZki!)jwN3Sn(lsBt^=^XJ>-eZxg@j)+el zhE>zD5<1hjtBuC0n0myZ#U2KJ70Q9xYUqI-^oB;61KPVDgfG%6YfO2+%x7m?jh&FG zW_$if+aL-G$Ig`AQAdkJYqGb`bU&7>Y`S`UmoKmkdZZ7?%r)A>tj7<mDSLM}r~W09mlIbFcLbS=#rZrXxKsd1Uz zKYH*zp8r;Qhx$%*!eygMUmNI(%l@C4A`q)4JO&?h=HUM1m{`1R5C!~qA~JFmN~XpT zE)ki|4o${09&xsU7M?+D@O_RWUaUU>t#Qa>i=1FwP@M71I%u91Tl!LjXp~)2ske*;b}RtZfVc8wvO#9`ESRr=Kc-F zAsgG1p}CQ&Rf5mM^9&R*IltYt)x2(DalO2x)ZX^;kNEzTvf9@xRvvJJIB4;n&4Gf0 zSHRGEwORsB9NY!KvbnhtGB0@k+iI<%Eu*~RmNn%NpB-$hM3*d-)^C?T{BYRxyGS^~ zf8Mqe?Q2cD{T!To@o>b!0|%0#ZFW@h>dNdoV0KUz0bU9pyt0NCpI%D3DD_>(@!eRt z!NKamKrQL25c+_Z97d)tlYCQsrsA3R|IYUx*ChYXcJ#w zUrlhv{e!91l96Hv*XOsAUJCabgl_rm5dA&?_qu2}SY-qQ--(L7iC+vqF`XX?)YS7 z7tn_f?)rnNXXv|UPsDoHeVX2R=v;6p!4$%3DY;s;@~M$AakrF5Zqnyh#_Sf&IH^m&n0#S*m)g>Emy=r+f({I{gPs*W8R0mJfR@1OB5xOnk3X-)h15M z7xM{`M1t9{BH@F0+f! zz2QOndY7ATj@FsD2p&fMU=Gt&HS>t_hfA*3R56Ovgx!}D=H6$a_9Wy_I7hW^7KzFq z+o|Mn8mS0I_ve=Iz7^X1=6dz-Jy|AnP;HuRf}Hr(56f$MXPtT z@K3!Qck%o}dMW^rf_>HDkqv`K3lvWMz2s^@;Yw5Wy~NfQZzhs2&u719_%PzcOrif?S*LOLIqEszghm@eDSkwyJh|#4xwv!-o>39a=G-#|=FA{}{0-lnPCrSl_;@b2v%z^Dtj4 zYOdOu5A}I?_uSjOMw3@f8|LAYUH+EXR#OgX*q8~o*dX54-qf*D8pl)MPRzuPl7Q*4u8G7uwR3cl#P$f2I)q;N}*ys}f%yC2Q z>Co4?!(cciNx`kF#zqKlON|I3uta1+?@6y@nU@7+2pQky7=!_O^RThGNaNfe%pKv! z47G`ePb^@czjjU?Kbh-!wzRaanL~oE2uF8nJvYrlZ zyyGmHnt##Zt=}5ARbLCnsklbcgav&?9&h;v#6J)J>RzGT5+hvZ8_<*c%|MoMsA1Ju zUR@(xuw?D-rF0h;`yakLB}Bi8-Gxz+#Ekd9JR<&H;7nR}6{P@F-LZ~M2r`Yg8(Iuk zl2(NykgN&4t}f-$d(XUmpbWiNf_y^dmlBj~$@l30;Wf0hHoM-!OAYBY7saY1XNEQd zi^Juw2G*`w@SSV#^3jpTjaAFzdHk|a=p1c|uRxmS-Eb;EmQUoR$p1S~V10P~xTzjs zx4@GNo5tr?E|C@WS(E1{AZDw-53(q6@RNXm!wp8W_?!HjdURs3(k~*OHZ_fh@sq}n z`zl#ZsQ;1HCmmS4F@DUTv389W&GrAGEt{z!j~ATlH#j(0EmLlx{F$a?QL`jNoG+<81wRb#a0*O1SPU{B&{fDUs;`9eDa>T))WgH1k(H4*C6>MV2F0BEDEVF zdQ7H!5jNHn7Y<}^m|MiEA(`vEVqXXHM{dzEG?Xd*+uL1lwJF9sP78f`vtL|Ef+ZBo zBWMo#Lg5DK;qvbo6f!*;THw(1-wZTKzJla{&-TbVy9Ana+>qKR@u|%~IDYGZL73^Q zdKG4_!NTO5Lwnx@L}5}_^=uN{e&t=bIrEO&(bR(>0GQ%+fcJ*infc%sTs6)_b$reG z?Odb9tA7*sibT9}rSeZltGjLJgRSvgBY}Z}xH!0MRiNp5jviugYQ@OSnvG#~=ocbx z6*eprwWQ=Fjw*~*A6pRxQ&;sC1C+-&O;M)$asxt^T*QB{njYKMv9)*}&X@|;UA6yq zd=EObV16duZ8F`3P}->*25sNm?YMy@CH6WIEq|D~4&|}j)2Hm{X@^bma4~dMgXlY# zC;-LAFOV6?k(CdJ$Pt!m;osUwi9e2-os?`aIE0qU+Jg`R)~PRyP@p|KMPy&k%_O%fRv=5 zNSOl!X(!3hV2@_wu$9X86@78pH|yBl=JQzmv~4X$>`uXPd3B?8ZDQAc!8^J7U!N43 zn>@DZU813WW5no&AY=r40f(cM#KzbJsZ&HtOA^A>-AjA-9>Cs=2FC@Oa5(W#D!=YW zM0Qk4_pybz|1Aog1+Kr}LigFaTZFj2_MvV^Q?bA3^*p)Vzh1C63=seieGwg+8R)b6 z?Q*6Msym&BGhI*54r+VWghe&f0EVI$1nG2pHxHiU;&aDJYiBnXLio;c+7P2?zE;2U z97Qf<*wuR43%LCL!u&vMNQ}`#1oISdKn@0KGbExKro1F=I+)^-YGj|*bJ(gdp)bn~ zb0pK?fd0kWr=}ycK*n=wrd)*fY#U-4Yk7BrB|t$+k(|hlZ0goUSKHvB7=2Fs61MQ~ zJ1b)sDaR4>j6={a*-bim`%4-FB{^=cs9qBOPUFwr0f`Km9FZ`7w4qPr99II}Tb?iA zl`EqSEFgDmZbDFH&A+f`Hb6}k2WQoL$EDC|AbuuziGW{ydHD2- zHP__t0*6$L4%zjIheO5cPrXhJH}_l=ITb4(@RL`fGEv3rSYWO^bt7G!BlQU`80@)v zrmrgiFW~LZ;uK#E%*qk?Z^uJ0)`L?UP-HhYuSW+DY@YXy*J~6wO-!x$7c@;bnmjh3 zIzQu%?3|go^vC0F(IZ->_Lv3k>)Vv#=<7Nox%c8C?V})uUu@W?%H$lR6NDUd*M!4` z90XjJU1_XZZw&28pSuP_PGIarz#*E}dC?<80XNd(Wj2-nGAoVBN8pg_r4suV>82BL zjr?Md_>IudkGtS%xh2oP1|gSVvzR73o=p!ipyqDe1QiHJ?ErIf)Cc;&F@K`OdUxeY zaNs=k7+aERkTAlS==#~OXeoqs`U2I;lmtGUu zz{29^N@cP_62sj7`a#t;9S8N6;W0yB+$BCz0Z01_BVfzVvX<-o+6g77gY|RUklk{e zu<|G)`OH13WV>r@6!uvYuGN(3tC}Cmi4n$YpAZ#}CMpyxFV4FqJ~g_@bI_+a%WYX*YWLm;3U<9}wg=U6k1}!hfY1Wx@ zx!vsz!}qo9h)*!@;N|ahkk>xfm7!NkWR#?)%m+zq#nC^O&dhM9^#@nhiTnbL3c{wL z2;D%2)9A+GWQUI}l)fODg0`(2i|-rS6bGv)@P>j!B#LZayG?*gCq!ZJ#z)vbaN}BB zUV`4-f;QLx!rH<6q;k5Vm7&TS8>%w@w<VkFtOv|C|tx$G%N>W*7ea7LD%`n%T* zq}OD!Zh82N2ODnB=bIPdWNpU^H`y5Dxqbp9zDsa2`B4l5Pcd&5Fs+QtTgA22Z=Ju^ z`?1mNEf%Yz)o3PQ^|ESq!^kder09%`B}8!@>rq3tp97Y2WK>3seo9Bq<%tHF-M8?Z%-Ze2)lgm9W9o|Kz4I z^hKbLZgOOF;T=E;zDQm4A>J4_9*o--f{T5jsXwSR)B?Y$F)bt)-*YRCDj3(EgEL8K zso|B%4y)B5vD-RxScbo&K(q65=Pniu5{RwhVzTai;`EZ6dL#j%nl2{t8}mysk&%~G zP~;XBO#<@F;3BC&<~ROMjdt5A56UK5VQFg{eLq42}AwP|A%JptPtMA(oyznjh z*lO8#Ba^)1XP8S8avR3_mEyQZ0&r4b_ze}=dxP#?YTD*Uz;poAXPQ<#K*e0mSqX{^`!I)k_vn@9ULfNbdB%l(prdyZ;{7=s%j?in2CY%NwF$ncEo}V_O4+lUigq!GkBEV!Ec4W%%KiN@`>k6ZB<9Y+5GYrw*qyKINgt2< zMC4~5eGz@Gf2!mrmA~=cnjtO>mFX8zZSSl4%`IHB`*xTV1TuwtBOJ%Clm)q$onh3)=$jo@;=Fw2i1=qyhTl*u zl_Oo&5!5e9*`qG<5WV0l+AjJnV$i^Nxo5G>P+OAT5+Kr}ASf5~d=$rPB*LS&ZzFM6 z4J}xEe3T$Z9W8C?Q?sr!3;1!5t=Vt{NZ%>@lNGH>?rmxUv}*gSSHe4uHaEA^x1sc@ zXM^s*jt9k8U~jMTro6&K??>m0$2feL8L+L5h>_Ar5j1?@KeC029M<@}8AdrJ-lq z$6F3Ctsu({trpf+GeUoLZ9_qAc^Bl&5UE35Q2;9wW6ke1GsQL#PW+8m@-*Gf5_~P0 z&t(_8#8PDiTGVRAjGdOknL9%tX>rJLu_q)*Jrde}o=;~scE~96M-KX4-*Q`Tfb%co zOe+)rH4NDT;dI(t zCS+j;NF8`}ZxJfH@69k_wRUYbvY9H7dUmE%Gn~o$g6zWcCsE>O?AkYoWJiFgR#%mQ zLjUW{{y&`K=g%mpnUg_;^bJ;v&7FltK0I|WJE4L#*gor!{8K8aHrZZ8vt&Rhol=CK z0W@mb_TP$%VrY*m@jk7u)5wGZqEG6PQAl*02-5*TMU}ul4+i_uNaz`@>-Ppq80|ao5jW?O~VtD@uY(U zU+t;-ro^@JPt@7UQ};dGFEie||HKe3SyNnP6a=iisO14Rch&wuNp^I!nsu}e+jOG) zZP6K#%(zBDT=ctXO!iZ--@1+zPlnI~=cn!`n~?oN(k#u$YX$xp))!r2?CRCP>?+{) zfhr1~e=FlbKw~7&TM<|`We6}wfavHIX7K9%|7KA#OEGYyGU#RAvqQ9d5JM&2&f8s( zs+RCW%XoT=BItT~#5ic>t^AUgfDodM@o#;7Wjy>(1}j7FLbbUGYNmAFuH|f?>~es^ zuz@mg8~~)>E^Y-D%+i5B2pcrF!A%||KsOPN zO&L5c7W)`COzIO}XQIg787-+!WW&0oT>U7Tf+9oej1poC(3AQ*1u|J4IjUxZ-N|59 z%8$;M_yaTdIlQ>(YQ3yrpjqk79toWfiQ#O~8}?5;p;oOKpR68Q5eh!Q3x`^6XvUe_ z47Gxf*(=>nnJ%UQu5O0CYtKME?xqF0~eDHeHdZ_Gd8n?S1v-4%R*KkJ2LF z(Owa+)Jm&oD>G%J_e=Yrx^f33`%AuAMTDoV`BOwTtb3;B*DrT?ypu0{-#?J;W$u{S z+x2IbA>IdZqE#1VB9|td7%r3RX>s;PU8t;qani-Ipa<^7(f0jEFj~!1RSM>ax}9;$ z%LJWJxOJs?@1xUA4!j$Yq`O6*#Hx49sK!8k3+f(Wkbk{{t69adpLRZPoKI2>AO5mA z+=7(u=T=J&En!NaQv($yFCgKy|9bhvbl$2$Si!gvWzHs%QN*^Z=LHoouEA@Ow_{=T zV6`WH0xdQaU}*?#+AmqtGHfW`XO0k#cJ*1wJb_qmhl@9SZxIW=74ie`i}07Jd_}eM zOcX@1*RQi>W~j)rZjgoz&H#5_G+{CPtBBys2`9-QjPXUcv~WM~*pwkkY~`E^RZwM( z^VS6SOt7keLoWXA5!WjHVxwYU+5P}$zX{RR&Mf#NF}&UCJtmu(b9ybIK>W;8n2o2t zrS0->PH;rZ&<}qw(DPN1aR2bVhpKRSZE5an=#t~tie%62$s4GN8CWsQS}C5U}^AGN=@*T3El z-n#;y{ND$IQOEmHgTIh?JcK_Z3*9)5nmeMOQU0f&34d`~c){f+(3VD@j9t2Ub>YNF zo#jmU)Ol(tq3;b5uLJia;-M%gI6lK5O-zoG_r?;!Cd_u9*7_p#q_3<+rmdi^VNS+l z*m>$Laz7STgB@z8Qq>Lp!UOi^U2gJll$bw&Ht!$0y3ohFSn+yaOG`?2jFlT5AK$Rk z2Ba+lIj>|TK!ODWS#U2HSUjDZ)AgE(>cYC^9K2a!Pa9G9ifk;CRta76;9Cm_90tc* z9` z$D1okQ)6yRj(v!YHQM~he48wgzp3KdnEaFj*;!;2lDg3!(HgEsB4It9-X|CAhQ9S2 z9)_Nk$B%?vHvZwV(zq&FRHkxl308~;5WsU)eh%>4u)C3C?FnILgD!NZ&NzH;V2@jtv%JjqME%U@xZbxYQz0mxP(O-F}fCvwtbZ zCPaLtwimxwk6yyO+&gr~6WakE97iR(f7IAC4yStHPHBmw0T{9d`dw0YEu1Rp> z_+7ozm$>_hWNd=7gG&_-+L<-XV{lbj$Ucx#lv*}y=6ZE?O}-Ca zmvdals@qS?4ZncuajZV7iA1^@eh?Qv`B`SZjdYr4^&vGzhWn_NDPdi|iVLl)sybti zHervSsWUf2I%2Ish2G$g;g8SQ7ui#{;%D^&JoV)-eWrWo4{d3yH}C~aT-RV4EJ>d5W)t_~2AF&wMWZ_Fe=|G=JW5d4r%|R}C zMBYz0G)^ABm65<)(!cSXH?P2n2LOr1zkqLTlNx7g08QrwY6-IA7y7jOY`w&QDY~*w zCHC3SsvQj@&?VHkjxbY6lVMCt3lARBK`cm18zjUqvOkM zO4Ud8EtP1E?jy#-xD2~7i@F*fCIjfOKLbu;^HAx(F8n*j2%c_lDz!Ro^r6VR4b;*qbQ+AJwr>2AAVIu36@HI zJehqGGg$v z-<|lZ+~8kXK^$f!V^_UL?%HZjHJvh@7E!$wG*7wUr=t!$hE)BaZnCR>1YEzmp$(hd ztrvxNQ~mnHr5(>-t~9Lz)vhms4;|xAQ=gVF)}*wK+rN;NE`otrtrJ+xT&kbf8c`4- zYt6V$maD&eLtbpL&`iUl;lb78TL5sVvttvZTx)AT49yi1f`?@jyF*WQG&-zQ11r3i z>vt5I=RI5avaA?&bnGj%tw~#>(dZu|^S^pE-RXcKV6@;s2}ZAK;wMfI`67^yktU59 z=F~0o+;#cRIkvt~dg~o%UUKFD6=3TO3gL&I0w;Dr_?b|y8G{_kHxWqjh@Rd(mU<92 zH`M8EU*j_!lAYWOJ6$U3YrVcLM}&W1ubIa=c#&jJ7h^57FMZy=6UgaWz>QEVSXXuY z2*+A6_K0_A8&ctBE0WorNAK!MKGG}y*GLfRO~Ky~Z7u%MHMc4~(WgP}e|qt?XI?Ao z$z|wSYlZIhJ8)~BJ!)fY4E z;g7Gxc{l zCZ9>==YXwu$PY*<=Dv+G_fBoDiO^kB<7_umB+t{aZ8f`kFjf2nvA{=`?`|Ijjg-=F zWsqGwKT@$miTJ;lx?n(Eo@@klA8(snjpTPcWu2~f$`{HWDJr_ z$=jmr&>71jer5;_)G{m1Px1I1s$<%l{1 zg-q)U-q)g?*UC^B%A>fZtx0ShVM}Wh1*|_uW1M?CH)KuHv!igJxm&QRx}JXOalzFc zmm57XN=k=f3RYGs8guP1<*Fco>yz+`r0uiZ8S!c#LuUeYk$vAR{GjK}o)0SD*6>^+ zT-5zPYzFdPCjcA3QuFAvJ!4HrPk#q4T2nnjcLK`j20=c_I6q@z8<(CB*SXX+++u&T;w-ij?uRNz0`PgF?wN*8JE z4yGge)9YnzA5?sPA(JVfFxO&p_B&O!&&?$o3n0lfsNp8l{30TU)1HK?9a2@t*>(^j zrVHfp1tQ^xhofb5=&sfbQGfgphj({^*Xc)LWAUqBE2qmz$8e-IjaH{E9lp{k4q(qa zz;bEl2A4i_%xJ=|b`%|YG$eN(Ia+1qNoQOA7RYaC?4sn2j^*O{+HQm>iE83GyC%Xjoc!Q9^Pfv&-4-)4ofqILBjneA@dXlm2hB2>fgX>o3#K()owTYPx+P)vZNij`W$bN}U+19bv#;A$ z))8SdS5*hdtZh60&l}@=9wOVeomNh5Ntj;Y&O64ghHMywm4;y6tP5`3jO)oACNUs3 zivxRZY@C2%*x45`m$AguX4RasJDiJ}j~xsge6A3;5c3lzS;oirLU?+v9o^jA474L* z#nAbR!t44vStjdb+?rTiC-SXCgVpJgO+}a0iHI1z=(5bug{}%;93atq%|q!*N)^L{d*o-yi?+e*^$tzW`n}-pEZmwF-2A2 zUBuJee#ZF7WEnAHaTi^w^K{CVXtnI#lBSX6O=Y{@+Boy(T(kaYF2VDaw^{3*0#UJo zQV-4A8N5nzJK;xLUqDFyNB-Xw{(5D=T#6~g+m#&hsfZ${PQLo8+EX~gsppIGR|*ZkRmKKIS?mDaNeb%TQ?7fw25 z8Q*@Nb7XXQ1N%S<>KW;&8TEJ=PM}xT1?B(u>48j(mI z4?kKy&D!LFw*!;l5hJ-@5ktmh@Hc25t?%gHiyJ`+g+E40!BQ|Khw677|HIGRyfc0I zt8G%#Xy~KoU+q25f?N<&rhFw0OhkV4Df@eQd-SzUlx?uU1(&n0tVQee-NcIcm(H*3 z;%?nE)BbXn93#9o-I|GTn!heq<=5i0$&}w60^QZIjE-BA>z|qP>ZT@Xuk|m2@dpJU zs|JkF7Nt9ko1q7CP&W(QYtI2@!o!_9^je43OS?hM{N^FciX2A!QRdO@{B?P9%WZtD zPRH`zvx%Qie27M5Z5b^#_2b10>%(z)Fx`vB`uA}thnAf({Y-0T<0iVQ9jfF}ZNjo* zaOxwAUT}i{|xx|>jeELz-MCk>b zy}?^)geHR9(V`<5?Ksl)lpXNj4&ncH{J7xA?D9P!l*@{$dtRhN?(eGl`SKy9YHE`J z3YJoPwlK}Igu3sahe@RV)vA0)rRrGvze(B(?27}L7B`r%2-fO83_nu%s17k-TI}7=Q{yRKj$JKd%nvW}f;C8F zK=!SFAOyHkn!5j#x%lH9Ry*UB$m4!n^`G-?$cke6mgk-&OEWKC_vHer0OhEHJc8R|EsK@KKLyX~@hie%U?=Q4;Y5%Okee zvVAr*l(zQ5QWu8v8ak35y;}S=X>b=*^aXRfdSxnUpdX9GOkq~>e)Htk35E;xy zl3AACt=L_@WeYW*-pT6+0U3L;?C)qlLaP4eLdL1p_Aa&On(yZbMGZ|Gp>d(}J{sMl zI+N|~aLWhQ4-p^dp|eQ;V-1U6s#lzF^!9e^wneZSaN(ZiAyw9GF72seA4?DCM|>k; zwOpT))|Q#?uNP`Ho|nE4A`NCf8GUGC@<3l6m6>ySUC!3I9AwqdVLoCx28CdtTU|UU zy5#UkTK=4w=3m-~Nj3cUvh2TUzoc6Gp^fa^2n{_WCEZj&U_+^)$NLI4HEG13?l;8U zhug==HskFoHj8IU^smepCd^Ns8ZX@=m5Oz75`XZ0o|K|slUfvZTphF2sRNb(tLi<`8X`w}W7F+zc_11wm9_ll^TTvr=#oIXM-FJTmK`0_#D?D`l0l>)^+-uFA^57^0q6_P$)oX3C!a4Uxs2lU7+vDS~$4A zZ(Aef^v4B4|3B?DUS`G#DbZr>uaqt&-u>T|_-dJ)2iZ+nnZx%UYI%hdAqX&v|7@F7 z!`b_7CCK55J&v&J)SrsHp)9=qAeE>6WQ>MXg}$V0@h#r=Qa>e*V-b;I=<1){Z`Oth zi|Ox(d{x{p=H0ZwxNgBn6n|sLR9s-=grC}@9N|Rydd@~bkNu&jp_z!ymjOZ{Kg;Y( zNx-Pn+!!AbS1YC#IjM81owTcRW5$QilY`gyjh6qukrTY`7~w5aFmrZ{(s_$qxxS(8 z7#ri&*PEo7!%=t>ea7Y=f@w3z(c@xXgXOAYEQKw9j016RrqLO(ZGWIJXaC1m#mfcx zPT^m_5B>QhyHL_1{)DBoTe@QV;VVU*c@3vBwQsYMh>~#iPG!xcMKjM0bt|;Jb(LD5 zOo^_w;gx$CrrYNSmJB?$A}`L!%Wfr)=zq%i8XY>fdg;w^bjgmt_tN^O?ytSsnX`9u zW^geCd2hKQxa!z6=t@nVU?eGG`Q+7*={BU{hbN+d+ok#Eu zEKaL<@w(Y(K^$K0(b;o{^*!Q+HqPh{iN%HI;Leq0`=*3cPC4KI6sk#*knJiZt&Iph zwp-0{Uq3_{FE?|!H{dZ{n}!^BuO}oHy|LJ~jQ%RQKy9tN{$S-RCMCZ>4M4CvVM(7R zWb?|BW9cWvALLlQmoPGKK6cqqH5_~VyUhVvNgxJJ^#cC@Xgx4@uH{M^Nho%2-^EU& zOG{e@*tu!xj3)E!p1Q46dzqD)o#z990c|j|6(T{qj8~z zAsYHRqqFr@SdevURpVW;HVKZfqQ-n#CTCL9psA!>V`k*nw`K zLIo#+r6r(>f+Plg`N%F6eQT?hBjEZ;M}GZFR_weu;!mnzPIu&3!Nt;4){6&WTY}F7 zZInave};bOSh3@zIC2n>~2)+~i9xeZa&(%)D#zZGc0 z>KRT;lOGq8u)FO=eG*$adawO=l|GbO3*c`wVq}Qc1=v$%CJJjTTYWT`WonW?3uAjp zOo6Bl-Pgl)=a6oxDSBSd*3V#bQ)~wgUbz9}9rJthG!y<8;WOUAXZ#x%ZOM7GC7mjE zA@pp%UHOe9#*^`NqP`Bc(EfJC+0?wS@fIf~U6V;fzY|$iDJKAV^h9@#&qYFDPN4#s z9cWdBaeFD>2u1Z2?HP#Yfa_-NC^tSCw)Ww}e7NRT^~h?IekF2J>Zz%*)e$SVb%CMg zu;oGRYeYObKI8nH;pxcFY8mpKpamE=c&rl8XsEZc5=+nDqGEL3U37b_mU{eM=yVeQ=RwZ9&1Vmw@0JAM_Q`!+hY&mtLLhj++Ql-%xf`SgME%MbP^j zPpaKeD*06B_Ok9)jVEL}yN_SV>g%)0aw!WB&dsNGJ2wvQ4Nr^eS$Wh3q^yf*Xb@!g z?J6Um{xi4yN*D8)x7;UOkd^w0T7quMo^*{5M}KHs`nOT{Qo@|~9O*&>fGK5BeA#zz!P>v}XjIkLxCC>#e>T|YH?-^YG4SUj_F%flyGmiOTzRut{ zy+0&|kUCxw6W{9gkPcciCdLxL8KhHAy>=f`L#I(OaIYISFQNBaf^c?fYY zJ(zYj&eN2p5*SQ zsRl~FpL>Rf}k^jugz2$-R zR{hZjD`iefh>;tHS6YfuF3ZFE){h|M(dudMm9(wO-&-~0#TG6)h8JL@ z=k_&pWhVvR7QUE2a3TEYy#1oFqhxo~nLSUUTiov~m!H^Zov=J(F1jY=>UcD`pB_JU z)P`CAjG*+urZWFU>rLUuzdf)40aOJ$NdU^o>xB-A8S09hE4YU{KBu9r<#` zQS^N4%eAdwCL`wMQln=}iJInorAx|)zGt)U=7S6S-@de+tUr2UK~R|}O}lJ*-t~ar zg#v508w%+_O;OY)N(TaicHy+q1nGOotzy=?`E$}bcg_OGeAW#%z+7rwh+O=5Xo*DC z_|>^+_4)%ssVztl#sraZq(8>X2SqND)<-1j_55JYtT{O@sCh=l(b#9>0$L^P<}H+@ z+YgoK>&Qd+LCZT%IzLnyri`KTm1$?N_wTBv;LQ35p@&9CS}_8kgM1UqR0HGxttie zQd%XPoYLmrmd}4dR;PffZCB|GUf=Ni!qTSo7C#_Q?G?Hf@YN@I!#>V0B;&laJoV?k zS6{YcX%krdV3lU-)uJ!R$3V$?@x5_9{t?;d7@#9WF&e3k@fSP#9L2<-U9-U_vH{&+ z@W-3|LoKJs!HN0Pdd}IoLF58*yS?vyKCj3UM$zAX;oRV&FJxanzx=~;`R?oX^--aR znrP1}Q&axZ%6O6cYOHf~K-6MwaZ`)v_A>oe4dIoN$%hIsgicSgE#JPh+#TLC-+djx z+R3AiXY5wnE<8S8KF?^AeBAZm>y49*6B>`4<_arEyH#7o)IT<=R=U((jc-mj|5AGK zkAmgf*;ub#3_T40l~U9cI_Zof4=jbJR?NYr?I)kko1;@nGarpSmW1`qOPr7u>%Wur zmWe@4G%>RtYVLTz>%Dtq7fj?L5K~(+D2ZC^F<;A#1^I$YU3dB$Z<5exT==ML`N0^S z<1ZMNuRnCkng#f!|J_qm6kL{@nfD?IFCF-U}4{swJ21n_MP*FNUBeCo%AvfpS76d^ zhs0e|-AT#UtUfqkP7tk(!#Swyfwf7GhST4X-2iI!?$)vpwep3wAIE_8gqAA@9-?x>D%M4+yw)cqBeJv6(Jw4lq#9RPzg+u}{i$R2TivD1w`Nhuw+txU9csL@(3Y>qG1AEfA&MgLft&-i~<=>**(G(G* z(lg&yC2fh39GZ?zI@6}6-0h-4F>)I`?xSgHH|-~|)Oor=9MRBbezPnj1d|i^NQYuw z@kL?&;%pUDQ|feVAH|jQQC+l3R;%}~Ztr_JHZ(Z{nWSdU>XoGhuQ2%-Pp^x2$w8iu zhstzo(xvChUM*17%rF~;?1>G>)(N`pvhH8&25%kLxno-E6fgZ<_rb&IjB;02{Bn}P zIfVO%>e`=Qa%;W3f3G`tF0OCp$9Q!f>dp8`sh1x%KaxwnQmH58L}vvu#;^JjP!p`A z#Qx=PFQPRlD$)K{C02%et(u(W^E{sWp}X~w(zhP1sJxoU+C$8k4Asyq_S5t8gci=h z_}XW#8DFCIp7!*+aA?yp3|;wg@{`DB!R#RP@LG+h<$W7NNV)A5cGPzaVzAdSf~Go& z93>JyvE1oc%__~#F=Xs12sCNcy8Ogu9kuX=s3IEz~r4?pPzziHa(B_swB2Y>6FL9omo~oWt{;4W+O8NIq;*E{^ z&?knUj@uqR!?j- zmpkniT#KkLQhQK{=*DRf!elIw`aVoG$ELcyq_fW5)6}uU&mEPYdAiyFy){-jm5oez zbm_s?->iKJs^61p7YEL=JQBK%lCsbisuf(+kE9MLeTFTR_N4K);y1&DT%JFw5Mz@L|e8e!=R?x?~^L>@E4zp6lAT zICC?7yG^PdW@X}IuaHfKnj`XTVi5B*Glw5^3k#h*SNEIp-uIpZidi_6zmHFg zTXvCB6kuxcNa3uB^Fno~_>fLa(cVh8abjJpLF!Pt+1SK&Z8(|Qtilup8s7>&yQCK9hSSHH81cod-U5<8Q#`bT<6DXvn@^Y%7wzX zqgP(}-0i$PWMP+;;G~0{7?QJoCI9?Q9PN>AS71m$Ld51gg%uvy_t=H>iwDhDlx33f z+9W1u^2K*fe7){)L6)0q z21TANTt*A0rFs46?CWdsJrkp%{)Ofz81XXcW7&fp{Xa@|GR2bgyrgk?Th~R>W}My} z`>QB;pz!q)O|Q0^Hu_egmUKFenkksQY8Uy^<-TK6`Q93clQDvM8@1C1ju}BUOQqt) zJGn`441Y?UYs2QCwd(cbK|dsS>ZR>4s@p*{Me0ZWdy^-6s4cKjHa+?AmKibm&5yoQ zW*=9}R9(vUE;Yw1sWRkF_gl2Tc#^nLUb%-BWyg8P?S7;?7+%*1+L#PVo5F z4BFFYJw?}J#KRUtaahBbv`+j=EF%gpD?O6yUz^vc$#~(O9JtvsQZARCjXGSCUP@bB z@>nSoEcW`d@B^kbsdu_CH^iN;6fB(l*ic*F`uc~SA+?jQ^vp9ByHVCwCWzURj^bXd z3@XdMhrj!%Lv!RfRgA#Qo)I$~f{T z*&Vy=Hb_0GHaV{xmk8IJ!uN}D?LP}gwGhE`9!Zt?30~%A!U?LQ?Pfc!<-P+lU)exl z&4{A~`GnFmJ;aW%c6%ua>pIb@fWJZex0o*7JK{ENBNDD}ZxJZ>EMUN~Xpx!9qVhMW zCb;|b@E_33kkWWk1`buqJkBIA!Ql%1I_ZG^jf_+CmdUZzbJgSigTlnkEeT3&+M6%m zjH%@4KOM8bnf|xq7~#P2hX&t!97&;PDz{MCT$ju$S%D~fs?OY2VBSxajoFtrHQ~R1 z&;Iy1?=m$lv7+8+vCOyCnehGEUu=e!rQNauha%!3U_CQn-R>D{dl!eYeP(W0!}J-@ zKWeF@`;n_p@IWucqhE3LJH@WB za2E{@$9>83RG(oG507t4%?>o&w?$~&QP)VP#^xmzINV*^JsDru2yU}u;=-sd%|DU7 z-QK5%ET{VKzen$48Cemc)>a#yf~NGBiWz+k^hg3gFX!`h-?iP3|a>b1W6R!Ucz z|Gl()h53RVD%mi$#JrN&WqzE-qs%JVYObsxD(jO=aHrzmuYcMEsyDs1V84y2{ZiTa zQyw5KEb~KmYS{Y`eNyavH)iF}&C5Ry@=1EA5}St6->Vkpo&1N1g+1H3If|zyg@+B& z49_sD3)^<+Dd-c?L+*p;6rVxz$&cVjFmL8|%kn%ls+xX2S4TFKozBpO;Z|N@RfN^y zYmtoIDf;ZX{NDhs4kOEDMB2v=uD;2xuKO*Iw5L$prpR+CF`SFrLMrCOh{y<7JBcC% zU!MbxYEL`E2>I4}FfW7O#9|42L2Y-V1$|S#lFuQDrxF$lN5?<^u$0rCQM&r0cR_7U zGxKnc`w%_#C+*x%8E?tYBU}B4jyBpW&Cs=A3UCQd^=|CBBhgtFf*yzDZL#BuPnTS_71fV7j?ZI!%ViJF@%tF*)%yMx*Rq+AG$Up>XJj( zsMIC8>Uw|oyZ!##?e*85x998iINT49$K?M#yt2F}Wk;mmlz+GTI7fa=HQTK4|2eCW zdA#tY!FH!-!o^Qk&HvwWgg3v({j2_c%gA~KcKP|)(=Uv~T-Pycsf6iXWRfs#?JTzU zV?fJF)gD|rg)=#}Bom+y3Tj1^w0UwXj>pBNO-`J2DXvgJft8qxGnHF$uSHTV(8`sB z2Lqxyu(>Ux^l`~`@eog&mWuD3lDxZ^|E52@FQgyodhe92!-Ime0S$3_k6^z>*f=cx zHt;;{@taPb>?rT7!Id9AZw|mxobSqw=TescC%%7dY>r!ct$p(v5?2zcQe&n6*U{z= zTg`R}Kh+&B0#cMan=f1(F?AAgAX_b}x#MUl$b;(d`+MW;>F0WDb7}v8zm5%ejcTm^ z??10XlX_#Bcc&bXChoj{4gdF_x9JMKVHYAM7%N~Y#jt;r$myG2*(|A)eAqhck?e*% ztFUDfdb%kXMtJi#mol0EWnS+RhUjQ>T9sTds{iOerT?|~E0y#!WaSZh{_!J?{TEJR z7;|_&h#;g4Ys;mgTC!w3GzZYl3}_;X`+ z^VQvPK}bms%Ttmeez-Ul_(8hq6xHbY)676)hO=v%^Q@%cR3M`>7ImermGHpgt!0Bh z@eJ#S+VVxcsRsY!XITB2PYP-3rQ$Pz*QN849HidgUu)0F-B5UOM%+&|`x?D}cIy4i zH18w2T=zWe`oMwx8>z(f?~ zHmLNQbWL0IrFaN|QKMz-OU$V4I7RyJ{}%rv-NN~QvgiJTyE%#zjxQHbeP`US-um=a zv(VySOXd2xaI(rihwYXQ1749kgXV<0h26d0nBZp!#*K7Tx`M$_}h_!Pz?ulp6b0j03htXbcVAjRJOP6st6BqMaz#`DB@(YA%x z&6ch%c}hnwv^wfmM`)SOKyE4|yB~LKq{)cmY7iM4+qP>)Zvn>83MrP2sWX*%%b_gZ zo$7xcNp<(<&=2Z+2|{%$`plP}1fv# z95rUvg#L>h4^NAsu!%Q1VSg%3;;F->8^{%_%4uokk_zgq$fmp$Se39=p&EnNNwZ*NQ-o*{G+D(L|%*v%y~y_J~@q2qni>L z<|67TudEewT?TYEFG5iVj5NF#iw_M9ttq%Wk5Vg;OmIxa?0!t)O}n$fJgdhv>hsaf zwB-Jk8MiHs?$5#UC#@(=YRh#YlAQ$7*5)abBgH7q*pldh`!iv;DD+DyC!!h-fncsy zbwz07!Bcs*8jylCH0f+@dWlV=aC+4RpN#5Ml$2heD`7;60*m|d>N;K~s=Jb`=`~M= z*|AakiRSvxzykwH4j#U!tR(Q`8EEJm*5cKMW^^(rOrwJ)i{o?dN0BGH*DqU!O7$}I(u@dAS(8=fWK3r;Vf4c zY<%yXsCWN_cbYQYgp(RRv-1)NV9mw511l`;%&U}^ttBI;FPE2)h{m=Nd=&3wS!ZaV zNaByC3q0z-9?#HJj|838!bD)C9{O2tQ_mxLIhMg2Gq7 zF3mtRHWIjy!68$vj+E3}DZ)Lwsd%&W3*qdkQ=wO4j^lnqRWiS(-Ihs75Kh5kuIT0x z@t4XpD8rvd_8M&x*9HXoC^&zj;S*%?bXe#GP`@G&kbPI1-;W&+QrphB3cMJJ^n-i2 z|HyZ0ZR)rw3T*JxgJ3OX$-{KjgJtSNMCJ5d`VTD|1;e+vA2kTKsEj(l_o`lhcn`|e zI9uGP-gmtTHn{Eww6omTaB(dj#JgVVe5k`8SrueL0+|8NC z^~i9@tQ~ZGo7TRYt6BJ}e6QVoNlG#iI|t8Q4f(O1Jh8MRu=kRDms~bt`j32zGXk%Nz6fmt=RG_as|2R+x~2`_q`|sw0}kj=nC$awWssg z6N6T7#CE%;2F;u44JN&a32{GyNcg1}tI%x!?93G$R0vEmj++!jZx3du35OOsQV3B3 zY72Hsg+ZcAmWE|AnWy{H(jL zKjT$$DIpbPQoHEL4PNr8?Y2LEHx5MF>cl&2bvPrMdSUODK_52bE!z*Y`9P)Su)2i# z1X88Qe8!i$hG}c-=2%0`v?>?suD8Gt#{3&KNYH`sn+cgr%m^caL4{ZZFx$N>XOJHtiOV@zCgyes{Rw+#9nIpI}FG-%&AKWq?W z1Nja>od_w2OTD#tQ%RA_#iQ6^#iWJ$w|Vbcl{8frEn15nWRygLqXY&f1UH4$cv9Ny z>c1!-;7^00*s)T`@Em}v*5yEs8<>herc5q&rZqD3Xn9J3RMN;k1<%jN-M$zNHVD@9 z6Pb&|>ExTxT7G#B(xo_moQdT2%5iYU2@lL9qsF)OZeKcA7kmPr&Cy=6wU0-ao=Q#} zMlJ~7EEvS6))j~Gi^PCFTkT6vzi2A>`_`tk65pHZ3pc$?Kitw2R%f|W(3uG8z(;qn z#l%b%I>3{mXP*&6ov2)yTt}^)lp$Cb1f8rDiggmA1Yn;3Fu9O{xjp3GnSW>uy}~q> zhC^scvB31^`Nz^q<7vFU$Y|{j)Bm>y8>HQKdQq3h6H*#};*qT3aE%JX4yaJV4=DhQ zrU8aZ`P^Ri!1BY`7&u8-QvTrrs*7&Sg(la;41aRXuvl0doPMiuJUGldO*Og2=?QLI zf&ak;*L=9&V#v?Ipzfup5Vh1+`C(to2weed2fV{rVU;Cm1v}};hlt=~qcZsDLBw#q zp0G@ooE-cmiu3>pu6p4zdWsT9{puzSSD_7xBwHP#KifDirt%5mV}`HNVQ@(6j_2g0 zBB_BSO)#zqHjo^WYZ4)cq5U0hI#6?zov9P7F4Lt$Z<}^@b$yxbEt9IRXP-JJY}f}- zV&_r<+Ph{37*y0nQzhMicx_Hdf0-ID^d1^2qQu|}YF zqe+H+`G?4RkAMAMc&C2nrw($T7~i>~{W92JQMz&Ookh1Pg$<&hI&Ezn`hcCrGX4p# z$9B(Rl$z%QujbA*5Fs`VV+FZbN=GQI@O~l;iMDo?>D1FaUs+Q02YtS{cVOlc$G8Zi zfWu$bnr;|Fz+QMdwGNe^Six#|aI-zM=s7kB-q`67J!u z*X^95(FhxS%*3welG?|k#J=Zc>*u~6S@~`+=fw1zj~!;CaP;|M5Ee^MpAfIvlfcI2 zTfXLb6nFk;L^fId728p4M)xWgDKvf6DS`ePygrK@1XE{CPgGV~l=t}G2N@DXq6%Fu z;YK_M-qCO|fHYl=8{=Sm9z zn1AIX8lIflC*o?r+X`9P+ zK9Kf?osR@U`tG&eCFPi0|Mc_SpCi*Gdm^kPrg(g}FOXq%2dUT}^I%rEZM!)2x=K-Z zf6F#p&kO_XO7X8(nh^E2oPS_;{$4t+-_`#&S^aRI)-0T4#%e+&c2b7HI!D|zdNcu| zITF&0O$xPGBfG}kJVnMH^qRiC3Q^j%i;y2i+%PT2d0`iWG|+X?T92k1i3UK0w;~-j zcC=eD39R_aqHDQ)5~T`3$Ks&n^NIACf6mNjBE)5t0tf$4o{?IR5zHW>Q3Yy3Gzb4BkO+Xbm-lq|OCEB4umBYueNWNgENmSggjYpG5)2Em@Y$iEZAHb}U-RZy zb4YAwc*K^u^j7pJ`U9yck*P?Z+91 zN$z9%x;y1G;j-K9cp|8)bD~}aY!LY*>Wa&Jh(ERb?o8?A*yl34%pCgN=b4uf)al&owkfycwmgn25CJy zWDChnuT)k|X`bZA#l}zxhqdu+?7o<;cLJ4;B=M)WA?yE|W2+P^pzD*v08bB3kVB$m!MC&1B*DcRPlFmr{2nDt z6O?C0=dB;8l|vbU2B9o5bW1Zg3#bQFsmp#VQj;1_%`cZNxRiK7iYk@!^Dry9H_!Ux zP#T?@HcSZZ7r2%tzhIjP?}$k!Q^Q7H+e+sMEyVixj4#@A4Q@Sc2y2OuL-#2%B3WB; z1l^JC9cx>N7O;zMYoG&^BtNjH!)ncr@omG06SFLfc8ZD>CO3JOXG)>~wwycpy!KJ2 z{Et6h)cT;v(lQ$!JHd(AZXsSz54}chmjsH=w^o}aG*=z7JV^@t>{5Lhy7|S} z<3;+SkA_GN-k&3vRn&7d``(A04FBU`gbl_vu0x8GKUE875+)I4<^}-!ffl4ZbKhH}B=H4)rQA_3Aps zAEb61C1^UBkV5q|mX;rqG?F^V0(Lh*gUeZq*mk0+*xC;s0!7`8aMUx+=Y^369q9vm z8|4kNrE8V~I@`6f|9$wx;F;2hiEnz}l_dTfT~3dm{(Cngy6b5Hr5@-~)GFqvv*DBD zfwe5n)rr?jg~{i@O?1GJo2EvTjj0~{6+9AA5=FQkc+yCoZt+eZW25y1f$AhBKriH& z|C+a4HLGe>X9^UQMAy>;6NFJI~_T)Qv)2H;DxOzD3<7xWI5&js+QH#3=1+h`f*5mvj^yEEeoa z6Ir0{3i9VedaX+eHswplPxWuFA}AZzId2XeCAY}`X5(EIYsSQMm$i_~(20&fAgpQm zlqy!NAN+|#$kg@~OTV-T0T|?uA80bEUK^z1=$T8VoOdUp$gV1RwYtyw_4<>(phrGt zgY0)geafK1EjfP&pq7JqBByTYOCViBOjkpO#YkR)c3sMe;b^qsM~ukgN()#g3)iop z{X;PYK#~ly2O+dby3)Y_KVWkF=pDS0D+YcQBDSE@g1plORQD5JVVI-uKEYi&x@&ab z55LT-tF%M-kVVvtipry3UFRwBb!dVNq$->#8EHvaL@EO01Qeu zo@Zv=&uBC&R#i(dAeG;9JmcsebjNqk_zX_!TF<~oCLv$ zL92Zp4$$~WM%|Jb0j-W_=<9zN)?w(;X~@)N#!UyTf{(Pn%>(vld|_0SKuIoc_Zh`L z)79S7RhgMGf1-_#y?zvX(d@RKky2mYEX=0)GOKC`-VjE| zwU>Qz6s)<5T$pEHs^hW+SW9YZn<*vdbV!9e-NVH_0uLBUEqX}g!p8#8#xbR5dlSg? zw5vM9+$F4T`O;iZZ(j_5FHCTfOiB3rOfb^uf#uW(1glB}EheP`14Esy1aE=>byp9I zuTx3rqcJ}#&roH76U%`A5|YcI8k0N_{;qlV@+Xk)`esd_<{)Vut*@c3 zO&hOr7cmZdprX>dqBK>L!^&fPdd@26j{JzrN)ui3s@!!(I*DggXA9y_eA^yHXn$|| znYGs*d>o7z-K^MCApUfx{fz;BjuWU(SRQCi7X-^_y)V;xLcqsmc|f>1`=^)3xk?{S z5Jhu@&aOzA`%tXNG}{s|56&*G>Cc4li`8+J7mg5OXJMWKJ;MqK+Z`SeMxE~~X~;9X zE;3e^w`9AgKhh4E_`*-E`Z_)0o6mZ;4YaCj87|@WgwR5RwS)aC>yr!_BVB~?K_r*t z^2FU~hy|LxcT+5`y5bs=3#`TOjQkKO?fg~okL0HbBGon$eEh>1Rr2y~B9|RWQfcDF zR2JndF0OC+j0k6-iX_XzLnPj67Dj_K7Tqw8RlqD3?>WG3MR7Xe?&>Hne37tT)BIOW zPKkSVB$(~&TX=W?t!3KK1VIrub8@QuYImi>Wjulrmy~gXt912gq5e1$`ziJ6C?FA09tMn%Hh6sw=S`7{%zKX?$i|75wCaJV7CvU z56q3k*5;hkdY%WGy5_U-`KRO}zI3av7Q3wP8|IUFh;hllUVTq!$u1a-_j2nGI_A3G zKhhjz9Ihz2+kbePq^sNQ!2RBO^tza~&r5EJByfKs4srtm_*n}d^iM0l>~jDZ2L+}( z(<-M)UPzN%glY);k-r91V<(?%Gyj#K(j_@^H=0 z!1t?=Gg@YDo1{q*I3zR26mNf(r1W zi5DAJT~mxnlcNe0?{IP<)R=*@9U`Lsw+6#r!``Dw=+cb^Vj4zXWyiT?0)&KDxcT;!Z}zz zhT5OoY~$N^^qr_D!eWkRA(V(gZ0Agc92($MjTV#Pa!BT9*)|ctNvtX3n2VOaGQ4PoJT<#PU~_S zTDS&YtsAl!pyl-NA;fSUQD09P$272Z)fw61rmOqXd=MT`sA%ya8FnfMiZ(9F4ZR>A zD)#rWFZQjZXXtLbxG9KEk~AXPlqQN;Bce;;-o=FRV&p3gE`FE;wdwSjYf^N&Cl$N( ztohQ-$CUH;IpiC)M%DFVB;m{0pms1pd6h0n=uulE=aNqL)E^$+sPN; z{Mmfo^RmTnR_?t!_Z=xh$)6GDTvkcQF#o7QL^GMe!!ihJSq|p!03ZeE78%8EYvs4E z4i~i+u!Plg82W=FhYpmujm1-420XUCA~iGVnMK6%f^lOR&L_TXJT+YgD|mcv}mx+ zG2Q+W8M%D%!+0!ya_ae7cCYH+S^$Y~x{@0u0^1~+^RS~3)yZ)*FNO&=KQJ!y=Vw`# z_2a^A=SOruU=7Q9qiT(dUuHoz;-gTE%g@xR2a$k!+H2Fku(_tUH%s=TOIp_aN!tU< zVxu*ZW+!k`!0G7`u1%EMM~Dn|&$Af1&9~NfD2`^N82ormd-K@DeqSj0j?u#BE=2Gx zzN@KTAs!T3G`AH=*6kG4k5PLg*_nt8ihG}OO9>N!TCVI^nH;~ZDo6af*z-oDPM=++ z40AhX9Xs?-BAHbEmtUQMhYR}qA6g|uLU8U z3nd$g8q`-@5$(w^g_tUAt894^!)VKtOL(*P&xU}Z^P4vN@$9SXZ}O|WLr;SHAj6T7Z(4vsp&L#?LP^l;5u6xIoYOY{Xot4#m4jAnFy>B z`}*OvnB7Y^XW-;uklPsMmIFZ~{YZ1sAAm4tCMa=Y*X}#*@duIWG!zE(=tvQ(3rT!c6COofCp@*RF~>>|@aB)NF2cyK zBdT4rXCixns>sGQQ#ofleP~hM4S>Cv#7%};JZ8TevwvycgnLW&oakt2%m3tH$m(1% zFciy)&e!3jNVEWAna?K#TiYs>MoivZUGR1^EiTU}FV$n}P{W3wATN1I7E0%RfVwB* zef#dcGK;DQ9Y@_?MUn48IG2mE?FY)Vo9rZP?t3uufjy*v6sRk%eAPw1z8_4A4yI~an;dza&GkwW3;{Fi7uZPbC1&6Ri${BH)OZ1HEJVnhi zsww=Jx_8aWMRUU32V}Sgc^%U>})t}C#bLw&` zYb~-Ml119Z z%ys^K4z>q|R-4Wb{&14*s)M2{WUirv2M)dTf)ZKga)(G^xP#Iy6j3MYh(8(}FZV0Q z5RPr}9LEHrAVgT9f9z=T*R;KaB;oqh*EezO^}k^roYb7r;c$6Z&D>4Gv|W2vg`K@8 zxprD`Y}1y5tBc9K8yT%%C$O4{7)_2$Q!9BBn`=(V^8K!or>Kg3=Lx7%_Zjx%Mr*3r zA~KQijv@r@!rPKdZY8pv+r+4w^^9>7t}KUbx=G58ZXBqNhwiP5AW>fD$Mudu*mipy zJ^OfndXQ;hJ$(M32MMxje^!fFF!#p226#J$N}v+sp`SihCB|V?H`B?JLm)*ogTXRN-??3de=(yWiY)sbOfMK%73_2}(7n+$u+#bZ z!jVFCKo`GM+B54D!r@fX@UBNFW-68sW{eeg!~2`e_w_eXTp(>x?Y%VB!C&fDjgsGZ zz3m6oJTtsT8gVh5ZO=_?xb(<(_KB}=IY~ql0qrB*?oQW#O}#x-){`lZzX~F%<+QFv zO_UF*x`l!tL9a0cYOS?f^yuMoECL8HGt{LJ7DolCB@Yuq?h7Usd-`^giJ)m15-Bj? zc86lu&ywKx;<}4WS9AuemXo`;KX=KW^Bh^qyO(=cCaUBYl2|^5O`_u}*}8nv7u&S_ z&q?saobNIG?!o00iWm zZ^j^iN>eu+LNtHm;?wUD8Qwv+PkQayG-iT~o{f-p;P+2oDUbwmJTV zaN-FJ3^__coS!aNuPl;|nnvsCOug2*mT7Q{ z{OyagO!LAj=)c^w zmEoY$p*AQ%n9+DNLQ`4VF>Ccp3wkymsCMw$JTNXCp)gJtD2PQShB zv86B2>7myfU@?1jY97oDdBjC*{r`WN#NS(+l!y&N3P!zqfk*DdFpm()L|~BLtd7EB z7IH0{RK>?)(0#c9OpT`v=6KxD5Tvy%Aj`unPglh7Epj%;76d9;DmQTzMJ4w03s)db zeK4rq&QRMLffN{og?Uug-HqaCJt+YAhD{Vb*7m3GpLOLLzVY^n;tK`Wz1q+ye-G6Q zDHz2vW3^F=(`1}cX-ZQ~TiIH_Phqcdy#Kf)NAj(u=2VnA(mHJNNARO*+a)-E#BCks zv}^hJYn5eXeo6|3MvaKg^C#dR$!L|l)q@MrQN-O}PP{Zz-@%WJ>ss5{BIsJ2NzvMd8;@)#wq`U;Gu=U)FU@L5=2QaAZ|D#4Y&PiWt=t3 zPmaQa%OWbQ9UI3UWIGD8wKEN@Z+7U3Wsh%$>@F`n*dix*F#++8bPe+M#B%kZ%=O6& zuB4=&;ox{q17ypHo>!MFQco zdqWDSC?7}O;iT?7k;`j7bWEzqXp6gLcjE+Dq&>8ozUgWnyR+m9(*cgY)aEv%uep6Xr$AF}qOGOLs#qL0i zJxsl<+#adqPxOX`dsk&~#3&v=P)tVk3vFfB%7L_ri6ZWq!3 zT*?cZB8=EH>Mj?5fu!q-@3mOnIDU$fvO)Z+9as5Rf^o2HdO>n&81-deQ5#cFGe)43 z<58R+yH*Oxdus75Mo?L3>E1&uysJnZ1ur?^Muz1&@(;-{?@m;H%ERbxo_`AziBz}R zGYYO;UK<#V)~8(jHQeL(z9S^0KzsO0k8hSI%;Bf)+akHY})g;p*Io z*C1$;u^8CzCQNCqL!Nl6gmBKZr%BtNwlgDV?XJZyaFY?k9Z{H{Dip`118#ID5G(nT zz<6WP!L4OL=%k68kMKI3fJGp762KuCH&- zw~1nMBhk~f{s`;e@?OKeTOF*O&tEs!|Kto-K7qA_4Zr>oIyt_G)91;ZWVbytE(7hT z7nZulTrdhfBi=lhdt)sK>-9E3+)CRld_ zdBIr9`){*1C^2AZy~by#d;8V^FBr$50{n+}ktUI3a`2ZWD>q^Ht2-9s2?1MK#EMG$ zff2h=M{c&EfWyfI`8RDh?RVDH*=slH8E%&%Coec1lCA8lz}Lflr%RgLYfRHSiVDg! z(CLfCxN7nsIKrs-Xx>%rfq&&k+USm=9peW#(3_VM?HoI|F_Qd(&;n^TjG_YL^(RMV zb5Bq*0eF=Z^DA;gFe%Os$WBTt(G9e_YqB!sRw9r=1D*^$Ft`qye)r49)#0O2rj7SC#ZE|Qm`XX9=SAuOwv zUF37tn&V9GN255j_BiT!VNu>0E%mg5f0(No4T$fw1Ay8e3=ENI9U&MlVm;Q5>}(*_ z`FIVnuM0c#O0+EVVvBQnawpzxqTn5A`4-#mfD`2xaQzqvjIhmGcVcz@{uFeaKjLmw z`6-OZ!vG)Z49vlqh9xo@!tOE0xY*~J=>q8jAEYBR?VR5Eby_cH3X5X7koRmWEWzl zTPx74#TF=6b`Csh9CG;G+;ag$Uf8N~r$Pu66em@4t-eF`0w_5hHhT$?`oLH*k4z=- zC&ax0sm7tKeoJZ-H+Y6+SU}`a+MbEn9p_sG{t436Y5o@5_O!?3T}WZV@z*AsWh?B+ zzZ|SRzfo-5N)|f!-<)zMC4oVBa_Z%Gf+9(tTGlBF(go`xk6)2BjPW8BJ4BG5Q5v8& zN_m~30z{50_&CD_kW=qWdz`-zs958BHz{qqNgDK~)vF{lgqX{H*NHTV zuwMwWYO{C+q&@VxdAAFZYM5IRAuL!{5}^xobVu^m)^}nImdK?f@BYvVTCmcbU_{uX z8Hlvpq()XrX>dxT|0v=&_s6rWo=ot&%~M=z_0Fhl$UJal$rf3|Z=*W&<&nK?wFeo8 z<$8H{A(kvLyTuVq25Wof0?!W--o%8)wJT{^yRbcPI)0GyxY}7jxUOcXo$nK{wm^Yh zOAqAv46*Lo^GB9z#||Z>DU^bmW6W_Q>k)s&a}9LGoTYAZGoC?=P~QDS5E=&?N|x`@ z4ZiTxvOBICtX#`D``=#EpNAeyD^so-TSSnv(6`dtYj5jO8_jf7)tFjOY7-McfcXDH$CM#d^Hs#|<>%2SdT=Asv$;S1v!>ZepLX~?=@ z?7__}md?Zz;OPsAl}u}B_Vuwj50#b%%i1jEja5QDKHNT}r}lb-WQyXbV-k;f zjgaA^eOx0zL*t-$? zOI@&*7Ge#f!HzIt!{R9rBFO8Xe@Xj(_vx!jk%;!W$FF>;y-i67PfC-ZmNSu8=ivXA zM&9veqmKJW7A+(g_}LlyDVjCb!|mKP0X|#5XcigsbXynpuPiOIdaWI~2VCJQ)-~XF z9;QHqd*=F!F|I9}W3dt863LYzU>0P?;J=0%YyRbKmTLO~jK>fEJF1hOV)78?HK*l2 z=nm&12-iO$A{hq`B$r*FuD&tZpNf$1_1sKMuTRCgM3O_rh{^F4c^x1wTh<0hPCfSi z>7K^eZytp={`Vi3FE4c7HGvK9`_lbSDkRwy*NX-f0`jERu-743P?s_`FbLPLT)3~V zr!aU@8sfS&)ex)^NVl27RYaU(k?EN#7uou%cjg1{Qs%!~f~-o}pnRr5%0rkEV# z)(Q;NNC86_xqb7z4NlAI9j|pE=S?1*TzFdablNMDiPXFbib#%3j7@tcN#IW`cXa=} zg0M=JZcKbF`8Y@oSF%SAj7G*0xVj9VF=Eq2RoxGUw1>+novORr=2H=PF-XXB=*6lU zIKb2HCB*V+QWWolYerxuRFMO!N$NoxJL3U4xQ~^RHZ_kDx)$(MB=W={wU^}YKXq>L zblDMO1hrUxmPSi4Z^9H%LJ%WEB^^ofvDNeg(`GLZUeqcQ`Mu10RgsU|Iy z#no`QTwxW@Zn11lD>I^JC@%-rIMHgp0PhqPUjOc&s`DM;l2{~ue-`FwR5h-ly>I-+ zYc3$(iRn=u>|z-VhGfy5#ad%tiBz=%&3O_GC>upzJJ`R=>=|QJ=o+XDh=>mgIH^U}4ZeX2q z;j`Gs=_XHiFo0}GM-sy#r)YiJ?YYZU+2wRwq@I-|ZL}LZLJ%GsKEpEMq>Tr8t&Oak z>6pQjk96MN{poS9H8Mgf1q?#0QV}HoFA;wJxE1rs%ad8L#5)S9Ad9@q`aNcyp~^2g z5V}Hk1hFC;)I(A|=tMX>00=L6vAp%kaY{I>u{tR?3#B#Vs=5TPP-suVhc#?M{=nDA(Gw-XA z(Z^L1ok+Do_aBn&tTkeXUp$p)=3ZSF0@c&Wlx15s<)04J1&X!>Qocvr!AuG#2lB`I zmDP55qy&Xx|9^j%a!?a923uwtl-B0RLbRwUK_k*3T~YFD9x6S~ekirV_Flyda18(ksU$$vM6d)CypG^w@cz3<-iy^!9V zb-E`H=B6e#1mS|=9lV0T)@8j;G)PV48*2V$X*(gxG^!?l0kdeS9J@k9gdn_N9p%HE8NArq4f}cr z|L=c8bI#U|3_+ZcT5m>Q@flb}Po;+z(m~8NVS}fT1Ld8*IXP4BMS5Q2@5>AZhvn63 zTv352baTUjs(dBuUwJ=w4HUzFD3?fx!e^lkhJaB6B>G#0J zi!t1!q{PS)CL|ZrYbpkzE4zD1Ku1GPEPWT=g;X1tGFofwR`CyobWBTRggW~6VW~DE zVv1<~X{4vd&P@9I6=AIf=_Kr<7771Vu#wunx;1)Ijz+}pb%>8|y;glLp=k7qJ5=VY zZ-J77tt0pWm_l;h#QQ{jeH+38e9-G(1>2~e>z^qV#h+TPIr|YC-|FcIm@?`N%XBf+ zubI@BS5I}G_Ca^K_vE-RdNMB3P3GxOqqv5Jho!7qiMW5gu3cNHuTWV96e3BUC{_b1+y(Ujw}ZVaC#T48WJlpvtxeREY{+np~L%>bYzw@Lb9V5T+|u{J3Ph!67u zp8r6=`Jimt*e*3no)Cy|_1C0NUGpXOen{V$-3xS8za>@4fw7)u9!Jj<-++PU69mPb z=7^0OYOP~MqfaHcN})*J9@s!kn~NgFOjO*vgO_S42+uLKhow5eGaLW@_s@z)9RaCd z$hS}BQ|#Z3ji>o%A#!rM)C(=ep@ z`uZYCm@=Vw(~jSV;&!$Wgq^TKHJ@i3cTi24wYwoX3z|>zFaVJX>ylsJrD; z#yE~r8>_2oo!z&a)7K1=gH4acUvfGO?sOh%-GUjQd9h_jnFd!)rv7-z@z=KDa<%eqE3{AFh=gUv zVN#Q3{>9h@na!kr#QKED7!*4@7Cont3R*b&<>)KZ8;zAF&wPkdB{7W^j*;qcdhcLL zNAKhu8vac=YuHSs76H6jW@FyuVETI(BkI!YeV)8yr>MA01O}j@;^CqLNRl9=FqiJ~ zdaR8`Eq+{i(ECC|ck8CfQ<^HprKsCM5)X_ii6~>EH9~9S{yOOGyK>HlxOIah0^YlB z%T=8uw~qyQE3hH(qPrJrINRIp>8}3 zU6#%lYrgSga&V<#-RaaX zsxJL>O>qO#rGy*tZJ<^1%}QDoM(_(`rRc?mvwcq9N@Z&rYl#oZIr+DhW0Mkpa*3rb zr%(^VNF<9k5tE1Fo{b2r>+`KoMV+{xPAwEXlq}CMN=G3I(fD z8Ag^fePGhgm$gEleOufOot)k4HKjkAk9Xt}kDoKpqvb0Qj|n;4_fluWaT7>j{FV0; z$x^mG^nd@UzOi|E?V=P_2d3raN?}k^{-LqgHyKhVG5T0S18vSjx3xhQ9?gSmDIHKpIqweB2 zl9%PjRDDeEM&i!E>L^s}%~If<+^aPS-%sT^MIw|g z8MFv-#Q1Twi%+{eO z&Y!Y`z5BxdZS(X`6CW5uhiwNr-Gdxcqa&Y;g1PECg9=_q*Gw68_K48P@5q0@#gsw{ z?bV1iFW;!@L=y;EmyDEtGgBGi69^2oMeT9Mt})*EWXz(sG{g}ISC{OTbo?B(#U2=+iL*9t;g5ryDft1%65C| zI#E;jt5icuA!;&werPVwLhlMfHn?B|ZOI-VmFhqI|0p{5aHjwNjraTLfROW9GUhO+ zoJI0!jvK?yA(8VmLZ}>aDd+RX9Ol%<#x{qKIjfX%nkdIIQWAxbgiz_X@8!Du=elgW z_Ikgb_w&9VHz%gj{#2kJq3Vs`>)m^{eUFu|tGMF_-f=fV1X^ZBC3C-xI4xYFb*>08O>B2ufq}c*g}9FOlpHpd zV!zjC;)#jI=bYe3ZN*{Hai*DwJ=2=Sf#&&jo^qlHHp*@uO;qoKXJ%jal z$HKs`JlFMg!BbE98rhke5CEC6qSk#TN5C!FP;6iU)x}FY`MCKP-%(O~FZ;+e!1mjNr{M%JY-mJw~Y-WtL+;}o~gzFW_0w4V63B6rw< z5QxDREB_Ph=;Zf4IRZnFtTVVP+8~W_^DhCTwj+JQEe;DOX4+wx2Pbug!0B4PWmv6V z0l9X)HAhVEKcz}Un?+f!bf^fio9K9>@$J*ufKp|7gLq+TE86bvN(7*8%|8cX0qN%j zr24Yb9WK}SC#ov(UQOxD;#lVIW+O{<$;q!IBAafF#7?c|`y0myU!7e?oW) zkd{JSvH?}^AxFSd;o5;pNsH`WtAPkh%c1qvZ@Y380ju2oR^j>aX<;)F!8wH{K%H9( zA5`xC3H6wTA^^cq;Cz$jh%oy^k9$_X4jPS*Qt>`sy>1SAxF~iqmPql+21f(~MZz8z zz7ir}2Ko@b97<@Q=~A)kJprYPQX#n2tGk-u&8?x3jl1&OR-H@!ucrU`_Tey_U?R)T zTDZkW=t&8cGQ>DIIp%^}tX9Ixd|!pl8u+UoKf41{%s%@=I?`3cv^UALFKr-=FKSLa z4#JoNai}^EQB$T4aDy>Db4BgeK_noz>_1qc>{CHtuCr55*x+%;XXX!0!tR=kf0-osDR{?i@d+;`(8eAEJLQRa?& zly5^Dl^$MD9JQtr%8Ilol@tv92Pfua7|3<7k3(0qw9NFoRD&p-OVAKHM|PPqN#!ud z#sySz$1Lf#EvCWIg|smjLG!bQTF)QR&yh&@SpkfnQcbvZQcqnJC9k?=Nku47hexuw zz4om;#?w&SzkjXF@<~={MV+3B+d@g1hI60>8%Smudgo1fXRYx@~rV zftf>KBH4B$Ni871k36RtmI_32lQkSE9ug8NHom}Ut&evl*F&>X1h@PD@qEINfG2&I z?JhXJk<@DAk4jy2@O&6VJl0bUX1 z?S!MH9ENHf{aQuS_Ul5uvKMhvi2S@8M$&jD6664plx3q@EYI<#HDS*SzD|t3L&6fd z9p*<_7DoPJuNb}5Muyq+EqeyL)QK4~Y; z!>v36t9l`h^;Jm|pUGqsj5ZAw{HE-P$aM70(oPs+uf>-d;p~OH%}93wRB!S()Nmd1 zr)!eKyR<318mozy#LVp($_wo(V%q}haiQe1_hOp}BtkeZ>dXt{xu2@`bx@jFa4J;c zuCF?GUZRa>Bo|~d-LteLGcr%`VR7}DHAo;JG=Fn!XAJ?zsPV4u?#;uXDB(9q=n61u z5;Qp+a0zxvhVT}n@9AqRG_@7d)3|RG@>_+a;z@DxveW3~NRxQS*ML6`AONlya;Eva z0Z@u25Mf8M>^DnbdQyA)(m=nzBU$YDu8hjwNCN%t&HVa3L*>KTJc=p$>ZG0bBXC~_ zDt^usyboGK4F+CNrOVY%J%2DYHc6?h&igRc^u?%UwV}_4vp5@*>rUDXNp|rP2G4@m3ka4Bt#VCa1W4IJrtDHNt{vaO``se- zQTPd|oo(De5VKKlk>;iSq)4TR`&Xv7UCNC3K7y0vRyo=2K3S%l>m8=42F8|Mhd*+% z^BP&!JKr%Z^2d06pmAL-t%Q>RJ9ROXjOs)UYaHV4Q%1)fUdpdJ5-amz?)WbWL~_7rk?VcbM(eF*UN55h0j&b=SmBhm<)IR}$*`N*#L~yWedP1^#fZ zrV~1z?E3*|IEKh^Cuue4E9Y;cY%L5gnBDK+P#}Hh91RN0X5?o+yk|=)8koIg>-f-3 z>&~S`t$hW5%W1DGwl@AA&cyT@UK(Lm-ZNHm+(pC+oPI@=&ZBV!IH87ZqPQ08-?FIg zd_ed3a{YLBL+7JR@XS-Er#nISX)utd;)MiP*IHOqcWnK?^?NXgJPN&Sw#T+nNXT+_ z>$m*zR5i;CbBYJ7*HrVgC|T}rVJi{N+WyY<<(g|o4u5SJ{qm6KkMlIOogT~M!FHG{ zD*0s5Top}UD7PJ704(vZ=_^{p!GY-O1|u1logUu0r(~4*C{A=jnHOQ`3z#>oXmse1 zb_N@@SWO(t8wD?4!Y2s-Jyv5CH+|9gbJP6_&9Fug^Xs10lJVxR6WyrwL6B#w;Ca|x zTebWnJCU{F8jDzfGEn8aPIjDRj*7-qQU0g8`I0pk*SMtI&PDO9WCllMB&Q4Le%UtK zoX%hCi;vvcbZGXPx6xuD_+v6dD>Bb?fx#g7$(G;{s5_X}{O04ec0xA0s&8Ng<@#p6%;$94|U>Sfc6<=h{fI2qlNvokfw zpnxZK#JMbA&N@sCIooalnSx|YXavg=!0;t}G$y>U<5{Pioyl_>zt)KhMo&SjdQ?U) z6a(W59)P1*k0$L)zD|XGOY@W6K*ITK>@7~8&t#Z*WVBA7&;tsRuLHV^;gepUhhO{N zj{8!uvGgfUspRjmzsJ(2Oh@ghnW~$k9-2|#qa#h1yW%(LW{*1Aq62THOt31ReD=?$-Fs_2&FP+>}Kpjp&I7g8Bi?ExY!73;C49>~%C0e6yIRutkrLGY+4gS8M9+*mSL zW^n^PG-&c_L~PdK&G+HNwT<(gXYVoT0Mj!zNan5*jnZRb#7EraCG~g-0 zQlc(FPT}lI%>BmyECF_WY}to|CNsC_xiSd9zew6tAAp$x(~#B~DN*94m)W68B!vl1 zK|O0?_uXF*y;gIJLb>YJe77CiNaKh+pvmM^mSYJcOf&@vcH+l+N;Rv^I?`IQ+=eAJ zZJ?7*fG4@b0xcEUw{N{7wdMVnXg^wYSk9{}5@gPP74nqyR3umW{S$4zg-u3HgesbB z-IcBqOo%6;s-F*a*8J?0u8v289no0H`uI##iwhYEKP91}i5ONFYEutTDcxV9u;Y-!7jGyN(h&HHgOUkvmv=TK@^zm$|7xFAK97S-e)Phd0F_+T( zD4K~W(?HNKo2bqO#+eSw(?>&X*&v(A1lPWr+c4pfi;}c4M{Jx?;OaTrt|m{%IqA=v za@6H4%G23)3wWF2LZ6MyV?78H3{)d6Uh30%EIRb9 zmSngI?9zGD{n?l1#S$`n;U;|-jH%4Fv*Jfp1-VRfT(SjFp26l_JLm__bqTNTvFqEP zpTA!E_n61lhmJ-}@xHdz2swY+&Mhr)QXbUUaYFw-mIO4%sUYbO z7w$?tf3994PC*r2q&PR3WkwwM#2cc~5&)dhYz>ZNoBv){J5ogp=y}q4*HE)vx1vDJ zDua!$L0nks-W8X!xS?QPN(U}L&VIZIG3Iex)K9Vkb<6z2DoU-EEbz(WMOx>s7_m?J zXA9VE`1oqggS}uES$K9hq7+0|xtrAW>|-}Fz&m5Sa4YxR zRV#iKK><3}6@czs(RLv}IPjmC?kungPXr+q>Vt1Y8Z*OZ&AmPCrrb-;;WDTQc3}7g z`E#ize+ESK%9AZMn0X=Xp{bbRRKhove4=gsUYCR|JC=k%l_XF2qMExawqgGNj;rDb zNF_aJx`O-K zL5~$s-7kVT8*U{GG669Ob`;6ac&4Az^4Xt1?LD?r=Tt~;0b+0|A6G=BUW!(9HdN{+ zNJO5j;AQ3?NK=xt;<==S!e-?C!9af7yifQZ9!7{fuDP#7^8(44q+hiK4lVjxHJzGa zl80<3`HS}A`k&X2NO)T0$E8`FG_{e$gS%BqTVjy0a8>!6|2U^c0E3lJD@2Bm9b8Zz zYo29&3A4O7d;5Yx&}%U74l4D1j(X#_!yEc^O*}-z9UToqXpT+Np01TsUUrwt{;W|S z4z77AHsn6G#UQU$&Eew0GJY`_-)(Cfn%=NYzOuewN!QWl3PUUaxzok=V%I#fJADHX<#c=J0)+qg+x zdL$i}a{wUTEc=eh9~KYLrz+{Ldm6^MH8!N8MP4Cf#D_Y?cuUoAaNunxrD%0G24Jd1 zXRpQbP+U)Ki1*ADMrDY8u#LEwA;^T*-40K$L2Rz#hW=v)meF2nC5Sw&LA)FJ(K4Da zy#DJyGh!pLqwfK4&>z7_mAuZEH{sf;%Z$Oy*%W#EsiS{c2Bjjf@&{dd#dALy&>==MH_ zEwQ2{-pliJjBXYh3Sy{zP~izFHj6QP>pxYHCnH_&lMDj|g4&N~&)Ol1;4dM^O=a zHQSyIl^fi1gc?A|d7rS*`yp0!q`)Ro>k5*}1lkkq9#aq}kERC(z80F5Xh$(0iy`+FNTS0eU5mhrl5dz--4g^??<)2{mtORk`9Di0 z6sd3S8GPh0oF3%r11Lrr?Ut>tQgs#ni{tXFFs3PLh}X9i>Oy7Z%Y2}%ahM@P*pwt| zS;|tIXJe~tnISnA{%2ar-!OlAr9N)@2R??O{b%qf%c^PD-ud}mjqj{|H}GRs1x0~N zbrY^8s&;n+3mJvDH}4WV*W9Kk;hig3b(WK`d?5oy$7&gZ{K6(OWLMpR32FaCf!!4Y zM3M=)C7O_En?;w{(|Z9oK<=f|>)W?tQmx*ZNH}NL-NIoZo@Rb@LEdqDt-8pEKu04B zlCuR$fP$tAh>`jEaudnuKr$t_yQTXHK*PZuq?r0khs z9gMdPeK2viZsWf#gdfUBQ}2_+0`Q)S#ct%6#zda-O%Wf+UZPbikhBEmTmH$($*n=9 ze|>^X)d;qoj`>XjYH8Y#1oPu)u-;2+JdcNL?qa#RG;uF8 zyaa;RtmJ>YAg!=Fhn3PtIH|ktV6bHM>@dmYz{VB;@B4SAFZ;TDV>Yq??MCvr`O_Rq z6&PN+emW+GefE$k{{S9U*YLO*;8nss9VHZ#!q$5T(M`W!^sw;TsTush)KDjQdLLW>tQ%Y#H^2#gi;${Ga}7 zy(3}O4Ruk5+1%-+KJ7A0g?oc#oBkQgm1It_4zYvtB(xX$Et1(W{ip_h!lbPh`O|vU zcibi9qjyZK$1X{bQCD@6Bn)EF5(_5W_HRrubm)5Me zuzxD^;FVqVv4XD`+oE>PCrW1@#=?KY{~jBsDfcs(<}$yO`(uq0#dF)_cP1TV=uBp{ zo+}dT3ii26W z*L^n)8`h-t-(wFz)LIyXUT(bSAJdy_(|$X`7?GbmF6}2ZvpIC$eqDI+IMQW}Dhz!r zMH5ApfsEJ=cWo+*P*i-UGq*;w&FDN3PqYJ_veMtMx4U^m=Bz-gA^d(wn+b{wtwAHl zep_(jTDZ{9ET~-G!-kgEWi?K7+N)VD@ykbf%w6oV^K^)X8fI2ILV(=E1;VIPtE*__ zO2N%NyV%*bwdpq})g#_#HjxJTn@LEvH36C}y4^B#g zrksARdGD0dB1JieCq#+aT{@KMif<@A-;nc47c`Mv?Jvw0w~Gd{-uE*1WIMuG-TV zO5U@XH+G~f5_{V0_b{xf$^FbXi7zzYQtnCVqHSJUIgoQ8LvM*`Q0GaCvpng#4`YOA z>FZ92l5Ev-0|Q?g@PC@J(`%IaV@w)HAy8jaGfi$pvB?VXRBMN?AV{3{Pk6MtjKSr} zo3Ijb!XsnL(QTjpeRnIUJ9Hby#NUppJjbM?#!udaA&`Bg4*i{8ogqXr!6rL>^go{) zJYJ2cI$Q0dyIP?jJ>`Un27u167q=?@I2ru1{e)?-_SH8#pN!&U`C_$SF8_AGb7coKqr$ zY+}G#tsCTVXUUQLG`1S%Di1t>bKz(CDgCG2h3Vz(LzFQ6jW%TgW?G3>Ro}H-G{Yib?q0%Y*df_EN zr!%vPPg(VY{|E_vT-&&wOL+b)_4nC#%@ci^a%nhF&4DlTovxNv6xH~h@YJ_5mCJ*5 zDKNfAA^hLpf6Cwc5@=>)z(EAHV!bKL8IrUl`zys@I?5pX74%Aqe?Oqx4hT?C=H^t5`#|T+{kf z&wTjzSlTYRu-3T4_-F*txIS^e!LH%zV;XPv`NdB0GH%-Tdzju@{VqUucK$yfP9bU) zrg(PL!CELfu0Tcju*M?THWnstZCdm9SX)gdV#&|nss*9ao8-dJ3-&u{HANNI1NrZ@1!39(e` zlN9fv-|WJ}LiEyNB;|iR?hWoeqNmZ!>+AOA9kl~Tg3$?9dJRB&9TO$r26uwBExi3j z<~<*;+>6cKY+AfV(Eru?_t-As?e9z7*q?9hk9TU)d`Y~5f$>GEwRi?DzA1~9_eBz7_aoX-4Fw#J1IyCpt{ZwYpcrqNV&bUJR0i7 z-Cfy@+B$}2?Ma%e&`s9+!DdSC>zI?7E8Do|g~8~hiKc3sEt7>CeV6CU@ze8M znrqz~FKcQs?-bB}+n||=TS;*iykIV;9s_fbf=I4TFzig+hC8>gwX6GA7?h6bj5qH- zp7EUix@NuE&^(QBOeTE_(>;Cbu^!d0Rs3~x-@^sGAGa(Hg6*F@uYyX!XNmxW=|AYh zb#EVJ!3<_~&%;cI&u6rs5+;d^me}ib%D!(pkd&~onu~N+QA>}h0HrsuS`9-C^L#-n zOZI2Ne`#^Ez64%46LTT#TVPoBt%|DaW-dYrkao2i6r#e}h0ah&m?MxhQbWeyYSg~1 zJzu&UAbhEc;XPTDSAS2lK6P`ycmrQ5B^6tR#zM6gYJd7Nrm^HTqF^feJSNr~sXN*0 z{iS9%_Ezt;O6s4FRed25y>_RU-vr}~zkL7dWw7Bq#TdQ$TN1||R6X8M(%RfHmZs`1 z`Rv1e3#yE;)s;VH52I?O)`q>?I&oF{1zCRaY%x)rAtu%yPxiND#ig7y^|^iDqOk5h zxp1fl8pIG0>VcADFsISsOE^0rn+$95 z*VG8(Z-bCqdl_4px4oB~1&H<8#HA!ueGO)>nL{v6HNgc63E1;D$evd{h!#Wsd6ldU z5DZb7%R?_DKkTn{seb=6K*a(sN&2oNh@&l4Tzfondi524ac0A-C4Te8xr)+nZ&feW z!ePdvHfb<@zR*8s)TD5z0w%ncRXgZPXyhJc4GiwIm(06*!eHJXT!+Yomuj@ttR$ac z+AiEUi0XOTg$ZJb10|oOUxJ!Qq!F1WUI0HrL15)dce``;RkLytI?~oiOQlus%yY`8 zU!^7zUM?1TE<&3tK*#LtA3X51$g1}|$FJ;5SlEdFEh2)u5hU`k6P2kxk{lu4XIwNg z3+E3e@oofZ@N_IrWWVLSeT73$)BAUJXf5s9UNp>SYLej-&;MynRn{$JmDBg7vN|y4 zLOXt=>{BdPzp`i~-_;~PS8s*vT}u5Lp0A`9kF)KdsY8)Ae~;P9 zN9I`BuU+FE0Ea=W#GO0UqZds69$SC=_gH^bpUI~OmuWvRVyk~lLY_G6&$6gTvsa3H zI!qL!+0^b>`5gJ|2C2)80mPrH2sMH!_SL`z$#o7FOX% zISc}|XOBnSHNs1rbi~pwJ4^D)K1I350si-HUMy7&44Wo1Y?M$1{uxAVc?WqA-nNn# z7XQ_>X~ajT7^@s9a4d2sHq(9Ch1b2)AO*-obq9BZ7xW8Ikev>qKoz^aO4^J|Rv8Vi z%PN>$gPEZJzVfPUh5@6VmKyktv>}4SqpRbAVE= zP;s8KOD-MKj%9V~E&tG)Es#e3Puf3CUD<}$x;jmoq5&rE8<@h^pEpxFPVxud_VeTB zB9~r`Y=;L9k7YO&F4*gzt}q>~Soo=0JF#52I@veKK<;a-UX=>($TfBFnB=2fjM7>i|7`&Au4~Y^>h@UP;)bMv);DJ$o5iK%F_U}r%A0bCWGj=sWw9b{duy+5Cn8su@cxCwO zO37LzrvXrkfP>X10xI}5p3Q}mM7zv(nxb@F|<@ibd%&CrMOCbdp+2SiPp zMuxo?EEqaK!(CU7Zqxe>njGd_Qz1DY>{nNy4 z*Vu38;2Ujb=GEDwlYX)R@g^14cK>UukU>BSfft*L-fXNI<7zoxE0h2PvREOp?3x5RXy2Ola9;>#02S6YoJiAbAh(_g!7 z8yIl3qO1f*xz77W?wYnUdUf&+I~wSEpSM8+8k#N&e)eg^@E4hm?O*o^tL(BOF)^On zzd;OEgDHo9Xo=dOVdaP~x*#si35>vhm_HueY0k&nFsa8*u)~#%J2$Xe3a%=|e^~)-O3= z_6ALoiQeK&1xK%`h2yyELsO_I2}e5lnu{*xi$BY0gSsl#$7hSHU?i1=%*R7k7)=yXe)bN=D3gLH>XCZs3Ehm+Q!8dowf z^XYaQ*Vyg{+g-@bC)H@aS&%E{Bq`jirk?)B`KrQ`Z73M)&rcpBSxUB8306}!xVaA~ zTq}g8^3WJb$JK+LO^-Y08VIq>MYkua{7Fdg8jRWb3OkL+^awnj#%iL_TbxJ1Olo1u zLS17yqyYg3zae8)DI@o9n4%AZUClM}ys zoJ(fu8{Ry6wX`k|L(9wgjJ{jPJ7yA`qqV*QQeiiV8#0K}l(t@>{))LkyS}_of@JgB z4P#9hHGKtb)6pe9_Ru9_Ec0OwIJiZ8!hg-s!x@^?ke(EA$;I?}cc5K&9NHfY_MI!U zG!!}=s5WTmJg1b6ucBLgg`A#T)dj`!?$;XKgCWyEdGgH*wy2S#Wbc1p`{jOLT?2XB zs}m$mvEIzZ1i%SfgYVZR-4+^Y8zyU!qoAm@96K~TnGJutRetpO>8E=Drt)CAcBA+h zllgS7^3fD#?M?00>egejN2pr2I4C4A^Z|e{N+t9+KLxNMdERfHCIbZC|MbB_JamO% z{AqX|i53?F?uoHkbNwlS^?Ypr$?16$mrmcRCl9US)A&M8qQa+NI8_m*_GcJZ+N7%Q zx2It!P_V>gUFNK^Xs1O+I>fkJgjvcEXjKF8^3KL{N*;N!k3CZgdHC;PUT4I}D$c0I zECzqyYdHhqN8%qexW;H!aW80YSc_F_@STtk+Z+$h_|F~3p?{s8 z#};X+hK1(53M0`(LJ@X;wg`xR$V^j#X)m9$iRW>YhRb_-Nc~k!;wij@lafi+2?4?6 zkE9znKs}$Tp*jtPFz8Y5JtIT#8ula;VfwB)0&si~&{B}3h&uWrQIrBcB7#~8=yk;A=VQ%`fB9ik< zqnRG(qrBG>iD%G3LTKc#>aDL0O`CSHg{VBV7sO51OFsDR+dR_cl>}X_;NVH8?ZbAA z*>r|65;?5tb$m_>e9Z+kD=qascy=j=+s?nUo0lXvLw$LR2fZZ@+0qvP^DLRV<(<$soS;vO%@eMxiAKFEov-Nn;#cz1exy|9gwuN5Q(OJo-EV-Jh*b)f zZZbtmz0{B)z+aT+KV-{!)>*9?_6lEpt8}*AXAk)E^CP=L-E?FyltVRrPPicc=)OMD zJqx1n7C6fUz3hcWX&Y+!PxTL^JToX|1I65G%3hJV78R}`*c^2jeza5?QjXG;cW*V~ zL!P8IEJY)AdXtb&t<>9wx|NfPzum*G=7sd0E}?S8XAW{>IFf{&QfnEwt8K&@c-3C2 zh09SWJRQ{-6Dr;_kO*sD_eMpnIdF`*-&H_pa^jRJ!OLahGQgi>0$j8wf{K327RUk} zH*!i^Rn+f$j{MWazmz|(Sl$TV^Ewu$) z>m!u?TVT7YYKoc|^zy51`11gbzC&9G<MK`K%Bcb3N23;-pl=h#@a8%XIRYTquO${{< z83v{3n}*aF7^mPRT4n<)4wjaN`tKOV-5x%d()KTbH?j)|l=|{0;6u`bPLe7Xw)2Jg zs7zK}8e7xoc3++^M}Tw>@dSflfNjLrkm&QNWzIvhwyLU(9R;dS6w1sMQKw#H<}Quu zl%N=!26FQE{Cr!*UcL7D61yD0Kd2=)XNo0KxPl|M3(O)LPIq}_O~0vKSY!q~;tds>pFpqv zf|@TBnvN4*@aW5Uj)HnwP|PXI9|14gzEgN1v5`_>eoC-y$34&jBbUGmidu1EmR$0%fKm71GMy#{wWX`gjBzMAm{C{4qtByn z@_f5HJnPnDBUK7szL07OdKvG;N7(*>&wO1{Iqk3Q^V;WEhJPzp`0XNq7*h77*le_! zSFYFOs(hTMBSKi#4}-cZrg4X9&WkPdcb@;q>56|CRshi?gfEInJ3@=o7Jh00x)v3f z$4&b>{QSobWS9Kid`*94d#%4Xzg|D$MeGMSqE$v_m4TaS_*|+MbmlzAzZnhfeXh;K zMe)*R>$}mYdP&?^bH{NNu5pfqmQ?JMGK*t zc(3dSeoiJn_kmMY?x@`IrJo9&Ok1GquX1$1m5i$5$j#RmxcL5-fPXAhrtN}ru!pbB zzRoy+Vz#ibL{jDx(A5!^q1*2Q)iNOF$}+=vdGaUdlS{z|=#5RDR(^}CB>zI`64$(L zsC(#xV+e$0Xu6etwF@TZd9{3_mjK{J2vuR?DfkS*;~8<`PBCtQThKd(LFA*8fs_2a zk-kzI<}ysewIVftdN9ADD7dkb^?~_jHa(SQ0Gc}6XF&Mp%K3YM2+bN6)=0Ua9Z|2bKqoojT|CSgUzcvEMmtMcOly%`VkwB+ z|5CTnY6&UhbwH?;F)MH+$=!aYVa_rl>=FClu}&0Mw-i!g7i=$B8P>iy>6T3T&qnQk z_==GV0dUfHPj#t^KZ{A12}GD0>dt`{#9T$#Ycmq15fQ!9hKiR$vy^3C@qlUZF(pe&CFe^kZ9coM z$m}xa_pdP~-fOGv?MT3vn6W-k_W@#Vu5H=AolEK$am}hO@6$KxiA&@%t$U8Jy8+PB z#nd>-N_A+Jhb`lpzG>izz`aJfeZ_ub*UcNz3wC-^s8ZHKzhO&hVP+cCM>_Z$KZ z-g}YR(Sl<>KTGFxN|j(>`7BL|EgLo@-2rY9D^@q6+v(pP5uySTQ;29*;kO}3z5q4B zYpg8nE?^g__AJ~cv^5b#yjk2ll)>ISls)hBz%)1t zb5>)bAPZ5u{Y{@x(RIj|Gl{UO`!r^2^=(Iuuz(aHgpXb%eF$2SLaZ_?Tf4NT$7u)K zs#@i!tju#X^b{J2QVE|b>BL?RulsSrcn$c+Iy;rMv)x`39q0ymD6FS zQ1#7jd2MQ~aqhI+_embgUi(W}D1mZ%>E_UEhYkP0lBRsn(ENYURwJ2YC*Ng@k{U>q z)V7-4JEC>JISx~{HF3Raq^8g7z1~B6hZutC#S@0iB99Y6g~k6qgzDr@l8zy%X&RR#+RJJ60c14hHKn_4e> zp=p5(=f%iO&v*?)2MSQHF~!XK;_K+A)Xa{T;4{l zLViiF)?W3pUY1WRmDJayTV%%0nPJJ9C|Pcq?`WwJ8}kOpU+Ix@r#)75q(uDyxR41a zh^Jferol<8R8#E+_P-3eK%gn)l*FBO{LEyC&ORJ8LTcAZnQO?fAK0kapD80+W((@2 z?AoTG?TnEyo2jYjOM@qcHu{@!U-U3H`#k_vTOi{Q|2Mq6R|C{TWk=&#&+#V>(JB^o zHnc&&J$5nS4k*EEjYiK2@gQe1Z=^SNBO$F|1jRtCl8fK%8Yf~N-1uCqQOm5m znet}~j)fMqwrD;}k$%C>G6kQze`N&!qE+=B$Dk)Bid)jbYyXJpEdy&gF+e8=k!xr$ zIEw7_i{Mm874&wo6=K#-MMbxqeWhzU{=(A+zXFxan|OTU6`qyI)iln%mm##C6V!RlMF&2t}09b zfa5+-J-DMSWpP!XVPe%l;85G75T&b6*-;-xb#|u`U1%mvU1-@RXw4DV7`cl5C9hmE zaZ`#l+=|Ffzp9p_s?p|cnq}&=>^lZxN)?{T9UJx`WT!O?lAWW0yWIMBTG|W-F%waU zJYkIP)*(J-`QgXLk<%qcV^RBnGK;kRWbH47*|RZzF&E6=WpiJRuvi9qmOE2@q8MmooqHaj2|ujdKgQg4+;j&IbBl5vmyRZ$HOW-Jhom3=*8B+(T3w-$$inb zs0G}gL8r9gT#w~X&9vwMP1bW0Ipnt4G8bQo<-HAbuC0eWSfU$xz_yVsS`Vd?m0YRT z%GYWaZ#!Hd2{lADRC|9!;il7!pFSygU^Yaw>eCKf$DK8G0Le>W6C7-mrJ4f+XCAv< zQje?8^uC{=^t2LHc_!9Edv}S)&H38a&o=bHqsGS^U)=YeR=&ZT_T`v|Qv~E!__eA%;AJl0t*tcV^FfXdtt$yt9<5|zeAxJvFQHtD*GN;K88h%L)|%j;F8Z*@F@Mix28-eJ z(wBQrUM%?hfNA`f}B*jY|1q-bW);V$^2rA8D!C&O-~sdH5M^pQ6{{9NL*E zN_Z;_|I@vN&)N1S>MTuQE7d#_<5jTXTdGbC0jm483?`KM4%-qW^GngXnN3Vx?lL8N^5MQhV8yjc z@-%E%lcsuK-nhca70wK)?2+qVqJQ8EYIkhP(0gq?TF{Vy(^N3y`ckkT zFT;V}m(M%%aA()=#fo~a1!%3bp%%GwRL$%+G0G5v!V6BAAVtG52Xd`@<~paqbPJwPP0%;PD`ZN(EP&^D??bz{}$WQ!2F9}^T4|g3fSMabk6xK9o(d?hWbM|Wx6_!7hG@Nu)uowFFV*WI*BKM6A4@=k2 zj);vOzWu=RVdy%Ji(3t^EpnREe*`Z`OC^6;?;E2|jFi}Fw~u%qH)CI^;D;WVOBN0j zll7!E-0GL2fl0t1J{ZY6gSf4qq-y3e9&kb@*WT>q%wP}@q0+Fw!GmZ9c-g0g__ct0 zlr^j|rRwcYl!Rqsx#w{`|Ev}FcAYtZ{`94s%M2G9T-4&4Yq!<`SnELZz|LB;cKP&| zW^aesX~qg}jEEvfPfYnoy*j?i_;>%|tuY2}=PO^;s^-`jq_x8Cl1}HU(z1$x$fVQx zxHa}neY@4`TkZITl%eDx{H&Sr$W0P{&Ju-otwcz=8+|G+NG+P#HSvz$TjP1j>_YV) zV1H2xvARa;F-|?s1ShN4{yA#CYl49kQM2)R5^6P6Q48Gt(du=e-AN&juw+dW5JNEY z)|AWZQoc0YObxgW12=ua&7-K`D_@#D`&Ire@!tx26Gs~0O7gFZfA}n$#}%d8dR>1B zCN7U34e(qU)exS|!neTYRhf5-)kWU_kofzxt5vkj2AtX*@-?wr=FcCVAMTL+bY_aT zz2{ljAgsT~?p1B)T={#figq-@TUR})d5!*iY~$~-Z7cso*qOb$UDi?Z-(v;S|J!UG ztxW%*xL-{i;{EyJ>k5mv`vGT`CJv0B8XEsSW~h0fbs(ColJI}e`ze`ih3acT-R=~d z?;5ov6GUumK_o@XT6y}d$IX-|C3N2L%ay<*+r<;lH5In4%O1s51?9{DxN;RkWj+2; zA9zso#235r(Jtz8$pzUC--!TpYBB@SX00T+p4|JEGbFEduVl+?P`dh06F$ zXJv?{%*a^Xs50l9Q0f?r5}H0%(ZSKjj7<-53+}C63^H^|`Yq(Pso|kpa+aDakIbC7 z{dGHAh7t^5e#pOq%qMx^g2}IsZOdAla=sjVKgg$&hTX~uTjGo1O;G$c3z+VS>Nkgy z4y{ZIEPyfK>DU7Ft%X*u33nVOeZ*+pV-6nLw0b5RZj>L-Z~7f95xAk|B*3Ni+oUuC zm=7MO!Xb<9fS)N%KflQ0&xx8{Hj6aFJ{$)=H_RbmvhqyE?in1I&#3#nO7^gn&CA=^Fs?=wz;;No)7#w^b#+jR2eLnUbBYx#%Q-7$Y z3=+UVZHMfi7I073^0prf-$kK;s^(7Z!J^rhjgx;?P+; z{SU51*Pfotj-Oj{`j#v4AUu2Klga67{wbhZXg~#!>o(mNni=2`c1XwIzYbWOwSl;i z(${Eby7LGp-pz}#2C4Z7T$s4AWu6bI3YL=>gYL@NbdwjQ(@Y@aX>F%@%RY)NC#KfF z`Q;lDGN;^pNo_nt38M#DZU4#zYD(AfGQpbn;HDW)-&i-_MhIM52r3+FL6%ksVP}X< zn5OFCeIVy~WKDC--F5#tR9c<>#hw*1pWIeyf%q|0qAGzj;Vs@52^XQYkwP_{Lj!wZ zH^~f}&y?ZJcfrW>r7B85eaGaFFD>TlIRW)->1U-)O`_krm1txdPr2P|2f^dG=c^L? zeuwrTPi|0@t7yqNTjQBNq2}jQ5sC+X%9qzwEfoll>-0LkPX+1)&QhNK1+?j%u9Oc{ zk}UI3k(DDOn#7pSdH|Q^ZhMSQo2=nnjjs*7?%Ns8&y;Pws>L8@|Ie;N%Eko6YaQSq zx5!hyZic5dqVBcT>X30^C1Ommj&c2mv{Cn?MHw&bULeD)Hc*c8F;zx}V)?At)O<%4 z;=Etj49+2Sr^e;#+^^i|>^poY2_y^$EdI@P8v8CPgSB%Io`0YgXW{GJP;NylU8HY< z*$iPa@>fUTr-COQ=D{(T=cQwp14XL;dV0PK^87XuAks`y`5!RHt;YtHFfJ3I__7P; zJ1NiGYm+XeKOr~!XN?sY!(&}!Q>sL&W*+nehxe@Zrnj`|%UP1cOoGRMF6_M(+)pz9 z&cCBo$?O6MJP8qJ73=el28f=5(M`7A@HwhC>G!zwUZKsKz0vZTjLa_=b4$XLAB%~k z+AbW)3p-%GqwqGNlXpEdKGBwkk7cxWd-LCsLY4pvxYe==eWTPfgr$_QpvA(C#AGk% z|0<>fAm{l%Cv>&z!TH*jZwoUpn8UQzYZ;)B2X7?rn>Cn!udMO-o@A_+3s_s=&n^O) zo9pxoZl0p4oWz_^>qe}~2;-viK2U;MvQ;uJqymbssexY*u~&@^|F3FN={;L1sI7q4 za_FB&b?*|UTmm=2x9_2g{<`XEg;B0b2cKf<-TPo>oUYvfW_(D)*6{TN^=$>aboI-> z|2&qi6G0YRHf@P(iA@nwO|QA1@~vmRX8dPv{IBpVr)irGC^tOTS?#-*#uJLIcY#Bx z1&t887?I#B&QPktW!;O2fESz;!_N7eCYw?d0P2kPq6;4>=s0?N#% zy)#|2adK~n-YXpd+kZW;C^ProfnTz$*tQ!bzju3YRxKOiE}8edVyGb)V50PKBFF%k z-Wi~C@um{wZNKr3|MGN4E_cW$b^oq*AY`H%0fYOW6D5O3x!hJ^bVRlYuPNP|v?fvP zKhjq3OZZFldl&wT%3%+i@U_>kr+FCTbP0gZp0bY3FXvOPQA@M8PDFH!<7t|dklX+|G`!N!oL%7x;# zOnFT1bw-Lf`f8506W!+Fn7uS9*WBnwsZ)A6(adabBywQraHh9&P0AUVRi_OS5on z2H$7&f~K_VuzqTrh|uPAGsQtqjYeqjyuDa=3##4VNilBC;&Hf0S}i5K;6b`5Ke6>z zO(&pLsW{v5)p^-|(%vdVYhL?Ttd5+9MFlK0k>mr1CrG#BA6PErKY7eoY?OUfrL6AF z1L2emIeDx215+CtIOtnY-Hpq*XP8@{Ad8DT)nD6ECj^Kk=bI;on2f^WTV~A^v46a> z8r`0cEuSQ>re1?f1l`_SDG1B=^`4}ft^HfmfPw%J;hJ}xmA19OiJNah<_`8Z>tgx) z*b`;VEjooMSxfaAQ~B=zi%|*b4JhYQo5*%#L!$mE`co{1&L|!Gb3$C0YPVN189^9^ zlVYZF{+!t6l(p8RYb@)3+#PF&Odd*mQAOfxydEM#p{hSvBUJ5W4QH7NGvjPVF}`A) z#^X2tyW1{wv$GI4D#VXki>gr+#ox8Wei}xxta5Mt{W#etBiE%i++N*{eIwPgdN)%i zs(lbN4$N!3!q*{@G<(N?-`X{+Q>y=4Fw6I{tAYKLfga3c4%$n^0~^RcCs3lH5`l85?jN-KL5wTng5@wM z;VY1`so31C&}sh_eXEi&JA9meF&}@rLO2ejsGE<7yg;U1OVzt>$?)^? z&MzwA&l`#hkJgEjFXgn+aql|G=DzOJKt+rF%MM-h)EZ^(g-blqjS7+VN%oYu`zuAR z8jpMP0O1;#h%a^8TgCr)-%!)ewJjOO3;+iU2smLZ@SELxfSYJMLs5AxBPb9^ZO_$Metg?N+JdMxQB3(4c%*&Ur z^-~93dDGYLkF3ht-#Iqfytyvp9o-d^1k=4UJNfbQs~y*_ntSFSGQhTNNHE~UyZU@$ zYy!;qXX@@VA<0R~<29{s%ZH!g#urC4alc)ixIs1@Dsm2uC(jAIN>NX^P@O-mcjt1= z*LxXyP8>dioS3RR zss}GmDvDaSHjdbDwlc536DTd8wmKwWhtzokwB0=_Jv|9MDD*i$EBn#P5_#P#%{lJj z);gY^`^AfFYs>y!0v29`Peg%fBlB#tsG;`@o48RE>%m3floHjCGwWIeS29Q?5@|rr zhh0h*X;PuF+1kB#jZ2fK!erQI&c}~Di+XXEP2y$eU;=6krkV@fTH|*E4P5Va%i@-k zUhJ(fo5Of=d?;wn)6=IOIW?H`@!4q_BGa0EQp8&L^i6bvb2?l)V^A{7h^xu>bKoX5 ziEOv_a9|dbTV8a@h6n}&eJtu`4-|~yGC@M_Vyp2M*9`32-j({rx-?$1={%4Mx;{an zHR|PCtpp{pYQgz_Of#~hI@FyZs1pE_kQ>6&?SrA6Jk2nEJr z*=G8m6XzJwM?T8R<-306MO-W6k^t+e8V{0`)g0C8&@)^&2^;|<5mBvEf!2$J!M`Gt z*#n9T^$RMr0N_5Z=Jwd{_4^a|^+WDAo&Sx2c!X(=^muorLEcZ)X)?l7+3_=!57@9w zzDN_k#WA5=!|NG*nO3}-DUU_UtL0U3LpZr-*5FXhrbX~!+9aP3c&sk2*epG<_A}D- zrP-_AG+Q56HOe}(vtQ$KgZCR%ajo&6sZTHG-?-YK^6#^*m1e;z8c~e9C*Y(ok5GIQ z)}oeX@mq@IS4s`i2wyO$=+!Of+H9%B@};X*y}Qk){pxMb*6@B#-4MMhUw%izu~*)L zOZF;-x=$Z4SulNp4<9V1D!~gmmyAdP)VJ3Z3TTWfenxYC_7aPZK;OvHE}+wF@#$j9 zqgx_N4~&d*B5CM_k)Qe_Uf?_p9GLWA9#@UVDbeAsrBAn@IO(Brm63AWku_TIB^tZ* zc=PzVvl?Qv26M`)dzF*dso?_a?L9z=WOQJyj_bPFvZk_3GI1iGbvc*& zup#78n9Re6tv5?=kA8{nw(`6G!v3$PWxt+B_uIfP9%fGf{*1+e7CXh=g7O2fG7#?mWwpuKgiW_8K%-;iFt)qq zzm*_8XV`&6T37L_ty+9ep5t&SD$uJcJK=u|I94gZ605q(f?l?yyVi+XPL-Rn2?wV1 zi3!8mat&J9%v`aXFR=BeUbAm{9hraP0813lj_ zh6$+z-58sbd6=~g>v~pr&55Cs_A zPK=j^6=7=2g1QuerhVl)k~6JWS%RiX+qgV;9^5@J7v{=l1vO z?Z_6pgz2hAR$SnIq5&4Q{Tc=%eOfGZWh6om^{f_I%ibmK&GYPz4>m3NC87beE-Jm_ z1I9PM(2;3wHazOF+0We*+h0sS;I^gtM#M{K%A>;LM1LXH3luNm&0KvO^x@2Za?xWQ z-O=F=EoLn@?r`xgN#9Q+yu~Mze9tJ{sH`Et^21cOL$uy~Gs^#d6euvIb32{{9X>E= zfa=$n zB0NNgW~wr^f3WE4FzvCgU_763QYEkFpjwFXkHc%`1EJ@ej>xi)S=?QiWUp>g_F8C! zyiFb-&cT+t!1m2lFNDsM{GoF!Dm`#ZYWt2o#6tw69vz-NUP(zI=ZLXwItLQ`?=V>O zAk_}VlW~2YEkLvyU!!%w=RM-NzbJ`gT>P;3*}Qz;8{EEM-CcRi+EW^7Y)zy9QOm6t zKGVI39o~Ua{yVST{_nhYCDUS6qiN@e__r7GDABI9NfvJ~)cfc-t(Vm4*;04y6xJZB zdpzCHxZ=+VGpN3}-CB3cX?<%v(jXe&3uYlmHJSStun=!=BiWM>;~gvIdk+R;^u8Eg zunEWhZDJDKpz|6;JJ>dR{*qXWP}>p_lgj>n2@dIbk|vYNnciLfm7Wh2Jq~AoPbA;q z8{@iV?Agk-y%3*FjE|=BbUoFvbP=1?BW419Kesb0ND`t_`UObRvO~YgR)VI-z)^=q z1w#@zQjQS5^;@Ev z+oinXk5m&A5iC{D6jpPxau7%w%6qo4oqObU zQXKL|ugEDeDM9Wdj3Idx?3L?pbFzuYm5#=*$-!#t89iAo#<+E- z-pNA2jNNZ5an2Wrk>=a#8{RuAx%rN2@xM|Pd~!P;0EoAL+L&MKtl5*ly}$o$G`A;j z4}y#lU2g~-stg6uMd=7_y1bn>Z)@zQ8toi*XVSZmn`NHv@^MvZszdRBe*Httu8(g_BVtULms8|@I_@ooU z0E@X%aBK@dJTA=ZTk@Jit3|XtmfI0FW?XNLoj=MIRkvk~t}j`3FI0b>%^^%0F=G-@ zHrJyaV_r1TrLULYB&fTvQXB+yyem^5Dza`zd@SrbD z`rlNk3eKMsA45eqs=goC`hS;SCNC056^Ov2h0BCbz?5ae_DRVgP+)T>m~<_EZOO88 zD_x@(DLUM;y*;#NQSSuVw8i(n`rlZd5#&}L#gb)Ibh6e~{nW?jjhIEH6tD|KQ;RCN*HR{+U#Ch_VMW;pOLZCa=pkM2}rPt5;l$EWgf_ zo1E1?6!9DcZ&1DcA9VF~{^R|?!%1l9OIAa1f*8}Uin~H8ga9SzwLU4zV@0ld{Qgrw z*q7P9@}##Y+%o$8nrgOI=ZCkfVwrS5CXT7=d2ELhL>uUnd#qbym&>cblg1xFH;d0;?bQWWV4(>Q8(*UxFY0;S-O#?b`Pq0r=- zMf}s@W5eNUu50aayXUd7XQT~otz+#v>|5TR$wsBFg(px}=}Ewvvy@7ngEAEEC!{?% z6cN!-rOl=trfGoESDf}-Ltp5d7@h5+$!kSv#AtMPU>>>Ppi0Etwlo!4zTV$Tt?OaX z`p)RTgG?=52YZ5pJZ#T%z8!3;PX*nWLDZT}#{cvUCf3Hf&-UgTN~LQSmNZJ*iFN3N zHH((Sc(Ri~Vr{{Vll^^M-)@7$?)1F?CHt%n&UEHhronJGaPEa>?lA2P%GiX{w2vwq z2vx@b3cx>HkcE?G^9y?UH(7&4tX&@oLSB)@@zSNE=~ju-#-q=n$!Vc+$1MAG1yA7K zMOYl?K);o!RVXA$%SYc+aCds*@YTD6_5Fj&zD3Qp^d0?AeS8$0>O5lYf7|LP z^V@V`>5DyCR|7To_GVzI4k{~28q@hDhgcwJ?c7+&8LQY6rX7=RQEhqPvYp4agfCD7 zEvNy6zV3OLK6;*}vppP^&-RY|f3AMHZ=8dPmuqimF%`VqWq8`sIA_ni_Q6}W#|k>< z4|4ujsaMk%?d(jHT8D(6@2`#cIst3Y$Za{R=aP5oVjmYMGrkzn0MuvOzl<6e7FO~C zbUEl%^5&tVIs?;PjE_qc!HA%*kOy*aY7y8+)8D>nh{<5ASS2n;l;*3=0_)kwRGaywnutl{=T;$wGC9|bmen3GGx$@A>bc7}jo6)gLLMA#6U2{DO6I*dS%qH%Ak5>g)h2Aw{4L-x~ zUv_2mP>M=hMjU2*I@GRf5}haX{BJ-StBEY%u!ZnwPIpk>jO$QB)-t5GUyFPSt(2_z z^?++ZN0+ z8}tOm0C2u(;gahYB2s>q&%c^Zwcj{L!oZ*a$K!fwN_Dpten_(=d#JyqUrWJzHD0+k z_g>h2c|+%=!Gof&tJ>@X!Jn^7{D2OM{9iqfSM4*0vu|cL2!XU}jK96@5eHf~*G*(^ zW;uC)HQtlq;OZ=h7r)Im+E(dAOtIp>^_U$x@eVnHuoBK`3fQPSH~a838! zEz(Sp>Q4RvT+@t6sYap=vJ>UZz9{d39mE-L)A{^kt#1vDjqj*H(yRY&@K{mIUbUYs z1}mfVlMjKUw}F}4n+G-Dg6{S8-*4#a325+1%#v{Tb7+lb?!_gB#%|u_$jktyA?Ci8 zdYZJ1HJ(*=wV0VVc?Nbt+}CcF)_%5IOSzSDaqo>ncMnC7esuh7#Uk|3E|Q|_ zw-BM0-{t?n71CL;Ov#^c8n_mO%+;4<%5jRFc5SR24By&B@AhslrL5*&7uzFq0IQsi zTXXxNZ@>G`v~9NlnGg9+wHIfD#-$9E&8Vm~P`c@BbMd$SHXUXP&372o0-x8i-gxF; z@vhxtLEVCYzb&h&N$ZU~S`@s`kLKtulscgp^Mei|U4Lh##t$m&GhSiOo=&@lMar^p zN9XUAVAUjWtxAJtbW}P@B?VX0NmK!kM`?T_v<@m-gj;6;RqT)U73+^Qz?|k;qUX#M z*Z(@W#Yb7jA>l(j)j?e3dr6IN#xai2(nEbf+dTD1C@xi<)p*uvw#9xwXEF(!+v2n= zpL!wsl=l0mo6kZt_b`1?LXAo|E5BFEr_V^rd2GDAovrD*%6I(7+sc(FlF1H?wP{}NmR8ZU;mz+4 z^%!q=3l%Nw4xZ^Pf)~7W{oOPzemd+I6ZTW;;l;LA&_uipA5gA7nP|tWNo)vq!C8lS zyr=);{DJGNa}7Jw&<DN7U9Z-Ov zV6|-1p-3Oi%md!o%>P$=p^=U5UFs+jb07C{Rzj2xoJ#Wi%hSNrYXgh|>`f_@$oWbM zw-5GKrhv;O%UyMdg4Whqx3ce*zl#>VHV_Uked4=k7Q`QMQToC{)2JQXx}-npyHcV> ziCb&iS57zcanfnM8(M+haTpbO?+Lj#%C&(Y?Tphp5K1{_g%&2XBTf-=>+cxI_$(7# z9VU(iWe0s&b~QO!sPm)4v+a~TpUAT&_>_2Vn{1#ract2&`EMBli0S=!{nfwO;cr)i zY~V=`C(_W`n#!r%-%4l2LsP-W@q>z9@C1SZoW z6@~q_6{r~M*=XkE<#=WtYtwqr(Eo*mR~1^LTk%Mht;`~jie|5DjjMl=bOF}ep*(Ke z%l~A3o??ud6Xk!EJpPdEv3$mb65F;{og?M1y`63CZpPVIy}3O7t6YuK{ALce`n<70 zM@|la?Z1rbNqL@-=acKinE^UU;c~H0JPj@TJ@jA+IbZ#41XQD0KwY%BIg(dwtl?hj z8GF~gt7f%z@tN_EjT-OdwFO1=mEUS$=K>2Q+`zyHb=4r-v{f|!t0E@^0E}a^5i0yUd;=EX=4MPkj)2w)-T!l?CY5TJ$B%5YL%Ixn~?|i`+v2} z+UeAWta<`+>oP8#oj3BU&nA2m1SlAmDS~O)&J1%w_SD3s^!_l>k{38&V`^$If?S5J zaCFZSQ|>*wpm{AsK3yJm9AoG3lbf&3N=?njw&S2u>l_wD}xdjR%NlilRdlCJd z=Ld<{*E_5O>7Fu=!V-ejT0yr-UFQthd|fnCIdK%fyl=sKq`Y>{y2pDsLfQ45gEnXJ z`;ks)>w)=}*KsNgzC;5Y-u2qAZ5N>+YuQ^Q8(S*;ILd=Hlor+1plkm(*b(gsY?ld# zy}F)+n!{^^5-I*_)FaO{Ps^#Ii^1<3An&<9qFZ(P4k5Q9kGljjkx zu+F|&H$66chB#i)Ad?XO!ghV2s^P|X$Gb`IyoCRbXuUGOg{`<(6I1|W^nCl+n?R(+ z$^7N~A*?~R<;Vij+cM0!y*;-syVh7o1@9(En_#34W0x+*Y_MWYeNEOFMoYQqT&U4ZCgc+m`s@Gk~ z$WOz#7Z;{^NVsNp6?JG|!>NmTu3h4}aJLNx7xHea`6-CWoT2g!)^mg4f*myu%R#|y?5u|ArTH&j zso?&YKGRYbGWF)OH?wM4QsYXg-30qbt{Sm^|?2WKyo;P%HE5phQt*p1_)?tX2ND^Re5mK~@h_Za9I0E=+T4 zNJL40-+Zy4@8DOW24Mc!IF@nsHq7rRC)xJT36K2pbqT;_+1itw(`}%q4IHtQB5lo% zx5=cHT7yNvdu)>rwW?@c#CRQtTHrR2i^oEXtmCI68vEv34*{=Ve)Ta6MmQ=B1(ZN^ zeu*mUZ(6xB;_UlO6so(|&<2hFF$_gxtweL8N%Ag+(p@QdD~N@az>L4?vTATTZQHFi zD>^*zY7FFg!y8R1r(5JXgP8jF?)A{L`^DLpJF}J1pMqIKM6|TOw-TIZQ=b5;ikz zTyYfLactpYY%zxk>#?(VxLha>P-!Czv~g~Y?8Uh}iDcZ}2g7ue($ecojOycLL)ww9 z+2PC(twcGpd!xqodCa}snj~bc2>IKH9w<&bQTBg>#e+5aAgr5ce-Y= zZaBqSiujgV!|Uil+qur5Omh8#%)Q~33Ki9qq`sbcgO5S)QXVcQF_Ex=dW ztm!t;L#iH?sb=eMKi*(aOyw0Ryfa~hQ4YS3&YN57f^=GWucTOQ3$u%@-Qn`fIVNYU zx^fxirlpD6eNyOb)BJy|PJu)m)shHxU*>+0i*t(GjxxGZrRZO2&aASQ&z_Vri&BW~ z;m^HS^?R5NipY3DlpOOh9b}fOOF8ys;jhFwx1$yb*TIa{QO(eS5L?4h1VdWU0pa zp0-*Q*WH=QPMeH-B{sF1K~5|)sZE)r?t9a8%^Y{+g_VK9_?Ad>O==a8L-~-nCt4H~ zqz_J6k7NHiq4+lMB49d&%Q^_t6<-5>Vy8f!As1uY6TUKmdLwS8AC}>_7&%920#z2kAh~vcGye9qv1Ce5zS3 zI&ke@!i}pN%rm!crAo@elQ{rVYUA$+!b7>rY|(Y)2K61-5b#EoV{=-1knS+8&7>z& zDV}xtOIjzzXPh{{Tm+&;A3#zXQTkRZ3vQ=PUuJeCg$u@o2s_RE2>aLmFVxtKF-LSG zyiqkVz@)5v=W5pLJNZS|1CcT6vg7~%B2Z=SGew21cxCCj31&#!a|s7=aKV@uPl>rE z2B0+=Jl2pm0PS5J{l1xoHyx)GmP6WR;I<~%wtU~=$wU4O9k6Eq->I^fi+xq;A<9qr zeaJb2J>HgB7@zc$}RXh2>x8r0dYTwhmM9_~6UK5i#~PW8rrl;3IkWn3xeWznVUWRPP_AK1Av zdLZ3r0#`Oj$BL&Yl?8f|QhBH%yaF?oAyB^V*!uMF^uzRHr`D8eReFg?Esb5Q0oA;o zcAT;U3h)rEb($~k(i27{&-N)PT2!W-FIXh>sXod;84sLMR?V)T!+Ha%v`jjQ*NY5ka-d9)O026c&-zjKsk zY@6R6TrcbW@EzYtnX?qVfhJpy=#avK`?2k+1bg0?9u*d|K&p}G%1UuJNI$+^Y~9Hs z1{T)Y*jO9n#rqh@Ta>6)e=!}}uqVCBL>YXgb5m4~6cz_;KGvG)L7(mJC%va&!aoB-rMI7 zp}d3M=QMK`K7mT%vaX1ljXS#oe@^hqR?8FOF%+w!WB!&eI`+DG2)&CV`oy=%HQkB` zO%Lgx0>4FGg9B-QM`6mlU1^7U)%)1JPb!DV&qC$`06p>4_3Q55(@xg^niOm3F~MQGpWgTRtX!_Ci9Dbm%xeX56n8 zFNIzce8UAq-~#q;)9&Ta`(L%Kx9AqU+M(U=(4q*O<8Yfpr`8le&nk!G035Ce2-GkPaOZO z@@2Weizg=-Svd0jYx8w!g&Q}B zlE%&-cu*+&Zip*KBq{ym3*B%8++qjJpwcu^&4Cig_LH^E_IlzerI7H%gs_p)rv#n= z&pI7CJzP58Jl!3{-n_52-H=b%(#o%v(rcr7&0 zykT@)zyhb$c6RmYt?DJhiidtWC^;qdc76rR@thq4m2+p3kAyTX!uy++_HDSShFqQ{ zhlIe|&A*wx?4rEBdLyW})@jVuFT?qXHsg9dzwF83FkG%I9lfUaukzyZX@0_TjZZK! z|LL^N;>ry1aXO+ly)auUOH{k2&XoiC2C=0U{3|}I0;?u6r6J3%sync5^{PF7FV~RO zAf1nrZl|;ceClE#r78-II@W;J|AV+I#@P{!BBPv3MEZ?9T6tL0^O(BfE6beP$Hmv= zaU-wpdsNsFV4zb{2@oCS3G>adk0(c#7EfCl%EiEgr_t^ba8_)jG{tst152*qyE?ycl%;Pp<_f3YYA#F+2HZ0m?ju!wU2_qrO&`Ek54;4lKk!boQwdK zKmy=QqD0-<=QDJEhw}}0&%Evuyhi|ua7?434#`Fu6#KuBg$_rbEh|rQ`Z`Nq*!}+P z0gsYuQ2K7#kZMPUDb@x*e zv$VPZ4Uzb*V-3dWO&1jiow*^!Ih%?!EHRW89$N?kpbGB7$~Gon382T}X=xlD(lw$~ z@-yeO+S`ZEhD>wkt;~SZ`I5qrH2@>dzvB%b+lC|%CzMJvbQ=`7UxkOKO4+Iw>WLzo zFog6osw0@zeNgBTNgH7A?hB}2YEG^~>jNX&PTtDZ(yNty8Ku->UbDtLEn4H9cS`4Wk(|d+tS{J@ z5!?+KudMRPmDRDAU;??tq(}{N-D$KWXSNw z!7sLry{SF@Hfh*~oIWn^?XOu#P3mzm_lF#EQiENyes{(zEn<}3b8gOGxLZ{!zOu}I z9y`ciR#7SObk}Xn2L3&j9SXxaCKZ+JIf?^51M++|b^#~iC4V@1C40}fH1T%MtBy|! zC?Y6Qh?enr?+xcL;*KON3mdX0^OVC2-KIdAYxU3B~_8VZNFC$%GaG zbh$lZOCL?sM(++f1j=oWdkI>yh4zuGa>Ik1HTsMHwQG0(q+=a!=gLUfLBT|Fb(D3! zw!v}H1`wqapZ8i^q#g|xVRE3#<=d{h&*&7WmYcg%7{%;@vX?vv#l4^KY)Dy#k4F=g z0ZNG?yDrOu6!?o2)KYA75hx`<(k!jq#IVoY5g({+jTZzx)S7_q_3<2|qEdV_kpsZ%h~viZiyhHi(aimX|*z z&}9KU&DK@ayUzZg{U|Pm@9F>ClbXO9;_zm1DqFgQ-*&e>j#q0w=BP|BDbS+2ci*PV z4+p*#KxHg0LJmd41&EgiqJtnS2MI)}$Q1JP!p!xGpZ;(-3uk2rFbRC#HfWZ58vJd0 zTY8LLcuDwvXilh$MAux5n{J@UZTGUxpjH%t=zR?Er>?K!<_4(8HEaC7} zg)>i-YbmC*%F<@@?~*RTo1fECvz7ZynP4OAa4A(d2vX9tE*M?UW51@-^*3OrUzezz zX)z9Zqc%)t%^=jy8(YUz3|>Kb*iA)Y8y*F z^}5b%0|x{bJVsWEcjeP-_=gR+0iblFfT9DwAXVnf1Bb(b zYUL&{y`d+2yz!T-YLC5w`Gf+0wg^u<@38%S#H`@AG44M$LB#|)UQn9O3sJ}$h+QEg zP^Jb4_m=}qbUhQ2!tlFgTus9nbrd&a1k((ZVa}n#Ws>K(L7fZ5G05VzfpRqK@8Wnw z-QxTYx~(q}KmdaGW@jELq`A$H5iv760hD7aAg*AwM=_a0K-eOOlimP>5YRrtd3P_p z2ku3ab=*2`8w}o+p4IPxD+@;ZN-TJNx*RZQH$SKis#}YBCpqn4fvN*?GNx}u!vUoj zBL|onm|_E;)!|CYGE|!;p1Ya79mA}_V$;HBUAN#%Kw@^-qxxKaY4NW1kI`!Au+l<( zIL~8{4PT4zb9zZ_^Iev8WJej0HSc)@RX%25wWYT(gYyM;$%Yum%}~Xo`Ar`uChG>d zm-n~`(NgHe-}M+;Yi{TBgnwLgf><0U-zD&p3aoFpYU3pmkFv7dTx9t)cE5(fSNlZ9MqY`53(7b+T0k+AnY~FV;{}LW= zP+tx&e5U*xNr*%ERhmB->9m2@HY4ehjLxe3gduhtiXZilyT^0qLHgNGV247og-8Ck z8@pHg??=P$gE=hK`m_+2pm{@=QChWAHqb%5Br0C`f zNe|}_``vkHVVd~?SzIqN;1PMcfbW?QUtbSgumXtH9GkeT$%v$BV^nGq9t@E95A<~J zrnN49DBiaw8_E55xPtg|qG_RZ z*Gv~ zK6Vh~>9;-sWg!UY(4?%z%XUaH(2dR~sidT=tfbw|hq_n%vbbc%5ey70 zF>5!Bg+z{|=^0_%xqlufSW)z&LAh>ptIM`Jk9SQv6XIv!J|fjTgfnBMp|x+Tln6Bi zi$o@}X1D}<%AB|>>?m{~P2}p81K-EarOriGTNpg1oU6az84qM4!@+Aq)XVu$8c#-YTJr2py_!A|(w5FvZX4W@BAPJ!>Bs$yG6BN@`mM8bwjFl zuM?wGJ009U;@T}*gXM^1JHK%ezraqPMQ?CmDLPYZlnKP>?jPT& z%8a@;-NzRL;lz8%2m+h%+qNZmj5V-Pd%tjhq?`UoshSb^ha6wO!Wp| ze!YliV@($MlDz^;WI)P?|y>$7>xH@ zHxKkWx0a;unY(5i8W+qdMWXakk%)B-3J-inqo|B75{J-%I~w8e6wQ;e@cas&HVNRr zZ~4(8rN}I2OOada?m;qsl0H{t(^B8c;i1h?MG8~Yxh*IX1c}ZqBUb~!lW!l8Pu0g7 zBrlp8JnyQE{Ap*MJQIX>_gz_Jv-D31vts?w07WGAmMs+YGLPl1J<9obuv>BG8)h#OrM^x61j4c%9;*D`TTn4#oOwAfFE6Vj2#Uv8X>W_Y-M({G$wl3W5i&mG+iBzLB336- z)d*Bk6NzFS4c9!af15dz96YY%$C9tNaOne!o+7)-Q)%RY&9p$3;WDE=rL-Ivj1R4^ zq~vK?(cRtMat06pYx%-+ygn+K6*9;6pj8P~p=o=r$yu;#V?zmYIC&Qr_X_$Wam)6% z$s1=kL|WzL1wFJAFE-~0{1^l-)uo{{k3$KkJr}csM36XfY?c$|vChn1o z*QZ*gJtZaJ6E%QXbVdg#k4355X^k0%-3^h%jHRjsiaXJ|P*D4i&~i_EQOiYl)=-l7%Xdle`;Q`r$6gjxQ5?DWj-l}bPXix`tcwy#9Xg^5{3(Q(?O=B6I3GkvmqYo zP3fXvI=hon+BRG^YP~C(z-fk2x&`)Xs|A+y4F%d$o9Y!8Z$?k}9Aq+S-jFV;C})A|MTmVD3#?3-?`5;XA)}6Eo{Tb-N)v>N=!2O zRn9qQbBBgu&de2}e9EyQcg$VQ*{F~!`TSn}_*-r7*ZcW=J)e)~f(<1i-CsF$u%vcIc|3^L2(mfr?jPVMKkNtinUYn;IOA`5d9l zH*=$S%GgoaV<2YXn~%tkN?O5SDkHb=ouUgCXT`7}18!zvdiEMp@u~sGt&?_*CccZd zu{1lyvXGh_SxY1J`Hw#|<6a9Fe;Z?JD_6;e3;cWGwnGA+zaadC3$(iDuNAMePqq*cJuT& zD%xkYwnb`RmPrR5XkCv8gi%FTZV(BP(b0-+kiNOH|}|(zQohEyM9~pHyT|q{7~9_X%D_ir5-ta)o>pBBrF_W z)8ZLp#h+_xY>-GXE5(M6e>`t&5Lc~%=Z-7^An7L4I_=My>h`%`uh`&JDz&f|xN zr;bkKI#OX@u%Dky=7(wHO`K!=0fYF+NFsr${&*4eQB1(~PcSf^EM6EnEdLY0r$6&b zTCv@-X;I;opK`zZ9SSp|OljYl6R|px?~&F>*<-B&8pyoB3kFBIE?6Y>-Ni^3BdXO& z+faA8PB>pWBtQRS&!z^uycYPpm*Wu9(yIN_rz}_o9bEMxM2B^ZerD47gbTMdDkTKF z!D$kXPKQ`ab!#!5hT62hBaI`}%vXlr(QJ~-4LP|c5p`fzFA1jEXrLhj&Q&@pyOs@{ z1#6!rma`-mJ3JgSZd-Em<*8yYe|i~^l|aRTM4~n&Mg60h4!2TUY;0_hAQ<=5PQs+x zR9jtz%xxSkMyf4!jm^Wny~!m-HQ5Tn0v^asw9R+xPlOAivC8><_`pQN9L#5tj)>?O ztTj?=BuBoo=Dd~h&JWe*3s1n_UX`R#>euSWy%dbO)nWa(-_0f>#n9H7PJr4_PgT2M z%RP%Lxjv$|J!_)}?Q&y~8hc9=6x?`fkd2F|&~P&tGlsv3wFOU=QN1}}rQVxs^`d9f zIG}}#Cd`W?u7Hu!W9ezd%XJbaW1A%pJDES*=8>Ws;*MC zh)$;z`e93`WO`;7f|t_VRN-7|<48!iNGeg+LC31b5`>6FMU+FF*bg{|-rq5LJXSM% z+@id^a-kfvsGFt-x2vg%w|i2z`xI;Gb|raNF{04mwm1-#}fAb0Uon zy?KESp{gbRy8G+QPpUAwY9v{>fd33V%Y^iH#I)d3QUviffWUCDDIz`qXAf@^rSTCA zphVF;`0z zYGLeqvM1p%U&_SXoeg!FQaUn%u^hPU8A{zfUH*b<_#BDY5U8YV>xe`;**eEkRH(9i zv%9D9Fj#v~ebQUxRSQ4e04WuMi;WoP9l z`pGd2%4K&?`?|3e5e+7;vct(|J^qos2qF?J9&y=%g4Y z=<&_lNC0-tfNwnt4X9-6q4g7XMY$0E4CbQ@hEdk`sAxe{ zpjyPjX8BqCgg&-`X#Qj`zhnB-Oj))SL(kZg0DhRvp>EqvbexAK{E2H|jBk#ETc>?j zTC7H$OA@9naPRe)#Q%0k=nJN?mVtBcI?D&yWip6>`g) z-k8=EXHt<7O_V z^@J=-qkCvOG(yKZ8tUKzbfzQFT<}Ri;j+VpfgAz#cQ-*QSGw1;+iIVvrjx6>)qyV= z*k}IVuRpJeW}#NOw}(CEO3GJ%K5HK`o=g~raWHLS9Jd(*>5{9*=kC7K?cWu9A2IxF zPTuR)jvz#`qU=i2hIf?i8hZfv{Q16i^!xPK`eWtq{$R@V+4K_U*ZzabDW|bWB=oFT zi_m0DUt*h%ZUQ+$5z1fJqG0u6WA#cEp-SyjazJ@eZCx3XBq(^K2|knH4rm$l^K4}D z;$f`if?YjMsCODiLN&>T2ddNs8^H6i7K~+7uKN5grCo7T}80msaS7%Q^sH>7|Ww1mVdTbbV z?)hr*p3~90J&f-0Rg|veYWZ;S7w6jUmbENPbQGV1WBie{>EZ2AYC&rTdC;zPWFUM% z`mwic^{K2yuQKoLMj(hqp^e&}tI2IpbK64tUJtcP*HtM){kB^CB+RdZt1$me8X6wS zi3+|)xdeh+D#^pBQB-OoM(QVmCw4QE8BI2&Ila%QOG3DvbmOUx@^PTu>Xk3IfPqkszxlx!dC~ zf|En*5`4|>1L%mMH#~&Fhi{Hm%Bv=fdkT&1Bz(L#Iu;sX`^izWShDrntpvkhu?ZIY z-d$&v{1iV?Fxla^?R`M^F$xc#&Xd0Y1aZIQP2fttmP}h|8x{;!Ony@1| zrQlgQm+C7ZhQO|x{gxVv zU1e3FKDFZgW?ff{ZCrX7zg?KNEfz9-s1Y?{{Qb=@x;!5N0hpKe7_n|0s4LOM!6C_1TZoI zr~_-=&|&>a0O;vqth2t5jM?lS?~AgJAbD*Hf;)E^&v@`&?UzbY%3dAW(h=UffXjWM zh*1?!b-KvFXS7R`E=emgObU&A?VPC}`o0A#v}-*0L_`6R=_RlM3TNeg$?Rc4xqBHz zK<;oCI6#mG?h#z|n&437#>8(Tu=iK>|0gJG3IrWm!QR}pQF6X$gx+KiS3nCz;wNbb~ z^x8)hEa{oaLka*E%@-3|mogA+9n+Wupa>ou2Ieo=asK{>ah)ha22xrQk)6SFFGSM# zQ0&JKohJB`;NV+bjZJVvl^1>doAVy;kQmz^4+PY1_6PQ;h?Z>qy%Do1-)?r-^L&dA z->N(fYvbWf=VN>4$5ZHq#MI2gH&jVU!J%%WE-aKQ&xA=}#@;^R>K_d~a~6XU1(E#C zIM+(eAFxF z6ThWXeG}y-IX!ek>(_uB=nl#Lc3eTQ2fR2)C^yH$K*)MFt*WL9kR|KD7P^68cej?u zWE;gL_0a{(j}z_waCwlsHvSx*Zh1+W`#N8>si_55I)vhacvay~7?$VDAte-8WP3FV zs#ej4Y4bO;dPCJNQ_o_=A6LDwC@HbSc_2*6!DX|fJi3~@nKJ>LchAL!E$5Ild&V+y z#nmnc4zwp#oKn{oW5B(CrTnnYm$Q^x{><7?YjoNC@<4D0j5(=<@3+{X#AcUcK;^*Q z58igrUod0!9Qg=lX59Y!SNq7!SlwQy?EU`4_L>zFJA7Fk2jtrr;5H%H^BsCCUJ5SF zWnn^;k%8yQ$iZ!Vus$WaEOFKUnO?P6$H(>I8 z%|AGkXY0N{s2LL1xKGxd4RJJr)gIq#6P+a?l(6bp>Zq!Wm6m9eHs8KkzjyKqT;49o zPgrn+VCGiPt0B3MD=NaKZDDc`Uo-$mmNlM-?xw4 z6V|?-SjWM%*3&tdOs0(){i3|Qd^t7V17YI{OT{94x;O9JY0Fdj$FQ~@Q-CC!0EH<^ zdmiS94Ex(zo@4goFvMg|rh%bin;vSp#;J`}fJB%k{FGNeI$REtuCb+qz|9S$=YQ|FMv!Eh!y9FQWpdwZjmhjesn-60>Bz3R>cz^67i zS$5W~(5qEt>>x@76C_|W!UVC1WJ!+vL#V*B@Uxc;#6@7JUwpAI&2P*mCzWHwolMc1 zu;Eo7*S|ScJ=l#H?=T{P+|rl5U*GPsSytY0BD;v;z)v}ZypeX3^nVDj0ouGk7hN~? zv2ya)mw9@3BAnL;|4Ghn;);+NmjK2@Do@YUm*n0_8Al!vg{~-(E_UexWyo)7*-h<9 zz&>4RKM5n525PzNbUM537Bj9r2_p_o+2{vX#6(LHhJLxL7gN93VGbgrwZ2h~dM4DX z6Q$^nFD*n;l03ky9)a1vLa}|e-^jnZsAPf-L8|UN98Y-l94v& z?~^s{B`bhDDF0JE1*Q4c>rNMi5-$G>)Heu$@|kl)FI`I0Is(x#%pRB!^XVq z98I4fE%MU^MKq zZKbV;zS6|TnyYIUenIf!ex{e*kOc-JZR`))6(7QbUiaMX)}e5@X-52g^n`f6!O>%!irSladF13-qNWxhwJ5l`pjkbobX&x+NUAjJVV4@!B9Dc6CrT*bXaJU z7Wg;7hwLz;)7M?cl)sUyVnC9F%Uu-cO(W!>*1E8IW_&$3%Mud<@4&gQQ2kRT4EwI^ z(G_h4u=LtwwqpBTT~i}#sCTEjrWZ_&hUSOtcBSlgJSV3UmvP}a%PJID(l3Xz%P*Y| z&lzueoUCSN-CW|I5<<31!oHOfk zk5^-`0CXoPn6HWApBTB0QuGLVl)N&Kk=;WqMPzSu!-Z!GLATv$k{u0lP`tgH$)Kd} zuen+hB|rOG*O_cp?AJG%J<^D}pVBSoU-n3zwxp|;?0A(&UtgyuIf=d_)}c(*eCnl4 zv5Byh4?0S`b)09KVVG9v&LABh)BdM0$uESm0^l2e?;@0Z&APi1+?_B39bcXr=~g`s zlF3)VQVcI@)-bcXeqdh{uQVvH6qa4x(h-+VVd-ZzPhsD|{L_Bj#xir(k8sfcYA`Tg&ABQ#)z8MpaMdu`TP5B3_iASNXBPJga!+4 zbnBtS#s@nyRVfq}mz$PBqU_Vmsv{-lttmPBTEN@cbo;Z;A$kL|k`6=P3T4 zDVv+M$@^1r`1Kw&QRcij{6S+WRIfZANM%HqD&5^ z8lrd5s71m5;k>;O*UW{N&0y0l7x_c^Ngi}J34|!mCa7E*^u`0>Gck2r;=VDnH3Kf2 z_v9Ml-Hyq#cEmf6@99nd-Sg?(ircYu``{ftb8+0S3JD%$M7@-^SD@n$|d@lY)V;x=}>`yy%kNlatr( z+bH%(7iEq07a3_-zeG6CJzM{rryFnbJw}9$v4iuKIL9#}1eCepZT0nnJK*BAx0$&* zC=gNT-gYw7qtPJ%PUoxoHG}*5l_xUwse<1ZAVTh6(p5^{-8arUUWcaFcCo7LF@HE) z-Ntbbi^(V79rQbSmS=l>u_5)&fgR9l73j^fv$4RU#SZJGotjVjg}l4g3IR4=kHUhnB32kzfY#jOT}Xhh~h6x zsC6|Ha{qFE(78!#ezLzUCfw%yfF#8sz4`aMeQ}00!Qr;yPx+^@pAiW({vKr3aC-M7 zlMweK1j_B-OurfZV&`l1?Pf17dxr0E z%Gz8~v_}~Ij)n((8d$RxO%2xe4WW(U7*G36?KRb+66Q+{-;p(6;ly8r!@BDv(_*9I z+ufFz>yUDfZLFAlExw#!9oRa2s(E2x!ndlWKVo7$%eSR3qOI+l_;Bgq%Eh8RwzfrX z_~gM+g#R}NSH(%T;oE5S>xp;Y4ozTUWfCi0|o>3^CJ9^;U9x3H7Ik3d0H!jHw5k;r8jkK z$=HnS!`gU-nt~J`hcORQ!Yf}fp4|CZZ8bnL5S74^8;tLSHLOnki#46V;DY6#vUNae z)78}d8qg4Mk_>u$3dr>snN6gFRf2S?koZ6$7_z*sJ50I3QhjDY>7a^BO8^b#q_8l| zm0TwYNad>oLRN=o^FPGI8+WK&Dm!0vpqmCDRNIKla` zzBZ`C?Px`v@Mo&mS&3%!D?9@~{No1|MDxFEw<8=F)=Z*35K|ZL9hQT4n+5D%+LR!f z-ABq#aX1@2jXMAu?%B2<0RQ(|H z_x6QPu&4y>u4Rbyt)Wbz_e67Hb_Ao0RPZ1eVbBEh2yevqRAn$Z)BCV^6km`7P%W@O z&@LQAHMukIr)SQ|QY9lL($iBZ`o)7E^M_(Q@LPrWZ#*kUb~Ay|!^CNU!O)aGfiMGB ziqn(bwf=J7QMM()xV)qNW2Z(If^n9OjoTlBUN4}V*>BnbOMpVjP2_;q!muZ4 z(^}RmtZ{Q*`HVy^KBs{)Xw&GE@NELyqEeSSROvglYZZP2_5B;*6<+Qh+5+H$6|rW2os#;v(+#lM(g-^7$rBC&NVer=`>`V=M3W z7@XLfPcHwv!Ia{p1aPz;vwv69ocB2Wyj*5caP<-OnS@!Rk?>@N}qmK;_ zblyBU6c2nb*=tCr2{Nl=((e-WW`Cd3&OUg0z`YpR!uw#3QB>l|YHkiukAS>1n%VIq zCBK^MsLL~um%o4#9AaErvwBj^v4!3+dQK_TjP4C%%8<@B3@oLKe)`$=DMIw9Tj|9n z7Ugvr<-eXOHy3mH0nT$zdQSOR`bmE$>f*FyzRKb7w+PXK~<=lXh3#^qL<-FuYGcO-km=lZj91#I5*M}fAs80>T2rh*MfZqiDtY5YoN}D zBGjS%kR!h0AGoG1Y%M#SK#mWFz0GbBmw2LSYq}|uAh`UZAGZg@S)Ll7;z{!4N!xhw z&K@Zfrxc4_?RB#I=}&Pw4%zey)ViuGemEGh0iN6+6z4EQ1vD~(%jHLRWE9ARUaUh> zgxE)~YU-BlyzG_6pD`aI4>)!0Iecx`-9H!REyVfHU*5@48|abWtZ&4<+EANv{~_S* zYB+2iP(>rnF21`Gs<(skcX64zkRERJpq>tF z0vvGWzVj)J;H1DG#hvr@SrxS`%D!Htj{QEO5uz!7`Fr>^41xfGqz2 zrhvKU*Vid00X0oC70dJCJ53Omrlr2rU*qyM3 zL|u-^eqq=d!&+dhOJ6}>H@Ik|oT!@+_%^9>p%+AtMan=9E59jePX zbh6iWcraeyl1kn;C*^@r__ub;@r;h$f>F66Oo!$tS0C?zjICa~fijYeUQ7zQW>@4z z)(|`;`h28$?`slYh_ytCoa~DiDS44A*|2G8D+z65YW*pWa- zcyo3F%DvX>+*lVBnV3gc;_UCYt?PE9SfsOIXE(%$vA{NHIGM{uFgvcjR+eFIWQ0zD zrY{&e`a%WQ{~ie!QS&%{4))mpVY3|kqDS+$Dd^dyufAf79*zD0Fo(^u=8wY~v!^&m&v-8tHw*Mu%aJSg z)#@+fpRe~eW9nQ=^ENd_*WBzNz7+BdV;?~-c9FZagi zT+<1$d#9@9=@norXEGLPvpK*mZtB6m-MOov_}GkaWHw-x-pC%4tuQXDtmZGs>>zME zb|HMBr8lgW6z^KQudBN=2R${dDpG$xEi6&|?=P9+$)*TSN$QYAB#8}rTfrkEjY%u$ zdc<5$3oA9J;79O7n)j}bXRjekuwnR@kea`v=#Qz-d%&iibAQ|a-0Uery1cs|?b*@* z7u+r)S6Cifck7TRfV+tARfLj1ZudgiacJc~`RCG%liMxaWX|7r`tFMcH!0kasE1OwW0J9i@R2oF=yRV z%?-$|&;1WhzuKvJx8db^hOX*`iK(-sI7#VL@zj(>OVJ0^4@}FfqEVs&s7>@n6VxTp zos8f*^5MFt<%4hbPb#zpOGHm6JBWv||2Rl1B_U(KrH)(T6dGOg8_ST6O;=>#`V zij7i5?dd*sCQ<-#f_G0baHB7MgHub6uzth$mi^#kpTD5!$NArPiop_12RS-Q3NKfh zI#bh}soApk-(PT5uhmo{Pp*8$UQY-#A@;NDM zm6ImKbN;|!@!oU6Wv>hnjNTE@488ao#3C6Pb6#3s(!08-R7HX>t*KHs$$g$QnYt8Y zH&B%Ss!929*6Pszh)f$TbwJtN;ahWeQpK#MZdbO=7YzJXNxc1y@l5MpME(|I;JeY` zw~XzZ!2(14tQrHjUpa6SfZfVbCN|IA-Pzf@!O03Y=yb66CJQ5<|1A{a~K{OwQys<& zrNlNbV5Iis_j!Hu!SI6R7{bFQ_Yth!K%Mt|iWwWEgt`5_r7tT3+JXtvIvTw+ZtCt8 z!A5lI3AT9`y_)0Fp@RCZpH3blqlTpn3D>$0RGVzEH9a@GCOe=CRuK&>%jb!C8jn(c z4B}%ZhpBfS?HQFeqU`tJ<`^~qqbkf&Ed{ftHxjti+go%}a#FuE%-@LRekYE zF0(Fz*ZTbe;G8V5a94*?AI;jl@%%MC*NDTA7r=r6{-nDklx5nosndl#l0kM9@M&7I%JnLk)6p?8_{SDLN8DF)a90k4oll zO(&g_6m4U+<|FZ{)5!(*^Adko(H`*3`_Ruha(#2;Or5S=9V#ugr`bE>xye=snk_0h zg)eTjO0@EiKfNJAY119{RMU-7vd5*~TnuG)&jh;EMBvvk>7ri|Dm2B*#xvEh5}9cE zmD~2+OEI!=9efacLqzbsb*}oVdlJ$PJ&#h@S9{#lpBn#xBdDr#H}7A4Qsr*N*X&=K zO!e>eHnu^8B7ViI{SV`? zM!iBAnEXUye%hUncL$XtFNp--`4}6`bmk|FOBfy`J5}$;xDo zq=8{}!X;?Rp+?H3^#567GV*kD<_kU=^*p@D*DZIgUx?m>z`OC-2j2zeP#axuh;Bzt zViVIP)QmMfVVG5>!lMVRj!{m_b=Ha)VoK+3&BicN#OHT&10p1m5Pq>)NAcB)*5n^E zy#x8NR*9n86ofegxrRJUzs077VBnRtP6kajWV1E7Ws}k~t$ceHXXyqaqDD5Rz#e{M zZE~uV)u9~cA6yr9O65s4Ae?S~TN$N}qck+0H;wD@wL-VH{3XR#L@-YG-{?GGb(k$H zLdCYu?ie{F&#f8rZ$dXk)7owV^s5KIleo$Y+rGgz%y=lwwzV>n&oZ@iAnBg`E^)ye zXNcA~@%9DSeQ#%SEnYO!*>6(O5Sy-(!oKI&-O1cX?&!Er z*8lfcT;(?uTW{LR==tIv;!(1#+n(Wub5+j&3MXoVQ*e);7Dp`p_t&+6(K_XV1FHc2 zX4x0Lmv?jlp-*fFmc2-cl;0VBL=q)R)H@RZ-hU?D95l>wjD=VXP08tpmp9$eVQV~l zM5e@$JC~B{_H;^j(OJ}gFR6u}V2sZet*^g4P~SY+wTzht)oKn*kN9hmjLT!!tf4iB9Jo6G*8xS{wqVbnWOsLijAReEG@Iih)%@HR9D5^+4F+k7u{{>X<>Jcs zb;sv(q5gejRg2}G!rmV~EG|j}$WFTs)OmPKdVT|!(4!^gjkP{^J$5Aw^rapqr4{Zc z>m>zKAN;CxAIwSY@C;j;WGiro%9Ftr!JJ`Eq}OVze~m^Sz=}$=#oqU@YQ`IqK74Fd zZCpZpmmMOVGlWu7$yvlycCZfgFuA7GR9xd6W#m(W9RX?K;nPn_7o}Pj+ngyGhG=XW zQ4JQnwhX`0p9tY|yy|jZbDRYJPe$(tmi@q+%)#H9S@I9YgPs*FM^)Jh`|WJOg04u~I;h zf=G`NU37)^Y3hD|-(zN(0Mcr2BP3jS#kOt(-#lrGzV4KRYDAOY8E!9D0=E2<-fkT| zbjpnjNcn`Piub;z1J-^e$3#|VA|&J-Q4;aCl%6$F`eQv zr<@V?Z|ePXtk%h0wp*NySfTmOvL3wQL%#mvl$&z8!Ik)5vq#CPrF9RcaZa!|TKJwx z<*EmDXZGn%cOzppv8!RtH>+4Flbnx(?_X5pKCe_~W|VuV6f2ncRm{_@(h0>0!Z#Xf zPN%op!hSgD#$ewJUElK`XglWF<9yuDKP9S2=7#9?a~5XOJPdM_OuE7qWUs}p+RXa8abv-TRl7K|5(5LG zwtJBJw#!{39Rb99YWu=&d#TU&ubi>5`l3rHmJ<3H8ll(4MYXBhxY(5-T4&YNiY5QJw@<>*bD?LKaFwbN zX(YQsiyTto?PTl02deMa1cdm7rt=HF?BnuV#28e*p7*=&Kt9W9upV6WiTd1Pm8JA$ zJm$Ch)|jODt)7*c-#5jyVPR>0+lzSKP^ZT7e=F=ei)p{jW5{n-gVhflij)x+K3}B#y=jnI$#|Nu zZI$73lhn(}q=6^;lr|s?oStu~J~XO-$+*Voxyy~Hvncs(v4Y~g>wXr8F6UIeL)uy! zUigs89@4lkK+cqKDz^J~VXcl5xg~dUQy)mz=~|rqzk{+f5y}PjjSkZiZJ*Wrr?nEz z^fP-$!0KC9@Py*`29MB6?xB`Zag)K7c-fWkgFv0rz~=tVEE9*rOeenm#dE3uDZwX| z_@lX_aX7;eT{2X0lV9)uQ=>WKw1*z&DUP!)qC%F|mGFujYN`6>tqc zPtxdGNd@8WBA;Mi6@f6TjAT+>m}TN;W`^&49^#&Y1LU^)k+lBOx;Ff$UKa2jkP8{J zyqbB>w_eli)kTai7i~V#gpi7z3Yn5bs|PLykO6$0YnwUsx=Ts~&*Q=Z2J6Che?a0FPwn%5Z5LUI zh_N$Vc1Gdm(eQcD1(w)Fco6}Ve>Y@Y4k#R(nPtJX8rjvM42qjG|M+l*?8uP1K~w(y zX#L~UF6U6{Kjo7V=h>E)SB+Yee3D^js@|6IfSglZHd1zy_uiUy;mmexAIq`u88Y=E zy6|?5<6_-Tb@z!F<8-0-wn))EKZ`FTwg9Ve1`5boUB=sOts0W-U9-&_iZU5UHScOz z>$wu!FkZ1wk0GSb##;`D2l~P4KGL>84-sn<^v?$SSE}bs(7z3i0J2u|&uI(c6&pR! z|KU+uW!%;eM~gTug-2@Wk58g6x*~f_jUxF*nAnS`@>tx zJHly0G~|^6b-U4Q46Sm~VBS_&a7JOQcyukw{Ar2C=K)@|QZrxcEMqt~}dswlf?RfVt}N71ROUGcu=_QDV4 z$&RL@R59lKWWN2c{PWLP%-&Zx?87EyiG~t+R=R}{TgoIgXy3TyabNxTa8aD0c?GYf z*{e!g^Q4F1K_4+#dT=GK?zd?ocKY+$htrq*XJ;KYdK9Oc^+E!i3YC-P)f*SfAb1FJ z0Y^JGW;-@ozNg@-wKi1bA(m%j;H+e$&ITJ(1{S_!tzYZAt^X=0roK@KGtCCeu z5z?4Wa^8;xKYm0rS00v+7em0`xyJhnb)wopfv}UDoP+eSP8OEou6X$N>spTpSHY&X2I5w|&V_WBPp$#aX06tlPHEMakMmH8|7NfxMR#;E4iI7I z-*}#aaqjH1G-I$T&vaDf>aXovH(`Ns?SlavzD88FWb91&Sn1=X{Ez{N4Ep)4@hL$z zHP`bNJWVs`k%0fkB-5t2?A8G?*|BxZl9G_~rh}_GC6}@--xX4&*BpY* zv3&eVQZ399{#3y@Z-HTd@^i^QShGZ<3f<-Qi^K0${}KDh81vdXzj)QH*;lPu29hOU z-a>cMecz_D=rr{v1XvpNXcL$W?~0q_EDu4opE8H%f~5}>Z;t;2xwz>nr^$1mO*vbw zSwv(>w}vy2<)!4z{B zRu!dj=NHCG@2MZ~LKJOm7Qwv>o`|Rg9_v-3;j0e*SayByQNnpw2 zo-OKYv!Y*V1JiHB_G&4@l|)UOdh^nU(5gbVlq8NDbcp5^V~f1a<_C0_?kF2dmlEHV zMksh~N$mu`)CK0E($mL2iz#nNb8lVAz=r%D)|lOhaGg^Q`*BCPptD4#qiB|byU^D& zR^KIvwa;O9QCW}KFeZjE+g+D`Y9gu?ZP8D6a>fQ@ePj8s<3 zBu6R;4vl9I5fs+s-YGa$T375!8oM1htF|gIg>k-P6AQEu=B({i)Q$V2GATvxOf!^{ zVP&4#M@GyzuNmd)JxSUf?u!>oxeMW7Id3t^&Kfbf0}r7iN?S>&upq>A#dW{1&&8VG zdudY&?%&mBcFdc%&PTq!b2hU|3QtPlV1ui{yjf?P#y zv{rBaaJ{}Y5r0(G13Uln!%VPay_%P_d8i!RJyEB4%78@@xv^R3-|{zxLiVL0LiXl{ zL1CBm8!ZD0i6_*j)CHV(l(bS&RTV_JTHB(M>X*RpTce-=^uNm94j*?hML-TED#F%K zOE$%Bwmi1-mSAJznN+v{$*9Dq0SQY6OqDDTvsm*L)#}yh;|2y&I0Lfnu^^>^k3JYu zbnepcKNgAA8%;J4H?3s2AM}FpB~ja^*XPR+)T9)3NN$n033al)#4(nu7d;}$z$@7+(c2E)iu|}^K87Dxy3?wXPK?8_1Fy~9jv7UN)6N%ChnDYY>Oy4 zYHf2#&n>yh>0ala6Dsm#ivOIc2j>H;!?tLWPLj-{UsKnq{O>OjG;hr_PFHGCj0?1Q@WZ1o0+?h5;IJ@TV~EhcaGtHnd!I%!5-hW{ zm&Mv&Kz=qZ8~44UN*$^o)*eTgL`g%C?kF+l$^&!t(0}Y+xiQvrgJY|af;pB}3qJU7 zPidy?9QManP1{ahljmQaFO4zNfgQAu+@(#~C9}I0J{gu7#FVE`HIdx}qCpp$2{BJJ zYT2je=7t(rs+l9n6;#a|QHy=QAS0iPawj0yq3?_@lDl6r6-#CHc+CW}$M+hlUP-Xv z-i-WVq%KPyZE>z*&=+1B+h0F}kQWk8Z{< zvRAhcad%izWs?(+IoUB-S-M~qWA-wz8Va-s&d*q|cg}dDv-BNXX(^M;>k;?P##YHw z87WHhlN%}bdof|#hD=GZ;pxh<;V%o@2di?Q%4>3jao&&r zCMdi;#9epp2|BhXZy2J0oh<^*Tv2R?Ne)8)ayii??ZvJ`FW4RN{^Oh~On9uYX~?AlRsWumoUt@+RE+o# z8?LQeiJ99=D`mmLWP+Y)*)j60%7=dsF4=|+?yds28kS`VF;WAUbKt2*%qI=@1mt1u zz(h=zap439E(Iq7uyxsQt{Dmoa;a?;QY?eW8^xBfNTbprdxD&y)lKb7>T4^uI+fH< zKpm0a-pW60<=QIL)4~^PRzw-ZeFtBCQO(>j zMR>$5xLx7sUmC26q58?Hw4%1wOPSs^@9@+rk8VnCCu#9rFCv=YAO5wZu)9Y};Ahj$f-n~;|+JUA009zngXYhZ2h3Lz_< zl9Xp|5c8xWdQA07Lb6)&ePr<>?_D36){8|{IhuAEWsm$FeZyCmZm5otpfXn&*7p`e zUKa`GYcVF$(b}3 zxAxXt|8M0TL5?ITAB+cH1!Fs|z^e(k2ocF(IwZSQ)wAMJ zp!XQ{XF8z{sjhJYO~^zlG(aRbP)K>u?@o=9nV%J%O^PZWmV;)Amlswmt??;Y-pUW* z2Z@~vmQW%X5=o&R^U6zaZYE9ZJfBjq z?}K^BxX#RZvQ+Q>_ZQgiXMgN!54QeV)7s$_S=+p(__AjNo32;9{yMnMpQlGrpu3kv zOuI{T(j0`QM-pDx?`)w1@$X}B&@)sM($A1clsNG|8cGKy$HeBLiZMbzVN?`-e?*;`_F1UR#(Wd~ zJXCB6Kx2fgi@H~fzW#e8)nFL`= zST!&ZZFu|$r5-9HjIfc1SeY9Lj+ZjXO;mpO6GWany>Q4F>Gp+39cEeSEx^-OwmdIK z6`GDtHuH}=7T`Y415m^UN)cLBuxdmu(#Fcs2x~`H8z_@GsWm9$z|Xk)!=}q*bP+B9 zp=;BxETH^Z_a#MOA)Xrn$*+Vzj{NTGv4?V;yg!bH*p602@r)1EDE|Eex$?^*xm@k1 zyj>L9`EVyFD}QeT7;W=4YqeegYN+|`ue*0(n|#sI;q>$q0J))4=#)0-*|e3YAi0r` zcdE6HfS4zRQfa+!ub8kGM4lu@Xg({fi&RcI{Ac`=kw{EdssDfkx54YC%@43uP=VcQqP zq0C#sn=P0nTRXaqkeMypENK{gujQWmV8gs!Ti&moir(wu%)rr${{T9J-1{`Or}HW7 z^K2RV3hZ*erkB(6za6GKEZOaB$gHm{ge%~7i+g#h>dwmXYD81v*^Fa$MLn%lyfYD1 zCXT1{xERpv(NgjvuHsi%bH zd^6K)Q|!fG1$6aSs+&nme+5gETIkuSQ{{?n9XZNKs7#89MobvABNxu)7RJmNT%3(*9_wJm@@Hh$g>3H4mgNUaH?K*T z*{Za-ywdwzeHn5eV!uJ-v(C(YCJ4K-nZEmbsCpMt7em1j#DD6gpL z>9-s@i-{C!Q^iA{u<2v9NNcOL4Oy;MqUlpBp{YrlI=X7EjE5YyJ1ZuHDG`!c_Pbof zeaJ(*Z<92RZlsmA5YC** Date: Wed, 5 Oct 2022 18:53:38 -0400 Subject: [PATCH 06/42] styling of personalized page updated --- index.html | 31 ++++++++++++++++++------------- style.css | 5 +++-- 2 files changed, 21 insertions(+), 15 deletions(-) diff --git a/index.html b/index.html index fca5da5ea..3981cdaa8 100644 --- a/index.html +++ b/index.html @@ -1,13 +1,13 @@ - GetHub Express + GitHub(by) Express -

    GetHub Express

    +

    GitHub(by) Express

    Personal Information

    @@ -43,17 +43,22 @@

    Tell us about yourself!

    Preferences

    - -

    - -

    - -

    -

    Mingle or Looking to Date?

    - - - -

    + +

    + +

    +

    +

    + +
    diff --git a/style.css b/style.css index c37d1b19b..d296b2aa5 100644 --- a/style.css +++ b/style.css @@ -14,7 +14,8 @@ float: right; } -#addr, #fName, #lName, #email{ +#yAgeRange, #oAgeRange, #distSlider, #email{ + margin-left: 5px; float: right; } @@ -52,7 +53,7 @@ input[type=submit] { width: 25%; font-size: larger; background-color: cadetblue; - color: white; + color: rgb(12, 12, 12); padding: 14px 20px; border: none; border-radius: 4px; From a8ebf32930054b92437be2606b0ae0d227f9c159 Mon Sep 17 00:00:00 2001 From: Ryan Luu Date: Wed, 5 Oct 2022 23:55:05 -0400 Subject: [PATCH 07/42] authentication and personalize v1 --- InterTight-VariableFont_wght.ttf | Bin 0 -> 581612 bytes authentication.html | 10 ++++----- index.html | 25 +++++++++++----------- style.css | 35 +++++++++++++++++++++++-------- 4 files changed, 44 insertions(+), 26 deletions(-) create mode 100644 InterTight-VariableFont_wght.ttf diff --git a/InterTight-VariableFont_wght.ttf b/InterTight-VariableFont_wght.ttf new file mode 100644 index 0000000000000000000000000000000000000000..25a4f14fe8ceb016fde3bf9a90e7ca2f626dcd2f GIT binary patch literal 581612 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

    kaz5 zK703l`ts|Q2H$sIetjnI`|iuHR~Ynny}sc4^ySxU3%>8Z{H!bReBl0duz{`2fi3sI z)-3~Du7NFE7H{>(;je)$TNa-U#M!d=tv?RW4Q$!6cyA!imc@euakea8?2p5b16#H% zz8r|NW$|Z!93CCmvSsn=K%6a$X9wbJS-jgHhkpmQY*~Cf5NFHUe#TS%vUh$p+$VS=-O(G$3pHS;yJ3wx4yJEo=K3D+Xj)C+n}n_Onj4>$Uxiwf*+$ zEuWwDmQPl1`RdhMK3Toxs~7(a$l89^aki}OXB}tD+J45P1G2WCb(}40`&q}?vbLW| z8<4gAtmAB1+s``AmbLpcr47j1e%5ietnFtVXUp1trv3q0+s``AmbLw?<7`>m&uH8) ztG9f9)>}SVz2)<>-tx)nEuWvUaX{AgvyQW6Z9nTcTh{h7UKxm&sa7fYx`Np*|N5ub(}40 z`x##h$l89^aki}OXB}tD+J44+1G2WCb(}40`&q}?vbLZ39FVpBtmAB1+s``AmbLwi zWWTK5^7&bB`DFE$&(C_xC#$!7ex|MgS=-M#&X%?PtmAB1+s|k>AZzo{B1_Op(&WofdN_D&pOVQwf(H)Y+2jS_-sJd_Op(&WoWtKxsk2i{ zQWvIWr{$*?rq4_-N}rQnoDr9in~|59otc|CC$l7LN>+B(%&em9jO?uJS=n=Q(sFWg zvvP~`w&huQt~_^MYF=7iW?pVyao)n|sngS@r{~AzPtMQH&o786h%HDgm|VD|u&K}} z99I}u7+;uBm{>Tu&|NrZ=A>CuW|hp2x_@kO7SD_rS2C+KpwvAtaK3ZCYrea@VZpqG zJqz_CFnt%ZYgm%n%B1fIKP|nGIBy$yj5JSlv8OoQQ$AlRdZoHU7Prf?ld^2Std5a2 zhorVtwr-Ja8>C^KG%l1K#jG|TI?-|KA<*KsP$E9O|@EAt=3no`HR(> z#cJ(h*|9{eSt3W4s#QzXrlo56GPROdu+^xVei~JwW@TTDqE-KuT$mgWJ|5o)vA(ORa$GfYGvzsHFLe1vtD*?ki#40_ zQSII+b(>ViCRMaat=^;>Hc8E9so$(3H>;e@Du1(@v00XHk#$>C!4|3Cs`9qVmO2$) zuOjQ!mU`vCO=WIV+1q4SgIe3Dl6R_ zPuA^Iq5D+SKK1xM)woZV?w39L)!h9m>VVW9luZZa*g;u$SQ-z@j>F2`q!u6Hg$B~r ztVTDh;AUw&s-lld?J?PKOm-eq)-mNgCaaF~;0cv{T-LP6x)#~kqNGLDwn)_p*>OUe zPblLA&w-XhC#CPC^tP&~R@vMp``VXkixa=?(o26v{)ep5F3%T9mU<1f1dWKV$Xv}Bhh zYn-ytDUD9q;gp?D+2fQAfwC!38Um#;P<92%p+GqrD8~b(GtgKSDD^?o5G1>TWN(n{ z50dsEsTwUCM$5+0Qa4)aN6Ws^QV}fG!BP_}%Y$V_uxtsIx?tH6ESp1QYlzf^NPUPj zhDd9OtQsd9$I0e#(l}1`j+2$4QX4AkLuEs#Yz&o6p>i}-1%#^NP+1lxwPCV8Oq#=_ zGfb@slQrS8E?jEEWka~^43{(EQWGJ|BV=`itc{S`2w5K?8zQ7GLK-7fY=kV1l$DXP zDpJ-&N^PXnMXI|eNKKS1kCGKpvMNd%qGZ`bSw2x#PLwSZ<;+BBpC~oavOHQ=MN4C} zoQ{^IF;c^>8zYS|(i5YW#Yk1GRL9CYv9fHEted0)CP`JCEQ^zkak4p1n&Q;*IH`%3 zx_GHdkYx$7DM9KJWOsrbxK=6>Wmlr?oGeSHNX-=4I7K#1k=04EE=lT>j;T|9Eyjtylg8%0R=%HBJNnwCy06P<>g!d@`ubF(N7Qi^K^J%e*bY&9 zJfSMx6Q*`}BGh(Iq^k8yly#nHwc8VGBzWT0I@sfhH=;a=s?IZ6YCXw(&y>BMEaY=k zy(f?Sd9uNiuTFYqs0L4=I_8xr)$92e?fR_b6qz~9Y| zxkH0B%UtFBwz=y3VDa5L?0CZQgjxDkg0<25oiD%jrujNyr};eLo962CgH>*>w*F{7 z>#)pchlGb6mFC0$I#_S}(i|>_%lg0$jytRm%&pGp=2pUwynnx^|2n_JUzd4>F9i4p zjDmq+UK$YW`(_qfv1akt3y!&ia#oIhD~NfO^J?p`IoDz8H++09@b10O2kS1!grUK- z922ag){W+5#{~1&Un|^YOIc4ir&;fLd(TX3X!xO}!!NA)Fc_xlZAZrW!J1*#I77MZ zbAtJ-^CoMy^*c-Vi+-OW@dQ0;g7v=nU*?_Gdb5=FiLt7jqn$2CFnJGHqnugRr_S5} z%X-s#(=kfF6Xk1$C#){715)^1XFIo$(!;;nBx9^#wJ zjJMW1;;l?ai4|rp{YoLzeAEnZW||J`to5+tHtS+*jxFyTZ(eU+Z++;v)T(!cJHoAe zXH>vQ{a!}vUj27yu>MAP-~0D(q@Qvmogb{v}{ zD;!zY!`6QdghJnzw~R1yr&`zQZR;lMB5zzZ+t*u9T8FHMtWSmpbg)CAcdLrOPRH%m zT>VYI`SHsK=goFrXPn-$I_>X#Zu7N~GsSKz>qQ=#abB>#V`cebtTyXbN8}d;tIzaz zq&XtZ3mmzQ`yF>W=I}|d{_Oj7`Z>cKxy}jJB&2U)YYg!-95bvM{r4*cTF0!jj?yES z+ICpo)~~H!JD#)-IK+CvY;=6v->}Y^gE#0r1Hm-yZO3psShe1*K*w-vnPVEEz}j!#XD%~u=G{W`ctcS-Zzc-2 zK6OmBs;vgz{i)-p@|^i=_#IR#zli#VW2SX8J+j$(hxKDC0gaw8U*(wbW5Uz=uj6{_ zbpQBXWV-Cp)cQUna24b1vy7#C&8xhl!7J7))_v9w9b>Hp)?3!)<`RxP_nB)P*YMt@ z$&Sg6EA?3JaPgSqlV*bTKURdf*?Qc0v-5K2RZisy@HZ*zCF>r<4Uw6 zIL11snm_iAgh$bjUtXDowAEU|PxN2wsK1|Y&$f;@ip<64VrwltYCUQ$;>}UDwE9zK zJmbt1-5SojtUs6!SS{8&R-*Zo!?1F#M#mLqnIqD=-F(Emmu1moW|(*LD41;Pm)0ZB z+pIB+kd`CFdX};Z%mT-Qx+ZIwW0-Z1bsN7<81GEd<(nmDiS-A^Nb8&C1B?mZB&3ql zVg0vRYrRIT?*4JnJCb>|ydMnzI<&e_@4KKcr3W!mCkMiIr};oEKX)JW^;@J5b9}tQTCUGGzWn)%W3=@r$9SvV`l+>*&)=A{%=zXP^9PRW9O-7c!_B*^ z?%~Yg;`3wibB0-Ae$P7V2sP6jLFSXRraqTgXa3Cmt@)z)g84##X*O7Utg+5f&T*Eq z!mW$Y{uky9>tn|xtCxQAAV=L-k$W1ieKyu*K4JdQEOBO-nT|}y?apNDS5_g%kVwt1?baFVur=9y*_j+e>8 zRZQ*C&Uk06wV4*rvRfldX3dohC3oeT(twJB|Rxvir>Yy(8KU=FOx|U{w1S?>^Jx+70Hz z&OB$4;~VVt-*7zcoZ+~U(dR}-g}IepxQfxK$nlu7z;Ul5!g;InTh2nqcjznMaV%m# zIu#ITed3(tbUFi_H(0Mbr#M5L0hY)5$a#n9@@LJ#+G6H7a`;Ox`dnCVzG6Cgznp%@ z^Y?idG;eCQ{+IVUk29;y+jz6wnpVi}>X}(|`bu4r&bfzPDnD9F!{H;K9hxHia^g_oYR-E;g zGu&6UE*Tm9rf2?HOM#bhI<93O>5s8mtyX?lJI0adNYtO7{q8@^y2gsPuHm=t1nU}S zuyeT6;mCL7TZ{EW_ML{6=eWtb!@8OyW(?7~^=r+=?y1)*34#z{$SdY3(u}GGA~Mm@hc*4hZ7d_=597$D{q_ zKW-IR1?F;Vb^mu4Ij7SKJNV3Y#5u}M^fTXAqjFSod3toR?TJ)`gA) zbK1WO%x^|mKQp&mH(1-8*E6D4T5niQjxy)>oH_qWhWOb8y$9>?1)5twv3_E{WWHpr z*1W|DOc!*&(wx=M~o5)^>QC8QP`ZPnY*EF?#0XJ+Ig2_U8rbAC||V9O3@T zQS2zTmiC9I2e#}O@27c_c?;oo&i~!s@!EG(<(O(_GY{Zc>Wv+1USi&BPUn57`c0>I zm{;=mi{id(e%H)5`I+!nPi4GLwbHEb*}afs)CrEof3;4~qT?K)od5OOY5LQA!f}P~ zyEEU8H*ay=;Ed>xotxerpfzGysh@9Z*uiy-%veYaRmAU#+j_#MGyN#`!v zLMi4R-fCj`$8Qyi^oMtwb^C$sG5prUch%8Q!TeT2xC_+IccHSMV$XxtxkJ#7A3G$^ zIKPO2_>26i+19^2HCT_-|8#wtAoSMS@y1=Pv(`n|<;~9n-O*0GaiL28J{axP#r&>9 zv~DVlyJfw()g|09D_SS+y$eB8G*Xvx2dP(Q6~W!GqP0=u)kVItRV1bPbYQHz{17Xo ze7n4fSo@!TH&7X@fI86cI?y$s2X~K)$_Dat55Mr1ZQ?fb3zQHLosm1}FF{YC{r92|yr8Unk5vS1D@2FeWD%g?a!^aYtv z$4|6#p%j(_b@0w9(eH#9L%m}nAPKN(%sjxRG02P|&lvIqQ^$o)z^)5ZVWCJ!p2%3f zk4+aD7Yf->EOHU~E;-(8CDF5L$w zMNmm1h>u8y0>IZ1_%Z@tM)Zk{CvE&>z^?HnunaZP5ArZ(ENuEgZOu&Z| zwzH#+1Ja`MU>;ERWmI|@^<6d#(DAbMunUfhOmqQyOk4?*ahZFQ?4Qk3fe= zG<8Jh13E{qf<}=m(x3>cpqAHmp;HX?#*iMfP2@`2E;dBuDtyG-w&bdrKwVd@6PZN2 zO{x*OdNnk_VK^fahp*#efU@JrA6FrA4dq;e?$@CEH9O%Lbc@6XLmZ%Md@(G64RBE8 z8{|zWgatqy3FwnR9oJ%KB65kyC1&z6hh*5x>kr6(J!MZx2W*;B4cIhA#~p<(ksBf) z3Gi7GIwhe~5^_nqp#}PQ;C}+3Pcr%>qfhb{ksCL|aS@k57|eqePzUImLU}0*MBLOn zl{~2ykUni3P~J4kn^q!{HW4T%tw-c0{CZP798Jlm8 z18lx|Helb)8-P4FlP6<8wDHOd6Cxl9=JOhfS-gS)J#I~eTp<6g=#WKP)@o<~>dflk zg$(%aHuB$A1=y9n9JY$w9t~-LeYcZ#d#y-L3}gVhc68LDEkh|zT=2U zE_HqjJM*T%beIRLM7|vEQGbNT_itDcv&i-LqPygcL8PIMciH3 zbXS?kj8Iqr=yo?{7cS#r9+dyxPLc10Kps>>GY5bJBKH))X^~m@^WGeo3rk=FV9UMe zbZ?)?Y|5QIg(Dw!-iQ1g;_pY-`_bwC$w0aHmjZR(Uk~{0{x*?f^em17H_U)?AWt!Q ziVp#K=8`_wCGsG;JVcofQRYKQBBdcB52wORzz+|v;n2|lO(Ngl4JUaV^?KL^$Dl{# z5oG6^B9Bt$qtscBO^*cvG7ApF8Ii{=An(F)kO<^?VyQ?4WmQmCCFNG_6sevB_~pq0 zp#G;Q^Qm@`B~FNjbeJvjH0e*z7g<^?@?R^U4h{geE%S#+NQQiv2P=U*%MQV5ksqMX z4=C>k_@D-UNc(c9hdi^9!(_3@kC0y(FY;sJR|#O_Dt!Lm0njY+lLW|u5|K4!BF`p? ztfjuSdjVUXGlYxhuw3M)6!6n}k=i-17_hl^x5)DyBI`#(3{cO{YDG3o7x_7L|GZUX zqX~^7zbJ(jBAaFcy1#(#FQEGisn8{|IT+$0TjWK2wgsEFltZt`Rwo=3d5QX7YT@ut znRS$3mkzUFF*HGk$jd>H2>AA8J54R92CMC$QD{bZN{3*ayy_X<9E1v_7<1M1p_ z-PnM?bTc;6@B-CG-d#GHd5!Wmq9%o0_xr#3RC*o z&S$5{Ym~KvvUltSeEzy2vNIaai2P=s$gUhfw_WJ=TQ?Mn?A`#o0bjg9{x>N14a(XR z3_T)mjsxWPqQ~BCZ~)pweir~op^HX4yM6OSS<1f{BX!0A|V-Qk3;3KO5~4oVJU1BIgBlT zIw;b#N#xJOAE_4kOQT5h6v%@z!1m@XfIphCffqV!0 zb)a7d<#%j{X6O?6C>)X?ALetq%lA&cck;bce_sXozwNUziiiijJ?ljA>p{hDKb7nj#V?zbngztEBccrM ziS*+M>V9)!vnZ2%!&VB;oCt!b+%g+zr0cbJZ(LIXO)g{!3G9xPh{Q@Z`ka7YS0A&R>iW)Tsmcl03D=Nqh zqy>@2n;caTy6}!w#XHT^=qjk?U29=51zJP}7xPY?blAr~siS?`a+zN-GT~v4|phGzN zTv`aN&?ky>V->Ll_P_~Iz|?MdIH`@sBci#wdk8z3e=lOz1NKf?7S`u zsN=e&fb8TTSO{z3l&I^;HzgO4ow6LrGllY}oD_8fW!{hn*q1b0)Hm7wW*MOOH#dt) z&V)IlZp6kL(dEXOPyy>;2Vm!o?V?T0yh-G z64(j{;Iycz8-emtNlTqCYT9B^X-PocY1oy9ztRo^_1?ty^l=ae=$eiV>7Al(KF<4m zBLKOK8Bh+$WFT`3-)~tDM*zDs!yo~W&#ZveKpnS|H!A?DU?=p5x-A!Km`0lr3Fv)0 zHs;`C&Q;YN24Ke>r$pr9%1lEemTPEt;==kj}QPW#R-B}_kADMh)zJq=R z#NQPN`$Ww^pBeam#uC6MGw{iblcMgW(Gq%WWX$_hGrn`d)V;3 zHKK}ELOtwl-A`(EnARo$M6;R%NIvsoF zV9Ol*J|`IpfcBe%-E(${;`~+Jzd}@TIvf%8z;0-PZc%fCAQ32YE_vos|6I}^#D)iv ze-IlV>=0FA0Xmcv!2%#(3HcsE_Mt4m?ovKW`FxnX4|jN{K^Wbg*|Wr`b1Sx zepM1ohk1Z4RrPQfuyYZ*FPa2dPz<#5qOEWc&WNfG1Z=C$f;m86t=^rcQ9{lEC+o>sN2RMZc) zi>kqfA1)WQ93L(374=LpREt_cd#%U^^8Ba?PK#QJPCrJsRhgpxoA&r`WLFo6`U&~g zQ0AH*QER6FeqKwywd7xm4QtVHEjm1hj?Ya5%6@JJED*JhxOI7OLex(;imF{J>Us28 zpC#&Nu|PRLYZ0}fP}I*?iQ3pI>KA83ZQ3h}JCD_i$ZyGjnSkGa84B@G1?ylt9Dxo| zTSo&v+)CM7=fGlE4?E!~bcuS2GG9Xer93Eu6;KD*@DgQkJGA1iUsab4b72|K7wYx^ zde+h3UPgzPCqpijKn-kx{cu`Ty#+Cl4(MHv-u38OzXQ4WTfTBi z)HdX|MFaBNW&!QBZ9SmFwv(cMWkMvlUgXohZ44cOU`0NBw`3`<}W;MWGq zcoiL94Fl|8exhE*j#shuRr0*L4_ZYvQcq(zOac7WSPIzMxEc0Co2Xy=1G@Y=8PMg| z3!xTv!3j~@4Iq8H8)iZktcL^8F6uS(e2wy7L-w_5p#Ilri`Qt29i;6bZO00r&K<{~ zQ`GBDh=L?Q_t&xSb!1;(D{3b``ORo(5VeascbyXTTXgh3`M;sV34g%nf2ZER?-g}& zIiT}DsI!&yR_gbHy{(!({T$=7Q`G-D0oehP*v^IGA)w>`ZW7f-KWSSC`{9(Re`3o& z;~)pNi8>W2>b-HIPUA!7U+Q!j;NSO;iaO(l9nd4{1M2u-8DK{{+wBEV1=#T+e*Q=R zyFWtyqm_XCN8O@6E`l~uUFh6Jy#^^SMGOg&Nol2LK)WMg!$A zk5hfQPz=?8yeCHtadW*V4ho?LI>j)ufoDV*JZ-^P1NFdDLyQy9&D&adeu-ZKAn(UB zAeiqNemq~ouR{zo5GFwuAa6FpNil{IKMa{+Jegt`Pkk7+Q4IfOVhktW@C~pF&WI7f zlOIOpLM`y!azl+64z8X#CIjgX(i}V|!qFz&Spqy~#>q1zoI8ZagFz}ZLzftVqXGMv z3mSpP#TXR`lsT#t*26I|f_N%RP!X(z-Ow()!x$)+xuJ2vb}>eW0cDKgsT^alc?`M* zQ~!meU$_F035kUgSR%$)bREl+I>u7ZSo9x@kH+qW6VN9H*HVmeiI4+xVJYB~anwH! zJ;(KkaS?vLC?2w44lD+Az6f7&?Zx2QixC( zVnpr}V*+h3As;%$h>C<{m*P9RlNiZF#>w5IPehXmJ^(Vz(nZlS729qHdke`CCQ#QdKpw211V%$Jo zHzYtd6a#kLfZuP}4adbuS_S0$CL|+sBl0fdQg({rM)#@MGZnp3*N8D~0q~htD#lId zl1{ldhl!DaT^TFIxP|&}IVDCGe#$xq_~EvrVq}viyIhQ%{bJ;1!Wl90wu$lWA~B|8 z>z(){KMMAW@f{b;1?v7zvls>FT(BOHxhoCUi7|uvW|RSC+>ITD*j9-D3z46RZr{V7 z-#Z{ikpc7Jv>5kPh%sxS826IrKIDp%pjC_q1km?^1jvHfKv@s0g$6hT*fbYC=Th!m z{5_ZY<}QGhK%Th=0b3t*Lk(ba$wZh7q(9^jl>N|FF-n6W50HJBJP+>>ql~i4@Jrb; zXc6Q45kUR(B7wMh)c?plI4Q>b7{HhF_lof-@{d--88OOL{m=lv7T5w-}EF z0Wy!JLIIQkWj?k+j0GVO2fKm%k5ljC==OLcVE5yFVk{)@!fkK_DDR1JkPEcW6Nkm9 z2ms2jNQ0STRL&5Cxr$LmJ&P!R(P}ZO695~YEEHogK3q)N;w~|sN{978JxglEcpAU` z7iBG*EXEJ8?FX%5)NB{yhjn5scfnHF1P8=;W;D>&&ukH61@S)$hP`5}r0$iuV*Hpg z_(h$unz~o-0(|rn?Egs(@O=&O&!Y3Q#63F?h<~k?rV zbc^xR)ne3Ael6|sJpNf<4(Pc41Ypb0NZ$|wC4f#pM~|PA=jY2|Gc>^|F*e3Q8BpIZ zoG=lRAQ$Gs5}=)a(IUns^w`8F*9(jnNPD3g_5(V+K%JXoAqN)1G3XTI#Xunci|D<@ zA0hyowqWy?HNtCS0e}4xTYfoP46ZR4TeD#$oDt)tbeIX0`4Tp9?ZJ47vR~>FqYnG( zl7aL(Y^y`2Zl@S8rvkdx2S7Yf2G<#kdgSZ3!XfAu%`c( z7SNk>X5%+$un>^>O|KZcvVc6l#Sgzl&);^7u{#0K?Tsoi_Mrcsb}`;uBgS5V<6``- zT#S9xy{}P>-%o*UV!V|o#({V-{wENkVS^Y4TgCVTGJhzA70>|Kd&mvwcW4eQhV`&Z zj6Ws=cKoqTjKk=DI1DyJrx<^l1O-6eKb;bzDF7m1HehoTWjCD^K#A;#PI{_O(T0^~imQH*zxdlz5*4ZBZ} z=Ops~K)y8t`2N4x&_?<{yTmxvD+cGH#(N2n1L*Kx4QvJUJ5BkgV*q_l&jQLmy z{UHk6PzVcQE$o1!&?Cl~P?!wUVIHgj>_2k^sQZHuApL_pC+v!1j-j`KVotPW0`JhBP2w=MvZe*xX5<=kar>sJdr;mz*|ke_p1KXW3up#bK=a@Y*};Dq=MTvD03LkQyg|u z{QSoOPkZw(0^MFb9^xM%WFM zH-@$d4uM1q4&ygA07`%|#^Td)_->#7@uL-b4e^@zya|KN8fPdE)5mG2!V3(8&CT99pV>Bdqg&g--Nl)C4N!Za+w>b z>oU?OQpUttPzCE?I~;)y@w*&7FOPvVC<5|aPG7owCma>OXzY#N11H4q3IiemU9QLn zbiHB)Y=!;MDt}%-X*U&Gn zSq$iN&2I6FN00b;$aKjrsW8MTVO&MLO1RyvJ~^&oQ+#_@$e}|#XQ1-Q6sebbzm}Gq zoJB4bphh3PNu{gN5-KYQrLsk~s8VsMC~|so_zAhce~M?mXZ|8@srtPXBPg}PaO$!u zRIV?pug<~Lc3*1R&{XEz+@Z+?SQ#p*RdtA@QjHqtlhtpC7^zG4Ywtt2Qi7>5Ey7zs zrF1Ux<@)z!3{8z{Ra}_O&^4U+ylfypzZY@q)T4u`R)kNxHm_`j+Urx_Yx&jacN6-B zOzGYh5#ic;@Ze`08_;gHx1Tz2;8goi7rSMttmI{Eot=48<&a7s{5zjlNK>U>UubCG z;`5z9sH5${_*NAnQlc$5;!C{=4evw4$S>5ebBxR78q;}X)22;F@b71}9i=-&RMfea zH`c6K^G3_Ls73!m^P4~0Tj(<@%+j>9w9;vGpn5s(4fPdh#$|;sG{>=JOH=#EgoK2V z?M++yTQ*>@cce(Qr&Yy>1ZnFUK5u(+tFlD$bn22!k&+T=$q_YrajNW>9tOQ0 z*{(t(rqbk*vQ-)@T|Dt3XNyZVR-}0RJ^mHq@AAyA_^gg51>&_XaUt?KzZB?HZ*TGB zk?ytr4s>~Y=pfLqW~D$E7< z<>Wjt)%OLpXWu#7B^!qK)>Tzi{j{k&MK zFfugAtaQtI9Y)T|x=xy#n-dcgLt1vNcY9{)FgT(Q_qKC1n$p6%DX8BQy0vH`?}#0r zNxxQ&xpuEECv6LI5zTGy9Y1vFP-f;WV_Ta$J9n&GjE2vwS+Qc>N;a1K^0ROAS*KRH8S;b00iEI2rh!$Q|;dAYbauS+v2orZGxyRry5J z$x8FPZnyj16sc4B6)t5}rh5tqcX__e;V{<|K`4=Zi@%zyef@6e-YlynQ>9CaCqr^o zk1w57W}fTKZRSNqmetZSYieXjNXUd~vsz|7Je8LotS0=#e0Wxi6joM^C@I;r>4jhY z&#@C7l_Qoff9A*Ajt>hB4PE57XV3KM-rf9#)YQ;-cGEr7?hR8tM0WC}|7>gX^$`7T_J`4GWaJe|85tQ#S43WW zU6j+G$L`>@CC+&nkwI#mi&%1YCJxP1C)mC^R6Eu_?pJ9(@Uu&2x_@+mr4MbB$ec z{WMB!^oAE@`LJ2(=>@k;sQ&CYFa=%v$ARiE>ir>koK2*7W>eqi#=wL;OH<^C9Qi-<{J_z@>gzOt*HeQ>s90YM?Dn>4|M*jde_qBvLT6)0l*)_m zjC7v+>wyD@juec)mCU#TKw>|Sbk9h9)-0nfa zuhGH1-kps9QgPp~@Q{!g*IYMy7Gdw<@iFh|lyLl>f8m&O7#2NS^oDTg)-I|Jdus3psdU zM9cAW5tAlOiu4>$(SwdLd2)+)W5n@8|Fvw{3x7N=ft6LmJ5C(?pZcGzU!TH*$ksR_ zB9?@OT{7(Ww&hPRVdAuoP-Uithli)7NR_PfYi;%ScgZ@{+Ika7zn8<_aEO;EtgFyx zo>h*Z*rcr4^XJcBy*f75B`f?-ojQGKa`q!BdRE>)LmC__^Q5eQ57MXDzTT{lIZTQ; z=H%s*Tq!{uy)zHuwAM=BEM*iqnDh?!??1WrFY0NL7XQ==zmi??HI-^lsarP49L^Pr zX0jLMtL%DCp9kkizP^ z*y`3o7oF}rtNfcpPp;)N)@dzA^w0gvQuVyL3Kc5kNWbSV`C=_b>cciiZCeG#20b+N zs}LPOWku&)mmEG%1wVFny{`{Z!Ds1J)R7w@!DG(1lzqTY8MeKFw!JBHBh4db>X@Nc zOVqhFYtBVU2v1!d>MZZ+yP=FPa>|IJppz$qvKK7Ko>}oZ=Tro2(X;fCO`PWsv{wJ< zlOlU1l{vbqooUa|bz2UkR*=fgBCRv+8Txst)ueL!#_pLzXXw6JV}Z91xn!lcllbZ# z>|wioJ#5Zk4;xH#`O@kJ(}s?Ev8j60+d0!7^#eU^AqhghQD6RY>5Dxc)cLCHaVoW8XBFG?%-rS%P_-A{=>q{M4m zS2Y;dPq{w4x8v`xZEDC%8Q1ZrpR8W}R$z4NvewpUzt@*9U;g|bd&k{X+Vtkz=X$%w z#K(W5NxCZi6BBQnks2{_QN%fASvPQgesi?nu|FI-)YitDPGskacV1qyhZIETd=UhE9DCmM9hA2ir)A*$IgR@oU$EQx8e%gIAcr~b-ZN4io~I6o|ysrLC=T923)4jnODGKx}*k{L0VyAGCe1Y9?) zeP{R1K88!#sOqv9R{GEE^_-~`ZAOKLj=v%%#_e9ZbZK2j_;p1C6Z#A9y)h;t?4r?e zsmYf|1buj%f4rD7ptADf;Hwf39!yTozibbar1kGO_el;DwE1(3y84W&VO{U+vwA+M z9zN&hiQ~qN>+VjKgM>eDp1f#Gan41oLv&nvW9-=X{(7qQj~{*`XW=w?o_B}o8S*c9 zcIJHCvb(Y}ATTU^)~sE-_FO!bSB3wIqwufH$1m8O{P#4^qn=D}xRsgV97Vqv<{y!~ z`wyq9y(0kkPy)OHWVHOMhchQ-g!+>i#tB((v%; z_{oXaPnjz7D@O$cwEhw&Jom=&4?~mF(vG`$dS_W#W#EkCt^auU=rLaK)z{Z&_%D(( zZjS%^WToHD5g)Kr@qJE&zi+)Xw!pF~D%#qLi>K=KYwE0W6c-oYeM>^j1s}GFtI|kM zzbBQRvDq7{hu;)+?l;e^T^sK9OxJ<+pu&-TeINIR#6$!QqpILU-|SYmzkP&?o8Nzg z%B`S8-x2CNq|c!x9kJIY-RQn?T6TVZKE3|ux=S-pkB?uoCN3`j8=o9Ga^%yi(pbIu zIj=)%sPLNXZ%~ox*KzFVyZ>lCKBE$YF+1>hT3T}GhsWP|4uAZzHDJ-`+&i=5LY!TH zYij!Q&Yvz{-qe(rmm<4lmtSJyiRe_i`~h!R=XZO=CoiVZL}eA?t_)0145s{HK@l+_ zy&w1WVPR#zwZp^Lu6^z|=b~;(WoqK{$O?5&y3b;crMg%95A&S|3@h?)Fb3{#*Bb~D!+iS zdSYby2S`s(m2vvm$;z=t^tTxyZwrz4Ut#Cm)EOTeyM24?MZ>Ctr(8aQHH?rcsX6yO z`e@0D=iltSGV}ga_AKA>Mct^olSBWsetlh77-xC2Go_f4J$-!v!>jzyesrp}b@$V$ zp1b=`YD59ZpC%{3VTMYz_W2GGnl)?E{|)Oyeb%2Iw0`K`JldWQ7FXyD-tlWL-dTuu zLW&}fXJpK2?(Y5?E;?_;<;!#q|F|jcHEVk3rLb^t^lS8#Aqy>Eqst7QwJ^@{r9*qo zdr}xt%nH2MFM~ZQ+UL`~gFbx{pKZoxVx+LcR9v!PPF75Cz^C2a?QN(2@u6XSWe=XH ztPHZwzO%Qn@zqy%L_}N?9zHhE`jTDFC|$-J;W4AmzvyP>i)-Z9(oFarL%{}lPO3vn zOaD`c4E)TV=u$?d(b}4S6JzC@@}ctAL3*Wocy@M9PEP)e{IB0vhnx@AFzKWha*p8b zjy}KNgKw*G?d9R&6Q|93to+eygU)RG;qth+%f|(o@4bEWXxq69GmKCF_t>#xqo!tr zhu@XL3eFFPEnN7-cbJ9-MQ-2mx6wDaau}2DoM>5nXR9t!7er5X-*9DG_xmSLbx+95 zh?1rCt>->%lf*?BPviBpTu&gp!5LhQ-~Oe4 z`PNju5=>a-Sa?T#{CNM5PoIAO1g8%TmBU*~9x1%~^xhZTo>CU{9~!petutrNd{X7_ zclOl#9_t(n`y)<{x^iN~b(izXL$}n>P)p3mvqO7->N^7I^C~7;LuR5a<(=g%(<@|e zrA)4rJ=1t#IY)TdAZZnnQz=_~Ml-eVRS@(Y?}%4a2;P zf2oyEu{v!S`YOSm*;NDMfp0#RD)Xq-yVlv>eW4EQ@#5=T~@C_&aNC7BA0wd|8%bw zF4^R*=CeNC>eF%IppJt+J?%?N`l7U0Uz)D@$-!P@``b6y+%?r>_P(?4c40LlT98>)ALZYW!*2RvYLs^uFAnP z3*S*9M9X-!IzC(N`mEnNeIM(`Q}lfv+a3Q9JNiOwy}ZZ^%bPOd-uNG8+bti z>&OQW9{l5bT!^Y1`SD-2*Vb;YTgx)^j~Y%^8Yka=uX@<@sR4|9Q(1A>;d%dur(ZXs zy}f;^caphZUgC|GdNsMy-*H3P^yy{Xa{L3m9!IE9x5ZW(u~!89?3#)O1!xd4u-5x8 zRT=DS|3azU8MAiojBry)pY(lM6$kof)qm7A5?!xGS5prxO)jYjIMQ%%jz5D-NF^8S zQa!1aajLWR*fazh4~7X)RCFv_0mcvl`dYtux_x0eS0=5 zMS9QHGvzwF7kk&^BJ}!12)k6!BHaN}JPXM%*aP&)QDGd@(mGiZkpH5wGbDsjM~>>$ zE}wJ)mSqgFZ25>s@3R>qDc8SCOo2uG7gF-k}X=)7*1hnP;Xlk1g<|c(Par)y^yEUlSNQ$}b4% zUk$EfwD*o5dfysJ6R`Hibfu_ebYTVkO!nw8GTluj{p+Fw`=BbsjVrW2-E17P{W-V~ zPT`_0qg)3Qw9VvMaKFqNOf;WVUhne zv!&(a1DERlOM%87c>)o&L@imA($~?~p`6Z?zOKHmA^l>w_Kz`%vgtGa zXRh0m#bQuP0-!WY85nk=p44P@Nj@>Ekw*LL& zi+9|ZqOTwYVW-OzSD~|b_q=4}-4VKHFZ0XrFD=zw#4jQuQmZ@ch&~_aS9nu}E`CTy zPmwlhTa@An^@LUjaf<2d@V321XCHR}%}~3jcHQSq^z8t0a=_HValmIyh;7ZuL2CwW z&9+mQ4yF!S@s@0DD=o6L-ENUA?3_+3OOM-ArbE!u&HJ1G_9?Bys=(Qv?c0;xtbuYR zSoQY0JPXZqmrKIGXbEMg-Ew5A_X=8rtQvJsd_-7FQ`6DEw;cY<5tnPdoAHtb1=ZX< zl~e1PoZ+@p38NO)%d@e{n4*} zrIdc*-q?W6`VN;cPrJQ04ti{y?Xe;L{5C$xp?sQ}T{Y^ac^S+co}qK<6~8*Bcw1Rn zW*<`jsy9>y9(uRyy!EA_&KXuSY0}l6)oC0B+@5Pav4mvL1O8P%TvihsTca=AanvyO z*xf!;cgo7ZqOtEDJ$m%-tz{*wH$Ieio?9yP{cx#hosZVz$6r2$vzr?(AAiwsmV$;~ zG=A!Rto7VCb-d@VtSNqYm!o!fHn4y%X=kg`7S3s}zsRbM+d*qw)V4Cmkt|Y_H5eF^N%{N4s6*OI0kgJ5%F5ZEYz!$FR1x z_DkH^Q@JO`yYQvG=ovXaZpJh$_^Fz~h(bs3HhxQmOGPqb9W+h{1Xcy~d4@Spo^XEi zk^bug>hb)ktcnMF;ytly%a8l#sl%7O*~#xFKJ8n?kB4c;)7+h~V(_fUH|Aci4|5g9 zS$&DsHwFyDXT$JWB`MXF#P{zFgGb0qd@}D3%ILA!URA!(-9O4bP@yw;`;6}CC6pO+ z?`40x_0|X8K6~~{be>YPuD%ahakj(TooeEN-=D8G*k_!1pGt?yIML{E>p zNYx@!E6@I?Ve=+=R{l)b#YMLly~uQ;fBTXfJzpC3E^ z-}rX0#*cg>&-lSs8B81DOB*th4W`lY^hk8UpxnSr#wE{qCmNiVeP>878I*m`C;RB2 z>|oj_zO>&Dru~21y?a1Z)%FLz&zT3qFuX{hEmRJjJSo!i z1X3cZMnyjo0d3?9ggBdY;?7@N-JzyX^r>7ye(%ytY(__=ram79Mm%WV+qSS8QW}K- zrmz=3WXh22$j{ID{ET@_voNM7Fs3mMDZ%Y`u_{FFEzNF!wh~5!$-^@5UWpL3E0t}3 zk?Acm>g-Ux57QZQB+J3~Q=s5e3adoTS4x z77+e}P=j|KDYZ>0o`3r7ut8w^XEI`PgBi-_QU#(memg4C(<#{}T^Xm*XyUM#aRM_B z-d7?ZZU*e@qXxtH|BO=iVZ@Ob@$mUoRr5VuO-*NwXD_g>9v-f~u>b(X__%r?{$dyk z|7BxO&ou?CmAt&qj{Vx>=#MTKNR^OfR}~zZM&tJ%f_pwBui2%A1_y_#uVT)xszZYz zK=Sd7kdTnTQHri#jYi|5MNg(pRT%$$;J^VPQbHrw%h3-F*(Q=F1?q|JRp*~c47O>mI-DFO1@0bpMRzMXR&q>ovWDytu^t{uYKPy0zW5x*_6EilR9k!M zNMX?rm6a!cZM{C?0W5?056ujm8XgT3Bqr*C(Ai1z6B0rvYEn{CA_GI*e*3QEyK~OO zozvML+`nt*uAMvjMZg7ip85J950{k3h{R&HzqiLk>+4`|PdBCO?ANW^Qrvsrlh3Yr zcJ7$ovmdTA#PVzUL-H}~zW1Rs6yo}ftRFr9era7%QBm=Ct*sr94c*q+f?wJhaCwe2dwd(o( z_v?DmbtfkXHCQ*|=SKF{ua7WAz!;4%y~zID>mLqnbHGkREg@)3KvWEp5w5O+jJS`= zh}A3V>w%~+C~e(UV`dxGTAM%A}L9b6>pejg=F)lr7PgCGuZdH zRDSl}-o1On!ou7yR2~N8gXX%-=NLP?KUg_|cpqd&7j87m3@YabtQ-eFvz4<*M?Y|z zX4E9y>t?x^>I{NTs^#0T;`tkImqu#g&LYd5gLfB|AJtb27Z2#G7L7s$2a*o=3ckfc zjVYNv-r`%d=q$Oy8x)o|+~QMQNBnp%Mj}}};KiVM8(T3ufl8klDRV21pS+^T4EpLwuGmU;b#In}_sVWl4TcPEk|KHP#@G^}bRKNOBI@J!IAFNROX( z?b`KSYqP8a8^ood!H;T57I1)@#QBA;VGAPRXB05TZ?aFVg8lps`38*6>o}t4=V7EG znapYCbp9_p;WniXmOPSeGfUO|(QxR+uU?oV~EiHuxW)zNWpQ#IyhQt!RY*)6z_|M3J; zi&Vygng4e)Ie503d=b-OycRQV7J3W%o~JO&C3l`>l`pmY%N8?s!hIB%ZiAW7iB$AP zDEC=9Q5n5iM+RgJT~BNA8S8}$7tRfKYWsHI)+l70JS{jzP0KxA$;~h8QZ}Fav8W!{ zFYmENeSd%SgnqGOA2v+{!*qy)FmX=$QA5TDRGwW^dWEXHR9vZ`~uY zD_6xom6?gWCj->@638_0=<_&hqYl=Mj#2#ts0rY((FvLv@QR zPFa8S7yyEbNWdjl3fVO5&f0cCE2B{kCj{fgyecb>tE)^_1CvkvLv0b*obpUH5M>lM z!ed8nN>*DHsEXhKG&$a%-VTYUF-7YHx(}X9sT!**95KL6f(M^Q1Jr~lFgFZUp?Orj zO^S0>SZaAI|9+dBSax(n92yKux5pI5utEi14IojYKNl zzaJ|?hqTD2S3f&<<;tY{^bFk!p*B0%Q(Hk8s$edVKq?{MfWX{LHd94YtHtk|$ZobY zcGYyMwd0y&ih|=)fuz4LXf`pWzBvkd%l@DzYJPuMh~D-Hw0{V_T?c;lsj2bxt^U>I z;=Xgs$JOmlYPH(7)p-1Psjqi_{*gVq_a7?y^nK*jeD*!U@H%wWKunxnIYQtco$hiA z$4(NW_TUs58HI&E0v~*#v$MND%Nz{ZCCZ#K%srBHBh#o5lcE#P4hRTHjD+)aKm6oX zq>1rW#6vl5M>B;;9VeG@gp~s$XJ{&{3`+C2;NHWWE}ZW8da+Y*V&an&K}k9G>1pnL z#k+U!eg#R>WIy6t_=vo`{32G>@X=~lnZUVIG0ulDPWPQVeSHsmlKK-TPn=~vRjQpk zJ^iOAB|Yr#d6?vJIythn2a;8@1}CeA!`eE+J9PIj{&A65io!;;K@{g75D?BN8Ksr~ zkY;S0Vt;6xaQb@C{$h4?Hr%B_aO9nf0@)*^UR7z<~|ZJ#`#J$}TW+A?T1!*Wd+&WwQu(X3hg;yI*s*;K8j>fiuWhmoNP3aN;bKRJwM3i}kK7@eGk)}ksUa6@WB&DDQ)1htDi?4Ke%q0Uti_ z4O5#65j~}yot>j+@a)GS@FBrX-oZ1T;dOT%LP>h62hlIRtmEgsFmd<(++om|7Rr&# zJZT7fVhA9ZFb6 z|9z+yul5}W&Gv{D{MeWh4G(^}D-`oix7c?p7yxpCdgSbNv0kHp72hr-R4(zoLzii6^0) z#MM776Iv1ALUx&HTDNvM#Md8acMDH@27ltLGBPqBo#Z;iTF*-Ch8nD!&X*lH(9{$c z_hcm8S3jd-z|Z7k`4fTCg4egb{te^dF&#Rgp6=n~U2JoDVvsG13mk3L(S-ersXZ70 z00XZ}!3`G(H^*wWf}Ioz)#yvy@g-TuPGT#xrqyT(pHkzL!AWzdVH`G^3+L4dL?1Bq4)0E6#OGmtQw9ZcY#EErix8p`ofwQR;>_A^pdIRthJ=i zAelSORW65{vk2EW4$sUDZ-sU~)YVSX*=aMx{h26OWp-4;?w8(IDTJW9sWU zgjUFW1CfR!%>+EgYGI9`U=tI8sH<2<0ZEYZi=mlYo373NWW_Vqub6T!3^0bePYsZx8XiOLTsdZG%IUY zXh|g`#vv@dqa5j{|2dla`+85EI9p9i7mQb&Ezes|for%pu|spSGp$1aO3^)3m^&v> z0sO4thiaykFIqJipOcmx_4bZATwQ$&(JY)in0#=~=*R}d@3m3nD5GLjgr@D>fu1*+ zRzH}qx6khe+Ao1yOE3wy^;#gwz3I9c=jVEMKF%x6|=FkGH-=8zKevZPGbo9D;e9 zjM*;S&d;77+NY@qkuOly#l$SC?&^x6y^|#;x1)cpc%R~?f0yJ!FJhAbmbPT;2qO~D zPhVQ%jZiQny=5o^1rz@Bh}6P}I{wp$e1j>^bkY%-YXuIT3&^Hmc$UaI+HUqNEy9SF zgKPZ!{der}RW-IY_4)fuK(u$~&Yk<~9Ii`7c{a5+Gl3HWka@dv=UX40b?UY9gohMZ z{%~YcFSpuRFO^Cie?P=Y4}Jd`JWW|zzSfYr!J)&_0N0O!ad!{Lim$W@3yqAN=;`O> zhKgiS&=~0TA^d0Aw#(w~57dTF^z?C*!8ePQi0ey4$&q>>S{ykAW3S^#?90qmn$!`v zQcFX?0ERy9#UZe6xc$#*o@T8t93zdxNQZ>Ze(HIeT17ntt5$V%{O%I^xE2CeM|9HO z-d?#k>eWem`z|*$1P2?Cam6VbzF5C*-4_k+?hR*Jp;Cy?9(s4r9zIBpgbCr_J$tnD z0fbY8i@)2PoxODFviW`_9^rha@&38F1|~5PIt4mQm5sg9mHrhK{u7)94dPMsYz2B2 zPTefZt}eKkKm7)Q;EIwjcC7oVV&5i8=rzpN4biZW9z=j#xRO{y4s<+kRO$0QRPs&1 zS?A87F;7y+B>5b*=oTmp6_5R*q8KGV}; zZeN-4g5IjRyriTpAbz4C4=fm6EhdjgaPP68nk~|xLGa>Y=e*U6JFp@>Q_NnH6d?Vv zvgs~BJ%&-B9du*6o}QlO!d<&Q%H8(n#tl2M>86>|#Ov01c%XF^XVu?-)Gl@9N?;ga zV=xMPJwTv_?!jd*NN;$=QPJ?iN&h4Qc`?Sx|=+c0TG#U6C&C^W-p)7~iR z9YzRC)V~f{d>`sr(a31?&i)Ge@-h12)ZEeEh=_09mFCV1eQ@-5o$hGfp+%bgO4IY> zKkR6p^!S3u!`fSiN6w0yrG|&19O3zsoh|L>WfOcSh>v0ZU&+qiimG6oReAaG%9@7D zHw;sH+Z$^uk0UT^-T0+JuQwcNunH|G__}4ddgco&V9D95HDMF{{3hHVrndgQi!50d zp?16QwSi4beO^O2djN<3nVFgv8>Z1{?$f3MMX-;~H0Julp=qg3U*vz`l%6>C_kx12 zdi?!Uo?El#Ma+Wr3yJB|CWUJ>5sydnoKnc&!;tTo7eSJI&MGD*=7GR~fMEukVUzp= z!eUSqvYUo8_%%t^$rlIo)}*JW&mGrsB;52O3N$)co33=&SYPYzz9y4*bYKfdpiQFt zvSaKc>E@L>9=&>i(lI!=s%oPz^L=S)SlIpd`T6+zW}+4c+=+6C)mKYeyu8|_sQj3l zVPK?EUd0C!JD`}t4=_wIRgtYO<7XXe5F^OjRCq3*X|ipbTz*@T z;g<$gZ;m9Tj4!Y-yCDSra~0>8ZY?CtufjCEVHIYK#9I(o_6+Pf+2$j4PTlt#lPd7UD#wN``fnt*4X&l`EEP!g9nq6kQHZDQu1wn zS$8sAGcS=1h*P|n;N>;SL2o_&q2%t);i#%p!jTe#P1gcHIL~WpE-9lHXd%Rok`k#> zF(xi0?Zrr1#)7|e?BmH@;dHxY6;$`!&&d`nc*6gRvHkc?;6`{ko+;j5Qu6B!y|onr zk(Cv{R97$H$O7{!0fbn{)e@^n0!MTDL~gBQDSm1&e}YyCOu!h2%VdFpOPZUTFZL?O zO#>q2$dMzbSmo$hOO}ujPNYaqR_O2K?-i$}DwTWamW<14*&NNpA)s{x^7H6bX!V>% z4jci*0BPW3buduw!o%x=UX4VrY!*p<3iI1Hgannqa?zoDjUHva*0W7%X%Vnh^5MR& z5cSumfHp_bY)V58Q<_=AkHj-ZtH1ya#`$v>F6`+s8ad=VOQnzq>)`AvEDQ*M1|+j0 z5}rF))^%{XFe-!0MbHFppsQMe=jm86a#nd;frycS%H#^|G|QC6!$$Q72lpo>DUIJ? zTPZy2Ad@-Usxj|l?OZD>m!wxz5N}RIAv^yWz9U<#P%N&mU-THzY&<8}KAV)Xbg825 zAmW9ep0Nw31{t$|Z#ZIRn?aS$oT#)kGV*Q^J)Y=g0D5U(QsU(`$joZyL|qz9*B}ck zoXTa^*H?N+JGF}wb?4=E-(su^bQp;FlM)R|)o4rvqAg8BT6G$B^?;P4n8G#a1wlT} zQWUyeif}(v64P>dM~`;emRr?<=S>E~H-jOp5aWMI}GtV*)Gqag^ ze2*qqkWlj*l+}$Q?0M-Ak?)~Et!7eiJr7h_lNt#{lzJup1-Nl)%y^sre$&vPm~<`0^I%g?kMXyX$=rg83dw0r z9Fc4K+W^#(!YAmf!-BkgJpX-Y@qEQB$;%(-AHOW(*O_&0{;?|^SB~W$+^R9XU|>@G zqhQ(>1LR7B_}MlwA+g?VfQ?-m8~b=9d{eY=R~h-xZfR^xq&6}pb|&J_vu9#m9fZGl z9Vdx#B8!YhJv;Kj%xLuXdvi9@NwQm%nKTM}BlZ8TS-AwHT(WXCwo+m+kD5mQk}&EK zc5b6bdpIkVets)LLrx9;wBVsSi;Kti)@BgcUC-vt_PMMz^ekKf%%-o{!e;5LxhaB$87PJCqf z-xg#An_hn7vr>Qm0z)Js z@CTrgZX@e#(jUIx7hgd!Nss)K&#M&IpB|UAA{sMsgD)d{15{rtOMiI8<&KW{c+mSO zXB8qd^&`s6>S5WU?3ztO!(mzq3u%Iqx9eFlb`hYpmUqwd$c8(}u*s#Lo7e_!_fk0*V`kMkKf%Ka`!3?u@RKd4yTl1AUfN(0^8wOaqfm zqJc2WWPHgQ{@?wOUm??p}VPr1*_AtcW02Bj%?Obv`-Q#MB8pKU^c8%`e}-@ z8Lgt#N~rolzljer$VF9kDGfC1b}!LmX*Kg%x7dWJ`vkQfY37=g(uFmyY}1efSoH_> z8b+n#pP7MYK8HD;5*8+tH8iYVta^i!X-nnzWnh#RsiIHp{jv$NHR?J!MESq?zXdybzH6jWS% z?4s{{tj@JWPVx6UMg87s|D=&D!F#qxz9>2)Bid)U`|$hH_;T2cH|SGDlfkoW+kY-O zdN4OPx4*xyB0opSAj~j(D`|gbqCZUSDs;!SL9AA1XNx_bSh&!S_Nb>CojcJ+`{U-e z)?xGJE$>x1-B0)XA5PTOoxK8)wwICjqZAyQ<_*UZEySHR1>NwW{XwklJ#!EDG0zJf zs;*uuEcjP#{}w$Sa4nS1m=zu})>e>YW6&Qz^oIliCvMwT?!2jvO$aP0nLi(U25ciM zPfyZ{?{yqmXJBGcP-7!RQyeK0#V5$1N&rd0c6H%Z+c^@$Srr$P7JmjO+$V2L+SDN4wc61JD+oy!4q=n-lnJ zH}T;-ShnwK`}c>7P8;if>*(~Kj%3cWIRpQe#U>@ro;5Q@ zGm`ZDyv?Aj{IRB?q2c7W-;@;{!hGbO^;|$_^N6JF`wvh1EsG?y03k2i9YOZb_u=g2 zZ&8Nsqe|(N;5b^|5GnoSAj;-saxOAie`i-mpN+Fpp>(lRlxJmSeO0n)Q;A-5uDr>E z8!DAvydqn&L@Vz;{8dT$j}?{Gzq@Len5C=5-gC!*;Lm8IK}BJu(>MUN1@%IU(b7VF zlv1!RRzDNx!*rmsbtdB~+(p}B|bt2;-+)EF<;aB^g-97N+Kp*UgOk*a~ zV0rRDn}-kH$JAvqwU)L4A5AyCk5IK)h)+|gwI03Nfw4RgD=YT*PbjFbzsG4u>0WN^ zO$Y0}GJw>}FDN^^eQ`JiQ2j5tfkp+~%?R3iVv9e_kk*G{U*(xhwLs~2K*_xS1to1A zCeEKff1*PN#CgYGqUxwSFRNR#WdC2Fu-y_hGRAAA>S$nYqruX5P3=*4UWB(C8N^eb z`pV5bPLbh=q7r6*=AANW<9)CbG3}Ym9WrSXeHdiYmS^G<{8Q;F7ko25{8~n}2!3f; zS_PlaW?`i-x2*I5t4Al=vJ#B~xM#V>6i@G8XIXm#>ylsb%%RKy-~ZsXp6x>s39B>F zH@;W5$(Jh2TL(uBOv^z9TCF$-8jSJw9)mbS(Pr+eS*BU!U9@ngujS6c zeU8BaxJV;oFQbp+#4FWsjaEb>0!V-qu?W5OBR`8 zP0^;mi=i34@f8;Z^%h$ye;K5!lv3QF(cq6ghB?BP1e@*+*a7cA_x*z3h`xYb@HWKj z8{pV~NgEo@F+qv2Pu?PhR1F~ClHKBGQYKt)fVWoRBRGc;*osj_iPPD}8ChOD}CuiuE|0 zwCfK$TD34!PL`RXd;VLXYcTtJ0~RtnW>}M{lNu6^K4WJl*0wr&dr52pkdjqfTXVt6 z-hEg%+8R$D{i1y2!}x0e9_Z2EFS2pCFE(t9YRqsuMdiP@Zr%D?UTqIt`~5DSy#?IR z!-wl`^eL^^)4Aptx3dms|P*|>JWOaCcvR1}!?q7uM75*&`_ zQ->TaW4K)!Df+1rK+-5PrsXJ1sxO%kz(qdhEsr7;h}i8CCpw9* z?twkk;if7jGOJR4a_t0DlaK!x7h2zxd%)iPJ03@d zz)>D^zI|7ti~GwJqzL1V}r)vF;(TF;z@n)Y+aH)Y2@r)rv! zs%h_&BMwm0&IE-|ke;hmh_AIY!_1e6#fLVBOwuba*3`Dw*Q?dtxjLQh%b}V>y(u(} z3D?BsbAr;N-Nb*;#h}4m?drH;GgQ#vj^EVaWPMfvX($%gArt1vB8AMSVI0Jp&5~^p zE^p63RZa(;rF{G6Tf#j zz@5j5mb~3^-0s!t^f$hn6u$ z<1Ff8!*9ocy{Lqpyd6H{0qbX{b%5z80=r-K1uTrjk|^Y_ci9DGH7AkFuU=6o3`ky( z+v_DRBiN4XuyUZui!;WMGuyN@>(P`he)VTEVI^!%^NQbvk?Aoqr96G^6t^2yg~ux8 z!&p`{JS+?$qqniv-iA}x{dniIXNhr12juE&$4I==zu8T>4l4o`2z=9W7cp7eid4-3K z`~&u<5>w3kdzs$V1KwT>hq=*K9h;1KF>~19{n6PQnmw~|^}s$)GZWs!90cCvu9VT8 z=c;OIPL!4Y3=Y04PUC#k2t9XQ?*Svue>6hnddV3^XkwWU$a}xc=zs8@GZUYgw)!st&D6)D0{V*4;>p?kR*OYI+y-B@4 zr5IVr;lI0DprQn$o7?|xm6|bJe|fR;IvFLR`4s!2B9pCH2g8xp7TfR@WODbzRMueh@`DcVC*w^8dfF+^BjFmJb zk%Q9&(g;NjOT}Vh5=%sS#`pn+JghOT1E!ZpfQfgUA?l~1;B255@6KlDd5A3%TG01` z&^^R&`}xP+VFf8;V5P!ygqQJ@p(_s-EQsMx@8l^2-PhboHDU#*q7(Vk2d{%#yWIS2 zvldQIXW;OO@i(i0-wgo=fzbYpl+wVk=v}+Ws&Ir2>hG1V)MB#X?bE+bU_m#gRhM!w z&LHpL$f)S3@BmN8-ru`2{t>9MX(%l%ZFKPV%6R7QabCaIl$9f)u5F07H_g5uS&MVs z-FIN<-)2{Esy*m)kY_6W+XhqLQwEa<{51~%6ZiSjXVzCiSuyEA!`U? z@hil&zQ*?^E3GzSsO#{Dm%zaTw9B*1hs<^zj)eiciF&)?fu!svpgT73v5%$Vx4>-a z;b61P_B+be8P6sM1x*Q=qMk5ZB&Ld4w)Je)b(GY$k4li-&Vk+n2bK-yz$ZaH>Ia$J zyK2?*i6iYqot>Q*8yZgc_Wn7yc%Z_$+|%wng$12NHv*@4d;aMHgsEv&Uw@`=%G`xO zy&&`>dhwY>sOO5~r0$J}b_0%#^*D5IQ8TQC-`lgZw`|_BWzSz{Cw|q<06qQ&dW=^1 z&rPqZtnXKh4+LhzCt!^9V#V>=g%7D@qy#DLo4;j=l#^y>=hW03|5fkO&A8X!u!d=5 z=b={5gekR9UGIMSoos_Be$vGTiU)gztW`Xf96Jfvc$I%l(&H~soW(kE!^Ls2u#IRk zqi}t~7hBkiG9sJE%i?5>#*NWSuJ_8>yMp^fF*#$nDrj2(fu8L z_x2b&4U%%&Sa++DGn3-tDl4O-lVV3HWG+GY^W>p2Qv>AYxjw4V*`Tsd=QYSn=H%9` z2B#%UCNR+G4*k~eG83{hab$n}fvpC+@^g@xZNL9k^3jJ!jvhM17qYX@%R8FC?~~YJ zr;i>zddf8x@%(Ryk-rMrHP8~Ia{2WRc7%&wWG`=PGl&(6D_70h+sX;#=T`@`w{2(0 zm<)^dMx%!`W@;CfvSwjeJgwcA_}JnnS49BJeE>euH<+jY4u`Zn`iZ~AO$wOoHz{mZ z1O(kjP}V-OSrr-Pe*^4jnt~39{9+YtoVV0Q#z>KiH>AI|cIeE9;z(O%Nj;0ggxg;K zyxmEYzAR(e!{cPe+}8~dqL~gk0Rf)urM63r=X>glzA7&MC<29E5=`4oaqR2z`Sk2h zTsF@?7-s)VK|#Suo3KTZSpO6dc$DmCm!p!nsAXM&igUfuL)w~JT3T#FVqzW*Ik&gX zX6IjZN-W@wgLL%dGa->>BbQ?+Iy)lRRJV04v)4g$tWp`BG)LP4L z(OQLF*NdkVR1}?sR)c8Fc=LK|Oy^jol8qxh)UtE#7eySWsuj-liYFfWQ6V zN1qmbfig&okaY2k+_38)m{WbN>BM`Hyh=dTf(+TVFB;o=)Ul)#K+A1g%Z5BcD^znn z5BqqGbcBF##EC(6*Lv+7Tvfw}@ymVQ9+6K%UM!0A@R>ZUvg}yVu@hNZgyn!UVN+9< z%>{2~;+NOqOQA8~J+Srbf$Vn%5)ujh`2Q#b^cN$TzX(?fGY8nn7$yiu2|ha;E2az| z?n2r{wE3EdpN9ia)d3Ujb>>-w9rNkYmNc}mN&Lv95O-S+rk&p2(KjSygxp#tw^587 zt@74zOeK!U@C4MZ{D3wKV1G4CK zqE=oTWD#W9l^ZWn(bQOy`{9uSDwVuX`=d#~=r?8w+R0#D zf3cwJCt7sZfkU4iEiV4{=eu3L{v2REd|4nUTsdHb9q>cZLo4^&uet}pzlP(iXi*?9uUm=*S+g?oSC=|3^-@5i z<)D$T!xK+b-Yr$UIcDKP!(DA|tnY#a^uVfn80u=M9yA5y9(THJ7+E<+=5kQ24j9X{ zv(_Uf_)YMz?r$-98NMz4_NOy-=dMWH)CWHJyt0n<19Hu!G`qD` z3ZYbdw&l7DbQGs+Ee$0H0U+Ze$IawE?i0`B9R3*Ej+ z4<{#gWMp8Y$7W<%Yz8u)X7y!a%|B!Mhy1n5^S?vgy?(I_M>s9Qp9E0=2NAqIxzKoz z3JfHDA=ZDy<*zp**TZ4{-)DJyDb69BQ+mP4!=nwGCrwn}Eq@|-cr_4SRW8AQ3n%ZA z0xUZqnQaan*i~UIx9+~eD-BcsmY9f)_%#wA+YwIUKIlL_4!*uKBLH*Z@#?Y{W`xZ4 zy4cd93a6dXF(aRffNqUtO0q=LNaC#6ANtI7G@js4wJ_eGDXZc%n{}&bDU|! z=feO7E!1eVG*-(jzNe{TP{qXzc5uGWxxJ?PmmbId?Iqpg6Xqn$iSlt0UGL#BB`9o7 zu_PSH2fF0m=8?+Jbj*^YdP)?wn3$>RN#os+e%jm|PqDi%4P6+dcDoFNp!_tep84dm zrEQn3Jb|L+ysT}d6a~XxsBV;pgutEeL~VjtrcA9o4u{HN-YcKw;-&1t4&3MFpYr?~ z_)Xi}hvnv$Sp_~Gg>@>N=~qtPlg#r~p8u{OoEk!+7vf1e^{DjqO0C5DAp;(AfAMEJ zo$keIVxlf2W7#i1Gg~>0z-t{u1-?^vD7aY`q&E z7Pjpfh;?}ctF|cV*G22qBO6{ zTi^=9D!c`+aF`@eyh3g|bJ(H{OU*c;j0B2T=t#d4USW9xFabVdbx|tbB`9@E6*STG|G4xPJnTUmQ&zh+kOlGfR_`x8674zu%U?V-fa}bjEml zZ!ml+U!;~h2gT&J>4cG(67D#XF5%v#mU{6a2GPFSHsn@o=_H_dpgUn2&61AAF zsiFabi$OVSsoqL#?=I<;D3u0L+Vt4;fn=2yu5b2{?^-DHom$gYg5j_ldT;+Y;|#U8x(?3YTwYAbK;B3S-*tkD^{e21)^$m zT;PnQOP-4I8gjKI7bJ-~Um)usAoilE%= z^k~?S(z5R>+MJ=Jv^k&qrsx}~?_=Q*<$I;Zs`GN?B*4r!fxli6KN%gB4)t~sXMLdG zL(&HRYiOY0-KT^wvuTy}dxZl;{Y%Wo?;muny+GGm7c(3=k&zFEyH!;+SADQ|--#|; zZ*^|&q0&aT2j)af^q*wk-B=13sCul2EjgWc@W2TaheMo%8+oI%UGDCtR4Tz^)(r(< zxV(;zOYPUeW>{G6a=n8{1ZB+g5v;jr)ita?r9qJv=K~kkxTzDBEiDV^DJ6ACDXMc{ z5qV+%z7;D{LLX30jq-PLa@H)I5&h_j75hFsLQr8(N6x{Qdk#>Y1uZR%RcGaxJw)1$Xl9X=SvnMPJ`J9~TC2kxy%28SHG4i%6+1N&IkFdtzX9)lpB%95gW5d$Wz>>HU}UR*4biS?3>%Y=1yG|S3Z zj3O1IPyyGktUggzPzNJ&!}glatafoxxohJL6n74IhcFB0=?dZUI%t}U%zn8 zON+=?WUw|Vv(PSmPLM}WL196^chm~=S2zAma&@+aZ6{-KKtL!>4znrvz8T3nmujd3 zG#rK;>zLKJzsFPMd9CK?E1O;^YH2&RPK!d4C@3N_8ZmAwjC%zgHc~`rK;Rq@UwW(P zE}8}y1T6DMq!8h-4zk^G^}NW~xcIo)+8`Jt{FjCp5rmV+FI_zyF)kd%11s||fFoc= z9ffX>Ri#Z8H8)@AlCnw%Wk5(sx$zWSrk8q{(Vn9{)x#W=!&Iu~W=f@A6oQ~s5@=+W z_)9^ zJ&AffC?<+)vT2cc>((T(pS&?z`6EK0%Mu<-}i#XXAaO=g&1Pcs#}r@8G|VK%Tb%O1jg`_GlT3dHDlvhv0|1M z^Ld2qR6G_SDWu029J2{YdXWY`_eqSWnunq1DD?pO4c?Lu^&acs=~-J_*@xSBR+7Y7 zwfSCtmsS$PCEfH%*^VPky=FT6|7|?4V}6cceiSX02WfsbPfuMJ&XhW=wTHJsBIgK@ZAz|_TJn>&`QEM z50%QfugT8M0m0&{ms;y8q61<~9|P+8L1nkpsQO0)P(oYqZE&9J>N`OdT(tM&lG>V@ zGsb}XwA#oiV|@%WNe&>ImrzO>N28KHcoVL|2l@$lnSFBc;u%a3E*!E5pfIhqoCoQ( zL;Ccb#KbxCRz^VU_z)s(AG7B92g%FWk$^XW761patmE{km;D+jCrm}9&b1ZC6Fq=Uncv_O&5;S+0x zbwhom>o70=aqaDU_x^Ah=c8X~>vI|&Fe4>p?(9IDv*-HrdqQj-d|lf+u3WmNu+{=` zn%tik92|~CznzUk<~TPgwX2tPba5bE*RhOxJDX~&VHLOhT3F-jHajjhPF`L79_Hiy z2DhmXrKYC#z@2I!4N=H~KElfnoH3z<1X`8xP{{ow+Tpjd5B2x<52Y}aT(R2_RpgUq zVJv_CvD67yem?p0RqsenR8rCaF@tCq3U5qkXfRfn79Re(8cN=;zg`g!8|~?-nLk%t zAd{V`JJatRlm?|E*3IG4Avn71s3#drC(theG@y7So0DfctsUG$A5401{&H%dWIJm# zMq_q%TiXIn-%pi4{qnn$-$M)M6EDt=wY6bTvq;h_x^cO^C6#l`%v{-u^dYTBZ^u{I zUJhMg4O&FEKPUSY&qez7pnPxc?#jxF3JO8o4;DHs%E<6p5eexJ=P<7Q(#0|3x=xg1 zM4LG_F>-|7s*jPM{q{sd1JYbjU=O8?O=(tk=zWR8cRoFygLj&fZA@mOFb<0RpqhaM zwWSK(+>jIIBi*zyztu4)Dkks4558$=w;QGMyj0!e1!eQX=ED5VAAI=Mj<*VaDLb?g zUh|14f)o(Yn3>t|83u6pe0TSScK8Y}pQ`@8sJODRtAF&QfPlin!qdHCPfcX##32SY zfF9wRg;N)za8PXkMsWg=XT50YbYGuHLUEsYKuu;To{X5_>o-p8HGHgkY=j1-uG}4B zAp_q68NSAczQz)Ilk7ocvr0!x1#qH$s6frf0LD5@08nt2kDZ;;27QqYaU1RHGs;QY z+xiPFQaygiwf3fy-<4L}5GXJi6qpVQF!X3Xm<~#8p>x9m?antVtQ%fuRx@iW^WL z{6@4=uawQn6JKo4e(&qTuk+r>ihuz0GL1Bah^jx^oHZNo8*B2$cL2oW8oYlhLWNUN z_!l^ckrLUdXyx9&tFeP#hQjhy0V`D;mr%V87C34wH6j9kB z$VZpItCd&lD$0zV?N=d5oyV*9e2P{3^0D_32G^IrZ*~m!P zXnCBq>(#Q7!eb|l&0Tt>sIRT9^`qR68r!bPhpWbVQg4HGZ&P{n<4--Y;E4(A1?e>k zv>HQ*t%8D=Z+;=E7x^Mf;S9$zyZO^05|<^8BP?MdFP4k^d=IyT(_q-mpK=rj&`8)^ zaW5_+yx|{s16@;79Ks^v+B+OZIRwMyo;1TvqVl3YO&jBGJt8V0G7=H*i#D?12#HU2 zmi1FOPD3A2bDVoK$$ND@An(T!A-6dX#o-3q-O-KC(wI1>l-XMoz5ZCIl6vCjxOM)t zOK%Vb{{CsL7R%`v`Ox(_jTPWHgve7 zD92iX3Od#YV}b`vOb^Z#C`9p9kE2c6;yEXA&Rmqx%yEb*s4YZR0rGB*o$$_55C_bo29F3~Z%kjwh>ucLcBe-zQ60 z8PxMLACwhqt4*_D>p*S{e{tSqzjJTx^cg?e)6a%F*_zMQ8MWKCp`e+Pv%;^Hr|l9^ z9!!tgH5q}OoiZD}^|-`DJL!aZ^XE5nIQ`ltIdyy+O+C6An7Wb{GcA^?hK-t*nEG4< zSr7em9a%40xiB?39Q%fm4GY6=x|fro=9%&RU7e=~)MWAgqM{ZN>IsQEcWqh^XOk;O zT+Q}WGWz{@^jlU`L9%xs-r}!B&M4`n#Rb4jR0Eoc5zfO1U8+&~sO}slpt;S)Z=&CLpPg@A z_6wXZu$}D1xc;mxl-*Nu_G&ebvHMjaE-Y-pQ6JJ?&bAC_lvm#<6i*2oOVsKtNorTu zU~ZB=mzEqeewd1us5)Z(VruYp%6;AUg=4ol0AB#lVDg3r6j)sO>_Wwj>w0nDkdTl^ z%pOMTe*`ENYOQ`H4GrcI(OUIs=(BsMn_J+0lPJJ=v{h5Xx!;;sJUhCn{t(E#x!8%~ z1~-aOk50+STU*o8QvGEPiHY#9*}6J8#bR}6P>bfDi4JE@TqMoSSwv7_Z0-hQ%r5Wj z42OEP50Y~)C-?B!vgNgnn|8J_R(i4MQgQM7W?RyFYkAwwuX{!iH@7UF+JhokdL6&p zp)5YXoe8r+(FW8y@^*Dq&0e`;d8C`E^u3(W&=4PG- z#o++Tx3Tt*h^12Hq*$7{N{_AF1MlJnwtllxEBtD`EIK;S_DcJevzVk@&VH}^B=?r8 z&#~P1R<*TVGwE%`t&Qh@+EcEWpwtAA%y6i;*`h=@>vCZ~nS}AgVLYyNbu>Y)>coYb zUtmnsz>hjc-gmx^_;V!QK>a~_w#V9=lLkh>3G`^ZfiEkC+_zZRt@-fWeFmRF0m3Zb z;$K`eJIN(-Q8+gLQhpA|NdsG3+ooqPUt&4t2u{rt&Nq3Q>=$}McfNsDVCPTkD0I

    gEsah31*;6)Xr^&ualjI4aGfHaa@}WM}7p9;)@t zLI-yovm`P;`M?333bm0IdZvk1e}Mp0Q;_hPAb&;)i$$~-4 zp&|t3akKt8m`-Y*ij9!O@L{l{~RbDEBY- z=7t8+fas&~0J08N5rF!Npxlh>UB$Cus`ej_9xeUZc>Lr^3nS6WRYjx__D~6cHHZSz zO9F(sY9?SJ?~_t6)j6cR&A2V)?R(r;1}4KnuA*em>sR%RjHRc>@P{~(x7bz5JjE~T z*>;}yHs0ht(SGuWbT)5G z^{3Rpi1T2+|6u?k{YGK2-C@93Y{H5eTyX#rgnz;8l`r?jgnCY)20Q@zxn(lN1-QC7lp^ z_-bd-jE~B~&+-p{T~bn7(|A>lza%GzCp`EdEoYOlc=6+qx{euks4gdSnHZlcbnVlF zobq69&f7Q78f`gtP%IYdWmea!Q=eG2bXkT$0ymvQ*rU-{Y+qBfB7eOnS&`@hR*p0O zP7fBYhK6$qHhVXco{DhL%;K>OoM4ixz1>&w$=_T1ubsyzb75MiGyUB-SK8`qZuIjJ zkll2YuQCt$;ONz*QAm)Xuo6Tz9T*U zKmqSNQNY0dl@W*25#M24`Tu2HbXNa30D>Pw`2b<3i zr{y6uF9u$OtHZGg>#_fs^dqqU6c(EIpLoKuVo|?F)8FyUn>*e-HBQTk0)jnQ!+({? z=ddMF5bbw#l}Q$QLfGA8&YjXF3+InK-`pI@qxy~`B=;qjST5dv>%R36zjHm!>^}+a zbwDBh&N=jK&QEwJ`M=?4^W#{*X`X^UVUgCJB#=sLBN$`ffV8IChOG)dN=gy5uLqid zWr>l>#C>{!YL+MX3r}zw`~(~N1kh9`@>HN%s5xZp(TChLk%c;7 zv@e3cFO2p@*xicx6BwcGT3T}~tpMx`d$|JlD)`anoTQ`Wk5+)-XFU1tt`jIWh$fWi z9C5-5GB)xbp#-{}u4bChDBaDO8N82f2;?zPWr%ASZ@+gR?WGPVutE3IS+%3R6nh4y zlBL{w9i7pAWF!1C3HXg__4G456_9+ZyE#(iznVu%#~{ZuNElqDtQOnuIvu;fh}RU; zpUjl9!User3lNfDD>`Y18tP^(U=Rgbc?x(?3Q$9FAIMSq2MYM0HY`R#0|+-MfPfQQ+j<4bOl8FYm`v@j;F~SlX&bv9|2@4jKs74^24#j{Hj&;ojQX(|L||60c!> zNr&DHSz#UtG{18&uQ`PXytYAjEk7!{?`ZH=mvk>k@+*!ob3H*0k?_1%Wp<~sNDnUjM=9(5G zuxq3T`Jha>z%?q2Z8FB@P+MOflymS1T}A%Ad$-_764oa-7lr1WvKUQMRy26!ASpC8 zk!tw$4r4Jz(b1SH2+ky>VR2f_)0BZz)H#&O&tkR&-!5wc=qV>U=+N||gEYedPn}(> zWtHOt{MaorqE@&&@bFlpu+9iCFO2v!rV^tJ5)-bsv}R! z!F;f)mDjD7fLdnVit>RUTpbGz}Bq}4oBOg=hFUHCncc(Vrv#t=$3^DX1j)z zv9;TKc$75aI2zI*^4rtN&kQ`n%(`_P6B3feEG;$D>gJ9@byO^UVMoz|dyIG3Q33_& z<&5XuT=(>}dRm)uTye2lZCn@VnOF7Y;lf?HUmh#@uDq(g?qY|P*HleR!gRH??@B|} znM&e`+=&Pto94twIh9)%>F+gm{jd|T#8)Q!yANL7oL$_EW(oZZ4tTMPkBgfz zRqZB&jm#?Cyu#7zLK|fWTv5qW)zZ_ob?Y^Zzm>-E1`Z>2ijBr#zh&&;sQ0Cp820`X z$lo(S3Eu*}a|`qA5-lngqlt}I;99J}5uLL&tcO4%NvQ=T=%W zd}9|ZOvNWtQ;{SU4p2jkUFVPQ?Rl@Pp&PYpJM8$a-;}bJdWcm3t@kVOWuw`+pq5whIDY!|OJ9{i@q=Pfl+$4TQ(C3lji6eMGw$jUDOQ$ z29b}x(YSIkS#)oBbBZ%NS@612V=BZ;C>1UFzyiA1(Uk2UM&2 zwe5yV3z^AJd<*AjXUU}$GA!-ZBdHe`wZ4yF_5B3IK|T2q!T444yskq!@;aTs6J4-8 zZ^?gTaFD2o=0yrx9z9WLINonvQxgkRP4x8`NO26-*(OslQi!K8Hc(Y7{vYc81}>^9 z{{zR*z4O2T1B^V02sk1lA`&4I65%k6h=_zlWGo>Ok)aupx@N}Cof(bHC3DSn&B$Ei zYp#*08M&?z5g|)T<`NMiAt4eXBI1ZR^Lw9r2M3?Z_P_t%>-FOb!rZ5GKIfdz`8>Wq z(B6)YO0U5 zR#a3V?=ePp4mNCrrN=6Ip%pa))=tOT*)cj%M`PnT9n-;bQg$qQ_z=nz^!ih4izdtf zDIwWniaUU@tHJ1X(xN}$M#tbgZK1{NNQaJz&WHt`9iO)(f%7vc`Po?V9xfL)xoTe9 zIj0kyg(|FL&PzG6Jr)UWeDOnO;{jx%X%Jl})Iwaze0<_o$-^J51wZfyKd2s-JgnTp zLpV!oDcv|baiXNOnJ3z!YNK&u(iAkKFeNBK+$jfi+KHa;mj`ktxBIo)co zx(9k{H3G#zy}#QoP8?_K?7Sjz96}J^|Ax+YG*vOH(x|riyXjANEozmXR8bKgu8LKw zf`cNWA5KY#z;Z|IQKKRR(dU|A5XMpbj2aj)>qMRb0i$)y7!xNobztUx*~Qr? zny4Y?Uv-ewFkuvkH5nx~U2Yi|kQnqN2AqH#h&q zg8a;kMN9t#ZyB=+aqN8jyDQ>nWvVPhUg7nUhy~AK1)xW3fqwiOJwj+sEI+CUY*YCA z2Tt~KcNlPV^j6pruzwBD?pnxp#O%yP3_2uK{@4eE_T>*D#GLQi+TYnVE!EYiR+EUH zdEDJ{cxOu?&m=MB5_lT_s&Q0H&4IsW_~Tn*U5gPgS7N1lqF4KdSL#jrO_ZP`tQRie z@4jJ6zk$MW_YT?KNP!z^9=6&*lhd;g9rDt^uQrGS?B{oM(;|<)Vsto`i~ z`l}k*-&Zj%A7Nai*{J>^4|#;vNW@{279Kq2+P4SQ*rX?S4%$0=C`UWUWHv4#3!cr+ zzFU_QXz+0N*NA-mqNx}0MDG3jumLcg#W7|_^Guocec0STt7+=fiOzgkaYvevZVhkr z{tiO$dhxPH(;i(+eTr{MmWQ2hbgV(Jx~TX^FQlX!K(%s6Y zult&(rzh!aMZUuiP1U>V`nR^YjRla*_4dY!x3>as^d(kT@hb$r)fN&cP`G0xg-3Gt zfGEn{J22mdxjU6&1ba?YE`Vj$YN=Oe6L#11VL3;FE2J194$n4lbgBwF4)y!4#^(VM zhY$bLgNf8x0#7JOX#s$@)!t-Xz%-lPF%YTM3$3w8ux$a|3!F zh$;J3UF}IAI(8c+0SVc6pP9{^^X~a+OMy5K@Tp6=YVg_!2L>z;;x>=mSTj!E5^QFG!jy5BvMkna)gG58wQ{Fuxrntkq?H=KP=GwEJO zZ^Q4ox5}B2fo3XMXn8D%JEG^4e|?(VoOS*CsUTY(?hXen95~Bi8 z=4nJZp@l{-&Mp4`LsRP;h24Yov5toIoJ<(u5xnbJjKxL_#YB@VAS`U_ z*1zrlSvEe<4_`s!Os7Bo+t#gNVg7RQ(C6#$wfl4oRfHwrvONc2FkHon*1x`SYYepS z%5nRu&LV95ipjZ~P}IcH52hYDvg8GX0A&YsJNJLGUPoC?%^GoP$~=`ygXG^{Bn)FS0}kL2xvtc9r;&0EMvI{SJa{a+hPIVNc?V7zdRuZyt)|mi zp?KSVz`|4Px<%$^Y<0U2{H#zoo!*Oq$>kmZT-@^s?x%NR2RwyzwE;8C(3iTdc|H)~ z%`RhE?}!IHuXSBwh{-(A)6;nhm+d_5p78uK{U2#DT1LT4VeUhO|9#9v49GDIg8^~5 zItFHJ7=^kJ__Pl)9uP3`xdBNZ9SouOVX!VCCi_vCl2VyO;P6a>x^;nkK`KZE@+8x6 zW<1zZ3k0kWcy;(Af;bkYfkRdWAfLoVpS4|%w*=WqG6RBw(t~t1eQl>Z-2=yy59(WEDf1$7MWDhI_7pFey8 zPRf%Any`etN>^vaNBg7S2zEl<#kmE;gn25+v;Uh-mViF-|5aC?2L^#m-0#U;)iEY_ zfd({EHw%53czxE)EBC-zCyejy9Luuy4#-)AnR@7&)WIHwjrN?92K@oDSbC83)Sk_H z?vPAF z#gqelOhyk&cyvCj0xc02g_=$yAoY1P@8;$^AnWVwM`D}nTq({zWY$}d^qTGzFa`m7f|-mzqNR?64fqGEQJ4M`2By?YTg(?vhq=3403t^lOAG(SXGsFrP-8ZNZs-#JAK@gBsE~ z!@+b8qXj7Ez}z1Rr*gfH{o%8t9NX*um}Ql*kGc19j8nB`nX$XiIa&N7)Iz%ly@##w z=1{?VpB=a66X@@0wpgO*ZuQsl(SZN6nRJKvI(T_46&rr%{G#jTWx8%G>x8;uMlPQ_ zteblSydQ~mFBsDPU#>`zf}TA?dzP3;ftYVXv5bqWufGE_vlbYRQ<<9)1a(fgK{LA^ zI6zUDZvwB}w~q&Cw!J$vv(}ymW4;NGQzxwdJ3}+`>%RcK_$!^sadERpwH>RhuKwcF zgI^x6um2srx+Ug-ySH9S5wPDMHUCd)K83BAUG`L=8exI(M*Wxlzdb4xvzGg>s8R^3 zP!G&Qw_&(8C<7=CcO;Vj#>J<4DpThu9gZa=_#pjH<~|L%f1xz@4?%p${WEf-1Sexu zl-2FXx!F6A%SH$VH2V+pfh7p9mLK4pMj~}mh7+NIqH@ z@O_sRH=*P@I#P68goTL@95}gmFMhGTBUCQ48o~rnjCnZMjEtMynLM1U1t-^m;(KF4 z_1k7-^vO>kcMc$&cgD)K?ASq|*&NW!h4R4WpRY)VYOAVhhTJ76bJDEW*%*zeziBe# z^;&5m(gdDT2T=!J0#zMwd_mqv7vDqtKTT?WlUcc%`s5GX@Y0oWIvcz&>7PSvgF za3`e2480|CuNrsqtH*kuirzCouKv&lmIO%7OzR=e6b#-;c!Gj-vb*hEbahz!~3>!i211vYBkOAe^&h*+ZY~;ool%IlG)2 zj!d!Ax0=!y(EwKZ(sKfR;jtj`l)y2V3uVJL(%k93B-FA?~{7 z2Gv%ta{?L=EQt)!a?oqv`TV3osM838?|GT4!zh`|J3Q2Tu%n}cf2qzUCEtCRvUzInvVB9g!j4UYp6_)m^`SQB!e(kEnEBBHa2Mo*9|z6^;k zJX(wGpFghIb?^*mYSJ^b1Q#-0MoD}7dfXL`lFOX~m%F-#`e}gX2KWHhxyay! zP~X3x-bH8V3le3}#K}tK^rVF86heon7!ORX%U6^rP_*Q^l`B@hw1Q>zze&f(@K{>i zIyE!|WP3H?gtlntKRBru{u@ z9y+aFl;`$cs~UYhLf&#%dLMGn9N9iZXm^cP)A9~ywa6~#{5BjqfVAbx4hI01sML|Z z_MpJbjIhTMhc(0Xhnk8*UpMxcbfk8K^_b^PtUsE&Mhhem`j`=tws5veIGZ{0>_~eN z>jw`dieunjo&!-Co##&M7J4VY3ZPbxI4eBYS9tE`kF3b$hE=)w4~p{FKEo67Sx}blarG))o0WNO!1msyAC4eqoShH zWI8f{xR{?dnoQ-L!6;}S?s=+jr@DUq@%xfX)?0hr^v?=FXk_ z?YG~avI$!VVA9kegA_2`KY1s;@Gz!1wYK##_KY)*(bS^{?e_vy%fr;DBh6N02bl$2 zLi{1in>`xqH)O$bA=YfSRz;fd+U`q3I(yNT)_$?Gqnn6y_2_7|B^>fUgo*%AfFKLE zA1k)1`9P&~X3ci1T}^_1YFXfCAokFT<`f1B%*7cVsAE)re_>%^UXsS=iqUKI_|Pzx z$Q1_zh_O1@9#HW2Ik%A)6JTAh>0G? zdtMugR+v~8sMRS?ELoB^F9H!~|07N{JtL#Lzo)J3Onci}gI=fKf8w4O3Qw7dpbV8i zM(u%$5YXFJQ;t%J4JSU_Lrfg!kar)Zidec7jn7}22kyF43isWV+@*!Hd6__qoqrkj zXMniVY8{-kr587tEubkcLXLQm`M5=pIHuxFad?wkef@$3NWp4!boChRY9eF(G}y0H zoEESxI)^>)>2$g^MMfhcVcMJYyyK2F8e4`Fu68i1Ur_@DyAbh@&qPf|p+l_PwbZ-_ zx1Np(0B{Z;@IbA_QaOA5`gPk7;r(<6Pr>`gELea?w_~rwrso?FG$p{<^}dJ&ixwf- zK$_07>EsUWV2s9C>O-W*Jv2wWr>bfX82N9tiCUg{{tjEa7BsMM_(8-A@}si>=bO-G zKb~gTEX5)7=Oj#b9qj$74Fzu`fzk76p}ofwA_H9PE;)45Xup{%a97^$9r%2TvHVvqG6g%jRNHpF}LeJRVYJ8IuFiQ3>H=Kl}3PmuEwN zJp}vozoA6bkqYv6=`+DYKQ?338RhV(d-$efUrtTP$UunUBgt_ZKg1>9sQq?ZF)r6k zK@)v@)Ju`_F5s^I=YrhLkzqv+qdjli&k;;S_j9_lt{vXbH5e5>q8hp0@nV|Py}`re z<8zmJZGR(b=uQ($qDn~Fy<4sUU1(&&Jx;HVLmeIM9D;@JVUAH5LXZ+%g}#K0>HHlVkIj=2H~la`J&B zeXO5xaA5*sF{%)g(Se}OPT29zLLe(9?}}bgIXdzVCq$*8p-mj;5jhtD&B-BSuNaLz zzx1chPlc*9D{SU851sgIt8=D61IxZkdkeh*`%#H?J#B%)6eh^=*7IJ&=Sd63cKH0r zy+27s_x=WY){<@f0iOODs1;*sH?^}}U9}135dN44@UB=hW41GU;8-YLU-orv?LyNw z062vL$WdgfF;$yBHyy(9iD|#-plPpZ8$C;Z;;1!?5#nu+sBlNKi+K#dAIIXZP_4?e zo3o?n4Fdxedr=h>Y=YGe^y%31-&Vw!GtHR*Ej37a$kJz)2q>kS8+0<$(E8T_dbxG8 zem+yc6i~$ttdC;fnHUjbe8wRPI0eW32$(nofQR(?DGS+nrWnT?sGHEn7+E>%$a=C~ zYzQ03hO=?>EE|s_j&)}GnV*<{GqubS<}+p&vlj;2H<)6rie1NPrA0+Vp@?5f=QBOl zA)`a-reob6i07njmms4L0tuB?T`Dwd&4tYVHjYt_(lItN3d5y?Dro>7YKqdb4qpbn zseMspR*PY0sQ7CVSZbE}ar1267#(eX0BD)_nZto(%EJt@LqpAT_!1y7=7-@*gL@Ew zS*ZLZ*>>pQkIi^aDCZ)VC#xpN>Bc6@%B0-$kz_v&ugdztEVN5jQ4UJ$3GT!nZQz#n5#b;1>RS!YN)bz#CE7cm#Vw&R0(%~eTy~5LIB{R@9kMHkN%#B?1zX%mi|G>vKKZX>~#gdJGe*b7khZ?_w zkTx63dU|`R_U#9#s<^6Za1i84;+U{N&c3j)viV}~h3-q_ic#k*mR#%U`T_ud6~=(9 z?57?kg@uMk7=N;otY>_2IHR=HXvPH@9@D|PX^43o7`q&c`YZAmc4dD4JP_Hp>q>c z5F`8vKPNiKe#z1l|E{`V4M^vXXHd6mFxcH*PA{nrOG(L%)H%Y{bJ2+EI>+BFDP9dAaz&rg>#talpLGesIX|7RJ+axO#bNiH$!D zDkjDtpM0iYa1?gR5QXE8m9^`YZ<4CYX8}zdlq^^MmUQY~7ECWz59hVecEMRz*fmb?B&s@_oQ! zsiKy6x_PXVM^rN!JuKCA zu&xgFuBJgJzsWNpqfuEHGMdxg@*NbTw|Hof@{5ZtR!Ny(|qkH_JF_WMsuY%3+m5KUEBQ&Cnz~ni3l31u8nZ$>oXgtLFrJ zbvAr|x~E?!#dWnLH`hR9)I3Iyze0w&2T-XNW!n1>nn{w)Spr{Ws?x)GRbpmgqx=swp>Xx71+1ZW76B-mS zIY_OV=ykojn;+k8+jI`83!xLQS}BuBrBW|{J=5DOxF&bm!$#0B+-td2&f^2A?F=Y#+AZ zxjYibky1U|-+xiZN(UM^Y2C+w$A0HSJwpM85JPE)bTs*p2}n{DN&wzB9B+yXawhd- zY8~c?QjeizbgW_&a!29-zq_43UL*4@EwDf@9SL%OX7L+v zJGR_nEVWn#-rLKGl?@HbUuiV2X<6IsBedChWSgl}2tAG3-x&8eA&X$6Z~=dJEY7E+ zPvaN)wm` zg|Zf$hNWn!UQ3aK=stURIA(-irBFg&5UuvdRa(Z?RWD>OYUpA(jCDel3B>eU+p@>{ zHlSAC+Lpc6v*p8Q9q|@ED}d}p$g!3-hwKtsqaE3rk=jR49MwJ|(AHt?f(FBgc531N<=i&HKMH+*TS3y6T-c$H*T3Z>eLYY(E`6EfY7AvevV9!dc~=&+Ze> zhL1c;Ej)aW0Mkmx9nTg<+`0GXnFE_4kRd_H>`WC~|)&d3K!F#2IjJ z&zR^b@ty;q8d?N4C4QWp)Qv9!>mt40ie$Uf*GRUI&}`pW%O^COgZ#a}fOf_RIn6K0 zkI@jAO%YUCR}_@L7<~exTYFcKA14GCjZj z@2~`b*u%A5~NyI>h_c9LviqkCc6qJnkpNOP=;gjw5RjAw;#W4%}$a0>5UA zotzC1a$Jq|EtWaMIZM0JgtU=hJ$@RWMM4iMihf5#oo)avXaK4Hy#fJw>Dn! z^71t5J494h_b7wn z|CmDtj4naynKZ_BraH)}=NDu8voS&APS$Ip(N9iN$X&r02)Z8O{2+Rk2)-S=4LoY2tZtQl-yM_XaxE16N@^K4pM2LeoU^CiNtJUss{JQS&e`G#B1AA*K-_?>KPG*!{ zGXmrMJ6){V-gJaflON^tsQK0;Gfv5YR;7U$RB4Weg#Nq)a&$>UpWa4hG~o&n>aYLE zs7*)A_71x5hK8;iuNh?xCAdgqeje9HlS=ZT7>~%AqEF!?HcFu;?1!zW3|hoT2nVK_ zuKV%*K8$-G;O{>h=C zQ>NY@>^nJhx`r3p&tjEslr38@-9s!MGdrJZWp%tK7S=xoI9XC>KR@S&x-&Y)jFJ*R z@3JWI;*#RbOa#sHW)n6iAZ!iJ>!fGu8tC=77&vSJIhOO{g3Qd~63d;;uAeQl?q3+6 zQ*?ZilHw{39JmYdZ=(I3N7Cu$p~L_IP=T|xBfo>>4m`6^#>oZrB|<@ zS3A%vCxwTroyg8~k!|?uqI^=)^D3g9l5y|8NjYb??aku1N=n{&ZDUK5&b9r(mWF%w zO`;3pKR%WIM9wVu)pkMrXvaj_AW8M_ZE9BhPu!G;Ih&9f^RnSXT!D@;VH0!#Q&N(8 zf1jt4W=K84vKhlXU%jSe@HptNjiVLnT7B8)4S!=RN4rj4$~a z7R#Nq;>DsRuf)Qdt)pdPph{$mgM#w&VJuj}&9!WL8)2GwhX}gx0X(dV3G;r9R)w%u z1h$NN6na86VDG4zQ|t$SI&$R57j25*U^`y~zIYBbmF`G8d^ip9g=6gGw0@e{W0b

    F7{mKEPqHPm7Cm!dmOT<{JlC-`6m+izSXulhh=iTXT=~Vfj@zrm*I}tVT>%-S4fC zI~=omLw*Yx&5O#D4sKEP>h@%h_NKA-KWA+GVAHdmo&}azfHSpF8c|*g> zg%iag6GuDrH}|UGJwW8N27m!}Fq>Z?pK57?LGX5_5ZXQ#*ZW}!*};y1e~9m6S(>7;)tn(MYTUh> z)F+~TyH--1ju+aoEOvccw{()H;#nsD7e=y1Ab@2NGXCv zbfgsj4E*ng#jpe(VU&pZrwBJD{BJ}XOA#Eh2mUP&tlA!8g#LU2GRykkbFEf|oHG){ zk!l?Y)sZj*3FX)d`a$LJ2lRIfJ%?>=ZX2*VOjU=rZ`%IO?!EumuwnalIDBf6puc1? zOt%05S&o?4+$Fv-bORv1@G9-IVOcUQ<>}Rh6u@T#9biaI`)~kI72r6Slj{&r(b|Xm zjRP7OWnUHwiAnagR6i(o=i5x!SnEx#gmq2e$Kx5 z@QHJMR15p1{x5UjX$nPgnt1agLSzuNA=|!wxcV%NSKWuus7%f#xuNBBd(U;TZfyT$ z@09e%W5-|bS&%$;ZoE3d^$6k+_MIIX8aGFuh^Wymu-nc>$N)Xu$S=H8{3yyNz*1WH zD29AAlZ~1*+nC+VpP6)^iqYdfBoI-yeFR|$uR&pX4a{$Vr-IFv{T|3rTI?LWAT4dG zvk~r;tF8fa7G^C>2yi8*j@E|xW00gxHOHE-07X)(h5jzY>SGYHbLSzP?U5(KjmEnFdvC|zKl%5mmeW6VUX{5|3_>y2*vFpD zTl}=z-M#VSe;nY7tDokT-fXPBEL|u%2$Kmt=KT&c3K<%{$fKo%s6ms+KDT`ztL~pMQPgyXtq=6cusyezRt} ziY}fXv>O$fN5hYK4cSV=Xn}@xBWY+odnX$iO+y^Nkzx-u@S7&~%Y$&vlp{u?R+OAvk7sVeDKN_|mf1V< z$sV56X4;5rhHa+9br$`NM!Qh>J`WxGtfI+ibPYy{wD9Sn!S;5ZK9^heY}|&gLq8K# zD=Few#9eZ>9p9EBm#nDt+YSww@>U_N%;x2##11l@_Qc~swy12SJ8{4lbRiVlA;*u$DA2MY5<9+5ubYeG_;98Cy?4e;iVOXtev4Ek- zvMa;d`Lb0~U`=k^N^Er!`L$#1Jy23^8KYLv2-d_y_Qone6J*h8<8B0~Q|% zF($$s0WTzWCOJ8r9-(V@Z?RzG z*-2Y0_#w8V&9{t+uh5^4k^LDtKYc^#{KQIG*`=ZXJ)HN1=}B=h~Z;8c4M?e z>1jj!b3sca-C&rL%qWKe0g<(g7)2|27GuIkG%`}D%Di&i=2r6)a4^7>!iA6EPv zG>KjahLL*ZE=1VPGHL>8=rssL871x)#?mn^uI;CD{R0;-8N1Hgdd;U1X?tLYuqR(> zNy3d`-9ilPJm`V8D^@s98i(khi4ipEC=Uxa(L77^4$(we*6hf*F=Ui@@*cq>=x^(- z{S6fQdthXLt(?cQ&rq-Fjd?<6Zw#Hirk-;{?%wjw&N_a(NlBVL%@t4MY|O^o+?Suo za0Ca!?gKP%4;up$JUgCfVenc3W$_IN>-!*)9%PRtC1G=yv}}9(qYL~?IOb}PP{4H& zThbZCG3(ZG?BR+wL8tM?yQeC#dXtk23UYJn>$h!dY62LVRb=}f@hZ_kuWJEs{ zPP88|SedE32yDKdU(#x*{(xE)Hh2+S+ZTkApd&_>B$QD|CwSNm=3js~$Rz=&aY) zZ}`i>R-mkK>^4xHNiWtjrKK562{RiC3Jy$NFD42gvoA7PAV(QE{4dNH1bs&^YM_KX z#pK}o31%T`iWc$LvnL5g@k=8Z*b*mifDU2inKdmD}f!4AxcgZJml!0l(NITJ0T9LOiNsp*HWKRfb8 zRbAaTtzFWz)SG5fH|OT)SXHtAgIyndP%0kkuypZuwupXc=TyK^u@oxW=WNb z4ZyNqsSXT~%lUvvAPTNr8N>K7e(VaWM;+lf+tiFFQJD4VY!;}!_ob2yYCVK~nr?A_}njF%(}2G@$1`ZY@n1##62j#i3&OY{)Fhi22Rp z6NZHqO=H^&(UwU!V4`mTM+;fZx3$cY(d{?_TTpj zT@?!!PXoF!aeNeKn?pi^pg#MGMeIPwpx6c))U|=Z^74RykhAc@d~fUsD9A5(E``WN z`U#=)ku#T*^U8~=m@qt%GWpybjS7I2{{BIlK>vVAVQ6J3XCoF}=`#^`lw7)eafm}! zYL6K5XD~6f0#mTJOCc2r{6K=XO3+pgCSL;w2eM^{w0@pKKaacp^Dz4P4eP1(`cV3L z+U?il5qErk0R24o_UrlQFSz~lKzjY6+ducBpXU#M{tyu&{g@+*5MAOi)Z^>BWs6<# zivwewo0ZirJSQ1+}+x4vmd687g$kqM{!1_j1+PAN-z1W6)FxwDgly`9`%<~VAU^C%l-s!X=%>FHt9 z?++Db#v^F+AJFEB+qWZnVv4ujwNsz(-TT3(hj(n>S5tGktp;V64{0>99^_)(KGMZW zkRO(;_6C}bEuXSeB>0}i1xpK_3ewpzAuO9R2f&3{3-yxBOdlWb*>iBkPG~J3A#Y>{ z-^Sf!ug!75`RQ&O#7Mr zMWB7e^;5UyT5;4UJ%||#JR|l9vw+Ej5RX4dD($-o2hu0 zds|y_GHU6ypKU$e*4mnsH19r7a~rLkhT>;Pxz{mL1t$rNT#&ZlLA`r!uF;s4m79~6 zz33VGyU{x={uz?Vp|%V=IA{cvRWB!Ls>V+Bm8DN^c#ofw*x5qRf#gQz9^2&Bgapai z&a)EC8c9nt7+o*wo?CgNic&1x`Dl0ong;lDzZ*9Hi>>sO+4RAKKTAoPP$b)FP zcM_@qii4(1kBpizEo}O{B+nqkn+AFEPlmqCjX8M*}e39`PHiVD0= zGC}X%pOy9GY%gCIV28W7yY%%3xnJ(T>>i{-t!fqc0LO-m8qzx>V?8xh6V}>lat`2I zac#I2!%<)oN5F37*?-7+2K*8M z7@nb^Z-#}wLpo;YR{92j8k0c{SAG;b`b~qE`&~yVoUh|$0D;o6QmI)dlh~nhX-4L( zP=hNS!0d$&$Hgb7goZv4HW%XvKBjXV95iEgUN>&vjxex)9TWC`>Z4D^(K`ny5qt% zoy+;Qwr>H9(%2{S1){mT9p2=wpPVh0`vlLyUXZLxq}32I<08f&&i1L~2%l?1*F-*O ztI;jwu_a^)r)X{d>cGJRCwqvGuYW*@m#dA=$lmGm!#4~R5CRRO`b|qi!-n#LLyfulvhd&xc-(Z< z?yiHH1LGYGEdaT*>@HMKQR2A{?T(Shs!pmLn-kKLi5E-=4IGidD~z88QBH(oA+X?O z%ft~&Ox=B8?ph24g$Fr|p8{P05(-!oU|l!|1c!L}MMNhjqOx2{bM3M7h?J5IUB5QC zd;7s-QjXcaonsr%T-UpV1h{*I_<4!D2lGS2j7wJ`dub5|UM-cTKNTN_xb3_=jty`h z=G_v!L5eqU&@>GYs~b7t%@(UJ0%GAj+U0SCn(CMw6)YiI<|MgUZxVHN5qD@t{=Pg9 zTO*vM@wKDyWO2Zdk(yW-*M7a4H(0K!=>;fUp(mn zJjty-VL+?Z`YCtqj?)dmNnmtHTir76QqX-6Z#w!6a$v9e>pit^^J;r$W zKxkkT(Q5pK!mg}Tj&}CK`bvC?_#Zr{djfBvyI8Q7*VyaLhc*|>M_q3I<{d;aFCf;1>eY6koIV5LPF|-OsuJAa`Uj{va-@22Npoug7hb_TP}P& zZGK`>;{0?pa~}tGZeWJYYZSI(lWAxO{~-990mzAfDATny%ypAMMXDuGTofM!A?99hglN0#?)*>>?fGlw_*d{TpWlYy~@=)t^2Khe^n z5HZv%X#?lslH{mBCr(Ya(?j~F&K@tD!LF_AwCLGw=^120av(~_qmcBsHLp5HCfBF<#TM+wk+E8BrOR6_C04^K{j~5 zmTkgjf~RQc!-RA6U09h^^=CZNprtY`aZH8vKEYzO0THgSSga%}MmBsW#b2N^c}#S4 zWK8t*(4gAd6DN|BD=W9f#~(z>?jC^FNQa7xKlt~_8jdM0MuG6+;{5!YeY>{nZIBG* zGuG1w-bNaHi)t8ratZ|wb!JQ^4HmEwaSB%%iI#fV2rD>0UT4$2hrkMUAMHI%B^!_=l07J&+(&|g4>8l1CG!FsMzIG1NV7livLf`PcSG$<$< z(x14X-uVbi(_`bMn*&S2_JH9Uz)_i#Cpj{}G0Dk>Sd_oXqs?P|#DfWZ23{f{PEqZO zX-5=B1}tw8U{5UWQ*caD66(xzjKOf*ya=H^C>-v=B(#L?B%+*_mIf8s&iMMOdG&fP z+nR$lvzCKt-P7!e-2|*@4XIKS>hRma>VksQFyAGbQ$*QS;7MEz&0T`eWVLDa8ey!d z1i@2>FHE(T(q|X0y!+X$*0TVTrWmz&P?V4z2HebD!8pHGc(xMfr{KJ;3fVY0ImpN{ z(!vbA+fjv4%S1%zQIn4&CIi!x%C9@7s!I4jsa1_=i$KO%tD=YnOj((pLA5txXW)4$ z9W`No`q7<1K*hP?+wjL(I&Ln}(V-#H^AeLfJC`guR#*3RyF1pQRstK-rk#8A$ge+i zpm7amq~iJ&vuP-XQWQfOOK1Yz=VYVkv1o+qYGWZrZ-G1YEv6t7`!I4P*|wS=E%cG# zUBaB3z!^C5C+@b9gc3Glg4Lt7|hmAv{vO*BD=ZsQf@x3lb=_tiiAbrc7qv5k#Q*bL`2Q z(`#&!k|Jh56d5X2kyfT~01g+pldH%(?21L0aShal2K9m#^j)0~My%r4)R`U@s#wQI zjK^bql>9B0vsAF{>{tH=Ik+Ok~LtF6m+1WvPR94ojL=%s|{2|8M z62IY1hDe94W~v<|IEN6;A2k?a8VIwG>|$1F)CgYqgy@kbjQm+We(gfEPd^(BgEWJZ zz`(-tv^Dl#pz$cZmxdg@e5l$}Al}hFgZZaM;Zk}v|( z(Cb;~wP*O=y?g7(b;;=BlTW>h2GN5~3iwE2+hV!}Uf}GLj%dE;vXbM< zD~>lIH2#X4k3}D#we2P=5f{2+r%DwVn3L1lnU{ym!FCu`^hBp)ii*}!6E~zX`W1uV zmsZx-uPT<5m`fpv)>CGKZ!PQsI(~-IUCDz+0ug!xBbMg0CR7FQl51Hwxpky!7TIbZ zgpJl0#4V?{@wW>6VGQmKQ6g%LzL0+>Bc_3u*|Gt#@R%Ji#EOe)u7Hl}Zo?PNVe;Wc zYcW?@AI@YmEV{q`#w+;N!OBhCN5mBw3sd6(+uEZtF9Q6ejG$D^HD`rI|JM6pY^jYpHxc z7J*hzLymY_yty(QTEGqQ!EmeiAhf}{j^uoH0+WRv)(rDzDv?o{$0adQt?tcy&=d7& z#y$k#fyTy6m@V`$zHUH%<>Jg5OP^Z*AS7I9~^y{+kQXRj&V@b=mKLJ@FG7{1sC%Jy9GtytK^Aan3d}c19K~A&7drrQO zZS?K0Iy*0$N!+nxaeDj201?=%@!F`M`G1N5QA;F^r-)xr+AIVf@j%1)`MzXHVx;WH zlQb`DJJ}?89@ZKo=5z_C6DtBv_Momxf6K9Bd)HcusYpsX6+NS~EEYq%<#GQ0p0=b+ zr7E+?d~`2ajvfW%=Jxg`9I11ZPfbJo{<8~JK5o4=M-t|zM*F%CoN8$~)$gDPPf3Of z?9r5%*woqiPiR{u)m#`g)? zXqOy$9RRn-Nqk;`8vXm6)S(ilV@%#3X(fRY%dt`NLh>xPOX$;PPMT6)p5pJHMz7vX z{whfy@89&zTf?>L3&neY5OiKA89aM3z)g&-5~o|W240T6VXdXyfS1(RGAu>NX@yX| zEqkhU*P#|H<5Sh}ilY*Q>+{M7shLqcXRDO{EN#H`RzpBNep zf#@kj} zNU=CBj>?D^uh>Bsv%hlj-1h*G`u^NS7e0N^<>K)VP%Z5Lz9G(>O?hBoIgR?^#5T6X zcva_i)ktJgvUcshZsIx*6ZBzsa(@3>y|)+LQ+Q(^{XsPy{DbvR_<@}X2yr{HiToMS zWltt1J~NE?ow8 zZ8_#h6+{D+V>K5b_M#a3oWQ?n#1Zvbc~>VUvi5yI>bvA1RVd_9k3(Hv5GkupI8c@V zI&seV`7b;%Ln&)LT3ZV<__T>iFS(A9$=1MV%huMejKk=BPbdZqg@oB-zuLniB+TVP z&jrUxKCxssN;I^R7S>3Xa-150(HZ6^oU{k)&v`u*9bH;l`uF|yUDr_$+YxgHQ7US* zit2AlvDif-J%1do+1eJw$OOg5&sItuJnHMy(wdtS6X923Gy8^gqpq7_mA043Hg9Q^ zhQpnbC*?#^lAmu7XJyS#0b(16$bBK&uo<;9*V{%$`=0GM>z}=R86Ts?G&aW2<$<|_ z`E`VIFY}NfLVV14xu>i7LjTH@50I}nZrJ!90`s8MS$GxovAv8|x=yA`Z#L}oSaK&u-JLOeh9c%6wP{ihdi@=^C-S;K}+_uwSw$n(reH_v=x^=8W zv;zt$9MyyAY6#Vi{tmd%wW2>I1LG8$Mj(n$NEtaogZ~4dkp|`e$(sc`mjaBv3|j0bYiIuxq4N{ zc7E6Ls)oke(a=LiED8^Mcy$7u+lXmPV>a?f8hQH2Q-U6WWOW&Wbu;KtLn;wM zB?M0G$L}=|?fygBQ0)~oWvf6OSZ<_2+qMOn4k0XgIpUUibbqn-KPLY|4f!WRunxfi zYmlTx4h$j%PkiOF$wsPUfi&@|Km#f%M}h{V1fqt-SyAfP)dFl|Y=Jv=bOKlhLO7rS z5JbHSCKUro(1{O6Mjr0tNS{820qPBtkTe_b05%tCXObZoQq;=q>{$9gcAf27J`z9D zKq7VGz_zwPSWO#*v6+iECn^b|(c;Y!k|Rg<>nCfs(oj+UA207Mv$ zV>RGMWM&z=V+Y!j&WR33L>$)N+9DU{VIIVDAo>SfIS?`%ArHGUHB1dL0irG+7zdHe z7FNu70<>`*h@&!R*`OiyVDwjK+Dl7k+ z8sJO|%~=e@3L1vVbhT;BL14<2AYD4Ub|8QcfCbth9+Cqj=)p!tDS5`U1ZZcDW(U)0prai! zePr5TddalXw9@QF4^uZjt1*3G;!Mw(U>e7<0>>c0Wui=(rV}QeX_09YaML32{~|iV zTGjPqoTxKBy>rdI(u%j*GtSPu$%-j2e}>7S5uoUP6~xsrMgz2%_n7U>b{^68Jct&C z&($DR4i1{5fKn4oIB7%Nivf`>8}UgLu5DsAGn+yFR;`ML6k}Z^m=j3Ln*W}PYe2>i%sEd8{Bm-)OwjYjTw9$DKcR{L7Da z5K~{nVOsB|xUALah9bN2Zn<3U>MED(*=)asG(Js0+I-z{d1`cYihVP}u>7*4<6fch z(!BOgUSsppmeFGAYssrF&n?W)n@r39u|5g+JHx5tA0IsnE>RuHW_%#i)Qchz9>PnR z4zAvggXa)42PgAT<6aB&6|hGy4j5Un-rmhGDiv5umu>D(cp(<@0e{%P6zluTJKK;O zDwo4*r;rQWf(7NMt;IkEE@}zn*QW%ZO7JO1Znp4H3k>CIqn144+kWU!O>1k{!I0>E z#&+c6!GAy&>e!Vl|45@&%VA|oGN-_mDSc@+OfGa8wUCQ2?e(D+cayUkUD`zb(TtR1 zHn-_Ch*F_PuDK8fK*YOR)`xYc@x?p%ohAnBR(fkhqZ(!<*l3oK5jI}yy}js~a4!=L zyCvU8dRDN%nc$*bqg9zRv@{)7puoszqwZ2Bnvfb`-62Ylzn5C)!axUSb$z{>?(OoB zO&c2)k=9n2@kawDveJmLcz z8XBm^4vr;;{heA}))6l(*IXtE1m8eK+I%R%cehBIND`%HB&eA=OcCmRRubxchU_VP z+4dM$=CrQrU)35xn?Ya)jleuu$1W>@$z-P)vlrhx$x2=(;sCFTR7-(^)Z!vX&qxpA z+Ccl&oR+Y9)=Psa-i6;ymhm^>x{q;L)UI8h|I7mL*qQv?^ldr7`b$4;xbEx`q(abW zQsfw^wCB5{H8n?%_c$v9DcHk!Q`5oCe_p@-&zpB(;<#u{rv5YaHGTF9K&i>4y)BJD zUDU}goNnrnxhYsN^HEa)$V&!i+F8n*l!^3 zNMEGBo@Wc^Ahv5a_Ka&V(b0ou>Ti)3rnz?_8LGa2dS>RbI4t2WNCl2BATYctE6jZe zh)jNSkk_^aG6?k;2#16iF%xP)zKs$epYZ|HBG*W}zT6c#)kCI}4PEYPj|_0QZsK(j z$vZ<4?XJ%ZFKw+jHL|1nbqgC1Z$3q$o{7PTzbUNnkuy0g4U%AtIR|L8mYHl_1+~PV zj(I!=VEyozQ$8SAVh1?NAci=>4mk3ey#shA3B*ZetuVIMXR?5*!ZSTEj{=6DiPD$E z??#rTFp=#16AzZBMz0(yBt|wL4r5kFZCm~@>Kr8HqQRkUE7XY6%_O@ZO@T~S^WCj) zJV1Qu8#B-gxB-N-)UTF=IpkAQ6B+qymP=8cLQ!{T^QE`|2noN>gegjIYfI;T#f~{F zBYJkjdYk4u(c2zn4;cT5Fy&}-cXwk>P9r+Q-BE{iU4eoTEsd;l>a5({c-2GhjqKb% zuAq^cRaN-OlZd;c%F6Sv3{YeZC^A)3f9$MGHa@oLiZ3>k$f@qKzUmKl?`~@g2??Gk zJ@v_f1D_miKlk0qLm!mY5E(G9e`#se#CnTGG8a#&gw=U?M5r~Iwl-NJWc4UkS--aE z^*6WKNf7s>FviCPxVzgJS1<6#)+i5KG8>C*8-!=UkOCc^+FIh~VXHidy+Js(V@Yj* zrJ@R^uPX8$Q;31A;%r=9y+c9{eRh@`HFUWz)SW(=Dt%oa5jAIu4&FGBlf zQw+%i_y#%w+uA*N`)rMpVdH^N4iTnAm>t%=?siLspyRaP*gcTcWZ6CFoO&D-^scY( z_@xzoIK028tQIK8xr_GHzn{{B^~&=&;qjH>^k^RfxKDq^yAE6OVGsjSn%`=!VJ zV<0;;^mZJ;FlBOD;^AR@*gTzAoaRB{SZ!V+9xPk%#Iy=WC;I1{?-x=qG*%z zo_v5o{K-#E6d_lr1GtubW$7Xvlaium_Uy6tOc(_F_{8ABh9!LTL#rml5vO(z8_Sje#)hC){i0l}eshmRooweWML1tz|8q z+Xkz5_DP(hqu`+o0$H5*3uYEm^avG zNHolvPO?rr=DN<^!9V=ivFPY@=L67{|8_#&>6`Tu0CZHypk35!D>o>dCqDM_s#Py9 z%}5IsLqM*pqalGiFzw!UT^{dt3TCRBua9?$$DTQI_&<&Tu*q=}<;>{H#!EU|#?dD? zx1yrTyi_f$F3FOi%IL9Q&%&5ew`?L!erA;uU9F=d^mi|sc(a9%`e}IzqE;o1^s&ff z@x!a?h98$dPo*+8?`D~d?nbPPnuOUdvXa9*rPd(2AK|&ei0lRDClD#zwbaSWpTF^3 zrcT%x;Ow<}fUPU#L!!nVpqdt5P0OfT`NPe!@UP!xoo72>uC>gSjj*TQGDlYmzQtlR z3*@+Uo^7IMgDE$^ zVUCCenSmlfIMO*Q@+iW>r-eJTG%@cm1!>cg3hPJ<>tQ$D=Y@AQV5h&)PPvlK`>x@$ zBpPx6W623g!aFkY4o8{H!5!JWULJC>%yg-b2k{iIik7v!8*9nxf7xbR)3$96sC9ua19AZ-?^V!3Iw2#2ZU-UMY~Uo9+FQNcP^#X6ZEgJyFi0;zK7K*+c9*hs zRCWx^VjGyCAY6ExPI4#fR}A_^r42T$HyOg*n2Ze1PFO^1YtDMKwfVROLtG7ZS2i}n zWXd#YRA87MdS}ORegRPkBLegL#ojL}6JT@(*=`T7J@xhJ^8q2k>yi%7#3h7=nvU&2 z#`TWlgx1L3i^;l$7^S5{s9{^>K2E&wbgtSizs1gO3e^P%sQ9(80v!I z^^=1(zk@d4uQ++;ig%p%#h*JnIxfl>ikEWD$!iMbNe@K%yC}Ru7d)T;eA)xS?!DjF z9s9M_A|N6nA|etJ(twDF zNJL0PW=LjcW@Kh$UhjM$nVFfX*T=kGGBd7mjmXG|j7vmhL_|o4ghWV)h=hpah%@hh zoii|_d7t+_zxU;cjZFJmlFFdqy0mk_jfOKi>9*uGYrRsZdJ_O4H_~sS+ zXvgY;f`aNXu}@Im-YV$w+Q5Bpqv9IOzyipdS;)k&944?;?r(f?`t;Yp=9%+@!#J-* zB4e#t%G_dZ(eipz^u*YXQc4nw$WL5Pigr|V%utVT%(OBomc%n7Bf!^DshH^Q;{@Vt zl)81g-Iu#5_rciC&S+$wrDPS`#hC$}$SrE}BAhvCvFf%R+EEGeAVq|);xB_-#jyp~z2XxzPL_xD(tC3M#7 z<#L0=jUnTee%X!dTIJ@=f60iDqd15Yl2ca{SQ2?#Rwa1|f)R&b9e8SyvK4_2IXY%J zx%;&zV5bX~ZtH0j2ZJi8V>dc)p*v(}c16l?i6Gxm2Ab{EP&${>n4?308`~l@w*}!X z$ds``XQjTN%e4R5rVK>nu$c+aQjSsqfkr6lef&L!1Q_{wDA}hM0n-x#1M@%s8O0_V znwkb&BC!!>wdE_p=3o#`S~uDj*T(ry@R}9ZQvHM3e;zVGKy{xlTDB}=86{Pt)W@HK zW2|Q?hsTq3-y%Fi3!SFr+_TQ6FK=7t8UeF8MTB#>M1XCy!U*pR zF;XT2{jtw%*c2C6Q?nZuLPDq8bh81hb*$pZO6dM3>Yr}xs(2Sdwjg94h>Ep?h^lKTz zD_b3cva*5u&8JKJLQ>Mw=Y@T~L;B(a5tD}6u#^h4 z9${fi*X68B_g8fNSYHnZ7en)Bd-v=;)!sf});ZhT8%1!%x+Rkj-!KvB8E4s{B>7JA zhUnY6acF4$`X&T{LC>N#hv?Nz-79cDLAT-BAIB7%>!3L)K^BwtY&FZ_7Us^~>&I(o zxK1lCY1#icv;9iQdktCV;8F$rk9x9MSBvFo8&1?4eVdNHNhmT+>@pxMB5vvEu(5^B}JHyZo`xMS8r8|a;amQ9A1 zwrbcQV6b^)jRpWp{!R!KyH0#W;>;!L(8(Xzs=yElq<@2DpOJcew1VZ|9k>s#SV znWJUeK`+dupcf?VZ2&V%Jg&7Bcw=dCI+?M0=}nE72&KWUJukq3qLud;bM$pzCOIy}iv_yX!F^i+|&N{s51N1L%mIakzNFx>N!YgCl$_?Za^s!5nR-gWxgI5g6T z>kRXTc(!X`AYO4qyHzSvIxyD;40?xs`@lpzIGOqV)Zx8(E{1_?jDu3f?A!P5so$B& z4+6GN&#qn_10z(D)9U+u8SoB_@BORSty`UwvpNf$MmFQ+Ng?qswmx4pq+CzgVu>)ZlHt85~9LeQEHbY54r+7lr zOYoWi$=BJLhRrZmO2oVnFL^0xg1EC_zHleA&q~(?d@Ff;AF<$jCNMe=7#-KsvwF3! zuf54RAoyY0ndjO~eoo^drRbfjL#Iy<4i1r_z5MH8SxLY<|(q zU)$RkU>zNUZ95+`pC?-4$!x^K@nv6q2SQreY%(<)!w_zjXrWQGzTIusw{$3@b-l)< z(u#L6!@E(UEYIA|95ur-?r{cj^+^Eb>BT>d}|cCfQU{ zTvCT_Z<%`KW;>$(wKS$=rdbEpKMwS(S{M{twvvrEQ45wGM{!3{m<6}Cfpb4K{B)*c zfTmzz3IdO&474FwMOs{Z{MV-MI`U+oQw43VU@-JtP~5Zgp|U0u&u&pxTsvqL$cZe@ z^J33M&p0A~1zH3+t$HBPd8_4YkvtNn0E;863F}_lLvC^!R47ujNai5mX%6~C9Fs?M zw1>y3hR;7P`S_E{1{iJ28zd-4FKIXhC9MY00nA@B}7Fhu3cMS^Ub;IcH$n> z@8^*-s?S8enWkANBQ(p@136ej!SW#JH0^5hw*lK-h_7+$Z>cLUhGoXDAvU(5 zzd!J))vK3y7+Q<}w*PM@+6M=X3^){%fkMTHZw>b8DSUJ%s()-^dbyx!PbPqRzt3D@ z5$w+TL4YoVMDX&G0KYhRQv3{|dN&CDi&=04TDE~s-Xk!8v}6CBg!hC@7Sx!xeZ(s9 zT0Ij6(Rg5{w6s*c^ZL%$ z|6b2=v$LPA3JU#rR*}jY27yDRO_ZW~L^*C4Oi}0H2c7_ZustOCM z+B#9@AU57aXsPjr*a0W&-ec#)ftkn${BWT7+_AkV4!kBMC5DXs4v3VC38IMen9S$n z_yniBkhA1f`{y$QyWm6G6_^>1l~ZRaa#zP}M`|FgD7m5{8Hq_n@-d{el-y$RK}3ju zSNzNr`DLVpM___^mH6-#`Q)e7%)6E~5sDF!v@#(hBl1>9dxtzZK0bM23QTZ|=SCv6 zSn}ypq=#_IS-0-dfUEGsK$zHl(*yinUK3STrbBBfRBHXpdW6fXuR)IJn~}~R%B%_6 zCKL?T;7rtzNVDGjoa46AUy(PwsHo`Es_OdQJZOFde(EvwA`iV_hGHr3+MFBkTH&`% zEj|7HSB(r3d>0i31QZn=e)qG&_unrpECh0{wbXuE4^O)-%PHMdi5V!3o1Z{B!^Qqo0%?`>2>FDQrzm zB2NGh!sYik^diToei~g8C~(a|_mgh8SlrW-o6D0!ttj31#x*$MaimA)^CvKGbDPo| z^;}C!pN_k7nbWdmugtgTL7o#It5B&b1j<9yogy4i(;j?B$FLhtwBR~ zqOLVR*I9!na7pAi7_MeZ;2Vm@d=C z!$ayLe2W~Fz=ZJsV>bVf0bI`n>k!N*(=owNyI5A#h~B|NEOv4_S^LSqjvp`nqBb%gg+jJL3% zMRu>m@#_XL2y8IBc1VcM#^@Ed;-)Ix!T!@clFufpE|X=j&vmY#c*Mb0G^hEo6p6u z)W9agJw5|haAY1LaS+$a z5QTtDR3Z`JkG3S%0#QO-El5b5QS2SIY6QtyMXa>( z{>+t?j0(ToprIG&$9jz96^tZ?{CXt){f&*OscLhU6F93MYODUech4TMC!(s_*C|*g zOHx_6e}9i+K9si`&7J04(Y`|pKXRDdh!|q1xJBi`!R1^3yP;}fV2#0^tOl)7v%VA? z6%X=Pffam}e5qJ3Zr!?Pmx8gW$Co$2+V~Oy!g|UBN1V^b;z+G!eE~%RP9_6O-W#b* zfq*8h$m!TIr>*}7EaUUY)`iduZ>`Qv+Rjr((Dkn6dq~N!(1Ec zAJTiA{_HR_bf)SE$nDM=hLrX4Ub$Qjjig*p>64SdnN?#n^*E5fWe!3}hKqpY$w^)l zqm%9jd^Hxpmk3xjFgG9kl>_nR_ zRN!4@P||HBoqmjYEyP-W)@*FCY)3w}6*``V#&gjQ&FVDZCc+zL2I4Dv)TKzwEw4AQIFAs)LJ)&)ts^J*d6&9v8ybu%V)Qndw@AE@y_h6jxUT7KG@J?tylzy-$;Ef~ zCs4QoVuTGC#~?Hq%}h7kkaVMpPJwb;@ofYr1e|$e&~YO;b3s4+ycvWga(rHSj+1(L zjOq^4HCzs~hqk_T;@H(|N0o_cUX<04N|DDQouF|Hyiff7kN$Mw=ccC9|NgFB=DQRL zR)&veWRP|lnpaov|MELzTx9b?k1`?!)z&iCa zvr7cNY}F&!WmI2Xj3ZzUie4t;x}Tkk=cFKs%?!m+S215PJ-A~cuQDXHp_*N!QL~j= zSx;x@nerl6sYxd>Tr!74eF2pJehLAB%*iRd9l=5?JEA6$0z`6!2I)hX~0`?`qz699UGI5}taDuhW z3Oyxd7;1}ki(^|DwtX2`557g~N)-#cyBE6~s#XC?T5`WT{qwv-+S)e+8<(|j^p@l> zq=?f(dB#RSb##z9Eb2YEx(cDx=0nU*!9kB##PO=MKaHXDIBUXrs77#rWemiH@$y|~ zXIk2S)OdjiGYX8duAWq`-8y?HZm?c@A9vzAhj^!H`0M}nIl@u__l-q@cJ=))| zT%5a*c@K-zNw~nq|3jRUKHY(v4_4+!D7qD1+lIc58h9j zJq{!s8(A$@e1-A&DzxCs`jlmj`QfS26NJ3yNaHqfaIm1Zy{WPB=d;bmX^3KSE#Oau z#N$PvUtU^gHB1FP_6j?NZ&>5W7G;!L%^weBi4rN5i7&@P{`&?j%Qs+cV2_l=PPuNl z8IsuEz7S`^h;7P~J_8M>w9Y!jh+O)u@j_4SQPsH14JY(E9i16SVr1Dj*1cE^*+bZi z&~llCy_kT0lU^PqT(o!rql0TmAtvKELh)bTLOB+oE@U+J>(&hpl5vUScm*PCLt2fh zybXFXE2RWgRlrV5bt$ED_E?M*BhUV&;U&0?PuVns#bYj^BrQvBl7*$g~)kIW9)1Z4shh=HgS%Nm#%(|%^-$j-an zAM3=(cn`2rVZ1cEb{MY?&MG*)+nL*H&Jjez?Gj)ctT1{?ph@Xi6A)2sa4S4xu~v6j zEz+5IhV*{!fgVsUNoC^#Crt@QD!$dLxo^Jdoe&tlf^6vgrFbDZQ2P6?9oZ`qf??U# z`dzC<%FEqg z{x)u05(~Mf4CS&O3zbxmF!Pl|WE#SL4>5(3_OspN(L3qzFkD9r!#ercfT>QtzAY{F zx9}K0&5|U$zMw079Yct$(j6b3K2X**Y@z9UF`oVZ_whtO9E(Bfm^|gf(UahFGO6Ty z{QZ5&9#XihGq2_L(1_>#S0iSeRKM5$i(=<$e^=Rl*8iVSF_BQgUHH1{>kHgCc(jZQ zR`vJytAgX6T>WI+{|QB278KQddtumlR_H9};S1l|einFV>khQZ8-9|!2#9;M(v>{o zJvC5NtHF6%&MwQTcNY&qTIoDTi`ZZdZ#!3;Q#DrWIkhXS%@cxUJ@;;~BA%1xwm>eh zywSSWqiC(K`SV);^E1|W2{lox`%Z38Cnga$kT`nGH@(Z zC`#ZRh(11wdnO}gJfA-P;FoQ`cVD{Uosha>{mQ4}<5N-}TJ`i}!NW3&HqbLwI#tMx zsL&3JMOr0nLwiN4aZuY97~etdA1Tho2-uTEk^$yoA!vP`SUMdL}}} zU1(@%{=BC8qoS(%mWGOOoYq8Yq3Wp6(fzN8SNcO>0P)0z;(zthWn(+fxAY?C^)i8z zCaefvio?VU5x>Nkzzwk$`5_+g$1x(G{(hI4v%|t>&+=8=>h0><_`<`}os3^m;+Bd_ zq{=`JBrrvue_S%k#yUgg<~YIEHyXji8=j7q8LRfcv9r5-r`}=Nvip2ct!%7URK~Lu zorcI;NpG)9T>7&KOaU))SK#k=P|R??Qyir6o|f@zS28 z;8#vDC5ume!TS5dbSdni|4zTz7$4vG|5d-Kku}2Sh_`0`NBt(z_N~BSkY9IHZc0i^ zOKlVDE;e2O?|;F_xtM>hZESR(d>_(7M*Fxs^y2Ft88}&yrZc!!=dfo_BWdQY4>Ah5 z&Xt|9b}eN3<87u%sZ^re z+MxugB`*W}XonhT>A$g$&WXeMO)gut%)hvG2w>u}Pj$ibO(*K>laJ9U#!ch~Za|%K z?GME3@;X;>&J^aCeIq*0H_k9K;MZ_Oz`QND-hPbY#=_NXrfsZ&z+HBMT99kGunMhI zB#Ed<+6Wb)^Beop;?t*SUztumeHpYqtKt!_D|iKwUy(QPYabm~P`Ev_&j9}$J#v=u z%!i&;wJbo$or(=L4}e1fKZw^NmI;ZXsGf!8yt4Knj(U(i(gXTl=y3$TCm!m~9%s<~ z@gw&y!TnF7GgH>BYi#tH8VQ}vy;FV0+u;foXv@%VlnmBi!eM<}P?*^X4ZOjQe`~*W;GOLN4uLK4h0| zU|apQ|82el8nFb}v`AE|M@DAFgd2~EVhbinvY$xUFNqE*Ee!1+0`|A^&YXIvgn|7y z!akfHMsSaMi+98O?YXyT9r3-OIHo);oVWzMLsLz)fJXg~B<=gki))}n*&y8so)SJD z@dz^X!1C`0TinH-q-Y>6ss!rvEDcY`t>e4hpZyMRq|+&-kunXITO7*dcEQn>W2zvS zXXyk=Z*9e&x;H9!lC5qI=3fyK($W(iJ~U)9m3w)?@G184D#yu+(Xjd6RFd=n=RMG; zWp@pdXAm4GNbka{U5EyA@u1&ZuxX*&hj!nIi*}2SVV#&$8l2zuyMx@l8O|#($l4cS zjZ$C8f5W;)h3{{VUL$&>#f&Kq4T;81@}4wSVm!Dv&tlaZuYGgq(8*s7Mq}q^`-hu9 zge~~vv)i`GU=P*$BRP>H^gvht00;EPb(5W=60X=~mrP?~DNSXZ3v;=AA7Yd8kZ?hk z`&jIp@bKtmn;*d{n99zF6A@iV9M9ykO4zjCMkjRmJ;a;^KfW0%ri&~^`P-qe+Xpab z1flF9qh@tlX9z97b@hwgP#MeJP11j{tD8u)B;Kf(Lpfdgfiqz2dcCn(hCd`F)_>O9fMySzLuPOr7!|79zTsqL*_?$>hr z-_D

    c+cT=id*q)PR{bVUL0KYYR?(*3YdZIpvWz#>%M$lC%bv|Qg?j;{tq+I zM&;`Tr@F?ZzO?D3)G=KZ@4Sw$@*KOmjvqgbG#|!^Ve#1zrO6p159cq*1^6uY@?!tJ zci-MGWnqs~!DvdWafbP)_$ee7;j`+2h~nBUy5E0-y-q9{GtvKk5(D|K;s09;c|DJt zHCz{mNQMQ7g<4>KnX4O~MNIw|Ol_X9eyvg%b3{YbgLXiSsRwkL-?0QI&I?Qn=Sj@2 z8p3`Zmd0(;7~LVtM;txiNa&gmxa$aiXKf*u3qeXs-0>UxHttwFa>odFC^{WWQod;U zK5N{~$kW`ubo3#JsM~S#Mr445BtT@x#S3n?~q< z5+Ex9nbOjdm4)zpS5Mz?pP1Ha!1$w5PH0>*}u?44%;|pJ&1miJ%n?AeE2K zlGw)?iG5s?M-%!`f*(COMQ(R4EDR0xAMfsp3`_=ztNVC=&)JuKE$2E# zdJ?S*%*}m%^QM=hdgW6iK$hlAb5q{>^~Z*d>%$c-Zz28diC=nZe?c;8QyjuP$4Ga) z`Dxh?7dXz;b4d)FmCn)5#ls_J)27Y-ZSwE`rjLb@R)>JTLnZYFxn8wv$H~r)&U1BQ zh4UCEr!oEuQrD8x#iuBq#f?u~mW0s?3|1`^QXgV>l)=UXHyq{&x9mLDNfkWSa&tCr z+O$3=WdZEnZ=!fpkh?@DzH+Xy5#cybAp^)$>@UFyIMP0cJ+cD-)1uhz_UAZmgiAYAss?>tv=@ zSkDL17D?}JjXh=iHHUjtDp$9O)1&6h2=E;*lT~WskVAzM@NY3E+2@sBQ_AHcQ-~%B zc|O+hUL-F<_f1tnAA$Be84sM%tW%jKf&YH_pLR4w1Gym_|vQ@D%m-=8O5vg*kdnNaa+ML&H| zQV?T)#+>e$+1&hx$|(%o__MG{T4-82FsK0r{dN8`;}QaymanSm=bP&4KkmuG&%7~A z|G#&uBTTYTS&b1yLmUwi8|JQ)*vp4uzJq;igZTx;t~#+PFbkE?o=)<@fwB#?rj6YR z%k&Shi0y;##aXEFe}j|J1^i9^jC2hk%@6&1Qu3%TT=TJ${!ZKw>(4$e@ekXQqsDLYv#~56 z&jm;0Ty_JS#s)wi7tZ?Pl*?oW*%EZDQky3#J|3T=6RnX~3|Zcmfw!&2+k6uevX(4P zN=ivu`9P?r@?yKx*W01<$C84wk4wu=etfvHk`Ze)RFawMrtpCbu)}Y+ce67yoH9rm zG#MsC6)6-g0k-T*>9{)&{IlHAjx$3y)+2FEih&o$F>aODj3wA1CCDT83$RE5S5??I zW%%YK6wIgbp3_{=X!io(#@tMPIyMKafAF~kqeNxT5xtb4ByEs%K4tCNrl$YDqzxE| z*RSX0i4lPU62)AI6x$(G%v~18OBJ-jKIE1mOjP9G3h6>TG{_*Gn#948K|Zxua+*M9 z>nNrw4g;p7YDlZbRWVT%>2uODqr^iC{HfsmJrXf&{hsuv@Z+}OXC)Y|7Lm(&HhFqU z>#_mgPxjB>{S)IJzY;%c71#7ee!vWPPhP0|x~l5yAA32csWY+BTsk{XK`B_!#4&+c zIF@F6c&Ma0iA2gEnG&X}M<0*lJC+TECS;IlXWkXTe`0+)&dzgKo{nH;DU+cd^zl2U z53H>}JX?fo3KUKQAk6<@wqp^WBEOr}mIS+!=VJnzs@{yHR8Hon#QU3@+Xr-#;Y&?{ z<0LxPeU=3y#AyH{JpVJqG3jdVlqLpwrZ8H5zF!3V?-=RWuo)gmDc~_9%x6+)VoF_Y zUArP|0W>NUlDEV4*#%*Wc6^zV7&^(PwimhhdTWc2K!Pr=2zFbo*obU)^Bob6(Gx^!_X#zA+fOgtKZ?hIOo4d%?7=owqFOPki9eyvW ziMEgMsf=!fPqn^#lhAsNZR_;3MFZQzKdoWwZQ<6ZQ-r6LcZX&R&^}uzac?qV-LMH= zuyQb-)NiHGZ!3qHKH6*Zsz3MoKgIkD7+Wd4_k`_xt$l73peeRc!lxXoRU>Mo$$%O) zMVO6zp+Bbc3(5dJN~e?SGT+S^98Ff;iYCIv=f z4NbkEy|un;6Ll3|)(CyIyo=i4`%3TP=ZCr@OwgSzq*z)|-qwQk4UIHK^tdobmN$&x zO4RDac!QFwlNdE~_|BCnIvvgHVVAoBS}_83MDL&nW0-c-_0%wsi+~6&4A`WIdLAi& zldM4J3Dclv+9~F6D`DZNhAKo@PZPRBbUYkvI^>jXtRLFw8F>%2K(o!9P%}juKH=16 zZ`=Txir)bQr+$dq!}(4a&Ao8eXvPPbxH`DxxWNG-4hAisugS0`PtgD=F+31QyOIt;XW%Q2~M&lAS zt)yBATzo6~wBt|Ewv}jcD;L=esAdF8Z|2+WPvv#}CcVhZh{!Z6M);OnQ z40v2;0~h+eito2UFB)itlJ$0c@pp8sBaARXq^TlfB9HMAoM<>cepthGK-Xv))yRqy zpKj%l>>yv18I^@s7iewv7pMXw?&k=h`C^Y@!l=!Pr?nuKc@RozH;MZj2&eSXxPtDsH97R5ej;rng7|M)%LnM{^xCJ@4mhO#8w zffWts#l+EDdzjTDFq<=KH>IS3*PJ;+V}*~bM$v$rOm-so3@qh4+7%5ZK^?jk{<0%e6^TJxpEu5;-8mgLPxSyG}y>f&e8YsySpukkzyvJO=zad_RTz0 ztYr2BYV5+fv}FWJCkjE;W_NawQJaQwhiog;gjI=?s&A*|4 zIVcLh8oYXN!(p4%!qa299Eo#jHSpb9Z!myl3^XhE}^Y^Yy?XE;``nm zhIL9Sf%Egl4cqz8)_3!3xn+>{8KZ`-T!SNRq>YjFNa<|oG!c7R*DAG7J!7PB?Bo}- z$ly+^mY>;C%+`k>!vc@l)L^{5^iDW@GHJDduIB^+-edz8dLPU89+>xc0-SnpyAyfb zC=;+lw~D&^$+T`A8NoE1NwBF8Sg8xqb%E+~gw%Yo%t%pC7wS&AcYw5EU-oNKSCCE7xbl#d`I8clx^?Xg^ZdQT)gr`;F4@=(R6Bo`4!= z8j1PlP17y2j;Z9M+jMN?%apV8H95RxQYJCyiuUejeVLa*9or1^QElbP2~*N z`T?_C)^lsXYkhWmf4{*oV%Y{#RzewotJvwU%Oe~O1O44A*L!sjNyb3f!s~`jkfwAT z0`~Nrxan`BrqgCwCsY=lb!6>uNxa% zntL5Q=PZX|{n2~8y#vRxhM}RMKUi;X@8EgMp38YQ+5ZOAm=w_*20QA69w;zXocX5F zc+)Q+psECEg0{VXUOFu?EiF~+qMS6<*JUc)j9})tDDh2vZvAuj=#ZCLk|)YYd2nMA zgj~AbguuHGo%sZ6k5c}6TlsX7PZtzgbv?2S^_(S0T_fC@hj7Iu|rQ zWeC_9{N^x~`&j*_m3sezD1-Tr5=RrY& zHH7OeBpr@GhG$Y`v|#RD6+yn=v;d0H&!A=!v(wpoa14}c-C8fBzY=+2;aj`k`n=&6 zW?J-|08dW`J!`nGl@DC_wWGsuB`k8`GZx`rzBWEG%x|c!y86;23#XU^JiY-u-V@&6 zFTU9dg-efO?z)XV-Tk+euH$FJ4F32F+5O?moIyru-+qJsd?@-$u zC%v;u6&@Zwh3WY6&E0RFg@d7p)r~P5`W?MJDeb9bSmHTGtaC(uY()b0X}tG!!nyj9iHgWeid87s20 zvljaY2dHCX?+u?DA0HSP4=;1=q=e{MPICWCr3VlHPkBYNouZ-XT40Z;69SNdM5g&*&kqe;=^yg-9Rl&+ zi7efvhyHy|mYDwZ8p>>~am|jKA{q4dbW}LYOap`cCeCoNy$hOWq|36*>MV>T2_tbQ ziqg^1d=_P2I#9VYJA1`U72ACdrxU|Ra+-DAO?iM;8Wzt-a>Bp^ms5lvCG!0`fq1L$ zpf;_AM=qaK0zN;zK1pjy$NG(i#8U)lAtLjNj_dEEh)jf@E#+e}pJR>*IHmgZFQX@( zEiHTYqg}I7Qy-8X4Q)i(;|~YnIS(Irc*oR}~thv%KXbB?4mZ-j(vh%h3g4c0_dmQ%bARtE!Wy*wzp>{*Pg$o z8++}1ZE_@~N3dRD}k7 zr-d-+?6#<=wD#0!0i)LQwSm{Nj%Z&K(2u7G)5fuhvB4Q06FtVcg+xtry;gprs>3kY zYv}4T#QABta!6dBs13=upUQdW*$o?{GL|vIiH2{oMl}M2PaK7_ z*R$po=H+a^S;zj4=-E@yzHY?|&O?eKDL2gY#h6Z+P6=m%byVH_sA{yr_meTInHbfW z#DoedGbHkgh&ok#vKC0v!TFie3a@A1`(4Xk9?FCAo~nRCwJ1*av6m_51J7rv%UG$n zJ(iX>lh4fgzlyxiS$ITA~C+A{VowI)Z(itAcZ)$2_Ms&27vL@Z6 z;r@PvLOS)eRva&S?_Xtg*IeD(zen~{*42BO=WuU7Oa}Sfn#Z%_7#-*rzr9@k8l9RN z>*<0-%TptgQXfl34Hy)M_$RE6|Ac0CJC2xx;7I z&QUGXGoMt|^sCgLXkwA!p|kV1+Apeq8PdrN{rv?61?>Sz^DVn$mnthYdV)k8YCqOP z?kLNAVzyE|U|nYtU`7jKk!Rx}x(FD10N=+@_#-=nnh>Ze&-L^SE#kw=UxM*47e=sW zd9`(}WM9d@hd{@W4u}Gl^2H?wQMy`f{;OTy(4cA9bnb{g21dPg$g%SP?MHsk=Cb5* zl1wUl_@6|wYFtyWW5rAv_fjtQ=}9!Ub7%e?+e9G}wuvya-*Qt%ZwypuL1pv2HywC?z82lmB&cJuQKz`mkn0EVVCNMVk0kEShW}t>Z)fdGlK08tLy;yv@>}=;{rPpL9 zsk_n6UZiKqCccdrF>(Ku&@^x%{}AFnr( z&G7f1I@wh`+@hXIg91p0TVz8%nJ;X3A;UwwVFQW{p!Lwyoa~g0b<0tj@NFK^ zZ!>R+|GF-9_S87gk!BE&&zaZk*DZ8Fg^r7g1UOv20UCCeaKRx^nbL)5;oGN`Ua9y; z!AIYAY1vCxbja7HWqnszI4*XDua-S`FjlZ4atF_0+rR@>7%6$X(kU$~D3D4$4jz1a zyW0F0QC|M*aAsa_xAmQqJ>xwfchkPnIUYE2@QqzNU)|Ab!XmGQt1*KIi4+tR{q8D=-2XyTGRl<&s zLw^=fe==L!+AcYVFNIC#Rji=ba2BDkj#7#AjY_4xy+>#)JiJzEwGM;rCA)XOS=elZ z^NLn_Yv9VzWqOHX4D&}Xaz6}o2)$a3UTs6KBnZH6EZ(&Mc1e^a!L`D?YQpQMu1@qB z>#7>-U?}?MoBQ^C^4+P@?+_|;`h()PVtGf0E#T}oBiU!93-Bf}4Rm(?q4OAMZ*2ah zf2b!hiEaPr4J@g*z8IX0SleeG@Xtdfh}^|YJDBf9Y!;tpU?uw)o5)UtYx9?On;uF` zT$H-N??E`@8sV4V%la~AK*M}J=}dJDVgTq&F+4gmW3i-V$XHG6UV37de;1)IW$k8Vp$mdDvX|jYx2dJY0IBR zSqi~8o{yKkkE7!xyFP?!x@~8+$~QiqfuALj)BM(92Xet`tkMejmK{A>R=5}A)TwR` z_UAD0Ykv&R&nPZGEO$j7R&V`;!%ReGM)JKu>FGhTrcaJ}Zt`yZt=EWh&hp?V$b(@g z>rsxhuuwj(!&)Lr$L4IBkIhW3XF3R+v}Gv(lc zA}t&f`Sv`HG5Jw~j-M~9q|SbR{!;^{1s#5`un_s-|NdU1+-E^XhPtwne6jH4I(Elv z@j@{~RB&94+CN*kebq?p_}hCi`1(27_ScVn4{yWv;}n94SZ99y(K-1cvq%2Yre~Lg zhK9|JUXZv5^3-q05@F3(^p;#D>~1OW2W=Hu&e>!mJH#-x;MQ0-VfB-qQ0~p(KgX>Zr7OYB@w^*B z1r4X0kWtznbJwS}XzFZR&RT_*A?GuZwk->Kyb4e<=oZ(399f>Eb_G~~0Bf+qs8x%l zpG}HFtL(NlBW+sre>4`TFi`smqlpH(M&P#3rY6#}y7arj62b_!dy6e>1V@SVPUaY7 zuMuc8dUPKaApCdW#OCB1p^jEZMn+6h-TZnlPxB@F_wU>Z6)>q#lp9yWi77i<4vB&r z8v!D*OH_yKBw$8Oj>*YO!h8bVosc&yZtdoU;8K3!w+WS3gqBDH_kH-m78U*ta`UU( zP(IAgWo%DTbV-RtG9kSVCd-~%W@HvDs;UI9oG98 zT>+G21sLB+?W^p4*$5+mAy5L9OK$JYJfSb78z4Gt7kKD{pCxYIOGm@{+%vqLuAe*< z7!?DFpI0{ZncPBR=Rz`=*xLFP)ml1OCmp!w8E}n{`T9 zrV5+#p!}J%&>@8OHw;JOP|%YF zLV*KkO;ucLIoG>!#S8`eHKd?j6-H_B6S;kDzuhDeNB+kTbwB(e_kqacGkj}k&?s{q zqjPf!3=PeAZvFbF)iUD`|3HDjPeITx-O{tmA4`C$V>|eaPjEn$V)bliG>S*l6K8qj zCnOvpP#|8NZe}5?6kUZ;B2W7H-9Y@R>ey9!xnY)|2%+QUDc|BUm z^&9d*F-W2qAw@`JAw(4I{b5i(6TAdZV#E(3eb_C5%X$i<{tG{I1;^{JE61gdV$<)T zNv;=54h2SrO>`Azu4_Q)H!n&x=fTtm=cxW@YHa!ggLiFd`Rs3CA$Na)`qazUuYWEv zICz?i&P^)g27m7ZlX2@Wn6nJUrOIhS zJ$&b-F5fuX1y$~f^n^eUFXh#N0cWpii3y9Q36mQcnX0O z%1fABd&!{OXwW$hyVTaU^xkw(INa!MskNN2lz}80W1iC0wPlO@e;D*+I<)Xh!=H&V#b_Qi1)oQ)Rmh{387OW=9yMMsFu`by zm?Xy zoy)i7O{0uu&!P9eVPQ#6tb8Js`d&ql*ey87eb_~XBiPx;*O%m+wNbO3b978Q zrae6^F4|MXseA%whI>tN(upa^ZDd7``BdQ_y)b=wCghZ`TaAq!mbsxw7@ymyr0h_5 zM^Q&nYKN;n3YYJ{tvp z)_u%2E;0q!EYZ4Fdk04^Oip7wXHJ!$uc%gs4KbV6S#b6)-oF*^r$bfRw*YZSJ=pf- zr@WavdSpAL><}{IuQYE_y;!lpaP zFT6{-DOAeUAX^2_zG7Bc6>omf^qXlv>J#>xriCBP&WO#M71$1(H~hcfWg7Hcyx&@Kh^B~=?V=4&uLr-r14j&0 zYPh~&{>|+3%1Buf5iw_qXAF8XBQRvf^zaPm@$CYA#;a5l7G}hNcJ2_p02zz;X1!xm zWY{Fh;00Q)lOlX{9@mGmpLlBZQyE@2nokuT|NJ}uM#Hxh27XX1(uuCLcN#2M+Xk$a z0c$=@Ka~Hg=wF|n8FZPBT&p1=(>y&TmwLLJ>RP`pt=|9E>7f}GkG$~-;p6-2%S(?} z8Jmvc;5za95IYsdItA0Jbr`zd`+NU&lB$0%h(T%54eYxex@jhRF9#$&o~Dj%`5s9^ z&-*QXe*JT4lYcqUcpVu#g9C4rfONiF-|w|rzYu=i{{&aTd(dM|zhbv3BZy*y9!Y^B z{0La_Ykai}gyjI5hcn|4IQSAAew!JM_@Nb9D^^e`rk&V@e+TFgnmWv;uUdd+$!+x{ znElu6vLfWrg?RyWr?k?J-x}-NZ%B~i48I`v)0fPEms%#R#7a%NycW=49t&)^quz1?1Bbae(>?W9$d2Zlz@i=G!A=;!W? zAb|Pt{uW^Vd-Z z{*R%9ApJx$Q!L$>xxfo~2T1;-q_Qt11vx4dj!|oWq|?=*I*UYF_)QM{MIphh;v}qXf;xfH8U*A zRU^>?s|D+q=bW;5x;=C4r_z#=(x0v|_R|-qSjP1l#`P)26+;D%xsVWxNJqL%s5o8o zKd3nWzlwA_?k3XR6ht~+i8Cf}M65fFY+`p8>w0>+PmhRof%+J>9G91uAl}_?Bi`No zlX&NHn|POxU1AmQ9{R7uyKT%4UcA$=$ByYF&h|DUp7fD`>go~kuAjuaeiHAb5bvt1 z1F&JNqMg071)rON&nJOT*3?A-LRpS5ka&az2L%RBw&Tvf9f#9jD4v-m(^ubww=-Dw zg}5=;9EJj1ROL6yoQYEm^+XuZ+iE22`OD_NY=IafRVt7KaPq@3I9(dWyEyK`hcU=d z6wYqIn-KqC2b!~eo6!vQWmqmEFBR!da(h+yj48fe{;81bNsq3xhr9W*>67L`Afh_r zbRESoc7wPOh1$>3j;Yk@?K`aGRZQg7U#lEHbGo9%Qyv8}{KQHGweY9pR*aWy()Xc` z=40t0q4&ndM1+)Ap8fsOP1h;oZ?rc5dQGNqnL3*&u&e3fPq0&-KK+BqIp&E~tDcBa znJ$$RQ&WD4fdi*z9%t_pm9Th*`D~+VsPU&WO+VFEm!4>pN^hB+990v%lu8+xFqxy$ z+s#3`XYa@TUdq{zk%%!{={;~_uigO#(#FmS_I4W!0!y)dyRlL7xkuIUbRHE00h@5l z&|u*KzIX=3Xiiy>wK*Qz0f9arft_c!JZr&NkW<5iq%0@{|7j_K_bs@E%{+zm9UgA4 z{<8Ahb61_b+Y8!NbLLDBnQA=qvsirY$6<-#9BN)%(@7OR!JaNMG3f!`kmN*p2KWDc zgl&KKda&ob95wTXWz9%{L&(?ADgT>gle{ zPJl5xd|?)SUJQ)=1k#PFOZfXV^rny?$;_ysa<=mI>tT_+&^y$1<)+Ru9QivxcMbVv zuJ^94_7-F=8jpk@PXNXP1DQph^uqUk_+HYtw!JjK2(^{{kt1p~m5hhet=gQB52Ce= zOYMlJphR!1*=mwl!Du)+#eh4kL?572V-CD2aA>x=h2e0v7mf!T*;)Z+)n}ZB7Y%eB z%OQeqy%QELz$nb%Pp~urcG?Ofk3(KF!#k&;Ri3L%O=nF)y9DQTD6n#Agr}>mPg9Qs zz0N9v@y{AYpSAW^Av`I+{YgPL<0-(JtuR|0L?^NahV4nW^`#e{a}%EHvOZ^hpFx1R z-woy~z&fok8Y8cNf+MvsMm{&oUGQhYZI$&|@*#A<{A)zv(P&r;7eI}uss}gl9xyyT zvFMZN9_n;HZlGT03mCS6(zFtk=Jn4|dO1O9X8#POsU;}Qtpz&TH{^g|w$aGwhE&`@ z?q0&%=^p5$Ktga2Kf`nnO|jqwM!mC)kEWP_21^5Xj*TXn;55sB?jKDvL1~`<45bMp zD9xA!YMspr!4GwvH6qvw3ld=EcY`Ggu$J3l!g}38Fn+yeZy8zZ)>bzQPd44{$z`KY z%0{2GU9n+dv|^20{=8xpLaRe}YqgSr_a^m+TtiCk)QbiaRKqqhBw^X?YC&t7BtQpj zp|qy?yfQdtH6v{^n@Hbi+1WH&;rT7X^L@6@6I94cvwZYv@4G(D`<)6ttGD%ysK17D zrKfd#xB2x#m>SW6hDQNYjEY*diIfrgq!jw3yt7XNv|oU#?+)z~piZ_>TIYN$i>NOg zV1A!+PAdME+jlDYO=?7a)B$V(C!q&6D^?-EX~Oa~ZrXFz{=NmkCd&-TAbz z2HgdyuPxMebw?U$b%#;Qe_Gw-dyoAbV*9N1y@LWY`|eOgXwb94woscBY`1012mb?n zhXqcO^=&v2Mzv9BU3_)PgWkaI`Scm{Cxf?85fYn=JG#-Ba z@N;OPjBLi5kvSqb-|h%?({Q!cr>(0mi(2NXylM1VTUs4K6o~C#V>?4af1QLr_1@m9 z04t`z3bHh9{PQ?H1z7prV9kORD$QzzqMizEQYJgJdH8OyYynnbh1uW-91EW0$Cwa# z7yRtu;To>o`m_~48%Ce)8-13b#OZ1{4}$7$e@^IapwOc_E6f(FNvjB}?U8@Rs-N&& ztMxf62BZQ^c{f;y0BfCRSbV^|LuQhBO4+9$S>G@N*nT@CF;^T;Y0oi(;yfLqRc+vj=8#De6}^E{kY z!t!WC+xUF}8?f~bM8MkgKxhGn%4iGBiMzG1-}a7b+ZKd36xzb~jKD42D)o#xjaOi% zA-tn~3yrgm@v!alhew{b!t-q5jemykwuK)Xfm0+V^08ob?mo@mz@OxlF8Zio(H@Qd z7>RGeokCag;qGvZIn3W?Ij1N-i9gSo-GZVW@fCCz>tTDBO-sVW=4)U#u*|KcC7XMM z$rav)JJEBSdn|nyCRliv($aC0AZgmPBuuiH8epc7*Tw`$sd9S=*ruc6V!sMux}?oBjyx@cx=e!65XX za!n)x!&98(p2)`>>gC|%f@rh8KF-ByE`l63-s{x)0m`;_1gcbl$X#s5aZ(NeW!H7? z*M}Gb{xp1w34X#!Yxcl?coe@Oc#7kTe&t+)~4CyiQ(-@PbM;3cfx$I-`Z^f5$DW#psh zL?zEb#h8q6Psg5)gyehOoNi)eq@<)K&2yiPqFqTzi=xJ$pc2QZwOV&}xc|b1OMREF z4yghcCoR4&BxsUIEM}!Dt+SVxf+;H-@CutTeMZn!N5d~=`Va*JKO6Zt6f?Wh-+#p; zBs??A#JD3V7hKa|A2rB>$M^U3^$(ilX;2U@Km?dp#Y)HfO>%W|a+LMfe^l~OS$!is zTkLLiX`S2KuP})Tsl+(?8J2k`2qRjI5iKUHXJnx3mv2gdM^ppjBpi3+GQR1% z>>L!Gxn|9pg+b1jF$|qUTiX@5FNzI=@PgAhOUC;9GsA8FEc|Ch*RVHIOit8K>FtH{ zT>8R!(a{T*BrS=Lj*ecGo|%@Gkuk@^zOSvVjq{kDf$r)=AtCN!orBy_e8Y$qZ*`#z zs)Ntcw58GGn6{#0MI)9-HTp=NBa;H=#3Gg`c20o(pmBL-sGqWja#=e1-ItX;d|k@K zYPBAmh`ELCiO{X+2U1fboQM0q{oq(pU2AJ^-XwoF(nZ>j^INzysi$X*|J+AlV16{x z-{VqOQmPsvx>kJa7DZC2x?5Z8kz)MoUdA;lEp6$2-rg>Pevd5HOVAhp?$p%u)Y!RE zbED(p;^xhbnirp%o|e{~`rr)J4b+tBFsY`*rqaBN{QXs&&Os(;1`Qac>2h0}){#e* z&v4IIK-^as_5Ldjh9RTWN$KQ(TNKX9u@1%|gJGrdre{P7Y{DxOBBnYRX^I`{>biz; z&yDM1N4ZWUatjI3DJ}q6=b3Tyc+?5=nlv)6!4W*pLj5K>Bdo;B3w1gW2Xy5e>LE&l z)DJ$IZMflqkZY~CSj=NieADdY?cLSIgxsHUf5^=i-)kksAAR*xL*2E!Dc)mw{EhXU z8XluohlVyc_o@8nKK#tObvcXtl-GKCQqw}2cs~1wiQ{zca&d2KtCtt^1J+`_G_X~C ze{yovjIc0A0hcq-#~Hxo*#3TOmh|*!f0t_mV#Z!+2NyXeSc}ZuNm@sLl$J1M)pBR73e$WknL<}_~|+n8WV?a zwYM~W^~s4(&KkYFm1dB5iM`EKqTbH%t)dT_89yxkdE=P#ALv7aorX=>8KI#r==qS* z!A?SUPQ-%4kjywrM#eGoc+6wFH?${@S$RC>@p#P4ubCNNkCDg7NXg8MLqtS~hKPt0 zk#Np|WBa|Y`yOiL`ToAY|LebthkN(+{Pej#*XPl_aG^AV8nt~1@Xp4uC(UM#>FTOr zj%$RO$wH|V7VC3!F%=!1ZJltf)7sR08Ujt=9VRGU&;hhqW=x74Xm4+aA~{v+3xGqK zfq_9A@z|vBW1n9z1s*)rNqCs7tI)gM#l>7MOnC$lqA;26Jh2y42wYM&Fi@VD=!RBt z1+#Rif8~rsdaaI-5VLvt@~kYUv$AqvfI=J53G84_WZJiHUxh3H7XX&xUSes}KoK;6 zH#7MqlC-^h$>9RwHY7ng0v==GDmYq)fXCdrC0T&=z2v_o!7cq7A^sLlZlP3b6FCW- zoRpeKJ@C!sAzYf?(FBTx1^w~gv~Ftl)4D1Bk$M6L_lW_9#oy3qF8+4IQq^q#{VEm~ z0r*&Yx8ZSNQKy0Gds|^Em05>cokO)!>YM`QT9IN2TECxr(Q2lN7^l_57U3I}vbnu& zFq0tM0yhlx?^fI3X9{ftKj~&Jp>5sNfP!%Mi(@wYx^3M?SZtwfLmb-X9%>scR~Ya4 zC>Mvlf4pzi2UHR?yb6DPx6;%1Fv4+LdZC7E@R}o^YX9eA|?r1 z`&a>OFye~@pf(EYgxQYD5-FP0oO0y0aW7e?L;7GDlgdORVF&k;P!ruj5q!&O%5-8QJFQd(;}t6v zS>cm29ZW4&z&gC6W#3v!XubKi)@T2w^=@eYSHOm?iR>I|{jJ;zBcGdE{jNZZZsw-_ ztv_e0U3L*beTvd?4k$S#l}l0lXD61;msD)>5Nl7+W3p#MSbORj*O$tSSV zvY0H0RcwY_9OMKfe}W3d!sm1FW*6k>Qy^<~fld+srvOj!nSZb~b@c zWeeG7*d++h;3-{7%qv!rygFGb?B1Ods>#FcB(*{lJA?P_kJ^ zK8F|4Bq2adX)pE{97T{_IR7Op={8!G59K<+)uV%%$h^R8<-^~ws=T~~j&>ZEOPOT| z&tfA60BAP;|FtkULG*97`1RAyAXu~gE5F?K+N7asx%1LhGJ~!oZx6y{pOM|(Ap{b$^JNO z&YPg+J{E)50Pz&7KkO!FVB~Tbgi}&6*i`Yf0m^_9M&~zinaJpIR!}9iJ^bMcBbNrl z%ps|*g4np$y1xlBEYF4dzlsEZ4zl@TywX_CcgSpW8;3aUlDD~$(FcS_>AS{ z)W~yCgjmXvrT(5xM9(IpXG{&Y-wLKrpH4Llp+`oYz%CQ@Rqe$DmBIfmC5}rpWbBYE$^OntqX2Q0rAy$s_eX6T8{_N6f`Ewk`;oNu^K>JMQ)jZcI3W}g|ngq4!N z?8IkXI!?lD$arUBiJ9T$ceGE35aXNbGeNzr@}Hm7;PY`+Tid=FfT1RTC}Al5Hkzvl z2FU;Cj{`v(6A$ynGTDIB&BZIBQGEE@%Y+Rvf;89DbJ^*IC}pTJ<~T@R7d);Ii1Rfx zeB0&r1dWNYGiLJ({LY3wV!(#Gp^X~IgXTaiKpTYWg@eQy7dKAl@|?ZcIns9z;C%xAMtl3c?XYLW~JW9N$y=M?k<7BsBx)Z#e-T~hz zNI+)u;Q^d3!QMW^P)O9}{lR;}AAa(7MjdpCM^VA<*cfAVweH$c_yzxzFSrywtJ5Ue86U-fn+^3gj{Sn6=EJn+J`R+01N& zMI8qWgYRR$VjBG6YvvHXQzwH9;bfayt`07O0}2A((R zS+fkL#dDZ2*c5@^X)M$d=J(9X8O%zA=NTKK*+A387|2elM^7tC$2ygR!n?%pUryliF{1;?w0&2Yi z|6e5>wAGg_gEAhBX3&L>)6j=f{viV4{<-O7J4C^Im}0DP2d3$_YkXJ;XSm~HCU;!< z6_Su)a_7ZfTQEkw>3f%a_*j%_j|8!*sm0@p85b9a9ibcU^0b}D7O_QMXvF3*OvKK? zgc(xD6M1KMFx)ruw;40w+dLg1Iz?<6rtrQoihfGyYQ3(|-V3i7_i7c_-~#!lLEK~@ zPaHsi-bZ*m&~GIhHtcI7qaOyrX##26x4|Ac4ASD%cMfj1g8mBs$ci5s;dX0gK%Dgo zzyEunKeixItxlW)LGE6J@5#H2%!)%4-dDYZ1;YS-30_F7gEjO5_CVqb_-f_bO1+0h zV^;?rI52r~@`44iM9tX*HGn-Nu7cMMmUef;OEkT5f#+lfl+A)hsam*&XCVI*$PZGz zrML`qq{3YLiTKyDSy&kQeq>i8da6$do zr$x~db79XRZJ4yQRI0rn{m3;$^#Al@YvJ5`qrruN%Mq||PPVqTUI_-Zfn!8sE~=vv zC;8qVdjbqFHi8*F!)Ov{#~zI4AjE154j!fq!F|$wrRUmUg*YMf%$FxAM!$>LBl9LJ z>fp}m=wQ5D9O{9K*!OemPd%(SAY82w z38N5;QJ8>H2+hqc(`qy7>nkh4TS+@|#LmPY0$u@id+C8ghvJE%X|2TRJiKH{t40)}13 zheK468`p479Fd%t_oV->Df|7s(Sx%W7p42Z ziQY`~4unypz#!^&b{>C!d(4C|XH#9>ak$`U{^pYp_kH+zhgT7skdQFK)BVH2s*~pj zd_aUaX}B)j`Nb!vY}m`(=p@*#8(h2g&3&KOeEvnlneH28{rY#mI&*y_Se22TC*FQ# zy*+5fL!(6KT;N?f3n;Jgb9ALq1KJT9bGIQ%#@NK?k5*N^Va6$p5b~DG<&gk7hDPav1_{6S z246CTWAt!SQ5Qn08_@$QVTvw2BTan07fs(l}1e4mz(~b`H43A*vwOcDE>4r4YFX zuJv4T4zd{34_kY@y5!_!owuj;!}Z6GomXh@nS)(A2i2WFW>+rB)zC2>0}e4=NDnN@ z!NK&Ef6zYXuSC^YL7jZ~f~=PabH?UV${q+T~#*5|(AwZ(b|+&^C%07YLa3zU%M%S%kLqIy`$`Bofj`rY!x#OSMy zAH((y^%TES^4iCZS4SrLvGyl1ey`DWI561tC8*2)cFEbW2{{FgUv{#i$HgU>?i;5w zq(O6O%CG@PE`(GK{wW+HGt_ocSW9>F%}DvwpUyjQ{VJ1k!|HKXwme_F$gvCo{hV^^RcvVk!hAlDw-0Nh# zJ)J*YyzagpVJ==h15_n?v8~4zw985?avY`sse~>;rC8!R+tAo~9h_lL)O{HlPn#*8 zK@Nm0lF1l1=Kf0O8J8Gd>Y;xmf8*dGr$elsBm(UGIxh=@9%u|o zj;H(pVV%%E1<@Y6(9;NN@f+^=sO>?2JRqE(MR0UrGWY{b;(Mk`#wC&jsin=6x;rxJt{3m zBo@V{LGgPJ8NEV^dNhs;jZ=tfI2ARhqSdy}f;Mxp+3!*RYDJsv1@PxuI4vOvp3RVlid`>zEQF z@9iykWU5Yn71&xIVR!BFda2EE`TmCf$e1K>E)!#7LTrJuNS$F)qJGcby%od7;%Ej? zKTLmLK|${oMclm)0}IU0OiQP@qR3*w6k6pu#;~6DZ@`-UrlrMc3%u^=X#My1j^e^X z|EyEJ{m0Ofdvy2Acqp&!rvTl3j}<>QNt2nWnfOS-BU7Tqm%8(3Pahv0;szbzT3=t+ zh0e}vp^$v#Mhw7$+1Fr=)^|y8$pA}tP?Lz3PEf0r@JJ?>t5i}>>~T5!y%qPwso@iI z;gd7sWMI>V8@*m*)Ro>VO2d7{#ZIRvIzBZQHjwfQ3m+*inwK*PtBf1L;(D6^>6!Ql zHw-f9^<$-7-=ZVmI-S=CZNdFN_x0T%UglMlAY7uHmEe<(AO&i8CPz8celskxZ2}553+B2H>&11B|jwlEB7}$!-36CnXKpJ zvuA@_e5I!c?Y%x&5u0KN^?4UBDNfN2dI#@HHqFZQxC#q%isu&=&R_T>go}!1V$X0& ziCn21hvhj=)^YU6(XZ>}oS+%#`C`940ov?A9?uQUy(w8sSIK3%l(|oqE-rtv^qJ>y zr(N_w^4K6*pk_j9?$ghe7S6!l<_!JUh%$aOq>tb}rt#ff?_N(!o21w4$3&|`L?pi; zA(B1c*w}bc5jUgY7G?%M-c8KRQfhM5CtKM9ECz|RU7EM7fXYno5_qJ~qTkP=-%~Yl zsWUTXPB)upKU}4TG9E3nXjq(fFEMng?;J z*n%LV;S&={uuRHAAdyFA#6Hi!AQyG$(5XJ685cKB*4J{V^>k05`tIzk?7P*X({|RV z4TLxbXT(KH6f)X4Ew8BPQEa_J{LY?c9Pa44I5^Un4d{_&)QKRkrZ#3gQ~pc_Ko}Ry zh-G0iNF=}O~S@@)mQ4Zk3K_bUZzu!D*BtO?)Uw|??%r@GI z-TQCAuQNKGHX?FZS6dIgC(N}3vqxdLm6$lYl~842{-mYvrTqIncuxApGqd!W8Mth=!c|l{lg7k>EVZ8-R#Wq@Bi~^MeRt$vH8l;Mn3R;17*B)0MUiNc z4lN2)#>Xowckix*WJf@!yiarZu*GZ#r=M8{GwoYJ$^qMu^rFNqTtLU64DHhLH#Ydo zpb`S(bVMR%MEHo!p^X1SlTby6VIHwFymRt z4_TyzV_Sy$N0{LLbXXJqMp~906&00UX2DE+#)r*lU^DgWDerSSRmsJxR;?;dRyqAW z8IKw$&m-*jPh9wMtn`N;evppMc<$NfGAM!pNkQTn9G?w?O1uqH(No#uVb`fYEFIUM zubC(QWQGl3gn&OiVL`1HbfT7%u?-EZBBX2l5qXyZWM{ zBMcAWNHc|S3`}Q*$|9nt&Q7^!?3Db0-#R=C!Raupzl+Ks3{Qq$Q(+A`UqyQgX`X}Gm#n-j7u*#waw&vUbJoO0+zqD>LJn zyE`_r*Xx$a+zPd`Q={qVP%Ao}J)ELPs&up}m94ExX{!T=Mu0}+a41y0J@#NnuS%iO zbag3U-rgSE)uY5Wf1HTM*`*7!vKCt6%Rtj*;^TSxBNK1Iw}7(cMMcZ=Q=yLg29pNl zd?O59Exv@Cjp%UN?`E=oo4V<+kA`Jw(O;xC?N29Kj@3A0XX@!qQ}@K>rf9B z54=?srH9DKfq>ZIz>ht{W9fGzsyLJZvue$bVR7SW6`=}$E}E0Ja5`A?Z{T;Gbj1P) zcP>~l9YYd>VOk1!?^|tym^TRw5Y9~{YL2?iGre?!C#SNdvO{WYV1D;EA1Hul$adz~ za?0pkPU_jUDj0}a0+}(s-Sqr|@8$rhe_*7uyEY{SC3Vd3xCiqG@A4cS{PW;AE7J#m zgs|1CFN8QEyRwIp6~XZ5OQ3R-daNqh*1fT=oh`kcn_$oz2MPyyYuqvMBNf}J-O_!y zlfS_e+Tcl;5iK8>VI*&!sNSI5jQj;&IW7}ck=oH13ESXyx;FNUWoJAI z%czDMWo1a@y3*OYdQ2cG^v}8hZAzkhYan#AM%I7j8p(PjHB{!R`L7xfr*TVs9F~+H zzc1E7t@8FuP_7v~m@2X%ctK&_m_c#h^8H!pbs^AnYiO7>ue01c=; zjj?EPNLJQ3mG^Y(X|D?MhH+f5yA6cDHn)6C>=?OS+|x5Av&>AW=azTGWtn5?!MuSB zR?$mKk_y(_j$IZ;@i~i6SN~m=mOKvU)ujtv7XtgdZd?vh z7IrywCb$tc=?E}sj-FZS70*35&M-AG+CUN9X~LN$l8=a)Wg?t(aoO)mSEyI>J6p2) z4#yXmZg-E36yru7m3`asrSKnLp8$%tlQx|CjbM`hEV#H8C3L0crQ_iLI}46s1`NA= zM$YoQ_aJf>bI{AN#_ZLAB9iq{U~DGh6zFJe{Q?eS>Yb{TMf6k~6i&5iBa`k*fJA$DO(_4z3!C;BSU(@oAbR1k zX<<0sjvyQb`Tsa+2C1J45V^qNd;7N2txY)Hf}czbkt;$qgM;u+0$vS3!G5w;e$PW7 zn?H0<2$0bbOneW=RBlX%9qA(J%R4?h6EvyREQr%YFPo*+_TvuQ_HAQ#PhH)=_U+tQ zS(%(%+1>pGBt9q=-&Z8E@BE_MzlKL+M8;u6!WNdWY-&P$Y6<=)8w|;0A!ipE>+6kn zQDR+PqMhmOp>m*B2^+n%pof2kbd0)uHty+mQB_t}m0ff&D{IKpt`z0UP%hhtr3_Un zezp2fBf2kW9IW+XLkWAks)av4dSUhw(7uvl9H;AK7yvjM;}#{l(e;hcx8o6 z@z;X_DMT03jm45g*c1&&x-a{_q}oJSRb1tlVWkvges{8Zi24fB#gKMs6ZYo2h&_Zh z!0alsZ!_#aGn?RWI@>o{+|gdUZ!^76K-f^adEe1<+qc^@;NxSiZz3caCgXpZn0x!T zFB$Ib`*~5g`+Ry|xc3Sbzk?{A9)b{$K{Tg}loh(u|UW{h=I za&l%t{_K+tKc4!rMRPCI^6u5#ICNxV3jej}PAxgAM zBEo}Zaux6ccJ;HcMG9$xfYi}_ea_LTg=Q>B8(G5?VjVT22-msu9=if+2)lOG^#n~y zniSMiw@YXPz5P&mZAo)8XoAt)i_}2fUY0s|AUilgiv4C9i>0Xvto;|Mj|e}HdMFLG zfk{^tJ&o2ehmgAl$f1>3D}d!e=xV`DEbk@#AJ8}gc491MDcxd*KYlTBMRFN=)O z%PzJL)NI@GEzT&Mo!18JPgT0Hp>v zR0#f3VZj@Bj;iSdslO{Xpn-IQ+M1Le2&z;R&@+=|V@Cid@;X2^Z zRlUtWd85NzP&Aw5nfT~KY0glM=X6ugfj8EF0bdB5I9%Bq|E!t!Yw(u*nfTtI5NPk+ zX+)S(cm&vi8&Ewi#hIl1jry z#SU~}U3Uz`j#Ns2GjM!wD1@SV5h5w|&tRnx%I)O~u-=4HH&-=V_hlO#Z>Us3V`4R# z(~ZgyDa@OB`$-U|=*>vOwej(%o?Tl0`%*=uP11h_9vLp$3GlkZKr-OzCw#>dg%6q^ zn3g71&B)1p^mk8{K2?sY4x`!)S-3S&hbX)cZz|Y_Cwynxn00(R6u4M5k#g{Gx7HLY%5pS*F^s*S6Y*EicAWD}|QBAduSu9lJGe-%OyP(eAq!($o% z&S6fpWecv8J}3;58s9E*0Fr=4{7uAj4apGpF{M%{(GKyMhzL+0*qDe!J2pS;DH0R2 zkz-rkwf>Wh>M+n9&!m(?(||1paa*K|(8bv$DIM!Nz@8Abx!W3qQYj{_LRx7|TufXX zWF5uO5l)D)OBNO`EG$OJAmN{MyHB?I%f7ijQc_S56OmwN@kAFG<38?BLw!lpmP!n< zdOavDqJ#vb6Bo>faw2tSDLQfDX4+*)yBlezQc<|Yi`{O0I#dGF^?~O*&IhK>eSX#R zb5nIUJU4W=Ki{4P5Jr@8{CJA}9+PR5^zzpyzrHLT1$OYQ=cJ_Yfwr2OnzjK-lfU(B zrx%QM3>v^dvWYPvu#iVM26W^YgyC6c6x9$w7zOdKC6MO;(|jE+6heYMLoXk?{pEiu z0cig^PE=zy*VyklcI>QIonTB*d(Q%Qz4hGi?IjscXp>#~_V#E0sM7hTx?N&vqLl3B z*c5F9F!&8H|GNRDmvC&=8UG#r=J}u9x3Y1p3J5kC+xJaTy~v?2q`2( zb%Ae%s&a?m^Uz84qKLO9_@YR&Zk@(I-v3h^?N{(njn&3(S|cU4sIlEpDc=tkX;}2H z0w3WG?O7n+urJ}JSOHNU%-a_KNc~T7v?a(V^v@d~51Ko(Sc6*uvH9sLl!Fc4i9}3K zELN;kE7b;er3`oW?9}X3s(;1w$o*+)Y5cfjEXZQ}ZKEMZ4BukB9%}QQ-q8|-Sp|_5 zB>>3ydqKxph=HmR-lLoRSp28=aY#QABcig*NE)Ttwf7U;`)aFpX^b<7m{X3ABNrJ) zHg@uOW#?I+FF?lRZ#5csIRH{tkHpbtcvyvVewP+kT`TO(~7AOZhWvP|Mxf*}0SvW4W6&H=hS}wDnBy zsAh7vg}%(q&K?C#D16R0XJ@CTf)6#m=g5(dt8?!i8N@J8EGWu#U1;m<@%daGUsPsf zr<)=oMvjS=SHAm?f24o@dAdCyEG!b_+o(A?xDaragc{B0y{LLg6$R#EWG~s`de_2iBG$-o@=QX>1#H3N6?UebRlD@JpandMJHy3*L zVsKiLA&j!;FvNTnLQ5v0%+bk~JCp$P(%$K(9@+&P!aao!KpXf1KH7D)8= zAZ$57|z_q5jYwP?d-vgk393Z`#Br3&!bm8(`iUF5pX1j+)L>#m}waWL>@pLMvP z65i|Vmk0Iqcmw@q(>*T06*2ZcwuygN+=4e^j`#p?ZpPe#3RJ>_uEk$Ni{HM#Qw{&A zW(t8RG^(J558U1!;dTt;?wlX@-^OhI_08b6*lMQge~7)Am(F;&4uIM+yt>kkiv=mS zi$w%5nTaV#2mNC}M79lxXB*bJ-FttL@XdH6#ao$Z{u%N8;;=sU{IN#o1 z#P9TW{yLuW^VAsY;9hL{mfjZpg*xk>O{9UEP@&Ey5kz>z8rsSInJ<&(!3j-*7p%ak zwE({>Xdb4$4OSay@U;v7nYP<<(UGGVt7LCb>OSJ&KyF_Ho6pQ-U?;U!I?+(8TqBG! z#e^s(3^~qtZ{grtt7)(tS6(yvy^$@pnnVTMi?`;3-g~fxkrK!}B)P0~d^TE5>`j>} zTKE4w)vZ~0lN=vfVgJqiNf>F`CMqu^$tnKf0+~c5q_9pHO%OE^ydNDn$&tlCx(=N0V^Fl$2x;Qxa2>MtGv53o{e-`tU%xA9iG; zm!;^XY}c;6d*A=qak-z1}=TLyY}dpC+gpa)q&ld*j-e#>qnbH z#6ss~{cC^QRaE45mrbw*1_Z7A)1OxV>FF}JeI}zrpem+;^cqb5s(60k!o>v(mZqCb z`S~W3IUDV7$65J3B*8rpguMiMy_*T9S%8>PiLIAj%DJn;0=$m;b$tc?9iGm4=_QV7 z>$AxuvX@?lm)QMnekhlK9*jT_hB<0FHGTD2ISF2MropL71m!3KIJh{cuQ5K03y6qs ztd2}*(GJm7Oz;2v8?9)dUMwSvn6aQPfOg2s0~AK z?B+T;bHrpov`DK~YjIjukZM+y!KW0}H8nIKFn~su3YOB82P&_31hbpbMYTrI+ z=j{LBgDS0De(V^;TSsi)zWwhtZmFpRVjNHx4vLbxJ6&+Q040G`d(`A)Q5{gN!>y{M z$=Gm@J_G-IMdswm?d`nVDl1(EBVZ;Z11c&1eizO+wOVbY*eM^lc&@#@DKW80Xw6)- zW*J&@cWSEBSyB?Oz`@=JW(x~Xra0n9=CtLcL(KW{Y)e~P$seD`K~FF;+4gb%jQ&^&70RNtU_C7>FE1@^J)F$0Ps1%LP}|sB zHlT=W3)%<<6Hrq|jvxg!fj;9umTnan=uVWM?Cw57fDSKqsY8GJc!bS zG6%|f8xH|XcsPW@8tUug(%~@-DEKGU)zk=4 z9whjzvYx9Rv9zWBYA<)|u_6dkR}aj{i?$xfM&n26f;Agj}H z?m|zmqr=6?oEO{i*zuFgzjG-}$Gv(8PfKmLv_y-WlbRy{j;Jh)VFji~oZ-!A6HW>` zFI4L&*r026dSeo@SU1sfM9PV}rBYmor1qfL$&2&zvdoi9>0aIfGCwEMIh{I6?-$DW z#r<(}?2F~{ zyu2(fV7KZLu%>vK01BT_D~J#xlqNt2ryFu`x2)nhYG< zjie2#pG(oatt=f-W)~;(#CbfxFufjOt1ygG%qw`4#aL# z8`d9RZX20j)86Pn!3Q-4%UN{ z7%gS{&qMsQW+%Y(K08UJF5;kI8Tp5@XBHLa=D`S-W`xd=l$bi}p`01i0r7S&Dk&+M zDl94kAv-!+9~Uzb>NT_ARr{eNVeTnKisE#l-G{(BW0a|&f^J|i%M6a@_O1SY{%TkE zzS6s)!YWE7#l%7mqGJb1C$qyU>H;f_Uz0RFcD#QDi<3?mPPm2ihh*D0We zeK=7l<^NZ87;2G6tSJ~MxV;W>inc_1$Mgdm(59jE+i+#)+jLucN}ENS0&dDFXx*NY zDxF&D-0eK$JVQiD@k{megquuuNtH{KDasW84x=r*4R)wr*+Nv}-W|QIgvkOceLq=9 zD#hBB+M)D!A$=^yl&P$oPPu=+!@fLb<1x5K5FI}D5+K4dPSg?`+XBDhc2aM@pV!l* z>M_lXk%q- z)s-amBrS**c7Or-4ags!mBV^NM<|9xM6yAn<7YgaKOZ^+VUz0)R@a_50riIzV7cZA zdZRtOtJ^Xw`@y_959OE6n`Q{??Q8`RG^{OmMSd(0oI&rtcVB zc;UP_cb#7{F!CEmV`GP7Kqiw7UUfOoeA~JkA_t_6Q_0L_Wo2fy^V^1o)YN-ZjnSbZ z8!HWxaZE#lU8GOAzicM>E?Xh2vK17I0*Y9K#l~ks(I7uJzj*Gf%vC1SD(wDUTu@IZ z#O_XY5kLSN{B?QZZ&m8*?t%H5As%@W+LosynkW*6+bSfyryR)?$A!y}@N%#|3e6$2Q9 zUd$NhbBr1cUkW?u9LDQNa1a5}kG7fq7>#D^tewn!X1Q^?*XujvD<|`2wjS*en)P2(xQC!UW2hcx+^gBO@_>N%&BKlhB*1sP-Pex=uvEYf! z5#;>AzuSX_p=~hI!L(NyQK^Fb|)gX0jD!g;w8~cA7ZLs@Lr*T58 zf?PcfVfE8ji6V9ahWtNIfY5UzdY-N$sxT5kspI@;)8QT(a4Tdnt#YHQ&A9r>d)mJG z{;dZc!eFRhGBtxx7^7SS3-0q73Atr3in5)#~aUuUD&=sqvdmwv+YD zGNaW*4vC7O0!>9vcR=HOhi|2LCovcKq4TXZG3*y>f>OgNbuNO=Pvp;iKSvs8J+tJQ zS;efY3?ps}Nxe@^&ezn`oG0r0T3Xgb&;<|;V+_&i2sn9V9G!lhz9yolQdl%>HbkOiXsA$+uWo z#lw(yH1Y;UFR?f?mS~;GEzKj%hCD-a1)H|hNdZ>hjuez*MFGgivUvyTzk_+Ke+Ayc zPv>(L98&r5QwnRS21`sy+|?g`I`h+!t?Li=_NI=T_V|LwCx%0Ewi4^0F0sbbk^V|u!n34iZ>LC z4}GxjgZH~ESp*k7UoCx2yf7nI3q~;TFC1H0oJ|=K;ez+OuBN8)@@Gt}<1DP}6w+X0 zbUONb3;zf}dqrs`jDnSj?V`233M0SIDD8)jjTbZ@2X51Dycs7G;_j%~DHh^-?v&3X z#EI_|=Py%sr??;?U)!DHq(U5SL%-EB^=of-+$k$jA?Tx8 zMT!oRz^xV9L$RD-w8ttkNnxdzBQp5E%B=^jgd@TJT~1{WVs(Vt3U#xMc zHCYlkG%trn4+&ALBTuT;ngtYmVbxiAU-Mu-!IB9MMq>!2RCFR_IO3`qtmA4W=@O@kt0V=dnA2*y@5u(oE4?q2O|p**Crc- zmza`beui?xU=mivT^>(Z%y9SF)=SWby4Je4;+22>3{Qx$_vPg!%0c3$`ui?K9Zsk2 zpC`y<&3gc}k9}y}cP(xfcun_4-tdaLYCvh*@o9%;tkkn<)2HV<&yNPhEj_67#I8-a z(O3h1|6n5SdB%sc0L%_R&ff=9GPC(G8mjs0nHBRgacZ|fJ)jlR&Q)~WV0k7V_rZdP zK-t_(-i9Cpm328nZCoLQgUvfSj7J7Po5e9q|*)0Q}bn-+IGGOq~N& z`9}*%I-0*al94e<-u2<8ojZ3PJ=aObXZY9GD_9einE7cDMrwayoLm(Nwa1*;pzDnw z7w!At^Q!xuULEe9Q(~3QCg74ypN4dUs|?F66HMu|iaJ`Z4_8KN$4q3WL6(#o=5=<} zef-g(&)P!5W&(+wm#Q0?aJLG}a07X1%oCHeVF93lhlDG2W0YCO*si)guqg4jzrXdy zy0fFBWuYU-jIU6tgQ&fu)}vKMJtjRq0}7lrVPW9_dKCp#iJT`dL%}e7Qg*>p(3gCE zITU_Az{Q@1ze^uaz9&{29X%bhd;rt+wzSX^#r6dgDxMeO@rb14`o)%$-k)3cz*+o! z8l=`ehmL-Kx|ti+{N7(bJp6SJQ1a_7$G)npJaB$Obnw_b0P7F&$UP*R*po(1d*G;ufcwrcJ&}8{)cB@W`0P%E>o=IMsS;B)tWR z4G%s7d4=etq?zy`F*}xYG<e(4;wwbzpSL`%kQEy?D7Bd+i|P_4Ro$`XG2H-bT$i zv8z}7F$eA3ijA-d$b=P};vhD{=UDF4i|<$D@8YEo-KA2QvBzr2pEWCTM#qefo0^fG zm8_3Rm}G{k&S010B0C|kjQRrqSnBphj!_qv&cLjk#BTZ&OJt{bd8xh+6J5ix?d|VO z_dNvLgL%F`g}k@-P)olo~myJOJrp-*VB$y+<9mJawtAeN$CQjn2*TEfH7ujG387DcSn~ zR?-EGW)5cYPdYL-Rs^6eeCU%ORc075MSAfMFQNA%NlS|lW)zqe*|T%gj@BOSNSm7u zIe;xPtuj15&1jspoZ0|@XOC)x2%C(&4n zEuHU>*fBS&Lh=4?;z7g&h-t_15~_q_*ghpBBSxxRN)qgrd-Ym*2h7YX;5S-+&2>#8 z50BNVZ6WTf{T?sG7lw77?<6jcxYh)!rDWh@*TsP_p_jiyFXv;&8q8*6N}M4sEjcpM z{P@!HrSnY#1HZTz4t>d5=I>JQvMeJy)!2A>I1WL(Vo(|mqmS+FX9r-sF)nUn=#F6PgiDXLK}F*yOma(0{@wBqT&G^`I9w&<$;D zY^*jMhP>>G{=Ob4E8rUJ?CU$<*|{-Ptquzy16R{r@`BAW zwYs>N{$f||L`L&^Qpb@x|LH?9Ajnw(12VTk3z;M5(1t8E(pvH5nm<(rQe`03Xk#*! zfti_XjEe%nH!99Jeg3n{o}EA4IMRm`!#5JcI4X0NDbX-m1qiMhZAdiD>g;q6H>5s- zv*?jj!*F+}eY9?v1OkwfVY=~D(>-;(F7)TK?Pq@u)g|UGSg;^B5j^uz`}bFW)7*X) z$j8<8=5MO^M-C5gG#}gj*G+%jeXQ9LFx=m=n>@qR)V*!sokJLh#KYh6WXgN4wNmCe zIfNf!WGN+CN@*8&kQbnGgCRN)OphIdg_d6KMG=+0Gm~~-H>tM?YmJW9Z4|d%>Rsx? zY%j!$Ee!Zj{BIf?NxB4z2$cr7#X}$fFdLbad=uHnbI2{=O0d0$_u_6@BBWo4^eSUSRmB6Y%Er@}ML72Ui@_gl;V3VJ;r^94q zh6wyo`*hzT-Zt{;fa5+b(11%jv!T#UttF2@8XE5Q&4yvY&A`-73iCoOjtske=!o;jW_c`QE%I9JY`$4Z`D1}^)bR_EtG`b0_TGbN8d znxDUP>C=l)FYJ>Mb{7v(m!hUWVTRa}5*ej2!Q)V@Ojgp=*5-EOqTTNUy5#lUaCXD7 zI$Wqb`l6sKyjbI^pAJQ2KCu5L7S5LLZS*$U(;3(zwvI_{Y)pmiu25~4ixrDm=6aVl zRK#rG_MO5#5k46vx)tAVvxn5y<}@`l6c#qaH_W}q-0xN5~x?5eV*e_Txww3mUL z(LZqWB$w{&5*6(U+YQAe#$NISxccbqXp6bL8Gb0M1!wkn7j5wqqD5$`=i^A8M zZ+mdMZ@_W9fy@`hwY2DY3QD;x;NoZ7*VhbBCt+X$(0Squz{!LBBo~Sg0ofhu<@5pt zOZk#XH@3gB-H4qbKAv=P2gvp1HlpPbHc?*thyL^J7qH8MSsEOIT`%!pggr~w7IY&? zKs%bZ+6V|mvTX$Ppsn_REQdO?i{98^f0Ttd553-){g7oyj@Zh~$0DfW)>xVGc=(X> zQ=e!&rHcsh)re=!w|ojn5DQ2HJcrs6!s6vBtn^HN8t=>SesZs|9PKHl&OVABE-ZU^ z`HB_GXQzypk%eWCBqc-vdcyC{;zuVx1U0(Fix(B%4Z{OEG@h-o)>QmIdYhV@q#nS) zI?nvq+}w4ox8=+?b#>pk6%om4t!G@Ykv26s87hNKUGnR7Cr{Qjw00$$&E_!}7B)I1 zy5j$X-zmyjn+j8g3Vx>PJ`^wwmNl-kcpW}9VSQ@fDrOt>s#h^JFdAIw)9|O3bp{Ap zfZR+nX=l{zlAIj4HehlHV|2_UJD6f6M zYinVRe!4Hh7eO+7$>Q3W%`vqmUox{9tFVv*rwDpVzE#km(c*7AzG?Bj-M31BWQqQo za8TnTrUcaOtoRKaM^>zq{YL!b=Z|K%=$P#~nV z;quEkALpA5sEOLhbZdljjnZjjcnS)|gh4|I(5Q_LO>umd6`U{;C89tBpT^N2It~jo z>XVV6I)i)yFpu3?Zsq5Z@|i~CfW+QIdj1pGW!y&Uw3Vc;E>PRoSFP*otBEB{t^<3P zO)8UuSIi`pnaFmlWcl*kIub#()^Uda$MTF_L*-dTjie5npaBdT2L(~TC{G07-wOkH z;%<_N`#UWUqK*tXsl#19GCB@p5f>d!uY8sm+R(Z<{U&J z0Z~Mbn>B9)@{uzT0D{pQSSp@1Zs?oKGzXUv-qT&+@;RpX;On=&3Bene>w0iJs-b?) zr%5H=K1ciaAR2&(Vi*ZQSm0fZBJ$+Pn~x(6h(dzzVLiet;WH#9(Z}uE4>V12fD|># z>u5T#9a#+bgPwE0A(B0d^e4}YD5JHS_-t?b}gdG^z$# zq_D$-H253)&TDp?{k3=YHNS)Z?==6bf-xSL#xn79^7rg%1loZ!7k{rF|7Z`q0%pZS z$)Aa5x zn%=-nQgwVX(Do%nP@7mMDO%C9QoRDK{D3WFVJ0<~i`62m<7liCJ@zWyFzo;<;FIAm z+m2moljI&dmYlrbZUN{}ovxb$H z5|nw{Xa016NB|+SBWS+S$b5GA@MpL$aiXrS?Ce)X>({^bEiM&H%gdL7OY-e&_Ne*I z&GUJ{;QzCr{{2lGH*R{re!&c~me=Ilg1>8NQ{adqo#J(`QjlaLcF~fogKtty2jBr{ z>6-_$mY9fLfQwWz2RoMp)27`ziOWHm89I%FySg$mZaa}dI>o*JH|O$9lvIF{#>DOG zTRuOlxH#JJHJ0OviyD5pjP@U2dwA7R$>xpASHlpZ zMBUXYht-TwucQ8-@4)sH?59LutgnJhF0YdfO$~)`+H29)F=#6>0`3D{HX73*sbR&m zV+yR2{mIG4j^(Z)Z=^#pE`rW7j-5o&8v;hMLeg~bU`B=kvn`ZXiqck~u;he9qcJFG zYyynt=B6ekBta@{Qo>#F@p%tTPPi*rE+1`37&jiQU6VZIW{&nOvd7ZdbxLiVb+q$SH@W;sntuDKAtrWYXO3dBk*rZ z2GC-)dVJ%xl$#O26)#J^D6>urg+;eDK?9!+LL{wQJhR5 z%IaHTWip5bYc3gcCnbliqFmfxgnV>wO`$eCa3Zn5Fa4hoT%vo8#K@9f#hE$}$Hug( zIdP0r4cnT$y$?PeC=>WkiYZ>P6E+9c#p+^;kt~-JxazcGWdr##l zE%n^C@$mSc_TGU5YW1D=UQtt1(f@Mq@e7hkP5s~Oy)29fnN=kwjveg5OIzBBG%YvkGpfIe99AxPrhDS!m0B?x$I-qKMuCLEoF-&7F zHM+GHN>*UmjEu5};a2g{rDohp*1--!PW~dO^V8_p{>QF)=YVv4~Qf)+m3~Tt8(*zHnjLyn7+v@mSg7#bq;qp!*%LpuLmS7*Z@(E^2;r?_4QTBtP|l}eV4jAYqNvre0ts47_}ahQdj5oo;9A#v~$nIRb=5+M>H5+WjwIP?A2p3$sRo%fvg{eIu? zV>8!1d+l|7)^q(odRGJ&N9vyhT?(QJA#nHtUfLfL_%tCe#~dUOiq@wyTk@62(cy|S z(fTzkeA^Hrj%-AkY(XJ12R#oJy}y2HHr(zcecs-E#N9o2mb-gUctrSYTkhws?w`)} zU#4keFZK3*2bhhHQFAvBuh|Zk(6u}8R&ZrrAoWzP(vD?jwzleY5VO|lH(2EteM&v) zst(qJ9Gy5&j;u7RfXC2&s=hown8q^U@ed|nLtBDFys`L52b7K3aKTYAO-;G8emdK< z|C9aS{mM+6G3$=IrcMHi6Ek7T^m*a;htHlsy3d?J@I1acFU%*(n=!%YCo`#ZWYiq0 z&asob!OB7^m%Xv~K-sqK6)?BF@iexaFd7ns1pl>U$pAZ>N;@Tz}0^Gr2xR+UB3IHw?a^S2x6h<3rC{$ zwz8UTF~^yWoh*Oj?HzA@aT!6`U8-#F{QO<@m#o5oN*-o)xuF;X^4sT2hl^jw=Z0b9 z`AhY?^7B>Pq^UA{8#QNRFLQ*Wk?k~@y|vmLpQcUH6UKPbnw~_|IOHa3&?!Kub=FI; z2-K2qjX)+npraQV8|EHBQ7mTW3r7rKDqaJW1U=qCYKwB_By)u|!$KIwahbJZJy<2X zf?bK@L3Syd$mZg>kGaI07LH-o9>4HopJ3I(k-|ElgdCJDWLR0s+|4B77AmHKIl>&p z<3oJ5AxF6lk0(C;WUm z6=V~mu9C3S;H?qtnAl;4Cx9Q}WG-QRg~xEb!(^Jmxf7|#8v|3I(doY2=s z8h@)_j2;sIr=A?fap?QAdj6d!htU&9_Gi}_>)HKh=l*}~$q|m3O}Q8nqr~3y1aP;I zlgJEtoIlPzc{0YvCO@C5G@n8IRDn`26OL*61z;AFRBGuYo6%9{#SnAUGIQu%UjGy* zA43;5l8&W}l3C5X!fawT8O_(fFdQgOIop9;bpnCPV3sjn@Cx=udOCV^F$c00%xUb$ zXM1dIdn$}1M$HTi7~u)U5l-XdPOi`hLiYq^gn;60?e2c)5Peh!cpoVD85)HLh>2fY zo1f>=qn;ZBsS^Va^y@%mPxHiUknk#HY}%DfD5#+W)XjysFC1%gH*LyAYJ!@LLKYVV3Utg8Tmozu4nC529|1361jx5_s3QK+Swef!$ zr?ln2h*NqL?O%`fTMrJ-pYL)9JTSxj?{JxSx2w5?a-N$=u6ah7i&Y=QzdkFMFz8T( zFC`Ll*SqIIRkD$jn2>AN)NJ3WPLMTAgBaX9!7XINdfm9riiD~*+5`0F#tkspA`_X+^C6(a zEw$72*TSCwER6v&1cR5&R73@j7}akA1|6GiocI zL_1zUJ0^{fdw9~ve=}YT$Ep4&V`hViiO9bBzW=L1d*#0wG{bJKL2KU>TI)K++IGTd zPj7ExVsCHfFIPA#({W*T!hOU%6SMPY%+8-NJ29)MKS}OHiN(wXzs=_P3uanis>*v} zAATSz>am2-l9HB|uCAUlCr*6RadXl>`iDuYzO9pZM?bCZ;_$S%^&2*{wr<#vnVG2Y zxywIVqbWYY*ey|#GQ{ij;8DgcvC|)YD-fO+8zx37?sRsrvt}{n87sRfGrX1XkF!)% zSHsKc*PsLn!a^N#R3?x5`pyf`)xEO_R+I;+c}c$rYM@g(w=5<3OfWv~Auo$#{YFPd zudBJMS9B&4H3bzmP_RePPpi;R^CTt~*0#2`))sJ7Vy};mj$Vhcedh92X=%${CBJ+Q z|EYt0B*wqnKZbNSJ4^RUotyUppJ~gq{QNx~WX6MVFn(|b>DZGWG1}p4IZ|}M@<7o@ zgm1?vZ;_Jt;8K99FMTjECG{U0f*|jyiOOcfKT=bY5|DH}Aqm;*!E-;ILhb0u&>9yq ztC9mT7=_X}-+-h5-?${q{d(NX$H&=}TNb-epw z1lDZck!7|0ot@uSVq<&%t8Qc_Sg_!}1uhdMbXkj36Fp!cdeqm!N%GUlrrOfdhTi_G zEH4cS2@MT%zjV5jT2+cCu3x5f`nIU3=*U1H;NRQZFHTzUD3#W+G`ZS(y8sZbG8)g0 z<1O~-_0W0jB8TCQgN2JA;pZPAsQ?C)O65xz3t#O-M5V#$F5m2a=do|Ts4FYl+w}b< zwP>)hq(rHIk*Wo8JZHJDUE&iM6cy@jZRKjJml`PmwcMGbU$R9uQsNF{-2nV9o5zuw zBAcl+dL>8WH>vo|EGz#Yw^5fMH@Db_!WMW-zOJgO`dZ@cw=C9m=3T$(TkgQX$^;ER0WElLo*kcyNgANKX%O#;n#qtPjTQ#ti4O zzthcp(J;Y3gRfy8(>HQ+auaJ~dt=cSYBz>bE-V%Pav4tqd$B)uBtE{tYpRIirkc(u zDr#z~sPObGE32@(9Dq2 zzP_hPVxq>(-F@Vy31~G1}P$?X6-E!w>i;BX7FsZ*CHALjtwuD3VDp1+hPI6 z9G`D~pG^&%($KQ9y>;~i!`IcKAM5H~4l<;6mhfNp)%Un8f!!Uddpu`DYeOQ+$|4}w zK;LQDo2aw`*@Eis8QXXU2JKGZH-=^#XdunWLD#l5$3;Xqd)$YeE5OU$_pWJDLP^~l zWV8A6OWc_@(7)3F#(F9c>r%}oV9Z3)$%froO0-%vJJ8Xin#{UCgrQw#OD^ui(3X$* zczPl)n!Q+Kmzp{_=r_w0l*-mm8THij&!-o@`_B;oh%4b(X4sdjCOj74aH^!F%Fz)i z0ak`nlPw1osMJI)xqi97x3>X47c>_pJ<{1Pxgfyf88_r?sY7d9TWqX{EoW#ok9O@r zyO=7daF^+olJ>5P?NvoDQx26L$@*0J>24^|PHB32H1tt*9I&4qElN1W#p{>jc{!I? z^&^qdVDr_i>Rs3fQdN?*Ya$#S@32?9iza*7irJH2S@=e-iHqy&GdJI{WBdj)eC_JE z+-ZEM9__F1=^43kgMWYwF$yFIUkm1SKd@M@AUmZL4z`Pt%sP~@1_!Ajo7l8fX^)Z* zVO+(&jC|w9SA^(PV2|30#|dP83}7B+k|2U7F6c6;o>t zRUhTf>CB|O$jr8|u(k$Y--h|~o0}zev%xXUvX)#w*U}Oj8|EfCcX)qI^>;FtVCc6G zKzu)xjU9*S>!S~~Gwi8dUG1k@TG{~l+u7aMcf;qQm>3_?@QL^G^K)}@a(PiyP!OuG zX4bBy&z6>fD5TLec_xd*JX1rG;F0z=hOI_Ca>a335}aw@Gg9OCC99Ll%JQ~>x*bws z>C%T<&{kwm_Vsm0&s)_0ESlUpJlh^ zLTi?;|A%OkgQ;FMk+~tZbD2pYZR6)?BOpW{2kwR0Ho@ORchjeNip|8+PqpbxhI4ncp;W)q9k44kB1>yuZ zM=Vse`0|=>eB|84 zZw@!q*N22)>{L?Ad5?h~er%qlN@``L|8?+Jy_MC=KzE`0s$FoBkk(XiHV3Zch`~+%76wGc_I(ccR3R%I``YJyDrxt*eiYSzuKQ)f{Gy0buc0>X{he{i zBO}PC{fHYkba`YXJ$+cfnbo;FX?Bd zqhq;1zzzsb?o{`59IKkTYPZ1I{RDn<91if*2e=K_4o_PK0B1F6%tq)XPY|ZwT4WS) z*^f+oc~MeQ%q%s89mT?FYF0AZ3Q@6?I-?2c>)}}>tg9Jl_cSP_VH3xn!RQMQfdEB- z!cjqrMJL-6x+s=;3CR+zlKPy0BC8MSP~kDafn54-qp0zfOmhbH@{K0!Mulzzq9t;T zs}>qfW(In7^7zou`1RQ^OV7SOj<~Ai@s=aspZ@+xi$d?t6lxv=jlCD@S0~+dofe6V zErH*~cud24dN}Isp%o88e$HnhxvT}vF@gFw2wQu&{yEV*JKs@-gG&3rK_vzA z&ESfcfUVyTCC%ijt52L5p#Z}f`sXI(zE|^MWlizhRZYjcMn(|%jZ8`1-QDL!o-u0? z)1{e$EY5cZMq7C$Y`}6^WXleo>u78J;aq?3x&BeL_s|91iRw21*irKJz_rPDhXg6T zr#erufQOY0+%<@!W97agwVK!Dj$OH~)n32Y&YRgSSYS8sHFnLf2kZp*8F;VQ`9ORS zfaI7=pO@GIrk44Pc^eAcN@OHH%+%vJg`*Y<*|}^ao5hw2$5X5vXUah@_c%8{&3b3Cn1OSaNU7(W9U>ex~_I+V@#imUnsZ$#q37w&EA0gdJ zU;qq5scA~S5N}8XrW#SO3YBSozBd9N*`CA5V2gM(eVk_AwF}+fR^%5R_~zjD?Qb@A z4NMM>2#a3x(#inqVI++fiRWhe`#*>kyL_fh-1k*ueeI5-=6=0e^gY?JL(OL z&2*ok55~qu&D#6iqzRFjjZb2}Ow?#>ZRz8nT77VTD;C^$pVSLDFCwkB9yX9Q!cbI+v&@7nxM@u*x{mrYiNhRwG(;bfHSf0gi(#}&>}6KIxICi(du9@W);0(oD>Zpwc>5Cje6-ER_- zl3Cvo9PU16IRJ2C?&TGTi1+XSh7=h=ix%OTCPJSIGNLg{S$^NV`5^K0<5yw+si8?Y zAnrLmIzRfwK+?`QW>W|t&~%y$0(NfrBNTH!AqyS_Z7(C$;>^3;eQXgJEq9wGZ~c4| zU5+@I*MBjzo_Y{D-0mNGI<7OkGu$2ijBsya64F&6WUs!36zhkCM}Bs&K1J7rG7^mx z!wn_e=?o4OVc5c7csR|b783)_yR<7Lq^n(_Xs6x?2*pq5se=)vTl7y1Q7R;KFc>7Z z8jewU;znScHeq(eLAMx}El|5r(4+g&|E3K``=%l-*+SXJ)Jf_^aY57g_~ET^a+Bu1 z^&V0Tmsi%_bOqhumQ#6}ne92-qOY_0(5IgtZ8-7MFTLL%KTx=}u&!+c4!{)^dy2Mf zePuDE@U;fL3ZDM~Q_`kgJGT@E1MtiTOy?T2SMy801>GJ#wR@{77)+%P4o_;Vvyzv* z_l4efz%3Eu_w=ev$qlu+6o5p&GbhW57Q=MIAYESQj zy{TKFn%VN*MVP}G!b*JIEpLq9xYT~srT?RCaEYiTzLGoRA$ca+pMY-~)mJr;SGc8N zVM{kCvAJ|28l)8V%(ZKyuqfN%!~zn)aDv=HbBA9gKQM4VW+owqYaEy6i5E_Dns#?q z7{ukn_&qWS359+R9aIre!D%Xi0z}*+4g!o)9+m<8CLclE6oozhlyt!|bPrOiFNZeQ zaD+1tF>weH^JVU5l0mczm<{l4o=UVR{2iLMJYz9L+)h+%4oKc>OdgYi1vzT8Dv6Wa z%tyY=TV&YNplp5wK+R(VYRT2Xi=*Z}Ju1=KNA9vwOJ%l`kSFlIN7ftcM;2Fs+}-vA zky=A1a!-JY9l3l>Ex9synf0{g)a33!)c&Z*XWoOL3qnF8@rE!@wiy;qVa2ms8|w{n zMFnQ-aXO#0*@ZPln{xB=UX8)XN5Ld%uea69bywlYq}1O9kLrnV8JVb`qgMdTK3*_V zJ^%}2l(`x?`#w9E|H|f_JB!{5hY2?do1KYXA{(~wHoe#&xd0S2MaSYT4U<<6jsJp6m8rSA+c`d)-Ku5!_oeLJB!Hd3uE!QFwCEV z-z^4H_|k@#!a!dN$R^PS#Gu?yc0&W%1=-xzIIQgG3#sN&&SjM=mLf0!1&`}GMQ@A(V7WoqEiQyitOf~po)b0#?^7z){5bV)RqTUU2M zqLzw&ZLZu>+)65p@<|XzAPOT8NKMa(OX*mG{-z2o8i}+5<3$Nns#$LN@gF-nwr{t! zg$uqVb-VNMDA^3DjL#VzQ?uv)dGO^xW)%)s*C-IrEa7;C$z-ybXE7r;FpomoQea-v zjL;yi3@oWiQ1(*f|H;iIR#u_$Mu#NPi&^G+HLG)pGjf(kP{U!=(5Io{@WHwRyUWTr zPJE^3hx)yHWwM6ay4rnJmAi_HkmK;zj+38w-Z_1w{$Sgckt>5gH0+@K+%x)hoUPf> zhL0D4QZ0wFW;smQaVEKMZ_mY_25z(_uQr>x$_~_ley!uOk9m-470VHGH5pZl9o*=C zrMdap&hVMFnChbpy>F(S+#ErMQ{8QCkxmIZ0FrI`nBKj^qz$vI5-DmGJ3;?eNLN zbzdAgGs2muIctl-!Db_)Y+iV5(BiI;aHZldyBniw=JNhP{R~|Z8?g{tH^IM*_!)LK zil>7YgIL zaOmnvNpUZJ_mh9t{k$aQz{reQ#l;a3^nvIXm1K+{s7lYM#N%T*IThb3^in3TgL-+p zG37vv%Y?)NA&@bmI@9l zRkpdYpy0$0Vov;RDb)(xi>x6BWx*hzX{cqU$;J=CRhJYLgn+1eLqGt0J&qVj-Y0ci z^VHb=eN^HI&%V;v^HuY7dhsL|o2az(v`9~DsFL7X80$R+$xvOx;~I7p9jGk-Y(O5d zI$fu8@SW!{R~dAlA~{?MILBDwcz|)iOzVZXleJ+P+6LnzjtVs6IE_R`RPuM&51WO= z=7&U?@QF}jku*cQqr~;=Q)59wyckE2*KTlPhT|vU*IIC!A=v)tv6Q(Jl+zr1xfSDz zS=|V)>J+Zd6sl;Ix!v3a@~$04?-adrq`5^sdGFqj8tcFLzU}*lf-3XK5J$Heru|)K zKH94?n>fvC@W*eCfC1|1Gxj*O%RY!6H_L|&_KjM&^whoqQ!F%tY*$x)2qsg6LD7ZR zC&fiYHa4V8g?PE0J9mE4D{+sd{ItZ>LPErrwlt0{m)P=V84DJqES+g>W$hM~5eRO1 zfVH&D2*tU7La{Z1M?DAvI*o;Y6=Zgmw4lJl<4)7>>fQ+k^%r(ijpXW?`nPg70|-u` zSCDqYdb=03eHgX1(r9dK=p(B&wavMYv@vfe6WCNf-VX{<<4I4f{NTh}% zJCIU)RUk;08y~1E(iP)`spFlKR85?uLnW~jZhKi}w zqN1!%r4L?+)>toBl=6Tx0*Bz8N%eiyt(-cFGpyC1a>dFO4%ffF?uS>r_*nThg?j>^ zJAA$K<(7Rpmz}YNL*mhx4iEb~B0saE|09$F=aL-hBmPtI#Z-S`hs76cJZd11Z)u6& z`OdL^Ddab4|FL(pTKABYATY6jg%zcQxN8mbh$5LyyoIiYO-^3}#-hfDt8wiJC!{-= zY}0px8-hA#n`lU}{kQ&rR>Ty2M^z&D6UFtmNBnj0S ziS4YM>?%=0p0T%`QLYEdHA7J?RW&tLEwn_|rISNZBCU>G+KvC_`T$`0iNT+Pt-J5lZ&lq-pefdMK8ELam=BBY7K7r2AiuC&x{_<%z1 zCuwUv(VRK}cZlKPAmJ9Y?f?Xm->SQ~FC(L`39iwFVn1JnUr!h!tZuu{Jlw|w_n`mn z!Jzm6;?Spxunv4w@VzW89j+coZ9dW3hP#miv~zGP!?R#|5GAc#nIycUE#mrcw{ z9M5j)=kVO-xZS(>|uGn?eET^MYAPG3$nAbH|_o6 zvx9ZDWjoptynKh#NDshndr7?0&uwkr|0J1gV`DvGeCV!cUJ9fPmPtmq|DuqPfEeDM z6YDI!y=K{&*~rF!8Cbh|-Q)g?mxM*FNP9LAs>@CP?mX=w$%s`DlyGobRYUhoGt|6E zUiHYzTHy_(_0fS&I41lsQg>PkFXDSbA4HbB2ZDk;uY7az#OKwefN3kPGxjFM^bJC9 zObuNgir#S2USh1Kp*Mb@z2Ot{n9{?trwuKh;&tiMJr(6uZT;tZy1Py^unQw2moIWO zx3#siaz~5Eh>5q`9qzU=+1SN_wHaAYhlDA^9(sD!^K^sRL~A_dP`k@Ru@60&ybku> zq@<(}-O;1R4j-g8?E{C5wW0C5R?ftTpvaEP5eBdg5xrR|1|(6sc5PVL+O?^vgk~Ty zpaW6_&Z(%s1<>S21N?Suv+NxN8WUV|nA zPQ@HNXpsF5qKtDWV$1RF%Dg07sKozZld`oC)=j zY4cZ~?abMbJ_TJb)|GlMZ-${>=xCQXYCn1HQfLIA+V@RI_|wAdwg zdCjusEG@m}FNsZ~!r^-W`Hfl^j`FtS1~p)ix^R3CiL(Yl2-~r~)n~o3 zDN_sQhg#rv#V@cu14z{~w#auPl64F_stJRCjqt3JWM{v3mbgMf!1_dTzDHe2M@cqs zV~xFn;{ZQ|iAeu|*C2Ivfdlh&=joR)uA-75XK4G2fjm-7f?h_r1#?mr1mulK{R1ME z_e(}fL)X?5bZu3BP}BR%7#Y`}?fn(ni#zN(PaP=R`%zox*$<#LR!uqBgZ-5y1+T;5 zVDG^cFNBA%Z0a-MY9CMGm5dA6)lP8fn`G(9i7SGW9!5sR=%wiPHgNI%;O0jmgN;E7 zlhU7p(~QTywUykjW_06=1iu#QG4(3^MKTJHploJbDUfGMqSKjojOgBU?ftgDl0i6O z=+`lpTGlt+SEWSy)RVAi$KaloP_CiYhCOC3u9}bWU~+RQD=+BlMQZgnBr}cXN=w~K zVWW(J+HRG~GEb+=qiXe5;2IV5q;E7gqZ=~17Y~+Q%6OAj2&C=#E1=6{MQA-G;q4M0~VF(mgyZ@SfR30%m(YPh1sXCGiYv zmn(h7#slP5MHpiTz3~{B$4Zino~6UzLwd3mq>%zO0H;qynrH}W6MZ(!yt{GFNZfKt zR1`SwuA!0ZX7HJziU@~k<|98gw;=0Xp9(Mr(z0EJkmon=D&wKXFjtH4G{iGqT}o=m zB1a(VYD7uFb_|rW;BF<*0(wLz{X*Qr9NElbXC66UEoZpQ zupAk&HPq=T)F~Hrnk%0do09s>5}WC>-RFnQ(_Q!;3CK=#jv;L%aL?fIU}9qUMb z=;TgU zxx@Xy1cGAZjGNmmR~v2D*E9(Go1e53-DWj393Ih;;@jmc3?`FkG7qq zJ@@_Dw$b6M>WNo}+eW|oxccL-M%&n_PE%QTsimpf&eT%sKI0C=aNaRP>VD%~_qiMH zQs0Qk2;Y|hYZHLHt&73C?iH+k)Z(|76o@vg3=asV0s@W#lMShGLW+8N1LZi&B1y7t|B&_R`U(=mN+zY@v8KU zU?_QuaO}F{xpmJh{&zhubbR6;JKph+9sj=^7fEE~vczZCXVF=Dvybz*to6@69vO`N zi~=>hZL&TNI-sz4D3;$QAF%LLSq}3SG7RF14+K{_isey>PZS+qgRnrVaIME;E)cJM zJTdX{HPp_I#FGE({j4X~uzP%o?l#U4$S{Y&N?Z^W)YN{u7aQtn(t*fi;eZaN4QBGa zoG?o$EQri75x(ha8~s&n|F5$|@D8NsY<~TdmFxPKD|fUFSKeIq6aHB4%XI!cx@JAR zH;l7~dtv>WgnyYk)F`pTFn5;0?oa^s>KhpQPvE%-pEi@{jdKPh!7yi#sq;UdGml~R z(b&%_5LBewz#d{?@P^?@C-_Q0#s3jDH+uA9!`XAQ*68^rsJ*pF7;l_$4BRs4j3cHh za`jK<8!<*Rouy_d7ye1F)FHp9Hby6$bOKaGDr^p(=$kD_#a>M-`wZFxhC%~>-N`Y zkcII-Zcp)T*NAWRs6wSt!Rtk1;3la)%>0&)hl}fp>rrqAY`Xji*O%Ov9Ki(*I5io$ z>pzqcd9w^UCeoW)vT>z?bvZ%U2riO6?elN0{KMTNhLz(AuGR5`E8(=!Ttp=2*#+lM zLrtgRE>!LmuUy#$7E1xgT4X~;h`9n3ED}x`c-6>Go(%1`3+V$A7=>0Ey?<@tZzo-=>;j)a8?={BA_k!O?z8Bn#d~f@G>_Ky#ON?2q7^C^;1AH2{Q0$H~R`P zHs~i4bXON-c-mKb4^o8)V!Uc(iHUt7cKxByebK&RIH*6ph!<|kaK^rxY;2!wm7_)( z5){ZKN?rM0-_ZjP=q4fgeD~un$!|;(qhJKobay)O=3#J>x=y_)aGLoB6 z6(T@YM5;xAF{tL*5W5h_?2MCM&gJ#n_2&fv(ZGq6(i>Q`5U-OVAtyl-y=!Z|4dqij zDO$c1&0e{ZLPB6Tkfj^XtT(z+MXCcaB8K@JNKWH@wPpgwTf;W*`iA-;lQ2@-P&#wk+LJS*03gM36oGwT7m!%U=kOH$^!GlB&?P!I12T+xTJ&%7&HSSE>0n}p(#6v z;c6wWRybpHtEv*$D8XV=Zeth8m#;~Ti%X2U7XZKaMgf?^yK8F~8a)Ys5J%cZI9s3K zpdf?*{CJg{2*rY$jevd=3UCIz2&7aoMNGjT3stL`mv!S$UNWyJFN{DiT5uYVR4ycB z@fZ2f4ydFpwY2+*x3NaSs8I-Nlx<^4x%HWrL@FhNr+^fE>R0H>t4I}HvE;aMts>F8 z$3*VxkEl#gP_PeDU$w#fvjCz_96rj_4VNQVyomu`D9ooeqwJqM{q?bX4rj`OnV=oJeaT6o9$`G`zY$&n8v>-Of zSVdFP=7}h_3cN%iPqRBnk3t_wdVVVhS<7x4?|}h|(9%H5$rgp$2qk3$3NF(QmQTjc z*HBEhXa_`Y6qNnjs89aWa+uHqD$#skz5KomW=D!jbO10fhU+Pnxuxl+nguo#2IvEf zD^tppF}}nbo+;5%^R6zMbY&Hko@GP<>s)+7FtjIj(4M$v1Ft9q_yQQi+v;TZyE@(M zBa@rxGk@qGI+F$D8G*Xf6}`Y2s9Z#J3%iXPR45G;fZHhlR{{aiJKj5yq^l)H$Tn!t z*nm-rs6nrTM-VhnxQv24p%2TY0$3Xc1{gN!z@`#>VOYSlfsRzj{;EUI~Yf5+nsnPY;}2U!4ENFObV~*wFygnxme%!XE_; zf|IV@JZhIICz~bnuJ76eSPN=Y_NHi2>_-GXtkehk0ep;O-Rcdspf(5}V%U?&2{Cpf zZ|_*37t-B{G_$dE8(?dYNW>(%rzhH}veJns1wnA9ir4#a1!!&;4Dj$@!!z3@+$xi8 zBOa(?w#g0$haJ5sDZK`|2JCZ`$ zpg6q`Q)u^xyE9RpFqXjYr4@M&I)C3jD2o5QE*_}MoiG>41PV*36UNs&Z;=t^Elyt~ zK)k`X7wZj02oF(2rGV^~P5KuRBdi-HK817x6=g!fUtm8L9-^JG0+w60Fo!ADqdkmB z;J4_i!i|EBH@dxe6sx>h?C%OQt|ZEv{9o?5f6MFqhbTXEmHt=zuFcJT*XD2c-T!xI z=I>TmvtfnBP`^>S!j7{sH|ON-E9~ZkO-(`fEf$x0;bS61v zU~WQigZcdzknQZ>18QUY`5kVy^iSZi&Hn@iTY@`EKr2~4%smZDaS@DTGY4lD(fyFJ zbpkbkQvtRm0;lBtWV39J>7G5NbL_7xpHMtJ7(gO#CKkQv+X?O;bFz} zGNC<&Cw8fzEm)0b`gl-q$@Rf&I+qJm65P0~H0J&R_T>DR4PTxo_5s8&Ti|v~q|T7z zTwUEE52&csYzE0wu`q1sGUl$-qOcyCj7(C&x~!8a!2*WERMZbkN*K2B z5fyxFR?$radW#&?cvY^U)xXUZ@$cq}1?~)g6i!6MEDP>}6f=hsv)TM~!q{!4$}R6~ z*y!~evW0rygI_O3Jq`GmbY~a-68{|k?oZ&iCQ*Lo=HK7I-u)ZMEkm1V-DS=O?-)`= z*=n#L3WBO)L@EA}m0?V&egHZK!nsNZh?Odb@k)T31%7!zm18K0{(>TObFKqY`U~Po zT{_~?q4Es#D zco^3hCw9A`Ots*0p_d!@7<#QR=KvpD4qtn=9CyGt`k{)AJQDyzLLRBtXOMb)aS&&y z%cS1TIOA^4SQd2$I36@1HQDsmBwe9*fuB9`q~V|OxOx0`p+N`-*+2$wp^M6KcgS8s z%aW5JR%g?@2f}HiQ3LrT3)yFxP{WOpHC*qexz!&+pQ6sRKTu1^Ny5*JeM;Av1m$8P z9>N0(F|0_H;c7}RXru+cuLt?1Cy;R3&>Jt}+*+JdLOomwMf@8WqNk&vdMyUuyp?22 zR#DL9m?$MFh4k|wfrUkqo*Ww!o0_>4_{=+SQ7LjV4vB%QY&&`!VC?_MW~ zL)n+63b6pIAxLGiuarXKO@SkA zrb$jd;=7A>mn)I%a5at$d{iYdc#zb53rFx~N!_NyeEFhqgb6wlk^EFTM?HI)}UjC!*Cz zo4gWMxP!v6m1s;-C@w%$3Q|Snk!@^R{DZtoeEph^j9pVtvH|q$$cRpUU%-8niSEaS z#)fY@WFs1O=hltX8QE~G1CH0h$g{w4@$<%i{kMMah6Z=p~V z8AmP-sV7-+-Q65#IexbD>>0vMc5!vFw;jG@7*ooXQ2h}T9v_n9lAJU2^+DsJl6YALg3V3TZ{g z8Gb)X4n@g}VK6I%5t7Oruc7c<@$=8GU;jM1Di>4Z1cfWca|x38uA+vjr@W2d4!Y+2nv17waxi1~O)z|?q2|AMrjw796KxU?WA7()+?G<}*$PQlKq zy?d*6q8w<;N7Ym%Zc1ETsBs28a2|R2TnuxTdOZ4}hJmnr9$*p^mtYD4#RIj?$Meew zxPTdfgR*GZTI%mp$`kEI6v(i{DzWqoJUxE|Rya`7n3@_Yyk{|ad2pLxvawVJq)%~G z)khy}gD9TG6X`}Gg0*x=B_1+|ug?@i4Z=`^MW}%!e$7h&9LoY36s-&k38f_bO|#X> z58g}no&}MKY1F8*l~vvy#;dr?10$m{^+ZQ2tGn(C2)N4z`5BLW+1SuBICx%TR#N)T z8(X)&QBv}LRXOf#p?ZC1(SCUB9^YTIGauV)7F%9bfkL$760KN0@p^Z6-`UR2A1`Pn za_1SC8IF!3!^}uP-NJ<4f#r>fhH1AH`&Tx+?XzB_4q=&31QVVr5n&}?lN!4cetl5j z6e0c0Q}N+A(SexLNNJ$i z_WBO|ZQhon$nf5ci#=FwKilTQ7 z2?>NR{!Y_`*woat#DvA6p-TE0rph;nT9y_|zfLfGEf`-Zon)SQm`5gQ6GLSrE-DM% zov6$#31@@KnYf~I!e^e@zC93u^U0?JJhyuN`e(C(LEjI+j(Cz6^|`wCsVo}41UWx) z6!DA_@sCaXa-n530@B~Gun~c{LBA2Sj*dqf;*OHw&FruD=d+o?LAAM72EQK%2co?? zcGXDRW}ya7r~$GGAeyNd`m95&|0)>&im!kB4Q$Dn%Gx>=b*Y6f%m#5;bwODU zl<%wHiqE=9k=In}rlQ%;s1;x)N_0nw1g_T=q@7)x2FE@?f+K*uopcd|cWWB~#y|q7 zi|$g?Jqi&=@z`RLgs9nA#KwB+19(n~+z2ui8CEeeW6549S)jvIR|9`h%OLnnDMG>) z%#VqV@V{p+ov#ygy77=e1ht##ba=13!P^WC)z#@bJI|eOKmQZJCNH?&$# zcz5e7YJRF#tH*9BHPvd7yLOW74-fB=90s3^)U0U5|LIUxd<%~+reeI&`x za}Ga~8+W;#ffyM^zE>-Ob@;x0Tr02+*M_m4$F;xhz{A7B4s1_!KVb*{zC(6hv#`3l zx~8tVx39e7)1%)a;*LLHP9?7 zDzG0{AO9LZ?=tD``1aeAoj;x8oxNl?Zs#!Mzws8gs*_OW#ywXREfA?ESKlZT#}Xzw1*Qa$BE*C19>$fnEVZ7I*^q*ZgeY z38ol%f?V`xCi;_GnIZQ`S3;Rz4dAjJ(6p|3D28@&IoN_6$y%^SagW3((UTt{5EDGF zBqKE;J|R78DLQr+E~-E$=HbFJTuzIC!#mHmVHdL=`2CFhdzO~VD{rZ<3>JVCUcfe_ z*+zG$wFu+m3wKoDueuss{|ovTOx2pIs)qW8y3#%L^Lo?bw|C?h!clQs70-@HBr0py z-%q>0XKW1;)(hy36!eB^R(xziL`3AntJ0J(uL}Tiq=3mg~vRrW7t~^jjffH*X<0= z>A}H%&6GkoK;ig&Z}q!xY{B0%0yAYsQTf4u!ycmC#pYqb9y}#%tIWCxGxpDGUBnsAE?HN7~G!>-V zn&CPl(9cnP?rX#Dl!p4#2%i7C{)}QhwnGwjdpn%|rX5!9wz@xUi~XOsrMjfJ>h|_b z`K$JH4{Q4kZQ6)7C8JHKmv~)fdiW#2&ZD06)Ef+kC@T8Fr4ugI z-c%)|LsW^fUQ9;@y;lWBEZ1a3`ja#ceFZ;9tCh&wzky%&kAqsBZirCnWoTev2rsOe zW#7=4w!Z#&yOTRymt_O}ZT0+|;`cwOZm52#8jb>9t%~1+n@D)EtYAPBwcgGes#~D!aw$mm{B@$CS@Hc*W%+g*i@tQMle)Acy zv6m&%>2nONrgFhOXtiwJS{jhOCL=i+;$jW?!1SfH$UW#XJ$~J@K@gWAw}{uSO-u}m z;#DHCW%rnR5>Py6EcEx6jg1dtzy7w%%WG(e3~Q!UmzNY5my}k1*mykWl`WM=;TwDU zboGZ@3Jc518XEQ;<8vo~n;5`OHR#@F0q<2S8PBj)SPh5_SW%66WfPlH*;it;NL}O?5R-f;JoObO%bg1BJ-P#v&qQ zG6zRzhgp+sZIP4eG5_f@u)G@y!lQ41Z62EmaeX?EMBQ4gzqgBvua_qPdyvdZWH;3t z%+^MtQwuz`)d*aXdW;+mjdz$xd(00)T^U@ zI7YDT#4%6c*4E<6$8e=6BP1l1BKgyJ__qN*x1Q$6LG$d_uRvTuQ2fIypIi6*npGLf zg$sk|U$9ac0_o;GY*6%)x5#E*Mn`{G<}epzRbx9zZe#20?0SdCou0G3w2YO7RtA+D zB(xhBWZEgSd9UK~vit(Lc5TV;?5wEB-+>U@k1HyQca*$aQCV7CcMRt3BaJYJZ+hdc z?c3jainL5>~gp{1`qO($-UQGima#=T|OR)>GnqXlnGc`50b+ok_ z=w#$Bh_7Bs1_n1e)NC)^RZ{mQR@(XIf}(eJm+juOcVAOcQFT)jZ{IvRdQ*j*hR9e47X;$T0| zZxMhSbi~|y@oL^}R5#Ieu9uCOL?SkqO5Kqi&dqM(_&~>x$VVy>-?+}Qqu8l>c(^-76>^_ew^ zONk0wzacFnThibI)l2{}IbGa&ddH6D(rk$f2e5)p!wRAZj!&X8;`Gc7_yd79Tc5TX z9OHAVo{U?*CJ;n9TbjN+E{dijSO!(1nL-hCkAHwNBp^5@h301#^eem<$gNg4jwhL1 z*4KX-MEAq$$R!}Ua@|;0JyI)w@z17z9%%xUo9@P`5-o32_Wma|HJ|J*+nK*9KmXM& z@7C=>nk--}*>Buick)7i|AntMfm#2sdf$f?m3zNv`iRfY=2f0zb4v+)=70UEdmIK6 zml!+`SeQ)vXNUG z`BY|l2o@*Zg(|VPB*6bWJvlP+ft2`_E0N+sBRF&Jpg#?TR?C3A{u=Yb)4bTya>8V( z84`GQ9BTR$0Y-xoYj+P1)g%*hJ4-98k&!DCZQbskf47XavLaWmYUb2c@5dhXP1~t2 z_a8W3zrS+ZE4i<{xudS~i(|)+eS4y=u3{Tt0!ph6pfTm;yWe?-7sI>$+K5(dVeaff zxH~=XbkhC;!A&h6B*?x8f^ebldwl+$^!GzQD69sA~Tpe~?4YzJ>T0(4)px;o5(qjGnA*6}3R;Q&roJ9RLO35pt zwTS=$LU(Am=hmhrA^3?h!*62aNP8fPmcA7eLBnLNrrSCVx~K#{sbZ3om*V=}=)`SM ze5pYVXkfxexKj?iVwd7qA3}=XiSsYxY$J|6_@$ajPFW=I==8cmqT(0Y*oX#)21PbD z_E6nUk;_>~UaVa1FxhUh15#659K48bo{YSuljU+T&WYr5N1St%%SAXRlFyM(LG;K} zD=Qt+7V505Y$wVmf=|8eLVFtR5}w?e$Q8Q235@_>>0KPO?4$M-qNP&(rT#3%_3hNS0NCO6VDUn+ZvP zUY8+Um#$yM=VG@aY%aM0u+MVB8QvJagyu#K?G`aohUJ(M@LnLZGBQ)#<#zE2(H?#X zrtphOaCGooxxvBCLpDE5!o@{JL8}$x<&w&0qih$qj;;X*7vGa7yKP-NJNl5NbbQ>4 zL&)C(x89cdw$iSXa^9+^r+=uQ9UC{daeyMkfzztw<~_YbL%mInEgfymb#=|nEltg> zE&K-tT0>)=%$>1U0ooIG#M4O#VPm3WI2RWXR$|hFP{I0+wjSOPYe@CFGf{IT$X5ka z+66>qzILU*iBt-fepSljtAa5fi*c%%pM-VL0+;fyFWP!|cnU^8s&VB>DKw?l*;~r% z4mBJ*e!QXK%P$Tc{9qgW7qg%Tewi>lVS$%Ibwbn_Z~Io^~gvMFAnHBetgi1 z7rWTmxw^RWVsj)0A(louKFN3m!yz8M6!UZ|;dpUZfYspfprzC5#jSEZL&u`xh^vO`=VpZE^MV@UR_& z2KAekR^GxKTo-i=p)N{LENol0N!boa zvw6T#=*GLZKnAF-;9W?%Z=!p*0Eg%wAbNH1Xy1*`yf~RE2$CuHk`LacmK)Qtge!bx~JnY6Z)zz^8 zqjRLF_QGotu$|(J$8x~)q`>^~A|9DQp0ib^FudlKEvw{4|g9I7c+^JD*p^ULani4 zI?@R|?8nKxfseRpMJFyiMOtj&Nu}}kV&m_zHPQ=Qc#WYP%6qz^7$p2L_w}8B@BF!5 zp5X0bo}-${B7OqG(8jP0-5~St4)70{Il^1-IC0|S$&MevMl^qMX#d+gkhfhW)zKKU z>8_k!%`g(fJfU|Ktan7Cf`N`HQ5ot;HGq-0qbSs;tX&Da^97h($_dXVB_#!8l*{q) z0(%rxQ?%;~xE4+sE-xP@y%>~UG6m|#DcsL^|1&oYTIy*$6CMQn z=7hM>E6yH1kHkOX)1 zYlxWPy(Jle@G)xayPFaRqVDAGfg$UHu?-0PLN<*r$(DLfcbzJ2*V}q(%nuzp^jTx; z@sr?ANiI(H{nUMl_}J_E3~hHt+o_FLESFEb_g@M!@tp2vD94PJ^II_{eLwzkTPf6! ziRzNg6A}jI{m`nO71MMj1N1cX9fz1zpj z2XSyHw_244*hgWFdZM(MC@l~Xt&!}ek`h2xnZf6{`r}Vevle&5pI`z9Ab->m|BhnR z(v7$7>4EB@6MN9Xx{BJ$`h%z_Yp%n#fH1T^(`XvKvZgD=Nlg7hm6t@{@0tk9r$hK+8``ON;l31Y-`<-24EP zUnP{!q5L2ERH8n;y^pcCsT{oocbMTYaQ?c?a)O1qB}~O`vmI?FPqvmx8`FbJQoB9-8ToJN3&eq7vAgVhYA&{h+H$}#&sx&kx|K9DwA2*K<_+RH}G{I zai1U=)%_;t3-$ByL6H5ab{m(w{;H<5ey$wnIfe8}9pryiQ{E*s6pG1*R;_z3!Xqh?xgpaTx0#OH8s@l0rcPf=s)H_H?=&am<>%v$ou4>uH6kF=iIQH8;dmLDOe!V zG^LM3D)Cl6M6C`uqz}a@ot&JMajR)Y1su$3)V4@9CE3+A8G!O5dgSHPk92+0`rY{v z4y1t_Isct;tZ7}Tz0&Mf1yR|h|5`gkt(p1;ni@CVP}f_Pq!qqdNmQ7&0oIz|)eu#_ zy@t}&sIuqyf|Z7f-l`$3?admZwzL6;K79)Hd=B-ry1ky`;~fV!8w05vHy`L2A3564 z+Wm9y`Mxthw6LZl{X>^7oa-7GKs>kCUsblM@z{?5SFo_O&<}T?J>1YxQ?hmIo2CDz z{v54;kP_U)CT#f_1M4-9C#`sPo$ovVJu4z&V_`p_L*VsSEeoUW41RMVW_WnRIu#HQ z6c!P&EZjIMl-H4?wXDw8R-w-jH8zq?ST;bCI4LiQP%1$&QT{gA#qq}t8T!bYUgZpa z$IC0Dt!0}5cRSKBg9M?9le4>=5>E^da_sdA(+TFu(`VqZM4WK+;c>}AZ>lx zf`KD@3Ma|IKEW;9L~8WW7D{0jgMFjWi-t!bd6`R&jf#a{{2hon^V`yXQw2Rwxd63gq?%x=qP1}^Wyclf{-e1lHQW5sQP-u zi8qs%lX;xA$D%r7=T&C+MEmdF$rsf`B8nLzl0s z(tGe`<_8accWtVN2cTWdjq{Z98-iswFBpu^{m5#UE;$7U^=+zL-mJHGkh6DphqbTo z9KQ&-RBF_9EAud^LH!Yc%S;BW-W=Y{!(-~T?+zX`H@BPRWh|HSj2!Artib*C-{b)4 zY&D_ZrtpB@0`dY+0u1xm5@#%Nf>HWY*SJAGo2E=>SC=H0PzmBRZWs#DHOA4d|Ms zoDCP>-#;Hl_G%$CIS=;Am)Uhm@w|mrI|CM)8CvZ%Ya8opJXdLMcB+i#W?Te_iQ--F zmQ{YhTlo9Cz?;Cu-+wWpvlsnFDI_QvJx<(^iIc~|`U8KTNqf}a*rUI3@g?+Y+uO%b zC?|v`bv()CVc`3%97>Bw61^ZUn@Dd`A``TVjyog*+#V1!F1Y_j!&Njojq0_Y znvp-)6(YuOgGR#vL&e9-Htn?=`IqsEz_rWh9WxfeKbK;N(w=%nnvoQb{xc8HP+}M< zKK}vohIn1XY_Hkj{KQqOW^)_|&Ku9p%T|qEX+5|-2zz;^{&`VR?Wrp~Q;z62bfCK393t6QPj$is1xE zW2#R;nY07VeZtWDbPc;W6A}bPqLx%j(|vn;V`EpQLoS5Im$z`d2t)ftN5_fqH=gLo z0}qVa0zlaq_Mh$#D#)wc?Ah+qr%QEE!C$*@;lj0B^oDZPi>Ppk;{y=0yX!<;VYMi!=4O6 zH$v{^WleppC%->gR?*ng#LH-Kn3MZJ2b2fA%+J~0YNCU)wT+9Pas26wp=%!TQ*|#VMTttUKIf8g%_uIUt za|_a`a0aBsc!tsx3oIqtlPrym_r~b>i^k)1am-0%R!$&RqOqKworZZxeW7JHe=SOr zChLS>injNaMF~F>dYpRk-d1J@ux*A&ZZ-*51tWac7Wu@TvPp@-V)OrS_wE5vRcrtF z-h1{8<1h>taljD~5eFnhBqSoF0S81RB0@q!k0}xnnR(1(WFBTVUh)tbk(HStk`WOS znUN6@kr6MF5)u*;5+WiZA|m2A^ZTql!^O1ozUO@Z`>_RQ_S$>h*R!7WTs{w3%Y?SF zF0OvTfI_f*%;g+M%NOZbK#P3}fH`ElrrA_CA)zu9xC(DSz<7S8_o*_0* z9L#6M@s_1g$Ke zU%z~-ypiIGnp$~gXTSNI+x!*l)+NP61^dkN;^;$ACq)b2@9XQk)V&z8wHJA5+(t;- zRv4l=Dv`uZ0}~}(>Y8X!b7tV0M2whXMDfzyagMi|Fl!=lT!;mN*5*iXnfRwv|>Auv*Sw(qY8-P8_)W8+d zE1pV8S@Abc;4s|{MqE(IOFSQl#X;qTb&iVZrk)yWcM3<@a)>NMjnaG5m{UPOklfE9 zk_h?>4*wiIIQqocyO?lg9F@&cn@zcn(s>qA90hEw(gpv7EhC~9>C6}T>@OdR_6)pbNBUWj>22a^;DJ6+QF)@^&?gp$h60wQ6jFm4{4D_wRY(MhF=iJ7O*4VReyNe*D2QNmKKD6FSmVA( zc1wQD!?+A)JLD&(U5c~|vz_0G#mF|6P;08+R68=uu^Wrv6F`1YN!HKL-|r-JVSG_c%w`_)b$yld&u_3`sUDZYF*m#-7X1ak94)8b?AQkQ0{o zW{7VX*mrW`?qj8;`K6`Dy18IXYXD*kGxozrtBw;pIk~yTy16NxjI?Gn54=gIK^sN% z0#%GxR1_zcI!UFX?rxEkV~$iD4>C9!90lnkD_3%C*D)xfG<0W|F^{nwKCY{4{<;td zGs%vy6P6-cX8p=1IE%qSCs@=>gF-}RCA-G4C6Y;}VblG}=nh{{c$l+*oE}o6>$bKt zaR31;N+g$KIrpwyu?D;YF>%YH(QN8-X5)fh&H_>|U`MQ7z4}2YgdT+DW#K1<`3FDP z9}GOyV8cI{{8M7iqNU{oxaE^AEdw}n4j6ML`!|_I01D+OM~=$n0I$oJIli;wUKl2l zGpvP8JwCQ}K%6k|wZuZtI2MF5kI`B}Lb9nuDq9fR6xSsv*juny(8wI^;`1kYj8gXz zWSDWA?u)zKO{04||> zvHJ>!#Nr`N&|Zp4r5Em`r_*s zN2qY>-BcL65?NoUx2Z4hXge4pI$BK}kr}7heZj}6Q#pmM>br|N z=>lKf2%x{Kc5Xjh)o=^kWsDRg0s)gE(L)3zW4UN zceJU!y&jevZCza#J_Ci7_uAV{k;z=cW0Tgz#JJ5-I9uQDX*qexIFfhtIhk*nm~WW^ z`$M8Vf`aUVY=N^pA(C(H*tsRt$ij?|GJl%!#@!P9^3M_~Y45~SNt~$}sCtR7vR93U ziqMXcPD2`dyyWQ424PQK&#s=jKjo)HUiG8-jqXM;oB)?hi$$0>w$vVu?jMy769ka4 zb)$k|nR>Na(5veW6BG;`9}+k-&TV|np1^Y<=xyS-1AV1%3-pzX0*Km?7-VzwrhkTl zD8Gtp7tZj-R2iEXAOCzPQRM8Q;<)KbrKcZ;A}BC$CNb`4r~yUzrmCt#rgRenbw*rM z`(0^4;pg9!!?z4k2sT@5cJ6#L_v1tFr>-_qjhBjtSXRiTTDCSS3A!%cV6w!|FH0jif@jeI@A1f zjh6eije*dgY5RuLa^-Cl|M?ilt)-4*{-3};_c3<40#JqzuqMbwg#O2H)c66&lOz~U zD|HSWAGv&x+H-nz##F!y_za|N=j2nI8KSNjJjxXsLj6zu_=EZoz! zZhQ=~w}&wC9tjPPdM*@Gmv^&(qDG6~jmEW1xJN(q3>_C|bX?J5D5}6OmGg3+Dzm`N z3I1t;{wq1bAPgH|^WURTxWk}nK&DX0pjPYdUc$$DN`+0j3zW$o*z;E#T+Ep2lagvi z0>gZ^z8=;=-CYe0z1Kk*g4m7a98A}hN{P2)pSPqB8z`UG*bW9}ybnDr=U_?Crx5QX z!jCUTwy*K(&QI|_gp}+*5Cr2NC=DmZ>Fhw;H|4#Th6XMU^mC73Kq5eV!|)ry56%SOSHi6t*WJVKw-L9sHq>oT5vajXpiWn9g5O zdqtZb15t~F<^NvlD{c}n^AVs3e<5^8hRQKnd?;R}P$*RK8%V@DVzTujj_*aE6dgMF zK`y{oz_x5*4xKU&LbaBPw-x*Z^XQ)nAOl#+O-f3NkBEqfPfFTq3V$Nq>b3~tjYV!U z#HARGl{vlxrDKrW!E<#%?VAC0YPzU$*jMB`T#Fqjj@NZY^SaPDNS4ePTV1cHM-Psl z@6&O422Q5H9vG#%)f!qv#)k8C9RcmQ}dfbF$o$ z+=8Qp$1AGqs_M$hj&L$87-nc>WPrhk_O5nQz8vyRM!wdo*Q|snavNdUBnZ09DSOO`ResLK$-%1W! z5L;VfeIjLCMX}&d$j#`QqpopXR=uT~zcDtS;f#l$)FX z2^`gmj=*U2%c9)M*Y zq4my$vq(5=oViocZXz>MQTqhZQ4vYO*cytdBQW)9ZPm~&E`;GiV1f3EjO{9e8n+!C zHFQUZsn^EF2?tUq4nfwbT2l&{2|z4?Tqt-nBoxr7}D(+)-=p ztUtj`@$;J_=l~dIrx~>0fxb#O7|&j?@Xops-j#OurKNeavyAQ>pTP`jm!Y}|k(_bP zMWDuH4Ts^_*pDMtGxnwi-Yn=f$#ZIVwV(IkH3yeRiOJS}*b!AB@c?y@Q>Z+q4`En; zZK$uUt^2vEMF(6{4{u-4;ssbst8fUKVwi~_LV;Mo>tqLhzSuQ9G#C-NKxx@l0#Pvu zZ?^%$S4E57&Jx-_S~d-S^?X5MBMs>QJSFGiRw%MLw|%1{5(*M57h3^lT%6CHfN)%5Md#om^ z$!sV#vM+Y1FN!lCa&`vRZ}$N92TveW#|0S}1H)`~#AzPx&mii%C@)CO>*}Dk>FUL9 zFuI;euM>-TI#Tusj*=pJ6}=KMH|(ivqy${oX?uKM3CXymtKvZ3f$zE`?%Xt-%py`rO{y?TGfVmQ@nHpgv_8Ao>wKY~7u)bG*1rLWWX8Ejzg5rtn{eILHR#WtO` z^o}B|D=tB-x8-RrUD4f5Nr*YZOvzPPd0rJe;j^>2A1lSAQ6kzwA|YkU%lCz1&>l0z zEqTnaNw}|klVAFX8uO+fDv%-=o<5!Q^dhhmyhenZCLiIe>WQj)`arDEdkWS4nXj&p zV}eyLg}43n%=Leny-UF_D>7oK0q&4r6G8@plsW#mF{13lA_BCwMJ7E*k-PsNw8NmB?Be>wP_xJ95 zZ_n=6vR>Q0=e>RJeUM*RSa7iT@R1|jJO>8|xg2Fv6w{_TI667caB!RN<>@uwO-Y$4 zl}T7dSw?#R7*#+sejFn^bVvh(t01hAb%N|8 z$s&&Fh7%0cZR+94rniXoc#FVieP}2Lhj>^bkarUF!-9R4ME2FKL9o}+cSuQcloUkF zt{C-DD##;8C20_WB?)hZ8bVEanyp}9Gz_eXj5QoDtDmYDBqVG?x=h0)C6Tf`41R+8 z`qHC(S*@+3Wf4g8uV!$m@FC9vIX+xHwJ zxlkh5Ky)7;&53YoWY1ND6sI17y>k$xtcF3LxZnUGJ%Q0Pq>x@rjh(?u-h8}3Un8PqTd0~agYT`LL> z-iHJo)!E-k>5Y32!HpwU95LX>nz84Q>m;Q^e@8$?X^gsuz*6*NC@LkmFM!({@yE-`U!3Zch0!4z&viC7r-45mD%Y-v5; zXP~L(reE88uOjrujXrZo6>kk*Zfw%)Zwy{Uq57VV7EW38QGR~@ArN>NU039neE8m> z4?igRf`CPolmKgBKb*5FD!%%X!vWjLX||;-G$hc|>GnYXz)i{#nn)}AS@(JMT)bs} zKe)lg?lVWv_fMl8WTy-RzrK~?uu8~9ydKio)W>6D)-Ay%yPMjA-)|^_y-cpx&9+yopAv5O{%>%ut^I7@UO<)EaKvr!qmr+{CVaJjUmhBJ2+l(WhzU9NX4m=NVU1Yf zI9)QJyVQG0D}q3Ingdw@{G1^2?Zs#X?}uXT>l={r_tb=hgcX}pR;|T=tXhl;8iP8J zunyUfxNLeXH1v@)E?vU1B1(Uox!Iw(skISO`XL|zoYhk^QSaGK9cL=JnT3UIZH+Z2 zPB)%B`Rj@5|M{-6^1Hf{kN$-Sj|YoBu4`?rDMdDVy)z{eIeI#^{-U*EK%4;sFjK@_ z!d}%-=jUy*mmQV+uqj)yClXur?X0KgyeHtWw+;G8LQFm+{vkgz7 zDG6(z<1|xz(7-d>Qh zTpaZFzF%1Qc@>7BuJM16$(0dDN1Rkd@YkJlZkg*R{LDQinpk9wj<-O;1$ zs#VF!kff7Y@tXPHlai7X;$vgu7QwH>=pTQFbI0W4$B!L@i%#Jum36Ikt>^w|Yieub zct?1e(NA>pFpk^bQOZh`VxAJYG%99g@^c%WTgR`SUFe#0>sQvVS@m=h(jxCl6B^T? z%H*+Pc5`!khY_L-J`6I;NmimE7|CCOE_G;7XJKPyZEb^4IyTZWw*_% z=;;Q}QCnP8dhA%{zp}F5EIM9O{SEFy8*t~{s&8_ensPajt=Jq;4}uIktWYb<$#!yk zJMqws>w|;H_UhGsn5m0|IFXs@^+qemN6@-pv<`cZ^#-rVjaxUTrEUJ_#} zEGH*tpMc0fE3w#aVR-y2TeiINH;$3(bQ&QekTBG+cCx<95fQFcs@ab1zX1!Yjbdi0 zxS0U~B9V{t92m(tx;lINxVw8T@RSm`(m67zfcUC_`9~`+cbYpl}VFwwCY*gzQf*Q`_ zM|L-p>K?`0j?>Z6OF#|xfRJt@2s^L>Bd-6ugucED!V@&W0|&sxa>jPQ&!{h+j1Vvh;;?Y%%TD^(%&VERwV1Py)(ozmu$|nOzSuNAqwd-%5gWK~V0krE0Z6q9&g`jaa7q0;zDsg}{Qnr0K!u)-C9C24i!~|-m=c<{}C$F zQm~W}P?9HtF(cR=Tk(G)nAQmM%-3=cefnMHcb^{01q(wkOH!fl-^}bdkY~hh`iGhJ zUj)19K)xE9Z-Vecu$%Jo$acJEZxH-oQkm>59Ei6Hw`F8x?8xKhOhh7*O~H(}laaL` z{4=c6@GZbP$qDp=h=+BOOoVkZj{Pebffq0Wi_qUdJ-|-AE-@()3~xHVe4yC;(zEeP z0s;b-#6SDe|B2?<{Z)64(jgP#(H(Rs2sRL##jj?)T~Ju?cGeE;;I43wX=sN0>$irw zV@LO62hZDo6aYZg-~V*9kf0*>IlDVLgFrNyI%AY$+HyS0^7r<>0W4h)`aK3%nMUqi$0y@j8=yFU*>GVAJ2 z)RZ3H$JtLDXH%2;F~19R$=J3rd2=!cr4w%%5@S3K5X_nf&}ssOtd*oh1_g&kKKih; zY%5_Qc8UJEI&7|`P{K{|@OUsd2tywf{Gf-2i{&j0#x1MaoJCmA)mb5)y#;T4(cQNj zhr2jKB$L$}rlNMzTbFTDAoVNz5k^DDzbHO>^tiUz+eNL~39 z$cYwY?NxTm#4pNkalwbT{b74+NwKR}0n2Ul;hlzd*n9A!f#h zpfBXP-O$e&btB(>d8ck90T^s|=|+wed@@mgGVvLr8@Vr39WWj8af0|{E48s(0AUz{ zn?yW3G}KprVZF77A&eR*#MAMvfXnZ2~w1OyyIE?2TBNu!(+K zBslv*gFp>45UB)1W`i%Z51h%hj8%dMN9*@$%=OZ0-3Z+L)cOIvhTf~^CRf!I_b^>u z<#0_X@9Nr>UC>$A$W0bO@FePYVRbFT{SB-=>>d;%V~LYc;v|#^%w80b#BC4KXBn(u zHv@i)*eHzZ)Po@~GCr{*ST8j_v%~ld(chCiNZhhj!6b_oLp&@GjQC1K|Ko<#FmN^{ zkb4}$xD*3}55_aJIvi7uiIhj<7)yt%Ics@Jc(;{*QyIgQHTYR|g{R0l>-y&A%G!$N zmU?!0*hXYKGR$(;Z7nB9dOIbIPA8If_Kh^Qw3+t7F-d9RVyli}NJk~i~dTh^1bcZx>SNLx+s5zsk4HDfH5j32M-+JZR1 zgS3z`&=T63wxD#t19wNX*@x--At({Ue5sGKZdC^?R6%g+X3q+G;jPo$#L;_k_F2bd z?8#UP6@36s*dl$C-T=LqAB-8FBijmR?P25OjIG~xu-$h-0328X{f%Qu{0WI{*}}_9 zDV28rke`=V@OgQwllZ&8g)O&@ps6xjQG(WHUx9BUHWfI6kLg#&B>EA23M@@VCAAY%M7#~kD37H^>lPxj#o#l3 z#i&uR7WoyQ-$zhe=x5%SdM(9=rCv5Yy*)OVi@h2Bz}0@atXh=vl9^tNH1?&U(K0d~4l#0Dg^sHnxpK4V~>o znTcrN`NLpQG$nYbxv;rcWOZ@-_KQ{s5KHXbi3&qUwI3pKHv{jv-U)=GoF3LeO!Pq*Oszx47 zfM^478YcfbdR@AT-mCeu)iqg1V&p>~;d>jN)hMn)V_Ka=$46$4hH}RzTtK!8IA_oU4tLp`>D*~`E zHIzbQp-{9z=<(A}KSB7>rr;zIP8TnRgoH#q_Sj=VPzoKUUqXd*H5S*dS-QG<;ArFF z>S}q-)HZS!iADa?JE^&gLl@7bI)8c}Wbgf-I?q50e5Uit&5@h^;NOKZ%bShmAF3gc zTg_ivtUfGnylHu|{@e00P=~VeZ|k`wn6U4GWD~H|BK-dzzVBlH31bWdq1{Dgv#%s2 zCA|`YyC3n>yMp=%!|kG(28Xh~?vCbDCr>qZboUJo+uPshZvNuPk>>6jroC=dcW2{2 z&-(#)iz`Pz)3Gj&_s#cN7_pX2;E&jqkNHsX8aqcvcfXJj^#e0qCttsQz31$yQw=@W zF3^sgt@{+|WIGG?`t`!XURLfhd#3aK3m+sb&<-XHAklW6o&5%Lb946M#d*t?En7-- z6H6X{d`hROr^wzWf%6B}D8|{vFk)~@r}yEgIYb?&k5Mf~t6&#AMR+Z1=j!SvKqKAq z_EpdGnm5OTYS(C`x35k#_gsv*Pk4~a)D`Gxt^&Y5bwdcx03CtGwt}if=j3WM7DEH= zeN8_c@4GV4`^U8*Yqevh*me9- zbMzq491b3>`J({90Ojb0@}ngm!)h27VMLu1jg2B3r!rz-Q-J@oVdlce=m!6njSe6n zlKZK5`MJS%bzL4D)>;k^UhWc^-5R`f4uaIdTS8Nf{%Y+L>n$LFP(r_c8#$#!pfMjG zjsmI5U;ti8XoQ9?goy!Jk;K=X-~de`&-%%2`pNSwyi)7yGx%57FttPtem4Wl7%#Gg zg;Y$8k;V|~g;{vlA~ZDi>7>;y?H4Xy=!U&`xMue}!v_MrQWqf?-nx#@Ndl#2 z7_s?Z;_YZ`6QNlWC!S*o(zomTA(5rs(e4b5QMwd}^eEJOhO@^Ers?2oSy`|B$T~W* z*Yvh>`IKw={x3?r3k$ueVvSU8M^gsZCsW!drz9t9B!;s;wXENonwlCc-yu(kS)H`% z$tM#M;u8{WZ2TtOoFtJ^(peu&m$* zVpEhPk?5g^yd(w7%b3PA72BS7x*SGw1)}S#@PEMKJp7Nxtfuikp2orSTSz#}RfuT2szdQ=oe=C_?=8@5; zb;8o%$jHA15X|CCI>1y@=~YxnCkeua|FYQ+0v7f{Kfi~1OXSn71uQdTLQVhO&Or98 zQF_5tx%V>CK8j9qCM;~P6J^{BOwUk^7!g-tRYDJ-4uzUAF95Q;$j}o)=ctN40BIvq z2^GZ&`&zfI2dzWnVMcDuX(pa@#*>y_B<8AzmzNyQ9&#_rLjy=>mez>8Jnh)N(~X?v zDB`&*a0y)P;eczQ0|t%$wyyrfMZJ}WhjIRl&3Hwx=ay+P#g8_|Y2 zZEbOJJJ<@{r~{mBlev*YK5kQkg7nJi9cMPp&d+ii~x&iP|IE)(3?-vB4oF|8NkRP zIC+M!nkK#T%fS#~9izUcUv@T)%qp~MJz9l`^Tv5*`rpZYVH9k7q87T#iIaiQ&fPN> zv@v$ByQ|?$%Ne~AQz1iRHWCvvk}DGBYNi7?bL5tQ5schq&BfH7w+eq_-Q(A-TesYu z{jKmVZl<5#h7J7h3<;i+%5r@HUMP0-{Gg$UZwua)lRN0hO0Ma9J|zSrv>-jPp*1xGaSJ zMG#+oT<9UJo0q@`t;ZRhzbAl1e>ahIZ3Ghy*@1BTv2V+c9a{wJ6LPI&H0khH{>P*p zJ9qAQv$7e)VG)0Lk2P#DFRnbvM>)9haeDd^+!f<|W4vy|07pdvUW55qg3sh~#T_C{ z<1czActuL%(%g)gTXXLNKG+N=Pfx4v#)gK*re+6VMDYkYcuW~qxf;~W4#l*_;M5Q1{E{I4;nsTf;o zn`R~vKJNeEKwjR#{dxQG?_gfufe-dWr~O&6@dwZg0FW2FSsIBslMOLQHsq<>X`PO= zcr{FH?E@l9f4ImqFYw6jmNvcjql$viC-x8!mmcEH2s*whq#awa3Tw!Wz zJ_!Nvak%MvTC^)Cw+d)$Mug{Q4KKRp90&J#^7o>m9Mtl_r|r;BiNN0+ZfNhZaK#qL z)Z{jv0mJbaaEQs3W_XYIY~oTI7QtaA$?z;JE0!3i7=zf;A()Y?VXw6e%RKtI>b@}$9}q~%d%2l4ewa{uy(*7fSCvS?4?pg)v| zjtt}I78u&s2VH1LFt9*<{a_+zfSRKBav!%2OD3QCjb1=MLnq^UhF%004RX*p2Iihb zTXVzZ3RjvYm>GWrno~fe)3hTlOQ_OqiRUjE!Y=9*Bw}#GMwBoq0*BK4y>j-YN8yLQ z8e;KIu-FAqr+&g`Vblac2o7-pJWgB85fHRbrNNb>Iplp7{9z|L}Xfn*70!aUQ$?idcks;9#TI=KxL0#s;{1 z6;~LWARG^%vTkIiO|~gt#1H2~hNrD^OTN7TkyvKtYgr|yE6U-vFZA%}?)LD|1l?YJ zd$n=B_Ma%#h)Un%m#~H@J<+dauvGa6MEr7nuaraZGJ5surMxRC(J2&wnI#6?7ce@x z5C%uyfR(hGAHaisjCr6Dh?)1&iI6N+!2jn6y{nRguK9rZMx<5LUAQ;j|MDthi!bQ~&8ThUhd z>rW~Ts_2P|Rsj$|gp+wW?hV589gC0O7Td6H+^I^aieM*=Wvj

    Zi>BEYw5wKp;mh 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 literal 0 HcmV?d00001 diff --git a/authentication.html b/authentication.html index 1552e0ae6..df1ead84f 100644 --- a/authentication.html +++ b/authentication.html @@ -1,16 +1,16 @@ - Welcome to GitHub Dating + Welcome to GitHub(by) Express + -

    Welcome to the Homework Reminder!!!

    -

    - Please input your login information. If you do not have an account, please create simply a new account. -

    +

    Welcome to GitHub(by) Express!!!

    +

    Welcome to the newest social media platform to get to know other coders and start new bonds and relationships.

    +

    Please input your login information. If you do not have an account, please create simply a new account.

    diff --git a/index.html b/index.html index 3981cdaa8..ed06a9ec7 100644 --- a/index.html +++ b/index.html @@ -8,8 +8,8 @@

    GitHub(by) Express

    -
    -
    +
    +

    Personal Information

    @@ -20,11 +20,11 @@

    Personal Information





    -

    -

    + +

    -
    +

    Tell us about yourself!

    @@ -34,23 +34,24 @@

    Tell us about yourself!



    Mingle or Looking to Date?

    - + - +

    -
    +

    Preferences





    -

    -

    + +

    - + @@ -62,6 +63,6 @@

    Preferences

    - +
    diff --git a/style.css b/style.css index d296b2aa5..a28953eba 100644 --- a/style.css +++ b/style.css @@ -4,6 +4,12 @@ format("truetype"); } +@font-face { + font-family: "InterTight"; + src: url(InterTight-VariableFont_wght.ttf) + format("truetype"); + } + #addr, #fName, #lName, #email{ margin-left: 5px; float: right; @@ -19,16 +25,18 @@ float: right; } -.float-container { +label{ + font-family: "InterTight"; +} + +.row { width: auto; - margin-left: 14%; border: 2px solid #fff; - display: inline-block; + display: flex; } -.float-child { - width: auto; - float: left; +.col { + flex: 1; margin: 10px; padding: 40px; border: 2px solid palevioletred; @@ -49,18 +57,27 @@ h1 { border-radius: 5px; } +h2 { + font-family: "InterTight"; + text-align: center; + text-decoration: underline; +} + +p { + font-family: "InterTight"; +} + input[type=submit] { width: 25%; + margin-top: 10%; font-size: larger; + font-family: "InterTight"; background-color: cadetblue; color: rgb(12, 12, 12); padding: 14px 20px; border: none; border-radius: 4px; cursor: pointer; - position: absolute; - left: 40%; - bottom: 10%; } input[type=submit]:hover { From af350ac75deda65a2348f7b4ca2d4aa085c33e20 Mon Sep 17 00:00:00 2001 From: Livingwell088 <58043224+Livingwell088@users.noreply.github.com> Date: Thu, 6 Oct 2022 09:07:10 -0400 Subject: [PATCH 08/42] Refactored server and frontend --- index.html | 68 ------------------ .../FredokaOne-Regular.ttf | Bin .../InterTight-VariableFont_wght.ttf | Bin style.css => public/style.css | 0 .../unsplash-7rXu_HJO9D8-unsplash.jpg | Bin server.js | 1 + .../authentication.html | 2 +- views/index.html | 26 +++++++ views/main.html | 68 ++++++++++++++++++ 9 files changed, 96 insertions(+), 69 deletions(-) delete mode 100644 index.html rename FredokaOne-Regular.ttf => public/FredokaOne-Regular.ttf (100%) rename InterTight-VariableFont_wght.ttf => public/InterTight-VariableFont_wght.ttf (100%) rename style.css => public/style.css (100%) rename unsplash-7rXu_HJO9D8-unsplash.jpg => public/unsplash-7rXu_HJO9D8-unsplash.jpg (100%) rename authentication.html => views/authentication.html (95%) create mode 100644 views/index.html create mode 100644 views/main.html diff --git a/index.html b/index.html deleted file mode 100644 index ed06a9ec7..000000000 --- a/index.html +++ /dev/null @@ -1,68 +0,0 @@ - - - - GitHub(by) Express - - - - - -

    GitHub(by) Express

    -
    -
    -

    Personal Information

    -
    - -

    - -

    - -

    - -

    - -

    -
    -
    -
    -

    Tell us about yourself!

    -
    - -

    - -

    - -

    -

    Mingle or Looking to Date?

    - - - -

    -
    -
    -
    -

    Preferences

    -
    - -

    - -

    - -

    - - -
    -
    -
    -
    - - diff --git a/FredokaOne-Regular.ttf b/public/FredokaOne-Regular.ttf similarity index 100% rename from FredokaOne-Regular.ttf rename to public/FredokaOne-Regular.ttf diff --git a/InterTight-VariableFont_wght.ttf b/public/InterTight-VariableFont_wght.ttf similarity index 100% rename from InterTight-VariableFont_wght.ttf rename to public/InterTight-VariableFont_wght.ttf diff --git a/style.css b/public/style.css similarity index 100% rename from style.css rename to public/style.css diff --git a/unsplash-7rXu_HJO9D8-unsplash.jpg b/public/unsplash-7rXu_HJO9D8-unsplash.jpg similarity index 100% rename from unsplash-7rXu_HJO9D8-unsplash.jpg rename to public/unsplash-7rXu_HJO9D8-unsplash.jpg diff --git a/server.js b/server.js index cf658d71d..a7fe5d53f 100644 --- a/server.js +++ b/server.js @@ -2,6 +2,7 @@ const express = require("express"), app = express() app.use(express.static("public")); +app.use(express.static("views")); app.use(express.json()); diff --git a/authentication.html b/views/authentication.html similarity index 95% rename from authentication.html rename to views/authentication.html index df1ead84f..14f282b9a 100644 --- a/authentication.html +++ b/views/authentication.html @@ -4,7 +4,7 @@ Welcome to GitHub(by) Express - + diff --git a/views/index.html b/views/index.html new file mode 100644 index 000000000..b00a17452 --- /dev/null +++ b/views/index.html @@ -0,0 +1,26 @@ + + + + Welcome to GitHub(by) Express + + + + + + +

    Welcome to GitHub(by) Express!!!

    +

    Welcome to the newest social media platform to get to know other coders and start new bonds and relationships.

    +

    Please input your login information. If you do not have an account, please create simply a new account.

    +
    +
    + + +
    +
    + + +
    + +
    + + diff --git a/views/main.html b/views/main.html new file mode 100644 index 000000000..740195be4 --- /dev/null +++ b/views/main.html @@ -0,0 +1,68 @@ + + + + GitHub(by) Express + + + + + +

    GitHub(by) Express

    +
    +
    +

    Personal Information

    +
    + +

    + +

    + +

    + +

    + +

    +
    +
    +
    +

    Tell us about yourself!

    +
    + +

    + +

    + +

    +

    Mingle or Looking to Date?

    + + + +

    +
    +
    +
    +

    Preferences

    +
    + +

    + +

    + +

    + + +
    +
    +
    +
    + + From b58d04ef81b0fe7731a2fff387426b6c773dc1fd Mon Sep 17 00:00:00 2001 From: Livingwell088 <58043224+Livingwell088@users.noreply.github.com> Date: Thu, 6 Oct 2022 09:49:49 -0400 Subject: [PATCH 09/42] Initial Oauth on Github created, working on the github button --- public/login.js | 11 +++++++++++ server.js | 7 +++++++ views/index.html | 4 +++- 3 files changed, 21 insertions(+), 1 deletion(-) create mode 100644 public/login.js diff --git a/public/login.js b/public/login.js new file mode 100644 index 000000000..fada178a2 --- /dev/null +++ b/public/login.js @@ -0,0 +1,11 @@ + + +function githubLog() { + + fetch('/github', { + method: 'GET', + 'no-cors':true + }) +} + + diff --git a/server.js b/server.js index a7fe5d53f..c6ac717a1 100644 --- a/server.js +++ b/server.js @@ -6,6 +6,13 @@ app.use(express.static("views")); app.use(express.json()); +const clientId = '903729e701c50a0a540c'; +const clientSecret = 'OMITTED'; + +app.get('/github', (req, res) => { + res.redirect(`https://github.com/login/oauth/authorize?client_id=${clientId}`); +}); + diff --git a/views/index.html b/views/index.html index b00a17452..da2d0534d 100644 --- a/views/index.html +++ b/views/index.html @@ -5,7 +5,6 @@ -

    Welcome to GitHub(by) Express!!!

    @@ -20,7 +19,10 @@

    Welco

    + + + From 260e554c6b62f65c39e951af91a593920d47f6a3 Mon Sep 17 00:00:00 2001 From: Livingwell088 <58043224+Livingwell088@users.noreply.github.com> Date: Thu, 6 Oct 2022 15:33:03 -0400 Subject: [PATCH 10/42] login with github button --- node_modules/.package-lock.json | 71 + node_modules/asynckit/LICENSE | 21 + node_modules/asynckit/README.md | 233 + node_modules/asynckit/bench.js | 76 + node_modules/asynckit/index.js | 6 + node_modules/asynckit/lib/abort.js | 29 + node_modules/asynckit/lib/async.js | 34 + node_modules/asynckit/lib/defer.js | 26 + node_modules/asynckit/lib/iterate.js | 75 + .../asynckit/lib/readable_asynckit.js | 91 + .../asynckit/lib/readable_parallel.js | 25 + node_modules/asynckit/lib/readable_serial.js | 25 + .../asynckit/lib/readable_serial_ordered.js | 29 + node_modules/asynckit/lib/state.js | 37 + node_modules/asynckit/lib/streamify.js | 141 + node_modules/asynckit/lib/terminator.js | 29 + node_modules/asynckit/package.json | 63 + node_modules/asynckit/parallel.js | 43 + node_modules/asynckit/serial.js | 17 + node_modules/asynckit/serialOrdered.js | 75 + node_modules/asynckit/stream.js | 21 + node_modules/axios/CHANGELOG.md | 181 + node_modules/axios/LICENSE | 7 + node_modules/axios/README.md | 1190 ++++++ node_modules/axios/SECURITY.md | 6 + node_modules/axios/UPGRADE_GUIDE.md | 3 + node_modules/axios/bin/ssl_hotfix.js | 22 + node_modules/axios/dist/axios.js | 2921 +++++++++++++ node_modules/axios/dist/axios.js.map | 1 + node_modules/axios/dist/axios.min.js | 2 + node_modules/axios/dist/axios.min.js.map | 1 + node_modules/axios/dist/esm/axios.js | 2942 +++++++++++++ node_modules/axios/dist/esm/axios.js.map | 1 + node_modules/axios/dist/esm/axios.min.js | 2 + node_modules/axios/dist/esm/axios.min.js.map | 1 + node_modules/axios/dist/node/axios.cjs | 3750 +++++++++++++++++ node_modules/axios/dist/node/axios.cjs.map | 1 + node_modules/axios/gulpfile.js | 88 + node_modules/axios/index.d.ts | 477 +++ node_modules/axios/index.js | 2 + node_modules/axios/karma.conf.cjs | 250 ++ node_modules/axios/lib/adapters/README.md | 37 + node_modules/axios/lib/adapters/http.js | 583 +++ node_modules/axios/lib/adapters/index.js | 33 + node_modules/axios/lib/adapters/xhr.js | 246 ++ node_modules/axios/lib/axios.js | 76 + node_modules/axios/lib/cancel/CancelToken.js | 121 + .../axios/lib/cancel/CanceledError.js | 25 + node_modules/axios/lib/cancel/isCancel.js | 5 + node_modules/axios/lib/core/Axios.js | 188 + node_modules/axios/lib/core/AxiosError.js | 100 + node_modules/axios/lib/core/AxiosHeaders.js | 274 ++ .../axios/lib/core/InterceptorManager.js | 71 + node_modules/axios/lib/core/README.md | 8 + node_modules/axios/lib/core/buildFullPath.js | 21 + .../axios/lib/core/dispatchRequest.js | 76 + node_modules/axios/lib/core/mergeConfig.js | 101 + node_modules/axios/lib/core/settle.js | 27 + node_modules/axios/lib/core/transformData.js | 28 + node_modules/axios/lib/defaults/index.js | 185 + .../axios/lib/defaults/transitional.js | 7 + node_modules/axios/lib/env/README.md | 3 + .../axios/lib/env/classes/FormData.js | 2 + node_modules/axios/lib/env/data.js | 1 + .../axios/lib/helpers/AxiosTransformStream.js | 191 + .../axios/lib/helpers/AxiosURLSearchParams.js | 58 + node_modules/axios/lib/helpers/README.md | 7 + node_modules/axios/lib/helpers/bind.js | 7 + node_modules/axios/lib/helpers/buildURL.js | 56 + node_modules/axios/lib/helpers/combineURLs.js | 15 + node_modules/axios/lib/helpers/cookies.js | 52 + .../axios/lib/helpers/deprecatedMethod.js | 26 + .../axios/lib/helpers/formDataToJSON.js | 92 + node_modules/axios/lib/helpers/fromDataURI.js | 53 + .../axios/lib/helpers/isAbsoluteURL.js | 15 + .../axios/lib/helpers/isAxiosError.js | 14 + .../axios/lib/helpers/isURLSameOrigin.js | 67 + node_modules/axios/lib/helpers/null.js | 2 + .../axios/lib/helpers/parseHeaders.js | 55 + .../axios/lib/helpers/parseProtocol.js | 6 + node_modules/axios/lib/helpers/speedometer.js | 55 + node_modules/axios/lib/helpers/spread.js | 28 + node_modules/axios/lib/helpers/throttle.js | 33 + node_modules/axios/lib/helpers/toFormData.js | 229 + .../axios/lib/helpers/toURLEncodedForm.js | 18 + node_modules/axios/lib/helpers/validator.js | 91 + .../lib/platform/browser/classes/FormData.js | 3 + .../browser/classes/URLSearchParams.js | 4 + .../axios/lib/platform/browser/index.js | 43 + node_modules/axios/lib/platform/index.js | 3 + .../lib/platform/node/classes/FormData.js | 3 + .../platform/node/classes/URLSearchParams.js | 4 + node_modules/axios/lib/platform/node/index.js | 12 + node_modules/axios/lib/utils.js | 613 +++ node_modules/axios/package.json | 133 + node_modules/axios/rollup.config.js | 90 + node_modules/axios/tsconfig.json | 14 + node_modules/axios/tslint.json | 6 + node_modules/combined-stream/License | 19 + node_modules/combined-stream/Readme.md | 138 + .../combined-stream/lib/combined_stream.js | 208 + node_modules/combined-stream/package.json | 25 + node_modules/combined-stream/yarn.lock | 17 + node_modules/delayed-stream/.npmignore | 1 + node_modules/delayed-stream/License | 19 + node_modules/delayed-stream/Makefile | 7 + node_modules/delayed-stream/Readme.md | 141 + .../delayed-stream/lib/delayed_stream.js | 107 + node_modules/delayed-stream/package.json | 27 + node_modules/follow-redirects/LICENSE | 18 + node_modules/follow-redirects/README.md | 155 + node_modules/follow-redirects/debug.js | 15 + node_modules/follow-redirects/http.js | 1 + node_modules/follow-redirects/https.js | 1 + node_modules/follow-redirects/index.js | 621 +++ node_modules/follow-redirects/package.json | 59 + node_modules/form-data/License | 19 + node_modules/form-data/README.md.bak | 358 ++ node_modules/form-data/Readme.md | 358 ++ node_modules/form-data/index.d.ts | 62 + node_modules/form-data/lib/browser.js | 2 + node_modules/form-data/lib/form_data.js | 501 +++ node_modules/form-data/lib/populate.js | 10 + node_modules/form-data/package.json | 68 + node_modules/proxy-from-env/.eslintrc | 29 + node_modules/proxy-from-env/.travis.yml | 10 + node_modules/proxy-from-env/LICENSE | 20 + node_modules/proxy-from-env/README.md | 131 + node_modules/proxy-from-env/index.js | 108 + node_modules/proxy-from-env/package.json | 34 + node_modules/proxy-from-env/test.js | 483 +++ package-lock.json | 120 + package.json | 1 + public/login.js | 5 + server.js | 27 +- views/index.html | 3 +- 136 files changed, 21255 insertions(+), 4 deletions(-) create mode 100644 node_modules/asynckit/LICENSE create mode 100644 node_modules/asynckit/README.md create mode 100644 node_modules/asynckit/bench.js create mode 100644 node_modules/asynckit/index.js create mode 100644 node_modules/asynckit/lib/abort.js create mode 100644 node_modules/asynckit/lib/async.js create mode 100644 node_modules/asynckit/lib/defer.js create mode 100644 node_modules/asynckit/lib/iterate.js create mode 100644 node_modules/asynckit/lib/readable_asynckit.js create mode 100644 node_modules/asynckit/lib/readable_parallel.js create mode 100644 node_modules/asynckit/lib/readable_serial.js create mode 100644 node_modules/asynckit/lib/readable_serial_ordered.js create mode 100644 node_modules/asynckit/lib/state.js create mode 100644 node_modules/asynckit/lib/streamify.js create mode 100644 node_modules/asynckit/lib/terminator.js create mode 100644 node_modules/asynckit/package.json create mode 100644 node_modules/asynckit/parallel.js create mode 100644 node_modules/asynckit/serial.js create mode 100644 node_modules/asynckit/serialOrdered.js create mode 100644 node_modules/asynckit/stream.js create mode 100644 node_modules/axios/CHANGELOG.md create mode 100644 node_modules/axios/LICENSE create mode 100644 node_modules/axios/README.md create mode 100644 node_modules/axios/SECURITY.md create mode 100644 node_modules/axios/UPGRADE_GUIDE.md create mode 100644 node_modules/axios/bin/ssl_hotfix.js create mode 100644 node_modules/axios/dist/axios.js create mode 100644 node_modules/axios/dist/axios.js.map create mode 100644 node_modules/axios/dist/axios.min.js create mode 100644 node_modules/axios/dist/axios.min.js.map create mode 100644 node_modules/axios/dist/esm/axios.js create mode 100644 node_modules/axios/dist/esm/axios.js.map create mode 100644 node_modules/axios/dist/esm/axios.min.js create mode 100644 node_modules/axios/dist/esm/axios.min.js.map create mode 100644 node_modules/axios/dist/node/axios.cjs create mode 100644 node_modules/axios/dist/node/axios.cjs.map create mode 100644 node_modules/axios/gulpfile.js create mode 100644 node_modules/axios/index.d.ts create mode 100644 node_modules/axios/index.js create mode 100644 node_modules/axios/karma.conf.cjs create mode 100644 node_modules/axios/lib/adapters/README.md create mode 100644 node_modules/axios/lib/adapters/http.js create mode 100644 node_modules/axios/lib/adapters/index.js create mode 100644 node_modules/axios/lib/adapters/xhr.js create mode 100644 node_modules/axios/lib/axios.js create mode 100644 node_modules/axios/lib/cancel/CancelToken.js create mode 100644 node_modules/axios/lib/cancel/CanceledError.js create mode 100644 node_modules/axios/lib/cancel/isCancel.js create mode 100644 node_modules/axios/lib/core/Axios.js create mode 100644 node_modules/axios/lib/core/AxiosError.js create mode 100644 node_modules/axios/lib/core/AxiosHeaders.js create mode 100644 node_modules/axios/lib/core/InterceptorManager.js create mode 100644 node_modules/axios/lib/core/README.md create mode 100644 node_modules/axios/lib/core/buildFullPath.js create mode 100644 node_modules/axios/lib/core/dispatchRequest.js create mode 100644 node_modules/axios/lib/core/mergeConfig.js create mode 100644 node_modules/axios/lib/core/settle.js create mode 100644 node_modules/axios/lib/core/transformData.js create mode 100644 node_modules/axios/lib/defaults/index.js create mode 100644 node_modules/axios/lib/defaults/transitional.js create mode 100644 node_modules/axios/lib/env/README.md create mode 100644 node_modules/axios/lib/env/classes/FormData.js create mode 100644 node_modules/axios/lib/env/data.js create mode 100644 node_modules/axios/lib/helpers/AxiosTransformStream.js create mode 100644 node_modules/axios/lib/helpers/AxiosURLSearchParams.js create mode 100644 node_modules/axios/lib/helpers/README.md create mode 100644 node_modules/axios/lib/helpers/bind.js create mode 100644 node_modules/axios/lib/helpers/buildURL.js create mode 100644 node_modules/axios/lib/helpers/combineURLs.js create mode 100644 node_modules/axios/lib/helpers/cookies.js create mode 100644 node_modules/axios/lib/helpers/deprecatedMethod.js create mode 100644 node_modules/axios/lib/helpers/formDataToJSON.js create mode 100644 node_modules/axios/lib/helpers/fromDataURI.js create mode 100644 node_modules/axios/lib/helpers/isAbsoluteURL.js create mode 100644 node_modules/axios/lib/helpers/isAxiosError.js create mode 100644 node_modules/axios/lib/helpers/isURLSameOrigin.js create mode 100644 node_modules/axios/lib/helpers/null.js create mode 100644 node_modules/axios/lib/helpers/parseHeaders.js create mode 100644 node_modules/axios/lib/helpers/parseProtocol.js create mode 100644 node_modules/axios/lib/helpers/speedometer.js create mode 100644 node_modules/axios/lib/helpers/spread.js create mode 100644 node_modules/axios/lib/helpers/throttle.js create mode 100644 node_modules/axios/lib/helpers/toFormData.js create mode 100644 node_modules/axios/lib/helpers/toURLEncodedForm.js create mode 100644 node_modules/axios/lib/helpers/validator.js create mode 100644 node_modules/axios/lib/platform/browser/classes/FormData.js create mode 100644 node_modules/axios/lib/platform/browser/classes/URLSearchParams.js create mode 100644 node_modules/axios/lib/platform/browser/index.js create mode 100644 node_modules/axios/lib/platform/index.js create mode 100644 node_modules/axios/lib/platform/node/classes/FormData.js create mode 100644 node_modules/axios/lib/platform/node/classes/URLSearchParams.js create mode 100644 node_modules/axios/lib/platform/node/index.js create mode 100644 node_modules/axios/lib/utils.js create mode 100644 node_modules/axios/package.json create mode 100644 node_modules/axios/rollup.config.js create mode 100644 node_modules/axios/tsconfig.json create mode 100644 node_modules/axios/tslint.json create mode 100644 node_modules/combined-stream/License create mode 100644 node_modules/combined-stream/Readme.md create mode 100644 node_modules/combined-stream/lib/combined_stream.js create mode 100644 node_modules/combined-stream/package.json create mode 100644 node_modules/combined-stream/yarn.lock create mode 100644 node_modules/delayed-stream/.npmignore create mode 100644 node_modules/delayed-stream/License create mode 100644 node_modules/delayed-stream/Makefile create mode 100644 node_modules/delayed-stream/Readme.md create mode 100644 node_modules/delayed-stream/lib/delayed_stream.js create mode 100644 node_modules/delayed-stream/package.json create mode 100644 node_modules/follow-redirects/LICENSE create mode 100644 node_modules/follow-redirects/README.md create mode 100644 node_modules/follow-redirects/debug.js create mode 100644 node_modules/follow-redirects/http.js create mode 100644 node_modules/follow-redirects/https.js create mode 100644 node_modules/follow-redirects/index.js create mode 100644 node_modules/follow-redirects/package.json create mode 100644 node_modules/form-data/License create mode 100644 node_modules/form-data/README.md.bak create mode 100644 node_modules/form-data/Readme.md create mode 100644 node_modules/form-data/index.d.ts create mode 100644 node_modules/form-data/lib/browser.js create mode 100644 node_modules/form-data/lib/form_data.js create mode 100644 node_modules/form-data/lib/populate.js create mode 100644 node_modules/form-data/package.json create mode 100644 node_modules/proxy-from-env/.eslintrc create mode 100644 node_modules/proxy-from-env/.travis.yml create mode 100644 node_modules/proxy-from-env/LICENSE create mode 100644 node_modules/proxy-from-env/README.md create mode 100644 node_modules/proxy-from-env/index.js create mode 100644 node_modules/proxy-from-env/package.json create mode 100644 node_modules/proxy-from-env/test.js diff --git a/node_modules/.package-lock.json b/node_modules/.package-lock.json index 32b243eb5..44747ea99 100644 --- a/node_modules/.package-lock.json +++ b/node_modules/.package-lock.json @@ -39,6 +39,21 @@ "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" + }, + "node_modules/axios": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.0.0.tgz", + "integrity": "sha512-SsHsGFN1qNPFT5QhSoSD37SHDfGyLSW5AESmyLk2JeCMHv5g0I9g0Hz/zQHx2KNe0jGXh2q2hAm7OdkXm360CA==", + "dependencies": { + "follow-redirects": "^1.15.0", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" + } + }, "node_modules/base64-js": { "version": "1.5.1", "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", @@ -135,6 +150,17 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, "node_modules/content-disposition": { "version": "0.5.4", "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", @@ -175,6 +201,14 @@ "ms": "2.0.0" } }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "engines": { + "node": ">=0.4.0" + } + }, "node_modules/denque": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/denque/-/denque-2.1.0.tgz", @@ -284,6 +318,38 @@ "node": ">= 0.8" } }, + "node_modules/follow-redirects": { + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz", + "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, "node_modules/forwarded": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", @@ -543,6 +609,11 @@ "node": ">= 0.10" } }, + "node_modules/proxy-from-env": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" + }, "node_modules/punycode": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", diff --git a/node_modules/asynckit/LICENSE b/node_modules/asynckit/LICENSE new file mode 100644 index 000000000..c9eca5dd9 --- /dev/null +++ b/node_modules/asynckit/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2016 Alex Indigo + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/node_modules/asynckit/README.md b/node_modules/asynckit/README.md new file mode 100644 index 000000000..ddcc7e6b9 --- /dev/null +++ b/node_modules/asynckit/README.md @@ -0,0 +1,233 @@ +# asynckit [![NPM Module](https://img.shields.io/npm/v/asynckit.svg?style=flat)](https://www.npmjs.com/package/asynckit) + +Minimal async jobs utility library, with streams support. + +[![PhantomJS Build](https://img.shields.io/travis/alexindigo/asynckit/v0.4.0.svg?label=browser&style=flat)](https://travis-ci.org/alexindigo/asynckit) +[![Linux Build](https://img.shields.io/travis/alexindigo/asynckit/v0.4.0.svg?label=linux:0.12-6.x&style=flat)](https://travis-ci.org/alexindigo/asynckit) +[![Windows Build](https://img.shields.io/appveyor/ci/alexindigo/asynckit/v0.4.0.svg?label=windows:0.12-6.x&style=flat)](https://ci.appveyor.com/project/alexindigo/asynckit) + +[![Coverage Status](https://img.shields.io/coveralls/alexindigo/asynckit/v0.4.0.svg?label=code+coverage&style=flat)](https://coveralls.io/github/alexindigo/asynckit?branch=master) +[![Dependency Status](https://img.shields.io/david/alexindigo/asynckit/v0.4.0.svg?style=flat)](https://david-dm.org/alexindigo/asynckit) +[![bitHound Overall Score](https://www.bithound.io/github/alexindigo/asynckit/badges/score.svg)](https://www.bithound.io/github/alexindigo/asynckit) + + + +AsyncKit provides harness for `parallel` and `serial` iterators over list of items represented by arrays or objects. +Optionally it accepts abort function (should be synchronously return by iterator for each item), and terminates left over jobs upon an error event. For specific iteration order built-in (`ascending` and `descending`) and custom sort helpers also supported, via `asynckit.serialOrdered` method. + +It ensures async operations to keep behavior more stable and prevent `Maximum call stack size exceeded` errors, from sync iterators. + +| compression | size | +| :----------------- | -------: | +| asynckit.js | 12.34 kB | +| asynckit.min.js | 4.11 kB | +| asynckit.min.js.gz | 1.47 kB | + + +## Install + +```sh +$ npm install --save asynckit +``` + +## Examples + +### Parallel Jobs + +Runs iterator over provided array in parallel. Stores output in the `result` array, +on the matching positions. In unlikely event of an error from one of the jobs, +will terminate rest of the active jobs (if abort function is provided) +and return error along with salvaged data to the main callback function. + +#### Input Array + +```javascript +var parallel = require('asynckit').parallel + , assert = require('assert') + ; + +var source = [ 1, 1, 4, 16, 64, 32, 8, 2 ] + , expectedResult = [ 2, 2, 8, 32, 128, 64, 16, 4 ] + , expectedTarget = [ 1, 1, 2, 4, 8, 16, 32, 64 ] + , target = [] + ; + +parallel(source, asyncJob, function(err, result) +{ + assert.deepEqual(result, expectedResult); + assert.deepEqual(target, expectedTarget); +}); + +// async job accepts one element from the array +// and a callback function +function asyncJob(item, cb) +{ + // different delays (in ms) per item + var delay = item * 25; + + // pretend different jobs take different time to finish + // and not in consequential order + var timeoutId = setTimeout(function() { + target.push(item); + cb(null, item * 2); + }, delay); + + // allow to cancel "leftover" jobs upon error + // return function, invoking of which will abort this job + return clearTimeout.bind(null, timeoutId); +} +``` + +More examples could be found in [test/test-parallel-array.js](test/test-parallel-array.js). + +#### Input Object + +Also it supports named jobs, listed via object. + +```javascript +var parallel = require('asynckit/parallel') + , assert = require('assert') + ; + +var source = { first: 1, one: 1, four: 4, sixteen: 16, sixtyFour: 64, thirtyTwo: 32, eight: 8, two: 2 } + , expectedResult = { first: 2, one: 2, four: 8, sixteen: 32, sixtyFour: 128, thirtyTwo: 64, eight: 16, two: 4 } + , expectedTarget = [ 1, 1, 2, 4, 8, 16, 32, 64 ] + , expectedKeys = [ 'first', 'one', 'two', 'four', 'eight', 'sixteen', 'thirtyTwo', 'sixtyFour' ] + , target = [] + , keys = [] + ; + +parallel(source, asyncJob, function(err, result) +{ + assert.deepEqual(result, expectedResult); + assert.deepEqual(target, expectedTarget); + assert.deepEqual(keys, expectedKeys); +}); + +// supports full value, key, callback (shortcut) interface +function asyncJob(item, key, cb) +{ + // different delays (in ms) per item + var delay = item * 25; + + // pretend different jobs take different time to finish + // and not in consequential order + var timeoutId = setTimeout(function() { + keys.push(key); + target.push(item); + cb(null, item * 2); + }, delay); + + // allow to cancel "leftover" jobs upon error + // return function, invoking of which will abort this job + return clearTimeout.bind(null, timeoutId); +} +``` + +More examples could be found in [test/test-parallel-object.js](test/test-parallel-object.js). + +### Serial Jobs + +Runs iterator over provided array sequentially. Stores output in the `result` array, +on the matching positions. In unlikely event of an error from one of the jobs, +will not proceed to the rest of the items in the list +and return error along with salvaged data to the main callback function. + +#### Input Array + +```javascript +var serial = require('asynckit/serial') + , assert = require('assert') + ; + +var source = [ 1, 1, 4, 16, 64, 32, 8, 2 ] + , expectedResult = [ 2, 2, 8, 32, 128, 64, 16, 4 ] + , expectedTarget = [ 0, 1, 2, 3, 4, 5, 6, 7 ] + , target = [] + ; + +serial(source, asyncJob, function(err, result) +{ + assert.deepEqual(result, expectedResult); + assert.deepEqual(target, expectedTarget); +}); + +// extended interface (item, key, callback) +// also supported for arrays +function asyncJob(item, key, cb) +{ + target.push(key); + + // it will be automatically made async + // even it iterator "returns" in the same event loop + cb(null, item * 2); +} +``` + +More examples could be found in [test/test-serial-array.js](test/test-serial-array.js). + +#### Input Object + +Also it supports named jobs, listed via object. + +```javascript +var serial = require('asynckit').serial + , assert = require('assert') + ; + +var source = [ 1, 1, 4, 16, 64, 32, 8, 2 ] + , expectedResult = [ 2, 2, 8, 32, 128, 64, 16, 4 ] + , expectedTarget = [ 0, 1, 2, 3, 4, 5, 6, 7 ] + , target = [] + ; + +var source = { first: 1, one: 1, four: 4, sixteen: 16, sixtyFour: 64, thirtyTwo: 32, eight: 8, two: 2 } + , expectedResult = { first: 2, one: 2, four: 8, sixteen: 32, sixtyFour: 128, thirtyTwo: 64, eight: 16, two: 4 } + , expectedTarget = [ 1, 1, 4, 16, 64, 32, 8, 2 ] + , target = [] + ; + + +serial(source, asyncJob, function(err, result) +{ + assert.deepEqual(result, expectedResult); + assert.deepEqual(target, expectedTarget); +}); + +// shortcut interface (item, callback) +// works for object as well as for the arrays +function asyncJob(item, cb) +{ + target.push(item); + + // it will be automatically made async + // even it iterator "returns" in the same event loop + cb(null, item * 2); +} +``` + +More examples could be found in [test/test-serial-object.js](test/test-serial-object.js). + +_Note: Since _object_ is an _unordered_ collection of properties, +it may produce unexpected results with sequential iterations. +Whenever order of the jobs' execution is important please use `serialOrdered` method._ + +### Ordered Serial Iterations + +TBD + +For example [compare-property](compare-property) package. + +### Streaming interface + +TBD + +## Want to Know More? + +More examples can be found in [test folder](test/). + +Or open an [issue](https://github.com/alexindigo/asynckit/issues) with questions and/or suggestions. + +## License + +AsyncKit is licensed under the MIT license. diff --git a/node_modules/asynckit/bench.js b/node_modules/asynckit/bench.js new file mode 100644 index 000000000..c612f1a55 --- /dev/null +++ b/node_modules/asynckit/bench.js @@ -0,0 +1,76 @@ +/* eslint no-console: "off" */ + +var asynckit = require('./') + , async = require('async') + , assert = require('assert') + , expected = 0 + ; + +var Benchmark = require('benchmark'); +var suite = new Benchmark.Suite; + +var source = []; +for (var z = 1; z < 100; z++) +{ + source.push(z); + expected += z; +} + +suite +// add tests + +.add('async.map', function(deferred) +{ + var total = 0; + + async.map(source, + function(i, cb) + { + setImmediate(function() + { + total += i; + cb(null, total); + }); + }, + function(err, result) + { + assert.ifError(err); + assert.equal(result[result.length - 1], expected); + deferred.resolve(); + }); +}, {'defer': true}) + + +.add('asynckit.parallel', function(deferred) +{ + var total = 0; + + asynckit.parallel(source, + function(i, cb) + { + setImmediate(function() + { + total += i; + cb(null, total); + }); + }, + function(err, result) + { + assert.ifError(err); + assert.equal(result[result.length - 1], expected); + deferred.resolve(); + }); +}, {'defer': true}) + + +// add listeners +.on('cycle', function(ev) +{ + console.log(String(ev.target)); +}) +.on('complete', function() +{ + console.log('Fastest is ' + this.filter('fastest').map('name')); +}) +// run async +.run({ 'async': true }); diff --git a/node_modules/asynckit/index.js b/node_modules/asynckit/index.js new file mode 100644 index 000000000..455f9454e --- /dev/null +++ b/node_modules/asynckit/index.js @@ -0,0 +1,6 @@ +module.exports = +{ + parallel : require('./parallel.js'), + serial : require('./serial.js'), + serialOrdered : require('./serialOrdered.js') +}; diff --git a/node_modules/asynckit/lib/abort.js b/node_modules/asynckit/lib/abort.js new file mode 100644 index 000000000..114367e5f --- /dev/null +++ b/node_modules/asynckit/lib/abort.js @@ -0,0 +1,29 @@ +// API +module.exports = abort; + +/** + * Aborts leftover active jobs + * + * @param {object} state - current state object + */ +function abort(state) +{ + Object.keys(state.jobs).forEach(clean.bind(state)); + + // reset leftover jobs + state.jobs = {}; +} + +/** + * Cleans up leftover job by invoking abort function for the provided job id + * + * @this state + * @param {string|number} key - job id to abort + */ +function clean(key) +{ + if (typeof this.jobs[key] == 'function') + { + this.jobs[key](); + } +} diff --git a/node_modules/asynckit/lib/async.js b/node_modules/asynckit/lib/async.js new file mode 100644 index 000000000..7f1288a4c --- /dev/null +++ b/node_modules/asynckit/lib/async.js @@ -0,0 +1,34 @@ +var defer = require('./defer.js'); + +// API +module.exports = async; + +/** + * Runs provided callback asynchronously + * even if callback itself is not + * + * @param {function} callback - callback to invoke + * @returns {function} - augmented callback + */ +function async(callback) +{ + var isAsync = false; + + // check if async happened + defer(function() { isAsync = true; }); + + return function async_callback(err, result) + { + if (isAsync) + { + callback(err, result); + } + else + { + defer(function nextTick_callback() + { + callback(err, result); + }); + } + }; +} diff --git a/node_modules/asynckit/lib/defer.js b/node_modules/asynckit/lib/defer.js new file mode 100644 index 000000000..b67110c7a --- /dev/null +++ b/node_modules/asynckit/lib/defer.js @@ -0,0 +1,26 @@ +module.exports = defer; + +/** + * Runs provided function on next iteration of the event loop + * + * @param {function} fn - function to run + */ +function defer(fn) +{ + var nextTick = typeof setImmediate == 'function' + ? setImmediate + : ( + typeof process == 'object' && typeof process.nextTick == 'function' + ? process.nextTick + : null + ); + + if (nextTick) + { + nextTick(fn); + } + else + { + setTimeout(fn, 0); + } +} diff --git a/node_modules/asynckit/lib/iterate.js b/node_modules/asynckit/lib/iterate.js new file mode 100644 index 000000000..5d2839a59 --- /dev/null +++ b/node_modules/asynckit/lib/iterate.js @@ -0,0 +1,75 @@ +var async = require('./async.js') + , abort = require('./abort.js') + ; + +// API +module.exports = iterate; + +/** + * Iterates over each job object + * + * @param {array|object} list - array or object (named list) to iterate over + * @param {function} iterator - iterator to run + * @param {object} state - current job status + * @param {function} callback - invoked when all elements processed + */ +function iterate(list, iterator, state, callback) +{ + // store current index + var key = state['keyedList'] ? state['keyedList'][state.index] : state.index; + + state.jobs[key] = runJob(iterator, key, list[key], function(error, output) + { + // don't repeat yourself + // skip secondary callbacks + if (!(key in state.jobs)) + { + return; + } + + // clean up jobs + delete state.jobs[key]; + + if (error) + { + // don't process rest of the results + // stop still active jobs + // and reset the list + abort(state); + } + else + { + state.results[key] = output; + } + + // return salvaged results + callback(error, state.results); + }); +} + +/** + * Runs iterator over provided job element + * + * @param {function} iterator - iterator to invoke + * @param {string|number} key - key/index of the element in the list of jobs + * @param {mixed} item - job description + * @param {function} callback - invoked after iterator is done with the job + * @returns {function|mixed} - job abort function or something else + */ +function runJob(iterator, key, item, callback) +{ + var aborter; + + // allow shortcut if iterator expects only two arguments + if (iterator.length == 2) + { + aborter = iterator(item, async(callback)); + } + // otherwise go with full three arguments + else + { + aborter = iterator(item, key, async(callback)); + } + + return aborter; +} diff --git a/node_modules/asynckit/lib/readable_asynckit.js b/node_modules/asynckit/lib/readable_asynckit.js new file mode 100644 index 000000000..78ad240f0 --- /dev/null +++ b/node_modules/asynckit/lib/readable_asynckit.js @@ -0,0 +1,91 @@ +var streamify = require('./streamify.js') + , defer = require('./defer.js') + ; + +// API +module.exports = ReadableAsyncKit; + +/** + * Base constructor for all streams + * used to hold properties/methods + */ +function ReadableAsyncKit() +{ + ReadableAsyncKit.super_.apply(this, arguments); + + // list of active jobs + this.jobs = {}; + + // add stream methods + this.destroy = destroy; + this._start = _start; + this._read = _read; +} + +/** + * Destroys readable stream, + * by aborting outstanding jobs + * + * @returns {void} + */ +function destroy() +{ + if (this.destroyed) + { + return; + } + + this.destroyed = true; + + if (typeof this.terminator == 'function') + { + this.terminator(); + } +} + +/** + * Starts provided jobs in async manner + * + * @private + */ +function _start() +{ + // first argument – runner function + var runner = arguments[0] + // take away first argument + , args = Array.prototype.slice.call(arguments, 1) + // second argument - input data + , input = args[0] + // last argument - result callback + , endCb = streamify.callback.call(this, args[args.length - 1]) + ; + + args[args.length - 1] = endCb; + // third argument - iterator + args[1] = streamify.iterator.call(this, args[1]); + + // allow time for proper setup + defer(function() + { + if (!this.destroyed) + { + this.terminator = runner.apply(null, args); + } + else + { + endCb(null, Array.isArray(input) ? [] : {}); + } + }.bind(this)); +} + + +/** + * Implement _read to comply with Readable streams + * Doesn't really make sense for flowing object mode + * + * @private + */ +function _read() +{ + +} diff --git a/node_modules/asynckit/lib/readable_parallel.js b/node_modules/asynckit/lib/readable_parallel.js new file mode 100644 index 000000000..5d2929f7a --- /dev/null +++ b/node_modules/asynckit/lib/readable_parallel.js @@ -0,0 +1,25 @@ +var parallel = require('../parallel.js'); + +// API +module.exports = ReadableParallel; + +/** + * Streaming wrapper to `asynckit.parallel` + * + * @param {array|object} list - array or object (named list) to iterate over + * @param {function} iterator - iterator to run + * @param {function} callback - invoked when all elements processed + * @returns {stream.Readable#} + */ +function ReadableParallel(list, iterator, callback) +{ + if (!(this instanceof ReadableParallel)) + { + return new ReadableParallel(list, iterator, callback); + } + + // turn on object mode + ReadableParallel.super_.call(this, {objectMode: true}); + + this._start(parallel, list, iterator, callback); +} diff --git a/node_modules/asynckit/lib/readable_serial.js b/node_modules/asynckit/lib/readable_serial.js new file mode 100644 index 000000000..782269820 --- /dev/null +++ b/node_modules/asynckit/lib/readable_serial.js @@ -0,0 +1,25 @@ +var serial = require('../serial.js'); + +// API +module.exports = ReadableSerial; + +/** + * Streaming wrapper to `asynckit.serial` + * + * @param {array|object} list - array or object (named list) to iterate over + * @param {function} iterator - iterator to run + * @param {function} callback - invoked when all elements processed + * @returns {stream.Readable#} + */ +function ReadableSerial(list, iterator, callback) +{ + if (!(this instanceof ReadableSerial)) + { + return new ReadableSerial(list, iterator, callback); + } + + // turn on object mode + ReadableSerial.super_.call(this, {objectMode: true}); + + this._start(serial, list, iterator, callback); +} diff --git a/node_modules/asynckit/lib/readable_serial_ordered.js b/node_modules/asynckit/lib/readable_serial_ordered.js new file mode 100644 index 000000000..3de89c472 --- /dev/null +++ b/node_modules/asynckit/lib/readable_serial_ordered.js @@ -0,0 +1,29 @@ +var serialOrdered = require('../serialOrdered.js'); + +// API +module.exports = ReadableSerialOrdered; +// expose sort helpers +module.exports.ascending = serialOrdered.ascending; +module.exports.descending = serialOrdered.descending; + +/** + * Streaming wrapper to `asynckit.serialOrdered` + * + * @param {array|object} list - array or object (named list) to iterate over + * @param {function} iterator - iterator to run + * @param {function} sortMethod - custom sort function + * @param {function} callback - invoked when all elements processed + * @returns {stream.Readable#} + */ +function ReadableSerialOrdered(list, iterator, sortMethod, callback) +{ + if (!(this instanceof ReadableSerialOrdered)) + { + return new ReadableSerialOrdered(list, iterator, sortMethod, callback); + } + + // turn on object mode + ReadableSerialOrdered.super_.call(this, {objectMode: true}); + + this._start(serialOrdered, list, iterator, sortMethod, callback); +} diff --git a/node_modules/asynckit/lib/state.js b/node_modules/asynckit/lib/state.js new file mode 100644 index 000000000..cbea7ad8f --- /dev/null +++ b/node_modules/asynckit/lib/state.js @@ -0,0 +1,37 @@ +// API +module.exports = state; + +/** + * Creates initial state object + * for iteration over list + * + * @param {array|object} list - list to iterate over + * @param {function|null} sortMethod - function to use for keys sort, + * or `null` to keep them as is + * @returns {object} - initial state object + */ +function state(list, sortMethod) +{ + var isNamedList = !Array.isArray(list) + , initState = + { + index : 0, + keyedList: isNamedList || sortMethod ? Object.keys(list) : null, + jobs : {}, + results : isNamedList ? {} : [], + size : isNamedList ? Object.keys(list).length : list.length + } + ; + + if (sortMethod) + { + // sort array keys based on it's values + // sort object's keys just on own merit + initState.keyedList.sort(isNamedList ? sortMethod : function(a, b) + { + return sortMethod(list[a], list[b]); + }); + } + + return initState; +} diff --git a/node_modules/asynckit/lib/streamify.js b/node_modules/asynckit/lib/streamify.js new file mode 100644 index 000000000..f56a1c92b --- /dev/null +++ b/node_modules/asynckit/lib/streamify.js @@ -0,0 +1,141 @@ +var async = require('./async.js'); + +// API +module.exports = { + iterator: wrapIterator, + callback: wrapCallback +}; + +/** + * Wraps iterators with long signature + * + * @this ReadableAsyncKit# + * @param {function} iterator - function to wrap + * @returns {function} - wrapped function + */ +function wrapIterator(iterator) +{ + var stream = this; + + return function(item, key, cb) + { + var aborter + , wrappedCb = async(wrapIteratorCallback.call(stream, cb, key)) + ; + + stream.jobs[key] = wrappedCb; + + // it's either shortcut (item, cb) + if (iterator.length == 2) + { + aborter = iterator(item, wrappedCb); + } + // or long format (item, key, cb) + else + { + aborter = iterator(item, key, wrappedCb); + } + + return aborter; + }; +} + +/** + * Wraps provided callback function + * allowing to execute snitch function before + * real callback + * + * @this ReadableAsyncKit# + * @param {function} callback - function to wrap + * @returns {function} - wrapped function + */ +function wrapCallback(callback) +{ + var stream = this; + + var wrapped = function(error, result) + { + return finisher.call(stream, error, result, callback); + }; + + return wrapped; +} + +/** + * Wraps provided iterator callback function + * makes sure snitch only called once, + * but passes secondary calls to the original callback + * + * @this ReadableAsyncKit# + * @param {function} callback - callback to wrap + * @param {number|string} key - iteration key + * @returns {function} wrapped callback + */ +function wrapIteratorCallback(callback, key) +{ + var stream = this; + + return function(error, output) + { + // don't repeat yourself + if (!(key in stream.jobs)) + { + callback(error, output); + return; + } + + // clean up jobs + delete stream.jobs[key]; + + return streamer.call(stream, error, {key: key, value: output}, callback); + }; +} + +/** + * Stream wrapper for iterator callback + * + * @this ReadableAsyncKit# + * @param {mixed} error - error response + * @param {mixed} output - iterator output + * @param {function} callback - callback that expects iterator results + */ +function streamer(error, output, callback) +{ + if (error && !this.error) + { + this.error = error; + this.pause(); + this.emit('error', error); + // send back value only, as expected + callback(error, output && output.value); + return; + } + + // stream stuff + this.push(output); + + // back to original track + // send back value only, as expected + callback(error, output && output.value); +} + +/** + * Stream wrapper for finishing callback + * + * @this ReadableAsyncKit# + * @param {mixed} error - error response + * @param {mixed} output - iterator output + * @param {function} callback - callback that expects final results + */ +function finisher(error, output, callback) +{ + // signal end of the stream + // only for successfully finished streams + if (!error) + { + this.push(null); + } + + // back to original track + callback(error, output); +} diff --git a/node_modules/asynckit/lib/terminator.js b/node_modules/asynckit/lib/terminator.js new file mode 100644 index 000000000..d6eb99219 --- /dev/null +++ b/node_modules/asynckit/lib/terminator.js @@ -0,0 +1,29 @@ +var abort = require('./abort.js') + , async = require('./async.js') + ; + +// API +module.exports = terminator; + +/** + * Terminates jobs in the attached state context + * + * @this AsyncKitState# + * @param {function} callback - final callback to invoke after termination + */ +function terminator(callback) +{ + if (!Object.keys(this.jobs).length) + { + return; + } + + // fast forward iteration index + this.index = this.size; + + // abort jobs + abort(this); + + // send back results we have so far + async(callback)(null, this.results); +} diff --git a/node_modules/asynckit/package.json b/node_modules/asynckit/package.json new file mode 100644 index 000000000..51147d656 --- /dev/null +++ b/node_modules/asynckit/package.json @@ -0,0 +1,63 @@ +{ + "name": "asynckit", + "version": "0.4.0", + "description": "Minimal async jobs utility library, with streams support", + "main": "index.js", + "scripts": { + "clean": "rimraf coverage", + "lint": "eslint *.js lib/*.js test/*.js", + "test": "istanbul cover --reporter=json tape -- 'test/test-*.js' | tap-spec", + "win-test": "tape test/test-*.js", + "browser": "browserify -t browserify-istanbul test/lib/browserify_adjustment.js test/test-*.js | obake --coverage | tap-spec", + "report": "istanbul report", + "size": "browserify index.js | size-table asynckit", + "debug": "tape test/test-*.js" + }, + "pre-commit": [ + "clean", + "lint", + "test", + "browser", + "report", + "size" + ], + "repository": { + "type": "git", + "url": "git+https://github.com/alexindigo/asynckit.git" + }, + "keywords": [ + "async", + "jobs", + "parallel", + "serial", + "iterator", + "array", + "object", + "stream", + "destroy", + "terminate", + "abort" + ], + "author": "Alex Indigo ", + "license": "MIT", + "bugs": { + "url": "https://github.com/alexindigo/asynckit/issues" + }, + "homepage": "https://github.com/alexindigo/asynckit#readme", + "devDependencies": { + "browserify": "^13.0.0", + "browserify-istanbul": "^2.0.0", + "coveralls": "^2.11.9", + "eslint": "^2.9.0", + "istanbul": "^0.4.3", + "obake": "^0.1.2", + "phantomjs-prebuilt": "^2.1.7", + "pre-commit": "^1.1.3", + "reamde": "^1.1.0", + "rimraf": "^2.5.2", + "size-table": "^0.2.0", + "tap-spec": "^4.1.1", + "tape": "^4.5.1" + }, + "dependencies": {} +} diff --git a/node_modules/asynckit/parallel.js b/node_modules/asynckit/parallel.js new file mode 100644 index 000000000..3c50344d8 --- /dev/null +++ b/node_modules/asynckit/parallel.js @@ -0,0 +1,43 @@ +var iterate = require('./lib/iterate.js') + , initState = require('./lib/state.js') + , terminator = require('./lib/terminator.js') + ; + +// Public API +module.exports = parallel; + +/** + * Runs iterator over provided array elements in parallel + * + * @param {array|object} list - array or object (named list) to iterate over + * @param {function} iterator - iterator to run + * @param {function} callback - invoked when all elements processed + * @returns {function} - jobs terminator + */ +function parallel(list, iterator, callback) +{ + var state = initState(list); + + while (state.index < (state['keyedList'] || list).length) + { + iterate(list, iterator, state, function(error, result) + { + if (error) + { + callback(error, result); + return; + } + + // looks like it's the last one + if (Object.keys(state.jobs).length === 0) + { + callback(null, state.results); + return; + } + }); + + state.index++; + } + + return terminator.bind(state, callback); +} diff --git a/node_modules/asynckit/serial.js b/node_modules/asynckit/serial.js new file mode 100644 index 000000000..6cd949a67 --- /dev/null +++ b/node_modules/asynckit/serial.js @@ -0,0 +1,17 @@ +var serialOrdered = require('./serialOrdered.js'); + +// Public API +module.exports = serial; + +/** + * Runs iterator over provided array elements in series + * + * @param {array|object} list - array or object (named list) to iterate over + * @param {function} iterator - iterator to run + * @param {function} callback - invoked when all elements processed + * @returns {function} - jobs terminator + */ +function serial(list, iterator, callback) +{ + return serialOrdered(list, iterator, null, callback); +} diff --git a/node_modules/asynckit/serialOrdered.js b/node_modules/asynckit/serialOrdered.js new file mode 100644 index 000000000..607eafea5 --- /dev/null +++ b/node_modules/asynckit/serialOrdered.js @@ -0,0 +1,75 @@ +var iterate = require('./lib/iterate.js') + , initState = require('./lib/state.js') + , terminator = require('./lib/terminator.js') + ; + +// Public API +module.exports = serialOrdered; +// sorting helpers +module.exports.ascending = ascending; +module.exports.descending = descending; + +/** + * Runs iterator over provided sorted array elements in series + * + * @param {array|object} list - array or object (named list) to iterate over + * @param {function} iterator - iterator to run + * @param {function} sortMethod - custom sort function + * @param {function} callback - invoked when all elements processed + * @returns {function} - jobs terminator + */ +function serialOrdered(list, iterator, sortMethod, callback) +{ + var state = initState(list, sortMethod); + + iterate(list, iterator, state, function iteratorHandler(error, result) + { + if (error) + { + callback(error, result); + return; + } + + state.index++; + + // are we there yet? + if (state.index < (state['keyedList'] || list).length) + { + iterate(list, iterator, state, iteratorHandler); + return; + } + + // done here + callback(null, state.results); + }); + + return terminator.bind(state, callback); +} + +/* + * -- Sort methods + */ + +/** + * sort helper to sort array elements in ascending order + * + * @param {mixed} a - an item to compare + * @param {mixed} b - an item to compare + * @returns {number} - comparison result + */ +function ascending(a, b) +{ + return a < b ? -1 : a > b ? 1 : 0; +} + +/** + * sort helper to sort array elements in descending order + * + * @param {mixed} a - an item to compare + * @param {mixed} b - an item to compare + * @returns {number} - comparison result + */ +function descending(a, b) +{ + return -1 * ascending(a, b); +} diff --git a/node_modules/asynckit/stream.js b/node_modules/asynckit/stream.js new file mode 100644 index 000000000..d43465f90 --- /dev/null +++ b/node_modules/asynckit/stream.js @@ -0,0 +1,21 @@ +var inherits = require('util').inherits + , Readable = require('stream').Readable + , ReadableAsyncKit = require('./lib/readable_asynckit.js') + , ReadableParallel = require('./lib/readable_parallel.js') + , ReadableSerial = require('./lib/readable_serial.js') + , ReadableSerialOrdered = require('./lib/readable_serial_ordered.js') + ; + +// API +module.exports = +{ + parallel : ReadableParallel, + serial : ReadableSerial, + serialOrdered : ReadableSerialOrdered, +}; + +inherits(ReadableAsyncKit, Readable); + +inherits(ReadableParallel, ReadableAsyncKit); +inherits(ReadableSerial, ReadableAsyncKit); +inherits(ReadableSerialOrdered, ReadableAsyncKit); diff --git a/node_modules/axios/CHANGELOG.md b/node_modules/axios/CHANGELOG.md new file mode 100644 index 000000000..5ceb719a5 --- /dev/null +++ b/node_modules/axios/CHANGELOG.md @@ -0,0 +1,181 @@ +# Changelog + +## [1.0.0] - 2022-10-04 + +### Added + +- Added stack trace to AxiosError [#4624](https://github.com/axios/axios/pull/4624) +- Add AxiosError to AxiosStatic [#4654](https://github.com/axios/axios/pull/4654) +- Replaced Rollup as our build runner [#4596](https://github.com/axios/axios/pull/4596) +- Added generic TS types for the exposed toFormData helper [#4668](https://github.com/axios/axios/pull/4668) +- Added listen callback function [#4096](https://github.com/axios/axios/pull/4096) +- Added instructions for installing using PNPM [#4207](https://github.com/axios/axios/pull/4207) +- Added generic AxiosAbortSignal TS interface to avoid importing AbortController polyfill [#4229](https://github.com/axios/axios/pull/4229) +- Added axios-url-template in ECOSYSTEM.md [#4238](https://github.com/axios/axios/pull/4238) +- Added a clear() function to the request and response interceptors object so a user can ensure that all interceptors have been removed from an axios instance [#4248](https://github.com/axios/axios/pull/4248) +- Added react hook plugin [#4319](https://github.com/axios/axios/pull/4319) +- Adding HTTP status code for transformResponse [#4580](https://github.com/axios/axios/pull/4580) +- Added blob to the list of protocols supported by the browser [#4678](https://github.com/axios/axios/pull/4678) +- Resolving proxy from env on redirect [#4436](https://github.com/axios/axios/pull/4436) +- Added enhanced toFormData implementation with additional options [4704](https://github.com/axios/axios/pull/4704) +- Adding Canceler parameters config and request [#4711](https://github.com/axios/axios/pull/4711) +- Added automatic payload serialization to application/x-www-form-urlencoded [#4714](https://github.com/axios/axios/pull/4714) +- Added the ability for webpack users to overwrite built-ins [#4715](https://github.com/axios/axios/pull/4715) +- Added string[] to AxiosRequestHeaders type [#4322](https://github.com/axios/axios/pull/4322) +- Added the ability for the url-encoded-form serializer to respect the formSerializer config [#4721](https://github.com/axios/axios/pull/4721) +- Added isCancel type assert [#4293](https://github.com/axios/axios/pull/4293) +- Added data URL support for node.js [#4725](https://github.com/axios/axios/pull/4725) +- Adding types for progress event callbacks [#4675](https://github.com/axios/axios/pull/4675) +- URL params serializer [#4734](https://github.com/axios/axios/pull/4734) +- Added axios.formToJSON method [#4735](https://github.com/axios/axios/pull/4735) +- Bower platform add data protocol [#4804](https://github.com/axios/axios/pull/4804) +- Use WHATWG URL API instead of url.parse() [#4852](https://github.com/axios/axios/pull/4852) +- Add ENUM containing Http Status Codes to typings [#4903](https://github.com/axios/axios/pull/4903) +- Improve typing of timeout in index.d.ts [#4934](https://github.com/axios/axios/pull/4934) + +### Changed + +- Updated AxiosError.config to be optional in the type definition [#4665](https://github.com/axios/axios/pull/4665) +- Updated README emphasizing the URLSearchParam built-in interface over other solutions [#4590](https://github.com/axios/axios/pull/4590) +- Include request and config when creating a CanceledError instance [#4659](https://github.com/axios/axios/pull/4659) +- Changed func-names eslint rule to as-needed [#4492](https://github.com/axios/axios/pull/4492) +- Replacing deprecated substr() with slice() as substr() is deprecated [#4468](https://github.com/axios/axios/pull/4468) +- Updating HTTP links in README.md to use HTTPS [#4387](https://github.com/axios/axios/pull/4387) +- Updated to a better trim() polyfill [#4072](https://github.com/axios/axios/pull/4072) +- Updated types to allow specifying partial default headers on instance create [#4185](https://github.com/axios/axios/pull/4185) +- Expanded isAxiosError types [#4344](https://github.com/axios/axios/pull/4344) +- Updated type definition for axios instance methods [#4224](https://github.com/axios/axios/pull/4224) +- Updated eslint config [#4722](https://github.com/axios/axios/pull/4722) +- Updated Docs [#4742](https://github.com/axios/axios/pull/4742) +- Refactored Axios to use ES2017 [#4787](https://github.com/axios/axios/pull/4787) + + +### Deprecated +- There are multiple deprecations, refactors and fixes provided in this release. Please read through the full release notes to see how this may impact your project and use case. + +### Removed + +- Removed incorrect argument for NetworkError constructor [#4656](https://github.com/axios/axios/pull/4656) +- Removed Webpack [#4596](https://github.com/axios/axios/pull/4596) +- Removed function that transform arguments to array [#4544](https://github.com/axios/axios/pull/4544) + +### Fixed + +- Fixed grammar in README [#4649](https://github.com/axios/axios/pull/4649) +- Fixed code error in README [#4599](https://github.com/axios/axios/pull/4599) +- Optimized the code that checks cancellation [#4587](https://github.com/axios/axios/pull/4587) +- Fix url pointing to defaults.js in README [#4532](https://github.com/axios/axios/pull/4532) +- Use type alias instead of interface for AxiosPromise [#4505](https://github.com/axios/axios/pull/4505) +- Fix some word spelling and lint style in code comments [#4500](https://github.com/axios/axios/pull/4500) +- Edited readme with 3 updated browser icons of Chrome, FireFox and Safari [#4414](https://github.com/axios/axios/pull/4414) +- Bump follow-redirects from 1.14.9 to 1.15.0 [#4673](https://github.com/axios/axios/pull/4673) +- Fixing http tests to avoid hanging when assertions fail [#4435](https://github.com/axios/axios/pull/4435) +- Fix TS definition for AxiosRequestTransformer [#4201](https://github.com/axios/axios/pull/4201) +- Fix grammatical issues in README [#4232](https://github.com/axios/axios/pull/4232) +- Fixing instance.defaults.headers type [#4557](https://github.com/axios/axios/pull/4557) +- Fixed race condition on immediate requests cancellation [#4261](https://github.com/axios/axios/pull/4261) +- Fixing Z_BUF_ERROR when no content [#4701](https://github.com/axios/axios/pull/4701) +- Fixing proxy beforeRedirect regression [#4708](https://github.com/axios/axios/pull/4708) +- Fixed AxiosError status code type [#4717](https://github.com/axios/axios/pull/4717) +- Fixed AxiosError stack capturing [#4718](https://github.com/axios/axios/pull/4718) +- Fixing AxiosRequestHeaders typings [#4334](https://github.com/axios/axios/pull/4334) +- Fixed max body length defaults [#4731](https://github.com/axios/axios/pull/4731) +- Fixed toFormData Blob issue on node>v17 [#4728](https://github.com/axios/axios/pull/4728) +- Bump grunt from 1.5.2 to 1.5.3 [#4743](https://github.com/axios/axios/pull/4743) +- Fixing content-type header repeated [#4745](https://github.com/axios/axios/pull/4745) +- Fixed timeout error message for http [4738](https://github.com/axios/axios/pull/4738) +- Request ignores false, 0 and empty string as body values [#4785](https://github.com/axios/axios/pull/4785) +- Added back missing minified builds [#4805](https://github.com/axios/axios/pull/4805) +- Fixed a type error [#4815](https://github.com/axios/axios/pull/4815) +- Fixed a regression bug with unsubscribing from cancel token; [#4819](https://github.com/axios/axios/pull/4819) +- Remove repeated compression algorithm [#4820](https://github.com/axios/axios/pull/4820) +- The error of calling extend to pass parameters [#4857](https://github.com/axios/axios/pull/4857) +- SerializerOptions.indexes allows boolean | null | undefined [#4862](https://github.com/axios/axios/pull/4862) +- Require interceptors to return values [#4874](https://github.com/axios/axios/pull/4874) +- Removed unused imports [#4949](https://github.com/axios/axios/pull/4949) +- Allow null indexes on formSerializer and paramsSerializer [#4960](https://github.com/axios/axios/pull/4960) + +### Chores +- Set permissions for GitHub actions [#4765](https://github.com/axios/axios/pull/4765) +- Included githubactions in the dependabot config [#4770](https://github.com/axios/axios/pull/4770) +- Included dependency review [#4771](https://github.com/axios/axios/pull/4771) +- Update security.md [#4784](https://github.com/axios/axios/pull/4784) +- Remove unnecessary spaces [#4854](https://github.com/axios/axios/pull/4854) +- Simplify the import path of AxiosError [#4875](https://github.com/axios/axios/pull/4875) +- Fix Gitpod dead link [#4941](https://github.com/axios/axios/pull/4941) +- Enable syntax highlighting for a code block [#4970](https://github.com/axios/axios/pull/4970) +- Using Logo Axios in Readme.md [#4993](https://github.com/axios/axios/pull/4993) +- Fix markup for note in README [#4825](https://github.com/axios/axios/pull/4825) +- Fix typo and formatting, add colons [#4853](https://github.com/axios/axios/pull/4853) +- Fix typo in readme [#4942](https://github.com/axios/axios/pull/4942) + +### Security + +- Update SECURITY.md [#4687](https://github.com/axios/axios/pull/4687) + +### Contributors to this release + +- [Bertrand Marron](https://github.com/tusbar) +- [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS) +- [Dan Mooney](https://github.com/danmooney) +- [Michael Li](https://github.com/xiaoyu-tamu) +- [aong](https://github.com/yxwzaxns) +- [Des Preston](https://github.com/despreston) +- [Ted Robertson](https://github.com/tredondo) +- [zhoulixiang](https://github.com/zh-lx) +- [Arthur Fiorette](https://github.com/arthurfiorette) +- [Kumar Shanu](https://github.com/Kr-Shanu) +- [JALAL](https://github.com/JLL32) +- [Jingyi Lin](https://github.com/MageeLin) +- [Philipp Loose](https://github.com/phloose) +- [Alexander Shchukin](https://github.com/sashsvamir) +- [Dave Cardwell](https://github.com/davecardwell) +- [Cat Scarlet](https://github.com/catscarlet) +- [Luca Pizzini](https://github.com/lpizzinidev) +- [Kai](https://github.com/Schweinepriester) +- [Maxime Bargiel](https://github.com/mbargiel) +- [Brian Helba](https://github.com/brianhelba) +- [reslear](https://github.com/reslear) +- [Jamie Slome](https://github.com/JamieSlome) +- [Landro3](https://github.com/Landro3) +- [rafw87](https://github.com/rafw87) +- [Afzal Sayed](https://github.com/afzalsayed96) +- [Koki Oyatsu](https://github.com/kaishuu0123) +- [Dave](https://github.com/wangcch) +- [暴走老七](https://github.com/baozouai) +- [Spencer](https://github.com/spalger) +- [Adrian Wieprzkowicz](https://github.com/Argeento) +- [Jamie Telin](https://github.com/lejahmie) +- [毛呆](https://github.com/aweikalee) +- [Kirill Shakirov](https://github.com/turisap) +- [Rraji Abdelbari](https://github.com/estarossa0) +- [Jelle Schutter](https://github.com/jelleschutter) +- [Tom Ceuppens](https://github.com/KyorCode) +- [Johann Cooper](https://github.com/JohannCooper) +- [Dimitris Halatsis](https://github.com/mitsos1os) +- [chenjigeng](https://github.com/chenjigeng) +- [João Gabriel Quaresma](https://github.com/joaoGabriel55) +- [Victor Augusto](https://github.com/VictorAugDB) +- [neilnaveen](https://github.com/neilnaveen) +- [Pavlos](https://github.com/psmoros) +- [Kiryl Valkovich](https://github.com/visortelle) +- [Naveen](https://github.com/naveensrinivasan) +- [wenzheng](https://github.com/0x30) +- [hcwhan](https://github.com/hcwhan) +- [Bassel Rachid](https://github.com/basselworkforce) +- [Grégoire Pineau](https://github.com/lyrixx) +- [felipedamin](https://github.com/felipedamin) +- [Karl Horky](https://github.com/karlhorky) +- [Yue JIN](https://github.com/kingyue737) +- [Usman Ali Siddiqui](https://github.com/usman250994) +- [WD](https://github.com/techbirds) +- [Günther Foidl](https://github.com/gfoidl) +- [Stephen Jennings](https://github.com/jennings) +- [C.T.Lin](https://github.com/chentsulin) +- [mia-z](https://github.com/mia-z) +- [Parth Banathia](https://github.com/Parth0105) +- [parth0105pluang](https://github.com/parth0105pluang) +- [Marco Weber](https://github.com/mrcwbr) +- [Luca Pizzini](https://github.com/lpizzinidev) +- [Willian Agostini](https://github.com/WillianAgostini) +- [Huyen Nguyen](https://github.com/huyenltnguyen) diff --git a/node_modules/axios/LICENSE b/node_modules/axios/LICENSE new file mode 100644 index 000000000..05006a51e --- /dev/null +++ b/node_modules/axios/LICENSE @@ -0,0 +1,7 @@ +# Copyright (c) 2014-present Matt Zabriskie & Collaborators + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/node_modules/axios/README.md b/node_modules/axios/README.md new file mode 100644 index 000000000..63a734f25 --- /dev/null +++ b/node_modules/axios/README.md @@ -0,0 +1,1190 @@ +

    + +
    +
    +

    + +

    Promise based HTTP client for the browser and node.js

    + +

    + Website • + Documentation +

    + +
    + +[![npm version](https://img.shields.io/npm/v/axios.svg?style=flat-square)](https://www.npmjs.org/package/axios) +[![CDNJS](https://img.shields.io/cdnjs/v/axios.svg?style=flat-square)](https://cdnjs.com/libraries/axios) +![Build status](https://github.com/axios/axios/actions/workflows/ci.yml/badge.svg) +[![Gitpod Ready-to-Code](https://img.shields.io/badge/Gitpod-Ready--to--Code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/axios/axios) +[![code coverage](https://img.shields.io/coveralls/mzabriskie/axios.svg?style=flat-square)](https://coveralls.io/r/mzabriskie/axios) +[![install size](https://packagephobia.now.sh/badge?p=axios)](https://packagephobia.now.sh/result?p=axios) +[![npm downloads](https://img.shields.io/npm/dm/axios.svg?style=flat-square)](https://npm-stat.com/charts.html?package=axios) +[![gitter chat](https://img.shields.io/gitter/room/mzabriskie/axios.svg?style=flat-square)](https://gitter.im/mzabriskie/axios) +[![code helpers](https://www.codetriage.com/axios/axios/badges/users.svg)](https://www.codetriage.com/axios/axios) +[![Known Vulnerabilities](https://snyk.io/test/npm/axios/badge.svg)](https://snyk.io/test/npm/axios) +![npm bundle size](https://img.shields.io/bundlephobia/minzip/axios) + +
    + +## Table of Contents + + - [Features](#features) + - [Browser Support](#browser-support) + - [Installing](#installing) + - [Example](#example) + - [Axios API](#axios-api) + - [Request method aliases](#request-method-aliases) + - [Concurrency 👎](#concurrency-deprecated) + - [Creating an instance](#creating-an-instance) + - [Instance methods](#instance-methods) + - [Request Config](#request-config) + - [Response Schema](#response-schema) + - [Config Defaults](#config-defaults) + - [Global axios defaults](#global-axios-defaults) + - [Custom instance defaults](#custom-instance-defaults) + - [Config order of precedence](#config-order-of-precedence) + - [Interceptors](#interceptors) + - [Multiple Interceptors](#multiple-interceptors) + - [Handling Errors](#handling-errors) + - [Cancellation](#cancellation) + - [AbortController](#abortcontroller) + - [CancelToken 👎](#canceltoken-deprecated) + - [Using application/x-www-form-urlencoded format](#using-applicationx-www-form-urlencoded-format) + - [URLSearchParams](#urlsearchparams) + - [Query string](#query-string-older-browsers) + - [🆕 Automatic serialization](#-automatic-serialization-to-urlsearchparams) + - [Using multipart/form-data format](#using-multipartform-data-format) + - [FormData](#formdata) + - [🆕 Automatic serialization](#-automatic-serialization-to-formdata) + - [Files Posting](#files-posting) + - [HTML Form Posting](#-html-form-posting-browser) + - [Semver](#semver) + - [Promises](#promises) + - [TypeScript](#typescript) + - [Resources](#resources) + - [Credits](#credits) + - [License](#license) + +## Features + +- Make [XMLHttpRequests](https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest) from the browser +- Make [http](https://nodejs.org/api/http.html) requests from node.js +- Supports the [Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise) API +- Intercept request and response +- Transform request and response data +- Cancel requests +- Automatic transforms for JSON data +- 🆕 Automatic data object serialization to `multipart/form-data` and `x-www-form-urlencoded` body encodings +- Client side support for protecting against [XSRF](https://en.wikipedia.org/wiki/Cross-site_request_forgery) + +## Browser Support + +![Chrome](https://raw.githubusercontent.com/alrra/browser-logos/main/src/chrome/chrome_48x48.png) | ![Firefox](https://raw.githubusercontent.com/alrra/browser-logos/main/src/firefox/firefox_48x48.png) | ![Safari](https://raw.githubusercontent.com/alrra/browser-logos/main/src/safari/safari_48x48.png) | ![Opera](https://raw.githubusercontent.com/alrra/browser-logos/main/src/opera/opera_48x48.png) | ![Edge](https://raw.githubusercontent.com/alrra/browser-logos/main/src/edge/edge_48x48.png) | ![IE](https://raw.githubusercontent.com/alrra/browser-logos/master/src/archive/internet-explorer_9-11/internet-explorer_9-11_48x48.png) | +--- | --- | --- | --- | --- | --- | +Latest ✔ | Latest ✔ | Latest ✔ | Latest ✔ | Latest ✔ | 11 ✔ | + +[![Browser Matrix](https://saucelabs.com/open_sauce/build_matrix/axios.svg)](https://saucelabs.com/u/axios) + +## Installing + +Using npm: + +```bash +$ npm install axios +``` + +Using bower: + +```bash +$ bower install axios +``` + +Using yarn: + +```bash +$ yarn add axios +``` + +Using pnpm: + +```bash +$ pnpm add axios +``` + +Using jsDelivr CDN: + +```html + +``` + +Using unpkg CDN: + +```html + +``` + +## Example + +### note: CommonJS usage +In order to gain the TypeScript typings (for intellisense / autocomplete) while using CommonJS imports with `require()` use the following approach: + +```js +const axios = require('axios').default; + +// axios. will now provide autocomplete and parameter typings +``` + +Performing a `GET` request + +```js +const axios = require('axios').default; + +// Make a request for a user with a given ID +axios.get('/user?ID=12345') + .then(function (response) { + // handle success + console.log(response); + }) + .catch(function (error) { + // handle error + console.log(error); + }) + .finally(function () { + // always executed + }); + +// Optionally the request above could also be done as +axios.get('/user', { + params: { + ID: 12345 + } + }) + .then(function (response) { + console.log(response); + }) + .catch(function (error) { + console.log(error); + }) + .finally(function () { + // always executed + }); + +// Want to use async/await? Add the `async` keyword to your outer function/method. +async function getUser() { + try { + const response = await axios.get('/user?ID=12345'); + console.log(response); + } catch (error) { + console.error(error); + } +} +``` + +> **Note** `async/await` is part of ECMAScript 2017 and is not supported in Internet +> Explorer and older browsers, so use with caution. + +Performing a `POST` request + +```js +axios.post('/user', { + firstName: 'Fred', + lastName: 'Flintstone' + }) + .then(function (response) { + console.log(response); + }) + .catch(function (error) { + console.log(error); + }); +``` + +Performing multiple concurrent requests + +```js +function getUserAccount() { + return axios.get('/user/12345'); +} + +function getUserPermissions() { + return axios.get('/user/12345/permissions'); +} + +Promise.all([getUserAccount(), getUserPermissions()]) + .then(function (results) { + const acct = results[0]; + const perm = results[1]; + }); +``` + +## axios API + +Requests can be made by passing the relevant config to `axios`. + +##### axios(config) + +```js +// Send a POST request +axios({ + method: 'post', + url: '/user/12345', + data: { + firstName: 'Fred', + lastName: 'Flintstone' + } +}); +``` + +```js +// GET request for remote image in node.js +axios({ + method: 'get', + url: 'https://bit.ly/2mTM3nY', + responseType: 'stream' +}) + .then(function (response) { + response.data.pipe(fs.createWriteStream('ada_lovelace.jpg')) + }); +``` + +##### axios(url[, config]) + +```js +// Send a GET request (default method) +axios('/user/12345'); +``` + +### Request method aliases + +For convenience, aliases have been provided for all common request methods. + +##### axios.request(config) +##### axios.get(url[, config]) +##### axios.delete(url[, config]) +##### axios.head(url[, config]) +##### axios.options(url[, config]) +##### axios.post(url[, data[, config]]) +##### axios.put(url[, data[, config]]) +##### axios.patch(url[, data[, config]]) + +###### NOTE +When using the alias methods `url`, `method`, and `data` properties don't need to be specified in config. + +### Concurrency (Deprecated) +Please use `Promise.all` to replace the below functions. + +Helper functions for dealing with concurrent requests. + +axios.all(iterable) +axios.spread(callback) + +### Creating an instance + +You can create a new instance of axios with a custom config. + +##### axios.create([config]) + +```js +const instance = axios.create({ + baseURL: 'https://some-domain.com/api/', + timeout: 1000, + headers: {'X-Custom-Header': 'foobar'} +}); +``` + +### Instance methods + +The available instance methods are listed below. The specified config will be merged with the instance config. + +##### axios#request(config) +##### axios#get(url[, config]) +##### axios#delete(url[, config]) +##### axios#head(url[, config]) +##### axios#options(url[, config]) +##### axios#post(url[, data[, config]]) +##### axios#put(url[, data[, config]]) +##### axios#patch(url[, data[, config]]) +##### axios#getUri([config]) + +## Request Config + +These are the available config options for making requests. Only the `url` is required. Requests will default to `GET` if `method` is not specified. + +```js +{ + // `url` is the server URL that will be used for the request + url: '/user', + + // `method` is the request method to be used when making the request + method: 'get', // default + + // `baseURL` will be prepended to `url` unless `url` is absolute. + // It can be convenient to set `baseURL` for an instance of axios to pass relative URLs + // to methods of that instance. + baseURL: 'https://some-domain.com/api/', + + // `transformRequest` allows changes to the request data before it is sent to the server + // This is only applicable for request methods 'PUT', 'POST', 'PATCH' and 'DELETE' + // The last function in the array must return a string or an instance of Buffer, ArrayBuffer, + // FormData or Stream + // You may modify the headers object. + transformRequest: [function (data, headers) { + // Do whatever you want to transform the data + + return data; + }], + + // `transformResponse` allows changes to the response data to be made before + // it is passed to then/catch + transformResponse: [function (data) { + // Do whatever you want to transform the data + + return data; + }], + + // `headers` are custom headers to be sent + headers: {'X-Requested-With': 'XMLHttpRequest'}, + + // `params` are the URL parameters to be sent with the request + // Must be a plain object or a URLSearchParams object + params: { + ID: 12345 + }, + + // `paramsSerializer` is an optional config in charge of serializing `params` + paramsSerializer: { + indexes: null // array indexes format (null - no brackets, false - empty brackets, true - brackets with indexes) + }, + + // `data` is the data to be sent as the request body + // Only applicable for request methods 'PUT', 'POST', 'DELETE , and 'PATCH' + // When no `transformRequest` is set, must be of one of the following types: + // - string, plain object, ArrayBuffer, ArrayBufferView, URLSearchParams + // - Browser only: FormData, File, Blob + // - Node only: Stream, Buffer + data: { + firstName: 'Fred' + }, + + // syntax alternative to send data into the body + // method post + // only the value is sent, not the key + data: 'Country=Brasil&City=Belo Horizonte', + + // `timeout` specifies the number of milliseconds before the request times out. + // If the request takes longer than `timeout`, the request will be aborted. + timeout: 1000, // default is `0` (no timeout) + + // `withCredentials` indicates whether or not cross-site Access-Control requests + // should be made using credentials + withCredentials: false, // default + + // `adapter` allows custom handling of requests which makes testing easier. + // Return a promise and supply a valid response (see lib/adapters/README.md). + adapter: function (config) { + /* ... */ + }, + + // `auth` indicates that HTTP Basic auth should be used, and supplies credentials. + // This will set an `Authorization` header, overwriting any existing + // `Authorization` custom headers you have set using `headers`. + // Please note that only HTTP Basic auth is configurable through this parameter. + // For Bearer tokens and such, use `Authorization` custom headers instead. + auth: { + username: 'janedoe', + password: 's00pers3cret' + }, + + // `responseType` indicates the type of data that the server will respond with + // options are: 'arraybuffer', 'document', 'json', 'text', 'stream' + // browser only: 'blob' + responseType: 'json', // default + + // `responseEncoding` indicates encoding to use for decoding responses (Node.js only) + // Note: Ignored for `responseType` of 'stream' or client-side requests + responseEncoding: 'utf8', // default + + // `xsrfCookieName` is the name of the cookie to use as a value for xsrf token + xsrfCookieName: 'XSRF-TOKEN', // default + + // `xsrfHeaderName` is the name of the http header that carries the xsrf token value + xsrfHeaderName: 'X-XSRF-TOKEN', // default + + // `onUploadProgress` allows handling of progress events for uploads + // browser only + onUploadProgress: function (progressEvent) { + // Do whatever you want with the native progress event + }, + + // `onDownloadProgress` allows handling of progress events for downloads + // browser only + onDownloadProgress: function (progressEvent) { + // Do whatever you want with the native progress event + }, + + // `maxContentLength` defines the max size of the http response content in bytes allowed in node.js + maxContentLength: 2000, + + // `maxBodyLength` (Node only option) defines the max size of the http request content in bytes allowed + maxBodyLength: 2000, + + // `validateStatus` defines whether to resolve or reject the promise for a given + // HTTP response status code. If `validateStatus` returns `true` (or is set to `null` + // or `undefined`), the promise will be resolved; otherwise, the promise will be + // rejected. + validateStatus: function (status) { + return status >= 200 && status < 300; // default + }, + + // `maxRedirects` defines the maximum number of redirects to follow in node.js. + // If set to 0, no redirects will be followed. + maxRedirects: 21, // default + + // `beforeRedirect` defines a function that will be called before redirect. + // Use this to adjust the request options upon redirecting, + // to inspect the latest response headers, + // or to cancel the request by throwing an error + // If maxRedirects is set to 0, `beforeRedirect` is not used. + beforeRedirect: (options, { headers }) => { + if (options.hostname === "example.com") { + options.auth = "user:password"; + } + }, + + // `socketPath` defines a UNIX Socket to be used in node.js. + // e.g. '/var/run/docker.sock' to send requests to the docker daemon. + // Only either `socketPath` or `proxy` can be specified. + // If both are specified, `socketPath` is used. + socketPath: null, // default + + // `httpAgent` and `httpsAgent` define a custom agent to be used when performing http + // and https requests, respectively, in node.js. This allows options to be added like + // `keepAlive` that are not enabled by default. + httpAgent: new http.Agent({ keepAlive: true }), + httpsAgent: new https.Agent({ keepAlive: true }), + + // `proxy` defines the hostname, port, and protocol of the proxy server. + // You can also define your proxy using the conventional `http_proxy` and + // `https_proxy` environment variables. If you are using environment variables + // for your proxy configuration, you can also define a `no_proxy` environment + // variable as a comma-separated list of domains that should not be proxied. + // Use `false` to disable proxies, ignoring environment variables. + // `auth` indicates that HTTP Basic auth should be used to connect to the proxy, and + // supplies credentials. + // This will set an `Proxy-Authorization` header, overwriting any existing + // `Proxy-Authorization` custom headers you have set using `headers`. + // If the proxy server uses HTTPS, then you must set the protocol to `https`. + proxy: { + protocol: 'https', + host: '127.0.0.1', + port: 9000, + auth: { + username: 'mikeymike', + password: 'rapunz3l' + } + }, + + // `cancelToken` specifies a cancel token that can be used to cancel the request + // (see Cancellation section below for details) + cancelToken: new CancelToken(function (cancel) { + }), + + // an alternative way to cancel Axios requests using AbortController + signal: new AbortController().signal, + + // `decompress` indicates whether or not the response body should be decompressed + // automatically. If set to `true` will also remove the 'content-encoding' header + // from the responses objects of all decompressed responses + // - Node only (XHR cannot turn off decompression) + decompress: true // default + + // `insecureHTTPParser` boolean. + // Indicates where to use an insecure HTTP parser that accepts invalid HTTP headers. + // This may allow interoperability with non-conformant HTTP implementations. + // Using the insecure parser should be avoided. + // see options https://nodejs.org/dist/latest-v12.x/docs/api/http.html#http_http_request_url_options_callback + // see also https://nodejs.org/en/blog/vulnerability/february-2020-security-releases/#strict-http-header-parsing-none + insecureHTTPParser: undefined // default + + // transitional options for backward compatibility that may be removed in the newer versions + transitional: { + // silent JSON parsing mode + // `true` - ignore JSON parsing errors and set response.data to null if parsing failed (old behaviour) + // `false` - throw SyntaxError if JSON parsing failed (Note: responseType must be set to 'json') + silentJSONParsing: true, // default value for the current Axios version + + // try to parse the response string as JSON even if `responseType` is not 'json' + forcedJSONParsing: true, + + // throw ETIMEDOUT error instead of generic ECONNABORTED on request timeouts + clarifyTimeoutError: false, + }, + + env: { + // The FormData class to be used to automatically serialize the payload into a FormData object + FormData: window?.FormData || global?.FormData + }, + + formSerializer: { + visitor: (value, key, path, helpers) => {}; // custom visitor funaction to serrialize form values + dots: boolean; // use dots instead of brackets format + metaTokens: boolean; // keep special endings like {} in parameter key + indexes: boolean; // array indexes format null - no brackets, false - empty brackets, true - brackets with indexes + } +} +``` + +## Response Schema + +The response for a request contains the following information. + +```js +{ + // `data` is the response that was provided by the server + data: {}, + + // `status` is the HTTP status code from the server response + status: 200, + + // `statusText` is the HTTP status message from the server response + statusText: 'OK', + + // `headers` the HTTP headers that the server responded with + // All header names are lowercase and can be accessed using the bracket notation. + // Example: `response.headers['content-type']` + headers: {}, + + // `config` is the config that was provided to `axios` for the request + config: {}, + + // `request` is the request that generated this response + // It is the last ClientRequest instance in node.js (in redirects) + // and an XMLHttpRequest instance in the browser + request: {} +} +``` + +When using `then`, you will receive the response as follows: + +```js +axios.get('/user/12345') + .then(function (response) { + console.log(response.data); + console.log(response.status); + console.log(response.statusText); + console.log(response.headers); + console.log(response.config); + }); +``` + +When using `catch`, or passing a [rejection callback](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise/then) as second parameter of `then`, the response will be available through the `error` object as explained in the [Handling Errors](#handling-errors) section. + +## Config Defaults + +You can specify config defaults that will be applied to every request. + +### Global axios defaults + +```js +axios.defaults.baseURL = 'https://api.example.com'; + +// Important: If axios is used with multiple domains, the AUTH_TOKEN will be sent to all of them. +// See below for an example using Custom instance defaults instead. +axios.defaults.headers.common['Authorization'] = AUTH_TOKEN; + +axios.defaults.headers.post['Content-Type'] = 'application/x-www-form-urlencoded'; +``` + +### Custom instance defaults + +```js +// Set config defaults when creating the instance +const instance = axios.create({ + baseURL: 'https://api.example.com' +}); + +// Alter defaults after instance has been created +instance.defaults.headers.common['Authorization'] = AUTH_TOKEN; +``` + +### Config order of precedence + +Config will be merged with an order of precedence. The order is library defaults found in [lib/defaults.js](https://github.com/axios/axios/blob/master/lib/defaults/index.js#L28), then `defaults` property of the instance, and finally `config` argument for the request. The latter will take precedence over the former. Here's an example. + +```js +// Create an instance using the config defaults provided by the library +// At this point the timeout config value is `0` as is the default for the library +const instance = axios.create(); + +// Override timeout default for the library +// Now all requests using this instance will wait 2.5 seconds before timing out +instance.defaults.timeout = 2500; + +// Override timeout for this request as it's known to take a long time +instance.get('/longRequest', { + timeout: 5000 +}); +``` + +## Interceptors + +You can intercept requests or responses before they are handled by `then` or `catch`. + +```js +// Add a request interceptor +axios.interceptors.request.use(function (config) { + // Do something before request is sent + return config; + }, function (error) { + // Do something with request error + return Promise.reject(error); + }); + +// Add a response interceptor +axios.interceptors.response.use(function (response) { + // Any status code that lie within the range of 2xx cause this function to trigger + // Do something with response data + return response; + }, function (error) { + // Any status codes that falls outside the range of 2xx cause this function to trigger + // Do something with response error + return Promise.reject(error); + }); +``` + +If you need to remove an interceptor later you can. + +```js +const myInterceptor = axios.interceptors.request.use(function () {/*...*/}); +axios.interceptors.request.eject(myInterceptor); +``` + +You can also clear all interceptors for requests or responses. +```js +const instance = axios.create(); +instance.interceptors.request.use(function () {/*...*/}); +instance.interceptors.request.clear(); // Removes interceptors from requests +instance.interceptors.response.use(function () {/*...*/}); +instance.interceptors.response.clear(); // Removes interceptors from responses +``` + +You can add interceptors to a custom instance of axios. + +```js +const instance = axios.create(); +instance.interceptors.request.use(function () {/*...*/}); +``` + +When you add request interceptors, they are presumed to be asynchronous by default. This can cause a delay +in the execution of your axios request when the main thread is blocked (a promise is created under the hood for +the interceptor and your request gets put on the bottom of the call stack). If your request interceptors are synchronous you can add a flag +to the options object that will tell axios to run the code synchronously and avoid any delays in request execution. + +```js +axios.interceptors.request.use(function (config) { + config.headers.test = 'I am only a header!'; + return config; +}, null, { synchronous: true }); +``` + +If you want to execute a particular interceptor based on a runtime check, +you can add a `runWhen` function to the options object. The interceptor will not be executed **if and only if** the return +of `runWhen` is `false`. The function will be called with the config +object (don't forget that you can bind your own arguments to it as well.) This can be handy when you have an +asynchronous request interceptor that only needs to run at certain times. + +```js +function onGetCall(config) { + return config.method === 'get'; +} +axios.interceptors.request.use(function (config) { + config.headers.test = 'special get headers'; + return config; +}, null, { runWhen: onGetCall }); +``` + +### Multiple Interceptors + +Given you add multiple response interceptors +and when the response was fulfilled +- then each interceptor is executed +- then they are executed in the order they were added +- then only the last interceptor's result is returned +- then every interceptor receives the result of its predecessor +- and when the fulfillment-interceptor throws + - then the following fulfillment-interceptor is not called + - then the following rejection-interceptor is called + - once caught, another following fulfill-interceptor is called again (just like in a promise chain). + +Read [the interceptor tests](./test/specs/interceptors.spec.js) for seeing all this in code. + +## Handling Errors + +```js +axios.get('/user/12345') + .catch(function (error) { + if (error.response) { + // The request was made and the server responded with a status code + // that falls out of the range of 2xx + console.log(error.response.data); + console.log(error.response.status); + console.log(error.response.headers); + } else if (error.request) { + // The request was made but no response was received + // `error.request` is an instance of XMLHttpRequest in the browser and an instance of + // http.ClientRequest in node.js + console.log(error.request); + } else { + // Something happened in setting up the request that triggered an Error + console.log('Error', error.message); + } + console.log(error.config); + }); +``` + +Using the `validateStatus` config option, you can define HTTP code(s) that should throw an error. + +```js +axios.get('/user/12345', { + validateStatus: function (status) { + return status < 500; // Resolve only if the status code is less than 500 + } +}) +``` + +Using `toJSON` you get an object with more information about the HTTP error. + +```js +axios.get('/user/12345') + .catch(function (error) { + console.log(error.toJSON()); + }); +``` + +## Cancellation + +### AbortController + +Starting from `v0.22.0` Axios supports AbortController to cancel requests in fetch API way: + +```js +const controller = new AbortController(); + +axios.get('/foo/bar', { + signal: controller.signal +}).then(function(response) { + //... +}); +// cancel the request +controller.abort() +``` + +### CancelToken `👎deprecated` + +You can also cancel a request using a *CancelToken*. + +> The axios cancel token API is based on the withdrawn [cancelable promises proposal](https://github.com/tc39/proposal-cancelable-promises). + +> This API is deprecated since v0.22.0 and shouldn't be used in new projects + +You can create a cancel token using the `CancelToken.source` factory as shown below: + +```js +const CancelToken = axios.CancelToken; +const source = CancelToken.source(); + +axios.get('/user/12345', { + cancelToken: source.token +}).catch(function (thrown) { + if (axios.isCancel(thrown)) { + console.log('Request canceled', thrown.message); + } else { + // handle error + } +}); + +axios.post('/user/12345', { + name: 'new name' +}, { + cancelToken: source.token +}) + +// cancel the request (the message parameter is optional) +source.cancel('Operation canceled by the user.'); +``` + +You can also create a cancel token by passing an executor function to the `CancelToken` constructor: + +```js +const CancelToken = axios.CancelToken; +let cancel; + +axios.get('/user/12345', { + cancelToken: new CancelToken(function executor(c) { + // An executor function receives a cancel function as a parameter + cancel = c; + }) +}); + +// cancel the request +cancel(); +``` + +> **Note:** you can cancel several requests with the same cancel token/abort controller. +> If a cancellation token is already cancelled at the moment of starting an Axios request, then the request is cancelled immediately, without any attempts to make a real request. + +> During the transition period, you can use both cancellation APIs, even for the same request: + +## Using `application/x-www-form-urlencoded` format + +### URLSearchParams + +By default, axios serializes JavaScript objects to `JSON`. To send data in the [`application/x-www-form-urlencoded` format](https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods/POST) instead, you can use the [`URLSearchParams`](https://developer.mozilla.org/en-US/docs/Web/API/URLSearchParams) API, which is [supported](http://www.caniuse.com/#feat=urlsearchparams) in the vast majority of browsers, [and Node](https://nodejs.org/api/url.html#url_class_urlsearchparams) starting with v10 (released in 2018). + +```js +const params = new URLSearchParams({ foo: 'bar' }); +params.append('extraparam', 'value'); +axios.post('/foo', params); +``` + +### Query string (Older browsers) + +For compatibility with very old browsers, there is a [polyfill](https://github.com/WebReflection/url-search-params) available (make sure to polyfill the global environment). + +Alternatively, you can encode data using the [`qs`](https://github.com/ljharb/qs) library: + +```js +const qs = require('qs'); +axios.post('/foo', qs.stringify({ 'bar': 123 })); +``` + +Or in another way (ES6), + +```js +import qs from 'qs'; +const data = { 'bar': 123 }; +const options = { + method: 'POST', + headers: { 'content-type': 'application/x-www-form-urlencoded' }, + data: qs.stringify(data), + url, +}; +axios(options); +``` + +### Older Node.js versions + +For older Node.js engines, you can use the [`querystring`](https://nodejs.org/api/querystring.html) module as follows: + +```js +const querystring = require('querystring'); +axios.post('https://something.com/', querystring.stringify({ foo: 'bar' })); +``` + +You can also use the [`qs`](https://github.com/ljharb/qs) library. + +> **Note** +> The `qs` library is preferable if you need to stringify nested objects, as the `querystring` method has [known issues](https://github.com/nodejs/node-v0.x-archive/issues/1665) with that use case. + +### 🆕 Automatic serialization to URLSearchParams + +Axios will automatically serialize the data object to urlencoded format if the content-type header is set to "application/x-www-form-urlencoded". + +```js +const data = { + x: 1, + arr: [1, 2, 3], + arr2: [1, [2], 3], + users: [{name: 'Peter', surname: 'Griffin'}, {name: 'Thomas', surname: 'Anderson'}], +}; + +await axios.postForm('https://postman-echo.com/post', data, + {headers: {'content-type': 'application/x-www-form-urlencoded'}} +); +``` + +The server will handle it as + +```js + { + x: '1', + 'arr[]': [ '1', '2', '3' ], + 'arr2[0]': '1', + 'arr2[1][0]': '2', + 'arr2[2]': '3', + 'arr3[]': [ '1', '2', '3' ], + 'users[0][name]': 'Peter', + 'users[0][surname]': 'griffin', + 'users[1][name]': 'Thomas', + 'users[1][surname]': 'Anderson' + } +```` + +If your backend body-parser (like `body-parser` of `express.js`) supports nested objects decoding, you will get the same object on the server-side automatically + +```js + var app = express(); + + app.use(bodyParser.urlencoded({ extended: true })); // support encoded bodies + + app.post('/', function (req, res, next) { + // echo body as JSON + res.send(JSON.stringify(req.body)); + }); + + server = app.listen(3000); +``` + +## Using `multipart/form-data` format + +### FormData + +To send the data as a `multipart/formdata` you need to pass a formData instance as a payload. +Setting the `Content-Type` header is not required as Axios guesses it based on the payload type. + +```js +const formData = new FormData(); +formData.append('foo', 'bar'); + +axios.post('https://httpbin.org/post', formData); +``` + +In node.js, you can use the [`form-data`](https://github.com/form-data/form-data) library as follows: + +```js +const FormData = require('form-data'); + +const form = new FormData(); +form.append('my_field', 'my value'); +form.append('my_buffer', new Buffer(10)); +form.append('my_file', fs.createReadStream('/foo/bar.jpg')); + +axios.post('https://example.com', form) +``` + +### 🆕 Automatic serialization to FormData + +Starting from `v0.27.0`, Axios supports automatic object serialization to a FormData object if the request `Content-Type` +header is set to `multipart/form-data`. + +The following request will submit the data in a FormData format (Browser & Node.js): + +```js +import axios from 'axios'; + +axios.post('https://httpbin.org/post', {x: 1}, { + headers: { + 'Content-Type': 'multipart/form-data' + } +}).then(({data}) => console.log(data)); +``` + +In the `node.js` build, the ([`form-data`](https://github.com/form-data/form-data)) polyfill is used by default. + +You can overload the FormData class by setting the `env.FormData` config variable, +but you probably won't need it in most cases: + +```js +const axios = require('axios'); +var FormData = require('form-data'); + +axios.post('https://httpbin.org/post', {x: 1, buf: new Buffer(10)}, { + headers: { + 'Content-Type': 'multipart/form-data' + } +}).then(({data}) => console.log(data)); +``` + +Axios FormData serializer supports some special endings to perform the following operations: + +- `{}` - serialize the value with JSON.stringify +- `[]` - unwrap the array-like object as separate fields with the same key + +> **Note** +> unwrap/expand operation will be used by default on arrays and FileList objects + +FormData serializer supports additional options via `config.formSerializer: object` property to handle rare cases: + +- `visitor: Function` - user-defined visitor function that will be called recursively to serialize the data object +to a `FormData` object by following custom rules. + +- `dots: boolean = false` - use dot notation instead of brackets to serialize arrays and objects; + +- `metaTokens: boolean = true` - add the special ending (e.g `user{}: '{"name": "John"}'`) in the FormData key. +The back-end body-parser could potentially use this meta-information to automatically parse the value as JSON. + +- `indexes: null|false|true = false` - controls how indexes will be added to unwrapped keys of `flat` array-like objects + + - `null` - don't add brackets (`arr: 1`, `arr: 2`, `arr: 3`) + - `false`(default) - add empty brackets (`arr[]: 1`, `arr[]: 2`, `arr[]: 3`) + - `true` - add brackets with indexes (`arr[0]: 1`, `arr[1]: 2`, `arr[2]: 3`) + +Let's say we have an object like this one: + +```js +const obj = { + x: 1, + arr: [1, 2, 3], + arr2: [1, [2], 3], + users: [{name: 'Peter', surname: 'Griffin'}, {name: 'Thomas', surname: 'Anderson'}], + 'obj2{}': [{x:1}] +}; +``` + +The following steps will be executed by the Axios serializer internally: + +```js +const formData = new FormData(); +formData.append('x', '1'); +formData.append('arr[]', '1'); +formData.append('arr[]', '2'); +formData.append('arr[]', '3'); +formData.append('arr2[0]', '1'); +formData.append('arr2[1][0]', '2'); +formData.append('arr2[2]', '3'); +formData.append('users[0][name]', 'Peter'); +formData.append('users[0][surname]', 'Griffin'); +formData.append('users[1][name]', 'Thomas'); +formData.append('users[1][surname]', 'Anderson'); +formData.append('obj2{}', '[{"x":1}]'); +``` + +Axios supports the following shortcut methods: `postForm`, `putForm`, `patchForm` +which are just the corresponding http methods with the `Content-Type` header preset to `multipart/form-data`. + +## Files Posting + +You can easily submit a single file: + +```js +await axios.postForm('https://httpbin.org/post', { + 'myVar' : 'foo', + 'file': document.querySelector('#fileInput').files[0] +}); +``` + +or multiple files as `multipart/form-data`: + +```js +await axios.postForm('https://httpbin.org/post', { + 'files[]': document.querySelector('#fileInput').files +}); +``` + +`FileList` object can be passed directly: + +```js +await axios.postForm('https://httpbin.org/post', document.querySelector('#fileInput').files) +``` + +All files will be sent with the same field names: `files[]`. + +## 🆕 HTML Form Posting (browser) + +Pass HTML Form element as a payload to submit it as `multipart/form-data` content. + +```js +await axios.postForm('https://httpbin.org/post', document.querySelector('#htmlForm')); +``` + +`FormData` and `HTMLForm` objects can also be posted as `JSON` by explicitly setting the `Content-Type` header to `application/json`: + +```js +await axios.post('https://httpbin.org/post', document.querySelector('#htmlForm'), { + headers: { + 'Content-Type': 'application/json' + } +}) +``` + +For example, the Form + +```html +
    + + + + + + + + + +
    +``` + +will be submitted as the following JSON object: + +```js +{ + "foo": "1", + "deep": { + "prop": { + "spaced": "3" + } + }, + "baz": [ + "4", + "5" + ], + "user": { + "age": "value2" + } +} +```` + +Sending `Blobs`/`Files` as JSON (`base64`) is not currently supported. + +## Semver + +Until axios reaches a `1.0` release, breaking changes will be released with a new minor version. For example `0.5.1`, and `0.5.4` will have the same API, but `0.6.0` will have breaking changes. + +## Promises + +axios depends on a native ES6 Promise implementation to be [supported](https://caniuse.com/promises). +If your environment doesn't support ES6 Promises, you can [polyfill](https://github.com/jakearchibald/es6-promise). + +## TypeScript + +axios includes [TypeScript](https://typescriptlang.org) definitions and a type guard for axios errors. + +```typescript +let user: User = null; +try { + const { data } = await axios.get('/user?ID=12345'); + user = data.userDetails; +} catch (error) { + if (axios.isAxiosError(error)) { + handleAxiosError(error); + } else { + handleUnexpectedError(error); + } +} +``` + +## Online one-click setup + +You can use Gitpod, an online IDE(which is free for Open Source) for contributing or running the examples online. + +[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/axios/axios/blob/main/examples/server.js) + + +## Resources + +* [Changelog](https://github.com/axios/axios/blob/master/CHANGELOG.md) +* [Upgrade Guide](https://github.com/axios/axios/blob/master/UPGRADE_GUIDE.md) +* [Ecosystem](https://github.com/axios/axios/blob/master/ECOSYSTEM.md) +* [Contributing Guide](https://github.com/axios/axios/blob/master/CONTRIBUTING.md) +* [Code of Conduct](https://github.com/axios/axios/blob/master/CODE_OF_CONDUCT.md) + +## Credits + +axios is heavily inspired by the [$http service](https://docs.angularjs.org/api/ng/service/$http) provided in [AngularJS](https://angularjs.org/). Ultimately axios is an effort to provide a standalone `$http`-like service for use outside of AngularJS. + +## License + +[MIT](LICENSE) diff --git a/node_modules/axios/SECURITY.md b/node_modules/axios/SECURITY.md new file mode 100644 index 000000000..a5a2b7d2e --- /dev/null +++ b/node_modules/axios/SECURITY.md @@ -0,0 +1,6 @@ +# Reporting a Vulnerability + +If you discover a security vulnerability in axios please disclose it via [our huntr page](https://huntr.dev/repos/axios/axios/). Bounty eligibility, CVE assignment, response times and past reports are all there. + + +Thank you for improving the security of axios. diff --git a/node_modules/axios/UPGRADE_GUIDE.md b/node_modules/axios/UPGRADE_GUIDE.md new file mode 100644 index 000000000..e0febe5d8 --- /dev/null +++ b/node_modules/axios/UPGRADE_GUIDE.md @@ -0,0 +1,3 @@ +# Upgrade Guide + +## 0.x.x -> 1.1.0 diff --git a/node_modules/axios/bin/ssl_hotfix.js b/node_modules/axios/bin/ssl_hotfix.js new file mode 100644 index 000000000..6147bf049 --- /dev/null +++ b/node_modules/axios/bin/ssl_hotfix.js @@ -0,0 +1,22 @@ +import {spawn} from 'child_process'; + +const args = process.argv.slice(2); + +console.log(`Running ${args.join(' ')} on ${process.version}\n`); + +const match = /v(\d+)/.exec(process.version); + +const isHotfixNeeded = match && match[1] > 16; + +isHotfixNeeded && console.warn('Setting --openssl-legacy-provider as ssl hotfix'); + +const test = spawn('cross-env', + isHotfixNeeded ? ['NODE_OPTIONS=--openssl-legacy-provider', ...args] : args, { + shell: true, + stdio: 'inherit' + } +); + +test.on('exit', function (code) { + process.exit(code) +}) diff --git a/node_modules/axios/dist/axios.js b/node_modules/axios/dist/axios.js new file mode 100644 index 000000000..93835d808 --- /dev/null +++ b/node_modules/axios/dist/axios.js @@ -0,0 +1,2921 @@ +// Axios v1.0.0 Copyright (c) 2022 Matt Zabriskie and contributors +(function (global, factory) { + typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : + typeof define === 'function' && define.amd ? define(factory) : + (global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.axios = factory()); +})(this, (function () { 'use strict'; + + function _typeof(obj) { + "@babel/helpers - typeof"; + + return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { + return typeof obj; + } : function (obj) { + return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; + }, _typeof(obj); + } + + function _classCallCheck(instance, Constructor) { + if (!(instance instanceof Constructor)) { + throw new TypeError("Cannot call a class as a function"); + } + } + + function _defineProperties(target, props) { + for (var i = 0; i < props.length; i++) { + var descriptor = props[i]; + descriptor.enumerable = descriptor.enumerable || false; + descriptor.configurable = true; + if ("value" in descriptor) descriptor.writable = true; + Object.defineProperty(target, descriptor.key, descriptor); + } + } + + function _createClass(Constructor, protoProps, staticProps) { + if (protoProps) _defineProperties(Constructor.prototype, protoProps); + if (staticProps) _defineProperties(Constructor, staticProps); + Object.defineProperty(Constructor, "prototype", { + writable: false + }); + return Constructor; + } + + function bind(fn, thisArg) { + return function wrap() { + return fn.apply(thisArg, arguments); + }; + } + + var toString = Object.prototype.toString; + var getPrototypeOf = Object.getPrototypeOf; + + var kindOf = function (cache) { + return function (thing) { + var str = toString.call(thing); + return cache[str] || (cache[str] = str.slice(8, -1).toLowerCase()); + }; + }(Object.create(null)); + + var kindOfTest = function kindOfTest(type) { + type = type.toLowerCase(); + return function (thing) { + return kindOf(thing) === type; + }; + }; + + var typeOfTest = function typeOfTest(type) { + return function (thing) { + return _typeof(thing) === type; + }; + }; + /** + * Determine if a value is an Array + * + * @param {Object} val The value to test + * + * @returns {boolean} True if value is an Array, otherwise false + */ + + + var isArray = Array.isArray; + /** + * Determine if a value is undefined + * + * @param {*} val The value to test + * + * @returns {boolean} True if the value is undefined, otherwise false + */ + + var isUndefined = typeOfTest('undefined'); + /** + * Determine if a value is a Buffer + * + * @param {*} val The value to test + * + * @returns {boolean} True if value is a Buffer, otherwise false + */ + + function isBuffer(val) { + return val !== null && !isUndefined(val) && val.constructor !== null && !isUndefined(val.constructor) && isFunction(val.constructor.isBuffer) && val.constructor.isBuffer(val); + } + /** + * Determine if a value is an ArrayBuffer + * + * @param {*} val The value to test + * + * @returns {boolean} True if value is an ArrayBuffer, otherwise false + */ + + + var isArrayBuffer = kindOfTest('ArrayBuffer'); + /** + * Determine if a value is a view on an ArrayBuffer + * + * @param {*} val The value to test + * + * @returns {boolean} True if value is a view on an ArrayBuffer, otherwise false + */ + + function isArrayBufferView(val) { + var result; + + if (typeof ArrayBuffer !== 'undefined' && ArrayBuffer.isView) { + result = ArrayBuffer.isView(val); + } else { + result = val && val.buffer && isArrayBuffer(val.buffer); + } + + return result; + } + /** + * Determine if a value is a String + * + * @param {*} val The value to test + * + * @returns {boolean} True if value is a String, otherwise false + */ + + + var isString = typeOfTest('string'); + /** + * Determine if a value is a Function + * + * @param {*} val The value to test + * @returns {boolean} True if value is a Function, otherwise false + */ + + var isFunction = typeOfTest('function'); + /** + * Determine if a value is a Number + * + * @param {*} val The value to test + * + * @returns {boolean} True if value is a Number, otherwise false + */ + + var isNumber = typeOfTest('number'); + /** + * Determine if a value is an Object + * + * @param {*} thing The value to test + * + * @returns {boolean} True if value is an Object, otherwise false + */ + + var isObject = function isObject(thing) { + return thing !== null && _typeof(thing) === 'object'; + }; + /** + * Determine if a value is a Boolean + * + * @param {*} thing The value to test + * @returns {boolean} True if value is a Boolean, otherwise false + */ + + + var isBoolean = function isBoolean(thing) { + return thing === true || thing === false; + }; + /** + * Determine if a value is a plain Object + * + * @param {*} val The value to test + * + * @returns {boolean} True if value is a plain Object, otherwise false + */ + + + var isPlainObject = function isPlainObject(val) { + if (kindOf(val) !== 'object') { + return false; + } + + var prototype = getPrototypeOf(val); + return prototype === null || prototype === Object.prototype; + }; + /** + * Determine if a value is a Date + * + * @param {*} val The value to test + * + * @returns {boolean} True if value is a Date, otherwise false + */ + + + var isDate = kindOfTest('Date'); + /** + * Determine if a value is a File + * + * @param {*} val The value to test + * + * @returns {boolean} True if value is a File, otherwise false + */ + + var isFile = kindOfTest('File'); + /** + * Determine if a value is a Blob + * + * @param {*} val The value to test + * + * @returns {boolean} True if value is a Blob, otherwise false + */ + + var isBlob = kindOfTest('Blob'); + /** + * Determine if a value is a FileList + * + * @param {*} val The value to test + * + * @returns {boolean} True if value is a File, otherwise false + */ + + var isFileList = kindOfTest('FileList'); + /** + * Determine if a value is a Stream + * + * @param {*} val The value to test + * + * @returns {boolean} True if value is a Stream, otherwise false + */ + + var isStream = function isStream(val) { + return isObject(val) && isFunction(val.pipe); + }; + /** + * Determine if a value is a FormData + * + * @param {*} thing The value to test + * + * @returns {boolean} True if value is an FormData, otherwise false + */ + + + var isFormData = function isFormData(thing) { + var pattern = '[object FormData]'; + return thing && (typeof FormData === 'function' && thing instanceof FormData || toString.call(thing) === pattern || isFunction(thing.toString) && thing.toString() === pattern); + }; + /** + * Determine if a value is a URLSearchParams object + * + * @param {*} val The value to test + * + * @returns {boolean} True if value is a URLSearchParams object, otherwise false + */ + + + var isURLSearchParams = kindOfTest('URLSearchParams'); + /** + * Trim excess whitespace off the beginning and end of a string + * + * @param {String} str The String to trim + * + * @returns {String} The String freed of excess whitespace + */ + + var trim = function trim(str) { + return str.trim ? str.trim() : str.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, ''); + }; + /** + * Iterate over an Array or an Object invoking a function for each item. + * + * If `obj` is an Array callback will be called passing + * the value, index, and complete array for each item. + * + * If 'obj' is an Object callback will be called passing + * the value, key, and complete object for each property. + * + * @param {Object|Array} obj The object to iterate + * @param {Function} fn The callback to invoke for each item + * + * @param {Boolean} [allOwnKeys = false] + * @returns {void} + */ + + + function forEach(obj, fn) { + var _ref = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {}, + _ref$allOwnKeys = _ref.allOwnKeys, + allOwnKeys = _ref$allOwnKeys === void 0 ? false : _ref$allOwnKeys; + + // Don't bother if no value provided + if (obj === null || typeof obj === 'undefined') { + return; + } + + var i; + var l; // Force an array if not already something iterable + + if (_typeof(obj) !== 'object') { + /*eslint no-param-reassign:0*/ + obj = [obj]; + } + + if (isArray(obj)) { + // Iterate over array values + for (i = 0, l = obj.length; i < l; i++) { + fn.call(null, obj[i], i, obj); + } + } else { + // Iterate over object keys + var keys = allOwnKeys ? Object.getOwnPropertyNames(obj) : Object.keys(obj); + var len = keys.length; + var key; + + for (i = 0; i < len; i++) { + key = keys[i]; + fn.call(null, obj[key], key, obj); + } + } + } + /** + * Accepts varargs expecting each argument to be an object, then + * immutably merges the properties of each object and returns result. + * + * When multiple objects contain the same key the later object in + * the arguments list will take precedence. + * + * Example: + * + * ```js + * var result = merge({foo: 123}, {foo: 456}); + * console.log(result.foo); // outputs 456 + * ``` + * + * @param {Object} obj1 Object to merge + * + * @returns {Object} Result of all merge properties + */ + + + function + /* obj1, obj2, obj3, ... */ + merge() { + var result = {}; + + var assignValue = function assignValue(val, key) { + if (isPlainObject(result[key]) && isPlainObject(val)) { + result[key] = merge(result[key], val); + } else if (isPlainObject(val)) { + result[key] = merge({}, val); + } else if (isArray(val)) { + result[key] = val.slice(); + } else { + result[key] = val; + } + }; + + for (var i = 0, l = arguments.length; i < l; i++) { + arguments[i] && forEach(arguments[i], assignValue); + } + + return result; + } + /** + * Extends object a by mutably adding to it the properties of object b. + * + * @param {Object} a The object to be extended + * @param {Object} b The object to copy properties from + * @param {Object} thisArg The object to bind function to + * + * @param {Boolean} [allOwnKeys] + * @returns {Object} The resulting value of object a + */ + + + var extend = function extend(a, b, thisArg) { + var _ref2 = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : {}, + allOwnKeys = _ref2.allOwnKeys; + + forEach(b, function (val, key) { + if (thisArg && isFunction(val)) { + a[key] = bind(val, thisArg); + } else { + a[key] = val; + } + }, { + allOwnKeys: allOwnKeys + }); + return a; + }; + /** + * Remove byte order marker. This catches EF BB BF (the UTF-8 BOM) + * + * @param {string} content with BOM + * + * @returns {string} content value without BOM + */ + + + var stripBOM = function stripBOM(content) { + if (content.charCodeAt(0) === 0xFEFF) { + content = content.slice(1); + } + + return content; + }; + /** + * Inherit the prototype methods from one constructor into another + * @param {function} constructor + * @param {function} superConstructor + * @param {object} [props] + * @param {object} [descriptors] + * + * @returns {void} + */ + + + var inherits = function inherits(constructor, superConstructor, props, descriptors) { + constructor.prototype = Object.create(superConstructor.prototype, descriptors); + constructor.prototype.constructor = constructor; + Object.defineProperty(constructor, 'super', { + value: superConstructor.prototype + }); + props && Object.assign(constructor.prototype, props); + }; + /** + * Resolve object with deep prototype chain to a flat object + * @param {Object} sourceObj source object + * @param {Object} [destObj] + * @param {Function|Boolean} [filter] + * @param {Function} [propFilter] + * + * @returns {Object} + */ + + + var toFlatObject = function toFlatObject(sourceObj, destObj, filter, propFilter) { + var props; + var i; + var prop; + var merged = {}; + destObj = destObj || {}; // eslint-disable-next-line no-eq-null,eqeqeq + + if (sourceObj == null) return destObj; + + do { + props = Object.getOwnPropertyNames(sourceObj); + i = props.length; + + while (i-- > 0) { + prop = props[i]; + + if ((!propFilter || propFilter(prop, sourceObj, destObj)) && !merged[prop]) { + destObj[prop] = sourceObj[prop]; + merged[prop] = true; + } + } + + sourceObj = filter !== false && getPrototypeOf(sourceObj); + } while (sourceObj && (!filter || filter(sourceObj, destObj)) && sourceObj !== Object.prototype); + + return destObj; + }; + /** + * Determines whether a string ends with the characters of a specified string + * + * @param {String} str + * @param {String} searchString + * @param {Number} [position= 0] + * + * @returns {boolean} + */ + + + var endsWith = function endsWith(str, searchString, position) { + str = String(str); + + if (position === undefined || position > str.length) { + position = str.length; + } + + position -= searchString.length; + var lastIndex = str.indexOf(searchString, position); + return lastIndex !== -1 && lastIndex === position; + }; + /** + * Returns new array from array like object or null if failed + * + * @param {*} [thing] + * + * @returns {?Array} + */ + + + var toArray = function toArray(thing) { + if (!thing) return null; + if (isArray(thing)) return thing; + var i = thing.length; + if (!isNumber(i)) return null; + var arr = new Array(i); + + while (i-- > 0) { + arr[i] = thing[i]; + } + + return arr; + }; + /** + * Checking if the Uint8Array exists and if it does, it returns a function that checks if the + * thing passed in is an instance of Uint8Array + * + * @param {TypedArray} + * + * @returns {Array} + */ + // eslint-disable-next-line func-names + + + var isTypedArray = function (TypedArray) { + // eslint-disable-next-line func-names + return function (thing) { + return TypedArray && thing instanceof TypedArray; + }; + }(typeof Uint8Array !== 'undefined' && getPrototypeOf(Uint8Array)); + /** + * For each entry in the object, call the function with the key and value. + * + * @param {Object} obj - The object to iterate over. + * @param {Function} fn - The function to call for each entry. + * + * @returns {void} + */ + + + var forEachEntry = function forEachEntry(obj, fn) { + var generator = obj && obj[Symbol.iterator]; + var iterator = generator.call(obj); + var result; + + while ((result = iterator.next()) && !result.done) { + var pair = result.value; + fn.call(obj, pair[0], pair[1]); + } + }; + /** + * It takes a regular expression and a string, and returns an array of all the matches + * + * @param {string} regExp - The regular expression to match against. + * @param {string} str - The string to search. + * + * @returns {Array} + */ + + + var matchAll = function matchAll(regExp, str) { + var matches; + var arr = []; + + while ((matches = regExp.exec(str)) !== null) { + arr.push(matches); + } + + return arr; + }; + /* Checking if the kindOfTest function returns true when passed an HTMLFormElement. */ + + + var isHTMLForm = kindOfTest('HTMLFormElement'); + + var toCamelCase = function toCamelCase(str) { + return str.toLowerCase().replace(/[_-\s]([a-z\d])(\w*)/g, function replacer(m, p1, p2) { + return p1.toUpperCase() + p2; + }); + }; + /* Creating a function that will check if an object has a property. */ + + + var hasOwnProperty = function (_ref3) { + var hasOwnProperty = _ref3.hasOwnProperty; + return function (obj, prop) { + return hasOwnProperty.call(obj, prop); + }; + }(Object.prototype); + /** + * Determine if a value is a RegExp object + * + * @param {*} val The value to test + * + * @returns {boolean} True if value is a RegExp object, otherwise false + */ + + + var isRegExp = kindOfTest('RegExp'); + + var reduceDescriptors = function reduceDescriptors(obj, reducer) { + var descriptors = Object.getOwnPropertyDescriptors(obj); + var reducedDescriptors = {}; + forEach(descriptors, function (descriptor, name) { + if (reducer(descriptor, name, obj) !== false) { + reducedDescriptors[name] = descriptor; + } + }); + Object.defineProperties(obj, reducedDescriptors); + }; + /** + * Makes all methods read-only + * @param {Object} obj + */ + + + var freezeMethods = function freezeMethods(obj) { + reduceDescriptors(obj, function (descriptor, name) { + var value = obj[name]; + if (!isFunction(value)) return; + descriptor.enumerable = false; + + if ('writable' in descriptor) { + descriptor.writable = false; + return; + } + + if (!descriptor.set) { + descriptor.set = function () { + throw Error('Can not read-only method \'' + name + '\''); + }; + } + }); + }; + + var toObjectSet = function toObjectSet(arrayOrString, delimiter) { + var obj = {}; + + var define = function define(arr) { + arr.forEach(function (value) { + obj[value] = true; + }); + }; + + isArray(arrayOrString) ? define(arrayOrString) : define(String(arrayOrString).split(delimiter)); + return obj; + }; + + var noop = function noop() {}; + + var toFiniteNumber = function toFiniteNumber(value, defaultValue) { + value = +value; + return Number.isFinite(value) ? value : defaultValue; + }; + + var utils = { + isArray: isArray, + isArrayBuffer: isArrayBuffer, + isBuffer: isBuffer, + isFormData: isFormData, + isArrayBufferView: isArrayBufferView, + isString: isString, + isNumber: isNumber, + isBoolean: isBoolean, + isObject: isObject, + isPlainObject: isPlainObject, + isUndefined: isUndefined, + isDate: isDate, + isFile: isFile, + isBlob: isBlob, + isRegExp: isRegExp, + isFunction: isFunction, + isStream: isStream, + isURLSearchParams: isURLSearchParams, + isTypedArray: isTypedArray, + isFileList: isFileList, + forEach: forEach, + merge: merge, + extend: extend, + trim: trim, + stripBOM: stripBOM, + inherits: inherits, + toFlatObject: toFlatObject, + kindOf: kindOf, + kindOfTest: kindOfTest, + endsWith: endsWith, + toArray: toArray, + forEachEntry: forEachEntry, + matchAll: matchAll, + isHTMLForm: isHTMLForm, + hasOwnProperty: hasOwnProperty, + hasOwnProp: hasOwnProperty, + // an alias to avoid ESLint no-prototype-builtins detection + reduceDescriptors: reduceDescriptors, + freezeMethods: freezeMethods, + toObjectSet: toObjectSet, + toCamelCase: toCamelCase, + noop: noop, + toFiniteNumber: toFiniteNumber + }; + + /** + * Create an Error with the specified message, config, error code, request and response. + * + * @param {string} message The error message. + * @param {string} [code] The error code (for example, 'ECONNABORTED'). + * @param {Object} [config] The config. + * @param {Object} [request] The request. + * @param {Object} [response] The response. + * + * @returns {Error} The created error. + */ + + function AxiosError(message, code, config, request, response) { + Error.call(this); + + if (Error.captureStackTrace) { + Error.captureStackTrace(this, this.constructor); + } else { + this.stack = new Error().stack; + } + + this.message = message; + this.name = 'AxiosError'; + code && (this.code = code); + config && (this.config = config); + request && (this.request = request); + response && (this.response = response); + } + + utils.inherits(AxiosError, Error, { + toJSON: function toJSON() { + return { + // Standard + message: this.message, + name: this.name, + // Microsoft + description: this.description, + number: this.number, + // Mozilla + fileName: this.fileName, + lineNumber: this.lineNumber, + columnNumber: this.columnNumber, + stack: this.stack, + // Axios + config: this.config, + code: this.code, + status: this.response && this.response.status ? this.response.status : null + }; + } + }); + var prototype$1 = AxiosError.prototype; + var descriptors = {}; + ['ERR_BAD_OPTION_VALUE', 'ERR_BAD_OPTION', 'ECONNABORTED', 'ETIMEDOUT', 'ERR_NETWORK', 'ERR_FR_TOO_MANY_REDIRECTS', 'ERR_DEPRECATED', 'ERR_BAD_RESPONSE', 'ERR_BAD_REQUEST', 'ERR_CANCELED', 'ERR_NOT_SUPPORT', 'ERR_INVALID_URL' // eslint-disable-next-line func-names + ].forEach(function (code) { + descriptors[code] = { + value: code + }; + }); + Object.defineProperties(AxiosError, descriptors); + Object.defineProperty(prototype$1, 'isAxiosError', { + value: true + }); // eslint-disable-next-line func-names + + AxiosError.from = function (error, code, config, request, response, customProps) { + var axiosError = Object.create(prototype$1); + utils.toFlatObject(error, axiosError, function filter(obj) { + return obj !== Error.prototype; + }, function (prop) { + return prop !== 'isAxiosError'; + }); + AxiosError.call(axiosError, error.message, code, config, request, response); + axiosError.cause = error; + axiosError.name = error.name; + customProps && Object.assign(axiosError, customProps); + return axiosError; + }; + + /* eslint-env browser */ + var browser = (typeof self === "undefined" ? "undefined" : _typeof(self)) == 'object' ? self.FormData : window.FormData; + + /** + * Determines if the given thing is a array or js object. + * + * @param {string} thing - The object or array to be visited. + * + * @returns {boolean} + */ + + function isVisitable(thing) { + return utils.isPlainObject(thing) || utils.isArray(thing); + } + /** + * It removes the brackets from the end of a string + * + * @param {string} key - The key of the parameter. + * + * @returns {string} the key without the brackets. + */ + + + function removeBrackets(key) { + return utils.endsWith(key, '[]') ? key.slice(0, -2) : key; + } + /** + * It takes a path, a key, and a boolean, and returns a string + * + * @param {string} path - The path to the current key. + * @param {string} key - The key of the current object being iterated over. + * @param {string} dots - If true, the key will be rendered with dots instead of brackets. + * + * @returns {string} The path to the current key. + */ + + + function renderKey(path, key, dots) { + if (!path) return key; + return path.concat(key).map(function each(token, i) { + // eslint-disable-next-line no-param-reassign + token = removeBrackets(token); + return !dots && i ? '[' + token + ']' : token; + }).join(dots ? '.' : ''); + } + /** + * If the array is an array and none of its elements are visitable, then it's a flat array. + * + * @param {Array} arr - The array to check + * + * @returns {boolean} + */ + + + function isFlatArray(arr) { + return utils.isArray(arr) && !arr.some(isVisitable); + } + + var predicates = utils.toFlatObject(utils, {}, null, function filter(prop) { + return /^is[A-Z]/.test(prop); + }); + /** + * If the thing is a FormData object, return true, otherwise return false. + * + * @param {unknown} thing - The thing to check. + * + * @returns {boolean} + */ + + function isSpecCompliant(thing) { + return thing && utils.isFunction(thing.append) && thing[Symbol.toStringTag] === 'FormData' && thing[Symbol.iterator]; + } + /** + * Convert a data object to FormData + * + * @param {Object} obj + * @param {?Object} [formData] + * @param {?Object} [options] + * @param {Function} [options.visitor] + * @param {Boolean} [options.metaTokens = true] + * @param {Boolean} [options.dots = false] + * @param {?Boolean} [options.indexes = false] + * + * @returns {Object} + **/ + + /** + * It converts an object into a FormData object + * + * @param {Object} obj - The object to convert to form data. + * @param {string} formData - The FormData object to append to. + * @param {Object} options + * + * @returns + */ + + + function toFormData(obj, formData, options) { + if (!utils.isObject(obj)) { + throw new TypeError('target must be an object'); + } // eslint-disable-next-line no-param-reassign + + + formData = formData || new (browser || FormData)(); // eslint-disable-next-line no-param-reassign + + options = utils.toFlatObject(options, { + metaTokens: true, + dots: false, + indexes: false + }, false, function defined(option, source) { + // eslint-disable-next-line no-eq-null,eqeqeq + return !utils.isUndefined(source[option]); + }); + var metaTokens = options.metaTokens; // eslint-disable-next-line no-use-before-define + + var visitor = options.visitor || defaultVisitor; + var dots = options.dots; + var indexes = options.indexes; + + var _Blob = options.Blob || typeof Blob !== 'undefined' && Blob; + + var useBlob = _Blob && isSpecCompliant(formData); + + if (!utils.isFunction(visitor)) { + throw new TypeError('visitor must be a function'); + } + + function convertValue(value) { + if (value === null) return ''; + + if (utils.isDate(value)) { + return value.toISOString(); + } + + if (!useBlob && utils.isBlob(value)) { + throw new AxiosError('Blob is not supported. Use a Buffer instead.'); + } + + if (utils.isArrayBuffer(value) || utils.isTypedArray(value)) { + return useBlob && typeof Blob === 'function' ? new Blob([value]) : Buffer.from(value); + } + + return value; + } + /** + * Default visitor. + * + * @param {*} value + * @param {String|Number} key + * @param {Array} path + * @this {FormData} + * + * @returns {boolean} return true to visit the each prop of the value recursively + */ + + + function defaultVisitor(value, key, path) { + var arr = value; + + if (value && !path && _typeof(value) === 'object') { + if (utils.endsWith(key, '{}')) { + // eslint-disable-next-line no-param-reassign + key = metaTokens ? key : key.slice(0, -2); // eslint-disable-next-line no-param-reassign + + value = JSON.stringify(value); + } else if (utils.isArray(value) && isFlatArray(value) || utils.isFileList(value) || utils.endsWith(key, '[]') && (arr = utils.toArray(value))) { + // eslint-disable-next-line no-param-reassign + key = removeBrackets(key); + arr.forEach(function each(el, index) { + !utils.isUndefined(el) && formData.append( // eslint-disable-next-line no-nested-ternary + indexes === true ? renderKey([key], index, dots) : indexes === null ? key : key + '[]', convertValue(el)); + }); + return false; + } + } + + if (isVisitable(value)) { + return true; + } + + formData.append(renderKey(path, key, dots), convertValue(value)); + return false; + } + + var stack = []; + var exposedHelpers = Object.assign(predicates, { + defaultVisitor: defaultVisitor, + convertValue: convertValue, + isVisitable: isVisitable + }); + + function build(value, path) { + if (utils.isUndefined(value)) return; + + if (stack.indexOf(value) !== -1) { + throw Error('Circular reference detected in ' + path.join('.')); + } + + stack.push(value); + utils.forEach(value, function each(el, key) { + var result = !utils.isUndefined(el) && visitor.call(formData, el, utils.isString(key) ? key.trim() : key, path, exposedHelpers); + + if (result === true) { + build(el, path ? path.concat(key) : [key]); + } + }); + stack.pop(); + } + + if (!utils.isObject(obj)) { + throw new TypeError('data must be an object'); + } + + build(obj); + return formData; + } + + /** + * It encodes a string by replacing all characters that are not in the unreserved set with + * their percent-encoded equivalents + * + * @param {string} str - The string to encode. + * + * @returns {string} The encoded string. + */ + + function encode$1(str) { + var charMap = { + '!': '%21', + "'": '%27', + '(': '%28', + ')': '%29', + '~': '%7E', + '%20': '+', + '%00': '\x00' + }; + return encodeURIComponent(str).replace(/[!'()~]|%20|%00/g, function replacer(match) { + return charMap[match]; + }); + } + /** + * It takes a params object and converts it to a FormData object + * + * @param {Object} params - The parameters to be converted to a FormData object. + * @param {Object} options - The options object passed to the Axios constructor. + * + * @returns {void} + */ + + + function AxiosURLSearchParams(params, options) { + this._pairs = []; + params && toFormData(params, this, options); + } + + var prototype = AxiosURLSearchParams.prototype; + + prototype.append = function append(name, value) { + this._pairs.push([name, value]); + }; + + prototype.toString = function toString(encoder) { + var _encode = encoder ? function (value) { + return encoder.call(this, value, encode$1); + } : encode$1; + + return this._pairs.map(function each(pair) { + return _encode(pair[0]) + '=' + _encode(pair[1]); + }, '').join('&'); + }; + + /** + * It replaces all instances of the characters `:`, `$`, `,`, `+`, `[`, and `]` with their + * URI encoded counterparts + * + * @param {string} val The value to be encoded. + * + * @returns {string} The encoded value. + */ + + function encode(val) { + return encodeURIComponent(val).replace(/%3A/gi, ':').replace(/%24/g, '$').replace(/%2C/gi, ',').replace(/%20/g, '+').replace(/%5B/gi, '[').replace(/%5D/gi, ']'); + } + /** + * Build a URL by appending params to the end + * + * @param {string} url The base of the url (e.g., http://www.google.com) + * @param {object} [params] The params to be appended + * @param {?object} options + * + * @returns {string} The formatted url + */ + + + function buildURL(url, params, options) { + /*eslint no-param-reassign:0*/ + if (!params) { + return url; + } + + var hashmarkIndex = url.indexOf('#'); + + if (hashmarkIndex !== -1) { + url = url.slice(0, hashmarkIndex); + } + + var _encode = options && options.encode || encode; + + var serializerParams = utils.isURLSearchParams(params) ? params.toString() : new AxiosURLSearchParams(params, options).toString(_encode); + + if (serializerParams) { + url += (url.indexOf('?') === -1 ? '?' : '&') + serializerParams; + } + + return url; + } + + var InterceptorManager = /*#__PURE__*/function () { + function InterceptorManager() { + _classCallCheck(this, InterceptorManager); + + this.handlers = []; + } + /** + * Add a new interceptor to the stack + * + * @param {Function} fulfilled The function to handle `then` for a `Promise` + * @param {Function} rejected The function to handle `reject` for a `Promise` + * + * @return {Number} An ID used to remove interceptor later + */ + + + _createClass(InterceptorManager, [{ + key: "use", + value: function use(fulfilled, rejected, options) { + this.handlers.push({ + fulfilled: fulfilled, + rejected: rejected, + synchronous: options ? options.synchronous : false, + runWhen: options ? options.runWhen : null + }); + return this.handlers.length - 1; + } + /** + * Remove an interceptor from the stack + * + * @param {Number} id The ID that was returned by `use` + * + * @returns {Boolean} `true` if the interceptor was removed, `false` otherwise + */ + + }, { + key: "eject", + value: function eject(id) { + if (this.handlers[id]) { + this.handlers[id] = null; + } + } + /** + * Clear all interceptors from the stack + * + * @returns {void} + */ + + }, { + key: "clear", + value: function clear() { + if (this.handlers) { + this.handlers = []; + } + } + /** + * Iterate over all the registered interceptors + * + * This method is particularly useful for skipping over any + * interceptors that may have become `null` calling `eject`. + * + * @param {Function} fn The function to call for each interceptor + * + * @returns {void} + */ + + }, { + key: "forEach", + value: function forEach(fn) { + utils.forEach(this.handlers, function forEachHandler(h) { + if (h !== null) { + fn(h); + } + }); + } + }]); + + return InterceptorManager; + }(); + + var transitionalDefaults = { + silentJSONParsing: true, + forcedJSONParsing: true, + clarifyTimeoutError: false + }; + + var URLSearchParams$1 = typeof URLSearchParams !== 'undefined' ? URLSearchParams : AxiosURLSearchParams; + + var FormData$1 = FormData; + + /** + * Determine if we're running in a standard browser environment + * + * This allows axios to run in a web worker, and react-native. + * Both environments support XMLHttpRequest, but not fully standard globals. + * + * web workers: + * typeof window -> undefined + * typeof document -> undefined + * + * react-native: + * navigator.product -> 'ReactNative' + * nativescript + * navigator.product -> 'NativeScript' or 'NS' + * + * @returns {boolean} + */ + + var isStandardBrowserEnv = function () { + var product; + + if (typeof navigator !== 'undefined' && ((product = navigator.product) === 'ReactNative' || product === 'NativeScript' || product === 'NS')) { + return false; + } + + return typeof window !== 'undefined' && typeof document !== 'undefined'; + }(); + + var platform = { + isBrowser: true, + classes: { + URLSearchParams: URLSearchParams$1, + FormData: FormData$1, + Blob: Blob + }, + isStandardBrowserEnv: isStandardBrowserEnv, + protocols: ['http', 'https', 'file', 'blob', 'url', 'data'] + }; + + function toURLEncodedForm(data, options) { + return toFormData(data, new platform.classes.URLSearchParams(), Object.assign({ + visitor: function visitor(value, key, path, helpers) { + if (platform.isNode && utils.isBuffer(value)) { + this.append(key, value.toString('base64')); + return false; + } + + return helpers.defaultVisitor.apply(this, arguments); + } + }, options)); + } + + /** + * It takes a string like `foo[x][y][z]` and returns an array like `['foo', 'x', 'y', 'z'] + * + * @param {string} name - The name of the property to get. + * + * @returns An array of strings. + */ + + function parsePropPath(name) { + // foo[x][y][z] + // foo.x.y.z + // foo-x-y-z + // foo x y z + return utils.matchAll(/\w+|\[(\w*)]/g, name).map(function (match) { + return match[0] === '[]' ? '' : match[1] || match[0]; + }); + } + /** + * Convert an array to an object. + * + * @param {Array} arr - The array to convert to an object. + * + * @returns An object with the same keys and values as the array. + */ + + + function arrayToObject(arr) { + var obj = {}; + var keys = Object.keys(arr); + var i; + var len = keys.length; + var key; + + for (i = 0; i < len; i++) { + key = keys[i]; + obj[key] = arr[key]; + } + + return obj; + } + /** + * It takes a FormData object and returns a JavaScript object + * + * @param {string} formData The FormData object to convert to JSON. + * + * @returns {Object | null} The converted object. + */ + + + function formDataToJSON(formData) { + function buildPath(path, value, target, index) { + var name = path[index++]; + var isNumericKey = Number.isFinite(+name); + var isLast = index >= path.length; + name = !name && utils.isArray(target) ? target.length : name; + + if (isLast) { + if (utils.hasOwnProp(target, name)) { + target[name] = [target[name], value]; + } else { + target[name] = value; + } + + return !isNumericKey; + } + + if (!target[name] || !utils.isObject(target[name])) { + target[name] = []; + } + + var result = buildPath(path, value, target[name], index); + + if (result && utils.isArray(target[name])) { + target[name] = arrayToObject(target[name]); + } + + return !isNumericKey; + } + + if (utils.isFormData(formData) && utils.isFunction(formData.entries)) { + var obj = {}; + utils.forEachEntry(formData, function (name, value) { + buildPath(parsePropPath(name), value, obj, 0); + }); + return obj; + } + + return null; + } + + /** + * Resolve or reject a Promise based on response status. + * + * @param {Function} resolve A function that resolves the promise. + * @param {Function} reject A function that rejects the promise. + * @param {object} response The response. + * + * @returns {object} The response. + */ + + function settle(resolve, reject, response) { + var validateStatus = response.config.validateStatus; + + if (!response.status || !validateStatus || validateStatus(response.status)) { + resolve(response); + } else { + reject(new AxiosError('Request failed with status code ' + response.status, [AxiosError.ERR_BAD_REQUEST, AxiosError.ERR_BAD_RESPONSE][Math.floor(response.status / 100) - 4], response.config, response.request, response)); + } + } + + var cookies = platform.isStandardBrowserEnv ? // Standard browser envs support document.cookie + function standardBrowserEnv() { + return { + write: function write(name, value, expires, path, domain, secure) { + var cookie = []; + cookie.push(name + '=' + encodeURIComponent(value)); + + if (utils.isNumber(expires)) { + cookie.push('expires=' + new Date(expires).toGMTString()); + } + + if (utils.isString(path)) { + cookie.push('path=' + path); + } + + if (utils.isString(domain)) { + cookie.push('domain=' + domain); + } + + if (secure === true) { + cookie.push('secure'); + } + + document.cookie = cookie.join('; '); + }, + read: function read(name) { + var match = document.cookie.match(new RegExp('(^|;\\s*)(' + name + ')=([^;]*)')); + return match ? decodeURIComponent(match[3]) : null; + }, + remove: function remove(name) { + this.write(name, '', Date.now() - 86400000); + } + }; + }() : // Non standard browser env (web workers, react-native) lack needed support. + function nonStandardBrowserEnv() { + return { + write: function write() {}, + read: function read() { + return null; + }, + remove: function remove() {} + }; + }(); + + /** + * Determines whether the specified URL is absolute + * + * @param {string} url The URL to test + * + * @returns {boolean} True if the specified URL is absolute, otherwise false + */ + + function isAbsoluteURL(url) { + // A URL is considered absolute if it begins with "://" or "//" (protocol-relative URL). + // RFC 3986 defines scheme name as a sequence of characters beginning with a letter and followed + // by any combination of letters, digits, plus, period, or hyphen. + return /^([a-z][a-z\d+\-.]*:)?\/\//i.test(url); + } + + /** + * Creates a new URL by combining the specified URLs + * + * @param {string} baseURL The base URL + * @param {string} relativeURL The relative URL + * + * @returns {string} The combined URL + */ + + function combineURLs(baseURL, relativeURL) { + return relativeURL ? baseURL.replace(/\/+$/, '') + '/' + relativeURL.replace(/^\/+/, '') : baseURL; + } + + /** + * Creates a new URL by combining the baseURL with the requestedURL, + * only when the requestedURL is not already an absolute URL. + * If the requestURL is absolute, this function returns the requestedURL untouched. + * + * @param {string} baseURL The base URL + * @param {string} requestedURL Absolute or relative URL to combine + * + * @returns {string} The combined full path + */ + + function buildFullPath(baseURL, requestedURL) { + if (baseURL && !isAbsoluteURL(requestedURL)) { + return combineURLs(baseURL, requestedURL); + } + + return requestedURL; + } + + var isURLSameOrigin = platform.isStandardBrowserEnv ? // Standard browser envs have full support of the APIs needed to test + // whether the request URL is of the same origin as current location. + function standardBrowserEnv() { + var msie = /(msie|trident)/i.test(navigator.userAgent); + var urlParsingNode = document.createElement('a'); + var originURL; + /** + * Parse a URL to discover it's components + * + * @param {String} url The URL to be parsed + * @returns {Object} + */ + + function resolveURL(url) { + var href = url; + + if (msie) { + // IE needs attribute set twice to normalize properties + urlParsingNode.setAttribute('href', href); + href = urlParsingNode.href; + } + + urlParsingNode.setAttribute('href', href); // urlParsingNode provides the UrlUtils interface - http://url.spec.whatwg.org/#urlutils + + return { + href: urlParsingNode.href, + protocol: urlParsingNode.protocol ? urlParsingNode.protocol.replace(/:$/, '') : '', + host: urlParsingNode.host, + search: urlParsingNode.search ? urlParsingNode.search.replace(/^\?/, '') : '', + hash: urlParsingNode.hash ? urlParsingNode.hash.replace(/^#/, '') : '', + hostname: urlParsingNode.hostname, + port: urlParsingNode.port, + pathname: urlParsingNode.pathname.charAt(0) === '/' ? urlParsingNode.pathname : '/' + urlParsingNode.pathname + }; + } + + originURL = resolveURL(window.location.href); + /** + * Determine if a URL shares the same origin as the current location + * + * @param {String} requestURL The URL to test + * @returns {boolean} True if URL shares the same origin, otherwise false + */ + + return function isURLSameOrigin(requestURL) { + var parsed = utils.isString(requestURL) ? resolveURL(requestURL) : requestURL; + return parsed.protocol === originURL.protocol && parsed.host === originURL.host; + }; + }() : // Non standard browser envs (web workers, react-native) lack needed support. + function nonStandardBrowserEnv() { + return function isURLSameOrigin() { + return true; + }; + }(); + + /** + * A `CanceledError` is an object that is thrown when an operation is canceled. + * + * @param {string=} message The message. + * @param {Object=} config The config. + * @param {Object=} request The request. + * + * @returns {CanceledError} The created error. + */ + + function CanceledError(message, config, request) { + // eslint-disable-next-line no-eq-null,eqeqeq + AxiosError.call(this, message == null ? 'canceled' : message, AxiosError.ERR_CANCELED, config, request); + this.name = 'CanceledError'; + } + + utils.inherits(CanceledError, AxiosError, { + __CANCEL__: true + }); + + function parseProtocol(url) { + var match = /^([-+\w]{1,25})(:?\/\/|:)/.exec(url); + return match && match[1] || ''; + } + + // c.f. https://nodejs.org/api/http.html#http_message_headers + + var ignoreDuplicateOf = utils.toObjectSet(['age', 'authorization', 'content-length', 'content-type', 'etag', 'expires', 'from', 'host', 'if-modified-since', 'if-unmodified-since', 'last-modified', 'location', 'max-forwards', 'proxy-authorization', 'referer', 'retry-after', 'user-agent']); + /** + * Parse headers into an object + * + * ``` + * Date: Wed, 27 Aug 2014 08:58:49 GMT + * Content-Type: application/json + * Connection: keep-alive + * Transfer-Encoding: chunked + * ``` + * + * @param {String} rawHeaders Headers needing to be parsed + * + * @returns {Object} Headers parsed into an object + */ + + var parseHeaders = (function (rawHeaders) { + var parsed = {}; + var key; + var val; + var i; + rawHeaders && rawHeaders.split('\n').forEach(function parser(line) { + i = line.indexOf(':'); + key = line.substring(0, i).trim().toLowerCase(); + val = line.substring(i + 1).trim(); + + if (!key || parsed[key] && ignoreDuplicateOf[key]) { + return; + } + + if (key === 'set-cookie') { + if (parsed[key]) { + parsed[key].push(val); + } else { + parsed[key] = [val]; + } + } else { + parsed[key] = parsed[key] ? parsed[key] + ', ' + val : val; + } + }); + return parsed; + }); + + var $internals = Symbol('internals'); + var $defaults = Symbol('defaults'); + + function normalizeHeader(header) { + return header && String(header).trim().toLowerCase(); + } + + function normalizeValue(value) { + if (value === false || value == null) { + return value; + } + + return String(value); + } + + function parseTokens(str) { + var tokens = Object.create(null); + var tokensRE = /([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g; + var match; + + while (match = tokensRE.exec(str)) { + tokens[match[1]] = match[2]; + } + + return tokens; + } + + function matchHeaderValue(context, value, header, filter) { + if (utils.isFunction(filter)) { + return filter.call(this, value, header); + } + + if (!utils.isString(value)) return; + + if (utils.isString(filter)) { + return value.indexOf(filter) !== -1; + } + + if (utils.isRegExp(filter)) { + return filter.test(value); + } + } + + function formatHeader(header) { + return header.trim().toLowerCase().replace(/([a-z\d])(\w*)/g, function (w, _char, str) { + return _char.toUpperCase() + str; + }); + } + + function buildAccessors(obj, header) { + var accessorName = utils.toCamelCase(' ' + header); + ['get', 'set', 'has'].forEach(function (methodName) { + Object.defineProperty(obj, methodName + accessorName, { + value: function value(arg1, arg2, arg3) { + return this[methodName].call(this, header, arg1, arg2, arg3); + }, + configurable: true + }); + }); + } + + function findKey(obj, key) { + key = key.toLowerCase(); + var keys = Object.keys(obj); + var i = keys.length; + + var _key; + + while (i-- > 0) { + _key = keys[i]; + + if (key === _key.toLowerCase()) { + return _key; + } + } + + return null; + } + + function AxiosHeaders(headers, defaults) { + headers && this.set(headers); + this[$defaults] = defaults || null; + } + + Object.assign(AxiosHeaders.prototype, { + set: function set(header, valueOrRewrite, rewrite) { + var self = this; + + function setHeader(_value, _header, _rewrite) { + var lHeader = normalizeHeader(_header); + + if (!lHeader) { + throw new Error('header name must be a non-empty string'); + } + + var key = findKey(self, lHeader); + + if (key && _rewrite !== true && (self[key] === false || _rewrite === false)) { + return; + } + + if (utils.isArray(_value)) { + _value = _value.map(normalizeValue); + } else { + _value = normalizeValue(_value); + } + + self[key || _header] = _value; + } + + if (utils.isPlainObject(header)) { + utils.forEach(header, function (_value, _header) { + setHeader(_value, _header, valueOrRewrite); + }); + } else { + setHeader(valueOrRewrite, header, rewrite); + } + + return this; + }, + get: function get(header, parser) { + header = normalizeHeader(header); + if (!header) return undefined; + var key = findKey(this, header); + + if (key) { + var value = this[key]; + + if (!parser) { + return value; + } + + if (parser === true) { + return parseTokens(value); + } + + if (utils.isFunction(parser)) { + return parser.call(this, value, key); + } + + if (utils.isRegExp(parser)) { + return parser.exec(value); + } + + throw new TypeError('parser must be boolean|regexp|function'); + } + }, + has: function has(header, matcher) { + header = normalizeHeader(header); + + if (header) { + var key = findKey(this, header); + return !!(key && (!matcher || matchHeaderValue(this, this[key], key, matcher))); + } + + return false; + }, + "delete": function _delete(header, matcher) { + var self = this; + var deleted = false; + + function deleteHeader(_header) { + _header = normalizeHeader(_header); + + if (_header) { + var key = findKey(self, _header); + + if (key && (!matcher || matchHeaderValue(self, self[key], key, matcher))) { + delete self[key]; + deleted = true; + } + } + } + + if (utils.isArray(header)) { + header.forEach(deleteHeader); + } else { + deleteHeader(header); + } + + return deleted; + }, + clear: function clear() { + return Object.keys(this).forEach(this["delete"].bind(this)); + }, + normalize: function normalize(format) { + var self = this; + var headers = {}; + utils.forEach(this, function (value, header) { + var key = findKey(headers, header); + + if (key) { + self[key] = normalizeValue(value); + delete self[header]; + return; + } + + var normalized = format ? formatHeader(header) : String(header).trim(); + + if (normalized !== header) { + delete self[header]; + } + + self[normalized] = normalizeValue(value); + headers[normalized] = true; + }); + return this; + }, + toJSON: function toJSON() { + var obj = Object.create(null); + utils.forEach(Object.assign({}, this[$defaults] || null, this), function (value, header) { + if (value == null || value === false) return; + obj[header] = utils.isArray(value) ? value.join(', ') : value; + }); + return obj; + } + }); + Object.assign(AxiosHeaders, { + from: function from(thing) { + if (utils.isString(thing)) { + return new this(parseHeaders(thing)); + } + + return thing instanceof this ? thing : new this(thing); + }, + accessor: function accessor(header) { + var internals = this[$internals] = this[$internals] = { + accessors: {} + }; + var accessors = internals.accessors; + var prototype = this.prototype; + + function defineAccessor(_header) { + var lHeader = normalizeHeader(_header); + + if (!accessors[lHeader]) { + buildAccessors(prototype, _header); + accessors[lHeader] = true; + } + } + + utils.isArray(header) ? header.forEach(defineAccessor) : defineAccessor(header); + return this; + } + }); + AxiosHeaders.accessor(['Content-Type', 'Content-Length', 'Accept', 'Accept-Encoding', 'User-Agent']); + utils.freezeMethods(AxiosHeaders.prototype); + utils.freezeMethods(AxiosHeaders); + + /** + * Calculate data maxRate + * @param {Number} [samplesCount= 10] + * @param {Number} [min= 1000] + * @returns {Function} + */ + + function speedometer(samplesCount, min) { + samplesCount = samplesCount || 10; + var bytes = new Array(samplesCount); + var timestamps = new Array(samplesCount); + var head = 0; + var tail = 0; + var firstSampleTS; + min = min !== undefined ? min : 1000; + return function push(chunkLength) { + var now = Date.now(); + var startedAt = timestamps[tail]; + + if (!firstSampleTS) { + firstSampleTS = now; + } + + bytes[head] = chunkLength; + timestamps[head] = now; + var i = tail; + var bytesCount = 0; + + while (i !== head) { + bytesCount += bytes[i++]; + i = i % samplesCount; + } + + head = (head + 1) % samplesCount; + + if (head === tail) { + tail = (tail + 1) % samplesCount; + } + + if (now - firstSampleTS < min) { + return; + } + + var passed = startedAt && now - startedAt; + return passed ? Math.round(bytesCount * 1000 / passed) : undefined; + }; + } + + function progressEventReducer(listener, isDownloadStream) { + var bytesNotified = 0; + + var _speedometer = speedometer(50, 250); + + return function (e) { + var loaded = e.loaded; + var total = e.lengthComputable ? e.total : undefined; + var progressBytes = loaded - bytesNotified; + + var rate = _speedometer(progressBytes); + + var inRange = loaded <= total; + bytesNotified = loaded; + var data = { + loaded: loaded, + total: total, + progress: total ? loaded / total : undefined, + bytes: progressBytes, + rate: rate ? rate : undefined, + estimated: rate && total && inRange ? (total - loaded) / rate : undefined + }; + data[isDownloadStream ? 'download' : 'upload'] = true; + listener(data); + }; + } + + function xhrAdapter(config) { + return new Promise(function dispatchXhrRequest(resolve, reject) { + var requestData = config.data; + var requestHeaders = AxiosHeaders.from(config.headers).normalize(); + var responseType = config.responseType; + var onCanceled; + + function done() { + if (config.cancelToken) { + config.cancelToken.unsubscribe(onCanceled); + } + + if (config.signal) { + config.signal.removeEventListener('abort', onCanceled); + } + } + + if (utils.isFormData(requestData) && platform.isStandardBrowserEnv) { + requestHeaders.setContentType(false); // Let the browser set it + } + + var request = new XMLHttpRequest(); // HTTP basic authentication + + if (config.auth) { + var username = config.auth.username || ''; + var password = config.auth.password ? unescape(encodeURIComponent(config.auth.password)) : ''; + requestHeaders.set('Authorization', 'Basic ' + btoa(username + ':' + password)); + } + + var fullPath = buildFullPath(config.baseURL, config.url); + request.open(config.method.toUpperCase(), buildURL(fullPath, config.params, config.paramsSerializer), true); // Set the request timeout in MS + + request.timeout = config.timeout; + + function onloadend() { + if (!request) { + return; + } // Prepare the response + + + var responseHeaders = AxiosHeaders.from('getAllResponseHeaders' in request && request.getAllResponseHeaders()); + var responseData = !responseType || responseType === 'text' || responseType === 'json' ? request.responseText : request.response; + var response = { + data: responseData, + status: request.status, + statusText: request.statusText, + headers: responseHeaders, + config: config, + request: request + }; + settle(function _resolve(value) { + resolve(value); + done(); + }, function _reject(err) { + reject(err); + done(); + }, response); // Clean up request + + request = null; + } + + if ('onloadend' in request) { + // Use onloadend if available + request.onloadend = onloadend; + } else { + // Listen for ready state to emulate onloadend + request.onreadystatechange = function handleLoad() { + if (!request || request.readyState !== 4) { + return; + } // The request errored out and we didn't get a response, this will be + // handled by onerror instead + // With one exception: request that using file: protocol, most browsers + // will return status as 0 even though it's a successful request + + + if (request.status === 0 && !(request.responseURL && request.responseURL.indexOf('file:') === 0)) { + return; + } // readystate handler is calling before onerror or ontimeout handlers, + // so we should call onloadend on the next 'tick' + + + setTimeout(onloadend); + }; + } // Handle browser request cancellation (as opposed to a manual cancellation) + + + request.onabort = function handleAbort() { + if (!request) { + return; + } + + reject(new AxiosError('Request aborted', AxiosError.ECONNABORTED, config, request)); // Clean up request + + request = null; + }; // Handle low level network errors + + + request.onerror = function handleError() { + // Real errors are hidden from us by the browser + // onerror should only fire if it's a network error + reject(new AxiosError('Network Error', AxiosError.ERR_NETWORK, config, request)); // Clean up request + + request = null; + }; // Handle timeout + + + request.ontimeout = function handleTimeout() { + var timeoutErrorMessage = config.timeout ? 'timeout of ' + config.timeout + 'ms exceeded' : 'timeout exceeded'; + var transitional = config.transitional || transitionalDefaults; + + if (config.timeoutErrorMessage) { + timeoutErrorMessage = config.timeoutErrorMessage; + } + + reject(new AxiosError(timeoutErrorMessage, transitional.clarifyTimeoutError ? AxiosError.ETIMEDOUT : AxiosError.ECONNABORTED, config, request)); // Clean up request + + request = null; + }; // Add xsrf header + // This is only done if running in a standard browser environment. + // Specifically not if we're in a web worker, or react-native. + + + if (platform.isStandardBrowserEnv) { + // Add xsrf header + var xsrfValue = (config.withCredentials || isURLSameOrigin(fullPath)) && config.xsrfCookieName && cookies.read(config.xsrfCookieName); + + if (xsrfValue) { + requestHeaders.set(config.xsrfHeaderName, xsrfValue); + } + } // Remove Content-Type if data is undefined + + + requestData === undefined && requestHeaders.setContentType(null); // Add headers to the request + + if ('setRequestHeader' in request) { + utils.forEach(requestHeaders.toJSON(), function setRequestHeader(val, key) { + request.setRequestHeader(key, val); + }); + } // Add withCredentials to request if needed + + + if (!utils.isUndefined(config.withCredentials)) { + request.withCredentials = !!config.withCredentials; + } // Add responseType to request if needed + + + if (responseType && responseType !== 'json') { + request.responseType = config.responseType; + } // Handle progress if needed + + + if (typeof config.onDownloadProgress === 'function') { + request.addEventListener('progress', progressEventReducer(config.onDownloadProgress, true)); + } // Not all browsers support upload events + + + if (typeof config.onUploadProgress === 'function' && request.upload) { + request.upload.addEventListener('progress', progressEventReducer(config.onUploadProgress)); + } + + if (config.cancelToken || config.signal) { + // Handle cancellation + // eslint-disable-next-line func-names + onCanceled = function onCanceled(cancel) { + if (!request) { + return; + } + + reject(!cancel || cancel.type ? new CanceledError(null, config, request) : cancel); + request.abort(); + request = null; + }; + + config.cancelToken && config.cancelToken.subscribe(onCanceled); + + if (config.signal) { + config.signal.aborted ? onCanceled() : config.signal.addEventListener('abort', onCanceled); + } + } + + var protocol = parseProtocol(fullPath); + + if (protocol && platform.protocols.indexOf(protocol) === -1) { + reject(new AxiosError('Unsupported protocol ' + protocol + ':', AxiosError.ERR_BAD_REQUEST, config)); + return; + } // Send the request + + + request.send(requestData || null); + }); + } + + var adapters = { + http: xhrAdapter, + xhr: xhrAdapter + }; + var adapters$1 = { + getAdapter: function getAdapter(nameOrAdapter) { + if (utils.isString(nameOrAdapter)) { + var adapter = adapters[nameOrAdapter]; + + if (!nameOrAdapter) { + throw Error(utils.hasOwnProp(nameOrAdapter) ? "Adapter '".concat(nameOrAdapter, "' is not available in the build") : "Can not resolve adapter '".concat(nameOrAdapter, "'")); + } + + return adapter; + } + + if (!utils.isFunction(nameOrAdapter)) { + throw new TypeError('adapter is not a function'); + } + + return nameOrAdapter; + }, + adapters: adapters + }; + + var DEFAULT_CONTENT_TYPE = { + 'Content-Type': 'application/x-www-form-urlencoded' + }; + /** + * If the browser has an XMLHttpRequest object, use the XHR adapter, otherwise use the HTTP + * adapter + * + * @returns {Function} + */ + + function getDefaultAdapter() { + var adapter; + + if (typeof XMLHttpRequest !== 'undefined') { + // For browsers use XHR adapter + adapter = adapters$1.getAdapter('xhr'); + } else if (typeof process !== 'undefined' && utils.kindOf(process) === 'process') { + // For node use HTTP adapter + adapter = adapters$1.getAdapter('http'); + } + + return adapter; + } + /** + * It takes a string, tries to parse it, and if it fails, it returns the stringified version + * of the input + * + * @param {any} rawValue - The value to be stringified. + * @param {Function} parser - A function that parses a string into a JavaScript object. + * @param {Function} encoder - A function that takes a value and returns a string. + * + * @returns {string} A stringified version of the rawValue. + */ + + + function stringifySafely(rawValue, parser, encoder) { + if (utils.isString(rawValue)) { + try { + (parser || JSON.parse)(rawValue); + return utils.trim(rawValue); + } catch (e) { + if (e.name !== 'SyntaxError') { + throw e; + } + } + } + + return (encoder || JSON.stringify)(rawValue); + } + + var defaults = { + transitional: transitionalDefaults, + adapter: getDefaultAdapter(), + transformRequest: [function transformRequest(data, headers) { + var contentType = headers.getContentType() || ''; + var hasJSONContentType = contentType.indexOf('application/json') > -1; + var isObjectPayload = utils.isObject(data); + + if (isObjectPayload && utils.isHTMLForm(data)) { + data = new FormData(data); + } + + var isFormData = utils.isFormData(data); + + if (isFormData) { + if (!hasJSONContentType) { + return data; + } + + return hasJSONContentType ? JSON.stringify(formDataToJSON(data)) : data; + } + + if (utils.isArrayBuffer(data) || utils.isBuffer(data) || utils.isStream(data) || utils.isFile(data) || utils.isBlob(data)) { + return data; + } + + if (utils.isArrayBufferView(data)) { + return data.buffer; + } + + if (utils.isURLSearchParams(data)) { + headers.setContentType('application/x-www-form-urlencoded;charset=utf-8', false); + return data.toString(); + } + + var isFileList; + + if (isObjectPayload) { + if (contentType.indexOf('application/x-www-form-urlencoded') > -1) { + return toURLEncodedForm(data, this.formSerializer).toString(); + } + + if ((isFileList = utils.isFileList(data)) || contentType.indexOf('multipart/form-data') > -1) { + var _FormData = this.env && this.env.FormData; + + return toFormData(isFileList ? { + 'files[]': data + } : data, _FormData && new _FormData(), this.formSerializer); + } + } + + if (isObjectPayload || hasJSONContentType) { + headers.setContentType('application/json', false); + return stringifySafely(data); + } + + return data; + }], + transformResponse: [function transformResponse(data) { + var transitional = this.transitional || defaults.transitional; + var forcedJSONParsing = transitional && transitional.forcedJSONParsing; + var JSONRequested = this.responseType === 'json'; + + if (data && utils.isString(data) && (forcedJSONParsing && !this.responseType || JSONRequested)) { + var silentJSONParsing = transitional && transitional.silentJSONParsing; + var strictJSONParsing = !silentJSONParsing && JSONRequested; + + try { + return JSON.parse(data); + } catch (e) { + if (strictJSONParsing) { + if (e.name === 'SyntaxError') { + throw AxiosError.from(e, AxiosError.ERR_BAD_RESPONSE, this, null, this.response); + } + + throw e; + } + } + } + + return data; + }], + + /** + * A timeout in milliseconds to abort a request. If set to 0 (default) a + * timeout is not created. + */ + timeout: 0, + xsrfCookieName: 'XSRF-TOKEN', + xsrfHeaderName: 'X-XSRF-TOKEN', + maxContentLength: -1, + maxBodyLength: -1, + env: { + FormData: platform.classes.FormData, + Blob: platform.classes.Blob + }, + validateStatus: function validateStatus(status) { + return status >= 200 && status < 300; + }, + headers: { + common: { + 'Accept': 'application/json, text/plain, */*' + } + } + }; + utils.forEach(['delete', 'get', 'head'], function forEachMethodNoData(method) { + defaults.headers[method] = {}; + }); + utils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) { + defaults.headers[method] = utils.merge(DEFAULT_CONTENT_TYPE); + }); + + /** + * Transform the data for a request or a response + * + * @param {Array|Function} fns A single function or Array of functions + * @param {?Object} response The response object + * + * @returns {*} The resulting transformed data + */ + + function transformData(fns, response) { + var config = this || defaults; + var context = response || config; + var headers = AxiosHeaders.from(context.headers); + var data = context.data; + utils.forEach(fns, function transform(fn) { + data = fn.call(config, data, headers.normalize(), response ? response.status : undefined); + }); + headers.normalize(); + return data; + } + + function isCancel(value) { + return !!(value && value.__CANCEL__); + } + + /** + * Throws a `CanceledError` if cancellation has been requested. + * + * @param {Object} config The config that is to be used for the request + * + * @returns {void} + */ + + function throwIfCancellationRequested(config) { + if (config.cancelToken) { + config.cancelToken.throwIfRequested(); + } + + if (config.signal && config.signal.aborted) { + throw new CanceledError(); + } + } + /** + * Dispatch a request to the server using the configured adapter. + * + * @param {object} config The config that is to be used for the request + * + * @returns {Promise} The Promise to be fulfilled + */ + + + function dispatchRequest(config) { + throwIfCancellationRequested(config); + config.headers = AxiosHeaders.from(config.headers); // Transform request data + + config.data = transformData.call(config, config.transformRequest); + var adapter = config.adapter || defaults.adapter; + return adapter(config).then(function onAdapterResolution(response) { + throwIfCancellationRequested(config); // Transform response data + + response.data = transformData.call(config, config.transformResponse, response); + response.headers = AxiosHeaders.from(response.headers); + return response; + }, function onAdapterRejection(reason) { + if (!isCancel(reason)) { + throwIfCancellationRequested(config); // Transform response data + + if (reason && reason.response) { + reason.response.data = transformData.call(config, config.transformResponse, reason.response); + reason.response.headers = AxiosHeaders.from(reason.response.headers); + } + } + + return Promise.reject(reason); + }); + } + + /** + * Config-specific merge-function which creates a new config-object + * by merging two configuration objects together. + * + * @param {Object} config1 + * @param {Object} config2 + * + * @returns {Object} New object resulting from merging config2 to config1 + */ + + function mergeConfig(config1, config2) { + // eslint-disable-next-line no-param-reassign + config2 = config2 || {}; + var config = {}; + + function getMergedValue(target, source) { + if (utils.isPlainObject(target) && utils.isPlainObject(source)) { + return utils.merge(target, source); + } else if (utils.isPlainObject(source)) { + return utils.merge({}, source); + } else if (utils.isArray(source)) { + return source.slice(); + } + + return source; + } // eslint-disable-next-line consistent-return + + + function mergeDeepProperties(prop) { + if (!utils.isUndefined(config2[prop])) { + return getMergedValue(config1[prop], config2[prop]); + } else if (!utils.isUndefined(config1[prop])) { + return getMergedValue(undefined, config1[prop]); + } + } // eslint-disable-next-line consistent-return + + + function valueFromConfig2(prop) { + if (!utils.isUndefined(config2[prop])) { + return getMergedValue(undefined, config2[prop]); + } + } // eslint-disable-next-line consistent-return + + + function defaultToConfig2(prop) { + if (!utils.isUndefined(config2[prop])) { + return getMergedValue(undefined, config2[prop]); + } else if (!utils.isUndefined(config1[prop])) { + return getMergedValue(undefined, config1[prop]); + } + } // eslint-disable-next-line consistent-return + + + function mergeDirectKeys(prop) { + if (prop in config2) { + return getMergedValue(config1[prop], config2[prop]); + } else if (prop in config1) { + return getMergedValue(undefined, config1[prop]); + } + } + + var mergeMap = { + 'url': valueFromConfig2, + 'method': valueFromConfig2, + 'data': valueFromConfig2, + 'baseURL': defaultToConfig2, + 'transformRequest': defaultToConfig2, + 'transformResponse': defaultToConfig2, + 'paramsSerializer': defaultToConfig2, + 'timeout': defaultToConfig2, + 'timeoutMessage': defaultToConfig2, + 'withCredentials': defaultToConfig2, + 'adapter': defaultToConfig2, + 'responseType': defaultToConfig2, + 'xsrfCookieName': defaultToConfig2, + 'xsrfHeaderName': defaultToConfig2, + 'onUploadProgress': defaultToConfig2, + 'onDownloadProgress': defaultToConfig2, + 'decompress': defaultToConfig2, + 'maxContentLength': defaultToConfig2, + 'maxBodyLength': defaultToConfig2, + 'beforeRedirect': defaultToConfig2, + 'transport': defaultToConfig2, + 'httpAgent': defaultToConfig2, + 'httpsAgent': defaultToConfig2, + 'cancelToken': defaultToConfig2, + 'socketPath': defaultToConfig2, + 'responseEncoding': defaultToConfig2, + 'validateStatus': mergeDirectKeys + }; + utils.forEach(Object.keys(config1).concat(Object.keys(config2)), function computeConfigValue(prop) { + var merge = mergeMap[prop] || mergeDeepProperties; + var configValue = merge(prop); + utils.isUndefined(configValue) && merge !== mergeDirectKeys || (config[prop] = configValue); + }); + return config; + } + + var VERSION = "1.0.0"; + + var validators$1 = {}; // eslint-disable-next-line func-names + + ['object', 'boolean', 'number', 'function', 'string', 'symbol'].forEach(function (type, i) { + validators$1[type] = function validator(thing) { + return _typeof(thing) === type || 'a' + (i < 1 ? 'n ' : ' ') + type; + }; + }); + var deprecatedWarnings = {}; + /** + * Transitional option validator + * + * @param {function|boolean?} validator - set to false if the transitional option has been removed + * @param {string?} version - deprecated version / removed since version + * @param {string?} message - some message with additional info + * + * @returns {function} + */ + + validators$1.transitional = function transitional(validator, version, message) { + function formatMessage(opt, desc) { + return '[Axios v' + VERSION + '] Transitional option \'' + opt + '\'' + desc + (message ? '. ' + message : ''); + } // eslint-disable-next-line func-names + + + return function (value, opt, opts) { + if (validator === false) { + throw new AxiosError(formatMessage(opt, ' has been removed' + (version ? ' in ' + version : '')), AxiosError.ERR_DEPRECATED); + } + + if (version && !deprecatedWarnings[opt]) { + deprecatedWarnings[opt] = true; // eslint-disable-next-line no-console + + console.warn(formatMessage(opt, ' has been deprecated since v' + version + ' and will be removed in the near future')); + } + + return validator ? validator(value, opt, opts) : true; + }; + }; + /** + * Assert object's properties type + * + * @param {object} options + * @param {object} schema + * @param {boolean?} allowUnknown + * + * @returns {object} + */ + + + function assertOptions(options, schema, allowUnknown) { + if (_typeof(options) !== 'object') { + throw new AxiosError('options must be an object', AxiosError.ERR_BAD_OPTION_VALUE); + } + + var keys = Object.keys(options); + var i = keys.length; + + while (i-- > 0) { + var opt = keys[i]; + var validator = schema[opt]; + + if (validator) { + var value = options[opt]; + var result = value === undefined || validator(value, opt, options); + + if (result !== true) { + throw new AxiosError('option ' + opt + ' must be ' + result, AxiosError.ERR_BAD_OPTION_VALUE); + } + + continue; + } + + if (allowUnknown !== true) { + throw new AxiosError('Unknown option ' + opt, AxiosError.ERR_BAD_OPTION); + } + } + } + + var validator = { + assertOptions: assertOptions, + validators: validators$1 + }; + + var validators = validator.validators; + /** + * Create a new instance of Axios + * + * @param {Object} instanceConfig The default config for the instance + * + * @return {Axios} A new instance of Axios + */ + + var Axios = /*#__PURE__*/function () { + function Axios(instanceConfig) { + _classCallCheck(this, Axios); + + this.defaults = instanceConfig; + this.interceptors = { + request: new InterceptorManager(), + response: new InterceptorManager() + }; + } + /** + * Dispatch a request + * + * @param {String|Object} configOrUrl The config specific for this request (merged with this.defaults) + * @param {?Object} config + * + * @returns {Promise} The Promise to be fulfilled + */ + + + _createClass(Axios, [{ + key: "request", + value: function request(configOrUrl, config) { + /*eslint no-param-reassign:0*/ + // Allow for axios('example/url'[, config]) a la fetch API + if (typeof configOrUrl === 'string') { + config = config || {}; + config.url = configOrUrl; + } else { + config = configOrUrl || {}; + } + + config = mergeConfig(this.defaults, config); + var transitional = config.transitional; + + if (transitional !== undefined) { + validator.assertOptions(transitional, { + silentJSONParsing: validators.transitional(validators["boolean"]), + forcedJSONParsing: validators.transitional(validators["boolean"]), + clarifyTimeoutError: validators.transitional(validators["boolean"]) + }, false); + } // Set config.method + + + config.method = (config.method || this.defaults.method || 'get').toLowerCase(); // Flatten headers + + var defaultHeaders = config.headers && utils.merge(config.headers.common, config.headers[config.method]); + defaultHeaders && utils.forEach(['delete', 'get', 'head', 'post', 'put', 'patch', 'common'], function cleanHeaderConfig(method) { + delete config.headers[method]; + }); + config.headers = new AxiosHeaders(config.headers, defaultHeaders); // filter out skipped interceptors + + var requestInterceptorChain = []; + var synchronousRequestInterceptors = true; + this.interceptors.request.forEach(function unshiftRequestInterceptors(interceptor) { + if (typeof interceptor.runWhen === 'function' && interceptor.runWhen(config) === false) { + return; + } + + synchronousRequestInterceptors = synchronousRequestInterceptors && interceptor.synchronous; + requestInterceptorChain.unshift(interceptor.fulfilled, interceptor.rejected); + }); + var responseInterceptorChain = []; + this.interceptors.response.forEach(function pushResponseInterceptors(interceptor) { + responseInterceptorChain.push(interceptor.fulfilled, interceptor.rejected); + }); + var promise; + var i = 0; + var len; + + if (!synchronousRequestInterceptors) { + var chain = [dispatchRequest.bind(this), undefined]; + chain.unshift.apply(chain, requestInterceptorChain); + chain.push.apply(chain, responseInterceptorChain); + len = chain.length; + promise = Promise.resolve(config); + + while (i < len) { + promise = promise.then(chain[i++], chain[i++]); + } + + return promise; + } + + len = requestInterceptorChain.length; + var newConfig = config; + i = 0; + + while (i < len) { + var onFulfilled = requestInterceptorChain[i++]; + var onRejected = requestInterceptorChain[i++]; + + try { + newConfig = onFulfilled(newConfig); + } catch (error) { + onRejected.call(this, error); + break; + } + } + + try { + promise = dispatchRequest.call(this, newConfig); + } catch (error) { + return Promise.reject(error); + } + + i = 0; + len = responseInterceptorChain.length; + + while (i < len) { + promise = promise.then(responseInterceptorChain[i++], responseInterceptorChain[i++]); + } + + return promise; + } + }, { + key: "getUri", + value: function getUri(config) { + config = mergeConfig(this.defaults, config); + var fullPath = buildFullPath(config.baseURL, config.url); + return buildURL(fullPath, config.params, config.paramsSerializer); + } + }]); + + return Axios; + }(); // Provide aliases for supported request methods + + + utils.forEach(['delete', 'get', 'head', 'options'], function forEachMethodNoData(method) { + /*eslint func-names:0*/ + Axios.prototype[method] = function (url, config) { + return this.request(mergeConfig(config || {}, { + method: method, + url: url, + data: (config || {}).data + })); + }; + }); + utils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) { + /*eslint func-names:0*/ + function generateHTTPMethod(isForm) { + return function httpMethod(url, data, config) { + return this.request(mergeConfig(config || {}, { + method: method, + headers: isForm ? { + 'Content-Type': 'multipart/form-data' + } : {}, + url: url, + data: data + })); + }; + } + + Axios.prototype[method] = generateHTTPMethod(); + Axios.prototype[method + 'Form'] = generateHTTPMethod(true); + }); + + /** + * A `CancelToken` is an object that can be used to request cancellation of an operation. + * + * @param {Function} executor The executor function. + * + * @returns {CancelToken} + */ + + var CancelToken = /*#__PURE__*/function () { + function CancelToken(executor) { + _classCallCheck(this, CancelToken); + + if (typeof executor !== 'function') { + throw new TypeError('executor must be a function.'); + } + + var resolvePromise; + this.promise = new Promise(function promiseExecutor(resolve) { + resolvePromise = resolve; + }); + var token = this; // eslint-disable-next-line func-names + + this.promise.then(function (cancel) { + if (!token._listeners) return; + var i = token._listeners.length; + + while (i-- > 0) { + token._listeners[i](cancel); + } + + token._listeners = null; + }); // eslint-disable-next-line func-names + + this.promise.then = function (onfulfilled) { + var _resolve; // eslint-disable-next-line func-names + + + var promise = new Promise(function (resolve) { + token.subscribe(resolve); + _resolve = resolve; + }).then(onfulfilled); + + promise.cancel = function reject() { + token.unsubscribe(_resolve); + }; + + return promise; + }; + + executor(function cancel(message, config, request) { + if (token.reason) { + // Cancellation has already been requested + return; + } + + token.reason = new CanceledError(message, config, request); + resolvePromise(token.reason); + }); + } + /** + * Throws a `CanceledError` if cancellation has been requested. + */ + + + _createClass(CancelToken, [{ + key: "throwIfRequested", + value: function throwIfRequested() { + if (this.reason) { + throw this.reason; + } + } + /** + * Subscribe to the cancel signal + */ + + }, { + key: "subscribe", + value: function subscribe(listener) { + if (this.reason) { + listener(this.reason); + return; + } + + if (this._listeners) { + this._listeners.push(listener); + } else { + this._listeners = [listener]; + } + } + /** + * Unsubscribe from the cancel signal + */ + + }, { + key: "unsubscribe", + value: function unsubscribe(listener) { + if (!this._listeners) { + return; + } + + var index = this._listeners.indexOf(listener); + + if (index !== -1) { + this._listeners.splice(index, 1); + } + } + /** + * Returns an object that contains a new `CancelToken` and a function that, when called, + * cancels the `CancelToken`. + */ + + }], [{ + key: "source", + value: function source() { + var cancel; + var token = new CancelToken(function executor(c) { + cancel = c; + }); + return { + token: token, + cancel: cancel + }; + } + }]); + + return CancelToken; + }(); + + /** + * Syntactic sugar for invoking a function and expanding an array for arguments. + * + * Common use case would be to use `Function.prototype.apply`. + * + * ```js + * function f(x, y, z) {} + * var args = [1, 2, 3]; + * f.apply(null, args); + * ``` + * + * With `spread` this example can be re-written. + * + * ```js + * spread(function(x, y, z) {})([1, 2, 3]); + * ``` + * + * @param {Function} callback + * + * @returns {Function} + */ + + function spread(callback) { + return function wrap(arr) { + return callback.apply(null, arr); + }; + } + + /** + * Determines whether the payload is an error thrown by Axios + * + * @param {*} payload The value to test + * + * @returns {boolean} True if the payload is an error thrown by Axios, otherwise false + */ + + function isAxiosError(payload) { + return utils.isObject(payload) && payload.isAxiosError === true; + } + + /** + * Create an instance of Axios + * + * @param {Object} defaultConfig The default config for the instance + * + * @returns {Axios} A new instance of Axios + */ + + function createInstance(defaultConfig) { + var context = new Axios(defaultConfig); + var instance = bind(Axios.prototype.request, context); // Copy axios.prototype to instance + + utils.extend(instance, Axios.prototype, context, { + allOwnKeys: true + }); // Copy context to instance + + utils.extend(instance, context, null, { + allOwnKeys: true + }); // Factory for creating new instances + + instance.create = function create(instanceConfig) { + return createInstance(mergeConfig(defaultConfig, instanceConfig)); + }; + + return instance; + } // Create the default instance to be exported + + + var axios = createInstance(defaults); // Expose Axios class to allow class inheritance + + axios.Axios = Axios; // Expose Cancel & CancelToken + + axios.CanceledError = CanceledError; + axios.CancelToken = CancelToken; + axios.isCancel = isCancel; + axios.VERSION = VERSION; + axios.toFormData = toFormData; // Expose AxiosError class + + axios.AxiosError = AxiosError; // alias for CanceledError for backward compatibility + + axios.Cancel = axios.CanceledError; // Expose all/spread + + axios.all = function all(promises) { + return Promise.all(promises); + }; + + axios.spread = spread; // Expose isAxiosError + + axios.isAxiosError = isAxiosError; + + axios.formToJSON = function (thing) { + return formDataToJSON(utils.isHTMLForm(thing) ? new FormData(thing) : thing); + }; + + return axios; + +})); +//# sourceMappingURL=axios.js.map diff --git a/node_modules/axios/dist/axios.js.map b/node_modules/axios/dist/axios.js.map new file mode 100644 index 000000000..da470f483 --- /dev/null +++ b/node_modules/axios/dist/axios.js.map @@ -0,0 +1 @@ +{"version":3,"file":"axios.js","sources":["../lib/helpers/bind.js","../lib/utils.js","../lib/core/AxiosError.js","../node_modules/form-data/lib/browser.js","../lib/helpers/toFormData.js","../lib/helpers/AxiosURLSearchParams.js","../lib/helpers/buildURL.js","../lib/core/InterceptorManager.js","../lib/defaults/transitional.js","../lib/platform/browser/classes/URLSearchParams.js","../lib/platform/browser/classes/FormData.js","../lib/platform/browser/index.js","../lib/helpers/toURLEncodedForm.js","../lib/helpers/formDataToJSON.js","../lib/core/settle.js","../lib/helpers/cookies.js","../lib/helpers/isAbsoluteURL.js","../lib/helpers/combineURLs.js","../lib/core/buildFullPath.js","../lib/helpers/isURLSameOrigin.js","../lib/cancel/CanceledError.js","../lib/helpers/parseProtocol.js","../lib/helpers/parseHeaders.js","../lib/core/AxiosHeaders.js","../lib/helpers/speedometer.js","../lib/adapters/xhr.js","../lib/adapters/index.js","../lib/defaults/index.js","../lib/core/transformData.js","../lib/cancel/isCancel.js","../lib/core/dispatchRequest.js","../lib/core/mergeConfig.js","../lib/env/data.js","../lib/helpers/validator.js","../lib/core/Axios.js","../lib/cancel/CancelToken.js","../lib/helpers/spread.js","../lib/helpers/isAxiosError.js","../lib/axios.js"],"sourcesContent":["'use strict';\n\nexport default function bind(fn, thisArg) {\n return function wrap() {\n return fn.apply(thisArg, arguments);\n };\n}\n","'use strict';\n\nimport bind from './helpers/bind.js';\n\n// utils is a library of generic helper functions non-specific to axios\n\nconst {toString} = Object.prototype;\nconst {getPrototypeOf} = Object;\n\nconst kindOf = (cache => thing => {\n const str = toString.call(thing);\n return cache[str] || (cache[str] = str.slice(8, -1).toLowerCase());\n})(Object.create(null));\n\nconst kindOfTest = (type) => {\n type = type.toLowerCase();\n return (thing) => kindOf(thing) === type\n}\n\nconst typeOfTest = type => thing => typeof thing === type;\n\n/**\n * Determine if a value is an Array\n *\n * @param {Object} val The value to test\n *\n * @returns {boolean} True if value is an Array, otherwise false\n */\nconst {isArray} = Array;\n\n/**\n * Determine if a value is undefined\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if the value is undefined, otherwise false\n */\nconst isUndefined = typeOfTest('undefined');\n\n/**\n * Determine if a value is a Buffer\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a Buffer, otherwise false\n */\nfunction isBuffer(val) {\n return val !== null && !isUndefined(val) && val.constructor !== null && !isUndefined(val.constructor)\n && isFunction(val.constructor.isBuffer) && val.constructor.isBuffer(val);\n}\n\n/**\n * Determine if a value is an ArrayBuffer\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is an ArrayBuffer, otherwise false\n */\nconst isArrayBuffer = kindOfTest('ArrayBuffer');\n\n\n/**\n * Determine if a value is a view on an ArrayBuffer\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a view on an ArrayBuffer, otherwise false\n */\nfunction isArrayBufferView(val) {\n let result;\n if ((typeof ArrayBuffer !== 'undefined') && (ArrayBuffer.isView)) {\n result = ArrayBuffer.isView(val);\n } else {\n result = (val) && (val.buffer) && (isArrayBuffer(val.buffer));\n }\n return result;\n}\n\n/**\n * Determine if a value is a String\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a String, otherwise false\n */\nconst isString = typeOfTest('string');\n\n/**\n * Determine if a value is a Function\n *\n * @param {*} val The value to test\n * @returns {boolean} True if value is a Function, otherwise false\n */\nconst isFunction = typeOfTest('function');\n\n/**\n * Determine if a value is a Number\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a Number, otherwise false\n */\nconst isNumber = typeOfTest('number');\n\n/**\n * Determine if a value is an Object\n *\n * @param {*} thing The value to test\n *\n * @returns {boolean} True if value is an Object, otherwise false\n */\nconst isObject = (thing) => thing !== null && typeof thing === 'object';\n\n/**\n * Determine if a value is a Boolean\n *\n * @param {*} thing The value to test\n * @returns {boolean} True if value is a Boolean, otherwise false\n */\nconst isBoolean = thing => thing === true || thing === false;\n\n/**\n * Determine if a value is a plain Object\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a plain Object, otherwise false\n */\nconst isPlainObject = (val) => {\n if (kindOf(val) !== 'object') {\n return false;\n }\n\n const prototype = getPrototypeOf(val);\n return prototype === null || prototype === Object.prototype;\n}\n\n/**\n * Determine if a value is a Date\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a Date, otherwise false\n */\nconst isDate = kindOfTest('Date');\n\n/**\n * Determine if a value is a File\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a File, otherwise false\n */\nconst isFile = kindOfTest('File');\n\n/**\n * Determine if a value is a Blob\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a Blob, otherwise false\n */\nconst isBlob = kindOfTest('Blob');\n\n/**\n * Determine if a value is a FileList\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a File, otherwise false\n */\nconst isFileList = kindOfTest('FileList');\n\n/**\n * Determine if a value is a Stream\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a Stream, otherwise false\n */\nconst isStream = (val) => isObject(val) && isFunction(val.pipe);\n\n/**\n * Determine if a value is a FormData\n *\n * @param {*} thing The value to test\n *\n * @returns {boolean} True if value is an FormData, otherwise false\n */\nconst isFormData = (thing) => {\n const pattern = '[object FormData]';\n return thing && (\n (typeof FormData === 'function' && thing instanceof FormData) ||\n toString.call(thing) === pattern ||\n (isFunction(thing.toString) && thing.toString() === pattern)\n );\n}\n\n/**\n * Determine if a value is a URLSearchParams object\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a URLSearchParams object, otherwise false\n */\nconst isURLSearchParams = kindOfTest('URLSearchParams');\n\n/**\n * Trim excess whitespace off the beginning and end of a string\n *\n * @param {String} str The String to trim\n *\n * @returns {String} The String freed of excess whitespace\n */\nconst trim = (str) => str.trim ?\n str.trim() : str.replace(/^[\\s\\uFEFF\\xA0]+|[\\s\\uFEFF\\xA0]+$/g, '');\n\n/**\n * Iterate over an Array or an Object invoking a function for each item.\n *\n * If `obj` is an Array callback will be called passing\n * the value, index, and complete array for each item.\n *\n * If 'obj' is an Object callback will be called passing\n * the value, key, and complete object for each property.\n *\n * @param {Object|Array} obj The object to iterate\n * @param {Function} fn The callback to invoke for each item\n *\n * @param {Boolean} [allOwnKeys = false]\n * @returns {void}\n */\nfunction forEach(obj, fn, {allOwnKeys = false} = {}) {\n // Don't bother if no value provided\n if (obj === null || typeof obj === 'undefined') {\n return;\n }\n\n let i;\n let l;\n\n // Force an array if not already something iterable\n if (typeof obj !== 'object') {\n /*eslint no-param-reassign:0*/\n obj = [obj];\n }\n\n if (isArray(obj)) {\n // Iterate over array values\n for (i = 0, l = obj.length; i < l; i++) {\n fn.call(null, obj[i], i, obj);\n }\n } else {\n // Iterate over object keys\n const keys = allOwnKeys ? Object.getOwnPropertyNames(obj) : Object.keys(obj);\n const len = keys.length;\n let key;\n\n for (i = 0; i < len; i++) {\n key = keys[i];\n fn.call(null, obj[key], key, obj);\n }\n }\n}\n\n/**\n * Accepts varargs expecting each argument to be an object, then\n * immutably merges the properties of each object and returns result.\n *\n * When multiple objects contain the same key the later object in\n * the arguments list will take precedence.\n *\n * Example:\n *\n * ```js\n * var result = merge({foo: 123}, {foo: 456});\n * console.log(result.foo); // outputs 456\n * ```\n *\n * @param {Object} obj1 Object to merge\n *\n * @returns {Object} Result of all merge properties\n */\nfunction merge(/* obj1, obj2, obj3, ... */) {\n const result = {};\n const assignValue = (val, key) => {\n if (isPlainObject(result[key]) && isPlainObject(val)) {\n result[key] = merge(result[key], val);\n } else if (isPlainObject(val)) {\n result[key] = merge({}, val);\n } else if (isArray(val)) {\n result[key] = val.slice();\n } else {\n result[key] = val;\n }\n }\n\n for (let i = 0, l = arguments.length; i < l; i++) {\n arguments[i] && forEach(arguments[i], assignValue);\n }\n return result;\n}\n\n/**\n * Extends object a by mutably adding to it the properties of object b.\n *\n * @param {Object} a The object to be extended\n * @param {Object} b The object to copy properties from\n * @param {Object} thisArg The object to bind function to\n *\n * @param {Boolean} [allOwnKeys]\n * @returns {Object} The resulting value of object a\n */\nconst extend = (a, b, thisArg, {allOwnKeys}= {}) => {\n forEach(b, (val, key) => {\n if (thisArg && isFunction(val)) {\n a[key] = bind(val, thisArg);\n } else {\n a[key] = val;\n }\n }, {allOwnKeys});\n return a;\n}\n\n/**\n * Remove byte order marker. This catches EF BB BF (the UTF-8 BOM)\n *\n * @param {string} content with BOM\n *\n * @returns {string} content value without BOM\n */\nconst stripBOM = (content) => {\n if (content.charCodeAt(0) === 0xFEFF) {\n content = content.slice(1);\n }\n return content;\n}\n\n/**\n * Inherit the prototype methods from one constructor into another\n * @param {function} constructor\n * @param {function} superConstructor\n * @param {object} [props]\n * @param {object} [descriptors]\n *\n * @returns {void}\n */\nconst inherits = (constructor, superConstructor, props, descriptors) => {\n constructor.prototype = Object.create(superConstructor.prototype, descriptors);\n constructor.prototype.constructor = constructor;\n Object.defineProperty(constructor, 'super', {\n value: superConstructor.prototype\n });\n props && Object.assign(constructor.prototype, props);\n}\n\n/**\n * Resolve object with deep prototype chain to a flat object\n * @param {Object} sourceObj source object\n * @param {Object} [destObj]\n * @param {Function|Boolean} [filter]\n * @param {Function} [propFilter]\n *\n * @returns {Object}\n */\nconst toFlatObject = (sourceObj, destObj, filter, propFilter) => {\n let props;\n let i;\n let prop;\n const merged = {};\n\n destObj = destObj || {};\n // eslint-disable-next-line no-eq-null,eqeqeq\n if (sourceObj == null) return destObj;\n\n do {\n props = Object.getOwnPropertyNames(sourceObj);\n i = props.length;\n while (i-- > 0) {\n prop = props[i];\n if ((!propFilter || propFilter(prop, sourceObj, destObj)) && !merged[prop]) {\n destObj[prop] = sourceObj[prop];\n merged[prop] = true;\n }\n }\n sourceObj = filter !== false && getPrototypeOf(sourceObj);\n } while (sourceObj && (!filter || filter(sourceObj, destObj)) && sourceObj !== Object.prototype);\n\n return destObj;\n}\n\n/**\n * Determines whether a string ends with the characters of a specified string\n *\n * @param {String} str\n * @param {String} searchString\n * @param {Number} [position= 0]\n *\n * @returns {boolean}\n */\nconst endsWith = (str, searchString, position) => {\n str = String(str);\n if (position === undefined || position > str.length) {\n position = str.length;\n }\n position -= searchString.length;\n const lastIndex = str.indexOf(searchString, position);\n return lastIndex !== -1 && lastIndex === position;\n}\n\n\n/**\n * Returns new array from array like object or null if failed\n *\n * @param {*} [thing]\n *\n * @returns {?Array}\n */\nconst toArray = (thing) => {\n if (!thing) return null;\n if (isArray(thing)) return thing;\n let i = thing.length;\n if (!isNumber(i)) return null;\n const arr = new Array(i);\n while (i-- > 0) {\n arr[i] = thing[i];\n }\n return arr;\n}\n\n/**\n * Checking if the Uint8Array exists and if it does, it returns a function that checks if the\n * thing passed in is an instance of Uint8Array\n *\n * @param {TypedArray}\n *\n * @returns {Array}\n */\n// eslint-disable-next-line func-names\nconst isTypedArray = (TypedArray => {\n // eslint-disable-next-line func-names\n return thing => {\n return TypedArray && thing instanceof TypedArray;\n };\n})(typeof Uint8Array !== 'undefined' && getPrototypeOf(Uint8Array));\n\n/**\n * For each entry in the object, call the function with the key and value.\n *\n * @param {Object} obj - The object to iterate over.\n * @param {Function} fn - The function to call for each entry.\n *\n * @returns {void}\n */\nconst forEachEntry = (obj, fn) => {\n const generator = obj && obj[Symbol.iterator];\n\n const iterator = generator.call(obj);\n\n let result;\n\n while ((result = iterator.next()) && !result.done) {\n const pair = result.value;\n fn.call(obj, pair[0], pair[1]);\n }\n}\n\n/**\n * It takes a regular expression and a string, and returns an array of all the matches\n *\n * @param {string} regExp - The regular expression to match against.\n * @param {string} str - The string to search.\n *\n * @returns {Array}\n */\nconst matchAll = (regExp, str) => {\n let matches;\n const arr = [];\n\n while ((matches = regExp.exec(str)) !== null) {\n arr.push(matches);\n }\n\n return arr;\n}\n\n/* Checking if the kindOfTest function returns true when passed an HTMLFormElement. */\nconst isHTMLForm = kindOfTest('HTMLFormElement');\n\nconst toCamelCase = str => {\n return str.toLowerCase().replace(/[_-\\s]([a-z\\d])(\\w*)/g,\n function replacer(m, p1, p2) {\n return p1.toUpperCase() + p2;\n }\n );\n};\n\n/* Creating a function that will check if an object has a property. */\nconst hasOwnProperty = (({hasOwnProperty}) => (obj, prop) => hasOwnProperty.call(obj, prop))(Object.prototype);\n\n/**\n * Determine if a value is a RegExp object\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a RegExp object, otherwise false\n */\nconst isRegExp = kindOfTest('RegExp');\n\nconst reduceDescriptors = (obj, reducer) => {\n const descriptors = Object.getOwnPropertyDescriptors(obj);\n const reducedDescriptors = {};\n\n forEach(descriptors, (descriptor, name) => {\n if (reducer(descriptor, name, obj) !== false) {\n reducedDescriptors[name] = descriptor;\n }\n });\n\n Object.defineProperties(obj, reducedDescriptors);\n}\n\n/**\n * Makes all methods read-only\n * @param {Object} obj\n */\n\nconst freezeMethods = (obj) => {\n reduceDescriptors(obj, (descriptor, name) => {\n const value = obj[name];\n\n if (!isFunction(value)) return;\n\n descriptor.enumerable = false;\n\n if ('writable' in descriptor) {\n descriptor.writable = false;\n return;\n }\n\n if (!descriptor.set) {\n descriptor.set = () => {\n throw Error('Can not read-only method \\'' + name + '\\'');\n };\n }\n });\n}\n\nconst toObjectSet = (arrayOrString, delimiter) => {\n const obj = {};\n\n const define = (arr) => {\n arr.forEach(value => {\n obj[value] = true;\n });\n }\n\n isArray(arrayOrString) ? define(arrayOrString) : define(String(arrayOrString).split(delimiter));\n\n return obj;\n}\n\nconst noop = () => {}\n\nconst toFiniteNumber = (value, defaultValue) => {\n value = +value;\n return Number.isFinite(value) ? value : defaultValue;\n}\n\nexport default {\n isArray,\n isArrayBuffer,\n isBuffer,\n isFormData,\n isArrayBufferView,\n isString,\n isNumber,\n isBoolean,\n isObject,\n isPlainObject,\n isUndefined,\n isDate,\n isFile,\n isBlob,\n isRegExp,\n isFunction,\n isStream,\n isURLSearchParams,\n isTypedArray,\n isFileList,\n forEach,\n merge,\n extend,\n trim,\n stripBOM,\n inherits,\n toFlatObject,\n kindOf,\n kindOfTest,\n endsWith,\n toArray,\n forEachEntry,\n matchAll,\n isHTMLForm,\n hasOwnProperty,\n hasOwnProp: hasOwnProperty, // an alias to avoid ESLint no-prototype-builtins detection\n reduceDescriptors,\n freezeMethods,\n toObjectSet,\n toCamelCase,\n noop,\n toFiniteNumber\n};\n","'use strict';\n\nimport utils from '../utils.js';\n\n/**\n * Create an Error with the specified message, config, error code, request and response.\n *\n * @param {string} message The error message.\n * @param {string} [code] The error code (for example, 'ECONNABORTED').\n * @param {Object} [config] The config.\n * @param {Object} [request] The request.\n * @param {Object} [response] The response.\n *\n * @returns {Error} The created error.\n */\nfunction AxiosError(message, code, config, request, response) {\n Error.call(this);\n\n if (Error.captureStackTrace) {\n Error.captureStackTrace(this, this.constructor);\n } else {\n this.stack = (new Error()).stack;\n }\n\n this.message = message;\n this.name = 'AxiosError';\n code && (this.code = code);\n config && (this.config = config);\n request && (this.request = request);\n response && (this.response = response);\n}\n\nutils.inherits(AxiosError, Error, {\n toJSON: function toJSON() {\n return {\n // Standard\n message: this.message,\n name: this.name,\n // Microsoft\n description: this.description,\n number: this.number,\n // Mozilla\n fileName: this.fileName,\n lineNumber: this.lineNumber,\n columnNumber: this.columnNumber,\n stack: this.stack,\n // Axios\n config: this.config,\n code: this.code,\n status: this.response && this.response.status ? this.response.status : null\n };\n }\n});\n\nconst prototype = AxiosError.prototype;\nconst descriptors = {};\n\n[\n 'ERR_BAD_OPTION_VALUE',\n 'ERR_BAD_OPTION',\n 'ECONNABORTED',\n 'ETIMEDOUT',\n 'ERR_NETWORK',\n 'ERR_FR_TOO_MANY_REDIRECTS',\n 'ERR_DEPRECATED',\n 'ERR_BAD_RESPONSE',\n 'ERR_BAD_REQUEST',\n 'ERR_CANCELED',\n 'ERR_NOT_SUPPORT',\n 'ERR_INVALID_URL'\n// eslint-disable-next-line func-names\n].forEach(code => {\n descriptors[code] = {value: code};\n});\n\nObject.defineProperties(AxiosError, descriptors);\nObject.defineProperty(prototype, 'isAxiosError', {value: true});\n\n// eslint-disable-next-line func-names\nAxiosError.from = (error, code, config, request, response, customProps) => {\n const axiosError = Object.create(prototype);\n\n utils.toFlatObject(error, axiosError, function filter(obj) {\n return obj !== Error.prototype;\n }, prop => {\n return prop !== 'isAxiosError';\n });\n\n AxiosError.call(axiosError, error.message, code, config, request, response);\n\n axiosError.cause = error;\n\n axiosError.name = error.name;\n\n customProps && Object.assign(axiosError, customProps);\n\n return axiosError;\n};\n\nexport default AxiosError;\n","/* eslint-env browser */\nmodule.exports = typeof self == 'object' ? self.FormData : window.FormData;\n","'use strict';\n\nimport utils from '../utils.js';\nimport AxiosError from '../core/AxiosError.js';\nimport envFormData from '../env/classes/FormData.js';\n\n/**\n * Determines if the given thing is a array or js object.\n *\n * @param {string} thing - The object or array to be visited.\n *\n * @returns {boolean}\n */\nfunction isVisitable(thing) {\n return utils.isPlainObject(thing) || utils.isArray(thing);\n}\n\n/**\n * It removes the brackets from the end of a string\n *\n * @param {string} key - The key of the parameter.\n *\n * @returns {string} the key without the brackets.\n */\nfunction removeBrackets(key) {\n return utils.endsWith(key, '[]') ? key.slice(0, -2) : key;\n}\n\n/**\n * It takes a path, a key, and a boolean, and returns a string\n *\n * @param {string} path - The path to the current key.\n * @param {string} key - The key of the current object being iterated over.\n * @param {string} dots - If true, the key will be rendered with dots instead of brackets.\n *\n * @returns {string} The path to the current key.\n */\nfunction renderKey(path, key, dots) {\n if (!path) return key;\n return path.concat(key).map(function each(token, i) {\n // eslint-disable-next-line no-param-reassign\n token = removeBrackets(token);\n return !dots && i ? '[' + token + ']' : token;\n }).join(dots ? '.' : '');\n}\n\n/**\n * If the array is an array and none of its elements are visitable, then it's a flat array.\n *\n * @param {Array} arr - The array to check\n *\n * @returns {boolean}\n */\nfunction isFlatArray(arr) {\n return utils.isArray(arr) && !arr.some(isVisitable);\n}\n\nconst predicates = utils.toFlatObject(utils, {}, null, function filter(prop) {\n return /^is[A-Z]/.test(prop);\n});\n\n/**\n * If the thing is a FormData object, return true, otherwise return false.\n *\n * @param {unknown} thing - The thing to check.\n *\n * @returns {boolean}\n */\nfunction isSpecCompliant(thing) {\n return thing && utils.isFunction(thing.append) && thing[Symbol.toStringTag] === 'FormData' && thing[Symbol.iterator];\n}\n\n/**\n * Convert a data object to FormData\n *\n * @param {Object} obj\n * @param {?Object} [formData]\n * @param {?Object} [options]\n * @param {Function} [options.visitor]\n * @param {Boolean} [options.metaTokens = true]\n * @param {Boolean} [options.dots = false]\n * @param {?Boolean} [options.indexes = false]\n *\n * @returns {Object}\n **/\n\n/**\n * It converts an object into a FormData object\n *\n * @param {Object} obj - The object to convert to form data.\n * @param {string} formData - The FormData object to append to.\n * @param {Object} options\n *\n * @returns\n */\nfunction toFormData(obj, formData, options) {\n if (!utils.isObject(obj)) {\n throw new TypeError('target must be an object');\n }\n\n // eslint-disable-next-line no-param-reassign\n formData = formData || new (envFormData || FormData)();\n\n // eslint-disable-next-line no-param-reassign\n options = utils.toFlatObject(options, {\n metaTokens: true,\n dots: false,\n indexes: false\n }, false, function defined(option, source) {\n // eslint-disable-next-line no-eq-null,eqeqeq\n return !utils.isUndefined(source[option]);\n });\n\n const metaTokens = options.metaTokens;\n // eslint-disable-next-line no-use-before-define\n const visitor = options.visitor || defaultVisitor;\n const dots = options.dots;\n const indexes = options.indexes;\n const _Blob = options.Blob || typeof Blob !== 'undefined' && Blob;\n const useBlob = _Blob && isSpecCompliant(formData);\n\n if (!utils.isFunction(visitor)) {\n throw new TypeError('visitor must be a function');\n }\n\n function convertValue(value) {\n if (value === null) return '';\n\n if (utils.isDate(value)) {\n return value.toISOString();\n }\n\n if (!useBlob && utils.isBlob(value)) {\n throw new AxiosError('Blob is not supported. Use a Buffer instead.');\n }\n\n if (utils.isArrayBuffer(value) || utils.isTypedArray(value)) {\n return useBlob && typeof Blob === 'function' ? new Blob([value]) : Buffer.from(value);\n }\n\n return value;\n }\n\n /**\n * Default visitor.\n *\n * @param {*} value\n * @param {String|Number} key\n * @param {Array} path\n * @this {FormData}\n *\n * @returns {boolean} return true to visit the each prop of the value recursively\n */\n function defaultVisitor(value, key, path) {\n let arr = value;\n\n if (value && !path && typeof value === 'object') {\n if (utils.endsWith(key, '{}')) {\n // eslint-disable-next-line no-param-reassign\n key = metaTokens ? key : key.slice(0, -2);\n // eslint-disable-next-line no-param-reassign\n value = JSON.stringify(value);\n } else if (\n (utils.isArray(value) && isFlatArray(value)) ||\n (utils.isFileList(value) || utils.endsWith(key, '[]') && (arr = utils.toArray(value))\n )) {\n // eslint-disable-next-line no-param-reassign\n key = removeBrackets(key);\n\n arr.forEach(function each(el, index) {\n !utils.isUndefined(el) && formData.append(\n // eslint-disable-next-line no-nested-ternary\n indexes === true ? renderKey([key], index, dots) : (indexes === null ? key : key + '[]'),\n convertValue(el)\n );\n });\n return false;\n }\n }\n\n if (isVisitable(value)) {\n return true;\n }\n\n formData.append(renderKey(path, key, dots), convertValue(value));\n\n return false;\n }\n\n const stack = [];\n\n const exposedHelpers = Object.assign(predicates, {\n defaultVisitor,\n convertValue,\n isVisitable\n });\n\n function build(value, path) {\n if (utils.isUndefined(value)) return;\n\n if (stack.indexOf(value) !== -1) {\n throw Error('Circular reference detected in ' + path.join('.'));\n }\n\n stack.push(value);\n\n utils.forEach(value, function each(el, key) {\n const result = !utils.isUndefined(el) && visitor.call(\n formData, el, utils.isString(key) ? key.trim() : key, path, exposedHelpers\n );\n\n if (result === true) {\n build(el, path ? path.concat(key) : [key]);\n }\n });\n\n stack.pop();\n }\n\n if (!utils.isObject(obj)) {\n throw new TypeError('data must be an object');\n }\n\n build(obj);\n\n return formData;\n}\n\nexport default toFormData;\n","'use strict';\n\nimport toFormData from './toFormData.js';\n\n/**\n * It encodes a string by replacing all characters that are not in the unreserved set with\n * their percent-encoded equivalents\n *\n * @param {string} str - The string to encode.\n *\n * @returns {string} The encoded string.\n */\nfunction encode(str) {\n const charMap = {\n '!': '%21',\n \"'\": '%27',\n '(': '%28',\n ')': '%29',\n '~': '%7E',\n '%20': '+',\n '%00': '\\x00'\n };\n return encodeURIComponent(str).replace(/[!'()~]|%20|%00/g, function replacer(match) {\n return charMap[match];\n });\n}\n\n/**\n * It takes a params object and converts it to a FormData object\n *\n * @param {Object} params - The parameters to be converted to a FormData object.\n * @param {Object} options - The options object passed to the Axios constructor.\n *\n * @returns {void}\n */\nfunction AxiosURLSearchParams(params, options) {\n this._pairs = [];\n\n params && toFormData(params, this, options);\n}\n\nconst prototype = AxiosURLSearchParams.prototype;\n\nprototype.append = function append(name, value) {\n this._pairs.push([name, value]);\n};\n\nprototype.toString = function toString(encoder) {\n const _encode = encoder ? function(value) {\n return encoder.call(this, value, encode);\n } : encode;\n\n return this._pairs.map(function each(pair) {\n return _encode(pair[0]) + '=' + _encode(pair[1]);\n }, '').join('&');\n};\n\nexport default AxiosURLSearchParams;\n","'use strict';\n\nimport utils from '../utils.js';\nimport AxiosURLSearchParams from '../helpers/AxiosURLSearchParams.js';\n\n/**\n * It replaces all instances of the characters `:`, `$`, `,`, `+`, `[`, and `]` with their\n * URI encoded counterparts\n *\n * @param {string} val The value to be encoded.\n *\n * @returns {string} The encoded value.\n */\nfunction encode(val) {\n return encodeURIComponent(val).\n replace(/%3A/gi, ':').\n replace(/%24/g, '$').\n replace(/%2C/gi, ',').\n replace(/%20/g, '+').\n replace(/%5B/gi, '[').\n replace(/%5D/gi, ']');\n}\n\n/**\n * Build a URL by appending params to the end\n *\n * @param {string} url The base of the url (e.g., http://www.google.com)\n * @param {object} [params] The params to be appended\n * @param {?object} options\n *\n * @returns {string} The formatted url\n */\nexport default function buildURL(url, params, options) {\n /*eslint no-param-reassign:0*/\n if (!params) {\n return url;\n }\n\n const hashmarkIndex = url.indexOf('#');\n\n if (hashmarkIndex !== -1) {\n url = url.slice(0, hashmarkIndex);\n }\n\n const _encode = options && options.encode || encode;\n\n const serializerParams = utils.isURLSearchParams(params) ?\n params.toString() :\n new AxiosURLSearchParams(params, options).toString(_encode);\n\n if (serializerParams) {\n url += (url.indexOf('?') === -1 ? '?' : '&') + serializerParams;\n }\n\n return url;\n}\n","'use strict';\n\nimport utils from './../utils.js';\n\nclass InterceptorManager {\n constructor() {\n this.handlers = [];\n }\n\n /**\n * Add a new interceptor to the stack\n *\n * @param {Function} fulfilled The function to handle `then` for a `Promise`\n * @param {Function} rejected The function to handle `reject` for a `Promise`\n *\n * @return {Number} An ID used to remove interceptor later\n */\n use(fulfilled, rejected, options) {\n this.handlers.push({\n fulfilled,\n rejected,\n synchronous: options ? options.synchronous : false,\n runWhen: options ? options.runWhen : null\n });\n return this.handlers.length - 1;\n }\n\n /**\n * Remove an interceptor from the stack\n *\n * @param {Number} id The ID that was returned by `use`\n *\n * @returns {Boolean} `true` if the interceptor was removed, `false` otherwise\n */\n eject(id) {\n if (this.handlers[id]) {\n this.handlers[id] = null;\n }\n }\n\n /**\n * Clear all interceptors from the stack\n *\n * @returns {void}\n */\n clear() {\n if (this.handlers) {\n this.handlers = [];\n }\n }\n\n /**\n * Iterate over all the registered interceptors\n *\n * This method is particularly useful for skipping over any\n * interceptors that may have become `null` calling `eject`.\n *\n * @param {Function} fn The function to call for each interceptor\n *\n * @returns {void}\n */\n forEach(fn) {\n utils.forEach(this.handlers, function forEachHandler(h) {\n if (h !== null) {\n fn(h);\n }\n });\n }\n}\n\nexport default InterceptorManager;\n","'use strict';\n\nexport default {\n silentJSONParsing: true,\n forcedJSONParsing: true,\n clarifyTimeoutError: false\n};\n","'use strict';\n\nimport AxiosURLSearchParams from '../../../helpers/AxiosURLSearchParams.js';\nexport default typeof URLSearchParams !== 'undefined' ? URLSearchParams : AxiosURLSearchParams;\n","'use strict';\n\nexport default FormData;\n","import URLSearchParams from './classes/URLSearchParams.js'\nimport FormData from './classes/FormData.js'\n\n/**\n * Determine if we're running in a standard browser environment\n *\n * This allows axios to run in a web worker, and react-native.\n * Both environments support XMLHttpRequest, but not fully standard globals.\n *\n * web workers:\n * typeof window -> undefined\n * typeof document -> undefined\n *\n * react-native:\n * navigator.product -> 'ReactNative'\n * nativescript\n * navigator.product -> 'NativeScript' or 'NS'\n *\n * @returns {boolean}\n */\nconst isStandardBrowserEnv = (() => {\n let product;\n if (typeof navigator !== 'undefined' && (\n (product = navigator.product) === 'ReactNative' ||\n product === 'NativeScript' ||\n product === 'NS')\n ) {\n return false;\n }\n\n return typeof window !== 'undefined' && typeof document !== 'undefined';\n})();\n\nexport default {\n isBrowser: true,\n classes: {\n URLSearchParams,\n FormData,\n Blob\n },\n isStandardBrowserEnv,\n protocols: ['http', 'https', 'file', 'blob', 'url', 'data']\n};\n","'use strict';\n\nimport utils from '../utils.js';\nimport toFormData from './toFormData.js';\nimport platform from '../platform/index.js';\n\nexport default function toURLEncodedForm(data, options) {\n return toFormData(data, new platform.classes.URLSearchParams(), Object.assign({\n visitor: function(value, key, path, helpers) {\n if (platform.isNode && utils.isBuffer(value)) {\n this.append(key, value.toString('base64'));\n return false;\n }\n\n return helpers.defaultVisitor.apply(this, arguments);\n }\n }, options));\n}\n","'use strict';\n\nimport utils from '../utils.js';\n\n/**\n * It takes a string like `foo[x][y][z]` and returns an array like `['foo', 'x', 'y', 'z']\n *\n * @param {string} name - The name of the property to get.\n *\n * @returns An array of strings.\n */\nfunction parsePropPath(name) {\n // foo[x][y][z]\n // foo.x.y.z\n // foo-x-y-z\n // foo x y z\n return utils.matchAll(/\\w+|\\[(\\w*)]/g, name).map(match => {\n return match[0] === '[]' ? '' : match[1] || match[0];\n });\n}\n\n/**\n * Convert an array to an object.\n *\n * @param {Array} arr - The array to convert to an object.\n *\n * @returns An object with the same keys and values as the array.\n */\nfunction arrayToObject(arr) {\n const obj = {};\n const keys = Object.keys(arr);\n let i;\n const len = keys.length;\n let key;\n for (i = 0; i < len; i++) {\n key = keys[i];\n obj[key] = arr[key];\n }\n return obj;\n}\n\n/**\n * It takes a FormData object and returns a JavaScript object\n *\n * @param {string} formData The FormData object to convert to JSON.\n *\n * @returns {Object | null} The converted object.\n */\nfunction formDataToJSON(formData) {\n function buildPath(path, value, target, index) {\n let name = path[index++];\n const isNumericKey = Number.isFinite(+name);\n const isLast = index >= path.length;\n name = !name && utils.isArray(target) ? target.length : name;\n\n if (isLast) {\n if (utils.hasOwnProp(target, name)) {\n target[name] = [target[name], value];\n } else {\n target[name] = value;\n }\n\n return !isNumericKey;\n }\n\n if (!target[name] || !utils.isObject(target[name])) {\n target[name] = [];\n }\n\n const result = buildPath(path, value, target[name], index);\n\n if (result && utils.isArray(target[name])) {\n target[name] = arrayToObject(target[name]);\n }\n\n return !isNumericKey;\n }\n\n if (utils.isFormData(formData) && utils.isFunction(formData.entries)) {\n const obj = {};\n\n utils.forEachEntry(formData, (name, value) => {\n buildPath(parsePropPath(name), value, obj, 0);\n });\n\n return obj;\n }\n\n return null;\n}\n\nexport default formDataToJSON;\n","'use strict';\n\nimport AxiosError from './AxiosError.js';\n\n/**\n * Resolve or reject a Promise based on response status.\n *\n * @param {Function} resolve A function that resolves the promise.\n * @param {Function} reject A function that rejects the promise.\n * @param {object} response The response.\n *\n * @returns {object} The response.\n */\nexport default function settle(resolve, reject, response) {\n const validateStatus = response.config.validateStatus;\n if (!response.status || !validateStatus || validateStatus(response.status)) {\n resolve(response);\n } else {\n reject(new AxiosError(\n 'Request failed with status code ' + response.status,\n [AxiosError.ERR_BAD_REQUEST, AxiosError.ERR_BAD_RESPONSE][Math.floor(response.status / 100) - 4],\n response.config,\n response.request,\n response\n ));\n }\n}\n","'use strict';\n\nimport utils from './../utils.js';\nimport platform from '../platform/index.js';\n\nexport default platform.isStandardBrowserEnv ?\n\n// Standard browser envs support document.cookie\n (function standardBrowserEnv() {\n return {\n write: function write(name, value, expires, path, domain, secure) {\n const cookie = [];\n cookie.push(name + '=' + encodeURIComponent(value));\n\n if (utils.isNumber(expires)) {\n cookie.push('expires=' + new Date(expires).toGMTString());\n }\n\n if (utils.isString(path)) {\n cookie.push('path=' + path);\n }\n\n if (utils.isString(domain)) {\n cookie.push('domain=' + domain);\n }\n\n if (secure === true) {\n cookie.push('secure');\n }\n\n document.cookie = cookie.join('; ');\n },\n\n read: function read(name) {\n const match = document.cookie.match(new RegExp('(^|;\\\\s*)(' + name + ')=([^;]*)'));\n return (match ? decodeURIComponent(match[3]) : null);\n },\n\n remove: function remove(name) {\n this.write(name, '', Date.now() - 86400000);\n }\n };\n })() :\n\n// Non standard browser env (web workers, react-native) lack needed support.\n (function nonStandardBrowserEnv() {\n return {\n write: function write() {},\n read: function read() { return null; },\n remove: function remove() {}\n };\n })();\n","'use strict';\n\n/**\n * Determines whether the specified URL is absolute\n *\n * @param {string} url The URL to test\n *\n * @returns {boolean} True if the specified URL is absolute, otherwise false\n */\nexport default function isAbsoluteURL(url) {\n // A URL is considered absolute if it begins with \"://\" or \"//\" (protocol-relative URL).\n // RFC 3986 defines scheme name as a sequence of characters beginning with a letter and followed\n // by any combination of letters, digits, plus, period, or hyphen.\n return /^([a-z][a-z\\d+\\-.]*:)?\\/\\//i.test(url);\n}\n","'use strict';\n\n/**\n * Creates a new URL by combining the specified URLs\n *\n * @param {string} baseURL The base URL\n * @param {string} relativeURL The relative URL\n *\n * @returns {string} The combined URL\n */\nexport default function combineURLs(baseURL, relativeURL) {\n return relativeURL\n ? baseURL.replace(/\\/+$/, '') + '/' + relativeURL.replace(/^\\/+/, '')\n : baseURL;\n}\n","'use strict';\n\nimport isAbsoluteURL from '../helpers/isAbsoluteURL.js';\nimport combineURLs from '../helpers/combineURLs.js';\n\n/**\n * Creates a new URL by combining the baseURL with the requestedURL,\n * only when the requestedURL is not already an absolute URL.\n * If the requestURL is absolute, this function returns the requestedURL untouched.\n *\n * @param {string} baseURL The base URL\n * @param {string} requestedURL Absolute or relative URL to combine\n *\n * @returns {string} The combined full path\n */\nexport default function buildFullPath(baseURL, requestedURL) {\n if (baseURL && !isAbsoluteURL(requestedURL)) {\n return combineURLs(baseURL, requestedURL);\n }\n return requestedURL;\n}\n","'use strict';\n\nimport utils from './../utils.js';\nimport platform from '../platform/index.js';\n\nexport default platform.isStandardBrowserEnv ?\n\n// Standard browser envs have full support of the APIs needed to test\n// whether the request URL is of the same origin as current location.\n (function standardBrowserEnv() {\n const msie = /(msie|trident)/i.test(navigator.userAgent);\n const urlParsingNode = document.createElement('a');\n let originURL;\n\n /**\n * Parse a URL to discover it's components\n *\n * @param {String} url The URL to be parsed\n * @returns {Object}\n */\n function resolveURL(url) {\n let href = url;\n\n if (msie) {\n // IE needs attribute set twice to normalize properties\n urlParsingNode.setAttribute('href', href);\n href = urlParsingNode.href;\n }\n\n urlParsingNode.setAttribute('href', href);\n\n // urlParsingNode provides the UrlUtils interface - http://url.spec.whatwg.org/#urlutils\n return {\n href: urlParsingNode.href,\n protocol: urlParsingNode.protocol ? urlParsingNode.protocol.replace(/:$/, '') : '',\n host: urlParsingNode.host,\n search: urlParsingNode.search ? urlParsingNode.search.replace(/^\\?/, '') : '',\n hash: urlParsingNode.hash ? urlParsingNode.hash.replace(/^#/, '') : '',\n hostname: urlParsingNode.hostname,\n port: urlParsingNode.port,\n pathname: (urlParsingNode.pathname.charAt(0) === '/') ?\n urlParsingNode.pathname :\n '/' + urlParsingNode.pathname\n };\n }\n\n originURL = resolveURL(window.location.href);\n\n /**\n * Determine if a URL shares the same origin as the current location\n *\n * @param {String} requestURL The URL to test\n * @returns {boolean} True if URL shares the same origin, otherwise false\n */\n return function isURLSameOrigin(requestURL) {\n const parsed = (utils.isString(requestURL)) ? resolveURL(requestURL) : requestURL;\n return (parsed.protocol === originURL.protocol &&\n parsed.host === originURL.host);\n };\n })() :\n\n // Non standard browser envs (web workers, react-native) lack needed support.\n (function nonStandardBrowserEnv() {\n return function isURLSameOrigin() {\n return true;\n };\n })();\n","'use strict';\n\nimport AxiosError from '../core/AxiosError.js';\nimport utils from '../utils.js';\n\n/**\n * A `CanceledError` is an object that is thrown when an operation is canceled.\n *\n * @param {string=} message The message.\n * @param {Object=} config The config.\n * @param {Object=} request The request.\n *\n * @returns {CanceledError} The created error.\n */\nfunction CanceledError(message, config, request) {\n // eslint-disable-next-line no-eq-null,eqeqeq\n AxiosError.call(this, message == null ? 'canceled' : message, AxiosError.ERR_CANCELED, config, request);\n this.name = 'CanceledError';\n}\n\nutils.inherits(CanceledError, AxiosError, {\n __CANCEL__: true\n});\n\nexport default CanceledError;\n","'use strict';\n\nexport default function parseProtocol(url) {\n const match = /^([-+\\w]{1,25})(:?\\/\\/|:)/.exec(url);\n return match && match[1] || '';\n}\n","'use strict';\n\nimport utils from './../utils.js';\n\n// RawAxiosHeaders whose duplicates are ignored by node\n// c.f. https://nodejs.org/api/http.html#http_message_headers\nconst ignoreDuplicateOf = utils.toObjectSet([\n 'age', 'authorization', 'content-length', 'content-type', 'etag',\n 'expires', 'from', 'host', 'if-modified-since', 'if-unmodified-since',\n 'last-modified', 'location', 'max-forwards', 'proxy-authorization',\n 'referer', 'retry-after', 'user-agent'\n]);\n\n/**\n * Parse headers into an object\n *\n * ```\n * Date: Wed, 27 Aug 2014 08:58:49 GMT\n * Content-Type: application/json\n * Connection: keep-alive\n * Transfer-Encoding: chunked\n * ```\n *\n * @param {String} rawHeaders Headers needing to be parsed\n *\n * @returns {Object} Headers parsed into an object\n */\nexport default rawHeaders => {\n const parsed = {};\n let key;\n let val;\n let i;\n\n rawHeaders && rawHeaders.split('\\n').forEach(function parser(line) {\n i = line.indexOf(':');\n key = line.substring(0, i).trim().toLowerCase();\n val = line.substring(i + 1).trim();\n\n if (!key || (parsed[key] && ignoreDuplicateOf[key])) {\n return;\n }\n\n if (key === 'set-cookie') {\n if (parsed[key]) {\n parsed[key].push(val);\n } else {\n parsed[key] = [val];\n }\n } else {\n parsed[key] = parsed[key] ? parsed[key] + ', ' + val : val;\n }\n });\n\n return parsed;\n};\n","'use strict';\n\nimport utils from '../utils.js';\nimport parseHeaders from '../helpers/parseHeaders.js';\n\nconst $internals = Symbol('internals');\nconst $defaults = Symbol('defaults');\n\nfunction normalizeHeader(header) {\n return header && String(header).trim().toLowerCase();\n}\n\nfunction normalizeValue(value) {\n if (value === false || value == null) {\n return value;\n }\n\n return String(value);\n}\n\nfunction parseTokens(str) {\n const tokens = Object.create(null);\n const tokensRE = /([^\\s,;=]+)\\s*(?:=\\s*([^,;]+))?/g;\n let match;\n\n while ((match = tokensRE.exec(str))) {\n tokens[match[1]] = match[2];\n }\n\n return tokens;\n}\n\nfunction matchHeaderValue(context, value, header, filter) {\n if (utils.isFunction(filter)) {\n return filter.call(this, value, header);\n }\n\n if (!utils.isString(value)) return;\n\n if (utils.isString(filter)) {\n return value.indexOf(filter) !== -1;\n }\n\n if (utils.isRegExp(filter)) {\n return filter.test(value);\n }\n}\n\nfunction formatHeader(header) {\n return header.trim()\n .toLowerCase().replace(/([a-z\\d])(\\w*)/g, (w, char, str) => {\n return char.toUpperCase() + str;\n });\n}\n\nfunction buildAccessors(obj, header) {\n const accessorName = utils.toCamelCase(' ' + header);\n\n ['get', 'set', 'has'].forEach(methodName => {\n Object.defineProperty(obj, methodName + accessorName, {\n value: function(arg1, arg2, arg3) {\n return this[methodName].call(this, header, arg1, arg2, arg3);\n },\n configurable: true\n });\n });\n}\n\nfunction findKey(obj, key) {\n key = key.toLowerCase();\n const keys = Object.keys(obj);\n let i = keys.length;\n let _key;\n while (i-- > 0) {\n _key = keys[i];\n if (key === _key.toLowerCase()) {\n return _key;\n }\n }\n return null;\n}\n\nfunction AxiosHeaders(headers, defaults) {\n headers && this.set(headers);\n this[$defaults] = defaults || null;\n}\n\nObject.assign(AxiosHeaders.prototype, {\n set: function(header, valueOrRewrite, rewrite) {\n const self = this;\n\n function setHeader(_value, _header, _rewrite) {\n const lHeader = normalizeHeader(_header);\n\n if (!lHeader) {\n throw new Error('header name must be a non-empty string');\n }\n\n const key = findKey(self, lHeader);\n\n if (key && _rewrite !== true && (self[key] === false || _rewrite === false)) {\n return;\n }\n\n if (utils.isArray(_value)) {\n _value = _value.map(normalizeValue);\n } else {\n _value = normalizeValue(_value);\n }\n\n self[key || _header] = _value;\n }\n\n if (utils.isPlainObject(header)) {\n utils.forEach(header, (_value, _header) => {\n setHeader(_value, _header, valueOrRewrite);\n });\n } else {\n setHeader(valueOrRewrite, header, rewrite);\n }\n\n return this;\n },\n\n get: function(header, parser) {\n header = normalizeHeader(header);\n\n if (!header) return undefined;\n\n const key = findKey(this, header);\n\n if (key) {\n const value = this[key];\n\n if (!parser) {\n return value;\n }\n\n if (parser === true) {\n return parseTokens(value);\n }\n\n if (utils.isFunction(parser)) {\n return parser.call(this, value, key);\n }\n\n if (utils.isRegExp(parser)) {\n return parser.exec(value);\n }\n\n throw new TypeError('parser must be boolean|regexp|function');\n }\n },\n\n has: function(header, matcher) {\n header = normalizeHeader(header);\n\n if (header) {\n const key = findKey(this, header);\n\n return !!(key && (!matcher || matchHeaderValue(this, this[key], key, matcher)));\n }\n\n return false;\n },\n\n delete: function(header, matcher) {\n const self = this;\n let deleted = false;\n\n function deleteHeader(_header) {\n _header = normalizeHeader(_header);\n\n if (_header) {\n const key = findKey(self, _header);\n\n if (key && (!matcher || matchHeaderValue(self, self[key], key, matcher))) {\n delete self[key];\n\n deleted = true;\n }\n }\n }\n\n if (utils.isArray(header)) {\n header.forEach(deleteHeader);\n } else {\n deleteHeader(header);\n }\n\n return deleted;\n },\n\n clear: function() {\n return Object.keys(this).forEach(this.delete.bind(this));\n },\n\n normalize: function(format) {\n const self = this;\n const headers = {};\n\n utils.forEach(this, (value, header) => {\n const key = findKey(headers, header);\n\n if (key) {\n self[key] = normalizeValue(value);\n delete self[header];\n return;\n }\n\n const normalized = format ? formatHeader(header) : String(header).trim();\n\n if (normalized !== header) {\n delete self[header];\n }\n\n self[normalized] = normalizeValue(value);\n\n headers[normalized] = true;\n });\n\n return this;\n },\n\n toJSON: function() {\n const obj = Object.create(null);\n\n utils.forEach(Object.assign({}, this[$defaults] || null, this),\n (value, header) => {\n if (value == null || value === false) return;\n obj[header] = utils.isArray(value) ? value.join(', ') : value;\n });\n\n return obj;\n }\n});\n\nObject.assign(AxiosHeaders, {\n from: function(thing) {\n if (utils.isString(thing)) {\n return new this(parseHeaders(thing));\n }\n return thing instanceof this ? thing : new this(thing);\n },\n\n accessor: function(header) {\n const internals = this[$internals] = (this[$internals] = {\n accessors: {}\n });\n\n const accessors = internals.accessors;\n const prototype = this.prototype;\n\n function defineAccessor(_header) {\n const lHeader = normalizeHeader(_header);\n\n if (!accessors[lHeader]) {\n buildAccessors(prototype, _header);\n accessors[lHeader] = true;\n }\n }\n\n utils.isArray(header) ? header.forEach(defineAccessor) : defineAccessor(header);\n\n return this;\n }\n});\n\nAxiosHeaders.accessor(['Content-Type', 'Content-Length', 'Accept', 'Accept-Encoding', 'User-Agent']);\n\nutils.freezeMethods(AxiosHeaders.prototype);\nutils.freezeMethods(AxiosHeaders);\n\nexport default AxiosHeaders;\n","'use strict';\n\n/**\n * Calculate data maxRate\n * @param {Number} [samplesCount= 10]\n * @param {Number} [min= 1000]\n * @returns {Function}\n */\nfunction speedometer(samplesCount, min) {\n samplesCount = samplesCount || 10;\n const bytes = new Array(samplesCount);\n const timestamps = new Array(samplesCount);\n let head = 0;\n let tail = 0;\n let firstSampleTS;\n\n min = min !== undefined ? min : 1000;\n\n return function push(chunkLength) {\n const now = Date.now();\n\n const startedAt = timestamps[tail];\n\n if (!firstSampleTS) {\n firstSampleTS = now;\n }\n\n bytes[head] = chunkLength;\n timestamps[head] = now;\n\n let i = tail;\n let bytesCount = 0;\n\n while (i !== head) {\n bytesCount += bytes[i++];\n i = i % samplesCount;\n }\n\n head = (head + 1) % samplesCount;\n\n if (head === tail) {\n tail = (tail + 1) % samplesCount;\n }\n\n if (now - firstSampleTS < min) {\n return;\n }\n\n const passed = startedAt && now - startedAt;\n\n return passed ? Math.round(bytesCount * 1000 / passed) : undefined;\n };\n}\n\nexport default speedometer;\n","'use strict';\n\nimport utils from './../utils.js';\nimport settle from './../core/settle.js';\nimport cookies from './../helpers/cookies.js';\nimport buildURL from './../helpers/buildURL.js';\nimport buildFullPath from '../core/buildFullPath.js';\nimport isURLSameOrigin from './../helpers/isURLSameOrigin.js';\nimport transitionalDefaults from '../defaults/transitional.js';\nimport AxiosError from '../core/AxiosError.js';\nimport CanceledError from '../cancel/CanceledError.js';\nimport parseProtocol from '../helpers/parseProtocol.js';\nimport platform from '../platform/index.js';\nimport AxiosHeaders from '../core/AxiosHeaders.js';\nimport speedometer from '../helpers/speedometer.js';\n\nfunction progressEventReducer(listener, isDownloadStream) {\n let bytesNotified = 0;\n const _speedometer = speedometer(50, 250);\n\n return e => {\n const loaded = e.loaded;\n const total = e.lengthComputable ? e.total : undefined;\n const progressBytes = loaded - bytesNotified;\n const rate = _speedometer(progressBytes);\n const inRange = loaded <= total;\n\n bytesNotified = loaded;\n\n const data = {\n loaded,\n total,\n progress: total ? (loaded / total) : undefined,\n bytes: progressBytes,\n rate: rate ? rate : undefined,\n estimated: rate && total && inRange ? (total - loaded) / rate : undefined\n };\n\n data[isDownloadStream ? 'download' : 'upload'] = true;\n\n listener(data);\n };\n}\n\nexport default function xhrAdapter(config) {\n return new Promise(function dispatchXhrRequest(resolve, reject) {\n let requestData = config.data;\n const requestHeaders = AxiosHeaders.from(config.headers).normalize();\n const responseType = config.responseType;\n let onCanceled;\n function done() {\n if (config.cancelToken) {\n config.cancelToken.unsubscribe(onCanceled);\n }\n\n if (config.signal) {\n config.signal.removeEventListener('abort', onCanceled);\n }\n }\n\n if (utils.isFormData(requestData) && platform.isStandardBrowserEnv) {\n requestHeaders.setContentType(false); // Let the browser set it\n }\n\n let request = new XMLHttpRequest();\n\n // HTTP basic authentication\n if (config.auth) {\n const username = config.auth.username || '';\n const password = config.auth.password ? unescape(encodeURIComponent(config.auth.password)) : '';\n requestHeaders.set('Authorization', 'Basic ' + btoa(username + ':' + password));\n }\n\n const fullPath = buildFullPath(config.baseURL, config.url);\n\n request.open(config.method.toUpperCase(), buildURL(fullPath, config.params, config.paramsSerializer), true);\n\n // Set the request timeout in MS\n request.timeout = config.timeout;\n\n function onloadend() {\n if (!request) {\n return;\n }\n // Prepare the response\n const responseHeaders = AxiosHeaders.from(\n 'getAllResponseHeaders' in request && request.getAllResponseHeaders()\n );\n const responseData = !responseType || responseType === 'text' || responseType === 'json' ?\n request.responseText : request.response;\n const response = {\n data: responseData,\n status: request.status,\n statusText: request.statusText,\n headers: responseHeaders,\n config,\n request\n };\n\n settle(function _resolve(value) {\n resolve(value);\n done();\n }, function _reject(err) {\n reject(err);\n done();\n }, response);\n\n // Clean up request\n request = null;\n }\n\n if ('onloadend' in request) {\n // Use onloadend if available\n request.onloadend = onloadend;\n } else {\n // Listen for ready state to emulate onloadend\n request.onreadystatechange = function handleLoad() {\n if (!request || request.readyState !== 4) {\n return;\n }\n\n // The request errored out and we didn't get a response, this will be\n // handled by onerror instead\n // With one exception: request that using file: protocol, most browsers\n // will return status as 0 even though it's a successful request\n if (request.status === 0 && !(request.responseURL && request.responseURL.indexOf('file:') === 0)) {\n return;\n }\n // readystate handler is calling before onerror or ontimeout handlers,\n // so we should call onloadend on the next 'tick'\n setTimeout(onloadend);\n };\n }\n\n // Handle browser request cancellation (as opposed to a manual cancellation)\n request.onabort = function handleAbort() {\n if (!request) {\n return;\n }\n\n reject(new AxiosError('Request aborted', AxiosError.ECONNABORTED, config, request));\n\n // Clean up request\n request = null;\n };\n\n // Handle low level network errors\n request.onerror = function handleError() {\n // Real errors are hidden from us by the browser\n // onerror should only fire if it's a network error\n reject(new AxiosError('Network Error', AxiosError.ERR_NETWORK, config, request));\n\n // Clean up request\n request = null;\n };\n\n // Handle timeout\n request.ontimeout = function handleTimeout() {\n let timeoutErrorMessage = config.timeout ? 'timeout of ' + config.timeout + 'ms exceeded' : 'timeout exceeded';\n const transitional = config.transitional || transitionalDefaults;\n if (config.timeoutErrorMessage) {\n timeoutErrorMessage = config.timeoutErrorMessage;\n }\n reject(new AxiosError(\n timeoutErrorMessage,\n transitional.clarifyTimeoutError ? AxiosError.ETIMEDOUT : AxiosError.ECONNABORTED,\n config,\n request));\n\n // Clean up request\n request = null;\n };\n\n // Add xsrf header\n // This is only done if running in a standard browser environment.\n // Specifically not if we're in a web worker, or react-native.\n if (platform.isStandardBrowserEnv) {\n // Add xsrf header\n const xsrfValue = (config.withCredentials || isURLSameOrigin(fullPath))\n && config.xsrfCookieName && cookies.read(config.xsrfCookieName);\n\n if (xsrfValue) {\n requestHeaders.set(config.xsrfHeaderName, xsrfValue);\n }\n }\n\n // Remove Content-Type if data is undefined\n requestData === undefined && requestHeaders.setContentType(null);\n\n // Add headers to the request\n if ('setRequestHeader' in request) {\n utils.forEach(requestHeaders.toJSON(), function setRequestHeader(val, key) {\n request.setRequestHeader(key, val);\n });\n }\n\n // Add withCredentials to request if needed\n if (!utils.isUndefined(config.withCredentials)) {\n request.withCredentials = !!config.withCredentials;\n }\n\n // Add responseType to request if needed\n if (responseType && responseType !== 'json') {\n request.responseType = config.responseType;\n }\n\n // Handle progress if needed\n if (typeof config.onDownloadProgress === 'function') {\n request.addEventListener('progress', progressEventReducer(config.onDownloadProgress, true));\n }\n\n // Not all browsers support upload events\n if (typeof config.onUploadProgress === 'function' && request.upload) {\n request.upload.addEventListener('progress', progressEventReducer(config.onUploadProgress));\n }\n\n if (config.cancelToken || config.signal) {\n // Handle cancellation\n // eslint-disable-next-line func-names\n onCanceled = cancel => {\n if (!request) {\n return;\n }\n reject(!cancel || cancel.type ? new CanceledError(null, config, request) : cancel);\n request.abort();\n request = null;\n };\n\n config.cancelToken && config.cancelToken.subscribe(onCanceled);\n if (config.signal) {\n config.signal.aborted ? onCanceled() : config.signal.addEventListener('abort', onCanceled);\n }\n }\n\n const protocol = parseProtocol(fullPath);\n\n if (protocol && platform.protocols.indexOf(protocol) === -1) {\n reject(new AxiosError('Unsupported protocol ' + protocol + ':', AxiosError.ERR_BAD_REQUEST, config));\n return;\n }\n\n\n // Send the request\n request.send(requestData || null);\n });\n}\n","import utils from '../utils.js';\nimport httpAdapter from './http.js';\nimport xhrAdapter from './xhr.js';\n\nconst adapters = {\n http: httpAdapter,\n xhr: xhrAdapter\n}\n\nexport default {\n getAdapter: (nameOrAdapter) => {\n if(utils.isString(nameOrAdapter)){\n const adapter = adapters[nameOrAdapter];\n\n if (!nameOrAdapter) {\n throw Error(\n utils.hasOwnProp(nameOrAdapter) ?\n `Adapter '${nameOrAdapter}' is not available in the build` :\n `Can not resolve adapter '${nameOrAdapter}'`\n );\n }\n\n return adapter\n }\n\n if (!utils.isFunction(nameOrAdapter)) {\n throw new TypeError('adapter is not a function');\n }\n\n return nameOrAdapter;\n },\n adapters\n}\n","'use strict';\n\nimport utils from '../utils.js';\nimport AxiosError from '../core/AxiosError.js';\nimport transitionalDefaults from './transitional.js';\nimport toFormData from '../helpers/toFormData.js';\nimport toURLEncodedForm from '../helpers/toURLEncodedForm.js';\nimport platform from '../platform/index.js';\nimport formDataToJSON from '../helpers/formDataToJSON.js';\nimport adapters from '../adapters/index.js';\n\nconst DEFAULT_CONTENT_TYPE = {\n 'Content-Type': 'application/x-www-form-urlencoded'\n};\n\n/**\n * If the browser has an XMLHttpRequest object, use the XHR adapter, otherwise use the HTTP\n * adapter\n *\n * @returns {Function}\n */\nfunction getDefaultAdapter() {\n let adapter;\n if (typeof XMLHttpRequest !== 'undefined') {\n // For browsers use XHR adapter\n adapter = adapters.getAdapter('xhr');\n } else if (typeof process !== 'undefined' && utils.kindOf(process) === 'process') {\n // For node use HTTP adapter\n adapter = adapters.getAdapter('http');\n }\n return adapter;\n}\n\n/**\n * It takes a string, tries to parse it, and if it fails, it returns the stringified version\n * of the input\n *\n * @param {any} rawValue - The value to be stringified.\n * @param {Function} parser - A function that parses a string into a JavaScript object.\n * @param {Function} encoder - A function that takes a value and returns a string.\n *\n * @returns {string} A stringified version of the rawValue.\n */\nfunction stringifySafely(rawValue, parser, encoder) {\n if (utils.isString(rawValue)) {\n try {\n (parser || JSON.parse)(rawValue);\n return utils.trim(rawValue);\n } catch (e) {\n if (e.name !== 'SyntaxError') {\n throw e;\n }\n }\n }\n\n return (encoder || JSON.stringify)(rawValue);\n}\n\nconst defaults = {\n\n transitional: transitionalDefaults,\n\n adapter: getDefaultAdapter(),\n\n transformRequest: [function transformRequest(data, headers) {\n const contentType = headers.getContentType() || '';\n const hasJSONContentType = contentType.indexOf('application/json') > -1;\n const isObjectPayload = utils.isObject(data);\n\n if (isObjectPayload && utils.isHTMLForm(data)) {\n data = new FormData(data);\n }\n\n const isFormData = utils.isFormData(data);\n\n if (isFormData) {\n if (!hasJSONContentType) {\n return data;\n }\n return hasJSONContentType ? JSON.stringify(formDataToJSON(data)) : data;\n }\n\n if (utils.isArrayBuffer(data) ||\n utils.isBuffer(data) ||\n utils.isStream(data) ||\n utils.isFile(data) ||\n utils.isBlob(data)\n ) {\n return data;\n }\n if (utils.isArrayBufferView(data)) {\n return data.buffer;\n }\n if (utils.isURLSearchParams(data)) {\n headers.setContentType('application/x-www-form-urlencoded;charset=utf-8', false);\n return data.toString();\n }\n\n let isFileList;\n\n if (isObjectPayload) {\n if (contentType.indexOf('application/x-www-form-urlencoded') > -1) {\n return toURLEncodedForm(data, this.formSerializer).toString();\n }\n\n if ((isFileList = utils.isFileList(data)) || contentType.indexOf('multipart/form-data') > -1) {\n const _FormData = this.env && this.env.FormData;\n\n return toFormData(\n isFileList ? {'files[]': data} : data,\n _FormData && new _FormData(),\n this.formSerializer\n );\n }\n }\n\n if (isObjectPayload || hasJSONContentType ) {\n headers.setContentType('application/json', false);\n return stringifySafely(data);\n }\n\n return data;\n }],\n\n transformResponse: [function transformResponse(data) {\n const transitional = this.transitional || defaults.transitional;\n const forcedJSONParsing = transitional && transitional.forcedJSONParsing;\n const JSONRequested = this.responseType === 'json';\n\n if (data && utils.isString(data) && ((forcedJSONParsing && !this.responseType) || JSONRequested)) {\n const silentJSONParsing = transitional && transitional.silentJSONParsing;\n const strictJSONParsing = !silentJSONParsing && JSONRequested;\n\n try {\n return JSON.parse(data);\n } catch (e) {\n if (strictJSONParsing) {\n if (e.name === 'SyntaxError') {\n throw AxiosError.from(e, AxiosError.ERR_BAD_RESPONSE, this, null, this.response);\n }\n throw e;\n }\n }\n }\n\n return data;\n }],\n\n /**\n * A timeout in milliseconds to abort a request. If set to 0 (default) a\n * timeout is not created.\n */\n timeout: 0,\n\n xsrfCookieName: 'XSRF-TOKEN',\n xsrfHeaderName: 'X-XSRF-TOKEN',\n\n maxContentLength: -1,\n maxBodyLength: -1,\n\n env: {\n FormData: platform.classes.FormData,\n Blob: platform.classes.Blob\n },\n\n validateStatus: function validateStatus(status) {\n return status >= 200 && status < 300;\n },\n\n headers: {\n common: {\n 'Accept': 'application/json, text/plain, */*'\n }\n }\n};\n\nutils.forEach(['delete', 'get', 'head'], function forEachMethodNoData(method) {\n defaults.headers[method] = {};\n});\n\nutils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) {\n defaults.headers[method] = utils.merge(DEFAULT_CONTENT_TYPE);\n});\n\nexport default defaults;\n","'use strict';\n\nimport utils from './../utils.js';\nimport defaults from '../defaults/index.js';\nimport AxiosHeaders from '../core/AxiosHeaders.js';\n\n/**\n * Transform the data for a request or a response\n *\n * @param {Array|Function} fns A single function or Array of functions\n * @param {?Object} response The response object\n *\n * @returns {*} The resulting transformed data\n */\nexport default function transformData(fns, response) {\n const config = this || defaults;\n const context = response || config;\n const headers = AxiosHeaders.from(context.headers);\n let data = context.data;\n\n utils.forEach(fns, function transform(fn) {\n data = fn.call(config, data, headers.normalize(), response ? response.status : undefined);\n });\n\n headers.normalize();\n\n return data;\n}\n","'use strict';\n\nexport default function isCancel(value) {\n return !!(value && value.__CANCEL__);\n}\n","'use strict';\n\nimport transformData from './transformData.js';\nimport isCancel from '../cancel/isCancel.js';\nimport defaults from '../defaults/index.js';\nimport CanceledError from '../cancel/CanceledError.js';\nimport AxiosHeaders from '../core/AxiosHeaders.js';\n\n/**\n * Throws a `CanceledError` if cancellation has been requested.\n *\n * @param {Object} config The config that is to be used for the request\n *\n * @returns {void}\n */\nfunction throwIfCancellationRequested(config) {\n if (config.cancelToken) {\n config.cancelToken.throwIfRequested();\n }\n\n if (config.signal && config.signal.aborted) {\n throw new CanceledError();\n }\n}\n\n/**\n * Dispatch a request to the server using the configured adapter.\n *\n * @param {object} config The config that is to be used for the request\n *\n * @returns {Promise} The Promise to be fulfilled\n */\nexport default function dispatchRequest(config) {\n throwIfCancellationRequested(config);\n\n config.headers = AxiosHeaders.from(config.headers);\n\n // Transform request data\n config.data = transformData.call(\n config,\n config.transformRequest\n );\n\n const adapter = config.adapter || defaults.adapter;\n\n return adapter(config).then(function onAdapterResolution(response) {\n throwIfCancellationRequested(config);\n\n // Transform response data\n response.data = transformData.call(\n config,\n config.transformResponse,\n response\n );\n\n response.headers = AxiosHeaders.from(response.headers);\n\n return response;\n }, function onAdapterRejection(reason) {\n if (!isCancel(reason)) {\n throwIfCancellationRequested(config);\n\n // Transform response data\n if (reason && reason.response) {\n reason.response.data = transformData.call(\n config,\n config.transformResponse,\n reason.response\n );\n reason.response.headers = AxiosHeaders.from(reason.response.headers);\n }\n }\n\n return Promise.reject(reason);\n });\n}\n","'use strict';\n\nimport utils from '../utils.js';\n\n/**\n * Config-specific merge-function which creates a new config-object\n * by merging two configuration objects together.\n *\n * @param {Object} config1\n * @param {Object} config2\n *\n * @returns {Object} New object resulting from merging config2 to config1\n */\nexport default function mergeConfig(config1, config2) {\n // eslint-disable-next-line no-param-reassign\n config2 = config2 || {};\n const config = {};\n\n function getMergedValue(target, source) {\n if (utils.isPlainObject(target) && utils.isPlainObject(source)) {\n return utils.merge(target, source);\n } else if (utils.isPlainObject(source)) {\n return utils.merge({}, source);\n } else if (utils.isArray(source)) {\n return source.slice();\n }\n return source;\n }\n\n // eslint-disable-next-line consistent-return\n function mergeDeepProperties(prop) {\n if (!utils.isUndefined(config2[prop])) {\n return getMergedValue(config1[prop], config2[prop]);\n } else if (!utils.isUndefined(config1[prop])) {\n return getMergedValue(undefined, config1[prop]);\n }\n }\n\n // eslint-disable-next-line consistent-return\n function valueFromConfig2(prop) {\n if (!utils.isUndefined(config2[prop])) {\n return getMergedValue(undefined, config2[prop]);\n }\n }\n\n // eslint-disable-next-line consistent-return\n function defaultToConfig2(prop) {\n if (!utils.isUndefined(config2[prop])) {\n return getMergedValue(undefined, config2[prop]);\n } else if (!utils.isUndefined(config1[prop])) {\n return getMergedValue(undefined, config1[prop]);\n }\n }\n\n // eslint-disable-next-line consistent-return\n function mergeDirectKeys(prop) {\n if (prop in config2) {\n return getMergedValue(config1[prop], config2[prop]);\n } else if (prop in config1) {\n return getMergedValue(undefined, config1[prop]);\n }\n }\n\n const mergeMap = {\n 'url': valueFromConfig2,\n 'method': valueFromConfig2,\n 'data': valueFromConfig2,\n 'baseURL': defaultToConfig2,\n 'transformRequest': defaultToConfig2,\n 'transformResponse': defaultToConfig2,\n 'paramsSerializer': defaultToConfig2,\n 'timeout': defaultToConfig2,\n 'timeoutMessage': defaultToConfig2,\n 'withCredentials': defaultToConfig2,\n 'adapter': defaultToConfig2,\n 'responseType': defaultToConfig2,\n 'xsrfCookieName': defaultToConfig2,\n 'xsrfHeaderName': defaultToConfig2,\n 'onUploadProgress': defaultToConfig2,\n 'onDownloadProgress': defaultToConfig2,\n 'decompress': defaultToConfig2,\n 'maxContentLength': defaultToConfig2,\n 'maxBodyLength': defaultToConfig2,\n 'beforeRedirect': defaultToConfig2,\n 'transport': defaultToConfig2,\n 'httpAgent': defaultToConfig2,\n 'httpsAgent': defaultToConfig2,\n 'cancelToken': defaultToConfig2,\n 'socketPath': defaultToConfig2,\n 'responseEncoding': defaultToConfig2,\n 'validateStatus': mergeDirectKeys\n };\n\n utils.forEach(Object.keys(config1).concat(Object.keys(config2)), function computeConfigValue(prop) {\n const merge = mergeMap[prop] || mergeDeepProperties;\n const configValue = merge(prop);\n (utils.isUndefined(configValue) && merge !== mergeDirectKeys) || (config[prop] = configValue);\n });\n\n return config;\n}\n","export const VERSION = \"1.0.0\";","'use strict';\n\nimport {VERSION} from '../env/data.js';\nimport AxiosError from '../core/AxiosError.js';\n\nconst validators = {};\n\n// eslint-disable-next-line func-names\n['object', 'boolean', 'number', 'function', 'string', 'symbol'].forEach((type, i) => {\n validators[type] = function validator(thing) {\n return typeof thing === type || 'a' + (i < 1 ? 'n ' : ' ') + type;\n };\n});\n\nconst deprecatedWarnings = {};\n\n/**\n * Transitional option validator\n *\n * @param {function|boolean?} validator - set to false if the transitional option has been removed\n * @param {string?} version - deprecated version / removed since version\n * @param {string?} message - some message with additional info\n *\n * @returns {function}\n */\nvalidators.transitional = function transitional(validator, version, message) {\n function formatMessage(opt, desc) {\n return '[Axios v' + VERSION + '] Transitional option \\'' + opt + '\\'' + desc + (message ? '. ' + message : '');\n }\n\n // eslint-disable-next-line func-names\n return (value, opt, opts) => {\n if (validator === false) {\n throw new AxiosError(\n formatMessage(opt, ' has been removed' + (version ? ' in ' + version : '')),\n AxiosError.ERR_DEPRECATED\n );\n }\n\n if (version && !deprecatedWarnings[opt]) {\n deprecatedWarnings[opt] = true;\n // eslint-disable-next-line no-console\n console.warn(\n formatMessage(\n opt,\n ' has been deprecated since v' + version + ' and will be removed in the near future'\n )\n );\n }\n\n return validator ? validator(value, opt, opts) : true;\n };\n};\n\n/**\n * Assert object's properties type\n *\n * @param {object} options\n * @param {object} schema\n * @param {boolean?} allowUnknown\n *\n * @returns {object}\n */\n\nfunction assertOptions(options, schema, allowUnknown) {\n if (typeof options !== 'object') {\n throw new AxiosError('options must be an object', AxiosError.ERR_BAD_OPTION_VALUE);\n }\n const keys = Object.keys(options);\n let i = keys.length;\n while (i-- > 0) {\n const opt = keys[i];\n const validator = schema[opt];\n if (validator) {\n const value = options[opt];\n const result = value === undefined || validator(value, opt, options);\n if (result !== true) {\n throw new AxiosError('option ' + opt + ' must be ' + result, AxiosError.ERR_BAD_OPTION_VALUE);\n }\n continue;\n }\n if (allowUnknown !== true) {\n throw new AxiosError('Unknown option ' + opt, AxiosError.ERR_BAD_OPTION);\n }\n }\n}\n\nexport default {\n assertOptions,\n validators\n};\n","'use strict';\n\nimport utils from './../utils.js';\nimport buildURL from '../helpers/buildURL.js';\nimport InterceptorManager from './InterceptorManager.js';\nimport dispatchRequest from './dispatchRequest.js';\nimport mergeConfig from './mergeConfig.js';\nimport buildFullPath from './buildFullPath.js';\nimport validator from '../helpers/validator.js';\nimport AxiosHeaders from './AxiosHeaders.js';\n\nconst validators = validator.validators;\n\n/**\n * Create a new instance of Axios\n *\n * @param {Object} instanceConfig The default config for the instance\n *\n * @return {Axios} A new instance of Axios\n */\nclass Axios {\n constructor(instanceConfig) {\n this.defaults = instanceConfig;\n this.interceptors = {\n request: new InterceptorManager(),\n response: new InterceptorManager()\n };\n }\n\n /**\n * Dispatch a request\n *\n * @param {String|Object} configOrUrl The config specific for this request (merged with this.defaults)\n * @param {?Object} config\n *\n * @returns {Promise} The Promise to be fulfilled\n */\n request(configOrUrl, config) {\n /*eslint no-param-reassign:0*/\n // Allow for axios('example/url'[, config]) a la fetch API\n if (typeof configOrUrl === 'string') {\n config = config || {};\n config.url = configOrUrl;\n } else {\n config = configOrUrl || {};\n }\n\n config = mergeConfig(this.defaults, config);\n\n const transitional = config.transitional;\n\n if (transitional !== undefined) {\n validator.assertOptions(transitional, {\n silentJSONParsing: validators.transitional(validators.boolean),\n forcedJSONParsing: validators.transitional(validators.boolean),\n clarifyTimeoutError: validators.transitional(validators.boolean)\n }, false);\n }\n\n // Set config.method\n config.method = (config.method || this.defaults.method || 'get').toLowerCase();\n\n // Flatten headers\n const defaultHeaders = config.headers && utils.merge(\n config.headers.common,\n config.headers[config.method]\n );\n\n defaultHeaders && utils.forEach(\n ['delete', 'get', 'head', 'post', 'put', 'patch', 'common'],\n function cleanHeaderConfig(method) {\n delete config.headers[method];\n }\n );\n\n config.headers = new AxiosHeaders(config.headers, defaultHeaders);\n\n // filter out skipped interceptors\n const requestInterceptorChain = [];\n let synchronousRequestInterceptors = true;\n this.interceptors.request.forEach(function unshiftRequestInterceptors(interceptor) {\n if (typeof interceptor.runWhen === 'function' && interceptor.runWhen(config) === false) {\n return;\n }\n\n synchronousRequestInterceptors = synchronousRequestInterceptors && interceptor.synchronous;\n\n requestInterceptorChain.unshift(interceptor.fulfilled, interceptor.rejected);\n });\n\n const responseInterceptorChain = [];\n this.interceptors.response.forEach(function pushResponseInterceptors(interceptor) {\n responseInterceptorChain.push(interceptor.fulfilled, interceptor.rejected);\n });\n\n let promise;\n let i = 0;\n let len;\n\n if (!synchronousRequestInterceptors) {\n const chain = [dispatchRequest.bind(this), undefined];\n chain.unshift.apply(chain, requestInterceptorChain);\n chain.push.apply(chain, responseInterceptorChain);\n len = chain.length;\n\n promise = Promise.resolve(config);\n\n while (i < len) {\n promise = promise.then(chain[i++], chain[i++]);\n }\n\n return promise;\n }\n\n len = requestInterceptorChain.length;\n\n let newConfig = config;\n\n i = 0;\n\n while (i < len) {\n const onFulfilled = requestInterceptorChain[i++];\n const onRejected = requestInterceptorChain[i++];\n try {\n newConfig = onFulfilled(newConfig);\n } catch (error) {\n onRejected.call(this, error);\n break;\n }\n }\n\n try {\n promise = dispatchRequest.call(this, newConfig);\n } catch (error) {\n return Promise.reject(error);\n }\n\n i = 0;\n len = responseInterceptorChain.length;\n\n while (i < len) {\n promise = promise.then(responseInterceptorChain[i++], responseInterceptorChain[i++]);\n }\n\n return promise;\n }\n\n getUri(config) {\n config = mergeConfig(this.defaults, config);\n const fullPath = buildFullPath(config.baseURL, config.url);\n return buildURL(fullPath, config.params, config.paramsSerializer);\n }\n}\n\n// Provide aliases for supported request methods\nutils.forEach(['delete', 'get', 'head', 'options'], function forEachMethodNoData(method) {\n /*eslint func-names:0*/\n Axios.prototype[method] = function(url, config) {\n return this.request(mergeConfig(config || {}, {\n method,\n url,\n data: (config || {}).data\n }));\n };\n});\n\nutils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) {\n /*eslint func-names:0*/\n\n function generateHTTPMethod(isForm) {\n return function httpMethod(url, data, config) {\n return this.request(mergeConfig(config || {}, {\n method,\n headers: isForm ? {\n 'Content-Type': 'multipart/form-data'\n } : {},\n url,\n data\n }));\n };\n }\n\n Axios.prototype[method] = generateHTTPMethod();\n\n Axios.prototype[method + 'Form'] = generateHTTPMethod(true);\n});\n\nexport default Axios;\n","'use strict';\n\nimport CanceledError from './CanceledError.js';\n\n/**\n * A `CancelToken` is an object that can be used to request cancellation of an operation.\n *\n * @param {Function} executor The executor function.\n *\n * @returns {CancelToken}\n */\nclass CancelToken {\n constructor(executor) {\n if (typeof executor !== 'function') {\n throw new TypeError('executor must be a function.');\n }\n\n let resolvePromise;\n\n this.promise = new Promise(function promiseExecutor(resolve) {\n resolvePromise = resolve;\n });\n\n const token = this;\n\n // eslint-disable-next-line func-names\n this.promise.then(cancel => {\n if (!token._listeners) return;\n\n let i = token._listeners.length;\n\n while (i-- > 0) {\n token._listeners[i](cancel);\n }\n token._listeners = null;\n });\n\n // eslint-disable-next-line func-names\n this.promise.then = onfulfilled => {\n let _resolve;\n // eslint-disable-next-line func-names\n const promise = new Promise(resolve => {\n token.subscribe(resolve);\n _resolve = resolve;\n }).then(onfulfilled);\n\n promise.cancel = function reject() {\n token.unsubscribe(_resolve);\n };\n\n return promise;\n };\n\n executor(function cancel(message, config, request) {\n if (token.reason) {\n // Cancellation has already been requested\n return;\n }\n\n token.reason = new CanceledError(message, config, request);\n resolvePromise(token.reason);\n });\n }\n\n /**\n * Throws a `CanceledError` if cancellation has been requested.\n */\n throwIfRequested() {\n if (this.reason) {\n throw this.reason;\n }\n }\n\n /**\n * Subscribe to the cancel signal\n */\n\n subscribe(listener) {\n if (this.reason) {\n listener(this.reason);\n return;\n }\n\n if (this._listeners) {\n this._listeners.push(listener);\n } else {\n this._listeners = [listener];\n }\n }\n\n /**\n * Unsubscribe from the cancel signal\n */\n\n unsubscribe(listener) {\n if (!this._listeners) {\n return;\n }\n const index = this._listeners.indexOf(listener);\n if (index !== -1) {\n this._listeners.splice(index, 1);\n }\n }\n\n /**\n * Returns an object that contains a new `CancelToken` and a function that, when called,\n * cancels the `CancelToken`.\n */\n static source() {\n let cancel;\n const token = new CancelToken(function executor(c) {\n cancel = c;\n });\n return {\n token,\n cancel\n };\n }\n}\n\nexport default CancelToken;\n","'use strict';\n\n/**\n * Syntactic sugar for invoking a function and expanding an array for arguments.\n *\n * Common use case would be to use `Function.prototype.apply`.\n *\n * ```js\n * function f(x, y, z) {}\n * var args = [1, 2, 3];\n * f.apply(null, args);\n * ```\n *\n * With `spread` this example can be re-written.\n *\n * ```js\n * spread(function(x, y, z) {})([1, 2, 3]);\n * ```\n *\n * @param {Function} callback\n *\n * @returns {Function}\n */\nexport default function spread(callback) {\n return function wrap(arr) {\n return callback.apply(null, arr);\n };\n}\n","'use strict';\n\nimport utils from './../utils.js';\n\n/**\n * Determines whether the payload is an error thrown by Axios\n *\n * @param {*} payload The value to test\n *\n * @returns {boolean} True if the payload is an error thrown by Axios, otherwise false\n */\nexport default function isAxiosError(payload) {\n return utils.isObject(payload) && (payload.isAxiosError === true);\n}\n","'use strict';\n\nimport utils from './utils.js';\nimport bind from './helpers/bind.js';\nimport Axios from './core/Axios.js';\nimport mergeConfig from './core/mergeConfig.js';\nimport defaults from './defaults/index.js';\nimport formDataToJSON from './helpers/formDataToJSON.js';\nimport CanceledError from './cancel/CanceledError.js';\nimport CancelToken from'./cancel/CancelToken.js';\nimport isCancel from'./cancel/isCancel.js';\nimport {VERSION} from './env/data.js';\nimport toFormData from './helpers/toFormData.js';\nimport AxiosError from './core/AxiosError.js';\nimport spread from './helpers/spread.js';\nimport isAxiosError from './helpers/isAxiosError.js';\n\n/**\n * Create an instance of Axios\n *\n * @param {Object} defaultConfig The default config for the instance\n *\n * @returns {Axios} A new instance of Axios\n */\nfunction createInstance(defaultConfig) {\n const context = new Axios(defaultConfig);\n const instance = bind(Axios.prototype.request, context);\n\n // Copy axios.prototype to instance\n utils.extend(instance, Axios.prototype, context, {allOwnKeys: true});\n\n // Copy context to instance\n utils.extend(instance, context, null, {allOwnKeys: true});\n\n // Factory for creating new instances\n instance.create = function create(instanceConfig) {\n return createInstance(mergeConfig(defaultConfig, instanceConfig));\n };\n\n return instance;\n}\n\n// Create the default instance to be exported\nconst axios = createInstance(defaults);\n\n// Expose Axios class to allow class inheritance\naxios.Axios = Axios;\n\n// Expose Cancel & CancelToken\naxios.CanceledError = CanceledError;\naxios.CancelToken = CancelToken;\naxios.isCancel = isCancel;\naxios.VERSION = VERSION;\naxios.toFormData = toFormData;\n\n// Expose AxiosError class\naxios.AxiosError = AxiosError;\n\n// alias for CanceledError for backward compatibility\naxios.Cancel = axios.CanceledError;\n\n// Expose all/spread\naxios.all = function all(promises) {\n return Promise.all(promises);\n};\n\naxios.spread = spread;\n\n// Expose isAxiosError\naxios.isAxiosError = isAxiosError;\n\naxios.formToJSON = thing => {\n return formDataToJSON(utils.isHTMLForm(thing) ? new FormData(thing) : thing);\n};\n\nexport default axios;\n"],"names":["bind","fn","thisArg","wrap","apply","arguments","toString","Object","prototype","getPrototypeOf","kindOf","cache","thing","str","call","slice","toLowerCase","create","kindOfTest","type","typeOfTest","isArray","Array","isUndefined","isBuffer","val","constructor","isFunction","isArrayBuffer","isArrayBufferView","result","ArrayBuffer","isView","buffer","isString","isNumber","isObject","isBoolean","isPlainObject","isDate","isFile","isBlob","isFileList","isStream","pipe","isFormData","pattern","FormData","isURLSearchParams","trim","replace","forEach","obj","allOwnKeys","i","l","length","keys","getOwnPropertyNames","len","key","merge","assignValue","extend","a","b","stripBOM","content","charCodeAt","inherits","superConstructor","props","descriptors","defineProperty","value","assign","toFlatObject","sourceObj","destObj","filter","propFilter","prop","merged","endsWith","searchString","position","String","undefined","lastIndex","indexOf","toArray","arr","isTypedArray","TypedArray","Uint8Array","forEachEntry","generator","Symbol","iterator","next","done","pair","matchAll","regExp","matches","exec","push","isHTMLForm","toCamelCase","replacer","m","p1","p2","toUpperCase","hasOwnProperty","isRegExp","reduceDescriptors","reducer","getOwnPropertyDescriptors","reducedDescriptors","descriptor","name","defineProperties","freezeMethods","enumerable","writable","set","Error","toObjectSet","arrayOrString","delimiter","define","split","noop","toFiniteNumber","defaultValue","Number","isFinite","hasOwnProp","AxiosError","message","code","config","request","response","captureStackTrace","stack","utils","toJSON","description","number","fileName","lineNumber","columnNumber","status","from","error","customProps","axiosError","cause","browser","self","window","isVisitable","removeBrackets","renderKey","path","dots","concat","map","each","token","join","isFlatArray","some","predicates","test","isSpecCompliant","append","toStringTag","toFormData","formData","options","TypeError","envFormData","metaTokens","indexes","defined","option","source","visitor","defaultVisitor","_Blob","Blob","useBlob","convertValue","toISOString","Buffer","JSON","stringify","el","index","exposedHelpers","build","pop","encode","charMap","encodeURIComponent","match","AxiosURLSearchParams","params","_pairs","encoder","_encode","buildURL","url","hashmarkIndex","serializerParams","InterceptorManager","handlers","fulfilled","rejected","synchronous","runWhen","id","forEachHandler","h","silentJSONParsing","forcedJSONParsing","clarifyTimeoutError","URLSearchParams","isStandardBrowserEnv","product","navigator","document","isBrowser","classes","protocols","toURLEncodedForm","data","platform","helpers","isNode","parsePropPath","arrayToObject","formDataToJSON","buildPath","target","isNumericKey","isLast","entries","settle","resolve","reject","validateStatus","ERR_BAD_REQUEST","ERR_BAD_RESPONSE","Math","floor","standardBrowserEnv","write","expires","domain","secure","cookie","Date","toGMTString","read","RegExp","decodeURIComponent","remove","now","nonStandardBrowserEnv","isAbsoluteURL","combineURLs","baseURL","relativeURL","buildFullPath","requestedURL","msie","userAgent","urlParsingNode","createElement","originURL","resolveURL","href","setAttribute","protocol","host","search","hash","hostname","port","pathname","charAt","location","isURLSameOrigin","requestURL","parsed","CanceledError","ERR_CANCELED","__CANCEL__","parseProtocol","ignoreDuplicateOf","rawHeaders","parser","line","substring","$internals","$defaults","normalizeHeader","header","normalizeValue","parseTokens","tokens","tokensRE","matchHeaderValue","context","formatHeader","w","char","buildAccessors","accessorName","methodName","arg1","arg2","arg3","configurable","findKey","_key","AxiosHeaders","headers","defaults","valueOrRewrite","rewrite","setHeader","_value","_header","_rewrite","lHeader","get","has","matcher","deleted","deleteHeader","clear","normalize","format","normalized","parseHeaders","accessor","internals","accessors","defineAccessor","speedometer","samplesCount","min","bytes","timestamps","head","tail","firstSampleTS","chunkLength","startedAt","bytesCount","passed","round","progressEventReducer","listener","isDownloadStream","bytesNotified","_speedometer","e","loaded","total","lengthComputable","progressBytes","rate","inRange","progress","estimated","xhrAdapter","Promise","dispatchXhrRequest","requestData","requestHeaders","responseType","onCanceled","cancelToken","unsubscribe","signal","removeEventListener","setContentType","XMLHttpRequest","auth","username","password","unescape","btoa","fullPath","open","method","paramsSerializer","timeout","onloadend","responseHeaders","getAllResponseHeaders","responseData","responseText","statusText","_resolve","_reject","err","onreadystatechange","handleLoad","readyState","responseURL","setTimeout","onabort","handleAbort","ECONNABORTED","onerror","handleError","ERR_NETWORK","ontimeout","handleTimeout","timeoutErrorMessage","transitional","transitionalDefaults","ETIMEDOUT","xsrfValue","withCredentials","xsrfCookieName","cookies","xsrfHeaderName","setRequestHeader","onDownloadProgress","addEventListener","onUploadProgress","upload","cancel","abort","subscribe","aborted","send","adapters","http","httpAdapter","xhr","getAdapter","nameOrAdapter","adapter","DEFAULT_CONTENT_TYPE","getDefaultAdapter","process","stringifySafely","rawValue","parse","transformRequest","contentType","getContentType","hasJSONContentType","isObjectPayload","formSerializer","_FormData","env","transformResponse","JSONRequested","strictJSONParsing","maxContentLength","maxBodyLength","common","forEachMethodNoData","forEachMethodWithData","transformData","fns","transform","isCancel","throwIfCancellationRequested","throwIfRequested","dispatchRequest","then","onAdapterResolution","onAdapterRejection","reason","mergeConfig","config1","config2","getMergedValue","mergeDeepProperties","valueFromConfig2","defaultToConfig2","mergeDirectKeys","mergeMap","computeConfigValue","configValue","VERSION","validators","validator","deprecatedWarnings","version","formatMessage","opt","desc","opts","ERR_DEPRECATED","console","warn","assertOptions","schema","allowUnknown","ERR_BAD_OPTION_VALUE","ERR_BAD_OPTION","Axios","instanceConfig","interceptors","configOrUrl","defaultHeaders","cleanHeaderConfig","requestInterceptorChain","synchronousRequestInterceptors","unshiftRequestInterceptors","interceptor","unshift","responseInterceptorChain","pushResponseInterceptors","promise","chain","newConfig","onFulfilled","onRejected","generateHTTPMethod","isForm","httpMethod","CancelToken","executor","resolvePromise","promiseExecutor","_listeners","onfulfilled","splice","c","spread","callback","isAxiosError","payload","createInstance","defaultConfig","instance","axios","Cancel","all","promises","formToJSON"],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/axios/dist/axios.min.js b/node_modules/axios/dist/axios.min.js new file mode 100644 index 000000000..eaea6c38e --- /dev/null +++ b/node_modules/axios/dist/axios.min.js @@ -0,0 +1,2 @@ +!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):(e="undefined"!=typeof globalThis?globalThis:e||self).axios=t()}(this,(function(){"use strict";function e(t){return e="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},e(t)}function t(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function n(e,t){for(var n=0;n2&&void 0!==arguments[2]?arguments[2]:{},s=i.allOwnKeys,a=void 0!==s&&s;if(null!=t)if("object"!==e(t)&&(t=[t]),l(t))for(r=0,o=t.length;r3&&void 0!==arguments[3]?arguments[3]:{},i=r.allOwnKeys;return S(t,(function(t,r){n&&m(t)?e[r]=o(t,n):e[r]=t}),{allOwnKeys:i}),e},trim:function(e){return e.trim?e.trim():e.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"")},stripBOM:function(e){return 65279===e.charCodeAt(0)&&(e=e.slice(1)),e},inherits:function(e,t,n,r){e.prototype=Object.create(t.prototype,r),e.prototype.constructor=e,Object.defineProperty(e,"super",{value:t.prototype}),n&&Object.assign(e.prototype,n)},toFlatObject:function(e,t,n,r){var o,i,s,u={};if(t=t||{},null==e)return t;do{for(i=(o=Object.getOwnPropertyNames(e)).length;i-- >0;)s=o[i],r&&!r(s,e,t)||u[s]||(t[s]=e[s],u[s]=!0);e=!1!==n&&a(e)}while(e&&(!n||n(e,t))&&e!==Object.prototype);return t},kindOf:u,kindOfTest:c,endsWith:function(e,t,n){e=String(e),(void 0===n||n>e.length)&&(n=e.length),n-=t.length;var r=e.indexOf(t,n);return-1!==r&&r===n},toArray:function(e){if(!e)return null;if(l(e))return e;var t=e.length;if(!v(t))return null;for(var n=new Array(t);t-- >0;)n[t]=e[t];return n},forEachEntry:function(e,t){for(var n,r=(e&&e[Symbol.iterator]).call(e);(n=r.next())&&!n.done;){var o=n.value;t.call(e,o[0],o[1])}},matchAll:function(e,t){for(var n,r=[];null!==(n=e.exec(t));)r.push(n);return r},isHTMLForm:T,hasOwnProperty:x,hasOwnProp:x,reduceDescriptors:N,freezeMethods:function(e){N(e,(function(t,n){var r=e[n];m(r)&&(t.enumerable=!1,"writable"in t?t.writable=!1:t.set||(t.set=function(){throw Error("Can not read-only method '"+n+"'")}))}))},toObjectSet:function(e,t){var n={},r=function(e){e.forEach((function(e){n[e]=!0}))};return l(e)?r(e):r(String(e).split(t)),n},toCamelCase:function(e){return e.toLowerCase().replace(/[_-\s]([a-z\d])(\w*)/g,(function(e,t,n){return t.toUpperCase()+n}))},noop:function(){},toFiniteNumber:function(e,t){return e=+e,Number.isFinite(e)?e:t}};function _(e,t,n,r,o){Error.call(this),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=(new Error).stack,this.message=e,this.name="AxiosError",t&&(this.code=t),n&&(this.config=n),r&&(this.request=r),o&&(this.response=o)}P.inherits(_,Error,{toJSON:function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:this.config,code:this.code,status:this.response&&this.response.status?this.response.status:null}}});var B=_.prototype,D={};["ERR_BAD_OPTION_VALUE","ERR_BAD_OPTION","ECONNABORTED","ETIMEDOUT","ERR_NETWORK","ERR_FR_TOO_MANY_REDIRECTS","ERR_DEPRECATED","ERR_BAD_RESPONSE","ERR_BAD_REQUEST","ERR_CANCELED","ERR_NOT_SUPPORT","ERR_INVALID_URL"].forEach((function(e){D[e]={value:e}})),Object.defineProperties(_,D),Object.defineProperty(B,"isAxiosError",{value:!0}),_.from=function(e,t,n,r,o,i){var s=Object.create(B);return P.toFlatObject(e,s,(function(e){return e!==Error.prototype}),(function(e){return"isAxiosError"!==e})),_.call(s,e.message,t,n,r,o),s.cause=e,s.name=e.name,i&&Object.assign(s,i),s};var F="object"==("undefined"==typeof self?"undefined":e(self))?self.FormData:window.FormData;function U(e){return P.isPlainObject(e)||P.isArray(e)}function k(e){return P.endsWith(e,"[]")?e.slice(0,-2):e}function L(e,t,n){return e?e.concat(t).map((function(e,t){return e=k(e),!n&&t?"["+e+"]":e})).join(n?".":""):t}var q=P.toFlatObject(P,{},null,(function(e){return/^is[A-Z]/.test(e)}));function z(t,n,r){if(!P.isObject(t))throw new TypeError("target must be an object");n=n||new(F||FormData);var o,i=(r=P.toFlatObject(r,{metaTokens:!0,dots:!1,indexes:!1},!1,(function(e,t){return!P.isUndefined(t[e])}))).metaTokens,s=r.visitor||l,a=r.dots,u=r.indexes,c=(r.Blob||"undefined"!=typeof Blob&&Blob)&&((o=n)&&P.isFunction(o.append)&&"FormData"===o[Symbol.toStringTag]&&o[Symbol.iterator]);if(!P.isFunction(s))throw new TypeError("visitor must be a function");function f(e){if(null===e)return"";if(P.isDate(e))return e.toISOString();if(!c&&P.isBlob(e))throw new _("Blob is not supported. Use a Buffer instead.");return P.isArrayBuffer(e)||P.isTypedArray(e)?c&&"function"==typeof Blob?new Blob([e]):Buffer.from(e):e}function l(t,r,o){var s=t;if(t&&!o&&"object"===e(t))if(P.endsWith(r,"{}"))r=i?r:r.slice(0,-2),t=JSON.stringify(t);else if(P.isArray(t)&&function(e){return P.isArray(e)&&!e.some(U)}(t)||P.isFileList(t)||P.endsWith(r,"[]")&&(s=P.toArray(t)))return r=k(r),s.forEach((function(e,t){!P.isUndefined(e)&&n.append(!0===u?L([r],t,a):null===u?r:r+"[]",f(e))})),!1;return!!U(t)||(n.append(L(o,r,a),f(t)),!1)}var d=[],h=Object.assign(q,{defaultVisitor:l,convertValue:f,isVisitable:U});if(!P.isObject(t))throw new TypeError("data must be an object");return function e(t,r){if(!P.isUndefined(t)){if(-1!==d.indexOf(t))throw Error("Circular reference detected in "+r.join("."));d.push(t),P.forEach(t,(function(t,o){!0===(!P.isUndefined(t)&&s.call(n,t,P.isString(o)?o.trim():o,r,h))&&e(t,r?r.concat(o):[o])})),d.pop()}}(t),n}function I(e){var t={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(e).replace(/[!'()~]|%20|%00/g,(function(e){return t[e]}))}function M(e,t){this._pairs=[],e&&z(e,this,t)}var J=M.prototype;function H(e){return encodeURIComponent(e).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}function V(e,t,n){if(!t)return e;var r=e.indexOf("#");-1!==r&&(e=e.slice(0,r));var o=n&&n.encode||H,i=P.isURLSearchParams(t)?t.toString():new M(t,n).toString(o);return i&&(e+=(-1===e.indexOf("?")?"?":"&")+i),e}J.append=function(e,t){this._pairs.push([e,t])},J.toString=function(e){var t=e?function(t){return e.call(this,t,I)}:I;return this._pairs.map((function(e){return t(e[0])+"="+t(e[1])}),"").join("&")};var W,K=function(){function e(){t(this,e),this.handlers=[]}return r(e,[{key:"use",value:function(e,t,n){return this.handlers.push({fulfilled:e,rejected:t,synchronous:!!n&&n.synchronous,runWhen:n?n.runWhen:null}),this.handlers.length-1}},{key:"eject",value:function(e){this.handlers[e]&&(this.handlers[e]=null)}},{key:"clear",value:function(){this.handlers&&(this.handlers=[])}},{key:"forEach",value:function(e){P.forEach(this.handlers,(function(t){null!==t&&e(t)}))}}]),e}(),X={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},$="undefined"!=typeof URLSearchParams?URLSearchParams:M,Q=FormData,G=("undefined"==typeof navigator||"ReactNative"!==(W=navigator.product)&&"NativeScript"!==W&&"NS"!==W)&&"undefined"!=typeof window&&"undefined"!=typeof document,Y={isBrowser:!0,classes:{URLSearchParams:$,FormData:Q,Blob:Blob},isStandardBrowserEnv:G,protocols:["http","https","file","blob","url","data"]};function Z(e){function t(e,n,r,o){var i=e[o++],s=Number.isFinite(+i),a=o>=e.length;return i=!i&&P.isArray(r)?r.length:i,a?(P.hasOwnProp(r,i)?r[i]=[r[i],n]:r[i]=n,!s):(r[i]&&P.isObject(r[i])||(r[i]=[]),t(e,n,r[i],o)&&P.isArray(r[i])&&(r[i]=function(e){var t,n,r={},o=Object.keys(e),i=o.length;for(t=0;t0;)if(t===(n=r[o]).toLowerCase())return n;return null}function le(e,t){e&&this.set(e),this[se]=t||null}function de(e,t){var n=0,r=function(e,t){e=e||10;var n,r=new Array(e),o=new Array(e),i=0,s=0;return t=void 0!==t?t:1e3,function(a){var u=Date.now(),c=o[s];n||(n=u),r[i]=a,o[i]=u;for(var f=s,l=0;f!==i;)l+=r[f++],f%=e;if((i=(i+1)%e)===s&&(s=(s+1)%e),!(u-n-1,i=P.isObject(e);if(i&&P.isHTMLForm(e)&&(e=new FormData(e)),P.isFormData(e))return o&&o?JSON.stringify(Z(e)):e;if(P.isArrayBuffer(e)||P.isBuffer(e)||P.isStream(e)||P.isFile(e)||P.isBlob(e))return e;if(P.isArrayBufferView(e))return e.buffer;if(P.isURLSearchParams(e))return t.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),e.toString();if(i){if(r.indexOf("application/x-www-form-urlencoded")>-1)return function(e,t){return z(e,new Y.classes.URLSearchParams,Object.assign({visitor:function(e,t,n,r){return Y.isNode&&P.isBuffer(e)?(this.append(t,e.toString("base64")),!1):r.defaultVisitor.apply(this,arguments)}},t))}(e,this.formSerializer).toString();if((n=P.isFileList(e))||r.indexOf("multipart/form-data")>-1){var s=this.env&&this.env.FormData;return z(n?{"files[]":e}:e,s&&new s,this.formSerializer)}}return i||o?(t.setContentType("application/json",!1),function(e,t,n){if(P.isString(e))try{return(t||JSON.parse)(e),P.trim(e)}catch(e){if("SyntaxError"!==e.name)throw e}return(n||JSON.stringify)(e)}(e)):e}],transformResponse:[function(e){var t=this.transitional||be.transitional,n=t&&t.forcedJSONParsing,r="json"===this.responseType;if(e&&P.isString(e)&&(n&&!this.responseType||r)){var o=!(t&&t.silentJSONParsing)&&r;try{return JSON.parse(e)}catch(e){if(o){if("SyntaxError"===e.name)throw _.from(e,_.ERR_BAD_RESPONSE,this,null,this.response);throw e}}}return e}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:Y.classes.FormData,Blob:Y.classes.Blob},validateStatus:function(e){return e>=200&&e<300},headers:{common:{Accept:"application/json, text/plain, */*"}}};function ge(e,t){var n=this||be,r=t||n,o=le.from(r.headers),i=r.data;return P.forEach(e,(function(e){i=e.call(n,i,o.normalize(),t?t.status:void 0)})),o.normalize(),i}function Ee(e){return!(!e||!e.__CANCEL__)}function we(e){if(e.cancelToken&&e.cancelToken.throwIfRequested(),e.signal&&e.signal.aborted)throw new re}function Oe(e){return we(e),e.headers=le.from(e.headers),e.data=ge.call(e,e.transformRequest),(e.adapter||be.adapter)(e).then((function(t){return we(e),t.data=ge.call(e,e.transformResponse,t),t.headers=le.from(t.headers),t}),(function(t){return Ee(t)||(we(e),t&&t.response&&(t.response.data=ge.call(e,e.transformResponse,t.response),t.response.headers=le.from(t.response.headers))),Promise.reject(t)}))}function Re(e,t){t=t||{};var n={};function r(e,t){return P.isPlainObject(e)&&P.isPlainObject(t)?P.merge(e,t):P.isPlainObject(t)?P.merge({},t):P.isArray(t)?t.slice():t}function o(n){return P.isUndefined(t[n])?P.isUndefined(e[n])?void 0:r(void 0,e[n]):r(e[n],t[n])}function i(e){if(!P.isUndefined(t[e]))return r(void 0,t[e])}function s(n){return P.isUndefined(t[n])?P.isUndefined(e[n])?void 0:r(void 0,e[n]):r(void 0,t[n])}function a(n){return n in t?r(e[n],t[n]):n in e?r(void 0,e[n]):void 0}var u={url:i,method:i,data:i,baseURL:s,transformRequest:s,transformResponse:s,paramsSerializer:s,timeout:s,timeoutMessage:s,withCredentials:s,adapter:s,responseType:s,xsrfCookieName:s,xsrfHeaderName:s,onUploadProgress:s,onDownloadProgress:s,decompress:s,maxContentLength:s,maxBodyLength:s,beforeRedirect:s,transport:s,httpAgent:s,httpsAgent:s,cancelToken:s,socketPath:s,responseEncoding:s,validateStatus:a};return P.forEach(Object.keys(e).concat(Object.keys(t)),(function(e){var t=u[e]||o,r=t(e);P.isUndefined(r)&&t!==a||(n[e]=r)})),n}P.forEach(["delete","get","head"],(function(e){be.headers[e]={}})),P.forEach(["post","put","patch"],(function(e){be.headers[e]=P.merge(ve)}));var Se="1.0.0",Ae={};["object","boolean","number","function","string","symbol"].forEach((function(t,n){Ae[t]=function(r){return e(r)===t||"a"+(n<1?"n ":" ")+t}}));var je={};Ae.transitional=function(e,t,n){function r(e,t){return"[Axios v1.0.0] Transitional option '"+e+"'"+t+(n?". "+n:"")}return function(n,o,i){if(!1===e)throw new _(r(o," has been removed"+(t?" in "+t:"")),_.ERR_DEPRECATED);return t&&!je[o]&&(je[o]=!0,console.warn(r(o," has been deprecated since v"+t+" and will be removed in the near future"))),!e||e(n,o,i)}};var Te={assertOptions:function(t,n,r){if("object"!==e(t))throw new _("options must be an object",_.ERR_BAD_OPTION_VALUE);for(var o=Object.keys(t),i=o.length;i-- >0;){var s=o[i],a=n[s];if(a){var u=t[s],c=void 0===u||a(u,s,t);if(!0!==c)throw new _("option "+s+" must be "+c,_.ERR_BAD_OPTION_VALUE)}else if(!0!==r)throw new _("Unknown option "+s,_.ERR_BAD_OPTION)}},validators:Ae},xe=Te.validators,Ce=function(){function e(n){t(this,e),this.defaults=n,this.interceptors={request:new K,response:new K}}return r(e,[{key:"request",value:function(e,t){"string"==typeof e?(t=t||{}).url=e:t=e||{};var n=(t=Re(this.defaults,t)).transitional;void 0!==n&&Te.assertOptions(n,{silentJSONParsing:xe.transitional(xe.boolean),forcedJSONParsing:xe.transitional(xe.boolean),clarifyTimeoutError:xe.transitional(xe.boolean)},!1),t.method=(t.method||this.defaults.method||"get").toLowerCase();var r=t.headers&&P.merge(t.headers.common,t.headers[t.method]);r&&P.forEach(["delete","get","head","post","put","patch","common"],(function(e){delete t.headers[e]})),t.headers=new le(t.headers,r);var o=[],i=!0;this.interceptors.request.forEach((function(e){"function"==typeof e.runWhen&&!1===e.runWhen(t)||(i=i&&e.synchronous,o.unshift(e.fulfilled,e.rejected))}));var s,a=[];this.interceptors.response.forEach((function(e){a.push(e.fulfilled,e.rejected)}));var u,c=0;if(!i){var f=[Oe.bind(this),void 0];for(f.unshift.apply(f,o),f.push.apply(f,a),u=f.length,s=Promise.resolve(t);c0;)o._listeners[t](e);o._listeners=null}})),this.promise.then=function(e){var t,n=new Promise((function(e){o.subscribe(e),t=e})).then(e);return n.cancel=function(){o.unsubscribe(t)},n},n((function(e,t,n){o.reason||(o.reason=new re(e,t,n),r(o.reason))}))}return r(e,[{key:"throwIfRequested",value:function(){if(this.reason)throw this.reason}},{key:"subscribe",value:function(e){this.reason?e(this.reason):this._listeners?this._listeners.push(e):this._listeners=[e]}},{key:"unsubscribe",value:function(e){if(this._listeners){var t=this._listeners.indexOf(e);-1!==t&&this._listeners.splice(t,1)}}}],[{key:"source",value:function(){var t;return{token:new e((function(e){t=e})),cancel:t}}}]),e}();var Pe=function e(t){var n=new Ce(t),r=o(Ce.prototype.request,n);return P.extend(r,Ce.prototype,n,{allOwnKeys:!0}),P.extend(r,n,null,{allOwnKeys:!0}),r.create=function(n){return e(Re(t,n))},r}(be);return Pe.Axios=Ce,Pe.CanceledError=re,Pe.CancelToken=Ne,Pe.isCancel=Ee,Pe.VERSION=Se,Pe.toFormData=z,Pe.AxiosError=_,Pe.Cancel=Pe.CanceledError,Pe.all=function(e){return Promise.all(e)},Pe.spread=function(e){return function(t){return e.apply(null,t)}},Pe.isAxiosError=function(e){return P.isObject(e)&&!0===e.isAxiosError},Pe.formToJSON=function(e){return Z(P.isHTMLForm(e)?new FormData(e):e)},Pe})); +//# sourceMappingURL=axios.min.js.map diff --git a/node_modules/axios/dist/axios.min.js.map b/node_modules/axios/dist/axios.min.js.map new file mode 100644 index 000000000..45575ea47 --- /dev/null +++ b/node_modules/axios/dist/axios.min.js.map @@ -0,0 +1 @@ +{"version":3,"file":"axios.min.js","sources":["../lib/helpers/bind.js","../lib/utils.js","../lib/core/AxiosError.js","../node_modules/form-data/lib/browser.js","../lib/helpers/toFormData.js","../lib/helpers/AxiosURLSearchParams.js","../lib/helpers/buildURL.js","../lib/platform/browser/index.js","../lib/core/InterceptorManager.js","../lib/defaults/transitional.js","../lib/platform/browser/classes/URLSearchParams.js","../lib/platform/browser/classes/FormData.js","../lib/helpers/formDataToJSON.js","../lib/helpers/cookies.js","../lib/core/buildFullPath.js","../lib/helpers/isAbsoluteURL.js","../lib/helpers/combineURLs.js","../lib/helpers/isURLSameOrigin.js","../lib/cancel/CanceledError.js","../lib/helpers/parseHeaders.js","../lib/core/AxiosHeaders.js","../lib/adapters/xhr.js","../lib/helpers/speedometer.js","../lib/core/settle.js","../lib/helpers/parseProtocol.js","../lib/adapters/index.js","../lib/defaults/index.js","../lib/helpers/toURLEncodedForm.js","../lib/core/transformData.js","../lib/cancel/isCancel.js","../lib/core/dispatchRequest.js","../lib/core/mergeConfig.js","../lib/env/data.js","../lib/helpers/validator.js","../lib/core/Axios.js","../lib/cancel/CancelToken.js","../lib/axios.js","../lib/helpers/spread.js","../lib/helpers/isAxiosError.js"],"sourcesContent":["'use strict';\n\nexport default function bind(fn, thisArg) {\n return function wrap() {\n return fn.apply(thisArg, arguments);\n };\n}\n","'use strict';\n\nimport bind from './helpers/bind.js';\n\n// utils is a library of generic helper functions non-specific to axios\n\nconst {toString} = Object.prototype;\nconst {getPrototypeOf} = Object;\n\nconst kindOf = (cache => thing => {\n const str = toString.call(thing);\n return cache[str] || (cache[str] = str.slice(8, -1).toLowerCase());\n})(Object.create(null));\n\nconst kindOfTest = (type) => {\n type = type.toLowerCase();\n return (thing) => kindOf(thing) === type\n}\n\nconst typeOfTest = type => thing => typeof thing === type;\n\n/**\n * Determine if a value is an Array\n *\n * @param {Object} val The value to test\n *\n * @returns {boolean} True if value is an Array, otherwise false\n */\nconst {isArray} = Array;\n\n/**\n * Determine if a value is undefined\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if the value is undefined, otherwise false\n */\nconst isUndefined = typeOfTest('undefined');\n\n/**\n * Determine if a value is a Buffer\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a Buffer, otherwise false\n */\nfunction isBuffer(val) {\n return val !== null && !isUndefined(val) && val.constructor !== null && !isUndefined(val.constructor)\n && isFunction(val.constructor.isBuffer) && val.constructor.isBuffer(val);\n}\n\n/**\n * Determine if a value is an ArrayBuffer\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is an ArrayBuffer, otherwise false\n */\nconst isArrayBuffer = kindOfTest('ArrayBuffer');\n\n\n/**\n * Determine if a value is a view on an ArrayBuffer\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a view on an ArrayBuffer, otherwise false\n */\nfunction isArrayBufferView(val) {\n let result;\n if ((typeof ArrayBuffer !== 'undefined') && (ArrayBuffer.isView)) {\n result = ArrayBuffer.isView(val);\n } else {\n result = (val) && (val.buffer) && (isArrayBuffer(val.buffer));\n }\n return result;\n}\n\n/**\n * Determine if a value is a String\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a String, otherwise false\n */\nconst isString = typeOfTest('string');\n\n/**\n * Determine if a value is a Function\n *\n * @param {*} val The value to test\n * @returns {boolean} True if value is a Function, otherwise false\n */\nconst isFunction = typeOfTest('function');\n\n/**\n * Determine if a value is a Number\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a Number, otherwise false\n */\nconst isNumber = typeOfTest('number');\n\n/**\n * Determine if a value is an Object\n *\n * @param {*} thing The value to test\n *\n * @returns {boolean} True if value is an Object, otherwise false\n */\nconst isObject = (thing) => thing !== null && typeof thing === 'object';\n\n/**\n * Determine if a value is a Boolean\n *\n * @param {*} thing The value to test\n * @returns {boolean} True if value is a Boolean, otherwise false\n */\nconst isBoolean = thing => thing === true || thing === false;\n\n/**\n * Determine if a value is a plain Object\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a plain Object, otherwise false\n */\nconst isPlainObject = (val) => {\n if (kindOf(val) !== 'object') {\n return false;\n }\n\n const prototype = getPrototypeOf(val);\n return prototype === null || prototype === Object.prototype;\n}\n\n/**\n * Determine if a value is a Date\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a Date, otherwise false\n */\nconst isDate = kindOfTest('Date');\n\n/**\n * Determine if a value is a File\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a File, otherwise false\n */\nconst isFile = kindOfTest('File');\n\n/**\n * Determine if a value is a Blob\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a Blob, otherwise false\n */\nconst isBlob = kindOfTest('Blob');\n\n/**\n * Determine if a value is a FileList\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a File, otherwise false\n */\nconst isFileList = kindOfTest('FileList');\n\n/**\n * Determine if a value is a Stream\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a Stream, otherwise false\n */\nconst isStream = (val) => isObject(val) && isFunction(val.pipe);\n\n/**\n * Determine if a value is a FormData\n *\n * @param {*} thing The value to test\n *\n * @returns {boolean} True if value is an FormData, otherwise false\n */\nconst isFormData = (thing) => {\n const pattern = '[object FormData]';\n return thing && (\n (typeof FormData === 'function' && thing instanceof FormData) ||\n toString.call(thing) === pattern ||\n (isFunction(thing.toString) && thing.toString() === pattern)\n );\n}\n\n/**\n * Determine if a value is a URLSearchParams object\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a URLSearchParams object, otherwise false\n */\nconst isURLSearchParams = kindOfTest('URLSearchParams');\n\n/**\n * Trim excess whitespace off the beginning and end of a string\n *\n * @param {String} str The String to trim\n *\n * @returns {String} The String freed of excess whitespace\n */\nconst trim = (str) => str.trim ?\n str.trim() : str.replace(/^[\\s\\uFEFF\\xA0]+|[\\s\\uFEFF\\xA0]+$/g, '');\n\n/**\n * Iterate over an Array or an Object invoking a function for each item.\n *\n * If `obj` is an Array callback will be called passing\n * the value, index, and complete array for each item.\n *\n * If 'obj' is an Object callback will be called passing\n * the value, key, and complete object for each property.\n *\n * @param {Object|Array} obj The object to iterate\n * @param {Function} fn The callback to invoke for each item\n *\n * @param {Boolean} [allOwnKeys = false]\n * @returns {void}\n */\nfunction forEach(obj, fn, {allOwnKeys = false} = {}) {\n // Don't bother if no value provided\n if (obj === null || typeof obj === 'undefined') {\n return;\n }\n\n let i;\n let l;\n\n // Force an array if not already something iterable\n if (typeof obj !== 'object') {\n /*eslint no-param-reassign:0*/\n obj = [obj];\n }\n\n if (isArray(obj)) {\n // Iterate over array values\n for (i = 0, l = obj.length; i < l; i++) {\n fn.call(null, obj[i], i, obj);\n }\n } else {\n // Iterate over object keys\n const keys = allOwnKeys ? Object.getOwnPropertyNames(obj) : Object.keys(obj);\n const len = keys.length;\n let key;\n\n for (i = 0; i < len; i++) {\n key = keys[i];\n fn.call(null, obj[key], key, obj);\n }\n }\n}\n\n/**\n * Accepts varargs expecting each argument to be an object, then\n * immutably merges the properties of each object and returns result.\n *\n * When multiple objects contain the same key the later object in\n * the arguments list will take precedence.\n *\n * Example:\n *\n * ```js\n * var result = merge({foo: 123}, {foo: 456});\n * console.log(result.foo); // outputs 456\n * ```\n *\n * @param {Object} obj1 Object to merge\n *\n * @returns {Object} Result of all merge properties\n */\nfunction merge(/* obj1, obj2, obj3, ... */) {\n const result = {};\n const assignValue = (val, key) => {\n if (isPlainObject(result[key]) && isPlainObject(val)) {\n result[key] = merge(result[key], val);\n } else if (isPlainObject(val)) {\n result[key] = merge({}, val);\n } else if (isArray(val)) {\n result[key] = val.slice();\n } else {\n result[key] = val;\n }\n }\n\n for (let i = 0, l = arguments.length; i < l; i++) {\n arguments[i] && forEach(arguments[i], assignValue);\n }\n return result;\n}\n\n/**\n * Extends object a by mutably adding to it the properties of object b.\n *\n * @param {Object} a The object to be extended\n * @param {Object} b The object to copy properties from\n * @param {Object} thisArg The object to bind function to\n *\n * @param {Boolean} [allOwnKeys]\n * @returns {Object} The resulting value of object a\n */\nconst extend = (a, b, thisArg, {allOwnKeys}= {}) => {\n forEach(b, (val, key) => {\n if (thisArg && isFunction(val)) {\n a[key] = bind(val, thisArg);\n } else {\n a[key] = val;\n }\n }, {allOwnKeys});\n return a;\n}\n\n/**\n * Remove byte order marker. This catches EF BB BF (the UTF-8 BOM)\n *\n * @param {string} content with BOM\n *\n * @returns {string} content value without BOM\n */\nconst stripBOM = (content) => {\n if (content.charCodeAt(0) === 0xFEFF) {\n content = content.slice(1);\n }\n return content;\n}\n\n/**\n * Inherit the prototype methods from one constructor into another\n * @param {function} constructor\n * @param {function} superConstructor\n * @param {object} [props]\n * @param {object} [descriptors]\n *\n * @returns {void}\n */\nconst inherits = (constructor, superConstructor, props, descriptors) => {\n constructor.prototype = Object.create(superConstructor.prototype, descriptors);\n constructor.prototype.constructor = constructor;\n Object.defineProperty(constructor, 'super', {\n value: superConstructor.prototype\n });\n props && Object.assign(constructor.prototype, props);\n}\n\n/**\n * Resolve object with deep prototype chain to a flat object\n * @param {Object} sourceObj source object\n * @param {Object} [destObj]\n * @param {Function|Boolean} [filter]\n * @param {Function} [propFilter]\n *\n * @returns {Object}\n */\nconst toFlatObject = (sourceObj, destObj, filter, propFilter) => {\n let props;\n let i;\n let prop;\n const merged = {};\n\n destObj = destObj || {};\n // eslint-disable-next-line no-eq-null,eqeqeq\n if (sourceObj == null) return destObj;\n\n do {\n props = Object.getOwnPropertyNames(sourceObj);\n i = props.length;\n while (i-- > 0) {\n prop = props[i];\n if ((!propFilter || propFilter(prop, sourceObj, destObj)) && !merged[prop]) {\n destObj[prop] = sourceObj[prop];\n merged[prop] = true;\n }\n }\n sourceObj = filter !== false && getPrototypeOf(sourceObj);\n } while (sourceObj && (!filter || filter(sourceObj, destObj)) && sourceObj !== Object.prototype);\n\n return destObj;\n}\n\n/**\n * Determines whether a string ends with the characters of a specified string\n *\n * @param {String} str\n * @param {String} searchString\n * @param {Number} [position= 0]\n *\n * @returns {boolean}\n */\nconst endsWith = (str, searchString, position) => {\n str = String(str);\n if (position === undefined || position > str.length) {\n position = str.length;\n }\n position -= searchString.length;\n const lastIndex = str.indexOf(searchString, position);\n return lastIndex !== -1 && lastIndex === position;\n}\n\n\n/**\n * Returns new array from array like object or null if failed\n *\n * @param {*} [thing]\n *\n * @returns {?Array}\n */\nconst toArray = (thing) => {\n if (!thing) return null;\n if (isArray(thing)) return thing;\n let i = thing.length;\n if (!isNumber(i)) return null;\n const arr = new Array(i);\n while (i-- > 0) {\n arr[i] = thing[i];\n }\n return arr;\n}\n\n/**\n * Checking if the Uint8Array exists and if it does, it returns a function that checks if the\n * thing passed in is an instance of Uint8Array\n *\n * @param {TypedArray}\n *\n * @returns {Array}\n */\n// eslint-disable-next-line func-names\nconst isTypedArray = (TypedArray => {\n // eslint-disable-next-line func-names\n return thing => {\n return TypedArray && thing instanceof TypedArray;\n };\n})(typeof Uint8Array !== 'undefined' && getPrototypeOf(Uint8Array));\n\n/**\n * For each entry in the object, call the function with the key and value.\n *\n * @param {Object} obj - The object to iterate over.\n * @param {Function} fn - The function to call for each entry.\n *\n * @returns {void}\n */\nconst forEachEntry = (obj, fn) => {\n const generator = obj && obj[Symbol.iterator];\n\n const iterator = generator.call(obj);\n\n let result;\n\n while ((result = iterator.next()) && !result.done) {\n const pair = result.value;\n fn.call(obj, pair[0], pair[1]);\n }\n}\n\n/**\n * It takes a regular expression and a string, and returns an array of all the matches\n *\n * @param {string} regExp - The regular expression to match against.\n * @param {string} str - The string to search.\n *\n * @returns {Array}\n */\nconst matchAll = (regExp, str) => {\n let matches;\n const arr = [];\n\n while ((matches = regExp.exec(str)) !== null) {\n arr.push(matches);\n }\n\n return arr;\n}\n\n/* Checking if the kindOfTest function returns true when passed an HTMLFormElement. */\nconst isHTMLForm = kindOfTest('HTMLFormElement');\n\nconst toCamelCase = str => {\n return str.toLowerCase().replace(/[_-\\s]([a-z\\d])(\\w*)/g,\n function replacer(m, p1, p2) {\n return p1.toUpperCase() + p2;\n }\n );\n};\n\n/* Creating a function that will check if an object has a property. */\nconst hasOwnProperty = (({hasOwnProperty}) => (obj, prop) => hasOwnProperty.call(obj, prop))(Object.prototype);\n\n/**\n * Determine if a value is a RegExp object\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a RegExp object, otherwise false\n */\nconst isRegExp = kindOfTest('RegExp');\n\nconst reduceDescriptors = (obj, reducer) => {\n const descriptors = Object.getOwnPropertyDescriptors(obj);\n const reducedDescriptors = {};\n\n forEach(descriptors, (descriptor, name) => {\n if (reducer(descriptor, name, obj) !== false) {\n reducedDescriptors[name] = descriptor;\n }\n });\n\n Object.defineProperties(obj, reducedDescriptors);\n}\n\n/**\n * Makes all methods read-only\n * @param {Object} obj\n */\n\nconst freezeMethods = (obj) => {\n reduceDescriptors(obj, (descriptor, name) => {\n const value = obj[name];\n\n if (!isFunction(value)) return;\n\n descriptor.enumerable = false;\n\n if ('writable' in descriptor) {\n descriptor.writable = false;\n return;\n }\n\n if (!descriptor.set) {\n descriptor.set = () => {\n throw Error('Can not read-only method \\'' + name + '\\'');\n };\n }\n });\n}\n\nconst toObjectSet = (arrayOrString, delimiter) => {\n const obj = {};\n\n const define = (arr) => {\n arr.forEach(value => {\n obj[value] = true;\n });\n }\n\n isArray(arrayOrString) ? define(arrayOrString) : define(String(arrayOrString).split(delimiter));\n\n return obj;\n}\n\nconst noop = () => {}\n\nconst toFiniteNumber = (value, defaultValue) => {\n value = +value;\n return Number.isFinite(value) ? value : defaultValue;\n}\n\nexport default {\n isArray,\n isArrayBuffer,\n isBuffer,\n isFormData,\n isArrayBufferView,\n isString,\n isNumber,\n isBoolean,\n isObject,\n isPlainObject,\n isUndefined,\n isDate,\n isFile,\n isBlob,\n isRegExp,\n isFunction,\n isStream,\n isURLSearchParams,\n isTypedArray,\n isFileList,\n forEach,\n merge,\n extend,\n trim,\n stripBOM,\n inherits,\n toFlatObject,\n kindOf,\n kindOfTest,\n endsWith,\n toArray,\n forEachEntry,\n matchAll,\n isHTMLForm,\n hasOwnProperty,\n hasOwnProp: hasOwnProperty, // an alias to avoid ESLint no-prototype-builtins detection\n reduceDescriptors,\n freezeMethods,\n toObjectSet,\n toCamelCase,\n noop,\n toFiniteNumber\n};\n","'use strict';\n\nimport utils from '../utils.js';\n\n/**\n * Create an Error with the specified message, config, error code, request and response.\n *\n * @param {string} message The error message.\n * @param {string} [code] The error code (for example, 'ECONNABORTED').\n * @param {Object} [config] The config.\n * @param {Object} [request] The request.\n * @param {Object} [response] The response.\n *\n * @returns {Error} The created error.\n */\nfunction AxiosError(message, code, config, request, response) {\n Error.call(this);\n\n if (Error.captureStackTrace) {\n Error.captureStackTrace(this, this.constructor);\n } else {\n this.stack = (new Error()).stack;\n }\n\n this.message = message;\n this.name = 'AxiosError';\n code && (this.code = code);\n config && (this.config = config);\n request && (this.request = request);\n response && (this.response = response);\n}\n\nutils.inherits(AxiosError, Error, {\n toJSON: function toJSON() {\n return {\n // Standard\n message: this.message,\n name: this.name,\n // Microsoft\n description: this.description,\n number: this.number,\n // Mozilla\n fileName: this.fileName,\n lineNumber: this.lineNumber,\n columnNumber: this.columnNumber,\n stack: this.stack,\n // Axios\n config: this.config,\n code: this.code,\n status: this.response && this.response.status ? this.response.status : null\n };\n }\n});\n\nconst prototype = AxiosError.prototype;\nconst descriptors = {};\n\n[\n 'ERR_BAD_OPTION_VALUE',\n 'ERR_BAD_OPTION',\n 'ECONNABORTED',\n 'ETIMEDOUT',\n 'ERR_NETWORK',\n 'ERR_FR_TOO_MANY_REDIRECTS',\n 'ERR_DEPRECATED',\n 'ERR_BAD_RESPONSE',\n 'ERR_BAD_REQUEST',\n 'ERR_CANCELED',\n 'ERR_NOT_SUPPORT',\n 'ERR_INVALID_URL'\n// eslint-disable-next-line func-names\n].forEach(code => {\n descriptors[code] = {value: code};\n});\n\nObject.defineProperties(AxiosError, descriptors);\nObject.defineProperty(prototype, 'isAxiosError', {value: true});\n\n// eslint-disable-next-line func-names\nAxiosError.from = (error, code, config, request, response, customProps) => {\n const axiosError = Object.create(prototype);\n\n utils.toFlatObject(error, axiosError, function filter(obj) {\n return obj !== Error.prototype;\n }, prop => {\n return prop !== 'isAxiosError';\n });\n\n AxiosError.call(axiosError, error.message, code, config, request, response);\n\n axiosError.cause = error;\n\n axiosError.name = error.name;\n\n customProps && Object.assign(axiosError, customProps);\n\n return axiosError;\n};\n\nexport default AxiosError;\n","/* eslint-env browser */\nmodule.exports = typeof self == 'object' ? self.FormData : window.FormData;\n","'use strict';\n\nimport utils from '../utils.js';\nimport AxiosError from '../core/AxiosError.js';\nimport envFormData from '../env/classes/FormData.js';\n\n/**\n * Determines if the given thing is a array or js object.\n *\n * @param {string} thing - The object or array to be visited.\n *\n * @returns {boolean}\n */\nfunction isVisitable(thing) {\n return utils.isPlainObject(thing) || utils.isArray(thing);\n}\n\n/**\n * It removes the brackets from the end of a string\n *\n * @param {string} key - The key of the parameter.\n *\n * @returns {string} the key without the brackets.\n */\nfunction removeBrackets(key) {\n return utils.endsWith(key, '[]') ? key.slice(0, -2) : key;\n}\n\n/**\n * It takes a path, a key, and a boolean, and returns a string\n *\n * @param {string} path - The path to the current key.\n * @param {string} key - The key of the current object being iterated over.\n * @param {string} dots - If true, the key will be rendered with dots instead of brackets.\n *\n * @returns {string} The path to the current key.\n */\nfunction renderKey(path, key, dots) {\n if (!path) return key;\n return path.concat(key).map(function each(token, i) {\n // eslint-disable-next-line no-param-reassign\n token = removeBrackets(token);\n return !dots && i ? '[' + token + ']' : token;\n }).join(dots ? '.' : '');\n}\n\n/**\n * If the array is an array and none of its elements are visitable, then it's a flat array.\n *\n * @param {Array} arr - The array to check\n *\n * @returns {boolean}\n */\nfunction isFlatArray(arr) {\n return utils.isArray(arr) && !arr.some(isVisitable);\n}\n\nconst predicates = utils.toFlatObject(utils, {}, null, function filter(prop) {\n return /^is[A-Z]/.test(prop);\n});\n\n/**\n * If the thing is a FormData object, return true, otherwise return false.\n *\n * @param {unknown} thing - The thing to check.\n *\n * @returns {boolean}\n */\nfunction isSpecCompliant(thing) {\n return thing && utils.isFunction(thing.append) && thing[Symbol.toStringTag] === 'FormData' && thing[Symbol.iterator];\n}\n\n/**\n * Convert a data object to FormData\n *\n * @param {Object} obj\n * @param {?Object} [formData]\n * @param {?Object} [options]\n * @param {Function} [options.visitor]\n * @param {Boolean} [options.metaTokens = true]\n * @param {Boolean} [options.dots = false]\n * @param {?Boolean} [options.indexes = false]\n *\n * @returns {Object}\n **/\n\n/**\n * It converts an object into a FormData object\n *\n * @param {Object} obj - The object to convert to form data.\n * @param {string} formData - The FormData object to append to.\n * @param {Object} options\n *\n * @returns\n */\nfunction toFormData(obj, formData, options) {\n if (!utils.isObject(obj)) {\n throw new TypeError('target must be an object');\n }\n\n // eslint-disable-next-line no-param-reassign\n formData = formData || new (envFormData || FormData)();\n\n // eslint-disable-next-line no-param-reassign\n options = utils.toFlatObject(options, {\n metaTokens: true,\n dots: false,\n indexes: false\n }, false, function defined(option, source) {\n // eslint-disable-next-line no-eq-null,eqeqeq\n return !utils.isUndefined(source[option]);\n });\n\n const metaTokens = options.metaTokens;\n // eslint-disable-next-line no-use-before-define\n const visitor = options.visitor || defaultVisitor;\n const dots = options.dots;\n const indexes = options.indexes;\n const _Blob = options.Blob || typeof Blob !== 'undefined' && Blob;\n const useBlob = _Blob && isSpecCompliant(formData);\n\n if (!utils.isFunction(visitor)) {\n throw new TypeError('visitor must be a function');\n }\n\n function convertValue(value) {\n if (value === null) return '';\n\n if (utils.isDate(value)) {\n return value.toISOString();\n }\n\n if (!useBlob && utils.isBlob(value)) {\n throw new AxiosError('Blob is not supported. Use a Buffer instead.');\n }\n\n if (utils.isArrayBuffer(value) || utils.isTypedArray(value)) {\n return useBlob && typeof Blob === 'function' ? new Blob([value]) : Buffer.from(value);\n }\n\n return value;\n }\n\n /**\n * Default visitor.\n *\n * @param {*} value\n * @param {String|Number} key\n * @param {Array} path\n * @this {FormData}\n *\n * @returns {boolean} return true to visit the each prop of the value recursively\n */\n function defaultVisitor(value, key, path) {\n let arr = value;\n\n if (value && !path && typeof value === 'object') {\n if (utils.endsWith(key, '{}')) {\n // eslint-disable-next-line no-param-reassign\n key = metaTokens ? key : key.slice(0, -2);\n // eslint-disable-next-line no-param-reassign\n value = JSON.stringify(value);\n } else if (\n (utils.isArray(value) && isFlatArray(value)) ||\n (utils.isFileList(value) || utils.endsWith(key, '[]') && (arr = utils.toArray(value))\n )) {\n // eslint-disable-next-line no-param-reassign\n key = removeBrackets(key);\n\n arr.forEach(function each(el, index) {\n !utils.isUndefined(el) && formData.append(\n // eslint-disable-next-line no-nested-ternary\n indexes === true ? renderKey([key], index, dots) : (indexes === null ? key : key + '[]'),\n convertValue(el)\n );\n });\n return false;\n }\n }\n\n if (isVisitable(value)) {\n return true;\n }\n\n formData.append(renderKey(path, key, dots), convertValue(value));\n\n return false;\n }\n\n const stack = [];\n\n const exposedHelpers = Object.assign(predicates, {\n defaultVisitor,\n convertValue,\n isVisitable\n });\n\n function build(value, path) {\n if (utils.isUndefined(value)) return;\n\n if (stack.indexOf(value) !== -1) {\n throw Error('Circular reference detected in ' + path.join('.'));\n }\n\n stack.push(value);\n\n utils.forEach(value, function each(el, key) {\n const result = !utils.isUndefined(el) && visitor.call(\n formData, el, utils.isString(key) ? key.trim() : key, path, exposedHelpers\n );\n\n if (result === true) {\n build(el, path ? path.concat(key) : [key]);\n }\n });\n\n stack.pop();\n }\n\n if (!utils.isObject(obj)) {\n throw new TypeError('data must be an object');\n }\n\n build(obj);\n\n return formData;\n}\n\nexport default toFormData;\n","'use strict';\n\nimport toFormData from './toFormData.js';\n\n/**\n * It encodes a string by replacing all characters that are not in the unreserved set with\n * their percent-encoded equivalents\n *\n * @param {string} str - The string to encode.\n *\n * @returns {string} The encoded string.\n */\nfunction encode(str) {\n const charMap = {\n '!': '%21',\n \"'\": '%27',\n '(': '%28',\n ')': '%29',\n '~': '%7E',\n '%20': '+',\n '%00': '\\x00'\n };\n return encodeURIComponent(str).replace(/[!'()~]|%20|%00/g, function replacer(match) {\n return charMap[match];\n });\n}\n\n/**\n * It takes a params object and converts it to a FormData object\n *\n * @param {Object} params - The parameters to be converted to a FormData object.\n * @param {Object} options - The options object passed to the Axios constructor.\n *\n * @returns {void}\n */\nfunction AxiosURLSearchParams(params, options) {\n this._pairs = [];\n\n params && toFormData(params, this, options);\n}\n\nconst prototype = AxiosURLSearchParams.prototype;\n\nprototype.append = function append(name, value) {\n this._pairs.push([name, value]);\n};\n\nprototype.toString = function toString(encoder) {\n const _encode = encoder ? function(value) {\n return encoder.call(this, value, encode);\n } : encode;\n\n return this._pairs.map(function each(pair) {\n return _encode(pair[0]) + '=' + _encode(pair[1]);\n }, '').join('&');\n};\n\nexport default AxiosURLSearchParams;\n","'use strict';\n\nimport utils from '../utils.js';\nimport AxiosURLSearchParams from '../helpers/AxiosURLSearchParams.js';\n\n/**\n * It replaces all instances of the characters `:`, `$`, `,`, `+`, `[`, and `]` with their\n * URI encoded counterparts\n *\n * @param {string} val The value to be encoded.\n *\n * @returns {string} The encoded value.\n */\nfunction encode(val) {\n return encodeURIComponent(val).\n replace(/%3A/gi, ':').\n replace(/%24/g, '$').\n replace(/%2C/gi, ',').\n replace(/%20/g, '+').\n replace(/%5B/gi, '[').\n replace(/%5D/gi, ']');\n}\n\n/**\n * Build a URL by appending params to the end\n *\n * @param {string} url The base of the url (e.g., http://www.google.com)\n * @param {object} [params] The params to be appended\n * @param {?object} options\n *\n * @returns {string} The formatted url\n */\nexport default function buildURL(url, params, options) {\n /*eslint no-param-reassign:0*/\n if (!params) {\n return url;\n }\n\n const hashmarkIndex = url.indexOf('#');\n\n if (hashmarkIndex !== -1) {\n url = url.slice(0, hashmarkIndex);\n }\n\n const _encode = options && options.encode || encode;\n\n const serializerParams = utils.isURLSearchParams(params) ?\n params.toString() :\n new AxiosURLSearchParams(params, options).toString(_encode);\n\n if (serializerParams) {\n url += (url.indexOf('?') === -1 ? '?' : '&') + serializerParams;\n }\n\n return url;\n}\n","import URLSearchParams from './classes/URLSearchParams.js'\nimport FormData from './classes/FormData.js'\n\n/**\n * Determine if we're running in a standard browser environment\n *\n * This allows axios to run in a web worker, and react-native.\n * Both environments support XMLHttpRequest, but not fully standard globals.\n *\n * web workers:\n * typeof window -> undefined\n * typeof document -> undefined\n *\n * react-native:\n * navigator.product -> 'ReactNative'\n * nativescript\n * navigator.product -> 'NativeScript' or 'NS'\n *\n * @returns {boolean}\n */\nconst isStandardBrowserEnv = (() => {\n let product;\n if (typeof navigator !== 'undefined' && (\n (product = navigator.product) === 'ReactNative' ||\n product === 'NativeScript' ||\n product === 'NS')\n ) {\n return false;\n }\n\n return typeof window !== 'undefined' && typeof document !== 'undefined';\n})();\n\nexport default {\n isBrowser: true,\n classes: {\n URLSearchParams,\n FormData,\n Blob\n },\n isStandardBrowserEnv,\n protocols: ['http', 'https', 'file', 'blob', 'url', 'data']\n};\n","'use strict';\n\nimport utils from './../utils.js';\n\nclass InterceptorManager {\n constructor() {\n this.handlers = [];\n }\n\n /**\n * Add a new interceptor to the stack\n *\n * @param {Function} fulfilled The function to handle `then` for a `Promise`\n * @param {Function} rejected The function to handle `reject` for a `Promise`\n *\n * @return {Number} An ID used to remove interceptor later\n */\n use(fulfilled, rejected, options) {\n this.handlers.push({\n fulfilled,\n rejected,\n synchronous: options ? options.synchronous : false,\n runWhen: options ? options.runWhen : null\n });\n return this.handlers.length - 1;\n }\n\n /**\n * Remove an interceptor from the stack\n *\n * @param {Number} id The ID that was returned by `use`\n *\n * @returns {Boolean} `true` if the interceptor was removed, `false` otherwise\n */\n eject(id) {\n if (this.handlers[id]) {\n this.handlers[id] = null;\n }\n }\n\n /**\n * Clear all interceptors from the stack\n *\n * @returns {void}\n */\n clear() {\n if (this.handlers) {\n this.handlers = [];\n }\n }\n\n /**\n * Iterate over all the registered interceptors\n *\n * This method is particularly useful for skipping over any\n * interceptors that may have become `null` calling `eject`.\n *\n * @param {Function} fn The function to call for each interceptor\n *\n * @returns {void}\n */\n forEach(fn) {\n utils.forEach(this.handlers, function forEachHandler(h) {\n if (h !== null) {\n fn(h);\n }\n });\n }\n}\n\nexport default InterceptorManager;\n","'use strict';\n\nexport default {\n silentJSONParsing: true,\n forcedJSONParsing: true,\n clarifyTimeoutError: false\n};\n","'use strict';\n\nimport AxiosURLSearchParams from '../../../helpers/AxiosURLSearchParams.js';\nexport default typeof URLSearchParams !== 'undefined' ? URLSearchParams : AxiosURLSearchParams;\n","'use strict';\n\nexport default FormData;\n","'use strict';\n\nimport utils from '../utils.js';\n\n/**\n * It takes a string like `foo[x][y][z]` and returns an array like `['foo', 'x', 'y', 'z']\n *\n * @param {string} name - The name of the property to get.\n *\n * @returns An array of strings.\n */\nfunction parsePropPath(name) {\n // foo[x][y][z]\n // foo.x.y.z\n // foo-x-y-z\n // foo x y z\n return utils.matchAll(/\\w+|\\[(\\w*)]/g, name).map(match => {\n return match[0] === '[]' ? '' : match[1] || match[0];\n });\n}\n\n/**\n * Convert an array to an object.\n *\n * @param {Array} arr - The array to convert to an object.\n *\n * @returns An object with the same keys and values as the array.\n */\nfunction arrayToObject(arr) {\n const obj = {};\n const keys = Object.keys(arr);\n let i;\n const len = keys.length;\n let key;\n for (i = 0; i < len; i++) {\n key = keys[i];\n obj[key] = arr[key];\n }\n return obj;\n}\n\n/**\n * It takes a FormData object and returns a JavaScript object\n *\n * @param {string} formData The FormData object to convert to JSON.\n *\n * @returns {Object | null} The converted object.\n */\nfunction formDataToJSON(formData) {\n function buildPath(path, value, target, index) {\n let name = path[index++];\n const isNumericKey = Number.isFinite(+name);\n const isLast = index >= path.length;\n name = !name && utils.isArray(target) ? target.length : name;\n\n if (isLast) {\n if (utils.hasOwnProp(target, name)) {\n target[name] = [target[name], value];\n } else {\n target[name] = value;\n }\n\n return !isNumericKey;\n }\n\n if (!target[name] || !utils.isObject(target[name])) {\n target[name] = [];\n }\n\n const result = buildPath(path, value, target[name], index);\n\n if (result && utils.isArray(target[name])) {\n target[name] = arrayToObject(target[name]);\n }\n\n return !isNumericKey;\n }\n\n if (utils.isFormData(formData) && utils.isFunction(formData.entries)) {\n const obj = {};\n\n utils.forEachEntry(formData, (name, value) => {\n buildPath(parsePropPath(name), value, obj, 0);\n });\n\n return obj;\n }\n\n return null;\n}\n\nexport default formDataToJSON;\n","'use strict';\n\nimport utils from './../utils.js';\nimport platform from '../platform/index.js';\n\nexport default platform.isStandardBrowserEnv ?\n\n// Standard browser envs support document.cookie\n (function standardBrowserEnv() {\n return {\n write: function write(name, value, expires, path, domain, secure) {\n const cookie = [];\n cookie.push(name + '=' + encodeURIComponent(value));\n\n if (utils.isNumber(expires)) {\n cookie.push('expires=' + new Date(expires).toGMTString());\n }\n\n if (utils.isString(path)) {\n cookie.push('path=' + path);\n }\n\n if (utils.isString(domain)) {\n cookie.push('domain=' + domain);\n }\n\n if (secure === true) {\n cookie.push('secure');\n }\n\n document.cookie = cookie.join('; ');\n },\n\n read: function read(name) {\n const match = document.cookie.match(new RegExp('(^|;\\\\s*)(' + name + ')=([^;]*)'));\n return (match ? decodeURIComponent(match[3]) : null);\n },\n\n remove: function remove(name) {\n this.write(name, '', Date.now() - 86400000);\n }\n };\n })() :\n\n// Non standard browser env (web workers, react-native) lack needed support.\n (function nonStandardBrowserEnv() {\n return {\n write: function write() {},\n read: function read() { return null; },\n remove: function remove() {}\n };\n })();\n","'use strict';\n\nimport isAbsoluteURL from '../helpers/isAbsoluteURL.js';\nimport combineURLs from '../helpers/combineURLs.js';\n\n/**\n * Creates a new URL by combining the baseURL with the requestedURL,\n * only when the requestedURL is not already an absolute URL.\n * If the requestURL is absolute, this function returns the requestedURL untouched.\n *\n * @param {string} baseURL The base URL\n * @param {string} requestedURL Absolute or relative URL to combine\n *\n * @returns {string} The combined full path\n */\nexport default function buildFullPath(baseURL, requestedURL) {\n if (baseURL && !isAbsoluteURL(requestedURL)) {\n return combineURLs(baseURL, requestedURL);\n }\n return requestedURL;\n}\n","'use strict';\n\n/**\n * Determines whether the specified URL is absolute\n *\n * @param {string} url The URL to test\n *\n * @returns {boolean} True if the specified URL is absolute, otherwise false\n */\nexport default function isAbsoluteURL(url) {\n // A URL is considered absolute if it begins with \"://\" or \"//\" (protocol-relative URL).\n // RFC 3986 defines scheme name as a sequence of characters beginning with a letter and followed\n // by any combination of letters, digits, plus, period, or hyphen.\n return /^([a-z][a-z\\d+\\-.]*:)?\\/\\//i.test(url);\n}\n","'use strict';\n\n/**\n * Creates a new URL by combining the specified URLs\n *\n * @param {string} baseURL The base URL\n * @param {string} relativeURL The relative URL\n *\n * @returns {string} The combined URL\n */\nexport default function combineURLs(baseURL, relativeURL) {\n return relativeURL\n ? baseURL.replace(/\\/+$/, '') + '/' + relativeURL.replace(/^\\/+/, '')\n : baseURL;\n}\n","'use strict';\n\nimport utils from './../utils.js';\nimport platform from '../platform/index.js';\n\nexport default platform.isStandardBrowserEnv ?\n\n// Standard browser envs have full support of the APIs needed to test\n// whether the request URL is of the same origin as current location.\n (function standardBrowserEnv() {\n const msie = /(msie|trident)/i.test(navigator.userAgent);\n const urlParsingNode = document.createElement('a');\n let originURL;\n\n /**\n * Parse a URL to discover it's components\n *\n * @param {String} url The URL to be parsed\n * @returns {Object}\n */\n function resolveURL(url) {\n let href = url;\n\n if (msie) {\n // IE needs attribute set twice to normalize properties\n urlParsingNode.setAttribute('href', href);\n href = urlParsingNode.href;\n }\n\n urlParsingNode.setAttribute('href', href);\n\n // urlParsingNode provides the UrlUtils interface - http://url.spec.whatwg.org/#urlutils\n return {\n href: urlParsingNode.href,\n protocol: urlParsingNode.protocol ? urlParsingNode.protocol.replace(/:$/, '') : '',\n host: urlParsingNode.host,\n search: urlParsingNode.search ? urlParsingNode.search.replace(/^\\?/, '') : '',\n hash: urlParsingNode.hash ? urlParsingNode.hash.replace(/^#/, '') : '',\n hostname: urlParsingNode.hostname,\n port: urlParsingNode.port,\n pathname: (urlParsingNode.pathname.charAt(0) === '/') ?\n urlParsingNode.pathname :\n '/' + urlParsingNode.pathname\n };\n }\n\n originURL = resolveURL(window.location.href);\n\n /**\n * Determine if a URL shares the same origin as the current location\n *\n * @param {String} requestURL The URL to test\n * @returns {boolean} True if URL shares the same origin, otherwise false\n */\n return function isURLSameOrigin(requestURL) {\n const parsed = (utils.isString(requestURL)) ? resolveURL(requestURL) : requestURL;\n return (parsed.protocol === originURL.protocol &&\n parsed.host === originURL.host);\n };\n })() :\n\n // Non standard browser envs (web workers, react-native) lack needed support.\n (function nonStandardBrowserEnv() {\n return function isURLSameOrigin() {\n return true;\n };\n })();\n","'use strict';\n\nimport AxiosError from '../core/AxiosError.js';\nimport utils from '../utils.js';\n\n/**\n * A `CanceledError` is an object that is thrown when an operation is canceled.\n *\n * @param {string=} message The message.\n * @param {Object=} config The config.\n * @param {Object=} request The request.\n *\n * @returns {CanceledError} The created error.\n */\nfunction CanceledError(message, config, request) {\n // eslint-disable-next-line no-eq-null,eqeqeq\n AxiosError.call(this, message == null ? 'canceled' : message, AxiosError.ERR_CANCELED, config, request);\n this.name = 'CanceledError';\n}\n\nutils.inherits(CanceledError, AxiosError, {\n __CANCEL__: true\n});\n\nexport default CanceledError;\n","'use strict';\n\nimport utils from './../utils.js';\n\n// RawAxiosHeaders whose duplicates are ignored by node\n// c.f. https://nodejs.org/api/http.html#http_message_headers\nconst ignoreDuplicateOf = utils.toObjectSet([\n 'age', 'authorization', 'content-length', 'content-type', 'etag',\n 'expires', 'from', 'host', 'if-modified-since', 'if-unmodified-since',\n 'last-modified', 'location', 'max-forwards', 'proxy-authorization',\n 'referer', 'retry-after', 'user-agent'\n]);\n\n/**\n * Parse headers into an object\n *\n * ```\n * Date: Wed, 27 Aug 2014 08:58:49 GMT\n * Content-Type: application/json\n * Connection: keep-alive\n * Transfer-Encoding: chunked\n * ```\n *\n * @param {String} rawHeaders Headers needing to be parsed\n *\n * @returns {Object} Headers parsed into an object\n */\nexport default rawHeaders => {\n const parsed = {};\n let key;\n let val;\n let i;\n\n rawHeaders && rawHeaders.split('\\n').forEach(function parser(line) {\n i = line.indexOf(':');\n key = line.substring(0, i).trim().toLowerCase();\n val = line.substring(i + 1).trim();\n\n if (!key || (parsed[key] && ignoreDuplicateOf[key])) {\n return;\n }\n\n if (key === 'set-cookie') {\n if (parsed[key]) {\n parsed[key].push(val);\n } else {\n parsed[key] = [val];\n }\n } else {\n parsed[key] = parsed[key] ? parsed[key] + ', ' + val : val;\n }\n });\n\n return parsed;\n};\n","'use strict';\n\nimport utils from '../utils.js';\nimport parseHeaders from '../helpers/parseHeaders.js';\n\nconst $internals = Symbol('internals');\nconst $defaults = Symbol('defaults');\n\nfunction normalizeHeader(header) {\n return header && String(header).trim().toLowerCase();\n}\n\nfunction normalizeValue(value) {\n if (value === false || value == null) {\n return value;\n }\n\n return String(value);\n}\n\nfunction parseTokens(str) {\n const tokens = Object.create(null);\n const tokensRE = /([^\\s,;=]+)\\s*(?:=\\s*([^,;]+))?/g;\n let match;\n\n while ((match = tokensRE.exec(str))) {\n tokens[match[1]] = match[2];\n }\n\n return tokens;\n}\n\nfunction matchHeaderValue(context, value, header, filter) {\n if (utils.isFunction(filter)) {\n return filter.call(this, value, header);\n }\n\n if (!utils.isString(value)) return;\n\n if (utils.isString(filter)) {\n return value.indexOf(filter) !== -1;\n }\n\n if (utils.isRegExp(filter)) {\n return filter.test(value);\n }\n}\n\nfunction formatHeader(header) {\n return header.trim()\n .toLowerCase().replace(/([a-z\\d])(\\w*)/g, (w, char, str) => {\n return char.toUpperCase() + str;\n });\n}\n\nfunction buildAccessors(obj, header) {\n const accessorName = utils.toCamelCase(' ' + header);\n\n ['get', 'set', 'has'].forEach(methodName => {\n Object.defineProperty(obj, methodName + accessorName, {\n value: function(arg1, arg2, arg3) {\n return this[methodName].call(this, header, arg1, arg2, arg3);\n },\n configurable: true\n });\n });\n}\n\nfunction findKey(obj, key) {\n key = key.toLowerCase();\n const keys = Object.keys(obj);\n let i = keys.length;\n let _key;\n while (i-- > 0) {\n _key = keys[i];\n if (key === _key.toLowerCase()) {\n return _key;\n }\n }\n return null;\n}\n\nfunction AxiosHeaders(headers, defaults) {\n headers && this.set(headers);\n this[$defaults] = defaults || null;\n}\n\nObject.assign(AxiosHeaders.prototype, {\n set: function(header, valueOrRewrite, rewrite) {\n const self = this;\n\n function setHeader(_value, _header, _rewrite) {\n const lHeader = normalizeHeader(_header);\n\n if (!lHeader) {\n throw new Error('header name must be a non-empty string');\n }\n\n const key = findKey(self, lHeader);\n\n if (key && _rewrite !== true && (self[key] === false || _rewrite === false)) {\n return;\n }\n\n if (utils.isArray(_value)) {\n _value = _value.map(normalizeValue);\n } else {\n _value = normalizeValue(_value);\n }\n\n self[key || _header] = _value;\n }\n\n if (utils.isPlainObject(header)) {\n utils.forEach(header, (_value, _header) => {\n setHeader(_value, _header, valueOrRewrite);\n });\n } else {\n setHeader(valueOrRewrite, header, rewrite);\n }\n\n return this;\n },\n\n get: function(header, parser) {\n header = normalizeHeader(header);\n\n if (!header) return undefined;\n\n const key = findKey(this, header);\n\n if (key) {\n const value = this[key];\n\n if (!parser) {\n return value;\n }\n\n if (parser === true) {\n return parseTokens(value);\n }\n\n if (utils.isFunction(parser)) {\n return parser.call(this, value, key);\n }\n\n if (utils.isRegExp(parser)) {\n return parser.exec(value);\n }\n\n throw new TypeError('parser must be boolean|regexp|function');\n }\n },\n\n has: function(header, matcher) {\n header = normalizeHeader(header);\n\n if (header) {\n const key = findKey(this, header);\n\n return !!(key && (!matcher || matchHeaderValue(this, this[key], key, matcher)));\n }\n\n return false;\n },\n\n delete: function(header, matcher) {\n const self = this;\n let deleted = false;\n\n function deleteHeader(_header) {\n _header = normalizeHeader(_header);\n\n if (_header) {\n const key = findKey(self, _header);\n\n if (key && (!matcher || matchHeaderValue(self, self[key], key, matcher))) {\n delete self[key];\n\n deleted = true;\n }\n }\n }\n\n if (utils.isArray(header)) {\n header.forEach(deleteHeader);\n } else {\n deleteHeader(header);\n }\n\n return deleted;\n },\n\n clear: function() {\n return Object.keys(this).forEach(this.delete.bind(this));\n },\n\n normalize: function(format) {\n const self = this;\n const headers = {};\n\n utils.forEach(this, (value, header) => {\n const key = findKey(headers, header);\n\n if (key) {\n self[key] = normalizeValue(value);\n delete self[header];\n return;\n }\n\n const normalized = format ? formatHeader(header) : String(header).trim();\n\n if (normalized !== header) {\n delete self[header];\n }\n\n self[normalized] = normalizeValue(value);\n\n headers[normalized] = true;\n });\n\n return this;\n },\n\n toJSON: function() {\n const obj = Object.create(null);\n\n utils.forEach(Object.assign({}, this[$defaults] || null, this),\n (value, header) => {\n if (value == null || value === false) return;\n obj[header] = utils.isArray(value) ? value.join(', ') : value;\n });\n\n return obj;\n }\n});\n\nObject.assign(AxiosHeaders, {\n from: function(thing) {\n if (utils.isString(thing)) {\n return new this(parseHeaders(thing));\n }\n return thing instanceof this ? thing : new this(thing);\n },\n\n accessor: function(header) {\n const internals = this[$internals] = (this[$internals] = {\n accessors: {}\n });\n\n const accessors = internals.accessors;\n const prototype = this.prototype;\n\n function defineAccessor(_header) {\n const lHeader = normalizeHeader(_header);\n\n if (!accessors[lHeader]) {\n buildAccessors(prototype, _header);\n accessors[lHeader] = true;\n }\n }\n\n utils.isArray(header) ? header.forEach(defineAccessor) : defineAccessor(header);\n\n return this;\n }\n});\n\nAxiosHeaders.accessor(['Content-Type', 'Content-Length', 'Accept', 'Accept-Encoding', 'User-Agent']);\n\nutils.freezeMethods(AxiosHeaders.prototype);\nutils.freezeMethods(AxiosHeaders);\n\nexport default AxiosHeaders;\n","'use strict';\n\nimport utils from './../utils.js';\nimport settle from './../core/settle.js';\nimport cookies from './../helpers/cookies.js';\nimport buildURL from './../helpers/buildURL.js';\nimport buildFullPath from '../core/buildFullPath.js';\nimport isURLSameOrigin from './../helpers/isURLSameOrigin.js';\nimport transitionalDefaults from '../defaults/transitional.js';\nimport AxiosError from '../core/AxiosError.js';\nimport CanceledError from '../cancel/CanceledError.js';\nimport parseProtocol from '../helpers/parseProtocol.js';\nimport platform from '../platform/index.js';\nimport AxiosHeaders from '../core/AxiosHeaders.js';\nimport speedometer from '../helpers/speedometer.js';\n\nfunction progressEventReducer(listener, isDownloadStream) {\n let bytesNotified = 0;\n const _speedometer = speedometer(50, 250);\n\n return e => {\n const loaded = e.loaded;\n const total = e.lengthComputable ? e.total : undefined;\n const progressBytes = loaded - bytesNotified;\n const rate = _speedometer(progressBytes);\n const inRange = loaded <= total;\n\n bytesNotified = loaded;\n\n const data = {\n loaded,\n total,\n progress: total ? (loaded / total) : undefined,\n bytes: progressBytes,\n rate: rate ? rate : undefined,\n estimated: rate && total && inRange ? (total - loaded) / rate : undefined\n };\n\n data[isDownloadStream ? 'download' : 'upload'] = true;\n\n listener(data);\n };\n}\n\nexport default function xhrAdapter(config) {\n return new Promise(function dispatchXhrRequest(resolve, reject) {\n let requestData = config.data;\n const requestHeaders = AxiosHeaders.from(config.headers).normalize();\n const responseType = config.responseType;\n let onCanceled;\n function done() {\n if (config.cancelToken) {\n config.cancelToken.unsubscribe(onCanceled);\n }\n\n if (config.signal) {\n config.signal.removeEventListener('abort', onCanceled);\n }\n }\n\n if (utils.isFormData(requestData) && platform.isStandardBrowserEnv) {\n requestHeaders.setContentType(false); // Let the browser set it\n }\n\n let request = new XMLHttpRequest();\n\n // HTTP basic authentication\n if (config.auth) {\n const username = config.auth.username || '';\n const password = config.auth.password ? unescape(encodeURIComponent(config.auth.password)) : '';\n requestHeaders.set('Authorization', 'Basic ' + btoa(username + ':' + password));\n }\n\n const fullPath = buildFullPath(config.baseURL, config.url);\n\n request.open(config.method.toUpperCase(), buildURL(fullPath, config.params, config.paramsSerializer), true);\n\n // Set the request timeout in MS\n request.timeout = config.timeout;\n\n function onloadend() {\n if (!request) {\n return;\n }\n // Prepare the response\n const responseHeaders = AxiosHeaders.from(\n 'getAllResponseHeaders' in request && request.getAllResponseHeaders()\n );\n const responseData = !responseType || responseType === 'text' || responseType === 'json' ?\n request.responseText : request.response;\n const response = {\n data: responseData,\n status: request.status,\n statusText: request.statusText,\n headers: responseHeaders,\n config,\n request\n };\n\n settle(function _resolve(value) {\n resolve(value);\n done();\n }, function _reject(err) {\n reject(err);\n done();\n }, response);\n\n // Clean up request\n request = null;\n }\n\n if ('onloadend' in request) {\n // Use onloadend if available\n request.onloadend = onloadend;\n } else {\n // Listen for ready state to emulate onloadend\n request.onreadystatechange = function handleLoad() {\n if (!request || request.readyState !== 4) {\n return;\n }\n\n // The request errored out and we didn't get a response, this will be\n // handled by onerror instead\n // With one exception: request that using file: protocol, most browsers\n // will return status as 0 even though it's a successful request\n if (request.status === 0 && !(request.responseURL && request.responseURL.indexOf('file:') === 0)) {\n return;\n }\n // readystate handler is calling before onerror or ontimeout handlers,\n // so we should call onloadend on the next 'tick'\n setTimeout(onloadend);\n };\n }\n\n // Handle browser request cancellation (as opposed to a manual cancellation)\n request.onabort = function handleAbort() {\n if (!request) {\n return;\n }\n\n reject(new AxiosError('Request aborted', AxiosError.ECONNABORTED, config, request));\n\n // Clean up request\n request = null;\n };\n\n // Handle low level network errors\n request.onerror = function handleError() {\n // Real errors are hidden from us by the browser\n // onerror should only fire if it's a network error\n reject(new AxiosError('Network Error', AxiosError.ERR_NETWORK, config, request));\n\n // Clean up request\n request = null;\n };\n\n // Handle timeout\n request.ontimeout = function handleTimeout() {\n let timeoutErrorMessage = config.timeout ? 'timeout of ' + config.timeout + 'ms exceeded' : 'timeout exceeded';\n const transitional = config.transitional || transitionalDefaults;\n if (config.timeoutErrorMessage) {\n timeoutErrorMessage = config.timeoutErrorMessage;\n }\n reject(new AxiosError(\n timeoutErrorMessage,\n transitional.clarifyTimeoutError ? AxiosError.ETIMEDOUT : AxiosError.ECONNABORTED,\n config,\n request));\n\n // Clean up request\n request = null;\n };\n\n // Add xsrf header\n // This is only done if running in a standard browser environment.\n // Specifically not if we're in a web worker, or react-native.\n if (platform.isStandardBrowserEnv) {\n // Add xsrf header\n const xsrfValue = (config.withCredentials || isURLSameOrigin(fullPath))\n && config.xsrfCookieName && cookies.read(config.xsrfCookieName);\n\n if (xsrfValue) {\n requestHeaders.set(config.xsrfHeaderName, xsrfValue);\n }\n }\n\n // Remove Content-Type if data is undefined\n requestData === undefined && requestHeaders.setContentType(null);\n\n // Add headers to the request\n if ('setRequestHeader' in request) {\n utils.forEach(requestHeaders.toJSON(), function setRequestHeader(val, key) {\n request.setRequestHeader(key, val);\n });\n }\n\n // Add withCredentials to request if needed\n if (!utils.isUndefined(config.withCredentials)) {\n request.withCredentials = !!config.withCredentials;\n }\n\n // Add responseType to request if needed\n if (responseType && responseType !== 'json') {\n request.responseType = config.responseType;\n }\n\n // Handle progress if needed\n if (typeof config.onDownloadProgress === 'function') {\n request.addEventListener('progress', progressEventReducer(config.onDownloadProgress, true));\n }\n\n // Not all browsers support upload events\n if (typeof config.onUploadProgress === 'function' && request.upload) {\n request.upload.addEventListener('progress', progressEventReducer(config.onUploadProgress));\n }\n\n if (config.cancelToken || config.signal) {\n // Handle cancellation\n // eslint-disable-next-line func-names\n onCanceled = cancel => {\n if (!request) {\n return;\n }\n reject(!cancel || cancel.type ? new CanceledError(null, config, request) : cancel);\n request.abort();\n request = null;\n };\n\n config.cancelToken && config.cancelToken.subscribe(onCanceled);\n if (config.signal) {\n config.signal.aborted ? onCanceled() : config.signal.addEventListener('abort', onCanceled);\n }\n }\n\n const protocol = parseProtocol(fullPath);\n\n if (protocol && platform.protocols.indexOf(protocol) === -1) {\n reject(new AxiosError('Unsupported protocol ' + protocol + ':', AxiosError.ERR_BAD_REQUEST, config));\n return;\n }\n\n\n // Send the request\n request.send(requestData || null);\n });\n}\n","'use strict';\n\n/**\n * Calculate data maxRate\n * @param {Number} [samplesCount= 10]\n * @param {Number} [min= 1000]\n * @returns {Function}\n */\nfunction speedometer(samplesCount, min) {\n samplesCount = samplesCount || 10;\n const bytes = new Array(samplesCount);\n const timestamps = new Array(samplesCount);\n let head = 0;\n let tail = 0;\n let firstSampleTS;\n\n min = min !== undefined ? min : 1000;\n\n return function push(chunkLength) {\n const now = Date.now();\n\n const startedAt = timestamps[tail];\n\n if (!firstSampleTS) {\n firstSampleTS = now;\n }\n\n bytes[head] = chunkLength;\n timestamps[head] = now;\n\n let i = tail;\n let bytesCount = 0;\n\n while (i !== head) {\n bytesCount += bytes[i++];\n i = i % samplesCount;\n }\n\n head = (head + 1) % samplesCount;\n\n if (head === tail) {\n tail = (tail + 1) % samplesCount;\n }\n\n if (now - firstSampleTS < min) {\n return;\n }\n\n const passed = startedAt && now - startedAt;\n\n return passed ? Math.round(bytesCount * 1000 / passed) : undefined;\n };\n}\n\nexport default speedometer;\n","'use strict';\n\nimport AxiosError from './AxiosError.js';\n\n/**\n * Resolve or reject a Promise based on response status.\n *\n * @param {Function} resolve A function that resolves the promise.\n * @param {Function} reject A function that rejects the promise.\n * @param {object} response The response.\n *\n * @returns {object} The response.\n */\nexport default function settle(resolve, reject, response) {\n const validateStatus = response.config.validateStatus;\n if (!response.status || !validateStatus || validateStatus(response.status)) {\n resolve(response);\n } else {\n reject(new AxiosError(\n 'Request failed with status code ' + response.status,\n [AxiosError.ERR_BAD_REQUEST, AxiosError.ERR_BAD_RESPONSE][Math.floor(response.status / 100) - 4],\n response.config,\n response.request,\n response\n ));\n }\n}\n","'use strict';\n\nexport default function parseProtocol(url) {\n const match = /^([-+\\w]{1,25})(:?\\/\\/|:)/.exec(url);\n return match && match[1] || '';\n}\n","import utils from '../utils.js';\nimport httpAdapter from './http.js';\nimport xhrAdapter from './xhr.js';\n\nconst adapters = {\n http: httpAdapter,\n xhr: xhrAdapter\n}\n\nexport default {\n getAdapter: (nameOrAdapter) => {\n if(utils.isString(nameOrAdapter)){\n const adapter = adapters[nameOrAdapter];\n\n if (!nameOrAdapter) {\n throw Error(\n utils.hasOwnProp(nameOrAdapter) ?\n `Adapter '${nameOrAdapter}' is not available in the build` :\n `Can not resolve adapter '${nameOrAdapter}'`\n );\n }\n\n return adapter\n }\n\n if (!utils.isFunction(nameOrAdapter)) {\n throw new TypeError('adapter is not a function');\n }\n\n return nameOrAdapter;\n },\n adapters\n}\n","'use strict';\n\nimport utils from '../utils.js';\nimport AxiosError from '../core/AxiosError.js';\nimport transitionalDefaults from './transitional.js';\nimport toFormData from '../helpers/toFormData.js';\nimport toURLEncodedForm from '../helpers/toURLEncodedForm.js';\nimport platform from '../platform/index.js';\nimport formDataToJSON from '../helpers/formDataToJSON.js';\nimport adapters from '../adapters/index.js';\n\nconst DEFAULT_CONTENT_TYPE = {\n 'Content-Type': 'application/x-www-form-urlencoded'\n};\n\n/**\n * If the browser has an XMLHttpRequest object, use the XHR adapter, otherwise use the HTTP\n * adapter\n *\n * @returns {Function}\n */\nfunction getDefaultAdapter() {\n let adapter;\n if (typeof XMLHttpRequest !== 'undefined') {\n // For browsers use XHR adapter\n adapter = adapters.getAdapter('xhr');\n } else if (typeof process !== 'undefined' && utils.kindOf(process) === 'process') {\n // For node use HTTP adapter\n adapter = adapters.getAdapter('http');\n }\n return adapter;\n}\n\n/**\n * It takes a string, tries to parse it, and if it fails, it returns the stringified version\n * of the input\n *\n * @param {any} rawValue - The value to be stringified.\n * @param {Function} parser - A function that parses a string into a JavaScript object.\n * @param {Function} encoder - A function that takes a value and returns a string.\n *\n * @returns {string} A stringified version of the rawValue.\n */\nfunction stringifySafely(rawValue, parser, encoder) {\n if (utils.isString(rawValue)) {\n try {\n (parser || JSON.parse)(rawValue);\n return utils.trim(rawValue);\n } catch (e) {\n if (e.name !== 'SyntaxError') {\n throw e;\n }\n }\n }\n\n return (encoder || JSON.stringify)(rawValue);\n}\n\nconst defaults = {\n\n transitional: transitionalDefaults,\n\n adapter: getDefaultAdapter(),\n\n transformRequest: [function transformRequest(data, headers) {\n const contentType = headers.getContentType() || '';\n const hasJSONContentType = contentType.indexOf('application/json') > -1;\n const isObjectPayload = utils.isObject(data);\n\n if (isObjectPayload && utils.isHTMLForm(data)) {\n data = new FormData(data);\n }\n\n const isFormData = utils.isFormData(data);\n\n if (isFormData) {\n if (!hasJSONContentType) {\n return data;\n }\n return hasJSONContentType ? JSON.stringify(formDataToJSON(data)) : data;\n }\n\n if (utils.isArrayBuffer(data) ||\n utils.isBuffer(data) ||\n utils.isStream(data) ||\n utils.isFile(data) ||\n utils.isBlob(data)\n ) {\n return data;\n }\n if (utils.isArrayBufferView(data)) {\n return data.buffer;\n }\n if (utils.isURLSearchParams(data)) {\n headers.setContentType('application/x-www-form-urlencoded;charset=utf-8', false);\n return data.toString();\n }\n\n let isFileList;\n\n if (isObjectPayload) {\n if (contentType.indexOf('application/x-www-form-urlencoded') > -1) {\n return toURLEncodedForm(data, this.formSerializer).toString();\n }\n\n if ((isFileList = utils.isFileList(data)) || contentType.indexOf('multipart/form-data') > -1) {\n const _FormData = this.env && this.env.FormData;\n\n return toFormData(\n isFileList ? {'files[]': data} : data,\n _FormData && new _FormData(),\n this.formSerializer\n );\n }\n }\n\n if (isObjectPayload || hasJSONContentType ) {\n headers.setContentType('application/json', false);\n return stringifySafely(data);\n }\n\n return data;\n }],\n\n transformResponse: [function transformResponse(data) {\n const transitional = this.transitional || defaults.transitional;\n const forcedJSONParsing = transitional && transitional.forcedJSONParsing;\n const JSONRequested = this.responseType === 'json';\n\n if (data && utils.isString(data) && ((forcedJSONParsing && !this.responseType) || JSONRequested)) {\n const silentJSONParsing = transitional && transitional.silentJSONParsing;\n const strictJSONParsing = !silentJSONParsing && JSONRequested;\n\n try {\n return JSON.parse(data);\n } catch (e) {\n if (strictJSONParsing) {\n if (e.name === 'SyntaxError') {\n throw AxiosError.from(e, AxiosError.ERR_BAD_RESPONSE, this, null, this.response);\n }\n throw e;\n }\n }\n }\n\n return data;\n }],\n\n /**\n * A timeout in milliseconds to abort a request. If set to 0 (default) a\n * timeout is not created.\n */\n timeout: 0,\n\n xsrfCookieName: 'XSRF-TOKEN',\n xsrfHeaderName: 'X-XSRF-TOKEN',\n\n maxContentLength: -1,\n maxBodyLength: -1,\n\n env: {\n FormData: platform.classes.FormData,\n Blob: platform.classes.Blob\n },\n\n validateStatus: function validateStatus(status) {\n return status >= 200 && status < 300;\n },\n\n headers: {\n common: {\n 'Accept': 'application/json, text/plain, */*'\n }\n }\n};\n\nutils.forEach(['delete', 'get', 'head'], function forEachMethodNoData(method) {\n defaults.headers[method] = {};\n});\n\nutils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) {\n defaults.headers[method] = utils.merge(DEFAULT_CONTENT_TYPE);\n});\n\nexport default defaults;\n","'use strict';\n\nimport utils from '../utils.js';\nimport toFormData from './toFormData.js';\nimport platform from '../platform/index.js';\n\nexport default function toURLEncodedForm(data, options) {\n return toFormData(data, new platform.classes.URLSearchParams(), Object.assign({\n visitor: function(value, key, path, helpers) {\n if (platform.isNode && utils.isBuffer(value)) {\n this.append(key, value.toString('base64'));\n return false;\n }\n\n return helpers.defaultVisitor.apply(this, arguments);\n }\n }, options));\n}\n","'use strict';\n\nimport utils from './../utils.js';\nimport defaults from '../defaults/index.js';\nimport AxiosHeaders from '../core/AxiosHeaders.js';\n\n/**\n * Transform the data for a request or a response\n *\n * @param {Array|Function} fns A single function or Array of functions\n * @param {?Object} response The response object\n *\n * @returns {*} The resulting transformed data\n */\nexport default function transformData(fns, response) {\n const config = this || defaults;\n const context = response || config;\n const headers = AxiosHeaders.from(context.headers);\n let data = context.data;\n\n utils.forEach(fns, function transform(fn) {\n data = fn.call(config, data, headers.normalize(), response ? response.status : undefined);\n });\n\n headers.normalize();\n\n return data;\n}\n","'use strict';\n\nexport default function isCancel(value) {\n return !!(value && value.__CANCEL__);\n}\n","'use strict';\n\nimport transformData from './transformData.js';\nimport isCancel from '../cancel/isCancel.js';\nimport defaults from '../defaults/index.js';\nimport CanceledError from '../cancel/CanceledError.js';\nimport AxiosHeaders from '../core/AxiosHeaders.js';\n\n/**\n * Throws a `CanceledError` if cancellation has been requested.\n *\n * @param {Object} config The config that is to be used for the request\n *\n * @returns {void}\n */\nfunction throwIfCancellationRequested(config) {\n if (config.cancelToken) {\n config.cancelToken.throwIfRequested();\n }\n\n if (config.signal && config.signal.aborted) {\n throw new CanceledError();\n }\n}\n\n/**\n * Dispatch a request to the server using the configured adapter.\n *\n * @param {object} config The config that is to be used for the request\n *\n * @returns {Promise} The Promise to be fulfilled\n */\nexport default function dispatchRequest(config) {\n throwIfCancellationRequested(config);\n\n config.headers = AxiosHeaders.from(config.headers);\n\n // Transform request data\n config.data = transformData.call(\n config,\n config.transformRequest\n );\n\n const adapter = config.adapter || defaults.adapter;\n\n return adapter(config).then(function onAdapterResolution(response) {\n throwIfCancellationRequested(config);\n\n // Transform response data\n response.data = transformData.call(\n config,\n config.transformResponse,\n response\n );\n\n response.headers = AxiosHeaders.from(response.headers);\n\n return response;\n }, function onAdapterRejection(reason) {\n if (!isCancel(reason)) {\n throwIfCancellationRequested(config);\n\n // Transform response data\n if (reason && reason.response) {\n reason.response.data = transformData.call(\n config,\n config.transformResponse,\n reason.response\n );\n reason.response.headers = AxiosHeaders.from(reason.response.headers);\n }\n }\n\n return Promise.reject(reason);\n });\n}\n","'use strict';\n\nimport utils from '../utils.js';\n\n/**\n * Config-specific merge-function which creates a new config-object\n * by merging two configuration objects together.\n *\n * @param {Object} config1\n * @param {Object} config2\n *\n * @returns {Object} New object resulting from merging config2 to config1\n */\nexport default function mergeConfig(config1, config2) {\n // eslint-disable-next-line no-param-reassign\n config2 = config2 || {};\n const config = {};\n\n function getMergedValue(target, source) {\n if (utils.isPlainObject(target) && utils.isPlainObject(source)) {\n return utils.merge(target, source);\n } else if (utils.isPlainObject(source)) {\n return utils.merge({}, source);\n } else if (utils.isArray(source)) {\n return source.slice();\n }\n return source;\n }\n\n // eslint-disable-next-line consistent-return\n function mergeDeepProperties(prop) {\n if (!utils.isUndefined(config2[prop])) {\n return getMergedValue(config1[prop], config2[prop]);\n } else if (!utils.isUndefined(config1[prop])) {\n return getMergedValue(undefined, config1[prop]);\n }\n }\n\n // eslint-disable-next-line consistent-return\n function valueFromConfig2(prop) {\n if (!utils.isUndefined(config2[prop])) {\n return getMergedValue(undefined, config2[prop]);\n }\n }\n\n // eslint-disable-next-line consistent-return\n function defaultToConfig2(prop) {\n if (!utils.isUndefined(config2[prop])) {\n return getMergedValue(undefined, config2[prop]);\n } else if (!utils.isUndefined(config1[prop])) {\n return getMergedValue(undefined, config1[prop]);\n }\n }\n\n // eslint-disable-next-line consistent-return\n function mergeDirectKeys(prop) {\n if (prop in config2) {\n return getMergedValue(config1[prop], config2[prop]);\n } else if (prop in config1) {\n return getMergedValue(undefined, config1[prop]);\n }\n }\n\n const mergeMap = {\n 'url': valueFromConfig2,\n 'method': valueFromConfig2,\n 'data': valueFromConfig2,\n 'baseURL': defaultToConfig2,\n 'transformRequest': defaultToConfig2,\n 'transformResponse': defaultToConfig2,\n 'paramsSerializer': defaultToConfig2,\n 'timeout': defaultToConfig2,\n 'timeoutMessage': defaultToConfig2,\n 'withCredentials': defaultToConfig2,\n 'adapter': defaultToConfig2,\n 'responseType': defaultToConfig2,\n 'xsrfCookieName': defaultToConfig2,\n 'xsrfHeaderName': defaultToConfig2,\n 'onUploadProgress': defaultToConfig2,\n 'onDownloadProgress': defaultToConfig2,\n 'decompress': defaultToConfig2,\n 'maxContentLength': defaultToConfig2,\n 'maxBodyLength': defaultToConfig2,\n 'beforeRedirect': defaultToConfig2,\n 'transport': defaultToConfig2,\n 'httpAgent': defaultToConfig2,\n 'httpsAgent': defaultToConfig2,\n 'cancelToken': defaultToConfig2,\n 'socketPath': defaultToConfig2,\n 'responseEncoding': defaultToConfig2,\n 'validateStatus': mergeDirectKeys\n };\n\n utils.forEach(Object.keys(config1).concat(Object.keys(config2)), function computeConfigValue(prop) {\n const merge = mergeMap[prop] || mergeDeepProperties;\n const configValue = merge(prop);\n (utils.isUndefined(configValue) && merge !== mergeDirectKeys) || (config[prop] = configValue);\n });\n\n return config;\n}\n","export const VERSION = \"1.0.0\";","'use strict';\n\nimport {VERSION} from '../env/data.js';\nimport AxiosError from '../core/AxiosError.js';\n\nconst validators = {};\n\n// eslint-disable-next-line func-names\n['object', 'boolean', 'number', 'function', 'string', 'symbol'].forEach((type, i) => {\n validators[type] = function validator(thing) {\n return typeof thing === type || 'a' + (i < 1 ? 'n ' : ' ') + type;\n };\n});\n\nconst deprecatedWarnings = {};\n\n/**\n * Transitional option validator\n *\n * @param {function|boolean?} validator - set to false if the transitional option has been removed\n * @param {string?} version - deprecated version / removed since version\n * @param {string?} message - some message with additional info\n *\n * @returns {function}\n */\nvalidators.transitional = function transitional(validator, version, message) {\n function formatMessage(opt, desc) {\n return '[Axios v' + VERSION + '] Transitional option \\'' + opt + '\\'' + desc + (message ? '. ' + message : '');\n }\n\n // eslint-disable-next-line func-names\n return (value, opt, opts) => {\n if (validator === false) {\n throw new AxiosError(\n formatMessage(opt, ' has been removed' + (version ? ' in ' + version : '')),\n AxiosError.ERR_DEPRECATED\n );\n }\n\n if (version && !deprecatedWarnings[opt]) {\n deprecatedWarnings[opt] = true;\n // eslint-disable-next-line no-console\n console.warn(\n formatMessage(\n opt,\n ' has been deprecated since v' + version + ' and will be removed in the near future'\n )\n );\n }\n\n return validator ? validator(value, opt, opts) : true;\n };\n};\n\n/**\n * Assert object's properties type\n *\n * @param {object} options\n * @param {object} schema\n * @param {boolean?} allowUnknown\n *\n * @returns {object}\n */\n\nfunction assertOptions(options, schema, allowUnknown) {\n if (typeof options !== 'object') {\n throw new AxiosError('options must be an object', AxiosError.ERR_BAD_OPTION_VALUE);\n }\n const keys = Object.keys(options);\n let i = keys.length;\n while (i-- > 0) {\n const opt = keys[i];\n const validator = schema[opt];\n if (validator) {\n const value = options[opt];\n const result = value === undefined || validator(value, opt, options);\n if (result !== true) {\n throw new AxiosError('option ' + opt + ' must be ' + result, AxiosError.ERR_BAD_OPTION_VALUE);\n }\n continue;\n }\n if (allowUnknown !== true) {\n throw new AxiosError('Unknown option ' + opt, AxiosError.ERR_BAD_OPTION);\n }\n }\n}\n\nexport default {\n assertOptions,\n validators\n};\n","'use strict';\n\nimport utils from './../utils.js';\nimport buildURL from '../helpers/buildURL.js';\nimport InterceptorManager from './InterceptorManager.js';\nimport dispatchRequest from './dispatchRequest.js';\nimport mergeConfig from './mergeConfig.js';\nimport buildFullPath from './buildFullPath.js';\nimport validator from '../helpers/validator.js';\nimport AxiosHeaders from './AxiosHeaders.js';\n\nconst validators = validator.validators;\n\n/**\n * Create a new instance of Axios\n *\n * @param {Object} instanceConfig The default config for the instance\n *\n * @return {Axios} A new instance of Axios\n */\nclass Axios {\n constructor(instanceConfig) {\n this.defaults = instanceConfig;\n this.interceptors = {\n request: new InterceptorManager(),\n response: new InterceptorManager()\n };\n }\n\n /**\n * Dispatch a request\n *\n * @param {String|Object} configOrUrl The config specific for this request (merged with this.defaults)\n * @param {?Object} config\n *\n * @returns {Promise} The Promise to be fulfilled\n */\n request(configOrUrl, config) {\n /*eslint no-param-reassign:0*/\n // Allow for axios('example/url'[, config]) a la fetch API\n if (typeof configOrUrl === 'string') {\n config = config || {};\n config.url = configOrUrl;\n } else {\n config = configOrUrl || {};\n }\n\n config = mergeConfig(this.defaults, config);\n\n const transitional = config.transitional;\n\n if (transitional !== undefined) {\n validator.assertOptions(transitional, {\n silentJSONParsing: validators.transitional(validators.boolean),\n forcedJSONParsing: validators.transitional(validators.boolean),\n clarifyTimeoutError: validators.transitional(validators.boolean)\n }, false);\n }\n\n // Set config.method\n config.method = (config.method || this.defaults.method || 'get').toLowerCase();\n\n // Flatten headers\n const defaultHeaders = config.headers && utils.merge(\n config.headers.common,\n config.headers[config.method]\n );\n\n defaultHeaders && utils.forEach(\n ['delete', 'get', 'head', 'post', 'put', 'patch', 'common'],\n function cleanHeaderConfig(method) {\n delete config.headers[method];\n }\n );\n\n config.headers = new AxiosHeaders(config.headers, defaultHeaders);\n\n // filter out skipped interceptors\n const requestInterceptorChain = [];\n let synchronousRequestInterceptors = true;\n this.interceptors.request.forEach(function unshiftRequestInterceptors(interceptor) {\n if (typeof interceptor.runWhen === 'function' && interceptor.runWhen(config) === false) {\n return;\n }\n\n synchronousRequestInterceptors = synchronousRequestInterceptors && interceptor.synchronous;\n\n requestInterceptorChain.unshift(interceptor.fulfilled, interceptor.rejected);\n });\n\n const responseInterceptorChain = [];\n this.interceptors.response.forEach(function pushResponseInterceptors(interceptor) {\n responseInterceptorChain.push(interceptor.fulfilled, interceptor.rejected);\n });\n\n let promise;\n let i = 0;\n let len;\n\n if (!synchronousRequestInterceptors) {\n const chain = [dispatchRequest.bind(this), undefined];\n chain.unshift.apply(chain, requestInterceptorChain);\n chain.push.apply(chain, responseInterceptorChain);\n len = chain.length;\n\n promise = Promise.resolve(config);\n\n while (i < len) {\n promise = promise.then(chain[i++], chain[i++]);\n }\n\n return promise;\n }\n\n len = requestInterceptorChain.length;\n\n let newConfig = config;\n\n i = 0;\n\n while (i < len) {\n const onFulfilled = requestInterceptorChain[i++];\n const onRejected = requestInterceptorChain[i++];\n try {\n newConfig = onFulfilled(newConfig);\n } catch (error) {\n onRejected.call(this, error);\n break;\n }\n }\n\n try {\n promise = dispatchRequest.call(this, newConfig);\n } catch (error) {\n return Promise.reject(error);\n }\n\n i = 0;\n len = responseInterceptorChain.length;\n\n while (i < len) {\n promise = promise.then(responseInterceptorChain[i++], responseInterceptorChain[i++]);\n }\n\n return promise;\n }\n\n getUri(config) {\n config = mergeConfig(this.defaults, config);\n const fullPath = buildFullPath(config.baseURL, config.url);\n return buildURL(fullPath, config.params, config.paramsSerializer);\n }\n}\n\n// Provide aliases for supported request methods\nutils.forEach(['delete', 'get', 'head', 'options'], function forEachMethodNoData(method) {\n /*eslint func-names:0*/\n Axios.prototype[method] = function(url, config) {\n return this.request(mergeConfig(config || {}, {\n method,\n url,\n data: (config || {}).data\n }));\n };\n});\n\nutils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) {\n /*eslint func-names:0*/\n\n function generateHTTPMethod(isForm) {\n return function httpMethod(url, data, config) {\n return this.request(mergeConfig(config || {}, {\n method,\n headers: isForm ? {\n 'Content-Type': 'multipart/form-data'\n } : {},\n url,\n data\n }));\n };\n }\n\n Axios.prototype[method] = generateHTTPMethod();\n\n Axios.prototype[method + 'Form'] = generateHTTPMethod(true);\n});\n\nexport default Axios;\n","'use strict';\n\nimport CanceledError from './CanceledError.js';\n\n/**\n * A `CancelToken` is an object that can be used to request cancellation of an operation.\n *\n * @param {Function} executor The executor function.\n *\n * @returns {CancelToken}\n */\nclass CancelToken {\n constructor(executor) {\n if (typeof executor !== 'function') {\n throw new TypeError('executor must be a function.');\n }\n\n let resolvePromise;\n\n this.promise = new Promise(function promiseExecutor(resolve) {\n resolvePromise = resolve;\n });\n\n const token = this;\n\n // eslint-disable-next-line func-names\n this.promise.then(cancel => {\n if (!token._listeners) return;\n\n let i = token._listeners.length;\n\n while (i-- > 0) {\n token._listeners[i](cancel);\n }\n token._listeners = null;\n });\n\n // eslint-disable-next-line func-names\n this.promise.then = onfulfilled => {\n let _resolve;\n // eslint-disable-next-line func-names\n const promise = new Promise(resolve => {\n token.subscribe(resolve);\n _resolve = resolve;\n }).then(onfulfilled);\n\n promise.cancel = function reject() {\n token.unsubscribe(_resolve);\n };\n\n return promise;\n };\n\n executor(function cancel(message, config, request) {\n if (token.reason) {\n // Cancellation has already been requested\n return;\n }\n\n token.reason = new CanceledError(message, config, request);\n resolvePromise(token.reason);\n });\n }\n\n /**\n * Throws a `CanceledError` if cancellation has been requested.\n */\n throwIfRequested() {\n if (this.reason) {\n throw this.reason;\n }\n }\n\n /**\n * Subscribe to the cancel signal\n */\n\n subscribe(listener) {\n if (this.reason) {\n listener(this.reason);\n return;\n }\n\n if (this._listeners) {\n this._listeners.push(listener);\n } else {\n this._listeners = [listener];\n }\n }\n\n /**\n * Unsubscribe from the cancel signal\n */\n\n unsubscribe(listener) {\n if (!this._listeners) {\n return;\n }\n const index = this._listeners.indexOf(listener);\n if (index !== -1) {\n this._listeners.splice(index, 1);\n }\n }\n\n /**\n * Returns an object that contains a new `CancelToken` and a function that, when called,\n * cancels the `CancelToken`.\n */\n static source() {\n let cancel;\n const token = new CancelToken(function executor(c) {\n cancel = c;\n });\n return {\n token,\n cancel\n };\n }\n}\n\nexport default CancelToken;\n","'use strict';\n\nimport utils from './utils.js';\nimport bind from './helpers/bind.js';\nimport Axios from './core/Axios.js';\nimport mergeConfig from './core/mergeConfig.js';\nimport defaults from './defaults/index.js';\nimport formDataToJSON from './helpers/formDataToJSON.js';\nimport CanceledError from './cancel/CanceledError.js';\nimport CancelToken from'./cancel/CancelToken.js';\nimport isCancel from'./cancel/isCancel.js';\nimport {VERSION} from './env/data.js';\nimport toFormData from './helpers/toFormData.js';\nimport AxiosError from './core/AxiosError.js';\nimport spread from './helpers/spread.js';\nimport isAxiosError from './helpers/isAxiosError.js';\n\n/**\n * Create an instance of Axios\n *\n * @param {Object} defaultConfig The default config for the instance\n *\n * @returns {Axios} A new instance of Axios\n */\nfunction createInstance(defaultConfig) {\n const context = new Axios(defaultConfig);\n const instance = bind(Axios.prototype.request, context);\n\n // Copy axios.prototype to instance\n utils.extend(instance, Axios.prototype, context, {allOwnKeys: true});\n\n // Copy context to instance\n utils.extend(instance, context, null, {allOwnKeys: true});\n\n // Factory for creating new instances\n instance.create = function create(instanceConfig) {\n return createInstance(mergeConfig(defaultConfig, instanceConfig));\n };\n\n return instance;\n}\n\n// Create the default instance to be exported\nconst axios = createInstance(defaults);\n\n// Expose Axios class to allow class inheritance\naxios.Axios = Axios;\n\n// Expose Cancel & CancelToken\naxios.CanceledError = CanceledError;\naxios.CancelToken = CancelToken;\naxios.isCancel = isCancel;\naxios.VERSION = VERSION;\naxios.toFormData = toFormData;\n\n// Expose AxiosError class\naxios.AxiosError = AxiosError;\n\n// alias for CanceledError for backward compatibility\naxios.Cancel = axios.CanceledError;\n\n// Expose all/spread\naxios.all = function all(promises) {\n return Promise.all(promises);\n};\n\naxios.spread = spread;\n\n// Expose isAxiosError\naxios.isAxiosError = isAxiosError;\n\naxios.formToJSON = thing => {\n return formDataToJSON(utils.isHTMLForm(thing) ? new FormData(thing) : thing);\n};\n\nexport default axios;\n","'use strict';\n\n/**\n * Syntactic sugar for invoking a function and expanding an array for arguments.\n *\n * Common use case would be to use `Function.prototype.apply`.\n *\n * ```js\n * function f(x, y, z) {}\n * var args = [1, 2, 3];\n * f.apply(null, args);\n * ```\n *\n * With `spread` this example can be re-written.\n *\n * ```js\n * spread(function(x, y, z) {})([1, 2, 3]);\n * ```\n *\n * @param {Function} callback\n *\n * @returns {Function}\n */\nexport default function spread(callback) {\n return function wrap(arr) {\n return callback.apply(null, arr);\n };\n}\n","'use strict';\n\nimport utils from './../utils.js';\n\n/**\n * Determines whether the payload is an error thrown by Axios\n *\n * @param {*} payload The value to test\n *\n * @returns {boolean} True if the payload is an error thrown by Axios, otherwise false\n */\nexport default function isAxiosError(payload) {\n return utils.isObject(payload) && (payload.isAxiosError === true);\n}\n"],"names":["bind","fn","thisArg","apply","arguments","cache","toString","Object","prototype","getPrototypeOf","kindOf","create","thing","str","call","slice","toLowerCase","kindOfTest","type","typeOfTest","_typeof","isArray","Array","isUndefined","isArrayBuffer","isString","isFunction","isNumber","isObject","isPlainObject","val","isDate","isFile","isBlob","isFileList","isURLSearchParams","forEach","obj","i","l","_ref","length","undefined","_ref$allOwnKeys","allOwnKeys","key","keys","getOwnPropertyNames","len","TypedArray","isTypedArray","Uint8Array","isHTMLForm","hasOwnProperty","_ref3","prop","isRegExp","reduceDescriptors","reducer","descriptors","getOwnPropertyDescriptors","reducedDescriptors","descriptor","name","defineProperties","utils","isBuffer","constructor","isFormData","pattern","FormData","isArrayBufferView","ArrayBuffer","isView","buffer","isBoolean","isStream","pipe","merge","result","assignValue","extend","a","b","_ref2","trim","replace","stripBOM","content","charCodeAt","inherits","superConstructor","props","defineProperty","value","assign","toFlatObject","sourceObj","destObj","filter","propFilter","merged","endsWith","searchString","position","String","lastIndex","indexOf","toArray","arr","forEachEntry","iterator","Symbol","next","done","pair","matchAll","regExp","matches","exec","push","hasOwnProp","freezeMethods","enumerable","writable","set","Error","toObjectSet","arrayOrString","delimiter","define","split","toCamelCase","m","p1","p2","toUpperCase","noop","toFiniteNumber","defaultValue","Number","isFinite","AxiosError","message","code","config","request","response","this","captureStackTrace","stack","toJSON","description","number","fileName","lineNumber","columnNumber","status","from","error","customProps","axiosError","cause","browser","self","window","isVisitable","removeBrackets","renderKey","path","dots","concat","map","token","join","predicates","test","toFormData","formData","options","TypeError","envFormData","metaTokens","indexes","option","source","visitor","defaultVisitor","useBlob","Blob","append","toStringTag","convertValue","toISOString","Buffer","JSON","stringify","some","isFlatArray","el","index","exposedHelpers","build","pop","encode","charMap","encodeURIComponent","match","AxiosURLSearchParams","params","_pairs","buildURL","url","hashmarkIndex","_encode","serializerParams","encoder","product","InterceptorManager","_classCallCheck","handlers","fulfilled","rejected","synchronous","runWhen","id","h","transitionalDefaults","silentJSONParsing","forcedJSONParsing","clarifyTimeoutError","URLSearchParams$1","URLSearchParams","FormData$1","isStandardBrowserEnv","navigator","document","platform","isBrowser","classes","protocols","formDataToJSON","buildPath","target","isNumericKey","isLast","arrayToObject","entries","parsePropPath","write","expires","domain","secure","cookie","Date","toGMTString","read","RegExp","decodeURIComponent","remove","now","buildFullPath","baseURL","requestedURL","relativeURL","combineURLs","originURL","msie","userAgent","urlParsingNode","createElement","resolveURL","href","setAttribute","protocol","host","search","hash","hostname","port","pathname","charAt","location","requestURL","parsed","CanceledError","ERR_CANCELED","__CANCEL__","ignoreDuplicateOf","$internals","$defaults","normalizeHeader","header","normalizeValue","matchHeaderValue","context","findKey","_key","AxiosHeaders","headers","defaults","progressEventReducer","listener","isDownloadStream","bytesNotified","_speedometer","samplesCount","min","firstSampleTS","bytes","timestamps","head","tail","chunkLength","startedAt","bytesCount","passed","Math","round","speedometer","e","loaded","total","lengthComputable","progressBytes","rate","data","progress","estimated","xhrAdapter","Promise","resolve","reject","onCanceled","requestData","requestHeaders","normalize","responseType","cancelToken","unsubscribe","signal","removeEventListener","setContentType","XMLHttpRequest","auth","username","password","unescape","btoa","fullPath","onloadend","responseHeaders","getAllResponseHeaders","validateStatus","ERR_BAD_REQUEST","ERR_BAD_RESPONSE","floor","settle","err","responseText","statusText","open","method","paramsSerializer","timeout","onreadystatechange","readyState","responseURL","setTimeout","onabort","ECONNABORTED","onerror","ERR_NETWORK","ontimeout","timeoutErrorMessage","transitional","ETIMEDOUT","xsrfValue","withCredentials","isURLSameOrigin","xsrfCookieName","cookies","xsrfHeaderName","setRequestHeader","onDownloadProgress","addEventListener","onUploadProgress","upload","cancel","abort","subscribe","aborted","send","valueOrRewrite","rewrite","setHeader","_value","_header","_rewrite","lHeader","get","parser","tokens","tokensRE","parseTokens","has","matcher","delete","deleted","deleteHeader","clear","format","normalized","w","char","formatHeader","rawHeaders","line","substring","accessor","accessors","defineAccessor","accessorName","methodName","arg1","arg2","arg3","configurable","buildAccessors","adapters","http","httpAdapter","xhr","adapters$1","nameOrAdapter","adapter","DEFAULT_CONTENT_TYPE","process","transformRequest","contentType","getContentType","hasJSONContentType","isObjectPayload","helpers","isNode","toURLEncodedForm","formSerializer","_FormData","env","rawValue","parse","stringifySafely","transformResponse","JSONRequested","strictJSONParsing","maxContentLength","maxBodyLength","common","Accept","transformData","fns","isCancel","throwIfCancellationRequested","throwIfRequested","dispatchRequest","then","reason","mergeConfig","config1","config2","getMergedValue","mergeDeepProperties","valueFromConfig2","defaultToConfig2","mergeDirectKeys","mergeMap","timeoutMessage","decompress","beforeRedirect","transport","httpAgent","httpsAgent","socketPath","responseEncoding","configValue","VERSION","validators","deprecatedWarnings","validators$1","validator","version","formatMessage","opt","desc","opts","ERR_DEPRECATED","console","warn","assertOptions","schema","allowUnknown","ERR_BAD_OPTION_VALUE","ERR_BAD_OPTION","Axios","instanceConfig","interceptors","configOrUrl","defaultHeaders","requestInterceptorChain","synchronousRequestInterceptors","interceptor","unshift","promise","responseInterceptorChain","chain","newConfig","onFulfilled","onRejected","generateHTTPMethod","isForm","CancelToken","executor","resolvePromise","_listeners","onfulfilled","_resolve","splice","c","axios","createInstance","defaultConfig","instance","Cancel","all","promises","spread","callback","isAxiosError","payload","formToJSON"],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/axios/dist/esm/axios.js b/node_modules/axios/dist/esm/axios.js new file mode 100644 index 000000000..5baee80b9 --- /dev/null +++ b/node_modules/axios/dist/esm/axios.js @@ -0,0 +1,2942 @@ +// Axios v1.0.0 Copyright (c) 2022 Matt Zabriskie and contributors +function bind(fn, thisArg) { + return function wrap() { + return fn.apply(thisArg, arguments); + }; +} + +// utils is a library of generic helper functions non-specific to axios + +const {toString} = Object.prototype; +const {getPrototypeOf} = Object; + +const kindOf = (cache => thing => { + const str = toString.call(thing); + return cache[str] || (cache[str] = str.slice(8, -1).toLowerCase()); +})(Object.create(null)); + +const kindOfTest = (type) => { + type = type.toLowerCase(); + return (thing) => kindOf(thing) === type +}; + +const typeOfTest = type => thing => typeof thing === type; + +/** + * Determine if a value is an Array + * + * @param {Object} val The value to test + * + * @returns {boolean} True if value is an Array, otherwise false + */ +const {isArray} = Array; + +/** + * Determine if a value is undefined + * + * @param {*} val The value to test + * + * @returns {boolean} True if the value is undefined, otherwise false + */ +const isUndefined = typeOfTest('undefined'); + +/** + * Determine if a value is a Buffer + * + * @param {*} val The value to test + * + * @returns {boolean} True if value is a Buffer, otherwise false + */ +function isBuffer(val) { + return val !== null && !isUndefined(val) && val.constructor !== null && !isUndefined(val.constructor) + && isFunction(val.constructor.isBuffer) && val.constructor.isBuffer(val); +} + +/** + * Determine if a value is an ArrayBuffer + * + * @param {*} val The value to test + * + * @returns {boolean} True if value is an ArrayBuffer, otherwise false + */ +const isArrayBuffer = kindOfTest('ArrayBuffer'); + + +/** + * Determine if a value is a view on an ArrayBuffer + * + * @param {*} val The value to test + * + * @returns {boolean} True if value is a view on an ArrayBuffer, otherwise false + */ +function isArrayBufferView(val) { + let result; + if ((typeof ArrayBuffer !== 'undefined') && (ArrayBuffer.isView)) { + result = ArrayBuffer.isView(val); + } else { + result = (val) && (val.buffer) && (isArrayBuffer(val.buffer)); + } + return result; +} + +/** + * Determine if a value is a String + * + * @param {*} val The value to test + * + * @returns {boolean} True if value is a String, otherwise false + */ +const isString = typeOfTest('string'); + +/** + * Determine if a value is a Function + * + * @param {*} val The value to test + * @returns {boolean} True if value is a Function, otherwise false + */ +const isFunction = typeOfTest('function'); + +/** + * Determine if a value is a Number + * + * @param {*} val The value to test + * + * @returns {boolean} True if value is a Number, otherwise false + */ +const isNumber = typeOfTest('number'); + +/** + * Determine if a value is an Object + * + * @param {*} thing The value to test + * + * @returns {boolean} True if value is an Object, otherwise false + */ +const isObject = (thing) => thing !== null && typeof thing === 'object'; + +/** + * Determine if a value is a Boolean + * + * @param {*} thing The value to test + * @returns {boolean} True if value is a Boolean, otherwise false + */ +const isBoolean = thing => thing === true || thing === false; + +/** + * Determine if a value is a plain Object + * + * @param {*} val The value to test + * + * @returns {boolean} True if value is a plain Object, otherwise false + */ +const isPlainObject = (val) => { + if (kindOf(val) !== 'object') { + return false; + } + + const prototype = getPrototypeOf(val); + return prototype === null || prototype === Object.prototype; +}; + +/** + * Determine if a value is a Date + * + * @param {*} val The value to test + * + * @returns {boolean} True if value is a Date, otherwise false + */ +const isDate = kindOfTest('Date'); + +/** + * Determine if a value is a File + * + * @param {*} val The value to test + * + * @returns {boolean} True if value is a File, otherwise false + */ +const isFile = kindOfTest('File'); + +/** + * Determine if a value is a Blob + * + * @param {*} val The value to test + * + * @returns {boolean} True if value is a Blob, otherwise false + */ +const isBlob = kindOfTest('Blob'); + +/** + * Determine if a value is a FileList + * + * @param {*} val The value to test + * + * @returns {boolean} True if value is a File, otherwise false + */ +const isFileList = kindOfTest('FileList'); + +/** + * Determine if a value is a Stream + * + * @param {*} val The value to test + * + * @returns {boolean} True if value is a Stream, otherwise false + */ +const isStream = (val) => isObject(val) && isFunction(val.pipe); + +/** + * Determine if a value is a FormData + * + * @param {*} thing The value to test + * + * @returns {boolean} True if value is an FormData, otherwise false + */ +const isFormData = (thing) => { + const pattern = '[object FormData]'; + return thing && ( + (typeof FormData === 'function' && thing instanceof FormData) || + toString.call(thing) === pattern || + (isFunction(thing.toString) && thing.toString() === pattern) + ); +}; + +/** + * Determine if a value is a URLSearchParams object + * + * @param {*} val The value to test + * + * @returns {boolean} True if value is a URLSearchParams object, otherwise false + */ +const isURLSearchParams = kindOfTest('URLSearchParams'); + +/** + * Trim excess whitespace off the beginning and end of a string + * + * @param {String} str The String to trim + * + * @returns {String} The String freed of excess whitespace + */ +const trim = (str) => str.trim ? + str.trim() : str.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, ''); + +/** + * Iterate over an Array or an Object invoking a function for each item. + * + * If `obj` is an Array callback will be called passing + * the value, index, and complete array for each item. + * + * If 'obj' is an Object callback will be called passing + * the value, key, and complete object for each property. + * + * @param {Object|Array} obj The object to iterate + * @param {Function} fn The callback to invoke for each item + * + * @param {Boolean} [allOwnKeys = false] + * @returns {void} + */ +function forEach(obj, fn, {allOwnKeys = false} = {}) { + // Don't bother if no value provided + if (obj === null || typeof obj === 'undefined') { + return; + } + + let i; + let l; + + // Force an array if not already something iterable + if (typeof obj !== 'object') { + /*eslint no-param-reassign:0*/ + obj = [obj]; + } + + if (isArray(obj)) { + // Iterate over array values + for (i = 0, l = obj.length; i < l; i++) { + fn.call(null, obj[i], i, obj); + } + } else { + // Iterate over object keys + const keys = allOwnKeys ? Object.getOwnPropertyNames(obj) : Object.keys(obj); + const len = keys.length; + let key; + + for (i = 0; i < len; i++) { + key = keys[i]; + fn.call(null, obj[key], key, obj); + } + } +} + +/** + * Accepts varargs expecting each argument to be an object, then + * immutably merges the properties of each object and returns result. + * + * When multiple objects contain the same key the later object in + * the arguments list will take precedence. + * + * Example: + * + * ```js + * var result = merge({foo: 123}, {foo: 456}); + * console.log(result.foo); // outputs 456 + * ``` + * + * @param {Object} obj1 Object to merge + * + * @returns {Object} Result of all merge properties + */ +function merge(/* obj1, obj2, obj3, ... */) { + const result = {}; + const assignValue = (val, key) => { + if (isPlainObject(result[key]) && isPlainObject(val)) { + result[key] = merge(result[key], val); + } else if (isPlainObject(val)) { + result[key] = merge({}, val); + } else if (isArray(val)) { + result[key] = val.slice(); + } else { + result[key] = val; + } + }; + + for (let i = 0, l = arguments.length; i < l; i++) { + arguments[i] && forEach(arguments[i], assignValue); + } + return result; +} + +/** + * Extends object a by mutably adding to it the properties of object b. + * + * @param {Object} a The object to be extended + * @param {Object} b The object to copy properties from + * @param {Object} thisArg The object to bind function to + * + * @param {Boolean} [allOwnKeys] + * @returns {Object} The resulting value of object a + */ +const extend = (a, b, thisArg, {allOwnKeys}= {}) => { + forEach(b, (val, key) => { + if (thisArg && isFunction(val)) { + a[key] = bind(val, thisArg); + } else { + a[key] = val; + } + }, {allOwnKeys}); + return a; +}; + +/** + * Remove byte order marker. This catches EF BB BF (the UTF-8 BOM) + * + * @param {string} content with BOM + * + * @returns {string} content value without BOM + */ +const stripBOM = (content) => { + if (content.charCodeAt(0) === 0xFEFF) { + content = content.slice(1); + } + return content; +}; + +/** + * Inherit the prototype methods from one constructor into another + * @param {function} constructor + * @param {function} superConstructor + * @param {object} [props] + * @param {object} [descriptors] + * + * @returns {void} + */ +const inherits = (constructor, superConstructor, props, descriptors) => { + constructor.prototype = Object.create(superConstructor.prototype, descriptors); + constructor.prototype.constructor = constructor; + Object.defineProperty(constructor, 'super', { + value: superConstructor.prototype + }); + props && Object.assign(constructor.prototype, props); +}; + +/** + * Resolve object with deep prototype chain to a flat object + * @param {Object} sourceObj source object + * @param {Object} [destObj] + * @param {Function|Boolean} [filter] + * @param {Function} [propFilter] + * + * @returns {Object} + */ +const toFlatObject = (sourceObj, destObj, filter, propFilter) => { + let props; + let i; + let prop; + const merged = {}; + + destObj = destObj || {}; + // eslint-disable-next-line no-eq-null,eqeqeq + if (sourceObj == null) return destObj; + + do { + props = Object.getOwnPropertyNames(sourceObj); + i = props.length; + while (i-- > 0) { + prop = props[i]; + if ((!propFilter || propFilter(prop, sourceObj, destObj)) && !merged[prop]) { + destObj[prop] = sourceObj[prop]; + merged[prop] = true; + } + } + sourceObj = filter !== false && getPrototypeOf(sourceObj); + } while (sourceObj && (!filter || filter(sourceObj, destObj)) && sourceObj !== Object.prototype); + + return destObj; +}; + +/** + * Determines whether a string ends with the characters of a specified string + * + * @param {String} str + * @param {String} searchString + * @param {Number} [position= 0] + * + * @returns {boolean} + */ +const endsWith = (str, searchString, position) => { + str = String(str); + if (position === undefined || position > str.length) { + position = str.length; + } + position -= searchString.length; + const lastIndex = str.indexOf(searchString, position); + return lastIndex !== -1 && lastIndex === position; +}; + + +/** + * Returns new array from array like object or null if failed + * + * @param {*} [thing] + * + * @returns {?Array} + */ +const toArray = (thing) => { + if (!thing) return null; + if (isArray(thing)) return thing; + let i = thing.length; + if (!isNumber(i)) return null; + const arr = new Array(i); + while (i-- > 0) { + arr[i] = thing[i]; + } + return arr; +}; + +/** + * Checking if the Uint8Array exists and if it does, it returns a function that checks if the + * thing passed in is an instance of Uint8Array + * + * @param {TypedArray} + * + * @returns {Array} + */ +// eslint-disable-next-line func-names +const isTypedArray = (TypedArray => { + // eslint-disable-next-line func-names + return thing => { + return TypedArray && thing instanceof TypedArray; + }; +})(typeof Uint8Array !== 'undefined' && getPrototypeOf(Uint8Array)); + +/** + * For each entry in the object, call the function with the key and value. + * + * @param {Object} obj - The object to iterate over. + * @param {Function} fn - The function to call for each entry. + * + * @returns {void} + */ +const forEachEntry = (obj, fn) => { + const generator = obj && obj[Symbol.iterator]; + + const iterator = generator.call(obj); + + let result; + + while ((result = iterator.next()) && !result.done) { + const pair = result.value; + fn.call(obj, pair[0], pair[1]); + } +}; + +/** + * It takes a regular expression and a string, and returns an array of all the matches + * + * @param {string} regExp - The regular expression to match against. + * @param {string} str - The string to search. + * + * @returns {Array} + */ +const matchAll = (regExp, str) => { + let matches; + const arr = []; + + while ((matches = regExp.exec(str)) !== null) { + arr.push(matches); + } + + return arr; +}; + +/* Checking if the kindOfTest function returns true when passed an HTMLFormElement. */ +const isHTMLForm = kindOfTest('HTMLFormElement'); + +const toCamelCase = str => { + return str.toLowerCase().replace(/[_-\s]([a-z\d])(\w*)/g, + function replacer(m, p1, p2) { + return p1.toUpperCase() + p2; + } + ); +}; + +/* Creating a function that will check if an object has a property. */ +const hasOwnProperty = (({hasOwnProperty}) => (obj, prop) => hasOwnProperty.call(obj, prop))(Object.prototype); + +/** + * Determine if a value is a RegExp object + * + * @param {*} val The value to test + * + * @returns {boolean} True if value is a RegExp object, otherwise false + */ +const isRegExp = kindOfTest('RegExp'); + +const reduceDescriptors = (obj, reducer) => { + const descriptors = Object.getOwnPropertyDescriptors(obj); + const reducedDescriptors = {}; + + forEach(descriptors, (descriptor, name) => { + if (reducer(descriptor, name, obj) !== false) { + reducedDescriptors[name] = descriptor; + } + }); + + Object.defineProperties(obj, reducedDescriptors); +}; + +/** + * Makes all methods read-only + * @param {Object} obj + */ + +const freezeMethods = (obj) => { + reduceDescriptors(obj, (descriptor, name) => { + const value = obj[name]; + + if (!isFunction(value)) return; + + descriptor.enumerable = false; + + if ('writable' in descriptor) { + descriptor.writable = false; + return; + } + + if (!descriptor.set) { + descriptor.set = () => { + throw Error('Can not read-only method \'' + name + '\''); + }; + } + }); +}; + +const toObjectSet = (arrayOrString, delimiter) => { + const obj = {}; + + const define = (arr) => { + arr.forEach(value => { + obj[value] = true; + }); + }; + + isArray(arrayOrString) ? define(arrayOrString) : define(String(arrayOrString).split(delimiter)); + + return obj; +}; + +const noop = () => {}; + +const toFiniteNumber = (value, defaultValue) => { + value = +value; + return Number.isFinite(value) ? value : defaultValue; +}; + +const utils = { + isArray, + isArrayBuffer, + isBuffer, + isFormData, + isArrayBufferView, + isString, + isNumber, + isBoolean, + isObject, + isPlainObject, + isUndefined, + isDate, + isFile, + isBlob, + isRegExp, + isFunction, + isStream, + isURLSearchParams, + isTypedArray, + isFileList, + forEach, + merge, + extend, + trim, + stripBOM, + inherits, + toFlatObject, + kindOf, + kindOfTest, + endsWith, + toArray, + forEachEntry, + matchAll, + isHTMLForm, + hasOwnProperty, + hasOwnProp: hasOwnProperty, // an alias to avoid ESLint no-prototype-builtins detection + reduceDescriptors, + freezeMethods, + toObjectSet, + toCamelCase, + noop, + toFiniteNumber +}; + +/** + * Create an Error with the specified message, config, error code, request and response. + * + * @param {string} message The error message. + * @param {string} [code] The error code (for example, 'ECONNABORTED'). + * @param {Object} [config] The config. + * @param {Object} [request] The request. + * @param {Object} [response] The response. + * + * @returns {Error} The created error. + */ +function AxiosError(message, code, config, request, response) { + Error.call(this); + + if (Error.captureStackTrace) { + Error.captureStackTrace(this, this.constructor); + } else { + this.stack = (new Error()).stack; + } + + this.message = message; + this.name = 'AxiosError'; + code && (this.code = code); + config && (this.config = config); + request && (this.request = request); + response && (this.response = response); +} + +utils.inherits(AxiosError, Error, { + toJSON: function toJSON() { + return { + // Standard + message: this.message, + name: this.name, + // Microsoft + description: this.description, + number: this.number, + // Mozilla + fileName: this.fileName, + lineNumber: this.lineNumber, + columnNumber: this.columnNumber, + stack: this.stack, + // Axios + config: this.config, + code: this.code, + status: this.response && this.response.status ? this.response.status : null + }; + } +}); + +const prototype$1 = AxiosError.prototype; +const descriptors = {}; + +[ + 'ERR_BAD_OPTION_VALUE', + 'ERR_BAD_OPTION', + 'ECONNABORTED', + 'ETIMEDOUT', + 'ERR_NETWORK', + 'ERR_FR_TOO_MANY_REDIRECTS', + 'ERR_DEPRECATED', + 'ERR_BAD_RESPONSE', + 'ERR_BAD_REQUEST', + 'ERR_CANCELED', + 'ERR_NOT_SUPPORT', + 'ERR_INVALID_URL' +// eslint-disable-next-line func-names +].forEach(code => { + descriptors[code] = {value: code}; +}); + +Object.defineProperties(AxiosError, descriptors); +Object.defineProperty(prototype$1, 'isAxiosError', {value: true}); + +// eslint-disable-next-line func-names +AxiosError.from = (error, code, config, request, response, customProps) => { + const axiosError = Object.create(prototype$1); + + utils.toFlatObject(error, axiosError, function filter(obj) { + return obj !== Error.prototype; + }, prop => { + return prop !== 'isAxiosError'; + }); + + AxiosError.call(axiosError, error.message, code, config, request, response); + + axiosError.cause = error; + + axiosError.name = error.name; + + customProps && Object.assign(axiosError, customProps); + + return axiosError; +}; + +/* eslint-env browser */ +var browser = typeof self == 'object' ? self.FormData : window.FormData; + +/** + * Determines if the given thing is a array or js object. + * + * @param {string} thing - The object or array to be visited. + * + * @returns {boolean} + */ +function isVisitable(thing) { + return utils.isPlainObject(thing) || utils.isArray(thing); +} + +/** + * It removes the brackets from the end of a string + * + * @param {string} key - The key of the parameter. + * + * @returns {string} the key without the brackets. + */ +function removeBrackets(key) { + return utils.endsWith(key, '[]') ? key.slice(0, -2) : key; +} + +/** + * It takes a path, a key, and a boolean, and returns a string + * + * @param {string} path - The path to the current key. + * @param {string} key - The key of the current object being iterated over. + * @param {string} dots - If true, the key will be rendered with dots instead of brackets. + * + * @returns {string} The path to the current key. + */ +function renderKey(path, key, dots) { + if (!path) return key; + return path.concat(key).map(function each(token, i) { + // eslint-disable-next-line no-param-reassign + token = removeBrackets(token); + return !dots && i ? '[' + token + ']' : token; + }).join(dots ? '.' : ''); +} + +/** + * If the array is an array and none of its elements are visitable, then it's a flat array. + * + * @param {Array} arr - The array to check + * + * @returns {boolean} + */ +function isFlatArray(arr) { + return utils.isArray(arr) && !arr.some(isVisitable); +} + +const predicates = utils.toFlatObject(utils, {}, null, function filter(prop) { + return /^is[A-Z]/.test(prop); +}); + +/** + * If the thing is a FormData object, return true, otherwise return false. + * + * @param {unknown} thing - The thing to check. + * + * @returns {boolean} + */ +function isSpecCompliant(thing) { + return thing && utils.isFunction(thing.append) && thing[Symbol.toStringTag] === 'FormData' && thing[Symbol.iterator]; +} + +/** + * Convert a data object to FormData + * + * @param {Object} obj + * @param {?Object} [formData] + * @param {?Object} [options] + * @param {Function} [options.visitor] + * @param {Boolean} [options.metaTokens = true] + * @param {Boolean} [options.dots = false] + * @param {?Boolean} [options.indexes = false] + * + * @returns {Object} + **/ + +/** + * It converts an object into a FormData object + * + * @param {Object} obj - The object to convert to form data. + * @param {string} formData - The FormData object to append to. + * @param {Object} options + * + * @returns + */ +function toFormData(obj, formData, options) { + if (!utils.isObject(obj)) { + throw new TypeError('target must be an object'); + } + + // eslint-disable-next-line no-param-reassign + formData = formData || new (browser || FormData)(); + + // eslint-disable-next-line no-param-reassign + options = utils.toFlatObject(options, { + metaTokens: true, + dots: false, + indexes: false + }, false, function defined(option, source) { + // eslint-disable-next-line no-eq-null,eqeqeq + return !utils.isUndefined(source[option]); + }); + + const metaTokens = options.metaTokens; + // eslint-disable-next-line no-use-before-define + const visitor = options.visitor || defaultVisitor; + const dots = options.dots; + const indexes = options.indexes; + const _Blob = options.Blob || typeof Blob !== 'undefined' && Blob; + const useBlob = _Blob && isSpecCompliant(formData); + + if (!utils.isFunction(visitor)) { + throw new TypeError('visitor must be a function'); + } + + function convertValue(value) { + if (value === null) return ''; + + if (utils.isDate(value)) { + return value.toISOString(); + } + + if (!useBlob && utils.isBlob(value)) { + throw new AxiosError('Blob is not supported. Use a Buffer instead.'); + } + + if (utils.isArrayBuffer(value) || utils.isTypedArray(value)) { + return useBlob && typeof Blob === 'function' ? new Blob([value]) : Buffer.from(value); + } + + return value; + } + + /** + * Default visitor. + * + * @param {*} value + * @param {String|Number} key + * @param {Array} path + * @this {FormData} + * + * @returns {boolean} return true to visit the each prop of the value recursively + */ + function defaultVisitor(value, key, path) { + let arr = value; + + if (value && !path && typeof value === 'object') { + if (utils.endsWith(key, '{}')) { + // eslint-disable-next-line no-param-reassign + key = metaTokens ? key : key.slice(0, -2); + // eslint-disable-next-line no-param-reassign + value = JSON.stringify(value); + } else if ( + (utils.isArray(value) && isFlatArray(value)) || + (utils.isFileList(value) || utils.endsWith(key, '[]') && (arr = utils.toArray(value)) + )) { + // eslint-disable-next-line no-param-reassign + key = removeBrackets(key); + + arr.forEach(function each(el, index) { + !utils.isUndefined(el) && formData.append( + // eslint-disable-next-line no-nested-ternary + indexes === true ? renderKey([key], index, dots) : (indexes === null ? key : key + '[]'), + convertValue(el) + ); + }); + return false; + } + } + + if (isVisitable(value)) { + return true; + } + + formData.append(renderKey(path, key, dots), convertValue(value)); + + return false; + } + + const stack = []; + + const exposedHelpers = Object.assign(predicates, { + defaultVisitor, + convertValue, + isVisitable + }); + + function build(value, path) { + if (utils.isUndefined(value)) return; + + if (stack.indexOf(value) !== -1) { + throw Error('Circular reference detected in ' + path.join('.')); + } + + stack.push(value); + + utils.forEach(value, function each(el, key) { + const result = !utils.isUndefined(el) && visitor.call( + formData, el, utils.isString(key) ? key.trim() : key, path, exposedHelpers + ); + + if (result === true) { + build(el, path ? path.concat(key) : [key]); + } + }); + + stack.pop(); + } + + if (!utils.isObject(obj)) { + throw new TypeError('data must be an object'); + } + + build(obj); + + return formData; +} + +/** + * It encodes a string by replacing all characters that are not in the unreserved set with + * their percent-encoded equivalents + * + * @param {string} str - The string to encode. + * + * @returns {string} The encoded string. + */ +function encode$1(str) { + const charMap = { + '!': '%21', + "'": '%27', + '(': '%28', + ')': '%29', + '~': '%7E', + '%20': '+', + '%00': '\x00' + }; + return encodeURIComponent(str).replace(/[!'()~]|%20|%00/g, function replacer(match) { + return charMap[match]; + }); +} + +/** + * It takes a params object and converts it to a FormData object + * + * @param {Object} params - The parameters to be converted to a FormData object. + * @param {Object} options - The options object passed to the Axios constructor. + * + * @returns {void} + */ +function AxiosURLSearchParams(params, options) { + this._pairs = []; + + params && toFormData(params, this, options); +} + +const prototype = AxiosURLSearchParams.prototype; + +prototype.append = function append(name, value) { + this._pairs.push([name, value]); +}; + +prototype.toString = function toString(encoder) { + const _encode = encoder ? function(value) { + return encoder.call(this, value, encode$1); + } : encode$1; + + return this._pairs.map(function each(pair) { + return _encode(pair[0]) + '=' + _encode(pair[1]); + }, '').join('&'); +}; + +/** + * It replaces all instances of the characters `:`, `$`, `,`, `+`, `[`, and `]` with their + * URI encoded counterparts + * + * @param {string} val The value to be encoded. + * + * @returns {string} The encoded value. + */ +function encode(val) { + return encodeURIComponent(val). + replace(/%3A/gi, ':'). + replace(/%24/g, '$'). + replace(/%2C/gi, ','). + replace(/%20/g, '+'). + replace(/%5B/gi, '['). + replace(/%5D/gi, ']'); +} + +/** + * Build a URL by appending params to the end + * + * @param {string} url The base of the url (e.g., http://www.google.com) + * @param {object} [params] The params to be appended + * @param {?object} options + * + * @returns {string} The formatted url + */ +function buildURL(url, params, options) { + /*eslint no-param-reassign:0*/ + if (!params) { + return url; + } + + const hashmarkIndex = url.indexOf('#'); + + if (hashmarkIndex !== -1) { + url = url.slice(0, hashmarkIndex); + } + + const _encode = options && options.encode || encode; + + const serializerParams = utils.isURLSearchParams(params) ? + params.toString() : + new AxiosURLSearchParams(params, options).toString(_encode); + + if (serializerParams) { + url += (url.indexOf('?') === -1 ? '?' : '&') + serializerParams; + } + + return url; +} + +class InterceptorManager { + constructor() { + this.handlers = []; + } + + /** + * Add a new interceptor to the stack + * + * @param {Function} fulfilled The function to handle `then` for a `Promise` + * @param {Function} rejected The function to handle `reject` for a `Promise` + * + * @return {Number} An ID used to remove interceptor later + */ + use(fulfilled, rejected, options) { + this.handlers.push({ + fulfilled, + rejected, + synchronous: options ? options.synchronous : false, + runWhen: options ? options.runWhen : null + }); + return this.handlers.length - 1; + } + + /** + * Remove an interceptor from the stack + * + * @param {Number} id The ID that was returned by `use` + * + * @returns {Boolean} `true` if the interceptor was removed, `false` otherwise + */ + eject(id) { + if (this.handlers[id]) { + this.handlers[id] = null; + } + } + + /** + * Clear all interceptors from the stack + * + * @returns {void} + */ + clear() { + if (this.handlers) { + this.handlers = []; + } + } + + /** + * Iterate over all the registered interceptors + * + * This method is particularly useful for skipping over any + * interceptors that may have become `null` calling `eject`. + * + * @param {Function} fn The function to call for each interceptor + * + * @returns {void} + */ + forEach(fn) { + utils.forEach(this.handlers, function forEachHandler(h) { + if (h !== null) { + fn(h); + } + }); + } +} + +const transitionalDefaults = { + silentJSONParsing: true, + forcedJSONParsing: true, + clarifyTimeoutError: false +}; + +const URLSearchParams$1 = typeof URLSearchParams !== 'undefined' ? URLSearchParams : AxiosURLSearchParams; + +const FormData$1 = FormData; + +/** + * Determine if we're running in a standard browser environment + * + * This allows axios to run in a web worker, and react-native. + * Both environments support XMLHttpRequest, but not fully standard globals. + * + * web workers: + * typeof window -> undefined + * typeof document -> undefined + * + * react-native: + * navigator.product -> 'ReactNative' + * nativescript + * navigator.product -> 'NativeScript' or 'NS' + * + * @returns {boolean} + */ +const isStandardBrowserEnv = (() => { + let product; + if (typeof navigator !== 'undefined' && ( + (product = navigator.product) === 'ReactNative' || + product === 'NativeScript' || + product === 'NS') + ) { + return false; + } + + return typeof window !== 'undefined' && typeof document !== 'undefined'; +})(); + +const platform = { + isBrowser: true, + classes: { + URLSearchParams: URLSearchParams$1, + FormData: FormData$1, + Blob + }, + isStandardBrowserEnv, + protocols: ['http', 'https', 'file', 'blob', 'url', 'data'] +}; + +function toURLEncodedForm(data, options) { + return toFormData(data, new platform.classes.URLSearchParams(), Object.assign({ + visitor: function(value, key, path, helpers) { + if (platform.isNode && utils.isBuffer(value)) { + this.append(key, value.toString('base64')); + return false; + } + + return helpers.defaultVisitor.apply(this, arguments); + } + }, options)); +} + +/** + * It takes a string like `foo[x][y][z]` and returns an array like `['foo', 'x', 'y', 'z'] + * + * @param {string} name - The name of the property to get. + * + * @returns An array of strings. + */ +function parsePropPath(name) { + // foo[x][y][z] + // foo.x.y.z + // foo-x-y-z + // foo x y z + return utils.matchAll(/\w+|\[(\w*)]/g, name).map(match => { + return match[0] === '[]' ? '' : match[1] || match[0]; + }); +} + +/** + * Convert an array to an object. + * + * @param {Array} arr - The array to convert to an object. + * + * @returns An object with the same keys and values as the array. + */ +function arrayToObject(arr) { + const obj = {}; + const keys = Object.keys(arr); + let i; + const len = keys.length; + let key; + for (i = 0; i < len; i++) { + key = keys[i]; + obj[key] = arr[key]; + } + return obj; +} + +/** + * It takes a FormData object and returns a JavaScript object + * + * @param {string} formData The FormData object to convert to JSON. + * + * @returns {Object | null} The converted object. + */ +function formDataToJSON(formData) { + function buildPath(path, value, target, index) { + let name = path[index++]; + const isNumericKey = Number.isFinite(+name); + const isLast = index >= path.length; + name = !name && utils.isArray(target) ? target.length : name; + + if (isLast) { + if (utils.hasOwnProp(target, name)) { + target[name] = [target[name], value]; + } else { + target[name] = value; + } + + return !isNumericKey; + } + + if (!target[name] || !utils.isObject(target[name])) { + target[name] = []; + } + + const result = buildPath(path, value, target[name], index); + + if (result && utils.isArray(target[name])) { + target[name] = arrayToObject(target[name]); + } + + return !isNumericKey; + } + + if (utils.isFormData(formData) && utils.isFunction(formData.entries)) { + const obj = {}; + + utils.forEachEntry(formData, (name, value) => { + buildPath(parsePropPath(name), value, obj, 0); + }); + + return obj; + } + + return null; +} + +/** + * Resolve or reject a Promise based on response status. + * + * @param {Function} resolve A function that resolves the promise. + * @param {Function} reject A function that rejects the promise. + * @param {object} response The response. + * + * @returns {object} The response. + */ +function settle(resolve, reject, response) { + const validateStatus = response.config.validateStatus; + if (!response.status || !validateStatus || validateStatus(response.status)) { + resolve(response); + } else { + reject(new AxiosError( + 'Request failed with status code ' + response.status, + [AxiosError.ERR_BAD_REQUEST, AxiosError.ERR_BAD_RESPONSE][Math.floor(response.status / 100) - 4], + response.config, + response.request, + response + )); + } +} + +const cookies = platform.isStandardBrowserEnv ? + +// Standard browser envs support document.cookie + (function standardBrowserEnv() { + return { + write: function write(name, value, expires, path, domain, secure) { + const cookie = []; + cookie.push(name + '=' + encodeURIComponent(value)); + + if (utils.isNumber(expires)) { + cookie.push('expires=' + new Date(expires).toGMTString()); + } + + if (utils.isString(path)) { + cookie.push('path=' + path); + } + + if (utils.isString(domain)) { + cookie.push('domain=' + domain); + } + + if (secure === true) { + cookie.push('secure'); + } + + document.cookie = cookie.join('; '); + }, + + read: function read(name) { + const match = document.cookie.match(new RegExp('(^|;\\s*)(' + name + ')=([^;]*)')); + return (match ? decodeURIComponent(match[3]) : null); + }, + + remove: function remove(name) { + this.write(name, '', Date.now() - 86400000); + } + }; + })() : + +// Non standard browser env (web workers, react-native) lack needed support. + (function nonStandardBrowserEnv() { + return { + write: function write() {}, + read: function read() { return null; }, + remove: function remove() {} + }; + })(); + +/** + * Determines whether the specified URL is absolute + * + * @param {string} url The URL to test + * + * @returns {boolean} True if the specified URL is absolute, otherwise false + */ +function isAbsoluteURL(url) { + // A URL is considered absolute if it begins with "://" or "//" (protocol-relative URL). + // RFC 3986 defines scheme name as a sequence of characters beginning with a letter and followed + // by any combination of letters, digits, plus, period, or hyphen. + return /^([a-z][a-z\d+\-.]*:)?\/\//i.test(url); +} + +/** + * Creates a new URL by combining the specified URLs + * + * @param {string} baseURL The base URL + * @param {string} relativeURL The relative URL + * + * @returns {string} The combined URL + */ +function combineURLs(baseURL, relativeURL) { + return relativeURL + ? baseURL.replace(/\/+$/, '') + '/' + relativeURL.replace(/^\/+/, '') + : baseURL; +} + +/** + * Creates a new URL by combining the baseURL with the requestedURL, + * only when the requestedURL is not already an absolute URL. + * If the requestURL is absolute, this function returns the requestedURL untouched. + * + * @param {string} baseURL The base URL + * @param {string} requestedURL Absolute or relative URL to combine + * + * @returns {string} The combined full path + */ +function buildFullPath(baseURL, requestedURL) { + if (baseURL && !isAbsoluteURL(requestedURL)) { + return combineURLs(baseURL, requestedURL); + } + return requestedURL; +} + +const isURLSameOrigin = platform.isStandardBrowserEnv ? + +// Standard browser envs have full support of the APIs needed to test +// whether the request URL is of the same origin as current location. + (function standardBrowserEnv() { + const msie = /(msie|trident)/i.test(navigator.userAgent); + const urlParsingNode = document.createElement('a'); + let originURL; + + /** + * Parse a URL to discover it's components + * + * @param {String} url The URL to be parsed + * @returns {Object} + */ + function resolveURL(url) { + let href = url; + + if (msie) { + // IE needs attribute set twice to normalize properties + urlParsingNode.setAttribute('href', href); + href = urlParsingNode.href; + } + + urlParsingNode.setAttribute('href', href); + + // urlParsingNode provides the UrlUtils interface - http://url.spec.whatwg.org/#urlutils + return { + href: urlParsingNode.href, + protocol: urlParsingNode.protocol ? urlParsingNode.protocol.replace(/:$/, '') : '', + host: urlParsingNode.host, + search: urlParsingNode.search ? urlParsingNode.search.replace(/^\?/, '') : '', + hash: urlParsingNode.hash ? urlParsingNode.hash.replace(/^#/, '') : '', + hostname: urlParsingNode.hostname, + port: urlParsingNode.port, + pathname: (urlParsingNode.pathname.charAt(0) === '/') ? + urlParsingNode.pathname : + '/' + urlParsingNode.pathname + }; + } + + originURL = resolveURL(window.location.href); + + /** + * Determine if a URL shares the same origin as the current location + * + * @param {String} requestURL The URL to test + * @returns {boolean} True if URL shares the same origin, otherwise false + */ + return function isURLSameOrigin(requestURL) { + const parsed = (utils.isString(requestURL)) ? resolveURL(requestURL) : requestURL; + return (parsed.protocol === originURL.protocol && + parsed.host === originURL.host); + }; + })() : + + // Non standard browser envs (web workers, react-native) lack needed support. + (function nonStandardBrowserEnv() { + return function isURLSameOrigin() { + return true; + }; + })(); + +/** + * A `CanceledError` is an object that is thrown when an operation is canceled. + * + * @param {string=} message The message. + * @param {Object=} config The config. + * @param {Object=} request The request. + * + * @returns {CanceledError} The created error. + */ +function CanceledError(message, config, request) { + // eslint-disable-next-line no-eq-null,eqeqeq + AxiosError.call(this, message == null ? 'canceled' : message, AxiosError.ERR_CANCELED, config, request); + this.name = 'CanceledError'; +} + +utils.inherits(CanceledError, AxiosError, { + __CANCEL__: true +}); + +function parseProtocol(url) { + const match = /^([-+\w]{1,25})(:?\/\/|:)/.exec(url); + return match && match[1] || ''; +} + +// RawAxiosHeaders whose duplicates are ignored by node +// c.f. https://nodejs.org/api/http.html#http_message_headers +const ignoreDuplicateOf = utils.toObjectSet([ + 'age', 'authorization', 'content-length', 'content-type', 'etag', + 'expires', 'from', 'host', 'if-modified-since', 'if-unmodified-since', + 'last-modified', 'location', 'max-forwards', 'proxy-authorization', + 'referer', 'retry-after', 'user-agent' +]); + +/** + * Parse headers into an object + * + * ``` + * Date: Wed, 27 Aug 2014 08:58:49 GMT + * Content-Type: application/json + * Connection: keep-alive + * Transfer-Encoding: chunked + * ``` + * + * @param {String} rawHeaders Headers needing to be parsed + * + * @returns {Object} Headers parsed into an object + */ +const parseHeaders = rawHeaders => { + const parsed = {}; + let key; + let val; + let i; + + rawHeaders && rawHeaders.split('\n').forEach(function parser(line) { + i = line.indexOf(':'); + key = line.substring(0, i).trim().toLowerCase(); + val = line.substring(i + 1).trim(); + + if (!key || (parsed[key] && ignoreDuplicateOf[key])) { + return; + } + + if (key === 'set-cookie') { + if (parsed[key]) { + parsed[key].push(val); + } else { + parsed[key] = [val]; + } + } else { + parsed[key] = parsed[key] ? parsed[key] + ', ' + val : val; + } + }); + + return parsed; +}; + +const $internals = Symbol('internals'); +const $defaults = Symbol('defaults'); + +function normalizeHeader(header) { + return header && String(header).trim().toLowerCase(); +} + +function normalizeValue(value) { + if (value === false || value == null) { + return value; + } + + return String(value); +} + +function parseTokens(str) { + const tokens = Object.create(null); + const tokensRE = /([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g; + let match; + + while ((match = tokensRE.exec(str))) { + tokens[match[1]] = match[2]; + } + + return tokens; +} + +function matchHeaderValue(context, value, header, filter) { + if (utils.isFunction(filter)) { + return filter.call(this, value, header); + } + + if (!utils.isString(value)) return; + + if (utils.isString(filter)) { + return value.indexOf(filter) !== -1; + } + + if (utils.isRegExp(filter)) { + return filter.test(value); + } +} + +function formatHeader(header) { + return header.trim() + .toLowerCase().replace(/([a-z\d])(\w*)/g, (w, char, str) => { + return char.toUpperCase() + str; + }); +} + +function buildAccessors(obj, header) { + const accessorName = utils.toCamelCase(' ' + header); + + ['get', 'set', 'has'].forEach(methodName => { + Object.defineProperty(obj, methodName + accessorName, { + value: function(arg1, arg2, arg3) { + return this[methodName].call(this, header, arg1, arg2, arg3); + }, + configurable: true + }); + }); +} + +function findKey(obj, key) { + key = key.toLowerCase(); + const keys = Object.keys(obj); + let i = keys.length; + let _key; + while (i-- > 0) { + _key = keys[i]; + if (key === _key.toLowerCase()) { + return _key; + } + } + return null; +} + +function AxiosHeaders(headers, defaults) { + headers && this.set(headers); + this[$defaults] = defaults || null; +} + +Object.assign(AxiosHeaders.prototype, { + set: function(header, valueOrRewrite, rewrite) { + const self = this; + + function setHeader(_value, _header, _rewrite) { + const lHeader = normalizeHeader(_header); + + if (!lHeader) { + throw new Error('header name must be a non-empty string'); + } + + const key = findKey(self, lHeader); + + if (key && _rewrite !== true && (self[key] === false || _rewrite === false)) { + return; + } + + if (utils.isArray(_value)) { + _value = _value.map(normalizeValue); + } else { + _value = normalizeValue(_value); + } + + self[key || _header] = _value; + } + + if (utils.isPlainObject(header)) { + utils.forEach(header, (_value, _header) => { + setHeader(_value, _header, valueOrRewrite); + }); + } else { + setHeader(valueOrRewrite, header, rewrite); + } + + return this; + }, + + get: function(header, parser) { + header = normalizeHeader(header); + + if (!header) return undefined; + + const key = findKey(this, header); + + if (key) { + const value = this[key]; + + if (!parser) { + return value; + } + + if (parser === true) { + return parseTokens(value); + } + + if (utils.isFunction(parser)) { + return parser.call(this, value, key); + } + + if (utils.isRegExp(parser)) { + return parser.exec(value); + } + + throw new TypeError('parser must be boolean|regexp|function'); + } + }, + + has: function(header, matcher) { + header = normalizeHeader(header); + + if (header) { + const key = findKey(this, header); + + return !!(key && (!matcher || matchHeaderValue(this, this[key], key, matcher))); + } + + return false; + }, + + delete: function(header, matcher) { + const self = this; + let deleted = false; + + function deleteHeader(_header) { + _header = normalizeHeader(_header); + + if (_header) { + const key = findKey(self, _header); + + if (key && (!matcher || matchHeaderValue(self, self[key], key, matcher))) { + delete self[key]; + + deleted = true; + } + } + } + + if (utils.isArray(header)) { + header.forEach(deleteHeader); + } else { + deleteHeader(header); + } + + return deleted; + }, + + clear: function() { + return Object.keys(this).forEach(this.delete.bind(this)); + }, + + normalize: function(format) { + const self = this; + const headers = {}; + + utils.forEach(this, (value, header) => { + const key = findKey(headers, header); + + if (key) { + self[key] = normalizeValue(value); + delete self[header]; + return; + } + + const normalized = format ? formatHeader(header) : String(header).trim(); + + if (normalized !== header) { + delete self[header]; + } + + self[normalized] = normalizeValue(value); + + headers[normalized] = true; + }); + + return this; + }, + + toJSON: function() { + const obj = Object.create(null); + + utils.forEach(Object.assign({}, this[$defaults] || null, this), + (value, header) => { + if (value == null || value === false) return; + obj[header] = utils.isArray(value) ? value.join(', ') : value; + }); + + return obj; + } +}); + +Object.assign(AxiosHeaders, { + from: function(thing) { + if (utils.isString(thing)) { + return new this(parseHeaders(thing)); + } + return thing instanceof this ? thing : new this(thing); + }, + + accessor: function(header) { + const internals = this[$internals] = (this[$internals] = { + accessors: {} + }); + + const accessors = internals.accessors; + const prototype = this.prototype; + + function defineAccessor(_header) { + const lHeader = normalizeHeader(_header); + + if (!accessors[lHeader]) { + buildAccessors(prototype, _header); + accessors[lHeader] = true; + } + } + + utils.isArray(header) ? header.forEach(defineAccessor) : defineAccessor(header); + + return this; + } +}); + +AxiosHeaders.accessor(['Content-Type', 'Content-Length', 'Accept', 'Accept-Encoding', 'User-Agent']); + +utils.freezeMethods(AxiosHeaders.prototype); +utils.freezeMethods(AxiosHeaders); + +/** + * Calculate data maxRate + * @param {Number} [samplesCount= 10] + * @param {Number} [min= 1000] + * @returns {Function} + */ +function speedometer(samplesCount, min) { + samplesCount = samplesCount || 10; + const bytes = new Array(samplesCount); + const timestamps = new Array(samplesCount); + let head = 0; + let tail = 0; + let firstSampleTS; + + min = min !== undefined ? min : 1000; + + return function push(chunkLength) { + const now = Date.now(); + + const startedAt = timestamps[tail]; + + if (!firstSampleTS) { + firstSampleTS = now; + } + + bytes[head] = chunkLength; + timestamps[head] = now; + + let i = tail; + let bytesCount = 0; + + while (i !== head) { + bytesCount += bytes[i++]; + i = i % samplesCount; + } + + head = (head + 1) % samplesCount; + + if (head === tail) { + tail = (tail + 1) % samplesCount; + } + + if (now - firstSampleTS < min) { + return; + } + + const passed = startedAt && now - startedAt; + + return passed ? Math.round(bytesCount * 1000 / passed) : undefined; + }; +} + +function progressEventReducer(listener, isDownloadStream) { + let bytesNotified = 0; + const _speedometer = speedometer(50, 250); + + return e => { + const loaded = e.loaded; + const total = e.lengthComputable ? e.total : undefined; + const progressBytes = loaded - bytesNotified; + const rate = _speedometer(progressBytes); + const inRange = loaded <= total; + + bytesNotified = loaded; + + const data = { + loaded, + total, + progress: total ? (loaded / total) : undefined, + bytes: progressBytes, + rate: rate ? rate : undefined, + estimated: rate && total && inRange ? (total - loaded) / rate : undefined + }; + + data[isDownloadStream ? 'download' : 'upload'] = true; + + listener(data); + }; +} + +function xhrAdapter(config) { + return new Promise(function dispatchXhrRequest(resolve, reject) { + let requestData = config.data; + const requestHeaders = AxiosHeaders.from(config.headers).normalize(); + const responseType = config.responseType; + let onCanceled; + function done() { + if (config.cancelToken) { + config.cancelToken.unsubscribe(onCanceled); + } + + if (config.signal) { + config.signal.removeEventListener('abort', onCanceled); + } + } + + if (utils.isFormData(requestData) && platform.isStandardBrowserEnv) { + requestHeaders.setContentType(false); // Let the browser set it + } + + let request = new XMLHttpRequest(); + + // HTTP basic authentication + if (config.auth) { + const username = config.auth.username || ''; + const password = config.auth.password ? unescape(encodeURIComponent(config.auth.password)) : ''; + requestHeaders.set('Authorization', 'Basic ' + btoa(username + ':' + password)); + } + + const fullPath = buildFullPath(config.baseURL, config.url); + + request.open(config.method.toUpperCase(), buildURL(fullPath, config.params, config.paramsSerializer), true); + + // Set the request timeout in MS + request.timeout = config.timeout; + + function onloadend() { + if (!request) { + return; + } + // Prepare the response + const responseHeaders = AxiosHeaders.from( + 'getAllResponseHeaders' in request && request.getAllResponseHeaders() + ); + const responseData = !responseType || responseType === 'text' || responseType === 'json' ? + request.responseText : request.response; + const response = { + data: responseData, + status: request.status, + statusText: request.statusText, + headers: responseHeaders, + config, + request + }; + + settle(function _resolve(value) { + resolve(value); + done(); + }, function _reject(err) { + reject(err); + done(); + }, response); + + // Clean up request + request = null; + } + + if ('onloadend' in request) { + // Use onloadend if available + request.onloadend = onloadend; + } else { + // Listen for ready state to emulate onloadend + request.onreadystatechange = function handleLoad() { + if (!request || request.readyState !== 4) { + return; + } + + // The request errored out and we didn't get a response, this will be + // handled by onerror instead + // With one exception: request that using file: protocol, most browsers + // will return status as 0 even though it's a successful request + if (request.status === 0 && !(request.responseURL && request.responseURL.indexOf('file:') === 0)) { + return; + } + // readystate handler is calling before onerror or ontimeout handlers, + // so we should call onloadend on the next 'tick' + setTimeout(onloadend); + }; + } + + // Handle browser request cancellation (as opposed to a manual cancellation) + request.onabort = function handleAbort() { + if (!request) { + return; + } + + reject(new AxiosError('Request aborted', AxiosError.ECONNABORTED, config, request)); + + // Clean up request + request = null; + }; + + // Handle low level network errors + request.onerror = function handleError() { + // Real errors are hidden from us by the browser + // onerror should only fire if it's a network error + reject(new AxiosError('Network Error', AxiosError.ERR_NETWORK, config, request)); + + // Clean up request + request = null; + }; + + // Handle timeout + request.ontimeout = function handleTimeout() { + let timeoutErrorMessage = config.timeout ? 'timeout of ' + config.timeout + 'ms exceeded' : 'timeout exceeded'; + const transitional = config.transitional || transitionalDefaults; + if (config.timeoutErrorMessage) { + timeoutErrorMessage = config.timeoutErrorMessage; + } + reject(new AxiosError( + timeoutErrorMessage, + transitional.clarifyTimeoutError ? AxiosError.ETIMEDOUT : AxiosError.ECONNABORTED, + config, + request)); + + // Clean up request + request = null; + }; + + // Add xsrf header + // This is only done if running in a standard browser environment. + // Specifically not if we're in a web worker, or react-native. + if (platform.isStandardBrowserEnv) { + // Add xsrf header + const xsrfValue = (config.withCredentials || isURLSameOrigin(fullPath)) + && config.xsrfCookieName && cookies.read(config.xsrfCookieName); + + if (xsrfValue) { + requestHeaders.set(config.xsrfHeaderName, xsrfValue); + } + } + + // Remove Content-Type if data is undefined + requestData === undefined && requestHeaders.setContentType(null); + + // Add headers to the request + if ('setRequestHeader' in request) { + utils.forEach(requestHeaders.toJSON(), function setRequestHeader(val, key) { + request.setRequestHeader(key, val); + }); + } + + // Add withCredentials to request if needed + if (!utils.isUndefined(config.withCredentials)) { + request.withCredentials = !!config.withCredentials; + } + + // Add responseType to request if needed + if (responseType && responseType !== 'json') { + request.responseType = config.responseType; + } + + // Handle progress if needed + if (typeof config.onDownloadProgress === 'function') { + request.addEventListener('progress', progressEventReducer(config.onDownloadProgress, true)); + } + + // Not all browsers support upload events + if (typeof config.onUploadProgress === 'function' && request.upload) { + request.upload.addEventListener('progress', progressEventReducer(config.onUploadProgress)); + } + + if (config.cancelToken || config.signal) { + // Handle cancellation + // eslint-disable-next-line func-names + onCanceled = cancel => { + if (!request) { + return; + } + reject(!cancel || cancel.type ? new CanceledError(null, config, request) : cancel); + request.abort(); + request = null; + }; + + config.cancelToken && config.cancelToken.subscribe(onCanceled); + if (config.signal) { + config.signal.aborted ? onCanceled() : config.signal.addEventListener('abort', onCanceled); + } + } + + const protocol = parseProtocol(fullPath); + + if (protocol && platform.protocols.indexOf(protocol) === -1) { + reject(new AxiosError('Unsupported protocol ' + protocol + ':', AxiosError.ERR_BAD_REQUEST, config)); + return; + } + + + // Send the request + request.send(requestData || null); + }); +} + +const adapters = { + http: xhrAdapter, + xhr: xhrAdapter +}; + +const adapters$1 = { + getAdapter: (nameOrAdapter) => { + if(utils.isString(nameOrAdapter)){ + const adapter = adapters[nameOrAdapter]; + + if (!nameOrAdapter) { + throw Error( + utils.hasOwnProp(nameOrAdapter) ? + `Adapter '${nameOrAdapter}' is not available in the build` : + `Can not resolve adapter '${nameOrAdapter}'` + ); + } + + return adapter + } + + if (!utils.isFunction(nameOrAdapter)) { + throw new TypeError('adapter is not a function'); + } + + return nameOrAdapter; + }, + adapters +}; + +const DEFAULT_CONTENT_TYPE = { + 'Content-Type': 'application/x-www-form-urlencoded' +}; + +/** + * If the browser has an XMLHttpRequest object, use the XHR adapter, otherwise use the HTTP + * adapter + * + * @returns {Function} + */ +function getDefaultAdapter() { + let adapter; + if (typeof XMLHttpRequest !== 'undefined') { + // For browsers use XHR adapter + adapter = adapters$1.getAdapter('xhr'); + } else if (typeof process !== 'undefined' && utils.kindOf(process) === 'process') { + // For node use HTTP adapter + adapter = adapters$1.getAdapter('http'); + } + return adapter; +} + +/** + * It takes a string, tries to parse it, and if it fails, it returns the stringified version + * of the input + * + * @param {any} rawValue - The value to be stringified. + * @param {Function} parser - A function that parses a string into a JavaScript object. + * @param {Function} encoder - A function that takes a value and returns a string. + * + * @returns {string} A stringified version of the rawValue. + */ +function stringifySafely(rawValue, parser, encoder) { + if (utils.isString(rawValue)) { + try { + (parser || JSON.parse)(rawValue); + return utils.trim(rawValue); + } catch (e) { + if (e.name !== 'SyntaxError') { + throw e; + } + } + } + + return (encoder || JSON.stringify)(rawValue); +} + +const defaults = { + + transitional: transitionalDefaults, + + adapter: getDefaultAdapter(), + + transformRequest: [function transformRequest(data, headers) { + const contentType = headers.getContentType() || ''; + const hasJSONContentType = contentType.indexOf('application/json') > -1; + const isObjectPayload = utils.isObject(data); + + if (isObjectPayload && utils.isHTMLForm(data)) { + data = new FormData(data); + } + + const isFormData = utils.isFormData(data); + + if (isFormData) { + if (!hasJSONContentType) { + return data; + } + return hasJSONContentType ? JSON.stringify(formDataToJSON(data)) : data; + } + + if (utils.isArrayBuffer(data) || + utils.isBuffer(data) || + utils.isStream(data) || + utils.isFile(data) || + utils.isBlob(data) + ) { + return data; + } + if (utils.isArrayBufferView(data)) { + return data.buffer; + } + if (utils.isURLSearchParams(data)) { + headers.setContentType('application/x-www-form-urlencoded;charset=utf-8', false); + return data.toString(); + } + + let isFileList; + + if (isObjectPayload) { + if (contentType.indexOf('application/x-www-form-urlencoded') > -1) { + return toURLEncodedForm(data, this.formSerializer).toString(); + } + + if ((isFileList = utils.isFileList(data)) || contentType.indexOf('multipart/form-data') > -1) { + const _FormData = this.env && this.env.FormData; + + return toFormData( + isFileList ? {'files[]': data} : data, + _FormData && new _FormData(), + this.formSerializer + ); + } + } + + if (isObjectPayload || hasJSONContentType ) { + headers.setContentType('application/json', false); + return stringifySafely(data); + } + + return data; + }], + + transformResponse: [function transformResponse(data) { + const transitional = this.transitional || defaults.transitional; + const forcedJSONParsing = transitional && transitional.forcedJSONParsing; + const JSONRequested = this.responseType === 'json'; + + if (data && utils.isString(data) && ((forcedJSONParsing && !this.responseType) || JSONRequested)) { + const silentJSONParsing = transitional && transitional.silentJSONParsing; + const strictJSONParsing = !silentJSONParsing && JSONRequested; + + try { + return JSON.parse(data); + } catch (e) { + if (strictJSONParsing) { + if (e.name === 'SyntaxError') { + throw AxiosError.from(e, AxiosError.ERR_BAD_RESPONSE, this, null, this.response); + } + throw e; + } + } + } + + return data; + }], + + /** + * A timeout in milliseconds to abort a request. If set to 0 (default) a + * timeout is not created. + */ + timeout: 0, + + xsrfCookieName: 'XSRF-TOKEN', + xsrfHeaderName: 'X-XSRF-TOKEN', + + maxContentLength: -1, + maxBodyLength: -1, + + env: { + FormData: platform.classes.FormData, + Blob: platform.classes.Blob + }, + + validateStatus: function validateStatus(status) { + return status >= 200 && status < 300; + }, + + headers: { + common: { + 'Accept': 'application/json, text/plain, */*' + } + } +}; + +utils.forEach(['delete', 'get', 'head'], function forEachMethodNoData(method) { + defaults.headers[method] = {}; +}); + +utils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) { + defaults.headers[method] = utils.merge(DEFAULT_CONTENT_TYPE); +}); + +/** + * Transform the data for a request or a response + * + * @param {Array|Function} fns A single function or Array of functions + * @param {?Object} response The response object + * + * @returns {*} The resulting transformed data + */ +function transformData(fns, response) { + const config = this || defaults; + const context = response || config; + const headers = AxiosHeaders.from(context.headers); + let data = context.data; + + utils.forEach(fns, function transform(fn) { + data = fn.call(config, data, headers.normalize(), response ? response.status : undefined); + }); + + headers.normalize(); + + return data; +} + +function isCancel(value) { + return !!(value && value.__CANCEL__); +} + +/** + * Throws a `CanceledError` if cancellation has been requested. + * + * @param {Object} config The config that is to be used for the request + * + * @returns {void} + */ +function throwIfCancellationRequested(config) { + if (config.cancelToken) { + config.cancelToken.throwIfRequested(); + } + + if (config.signal && config.signal.aborted) { + throw new CanceledError(); + } +} + +/** + * Dispatch a request to the server using the configured adapter. + * + * @param {object} config The config that is to be used for the request + * + * @returns {Promise} The Promise to be fulfilled + */ +function dispatchRequest(config) { + throwIfCancellationRequested(config); + + config.headers = AxiosHeaders.from(config.headers); + + // Transform request data + config.data = transformData.call( + config, + config.transformRequest + ); + + const adapter = config.adapter || defaults.adapter; + + return adapter(config).then(function onAdapterResolution(response) { + throwIfCancellationRequested(config); + + // Transform response data + response.data = transformData.call( + config, + config.transformResponse, + response + ); + + response.headers = AxiosHeaders.from(response.headers); + + return response; + }, function onAdapterRejection(reason) { + if (!isCancel(reason)) { + throwIfCancellationRequested(config); + + // Transform response data + if (reason && reason.response) { + reason.response.data = transformData.call( + config, + config.transformResponse, + reason.response + ); + reason.response.headers = AxiosHeaders.from(reason.response.headers); + } + } + + return Promise.reject(reason); + }); +} + +/** + * Config-specific merge-function which creates a new config-object + * by merging two configuration objects together. + * + * @param {Object} config1 + * @param {Object} config2 + * + * @returns {Object} New object resulting from merging config2 to config1 + */ +function mergeConfig(config1, config2) { + // eslint-disable-next-line no-param-reassign + config2 = config2 || {}; + const config = {}; + + function getMergedValue(target, source) { + if (utils.isPlainObject(target) && utils.isPlainObject(source)) { + return utils.merge(target, source); + } else if (utils.isPlainObject(source)) { + return utils.merge({}, source); + } else if (utils.isArray(source)) { + return source.slice(); + } + return source; + } + + // eslint-disable-next-line consistent-return + function mergeDeepProperties(prop) { + if (!utils.isUndefined(config2[prop])) { + return getMergedValue(config1[prop], config2[prop]); + } else if (!utils.isUndefined(config1[prop])) { + return getMergedValue(undefined, config1[prop]); + } + } + + // eslint-disable-next-line consistent-return + function valueFromConfig2(prop) { + if (!utils.isUndefined(config2[prop])) { + return getMergedValue(undefined, config2[prop]); + } + } + + // eslint-disable-next-line consistent-return + function defaultToConfig2(prop) { + if (!utils.isUndefined(config2[prop])) { + return getMergedValue(undefined, config2[prop]); + } else if (!utils.isUndefined(config1[prop])) { + return getMergedValue(undefined, config1[prop]); + } + } + + // eslint-disable-next-line consistent-return + function mergeDirectKeys(prop) { + if (prop in config2) { + return getMergedValue(config1[prop], config2[prop]); + } else if (prop in config1) { + return getMergedValue(undefined, config1[prop]); + } + } + + const mergeMap = { + 'url': valueFromConfig2, + 'method': valueFromConfig2, + 'data': valueFromConfig2, + 'baseURL': defaultToConfig2, + 'transformRequest': defaultToConfig2, + 'transformResponse': defaultToConfig2, + 'paramsSerializer': defaultToConfig2, + 'timeout': defaultToConfig2, + 'timeoutMessage': defaultToConfig2, + 'withCredentials': defaultToConfig2, + 'adapter': defaultToConfig2, + 'responseType': defaultToConfig2, + 'xsrfCookieName': defaultToConfig2, + 'xsrfHeaderName': defaultToConfig2, + 'onUploadProgress': defaultToConfig2, + 'onDownloadProgress': defaultToConfig2, + 'decompress': defaultToConfig2, + 'maxContentLength': defaultToConfig2, + 'maxBodyLength': defaultToConfig2, + 'beforeRedirect': defaultToConfig2, + 'transport': defaultToConfig2, + 'httpAgent': defaultToConfig2, + 'httpsAgent': defaultToConfig2, + 'cancelToken': defaultToConfig2, + 'socketPath': defaultToConfig2, + 'responseEncoding': defaultToConfig2, + 'validateStatus': mergeDirectKeys + }; + + utils.forEach(Object.keys(config1).concat(Object.keys(config2)), function computeConfigValue(prop) { + const merge = mergeMap[prop] || mergeDeepProperties; + const configValue = merge(prop); + (utils.isUndefined(configValue) && merge !== mergeDirectKeys) || (config[prop] = configValue); + }); + + return config; +} + +const VERSION = "1.0.0"; + +const validators$1 = {}; + +// eslint-disable-next-line func-names +['object', 'boolean', 'number', 'function', 'string', 'symbol'].forEach((type, i) => { + validators$1[type] = function validator(thing) { + return typeof thing === type || 'a' + (i < 1 ? 'n ' : ' ') + type; + }; +}); + +const deprecatedWarnings = {}; + +/** + * Transitional option validator + * + * @param {function|boolean?} validator - set to false if the transitional option has been removed + * @param {string?} version - deprecated version / removed since version + * @param {string?} message - some message with additional info + * + * @returns {function} + */ +validators$1.transitional = function transitional(validator, version, message) { + function formatMessage(opt, desc) { + return '[Axios v' + VERSION + '] Transitional option \'' + opt + '\'' + desc + (message ? '. ' + message : ''); + } + + // eslint-disable-next-line func-names + return (value, opt, opts) => { + if (validator === false) { + throw new AxiosError( + formatMessage(opt, ' has been removed' + (version ? ' in ' + version : '')), + AxiosError.ERR_DEPRECATED + ); + } + + if (version && !deprecatedWarnings[opt]) { + deprecatedWarnings[opt] = true; + // eslint-disable-next-line no-console + console.warn( + formatMessage( + opt, + ' has been deprecated since v' + version + ' and will be removed in the near future' + ) + ); + } + + return validator ? validator(value, opt, opts) : true; + }; +}; + +/** + * Assert object's properties type + * + * @param {object} options + * @param {object} schema + * @param {boolean?} allowUnknown + * + * @returns {object} + */ + +function assertOptions(options, schema, allowUnknown) { + if (typeof options !== 'object') { + throw new AxiosError('options must be an object', AxiosError.ERR_BAD_OPTION_VALUE); + } + const keys = Object.keys(options); + let i = keys.length; + while (i-- > 0) { + const opt = keys[i]; + const validator = schema[opt]; + if (validator) { + const value = options[opt]; + const result = value === undefined || validator(value, opt, options); + if (result !== true) { + throw new AxiosError('option ' + opt + ' must be ' + result, AxiosError.ERR_BAD_OPTION_VALUE); + } + continue; + } + if (allowUnknown !== true) { + throw new AxiosError('Unknown option ' + opt, AxiosError.ERR_BAD_OPTION); + } + } +} + +const validator = { + assertOptions, + validators: validators$1 +}; + +const validators = validator.validators; + +/** + * Create a new instance of Axios + * + * @param {Object} instanceConfig The default config for the instance + * + * @return {Axios} A new instance of Axios + */ +class Axios { + constructor(instanceConfig) { + this.defaults = instanceConfig; + this.interceptors = { + request: new InterceptorManager(), + response: new InterceptorManager() + }; + } + + /** + * Dispatch a request + * + * @param {String|Object} configOrUrl The config specific for this request (merged with this.defaults) + * @param {?Object} config + * + * @returns {Promise} The Promise to be fulfilled + */ + request(configOrUrl, config) { + /*eslint no-param-reassign:0*/ + // Allow for axios('example/url'[, config]) a la fetch API + if (typeof configOrUrl === 'string') { + config = config || {}; + config.url = configOrUrl; + } else { + config = configOrUrl || {}; + } + + config = mergeConfig(this.defaults, config); + + const transitional = config.transitional; + + if (transitional !== undefined) { + validator.assertOptions(transitional, { + silentJSONParsing: validators.transitional(validators.boolean), + forcedJSONParsing: validators.transitional(validators.boolean), + clarifyTimeoutError: validators.transitional(validators.boolean) + }, false); + } + + // Set config.method + config.method = (config.method || this.defaults.method || 'get').toLowerCase(); + + // Flatten headers + const defaultHeaders = config.headers && utils.merge( + config.headers.common, + config.headers[config.method] + ); + + defaultHeaders && utils.forEach( + ['delete', 'get', 'head', 'post', 'put', 'patch', 'common'], + function cleanHeaderConfig(method) { + delete config.headers[method]; + } + ); + + config.headers = new AxiosHeaders(config.headers, defaultHeaders); + + // filter out skipped interceptors + const requestInterceptorChain = []; + let synchronousRequestInterceptors = true; + this.interceptors.request.forEach(function unshiftRequestInterceptors(interceptor) { + if (typeof interceptor.runWhen === 'function' && interceptor.runWhen(config) === false) { + return; + } + + synchronousRequestInterceptors = synchronousRequestInterceptors && interceptor.synchronous; + + requestInterceptorChain.unshift(interceptor.fulfilled, interceptor.rejected); + }); + + const responseInterceptorChain = []; + this.interceptors.response.forEach(function pushResponseInterceptors(interceptor) { + responseInterceptorChain.push(interceptor.fulfilled, interceptor.rejected); + }); + + let promise; + let i = 0; + let len; + + if (!synchronousRequestInterceptors) { + const chain = [dispatchRequest.bind(this), undefined]; + chain.unshift.apply(chain, requestInterceptorChain); + chain.push.apply(chain, responseInterceptorChain); + len = chain.length; + + promise = Promise.resolve(config); + + while (i < len) { + promise = promise.then(chain[i++], chain[i++]); + } + + return promise; + } + + len = requestInterceptorChain.length; + + let newConfig = config; + + i = 0; + + while (i < len) { + const onFulfilled = requestInterceptorChain[i++]; + const onRejected = requestInterceptorChain[i++]; + try { + newConfig = onFulfilled(newConfig); + } catch (error) { + onRejected.call(this, error); + break; + } + } + + try { + promise = dispatchRequest.call(this, newConfig); + } catch (error) { + return Promise.reject(error); + } + + i = 0; + len = responseInterceptorChain.length; + + while (i < len) { + promise = promise.then(responseInterceptorChain[i++], responseInterceptorChain[i++]); + } + + return promise; + } + + getUri(config) { + config = mergeConfig(this.defaults, config); + const fullPath = buildFullPath(config.baseURL, config.url); + return buildURL(fullPath, config.params, config.paramsSerializer); + } +} + +// Provide aliases for supported request methods +utils.forEach(['delete', 'get', 'head', 'options'], function forEachMethodNoData(method) { + /*eslint func-names:0*/ + Axios.prototype[method] = function(url, config) { + return this.request(mergeConfig(config || {}, { + method, + url, + data: (config || {}).data + })); + }; +}); + +utils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) { + /*eslint func-names:0*/ + + function generateHTTPMethod(isForm) { + return function httpMethod(url, data, config) { + return this.request(mergeConfig(config || {}, { + method, + headers: isForm ? { + 'Content-Type': 'multipart/form-data' + } : {}, + url, + data + })); + }; + } + + Axios.prototype[method] = generateHTTPMethod(); + + Axios.prototype[method + 'Form'] = generateHTTPMethod(true); +}); + +/** + * A `CancelToken` is an object that can be used to request cancellation of an operation. + * + * @param {Function} executor The executor function. + * + * @returns {CancelToken} + */ +class CancelToken { + constructor(executor) { + if (typeof executor !== 'function') { + throw new TypeError('executor must be a function.'); + } + + let resolvePromise; + + this.promise = new Promise(function promiseExecutor(resolve) { + resolvePromise = resolve; + }); + + const token = this; + + // eslint-disable-next-line func-names + this.promise.then(cancel => { + if (!token._listeners) return; + + let i = token._listeners.length; + + while (i-- > 0) { + token._listeners[i](cancel); + } + token._listeners = null; + }); + + // eslint-disable-next-line func-names + this.promise.then = onfulfilled => { + let _resolve; + // eslint-disable-next-line func-names + const promise = new Promise(resolve => { + token.subscribe(resolve); + _resolve = resolve; + }).then(onfulfilled); + + promise.cancel = function reject() { + token.unsubscribe(_resolve); + }; + + return promise; + }; + + executor(function cancel(message, config, request) { + if (token.reason) { + // Cancellation has already been requested + return; + } + + token.reason = new CanceledError(message, config, request); + resolvePromise(token.reason); + }); + } + + /** + * Throws a `CanceledError` if cancellation has been requested. + */ + throwIfRequested() { + if (this.reason) { + throw this.reason; + } + } + + /** + * Subscribe to the cancel signal + */ + + subscribe(listener) { + if (this.reason) { + listener(this.reason); + return; + } + + if (this._listeners) { + this._listeners.push(listener); + } else { + this._listeners = [listener]; + } + } + + /** + * Unsubscribe from the cancel signal + */ + + unsubscribe(listener) { + if (!this._listeners) { + return; + } + const index = this._listeners.indexOf(listener); + if (index !== -1) { + this._listeners.splice(index, 1); + } + } + + /** + * Returns an object that contains a new `CancelToken` and a function that, when called, + * cancels the `CancelToken`. + */ + static source() { + let cancel; + const token = new CancelToken(function executor(c) { + cancel = c; + }); + return { + token, + cancel + }; + } +} + +/** + * Syntactic sugar for invoking a function and expanding an array for arguments. + * + * Common use case would be to use `Function.prototype.apply`. + * + * ```js + * function f(x, y, z) {} + * var args = [1, 2, 3]; + * f.apply(null, args); + * ``` + * + * With `spread` this example can be re-written. + * + * ```js + * spread(function(x, y, z) {})([1, 2, 3]); + * ``` + * + * @param {Function} callback + * + * @returns {Function} + */ +function spread(callback) { + return function wrap(arr) { + return callback.apply(null, arr); + }; +} + +/** + * Determines whether the payload is an error thrown by Axios + * + * @param {*} payload The value to test + * + * @returns {boolean} True if the payload is an error thrown by Axios, otherwise false + */ +function isAxiosError(payload) { + return utils.isObject(payload) && (payload.isAxiosError === true); +} + +/** + * Create an instance of Axios + * + * @param {Object} defaultConfig The default config for the instance + * + * @returns {Axios} A new instance of Axios + */ +function createInstance(defaultConfig) { + const context = new Axios(defaultConfig); + const instance = bind(Axios.prototype.request, context); + + // Copy axios.prototype to instance + utils.extend(instance, Axios.prototype, context, {allOwnKeys: true}); + + // Copy context to instance + utils.extend(instance, context, null, {allOwnKeys: true}); + + // Factory for creating new instances + instance.create = function create(instanceConfig) { + return createInstance(mergeConfig(defaultConfig, instanceConfig)); + }; + + return instance; +} + +// Create the default instance to be exported +const axios = createInstance(defaults); + +// Expose Axios class to allow class inheritance +axios.Axios = Axios; + +// Expose Cancel & CancelToken +axios.CanceledError = CanceledError; +axios.CancelToken = CancelToken; +axios.isCancel = isCancel; +axios.VERSION = VERSION; +axios.toFormData = toFormData; + +// Expose AxiosError class +axios.AxiosError = AxiosError; + +// alias for CanceledError for backward compatibility +axios.Cancel = axios.CanceledError; + +// Expose all/spread +axios.all = function all(promises) { + return Promise.all(promises); +}; + +axios.spread = spread; + +// Expose isAxiosError +axios.isAxiosError = isAxiosError; + +axios.formToJSON = thing => { + return formDataToJSON(utils.isHTMLForm(thing) ? new FormData(thing) : thing); +}; + +export { axios as default }; +//# sourceMappingURL=axios.js.map diff --git a/node_modules/axios/dist/esm/axios.js.map b/node_modules/axios/dist/esm/axios.js.map new file mode 100644 index 000000000..cea7196d3 --- /dev/null +++ b/node_modules/axios/dist/esm/axios.js.map @@ -0,0 +1 @@ +{"version":3,"file":"axios.js","sources":["../../lib/helpers/bind.js","../../lib/utils.js","../../lib/core/AxiosError.js","../../node_modules/form-data/lib/browser.js","../../lib/helpers/toFormData.js","../../lib/helpers/AxiosURLSearchParams.js","../../lib/helpers/buildURL.js","../../lib/core/InterceptorManager.js","../../lib/defaults/transitional.js","../../lib/platform/browser/classes/URLSearchParams.js","../../lib/platform/browser/classes/FormData.js","../../lib/platform/browser/index.js","../../lib/helpers/toURLEncodedForm.js","../../lib/helpers/formDataToJSON.js","../../lib/core/settle.js","../../lib/helpers/cookies.js","../../lib/helpers/isAbsoluteURL.js","../../lib/helpers/combineURLs.js","../../lib/core/buildFullPath.js","../../lib/helpers/isURLSameOrigin.js","../../lib/cancel/CanceledError.js","../../lib/helpers/parseProtocol.js","../../lib/helpers/parseHeaders.js","../../lib/core/AxiosHeaders.js","../../lib/helpers/speedometer.js","../../lib/adapters/xhr.js","../../lib/adapters/index.js","../../lib/defaults/index.js","../../lib/core/transformData.js","../../lib/cancel/isCancel.js","../../lib/core/dispatchRequest.js","../../lib/core/mergeConfig.js","../../lib/env/data.js","../../lib/helpers/validator.js","../../lib/core/Axios.js","../../lib/cancel/CancelToken.js","../../lib/helpers/spread.js","../../lib/helpers/isAxiosError.js","../../lib/axios.js"],"sourcesContent":["'use strict';\n\nexport default function bind(fn, thisArg) {\n return function wrap() {\n return fn.apply(thisArg, arguments);\n };\n}\n","'use strict';\n\nimport bind from './helpers/bind.js';\n\n// utils is a library of generic helper functions non-specific to axios\n\nconst {toString} = Object.prototype;\nconst {getPrototypeOf} = Object;\n\nconst kindOf = (cache => thing => {\n const str = toString.call(thing);\n return cache[str] || (cache[str] = str.slice(8, -1).toLowerCase());\n})(Object.create(null));\n\nconst kindOfTest = (type) => {\n type = type.toLowerCase();\n return (thing) => kindOf(thing) === type\n}\n\nconst typeOfTest = type => thing => typeof thing === type;\n\n/**\n * Determine if a value is an Array\n *\n * @param {Object} val The value to test\n *\n * @returns {boolean} True if value is an Array, otherwise false\n */\nconst {isArray} = Array;\n\n/**\n * Determine if a value is undefined\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if the value is undefined, otherwise false\n */\nconst isUndefined = typeOfTest('undefined');\n\n/**\n * Determine if a value is a Buffer\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a Buffer, otherwise false\n */\nfunction isBuffer(val) {\n return val !== null && !isUndefined(val) && val.constructor !== null && !isUndefined(val.constructor)\n && isFunction(val.constructor.isBuffer) && val.constructor.isBuffer(val);\n}\n\n/**\n * Determine if a value is an ArrayBuffer\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is an ArrayBuffer, otherwise false\n */\nconst isArrayBuffer = kindOfTest('ArrayBuffer');\n\n\n/**\n * Determine if a value is a view on an ArrayBuffer\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a view on an ArrayBuffer, otherwise false\n */\nfunction isArrayBufferView(val) {\n let result;\n if ((typeof ArrayBuffer !== 'undefined') && (ArrayBuffer.isView)) {\n result = ArrayBuffer.isView(val);\n } else {\n result = (val) && (val.buffer) && (isArrayBuffer(val.buffer));\n }\n return result;\n}\n\n/**\n * Determine if a value is a String\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a String, otherwise false\n */\nconst isString = typeOfTest('string');\n\n/**\n * Determine if a value is a Function\n *\n * @param {*} val The value to test\n * @returns {boolean} True if value is a Function, otherwise false\n */\nconst isFunction = typeOfTest('function');\n\n/**\n * Determine if a value is a Number\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a Number, otherwise false\n */\nconst isNumber = typeOfTest('number');\n\n/**\n * Determine if a value is an Object\n *\n * @param {*} thing The value to test\n *\n * @returns {boolean} True if value is an Object, otherwise false\n */\nconst isObject = (thing) => thing !== null && typeof thing === 'object';\n\n/**\n * Determine if a value is a Boolean\n *\n * @param {*} thing The value to test\n * @returns {boolean} True if value is a Boolean, otherwise false\n */\nconst isBoolean = thing => thing === true || thing === false;\n\n/**\n * Determine if a value is a plain Object\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a plain Object, otherwise false\n */\nconst isPlainObject = (val) => {\n if (kindOf(val) !== 'object') {\n return false;\n }\n\n const prototype = getPrototypeOf(val);\n return prototype === null || prototype === Object.prototype;\n}\n\n/**\n * Determine if a value is a Date\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a Date, otherwise false\n */\nconst isDate = kindOfTest('Date');\n\n/**\n * Determine if a value is a File\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a File, otherwise false\n */\nconst isFile = kindOfTest('File');\n\n/**\n * Determine if a value is a Blob\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a Blob, otherwise false\n */\nconst isBlob = kindOfTest('Blob');\n\n/**\n * Determine if a value is a FileList\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a File, otherwise false\n */\nconst isFileList = kindOfTest('FileList');\n\n/**\n * Determine if a value is a Stream\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a Stream, otherwise false\n */\nconst isStream = (val) => isObject(val) && isFunction(val.pipe);\n\n/**\n * Determine if a value is a FormData\n *\n * @param {*} thing The value to test\n *\n * @returns {boolean} True if value is an FormData, otherwise false\n */\nconst isFormData = (thing) => {\n const pattern = '[object FormData]';\n return thing && (\n (typeof FormData === 'function' && thing instanceof FormData) ||\n toString.call(thing) === pattern ||\n (isFunction(thing.toString) && thing.toString() === pattern)\n );\n}\n\n/**\n * Determine if a value is a URLSearchParams object\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a URLSearchParams object, otherwise false\n */\nconst isURLSearchParams = kindOfTest('URLSearchParams');\n\n/**\n * Trim excess whitespace off the beginning and end of a string\n *\n * @param {String} str The String to trim\n *\n * @returns {String} The String freed of excess whitespace\n */\nconst trim = (str) => str.trim ?\n str.trim() : str.replace(/^[\\s\\uFEFF\\xA0]+|[\\s\\uFEFF\\xA0]+$/g, '');\n\n/**\n * Iterate over an Array or an Object invoking a function for each item.\n *\n * If `obj` is an Array callback will be called passing\n * the value, index, and complete array for each item.\n *\n * If 'obj' is an Object callback will be called passing\n * the value, key, and complete object for each property.\n *\n * @param {Object|Array} obj The object to iterate\n * @param {Function} fn The callback to invoke for each item\n *\n * @param {Boolean} [allOwnKeys = false]\n * @returns {void}\n */\nfunction forEach(obj, fn, {allOwnKeys = false} = {}) {\n // Don't bother if no value provided\n if (obj === null || typeof obj === 'undefined') {\n return;\n }\n\n let i;\n let l;\n\n // Force an array if not already something iterable\n if (typeof obj !== 'object') {\n /*eslint no-param-reassign:0*/\n obj = [obj];\n }\n\n if (isArray(obj)) {\n // Iterate over array values\n for (i = 0, l = obj.length; i < l; i++) {\n fn.call(null, obj[i], i, obj);\n }\n } else {\n // Iterate over object keys\n const keys = allOwnKeys ? Object.getOwnPropertyNames(obj) : Object.keys(obj);\n const len = keys.length;\n let key;\n\n for (i = 0; i < len; i++) {\n key = keys[i];\n fn.call(null, obj[key], key, obj);\n }\n }\n}\n\n/**\n * Accepts varargs expecting each argument to be an object, then\n * immutably merges the properties of each object and returns result.\n *\n * When multiple objects contain the same key the later object in\n * the arguments list will take precedence.\n *\n * Example:\n *\n * ```js\n * var result = merge({foo: 123}, {foo: 456});\n * console.log(result.foo); // outputs 456\n * ```\n *\n * @param {Object} obj1 Object to merge\n *\n * @returns {Object} Result of all merge properties\n */\nfunction merge(/* obj1, obj2, obj3, ... */) {\n const result = {};\n const assignValue = (val, key) => {\n if (isPlainObject(result[key]) && isPlainObject(val)) {\n result[key] = merge(result[key], val);\n } else if (isPlainObject(val)) {\n result[key] = merge({}, val);\n } else if (isArray(val)) {\n result[key] = val.slice();\n } else {\n result[key] = val;\n }\n }\n\n for (let i = 0, l = arguments.length; i < l; i++) {\n arguments[i] && forEach(arguments[i], assignValue);\n }\n return result;\n}\n\n/**\n * Extends object a by mutably adding to it the properties of object b.\n *\n * @param {Object} a The object to be extended\n * @param {Object} b The object to copy properties from\n * @param {Object} thisArg The object to bind function to\n *\n * @param {Boolean} [allOwnKeys]\n * @returns {Object} The resulting value of object a\n */\nconst extend = (a, b, thisArg, {allOwnKeys}= {}) => {\n forEach(b, (val, key) => {\n if (thisArg && isFunction(val)) {\n a[key] = bind(val, thisArg);\n } else {\n a[key] = val;\n }\n }, {allOwnKeys});\n return a;\n}\n\n/**\n * Remove byte order marker. This catches EF BB BF (the UTF-8 BOM)\n *\n * @param {string} content with BOM\n *\n * @returns {string} content value without BOM\n */\nconst stripBOM = (content) => {\n if (content.charCodeAt(0) === 0xFEFF) {\n content = content.slice(1);\n }\n return content;\n}\n\n/**\n * Inherit the prototype methods from one constructor into another\n * @param {function} constructor\n * @param {function} superConstructor\n * @param {object} [props]\n * @param {object} [descriptors]\n *\n * @returns {void}\n */\nconst inherits = (constructor, superConstructor, props, descriptors) => {\n constructor.prototype = Object.create(superConstructor.prototype, descriptors);\n constructor.prototype.constructor = constructor;\n Object.defineProperty(constructor, 'super', {\n value: superConstructor.prototype\n });\n props && Object.assign(constructor.prototype, props);\n}\n\n/**\n * Resolve object with deep prototype chain to a flat object\n * @param {Object} sourceObj source object\n * @param {Object} [destObj]\n * @param {Function|Boolean} [filter]\n * @param {Function} [propFilter]\n *\n * @returns {Object}\n */\nconst toFlatObject = (sourceObj, destObj, filter, propFilter) => {\n let props;\n let i;\n let prop;\n const merged = {};\n\n destObj = destObj || {};\n // eslint-disable-next-line no-eq-null,eqeqeq\n if (sourceObj == null) return destObj;\n\n do {\n props = Object.getOwnPropertyNames(sourceObj);\n i = props.length;\n while (i-- > 0) {\n prop = props[i];\n if ((!propFilter || propFilter(prop, sourceObj, destObj)) && !merged[prop]) {\n destObj[prop] = sourceObj[prop];\n merged[prop] = true;\n }\n }\n sourceObj = filter !== false && getPrototypeOf(sourceObj);\n } while (sourceObj && (!filter || filter(sourceObj, destObj)) && sourceObj !== Object.prototype);\n\n return destObj;\n}\n\n/**\n * Determines whether a string ends with the characters of a specified string\n *\n * @param {String} str\n * @param {String} searchString\n * @param {Number} [position= 0]\n *\n * @returns {boolean}\n */\nconst endsWith = (str, searchString, position) => {\n str = String(str);\n if (position === undefined || position > str.length) {\n position = str.length;\n }\n position -= searchString.length;\n const lastIndex = str.indexOf(searchString, position);\n return lastIndex !== -1 && lastIndex === position;\n}\n\n\n/**\n * Returns new array from array like object or null if failed\n *\n * @param {*} [thing]\n *\n * @returns {?Array}\n */\nconst toArray = (thing) => {\n if (!thing) return null;\n if (isArray(thing)) return thing;\n let i = thing.length;\n if (!isNumber(i)) return null;\n const arr = new Array(i);\n while (i-- > 0) {\n arr[i] = thing[i];\n }\n return arr;\n}\n\n/**\n * Checking if the Uint8Array exists and if it does, it returns a function that checks if the\n * thing passed in is an instance of Uint8Array\n *\n * @param {TypedArray}\n *\n * @returns {Array}\n */\n// eslint-disable-next-line func-names\nconst isTypedArray = (TypedArray => {\n // eslint-disable-next-line func-names\n return thing => {\n return TypedArray && thing instanceof TypedArray;\n };\n})(typeof Uint8Array !== 'undefined' && getPrototypeOf(Uint8Array));\n\n/**\n * For each entry in the object, call the function with the key and value.\n *\n * @param {Object} obj - The object to iterate over.\n * @param {Function} fn - The function to call for each entry.\n *\n * @returns {void}\n */\nconst forEachEntry = (obj, fn) => {\n const generator = obj && obj[Symbol.iterator];\n\n const iterator = generator.call(obj);\n\n let result;\n\n while ((result = iterator.next()) && !result.done) {\n const pair = result.value;\n fn.call(obj, pair[0], pair[1]);\n }\n}\n\n/**\n * It takes a regular expression and a string, and returns an array of all the matches\n *\n * @param {string} regExp - The regular expression to match against.\n * @param {string} str - The string to search.\n *\n * @returns {Array}\n */\nconst matchAll = (regExp, str) => {\n let matches;\n const arr = [];\n\n while ((matches = regExp.exec(str)) !== null) {\n arr.push(matches);\n }\n\n return arr;\n}\n\n/* Checking if the kindOfTest function returns true when passed an HTMLFormElement. */\nconst isHTMLForm = kindOfTest('HTMLFormElement');\n\nconst toCamelCase = str => {\n return str.toLowerCase().replace(/[_-\\s]([a-z\\d])(\\w*)/g,\n function replacer(m, p1, p2) {\n return p1.toUpperCase() + p2;\n }\n );\n};\n\n/* Creating a function that will check if an object has a property. */\nconst hasOwnProperty = (({hasOwnProperty}) => (obj, prop) => hasOwnProperty.call(obj, prop))(Object.prototype);\n\n/**\n * Determine if a value is a RegExp object\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a RegExp object, otherwise false\n */\nconst isRegExp = kindOfTest('RegExp');\n\nconst reduceDescriptors = (obj, reducer) => {\n const descriptors = Object.getOwnPropertyDescriptors(obj);\n const reducedDescriptors = {};\n\n forEach(descriptors, (descriptor, name) => {\n if (reducer(descriptor, name, obj) !== false) {\n reducedDescriptors[name] = descriptor;\n }\n });\n\n Object.defineProperties(obj, reducedDescriptors);\n}\n\n/**\n * Makes all methods read-only\n * @param {Object} obj\n */\n\nconst freezeMethods = (obj) => {\n reduceDescriptors(obj, (descriptor, name) => {\n const value = obj[name];\n\n if (!isFunction(value)) return;\n\n descriptor.enumerable = false;\n\n if ('writable' in descriptor) {\n descriptor.writable = false;\n return;\n }\n\n if (!descriptor.set) {\n descriptor.set = () => {\n throw Error('Can not read-only method \\'' + name + '\\'');\n };\n }\n });\n}\n\nconst toObjectSet = (arrayOrString, delimiter) => {\n const obj = {};\n\n const define = (arr) => {\n arr.forEach(value => {\n obj[value] = true;\n });\n }\n\n isArray(arrayOrString) ? define(arrayOrString) : define(String(arrayOrString).split(delimiter));\n\n return obj;\n}\n\nconst noop = () => {}\n\nconst toFiniteNumber = (value, defaultValue) => {\n value = +value;\n return Number.isFinite(value) ? value : defaultValue;\n}\n\nexport default {\n isArray,\n isArrayBuffer,\n isBuffer,\n isFormData,\n isArrayBufferView,\n isString,\n isNumber,\n isBoolean,\n isObject,\n isPlainObject,\n isUndefined,\n isDate,\n isFile,\n isBlob,\n isRegExp,\n isFunction,\n isStream,\n isURLSearchParams,\n isTypedArray,\n isFileList,\n forEach,\n merge,\n extend,\n trim,\n stripBOM,\n inherits,\n toFlatObject,\n kindOf,\n kindOfTest,\n endsWith,\n toArray,\n forEachEntry,\n matchAll,\n isHTMLForm,\n hasOwnProperty,\n hasOwnProp: hasOwnProperty, // an alias to avoid ESLint no-prototype-builtins detection\n reduceDescriptors,\n freezeMethods,\n toObjectSet,\n toCamelCase,\n noop,\n toFiniteNumber\n};\n","'use strict';\n\nimport utils from '../utils.js';\n\n/**\n * Create an Error with the specified message, config, error code, request and response.\n *\n * @param {string} message The error message.\n * @param {string} [code] The error code (for example, 'ECONNABORTED').\n * @param {Object} [config] The config.\n * @param {Object} [request] The request.\n * @param {Object} [response] The response.\n *\n * @returns {Error} The created error.\n */\nfunction AxiosError(message, code, config, request, response) {\n Error.call(this);\n\n if (Error.captureStackTrace) {\n Error.captureStackTrace(this, this.constructor);\n } else {\n this.stack = (new Error()).stack;\n }\n\n this.message = message;\n this.name = 'AxiosError';\n code && (this.code = code);\n config && (this.config = config);\n request && (this.request = request);\n response && (this.response = response);\n}\n\nutils.inherits(AxiosError, Error, {\n toJSON: function toJSON() {\n return {\n // Standard\n message: this.message,\n name: this.name,\n // Microsoft\n description: this.description,\n number: this.number,\n // Mozilla\n fileName: this.fileName,\n lineNumber: this.lineNumber,\n columnNumber: this.columnNumber,\n stack: this.stack,\n // Axios\n config: this.config,\n code: this.code,\n status: this.response && this.response.status ? this.response.status : null\n };\n }\n});\n\nconst prototype = AxiosError.prototype;\nconst descriptors = {};\n\n[\n 'ERR_BAD_OPTION_VALUE',\n 'ERR_BAD_OPTION',\n 'ECONNABORTED',\n 'ETIMEDOUT',\n 'ERR_NETWORK',\n 'ERR_FR_TOO_MANY_REDIRECTS',\n 'ERR_DEPRECATED',\n 'ERR_BAD_RESPONSE',\n 'ERR_BAD_REQUEST',\n 'ERR_CANCELED',\n 'ERR_NOT_SUPPORT',\n 'ERR_INVALID_URL'\n// eslint-disable-next-line func-names\n].forEach(code => {\n descriptors[code] = {value: code};\n});\n\nObject.defineProperties(AxiosError, descriptors);\nObject.defineProperty(prototype, 'isAxiosError', {value: true});\n\n// eslint-disable-next-line func-names\nAxiosError.from = (error, code, config, request, response, customProps) => {\n const axiosError = Object.create(prototype);\n\n utils.toFlatObject(error, axiosError, function filter(obj) {\n return obj !== Error.prototype;\n }, prop => {\n return prop !== 'isAxiosError';\n });\n\n AxiosError.call(axiosError, error.message, code, config, request, response);\n\n axiosError.cause = error;\n\n axiosError.name = error.name;\n\n customProps && Object.assign(axiosError, customProps);\n\n return axiosError;\n};\n\nexport default AxiosError;\n","/* eslint-env browser */\nmodule.exports = typeof self == 'object' ? self.FormData : window.FormData;\n","'use strict';\n\nimport utils from '../utils.js';\nimport AxiosError from '../core/AxiosError.js';\nimport envFormData from '../env/classes/FormData.js';\n\n/**\n * Determines if the given thing is a array or js object.\n *\n * @param {string} thing - The object or array to be visited.\n *\n * @returns {boolean}\n */\nfunction isVisitable(thing) {\n return utils.isPlainObject(thing) || utils.isArray(thing);\n}\n\n/**\n * It removes the brackets from the end of a string\n *\n * @param {string} key - The key of the parameter.\n *\n * @returns {string} the key without the brackets.\n */\nfunction removeBrackets(key) {\n return utils.endsWith(key, '[]') ? key.slice(0, -2) : key;\n}\n\n/**\n * It takes a path, a key, and a boolean, and returns a string\n *\n * @param {string} path - The path to the current key.\n * @param {string} key - The key of the current object being iterated over.\n * @param {string} dots - If true, the key will be rendered with dots instead of brackets.\n *\n * @returns {string} The path to the current key.\n */\nfunction renderKey(path, key, dots) {\n if (!path) return key;\n return path.concat(key).map(function each(token, i) {\n // eslint-disable-next-line no-param-reassign\n token = removeBrackets(token);\n return !dots && i ? '[' + token + ']' : token;\n }).join(dots ? '.' : '');\n}\n\n/**\n * If the array is an array and none of its elements are visitable, then it's a flat array.\n *\n * @param {Array} arr - The array to check\n *\n * @returns {boolean}\n */\nfunction isFlatArray(arr) {\n return utils.isArray(arr) && !arr.some(isVisitable);\n}\n\nconst predicates = utils.toFlatObject(utils, {}, null, function filter(prop) {\n return /^is[A-Z]/.test(prop);\n});\n\n/**\n * If the thing is a FormData object, return true, otherwise return false.\n *\n * @param {unknown} thing - The thing to check.\n *\n * @returns {boolean}\n */\nfunction isSpecCompliant(thing) {\n return thing && utils.isFunction(thing.append) && thing[Symbol.toStringTag] === 'FormData' && thing[Symbol.iterator];\n}\n\n/**\n * Convert a data object to FormData\n *\n * @param {Object} obj\n * @param {?Object} [formData]\n * @param {?Object} [options]\n * @param {Function} [options.visitor]\n * @param {Boolean} [options.metaTokens = true]\n * @param {Boolean} [options.dots = false]\n * @param {?Boolean} [options.indexes = false]\n *\n * @returns {Object}\n **/\n\n/**\n * It converts an object into a FormData object\n *\n * @param {Object} obj - The object to convert to form data.\n * @param {string} formData - The FormData object to append to.\n * @param {Object} options\n *\n * @returns\n */\nfunction toFormData(obj, formData, options) {\n if (!utils.isObject(obj)) {\n throw new TypeError('target must be an object');\n }\n\n // eslint-disable-next-line no-param-reassign\n formData = formData || new (envFormData || FormData)();\n\n // eslint-disable-next-line no-param-reassign\n options = utils.toFlatObject(options, {\n metaTokens: true,\n dots: false,\n indexes: false\n }, false, function defined(option, source) {\n // eslint-disable-next-line no-eq-null,eqeqeq\n return !utils.isUndefined(source[option]);\n });\n\n const metaTokens = options.metaTokens;\n // eslint-disable-next-line no-use-before-define\n const visitor = options.visitor || defaultVisitor;\n const dots = options.dots;\n const indexes = options.indexes;\n const _Blob = options.Blob || typeof Blob !== 'undefined' && Blob;\n const useBlob = _Blob && isSpecCompliant(formData);\n\n if (!utils.isFunction(visitor)) {\n throw new TypeError('visitor must be a function');\n }\n\n function convertValue(value) {\n if (value === null) return '';\n\n if (utils.isDate(value)) {\n return value.toISOString();\n }\n\n if (!useBlob && utils.isBlob(value)) {\n throw new AxiosError('Blob is not supported. Use a Buffer instead.');\n }\n\n if (utils.isArrayBuffer(value) || utils.isTypedArray(value)) {\n return useBlob && typeof Blob === 'function' ? new Blob([value]) : Buffer.from(value);\n }\n\n return value;\n }\n\n /**\n * Default visitor.\n *\n * @param {*} value\n * @param {String|Number} key\n * @param {Array} path\n * @this {FormData}\n *\n * @returns {boolean} return true to visit the each prop of the value recursively\n */\n function defaultVisitor(value, key, path) {\n let arr = value;\n\n if (value && !path && typeof value === 'object') {\n if (utils.endsWith(key, '{}')) {\n // eslint-disable-next-line no-param-reassign\n key = metaTokens ? key : key.slice(0, -2);\n // eslint-disable-next-line no-param-reassign\n value = JSON.stringify(value);\n } else if (\n (utils.isArray(value) && isFlatArray(value)) ||\n (utils.isFileList(value) || utils.endsWith(key, '[]') && (arr = utils.toArray(value))\n )) {\n // eslint-disable-next-line no-param-reassign\n key = removeBrackets(key);\n\n arr.forEach(function each(el, index) {\n !utils.isUndefined(el) && formData.append(\n // eslint-disable-next-line no-nested-ternary\n indexes === true ? renderKey([key], index, dots) : (indexes === null ? key : key + '[]'),\n convertValue(el)\n );\n });\n return false;\n }\n }\n\n if (isVisitable(value)) {\n return true;\n }\n\n formData.append(renderKey(path, key, dots), convertValue(value));\n\n return false;\n }\n\n const stack = [];\n\n const exposedHelpers = Object.assign(predicates, {\n defaultVisitor,\n convertValue,\n isVisitable\n });\n\n function build(value, path) {\n if (utils.isUndefined(value)) return;\n\n if (stack.indexOf(value) !== -1) {\n throw Error('Circular reference detected in ' + path.join('.'));\n }\n\n stack.push(value);\n\n utils.forEach(value, function each(el, key) {\n const result = !utils.isUndefined(el) && visitor.call(\n formData, el, utils.isString(key) ? key.trim() : key, path, exposedHelpers\n );\n\n if (result === true) {\n build(el, path ? path.concat(key) : [key]);\n }\n });\n\n stack.pop();\n }\n\n if (!utils.isObject(obj)) {\n throw new TypeError('data must be an object');\n }\n\n build(obj);\n\n return formData;\n}\n\nexport default toFormData;\n","'use strict';\n\nimport toFormData from './toFormData.js';\n\n/**\n * It encodes a string by replacing all characters that are not in the unreserved set with\n * their percent-encoded equivalents\n *\n * @param {string} str - The string to encode.\n *\n * @returns {string} The encoded string.\n */\nfunction encode(str) {\n const charMap = {\n '!': '%21',\n \"'\": '%27',\n '(': '%28',\n ')': '%29',\n '~': '%7E',\n '%20': '+',\n '%00': '\\x00'\n };\n return encodeURIComponent(str).replace(/[!'()~]|%20|%00/g, function replacer(match) {\n return charMap[match];\n });\n}\n\n/**\n * It takes a params object and converts it to a FormData object\n *\n * @param {Object} params - The parameters to be converted to a FormData object.\n * @param {Object} options - The options object passed to the Axios constructor.\n *\n * @returns {void}\n */\nfunction AxiosURLSearchParams(params, options) {\n this._pairs = [];\n\n params && toFormData(params, this, options);\n}\n\nconst prototype = AxiosURLSearchParams.prototype;\n\nprototype.append = function append(name, value) {\n this._pairs.push([name, value]);\n};\n\nprototype.toString = function toString(encoder) {\n const _encode = encoder ? function(value) {\n return encoder.call(this, value, encode);\n } : encode;\n\n return this._pairs.map(function each(pair) {\n return _encode(pair[0]) + '=' + _encode(pair[1]);\n }, '').join('&');\n};\n\nexport default AxiosURLSearchParams;\n","'use strict';\n\nimport utils from '../utils.js';\nimport AxiosURLSearchParams from '../helpers/AxiosURLSearchParams.js';\n\n/**\n * It replaces all instances of the characters `:`, `$`, `,`, `+`, `[`, and `]` with their\n * URI encoded counterparts\n *\n * @param {string} val The value to be encoded.\n *\n * @returns {string} The encoded value.\n */\nfunction encode(val) {\n return encodeURIComponent(val).\n replace(/%3A/gi, ':').\n replace(/%24/g, '$').\n replace(/%2C/gi, ',').\n replace(/%20/g, '+').\n replace(/%5B/gi, '[').\n replace(/%5D/gi, ']');\n}\n\n/**\n * Build a URL by appending params to the end\n *\n * @param {string} url The base of the url (e.g., http://www.google.com)\n * @param {object} [params] The params to be appended\n * @param {?object} options\n *\n * @returns {string} The formatted url\n */\nexport default function buildURL(url, params, options) {\n /*eslint no-param-reassign:0*/\n if (!params) {\n return url;\n }\n\n const hashmarkIndex = url.indexOf('#');\n\n if (hashmarkIndex !== -1) {\n url = url.slice(0, hashmarkIndex);\n }\n\n const _encode = options && options.encode || encode;\n\n const serializerParams = utils.isURLSearchParams(params) ?\n params.toString() :\n new AxiosURLSearchParams(params, options).toString(_encode);\n\n if (serializerParams) {\n url += (url.indexOf('?') === -1 ? '?' : '&') + serializerParams;\n }\n\n return url;\n}\n","'use strict';\n\nimport utils from './../utils.js';\n\nclass InterceptorManager {\n constructor() {\n this.handlers = [];\n }\n\n /**\n * Add a new interceptor to the stack\n *\n * @param {Function} fulfilled The function to handle `then` for a `Promise`\n * @param {Function} rejected The function to handle `reject` for a `Promise`\n *\n * @return {Number} An ID used to remove interceptor later\n */\n use(fulfilled, rejected, options) {\n this.handlers.push({\n fulfilled,\n rejected,\n synchronous: options ? options.synchronous : false,\n runWhen: options ? options.runWhen : null\n });\n return this.handlers.length - 1;\n }\n\n /**\n * Remove an interceptor from the stack\n *\n * @param {Number} id The ID that was returned by `use`\n *\n * @returns {Boolean} `true` if the interceptor was removed, `false` otherwise\n */\n eject(id) {\n if (this.handlers[id]) {\n this.handlers[id] = null;\n }\n }\n\n /**\n * Clear all interceptors from the stack\n *\n * @returns {void}\n */\n clear() {\n if (this.handlers) {\n this.handlers = [];\n }\n }\n\n /**\n * Iterate over all the registered interceptors\n *\n * This method is particularly useful for skipping over any\n * interceptors that may have become `null` calling `eject`.\n *\n * @param {Function} fn The function to call for each interceptor\n *\n * @returns {void}\n */\n forEach(fn) {\n utils.forEach(this.handlers, function forEachHandler(h) {\n if (h !== null) {\n fn(h);\n }\n });\n }\n}\n\nexport default InterceptorManager;\n","'use strict';\n\nexport default {\n silentJSONParsing: true,\n forcedJSONParsing: true,\n clarifyTimeoutError: false\n};\n","'use strict';\n\nimport AxiosURLSearchParams from '../../../helpers/AxiosURLSearchParams.js';\nexport default typeof URLSearchParams !== 'undefined' ? URLSearchParams : AxiosURLSearchParams;\n","'use strict';\n\nexport default FormData;\n","import URLSearchParams from './classes/URLSearchParams.js'\nimport FormData from './classes/FormData.js'\n\n/**\n * Determine if we're running in a standard browser environment\n *\n * This allows axios to run in a web worker, and react-native.\n * Both environments support XMLHttpRequest, but not fully standard globals.\n *\n * web workers:\n * typeof window -> undefined\n * typeof document -> undefined\n *\n * react-native:\n * navigator.product -> 'ReactNative'\n * nativescript\n * navigator.product -> 'NativeScript' or 'NS'\n *\n * @returns {boolean}\n */\nconst isStandardBrowserEnv = (() => {\n let product;\n if (typeof navigator !== 'undefined' && (\n (product = navigator.product) === 'ReactNative' ||\n product === 'NativeScript' ||\n product === 'NS')\n ) {\n return false;\n }\n\n return typeof window !== 'undefined' && typeof document !== 'undefined';\n})();\n\nexport default {\n isBrowser: true,\n classes: {\n URLSearchParams,\n FormData,\n Blob\n },\n isStandardBrowserEnv,\n protocols: ['http', 'https', 'file', 'blob', 'url', 'data']\n};\n","'use strict';\n\nimport utils from '../utils.js';\nimport toFormData from './toFormData.js';\nimport platform from '../platform/index.js';\n\nexport default function toURLEncodedForm(data, options) {\n return toFormData(data, new platform.classes.URLSearchParams(), Object.assign({\n visitor: function(value, key, path, helpers) {\n if (platform.isNode && utils.isBuffer(value)) {\n this.append(key, value.toString('base64'));\n return false;\n }\n\n return helpers.defaultVisitor.apply(this, arguments);\n }\n }, options));\n}\n","'use strict';\n\nimport utils from '../utils.js';\n\n/**\n * It takes a string like `foo[x][y][z]` and returns an array like `['foo', 'x', 'y', 'z']\n *\n * @param {string} name - The name of the property to get.\n *\n * @returns An array of strings.\n */\nfunction parsePropPath(name) {\n // foo[x][y][z]\n // foo.x.y.z\n // foo-x-y-z\n // foo x y z\n return utils.matchAll(/\\w+|\\[(\\w*)]/g, name).map(match => {\n return match[0] === '[]' ? '' : match[1] || match[0];\n });\n}\n\n/**\n * Convert an array to an object.\n *\n * @param {Array} arr - The array to convert to an object.\n *\n * @returns An object with the same keys and values as the array.\n */\nfunction arrayToObject(arr) {\n const obj = {};\n const keys = Object.keys(arr);\n let i;\n const len = keys.length;\n let key;\n for (i = 0; i < len; i++) {\n key = keys[i];\n obj[key] = arr[key];\n }\n return obj;\n}\n\n/**\n * It takes a FormData object and returns a JavaScript object\n *\n * @param {string} formData The FormData object to convert to JSON.\n *\n * @returns {Object | null} The converted object.\n */\nfunction formDataToJSON(formData) {\n function buildPath(path, value, target, index) {\n let name = path[index++];\n const isNumericKey = Number.isFinite(+name);\n const isLast = index >= path.length;\n name = !name && utils.isArray(target) ? target.length : name;\n\n if (isLast) {\n if (utils.hasOwnProp(target, name)) {\n target[name] = [target[name], value];\n } else {\n target[name] = value;\n }\n\n return !isNumericKey;\n }\n\n if (!target[name] || !utils.isObject(target[name])) {\n target[name] = [];\n }\n\n const result = buildPath(path, value, target[name], index);\n\n if (result && utils.isArray(target[name])) {\n target[name] = arrayToObject(target[name]);\n }\n\n return !isNumericKey;\n }\n\n if (utils.isFormData(formData) && utils.isFunction(formData.entries)) {\n const obj = {};\n\n utils.forEachEntry(formData, (name, value) => {\n buildPath(parsePropPath(name), value, obj, 0);\n });\n\n return obj;\n }\n\n return null;\n}\n\nexport default formDataToJSON;\n","'use strict';\n\nimport AxiosError from './AxiosError.js';\n\n/**\n * Resolve or reject a Promise based on response status.\n *\n * @param {Function} resolve A function that resolves the promise.\n * @param {Function} reject A function that rejects the promise.\n * @param {object} response The response.\n *\n * @returns {object} The response.\n */\nexport default function settle(resolve, reject, response) {\n const validateStatus = response.config.validateStatus;\n if (!response.status || !validateStatus || validateStatus(response.status)) {\n resolve(response);\n } else {\n reject(new AxiosError(\n 'Request failed with status code ' + response.status,\n [AxiosError.ERR_BAD_REQUEST, AxiosError.ERR_BAD_RESPONSE][Math.floor(response.status / 100) - 4],\n response.config,\n response.request,\n response\n ));\n }\n}\n","'use strict';\n\nimport utils from './../utils.js';\nimport platform from '../platform/index.js';\n\nexport default platform.isStandardBrowserEnv ?\n\n// Standard browser envs support document.cookie\n (function standardBrowserEnv() {\n return {\n write: function write(name, value, expires, path, domain, secure) {\n const cookie = [];\n cookie.push(name + '=' + encodeURIComponent(value));\n\n if (utils.isNumber(expires)) {\n cookie.push('expires=' + new Date(expires).toGMTString());\n }\n\n if (utils.isString(path)) {\n cookie.push('path=' + path);\n }\n\n if (utils.isString(domain)) {\n cookie.push('domain=' + domain);\n }\n\n if (secure === true) {\n cookie.push('secure');\n }\n\n document.cookie = cookie.join('; ');\n },\n\n read: function read(name) {\n const match = document.cookie.match(new RegExp('(^|;\\\\s*)(' + name + ')=([^;]*)'));\n return (match ? decodeURIComponent(match[3]) : null);\n },\n\n remove: function remove(name) {\n this.write(name, '', Date.now() - 86400000);\n }\n };\n })() :\n\n// Non standard browser env (web workers, react-native) lack needed support.\n (function nonStandardBrowserEnv() {\n return {\n write: function write() {},\n read: function read() { return null; },\n remove: function remove() {}\n };\n })();\n","'use strict';\n\n/**\n * Determines whether the specified URL is absolute\n *\n * @param {string} url The URL to test\n *\n * @returns {boolean} True if the specified URL is absolute, otherwise false\n */\nexport default function isAbsoluteURL(url) {\n // A URL is considered absolute if it begins with \"://\" or \"//\" (protocol-relative URL).\n // RFC 3986 defines scheme name as a sequence of characters beginning with a letter and followed\n // by any combination of letters, digits, plus, period, or hyphen.\n return /^([a-z][a-z\\d+\\-.]*:)?\\/\\//i.test(url);\n}\n","'use strict';\n\n/**\n * Creates a new URL by combining the specified URLs\n *\n * @param {string} baseURL The base URL\n * @param {string} relativeURL The relative URL\n *\n * @returns {string} The combined URL\n */\nexport default function combineURLs(baseURL, relativeURL) {\n return relativeURL\n ? baseURL.replace(/\\/+$/, '') + '/' + relativeURL.replace(/^\\/+/, '')\n : baseURL;\n}\n","'use strict';\n\nimport isAbsoluteURL from '../helpers/isAbsoluteURL.js';\nimport combineURLs from '../helpers/combineURLs.js';\n\n/**\n * Creates a new URL by combining the baseURL with the requestedURL,\n * only when the requestedURL is not already an absolute URL.\n * If the requestURL is absolute, this function returns the requestedURL untouched.\n *\n * @param {string} baseURL The base URL\n * @param {string} requestedURL Absolute or relative URL to combine\n *\n * @returns {string} The combined full path\n */\nexport default function buildFullPath(baseURL, requestedURL) {\n if (baseURL && !isAbsoluteURL(requestedURL)) {\n return combineURLs(baseURL, requestedURL);\n }\n return requestedURL;\n}\n","'use strict';\n\nimport utils from './../utils.js';\nimport platform from '../platform/index.js';\n\nexport default platform.isStandardBrowserEnv ?\n\n// Standard browser envs have full support of the APIs needed to test\n// whether the request URL is of the same origin as current location.\n (function standardBrowserEnv() {\n const msie = /(msie|trident)/i.test(navigator.userAgent);\n const urlParsingNode = document.createElement('a');\n let originURL;\n\n /**\n * Parse a URL to discover it's components\n *\n * @param {String} url The URL to be parsed\n * @returns {Object}\n */\n function resolveURL(url) {\n let href = url;\n\n if (msie) {\n // IE needs attribute set twice to normalize properties\n urlParsingNode.setAttribute('href', href);\n href = urlParsingNode.href;\n }\n\n urlParsingNode.setAttribute('href', href);\n\n // urlParsingNode provides the UrlUtils interface - http://url.spec.whatwg.org/#urlutils\n return {\n href: urlParsingNode.href,\n protocol: urlParsingNode.protocol ? urlParsingNode.protocol.replace(/:$/, '') : '',\n host: urlParsingNode.host,\n search: urlParsingNode.search ? urlParsingNode.search.replace(/^\\?/, '') : '',\n hash: urlParsingNode.hash ? urlParsingNode.hash.replace(/^#/, '') : '',\n hostname: urlParsingNode.hostname,\n port: urlParsingNode.port,\n pathname: (urlParsingNode.pathname.charAt(0) === '/') ?\n urlParsingNode.pathname :\n '/' + urlParsingNode.pathname\n };\n }\n\n originURL = resolveURL(window.location.href);\n\n /**\n * Determine if a URL shares the same origin as the current location\n *\n * @param {String} requestURL The URL to test\n * @returns {boolean} True if URL shares the same origin, otherwise false\n */\n return function isURLSameOrigin(requestURL) {\n const parsed = (utils.isString(requestURL)) ? resolveURL(requestURL) : requestURL;\n return (parsed.protocol === originURL.protocol &&\n parsed.host === originURL.host);\n };\n })() :\n\n // Non standard browser envs (web workers, react-native) lack needed support.\n (function nonStandardBrowserEnv() {\n return function isURLSameOrigin() {\n return true;\n };\n })();\n","'use strict';\n\nimport AxiosError from '../core/AxiosError.js';\nimport utils from '../utils.js';\n\n/**\n * A `CanceledError` is an object that is thrown when an operation is canceled.\n *\n * @param {string=} message The message.\n * @param {Object=} config The config.\n * @param {Object=} request The request.\n *\n * @returns {CanceledError} The created error.\n */\nfunction CanceledError(message, config, request) {\n // eslint-disable-next-line no-eq-null,eqeqeq\n AxiosError.call(this, message == null ? 'canceled' : message, AxiosError.ERR_CANCELED, config, request);\n this.name = 'CanceledError';\n}\n\nutils.inherits(CanceledError, AxiosError, {\n __CANCEL__: true\n});\n\nexport default CanceledError;\n","'use strict';\n\nexport default function parseProtocol(url) {\n const match = /^([-+\\w]{1,25})(:?\\/\\/|:)/.exec(url);\n return match && match[1] || '';\n}\n","'use strict';\n\nimport utils from './../utils.js';\n\n// RawAxiosHeaders whose duplicates are ignored by node\n// c.f. https://nodejs.org/api/http.html#http_message_headers\nconst ignoreDuplicateOf = utils.toObjectSet([\n 'age', 'authorization', 'content-length', 'content-type', 'etag',\n 'expires', 'from', 'host', 'if-modified-since', 'if-unmodified-since',\n 'last-modified', 'location', 'max-forwards', 'proxy-authorization',\n 'referer', 'retry-after', 'user-agent'\n]);\n\n/**\n * Parse headers into an object\n *\n * ```\n * Date: Wed, 27 Aug 2014 08:58:49 GMT\n * Content-Type: application/json\n * Connection: keep-alive\n * Transfer-Encoding: chunked\n * ```\n *\n * @param {String} rawHeaders Headers needing to be parsed\n *\n * @returns {Object} Headers parsed into an object\n */\nexport default rawHeaders => {\n const parsed = {};\n let key;\n let val;\n let i;\n\n rawHeaders && rawHeaders.split('\\n').forEach(function parser(line) {\n i = line.indexOf(':');\n key = line.substring(0, i).trim().toLowerCase();\n val = line.substring(i + 1).trim();\n\n if (!key || (parsed[key] && ignoreDuplicateOf[key])) {\n return;\n }\n\n if (key === 'set-cookie') {\n if (parsed[key]) {\n parsed[key].push(val);\n } else {\n parsed[key] = [val];\n }\n } else {\n parsed[key] = parsed[key] ? parsed[key] + ', ' + val : val;\n }\n });\n\n return parsed;\n};\n","'use strict';\n\nimport utils from '../utils.js';\nimport parseHeaders from '../helpers/parseHeaders.js';\n\nconst $internals = Symbol('internals');\nconst $defaults = Symbol('defaults');\n\nfunction normalizeHeader(header) {\n return header && String(header).trim().toLowerCase();\n}\n\nfunction normalizeValue(value) {\n if (value === false || value == null) {\n return value;\n }\n\n return String(value);\n}\n\nfunction parseTokens(str) {\n const tokens = Object.create(null);\n const tokensRE = /([^\\s,;=]+)\\s*(?:=\\s*([^,;]+))?/g;\n let match;\n\n while ((match = tokensRE.exec(str))) {\n tokens[match[1]] = match[2];\n }\n\n return tokens;\n}\n\nfunction matchHeaderValue(context, value, header, filter) {\n if (utils.isFunction(filter)) {\n return filter.call(this, value, header);\n }\n\n if (!utils.isString(value)) return;\n\n if (utils.isString(filter)) {\n return value.indexOf(filter) !== -1;\n }\n\n if (utils.isRegExp(filter)) {\n return filter.test(value);\n }\n}\n\nfunction formatHeader(header) {\n return header.trim()\n .toLowerCase().replace(/([a-z\\d])(\\w*)/g, (w, char, str) => {\n return char.toUpperCase() + str;\n });\n}\n\nfunction buildAccessors(obj, header) {\n const accessorName = utils.toCamelCase(' ' + header);\n\n ['get', 'set', 'has'].forEach(methodName => {\n Object.defineProperty(obj, methodName + accessorName, {\n value: function(arg1, arg2, arg3) {\n return this[methodName].call(this, header, arg1, arg2, arg3);\n },\n configurable: true\n });\n });\n}\n\nfunction findKey(obj, key) {\n key = key.toLowerCase();\n const keys = Object.keys(obj);\n let i = keys.length;\n let _key;\n while (i-- > 0) {\n _key = keys[i];\n if (key === _key.toLowerCase()) {\n return _key;\n }\n }\n return null;\n}\n\nfunction AxiosHeaders(headers, defaults) {\n headers && this.set(headers);\n this[$defaults] = defaults || null;\n}\n\nObject.assign(AxiosHeaders.prototype, {\n set: function(header, valueOrRewrite, rewrite) {\n const self = this;\n\n function setHeader(_value, _header, _rewrite) {\n const lHeader = normalizeHeader(_header);\n\n if (!lHeader) {\n throw new Error('header name must be a non-empty string');\n }\n\n const key = findKey(self, lHeader);\n\n if (key && _rewrite !== true && (self[key] === false || _rewrite === false)) {\n return;\n }\n\n if (utils.isArray(_value)) {\n _value = _value.map(normalizeValue);\n } else {\n _value = normalizeValue(_value);\n }\n\n self[key || _header] = _value;\n }\n\n if (utils.isPlainObject(header)) {\n utils.forEach(header, (_value, _header) => {\n setHeader(_value, _header, valueOrRewrite);\n });\n } else {\n setHeader(valueOrRewrite, header, rewrite);\n }\n\n return this;\n },\n\n get: function(header, parser) {\n header = normalizeHeader(header);\n\n if (!header) return undefined;\n\n const key = findKey(this, header);\n\n if (key) {\n const value = this[key];\n\n if (!parser) {\n return value;\n }\n\n if (parser === true) {\n return parseTokens(value);\n }\n\n if (utils.isFunction(parser)) {\n return parser.call(this, value, key);\n }\n\n if (utils.isRegExp(parser)) {\n return parser.exec(value);\n }\n\n throw new TypeError('parser must be boolean|regexp|function');\n }\n },\n\n has: function(header, matcher) {\n header = normalizeHeader(header);\n\n if (header) {\n const key = findKey(this, header);\n\n return !!(key && (!matcher || matchHeaderValue(this, this[key], key, matcher)));\n }\n\n return false;\n },\n\n delete: function(header, matcher) {\n const self = this;\n let deleted = false;\n\n function deleteHeader(_header) {\n _header = normalizeHeader(_header);\n\n if (_header) {\n const key = findKey(self, _header);\n\n if (key && (!matcher || matchHeaderValue(self, self[key], key, matcher))) {\n delete self[key];\n\n deleted = true;\n }\n }\n }\n\n if (utils.isArray(header)) {\n header.forEach(deleteHeader);\n } else {\n deleteHeader(header);\n }\n\n return deleted;\n },\n\n clear: function() {\n return Object.keys(this).forEach(this.delete.bind(this));\n },\n\n normalize: function(format) {\n const self = this;\n const headers = {};\n\n utils.forEach(this, (value, header) => {\n const key = findKey(headers, header);\n\n if (key) {\n self[key] = normalizeValue(value);\n delete self[header];\n return;\n }\n\n const normalized = format ? formatHeader(header) : String(header).trim();\n\n if (normalized !== header) {\n delete self[header];\n }\n\n self[normalized] = normalizeValue(value);\n\n headers[normalized] = true;\n });\n\n return this;\n },\n\n toJSON: function() {\n const obj = Object.create(null);\n\n utils.forEach(Object.assign({}, this[$defaults] || null, this),\n (value, header) => {\n if (value == null || value === false) return;\n obj[header] = utils.isArray(value) ? value.join(', ') : value;\n });\n\n return obj;\n }\n});\n\nObject.assign(AxiosHeaders, {\n from: function(thing) {\n if (utils.isString(thing)) {\n return new this(parseHeaders(thing));\n }\n return thing instanceof this ? thing : new this(thing);\n },\n\n accessor: function(header) {\n const internals = this[$internals] = (this[$internals] = {\n accessors: {}\n });\n\n const accessors = internals.accessors;\n const prototype = this.prototype;\n\n function defineAccessor(_header) {\n const lHeader = normalizeHeader(_header);\n\n if (!accessors[lHeader]) {\n buildAccessors(prototype, _header);\n accessors[lHeader] = true;\n }\n }\n\n utils.isArray(header) ? header.forEach(defineAccessor) : defineAccessor(header);\n\n return this;\n }\n});\n\nAxiosHeaders.accessor(['Content-Type', 'Content-Length', 'Accept', 'Accept-Encoding', 'User-Agent']);\n\nutils.freezeMethods(AxiosHeaders.prototype);\nutils.freezeMethods(AxiosHeaders);\n\nexport default AxiosHeaders;\n","'use strict';\n\n/**\n * Calculate data maxRate\n * @param {Number} [samplesCount= 10]\n * @param {Number} [min= 1000]\n * @returns {Function}\n */\nfunction speedometer(samplesCount, min) {\n samplesCount = samplesCount || 10;\n const bytes = new Array(samplesCount);\n const timestamps = new Array(samplesCount);\n let head = 0;\n let tail = 0;\n let firstSampleTS;\n\n min = min !== undefined ? min : 1000;\n\n return function push(chunkLength) {\n const now = Date.now();\n\n const startedAt = timestamps[tail];\n\n if (!firstSampleTS) {\n firstSampleTS = now;\n }\n\n bytes[head] = chunkLength;\n timestamps[head] = now;\n\n let i = tail;\n let bytesCount = 0;\n\n while (i !== head) {\n bytesCount += bytes[i++];\n i = i % samplesCount;\n }\n\n head = (head + 1) % samplesCount;\n\n if (head === tail) {\n tail = (tail + 1) % samplesCount;\n }\n\n if (now - firstSampleTS < min) {\n return;\n }\n\n const passed = startedAt && now - startedAt;\n\n return passed ? Math.round(bytesCount * 1000 / passed) : undefined;\n };\n}\n\nexport default speedometer;\n","'use strict';\n\nimport utils from './../utils.js';\nimport settle from './../core/settle.js';\nimport cookies from './../helpers/cookies.js';\nimport buildURL from './../helpers/buildURL.js';\nimport buildFullPath from '../core/buildFullPath.js';\nimport isURLSameOrigin from './../helpers/isURLSameOrigin.js';\nimport transitionalDefaults from '../defaults/transitional.js';\nimport AxiosError from '../core/AxiosError.js';\nimport CanceledError from '../cancel/CanceledError.js';\nimport parseProtocol from '../helpers/parseProtocol.js';\nimport platform from '../platform/index.js';\nimport AxiosHeaders from '../core/AxiosHeaders.js';\nimport speedometer from '../helpers/speedometer.js';\n\nfunction progressEventReducer(listener, isDownloadStream) {\n let bytesNotified = 0;\n const _speedometer = speedometer(50, 250);\n\n return e => {\n const loaded = e.loaded;\n const total = e.lengthComputable ? e.total : undefined;\n const progressBytes = loaded - bytesNotified;\n const rate = _speedometer(progressBytes);\n const inRange = loaded <= total;\n\n bytesNotified = loaded;\n\n const data = {\n loaded,\n total,\n progress: total ? (loaded / total) : undefined,\n bytes: progressBytes,\n rate: rate ? rate : undefined,\n estimated: rate && total && inRange ? (total - loaded) / rate : undefined\n };\n\n data[isDownloadStream ? 'download' : 'upload'] = true;\n\n listener(data);\n };\n}\n\nexport default function xhrAdapter(config) {\n return new Promise(function dispatchXhrRequest(resolve, reject) {\n let requestData = config.data;\n const requestHeaders = AxiosHeaders.from(config.headers).normalize();\n const responseType = config.responseType;\n let onCanceled;\n function done() {\n if (config.cancelToken) {\n config.cancelToken.unsubscribe(onCanceled);\n }\n\n if (config.signal) {\n config.signal.removeEventListener('abort', onCanceled);\n }\n }\n\n if (utils.isFormData(requestData) && platform.isStandardBrowserEnv) {\n requestHeaders.setContentType(false); // Let the browser set it\n }\n\n let request = new XMLHttpRequest();\n\n // HTTP basic authentication\n if (config.auth) {\n const username = config.auth.username || '';\n const password = config.auth.password ? unescape(encodeURIComponent(config.auth.password)) : '';\n requestHeaders.set('Authorization', 'Basic ' + btoa(username + ':' + password));\n }\n\n const fullPath = buildFullPath(config.baseURL, config.url);\n\n request.open(config.method.toUpperCase(), buildURL(fullPath, config.params, config.paramsSerializer), true);\n\n // Set the request timeout in MS\n request.timeout = config.timeout;\n\n function onloadend() {\n if (!request) {\n return;\n }\n // Prepare the response\n const responseHeaders = AxiosHeaders.from(\n 'getAllResponseHeaders' in request && request.getAllResponseHeaders()\n );\n const responseData = !responseType || responseType === 'text' || responseType === 'json' ?\n request.responseText : request.response;\n const response = {\n data: responseData,\n status: request.status,\n statusText: request.statusText,\n headers: responseHeaders,\n config,\n request\n };\n\n settle(function _resolve(value) {\n resolve(value);\n done();\n }, function _reject(err) {\n reject(err);\n done();\n }, response);\n\n // Clean up request\n request = null;\n }\n\n if ('onloadend' in request) {\n // Use onloadend if available\n request.onloadend = onloadend;\n } else {\n // Listen for ready state to emulate onloadend\n request.onreadystatechange = function handleLoad() {\n if (!request || request.readyState !== 4) {\n return;\n }\n\n // The request errored out and we didn't get a response, this will be\n // handled by onerror instead\n // With one exception: request that using file: protocol, most browsers\n // will return status as 0 even though it's a successful request\n if (request.status === 0 && !(request.responseURL && request.responseURL.indexOf('file:') === 0)) {\n return;\n }\n // readystate handler is calling before onerror or ontimeout handlers,\n // so we should call onloadend on the next 'tick'\n setTimeout(onloadend);\n };\n }\n\n // Handle browser request cancellation (as opposed to a manual cancellation)\n request.onabort = function handleAbort() {\n if (!request) {\n return;\n }\n\n reject(new AxiosError('Request aborted', AxiosError.ECONNABORTED, config, request));\n\n // Clean up request\n request = null;\n };\n\n // Handle low level network errors\n request.onerror = function handleError() {\n // Real errors are hidden from us by the browser\n // onerror should only fire if it's a network error\n reject(new AxiosError('Network Error', AxiosError.ERR_NETWORK, config, request));\n\n // Clean up request\n request = null;\n };\n\n // Handle timeout\n request.ontimeout = function handleTimeout() {\n let timeoutErrorMessage = config.timeout ? 'timeout of ' + config.timeout + 'ms exceeded' : 'timeout exceeded';\n const transitional = config.transitional || transitionalDefaults;\n if (config.timeoutErrorMessage) {\n timeoutErrorMessage = config.timeoutErrorMessage;\n }\n reject(new AxiosError(\n timeoutErrorMessage,\n transitional.clarifyTimeoutError ? AxiosError.ETIMEDOUT : AxiosError.ECONNABORTED,\n config,\n request));\n\n // Clean up request\n request = null;\n };\n\n // Add xsrf header\n // This is only done if running in a standard browser environment.\n // Specifically not if we're in a web worker, or react-native.\n if (platform.isStandardBrowserEnv) {\n // Add xsrf header\n const xsrfValue = (config.withCredentials || isURLSameOrigin(fullPath))\n && config.xsrfCookieName && cookies.read(config.xsrfCookieName);\n\n if (xsrfValue) {\n requestHeaders.set(config.xsrfHeaderName, xsrfValue);\n }\n }\n\n // Remove Content-Type if data is undefined\n requestData === undefined && requestHeaders.setContentType(null);\n\n // Add headers to the request\n if ('setRequestHeader' in request) {\n utils.forEach(requestHeaders.toJSON(), function setRequestHeader(val, key) {\n request.setRequestHeader(key, val);\n });\n }\n\n // Add withCredentials to request if needed\n if (!utils.isUndefined(config.withCredentials)) {\n request.withCredentials = !!config.withCredentials;\n }\n\n // Add responseType to request if needed\n if (responseType && responseType !== 'json') {\n request.responseType = config.responseType;\n }\n\n // Handle progress if needed\n if (typeof config.onDownloadProgress === 'function') {\n request.addEventListener('progress', progressEventReducer(config.onDownloadProgress, true));\n }\n\n // Not all browsers support upload events\n if (typeof config.onUploadProgress === 'function' && request.upload) {\n request.upload.addEventListener('progress', progressEventReducer(config.onUploadProgress));\n }\n\n if (config.cancelToken || config.signal) {\n // Handle cancellation\n // eslint-disable-next-line func-names\n onCanceled = cancel => {\n if (!request) {\n return;\n }\n reject(!cancel || cancel.type ? new CanceledError(null, config, request) : cancel);\n request.abort();\n request = null;\n };\n\n config.cancelToken && config.cancelToken.subscribe(onCanceled);\n if (config.signal) {\n config.signal.aborted ? onCanceled() : config.signal.addEventListener('abort', onCanceled);\n }\n }\n\n const protocol = parseProtocol(fullPath);\n\n if (protocol && platform.protocols.indexOf(protocol) === -1) {\n reject(new AxiosError('Unsupported protocol ' + protocol + ':', AxiosError.ERR_BAD_REQUEST, config));\n return;\n }\n\n\n // Send the request\n request.send(requestData || null);\n });\n}\n","import utils from '../utils.js';\nimport httpAdapter from './http.js';\nimport xhrAdapter from './xhr.js';\n\nconst adapters = {\n http: httpAdapter,\n xhr: xhrAdapter\n}\n\nexport default {\n getAdapter: (nameOrAdapter) => {\n if(utils.isString(nameOrAdapter)){\n const adapter = adapters[nameOrAdapter];\n\n if (!nameOrAdapter) {\n throw Error(\n utils.hasOwnProp(nameOrAdapter) ?\n `Adapter '${nameOrAdapter}' is not available in the build` :\n `Can not resolve adapter '${nameOrAdapter}'`\n );\n }\n\n return adapter\n }\n\n if (!utils.isFunction(nameOrAdapter)) {\n throw new TypeError('adapter is not a function');\n }\n\n return nameOrAdapter;\n },\n adapters\n}\n","'use strict';\n\nimport utils from '../utils.js';\nimport AxiosError from '../core/AxiosError.js';\nimport transitionalDefaults from './transitional.js';\nimport toFormData from '../helpers/toFormData.js';\nimport toURLEncodedForm from '../helpers/toURLEncodedForm.js';\nimport platform from '../platform/index.js';\nimport formDataToJSON from '../helpers/formDataToJSON.js';\nimport adapters from '../adapters/index.js';\n\nconst DEFAULT_CONTENT_TYPE = {\n 'Content-Type': 'application/x-www-form-urlencoded'\n};\n\n/**\n * If the browser has an XMLHttpRequest object, use the XHR adapter, otherwise use the HTTP\n * adapter\n *\n * @returns {Function}\n */\nfunction getDefaultAdapter() {\n let adapter;\n if (typeof XMLHttpRequest !== 'undefined') {\n // For browsers use XHR adapter\n adapter = adapters.getAdapter('xhr');\n } else if (typeof process !== 'undefined' && utils.kindOf(process) === 'process') {\n // For node use HTTP adapter\n adapter = adapters.getAdapter('http');\n }\n return adapter;\n}\n\n/**\n * It takes a string, tries to parse it, and if it fails, it returns the stringified version\n * of the input\n *\n * @param {any} rawValue - The value to be stringified.\n * @param {Function} parser - A function that parses a string into a JavaScript object.\n * @param {Function} encoder - A function that takes a value and returns a string.\n *\n * @returns {string} A stringified version of the rawValue.\n */\nfunction stringifySafely(rawValue, parser, encoder) {\n if (utils.isString(rawValue)) {\n try {\n (parser || JSON.parse)(rawValue);\n return utils.trim(rawValue);\n } catch (e) {\n if (e.name !== 'SyntaxError') {\n throw e;\n }\n }\n }\n\n return (encoder || JSON.stringify)(rawValue);\n}\n\nconst defaults = {\n\n transitional: transitionalDefaults,\n\n adapter: getDefaultAdapter(),\n\n transformRequest: [function transformRequest(data, headers) {\n const contentType = headers.getContentType() || '';\n const hasJSONContentType = contentType.indexOf('application/json') > -1;\n const isObjectPayload = utils.isObject(data);\n\n if (isObjectPayload && utils.isHTMLForm(data)) {\n data = new FormData(data);\n }\n\n const isFormData = utils.isFormData(data);\n\n if (isFormData) {\n if (!hasJSONContentType) {\n return data;\n }\n return hasJSONContentType ? JSON.stringify(formDataToJSON(data)) : data;\n }\n\n if (utils.isArrayBuffer(data) ||\n utils.isBuffer(data) ||\n utils.isStream(data) ||\n utils.isFile(data) ||\n utils.isBlob(data)\n ) {\n return data;\n }\n if (utils.isArrayBufferView(data)) {\n return data.buffer;\n }\n if (utils.isURLSearchParams(data)) {\n headers.setContentType('application/x-www-form-urlencoded;charset=utf-8', false);\n return data.toString();\n }\n\n let isFileList;\n\n if (isObjectPayload) {\n if (contentType.indexOf('application/x-www-form-urlencoded') > -1) {\n return toURLEncodedForm(data, this.formSerializer).toString();\n }\n\n if ((isFileList = utils.isFileList(data)) || contentType.indexOf('multipart/form-data') > -1) {\n const _FormData = this.env && this.env.FormData;\n\n return toFormData(\n isFileList ? {'files[]': data} : data,\n _FormData && new _FormData(),\n this.formSerializer\n );\n }\n }\n\n if (isObjectPayload || hasJSONContentType ) {\n headers.setContentType('application/json', false);\n return stringifySafely(data);\n }\n\n return data;\n }],\n\n transformResponse: [function transformResponse(data) {\n const transitional = this.transitional || defaults.transitional;\n const forcedJSONParsing = transitional && transitional.forcedJSONParsing;\n const JSONRequested = this.responseType === 'json';\n\n if (data && utils.isString(data) && ((forcedJSONParsing && !this.responseType) || JSONRequested)) {\n const silentJSONParsing = transitional && transitional.silentJSONParsing;\n const strictJSONParsing = !silentJSONParsing && JSONRequested;\n\n try {\n return JSON.parse(data);\n } catch (e) {\n if (strictJSONParsing) {\n if (e.name === 'SyntaxError') {\n throw AxiosError.from(e, AxiosError.ERR_BAD_RESPONSE, this, null, this.response);\n }\n throw e;\n }\n }\n }\n\n return data;\n }],\n\n /**\n * A timeout in milliseconds to abort a request. If set to 0 (default) a\n * timeout is not created.\n */\n timeout: 0,\n\n xsrfCookieName: 'XSRF-TOKEN',\n xsrfHeaderName: 'X-XSRF-TOKEN',\n\n maxContentLength: -1,\n maxBodyLength: -1,\n\n env: {\n FormData: platform.classes.FormData,\n Blob: platform.classes.Blob\n },\n\n validateStatus: function validateStatus(status) {\n return status >= 200 && status < 300;\n },\n\n headers: {\n common: {\n 'Accept': 'application/json, text/plain, */*'\n }\n }\n};\n\nutils.forEach(['delete', 'get', 'head'], function forEachMethodNoData(method) {\n defaults.headers[method] = {};\n});\n\nutils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) {\n defaults.headers[method] = utils.merge(DEFAULT_CONTENT_TYPE);\n});\n\nexport default defaults;\n","'use strict';\n\nimport utils from './../utils.js';\nimport defaults from '../defaults/index.js';\nimport AxiosHeaders from '../core/AxiosHeaders.js';\n\n/**\n * Transform the data for a request or a response\n *\n * @param {Array|Function} fns A single function or Array of functions\n * @param {?Object} response The response object\n *\n * @returns {*} The resulting transformed data\n */\nexport default function transformData(fns, response) {\n const config = this || defaults;\n const context = response || config;\n const headers = AxiosHeaders.from(context.headers);\n let data = context.data;\n\n utils.forEach(fns, function transform(fn) {\n data = fn.call(config, data, headers.normalize(), response ? response.status : undefined);\n });\n\n headers.normalize();\n\n return data;\n}\n","'use strict';\n\nexport default function isCancel(value) {\n return !!(value && value.__CANCEL__);\n}\n","'use strict';\n\nimport transformData from './transformData.js';\nimport isCancel from '../cancel/isCancel.js';\nimport defaults from '../defaults/index.js';\nimport CanceledError from '../cancel/CanceledError.js';\nimport AxiosHeaders from '../core/AxiosHeaders.js';\n\n/**\n * Throws a `CanceledError` if cancellation has been requested.\n *\n * @param {Object} config The config that is to be used for the request\n *\n * @returns {void}\n */\nfunction throwIfCancellationRequested(config) {\n if (config.cancelToken) {\n config.cancelToken.throwIfRequested();\n }\n\n if (config.signal && config.signal.aborted) {\n throw new CanceledError();\n }\n}\n\n/**\n * Dispatch a request to the server using the configured adapter.\n *\n * @param {object} config The config that is to be used for the request\n *\n * @returns {Promise} The Promise to be fulfilled\n */\nexport default function dispatchRequest(config) {\n throwIfCancellationRequested(config);\n\n config.headers = AxiosHeaders.from(config.headers);\n\n // Transform request data\n config.data = transformData.call(\n config,\n config.transformRequest\n );\n\n const adapter = config.adapter || defaults.adapter;\n\n return adapter(config).then(function onAdapterResolution(response) {\n throwIfCancellationRequested(config);\n\n // Transform response data\n response.data = transformData.call(\n config,\n config.transformResponse,\n response\n );\n\n response.headers = AxiosHeaders.from(response.headers);\n\n return response;\n }, function onAdapterRejection(reason) {\n if (!isCancel(reason)) {\n throwIfCancellationRequested(config);\n\n // Transform response data\n if (reason && reason.response) {\n reason.response.data = transformData.call(\n config,\n config.transformResponse,\n reason.response\n );\n reason.response.headers = AxiosHeaders.from(reason.response.headers);\n }\n }\n\n return Promise.reject(reason);\n });\n}\n","'use strict';\n\nimport utils from '../utils.js';\n\n/**\n * Config-specific merge-function which creates a new config-object\n * by merging two configuration objects together.\n *\n * @param {Object} config1\n * @param {Object} config2\n *\n * @returns {Object} New object resulting from merging config2 to config1\n */\nexport default function mergeConfig(config1, config2) {\n // eslint-disable-next-line no-param-reassign\n config2 = config2 || {};\n const config = {};\n\n function getMergedValue(target, source) {\n if (utils.isPlainObject(target) && utils.isPlainObject(source)) {\n return utils.merge(target, source);\n } else if (utils.isPlainObject(source)) {\n return utils.merge({}, source);\n } else if (utils.isArray(source)) {\n return source.slice();\n }\n return source;\n }\n\n // eslint-disable-next-line consistent-return\n function mergeDeepProperties(prop) {\n if (!utils.isUndefined(config2[prop])) {\n return getMergedValue(config1[prop], config2[prop]);\n } else if (!utils.isUndefined(config1[prop])) {\n return getMergedValue(undefined, config1[prop]);\n }\n }\n\n // eslint-disable-next-line consistent-return\n function valueFromConfig2(prop) {\n if (!utils.isUndefined(config2[prop])) {\n return getMergedValue(undefined, config2[prop]);\n }\n }\n\n // eslint-disable-next-line consistent-return\n function defaultToConfig2(prop) {\n if (!utils.isUndefined(config2[prop])) {\n return getMergedValue(undefined, config2[prop]);\n } else if (!utils.isUndefined(config1[prop])) {\n return getMergedValue(undefined, config1[prop]);\n }\n }\n\n // eslint-disable-next-line consistent-return\n function mergeDirectKeys(prop) {\n if (prop in config2) {\n return getMergedValue(config1[prop], config2[prop]);\n } else if (prop in config1) {\n return getMergedValue(undefined, config1[prop]);\n }\n }\n\n const mergeMap = {\n 'url': valueFromConfig2,\n 'method': valueFromConfig2,\n 'data': valueFromConfig2,\n 'baseURL': defaultToConfig2,\n 'transformRequest': defaultToConfig2,\n 'transformResponse': defaultToConfig2,\n 'paramsSerializer': defaultToConfig2,\n 'timeout': defaultToConfig2,\n 'timeoutMessage': defaultToConfig2,\n 'withCredentials': defaultToConfig2,\n 'adapter': defaultToConfig2,\n 'responseType': defaultToConfig2,\n 'xsrfCookieName': defaultToConfig2,\n 'xsrfHeaderName': defaultToConfig2,\n 'onUploadProgress': defaultToConfig2,\n 'onDownloadProgress': defaultToConfig2,\n 'decompress': defaultToConfig2,\n 'maxContentLength': defaultToConfig2,\n 'maxBodyLength': defaultToConfig2,\n 'beforeRedirect': defaultToConfig2,\n 'transport': defaultToConfig2,\n 'httpAgent': defaultToConfig2,\n 'httpsAgent': defaultToConfig2,\n 'cancelToken': defaultToConfig2,\n 'socketPath': defaultToConfig2,\n 'responseEncoding': defaultToConfig2,\n 'validateStatus': mergeDirectKeys\n };\n\n utils.forEach(Object.keys(config1).concat(Object.keys(config2)), function computeConfigValue(prop) {\n const merge = mergeMap[prop] || mergeDeepProperties;\n const configValue = merge(prop);\n (utils.isUndefined(configValue) && merge !== mergeDirectKeys) || (config[prop] = configValue);\n });\n\n return config;\n}\n","export const VERSION = \"1.0.0\";","'use strict';\n\nimport {VERSION} from '../env/data.js';\nimport AxiosError from '../core/AxiosError.js';\n\nconst validators = {};\n\n// eslint-disable-next-line func-names\n['object', 'boolean', 'number', 'function', 'string', 'symbol'].forEach((type, i) => {\n validators[type] = function validator(thing) {\n return typeof thing === type || 'a' + (i < 1 ? 'n ' : ' ') + type;\n };\n});\n\nconst deprecatedWarnings = {};\n\n/**\n * Transitional option validator\n *\n * @param {function|boolean?} validator - set to false if the transitional option has been removed\n * @param {string?} version - deprecated version / removed since version\n * @param {string?} message - some message with additional info\n *\n * @returns {function}\n */\nvalidators.transitional = function transitional(validator, version, message) {\n function formatMessage(opt, desc) {\n return '[Axios v' + VERSION + '] Transitional option \\'' + opt + '\\'' + desc + (message ? '. ' + message : '');\n }\n\n // eslint-disable-next-line func-names\n return (value, opt, opts) => {\n if (validator === false) {\n throw new AxiosError(\n formatMessage(opt, ' has been removed' + (version ? ' in ' + version : '')),\n AxiosError.ERR_DEPRECATED\n );\n }\n\n if (version && !deprecatedWarnings[opt]) {\n deprecatedWarnings[opt] = true;\n // eslint-disable-next-line no-console\n console.warn(\n formatMessage(\n opt,\n ' has been deprecated since v' + version + ' and will be removed in the near future'\n )\n );\n }\n\n return validator ? validator(value, opt, opts) : true;\n };\n};\n\n/**\n * Assert object's properties type\n *\n * @param {object} options\n * @param {object} schema\n * @param {boolean?} allowUnknown\n *\n * @returns {object}\n */\n\nfunction assertOptions(options, schema, allowUnknown) {\n if (typeof options !== 'object') {\n throw new AxiosError('options must be an object', AxiosError.ERR_BAD_OPTION_VALUE);\n }\n const keys = Object.keys(options);\n let i = keys.length;\n while (i-- > 0) {\n const opt = keys[i];\n const validator = schema[opt];\n if (validator) {\n const value = options[opt];\n const result = value === undefined || validator(value, opt, options);\n if (result !== true) {\n throw new AxiosError('option ' + opt + ' must be ' + result, AxiosError.ERR_BAD_OPTION_VALUE);\n }\n continue;\n }\n if (allowUnknown !== true) {\n throw new AxiosError('Unknown option ' + opt, AxiosError.ERR_BAD_OPTION);\n }\n }\n}\n\nexport default {\n assertOptions,\n validators\n};\n","'use strict';\n\nimport utils from './../utils.js';\nimport buildURL from '../helpers/buildURL.js';\nimport InterceptorManager from './InterceptorManager.js';\nimport dispatchRequest from './dispatchRequest.js';\nimport mergeConfig from './mergeConfig.js';\nimport buildFullPath from './buildFullPath.js';\nimport validator from '../helpers/validator.js';\nimport AxiosHeaders from './AxiosHeaders.js';\n\nconst validators = validator.validators;\n\n/**\n * Create a new instance of Axios\n *\n * @param {Object} instanceConfig The default config for the instance\n *\n * @return {Axios} A new instance of Axios\n */\nclass Axios {\n constructor(instanceConfig) {\n this.defaults = instanceConfig;\n this.interceptors = {\n request: new InterceptorManager(),\n response: new InterceptorManager()\n };\n }\n\n /**\n * Dispatch a request\n *\n * @param {String|Object} configOrUrl The config specific for this request (merged with this.defaults)\n * @param {?Object} config\n *\n * @returns {Promise} The Promise to be fulfilled\n */\n request(configOrUrl, config) {\n /*eslint no-param-reassign:0*/\n // Allow for axios('example/url'[, config]) a la fetch API\n if (typeof configOrUrl === 'string') {\n config = config || {};\n config.url = configOrUrl;\n } else {\n config = configOrUrl || {};\n }\n\n config = mergeConfig(this.defaults, config);\n\n const transitional = config.transitional;\n\n if (transitional !== undefined) {\n validator.assertOptions(transitional, {\n silentJSONParsing: validators.transitional(validators.boolean),\n forcedJSONParsing: validators.transitional(validators.boolean),\n clarifyTimeoutError: validators.transitional(validators.boolean)\n }, false);\n }\n\n // Set config.method\n config.method = (config.method || this.defaults.method || 'get').toLowerCase();\n\n // Flatten headers\n const defaultHeaders = config.headers && utils.merge(\n config.headers.common,\n config.headers[config.method]\n );\n\n defaultHeaders && utils.forEach(\n ['delete', 'get', 'head', 'post', 'put', 'patch', 'common'],\n function cleanHeaderConfig(method) {\n delete config.headers[method];\n }\n );\n\n config.headers = new AxiosHeaders(config.headers, defaultHeaders);\n\n // filter out skipped interceptors\n const requestInterceptorChain = [];\n let synchronousRequestInterceptors = true;\n this.interceptors.request.forEach(function unshiftRequestInterceptors(interceptor) {\n if (typeof interceptor.runWhen === 'function' && interceptor.runWhen(config) === false) {\n return;\n }\n\n synchronousRequestInterceptors = synchronousRequestInterceptors && interceptor.synchronous;\n\n requestInterceptorChain.unshift(interceptor.fulfilled, interceptor.rejected);\n });\n\n const responseInterceptorChain = [];\n this.interceptors.response.forEach(function pushResponseInterceptors(interceptor) {\n responseInterceptorChain.push(interceptor.fulfilled, interceptor.rejected);\n });\n\n let promise;\n let i = 0;\n let len;\n\n if (!synchronousRequestInterceptors) {\n const chain = [dispatchRequest.bind(this), undefined];\n chain.unshift.apply(chain, requestInterceptorChain);\n chain.push.apply(chain, responseInterceptorChain);\n len = chain.length;\n\n promise = Promise.resolve(config);\n\n while (i < len) {\n promise = promise.then(chain[i++], chain[i++]);\n }\n\n return promise;\n }\n\n len = requestInterceptorChain.length;\n\n let newConfig = config;\n\n i = 0;\n\n while (i < len) {\n const onFulfilled = requestInterceptorChain[i++];\n const onRejected = requestInterceptorChain[i++];\n try {\n newConfig = onFulfilled(newConfig);\n } catch (error) {\n onRejected.call(this, error);\n break;\n }\n }\n\n try {\n promise = dispatchRequest.call(this, newConfig);\n } catch (error) {\n return Promise.reject(error);\n }\n\n i = 0;\n len = responseInterceptorChain.length;\n\n while (i < len) {\n promise = promise.then(responseInterceptorChain[i++], responseInterceptorChain[i++]);\n }\n\n return promise;\n }\n\n getUri(config) {\n config = mergeConfig(this.defaults, config);\n const fullPath = buildFullPath(config.baseURL, config.url);\n return buildURL(fullPath, config.params, config.paramsSerializer);\n }\n}\n\n// Provide aliases for supported request methods\nutils.forEach(['delete', 'get', 'head', 'options'], function forEachMethodNoData(method) {\n /*eslint func-names:0*/\n Axios.prototype[method] = function(url, config) {\n return this.request(mergeConfig(config || {}, {\n method,\n url,\n data: (config || {}).data\n }));\n };\n});\n\nutils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) {\n /*eslint func-names:0*/\n\n function generateHTTPMethod(isForm) {\n return function httpMethod(url, data, config) {\n return this.request(mergeConfig(config || {}, {\n method,\n headers: isForm ? {\n 'Content-Type': 'multipart/form-data'\n } : {},\n url,\n data\n }));\n };\n }\n\n Axios.prototype[method] = generateHTTPMethod();\n\n Axios.prototype[method + 'Form'] = generateHTTPMethod(true);\n});\n\nexport default Axios;\n","'use strict';\n\nimport CanceledError from './CanceledError.js';\n\n/**\n * A `CancelToken` is an object that can be used to request cancellation of an operation.\n *\n * @param {Function} executor The executor function.\n *\n * @returns {CancelToken}\n */\nclass CancelToken {\n constructor(executor) {\n if (typeof executor !== 'function') {\n throw new TypeError('executor must be a function.');\n }\n\n let resolvePromise;\n\n this.promise = new Promise(function promiseExecutor(resolve) {\n resolvePromise = resolve;\n });\n\n const token = this;\n\n // eslint-disable-next-line func-names\n this.promise.then(cancel => {\n if (!token._listeners) return;\n\n let i = token._listeners.length;\n\n while (i-- > 0) {\n token._listeners[i](cancel);\n }\n token._listeners = null;\n });\n\n // eslint-disable-next-line func-names\n this.promise.then = onfulfilled => {\n let _resolve;\n // eslint-disable-next-line func-names\n const promise = new Promise(resolve => {\n token.subscribe(resolve);\n _resolve = resolve;\n }).then(onfulfilled);\n\n promise.cancel = function reject() {\n token.unsubscribe(_resolve);\n };\n\n return promise;\n };\n\n executor(function cancel(message, config, request) {\n if (token.reason) {\n // Cancellation has already been requested\n return;\n }\n\n token.reason = new CanceledError(message, config, request);\n resolvePromise(token.reason);\n });\n }\n\n /**\n * Throws a `CanceledError` if cancellation has been requested.\n */\n throwIfRequested() {\n if (this.reason) {\n throw this.reason;\n }\n }\n\n /**\n * Subscribe to the cancel signal\n */\n\n subscribe(listener) {\n if (this.reason) {\n listener(this.reason);\n return;\n }\n\n if (this._listeners) {\n this._listeners.push(listener);\n } else {\n this._listeners = [listener];\n }\n }\n\n /**\n * Unsubscribe from the cancel signal\n */\n\n unsubscribe(listener) {\n if (!this._listeners) {\n return;\n }\n const index = this._listeners.indexOf(listener);\n if (index !== -1) {\n this._listeners.splice(index, 1);\n }\n }\n\n /**\n * Returns an object that contains a new `CancelToken` and a function that, when called,\n * cancels the `CancelToken`.\n */\n static source() {\n let cancel;\n const token = new CancelToken(function executor(c) {\n cancel = c;\n });\n return {\n token,\n cancel\n };\n }\n}\n\nexport default CancelToken;\n","'use strict';\n\n/**\n * Syntactic sugar for invoking a function and expanding an array for arguments.\n *\n * Common use case would be to use `Function.prototype.apply`.\n *\n * ```js\n * function f(x, y, z) {}\n * var args = [1, 2, 3];\n * f.apply(null, args);\n * ```\n *\n * With `spread` this example can be re-written.\n *\n * ```js\n * spread(function(x, y, z) {})([1, 2, 3]);\n * ```\n *\n * @param {Function} callback\n *\n * @returns {Function}\n */\nexport default function spread(callback) {\n return function wrap(arr) {\n return callback.apply(null, arr);\n };\n}\n","'use strict';\n\nimport utils from './../utils.js';\n\n/**\n * Determines whether the payload is an error thrown by Axios\n *\n * @param {*} payload The value to test\n *\n * @returns {boolean} True if the payload is an error thrown by Axios, otherwise false\n */\nexport default function isAxiosError(payload) {\n return utils.isObject(payload) && (payload.isAxiosError === true);\n}\n","'use strict';\n\nimport utils from './utils.js';\nimport bind from './helpers/bind.js';\nimport Axios from './core/Axios.js';\nimport mergeConfig from './core/mergeConfig.js';\nimport defaults from './defaults/index.js';\nimport formDataToJSON from './helpers/formDataToJSON.js';\nimport CanceledError from './cancel/CanceledError.js';\nimport CancelToken from'./cancel/CancelToken.js';\nimport isCancel from'./cancel/isCancel.js';\nimport {VERSION} from './env/data.js';\nimport toFormData from './helpers/toFormData.js';\nimport AxiosError from './core/AxiosError.js';\nimport spread from './helpers/spread.js';\nimport isAxiosError from './helpers/isAxiosError.js';\n\n/**\n * Create an instance of Axios\n *\n * @param {Object} defaultConfig The default config for the instance\n *\n * @returns {Axios} A new instance of Axios\n */\nfunction createInstance(defaultConfig) {\n const context = new Axios(defaultConfig);\n const instance = bind(Axios.prototype.request, context);\n\n // Copy axios.prototype to instance\n utils.extend(instance, Axios.prototype, context, {allOwnKeys: true});\n\n // Copy context to instance\n utils.extend(instance, context, null, {allOwnKeys: true});\n\n // Factory for creating new instances\n instance.create = function create(instanceConfig) {\n return createInstance(mergeConfig(defaultConfig, instanceConfig));\n };\n\n return instance;\n}\n\n// Create the default instance to be exported\nconst axios = createInstance(defaults);\n\n// Expose Axios class to allow class inheritance\naxios.Axios = Axios;\n\n// Expose Cancel & CancelToken\naxios.CanceledError = CanceledError;\naxios.CancelToken = CancelToken;\naxios.isCancel = isCancel;\naxios.VERSION = VERSION;\naxios.toFormData = toFormData;\n\n// Expose AxiosError class\naxios.AxiosError = AxiosError;\n\n// alias for CanceledError for backward compatibility\naxios.Cancel = axios.CanceledError;\n\n// Expose all/spread\naxios.all = function all(promises) {\n return Promise.all(promises);\n};\n\naxios.spread = spread;\n\n// Expose isAxiosError\naxios.isAxiosError = isAxiosError;\n\naxios.formToJSON = thing => {\n return formDataToJSON(utils.isHTMLForm(thing) ? new FormData(thing) : thing);\n};\n\nexport default axios;\n"],"names":["prototype","envFormData","encode","URLSearchParams","FormData","httpAdapter","adapters","validators"],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/axios/dist/esm/axios.min.js b/node_modules/axios/dist/esm/axios.min.js new file mode 100644 index 000000000..824b122b3 --- /dev/null +++ b/node_modules/axios/dist/esm/axios.min.js @@ -0,0 +1,2 @@ +function e(e,t){return function(){return e.apply(t,arguments)}}const{toString:t}=Object.prototype,{getPrototypeOf:n}=Object,r=(o=Object.create(null),e=>{const n=t.call(e);return o[n]||(o[n]=n.slice(8,-1).toLowerCase())});var o;const s=e=>(e=e.toLowerCase(),t=>r(t)===e),i=e=>t=>typeof t===e,{isArray:a}=Array,c=i("undefined");const u=s("ArrayBuffer");const l=i("string"),f=i("function"),h=i("number"),d=e=>null!==e&&"object"==typeof e,p=e=>{if("object"!==r(e))return!1;const t=n(e);return null===t||t===Object.prototype},m=s("Date"),g=s("File"),b=s("Blob"),y=s("FileList"),E=s("URLSearchParams");function w(e,t,{allOwnKeys:n=!1}={}){if(null==e)return;let r,o;if("object"!=typeof e&&(e=[e]),a(e))for(r=0,o=e.length;rR&&e instanceof R);var R;const S=s("HTMLFormElement"),A=(({hasOwnProperty:e})=>(t,n)=>e.call(t,n))(Object.prototype),j=s("RegExp"),T=(e,t)=>{const n=Object.getOwnPropertyDescriptors(e),r={};w(n,((n,o)=>{!1!==t(n,o,e)&&(r[o]=n)})),Object.defineProperties(e,r)},x={isArray:a,isArrayBuffer:u,isBuffer:function(e){return null!==e&&!c(e)&&null!==e.constructor&&!c(e.constructor)&&f(e.constructor.isBuffer)&&e.constructor.isBuffer(e)},isFormData:e=>{const n="[object FormData]";return e&&("function"==typeof FormData&&e instanceof FormData||t.call(e)===n||f(e.toString)&&e.toString()===n)},isArrayBufferView:function(e){let t;return t="undefined"!=typeof ArrayBuffer&&ArrayBuffer.isView?ArrayBuffer.isView(e):e&&e.buffer&&u(e.buffer),t},isString:l,isNumber:h,isBoolean:e=>!0===e||!1===e,isObject:d,isPlainObject:p,isUndefined:c,isDate:m,isFile:g,isBlob:b,isRegExp:j,isFunction:f,isStream:e=>d(e)&&f(e.pipe),isURLSearchParams:E,isTypedArray:O,isFileList:y,forEach:w,merge:function e(){const t={},n=(n,r)=>{p(t[r])&&p(n)?t[r]=e(t[r],n):p(n)?t[r]=e({},n):a(n)?t[r]=n.slice():t[r]=n};for(let e=0,t=arguments.length;e(w(n,((n,o)=>{r&&f(n)?t[o]=e(n,r):t[o]=n}),{allOwnKeys:o}),t),trim:e=>e.trim?e.trim():e.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,""),stripBOM:e=>(65279===e.charCodeAt(0)&&(e=e.slice(1)),e),inherits:(e,t,n,r)=>{e.prototype=Object.create(t.prototype,r),e.prototype.constructor=e,Object.defineProperty(e,"super",{value:t.prototype}),n&&Object.assign(e.prototype,n)},toFlatObject:(e,t,r,o)=>{let s,i,a;const c={};if(t=t||{},null==e)return t;do{for(s=Object.getOwnPropertyNames(e),i=s.length;i-- >0;)a=s[i],o&&!o(a,e,t)||c[a]||(t[a]=e[a],c[a]=!0);e=!1!==r&&n(e)}while(e&&(!r||r(e,t))&&e!==Object.prototype);return t},kindOf:r,kindOfTest:s,endsWith:(e,t,n)=>{e=String(e),(void 0===n||n>e.length)&&(n=e.length),n-=t.length;const r=e.indexOf(t,n);return-1!==r&&r===n},toArray:e=>{if(!e)return null;if(a(e))return e;let t=e.length;if(!h(t))return null;const n=new Array(t);for(;t-- >0;)n[t]=e[t];return n},forEachEntry:(e,t)=>{const n=(e&&e[Symbol.iterator]).call(e);let r;for(;(r=n.next())&&!r.done;){const n=r.value;t.call(e,n[0],n[1])}},matchAll:(e,t)=>{let n;const r=[];for(;null!==(n=e.exec(t));)r.push(n);return r},isHTMLForm:S,hasOwnProperty:A,hasOwnProp:A,reduceDescriptors:T,freezeMethods:e=>{T(e,((t,n)=>{const r=e[n];f(r)&&(t.enumerable=!1,"writable"in t?t.writable=!1:t.set||(t.set=()=>{throw Error("Can not read-only method '"+n+"'")}))}))},toObjectSet:(e,t)=>{const n={},r=e=>{e.forEach((e=>{n[e]=!0}))};return a(e)?r(e):r(String(e).split(t)),n},toCamelCase:e=>e.toLowerCase().replace(/[_-\s]([a-z\d])(\w*)/g,(function(e,t,n){return t.toUpperCase()+n})),noop:()=>{},toFiniteNumber:(e,t)=>(e=+e,Number.isFinite(e)?e:t)};function v(e,t,n,r,o){Error.call(this),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=(new Error).stack,this.message=e,this.name="AxiosError",t&&(this.code=t),n&&(this.config=n),r&&(this.request=r),o&&(this.response=o)}x.inherits(v,Error,{toJSON:function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:this.config,code:this.code,status:this.response&&this.response.status?this.response.status:null}}});const C=v.prototype,N={};["ERR_BAD_OPTION_VALUE","ERR_BAD_OPTION","ECONNABORTED","ETIMEDOUT","ERR_NETWORK","ERR_FR_TOO_MANY_REDIRECTS","ERR_DEPRECATED","ERR_BAD_RESPONSE","ERR_BAD_REQUEST","ERR_CANCELED","ERR_NOT_SUPPORT","ERR_INVALID_URL"].forEach((e=>{N[e]={value:e}})),Object.defineProperties(v,N),Object.defineProperty(C,"isAxiosError",{value:!0}),v.from=(e,t,n,r,o,s)=>{const i=Object.create(C);return x.toFlatObject(e,i,(function(e){return e!==Error.prototype}),(e=>"isAxiosError"!==e)),v.call(i,e.message,t,n,r,o),i.cause=e,i.name=e.name,s&&Object.assign(i,s),i};var _="object"==typeof self?self.FormData:window.FormData;function P(e){return x.isPlainObject(e)||x.isArray(e)}function B(e){return x.endsWith(e,"[]")?e.slice(0,-2):e}function D(e,t,n){return e?e.concat(t).map((function(e,t){return e=B(e),!n&&t?"["+e+"]":e})).join(n?".":""):t}const F=x.toFlatObject(x,{},null,(function(e){return/^is[A-Z]/.test(e)}));function U(e,t,n){if(!x.isObject(e))throw new TypeError("target must be an object");t=t||new(_||FormData);const r=(n=x.toFlatObject(n,{metaTokens:!0,dots:!1,indexes:!1},!1,(function(e,t){return!x.isUndefined(t[e])}))).metaTokens,o=n.visitor||l,s=n.dots,i=n.indexes,a=(n.Blob||"undefined"!=typeof Blob&&Blob)&&((c=t)&&x.isFunction(c.append)&&"FormData"===c[Symbol.toStringTag]&&c[Symbol.iterator]);var c;if(!x.isFunction(o))throw new TypeError("visitor must be a function");function u(e){if(null===e)return"";if(x.isDate(e))return e.toISOString();if(!a&&x.isBlob(e))throw new v("Blob is not supported. Use a Buffer instead.");return x.isArrayBuffer(e)||x.isTypedArray(e)?a&&"function"==typeof Blob?new Blob([e]):Buffer.from(e):e}function l(e,n,o){let a=e;if(e&&!o&&"object"==typeof e)if(x.endsWith(n,"{}"))n=r?n:n.slice(0,-2),e=JSON.stringify(e);else if(x.isArray(e)&&function(e){return x.isArray(e)&&!e.some(P)}(e)||x.isFileList(e)||x.endsWith(n,"[]")&&(a=x.toArray(e)))return n=B(n),a.forEach((function(e,r){!x.isUndefined(e)&&t.append(!0===i?D([n],r,s):null===i?n:n+"[]",u(e))})),!1;return!!P(e)||(t.append(D(o,n,s),u(e)),!1)}const f=[],h=Object.assign(F,{defaultVisitor:l,convertValue:u,isVisitable:P});if(!x.isObject(e))throw new TypeError("data must be an object");return function e(n,r){if(!x.isUndefined(n)){if(-1!==f.indexOf(n))throw Error("Circular reference detected in "+r.join("."));f.push(n),x.forEach(n,(function(n,s){!0===(!x.isUndefined(n)&&o.call(t,n,x.isString(s)?s.trim():s,r,h))&&e(n,r?r.concat(s):[s])})),f.pop()}}(e),t}function L(e){const t={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(e).replace(/[!'()~]|%20|%00/g,(function(e){return t[e]}))}function k(e,t){this._pairs=[],e&&U(e,this,t)}const q=k.prototype;function z(e){return encodeURIComponent(e).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}function I(e,t,n){if(!t)return e;const r=e.indexOf("#");-1!==r&&(e=e.slice(0,r));const o=n&&n.encode||z,s=x.isURLSearchParams(t)?t.toString():new k(t,n).toString(o);return s&&(e+=(-1===e.indexOf("?")?"?":"&")+s),e}q.append=function(e,t){this._pairs.push([e,t])},q.toString=function(e){const t=e?function(t){return e.call(this,t,L)}:L;return this._pairs.map((function(e){return t(e[0])+"="+t(e[1])}),"").join("&")};class M{constructor(){this.handlers=[]}use(e,t,n){return this.handlers.push({fulfilled:e,rejected:t,synchronous:!!n&&n.synchronous,runWhen:n?n.runWhen:null}),this.handlers.length-1}eject(e){this.handlers[e]&&(this.handlers[e]=null)}clear(){this.handlers&&(this.handlers=[])}forEach(e){x.forEach(this.handlers,(function(t){null!==t&&e(t)}))}}const J={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},H="undefined"!=typeof URLSearchParams?URLSearchParams:k,V=FormData,W=(()=>{let e;return("undefined"==typeof navigator||"ReactNative"!==(e=navigator.product)&&"NativeScript"!==e&&"NS"!==e)&&("undefined"!=typeof window&&"undefined"!=typeof document)})(),K={isBrowser:!0,classes:{URLSearchParams:H,FormData:V,Blob:Blob},isStandardBrowserEnv:W,protocols:["http","https","file","blob","url","data"]};function $(e){function t(e,n,r,o){let s=e[o++];const i=Number.isFinite(+s),a=o>=e.length;if(s=!s&&x.isArray(r)?r.length:s,a)return x.hasOwnProp(r,s)?r[s]=[r[s],n]:r[s]=n,!i;r[s]&&x.isObject(r[s])||(r[s]=[]);return t(e,n,r[s],o)&&x.isArray(r[s])&&(r[s]=function(e){const t={},n=Object.keys(e);let r;const o=n.length;let s;for(r=0;r{t(function(e){return x.matchAll(/\w+|\[(\w*)]/g,e).map((e=>"[]"===e[0]?"":e[1]||e[0]))}(e),r,n,0)})),n}return null}const X=K.isStandardBrowserEnv?{write:function(e,t,n,r,o,s){const i=[];i.push(e+"="+encodeURIComponent(t)),x.isNumber(n)&&i.push("expires="+new Date(n).toGMTString()),x.isString(r)&&i.push("path="+r),x.isString(o)&&i.push("domain="+o),!0===s&&i.push("secure"),document.cookie=i.join("; ")},read:function(e){const t=document.cookie.match(new RegExp("(^|;\\s*)("+e+")=([^;]*)"));return t?decodeURIComponent(t[3]):null},remove:function(e){this.write(e,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}};function Q(e,t){return e&&!/^([a-z][a-z\d+\-.]*:)?\/\//i.test(t)?function(e,t){return t?e.replace(/\/+$/,"")+"/"+t.replace(/^\/+/,""):e}(e,t):t}const G=K.isStandardBrowserEnv?function(){const e=/(msie|trident)/i.test(navigator.userAgent),t=document.createElement("a");let n;function r(n){let r=n;return e&&(t.setAttribute("href",r),r=t.href),t.setAttribute("href",r),{href:t.href,protocol:t.protocol?t.protocol.replace(/:$/,""):"",host:t.host,search:t.search?t.search.replace(/^\?/,""):"",hash:t.hash?t.hash.replace(/^#/,""):"",hostname:t.hostname,port:t.port,pathname:"/"===t.pathname.charAt(0)?t.pathname:"/"+t.pathname}}return n=r(window.location.href),function(e){const t=x.isString(e)?r(e):e;return t.protocol===n.protocol&&t.host===n.host}}():function(){return!0};function Y(e,t,n){v.call(this,null==e?"canceled":e,v.ERR_CANCELED,t,n),this.name="CanceledError"}x.inherits(Y,v,{__CANCEL__:!0});const Z=x.toObjectSet(["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"]),ee=Symbol("internals"),te=Symbol("defaults");function ne(e){return e&&String(e).trim().toLowerCase()}function re(e){return!1===e||null==e?e:String(e)}function oe(e,t,n,r){return x.isFunction(r)?r.call(this,t,n):x.isString(t)?x.isString(r)?-1!==t.indexOf(r):x.isRegExp(r)?r.test(t):void 0:void 0}function se(e,t){t=t.toLowerCase();const n=Object.keys(e);let r,o=n.length;for(;o-- >0;)if(r=n[o],t===r.toLowerCase())return r;return null}function ie(e,t){e&&this.set(e),this[te]=t||null}function ae(e,t){let n=0;const r=function(e,t){e=e||10;const n=new Array(e),r=new Array(e);let o,s=0,i=0;return t=void 0!==t?t:1e3,function(a){const c=Date.now(),u=r[i];o||(o=c),n[s]=a,r[s]=c;let l=i,f=0;for(;l!==s;)f+=n[l++],l%=e;if(s=(s+1)%e,s===i&&(i=(i+1)%e),c-o{const s=o.loaded,i=o.lengthComputable?o.total:void 0,a=s-n,c=r(a);n=s;const u={loaded:s,total:i,progress:i?s/i:void 0,bytes:a,rate:c||void 0,estimated:c&&i&&s<=i?(i-s)/c:void 0};u[t?"download":"upload"]=!0,e(u)}}function ce(e){return new Promise((function(t,n){let r=e.data;const o=ie.from(e.headers).normalize(),s=e.responseType;let i;function a(){e.cancelToken&&e.cancelToken.unsubscribe(i),e.signal&&e.signal.removeEventListener("abort",i)}x.isFormData(r)&&K.isStandardBrowserEnv&&o.setContentType(!1);let c=new XMLHttpRequest;if(e.auth){const t=e.auth.username||"",n=e.auth.password?unescape(encodeURIComponent(e.auth.password)):"";o.set("Authorization","Basic "+btoa(t+":"+n))}const u=Q(e.baseURL,e.url);function l(){if(!c)return;const r=ie.from("getAllResponseHeaders"in c&&c.getAllResponseHeaders());!function(e,t,n){const r=n.config.validateStatus;n.status&&r&&!r(n.status)?t(new v("Request failed with status code "+n.status,[v.ERR_BAD_REQUEST,v.ERR_BAD_RESPONSE][Math.floor(n.status/100)-4],n.config,n.request,n)):e(n)}((function(e){t(e),a()}),(function(e){n(e),a()}),{data:s&&"text"!==s&&"json"!==s?c.response:c.responseText,status:c.status,statusText:c.statusText,headers:r,config:e,request:c}),c=null}if(c.open(e.method.toUpperCase(),I(u,e.params,e.paramsSerializer),!0),c.timeout=e.timeout,"onloadend"in c?c.onloadend=l:c.onreadystatechange=function(){c&&4===c.readyState&&(0!==c.status||c.responseURL&&0===c.responseURL.indexOf("file:"))&&setTimeout(l)},c.onabort=function(){c&&(n(new v("Request aborted",v.ECONNABORTED,e,c)),c=null)},c.onerror=function(){n(new v("Network Error",v.ERR_NETWORK,e,c)),c=null},c.ontimeout=function(){let t=e.timeout?"timeout of "+e.timeout+"ms exceeded":"timeout exceeded";const r=e.transitional||J;e.timeoutErrorMessage&&(t=e.timeoutErrorMessage),n(new v(t,r.clarifyTimeoutError?v.ETIMEDOUT:v.ECONNABORTED,e,c)),c=null},K.isStandardBrowserEnv){const t=(e.withCredentials||G(u))&&e.xsrfCookieName&&X.read(e.xsrfCookieName);t&&o.set(e.xsrfHeaderName,t)}void 0===r&&o.setContentType(null),"setRequestHeader"in c&&x.forEach(o.toJSON(),(function(e,t){c.setRequestHeader(t,e)})),x.isUndefined(e.withCredentials)||(c.withCredentials=!!e.withCredentials),s&&"json"!==s&&(c.responseType=e.responseType),"function"==typeof e.onDownloadProgress&&c.addEventListener("progress",ae(e.onDownloadProgress,!0)),"function"==typeof e.onUploadProgress&&c.upload&&c.upload.addEventListener("progress",ae(e.onUploadProgress)),(e.cancelToken||e.signal)&&(i=t=>{c&&(n(!t||t.type?new Y(null,e,c):t),c.abort(),c=null)},e.cancelToken&&e.cancelToken.subscribe(i),e.signal&&(e.signal.aborted?i():e.signal.addEventListener("abort",i)));const f=function(e){const t=/^([-+\w]{1,25})(:?\/\/|:)/.exec(e);return t&&t[1]||""}(u);f&&-1===K.protocols.indexOf(f)?n(new v("Unsupported protocol "+f+":",v.ERR_BAD_REQUEST,e)):c.send(r||null)}))}Object.assign(ie.prototype,{set:function(e,t,n){const r=this;function o(e,t,n){const o=ne(t);if(!o)throw new Error("header name must be a non-empty string");const s=se(r,o);(!s||!0===n||!1!==r[s]&&!1!==n)&&(e=x.isArray(e)?e.map(re):re(e),r[s||t]=e)}return x.isPlainObject(e)?x.forEach(e,((e,n)=>{o(e,n,t)})):o(t,e,n),this},get:function(e,t){if(!(e=ne(e)))return;const n=se(this,e);if(n){const e=this[n];if(!t)return e;if(!0===t)return function(e){const t=Object.create(null),n=/([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;let r;for(;r=n.exec(e);)t[r[1]]=r[2];return t}(e);if(x.isFunction(t))return t.call(this,e,n);if(x.isRegExp(t))return t.exec(e);throw new TypeError("parser must be boolean|regexp|function")}},has:function(e,t){if(e=ne(e)){const n=se(this,e);return!(!n||t&&!oe(0,this[n],n,t))}return!1},delete:function(e,t){const n=this;let r=!1;function o(e){if(e=ne(e)){const o=se(n,e);!o||t&&!oe(0,n[o],o,t)||(delete n[o],r=!0)}}return x.isArray(e)?e.forEach(o):o(e),r},clear:function(){return Object.keys(this).forEach(this.delete.bind(this))},normalize:function(e){const t=this,n={};return x.forEach(this,((r,o)=>{const s=se(n,o);if(s)return t[s]=re(r),void delete t[o];const i=e?function(e){return e.trim().toLowerCase().replace(/([a-z\d])(\w*)/g,((e,t,n)=>t.toUpperCase()+n))}(o):String(o).trim();i!==o&&delete t[o],t[i]=re(r),n[i]=!0})),this},toJSON:function(){const e=Object.create(null);return x.forEach(Object.assign({},this[te]||null,this),((t,n)=>{null!=t&&!1!==t&&(e[n]=x.isArray(t)?t.join(", "):t)})),e}}),Object.assign(ie,{from:function(e){return x.isString(e)?new this((e=>{const t={};let n,r,o;return e&&e.split("\n").forEach((function(e){o=e.indexOf(":"),n=e.substring(0,o).trim().toLowerCase(),r=e.substring(o+1).trim(),!n||t[n]&&Z[n]||("set-cookie"===n?t[n]?t[n].push(r):t[n]=[r]:t[n]=t[n]?t[n]+", "+r:r)})),t})(e)):e instanceof this?e:new this(e)},accessor:function(e){const t=(this[ee]=this[ee]={accessors:{}}).accessors,n=this.prototype;function r(e){const r=ne(e);t[r]||(!function(e,t){const n=x.toCamelCase(" "+t);["get","set","has"].forEach((r=>{Object.defineProperty(e,r+n,{value:function(e,n,o){return this[r].call(this,t,e,n,o)},configurable:!0})}))}(n,e),t[r]=!0)}return x.isArray(e)?e.forEach(r):r(e),this}}),ie.accessor(["Content-Type","Content-Length","Accept","Accept-Encoding","User-Agent"]),x.freezeMethods(ie.prototype),x.freezeMethods(ie);const ue={http:ce,xhr:ce},le=e=>{if(x.isString(e)){const t=ue[e];if(!e)throw Error(x.hasOwnProp(e)?`Adapter '${e}' is not available in the build`:`Can not resolve adapter '${e}'`);return t}if(!x.isFunction(e))throw new TypeError("adapter is not a function");return e},fe={"Content-Type":"application/x-www-form-urlencoded"};const he={transitional:J,adapter:function(){let e;return"undefined"!=typeof XMLHttpRequest?e=le("xhr"):"undefined"!=typeof process&&"process"===x.kindOf(process)&&(e=le("http")),e}(),transformRequest:[function(e,t){const n=t.getContentType()||"",r=n.indexOf("application/json")>-1,o=x.isObject(e);o&&x.isHTMLForm(e)&&(e=new FormData(e));if(x.isFormData(e))return r&&r?JSON.stringify($(e)):e;if(x.isArrayBuffer(e)||x.isBuffer(e)||x.isStream(e)||x.isFile(e)||x.isBlob(e))return e;if(x.isArrayBufferView(e))return e.buffer;if(x.isURLSearchParams(e))return t.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),e.toString();let s;if(o){if(n.indexOf("application/x-www-form-urlencoded")>-1)return function(e,t){return U(e,new K.classes.URLSearchParams,Object.assign({visitor:function(e,t,n,r){return K.isNode&&x.isBuffer(e)?(this.append(t,e.toString("base64")),!1):r.defaultVisitor.apply(this,arguments)}},t))}(e,this.formSerializer).toString();if((s=x.isFileList(e))||n.indexOf("multipart/form-data")>-1){const t=this.env&&this.env.FormData;return U(s?{"files[]":e}:e,t&&new t,this.formSerializer)}}return o||r?(t.setContentType("application/json",!1),function(e,t,n){if(x.isString(e))try{return(t||JSON.parse)(e),x.trim(e)}catch(e){if("SyntaxError"!==e.name)throw e}return(n||JSON.stringify)(e)}(e)):e}],transformResponse:[function(e){const t=this.transitional||he.transitional,n=t&&t.forcedJSONParsing,r="json"===this.responseType;if(e&&x.isString(e)&&(n&&!this.responseType||r)){const n=!(t&&t.silentJSONParsing)&&r;try{return JSON.parse(e)}catch(e){if(n){if("SyntaxError"===e.name)throw v.from(e,v.ERR_BAD_RESPONSE,this,null,this.response);throw e}}}return e}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:K.classes.FormData,Blob:K.classes.Blob},validateStatus:function(e){return e>=200&&e<300},headers:{common:{Accept:"application/json, text/plain, */*"}}};function de(e,t){const n=this||he,r=t||n,o=ie.from(r.headers);let s=r.data;return x.forEach(e,(function(e){s=e.call(n,s,o.normalize(),t?t.status:void 0)})),o.normalize(),s}function pe(e){return!(!e||!e.__CANCEL__)}function me(e){if(e.cancelToken&&e.cancelToken.throwIfRequested(),e.signal&&e.signal.aborted)throw new Y}function ge(e){me(e),e.headers=ie.from(e.headers),e.data=de.call(e,e.transformRequest);return(e.adapter||he.adapter)(e).then((function(t){return me(e),t.data=de.call(e,e.transformResponse,t),t.headers=ie.from(t.headers),t}),(function(t){return pe(t)||(me(e),t&&t.response&&(t.response.data=de.call(e,e.transformResponse,t.response),t.response.headers=ie.from(t.response.headers))),Promise.reject(t)}))}function be(e,t){t=t||{};const n={};function r(e,t){return x.isPlainObject(e)&&x.isPlainObject(t)?x.merge(e,t):x.isPlainObject(t)?x.merge({},t):x.isArray(t)?t.slice():t}function o(n){return x.isUndefined(t[n])?x.isUndefined(e[n])?void 0:r(void 0,e[n]):r(e[n],t[n])}function s(e){if(!x.isUndefined(t[e]))return r(void 0,t[e])}function i(n){return x.isUndefined(t[n])?x.isUndefined(e[n])?void 0:r(void 0,e[n]):r(void 0,t[n])}function a(n){return n in t?r(e[n],t[n]):n in e?r(void 0,e[n]):void 0}const c={url:s,method:s,data:s,baseURL:i,transformRequest:i,transformResponse:i,paramsSerializer:i,timeout:i,timeoutMessage:i,withCredentials:i,adapter:i,responseType:i,xsrfCookieName:i,xsrfHeaderName:i,onUploadProgress:i,onDownloadProgress:i,decompress:i,maxContentLength:i,maxBodyLength:i,beforeRedirect:i,transport:i,httpAgent:i,httpsAgent:i,cancelToken:i,socketPath:i,responseEncoding:i,validateStatus:a};return x.forEach(Object.keys(e).concat(Object.keys(t)),(function(e){const t=c[e]||o,r=t(e);x.isUndefined(r)&&t!==a||(n[e]=r)})),n}x.forEach(["delete","get","head"],(function(e){he.headers[e]={}})),x.forEach(["post","put","patch"],(function(e){he.headers[e]=x.merge(fe)}));const ye={};["object","boolean","number","function","string","symbol"].forEach(((e,t)=>{ye[e]=function(n){return typeof n===e||"a"+(t<1?"n ":" ")+e}}));const Ee={};ye.transitional=function(e,t,n){function r(e,t){return"[Axios v1.0.0] Transitional option '"+e+"'"+t+(n?". "+n:"")}return(n,o,s)=>{if(!1===e)throw new v(r(o," has been removed"+(t?" in "+t:"")),v.ERR_DEPRECATED);return t&&!Ee[o]&&(Ee[o]=!0,console.warn(r(o," has been deprecated since v"+t+" and will be removed in the near future"))),!e||e(n,o,s)}};const we={assertOptions:function(e,t,n){if("object"!=typeof e)throw new v("options must be an object",v.ERR_BAD_OPTION_VALUE);const r=Object.keys(e);let o=r.length;for(;o-- >0;){const s=r[o],i=t[s];if(i){const t=e[s],n=void 0===t||i(t,s,e);if(!0!==n)throw new v("option "+s+" must be "+n,v.ERR_BAD_OPTION_VALUE)}else if(!0!==n)throw new v("Unknown option "+s,v.ERR_BAD_OPTION)}},validators:ye},Oe=we.validators;class Re{constructor(e){this.defaults=e,this.interceptors={request:new M,response:new M}}request(e,t){"string"==typeof e?(t=t||{}).url=e:t=e||{};const n=(t=be(this.defaults,t)).transitional;void 0!==n&&we.assertOptions(n,{silentJSONParsing:Oe.transitional(Oe.boolean),forcedJSONParsing:Oe.transitional(Oe.boolean),clarifyTimeoutError:Oe.transitional(Oe.boolean)},!1),t.method=(t.method||this.defaults.method||"get").toLowerCase();const r=t.headers&&x.merge(t.headers.common,t.headers[t.method]);r&&x.forEach(["delete","get","head","post","put","patch","common"],(function(e){delete t.headers[e]})),t.headers=new ie(t.headers,r);const o=[];let s=!0;this.interceptors.request.forEach((function(e){"function"==typeof e.runWhen&&!1===e.runWhen(t)||(s=s&&e.synchronous,o.unshift(e.fulfilled,e.rejected))}));const i=[];let a;this.interceptors.response.forEach((function(e){i.push(e.fulfilled,e.rejected)}));let c,u=0;if(!s){const e=[ge.bind(this),void 0];for(e.unshift.apply(e,o),e.push.apply(e,i),c=e.length,a=Promise.resolve(t);u{if(!n._listeners)return;let t=n._listeners.length;for(;t-- >0;)n._listeners[t](e);n._listeners=null})),this.promise.then=e=>{let t;const r=new Promise((e=>{n.subscribe(e),t=e})).then(e);return r.cancel=function(){n.unsubscribe(t)},r},e((function(e,r,o){n.reason||(n.reason=new Y(e,r,o),t(n.reason))}))}throwIfRequested(){if(this.reason)throw this.reason}subscribe(e){this.reason?e(this.reason):this._listeners?this._listeners.push(e):this._listeners=[e]}unsubscribe(e){if(!this._listeners)return;const t=this._listeners.indexOf(e);-1!==t&&this._listeners.splice(t,1)}static source(){let e;return{token:new Se((function(t){e=t})),cancel:e}}}const Ae=function t(n){const r=new Re(n),o=e(Re.prototype.request,r);return x.extend(o,Re.prototype,r,{allOwnKeys:!0}),x.extend(o,r,null,{allOwnKeys:!0}),o.create=function(e){return t(be(n,e))},o}(he);Ae.Axios=Re,Ae.CanceledError=Y,Ae.CancelToken=Se,Ae.isCancel=pe,Ae.VERSION="1.0.0",Ae.toFormData=U,Ae.AxiosError=v,Ae.Cancel=Ae.CanceledError,Ae.all=function(e){return Promise.all(e)},Ae.spread=function(e){return function(t){return e.apply(null,t)}},Ae.isAxiosError=function(e){return x.isObject(e)&&!0===e.isAxiosError},Ae.formToJSON=e=>$(x.isHTMLForm(e)?new FormData(e):e);export{Ae as default}; +//# sourceMappingURL=axios.min.js.map diff --git a/node_modules/axios/dist/esm/axios.min.js.map b/node_modules/axios/dist/esm/axios.min.js.map new file mode 100644 index 000000000..9fc49a84f --- /dev/null +++ b/node_modules/axios/dist/esm/axios.min.js.map @@ -0,0 +1 @@ +{"version":3,"file":"axios.min.js","sources":["../../lib/helpers/bind.js","../../lib/utils.js","../../lib/core/AxiosError.js","../../node_modules/form-data/lib/browser.js","../../lib/helpers/toFormData.js","../../lib/helpers/AxiosURLSearchParams.js","../../lib/helpers/buildURL.js","../../lib/core/InterceptorManager.js","../../lib/defaults/transitional.js","../../lib/platform/browser/classes/URLSearchParams.js","../../lib/platform/browser/classes/FormData.js","../../lib/platform/browser/index.js","../../lib/helpers/formDataToJSON.js","../../lib/helpers/cookies.js","../../lib/core/buildFullPath.js","../../lib/helpers/isAbsoluteURL.js","../../lib/helpers/combineURLs.js","../../lib/helpers/isURLSameOrigin.js","../../lib/cancel/CanceledError.js","../../lib/helpers/parseHeaders.js","../../lib/core/AxiosHeaders.js","../../lib/adapters/xhr.js","../../lib/helpers/speedometer.js","../../lib/core/settle.js","../../lib/helpers/parseProtocol.js","../../lib/adapters/index.js","../../lib/defaults/index.js","../../lib/helpers/toURLEncodedForm.js","../../lib/core/transformData.js","../../lib/cancel/isCancel.js","../../lib/core/dispatchRequest.js","../../lib/core/mergeConfig.js","../../lib/env/data.js","../../lib/helpers/validator.js","../../lib/core/Axios.js","../../lib/cancel/CancelToken.js","../../lib/axios.js","../../lib/helpers/spread.js","../../lib/helpers/isAxiosError.js"],"sourcesContent":["'use strict';\n\nexport default function bind(fn, thisArg) {\n return function wrap() {\n return fn.apply(thisArg, arguments);\n };\n}\n","'use strict';\n\nimport bind from './helpers/bind.js';\n\n// utils is a library of generic helper functions non-specific to axios\n\nconst {toString} = Object.prototype;\nconst {getPrototypeOf} = Object;\n\nconst kindOf = (cache => thing => {\n const str = toString.call(thing);\n return cache[str] || (cache[str] = str.slice(8, -1).toLowerCase());\n})(Object.create(null));\n\nconst kindOfTest = (type) => {\n type = type.toLowerCase();\n return (thing) => kindOf(thing) === type\n}\n\nconst typeOfTest = type => thing => typeof thing === type;\n\n/**\n * Determine if a value is an Array\n *\n * @param {Object} val The value to test\n *\n * @returns {boolean} True if value is an Array, otherwise false\n */\nconst {isArray} = Array;\n\n/**\n * Determine if a value is undefined\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if the value is undefined, otherwise false\n */\nconst isUndefined = typeOfTest('undefined');\n\n/**\n * Determine if a value is a Buffer\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a Buffer, otherwise false\n */\nfunction isBuffer(val) {\n return val !== null && !isUndefined(val) && val.constructor !== null && !isUndefined(val.constructor)\n && isFunction(val.constructor.isBuffer) && val.constructor.isBuffer(val);\n}\n\n/**\n * Determine if a value is an ArrayBuffer\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is an ArrayBuffer, otherwise false\n */\nconst isArrayBuffer = kindOfTest('ArrayBuffer');\n\n\n/**\n * Determine if a value is a view on an ArrayBuffer\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a view on an ArrayBuffer, otherwise false\n */\nfunction isArrayBufferView(val) {\n let result;\n if ((typeof ArrayBuffer !== 'undefined') && (ArrayBuffer.isView)) {\n result = ArrayBuffer.isView(val);\n } else {\n result = (val) && (val.buffer) && (isArrayBuffer(val.buffer));\n }\n return result;\n}\n\n/**\n * Determine if a value is a String\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a String, otherwise false\n */\nconst isString = typeOfTest('string');\n\n/**\n * Determine if a value is a Function\n *\n * @param {*} val The value to test\n * @returns {boolean} True if value is a Function, otherwise false\n */\nconst isFunction = typeOfTest('function');\n\n/**\n * Determine if a value is a Number\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a Number, otherwise false\n */\nconst isNumber = typeOfTest('number');\n\n/**\n * Determine if a value is an Object\n *\n * @param {*} thing The value to test\n *\n * @returns {boolean} True if value is an Object, otherwise false\n */\nconst isObject = (thing) => thing !== null && typeof thing === 'object';\n\n/**\n * Determine if a value is a Boolean\n *\n * @param {*} thing The value to test\n * @returns {boolean} True if value is a Boolean, otherwise false\n */\nconst isBoolean = thing => thing === true || thing === false;\n\n/**\n * Determine if a value is a plain Object\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a plain Object, otherwise false\n */\nconst isPlainObject = (val) => {\n if (kindOf(val) !== 'object') {\n return false;\n }\n\n const prototype = getPrototypeOf(val);\n return prototype === null || prototype === Object.prototype;\n}\n\n/**\n * Determine if a value is a Date\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a Date, otherwise false\n */\nconst isDate = kindOfTest('Date');\n\n/**\n * Determine if a value is a File\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a File, otherwise false\n */\nconst isFile = kindOfTest('File');\n\n/**\n * Determine if a value is a Blob\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a Blob, otherwise false\n */\nconst isBlob = kindOfTest('Blob');\n\n/**\n * Determine if a value is a FileList\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a File, otherwise false\n */\nconst isFileList = kindOfTest('FileList');\n\n/**\n * Determine if a value is a Stream\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a Stream, otherwise false\n */\nconst isStream = (val) => isObject(val) && isFunction(val.pipe);\n\n/**\n * Determine if a value is a FormData\n *\n * @param {*} thing The value to test\n *\n * @returns {boolean} True if value is an FormData, otherwise false\n */\nconst isFormData = (thing) => {\n const pattern = '[object FormData]';\n return thing && (\n (typeof FormData === 'function' && thing instanceof FormData) ||\n toString.call(thing) === pattern ||\n (isFunction(thing.toString) && thing.toString() === pattern)\n );\n}\n\n/**\n * Determine if a value is a URLSearchParams object\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a URLSearchParams object, otherwise false\n */\nconst isURLSearchParams = kindOfTest('URLSearchParams');\n\n/**\n * Trim excess whitespace off the beginning and end of a string\n *\n * @param {String} str The String to trim\n *\n * @returns {String} The String freed of excess whitespace\n */\nconst trim = (str) => str.trim ?\n str.trim() : str.replace(/^[\\s\\uFEFF\\xA0]+|[\\s\\uFEFF\\xA0]+$/g, '');\n\n/**\n * Iterate over an Array or an Object invoking a function for each item.\n *\n * If `obj` is an Array callback will be called passing\n * the value, index, and complete array for each item.\n *\n * If 'obj' is an Object callback will be called passing\n * the value, key, and complete object for each property.\n *\n * @param {Object|Array} obj The object to iterate\n * @param {Function} fn The callback to invoke for each item\n *\n * @param {Boolean} [allOwnKeys = false]\n * @returns {void}\n */\nfunction forEach(obj, fn, {allOwnKeys = false} = {}) {\n // Don't bother if no value provided\n if (obj === null || typeof obj === 'undefined') {\n return;\n }\n\n let i;\n let l;\n\n // Force an array if not already something iterable\n if (typeof obj !== 'object') {\n /*eslint no-param-reassign:0*/\n obj = [obj];\n }\n\n if (isArray(obj)) {\n // Iterate over array values\n for (i = 0, l = obj.length; i < l; i++) {\n fn.call(null, obj[i], i, obj);\n }\n } else {\n // Iterate over object keys\n const keys = allOwnKeys ? Object.getOwnPropertyNames(obj) : Object.keys(obj);\n const len = keys.length;\n let key;\n\n for (i = 0; i < len; i++) {\n key = keys[i];\n fn.call(null, obj[key], key, obj);\n }\n }\n}\n\n/**\n * Accepts varargs expecting each argument to be an object, then\n * immutably merges the properties of each object and returns result.\n *\n * When multiple objects contain the same key the later object in\n * the arguments list will take precedence.\n *\n * Example:\n *\n * ```js\n * var result = merge({foo: 123}, {foo: 456});\n * console.log(result.foo); // outputs 456\n * ```\n *\n * @param {Object} obj1 Object to merge\n *\n * @returns {Object} Result of all merge properties\n */\nfunction merge(/* obj1, obj2, obj3, ... */) {\n const result = {};\n const assignValue = (val, key) => {\n if (isPlainObject(result[key]) && isPlainObject(val)) {\n result[key] = merge(result[key], val);\n } else if (isPlainObject(val)) {\n result[key] = merge({}, val);\n } else if (isArray(val)) {\n result[key] = val.slice();\n } else {\n result[key] = val;\n }\n }\n\n for (let i = 0, l = arguments.length; i < l; i++) {\n arguments[i] && forEach(arguments[i], assignValue);\n }\n return result;\n}\n\n/**\n * Extends object a by mutably adding to it the properties of object b.\n *\n * @param {Object} a The object to be extended\n * @param {Object} b The object to copy properties from\n * @param {Object} thisArg The object to bind function to\n *\n * @param {Boolean} [allOwnKeys]\n * @returns {Object} The resulting value of object a\n */\nconst extend = (a, b, thisArg, {allOwnKeys}= {}) => {\n forEach(b, (val, key) => {\n if (thisArg && isFunction(val)) {\n a[key] = bind(val, thisArg);\n } else {\n a[key] = val;\n }\n }, {allOwnKeys});\n return a;\n}\n\n/**\n * Remove byte order marker. This catches EF BB BF (the UTF-8 BOM)\n *\n * @param {string} content with BOM\n *\n * @returns {string} content value without BOM\n */\nconst stripBOM = (content) => {\n if (content.charCodeAt(0) === 0xFEFF) {\n content = content.slice(1);\n }\n return content;\n}\n\n/**\n * Inherit the prototype methods from one constructor into another\n * @param {function} constructor\n * @param {function} superConstructor\n * @param {object} [props]\n * @param {object} [descriptors]\n *\n * @returns {void}\n */\nconst inherits = (constructor, superConstructor, props, descriptors) => {\n constructor.prototype = Object.create(superConstructor.prototype, descriptors);\n constructor.prototype.constructor = constructor;\n Object.defineProperty(constructor, 'super', {\n value: superConstructor.prototype\n });\n props && Object.assign(constructor.prototype, props);\n}\n\n/**\n * Resolve object with deep prototype chain to a flat object\n * @param {Object} sourceObj source object\n * @param {Object} [destObj]\n * @param {Function|Boolean} [filter]\n * @param {Function} [propFilter]\n *\n * @returns {Object}\n */\nconst toFlatObject = (sourceObj, destObj, filter, propFilter) => {\n let props;\n let i;\n let prop;\n const merged = {};\n\n destObj = destObj || {};\n // eslint-disable-next-line no-eq-null,eqeqeq\n if (sourceObj == null) return destObj;\n\n do {\n props = Object.getOwnPropertyNames(sourceObj);\n i = props.length;\n while (i-- > 0) {\n prop = props[i];\n if ((!propFilter || propFilter(prop, sourceObj, destObj)) && !merged[prop]) {\n destObj[prop] = sourceObj[prop];\n merged[prop] = true;\n }\n }\n sourceObj = filter !== false && getPrototypeOf(sourceObj);\n } while (sourceObj && (!filter || filter(sourceObj, destObj)) && sourceObj !== Object.prototype);\n\n return destObj;\n}\n\n/**\n * Determines whether a string ends with the characters of a specified string\n *\n * @param {String} str\n * @param {String} searchString\n * @param {Number} [position= 0]\n *\n * @returns {boolean}\n */\nconst endsWith = (str, searchString, position) => {\n str = String(str);\n if (position === undefined || position > str.length) {\n position = str.length;\n }\n position -= searchString.length;\n const lastIndex = str.indexOf(searchString, position);\n return lastIndex !== -1 && lastIndex === position;\n}\n\n\n/**\n * Returns new array from array like object or null if failed\n *\n * @param {*} [thing]\n *\n * @returns {?Array}\n */\nconst toArray = (thing) => {\n if (!thing) return null;\n if (isArray(thing)) return thing;\n let i = thing.length;\n if (!isNumber(i)) return null;\n const arr = new Array(i);\n while (i-- > 0) {\n arr[i] = thing[i];\n }\n return arr;\n}\n\n/**\n * Checking if the Uint8Array exists and if it does, it returns a function that checks if the\n * thing passed in is an instance of Uint8Array\n *\n * @param {TypedArray}\n *\n * @returns {Array}\n */\n// eslint-disable-next-line func-names\nconst isTypedArray = (TypedArray => {\n // eslint-disable-next-line func-names\n return thing => {\n return TypedArray && thing instanceof TypedArray;\n };\n})(typeof Uint8Array !== 'undefined' && getPrototypeOf(Uint8Array));\n\n/**\n * For each entry in the object, call the function with the key and value.\n *\n * @param {Object} obj - The object to iterate over.\n * @param {Function} fn - The function to call for each entry.\n *\n * @returns {void}\n */\nconst forEachEntry = (obj, fn) => {\n const generator = obj && obj[Symbol.iterator];\n\n const iterator = generator.call(obj);\n\n let result;\n\n while ((result = iterator.next()) && !result.done) {\n const pair = result.value;\n fn.call(obj, pair[0], pair[1]);\n }\n}\n\n/**\n * It takes a regular expression and a string, and returns an array of all the matches\n *\n * @param {string} regExp - The regular expression to match against.\n * @param {string} str - The string to search.\n *\n * @returns {Array}\n */\nconst matchAll = (regExp, str) => {\n let matches;\n const arr = [];\n\n while ((matches = regExp.exec(str)) !== null) {\n arr.push(matches);\n }\n\n return arr;\n}\n\n/* Checking if the kindOfTest function returns true when passed an HTMLFormElement. */\nconst isHTMLForm = kindOfTest('HTMLFormElement');\n\nconst toCamelCase = str => {\n return str.toLowerCase().replace(/[_-\\s]([a-z\\d])(\\w*)/g,\n function replacer(m, p1, p2) {\n return p1.toUpperCase() + p2;\n }\n );\n};\n\n/* Creating a function that will check if an object has a property. */\nconst hasOwnProperty = (({hasOwnProperty}) => (obj, prop) => hasOwnProperty.call(obj, prop))(Object.prototype);\n\n/**\n * Determine if a value is a RegExp object\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a RegExp object, otherwise false\n */\nconst isRegExp = kindOfTest('RegExp');\n\nconst reduceDescriptors = (obj, reducer) => {\n const descriptors = Object.getOwnPropertyDescriptors(obj);\n const reducedDescriptors = {};\n\n forEach(descriptors, (descriptor, name) => {\n if (reducer(descriptor, name, obj) !== false) {\n reducedDescriptors[name] = descriptor;\n }\n });\n\n Object.defineProperties(obj, reducedDescriptors);\n}\n\n/**\n * Makes all methods read-only\n * @param {Object} obj\n */\n\nconst freezeMethods = (obj) => {\n reduceDescriptors(obj, (descriptor, name) => {\n const value = obj[name];\n\n if (!isFunction(value)) return;\n\n descriptor.enumerable = false;\n\n if ('writable' in descriptor) {\n descriptor.writable = false;\n return;\n }\n\n if (!descriptor.set) {\n descriptor.set = () => {\n throw Error('Can not read-only method \\'' + name + '\\'');\n };\n }\n });\n}\n\nconst toObjectSet = (arrayOrString, delimiter) => {\n const obj = {};\n\n const define = (arr) => {\n arr.forEach(value => {\n obj[value] = true;\n });\n }\n\n isArray(arrayOrString) ? define(arrayOrString) : define(String(arrayOrString).split(delimiter));\n\n return obj;\n}\n\nconst noop = () => {}\n\nconst toFiniteNumber = (value, defaultValue) => {\n value = +value;\n return Number.isFinite(value) ? value : defaultValue;\n}\n\nexport default {\n isArray,\n isArrayBuffer,\n isBuffer,\n isFormData,\n isArrayBufferView,\n isString,\n isNumber,\n isBoolean,\n isObject,\n isPlainObject,\n isUndefined,\n isDate,\n isFile,\n isBlob,\n isRegExp,\n isFunction,\n isStream,\n isURLSearchParams,\n isTypedArray,\n isFileList,\n forEach,\n merge,\n extend,\n trim,\n stripBOM,\n inherits,\n toFlatObject,\n kindOf,\n kindOfTest,\n endsWith,\n toArray,\n forEachEntry,\n matchAll,\n isHTMLForm,\n hasOwnProperty,\n hasOwnProp: hasOwnProperty, // an alias to avoid ESLint no-prototype-builtins detection\n reduceDescriptors,\n freezeMethods,\n toObjectSet,\n toCamelCase,\n noop,\n toFiniteNumber\n};\n","'use strict';\n\nimport utils from '../utils.js';\n\n/**\n * Create an Error with the specified message, config, error code, request and response.\n *\n * @param {string} message The error message.\n * @param {string} [code] The error code (for example, 'ECONNABORTED').\n * @param {Object} [config] The config.\n * @param {Object} [request] The request.\n * @param {Object} [response] The response.\n *\n * @returns {Error} The created error.\n */\nfunction AxiosError(message, code, config, request, response) {\n Error.call(this);\n\n if (Error.captureStackTrace) {\n Error.captureStackTrace(this, this.constructor);\n } else {\n this.stack = (new Error()).stack;\n }\n\n this.message = message;\n this.name = 'AxiosError';\n code && (this.code = code);\n config && (this.config = config);\n request && (this.request = request);\n response && (this.response = response);\n}\n\nutils.inherits(AxiosError, Error, {\n toJSON: function toJSON() {\n return {\n // Standard\n message: this.message,\n name: this.name,\n // Microsoft\n description: this.description,\n number: this.number,\n // Mozilla\n fileName: this.fileName,\n lineNumber: this.lineNumber,\n columnNumber: this.columnNumber,\n stack: this.stack,\n // Axios\n config: this.config,\n code: this.code,\n status: this.response && this.response.status ? this.response.status : null\n };\n }\n});\n\nconst prototype = AxiosError.prototype;\nconst descriptors = {};\n\n[\n 'ERR_BAD_OPTION_VALUE',\n 'ERR_BAD_OPTION',\n 'ECONNABORTED',\n 'ETIMEDOUT',\n 'ERR_NETWORK',\n 'ERR_FR_TOO_MANY_REDIRECTS',\n 'ERR_DEPRECATED',\n 'ERR_BAD_RESPONSE',\n 'ERR_BAD_REQUEST',\n 'ERR_CANCELED',\n 'ERR_NOT_SUPPORT',\n 'ERR_INVALID_URL'\n// eslint-disable-next-line func-names\n].forEach(code => {\n descriptors[code] = {value: code};\n});\n\nObject.defineProperties(AxiosError, descriptors);\nObject.defineProperty(prototype, 'isAxiosError', {value: true});\n\n// eslint-disable-next-line func-names\nAxiosError.from = (error, code, config, request, response, customProps) => {\n const axiosError = Object.create(prototype);\n\n utils.toFlatObject(error, axiosError, function filter(obj) {\n return obj !== Error.prototype;\n }, prop => {\n return prop !== 'isAxiosError';\n });\n\n AxiosError.call(axiosError, error.message, code, config, request, response);\n\n axiosError.cause = error;\n\n axiosError.name = error.name;\n\n customProps && Object.assign(axiosError, customProps);\n\n return axiosError;\n};\n\nexport default AxiosError;\n","/* eslint-env browser */\nmodule.exports = typeof self == 'object' ? self.FormData : window.FormData;\n","'use strict';\n\nimport utils from '../utils.js';\nimport AxiosError from '../core/AxiosError.js';\nimport envFormData from '../env/classes/FormData.js';\n\n/**\n * Determines if the given thing is a array or js object.\n *\n * @param {string} thing - The object or array to be visited.\n *\n * @returns {boolean}\n */\nfunction isVisitable(thing) {\n return utils.isPlainObject(thing) || utils.isArray(thing);\n}\n\n/**\n * It removes the brackets from the end of a string\n *\n * @param {string} key - The key of the parameter.\n *\n * @returns {string} the key without the brackets.\n */\nfunction removeBrackets(key) {\n return utils.endsWith(key, '[]') ? key.slice(0, -2) : key;\n}\n\n/**\n * It takes a path, a key, and a boolean, and returns a string\n *\n * @param {string} path - The path to the current key.\n * @param {string} key - The key of the current object being iterated over.\n * @param {string} dots - If true, the key will be rendered with dots instead of brackets.\n *\n * @returns {string} The path to the current key.\n */\nfunction renderKey(path, key, dots) {\n if (!path) return key;\n return path.concat(key).map(function each(token, i) {\n // eslint-disable-next-line no-param-reassign\n token = removeBrackets(token);\n return !dots && i ? '[' + token + ']' : token;\n }).join(dots ? '.' : '');\n}\n\n/**\n * If the array is an array and none of its elements are visitable, then it's a flat array.\n *\n * @param {Array} arr - The array to check\n *\n * @returns {boolean}\n */\nfunction isFlatArray(arr) {\n return utils.isArray(arr) && !arr.some(isVisitable);\n}\n\nconst predicates = utils.toFlatObject(utils, {}, null, function filter(prop) {\n return /^is[A-Z]/.test(prop);\n});\n\n/**\n * If the thing is a FormData object, return true, otherwise return false.\n *\n * @param {unknown} thing - The thing to check.\n *\n * @returns {boolean}\n */\nfunction isSpecCompliant(thing) {\n return thing && utils.isFunction(thing.append) && thing[Symbol.toStringTag] === 'FormData' && thing[Symbol.iterator];\n}\n\n/**\n * Convert a data object to FormData\n *\n * @param {Object} obj\n * @param {?Object} [formData]\n * @param {?Object} [options]\n * @param {Function} [options.visitor]\n * @param {Boolean} [options.metaTokens = true]\n * @param {Boolean} [options.dots = false]\n * @param {?Boolean} [options.indexes = false]\n *\n * @returns {Object}\n **/\n\n/**\n * It converts an object into a FormData object\n *\n * @param {Object} obj - The object to convert to form data.\n * @param {string} formData - The FormData object to append to.\n * @param {Object} options\n *\n * @returns\n */\nfunction toFormData(obj, formData, options) {\n if (!utils.isObject(obj)) {\n throw new TypeError('target must be an object');\n }\n\n // eslint-disable-next-line no-param-reassign\n formData = formData || new (envFormData || FormData)();\n\n // eslint-disable-next-line no-param-reassign\n options = utils.toFlatObject(options, {\n metaTokens: true,\n dots: false,\n indexes: false\n }, false, function defined(option, source) {\n // eslint-disable-next-line no-eq-null,eqeqeq\n return !utils.isUndefined(source[option]);\n });\n\n const metaTokens = options.metaTokens;\n // eslint-disable-next-line no-use-before-define\n const visitor = options.visitor || defaultVisitor;\n const dots = options.dots;\n const indexes = options.indexes;\n const _Blob = options.Blob || typeof Blob !== 'undefined' && Blob;\n const useBlob = _Blob && isSpecCompliant(formData);\n\n if (!utils.isFunction(visitor)) {\n throw new TypeError('visitor must be a function');\n }\n\n function convertValue(value) {\n if (value === null) return '';\n\n if (utils.isDate(value)) {\n return value.toISOString();\n }\n\n if (!useBlob && utils.isBlob(value)) {\n throw new AxiosError('Blob is not supported. Use a Buffer instead.');\n }\n\n if (utils.isArrayBuffer(value) || utils.isTypedArray(value)) {\n return useBlob && typeof Blob === 'function' ? new Blob([value]) : Buffer.from(value);\n }\n\n return value;\n }\n\n /**\n * Default visitor.\n *\n * @param {*} value\n * @param {String|Number} key\n * @param {Array} path\n * @this {FormData}\n *\n * @returns {boolean} return true to visit the each prop of the value recursively\n */\n function defaultVisitor(value, key, path) {\n let arr = value;\n\n if (value && !path && typeof value === 'object') {\n if (utils.endsWith(key, '{}')) {\n // eslint-disable-next-line no-param-reassign\n key = metaTokens ? key : key.slice(0, -2);\n // eslint-disable-next-line no-param-reassign\n value = JSON.stringify(value);\n } else if (\n (utils.isArray(value) && isFlatArray(value)) ||\n (utils.isFileList(value) || utils.endsWith(key, '[]') && (arr = utils.toArray(value))\n )) {\n // eslint-disable-next-line no-param-reassign\n key = removeBrackets(key);\n\n arr.forEach(function each(el, index) {\n !utils.isUndefined(el) && formData.append(\n // eslint-disable-next-line no-nested-ternary\n indexes === true ? renderKey([key], index, dots) : (indexes === null ? key : key + '[]'),\n convertValue(el)\n );\n });\n return false;\n }\n }\n\n if (isVisitable(value)) {\n return true;\n }\n\n formData.append(renderKey(path, key, dots), convertValue(value));\n\n return false;\n }\n\n const stack = [];\n\n const exposedHelpers = Object.assign(predicates, {\n defaultVisitor,\n convertValue,\n isVisitable\n });\n\n function build(value, path) {\n if (utils.isUndefined(value)) return;\n\n if (stack.indexOf(value) !== -1) {\n throw Error('Circular reference detected in ' + path.join('.'));\n }\n\n stack.push(value);\n\n utils.forEach(value, function each(el, key) {\n const result = !utils.isUndefined(el) && visitor.call(\n formData, el, utils.isString(key) ? key.trim() : key, path, exposedHelpers\n );\n\n if (result === true) {\n build(el, path ? path.concat(key) : [key]);\n }\n });\n\n stack.pop();\n }\n\n if (!utils.isObject(obj)) {\n throw new TypeError('data must be an object');\n }\n\n build(obj);\n\n return formData;\n}\n\nexport default toFormData;\n","'use strict';\n\nimport toFormData from './toFormData.js';\n\n/**\n * It encodes a string by replacing all characters that are not in the unreserved set with\n * their percent-encoded equivalents\n *\n * @param {string} str - The string to encode.\n *\n * @returns {string} The encoded string.\n */\nfunction encode(str) {\n const charMap = {\n '!': '%21',\n \"'\": '%27',\n '(': '%28',\n ')': '%29',\n '~': '%7E',\n '%20': '+',\n '%00': '\\x00'\n };\n return encodeURIComponent(str).replace(/[!'()~]|%20|%00/g, function replacer(match) {\n return charMap[match];\n });\n}\n\n/**\n * It takes a params object and converts it to a FormData object\n *\n * @param {Object} params - The parameters to be converted to a FormData object.\n * @param {Object} options - The options object passed to the Axios constructor.\n *\n * @returns {void}\n */\nfunction AxiosURLSearchParams(params, options) {\n this._pairs = [];\n\n params && toFormData(params, this, options);\n}\n\nconst prototype = AxiosURLSearchParams.prototype;\n\nprototype.append = function append(name, value) {\n this._pairs.push([name, value]);\n};\n\nprototype.toString = function toString(encoder) {\n const _encode = encoder ? function(value) {\n return encoder.call(this, value, encode);\n } : encode;\n\n return this._pairs.map(function each(pair) {\n return _encode(pair[0]) + '=' + _encode(pair[1]);\n }, '').join('&');\n};\n\nexport default AxiosURLSearchParams;\n","'use strict';\n\nimport utils from '../utils.js';\nimport AxiosURLSearchParams from '../helpers/AxiosURLSearchParams.js';\n\n/**\n * It replaces all instances of the characters `:`, `$`, `,`, `+`, `[`, and `]` with their\n * URI encoded counterparts\n *\n * @param {string} val The value to be encoded.\n *\n * @returns {string} The encoded value.\n */\nfunction encode(val) {\n return encodeURIComponent(val).\n replace(/%3A/gi, ':').\n replace(/%24/g, '$').\n replace(/%2C/gi, ',').\n replace(/%20/g, '+').\n replace(/%5B/gi, '[').\n replace(/%5D/gi, ']');\n}\n\n/**\n * Build a URL by appending params to the end\n *\n * @param {string} url The base of the url (e.g., http://www.google.com)\n * @param {object} [params] The params to be appended\n * @param {?object} options\n *\n * @returns {string} The formatted url\n */\nexport default function buildURL(url, params, options) {\n /*eslint no-param-reassign:0*/\n if (!params) {\n return url;\n }\n\n const hashmarkIndex = url.indexOf('#');\n\n if (hashmarkIndex !== -1) {\n url = url.slice(0, hashmarkIndex);\n }\n\n const _encode = options && options.encode || encode;\n\n const serializerParams = utils.isURLSearchParams(params) ?\n params.toString() :\n new AxiosURLSearchParams(params, options).toString(_encode);\n\n if (serializerParams) {\n url += (url.indexOf('?') === -1 ? '?' : '&') + serializerParams;\n }\n\n return url;\n}\n","'use strict';\n\nimport utils from './../utils.js';\n\nclass InterceptorManager {\n constructor() {\n this.handlers = [];\n }\n\n /**\n * Add a new interceptor to the stack\n *\n * @param {Function} fulfilled The function to handle `then` for a `Promise`\n * @param {Function} rejected The function to handle `reject` for a `Promise`\n *\n * @return {Number} An ID used to remove interceptor later\n */\n use(fulfilled, rejected, options) {\n this.handlers.push({\n fulfilled,\n rejected,\n synchronous: options ? options.synchronous : false,\n runWhen: options ? options.runWhen : null\n });\n return this.handlers.length - 1;\n }\n\n /**\n * Remove an interceptor from the stack\n *\n * @param {Number} id The ID that was returned by `use`\n *\n * @returns {Boolean} `true` if the interceptor was removed, `false` otherwise\n */\n eject(id) {\n if (this.handlers[id]) {\n this.handlers[id] = null;\n }\n }\n\n /**\n * Clear all interceptors from the stack\n *\n * @returns {void}\n */\n clear() {\n if (this.handlers) {\n this.handlers = [];\n }\n }\n\n /**\n * Iterate over all the registered interceptors\n *\n * This method is particularly useful for skipping over any\n * interceptors that may have become `null` calling `eject`.\n *\n * @param {Function} fn The function to call for each interceptor\n *\n * @returns {void}\n */\n forEach(fn) {\n utils.forEach(this.handlers, function forEachHandler(h) {\n if (h !== null) {\n fn(h);\n }\n });\n }\n}\n\nexport default InterceptorManager;\n","'use strict';\n\nexport default {\n silentJSONParsing: true,\n forcedJSONParsing: true,\n clarifyTimeoutError: false\n};\n","'use strict';\n\nimport AxiosURLSearchParams from '../../../helpers/AxiosURLSearchParams.js';\nexport default typeof URLSearchParams !== 'undefined' ? URLSearchParams : AxiosURLSearchParams;\n","'use strict';\n\nexport default FormData;\n","import URLSearchParams from './classes/URLSearchParams.js'\nimport FormData from './classes/FormData.js'\n\n/**\n * Determine if we're running in a standard browser environment\n *\n * This allows axios to run in a web worker, and react-native.\n * Both environments support XMLHttpRequest, but not fully standard globals.\n *\n * web workers:\n * typeof window -> undefined\n * typeof document -> undefined\n *\n * react-native:\n * navigator.product -> 'ReactNative'\n * nativescript\n * navigator.product -> 'NativeScript' or 'NS'\n *\n * @returns {boolean}\n */\nconst isStandardBrowserEnv = (() => {\n let product;\n if (typeof navigator !== 'undefined' && (\n (product = navigator.product) === 'ReactNative' ||\n product === 'NativeScript' ||\n product === 'NS')\n ) {\n return false;\n }\n\n return typeof window !== 'undefined' && typeof document !== 'undefined';\n})();\n\nexport default {\n isBrowser: true,\n classes: {\n URLSearchParams,\n FormData,\n Blob\n },\n isStandardBrowserEnv,\n protocols: ['http', 'https', 'file', 'blob', 'url', 'data']\n};\n","'use strict';\n\nimport utils from '../utils.js';\n\n/**\n * It takes a string like `foo[x][y][z]` and returns an array like `['foo', 'x', 'y', 'z']\n *\n * @param {string} name - The name of the property to get.\n *\n * @returns An array of strings.\n */\nfunction parsePropPath(name) {\n // foo[x][y][z]\n // foo.x.y.z\n // foo-x-y-z\n // foo x y z\n return utils.matchAll(/\\w+|\\[(\\w*)]/g, name).map(match => {\n return match[0] === '[]' ? '' : match[1] || match[0];\n });\n}\n\n/**\n * Convert an array to an object.\n *\n * @param {Array} arr - The array to convert to an object.\n *\n * @returns An object with the same keys and values as the array.\n */\nfunction arrayToObject(arr) {\n const obj = {};\n const keys = Object.keys(arr);\n let i;\n const len = keys.length;\n let key;\n for (i = 0; i < len; i++) {\n key = keys[i];\n obj[key] = arr[key];\n }\n return obj;\n}\n\n/**\n * It takes a FormData object and returns a JavaScript object\n *\n * @param {string} formData The FormData object to convert to JSON.\n *\n * @returns {Object | null} The converted object.\n */\nfunction formDataToJSON(formData) {\n function buildPath(path, value, target, index) {\n let name = path[index++];\n const isNumericKey = Number.isFinite(+name);\n const isLast = index >= path.length;\n name = !name && utils.isArray(target) ? target.length : name;\n\n if (isLast) {\n if (utils.hasOwnProp(target, name)) {\n target[name] = [target[name], value];\n } else {\n target[name] = value;\n }\n\n return !isNumericKey;\n }\n\n if (!target[name] || !utils.isObject(target[name])) {\n target[name] = [];\n }\n\n const result = buildPath(path, value, target[name], index);\n\n if (result && utils.isArray(target[name])) {\n target[name] = arrayToObject(target[name]);\n }\n\n return !isNumericKey;\n }\n\n if (utils.isFormData(formData) && utils.isFunction(formData.entries)) {\n const obj = {};\n\n utils.forEachEntry(formData, (name, value) => {\n buildPath(parsePropPath(name), value, obj, 0);\n });\n\n return obj;\n }\n\n return null;\n}\n\nexport default formDataToJSON;\n","'use strict';\n\nimport utils from './../utils.js';\nimport platform from '../platform/index.js';\n\nexport default platform.isStandardBrowserEnv ?\n\n// Standard browser envs support document.cookie\n (function standardBrowserEnv() {\n return {\n write: function write(name, value, expires, path, domain, secure) {\n const cookie = [];\n cookie.push(name + '=' + encodeURIComponent(value));\n\n if (utils.isNumber(expires)) {\n cookie.push('expires=' + new Date(expires).toGMTString());\n }\n\n if (utils.isString(path)) {\n cookie.push('path=' + path);\n }\n\n if (utils.isString(domain)) {\n cookie.push('domain=' + domain);\n }\n\n if (secure === true) {\n cookie.push('secure');\n }\n\n document.cookie = cookie.join('; ');\n },\n\n read: function read(name) {\n const match = document.cookie.match(new RegExp('(^|;\\\\s*)(' + name + ')=([^;]*)'));\n return (match ? decodeURIComponent(match[3]) : null);\n },\n\n remove: function remove(name) {\n this.write(name, '', Date.now() - 86400000);\n }\n };\n })() :\n\n// Non standard browser env (web workers, react-native) lack needed support.\n (function nonStandardBrowserEnv() {\n return {\n write: function write() {},\n read: function read() { return null; },\n remove: function remove() {}\n };\n })();\n","'use strict';\n\nimport isAbsoluteURL from '../helpers/isAbsoluteURL.js';\nimport combineURLs from '../helpers/combineURLs.js';\n\n/**\n * Creates a new URL by combining the baseURL with the requestedURL,\n * only when the requestedURL is not already an absolute URL.\n * If the requestURL is absolute, this function returns the requestedURL untouched.\n *\n * @param {string} baseURL The base URL\n * @param {string} requestedURL Absolute or relative URL to combine\n *\n * @returns {string} The combined full path\n */\nexport default function buildFullPath(baseURL, requestedURL) {\n if (baseURL && !isAbsoluteURL(requestedURL)) {\n return combineURLs(baseURL, requestedURL);\n }\n return requestedURL;\n}\n","'use strict';\n\n/**\n * Determines whether the specified URL is absolute\n *\n * @param {string} url The URL to test\n *\n * @returns {boolean} True if the specified URL is absolute, otherwise false\n */\nexport default function isAbsoluteURL(url) {\n // A URL is considered absolute if it begins with \"://\" or \"//\" (protocol-relative URL).\n // RFC 3986 defines scheme name as a sequence of characters beginning with a letter and followed\n // by any combination of letters, digits, plus, period, or hyphen.\n return /^([a-z][a-z\\d+\\-.]*:)?\\/\\//i.test(url);\n}\n","'use strict';\n\n/**\n * Creates a new URL by combining the specified URLs\n *\n * @param {string} baseURL The base URL\n * @param {string} relativeURL The relative URL\n *\n * @returns {string} The combined URL\n */\nexport default function combineURLs(baseURL, relativeURL) {\n return relativeURL\n ? baseURL.replace(/\\/+$/, '') + '/' + relativeURL.replace(/^\\/+/, '')\n : baseURL;\n}\n","'use strict';\n\nimport utils from './../utils.js';\nimport platform from '../platform/index.js';\n\nexport default platform.isStandardBrowserEnv ?\n\n// Standard browser envs have full support of the APIs needed to test\n// whether the request URL is of the same origin as current location.\n (function standardBrowserEnv() {\n const msie = /(msie|trident)/i.test(navigator.userAgent);\n const urlParsingNode = document.createElement('a');\n let originURL;\n\n /**\n * Parse a URL to discover it's components\n *\n * @param {String} url The URL to be parsed\n * @returns {Object}\n */\n function resolveURL(url) {\n let href = url;\n\n if (msie) {\n // IE needs attribute set twice to normalize properties\n urlParsingNode.setAttribute('href', href);\n href = urlParsingNode.href;\n }\n\n urlParsingNode.setAttribute('href', href);\n\n // urlParsingNode provides the UrlUtils interface - http://url.spec.whatwg.org/#urlutils\n return {\n href: urlParsingNode.href,\n protocol: urlParsingNode.protocol ? urlParsingNode.protocol.replace(/:$/, '') : '',\n host: urlParsingNode.host,\n search: urlParsingNode.search ? urlParsingNode.search.replace(/^\\?/, '') : '',\n hash: urlParsingNode.hash ? urlParsingNode.hash.replace(/^#/, '') : '',\n hostname: urlParsingNode.hostname,\n port: urlParsingNode.port,\n pathname: (urlParsingNode.pathname.charAt(0) === '/') ?\n urlParsingNode.pathname :\n '/' + urlParsingNode.pathname\n };\n }\n\n originURL = resolveURL(window.location.href);\n\n /**\n * Determine if a URL shares the same origin as the current location\n *\n * @param {String} requestURL The URL to test\n * @returns {boolean} True if URL shares the same origin, otherwise false\n */\n return function isURLSameOrigin(requestURL) {\n const parsed = (utils.isString(requestURL)) ? resolveURL(requestURL) : requestURL;\n return (parsed.protocol === originURL.protocol &&\n parsed.host === originURL.host);\n };\n })() :\n\n // Non standard browser envs (web workers, react-native) lack needed support.\n (function nonStandardBrowserEnv() {\n return function isURLSameOrigin() {\n return true;\n };\n })();\n","'use strict';\n\nimport AxiosError from '../core/AxiosError.js';\nimport utils from '../utils.js';\n\n/**\n * A `CanceledError` is an object that is thrown when an operation is canceled.\n *\n * @param {string=} message The message.\n * @param {Object=} config The config.\n * @param {Object=} request The request.\n *\n * @returns {CanceledError} The created error.\n */\nfunction CanceledError(message, config, request) {\n // eslint-disable-next-line no-eq-null,eqeqeq\n AxiosError.call(this, message == null ? 'canceled' : message, AxiosError.ERR_CANCELED, config, request);\n this.name = 'CanceledError';\n}\n\nutils.inherits(CanceledError, AxiosError, {\n __CANCEL__: true\n});\n\nexport default CanceledError;\n","'use strict';\n\nimport utils from './../utils.js';\n\n// RawAxiosHeaders whose duplicates are ignored by node\n// c.f. https://nodejs.org/api/http.html#http_message_headers\nconst ignoreDuplicateOf = utils.toObjectSet([\n 'age', 'authorization', 'content-length', 'content-type', 'etag',\n 'expires', 'from', 'host', 'if-modified-since', 'if-unmodified-since',\n 'last-modified', 'location', 'max-forwards', 'proxy-authorization',\n 'referer', 'retry-after', 'user-agent'\n]);\n\n/**\n * Parse headers into an object\n *\n * ```\n * Date: Wed, 27 Aug 2014 08:58:49 GMT\n * Content-Type: application/json\n * Connection: keep-alive\n * Transfer-Encoding: chunked\n * ```\n *\n * @param {String} rawHeaders Headers needing to be parsed\n *\n * @returns {Object} Headers parsed into an object\n */\nexport default rawHeaders => {\n const parsed = {};\n let key;\n let val;\n let i;\n\n rawHeaders && rawHeaders.split('\\n').forEach(function parser(line) {\n i = line.indexOf(':');\n key = line.substring(0, i).trim().toLowerCase();\n val = line.substring(i + 1).trim();\n\n if (!key || (parsed[key] && ignoreDuplicateOf[key])) {\n return;\n }\n\n if (key === 'set-cookie') {\n if (parsed[key]) {\n parsed[key].push(val);\n } else {\n parsed[key] = [val];\n }\n } else {\n parsed[key] = parsed[key] ? parsed[key] + ', ' + val : val;\n }\n });\n\n return parsed;\n};\n","'use strict';\n\nimport utils from '../utils.js';\nimport parseHeaders from '../helpers/parseHeaders.js';\n\nconst $internals = Symbol('internals');\nconst $defaults = Symbol('defaults');\n\nfunction normalizeHeader(header) {\n return header && String(header).trim().toLowerCase();\n}\n\nfunction normalizeValue(value) {\n if (value === false || value == null) {\n return value;\n }\n\n return String(value);\n}\n\nfunction parseTokens(str) {\n const tokens = Object.create(null);\n const tokensRE = /([^\\s,;=]+)\\s*(?:=\\s*([^,;]+))?/g;\n let match;\n\n while ((match = tokensRE.exec(str))) {\n tokens[match[1]] = match[2];\n }\n\n return tokens;\n}\n\nfunction matchHeaderValue(context, value, header, filter) {\n if (utils.isFunction(filter)) {\n return filter.call(this, value, header);\n }\n\n if (!utils.isString(value)) return;\n\n if (utils.isString(filter)) {\n return value.indexOf(filter) !== -1;\n }\n\n if (utils.isRegExp(filter)) {\n return filter.test(value);\n }\n}\n\nfunction formatHeader(header) {\n return header.trim()\n .toLowerCase().replace(/([a-z\\d])(\\w*)/g, (w, char, str) => {\n return char.toUpperCase() + str;\n });\n}\n\nfunction buildAccessors(obj, header) {\n const accessorName = utils.toCamelCase(' ' + header);\n\n ['get', 'set', 'has'].forEach(methodName => {\n Object.defineProperty(obj, methodName + accessorName, {\n value: function(arg1, arg2, arg3) {\n return this[methodName].call(this, header, arg1, arg2, arg3);\n },\n configurable: true\n });\n });\n}\n\nfunction findKey(obj, key) {\n key = key.toLowerCase();\n const keys = Object.keys(obj);\n let i = keys.length;\n let _key;\n while (i-- > 0) {\n _key = keys[i];\n if (key === _key.toLowerCase()) {\n return _key;\n }\n }\n return null;\n}\n\nfunction AxiosHeaders(headers, defaults) {\n headers && this.set(headers);\n this[$defaults] = defaults || null;\n}\n\nObject.assign(AxiosHeaders.prototype, {\n set: function(header, valueOrRewrite, rewrite) {\n const self = this;\n\n function setHeader(_value, _header, _rewrite) {\n const lHeader = normalizeHeader(_header);\n\n if (!lHeader) {\n throw new Error('header name must be a non-empty string');\n }\n\n const key = findKey(self, lHeader);\n\n if (key && _rewrite !== true && (self[key] === false || _rewrite === false)) {\n return;\n }\n\n if (utils.isArray(_value)) {\n _value = _value.map(normalizeValue);\n } else {\n _value = normalizeValue(_value);\n }\n\n self[key || _header] = _value;\n }\n\n if (utils.isPlainObject(header)) {\n utils.forEach(header, (_value, _header) => {\n setHeader(_value, _header, valueOrRewrite);\n });\n } else {\n setHeader(valueOrRewrite, header, rewrite);\n }\n\n return this;\n },\n\n get: function(header, parser) {\n header = normalizeHeader(header);\n\n if (!header) return undefined;\n\n const key = findKey(this, header);\n\n if (key) {\n const value = this[key];\n\n if (!parser) {\n return value;\n }\n\n if (parser === true) {\n return parseTokens(value);\n }\n\n if (utils.isFunction(parser)) {\n return parser.call(this, value, key);\n }\n\n if (utils.isRegExp(parser)) {\n return parser.exec(value);\n }\n\n throw new TypeError('parser must be boolean|regexp|function');\n }\n },\n\n has: function(header, matcher) {\n header = normalizeHeader(header);\n\n if (header) {\n const key = findKey(this, header);\n\n return !!(key && (!matcher || matchHeaderValue(this, this[key], key, matcher)));\n }\n\n return false;\n },\n\n delete: function(header, matcher) {\n const self = this;\n let deleted = false;\n\n function deleteHeader(_header) {\n _header = normalizeHeader(_header);\n\n if (_header) {\n const key = findKey(self, _header);\n\n if (key && (!matcher || matchHeaderValue(self, self[key], key, matcher))) {\n delete self[key];\n\n deleted = true;\n }\n }\n }\n\n if (utils.isArray(header)) {\n header.forEach(deleteHeader);\n } else {\n deleteHeader(header);\n }\n\n return deleted;\n },\n\n clear: function() {\n return Object.keys(this).forEach(this.delete.bind(this));\n },\n\n normalize: function(format) {\n const self = this;\n const headers = {};\n\n utils.forEach(this, (value, header) => {\n const key = findKey(headers, header);\n\n if (key) {\n self[key] = normalizeValue(value);\n delete self[header];\n return;\n }\n\n const normalized = format ? formatHeader(header) : String(header).trim();\n\n if (normalized !== header) {\n delete self[header];\n }\n\n self[normalized] = normalizeValue(value);\n\n headers[normalized] = true;\n });\n\n return this;\n },\n\n toJSON: function() {\n const obj = Object.create(null);\n\n utils.forEach(Object.assign({}, this[$defaults] || null, this),\n (value, header) => {\n if (value == null || value === false) return;\n obj[header] = utils.isArray(value) ? value.join(', ') : value;\n });\n\n return obj;\n }\n});\n\nObject.assign(AxiosHeaders, {\n from: function(thing) {\n if (utils.isString(thing)) {\n return new this(parseHeaders(thing));\n }\n return thing instanceof this ? thing : new this(thing);\n },\n\n accessor: function(header) {\n const internals = this[$internals] = (this[$internals] = {\n accessors: {}\n });\n\n const accessors = internals.accessors;\n const prototype = this.prototype;\n\n function defineAccessor(_header) {\n const lHeader = normalizeHeader(_header);\n\n if (!accessors[lHeader]) {\n buildAccessors(prototype, _header);\n accessors[lHeader] = true;\n }\n }\n\n utils.isArray(header) ? header.forEach(defineAccessor) : defineAccessor(header);\n\n return this;\n }\n});\n\nAxiosHeaders.accessor(['Content-Type', 'Content-Length', 'Accept', 'Accept-Encoding', 'User-Agent']);\n\nutils.freezeMethods(AxiosHeaders.prototype);\nutils.freezeMethods(AxiosHeaders);\n\nexport default AxiosHeaders;\n","'use strict';\n\nimport utils from './../utils.js';\nimport settle from './../core/settle.js';\nimport cookies from './../helpers/cookies.js';\nimport buildURL from './../helpers/buildURL.js';\nimport buildFullPath from '../core/buildFullPath.js';\nimport isURLSameOrigin from './../helpers/isURLSameOrigin.js';\nimport transitionalDefaults from '../defaults/transitional.js';\nimport AxiosError from '../core/AxiosError.js';\nimport CanceledError from '../cancel/CanceledError.js';\nimport parseProtocol from '../helpers/parseProtocol.js';\nimport platform from '../platform/index.js';\nimport AxiosHeaders from '../core/AxiosHeaders.js';\nimport speedometer from '../helpers/speedometer.js';\n\nfunction progressEventReducer(listener, isDownloadStream) {\n let bytesNotified = 0;\n const _speedometer = speedometer(50, 250);\n\n return e => {\n const loaded = e.loaded;\n const total = e.lengthComputable ? e.total : undefined;\n const progressBytes = loaded - bytesNotified;\n const rate = _speedometer(progressBytes);\n const inRange = loaded <= total;\n\n bytesNotified = loaded;\n\n const data = {\n loaded,\n total,\n progress: total ? (loaded / total) : undefined,\n bytes: progressBytes,\n rate: rate ? rate : undefined,\n estimated: rate && total && inRange ? (total - loaded) / rate : undefined\n };\n\n data[isDownloadStream ? 'download' : 'upload'] = true;\n\n listener(data);\n };\n}\n\nexport default function xhrAdapter(config) {\n return new Promise(function dispatchXhrRequest(resolve, reject) {\n let requestData = config.data;\n const requestHeaders = AxiosHeaders.from(config.headers).normalize();\n const responseType = config.responseType;\n let onCanceled;\n function done() {\n if (config.cancelToken) {\n config.cancelToken.unsubscribe(onCanceled);\n }\n\n if (config.signal) {\n config.signal.removeEventListener('abort', onCanceled);\n }\n }\n\n if (utils.isFormData(requestData) && platform.isStandardBrowserEnv) {\n requestHeaders.setContentType(false); // Let the browser set it\n }\n\n let request = new XMLHttpRequest();\n\n // HTTP basic authentication\n if (config.auth) {\n const username = config.auth.username || '';\n const password = config.auth.password ? unescape(encodeURIComponent(config.auth.password)) : '';\n requestHeaders.set('Authorization', 'Basic ' + btoa(username + ':' + password));\n }\n\n const fullPath = buildFullPath(config.baseURL, config.url);\n\n request.open(config.method.toUpperCase(), buildURL(fullPath, config.params, config.paramsSerializer), true);\n\n // Set the request timeout in MS\n request.timeout = config.timeout;\n\n function onloadend() {\n if (!request) {\n return;\n }\n // Prepare the response\n const responseHeaders = AxiosHeaders.from(\n 'getAllResponseHeaders' in request && request.getAllResponseHeaders()\n );\n const responseData = !responseType || responseType === 'text' || responseType === 'json' ?\n request.responseText : request.response;\n const response = {\n data: responseData,\n status: request.status,\n statusText: request.statusText,\n headers: responseHeaders,\n config,\n request\n };\n\n settle(function _resolve(value) {\n resolve(value);\n done();\n }, function _reject(err) {\n reject(err);\n done();\n }, response);\n\n // Clean up request\n request = null;\n }\n\n if ('onloadend' in request) {\n // Use onloadend if available\n request.onloadend = onloadend;\n } else {\n // Listen for ready state to emulate onloadend\n request.onreadystatechange = function handleLoad() {\n if (!request || request.readyState !== 4) {\n return;\n }\n\n // The request errored out and we didn't get a response, this will be\n // handled by onerror instead\n // With one exception: request that using file: protocol, most browsers\n // will return status as 0 even though it's a successful request\n if (request.status === 0 && !(request.responseURL && request.responseURL.indexOf('file:') === 0)) {\n return;\n }\n // readystate handler is calling before onerror or ontimeout handlers,\n // so we should call onloadend on the next 'tick'\n setTimeout(onloadend);\n };\n }\n\n // Handle browser request cancellation (as opposed to a manual cancellation)\n request.onabort = function handleAbort() {\n if (!request) {\n return;\n }\n\n reject(new AxiosError('Request aborted', AxiosError.ECONNABORTED, config, request));\n\n // Clean up request\n request = null;\n };\n\n // Handle low level network errors\n request.onerror = function handleError() {\n // Real errors are hidden from us by the browser\n // onerror should only fire if it's a network error\n reject(new AxiosError('Network Error', AxiosError.ERR_NETWORK, config, request));\n\n // Clean up request\n request = null;\n };\n\n // Handle timeout\n request.ontimeout = function handleTimeout() {\n let timeoutErrorMessage = config.timeout ? 'timeout of ' + config.timeout + 'ms exceeded' : 'timeout exceeded';\n const transitional = config.transitional || transitionalDefaults;\n if (config.timeoutErrorMessage) {\n timeoutErrorMessage = config.timeoutErrorMessage;\n }\n reject(new AxiosError(\n timeoutErrorMessage,\n transitional.clarifyTimeoutError ? AxiosError.ETIMEDOUT : AxiosError.ECONNABORTED,\n config,\n request));\n\n // Clean up request\n request = null;\n };\n\n // Add xsrf header\n // This is only done if running in a standard browser environment.\n // Specifically not if we're in a web worker, or react-native.\n if (platform.isStandardBrowserEnv) {\n // Add xsrf header\n const xsrfValue = (config.withCredentials || isURLSameOrigin(fullPath))\n && config.xsrfCookieName && cookies.read(config.xsrfCookieName);\n\n if (xsrfValue) {\n requestHeaders.set(config.xsrfHeaderName, xsrfValue);\n }\n }\n\n // Remove Content-Type if data is undefined\n requestData === undefined && requestHeaders.setContentType(null);\n\n // Add headers to the request\n if ('setRequestHeader' in request) {\n utils.forEach(requestHeaders.toJSON(), function setRequestHeader(val, key) {\n request.setRequestHeader(key, val);\n });\n }\n\n // Add withCredentials to request if needed\n if (!utils.isUndefined(config.withCredentials)) {\n request.withCredentials = !!config.withCredentials;\n }\n\n // Add responseType to request if needed\n if (responseType && responseType !== 'json') {\n request.responseType = config.responseType;\n }\n\n // Handle progress if needed\n if (typeof config.onDownloadProgress === 'function') {\n request.addEventListener('progress', progressEventReducer(config.onDownloadProgress, true));\n }\n\n // Not all browsers support upload events\n if (typeof config.onUploadProgress === 'function' && request.upload) {\n request.upload.addEventListener('progress', progressEventReducer(config.onUploadProgress));\n }\n\n if (config.cancelToken || config.signal) {\n // Handle cancellation\n // eslint-disable-next-line func-names\n onCanceled = cancel => {\n if (!request) {\n return;\n }\n reject(!cancel || cancel.type ? new CanceledError(null, config, request) : cancel);\n request.abort();\n request = null;\n };\n\n config.cancelToken && config.cancelToken.subscribe(onCanceled);\n if (config.signal) {\n config.signal.aborted ? onCanceled() : config.signal.addEventListener('abort', onCanceled);\n }\n }\n\n const protocol = parseProtocol(fullPath);\n\n if (protocol && platform.protocols.indexOf(protocol) === -1) {\n reject(new AxiosError('Unsupported protocol ' + protocol + ':', AxiosError.ERR_BAD_REQUEST, config));\n return;\n }\n\n\n // Send the request\n request.send(requestData || null);\n });\n}\n","'use strict';\n\n/**\n * Calculate data maxRate\n * @param {Number} [samplesCount= 10]\n * @param {Number} [min= 1000]\n * @returns {Function}\n */\nfunction speedometer(samplesCount, min) {\n samplesCount = samplesCount || 10;\n const bytes = new Array(samplesCount);\n const timestamps = new Array(samplesCount);\n let head = 0;\n let tail = 0;\n let firstSampleTS;\n\n min = min !== undefined ? min : 1000;\n\n return function push(chunkLength) {\n const now = Date.now();\n\n const startedAt = timestamps[tail];\n\n if (!firstSampleTS) {\n firstSampleTS = now;\n }\n\n bytes[head] = chunkLength;\n timestamps[head] = now;\n\n let i = tail;\n let bytesCount = 0;\n\n while (i !== head) {\n bytesCount += bytes[i++];\n i = i % samplesCount;\n }\n\n head = (head + 1) % samplesCount;\n\n if (head === tail) {\n tail = (tail + 1) % samplesCount;\n }\n\n if (now - firstSampleTS < min) {\n return;\n }\n\n const passed = startedAt && now - startedAt;\n\n return passed ? Math.round(bytesCount * 1000 / passed) : undefined;\n };\n}\n\nexport default speedometer;\n","'use strict';\n\nimport AxiosError from './AxiosError.js';\n\n/**\n * Resolve or reject a Promise based on response status.\n *\n * @param {Function} resolve A function that resolves the promise.\n * @param {Function} reject A function that rejects the promise.\n * @param {object} response The response.\n *\n * @returns {object} The response.\n */\nexport default function settle(resolve, reject, response) {\n const validateStatus = response.config.validateStatus;\n if (!response.status || !validateStatus || validateStatus(response.status)) {\n resolve(response);\n } else {\n reject(new AxiosError(\n 'Request failed with status code ' + response.status,\n [AxiosError.ERR_BAD_REQUEST, AxiosError.ERR_BAD_RESPONSE][Math.floor(response.status / 100) - 4],\n response.config,\n response.request,\n response\n ));\n }\n}\n","'use strict';\n\nexport default function parseProtocol(url) {\n const match = /^([-+\\w]{1,25})(:?\\/\\/|:)/.exec(url);\n return match && match[1] || '';\n}\n","import utils from '../utils.js';\nimport httpAdapter from './http.js';\nimport xhrAdapter from './xhr.js';\n\nconst adapters = {\n http: httpAdapter,\n xhr: xhrAdapter\n}\n\nexport default {\n getAdapter: (nameOrAdapter) => {\n if(utils.isString(nameOrAdapter)){\n const adapter = adapters[nameOrAdapter];\n\n if (!nameOrAdapter) {\n throw Error(\n utils.hasOwnProp(nameOrAdapter) ?\n `Adapter '${nameOrAdapter}' is not available in the build` :\n `Can not resolve adapter '${nameOrAdapter}'`\n );\n }\n\n return adapter\n }\n\n if (!utils.isFunction(nameOrAdapter)) {\n throw new TypeError('adapter is not a function');\n }\n\n return nameOrAdapter;\n },\n adapters\n}\n","'use strict';\n\nimport utils from '../utils.js';\nimport AxiosError from '../core/AxiosError.js';\nimport transitionalDefaults from './transitional.js';\nimport toFormData from '../helpers/toFormData.js';\nimport toURLEncodedForm from '../helpers/toURLEncodedForm.js';\nimport platform from '../platform/index.js';\nimport formDataToJSON from '../helpers/formDataToJSON.js';\nimport adapters from '../adapters/index.js';\n\nconst DEFAULT_CONTENT_TYPE = {\n 'Content-Type': 'application/x-www-form-urlencoded'\n};\n\n/**\n * If the browser has an XMLHttpRequest object, use the XHR adapter, otherwise use the HTTP\n * adapter\n *\n * @returns {Function}\n */\nfunction getDefaultAdapter() {\n let adapter;\n if (typeof XMLHttpRequest !== 'undefined') {\n // For browsers use XHR adapter\n adapter = adapters.getAdapter('xhr');\n } else if (typeof process !== 'undefined' && utils.kindOf(process) === 'process') {\n // For node use HTTP adapter\n adapter = adapters.getAdapter('http');\n }\n return adapter;\n}\n\n/**\n * It takes a string, tries to parse it, and if it fails, it returns the stringified version\n * of the input\n *\n * @param {any} rawValue - The value to be stringified.\n * @param {Function} parser - A function that parses a string into a JavaScript object.\n * @param {Function} encoder - A function that takes a value and returns a string.\n *\n * @returns {string} A stringified version of the rawValue.\n */\nfunction stringifySafely(rawValue, parser, encoder) {\n if (utils.isString(rawValue)) {\n try {\n (parser || JSON.parse)(rawValue);\n return utils.trim(rawValue);\n } catch (e) {\n if (e.name !== 'SyntaxError') {\n throw e;\n }\n }\n }\n\n return (encoder || JSON.stringify)(rawValue);\n}\n\nconst defaults = {\n\n transitional: transitionalDefaults,\n\n adapter: getDefaultAdapter(),\n\n transformRequest: [function transformRequest(data, headers) {\n const contentType = headers.getContentType() || '';\n const hasJSONContentType = contentType.indexOf('application/json') > -1;\n const isObjectPayload = utils.isObject(data);\n\n if (isObjectPayload && utils.isHTMLForm(data)) {\n data = new FormData(data);\n }\n\n const isFormData = utils.isFormData(data);\n\n if (isFormData) {\n if (!hasJSONContentType) {\n return data;\n }\n return hasJSONContentType ? JSON.stringify(formDataToJSON(data)) : data;\n }\n\n if (utils.isArrayBuffer(data) ||\n utils.isBuffer(data) ||\n utils.isStream(data) ||\n utils.isFile(data) ||\n utils.isBlob(data)\n ) {\n return data;\n }\n if (utils.isArrayBufferView(data)) {\n return data.buffer;\n }\n if (utils.isURLSearchParams(data)) {\n headers.setContentType('application/x-www-form-urlencoded;charset=utf-8', false);\n return data.toString();\n }\n\n let isFileList;\n\n if (isObjectPayload) {\n if (contentType.indexOf('application/x-www-form-urlencoded') > -1) {\n return toURLEncodedForm(data, this.formSerializer).toString();\n }\n\n if ((isFileList = utils.isFileList(data)) || contentType.indexOf('multipart/form-data') > -1) {\n const _FormData = this.env && this.env.FormData;\n\n return toFormData(\n isFileList ? {'files[]': data} : data,\n _FormData && new _FormData(),\n this.formSerializer\n );\n }\n }\n\n if (isObjectPayload || hasJSONContentType ) {\n headers.setContentType('application/json', false);\n return stringifySafely(data);\n }\n\n return data;\n }],\n\n transformResponse: [function transformResponse(data) {\n const transitional = this.transitional || defaults.transitional;\n const forcedJSONParsing = transitional && transitional.forcedJSONParsing;\n const JSONRequested = this.responseType === 'json';\n\n if (data && utils.isString(data) && ((forcedJSONParsing && !this.responseType) || JSONRequested)) {\n const silentJSONParsing = transitional && transitional.silentJSONParsing;\n const strictJSONParsing = !silentJSONParsing && JSONRequested;\n\n try {\n return JSON.parse(data);\n } catch (e) {\n if (strictJSONParsing) {\n if (e.name === 'SyntaxError') {\n throw AxiosError.from(e, AxiosError.ERR_BAD_RESPONSE, this, null, this.response);\n }\n throw e;\n }\n }\n }\n\n return data;\n }],\n\n /**\n * A timeout in milliseconds to abort a request. If set to 0 (default) a\n * timeout is not created.\n */\n timeout: 0,\n\n xsrfCookieName: 'XSRF-TOKEN',\n xsrfHeaderName: 'X-XSRF-TOKEN',\n\n maxContentLength: -1,\n maxBodyLength: -1,\n\n env: {\n FormData: platform.classes.FormData,\n Blob: platform.classes.Blob\n },\n\n validateStatus: function validateStatus(status) {\n return status >= 200 && status < 300;\n },\n\n headers: {\n common: {\n 'Accept': 'application/json, text/plain, */*'\n }\n }\n};\n\nutils.forEach(['delete', 'get', 'head'], function forEachMethodNoData(method) {\n defaults.headers[method] = {};\n});\n\nutils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) {\n defaults.headers[method] = utils.merge(DEFAULT_CONTENT_TYPE);\n});\n\nexport default defaults;\n","'use strict';\n\nimport utils from '../utils.js';\nimport toFormData from './toFormData.js';\nimport platform from '../platform/index.js';\n\nexport default function toURLEncodedForm(data, options) {\n return toFormData(data, new platform.classes.URLSearchParams(), Object.assign({\n visitor: function(value, key, path, helpers) {\n if (platform.isNode && utils.isBuffer(value)) {\n this.append(key, value.toString('base64'));\n return false;\n }\n\n return helpers.defaultVisitor.apply(this, arguments);\n }\n }, options));\n}\n","'use strict';\n\nimport utils from './../utils.js';\nimport defaults from '../defaults/index.js';\nimport AxiosHeaders from '../core/AxiosHeaders.js';\n\n/**\n * Transform the data for a request or a response\n *\n * @param {Array|Function} fns A single function or Array of functions\n * @param {?Object} response The response object\n *\n * @returns {*} The resulting transformed data\n */\nexport default function transformData(fns, response) {\n const config = this || defaults;\n const context = response || config;\n const headers = AxiosHeaders.from(context.headers);\n let data = context.data;\n\n utils.forEach(fns, function transform(fn) {\n data = fn.call(config, data, headers.normalize(), response ? response.status : undefined);\n });\n\n headers.normalize();\n\n return data;\n}\n","'use strict';\n\nexport default function isCancel(value) {\n return !!(value && value.__CANCEL__);\n}\n","'use strict';\n\nimport transformData from './transformData.js';\nimport isCancel from '../cancel/isCancel.js';\nimport defaults from '../defaults/index.js';\nimport CanceledError from '../cancel/CanceledError.js';\nimport AxiosHeaders from '../core/AxiosHeaders.js';\n\n/**\n * Throws a `CanceledError` if cancellation has been requested.\n *\n * @param {Object} config The config that is to be used for the request\n *\n * @returns {void}\n */\nfunction throwIfCancellationRequested(config) {\n if (config.cancelToken) {\n config.cancelToken.throwIfRequested();\n }\n\n if (config.signal && config.signal.aborted) {\n throw new CanceledError();\n }\n}\n\n/**\n * Dispatch a request to the server using the configured adapter.\n *\n * @param {object} config The config that is to be used for the request\n *\n * @returns {Promise} The Promise to be fulfilled\n */\nexport default function dispatchRequest(config) {\n throwIfCancellationRequested(config);\n\n config.headers = AxiosHeaders.from(config.headers);\n\n // Transform request data\n config.data = transformData.call(\n config,\n config.transformRequest\n );\n\n const adapter = config.adapter || defaults.adapter;\n\n return adapter(config).then(function onAdapterResolution(response) {\n throwIfCancellationRequested(config);\n\n // Transform response data\n response.data = transformData.call(\n config,\n config.transformResponse,\n response\n );\n\n response.headers = AxiosHeaders.from(response.headers);\n\n return response;\n }, function onAdapterRejection(reason) {\n if (!isCancel(reason)) {\n throwIfCancellationRequested(config);\n\n // Transform response data\n if (reason && reason.response) {\n reason.response.data = transformData.call(\n config,\n config.transformResponse,\n reason.response\n );\n reason.response.headers = AxiosHeaders.from(reason.response.headers);\n }\n }\n\n return Promise.reject(reason);\n });\n}\n","'use strict';\n\nimport utils from '../utils.js';\n\n/**\n * Config-specific merge-function which creates a new config-object\n * by merging two configuration objects together.\n *\n * @param {Object} config1\n * @param {Object} config2\n *\n * @returns {Object} New object resulting from merging config2 to config1\n */\nexport default function mergeConfig(config1, config2) {\n // eslint-disable-next-line no-param-reassign\n config2 = config2 || {};\n const config = {};\n\n function getMergedValue(target, source) {\n if (utils.isPlainObject(target) && utils.isPlainObject(source)) {\n return utils.merge(target, source);\n } else if (utils.isPlainObject(source)) {\n return utils.merge({}, source);\n } else if (utils.isArray(source)) {\n return source.slice();\n }\n return source;\n }\n\n // eslint-disable-next-line consistent-return\n function mergeDeepProperties(prop) {\n if (!utils.isUndefined(config2[prop])) {\n return getMergedValue(config1[prop], config2[prop]);\n } else if (!utils.isUndefined(config1[prop])) {\n return getMergedValue(undefined, config1[prop]);\n }\n }\n\n // eslint-disable-next-line consistent-return\n function valueFromConfig2(prop) {\n if (!utils.isUndefined(config2[prop])) {\n return getMergedValue(undefined, config2[prop]);\n }\n }\n\n // eslint-disable-next-line consistent-return\n function defaultToConfig2(prop) {\n if (!utils.isUndefined(config2[prop])) {\n return getMergedValue(undefined, config2[prop]);\n } else if (!utils.isUndefined(config1[prop])) {\n return getMergedValue(undefined, config1[prop]);\n }\n }\n\n // eslint-disable-next-line consistent-return\n function mergeDirectKeys(prop) {\n if (prop in config2) {\n return getMergedValue(config1[prop], config2[prop]);\n } else if (prop in config1) {\n return getMergedValue(undefined, config1[prop]);\n }\n }\n\n const mergeMap = {\n 'url': valueFromConfig2,\n 'method': valueFromConfig2,\n 'data': valueFromConfig2,\n 'baseURL': defaultToConfig2,\n 'transformRequest': defaultToConfig2,\n 'transformResponse': defaultToConfig2,\n 'paramsSerializer': defaultToConfig2,\n 'timeout': defaultToConfig2,\n 'timeoutMessage': defaultToConfig2,\n 'withCredentials': defaultToConfig2,\n 'adapter': defaultToConfig2,\n 'responseType': defaultToConfig2,\n 'xsrfCookieName': defaultToConfig2,\n 'xsrfHeaderName': defaultToConfig2,\n 'onUploadProgress': defaultToConfig2,\n 'onDownloadProgress': defaultToConfig2,\n 'decompress': defaultToConfig2,\n 'maxContentLength': defaultToConfig2,\n 'maxBodyLength': defaultToConfig2,\n 'beforeRedirect': defaultToConfig2,\n 'transport': defaultToConfig2,\n 'httpAgent': defaultToConfig2,\n 'httpsAgent': defaultToConfig2,\n 'cancelToken': defaultToConfig2,\n 'socketPath': defaultToConfig2,\n 'responseEncoding': defaultToConfig2,\n 'validateStatus': mergeDirectKeys\n };\n\n utils.forEach(Object.keys(config1).concat(Object.keys(config2)), function computeConfigValue(prop) {\n const merge = mergeMap[prop] || mergeDeepProperties;\n const configValue = merge(prop);\n (utils.isUndefined(configValue) && merge !== mergeDirectKeys) || (config[prop] = configValue);\n });\n\n return config;\n}\n","export const VERSION = \"1.0.0\";","'use strict';\n\nimport {VERSION} from '../env/data.js';\nimport AxiosError from '../core/AxiosError.js';\n\nconst validators = {};\n\n// eslint-disable-next-line func-names\n['object', 'boolean', 'number', 'function', 'string', 'symbol'].forEach((type, i) => {\n validators[type] = function validator(thing) {\n return typeof thing === type || 'a' + (i < 1 ? 'n ' : ' ') + type;\n };\n});\n\nconst deprecatedWarnings = {};\n\n/**\n * Transitional option validator\n *\n * @param {function|boolean?} validator - set to false if the transitional option has been removed\n * @param {string?} version - deprecated version / removed since version\n * @param {string?} message - some message with additional info\n *\n * @returns {function}\n */\nvalidators.transitional = function transitional(validator, version, message) {\n function formatMessage(opt, desc) {\n return '[Axios v' + VERSION + '] Transitional option \\'' + opt + '\\'' + desc + (message ? '. ' + message : '');\n }\n\n // eslint-disable-next-line func-names\n return (value, opt, opts) => {\n if (validator === false) {\n throw new AxiosError(\n formatMessage(opt, ' has been removed' + (version ? ' in ' + version : '')),\n AxiosError.ERR_DEPRECATED\n );\n }\n\n if (version && !deprecatedWarnings[opt]) {\n deprecatedWarnings[opt] = true;\n // eslint-disable-next-line no-console\n console.warn(\n formatMessage(\n opt,\n ' has been deprecated since v' + version + ' and will be removed in the near future'\n )\n );\n }\n\n return validator ? validator(value, opt, opts) : true;\n };\n};\n\n/**\n * Assert object's properties type\n *\n * @param {object} options\n * @param {object} schema\n * @param {boolean?} allowUnknown\n *\n * @returns {object}\n */\n\nfunction assertOptions(options, schema, allowUnknown) {\n if (typeof options !== 'object') {\n throw new AxiosError('options must be an object', AxiosError.ERR_BAD_OPTION_VALUE);\n }\n const keys = Object.keys(options);\n let i = keys.length;\n while (i-- > 0) {\n const opt = keys[i];\n const validator = schema[opt];\n if (validator) {\n const value = options[opt];\n const result = value === undefined || validator(value, opt, options);\n if (result !== true) {\n throw new AxiosError('option ' + opt + ' must be ' + result, AxiosError.ERR_BAD_OPTION_VALUE);\n }\n continue;\n }\n if (allowUnknown !== true) {\n throw new AxiosError('Unknown option ' + opt, AxiosError.ERR_BAD_OPTION);\n }\n }\n}\n\nexport default {\n assertOptions,\n validators\n};\n","'use strict';\n\nimport utils from './../utils.js';\nimport buildURL from '../helpers/buildURL.js';\nimport InterceptorManager from './InterceptorManager.js';\nimport dispatchRequest from './dispatchRequest.js';\nimport mergeConfig from './mergeConfig.js';\nimport buildFullPath from './buildFullPath.js';\nimport validator from '../helpers/validator.js';\nimport AxiosHeaders from './AxiosHeaders.js';\n\nconst validators = validator.validators;\n\n/**\n * Create a new instance of Axios\n *\n * @param {Object} instanceConfig The default config for the instance\n *\n * @return {Axios} A new instance of Axios\n */\nclass Axios {\n constructor(instanceConfig) {\n this.defaults = instanceConfig;\n this.interceptors = {\n request: new InterceptorManager(),\n response: new InterceptorManager()\n };\n }\n\n /**\n * Dispatch a request\n *\n * @param {String|Object} configOrUrl The config specific for this request (merged with this.defaults)\n * @param {?Object} config\n *\n * @returns {Promise} The Promise to be fulfilled\n */\n request(configOrUrl, config) {\n /*eslint no-param-reassign:0*/\n // Allow for axios('example/url'[, config]) a la fetch API\n if (typeof configOrUrl === 'string') {\n config = config || {};\n config.url = configOrUrl;\n } else {\n config = configOrUrl || {};\n }\n\n config = mergeConfig(this.defaults, config);\n\n const transitional = config.transitional;\n\n if (transitional !== undefined) {\n validator.assertOptions(transitional, {\n silentJSONParsing: validators.transitional(validators.boolean),\n forcedJSONParsing: validators.transitional(validators.boolean),\n clarifyTimeoutError: validators.transitional(validators.boolean)\n }, false);\n }\n\n // Set config.method\n config.method = (config.method || this.defaults.method || 'get').toLowerCase();\n\n // Flatten headers\n const defaultHeaders = config.headers && utils.merge(\n config.headers.common,\n config.headers[config.method]\n );\n\n defaultHeaders && utils.forEach(\n ['delete', 'get', 'head', 'post', 'put', 'patch', 'common'],\n function cleanHeaderConfig(method) {\n delete config.headers[method];\n }\n );\n\n config.headers = new AxiosHeaders(config.headers, defaultHeaders);\n\n // filter out skipped interceptors\n const requestInterceptorChain = [];\n let synchronousRequestInterceptors = true;\n this.interceptors.request.forEach(function unshiftRequestInterceptors(interceptor) {\n if (typeof interceptor.runWhen === 'function' && interceptor.runWhen(config) === false) {\n return;\n }\n\n synchronousRequestInterceptors = synchronousRequestInterceptors && interceptor.synchronous;\n\n requestInterceptorChain.unshift(interceptor.fulfilled, interceptor.rejected);\n });\n\n const responseInterceptorChain = [];\n this.interceptors.response.forEach(function pushResponseInterceptors(interceptor) {\n responseInterceptorChain.push(interceptor.fulfilled, interceptor.rejected);\n });\n\n let promise;\n let i = 0;\n let len;\n\n if (!synchronousRequestInterceptors) {\n const chain = [dispatchRequest.bind(this), undefined];\n chain.unshift.apply(chain, requestInterceptorChain);\n chain.push.apply(chain, responseInterceptorChain);\n len = chain.length;\n\n promise = Promise.resolve(config);\n\n while (i < len) {\n promise = promise.then(chain[i++], chain[i++]);\n }\n\n return promise;\n }\n\n len = requestInterceptorChain.length;\n\n let newConfig = config;\n\n i = 0;\n\n while (i < len) {\n const onFulfilled = requestInterceptorChain[i++];\n const onRejected = requestInterceptorChain[i++];\n try {\n newConfig = onFulfilled(newConfig);\n } catch (error) {\n onRejected.call(this, error);\n break;\n }\n }\n\n try {\n promise = dispatchRequest.call(this, newConfig);\n } catch (error) {\n return Promise.reject(error);\n }\n\n i = 0;\n len = responseInterceptorChain.length;\n\n while (i < len) {\n promise = promise.then(responseInterceptorChain[i++], responseInterceptorChain[i++]);\n }\n\n return promise;\n }\n\n getUri(config) {\n config = mergeConfig(this.defaults, config);\n const fullPath = buildFullPath(config.baseURL, config.url);\n return buildURL(fullPath, config.params, config.paramsSerializer);\n }\n}\n\n// Provide aliases for supported request methods\nutils.forEach(['delete', 'get', 'head', 'options'], function forEachMethodNoData(method) {\n /*eslint func-names:0*/\n Axios.prototype[method] = function(url, config) {\n return this.request(mergeConfig(config || {}, {\n method,\n url,\n data: (config || {}).data\n }));\n };\n});\n\nutils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) {\n /*eslint func-names:0*/\n\n function generateHTTPMethod(isForm) {\n return function httpMethod(url, data, config) {\n return this.request(mergeConfig(config || {}, {\n method,\n headers: isForm ? {\n 'Content-Type': 'multipart/form-data'\n } : {},\n url,\n data\n }));\n };\n }\n\n Axios.prototype[method] = generateHTTPMethod();\n\n Axios.prototype[method + 'Form'] = generateHTTPMethod(true);\n});\n\nexport default Axios;\n","'use strict';\n\nimport CanceledError from './CanceledError.js';\n\n/**\n * A `CancelToken` is an object that can be used to request cancellation of an operation.\n *\n * @param {Function} executor The executor function.\n *\n * @returns {CancelToken}\n */\nclass CancelToken {\n constructor(executor) {\n if (typeof executor !== 'function') {\n throw new TypeError('executor must be a function.');\n }\n\n let resolvePromise;\n\n this.promise = new Promise(function promiseExecutor(resolve) {\n resolvePromise = resolve;\n });\n\n const token = this;\n\n // eslint-disable-next-line func-names\n this.promise.then(cancel => {\n if (!token._listeners) return;\n\n let i = token._listeners.length;\n\n while (i-- > 0) {\n token._listeners[i](cancel);\n }\n token._listeners = null;\n });\n\n // eslint-disable-next-line func-names\n this.promise.then = onfulfilled => {\n let _resolve;\n // eslint-disable-next-line func-names\n const promise = new Promise(resolve => {\n token.subscribe(resolve);\n _resolve = resolve;\n }).then(onfulfilled);\n\n promise.cancel = function reject() {\n token.unsubscribe(_resolve);\n };\n\n return promise;\n };\n\n executor(function cancel(message, config, request) {\n if (token.reason) {\n // Cancellation has already been requested\n return;\n }\n\n token.reason = new CanceledError(message, config, request);\n resolvePromise(token.reason);\n });\n }\n\n /**\n * Throws a `CanceledError` if cancellation has been requested.\n */\n throwIfRequested() {\n if (this.reason) {\n throw this.reason;\n }\n }\n\n /**\n * Subscribe to the cancel signal\n */\n\n subscribe(listener) {\n if (this.reason) {\n listener(this.reason);\n return;\n }\n\n if (this._listeners) {\n this._listeners.push(listener);\n } else {\n this._listeners = [listener];\n }\n }\n\n /**\n * Unsubscribe from the cancel signal\n */\n\n unsubscribe(listener) {\n if (!this._listeners) {\n return;\n }\n const index = this._listeners.indexOf(listener);\n if (index !== -1) {\n this._listeners.splice(index, 1);\n }\n }\n\n /**\n * Returns an object that contains a new `CancelToken` and a function that, when called,\n * cancels the `CancelToken`.\n */\n static source() {\n let cancel;\n const token = new CancelToken(function executor(c) {\n cancel = c;\n });\n return {\n token,\n cancel\n };\n }\n}\n\nexport default CancelToken;\n","'use strict';\n\nimport utils from './utils.js';\nimport bind from './helpers/bind.js';\nimport Axios from './core/Axios.js';\nimport mergeConfig from './core/mergeConfig.js';\nimport defaults from './defaults/index.js';\nimport formDataToJSON from './helpers/formDataToJSON.js';\nimport CanceledError from './cancel/CanceledError.js';\nimport CancelToken from'./cancel/CancelToken.js';\nimport isCancel from'./cancel/isCancel.js';\nimport {VERSION} from './env/data.js';\nimport toFormData from './helpers/toFormData.js';\nimport AxiosError from './core/AxiosError.js';\nimport spread from './helpers/spread.js';\nimport isAxiosError from './helpers/isAxiosError.js';\n\n/**\n * Create an instance of Axios\n *\n * @param {Object} defaultConfig The default config for the instance\n *\n * @returns {Axios} A new instance of Axios\n */\nfunction createInstance(defaultConfig) {\n const context = new Axios(defaultConfig);\n const instance = bind(Axios.prototype.request, context);\n\n // Copy axios.prototype to instance\n utils.extend(instance, Axios.prototype, context, {allOwnKeys: true});\n\n // Copy context to instance\n utils.extend(instance, context, null, {allOwnKeys: true});\n\n // Factory for creating new instances\n instance.create = function create(instanceConfig) {\n return createInstance(mergeConfig(defaultConfig, instanceConfig));\n };\n\n return instance;\n}\n\n// Create the default instance to be exported\nconst axios = createInstance(defaults);\n\n// Expose Axios class to allow class inheritance\naxios.Axios = Axios;\n\n// Expose Cancel & CancelToken\naxios.CanceledError = CanceledError;\naxios.CancelToken = CancelToken;\naxios.isCancel = isCancel;\naxios.VERSION = VERSION;\naxios.toFormData = toFormData;\n\n// Expose AxiosError class\naxios.AxiosError = AxiosError;\n\n// alias for CanceledError for backward compatibility\naxios.Cancel = axios.CanceledError;\n\n// Expose all/spread\naxios.all = function all(promises) {\n return Promise.all(promises);\n};\n\naxios.spread = spread;\n\n// Expose isAxiosError\naxios.isAxiosError = isAxiosError;\n\naxios.formToJSON = thing => {\n return formDataToJSON(utils.isHTMLForm(thing) ? new FormData(thing) : thing);\n};\n\nexport default axios;\n","'use strict';\n\n/**\n * Syntactic sugar for invoking a function and expanding an array for arguments.\n *\n * Common use case would be to use `Function.prototype.apply`.\n *\n * ```js\n * function f(x, y, z) {}\n * var args = [1, 2, 3];\n * f.apply(null, args);\n * ```\n *\n * With `spread` this example can be re-written.\n *\n * ```js\n * spread(function(x, y, z) {})([1, 2, 3]);\n * ```\n *\n * @param {Function} callback\n *\n * @returns {Function}\n */\nexport default function spread(callback) {\n return function wrap(arr) {\n return callback.apply(null, arr);\n };\n}\n","'use strict';\n\nimport utils from './../utils.js';\n\n/**\n * Determines whether the payload is an error thrown by Axios\n *\n * @param {*} payload The value to test\n *\n * @returns {boolean} True if the payload is an error thrown by Axios, otherwise false\n */\nexport default function isAxiosError(payload) {\n return utils.isObject(payload) && (payload.isAxiosError === true);\n}\n"],"names":["bind","fn","thisArg","apply","arguments","toString","Object","prototype","getPrototypeOf","kindOf","cache","create","thing","str","call","slice","toLowerCase","kindOfTest","type","typeOfTest","isArray","Array","isUndefined","isArrayBuffer","isString","isFunction","isNumber","isObject","isPlainObject","val","isDate","isFile","isBlob","isFileList","isURLSearchParams","forEach","obj","allOwnKeys","i","l","length","keys","getOwnPropertyNames","len","key","isTypedArray","TypedArray","Uint8Array","isHTMLForm","hasOwnProperty","prop","isRegExp","reduceDescriptors","reducer","descriptors","getOwnPropertyDescriptors","reducedDescriptors","descriptor","name","defineProperties","utils","isBuffer","constructor","isFormData","pattern","FormData","isArrayBufferView","result","ArrayBuffer","isView","buffer","isBoolean","isStream","pipe","merge","assignValue","extend","a","b","trim","replace","stripBOM","content","charCodeAt","inherits","superConstructor","props","defineProperty","value","assign","toFlatObject","sourceObj","destObj","filter","propFilter","merged","endsWith","searchString","position","String","undefined","lastIndex","indexOf","toArray","arr","forEachEntry","iterator","Symbol","next","done","pair","matchAll","regExp","matches","exec","push","hasOwnProp","freezeMethods","enumerable","writable","set","Error","toObjectSet","arrayOrString","delimiter","define","split","toCamelCase","m","p1","p2","toUpperCase","noop","toFiniteNumber","defaultValue","Number","isFinite","AxiosError","message","code","config","request","response","this","captureStackTrace","stack","toJSON","description","number","fileName","lineNumber","columnNumber","status","from","error","customProps","axiosError","cause","browser","self","window","isVisitable","removeBrackets","renderKey","path","dots","concat","map","token","join","predicates","test","toFormData","formData","options","TypeError","envFormData","metaTokens","indexes","option","source","visitor","defaultVisitor","useBlob","Blob","append","toStringTag","convertValue","toISOString","Buffer","JSON","stringify","some","isFlatArray","el","index","exposedHelpers","build","pop","encode","charMap","encodeURIComponent","match","AxiosURLSearchParams","params","_pairs","buildURL","url","hashmarkIndex","_encode","serializerParams","encoder","InterceptorManager","handlers","use","fulfilled","rejected","synchronous","runWhen","eject","id","clear","h","transitionalDefaults","silentJSONParsing","forcedJSONParsing","clarifyTimeoutError","URLSearchParams$1","URLSearchParams","FormData$1","isStandardBrowserEnv","product","navigator","document","platform","isBrowser","classes","protocols","formDataToJSON","buildPath","target","isNumericKey","isLast","arrayToObject","entries","parsePropPath","cookies","write","expires","domain","secure","cookie","Date","toGMTString","read","RegExp","decodeURIComponent","remove","now","buildFullPath","baseURL","requestedURL","relativeURL","combineURLs","isURLSameOrigin","msie","userAgent","urlParsingNode","createElement","originURL","resolveURL","href","setAttribute","protocol","host","search","hash","hostname","port","pathname","charAt","location","requestURL","parsed","CanceledError","ERR_CANCELED","__CANCEL__","ignoreDuplicateOf","$internals","$defaults","normalizeHeader","header","normalizeValue","matchHeaderValue","context","findKey","_key","AxiosHeaders","headers","defaults","progressEventReducer","listener","isDownloadStream","bytesNotified","_speedometer","samplesCount","min","bytes","timestamps","firstSampleTS","head","tail","chunkLength","startedAt","bytesCount","passed","Math","round","speedometer","e","loaded","total","lengthComputable","progressBytes","rate","data","progress","estimated","xhrAdapter","Promise","resolve","reject","requestData","requestHeaders","normalize","responseType","onCanceled","cancelToken","unsubscribe","signal","removeEventListener","setContentType","XMLHttpRequest","auth","username","password","unescape","btoa","fullPath","onloadend","responseHeaders","getAllResponseHeaders","validateStatus","ERR_BAD_REQUEST","ERR_BAD_RESPONSE","floor","settle","err","responseText","statusText","open","method","paramsSerializer","timeout","onreadystatechange","readyState","responseURL","setTimeout","onabort","ECONNABORTED","onerror","ERR_NETWORK","ontimeout","timeoutErrorMessage","transitional","ETIMEDOUT","xsrfValue","withCredentials","xsrfCookieName","xsrfHeaderName","setRequestHeader","onDownloadProgress","addEventListener","onUploadProgress","upload","cancel","abort","subscribe","aborted","parseProtocol","send","valueOrRewrite","rewrite","setHeader","_value","_header","_rewrite","lHeader","get","parser","tokens","tokensRE","parseTokens","has","matcher","delete","deleted","deleteHeader","format","normalized","w","char","formatHeader","rawHeaders","line","substring","parseHeaders","accessor","accessors","defineAccessor","accessorName","methodName","arg1","arg2","arg3","configurable","buildAccessors","adapters","http","httpAdapter","xhr","adapters$1","nameOrAdapter","adapter","DEFAULT_CONTENT_TYPE","process","getDefaultAdapter","transformRequest","contentType","getContentType","hasJSONContentType","isObjectPayload","helpers","isNode","toURLEncodedForm","formSerializer","_FormData","env","rawValue","parse","stringifySafely","transformResponse","JSONRequested","strictJSONParsing","maxContentLength","maxBodyLength","common","Accept","transformData","fns","isCancel","throwIfCancellationRequested","throwIfRequested","dispatchRequest","then","reason","mergeConfig","config1","config2","getMergedValue","mergeDeepProperties","valueFromConfig2","defaultToConfig2","mergeDirectKeys","mergeMap","timeoutMessage","decompress","beforeRedirect","transport","httpAgent","httpsAgent","socketPath","responseEncoding","configValue","validators","deprecatedWarnings","validator","version","formatMessage","opt","desc","opts","ERR_DEPRECATED","console","warn","assertOptions","schema","allowUnknown","ERR_BAD_OPTION_VALUE","ERR_BAD_OPTION","Axios","instanceConfig","interceptors","configOrUrl","boolean","defaultHeaders","requestInterceptorChain","synchronousRequestInterceptors","interceptor","unshift","responseInterceptorChain","promise","chain","newConfig","onFulfilled","onRejected","getUri","generateHTTPMethod","isForm","CancelToken","executor","resolvePromise","_listeners","onfulfilled","_resolve","splice","static","c","axios","createInstance","defaultConfig","instance","VERSION","Cancel","all","promises","spread","callback","isAxiosError","payload","formToJSON"],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/axios/dist/node/axios.cjs b/node_modules/axios/dist/node/axios.cjs new file mode 100644 index 000000000..e3e50638c --- /dev/null +++ b/node_modules/axios/dist/node/axios.cjs @@ -0,0 +1,3750 @@ +// Axios v1.0.0 Copyright (c) 2022 Matt Zabriskie and contributors +'use strict'; + +const FormData$1 = require('form-data'); +const url = require('url'); +const proxyFromEnv = require('proxy-from-env'); +const http = require('http'); +const https = require('https'); +const followRedirects = require('follow-redirects'); +const zlib = require('zlib'); +const stream = require('stream'); +const EventEmitter = require('events'); + +function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; } + +const FormData__default = /*#__PURE__*/_interopDefaultLegacy(FormData$1); +const url__default = /*#__PURE__*/_interopDefaultLegacy(url); +const http__default = /*#__PURE__*/_interopDefaultLegacy(http); +const https__default = /*#__PURE__*/_interopDefaultLegacy(https); +const followRedirects__default = /*#__PURE__*/_interopDefaultLegacy(followRedirects); +const zlib__default = /*#__PURE__*/_interopDefaultLegacy(zlib); +const stream__default = /*#__PURE__*/_interopDefaultLegacy(stream); +const EventEmitter__default = /*#__PURE__*/_interopDefaultLegacy(EventEmitter); + +function bind(fn, thisArg) { + return function wrap() { + return fn.apply(thisArg, arguments); + }; +} + +// utils is a library of generic helper functions non-specific to axios + +const {toString} = Object.prototype; +const {getPrototypeOf} = Object; + +const kindOf = (cache => thing => { + const str = toString.call(thing); + return cache[str] || (cache[str] = str.slice(8, -1).toLowerCase()); +})(Object.create(null)); + +const kindOfTest = (type) => { + type = type.toLowerCase(); + return (thing) => kindOf(thing) === type +}; + +const typeOfTest = type => thing => typeof thing === type; + +/** + * Determine if a value is an Array + * + * @param {Object} val The value to test + * + * @returns {boolean} True if value is an Array, otherwise false + */ +const {isArray} = Array; + +/** + * Determine if a value is undefined + * + * @param {*} val The value to test + * + * @returns {boolean} True if the value is undefined, otherwise false + */ +const isUndefined = typeOfTest('undefined'); + +/** + * Determine if a value is a Buffer + * + * @param {*} val The value to test + * + * @returns {boolean} True if value is a Buffer, otherwise false + */ +function isBuffer(val) { + return val !== null && !isUndefined(val) && val.constructor !== null && !isUndefined(val.constructor) + && isFunction(val.constructor.isBuffer) && val.constructor.isBuffer(val); +} + +/** + * Determine if a value is an ArrayBuffer + * + * @param {*} val The value to test + * + * @returns {boolean} True if value is an ArrayBuffer, otherwise false + */ +const isArrayBuffer = kindOfTest('ArrayBuffer'); + + +/** + * Determine if a value is a view on an ArrayBuffer + * + * @param {*} val The value to test + * + * @returns {boolean} True if value is a view on an ArrayBuffer, otherwise false + */ +function isArrayBufferView(val) { + let result; + if ((typeof ArrayBuffer !== 'undefined') && (ArrayBuffer.isView)) { + result = ArrayBuffer.isView(val); + } else { + result = (val) && (val.buffer) && (isArrayBuffer(val.buffer)); + } + return result; +} + +/** + * Determine if a value is a String + * + * @param {*} val The value to test + * + * @returns {boolean} True if value is a String, otherwise false + */ +const isString = typeOfTest('string'); + +/** + * Determine if a value is a Function + * + * @param {*} val The value to test + * @returns {boolean} True if value is a Function, otherwise false + */ +const isFunction = typeOfTest('function'); + +/** + * Determine if a value is a Number + * + * @param {*} val The value to test + * + * @returns {boolean} True if value is a Number, otherwise false + */ +const isNumber = typeOfTest('number'); + +/** + * Determine if a value is an Object + * + * @param {*} thing The value to test + * + * @returns {boolean} True if value is an Object, otherwise false + */ +const isObject = (thing) => thing !== null && typeof thing === 'object'; + +/** + * Determine if a value is a Boolean + * + * @param {*} thing The value to test + * @returns {boolean} True if value is a Boolean, otherwise false + */ +const isBoolean = thing => thing === true || thing === false; + +/** + * Determine if a value is a plain Object + * + * @param {*} val The value to test + * + * @returns {boolean} True if value is a plain Object, otherwise false + */ +const isPlainObject = (val) => { + if (kindOf(val) !== 'object') { + return false; + } + + const prototype = getPrototypeOf(val); + return prototype === null || prototype === Object.prototype; +}; + +/** + * Determine if a value is a Date + * + * @param {*} val The value to test + * + * @returns {boolean} True if value is a Date, otherwise false + */ +const isDate = kindOfTest('Date'); + +/** + * Determine if a value is a File + * + * @param {*} val The value to test + * + * @returns {boolean} True if value is a File, otherwise false + */ +const isFile = kindOfTest('File'); + +/** + * Determine if a value is a Blob + * + * @param {*} val The value to test + * + * @returns {boolean} True if value is a Blob, otherwise false + */ +const isBlob = kindOfTest('Blob'); + +/** + * Determine if a value is a FileList + * + * @param {*} val The value to test + * + * @returns {boolean} True if value is a File, otherwise false + */ +const isFileList = kindOfTest('FileList'); + +/** + * Determine if a value is a Stream + * + * @param {*} val The value to test + * + * @returns {boolean} True if value is a Stream, otherwise false + */ +const isStream = (val) => isObject(val) && isFunction(val.pipe); + +/** + * Determine if a value is a FormData + * + * @param {*} thing The value to test + * + * @returns {boolean} True if value is an FormData, otherwise false + */ +const isFormData = (thing) => { + const pattern = '[object FormData]'; + return thing && ( + (typeof FormData === 'function' && thing instanceof FormData) || + toString.call(thing) === pattern || + (isFunction(thing.toString) && thing.toString() === pattern) + ); +}; + +/** + * Determine if a value is a URLSearchParams object + * + * @param {*} val The value to test + * + * @returns {boolean} True if value is a URLSearchParams object, otherwise false + */ +const isURLSearchParams = kindOfTest('URLSearchParams'); + +/** + * Trim excess whitespace off the beginning and end of a string + * + * @param {String} str The String to trim + * + * @returns {String} The String freed of excess whitespace + */ +const trim = (str) => str.trim ? + str.trim() : str.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, ''); + +/** + * Iterate over an Array or an Object invoking a function for each item. + * + * If `obj` is an Array callback will be called passing + * the value, index, and complete array for each item. + * + * If 'obj' is an Object callback will be called passing + * the value, key, and complete object for each property. + * + * @param {Object|Array} obj The object to iterate + * @param {Function} fn The callback to invoke for each item + * + * @param {Boolean} [allOwnKeys = false] + * @returns {void} + */ +function forEach(obj, fn, {allOwnKeys = false} = {}) { + // Don't bother if no value provided + if (obj === null || typeof obj === 'undefined') { + return; + } + + let i; + let l; + + // Force an array if not already something iterable + if (typeof obj !== 'object') { + /*eslint no-param-reassign:0*/ + obj = [obj]; + } + + if (isArray(obj)) { + // Iterate over array values + for (i = 0, l = obj.length; i < l; i++) { + fn.call(null, obj[i], i, obj); + } + } else { + // Iterate over object keys + const keys = allOwnKeys ? Object.getOwnPropertyNames(obj) : Object.keys(obj); + const len = keys.length; + let key; + + for (i = 0; i < len; i++) { + key = keys[i]; + fn.call(null, obj[key], key, obj); + } + } +} + +/** + * Accepts varargs expecting each argument to be an object, then + * immutably merges the properties of each object and returns result. + * + * When multiple objects contain the same key the later object in + * the arguments list will take precedence. + * + * Example: + * + * ```js + * var result = merge({foo: 123}, {foo: 456}); + * console.log(result.foo); // outputs 456 + * ``` + * + * @param {Object} obj1 Object to merge + * + * @returns {Object} Result of all merge properties + */ +function merge(/* obj1, obj2, obj3, ... */) { + const result = {}; + const assignValue = (val, key) => { + if (isPlainObject(result[key]) && isPlainObject(val)) { + result[key] = merge(result[key], val); + } else if (isPlainObject(val)) { + result[key] = merge({}, val); + } else if (isArray(val)) { + result[key] = val.slice(); + } else { + result[key] = val; + } + }; + + for (let i = 0, l = arguments.length; i < l; i++) { + arguments[i] && forEach(arguments[i], assignValue); + } + return result; +} + +/** + * Extends object a by mutably adding to it the properties of object b. + * + * @param {Object} a The object to be extended + * @param {Object} b The object to copy properties from + * @param {Object} thisArg The object to bind function to + * + * @param {Boolean} [allOwnKeys] + * @returns {Object} The resulting value of object a + */ +const extend = (a, b, thisArg, {allOwnKeys}= {}) => { + forEach(b, (val, key) => { + if (thisArg && isFunction(val)) { + a[key] = bind(val, thisArg); + } else { + a[key] = val; + } + }, {allOwnKeys}); + return a; +}; + +/** + * Remove byte order marker. This catches EF BB BF (the UTF-8 BOM) + * + * @param {string} content with BOM + * + * @returns {string} content value without BOM + */ +const stripBOM = (content) => { + if (content.charCodeAt(0) === 0xFEFF) { + content = content.slice(1); + } + return content; +}; + +/** + * Inherit the prototype methods from one constructor into another + * @param {function} constructor + * @param {function} superConstructor + * @param {object} [props] + * @param {object} [descriptors] + * + * @returns {void} + */ +const inherits = (constructor, superConstructor, props, descriptors) => { + constructor.prototype = Object.create(superConstructor.prototype, descriptors); + constructor.prototype.constructor = constructor; + Object.defineProperty(constructor, 'super', { + value: superConstructor.prototype + }); + props && Object.assign(constructor.prototype, props); +}; + +/** + * Resolve object with deep prototype chain to a flat object + * @param {Object} sourceObj source object + * @param {Object} [destObj] + * @param {Function|Boolean} [filter] + * @param {Function} [propFilter] + * + * @returns {Object} + */ +const toFlatObject = (sourceObj, destObj, filter, propFilter) => { + let props; + let i; + let prop; + const merged = {}; + + destObj = destObj || {}; + // eslint-disable-next-line no-eq-null,eqeqeq + if (sourceObj == null) return destObj; + + do { + props = Object.getOwnPropertyNames(sourceObj); + i = props.length; + while (i-- > 0) { + prop = props[i]; + if ((!propFilter || propFilter(prop, sourceObj, destObj)) && !merged[prop]) { + destObj[prop] = sourceObj[prop]; + merged[prop] = true; + } + } + sourceObj = filter !== false && getPrototypeOf(sourceObj); + } while (sourceObj && (!filter || filter(sourceObj, destObj)) && sourceObj !== Object.prototype); + + return destObj; +}; + +/** + * Determines whether a string ends with the characters of a specified string + * + * @param {String} str + * @param {String} searchString + * @param {Number} [position= 0] + * + * @returns {boolean} + */ +const endsWith = (str, searchString, position) => { + str = String(str); + if (position === undefined || position > str.length) { + position = str.length; + } + position -= searchString.length; + const lastIndex = str.indexOf(searchString, position); + return lastIndex !== -1 && lastIndex === position; +}; + + +/** + * Returns new array from array like object or null if failed + * + * @param {*} [thing] + * + * @returns {?Array} + */ +const toArray = (thing) => { + if (!thing) return null; + if (isArray(thing)) return thing; + let i = thing.length; + if (!isNumber(i)) return null; + const arr = new Array(i); + while (i-- > 0) { + arr[i] = thing[i]; + } + return arr; +}; + +/** + * Checking if the Uint8Array exists and if it does, it returns a function that checks if the + * thing passed in is an instance of Uint8Array + * + * @param {TypedArray} + * + * @returns {Array} + */ +// eslint-disable-next-line func-names +const isTypedArray = (TypedArray => { + // eslint-disable-next-line func-names + return thing => { + return TypedArray && thing instanceof TypedArray; + }; +})(typeof Uint8Array !== 'undefined' && getPrototypeOf(Uint8Array)); + +/** + * For each entry in the object, call the function with the key and value. + * + * @param {Object} obj - The object to iterate over. + * @param {Function} fn - The function to call for each entry. + * + * @returns {void} + */ +const forEachEntry = (obj, fn) => { + const generator = obj && obj[Symbol.iterator]; + + const iterator = generator.call(obj); + + let result; + + while ((result = iterator.next()) && !result.done) { + const pair = result.value; + fn.call(obj, pair[0], pair[1]); + } +}; + +/** + * It takes a regular expression and a string, and returns an array of all the matches + * + * @param {string} regExp - The regular expression to match against. + * @param {string} str - The string to search. + * + * @returns {Array} + */ +const matchAll = (regExp, str) => { + let matches; + const arr = []; + + while ((matches = regExp.exec(str)) !== null) { + arr.push(matches); + } + + return arr; +}; + +/* Checking if the kindOfTest function returns true when passed an HTMLFormElement. */ +const isHTMLForm = kindOfTest('HTMLFormElement'); + +const toCamelCase = str => { + return str.toLowerCase().replace(/[_-\s]([a-z\d])(\w*)/g, + function replacer(m, p1, p2) { + return p1.toUpperCase() + p2; + } + ); +}; + +/* Creating a function that will check if an object has a property. */ +const hasOwnProperty = (({hasOwnProperty}) => (obj, prop) => hasOwnProperty.call(obj, prop))(Object.prototype); + +/** + * Determine if a value is a RegExp object + * + * @param {*} val The value to test + * + * @returns {boolean} True if value is a RegExp object, otherwise false + */ +const isRegExp = kindOfTest('RegExp'); + +const reduceDescriptors = (obj, reducer) => { + const descriptors = Object.getOwnPropertyDescriptors(obj); + const reducedDescriptors = {}; + + forEach(descriptors, (descriptor, name) => { + if (reducer(descriptor, name, obj) !== false) { + reducedDescriptors[name] = descriptor; + } + }); + + Object.defineProperties(obj, reducedDescriptors); +}; + +/** + * Makes all methods read-only + * @param {Object} obj + */ + +const freezeMethods = (obj) => { + reduceDescriptors(obj, (descriptor, name) => { + const value = obj[name]; + + if (!isFunction(value)) return; + + descriptor.enumerable = false; + + if ('writable' in descriptor) { + descriptor.writable = false; + return; + } + + if (!descriptor.set) { + descriptor.set = () => { + throw Error('Can not read-only method \'' + name + '\''); + }; + } + }); +}; + +const toObjectSet = (arrayOrString, delimiter) => { + const obj = {}; + + const define = (arr) => { + arr.forEach(value => { + obj[value] = true; + }); + }; + + isArray(arrayOrString) ? define(arrayOrString) : define(String(arrayOrString).split(delimiter)); + + return obj; +}; + +const noop = () => {}; + +const toFiniteNumber = (value, defaultValue) => { + value = +value; + return Number.isFinite(value) ? value : defaultValue; +}; + +const utils = { + isArray, + isArrayBuffer, + isBuffer, + isFormData, + isArrayBufferView, + isString, + isNumber, + isBoolean, + isObject, + isPlainObject, + isUndefined, + isDate, + isFile, + isBlob, + isRegExp, + isFunction, + isStream, + isURLSearchParams, + isTypedArray, + isFileList, + forEach, + merge, + extend, + trim, + stripBOM, + inherits, + toFlatObject, + kindOf, + kindOfTest, + endsWith, + toArray, + forEachEntry, + matchAll, + isHTMLForm, + hasOwnProperty, + hasOwnProp: hasOwnProperty, // an alias to avoid ESLint no-prototype-builtins detection + reduceDescriptors, + freezeMethods, + toObjectSet, + toCamelCase, + noop, + toFiniteNumber +}; + +/** + * Create an Error with the specified message, config, error code, request and response. + * + * @param {string} message The error message. + * @param {string} [code] The error code (for example, 'ECONNABORTED'). + * @param {Object} [config] The config. + * @param {Object} [request] The request. + * @param {Object} [response] The response. + * + * @returns {Error} The created error. + */ +function AxiosError(message, code, config, request, response) { + Error.call(this); + + if (Error.captureStackTrace) { + Error.captureStackTrace(this, this.constructor); + } else { + this.stack = (new Error()).stack; + } + + this.message = message; + this.name = 'AxiosError'; + code && (this.code = code); + config && (this.config = config); + request && (this.request = request); + response && (this.response = response); +} + +utils.inherits(AxiosError, Error, { + toJSON: function toJSON() { + return { + // Standard + message: this.message, + name: this.name, + // Microsoft + description: this.description, + number: this.number, + // Mozilla + fileName: this.fileName, + lineNumber: this.lineNumber, + columnNumber: this.columnNumber, + stack: this.stack, + // Axios + config: this.config, + code: this.code, + status: this.response && this.response.status ? this.response.status : null + }; + } +}); + +const prototype$1 = AxiosError.prototype; +const descriptors = {}; + +[ + 'ERR_BAD_OPTION_VALUE', + 'ERR_BAD_OPTION', + 'ECONNABORTED', + 'ETIMEDOUT', + 'ERR_NETWORK', + 'ERR_FR_TOO_MANY_REDIRECTS', + 'ERR_DEPRECATED', + 'ERR_BAD_RESPONSE', + 'ERR_BAD_REQUEST', + 'ERR_CANCELED', + 'ERR_NOT_SUPPORT', + 'ERR_INVALID_URL' +// eslint-disable-next-line func-names +].forEach(code => { + descriptors[code] = {value: code}; +}); + +Object.defineProperties(AxiosError, descriptors); +Object.defineProperty(prototype$1, 'isAxiosError', {value: true}); + +// eslint-disable-next-line func-names +AxiosError.from = (error, code, config, request, response, customProps) => { + const axiosError = Object.create(prototype$1); + + utils.toFlatObject(error, axiosError, function filter(obj) { + return obj !== Error.prototype; + }, prop => { + return prop !== 'isAxiosError'; + }); + + AxiosError.call(axiosError, error.message, code, config, request, response); + + axiosError.cause = error; + + axiosError.name = error.name; + + customProps && Object.assign(axiosError, customProps); + + return axiosError; +}; + +/** + * Determines if the given thing is a array or js object. + * + * @param {string} thing - The object or array to be visited. + * + * @returns {boolean} + */ +function isVisitable(thing) { + return utils.isPlainObject(thing) || utils.isArray(thing); +} + +/** + * It removes the brackets from the end of a string + * + * @param {string} key - The key of the parameter. + * + * @returns {string} the key without the brackets. + */ +function removeBrackets(key) { + return utils.endsWith(key, '[]') ? key.slice(0, -2) : key; +} + +/** + * It takes a path, a key, and a boolean, and returns a string + * + * @param {string} path - The path to the current key. + * @param {string} key - The key of the current object being iterated over. + * @param {string} dots - If true, the key will be rendered with dots instead of brackets. + * + * @returns {string} The path to the current key. + */ +function renderKey(path, key, dots) { + if (!path) return key; + return path.concat(key).map(function each(token, i) { + // eslint-disable-next-line no-param-reassign + token = removeBrackets(token); + return !dots && i ? '[' + token + ']' : token; + }).join(dots ? '.' : ''); +} + +/** + * If the array is an array and none of its elements are visitable, then it's a flat array. + * + * @param {Array} arr - The array to check + * + * @returns {boolean} + */ +function isFlatArray(arr) { + return utils.isArray(arr) && !arr.some(isVisitable); +} + +const predicates = utils.toFlatObject(utils, {}, null, function filter(prop) { + return /^is[A-Z]/.test(prop); +}); + +/** + * If the thing is a FormData object, return true, otherwise return false. + * + * @param {unknown} thing - The thing to check. + * + * @returns {boolean} + */ +function isSpecCompliant(thing) { + return thing && utils.isFunction(thing.append) && thing[Symbol.toStringTag] === 'FormData' && thing[Symbol.iterator]; +} + +/** + * Convert a data object to FormData + * + * @param {Object} obj + * @param {?Object} [formData] + * @param {?Object} [options] + * @param {Function} [options.visitor] + * @param {Boolean} [options.metaTokens = true] + * @param {Boolean} [options.dots = false] + * @param {?Boolean} [options.indexes = false] + * + * @returns {Object} + **/ + +/** + * It converts an object into a FormData object + * + * @param {Object} obj - The object to convert to form data. + * @param {string} formData - The FormData object to append to. + * @param {Object} options + * + * @returns + */ +function toFormData(obj, formData, options) { + if (!utils.isObject(obj)) { + throw new TypeError('target must be an object'); + } + + // eslint-disable-next-line no-param-reassign + formData = formData || new (FormData__default["default"] || FormData)(); + + // eslint-disable-next-line no-param-reassign + options = utils.toFlatObject(options, { + metaTokens: true, + dots: false, + indexes: false + }, false, function defined(option, source) { + // eslint-disable-next-line no-eq-null,eqeqeq + return !utils.isUndefined(source[option]); + }); + + const metaTokens = options.metaTokens; + // eslint-disable-next-line no-use-before-define + const visitor = options.visitor || defaultVisitor; + const dots = options.dots; + const indexes = options.indexes; + const _Blob = options.Blob || typeof Blob !== 'undefined' && Blob; + const useBlob = _Blob && isSpecCompliant(formData); + + if (!utils.isFunction(visitor)) { + throw new TypeError('visitor must be a function'); + } + + function convertValue(value) { + if (value === null) return ''; + + if (utils.isDate(value)) { + return value.toISOString(); + } + + if (!useBlob && utils.isBlob(value)) { + throw new AxiosError('Blob is not supported. Use a Buffer instead.'); + } + + if (utils.isArrayBuffer(value) || utils.isTypedArray(value)) { + return useBlob && typeof Blob === 'function' ? new Blob([value]) : Buffer.from(value); + } + + return value; + } + + /** + * Default visitor. + * + * @param {*} value + * @param {String|Number} key + * @param {Array} path + * @this {FormData} + * + * @returns {boolean} return true to visit the each prop of the value recursively + */ + function defaultVisitor(value, key, path) { + let arr = value; + + if (value && !path && typeof value === 'object') { + if (utils.endsWith(key, '{}')) { + // eslint-disable-next-line no-param-reassign + key = metaTokens ? key : key.slice(0, -2); + // eslint-disable-next-line no-param-reassign + value = JSON.stringify(value); + } else if ( + (utils.isArray(value) && isFlatArray(value)) || + (utils.isFileList(value) || utils.endsWith(key, '[]') && (arr = utils.toArray(value)) + )) { + // eslint-disable-next-line no-param-reassign + key = removeBrackets(key); + + arr.forEach(function each(el, index) { + !utils.isUndefined(el) && formData.append( + // eslint-disable-next-line no-nested-ternary + indexes === true ? renderKey([key], index, dots) : (indexes === null ? key : key + '[]'), + convertValue(el) + ); + }); + return false; + } + } + + if (isVisitable(value)) { + return true; + } + + formData.append(renderKey(path, key, dots), convertValue(value)); + + return false; + } + + const stack = []; + + const exposedHelpers = Object.assign(predicates, { + defaultVisitor, + convertValue, + isVisitable + }); + + function build(value, path) { + if (utils.isUndefined(value)) return; + + if (stack.indexOf(value) !== -1) { + throw Error('Circular reference detected in ' + path.join('.')); + } + + stack.push(value); + + utils.forEach(value, function each(el, key) { + const result = !utils.isUndefined(el) && visitor.call( + formData, el, utils.isString(key) ? key.trim() : key, path, exposedHelpers + ); + + if (result === true) { + build(el, path ? path.concat(key) : [key]); + } + }); + + stack.pop(); + } + + if (!utils.isObject(obj)) { + throw new TypeError('data must be an object'); + } + + build(obj); + + return formData; +} + +/** + * It encodes a string by replacing all characters that are not in the unreserved set with + * their percent-encoded equivalents + * + * @param {string} str - The string to encode. + * + * @returns {string} The encoded string. + */ +function encode$1(str) { + const charMap = { + '!': '%21', + "'": '%27', + '(': '%28', + ')': '%29', + '~': '%7E', + '%20': '+', + '%00': '\x00' + }; + return encodeURIComponent(str).replace(/[!'()~]|%20|%00/g, function replacer(match) { + return charMap[match]; + }); +} + +/** + * It takes a params object and converts it to a FormData object + * + * @param {Object} params - The parameters to be converted to a FormData object. + * @param {Object} options - The options object passed to the Axios constructor. + * + * @returns {void} + */ +function AxiosURLSearchParams(params, options) { + this._pairs = []; + + params && toFormData(params, this, options); +} + +const prototype = AxiosURLSearchParams.prototype; + +prototype.append = function append(name, value) { + this._pairs.push([name, value]); +}; + +prototype.toString = function toString(encoder) { + const _encode = encoder ? function(value) { + return encoder.call(this, value, encode$1); + } : encode$1; + + return this._pairs.map(function each(pair) { + return _encode(pair[0]) + '=' + _encode(pair[1]); + }, '').join('&'); +}; + +/** + * It replaces all instances of the characters `:`, `$`, `,`, `+`, `[`, and `]` with their + * URI encoded counterparts + * + * @param {string} val The value to be encoded. + * + * @returns {string} The encoded value. + */ +function encode(val) { + return encodeURIComponent(val). + replace(/%3A/gi, ':'). + replace(/%24/g, '$'). + replace(/%2C/gi, ','). + replace(/%20/g, '+'). + replace(/%5B/gi, '['). + replace(/%5D/gi, ']'); +} + +/** + * Build a URL by appending params to the end + * + * @param {string} url The base of the url (e.g., http://www.google.com) + * @param {object} [params] The params to be appended + * @param {?object} options + * + * @returns {string} The formatted url + */ +function buildURL(url, params, options) { + /*eslint no-param-reassign:0*/ + if (!params) { + return url; + } + + const hashmarkIndex = url.indexOf('#'); + + if (hashmarkIndex !== -1) { + url = url.slice(0, hashmarkIndex); + } + + const _encode = options && options.encode || encode; + + const serializerParams = utils.isURLSearchParams(params) ? + params.toString() : + new AxiosURLSearchParams(params, options).toString(_encode); + + if (serializerParams) { + url += (url.indexOf('?') === -1 ? '?' : '&') + serializerParams; + } + + return url; +} + +class InterceptorManager { + constructor() { + this.handlers = []; + } + + /** + * Add a new interceptor to the stack + * + * @param {Function} fulfilled The function to handle `then` for a `Promise` + * @param {Function} rejected The function to handle `reject` for a `Promise` + * + * @return {Number} An ID used to remove interceptor later + */ + use(fulfilled, rejected, options) { + this.handlers.push({ + fulfilled, + rejected, + synchronous: options ? options.synchronous : false, + runWhen: options ? options.runWhen : null + }); + return this.handlers.length - 1; + } + + /** + * Remove an interceptor from the stack + * + * @param {Number} id The ID that was returned by `use` + * + * @returns {Boolean} `true` if the interceptor was removed, `false` otherwise + */ + eject(id) { + if (this.handlers[id]) { + this.handlers[id] = null; + } + } + + /** + * Clear all interceptors from the stack + * + * @returns {void} + */ + clear() { + if (this.handlers) { + this.handlers = []; + } + } + + /** + * Iterate over all the registered interceptors + * + * This method is particularly useful for skipping over any + * interceptors that may have become `null` calling `eject`. + * + * @param {Function} fn The function to call for each interceptor + * + * @returns {void} + */ + forEach(fn) { + utils.forEach(this.handlers, function forEachHandler(h) { + if (h !== null) { + fn(h); + } + }); + } +} + +const transitionalDefaults = { + silentJSONParsing: true, + forcedJSONParsing: true, + clarifyTimeoutError: false +}; + +const URLSearchParams = url__default["default"].URLSearchParams; + +const platform = { + isNode: true, + classes: { + URLSearchParams, + FormData: FormData__default["default"], + Blob: typeof Blob !== 'undefined' && Blob || null + }, + protocols: [ 'http', 'https', 'file', 'data' ] +}; + +function toURLEncodedForm(data, options) { + return toFormData(data, new platform.classes.URLSearchParams(), Object.assign({ + visitor: function(value, key, path, helpers) { + if (utils.isBuffer(value)) { + this.append(key, value.toString('base64')); + return false; + } + + return helpers.defaultVisitor.apply(this, arguments); + } + }, options)); +} + +/** + * It takes a string like `foo[x][y][z]` and returns an array like `['foo', 'x', 'y', 'z'] + * + * @param {string} name - The name of the property to get. + * + * @returns An array of strings. + */ +function parsePropPath(name) { + // foo[x][y][z] + // foo.x.y.z + // foo-x-y-z + // foo x y z + return utils.matchAll(/\w+|\[(\w*)]/g, name).map(match => { + return match[0] === '[]' ? '' : match[1] || match[0]; + }); +} + +/** + * Convert an array to an object. + * + * @param {Array} arr - The array to convert to an object. + * + * @returns An object with the same keys and values as the array. + */ +function arrayToObject(arr) { + const obj = {}; + const keys = Object.keys(arr); + let i; + const len = keys.length; + let key; + for (i = 0; i < len; i++) { + key = keys[i]; + obj[key] = arr[key]; + } + return obj; +} + +/** + * It takes a FormData object and returns a JavaScript object + * + * @param {string} formData The FormData object to convert to JSON. + * + * @returns {Object | null} The converted object. + */ +function formDataToJSON(formData) { + function buildPath(path, value, target, index) { + let name = path[index++]; + const isNumericKey = Number.isFinite(+name); + const isLast = index >= path.length; + name = !name && utils.isArray(target) ? target.length : name; + + if (isLast) { + if (utils.hasOwnProp(target, name)) { + target[name] = [target[name], value]; + } else { + target[name] = value; + } + + return !isNumericKey; + } + + if (!target[name] || !utils.isObject(target[name])) { + target[name] = []; + } + + const result = buildPath(path, value, target[name], index); + + if (result && utils.isArray(target[name])) { + target[name] = arrayToObject(target[name]); + } + + return !isNumericKey; + } + + if (utils.isFormData(formData) && utils.isFunction(formData.entries)) { + const obj = {}; + + utils.forEachEntry(formData, (name, value) => { + buildPath(parsePropPath(name), value, obj, 0); + }); + + return obj; + } + + return null; +} + +/** + * Resolve or reject a Promise based on response status. + * + * @param {Function} resolve A function that resolves the promise. + * @param {Function} reject A function that rejects the promise. + * @param {object} response The response. + * + * @returns {object} The response. + */ +function settle(resolve, reject, response) { + const validateStatus = response.config.validateStatus; + if (!response.status || !validateStatus || validateStatus(response.status)) { + resolve(response); + } else { + reject(new AxiosError( + 'Request failed with status code ' + response.status, + [AxiosError.ERR_BAD_REQUEST, AxiosError.ERR_BAD_RESPONSE][Math.floor(response.status / 100) - 4], + response.config, + response.request, + response + )); + } +} + +/** + * Determines whether the specified URL is absolute + * + * @param {string} url The URL to test + * + * @returns {boolean} True if the specified URL is absolute, otherwise false + */ +function isAbsoluteURL(url) { + // A URL is considered absolute if it begins with "://" or "//" (protocol-relative URL). + // RFC 3986 defines scheme name as a sequence of characters beginning with a letter and followed + // by any combination of letters, digits, plus, period, or hyphen. + return /^([a-z][a-z\d+\-.]*:)?\/\//i.test(url); +} + +/** + * Creates a new URL by combining the specified URLs + * + * @param {string} baseURL The base URL + * @param {string} relativeURL The relative URL + * + * @returns {string} The combined URL + */ +function combineURLs(baseURL, relativeURL) { + return relativeURL + ? baseURL.replace(/\/+$/, '') + '/' + relativeURL.replace(/^\/+/, '') + : baseURL; +} + +/** + * Creates a new URL by combining the baseURL with the requestedURL, + * only when the requestedURL is not already an absolute URL. + * If the requestURL is absolute, this function returns the requestedURL untouched. + * + * @param {string} baseURL The base URL + * @param {string} requestedURL Absolute or relative URL to combine + * + * @returns {string} The combined full path + */ +function buildFullPath(baseURL, requestedURL) { + if (baseURL && !isAbsoluteURL(requestedURL)) { + return combineURLs(baseURL, requestedURL); + } + return requestedURL; +} + +const VERSION = "1.0.0"; + +/** + * A `CanceledError` is an object that is thrown when an operation is canceled. + * + * @param {string=} message The message. + * @param {Object=} config The config. + * @param {Object=} request The request. + * + * @returns {CanceledError} The created error. + */ +function CanceledError(message, config, request) { + // eslint-disable-next-line no-eq-null,eqeqeq + AxiosError.call(this, message == null ? 'canceled' : message, AxiosError.ERR_CANCELED, config, request); + this.name = 'CanceledError'; +} + +utils.inherits(CanceledError, AxiosError, { + __CANCEL__: true +}); + +function parseProtocol(url) { + const match = /^([-+\w]{1,25})(:?\/\/|:)/.exec(url); + return match && match[1] || ''; +} + +const DATA_URL_PATTERN = /^(?:([^;]+);)?(?:[^;]+;)?(base64|),([\s\S]*)$/; + +/** + * Parse data uri to a Buffer or Blob + * + * @param {String} uri + * @param {?Boolean} asBlob + * @param {?Object} options + * @param {?Function} options.Blob + * + * @returns {Buffer|Blob} + */ +function fromDataURI(uri, asBlob, options) { + const _Blob = options && options.Blob || platform.classes.Blob; + const protocol = parseProtocol(uri); + + if (asBlob === undefined && _Blob) { + asBlob = true; + } + + if (protocol === 'data') { + uri = protocol.length ? uri.slice(protocol.length + 1) : uri; + + const match = DATA_URL_PATTERN.exec(uri); + + if (!match) { + throw new AxiosError('Invalid URL', AxiosError.ERR_INVALID_URL); + } + + const mime = match[1]; + const isBase64 = match[2]; + const body = match[3]; + const buffer = Buffer.from(decodeURIComponent(body), isBase64 ? 'base64' : 'utf8'); + + if (asBlob) { + if (!_Blob) { + throw new AxiosError('Blob is not supported', AxiosError.ERR_NOT_SUPPORT); + } + + return new _Blob([buffer], {type: mime}); + } + + return buffer; + } + + throw new AxiosError('Unsupported protocol ' + protocol, AxiosError.ERR_NOT_SUPPORT); +} + +// RawAxiosHeaders whose duplicates are ignored by node +// c.f. https://nodejs.org/api/http.html#http_message_headers +const ignoreDuplicateOf = utils.toObjectSet([ + 'age', 'authorization', 'content-length', 'content-type', 'etag', + 'expires', 'from', 'host', 'if-modified-since', 'if-unmodified-since', + 'last-modified', 'location', 'max-forwards', 'proxy-authorization', + 'referer', 'retry-after', 'user-agent' +]); + +/** + * Parse headers into an object + * + * ``` + * Date: Wed, 27 Aug 2014 08:58:49 GMT + * Content-Type: application/json + * Connection: keep-alive + * Transfer-Encoding: chunked + * ``` + * + * @param {String} rawHeaders Headers needing to be parsed + * + * @returns {Object} Headers parsed into an object + */ +const parseHeaders = rawHeaders => { + const parsed = {}; + let key; + let val; + let i; + + rawHeaders && rawHeaders.split('\n').forEach(function parser(line) { + i = line.indexOf(':'); + key = line.substring(0, i).trim().toLowerCase(); + val = line.substring(i + 1).trim(); + + if (!key || (parsed[key] && ignoreDuplicateOf[key])) { + return; + } + + if (key === 'set-cookie') { + if (parsed[key]) { + parsed[key].push(val); + } else { + parsed[key] = [val]; + } + } else { + parsed[key] = parsed[key] ? parsed[key] + ', ' + val : val; + } + }); + + return parsed; +}; + +const $internals = Symbol('internals'); +const $defaults = Symbol('defaults'); + +function normalizeHeader(header) { + return header && String(header).trim().toLowerCase(); +} + +function normalizeValue(value) { + if (value === false || value == null) { + return value; + } + + return String(value); +} + +function parseTokens(str) { + const tokens = Object.create(null); + const tokensRE = /([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g; + let match; + + while ((match = tokensRE.exec(str))) { + tokens[match[1]] = match[2]; + } + + return tokens; +} + +function matchHeaderValue(context, value, header, filter) { + if (utils.isFunction(filter)) { + return filter.call(this, value, header); + } + + if (!utils.isString(value)) return; + + if (utils.isString(filter)) { + return value.indexOf(filter) !== -1; + } + + if (utils.isRegExp(filter)) { + return filter.test(value); + } +} + +function formatHeader(header) { + return header.trim() + .toLowerCase().replace(/([a-z\d])(\w*)/g, (w, char, str) => { + return char.toUpperCase() + str; + }); +} + +function buildAccessors(obj, header) { + const accessorName = utils.toCamelCase(' ' + header); + + ['get', 'set', 'has'].forEach(methodName => { + Object.defineProperty(obj, methodName + accessorName, { + value: function(arg1, arg2, arg3) { + return this[methodName].call(this, header, arg1, arg2, arg3); + }, + configurable: true + }); + }); +} + +function findKey(obj, key) { + key = key.toLowerCase(); + const keys = Object.keys(obj); + let i = keys.length; + let _key; + while (i-- > 0) { + _key = keys[i]; + if (key === _key.toLowerCase()) { + return _key; + } + } + return null; +} + +function AxiosHeaders(headers, defaults) { + headers && this.set(headers); + this[$defaults] = defaults || null; +} + +Object.assign(AxiosHeaders.prototype, { + set: function(header, valueOrRewrite, rewrite) { + const self = this; + + function setHeader(_value, _header, _rewrite) { + const lHeader = normalizeHeader(_header); + + if (!lHeader) { + throw new Error('header name must be a non-empty string'); + } + + const key = findKey(self, lHeader); + + if (key && _rewrite !== true && (self[key] === false || _rewrite === false)) { + return; + } + + if (utils.isArray(_value)) { + _value = _value.map(normalizeValue); + } else { + _value = normalizeValue(_value); + } + + self[key || _header] = _value; + } + + if (utils.isPlainObject(header)) { + utils.forEach(header, (_value, _header) => { + setHeader(_value, _header, valueOrRewrite); + }); + } else { + setHeader(valueOrRewrite, header, rewrite); + } + + return this; + }, + + get: function(header, parser) { + header = normalizeHeader(header); + + if (!header) return undefined; + + const key = findKey(this, header); + + if (key) { + const value = this[key]; + + if (!parser) { + return value; + } + + if (parser === true) { + return parseTokens(value); + } + + if (utils.isFunction(parser)) { + return parser.call(this, value, key); + } + + if (utils.isRegExp(parser)) { + return parser.exec(value); + } + + throw new TypeError('parser must be boolean|regexp|function'); + } + }, + + has: function(header, matcher) { + header = normalizeHeader(header); + + if (header) { + const key = findKey(this, header); + + return !!(key && (!matcher || matchHeaderValue(this, this[key], key, matcher))); + } + + return false; + }, + + delete: function(header, matcher) { + const self = this; + let deleted = false; + + function deleteHeader(_header) { + _header = normalizeHeader(_header); + + if (_header) { + const key = findKey(self, _header); + + if (key && (!matcher || matchHeaderValue(self, self[key], key, matcher))) { + delete self[key]; + + deleted = true; + } + } + } + + if (utils.isArray(header)) { + header.forEach(deleteHeader); + } else { + deleteHeader(header); + } + + return deleted; + }, + + clear: function() { + return Object.keys(this).forEach(this.delete.bind(this)); + }, + + normalize: function(format) { + const self = this; + const headers = {}; + + utils.forEach(this, (value, header) => { + const key = findKey(headers, header); + + if (key) { + self[key] = normalizeValue(value); + delete self[header]; + return; + } + + const normalized = format ? formatHeader(header) : String(header).trim(); + + if (normalized !== header) { + delete self[header]; + } + + self[normalized] = normalizeValue(value); + + headers[normalized] = true; + }); + + return this; + }, + + toJSON: function() { + const obj = Object.create(null); + + utils.forEach(Object.assign({}, this[$defaults] || null, this), + (value, header) => { + if (value == null || value === false) return; + obj[header] = utils.isArray(value) ? value.join(', ') : value; + }); + + return obj; + } +}); + +Object.assign(AxiosHeaders, { + from: function(thing) { + if (utils.isString(thing)) { + return new this(parseHeaders(thing)); + } + return thing instanceof this ? thing : new this(thing); + }, + + accessor: function(header) { + const internals = this[$internals] = (this[$internals] = { + accessors: {} + }); + + const accessors = internals.accessors; + const prototype = this.prototype; + + function defineAccessor(_header) { + const lHeader = normalizeHeader(_header); + + if (!accessors[lHeader]) { + buildAccessors(prototype, _header); + accessors[lHeader] = true; + } + } + + utils.isArray(header) ? header.forEach(defineAccessor) : defineAccessor(header); + + return this; + } +}); + +AxiosHeaders.accessor(['Content-Type', 'Content-Length', 'Accept', 'Accept-Encoding', 'User-Agent']); + +utils.freezeMethods(AxiosHeaders.prototype); +utils.freezeMethods(AxiosHeaders); + +/** + * Throttle decorator + * @param {Function} fn + * @param {Number} freq + * @return {Function} + */ +function throttle(fn, freq) { + let timestamp = 0; + const threshold = 1000 / freq; + let timer = null; + return function throttled(force, args) { + const now = Date.now(); + if (force || now - timestamp > threshold) { + if (timer) { + clearTimeout(timer); + timer = null; + } + timestamp = now; + return fn.apply(null, args); + } + if (!timer) { + timer = setTimeout(() => { + timer = null; + timestamp = Date.now(); + return fn.apply(null, args); + }, threshold - (now - timestamp)); + } + }; +} + +/** + * Calculate data maxRate + * @param {Number} [samplesCount= 10] + * @param {Number} [min= 1000] + * @returns {Function} + */ +function speedometer(samplesCount, min) { + samplesCount = samplesCount || 10; + const bytes = new Array(samplesCount); + const timestamps = new Array(samplesCount); + let head = 0; + let tail = 0; + let firstSampleTS; + + min = min !== undefined ? min : 1000; + + return function push(chunkLength) { + const now = Date.now(); + + const startedAt = timestamps[tail]; + + if (!firstSampleTS) { + firstSampleTS = now; + } + + bytes[head] = chunkLength; + timestamps[head] = now; + + let i = tail; + let bytesCount = 0; + + while (i !== head) { + bytesCount += bytes[i++]; + i = i % samplesCount; + } + + head = (head + 1) % samplesCount; + + if (head === tail) { + tail = (tail + 1) % samplesCount; + } + + if (now - firstSampleTS < min) { + return; + } + + const passed = startedAt && now - startedAt; + + return passed ? Math.round(bytesCount * 1000 / passed) : undefined; + }; +} + +const kInternals = Symbol('internals'); + +class AxiosTransformStream extends stream__default["default"].Transform{ + constructor(options) { + options = utils.toFlatObject(options, { + maxRate: 0, + chunkSize: 64 * 1024, + minChunkSize: 100, + timeWindow: 500, + ticksRate: 2, + samplesCount: 15 + }, null, (prop, source) => { + return !utils.isUndefined(source[prop]); + }); + + super({ + readableHighWaterMark: options.chunkSize + }); + + const self = this; + + const internals = this[kInternals] = { + length: options.length, + timeWindow: options.timeWindow, + ticksRate: options.ticksRate, + chunkSize: options.chunkSize, + maxRate: options.maxRate, + minChunkSize: options.minChunkSize, + bytesSeen: 0, + isCaptured: false, + notifiedBytesLoaded: 0, + ts: Date.now(), + bytes: 0, + onReadCallback: null + }; + + const _speedometer = speedometer(internals.ticksRate * options.samplesCount, internals.timeWindow); + + this.on('newListener', event => { + if (event === 'progress') { + if (!internals.isCaptured) { + internals.isCaptured = true; + } + } + }); + + let bytesNotified = 0; + + internals.updateProgress = throttle(function throttledHandler() { + const totalBytes = internals.length; + const bytesTransferred = internals.bytesSeen; + const progressBytes = bytesTransferred - bytesNotified; + if (!progressBytes || self.destroyed) return; + + const rate = _speedometer(progressBytes); + + bytesNotified = bytesTransferred; + + process.nextTick(() => { + self.emit('progress', { + 'loaded': bytesTransferred, + 'total': totalBytes, + 'progress': totalBytes ? (bytesTransferred / totalBytes) : undefined, + 'bytes': progressBytes, + 'rate': rate ? rate : undefined, + 'estimated': rate && totalBytes && bytesTransferred <= totalBytes ? + (totalBytes - bytesTransferred) / rate : undefined + }); + }); + }, internals.ticksRate); + + const onFinish = () => { + internals.updateProgress(true); + }; + + this.once('end', onFinish); + this.once('error', onFinish); + } + + _read(size) { + const internals = this[kInternals]; + + if (internals.onReadCallback) { + internals.onReadCallback(); + } + + return super._read(size); + } + + _transform(chunk, encoding, callback) { + const self = this; + const internals = this[kInternals]; + const maxRate = internals.maxRate; + + const readableHighWaterMark = this.readableHighWaterMark; + + const timeWindow = internals.timeWindow; + + const divider = 1000 / timeWindow; + const bytesThreshold = (maxRate / divider); + const minChunkSize = internals.minChunkSize !== false ? Math.max(internals.minChunkSize, bytesThreshold * 0.01) : 0; + + function pushChunk(_chunk, _callback) { + const bytes = Buffer.byteLength(_chunk); + internals.bytesSeen += bytes; + internals.bytes += bytes; + + if (internals.isCaptured) { + internals.updateProgress(); + } + + if (self.push(_chunk)) { + process.nextTick(_callback); + } else { + internals.onReadCallback = () => { + internals.onReadCallback = null; + process.nextTick(_callback); + }; + } + } + + const transformChunk = (_chunk, _callback) => { + const chunkSize = Buffer.byteLength(_chunk); + let chunkRemainder = null; + let maxChunkSize = readableHighWaterMark; + let bytesLeft; + let passed = 0; + + if (maxRate) { + const now = Date.now(); + + if (!internals.ts || (passed = (now - internals.ts)) >= timeWindow) { + internals.ts = now; + bytesLeft = bytesThreshold - internals.bytes; + internals.bytes = bytesLeft < 0 ? -bytesLeft : 0; + passed = 0; + } + + bytesLeft = bytesThreshold - internals.bytes; + } + + if (maxRate) { + if (bytesLeft <= 0) { + // next time window + return setTimeout(() => { + _callback(null, _chunk); + }, timeWindow - passed); + } + + if (bytesLeft < maxChunkSize) { + maxChunkSize = bytesLeft; + } + } + + if (maxChunkSize && chunkSize > maxChunkSize && (chunkSize - maxChunkSize) > minChunkSize) { + chunkRemainder = _chunk.subarray(maxChunkSize); + _chunk = _chunk.subarray(0, maxChunkSize); + } + + pushChunk(_chunk, chunkRemainder ? () => { + process.nextTick(_callback, null, chunkRemainder); + } : _callback); + }; + + transformChunk(chunk, function transformNextChunk(err, _chunk) { + if (err) { + return callback(err); + } + + if (_chunk) { + transformChunk(_chunk, transformNextChunk); + } else { + callback(null); + } + }); + } + + setLength(length) { + this[kInternals].length = +length; + return this; + } +} + +const isBrotliSupported = utils.isFunction(zlib__default["default"].createBrotliDecompress); + +const {http: httpFollow, https: httpsFollow} = followRedirects__default["default"]; + +const isHttps = /https:?/; + +const supportedProtocols = platform.protocols.map(protocol => { + return protocol + ':'; +}); + +/** + * If the proxy or config beforeRedirects functions are defined, call them with the options + * object. + * + * @param {Object} options - The options object that was passed to the request. + * + * @returns {Object} + */ +function dispatchBeforeRedirect(options) { + if (options.beforeRedirects.proxy) { + options.beforeRedirects.proxy(options); + } + if (options.beforeRedirects.config) { + options.beforeRedirects.config(options); + } +} + +/** + * If the proxy or config afterRedirects functions are defined, call them with the options + * + * @param {http.ClientRequestArgs} options + * @param {AxiosProxyConfig} configProxy + * @param {string} location + * + * @returns {http.ClientRequestArgs} + */ +function setProxy(options, configProxy, location) { + let proxy = configProxy; + if (!proxy && proxy !== false) { + const proxyUrl = proxyFromEnv.getProxyForUrl(location); + if (proxyUrl) { + proxy = new URL(proxyUrl); + } + } + if (proxy) { + // Basic proxy authorization + if (proxy.username) { + proxy.auth = (proxy.username || '') + ':' + (proxy.password || ''); + } + + if (proxy.auth) { + // Support proxy auth object form + if (proxy.auth.username || proxy.auth.password) { + proxy.auth = (proxy.auth.username || '') + ':' + (proxy.auth.password || ''); + } + const base64 = Buffer + .from(proxy.auth, 'utf8') + .toString('base64'); + options.headers['Proxy-Authorization'] = 'Basic ' + base64; + } + + options.headers.host = options.hostname + (options.port ? ':' + options.port : ''); + options.hostname = proxy.hostname; + // Replace 'host' since options is not a URL object + options.host = proxy.hostname; + options.port = proxy.port; + options.path = location; + if (proxy.protocol) { + options.protocol = proxy.protocol; + } + } + + options.beforeRedirects.proxy = function beforeRedirect(redirectOptions) { + // Configure proxy for redirected request, passing the original config proxy to apply + // the exact same logic as if the redirected request was performed by axios directly. + setProxy(redirectOptions, configProxy, redirectOptions.href); + }; +} + +/*eslint consistent-return:0*/ +function httpAdapter(config) { + return new Promise(function dispatchHttpRequest(resolvePromise, rejectPromise) { + let data = config.data; + const responseType = config.responseType; + const responseEncoding = config.responseEncoding; + const method = config.method.toUpperCase(); + let isFinished; + let isDone; + let rejected = false; + let req; + + // temporary internal emitter until the AxiosRequest class will be implemented + const emitter = new EventEmitter__default["default"](); + + function onFinished() { + if (isFinished) return; + isFinished = true; + + if (config.cancelToken) { + config.cancelToken.unsubscribe(abort); + } + + if (config.signal) { + config.signal.removeEventListener('abort', abort); + } + + emitter.removeAllListeners(); + } + + function done(value, isRejected) { + if (isDone) return; + + isDone = true; + + if (isRejected) { + rejected = true; + onFinished(); + } + + isRejected ? rejectPromise(value) : resolvePromise(value); + } + + const resolve = function resolve(value) { + done(value); + }; + + const reject = function reject(value) { + done(value, true); + }; + + function abort(reason) { + emitter.emit('abort', !reason || reason.type ? new CanceledError(null, config, req) : reason); + } + + emitter.once('abort', reject); + + if (config.cancelToken || config.signal) { + config.cancelToken && config.cancelToken.subscribe(abort); + if (config.signal) { + config.signal.aborted ? abort() : config.signal.addEventListener('abort', abort); + } + } + + // Parse url + const fullPath = buildFullPath(config.baseURL, config.url); + const parsed = new URL(fullPath); + const protocol = parsed.protocol || supportedProtocols[0]; + + if (protocol === 'data:') { + let convertedData; + + if (method !== 'GET') { + return settle(resolve, reject, { + status: 405, + statusText: 'method not allowed', + headers: {}, + config + }); + } + + try { + convertedData = fromDataURI(config.url, responseType === 'blob', { + Blob: config.env && config.env.Blob + }); + } catch (err) { + throw AxiosError.from(err, AxiosError.ERR_BAD_REQUEST, config); + } + + if (responseType === 'text') { + convertedData = convertedData.toString(responseEncoding); + + if (!responseEncoding || responseEncoding === 'utf8') { + data = utils.stripBOM(convertedData); + } + } else if (responseType === 'stream') { + convertedData = stream__default["default"].Readable.from(convertedData); + } + + return settle(resolve, reject, { + data: convertedData, + status: 200, + statusText: 'OK', + headers: {}, + config + }); + } + + if (supportedProtocols.indexOf(protocol) === -1) { + return reject(new AxiosError( + 'Unsupported protocol ' + protocol, + AxiosError.ERR_BAD_REQUEST, + config + )); + } + + const headers = AxiosHeaders.from(config.headers).normalize(); + + // Set User-Agent (required by some servers) + // See https://github.com/axios/axios/issues/69 + // User-Agent is specified; handle case where no UA header is desired + // Only set header if it hasn't been set in config + headers.set('User-Agent', 'axios/' + VERSION, false); + + const onDownloadProgress = config.onDownloadProgress; + const onUploadProgress = config.onUploadProgress; + const maxRate = config.maxRate; + let maxUploadRate = undefined; + let maxDownloadRate = undefined; + + // support for https://www.npmjs.com/package/form-data api + if (utils.isFormData(data) && utils.isFunction(data.getHeaders)) { + headers.set(data.getHeaders()); + } else if (data && !utils.isStream(data)) { + if (Buffer.isBuffer(data)) ; else if (utils.isArrayBuffer(data)) { + data = Buffer.from(new Uint8Array(data)); + } else if (utils.isString(data)) { + data = Buffer.from(data, 'utf-8'); + } else { + return reject(new AxiosError( + 'Data after transformation must be a string, an ArrayBuffer, a Buffer, or a Stream', + AxiosError.ERR_BAD_REQUEST, + config + )); + } + + // Add Content-Length header if data exists + headers.set('Content-Length', data.length, false); + + if (config.maxBodyLength > -1 && data.length > config.maxBodyLength) { + return reject(new AxiosError( + 'Request body larger than maxBodyLength limit', + AxiosError.ERR_BAD_REQUEST, + config + )); + } + } + + const contentLength = +headers.getContentLength(); + + if (utils.isArray(maxRate)) { + maxUploadRate = maxRate[0]; + maxDownloadRate = maxRate[1]; + } else { + maxUploadRate = maxDownloadRate = maxRate; + } + + if (data && (onUploadProgress || maxUploadRate)) { + if (!utils.isStream(data)) { + data = stream__default["default"].Readable.from(data, {objectMode: false}); + } + + data = stream__default["default"].pipeline([data, new AxiosTransformStream({ + length: utils.toFiniteNumber(contentLength), + maxRate: utils.toFiniteNumber(maxUploadRate) + })], utils.noop); + + onUploadProgress && data.on('progress', progress => { + onUploadProgress(Object.assign(progress, { + upload: true + })); + }); + } + + // HTTP basic authentication + let auth = undefined; + if (config.auth) { + const username = config.auth.username || ''; + const password = config.auth.password || ''; + auth = username + ':' + password; + } + + if (!auth && parsed.username) { + const urlUsername = parsed.username; + const urlPassword = parsed.password; + auth = urlUsername + ':' + urlPassword; + } + + auth && headers.delete('authorization'); + + const path = parsed.pathname.concat(parsed.searchParams); + try { + buildURL(path, config.params, config.paramsSerializer).replace(/^\?/, ''); + } catch (err) { + const customErr = new Error(err.message); + customErr.config = config; + customErr.url = config.url; + customErr.exists = true; + return reject(customErr); + } + + headers.set('Accept-Encoding', 'gzip, deflate, br', false); + + const options = { + path: buildURL(path, config.params, config.paramsSerializer).replace(/^\?/, ''), + method: method, + headers: headers.toJSON(), + agents: { http: config.httpAgent, https: config.httpsAgent }, + auth, + protocol, + beforeRedirect: dispatchBeforeRedirect, + beforeRedirects: {} + }; + + if (config.socketPath) { + options.socketPath = config.socketPath; + } else { + options.hostname = parsed.hostname; + options.port = parsed.port; + setProxy(options, config.proxy, protocol + '//' + parsed.hostname + (parsed.port ? ':' + parsed.port : '') + options.path); + } + + let transport; + const isHttpsRequest = isHttps.test(options.protocol); + options.agent = isHttpsRequest ? config.httpsAgent : config.httpAgent; + if (config.transport) { + transport = config.transport; + } else if (config.maxRedirects === 0) { + transport = isHttpsRequest ? https__default["default"] : http__default["default"]; + } else { + if (config.maxRedirects) { + options.maxRedirects = config.maxRedirects; + } + if (config.beforeRedirect) { + options.beforeRedirects.config = config.beforeRedirect; + } + transport = isHttpsRequest ? httpsFollow : httpFollow; + } + + if (config.maxBodyLength > -1) { + options.maxBodyLength = config.maxBodyLength; + } else { + // follow-redirects does not skip comparison, so it should always succeed for axios -1 unlimited + options.maxBodyLength = Infinity; + } + + if (config.insecureHTTPParser) { + options.insecureHTTPParser = config.insecureHTTPParser; + } + + // Create the request + req = transport.request(options, function handleResponse(res) { + if (req.destroyed) return; + + const streams = [res]; + + // uncompress the response body transparently if required + let responseStream = res; + + // return the last request in case of redirects + const lastRequest = res.req || req; + + // if decompress disabled we should not decompress + if (config.decompress !== false) { + // if no content, but headers still say that it is encoded, + // remove the header not confuse downstream operations + if (data && data.length === 0 && res.headers['content-encoding']) { + delete res.headers['content-encoding']; + } + + switch (res.headers['content-encoding']) { + /*eslint default-case:0*/ + case 'gzip': + case 'compress': + case 'deflate': + // add the unzipper to the body stream processing pipeline + streams.push(zlib__default["default"].createUnzip()); + + // remove the content-encoding in order to not confuse downstream operations + delete res.headers['content-encoding']; + break; + case 'br': + if (isBrotliSupported) { + streams.push(zlib__default["default"].createBrotliDecompress()); + delete res.headers['content-encoding']; + } + } + } + + if (onDownloadProgress) { + const responseLength = +res.headers['content-length']; + + const transformStream = new AxiosTransformStream({ + length: utils.toFiniteNumber(responseLength), + maxRate: utils.toFiniteNumber(maxDownloadRate) + }); + + onDownloadProgress && transformStream.on('progress', progress => { + onDownloadProgress(Object.assign(progress, { + download: true + })); + }); + + streams.push(transformStream); + } + + responseStream = streams.length > 1 ? stream__default["default"].pipeline(streams, utils.noop) : streams[0]; + + const offListeners = stream__default["default"].finished(responseStream, () => { + offListeners(); + onFinished(); + }); + + const response = { + status: res.statusCode, + statusText: res.statusMessage, + headers: new AxiosHeaders(res.headers), + config, + request: lastRequest + }; + + if (responseType === 'stream') { + response.data = responseStream; + settle(resolve, reject, response); + } else { + const responseBuffer = []; + let totalResponseBytes = 0; + + responseStream.on('data', function handleStreamData(chunk) { + responseBuffer.push(chunk); + totalResponseBytes += chunk.length; + + // make sure the content length is not over the maxContentLength if specified + if (config.maxContentLength > -1 && totalResponseBytes > config.maxContentLength) { + // stream.destroy() emit aborted event before calling reject() on Node.js v16 + rejected = true; + responseStream.destroy(); + reject(new AxiosError('maxContentLength size of ' + config.maxContentLength + ' exceeded', + AxiosError.ERR_BAD_RESPONSE, config, lastRequest)); + } + }); + + responseStream.on('aborted', function handlerStreamAborted() { + if (rejected) { + return; + } + + const err = new AxiosError( + 'maxContentLength size of ' + config.maxContentLength + ' exceeded', + AxiosError.ERR_BAD_RESPONSE, + config, + lastRequest + ); + responseStream.destroy(err); + reject(err); + }); + + responseStream.on('error', function handleStreamError(err) { + if (req.destroyed) return; + reject(AxiosError.from(err, null, config, lastRequest)); + }); + + responseStream.on('end', function handleStreamEnd() { + try { + let responseData = responseBuffer.length === 1 ? responseBuffer[0] : Buffer.concat(responseBuffer); + if (responseType !== 'arraybuffer') { + responseData = responseData.toString(responseEncoding); + if (!responseEncoding || responseEncoding === 'utf8') { + responseData = utils.stripBOM(responseData); + } + } + response.data = responseData; + } catch (err) { + reject(AxiosError.from(err, null, config, response.request, response)); + } + settle(resolve, reject, response); + }); + } + + emitter.once('abort', err => { + if (!responseStream.destroyed) { + responseStream.emit('error', err); + responseStream.destroy(); + } + }); + }); + + emitter.once('abort', err => { + reject(err); + req.destroy(err); + }); + + // Handle errors + req.on('error', function handleRequestError(err) { + // @todo remove + // if (req.aborted && err.code !== AxiosError.ERR_FR_TOO_MANY_REDIRECTS) return; + reject(AxiosError.from(err, null, config, req)); + }); + + // set tcp keep alive to prevent drop connection by peer + req.on('socket', function handleRequestSocket(socket) { + // default interval of sending ack packet is 1 minute + socket.setKeepAlive(true, 1000 * 60); + }); + + // Handle request timeout + if (config.timeout) { + // This is forcing a int timeout to avoid problems if the `req` interface doesn't handle other types. + const timeout = parseInt(config.timeout, 10); + + if (isNaN(timeout)) { + reject(new AxiosError( + 'error trying to parse `config.timeout` to int', + AxiosError.ERR_BAD_OPTION_VALUE, + config, + req + )); + + return; + } + + // Sometime, the response will be very slow, and does not respond, the connect event will be block by event loop system. + // And timer callback will be fired, and abort() will be invoked before connection, then get "socket hang up" and code ECONNRESET. + // At this time, if we have a large number of request, nodejs will hang up some socket on background. and the number will up and up. + // And then these socket which be hang up will devouring CPU little by little. + // ClientRequest.setTimeout will be fired on the specify milliseconds, and can make sure that abort() will be fired after connect. + req.setTimeout(timeout, function handleRequestTimeout() { + if (isDone) return; + let timeoutErrorMessage = config.timeout ? 'timeout of ' + config.timeout + 'ms exceeded' : 'timeout exceeded'; + const transitional = config.transitional || transitionalDefaults; + if (config.timeoutErrorMessage) { + timeoutErrorMessage = config.timeoutErrorMessage; + } + reject(new AxiosError( + timeoutErrorMessage, + transitional.clarifyTimeoutError ? AxiosError.ETIMEDOUT : AxiosError.ECONNABORTED, + config, + req + )); + abort(); + }); + } + + + // Send the request + if (utils.isStream(data)) { + let ended = false; + let errored = false; + + data.on('end', () => { + ended = true; + }); + + data.once('error', err => { + errored = true; + req.destroy(err); + }); + + data.on('close', () => { + if (!ended && !errored) { + abort(new CanceledError('Request stream has been aborted', config, req)); + } + }); + + data.pipe(req); + } else { + req.end(data); + } + }); +} + +const cookies = platform.isStandardBrowserEnv ? + +// Standard browser envs support document.cookie + (function standardBrowserEnv() { + return { + write: function write(name, value, expires, path, domain, secure) { + const cookie = []; + cookie.push(name + '=' + encodeURIComponent(value)); + + if (utils.isNumber(expires)) { + cookie.push('expires=' + new Date(expires).toGMTString()); + } + + if (utils.isString(path)) { + cookie.push('path=' + path); + } + + if (utils.isString(domain)) { + cookie.push('domain=' + domain); + } + + if (secure === true) { + cookie.push('secure'); + } + + document.cookie = cookie.join('; '); + }, + + read: function read(name) { + const match = document.cookie.match(new RegExp('(^|;\\s*)(' + name + ')=([^;]*)')); + return (match ? decodeURIComponent(match[3]) : null); + }, + + remove: function remove(name) { + this.write(name, '', Date.now() - 86400000); + } + }; + })() : + +// Non standard browser env (web workers, react-native) lack needed support. + (function nonStandardBrowserEnv() { + return { + write: function write() {}, + read: function read() { return null; }, + remove: function remove() {} + }; + })(); + +const isURLSameOrigin = platform.isStandardBrowserEnv ? + +// Standard browser envs have full support of the APIs needed to test +// whether the request URL is of the same origin as current location. + (function standardBrowserEnv() { + const msie = /(msie|trident)/i.test(navigator.userAgent); + const urlParsingNode = document.createElement('a'); + let originURL; + + /** + * Parse a URL to discover it's components + * + * @param {String} url The URL to be parsed + * @returns {Object} + */ + function resolveURL(url) { + let href = url; + + if (msie) { + // IE needs attribute set twice to normalize properties + urlParsingNode.setAttribute('href', href); + href = urlParsingNode.href; + } + + urlParsingNode.setAttribute('href', href); + + // urlParsingNode provides the UrlUtils interface - http://url.spec.whatwg.org/#urlutils + return { + href: urlParsingNode.href, + protocol: urlParsingNode.protocol ? urlParsingNode.protocol.replace(/:$/, '') : '', + host: urlParsingNode.host, + search: urlParsingNode.search ? urlParsingNode.search.replace(/^\?/, '') : '', + hash: urlParsingNode.hash ? urlParsingNode.hash.replace(/^#/, '') : '', + hostname: urlParsingNode.hostname, + port: urlParsingNode.port, + pathname: (urlParsingNode.pathname.charAt(0) === '/') ? + urlParsingNode.pathname : + '/' + urlParsingNode.pathname + }; + } + + originURL = resolveURL(window.location.href); + + /** + * Determine if a URL shares the same origin as the current location + * + * @param {String} requestURL The URL to test + * @returns {boolean} True if URL shares the same origin, otherwise false + */ + return function isURLSameOrigin(requestURL) { + const parsed = (utils.isString(requestURL)) ? resolveURL(requestURL) : requestURL; + return (parsed.protocol === originURL.protocol && + parsed.host === originURL.host); + }; + })() : + + // Non standard browser envs (web workers, react-native) lack needed support. + (function nonStandardBrowserEnv() { + return function isURLSameOrigin() { + return true; + }; + })(); + +function progressEventReducer(listener, isDownloadStream) { + let bytesNotified = 0; + const _speedometer = speedometer(50, 250); + + return e => { + const loaded = e.loaded; + const total = e.lengthComputable ? e.total : undefined; + const progressBytes = loaded - bytesNotified; + const rate = _speedometer(progressBytes); + const inRange = loaded <= total; + + bytesNotified = loaded; + + const data = { + loaded, + total, + progress: total ? (loaded / total) : undefined, + bytes: progressBytes, + rate: rate ? rate : undefined, + estimated: rate && total && inRange ? (total - loaded) / rate : undefined + }; + + data[isDownloadStream ? 'download' : 'upload'] = true; + + listener(data); + }; +} + +function xhrAdapter(config) { + return new Promise(function dispatchXhrRequest(resolve, reject) { + let requestData = config.data; + const requestHeaders = AxiosHeaders.from(config.headers).normalize(); + const responseType = config.responseType; + let onCanceled; + function done() { + if (config.cancelToken) { + config.cancelToken.unsubscribe(onCanceled); + } + + if (config.signal) { + config.signal.removeEventListener('abort', onCanceled); + } + } + + if (utils.isFormData(requestData) && platform.isStandardBrowserEnv) { + requestHeaders.setContentType(false); // Let the browser set it + } + + let request = new XMLHttpRequest(); + + // HTTP basic authentication + if (config.auth) { + const username = config.auth.username || ''; + const password = config.auth.password ? unescape(encodeURIComponent(config.auth.password)) : ''; + requestHeaders.set('Authorization', 'Basic ' + btoa(username + ':' + password)); + } + + const fullPath = buildFullPath(config.baseURL, config.url); + + request.open(config.method.toUpperCase(), buildURL(fullPath, config.params, config.paramsSerializer), true); + + // Set the request timeout in MS + request.timeout = config.timeout; + + function onloadend() { + if (!request) { + return; + } + // Prepare the response + const responseHeaders = AxiosHeaders.from( + 'getAllResponseHeaders' in request && request.getAllResponseHeaders() + ); + const responseData = !responseType || responseType === 'text' || responseType === 'json' ? + request.responseText : request.response; + const response = { + data: responseData, + status: request.status, + statusText: request.statusText, + headers: responseHeaders, + config, + request + }; + + settle(function _resolve(value) { + resolve(value); + done(); + }, function _reject(err) { + reject(err); + done(); + }, response); + + // Clean up request + request = null; + } + + if ('onloadend' in request) { + // Use onloadend if available + request.onloadend = onloadend; + } else { + // Listen for ready state to emulate onloadend + request.onreadystatechange = function handleLoad() { + if (!request || request.readyState !== 4) { + return; + } + + // The request errored out and we didn't get a response, this will be + // handled by onerror instead + // With one exception: request that using file: protocol, most browsers + // will return status as 0 even though it's a successful request + if (request.status === 0 && !(request.responseURL && request.responseURL.indexOf('file:') === 0)) { + return; + } + // readystate handler is calling before onerror or ontimeout handlers, + // so we should call onloadend on the next 'tick' + setTimeout(onloadend); + }; + } + + // Handle browser request cancellation (as opposed to a manual cancellation) + request.onabort = function handleAbort() { + if (!request) { + return; + } + + reject(new AxiosError('Request aborted', AxiosError.ECONNABORTED, config, request)); + + // Clean up request + request = null; + }; + + // Handle low level network errors + request.onerror = function handleError() { + // Real errors are hidden from us by the browser + // onerror should only fire if it's a network error + reject(new AxiosError('Network Error', AxiosError.ERR_NETWORK, config, request)); + + // Clean up request + request = null; + }; + + // Handle timeout + request.ontimeout = function handleTimeout() { + let timeoutErrorMessage = config.timeout ? 'timeout of ' + config.timeout + 'ms exceeded' : 'timeout exceeded'; + const transitional = config.transitional || transitionalDefaults; + if (config.timeoutErrorMessage) { + timeoutErrorMessage = config.timeoutErrorMessage; + } + reject(new AxiosError( + timeoutErrorMessage, + transitional.clarifyTimeoutError ? AxiosError.ETIMEDOUT : AxiosError.ECONNABORTED, + config, + request)); + + // Clean up request + request = null; + }; + + // Add xsrf header + // This is only done if running in a standard browser environment. + // Specifically not if we're in a web worker, or react-native. + if (platform.isStandardBrowserEnv) { + // Add xsrf header + const xsrfValue = (config.withCredentials || isURLSameOrigin(fullPath)) + && config.xsrfCookieName && cookies.read(config.xsrfCookieName); + + if (xsrfValue) { + requestHeaders.set(config.xsrfHeaderName, xsrfValue); + } + } + + // Remove Content-Type if data is undefined + requestData === undefined && requestHeaders.setContentType(null); + + // Add headers to the request + if ('setRequestHeader' in request) { + utils.forEach(requestHeaders.toJSON(), function setRequestHeader(val, key) { + request.setRequestHeader(key, val); + }); + } + + // Add withCredentials to request if needed + if (!utils.isUndefined(config.withCredentials)) { + request.withCredentials = !!config.withCredentials; + } + + // Add responseType to request if needed + if (responseType && responseType !== 'json') { + request.responseType = config.responseType; + } + + // Handle progress if needed + if (typeof config.onDownloadProgress === 'function') { + request.addEventListener('progress', progressEventReducer(config.onDownloadProgress, true)); + } + + // Not all browsers support upload events + if (typeof config.onUploadProgress === 'function' && request.upload) { + request.upload.addEventListener('progress', progressEventReducer(config.onUploadProgress)); + } + + if (config.cancelToken || config.signal) { + // Handle cancellation + // eslint-disable-next-line func-names + onCanceled = cancel => { + if (!request) { + return; + } + reject(!cancel || cancel.type ? new CanceledError(null, config, request) : cancel); + request.abort(); + request = null; + }; + + config.cancelToken && config.cancelToken.subscribe(onCanceled); + if (config.signal) { + config.signal.aborted ? onCanceled() : config.signal.addEventListener('abort', onCanceled); + } + } + + const protocol = parseProtocol(fullPath); + + if (protocol && platform.protocols.indexOf(protocol) === -1) { + reject(new AxiosError('Unsupported protocol ' + protocol + ':', AxiosError.ERR_BAD_REQUEST, config)); + return; + } + + + // Send the request + request.send(requestData || null); + }); +} + +const adapters = { + http: httpAdapter, + xhr: xhrAdapter +}; + +const adapters$1 = { + getAdapter: (nameOrAdapter) => { + if(utils.isString(nameOrAdapter)){ + const adapter = adapters[nameOrAdapter]; + + if (!nameOrAdapter) { + throw Error( + utils.hasOwnProp(nameOrAdapter) ? + `Adapter '${nameOrAdapter}' is not available in the build` : + `Can not resolve adapter '${nameOrAdapter}'` + ); + } + + return adapter + } + + if (!utils.isFunction(nameOrAdapter)) { + throw new TypeError('adapter is not a function'); + } + + return nameOrAdapter; + }, + adapters +}; + +const DEFAULT_CONTENT_TYPE = { + 'Content-Type': 'application/x-www-form-urlencoded' +}; + +/** + * If the browser has an XMLHttpRequest object, use the XHR adapter, otherwise use the HTTP + * adapter + * + * @returns {Function} + */ +function getDefaultAdapter() { + let adapter; + if (typeof XMLHttpRequest !== 'undefined') { + // For browsers use XHR adapter + adapter = adapters$1.getAdapter('xhr'); + } else if (typeof process !== 'undefined' && utils.kindOf(process) === 'process') { + // For node use HTTP adapter + adapter = adapters$1.getAdapter('http'); + } + return adapter; +} + +/** + * It takes a string, tries to parse it, and if it fails, it returns the stringified version + * of the input + * + * @param {any} rawValue - The value to be stringified. + * @param {Function} parser - A function that parses a string into a JavaScript object. + * @param {Function} encoder - A function that takes a value and returns a string. + * + * @returns {string} A stringified version of the rawValue. + */ +function stringifySafely(rawValue, parser, encoder) { + if (utils.isString(rawValue)) { + try { + (parser || JSON.parse)(rawValue); + return utils.trim(rawValue); + } catch (e) { + if (e.name !== 'SyntaxError') { + throw e; + } + } + } + + return (encoder || JSON.stringify)(rawValue); +} + +const defaults = { + + transitional: transitionalDefaults, + + adapter: getDefaultAdapter(), + + transformRequest: [function transformRequest(data, headers) { + const contentType = headers.getContentType() || ''; + const hasJSONContentType = contentType.indexOf('application/json') > -1; + const isObjectPayload = utils.isObject(data); + + if (isObjectPayload && utils.isHTMLForm(data)) { + data = new FormData(data); + } + + const isFormData = utils.isFormData(data); + + if (isFormData) { + if (!hasJSONContentType) { + return data; + } + return hasJSONContentType ? JSON.stringify(formDataToJSON(data)) : data; + } + + if (utils.isArrayBuffer(data) || + utils.isBuffer(data) || + utils.isStream(data) || + utils.isFile(data) || + utils.isBlob(data) + ) { + return data; + } + if (utils.isArrayBufferView(data)) { + return data.buffer; + } + if (utils.isURLSearchParams(data)) { + headers.setContentType('application/x-www-form-urlencoded;charset=utf-8', false); + return data.toString(); + } + + let isFileList; + + if (isObjectPayload) { + if (contentType.indexOf('application/x-www-form-urlencoded') > -1) { + return toURLEncodedForm(data, this.formSerializer).toString(); + } + + if ((isFileList = utils.isFileList(data)) || contentType.indexOf('multipart/form-data') > -1) { + const _FormData = this.env && this.env.FormData; + + return toFormData( + isFileList ? {'files[]': data} : data, + _FormData && new _FormData(), + this.formSerializer + ); + } + } + + if (isObjectPayload || hasJSONContentType ) { + headers.setContentType('application/json', false); + return stringifySafely(data); + } + + return data; + }], + + transformResponse: [function transformResponse(data) { + const transitional = this.transitional || defaults.transitional; + const forcedJSONParsing = transitional && transitional.forcedJSONParsing; + const JSONRequested = this.responseType === 'json'; + + if (data && utils.isString(data) && ((forcedJSONParsing && !this.responseType) || JSONRequested)) { + const silentJSONParsing = transitional && transitional.silentJSONParsing; + const strictJSONParsing = !silentJSONParsing && JSONRequested; + + try { + return JSON.parse(data); + } catch (e) { + if (strictJSONParsing) { + if (e.name === 'SyntaxError') { + throw AxiosError.from(e, AxiosError.ERR_BAD_RESPONSE, this, null, this.response); + } + throw e; + } + } + } + + return data; + }], + + /** + * A timeout in milliseconds to abort a request. If set to 0 (default) a + * timeout is not created. + */ + timeout: 0, + + xsrfCookieName: 'XSRF-TOKEN', + xsrfHeaderName: 'X-XSRF-TOKEN', + + maxContentLength: -1, + maxBodyLength: -1, + + env: { + FormData: platform.classes.FormData, + Blob: platform.classes.Blob + }, + + validateStatus: function validateStatus(status) { + return status >= 200 && status < 300; + }, + + headers: { + common: { + 'Accept': 'application/json, text/plain, */*' + } + } +}; + +utils.forEach(['delete', 'get', 'head'], function forEachMethodNoData(method) { + defaults.headers[method] = {}; +}); + +utils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) { + defaults.headers[method] = utils.merge(DEFAULT_CONTENT_TYPE); +}); + +/** + * Transform the data for a request or a response + * + * @param {Array|Function} fns A single function or Array of functions + * @param {?Object} response The response object + * + * @returns {*} The resulting transformed data + */ +function transformData(fns, response) { + const config = this || defaults; + const context = response || config; + const headers = AxiosHeaders.from(context.headers); + let data = context.data; + + utils.forEach(fns, function transform(fn) { + data = fn.call(config, data, headers.normalize(), response ? response.status : undefined); + }); + + headers.normalize(); + + return data; +} + +function isCancel(value) { + return !!(value && value.__CANCEL__); +} + +/** + * Throws a `CanceledError` if cancellation has been requested. + * + * @param {Object} config The config that is to be used for the request + * + * @returns {void} + */ +function throwIfCancellationRequested(config) { + if (config.cancelToken) { + config.cancelToken.throwIfRequested(); + } + + if (config.signal && config.signal.aborted) { + throw new CanceledError(); + } +} + +/** + * Dispatch a request to the server using the configured adapter. + * + * @param {object} config The config that is to be used for the request + * + * @returns {Promise} The Promise to be fulfilled + */ +function dispatchRequest(config) { + throwIfCancellationRequested(config); + + config.headers = AxiosHeaders.from(config.headers); + + // Transform request data + config.data = transformData.call( + config, + config.transformRequest + ); + + const adapter = config.adapter || defaults.adapter; + + return adapter(config).then(function onAdapterResolution(response) { + throwIfCancellationRequested(config); + + // Transform response data + response.data = transformData.call( + config, + config.transformResponse, + response + ); + + response.headers = AxiosHeaders.from(response.headers); + + return response; + }, function onAdapterRejection(reason) { + if (!isCancel(reason)) { + throwIfCancellationRequested(config); + + // Transform response data + if (reason && reason.response) { + reason.response.data = transformData.call( + config, + config.transformResponse, + reason.response + ); + reason.response.headers = AxiosHeaders.from(reason.response.headers); + } + } + + return Promise.reject(reason); + }); +} + +/** + * Config-specific merge-function which creates a new config-object + * by merging two configuration objects together. + * + * @param {Object} config1 + * @param {Object} config2 + * + * @returns {Object} New object resulting from merging config2 to config1 + */ +function mergeConfig(config1, config2) { + // eslint-disable-next-line no-param-reassign + config2 = config2 || {}; + const config = {}; + + function getMergedValue(target, source) { + if (utils.isPlainObject(target) && utils.isPlainObject(source)) { + return utils.merge(target, source); + } else if (utils.isPlainObject(source)) { + return utils.merge({}, source); + } else if (utils.isArray(source)) { + return source.slice(); + } + return source; + } + + // eslint-disable-next-line consistent-return + function mergeDeepProperties(prop) { + if (!utils.isUndefined(config2[prop])) { + return getMergedValue(config1[prop], config2[prop]); + } else if (!utils.isUndefined(config1[prop])) { + return getMergedValue(undefined, config1[prop]); + } + } + + // eslint-disable-next-line consistent-return + function valueFromConfig2(prop) { + if (!utils.isUndefined(config2[prop])) { + return getMergedValue(undefined, config2[prop]); + } + } + + // eslint-disable-next-line consistent-return + function defaultToConfig2(prop) { + if (!utils.isUndefined(config2[prop])) { + return getMergedValue(undefined, config2[prop]); + } else if (!utils.isUndefined(config1[prop])) { + return getMergedValue(undefined, config1[prop]); + } + } + + // eslint-disable-next-line consistent-return + function mergeDirectKeys(prop) { + if (prop in config2) { + return getMergedValue(config1[prop], config2[prop]); + } else if (prop in config1) { + return getMergedValue(undefined, config1[prop]); + } + } + + const mergeMap = { + 'url': valueFromConfig2, + 'method': valueFromConfig2, + 'data': valueFromConfig2, + 'baseURL': defaultToConfig2, + 'transformRequest': defaultToConfig2, + 'transformResponse': defaultToConfig2, + 'paramsSerializer': defaultToConfig2, + 'timeout': defaultToConfig2, + 'timeoutMessage': defaultToConfig2, + 'withCredentials': defaultToConfig2, + 'adapter': defaultToConfig2, + 'responseType': defaultToConfig2, + 'xsrfCookieName': defaultToConfig2, + 'xsrfHeaderName': defaultToConfig2, + 'onUploadProgress': defaultToConfig2, + 'onDownloadProgress': defaultToConfig2, + 'decompress': defaultToConfig2, + 'maxContentLength': defaultToConfig2, + 'maxBodyLength': defaultToConfig2, + 'beforeRedirect': defaultToConfig2, + 'transport': defaultToConfig2, + 'httpAgent': defaultToConfig2, + 'httpsAgent': defaultToConfig2, + 'cancelToken': defaultToConfig2, + 'socketPath': defaultToConfig2, + 'responseEncoding': defaultToConfig2, + 'validateStatus': mergeDirectKeys + }; + + utils.forEach(Object.keys(config1).concat(Object.keys(config2)), function computeConfigValue(prop) { + const merge = mergeMap[prop] || mergeDeepProperties; + const configValue = merge(prop); + (utils.isUndefined(configValue) && merge !== mergeDirectKeys) || (config[prop] = configValue); + }); + + return config; +} + +const validators$1 = {}; + +// eslint-disable-next-line func-names +['object', 'boolean', 'number', 'function', 'string', 'symbol'].forEach((type, i) => { + validators$1[type] = function validator(thing) { + return typeof thing === type || 'a' + (i < 1 ? 'n ' : ' ') + type; + }; +}); + +const deprecatedWarnings = {}; + +/** + * Transitional option validator + * + * @param {function|boolean?} validator - set to false if the transitional option has been removed + * @param {string?} version - deprecated version / removed since version + * @param {string?} message - some message with additional info + * + * @returns {function} + */ +validators$1.transitional = function transitional(validator, version, message) { + function formatMessage(opt, desc) { + return '[Axios v' + VERSION + '] Transitional option \'' + opt + '\'' + desc + (message ? '. ' + message : ''); + } + + // eslint-disable-next-line func-names + return (value, opt, opts) => { + if (validator === false) { + throw new AxiosError( + formatMessage(opt, ' has been removed' + (version ? ' in ' + version : '')), + AxiosError.ERR_DEPRECATED + ); + } + + if (version && !deprecatedWarnings[opt]) { + deprecatedWarnings[opt] = true; + // eslint-disable-next-line no-console + console.warn( + formatMessage( + opt, + ' has been deprecated since v' + version + ' and will be removed in the near future' + ) + ); + } + + return validator ? validator(value, opt, opts) : true; + }; +}; + +/** + * Assert object's properties type + * + * @param {object} options + * @param {object} schema + * @param {boolean?} allowUnknown + * + * @returns {object} + */ + +function assertOptions(options, schema, allowUnknown) { + if (typeof options !== 'object') { + throw new AxiosError('options must be an object', AxiosError.ERR_BAD_OPTION_VALUE); + } + const keys = Object.keys(options); + let i = keys.length; + while (i-- > 0) { + const opt = keys[i]; + const validator = schema[opt]; + if (validator) { + const value = options[opt]; + const result = value === undefined || validator(value, opt, options); + if (result !== true) { + throw new AxiosError('option ' + opt + ' must be ' + result, AxiosError.ERR_BAD_OPTION_VALUE); + } + continue; + } + if (allowUnknown !== true) { + throw new AxiosError('Unknown option ' + opt, AxiosError.ERR_BAD_OPTION); + } + } +} + +const validator = { + assertOptions, + validators: validators$1 +}; + +const validators = validator.validators; + +/** + * Create a new instance of Axios + * + * @param {Object} instanceConfig The default config for the instance + * + * @return {Axios} A new instance of Axios + */ +class Axios { + constructor(instanceConfig) { + this.defaults = instanceConfig; + this.interceptors = { + request: new InterceptorManager(), + response: new InterceptorManager() + }; + } + + /** + * Dispatch a request + * + * @param {String|Object} configOrUrl The config specific for this request (merged with this.defaults) + * @param {?Object} config + * + * @returns {Promise} The Promise to be fulfilled + */ + request(configOrUrl, config) { + /*eslint no-param-reassign:0*/ + // Allow for axios('example/url'[, config]) a la fetch API + if (typeof configOrUrl === 'string') { + config = config || {}; + config.url = configOrUrl; + } else { + config = configOrUrl || {}; + } + + config = mergeConfig(this.defaults, config); + + const transitional = config.transitional; + + if (transitional !== undefined) { + validator.assertOptions(transitional, { + silentJSONParsing: validators.transitional(validators.boolean), + forcedJSONParsing: validators.transitional(validators.boolean), + clarifyTimeoutError: validators.transitional(validators.boolean) + }, false); + } + + // Set config.method + config.method = (config.method || this.defaults.method || 'get').toLowerCase(); + + // Flatten headers + const defaultHeaders = config.headers && utils.merge( + config.headers.common, + config.headers[config.method] + ); + + defaultHeaders && utils.forEach( + ['delete', 'get', 'head', 'post', 'put', 'patch', 'common'], + function cleanHeaderConfig(method) { + delete config.headers[method]; + } + ); + + config.headers = new AxiosHeaders(config.headers, defaultHeaders); + + // filter out skipped interceptors + const requestInterceptorChain = []; + let synchronousRequestInterceptors = true; + this.interceptors.request.forEach(function unshiftRequestInterceptors(interceptor) { + if (typeof interceptor.runWhen === 'function' && interceptor.runWhen(config) === false) { + return; + } + + synchronousRequestInterceptors = synchronousRequestInterceptors && interceptor.synchronous; + + requestInterceptorChain.unshift(interceptor.fulfilled, interceptor.rejected); + }); + + const responseInterceptorChain = []; + this.interceptors.response.forEach(function pushResponseInterceptors(interceptor) { + responseInterceptorChain.push(interceptor.fulfilled, interceptor.rejected); + }); + + let promise; + let i = 0; + let len; + + if (!synchronousRequestInterceptors) { + const chain = [dispatchRequest.bind(this), undefined]; + chain.unshift.apply(chain, requestInterceptorChain); + chain.push.apply(chain, responseInterceptorChain); + len = chain.length; + + promise = Promise.resolve(config); + + while (i < len) { + promise = promise.then(chain[i++], chain[i++]); + } + + return promise; + } + + len = requestInterceptorChain.length; + + let newConfig = config; + + i = 0; + + while (i < len) { + const onFulfilled = requestInterceptorChain[i++]; + const onRejected = requestInterceptorChain[i++]; + try { + newConfig = onFulfilled(newConfig); + } catch (error) { + onRejected.call(this, error); + break; + } + } + + try { + promise = dispatchRequest.call(this, newConfig); + } catch (error) { + return Promise.reject(error); + } + + i = 0; + len = responseInterceptorChain.length; + + while (i < len) { + promise = promise.then(responseInterceptorChain[i++], responseInterceptorChain[i++]); + } + + return promise; + } + + getUri(config) { + config = mergeConfig(this.defaults, config); + const fullPath = buildFullPath(config.baseURL, config.url); + return buildURL(fullPath, config.params, config.paramsSerializer); + } +} + +// Provide aliases for supported request methods +utils.forEach(['delete', 'get', 'head', 'options'], function forEachMethodNoData(method) { + /*eslint func-names:0*/ + Axios.prototype[method] = function(url, config) { + return this.request(mergeConfig(config || {}, { + method, + url, + data: (config || {}).data + })); + }; +}); + +utils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) { + /*eslint func-names:0*/ + + function generateHTTPMethod(isForm) { + return function httpMethod(url, data, config) { + return this.request(mergeConfig(config || {}, { + method, + headers: isForm ? { + 'Content-Type': 'multipart/form-data' + } : {}, + url, + data + })); + }; + } + + Axios.prototype[method] = generateHTTPMethod(); + + Axios.prototype[method + 'Form'] = generateHTTPMethod(true); +}); + +/** + * A `CancelToken` is an object that can be used to request cancellation of an operation. + * + * @param {Function} executor The executor function. + * + * @returns {CancelToken} + */ +class CancelToken { + constructor(executor) { + if (typeof executor !== 'function') { + throw new TypeError('executor must be a function.'); + } + + let resolvePromise; + + this.promise = new Promise(function promiseExecutor(resolve) { + resolvePromise = resolve; + }); + + const token = this; + + // eslint-disable-next-line func-names + this.promise.then(cancel => { + if (!token._listeners) return; + + let i = token._listeners.length; + + while (i-- > 0) { + token._listeners[i](cancel); + } + token._listeners = null; + }); + + // eslint-disable-next-line func-names + this.promise.then = onfulfilled => { + let _resolve; + // eslint-disable-next-line func-names + const promise = new Promise(resolve => { + token.subscribe(resolve); + _resolve = resolve; + }).then(onfulfilled); + + promise.cancel = function reject() { + token.unsubscribe(_resolve); + }; + + return promise; + }; + + executor(function cancel(message, config, request) { + if (token.reason) { + // Cancellation has already been requested + return; + } + + token.reason = new CanceledError(message, config, request); + resolvePromise(token.reason); + }); + } + + /** + * Throws a `CanceledError` if cancellation has been requested. + */ + throwIfRequested() { + if (this.reason) { + throw this.reason; + } + } + + /** + * Subscribe to the cancel signal + */ + + subscribe(listener) { + if (this.reason) { + listener(this.reason); + return; + } + + if (this._listeners) { + this._listeners.push(listener); + } else { + this._listeners = [listener]; + } + } + + /** + * Unsubscribe from the cancel signal + */ + + unsubscribe(listener) { + if (!this._listeners) { + return; + } + const index = this._listeners.indexOf(listener); + if (index !== -1) { + this._listeners.splice(index, 1); + } + } + + /** + * Returns an object that contains a new `CancelToken` and a function that, when called, + * cancels the `CancelToken`. + */ + static source() { + let cancel; + const token = new CancelToken(function executor(c) { + cancel = c; + }); + return { + token, + cancel + }; + } +} + +/** + * Syntactic sugar for invoking a function and expanding an array for arguments. + * + * Common use case would be to use `Function.prototype.apply`. + * + * ```js + * function f(x, y, z) {} + * var args = [1, 2, 3]; + * f.apply(null, args); + * ``` + * + * With `spread` this example can be re-written. + * + * ```js + * spread(function(x, y, z) {})([1, 2, 3]); + * ``` + * + * @param {Function} callback + * + * @returns {Function} + */ +function spread(callback) { + return function wrap(arr) { + return callback.apply(null, arr); + }; +} + +/** + * Determines whether the payload is an error thrown by Axios + * + * @param {*} payload The value to test + * + * @returns {boolean} True if the payload is an error thrown by Axios, otherwise false + */ +function isAxiosError(payload) { + return utils.isObject(payload) && (payload.isAxiosError === true); +} + +/** + * Create an instance of Axios + * + * @param {Object} defaultConfig The default config for the instance + * + * @returns {Axios} A new instance of Axios + */ +function createInstance(defaultConfig) { + const context = new Axios(defaultConfig); + const instance = bind(Axios.prototype.request, context); + + // Copy axios.prototype to instance + utils.extend(instance, Axios.prototype, context, {allOwnKeys: true}); + + // Copy context to instance + utils.extend(instance, context, null, {allOwnKeys: true}); + + // Factory for creating new instances + instance.create = function create(instanceConfig) { + return createInstance(mergeConfig(defaultConfig, instanceConfig)); + }; + + return instance; +} + +// Create the default instance to be exported +const axios = createInstance(defaults); + +// Expose Axios class to allow class inheritance +axios.Axios = Axios; + +// Expose Cancel & CancelToken +axios.CanceledError = CanceledError; +axios.CancelToken = CancelToken; +axios.isCancel = isCancel; +axios.VERSION = VERSION; +axios.toFormData = toFormData; + +// Expose AxiosError class +axios.AxiosError = AxiosError; + +// alias for CanceledError for backward compatibility +axios.Cancel = axios.CanceledError; + +// Expose all/spread +axios.all = function all(promises) { + return Promise.all(promises); +}; + +axios.spread = spread; + +// Expose isAxiosError +axios.isAxiosError = isAxiosError; + +axios.formToJSON = thing => { + return formDataToJSON(utils.isHTMLForm(thing) ? new FormData(thing) : thing); +}; + +module.exports = axios; +//# sourceMappingURL=axios.cjs.map diff --git a/node_modules/axios/dist/node/axios.cjs.map b/node_modules/axios/dist/node/axios.cjs.map new file mode 100644 index 000000000..3c034ae60 --- /dev/null +++ b/node_modules/axios/dist/node/axios.cjs.map @@ -0,0 +1 @@ +{"version":3,"file":"axios.cjs","sources":["../../lib/helpers/bind.js","../../lib/utils.js","../../lib/core/AxiosError.js","../../lib/helpers/toFormData.js","../../lib/helpers/AxiosURLSearchParams.js","../../lib/helpers/buildURL.js","../../lib/core/InterceptorManager.js","../../lib/defaults/transitional.js","../../lib/platform/node/classes/URLSearchParams.js","../../lib/platform/node/index.js","../../lib/helpers/toURLEncodedForm.js","../../lib/helpers/formDataToJSON.js","../../lib/core/settle.js","../../lib/helpers/isAbsoluteURL.js","../../lib/helpers/combineURLs.js","../../lib/core/buildFullPath.js","../../lib/env/data.js","../../lib/cancel/CanceledError.js","../../lib/helpers/parseProtocol.js","../../lib/helpers/fromDataURI.js","../../lib/helpers/parseHeaders.js","../../lib/core/AxiosHeaders.js","../../lib/helpers/throttle.js","../../lib/helpers/speedometer.js","../../lib/helpers/AxiosTransformStream.js","../../lib/adapters/http.js","../../lib/helpers/cookies.js","../../lib/helpers/isURLSameOrigin.js","../../lib/adapters/xhr.js","../../lib/adapters/index.js","../../lib/defaults/index.js","../../lib/core/transformData.js","../../lib/cancel/isCancel.js","../../lib/core/dispatchRequest.js","../../lib/core/mergeConfig.js","../../lib/helpers/validator.js","../../lib/core/Axios.js","../../lib/cancel/CancelToken.js","../../lib/helpers/spread.js","../../lib/helpers/isAxiosError.js","../../lib/axios.js"],"sourcesContent":["'use strict';\n\nexport default function bind(fn, thisArg) {\n return function wrap() {\n return fn.apply(thisArg, arguments);\n };\n}\n","'use strict';\n\nimport bind from './helpers/bind.js';\n\n// utils is a library of generic helper functions non-specific to axios\n\nconst {toString} = Object.prototype;\nconst {getPrototypeOf} = Object;\n\nconst kindOf = (cache => thing => {\n const str = toString.call(thing);\n return cache[str] || (cache[str] = str.slice(8, -1).toLowerCase());\n})(Object.create(null));\n\nconst kindOfTest = (type) => {\n type = type.toLowerCase();\n return (thing) => kindOf(thing) === type\n}\n\nconst typeOfTest = type => thing => typeof thing === type;\n\n/**\n * Determine if a value is an Array\n *\n * @param {Object} val The value to test\n *\n * @returns {boolean} True if value is an Array, otherwise false\n */\nconst {isArray} = Array;\n\n/**\n * Determine if a value is undefined\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if the value is undefined, otherwise false\n */\nconst isUndefined = typeOfTest('undefined');\n\n/**\n * Determine if a value is a Buffer\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a Buffer, otherwise false\n */\nfunction isBuffer(val) {\n return val !== null && !isUndefined(val) && val.constructor !== null && !isUndefined(val.constructor)\n && isFunction(val.constructor.isBuffer) && val.constructor.isBuffer(val);\n}\n\n/**\n * Determine if a value is an ArrayBuffer\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is an ArrayBuffer, otherwise false\n */\nconst isArrayBuffer = kindOfTest('ArrayBuffer');\n\n\n/**\n * Determine if a value is a view on an ArrayBuffer\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a view on an ArrayBuffer, otherwise false\n */\nfunction isArrayBufferView(val) {\n let result;\n if ((typeof ArrayBuffer !== 'undefined') && (ArrayBuffer.isView)) {\n result = ArrayBuffer.isView(val);\n } else {\n result = (val) && (val.buffer) && (isArrayBuffer(val.buffer));\n }\n return result;\n}\n\n/**\n * Determine if a value is a String\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a String, otherwise false\n */\nconst isString = typeOfTest('string');\n\n/**\n * Determine if a value is a Function\n *\n * @param {*} val The value to test\n * @returns {boolean} True if value is a Function, otherwise false\n */\nconst isFunction = typeOfTest('function');\n\n/**\n * Determine if a value is a Number\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a Number, otherwise false\n */\nconst isNumber = typeOfTest('number');\n\n/**\n * Determine if a value is an Object\n *\n * @param {*} thing The value to test\n *\n * @returns {boolean} True if value is an Object, otherwise false\n */\nconst isObject = (thing) => thing !== null && typeof thing === 'object';\n\n/**\n * Determine if a value is a Boolean\n *\n * @param {*} thing The value to test\n * @returns {boolean} True if value is a Boolean, otherwise false\n */\nconst isBoolean = thing => thing === true || thing === false;\n\n/**\n * Determine if a value is a plain Object\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a plain Object, otherwise false\n */\nconst isPlainObject = (val) => {\n if (kindOf(val) !== 'object') {\n return false;\n }\n\n const prototype = getPrototypeOf(val);\n return prototype === null || prototype === Object.prototype;\n}\n\n/**\n * Determine if a value is a Date\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a Date, otherwise false\n */\nconst isDate = kindOfTest('Date');\n\n/**\n * Determine if a value is a File\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a File, otherwise false\n */\nconst isFile = kindOfTest('File');\n\n/**\n * Determine if a value is a Blob\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a Blob, otherwise false\n */\nconst isBlob = kindOfTest('Blob');\n\n/**\n * Determine if a value is a FileList\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a File, otherwise false\n */\nconst isFileList = kindOfTest('FileList');\n\n/**\n * Determine if a value is a Stream\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a Stream, otherwise false\n */\nconst isStream = (val) => isObject(val) && isFunction(val.pipe);\n\n/**\n * Determine if a value is a FormData\n *\n * @param {*} thing The value to test\n *\n * @returns {boolean} True if value is an FormData, otherwise false\n */\nconst isFormData = (thing) => {\n const pattern = '[object FormData]';\n return thing && (\n (typeof FormData === 'function' && thing instanceof FormData) ||\n toString.call(thing) === pattern ||\n (isFunction(thing.toString) && thing.toString() === pattern)\n );\n}\n\n/**\n * Determine if a value is a URLSearchParams object\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a URLSearchParams object, otherwise false\n */\nconst isURLSearchParams = kindOfTest('URLSearchParams');\n\n/**\n * Trim excess whitespace off the beginning and end of a string\n *\n * @param {String} str The String to trim\n *\n * @returns {String} The String freed of excess whitespace\n */\nconst trim = (str) => str.trim ?\n str.trim() : str.replace(/^[\\s\\uFEFF\\xA0]+|[\\s\\uFEFF\\xA0]+$/g, '');\n\n/**\n * Iterate over an Array or an Object invoking a function for each item.\n *\n * If `obj` is an Array callback will be called passing\n * the value, index, and complete array for each item.\n *\n * If 'obj' is an Object callback will be called passing\n * the value, key, and complete object for each property.\n *\n * @param {Object|Array} obj The object to iterate\n * @param {Function} fn The callback to invoke for each item\n *\n * @param {Boolean} [allOwnKeys = false]\n * @returns {void}\n */\nfunction forEach(obj, fn, {allOwnKeys = false} = {}) {\n // Don't bother if no value provided\n if (obj === null || typeof obj === 'undefined') {\n return;\n }\n\n let i;\n let l;\n\n // Force an array if not already something iterable\n if (typeof obj !== 'object') {\n /*eslint no-param-reassign:0*/\n obj = [obj];\n }\n\n if (isArray(obj)) {\n // Iterate over array values\n for (i = 0, l = obj.length; i < l; i++) {\n fn.call(null, obj[i], i, obj);\n }\n } else {\n // Iterate over object keys\n const keys = allOwnKeys ? Object.getOwnPropertyNames(obj) : Object.keys(obj);\n const len = keys.length;\n let key;\n\n for (i = 0; i < len; i++) {\n key = keys[i];\n fn.call(null, obj[key], key, obj);\n }\n }\n}\n\n/**\n * Accepts varargs expecting each argument to be an object, then\n * immutably merges the properties of each object and returns result.\n *\n * When multiple objects contain the same key the later object in\n * the arguments list will take precedence.\n *\n * Example:\n *\n * ```js\n * var result = merge({foo: 123}, {foo: 456});\n * console.log(result.foo); // outputs 456\n * ```\n *\n * @param {Object} obj1 Object to merge\n *\n * @returns {Object} Result of all merge properties\n */\nfunction merge(/* obj1, obj2, obj3, ... */) {\n const result = {};\n const assignValue = (val, key) => {\n if (isPlainObject(result[key]) && isPlainObject(val)) {\n result[key] = merge(result[key], val);\n } else if (isPlainObject(val)) {\n result[key] = merge({}, val);\n } else if (isArray(val)) {\n result[key] = val.slice();\n } else {\n result[key] = val;\n }\n }\n\n for (let i = 0, l = arguments.length; i < l; i++) {\n arguments[i] && forEach(arguments[i], assignValue);\n }\n return result;\n}\n\n/**\n * Extends object a by mutably adding to it the properties of object b.\n *\n * @param {Object} a The object to be extended\n * @param {Object} b The object to copy properties from\n * @param {Object} thisArg The object to bind function to\n *\n * @param {Boolean} [allOwnKeys]\n * @returns {Object} The resulting value of object a\n */\nconst extend = (a, b, thisArg, {allOwnKeys}= {}) => {\n forEach(b, (val, key) => {\n if (thisArg && isFunction(val)) {\n a[key] = bind(val, thisArg);\n } else {\n a[key] = val;\n }\n }, {allOwnKeys});\n return a;\n}\n\n/**\n * Remove byte order marker. This catches EF BB BF (the UTF-8 BOM)\n *\n * @param {string} content with BOM\n *\n * @returns {string} content value without BOM\n */\nconst stripBOM = (content) => {\n if (content.charCodeAt(0) === 0xFEFF) {\n content = content.slice(1);\n }\n return content;\n}\n\n/**\n * Inherit the prototype methods from one constructor into another\n * @param {function} constructor\n * @param {function} superConstructor\n * @param {object} [props]\n * @param {object} [descriptors]\n *\n * @returns {void}\n */\nconst inherits = (constructor, superConstructor, props, descriptors) => {\n constructor.prototype = Object.create(superConstructor.prototype, descriptors);\n constructor.prototype.constructor = constructor;\n Object.defineProperty(constructor, 'super', {\n value: superConstructor.prototype\n });\n props && Object.assign(constructor.prototype, props);\n}\n\n/**\n * Resolve object with deep prototype chain to a flat object\n * @param {Object} sourceObj source object\n * @param {Object} [destObj]\n * @param {Function|Boolean} [filter]\n * @param {Function} [propFilter]\n *\n * @returns {Object}\n */\nconst toFlatObject = (sourceObj, destObj, filter, propFilter) => {\n let props;\n let i;\n let prop;\n const merged = {};\n\n destObj = destObj || {};\n // eslint-disable-next-line no-eq-null,eqeqeq\n if (sourceObj == null) return destObj;\n\n do {\n props = Object.getOwnPropertyNames(sourceObj);\n i = props.length;\n while (i-- > 0) {\n prop = props[i];\n if ((!propFilter || propFilter(prop, sourceObj, destObj)) && !merged[prop]) {\n destObj[prop] = sourceObj[prop];\n merged[prop] = true;\n }\n }\n sourceObj = filter !== false && getPrototypeOf(sourceObj);\n } while (sourceObj && (!filter || filter(sourceObj, destObj)) && sourceObj !== Object.prototype);\n\n return destObj;\n}\n\n/**\n * Determines whether a string ends with the characters of a specified string\n *\n * @param {String} str\n * @param {String} searchString\n * @param {Number} [position= 0]\n *\n * @returns {boolean}\n */\nconst endsWith = (str, searchString, position) => {\n str = String(str);\n if (position === undefined || position > str.length) {\n position = str.length;\n }\n position -= searchString.length;\n const lastIndex = str.indexOf(searchString, position);\n return lastIndex !== -1 && lastIndex === position;\n}\n\n\n/**\n * Returns new array from array like object or null if failed\n *\n * @param {*} [thing]\n *\n * @returns {?Array}\n */\nconst toArray = (thing) => {\n if (!thing) return null;\n if (isArray(thing)) return thing;\n let i = thing.length;\n if (!isNumber(i)) return null;\n const arr = new Array(i);\n while (i-- > 0) {\n arr[i] = thing[i];\n }\n return arr;\n}\n\n/**\n * Checking if the Uint8Array exists and if it does, it returns a function that checks if the\n * thing passed in is an instance of Uint8Array\n *\n * @param {TypedArray}\n *\n * @returns {Array}\n */\n// eslint-disable-next-line func-names\nconst isTypedArray = (TypedArray => {\n // eslint-disable-next-line func-names\n return thing => {\n return TypedArray && thing instanceof TypedArray;\n };\n})(typeof Uint8Array !== 'undefined' && getPrototypeOf(Uint8Array));\n\n/**\n * For each entry in the object, call the function with the key and value.\n *\n * @param {Object} obj - The object to iterate over.\n * @param {Function} fn - The function to call for each entry.\n *\n * @returns {void}\n */\nconst forEachEntry = (obj, fn) => {\n const generator = obj && obj[Symbol.iterator];\n\n const iterator = generator.call(obj);\n\n let result;\n\n while ((result = iterator.next()) && !result.done) {\n const pair = result.value;\n fn.call(obj, pair[0], pair[1]);\n }\n}\n\n/**\n * It takes a regular expression and a string, and returns an array of all the matches\n *\n * @param {string} regExp - The regular expression to match against.\n * @param {string} str - The string to search.\n *\n * @returns {Array}\n */\nconst matchAll = (regExp, str) => {\n let matches;\n const arr = [];\n\n while ((matches = regExp.exec(str)) !== null) {\n arr.push(matches);\n }\n\n return arr;\n}\n\n/* Checking if the kindOfTest function returns true when passed an HTMLFormElement. */\nconst isHTMLForm = kindOfTest('HTMLFormElement');\n\nconst toCamelCase = str => {\n return str.toLowerCase().replace(/[_-\\s]([a-z\\d])(\\w*)/g,\n function replacer(m, p1, p2) {\n return p1.toUpperCase() + p2;\n }\n );\n};\n\n/* Creating a function that will check if an object has a property. */\nconst hasOwnProperty = (({hasOwnProperty}) => (obj, prop) => hasOwnProperty.call(obj, prop))(Object.prototype);\n\n/**\n * Determine if a value is a RegExp object\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a RegExp object, otherwise false\n */\nconst isRegExp = kindOfTest('RegExp');\n\nconst reduceDescriptors = (obj, reducer) => {\n const descriptors = Object.getOwnPropertyDescriptors(obj);\n const reducedDescriptors = {};\n\n forEach(descriptors, (descriptor, name) => {\n if (reducer(descriptor, name, obj) !== false) {\n reducedDescriptors[name] = descriptor;\n }\n });\n\n Object.defineProperties(obj, reducedDescriptors);\n}\n\n/**\n * Makes all methods read-only\n * @param {Object} obj\n */\n\nconst freezeMethods = (obj) => {\n reduceDescriptors(obj, (descriptor, name) => {\n const value = obj[name];\n\n if (!isFunction(value)) return;\n\n descriptor.enumerable = false;\n\n if ('writable' in descriptor) {\n descriptor.writable = false;\n return;\n }\n\n if (!descriptor.set) {\n descriptor.set = () => {\n throw Error('Can not read-only method \\'' + name + '\\'');\n };\n }\n });\n}\n\nconst toObjectSet = (arrayOrString, delimiter) => {\n const obj = {};\n\n const define = (arr) => {\n arr.forEach(value => {\n obj[value] = true;\n });\n }\n\n isArray(arrayOrString) ? define(arrayOrString) : define(String(arrayOrString).split(delimiter));\n\n return obj;\n}\n\nconst noop = () => {}\n\nconst toFiniteNumber = (value, defaultValue) => {\n value = +value;\n return Number.isFinite(value) ? value : defaultValue;\n}\n\nexport default {\n isArray,\n isArrayBuffer,\n isBuffer,\n isFormData,\n isArrayBufferView,\n isString,\n isNumber,\n isBoolean,\n isObject,\n isPlainObject,\n isUndefined,\n isDate,\n isFile,\n isBlob,\n isRegExp,\n isFunction,\n isStream,\n isURLSearchParams,\n isTypedArray,\n isFileList,\n forEach,\n merge,\n extend,\n trim,\n stripBOM,\n inherits,\n toFlatObject,\n kindOf,\n kindOfTest,\n endsWith,\n toArray,\n forEachEntry,\n matchAll,\n isHTMLForm,\n hasOwnProperty,\n hasOwnProp: hasOwnProperty, // an alias to avoid ESLint no-prototype-builtins detection\n reduceDescriptors,\n freezeMethods,\n toObjectSet,\n toCamelCase,\n noop,\n toFiniteNumber\n};\n","'use strict';\n\nimport utils from '../utils.js';\n\n/**\n * Create an Error with the specified message, config, error code, request and response.\n *\n * @param {string} message The error message.\n * @param {string} [code] The error code (for example, 'ECONNABORTED').\n * @param {Object} [config] The config.\n * @param {Object} [request] The request.\n * @param {Object} [response] The response.\n *\n * @returns {Error} The created error.\n */\nfunction AxiosError(message, code, config, request, response) {\n Error.call(this);\n\n if (Error.captureStackTrace) {\n Error.captureStackTrace(this, this.constructor);\n } else {\n this.stack = (new Error()).stack;\n }\n\n this.message = message;\n this.name = 'AxiosError';\n code && (this.code = code);\n config && (this.config = config);\n request && (this.request = request);\n response && (this.response = response);\n}\n\nutils.inherits(AxiosError, Error, {\n toJSON: function toJSON() {\n return {\n // Standard\n message: this.message,\n name: this.name,\n // Microsoft\n description: this.description,\n number: this.number,\n // Mozilla\n fileName: this.fileName,\n lineNumber: this.lineNumber,\n columnNumber: this.columnNumber,\n stack: this.stack,\n // Axios\n config: this.config,\n code: this.code,\n status: this.response && this.response.status ? this.response.status : null\n };\n }\n});\n\nconst prototype = AxiosError.prototype;\nconst descriptors = {};\n\n[\n 'ERR_BAD_OPTION_VALUE',\n 'ERR_BAD_OPTION',\n 'ECONNABORTED',\n 'ETIMEDOUT',\n 'ERR_NETWORK',\n 'ERR_FR_TOO_MANY_REDIRECTS',\n 'ERR_DEPRECATED',\n 'ERR_BAD_RESPONSE',\n 'ERR_BAD_REQUEST',\n 'ERR_CANCELED',\n 'ERR_NOT_SUPPORT',\n 'ERR_INVALID_URL'\n// eslint-disable-next-line func-names\n].forEach(code => {\n descriptors[code] = {value: code};\n});\n\nObject.defineProperties(AxiosError, descriptors);\nObject.defineProperty(prototype, 'isAxiosError', {value: true});\n\n// eslint-disable-next-line func-names\nAxiosError.from = (error, code, config, request, response, customProps) => {\n const axiosError = Object.create(prototype);\n\n utils.toFlatObject(error, axiosError, function filter(obj) {\n return obj !== Error.prototype;\n }, prop => {\n return prop !== 'isAxiosError';\n });\n\n AxiosError.call(axiosError, error.message, code, config, request, response);\n\n axiosError.cause = error;\n\n axiosError.name = error.name;\n\n customProps && Object.assign(axiosError, customProps);\n\n return axiosError;\n};\n\nexport default AxiosError;\n","'use strict';\n\nimport utils from '../utils.js';\nimport AxiosError from '../core/AxiosError.js';\nimport envFormData from '../env/classes/FormData.js';\n\n/**\n * Determines if the given thing is a array or js object.\n *\n * @param {string} thing - The object or array to be visited.\n *\n * @returns {boolean}\n */\nfunction isVisitable(thing) {\n return utils.isPlainObject(thing) || utils.isArray(thing);\n}\n\n/**\n * It removes the brackets from the end of a string\n *\n * @param {string} key - The key of the parameter.\n *\n * @returns {string} the key without the brackets.\n */\nfunction removeBrackets(key) {\n return utils.endsWith(key, '[]') ? key.slice(0, -2) : key;\n}\n\n/**\n * It takes a path, a key, and a boolean, and returns a string\n *\n * @param {string} path - The path to the current key.\n * @param {string} key - The key of the current object being iterated over.\n * @param {string} dots - If true, the key will be rendered with dots instead of brackets.\n *\n * @returns {string} The path to the current key.\n */\nfunction renderKey(path, key, dots) {\n if (!path) return key;\n return path.concat(key).map(function each(token, i) {\n // eslint-disable-next-line no-param-reassign\n token = removeBrackets(token);\n return !dots && i ? '[' + token + ']' : token;\n }).join(dots ? '.' : '');\n}\n\n/**\n * If the array is an array and none of its elements are visitable, then it's a flat array.\n *\n * @param {Array} arr - The array to check\n *\n * @returns {boolean}\n */\nfunction isFlatArray(arr) {\n return utils.isArray(arr) && !arr.some(isVisitable);\n}\n\nconst predicates = utils.toFlatObject(utils, {}, null, function filter(prop) {\n return /^is[A-Z]/.test(prop);\n});\n\n/**\n * If the thing is a FormData object, return true, otherwise return false.\n *\n * @param {unknown} thing - The thing to check.\n *\n * @returns {boolean}\n */\nfunction isSpecCompliant(thing) {\n return thing && utils.isFunction(thing.append) && thing[Symbol.toStringTag] === 'FormData' && thing[Symbol.iterator];\n}\n\n/**\n * Convert a data object to FormData\n *\n * @param {Object} obj\n * @param {?Object} [formData]\n * @param {?Object} [options]\n * @param {Function} [options.visitor]\n * @param {Boolean} [options.metaTokens = true]\n * @param {Boolean} [options.dots = false]\n * @param {?Boolean} [options.indexes = false]\n *\n * @returns {Object}\n **/\n\n/**\n * It converts an object into a FormData object\n *\n * @param {Object} obj - The object to convert to form data.\n * @param {string} formData - The FormData object to append to.\n * @param {Object} options\n *\n * @returns\n */\nfunction toFormData(obj, formData, options) {\n if (!utils.isObject(obj)) {\n throw new TypeError('target must be an object');\n }\n\n // eslint-disable-next-line no-param-reassign\n formData = formData || new (envFormData || FormData)();\n\n // eslint-disable-next-line no-param-reassign\n options = utils.toFlatObject(options, {\n metaTokens: true,\n dots: false,\n indexes: false\n }, false, function defined(option, source) {\n // eslint-disable-next-line no-eq-null,eqeqeq\n return !utils.isUndefined(source[option]);\n });\n\n const metaTokens = options.metaTokens;\n // eslint-disable-next-line no-use-before-define\n const visitor = options.visitor || defaultVisitor;\n const dots = options.dots;\n const indexes = options.indexes;\n const _Blob = options.Blob || typeof Blob !== 'undefined' && Blob;\n const useBlob = _Blob && isSpecCompliant(formData);\n\n if (!utils.isFunction(visitor)) {\n throw new TypeError('visitor must be a function');\n }\n\n function convertValue(value) {\n if (value === null) return '';\n\n if (utils.isDate(value)) {\n return value.toISOString();\n }\n\n if (!useBlob && utils.isBlob(value)) {\n throw new AxiosError('Blob is not supported. Use a Buffer instead.');\n }\n\n if (utils.isArrayBuffer(value) || utils.isTypedArray(value)) {\n return useBlob && typeof Blob === 'function' ? new Blob([value]) : Buffer.from(value);\n }\n\n return value;\n }\n\n /**\n * Default visitor.\n *\n * @param {*} value\n * @param {String|Number} key\n * @param {Array} path\n * @this {FormData}\n *\n * @returns {boolean} return true to visit the each prop of the value recursively\n */\n function defaultVisitor(value, key, path) {\n let arr = value;\n\n if (value && !path && typeof value === 'object') {\n if (utils.endsWith(key, '{}')) {\n // eslint-disable-next-line no-param-reassign\n key = metaTokens ? key : key.slice(0, -2);\n // eslint-disable-next-line no-param-reassign\n value = JSON.stringify(value);\n } else if (\n (utils.isArray(value) && isFlatArray(value)) ||\n (utils.isFileList(value) || utils.endsWith(key, '[]') && (arr = utils.toArray(value))\n )) {\n // eslint-disable-next-line no-param-reassign\n key = removeBrackets(key);\n\n arr.forEach(function each(el, index) {\n !utils.isUndefined(el) && formData.append(\n // eslint-disable-next-line no-nested-ternary\n indexes === true ? renderKey([key], index, dots) : (indexes === null ? key : key + '[]'),\n convertValue(el)\n );\n });\n return false;\n }\n }\n\n if (isVisitable(value)) {\n return true;\n }\n\n formData.append(renderKey(path, key, dots), convertValue(value));\n\n return false;\n }\n\n const stack = [];\n\n const exposedHelpers = Object.assign(predicates, {\n defaultVisitor,\n convertValue,\n isVisitable\n });\n\n function build(value, path) {\n if (utils.isUndefined(value)) return;\n\n if (stack.indexOf(value) !== -1) {\n throw Error('Circular reference detected in ' + path.join('.'));\n }\n\n stack.push(value);\n\n utils.forEach(value, function each(el, key) {\n const result = !utils.isUndefined(el) && visitor.call(\n formData, el, utils.isString(key) ? key.trim() : key, path, exposedHelpers\n );\n\n if (result === true) {\n build(el, path ? path.concat(key) : [key]);\n }\n });\n\n stack.pop();\n }\n\n if (!utils.isObject(obj)) {\n throw new TypeError('data must be an object');\n }\n\n build(obj);\n\n return formData;\n}\n\nexport default toFormData;\n","'use strict';\n\nimport toFormData from './toFormData.js';\n\n/**\n * It encodes a string by replacing all characters that are not in the unreserved set with\n * their percent-encoded equivalents\n *\n * @param {string} str - The string to encode.\n *\n * @returns {string} The encoded string.\n */\nfunction encode(str) {\n const charMap = {\n '!': '%21',\n \"'\": '%27',\n '(': '%28',\n ')': '%29',\n '~': '%7E',\n '%20': '+',\n '%00': '\\x00'\n };\n return encodeURIComponent(str).replace(/[!'()~]|%20|%00/g, function replacer(match) {\n return charMap[match];\n });\n}\n\n/**\n * It takes a params object and converts it to a FormData object\n *\n * @param {Object} params - The parameters to be converted to a FormData object.\n * @param {Object} options - The options object passed to the Axios constructor.\n *\n * @returns {void}\n */\nfunction AxiosURLSearchParams(params, options) {\n this._pairs = [];\n\n params && toFormData(params, this, options);\n}\n\nconst prototype = AxiosURLSearchParams.prototype;\n\nprototype.append = function append(name, value) {\n this._pairs.push([name, value]);\n};\n\nprototype.toString = function toString(encoder) {\n const _encode = encoder ? function(value) {\n return encoder.call(this, value, encode);\n } : encode;\n\n return this._pairs.map(function each(pair) {\n return _encode(pair[0]) + '=' + _encode(pair[1]);\n }, '').join('&');\n};\n\nexport default AxiosURLSearchParams;\n","'use strict';\n\nimport utils from '../utils.js';\nimport AxiosURLSearchParams from '../helpers/AxiosURLSearchParams.js';\n\n/**\n * It replaces all instances of the characters `:`, `$`, `,`, `+`, `[`, and `]` with their\n * URI encoded counterparts\n *\n * @param {string} val The value to be encoded.\n *\n * @returns {string} The encoded value.\n */\nfunction encode(val) {\n return encodeURIComponent(val).\n replace(/%3A/gi, ':').\n replace(/%24/g, '$').\n replace(/%2C/gi, ',').\n replace(/%20/g, '+').\n replace(/%5B/gi, '[').\n replace(/%5D/gi, ']');\n}\n\n/**\n * Build a URL by appending params to the end\n *\n * @param {string} url The base of the url (e.g., http://www.google.com)\n * @param {object} [params] The params to be appended\n * @param {?object} options\n *\n * @returns {string} The formatted url\n */\nexport default function buildURL(url, params, options) {\n /*eslint no-param-reassign:0*/\n if (!params) {\n return url;\n }\n\n const hashmarkIndex = url.indexOf('#');\n\n if (hashmarkIndex !== -1) {\n url = url.slice(0, hashmarkIndex);\n }\n\n const _encode = options && options.encode || encode;\n\n const serializerParams = utils.isURLSearchParams(params) ?\n params.toString() :\n new AxiosURLSearchParams(params, options).toString(_encode);\n\n if (serializerParams) {\n url += (url.indexOf('?') === -1 ? '?' : '&') + serializerParams;\n }\n\n return url;\n}\n","'use strict';\n\nimport utils from './../utils.js';\n\nclass InterceptorManager {\n constructor() {\n this.handlers = [];\n }\n\n /**\n * Add a new interceptor to the stack\n *\n * @param {Function} fulfilled The function to handle `then` for a `Promise`\n * @param {Function} rejected The function to handle `reject` for a `Promise`\n *\n * @return {Number} An ID used to remove interceptor later\n */\n use(fulfilled, rejected, options) {\n this.handlers.push({\n fulfilled,\n rejected,\n synchronous: options ? options.synchronous : false,\n runWhen: options ? options.runWhen : null\n });\n return this.handlers.length - 1;\n }\n\n /**\n * Remove an interceptor from the stack\n *\n * @param {Number} id The ID that was returned by `use`\n *\n * @returns {Boolean} `true` if the interceptor was removed, `false` otherwise\n */\n eject(id) {\n if (this.handlers[id]) {\n this.handlers[id] = null;\n }\n }\n\n /**\n * Clear all interceptors from the stack\n *\n * @returns {void}\n */\n clear() {\n if (this.handlers) {\n this.handlers = [];\n }\n }\n\n /**\n * Iterate over all the registered interceptors\n *\n * This method is particularly useful for skipping over any\n * interceptors that may have become `null` calling `eject`.\n *\n * @param {Function} fn The function to call for each interceptor\n *\n * @returns {void}\n */\n forEach(fn) {\n utils.forEach(this.handlers, function forEachHandler(h) {\n if (h !== null) {\n fn(h);\n }\n });\n }\n}\n\nexport default InterceptorManager;\n","'use strict';\n\nexport default {\n silentJSONParsing: true,\n forcedJSONParsing: true,\n clarifyTimeoutError: false\n};\n","'use strict';\n\nimport url from 'url';\nexport default url.URLSearchParams;\n","import URLSearchParams from './classes/URLSearchParams.js'\nimport FormData from './classes/FormData.js'\n\nexport default {\n isNode: true,\n classes: {\n URLSearchParams,\n FormData,\n Blob: typeof Blob !== 'undefined' && Blob || null\n },\n protocols: [ 'http', 'https', 'file', 'data' ]\n};\n","'use strict';\n\nimport utils from '../utils.js';\nimport toFormData from './toFormData.js';\nimport platform from '../platform/index.js';\n\nexport default function toURLEncodedForm(data, options) {\n return toFormData(data, new platform.classes.URLSearchParams(), Object.assign({\n visitor: function(value, key, path, helpers) {\n if (platform.isNode && utils.isBuffer(value)) {\n this.append(key, value.toString('base64'));\n return false;\n }\n\n return helpers.defaultVisitor.apply(this, arguments);\n }\n }, options));\n}\n","'use strict';\n\nimport utils from '../utils.js';\n\n/**\n * It takes a string like `foo[x][y][z]` and returns an array like `['foo', 'x', 'y', 'z']\n *\n * @param {string} name - The name of the property to get.\n *\n * @returns An array of strings.\n */\nfunction parsePropPath(name) {\n // foo[x][y][z]\n // foo.x.y.z\n // foo-x-y-z\n // foo x y z\n return utils.matchAll(/\\w+|\\[(\\w*)]/g, name).map(match => {\n return match[0] === '[]' ? '' : match[1] || match[0];\n });\n}\n\n/**\n * Convert an array to an object.\n *\n * @param {Array} arr - The array to convert to an object.\n *\n * @returns An object with the same keys and values as the array.\n */\nfunction arrayToObject(arr) {\n const obj = {};\n const keys = Object.keys(arr);\n let i;\n const len = keys.length;\n let key;\n for (i = 0; i < len; i++) {\n key = keys[i];\n obj[key] = arr[key];\n }\n return obj;\n}\n\n/**\n * It takes a FormData object and returns a JavaScript object\n *\n * @param {string} formData The FormData object to convert to JSON.\n *\n * @returns {Object | null} The converted object.\n */\nfunction formDataToJSON(formData) {\n function buildPath(path, value, target, index) {\n let name = path[index++];\n const isNumericKey = Number.isFinite(+name);\n const isLast = index >= path.length;\n name = !name && utils.isArray(target) ? target.length : name;\n\n if (isLast) {\n if (utils.hasOwnProp(target, name)) {\n target[name] = [target[name], value];\n } else {\n target[name] = value;\n }\n\n return !isNumericKey;\n }\n\n if (!target[name] || !utils.isObject(target[name])) {\n target[name] = [];\n }\n\n const result = buildPath(path, value, target[name], index);\n\n if (result && utils.isArray(target[name])) {\n target[name] = arrayToObject(target[name]);\n }\n\n return !isNumericKey;\n }\n\n if (utils.isFormData(formData) && utils.isFunction(formData.entries)) {\n const obj = {};\n\n utils.forEachEntry(formData, (name, value) => {\n buildPath(parsePropPath(name), value, obj, 0);\n });\n\n return obj;\n }\n\n return null;\n}\n\nexport default formDataToJSON;\n","'use strict';\n\nimport AxiosError from './AxiosError.js';\n\n/**\n * Resolve or reject a Promise based on response status.\n *\n * @param {Function} resolve A function that resolves the promise.\n * @param {Function} reject A function that rejects the promise.\n * @param {object} response The response.\n *\n * @returns {object} The response.\n */\nexport default function settle(resolve, reject, response) {\n const validateStatus = response.config.validateStatus;\n if (!response.status || !validateStatus || validateStatus(response.status)) {\n resolve(response);\n } else {\n reject(new AxiosError(\n 'Request failed with status code ' + response.status,\n [AxiosError.ERR_BAD_REQUEST, AxiosError.ERR_BAD_RESPONSE][Math.floor(response.status / 100) - 4],\n response.config,\n response.request,\n response\n ));\n }\n}\n","'use strict';\n\n/**\n * Determines whether the specified URL is absolute\n *\n * @param {string} url The URL to test\n *\n * @returns {boolean} True if the specified URL is absolute, otherwise false\n */\nexport default function isAbsoluteURL(url) {\n // A URL is considered absolute if it begins with \"://\" or \"//\" (protocol-relative URL).\n // RFC 3986 defines scheme name as a sequence of characters beginning with a letter and followed\n // by any combination of letters, digits, plus, period, or hyphen.\n return /^([a-z][a-z\\d+\\-.]*:)?\\/\\//i.test(url);\n}\n","'use strict';\n\n/**\n * Creates a new URL by combining the specified URLs\n *\n * @param {string} baseURL The base URL\n * @param {string} relativeURL The relative URL\n *\n * @returns {string} The combined URL\n */\nexport default function combineURLs(baseURL, relativeURL) {\n return relativeURL\n ? baseURL.replace(/\\/+$/, '') + '/' + relativeURL.replace(/^\\/+/, '')\n : baseURL;\n}\n","'use strict';\n\nimport isAbsoluteURL from '../helpers/isAbsoluteURL.js';\nimport combineURLs from '../helpers/combineURLs.js';\n\n/**\n * Creates a new URL by combining the baseURL with the requestedURL,\n * only when the requestedURL is not already an absolute URL.\n * If the requestURL is absolute, this function returns the requestedURL untouched.\n *\n * @param {string} baseURL The base URL\n * @param {string} requestedURL Absolute or relative URL to combine\n *\n * @returns {string} The combined full path\n */\nexport default function buildFullPath(baseURL, requestedURL) {\n if (baseURL && !isAbsoluteURL(requestedURL)) {\n return combineURLs(baseURL, requestedURL);\n }\n return requestedURL;\n}\n","export const VERSION = \"1.0.0\";","'use strict';\n\nimport AxiosError from '../core/AxiosError.js';\nimport utils from '../utils.js';\n\n/**\n * A `CanceledError` is an object that is thrown when an operation is canceled.\n *\n * @param {string=} message The message.\n * @param {Object=} config The config.\n * @param {Object=} request The request.\n *\n * @returns {CanceledError} The created error.\n */\nfunction CanceledError(message, config, request) {\n // eslint-disable-next-line no-eq-null,eqeqeq\n AxiosError.call(this, message == null ? 'canceled' : message, AxiosError.ERR_CANCELED, config, request);\n this.name = 'CanceledError';\n}\n\nutils.inherits(CanceledError, AxiosError, {\n __CANCEL__: true\n});\n\nexport default CanceledError;\n","'use strict';\n\nexport default function parseProtocol(url) {\n const match = /^([-+\\w]{1,25})(:?\\/\\/|:)/.exec(url);\n return match && match[1] || '';\n}\n","'use strict';\n\nimport AxiosError from '../core/AxiosError.js';\nimport parseProtocol from './parseProtocol.js';\nimport platform from '../platform/index.js';\n\nconst DATA_URL_PATTERN = /^(?:([^;]+);)?(?:[^;]+;)?(base64|),([\\s\\S]*)$/;\n\n/**\n * Parse data uri to a Buffer or Blob\n *\n * @param {String} uri\n * @param {?Boolean} asBlob\n * @param {?Object} options\n * @param {?Function} options.Blob\n *\n * @returns {Buffer|Blob}\n */\nexport default function fromDataURI(uri, asBlob, options) {\n const _Blob = options && options.Blob || platform.classes.Blob;\n const protocol = parseProtocol(uri);\n\n if (asBlob === undefined && _Blob) {\n asBlob = true;\n }\n\n if (protocol === 'data') {\n uri = protocol.length ? uri.slice(protocol.length + 1) : uri;\n\n const match = DATA_URL_PATTERN.exec(uri);\n\n if (!match) {\n throw new AxiosError('Invalid URL', AxiosError.ERR_INVALID_URL);\n }\n\n const mime = match[1];\n const isBase64 = match[2];\n const body = match[3];\n const buffer = Buffer.from(decodeURIComponent(body), isBase64 ? 'base64' : 'utf8');\n\n if (asBlob) {\n if (!_Blob) {\n throw new AxiosError('Blob is not supported', AxiosError.ERR_NOT_SUPPORT);\n }\n\n return new _Blob([buffer], {type: mime});\n }\n\n return buffer;\n }\n\n throw new AxiosError('Unsupported protocol ' + protocol, AxiosError.ERR_NOT_SUPPORT);\n}\n","'use strict';\n\nimport utils from './../utils.js';\n\n// RawAxiosHeaders whose duplicates are ignored by node\n// c.f. https://nodejs.org/api/http.html#http_message_headers\nconst ignoreDuplicateOf = utils.toObjectSet([\n 'age', 'authorization', 'content-length', 'content-type', 'etag',\n 'expires', 'from', 'host', 'if-modified-since', 'if-unmodified-since',\n 'last-modified', 'location', 'max-forwards', 'proxy-authorization',\n 'referer', 'retry-after', 'user-agent'\n]);\n\n/**\n * Parse headers into an object\n *\n * ```\n * Date: Wed, 27 Aug 2014 08:58:49 GMT\n * Content-Type: application/json\n * Connection: keep-alive\n * Transfer-Encoding: chunked\n * ```\n *\n * @param {String} rawHeaders Headers needing to be parsed\n *\n * @returns {Object} Headers parsed into an object\n */\nexport default rawHeaders => {\n const parsed = {};\n let key;\n let val;\n let i;\n\n rawHeaders && rawHeaders.split('\\n').forEach(function parser(line) {\n i = line.indexOf(':');\n key = line.substring(0, i).trim().toLowerCase();\n val = line.substring(i + 1).trim();\n\n if (!key || (parsed[key] && ignoreDuplicateOf[key])) {\n return;\n }\n\n if (key === 'set-cookie') {\n if (parsed[key]) {\n parsed[key].push(val);\n } else {\n parsed[key] = [val];\n }\n } else {\n parsed[key] = parsed[key] ? parsed[key] + ', ' + val : val;\n }\n });\n\n return parsed;\n};\n","'use strict';\n\nimport utils from '../utils.js';\nimport parseHeaders from '../helpers/parseHeaders.js';\n\nconst $internals = Symbol('internals');\nconst $defaults = Symbol('defaults');\n\nfunction normalizeHeader(header) {\n return header && String(header).trim().toLowerCase();\n}\n\nfunction normalizeValue(value) {\n if (value === false || value == null) {\n return value;\n }\n\n return String(value);\n}\n\nfunction parseTokens(str) {\n const tokens = Object.create(null);\n const tokensRE = /([^\\s,;=]+)\\s*(?:=\\s*([^,;]+))?/g;\n let match;\n\n while ((match = tokensRE.exec(str))) {\n tokens[match[1]] = match[2];\n }\n\n return tokens;\n}\n\nfunction matchHeaderValue(context, value, header, filter) {\n if (utils.isFunction(filter)) {\n return filter.call(this, value, header);\n }\n\n if (!utils.isString(value)) return;\n\n if (utils.isString(filter)) {\n return value.indexOf(filter) !== -1;\n }\n\n if (utils.isRegExp(filter)) {\n return filter.test(value);\n }\n}\n\nfunction formatHeader(header) {\n return header.trim()\n .toLowerCase().replace(/([a-z\\d])(\\w*)/g, (w, char, str) => {\n return char.toUpperCase() + str;\n });\n}\n\nfunction buildAccessors(obj, header) {\n const accessorName = utils.toCamelCase(' ' + header);\n\n ['get', 'set', 'has'].forEach(methodName => {\n Object.defineProperty(obj, methodName + accessorName, {\n value: function(arg1, arg2, arg3) {\n return this[methodName].call(this, header, arg1, arg2, arg3);\n },\n configurable: true\n });\n });\n}\n\nfunction findKey(obj, key) {\n key = key.toLowerCase();\n const keys = Object.keys(obj);\n let i = keys.length;\n let _key;\n while (i-- > 0) {\n _key = keys[i];\n if (key === _key.toLowerCase()) {\n return _key;\n }\n }\n return null;\n}\n\nfunction AxiosHeaders(headers, defaults) {\n headers && this.set(headers);\n this[$defaults] = defaults || null;\n}\n\nObject.assign(AxiosHeaders.prototype, {\n set: function(header, valueOrRewrite, rewrite) {\n const self = this;\n\n function setHeader(_value, _header, _rewrite) {\n const lHeader = normalizeHeader(_header);\n\n if (!lHeader) {\n throw new Error('header name must be a non-empty string');\n }\n\n const key = findKey(self, lHeader);\n\n if (key && _rewrite !== true && (self[key] === false || _rewrite === false)) {\n return;\n }\n\n if (utils.isArray(_value)) {\n _value = _value.map(normalizeValue);\n } else {\n _value = normalizeValue(_value);\n }\n\n self[key || _header] = _value;\n }\n\n if (utils.isPlainObject(header)) {\n utils.forEach(header, (_value, _header) => {\n setHeader(_value, _header, valueOrRewrite);\n });\n } else {\n setHeader(valueOrRewrite, header, rewrite);\n }\n\n return this;\n },\n\n get: function(header, parser) {\n header = normalizeHeader(header);\n\n if (!header) return undefined;\n\n const key = findKey(this, header);\n\n if (key) {\n const value = this[key];\n\n if (!parser) {\n return value;\n }\n\n if (parser === true) {\n return parseTokens(value);\n }\n\n if (utils.isFunction(parser)) {\n return parser.call(this, value, key);\n }\n\n if (utils.isRegExp(parser)) {\n return parser.exec(value);\n }\n\n throw new TypeError('parser must be boolean|regexp|function');\n }\n },\n\n has: function(header, matcher) {\n header = normalizeHeader(header);\n\n if (header) {\n const key = findKey(this, header);\n\n return !!(key && (!matcher || matchHeaderValue(this, this[key], key, matcher)));\n }\n\n return false;\n },\n\n delete: function(header, matcher) {\n const self = this;\n let deleted = false;\n\n function deleteHeader(_header) {\n _header = normalizeHeader(_header);\n\n if (_header) {\n const key = findKey(self, _header);\n\n if (key && (!matcher || matchHeaderValue(self, self[key], key, matcher))) {\n delete self[key];\n\n deleted = true;\n }\n }\n }\n\n if (utils.isArray(header)) {\n header.forEach(deleteHeader);\n } else {\n deleteHeader(header);\n }\n\n return deleted;\n },\n\n clear: function() {\n return Object.keys(this).forEach(this.delete.bind(this));\n },\n\n normalize: function(format) {\n const self = this;\n const headers = {};\n\n utils.forEach(this, (value, header) => {\n const key = findKey(headers, header);\n\n if (key) {\n self[key] = normalizeValue(value);\n delete self[header];\n return;\n }\n\n const normalized = format ? formatHeader(header) : String(header).trim();\n\n if (normalized !== header) {\n delete self[header];\n }\n\n self[normalized] = normalizeValue(value);\n\n headers[normalized] = true;\n });\n\n return this;\n },\n\n toJSON: function() {\n const obj = Object.create(null);\n\n utils.forEach(Object.assign({}, this[$defaults] || null, this),\n (value, header) => {\n if (value == null || value === false) return;\n obj[header] = utils.isArray(value) ? value.join(', ') : value;\n });\n\n return obj;\n }\n});\n\nObject.assign(AxiosHeaders, {\n from: function(thing) {\n if (utils.isString(thing)) {\n return new this(parseHeaders(thing));\n }\n return thing instanceof this ? thing : new this(thing);\n },\n\n accessor: function(header) {\n const internals = this[$internals] = (this[$internals] = {\n accessors: {}\n });\n\n const accessors = internals.accessors;\n const prototype = this.prototype;\n\n function defineAccessor(_header) {\n const lHeader = normalizeHeader(_header);\n\n if (!accessors[lHeader]) {\n buildAccessors(prototype, _header);\n accessors[lHeader] = true;\n }\n }\n\n utils.isArray(header) ? header.forEach(defineAccessor) : defineAccessor(header);\n\n return this;\n }\n});\n\nAxiosHeaders.accessor(['Content-Type', 'Content-Length', 'Accept', 'Accept-Encoding', 'User-Agent']);\n\nutils.freezeMethods(AxiosHeaders.prototype);\nutils.freezeMethods(AxiosHeaders);\n\nexport default AxiosHeaders;\n","'use strict';\n\n/**\n * Throttle decorator\n * @param {Function} fn\n * @param {Number} freq\n * @return {Function}\n */\nfunction throttle(fn, freq) {\n let timestamp = 0;\n const threshold = 1000 / freq;\n let timer = null;\n return function throttled(force, args) {\n const now = Date.now();\n if (force || now - timestamp > threshold) {\n if (timer) {\n clearTimeout(timer);\n timer = null;\n }\n timestamp = now;\n return fn.apply(null, args);\n }\n if (!timer) {\n timer = setTimeout(() => {\n timer = null;\n timestamp = Date.now();\n return fn.apply(null, args);\n }, threshold - (now - timestamp));\n }\n };\n}\n\nexport default throttle;\n","'use strict';\n\n/**\n * Calculate data maxRate\n * @param {Number} [samplesCount= 10]\n * @param {Number} [min= 1000]\n * @returns {Function}\n */\nfunction speedometer(samplesCount, min) {\n samplesCount = samplesCount || 10;\n const bytes = new Array(samplesCount);\n const timestamps = new Array(samplesCount);\n let head = 0;\n let tail = 0;\n let firstSampleTS;\n\n min = min !== undefined ? min : 1000;\n\n return function push(chunkLength) {\n const now = Date.now();\n\n const startedAt = timestamps[tail];\n\n if (!firstSampleTS) {\n firstSampleTS = now;\n }\n\n bytes[head] = chunkLength;\n timestamps[head] = now;\n\n let i = tail;\n let bytesCount = 0;\n\n while (i !== head) {\n bytesCount += bytes[i++];\n i = i % samplesCount;\n }\n\n head = (head + 1) % samplesCount;\n\n if (head === tail) {\n tail = (tail + 1) % samplesCount;\n }\n\n if (now - firstSampleTS < min) {\n return;\n }\n\n const passed = startedAt && now - startedAt;\n\n return passed ? Math.round(bytesCount * 1000 / passed) : undefined;\n };\n}\n\nexport default speedometer;\n","'use strict';\n\nimport stream from 'stream';\nimport utils from '../utils.js';\nimport throttle from './throttle.js';\nimport speedometer from './speedometer.js';\n\nconst kInternals = Symbol('internals');\n\nclass AxiosTransformStream extends stream.Transform{\n constructor(options) {\n options = utils.toFlatObject(options, {\n maxRate: 0,\n chunkSize: 64 * 1024,\n minChunkSize: 100,\n timeWindow: 500,\n ticksRate: 2,\n samplesCount: 15\n }, null, (prop, source) => {\n return !utils.isUndefined(source[prop]);\n });\n\n super({\n readableHighWaterMark: options.chunkSize\n });\n\n const self = this;\n\n const internals = this[kInternals] = {\n length: options.length,\n timeWindow: options.timeWindow,\n ticksRate: options.ticksRate,\n chunkSize: options.chunkSize,\n maxRate: options.maxRate,\n minChunkSize: options.minChunkSize,\n bytesSeen: 0,\n isCaptured: false,\n notifiedBytesLoaded: 0,\n ts: Date.now(),\n bytes: 0,\n onReadCallback: null\n };\n\n const _speedometer = speedometer(internals.ticksRate * options.samplesCount, internals.timeWindow);\n\n this.on('newListener', event => {\n if (event === 'progress') {\n if (!internals.isCaptured) {\n internals.isCaptured = true;\n }\n }\n });\n\n let bytesNotified = 0;\n\n internals.updateProgress = throttle(function throttledHandler() {\n const totalBytes = internals.length;\n const bytesTransferred = internals.bytesSeen;\n const progressBytes = bytesTransferred - bytesNotified;\n if (!progressBytes || self.destroyed) return;\n\n const rate = _speedometer(progressBytes);\n\n bytesNotified = bytesTransferred;\n\n process.nextTick(() => {\n self.emit('progress', {\n 'loaded': bytesTransferred,\n 'total': totalBytes,\n 'progress': totalBytes ? (bytesTransferred / totalBytes) : undefined,\n 'bytes': progressBytes,\n 'rate': rate ? rate : undefined,\n 'estimated': rate && totalBytes && bytesTransferred <= totalBytes ?\n (totalBytes - bytesTransferred) / rate : undefined\n });\n });\n }, internals.ticksRate);\n\n const onFinish = () => {\n internals.updateProgress(true);\n };\n\n this.once('end', onFinish);\n this.once('error', onFinish);\n }\n\n _read(size) {\n const internals = this[kInternals];\n\n if (internals.onReadCallback) {\n internals.onReadCallback();\n }\n\n return super._read(size);\n }\n\n _transform(chunk, encoding, callback) {\n const self = this;\n const internals = this[kInternals];\n const maxRate = internals.maxRate;\n\n const readableHighWaterMark = this.readableHighWaterMark;\n\n const timeWindow = internals.timeWindow;\n\n const divider = 1000 / timeWindow;\n const bytesThreshold = (maxRate / divider);\n const minChunkSize = internals.minChunkSize !== false ? Math.max(internals.minChunkSize, bytesThreshold * 0.01) : 0;\n\n function pushChunk(_chunk, _callback) {\n const bytes = Buffer.byteLength(_chunk);\n internals.bytesSeen += bytes;\n internals.bytes += bytes;\n\n if (internals.isCaptured) {\n internals.updateProgress();\n }\n\n if (self.push(_chunk)) {\n process.nextTick(_callback);\n } else {\n internals.onReadCallback = () => {\n internals.onReadCallback = null;\n process.nextTick(_callback);\n };\n }\n }\n\n const transformChunk = (_chunk, _callback) => {\n const chunkSize = Buffer.byteLength(_chunk);\n let chunkRemainder = null;\n let maxChunkSize = readableHighWaterMark;\n let bytesLeft;\n let passed = 0;\n\n if (maxRate) {\n const now = Date.now();\n\n if (!internals.ts || (passed = (now - internals.ts)) >= timeWindow) {\n internals.ts = now;\n bytesLeft = bytesThreshold - internals.bytes;\n internals.bytes = bytesLeft < 0 ? -bytesLeft : 0;\n passed = 0;\n }\n\n bytesLeft = bytesThreshold - internals.bytes;\n }\n\n if (maxRate) {\n if (bytesLeft <= 0) {\n // next time window\n return setTimeout(() => {\n _callback(null, _chunk);\n }, timeWindow - passed);\n }\n\n if (bytesLeft < maxChunkSize) {\n maxChunkSize = bytesLeft;\n }\n }\n\n if (maxChunkSize && chunkSize > maxChunkSize && (chunkSize - maxChunkSize) > minChunkSize) {\n chunkRemainder = _chunk.subarray(maxChunkSize);\n _chunk = _chunk.subarray(0, maxChunkSize);\n }\n\n pushChunk(_chunk, chunkRemainder ? () => {\n process.nextTick(_callback, null, chunkRemainder);\n } : _callback);\n };\n\n transformChunk(chunk, function transformNextChunk(err, _chunk) {\n if (err) {\n return callback(err);\n }\n\n if (_chunk) {\n transformChunk(_chunk, transformNextChunk);\n } else {\n callback(null);\n }\n });\n }\n\n setLength(length) {\n this[kInternals].length = +length;\n return this;\n }\n}\n\nexport default AxiosTransformStream;\n","'use strict';\n\nimport utils from './../utils.js';\nimport settle from './../core/settle.js';\nimport buildFullPath from '../core/buildFullPath.js';\nimport buildURL from './../helpers/buildURL.js';\nimport {getProxyForUrl} from 'proxy-from-env';\nimport http from 'http';\nimport https from 'https';\nimport followRedirects from 'follow-redirects';\nimport zlib from 'zlib';\nimport {VERSION} from '../env/data.js';\nimport transitionalDefaults from '../defaults/transitional.js';\nimport AxiosError from '../core/AxiosError.js';\nimport CanceledError from '../cancel/CanceledError.js';\nimport platform from '../platform/index.js';\nimport fromDataURI from '../helpers/fromDataURI.js';\nimport stream from 'stream';\nimport AxiosHeaders from '../core/AxiosHeaders.js';\nimport AxiosTransformStream from '../helpers/AxiosTransformStream.js';\nimport EventEmitter from 'events';\n\nconst isBrotliSupported = utils.isFunction(zlib.createBrotliDecompress);\n\nconst {http: httpFollow, https: httpsFollow} = followRedirects;\n\nconst isHttps = /https:?/;\n\nconst supportedProtocols = platform.protocols.map(protocol => {\n return protocol + ':';\n});\n\n/**\n * If the proxy or config beforeRedirects functions are defined, call them with the options\n * object.\n *\n * @param {Object} options - The options object that was passed to the request.\n *\n * @returns {Object}\n */\nfunction dispatchBeforeRedirect(options) {\n if (options.beforeRedirects.proxy) {\n options.beforeRedirects.proxy(options);\n }\n if (options.beforeRedirects.config) {\n options.beforeRedirects.config(options);\n }\n}\n\n/**\n * If the proxy or config afterRedirects functions are defined, call them with the options\n *\n * @param {http.ClientRequestArgs} options\n * @param {AxiosProxyConfig} configProxy\n * @param {string} location\n *\n * @returns {http.ClientRequestArgs}\n */\nfunction setProxy(options, configProxy, location) {\n let proxy = configProxy;\n if (!proxy && proxy !== false) {\n const proxyUrl = getProxyForUrl(location);\n if (proxyUrl) {\n proxy = new URL(proxyUrl);\n }\n }\n if (proxy) {\n // Basic proxy authorization\n if (proxy.username) {\n proxy.auth = (proxy.username || '') + ':' + (proxy.password || '');\n }\n\n if (proxy.auth) {\n // Support proxy auth object form\n if (proxy.auth.username || proxy.auth.password) {\n proxy.auth = (proxy.auth.username || '') + ':' + (proxy.auth.password || '');\n }\n const base64 = Buffer\n .from(proxy.auth, 'utf8')\n .toString('base64');\n options.headers['Proxy-Authorization'] = 'Basic ' + base64;\n }\n\n options.headers.host = options.hostname + (options.port ? ':' + options.port : '');\n options.hostname = proxy.hostname;\n // Replace 'host' since options is not a URL object\n options.host = proxy.hostname;\n options.port = proxy.port;\n options.path = location;\n if (proxy.protocol) {\n options.protocol = proxy.protocol;\n }\n }\n\n options.beforeRedirects.proxy = function beforeRedirect(redirectOptions) {\n // Configure proxy for redirected request, passing the original config proxy to apply\n // the exact same logic as if the redirected request was performed by axios directly.\n setProxy(redirectOptions, configProxy, redirectOptions.href);\n };\n}\n\n/*eslint consistent-return:0*/\nexport default function httpAdapter(config) {\n return new Promise(function dispatchHttpRequest(resolvePromise, rejectPromise) {\n let data = config.data;\n const responseType = config.responseType;\n const responseEncoding = config.responseEncoding;\n const method = config.method.toUpperCase();\n let isFinished;\n let isDone;\n let rejected = false;\n let req;\n\n // temporary internal emitter until the AxiosRequest class will be implemented\n const emitter = new EventEmitter();\n\n function onFinished() {\n if (isFinished) return;\n isFinished = true;\n\n if (config.cancelToken) {\n config.cancelToken.unsubscribe(abort);\n }\n\n if (config.signal) {\n config.signal.removeEventListener('abort', abort);\n }\n\n emitter.removeAllListeners();\n }\n\n function done(value, isRejected) {\n if (isDone) return;\n\n isDone = true;\n\n if (isRejected) {\n rejected = true;\n onFinished();\n }\n\n isRejected ? rejectPromise(value) : resolvePromise(value);\n }\n\n const resolve = function resolve(value) {\n done(value);\n };\n\n const reject = function reject(value) {\n done(value, true);\n };\n\n function abort(reason) {\n emitter.emit('abort', !reason || reason.type ? new CanceledError(null, config, req) : reason);\n }\n\n emitter.once('abort', reject);\n\n if (config.cancelToken || config.signal) {\n config.cancelToken && config.cancelToken.subscribe(abort);\n if (config.signal) {\n config.signal.aborted ? abort() : config.signal.addEventListener('abort', abort);\n }\n }\n\n // Parse url\n const fullPath = buildFullPath(config.baseURL, config.url);\n const parsed = new URL(fullPath);\n const protocol = parsed.protocol || supportedProtocols[0];\n\n if (protocol === 'data:') {\n let convertedData;\n\n if (method !== 'GET') {\n return settle(resolve, reject, {\n status: 405,\n statusText: 'method not allowed',\n headers: {},\n config\n });\n }\n\n try {\n convertedData = fromDataURI(config.url, responseType === 'blob', {\n Blob: config.env && config.env.Blob\n });\n } catch (err) {\n throw AxiosError.from(err, AxiosError.ERR_BAD_REQUEST, config);\n }\n\n if (responseType === 'text') {\n convertedData = convertedData.toString(responseEncoding);\n\n if (!responseEncoding || responseEncoding === 'utf8') {\n data = utils.stripBOM(convertedData);\n }\n } else if (responseType === 'stream') {\n convertedData = stream.Readable.from(convertedData);\n }\n\n return settle(resolve, reject, {\n data: convertedData,\n status: 200,\n statusText: 'OK',\n headers: {},\n config\n });\n }\n\n if (supportedProtocols.indexOf(protocol) === -1) {\n return reject(new AxiosError(\n 'Unsupported protocol ' + protocol,\n AxiosError.ERR_BAD_REQUEST,\n config\n ));\n }\n\n const headers = AxiosHeaders.from(config.headers).normalize();\n\n // Set User-Agent (required by some servers)\n // See https://github.com/axios/axios/issues/69\n // User-Agent is specified; handle case where no UA header is desired\n // Only set header if it hasn't been set in config\n headers.set('User-Agent', 'axios/' + VERSION, false);\n\n const onDownloadProgress = config.onDownloadProgress;\n const onUploadProgress = config.onUploadProgress;\n const maxRate = config.maxRate;\n let maxUploadRate = undefined;\n let maxDownloadRate = undefined;\n\n // support for https://www.npmjs.com/package/form-data api\n if (utils.isFormData(data) && utils.isFunction(data.getHeaders)) {\n headers.set(data.getHeaders());\n } else if (data && !utils.isStream(data)) {\n if (Buffer.isBuffer(data)) {\n // Nothing to do...\n } else if (utils.isArrayBuffer(data)) {\n data = Buffer.from(new Uint8Array(data));\n } else if (utils.isString(data)) {\n data = Buffer.from(data, 'utf-8');\n } else {\n return reject(new AxiosError(\n 'Data after transformation must be a string, an ArrayBuffer, a Buffer, or a Stream',\n AxiosError.ERR_BAD_REQUEST,\n config\n ));\n }\n\n // Add Content-Length header if data exists\n headers.set('Content-Length', data.length, false);\n\n if (config.maxBodyLength > -1 && data.length > config.maxBodyLength) {\n return reject(new AxiosError(\n 'Request body larger than maxBodyLength limit',\n AxiosError.ERR_BAD_REQUEST,\n config\n ));\n }\n }\n\n const contentLength = +headers.getContentLength();\n\n if (utils.isArray(maxRate)) {\n maxUploadRate = maxRate[0];\n maxDownloadRate = maxRate[1];\n } else {\n maxUploadRate = maxDownloadRate = maxRate;\n }\n\n if (data && (onUploadProgress || maxUploadRate)) {\n if (!utils.isStream(data)) {\n data = stream.Readable.from(data, {objectMode: false});\n }\n\n data = stream.pipeline([data, new AxiosTransformStream({\n length: utils.toFiniteNumber(contentLength),\n maxRate: utils.toFiniteNumber(maxUploadRate)\n })], utils.noop);\n\n onUploadProgress && data.on('progress', progress => {\n onUploadProgress(Object.assign(progress, {\n upload: true\n }));\n });\n }\n\n // HTTP basic authentication\n let auth = undefined;\n if (config.auth) {\n const username = config.auth.username || '';\n const password = config.auth.password || '';\n auth = username + ':' + password;\n }\n\n if (!auth && parsed.username) {\n const urlUsername = parsed.username;\n const urlPassword = parsed.password;\n auth = urlUsername + ':' + urlPassword;\n }\n\n auth && headers.delete('authorization');\n\n const path = parsed.pathname.concat(parsed.searchParams);\n try {\n buildURL(path, config.params, config.paramsSerializer).replace(/^\\?/, '');\n } catch (err) {\n const customErr = new Error(err.message);\n customErr.config = config;\n customErr.url = config.url;\n customErr.exists = true;\n return reject(customErr);\n }\n\n headers.set('Accept-Encoding', 'gzip, deflate, br', false);\n\n const options = {\n path: buildURL(path, config.params, config.paramsSerializer).replace(/^\\?/, ''),\n method: method,\n headers: headers.toJSON(),\n agents: { http: config.httpAgent, https: config.httpsAgent },\n auth,\n protocol,\n beforeRedirect: dispatchBeforeRedirect,\n beforeRedirects: {}\n };\n\n if (config.socketPath) {\n options.socketPath = config.socketPath;\n } else {\n options.hostname = parsed.hostname;\n options.port = parsed.port;\n setProxy(options, config.proxy, protocol + '//' + parsed.hostname + (parsed.port ? ':' + parsed.port : '') + options.path);\n }\n\n let transport;\n const isHttpsRequest = isHttps.test(options.protocol);\n options.agent = isHttpsRequest ? config.httpsAgent : config.httpAgent;\n if (config.transport) {\n transport = config.transport;\n } else if (config.maxRedirects === 0) {\n transport = isHttpsRequest ? https : http;\n } else {\n if (config.maxRedirects) {\n options.maxRedirects = config.maxRedirects;\n }\n if (config.beforeRedirect) {\n options.beforeRedirects.config = config.beforeRedirect;\n }\n transport = isHttpsRequest ? httpsFollow : httpFollow;\n }\n\n if (config.maxBodyLength > -1) {\n options.maxBodyLength = config.maxBodyLength;\n } else {\n // follow-redirects does not skip comparison, so it should always succeed for axios -1 unlimited\n options.maxBodyLength = Infinity;\n }\n\n if (config.insecureHTTPParser) {\n options.insecureHTTPParser = config.insecureHTTPParser;\n }\n\n // Create the request\n req = transport.request(options, function handleResponse(res) {\n if (req.destroyed) return;\n\n const streams = [res];\n\n // uncompress the response body transparently if required\n let responseStream = res;\n\n // return the last request in case of redirects\n const lastRequest = res.req || req;\n\n // if decompress disabled we should not decompress\n if (config.decompress !== false) {\n // if no content, but headers still say that it is encoded,\n // remove the header not confuse downstream operations\n if (data && data.length === 0 && res.headers['content-encoding']) {\n delete res.headers['content-encoding'];\n }\n\n switch (res.headers['content-encoding']) {\n /*eslint default-case:0*/\n case 'gzip':\n case 'compress':\n case 'deflate':\n // add the unzipper to the body stream processing pipeline\n streams.push(zlib.createUnzip());\n\n // remove the content-encoding in order to not confuse downstream operations\n delete res.headers['content-encoding'];\n break;\n case 'br':\n if (isBrotliSupported) {\n streams.push(zlib.createBrotliDecompress());\n delete res.headers['content-encoding'];\n }\n }\n }\n\n if (onDownloadProgress) {\n const responseLength = +res.headers['content-length'];\n\n const transformStream = new AxiosTransformStream({\n length: utils.toFiniteNumber(responseLength),\n maxRate: utils.toFiniteNumber(maxDownloadRate)\n });\n\n onDownloadProgress && transformStream.on('progress', progress => {\n onDownloadProgress(Object.assign(progress, {\n download: true\n }));\n });\n\n streams.push(transformStream);\n }\n\n responseStream = streams.length > 1 ? stream.pipeline(streams, utils.noop) : streams[0];\n\n const offListeners = stream.finished(responseStream, () => {\n offListeners();\n onFinished();\n });\n\n const response = {\n status: res.statusCode,\n statusText: res.statusMessage,\n headers: new AxiosHeaders(res.headers),\n config,\n request: lastRequest\n };\n\n if (responseType === 'stream') {\n response.data = responseStream;\n settle(resolve, reject, response);\n } else {\n const responseBuffer = [];\n let totalResponseBytes = 0;\n\n responseStream.on('data', function handleStreamData(chunk) {\n responseBuffer.push(chunk);\n totalResponseBytes += chunk.length;\n\n // make sure the content length is not over the maxContentLength if specified\n if (config.maxContentLength > -1 && totalResponseBytes > config.maxContentLength) {\n // stream.destroy() emit aborted event before calling reject() on Node.js v16\n rejected = true;\n responseStream.destroy();\n reject(new AxiosError('maxContentLength size of ' + config.maxContentLength + ' exceeded',\n AxiosError.ERR_BAD_RESPONSE, config, lastRequest));\n }\n });\n\n responseStream.on('aborted', function handlerStreamAborted() {\n if (rejected) {\n return;\n }\n\n const err = new AxiosError(\n 'maxContentLength size of ' + config.maxContentLength + ' exceeded',\n AxiosError.ERR_BAD_RESPONSE,\n config,\n lastRequest\n );\n responseStream.destroy(err);\n reject(err);\n });\n\n responseStream.on('error', function handleStreamError(err) {\n if (req.destroyed) return;\n reject(AxiosError.from(err, null, config, lastRequest));\n });\n\n responseStream.on('end', function handleStreamEnd() {\n try {\n let responseData = responseBuffer.length === 1 ? responseBuffer[0] : Buffer.concat(responseBuffer);\n if (responseType !== 'arraybuffer') {\n responseData = responseData.toString(responseEncoding);\n if (!responseEncoding || responseEncoding === 'utf8') {\n responseData = utils.stripBOM(responseData);\n }\n }\n response.data = responseData;\n } catch (err) {\n reject(AxiosError.from(err, null, config, response.request, response));\n }\n settle(resolve, reject, response);\n });\n }\n\n emitter.once('abort', err => {\n if (!responseStream.destroyed) {\n responseStream.emit('error', err);\n responseStream.destroy();\n }\n });\n });\n\n emitter.once('abort', err => {\n reject(err);\n req.destroy(err);\n });\n\n // Handle errors\n req.on('error', function handleRequestError(err) {\n // @todo remove\n // if (req.aborted && err.code !== AxiosError.ERR_FR_TOO_MANY_REDIRECTS) return;\n reject(AxiosError.from(err, null, config, req));\n });\n\n // set tcp keep alive to prevent drop connection by peer\n req.on('socket', function handleRequestSocket(socket) {\n // default interval of sending ack packet is 1 minute\n socket.setKeepAlive(true, 1000 * 60);\n });\n\n // Handle request timeout\n if (config.timeout) {\n // This is forcing a int timeout to avoid problems if the `req` interface doesn't handle other types.\n const timeout = parseInt(config.timeout, 10);\n\n if (isNaN(timeout)) {\n reject(new AxiosError(\n 'error trying to parse `config.timeout` to int',\n AxiosError.ERR_BAD_OPTION_VALUE,\n config,\n req\n ));\n\n return;\n }\n\n // Sometime, the response will be very slow, and does not respond, the connect event will be block by event loop system.\n // And timer callback will be fired, and abort() will be invoked before connection, then get \"socket hang up\" and code ECONNRESET.\n // At this time, if we have a large number of request, nodejs will hang up some socket on background. and the number will up and up.\n // And then these socket which be hang up will devouring CPU little by little.\n // ClientRequest.setTimeout will be fired on the specify milliseconds, and can make sure that abort() will be fired after connect.\n req.setTimeout(timeout, function handleRequestTimeout() {\n if (isDone) return;\n let timeoutErrorMessage = config.timeout ? 'timeout of ' + config.timeout + 'ms exceeded' : 'timeout exceeded';\n const transitional = config.transitional || transitionalDefaults;\n if (config.timeoutErrorMessage) {\n timeoutErrorMessage = config.timeoutErrorMessage;\n }\n reject(new AxiosError(\n timeoutErrorMessage,\n transitional.clarifyTimeoutError ? AxiosError.ETIMEDOUT : AxiosError.ECONNABORTED,\n config,\n req\n ));\n abort();\n });\n }\n\n\n // Send the request\n if (utils.isStream(data)) {\n let ended = false;\n let errored = false;\n\n data.on('end', () => {\n ended = true;\n });\n\n data.once('error', err => {\n errored = true;\n req.destroy(err);\n });\n\n data.on('close', () => {\n if (!ended && !errored) {\n abort(new CanceledError('Request stream has been aborted', config, req));\n }\n });\n\n data.pipe(req);\n } else {\n req.end(data);\n }\n });\n}\n","'use strict';\n\nimport utils from './../utils.js';\nimport platform from '../platform/index.js';\n\nexport default platform.isStandardBrowserEnv ?\n\n// Standard browser envs support document.cookie\n (function standardBrowserEnv() {\n return {\n write: function write(name, value, expires, path, domain, secure) {\n const cookie = [];\n cookie.push(name + '=' + encodeURIComponent(value));\n\n if (utils.isNumber(expires)) {\n cookie.push('expires=' + new Date(expires).toGMTString());\n }\n\n if (utils.isString(path)) {\n cookie.push('path=' + path);\n }\n\n if (utils.isString(domain)) {\n cookie.push('domain=' + domain);\n }\n\n if (secure === true) {\n cookie.push('secure');\n }\n\n document.cookie = cookie.join('; ');\n },\n\n read: function read(name) {\n const match = document.cookie.match(new RegExp('(^|;\\\\s*)(' + name + ')=([^;]*)'));\n return (match ? decodeURIComponent(match[3]) : null);\n },\n\n remove: function remove(name) {\n this.write(name, '', Date.now() - 86400000);\n }\n };\n })() :\n\n// Non standard browser env (web workers, react-native) lack needed support.\n (function nonStandardBrowserEnv() {\n return {\n write: function write() {},\n read: function read() { return null; },\n remove: function remove() {}\n };\n })();\n","'use strict';\n\nimport utils from './../utils.js';\nimport platform from '../platform/index.js';\n\nexport default platform.isStandardBrowserEnv ?\n\n// Standard browser envs have full support of the APIs needed to test\n// whether the request URL is of the same origin as current location.\n (function standardBrowserEnv() {\n const msie = /(msie|trident)/i.test(navigator.userAgent);\n const urlParsingNode = document.createElement('a');\n let originURL;\n\n /**\n * Parse a URL to discover it's components\n *\n * @param {String} url The URL to be parsed\n * @returns {Object}\n */\n function resolveURL(url) {\n let href = url;\n\n if (msie) {\n // IE needs attribute set twice to normalize properties\n urlParsingNode.setAttribute('href', href);\n href = urlParsingNode.href;\n }\n\n urlParsingNode.setAttribute('href', href);\n\n // urlParsingNode provides the UrlUtils interface - http://url.spec.whatwg.org/#urlutils\n return {\n href: urlParsingNode.href,\n protocol: urlParsingNode.protocol ? urlParsingNode.protocol.replace(/:$/, '') : '',\n host: urlParsingNode.host,\n search: urlParsingNode.search ? urlParsingNode.search.replace(/^\\?/, '') : '',\n hash: urlParsingNode.hash ? urlParsingNode.hash.replace(/^#/, '') : '',\n hostname: urlParsingNode.hostname,\n port: urlParsingNode.port,\n pathname: (urlParsingNode.pathname.charAt(0) === '/') ?\n urlParsingNode.pathname :\n '/' + urlParsingNode.pathname\n };\n }\n\n originURL = resolveURL(window.location.href);\n\n /**\n * Determine if a URL shares the same origin as the current location\n *\n * @param {String} requestURL The URL to test\n * @returns {boolean} True if URL shares the same origin, otherwise false\n */\n return function isURLSameOrigin(requestURL) {\n const parsed = (utils.isString(requestURL)) ? resolveURL(requestURL) : requestURL;\n return (parsed.protocol === originURL.protocol &&\n parsed.host === originURL.host);\n };\n })() :\n\n // Non standard browser envs (web workers, react-native) lack needed support.\n (function nonStandardBrowserEnv() {\n return function isURLSameOrigin() {\n return true;\n };\n })();\n","'use strict';\n\nimport utils from './../utils.js';\nimport settle from './../core/settle.js';\nimport cookies from './../helpers/cookies.js';\nimport buildURL from './../helpers/buildURL.js';\nimport buildFullPath from '../core/buildFullPath.js';\nimport isURLSameOrigin from './../helpers/isURLSameOrigin.js';\nimport transitionalDefaults from '../defaults/transitional.js';\nimport AxiosError from '../core/AxiosError.js';\nimport CanceledError from '../cancel/CanceledError.js';\nimport parseProtocol from '../helpers/parseProtocol.js';\nimport platform from '../platform/index.js';\nimport AxiosHeaders from '../core/AxiosHeaders.js';\nimport speedometer from '../helpers/speedometer.js';\n\nfunction progressEventReducer(listener, isDownloadStream) {\n let bytesNotified = 0;\n const _speedometer = speedometer(50, 250);\n\n return e => {\n const loaded = e.loaded;\n const total = e.lengthComputable ? e.total : undefined;\n const progressBytes = loaded - bytesNotified;\n const rate = _speedometer(progressBytes);\n const inRange = loaded <= total;\n\n bytesNotified = loaded;\n\n const data = {\n loaded,\n total,\n progress: total ? (loaded / total) : undefined,\n bytes: progressBytes,\n rate: rate ? rate : undefined,\n estimated: rate && total && inRange ? (total - loaded) / rate : undefined\n };\n\n data[isDownloadStream ? 'download' : 'upload'] = true;\n\n listener(data);\n };\n}\n\nexport default function xhrAdapter(config) {\n return new Promise(function dispatchXhrRequest(resolve, reject) {\n let requestData = config.data;\n const requestHeaders = AxiosHeaders.from(config.headers).normalize();\n const responseType = config.responseType;\n let onCanceled;\n function done() {\n if (config.cancelToken) {\n config.cancelToken.unsubscribe(onCanceled);\n }\n\n if (config.signal) {\n config.signal.removeEventListener('abort', onCanceled);\n }\n }\n\n if (utils.isFormData(requestData) && platform.isStandardBrowserEnv) {\n requestHeaders.setContentType(false); // Let the browser set it\n }\n\n let request = new XMLHttpRequest();\n\n // HTTP basic authentication\n if (config.auth) {\n const username = config.auth.username || '';\n const password = config.auth.password ? unescape(encodeURIComponent(config.auth.password)) : '';\n requestHeaders.set('Authorization', 'Basic ' + btoa(username + ':' + password));\n }\n\n const fullPath = buildFullPath(config.baseURL, config.url);\n\n request.open(config.method.toUpperCase(), buildURL(fullPath, config.params, config.paramsSerializer), true);\n\n // Set the request timeout in MS\n request.timeout = config.timeout;\n\n function onloadend() {\n if (!request) {\n return;\n }\n // Prepare the response\n const responseHeaders = AxiosHeaders.from(\n 'getAllResponseHeaders' in request && request.getAllResponseHeaders()\n );\n const responseData = !responseType || responseType === 'text' || responseType === 'json' ?\n request.responseText : request.response;\n const response = {\n data: responseData,\n status: request.status,\n statusText: request.statusText,\n headers: responseHeaders,\n config,\n request\n };\n\n settle(function _resolve(value) {\n resolve(value);\n done();\n }, function _reject(err) {\n reject(err);\n done();\n }, response);\n\n // Clean up request\n request = null;\n }\n\n if ('onloadend' in request) {\n // Use onloadend if available\n request.onloadend = onloadend;\n } else {\n // Listen for ready state to emulate onloadend\n request.onreadystatechange = function handleLoad() {\n if (!request || request.readyState !== 4) {\n return;\n }\n\n // The request errored out and we didn't get a response, this will be\n // handled by onerror instead\n // With one exception: request that using file: protocol, most browsers\n // will return status as 0 even though it's a successful request\n if (request.status === 0 && !(request.responseURL && request.responseURL.indexOf('file:') === 0)) {\n return;\n }\n // readystate handler is calling before onerror or ontimeout handlers,\n // so we should call onloadend on the next 'tick'\n setTimeout(onloadend);\n };\n }\n\n // Handle browser request cancellation (as opposed to a manual cancellation)\n request.onabort = function handleAbort() {\n if (!request) {\n return;\n }\n\n reject(new AxiosError('Request aborted', AxiosError.ECONNABORTED, config, request));\n\n // Clean up request\n request = null;\n };\n\n // Handle low level network errors\n request.onerror = function handleError() {\n // Real errors are hidden from us by the browser\n // onerror should only fire if it's a network error\n reject(new AxiosError('Network Error', AxiosError.ERR_NETWORK, config, request));\n\n // Clean up request\n request = null;\n };\n\n // Handle timeout\n request.ontimeout = function handleTimeout() {\n let timeoutErrorMessage = config.timeout ? 'timeout of ' + config.timeout + 'ms exceeded' : 'timeout exceeded';\n const transitional = config.transitional || transitionalDefaults;\n if (config.timeoutErrorMessage) {\n timeoutErrorMessage = config.timeoutErrorMessage;\n }\n reject(new AxiosError(\n timeoutErrorMessage,\n transitional.clarifyTimeoutError ? AxiosError.ETIMEDOUT : AxiosError.ECONNABORTED,\n config,\n request));\n\n // Clean up request\n request = null;\n };\n\n // Add xsrf header\n // This is only done if running in a standard browser environment.\n // Specifically not if we're in a web worker, or react-native.\n if (platform.isStandardBrowserEnv) {\n // Add xsrf header\n const xsrfValue = (config.withCredentials || isURLSameOrigin(fullPath))\n && config.xsrfCookieName && cookies.read(config.xsrfCookieName);\n\n if (xsrfValue) {\n requestHeaders.set(config.xsrfHeaderName, xsrfValue);\n }\n }\n\n // Remove Content-Type if data is undefined\n requestData === undefined && requestHeaders.setContentType(null);\n\n // Add headers to the request\n if ('setRequestHeader' in request) {\n utils.forEach(requestHeaders.toJSON(), function setRequestHeader(val, key) {\n request.setRequestHeader(key, val);\n });\n }\n\n // Add withCredentials to request if needed\n if (!utils.isUndefined(config.withCredentials)) {\n request.withCredentials = !!config.withCredentials;\n }\n\n // Add responseType to request if needed\n if (responseType && responseType !== 'json') {\n request.responseType = config.responseType;\n }\n\n // Handle progress if needed\n if (typeof config.onDownloadProgress === 'function') {\n request.addEventListener('progress', progressEventReducer(config.onDownloadProgress, true));\n }\n\n // Not all browsers support upload events\n if (typeof config.onUploadProgress === 'function' && request.upload) {\n request.upload.addEventListener('progress', progressEventReducer(config.onUploadProgress));\n }\n\n if (config.cancelToken || config.signal) {\n // Handle cancellation\n // eslint-disable-next-line func-names\n onCanceled = cancel => {\n if (!request) {\n return;\n }\n reject(!cancel || cancel.type ? new CanceledError(null, config, request) : cancel);\n request.abort();\n request = null;\n };\n\n config.cancelToken && config.cancelToken.subscribe(onCanceled);\n if (config.signal) {\n config.signal.aborted ? onCanceled() : config.signal.addEventListener('abort', onCanceled);\n }\n }\n\n const protocol = parseProtocol(fullPath);\n\n if (protocol && platform.protocols.indexOf(protocol) === -1) {\n reject(new AxiosError('Unsupported protocol ' + protocol + ':', AxiosError.ERR_BAD_REQUEST, config));\n return;\n }\n\n\n // Send the request\n request.send(requestData || null);\n });\n}\n","import utils from '../utils.js';\nimport httpAdapter from './http.js';\nimport xhrAdapter from './xhr.js';\n\nconst adapters = {\n http: httpAdapter,\n xhr: xhrAdapter\n}\n\nexport default {\n getAdapter: (nameOrAdapter) => {\n if(utils.isString(nameOrAdapter)){\n const adapter = adapters[nameOrAdapter];\n\n if (!nameOrAdapter) {\n throw Error(\n utils.hasOwnProp(nameOrAdapter) ?\n `Adapter '${nameOrAdapter}' is not available in the build` :\n `Can not resolve adapter '${nameOrAdapter}'`\n );\n }\n\n return adapter\n }\n\n if (!utils.isFunction(nameOrAdapter)) {\n throw new TypeError('adapter is not a function');\n }\n\n return nameOrAdapter;\n },\n adapters\n}\n","'use strict';\n\nimport utils from '../utils.js';\nimport AxiosError from '../core/AxiosError.js';\nimport transitionalDefaults from './transitional.js';\nimport toFormData from '../helpers/toFormData.js';\nimport toURLEncodedForm from '../helpers/toURLEncodedForm.js';\nimport platform from '../platform/index.js';\nimport formDataToJSON from '../helpers/formDataToJSON.js';\nimport adapters from '../adapters/index.js';\n\nconst DEFAULT_CONTENT_TYPE = {\n 'Content-Type': 'application/x-www-form-urlencoded'\n};\n\n/**\n * If the browser has an XMLHttpRequest object, use the XHR adapter, otherwise use the HTTP\n * adapter\n *\n * @returns {Function}\n */\nfunction getDefaultAdapter() {\n let adapter;\n if (typeof XMLHttpRequest !== 'undefined') {\n // For browsers use XHR adapter\n adapter = adapters.getAdapter('xhr');\n } else if (typeof process !== 'undefined' && utils.kindOf(process) === 'process') {\n // For node use HTTP adapter\n adapter = adapters.getAdapter('http');\n }\n return adapter;\n}\n\n/**\n * It takes a string, tries to parse it, and if it fails, it returns the stringified version\n * of the input\n *\n * @param {any} rawValue - The value to be stringified.\n * @param {Function} parser - A function that parses a string into a JavaScript object.\n * @param {Function} encoder - A function that takes a value and returns a string.\n *\n * @returns {string} A stringified version of the rawValue.\n */\nfunction stringifySafely(rawValue, parser, encoder) {\n if (utils.isString(rawValue)) {\n try {\n (parser || JSON.parse)(rawValue);\n return utils.trim(rawValue);\n } catch (e) {\n if (e.name !== 'SyntaxError') {\n throw e;\n }\n }\n }\n\n return (encoder || JSON.stringify)(rawValue);\n}\n\nconst defaults = {\n\n transitional: transitionalDefaults,\n\n adapter: getDefaultAdapter(),\n\n transformRequest: [function transformRequest(data, headers) {\n const contentType = headers.getContentType() || '';\n const hasJSONContentType = contentType.indexOf('application/json') > -1;\n const isObjectPayload = utils.isObject(data);\n\n if (isObjectPayload && utils.isHTMLForm(data)) {\n data = new FormData(data);\n }\n\n const isFormData = utils.isFormData(data);\n\n if (isFormData) {\n if (!hasJSONContentType) {\n return data;\n }\n return hasJSONContentType ? JSON.stringify(formDataToJSON(data)) : data;\n }\n\n if (utils.isArrayBuffer(data) ||\n utils.isBuffer(data) ||\n utils.isStream(data) ||\n utils.isFile(data) ||\n utils.isBlob(data)\n ) {\n return data;\n }\n if (utils.isArrayBufferView(data)) {\n return data.buffer;\n }\n if (utils.isURLSearchParams(data)) {\n headers.setContentType('application/x-www-form-urlencoded;charset=utf-8', false);\n return data.toString();\n }\n\n let isFileList;\n\n if (isObjectPayload) {\n if (contentType.indexOf('application/x-www-form-urlencoded') > -1) {\n return toURLEncodedForm(data, this.formSerializer).toString();\n }\n\n if ((isFileList = utils.isFileList(data)) || contentType.indexOf('multipart/form-data') > -1) {\n const _FormData = this.env && this.env.FormData;\n\n return toFormData(\n isFileList ? {'files[]': data} : data,\n _FormData && new _FormData(),\n this.formSerializer\n );\n }\n }\n\n if (isObjectPayload || hasJSONContentType ) {\n headers.setContentType('application/json', false);\n return stringifySafely(data);\n }\n\n return data;\n }],\n\n transformResponse: [function transformResponse(data) {\n const transitional = this.transitional || defaults.transitional;\n const forcedJSONParsing = transitional && transitional.forcedJSONParsing;\n const JSONRequested = this.responseType === 'json';\n\n if (data && utils.isString(data) && ((forcedJSONParsing && !this.responseType) || JSONRequested)) {\n const silentJSONParsing = transitional && transitional.silentJSONParsing;\n const strictJSONParsing = !silentJSONParsing && JSONRequested;\n\n try {\n return JSON.parse(data);\n } catch (e) {\n if (strictJSONParsing) {\n if (e.name === 'SyntaxError') {\n throw AxiosError.from(e, AxiosError.ERR_BAD_RESPONSE, this, null, this.response);\n }\n throw e;\n }\n }\n }\n\n return data;\n }],\n\n /**\n * A timeout in milliseconds to abort a request. If set to 0 (default) a\n * timeout is not created.\n */\n timeout: 0,\n\n xsrfCookieName: 'XSRF-TOKEN',\n xsrfHeaderName: 'X-XSRF-TOKEN',\n\n maxContentLength: -1,\n maxBodyLength: -1,\n\n env: {\n FormData: platform.classes.FormData,\n Blob: platform.classes.Blob\n },\n\n validateStatus: function validateStatus(status) {\n return status >= 200 && status < 300;\n },\n\n headers: {\n common: {\n 'Accept': 'application/json, text/plain, */*'\n }\n }\n};\n\nutils.forEach(['delete', 'get', 'head'], function forEachMethodNoData(method) {\n defaults.headers[method] = {};\n});\n\nutils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) {\n defaults.headers[method] = utils.merge(DEFAULT_CONTENT_TYPE);\n});\n\nexport default defaults;\n","'use strict';\n\nimport utils from './../utils.js';\nimport defaults from '../defaults/index.js';\nimport AxiosHeaders from '../core/AxiosHeaders.js';\n\n/**\n * Transform the data for a request or a response\n *\n * @param {Array|Function} fns A single function or Array of functions\n * @param {?Object} response The response object\n *\n * @returns {*} The resulting transformed data\n */\nexport default function transformData(fns, response) {\n const config = this || defaults;\n const context = response || config;\n const headers = AxiosHeaders.from(context.headers);\n let data = context.data;\n\n utils.forEach(fns, function transform(fn) {\n data = fn.call(config, data, headers.normalize(), response ? response.status : undefined);\n });\n\n headers.normalize();\n\n return data;\n}\n","'use strict';\n\nexport default function isCancel(value) {\n return !!(value && value.__CANCEL__);\n}\n","'use strict';\n\nimport transformData from './transformData.js';\nimport isCancel from '../cancel/isCancel.js';\nimport defaults from '../defaults/index.js';\nimport CanceledError from '../cancel/CanceledError.js';\nimport AxiosHeaders from '../core/AxiosHeaders.js';\n\n/**\n * Throws a `CanceledError` if cancellation has been requested.\n *\n * @param {Object} config The config that is to be used for the request\n *\n * @returns {void}\n */\nfunction throwIfCancellationRequested(config) {\n if (config.cancelToken) {\n config.cancelToken.throwIfRequested();\n }\n\n if (config.signal && config.signal.aborted) {\n throw new CanceledError();\n }\n}\n\n/**\n * Dispatch a request to the server using the configured adapter.\n *\n * @param {object} config The config that is to be used for the request\n *\n * @returns {Promise} The Promise to be fulfilled\n */\nexport default function dispatchRequest(config) {\n throwIfCancellationRequested(config);\n\n config.headers = AxiosHeaders.from(config.headers);\n\n // Transform request data\n config.data = transformData.call(\n config,\n config.transformRequest\n );\n\n const adapter = config.adapter || defaults.adapter;\n\n return adapter(config).then(function onAdapterResolution(response) {\n throwIfCancellationRequested(config);\n\n // Transform response data\n response.data = transformData.call(\n config,\n config.transformResponse,\n response\n );\n\n response.headers = AxiosHeaders.from(response.headers);\n\n return response;\n }, function onAdapterRejection(reason) {\n if (!isCancel(reason)) {\n throwIfCancellationRequested(config);\n\n // Transform response data\n if (reason && reason.response) {\n reason.response.data = transformData.call(\n config,\n config.transformResponse,\n reason.response\n );\n reason.response.headers = AxiosHeaders.from(reason.response.headers);\n }\n }\n\n return Promise.reject(reason);\n });\n}\n","'use strict';\n\nimport utils from '../utils.js';\n\n/**\n * Config-specific merge-function which creates a new config-object\n * by merging two configuration objects together.\n *\n * @param {Object} config1\n * @param {Object} config2\n *\n * @returns {Object} New object resulting from merging config2 to config1\n */\nexport default function mergeConfig(config1, config2) {\n // eslint-disable-next-line no-param-reassign\n config2 = config2 || {};\n const config = {};\n\n function getMergedValue(target, source) {\n if (utils.isPlainObject(target) && utils.isPlainObject(source)) {\n return utils.merge(target, source);\n } else if (utils.isPlainObject(source)) {\n return utils.merge({}, source);\n } else if (utils.isArray(source)) {\n return source.slice();\n }\n return source;\n }\n\n // eslint-disable-next-line consistent-return\n function mergeDeepProperties(prop) {\n if (!utils.isUndefined(config2[prop])) {\n return getMergedValue(config1[prop], config2[prop]);\n } else if (!utils.isUndefined(config1[prop])) {\n return getMergedValue(undefined, config1[prop]);\n }\n }\n\n // eslint-disable-next-line consistent-return\n function valueFromConfig2(prop) {\n if (!utils.isUndefined(config2[prop])) {\n return getMergedValue(undefined, config2[prop]);\n }\n }\n\n // eslint-disable-next-line consistent-return\n function defaultToConfig2(prop) {\n if (!utils.isUndefined(config2[prop])) {\n return getMergedValue(undefined, config2[prop]);\n } else if (!utils.isUndefined(config1[prop])) {\n return getMergedValue(undefined, config1[prop]);\n }\n }\n\n // eslint-disable-next-line consistent-return\n function mergeDirectKeys(prop) {\n if (prop in config2) {\n return getMergedValue(config1[prop], config2[prop]);\n } else if (prop in config1) {\n return getMergedValue(undefined, config1[prop]);\n }\n }\n\n const mergeMap = {\n 'url': valueFromConfig2,\n 'method': valueFromConfig2,\n 'data': valueFromConfig2,\n 'baseURL': defaultToConfig2,\n 'transformRequest': defaultToConfig2,\n 'transformResponse': defaultToConfig2,\n 'paramsSerializer': defaultToConfig2,\n 'timeout': defaultToConfig2,\n 'timeoutMessage': defaultToConfig2,\n 'withCredentials': defaultToConfig2,\n 'adapter': defaultToConfig2,\n 'responseType': defaultToConfig2,\n 'xsrfCookieName': defaultToConfig2,\n 'xsrfHeaderName': defaultToConfig2,\n 'onUploadProgress': defaultToConfig2,\n 'onDownloadProgress': defaultToConfig2,\n 'decompress': defaultToConfig2,\n 'maxContentLength': defaultToConfig2,\n 'maxBodyLength': defaultToConfig2,\n 'beforeRedirect': defaultToConfig2,\n 'transport': defaultToConfig2,\n 'httpAgent': defaultToConfig2,\n 'httpsAgent': defaultToConfig2,\n 'cancelToken': defaultToConfig2,\n 'socketPath': defaultToConfig2,\n 'responseEncoding': defaultToConfig2,\n 'validateStatus': mergeDirectKeys\n };\n\n utils.forEach(Object.keys(config1).concat(Object.keys(config2)), function computeConfigValue(prop) {\n const merge = mergeMap[prop] || mergeDeepProperties;\n const configValue = merge(prop);\n (utils.isUndefined(configValue) && merge !== mergeDirectKeys) || (config[prop] = configValue);\n });\n\n return config;\n}\n","'use strict';\n\nimport {VERSION} from '../env/data.js';\nimport AxiosError from '../core/AxiosError.js';\n\nconst validators = {};\n\n// eslint-disable-next-line func-names\n['object', 'boolean', 'number', 'function', 'string', 'symbol'].forEach((type, i) => {\n validators[type] = function validator(thing) {\n return typeof thing === type || 'a' + (i < 1 ? 'n ' : ' ') + type;\n };\n});\n\nconst deprecatedWarnings = {};\n\n/**\n * Transitional option validator\n *\n * @param {function|boolean?} validator - set to false if the transitional option has been removed\n * @param {string?} version - deprecated version / removed since version\n * @param {string?} message - some message with additional info\n *\n * @returns {function}\n */\nvalidators.transitional = function transitional(validator, version, message) {\n function formatMessage(opt, desc) {\n return '[Axios v' + VERSION + '] Transitional option \\'' + opt + '\\'' + desc + (message ? '. ' + message : '');\n }\n\n // eslint-disable-next-line func-names\n return (value, opt, opts) => {\n if (validator === false) {\n throw new AxiosError(\n formatMessage(opt, ' has been removed' + (version ? ' in ' + version : '')),\n AxiosError.ERR_DEPRECATED\n );\n }\n\n if (version && !deprecatedWarnings[opt]) {\n deprecatedWarnings[opt] = true;\n // eslint-disable-next-line no-console\n console.warn(\n formatMessage(\n opt,\n ' has been deprecated since v' + version + ' and will be removed in the near future'\n )\n );\n }\n\n return validator ? validator(value, opt, opts) : true;\n };\n};\n\n/**\n * Assert object's properties type\n *\n * @param {object} options\n * @param {object} schema\n * @param {boolean?} allowUnknown\n *\n * @returns {object}\n */\n\nfunction assertOptions(options, schema, allowUnknown) {\n if (typeof options !== 'object') {\n throw new AxiosError('options must be an object', AxiosError.ERR_BAD_OPTION_VALUE);\n }\n const keys = Object.keys(options);\n let i = keys.length;\n while (i-- > 0) {\n const opt = keys[i];\n const validator = schema[opt];\n if (validator) {\n const value = options[opt];\n const result = value === undefined || validator(value, opt, options);\n if (result !== true) {\n throw new AxiosError('option ' + opt + ' must be ' + result, AxiosError.ERR_BAD_OPTION_VALUE);\n }\n continue;\n }\n if (allowUnknown !== true) {\n throw new AxiosError('Unknown option ' + opt, AxiosError.ERR_BAD_OPTION);\n }\n }\n}\n\nexport default {\n assertOptions,\n validators\n};\n","'use strict';\n\nimport utils from './../utils.js';\nimport buildURL from '../helpers/buildURL.js';\nimport InterceptorManager from './InterceptorManager.js';\nimport dispatchRequest from './dispatchRequest.js';\nimport mergeConfig from './mergeConfig.js';\nimport buildFullPath from './buildFullPath.js';\nimport validator from '../helpers/validator.js';\nimport AxiosHeaders from './AxiosHeaders.js';\n\nconst validators = validator.validators;\n\n/**\n * Create a new instance of Axios\n *\n * @param {Object} instanceConfig The default config for the instance\n *\n * @return {Axios} A new instance of Axios\n */\nclass Axios {\n constructor(instanceConfig) {\n this.defaults = instanceConfig;\n this.interceptors = {\n request: new InterceptorManager(),\n response: new InterceptorManager()\n };\n }\n\n /**\n * Dispatch a request\n *\n * @param {String|Object} configOrUrl The config specific for this request (merged with this.defaults)\n * @param {?Object} config\n *\n * @returns {Promise} The Promise to be fulfilled\n */\n request(configOrUrl, config) {\n /*eslint no-param-reassign:0*/\n // Allow for axios('example/url'[, config]) a la fetch API\n if (typeof configOrUrl === 'string') {\n config = config || {};\n config.url = configOrUrl;\n } else {\n config = configOrUrl || {};\n }\n\n config = mergeConfig(this.defaults, config);\n\n const transitional = config.transitional;\n\n if (transitional !== undefined) {\n validator.assertOptions(transitional, {\n silentJSONParsing: validators.transitional(validators.boolean),\n forcedJSONParsing: validators.transitional(validators.boolean),\n clarifyTimeoutError: validators.transitional(validators.boolean)\n }, false);\n }\n\n // Set config.method\n config.method = (config.method || this.defaults.method || 'get').toLowerCase();\n\n // Flatten headers\n const defaultHeaders = config.headers && utils.merge(\n config.headers.common,\n config.headers[config.method]\n );\n\n defaultHeaders && utils.forEach(\n ['delete', 'get', 'head', 'post', 'put', 'patch', 'common'],\n function cleanHeaderConfig(method) {\n delete config.headers[method];\n }\n );\n\n config.headers = new AxiosHeaders(config.headers, defaultHeaders);\n\n // filter out skipped interceptors\n const requestInterceptorChain = [];\n let synchronousRequestInterceptors = true;\n this.interceptors.request.forEach(function unshiftRequestInterceptors(interceptor) {\n if (typeof interceptor.runWhen === 'function' && interceptor.runWhen(config) === false) {\n return;\n }\n\n synchronousRequestInterceptors = synchronousRequestInterceptors && interceptor.synchronous;\n\n requestInterceptorChain.unshift(interceptor.fulfilled, interceptor.rejected);\n });\n\n const responseInterceptorChain = [];\n this.interceptors.response.forEach(function pushResponseInterceptors(interceptor) {\n responseInterceptorChain.push(interceptor.fulfilled, interceptor.rejected);\n });\n\n let promise;\n let i = 0;\n let len;\n\n if (!synchronousRequestInterceptors) {\n const chain = [dispatchRequest.bind(this), undefined];\n chain.unshift.apply(chain, requestInterceptorChain);\n chain.push.apply(chain, responseInterceptorChain);\n len = chain.length;\n\n promise = Promise.resolve(config);\n\n while (i < len) {\n promise = promise.then(chain[i++], chain[i++]);\n }\n\n return promise;\n }\n\n len = requestInterceptorChain.length;\n\n let newConfig = config;\n\n i = 0;\n\n while (i < len) {\n const onFulfilled = requestInterceptorChain[i++];\n const onRejected = requestInterceptorChain[i++];\n try {\n newConfig = onFulfilled(newConfig);\n } catch (error) {\n onRejected.call(this, error);\n break;\n }\n }\n\n try {\n promise = dispatchRequest.call(this, newConfig);\n } catch (error) {\n return Promise.reject(error);\n }\n\n i = 0;\n len = responseInterceptorChain.length;\n\n while (i < len) {\n promise = promise.then(responseInterceptorChain[i++], responseInterceptorChain[i++]);\n }\n\n return promise;\n }\n\n getUri(config) {\n config = mergeConfig(this.defaults, config);\n const fullPath = buildFullPath(config.baseURL, config.url);\n return buildURL(fullPath, config.params, config.paramsSerializer);\n }\n}\n\n// Provide aliases for supported request methods\nutils.forEach(['delete', 'get', 'head', 'options'], function forEachMethodNoData(method) {\n /*eslint func-names:0*/\n Axios.prototype[method] = function(url, config) {\n return this.request(mergeConfig(config || {}, {\n method,\n url,\n data: (config || {}).data\n }));\n };\n});\n\nutils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) {\n /*eslint func-names:0*/\n\n function generateHTTPMethod(isForm) {\n return function httpMethod(url, data, config) {\n return this.request(mergeConfig(config || {}, {\n method,\n headers: isForm ? {\n 'Content-Type': 'multipart/form-data'\n } : {},\n url,\n data\n }));\n };\n }\n\n Axios.prototype[method] = generateHTTPMethod();\n\n Axios.prototype[method + 'Form'] = generateHTTPMethod(true);\n});\n\nexport default Axios;\n","'use strict';\n\nimport CanceledError from './CanceledError.js';\n\n/**\n * A `CancelToken` is an object that can be used to request cancellation of an operation.\n *\n * @param {Function} executor The executor function.\n *\n * @returns {CancelToken}\n */\nclass CancelToken {\n constructor(executor) {\n if (typeof executor !== 'function') {\n throw new TypeError('executor must be a function.');\n }\n\n let resolvePromise;\n\n this.promise = new Promise(function promiseExecutor(resolve) {\n resolvePromise = resolve;\n });\n\n const token = this;\n\n // eslint-disable-next-line func-names\n this.promise.then(cancel => {\n if (!token._listeners) return;\n\n let i = token._listeners.length;\n\n while (i-- > 0) {\n token._listeners[i](cancel);\n }\n token._listeners = null;\n });\n\n // eslint-disable-next-line func-names\n this.promise.then = onfulfilled => {\n let _resolve;\n // eslint-disable-next-line func-names\n const promise = new Promise(resolve => {\n token.subscribe(resolve);\n _resolve = resolve;\n }).then(onfulfilled);\n\n promise.cancel = function reject() {\n token.unsubscribe(_resolve);\n };\n\n return promise;\n };\n\n executor(function cancel(message, config, request) {\n if (token.reason) {\n // Cancellation has already been requested\n return;\n }\n\n token.reason = new CanceledError(message, config, request);\n resolvePromise(token.reason);\n });\n }\n\n /**\n * Throws a `CanceledError` if cancellation has been requested.\n */\n throwIfRequested() {\n if (this.reason) {\n throw this.reason;\n }\n }\n\n /**\n * Subscribe to the cancel signal\n */\n\n subscribe(listener) {\n if (this.reason) {\n listener(this.reason);\n return;\n }\n\n if (this._listeners) {\n this._listeners.push(listener);\n } else {\n this._listeners = [listener];\n }\n }\n\n /**\n * Unsubscribe from the cancel signal\n */\n\n unsubscribe(listener) {\n if (!this._listeners) {\n return;\n }\n const index = this._listeners.indexOf(listener);\n if (index !== -1) {\n this._listeners.splice(index, 1);\n }\n }\n\n /**\n * Returns an object that contains a new `CancelToken` and a function that, when called,\n * cancels the `CancelToken`.\n */\n static source() {\n let cancel;\n const token = new CancelToken(function executor(c) {\n cancel = c;\n });\n return {\n token,\n cancel\n };\n }\n}\n\nexport default CancelToken;\n","'use strict';\n\n/**\n * Syntactic sugar for invoking a function and expanding an array for arguments.\n *\n * Common use case would be to use `Function.prototype.apply`.\n *\n * ```js\n * function f(x, y, z) {}\n * var args = [1, 2, 3];\n * f.apply(null, args);\n * ```\n *\n * With `spread` this example can be re-written.\n *\n * ```js\n * spread(function(x, y, z) {})([1, 2, 3]);\n * ```\n *\n * @param {Function} callback\n *\n * @returns {Function}\n */\nexport default function spread(callback) {\n return function wrap(arr) {\n return callback.apply(null, arr);\n };\n}\n","'use strict';\n\nimport utils from './../utils.js';\n\n/**\n * Determines whether the payload is an error thrown by Axios\n *\n * @param {*} payload The value to test\n *\n * @returns {boolean} True if the payload is an error thrown by Axios, otherwise false\n */\nexport default function isAxiosError(payload) {\n return utils.isObject(payload) && (payload.isAxiosError === true);\n}\n","'use strict';\n\nimport utils from './utils.js';\nimport bind from './helpers/bind.js';\nimport Axios from './core/Axios.js';\nimport mergeConfig from './core/mergeConfig.js';\nimport defaults from './defaults/index.js';\nimport formDataToJSON from './helpers/formDataToJSON.js';\nimport CanceledError from './cancel/CanceledError.js';\nimport CancelToken from'./cancel/CancelToken.js';\nimport isCancel from'./cancel/isCancel.js';\nimport {VERSION} from './env/data.js';\nimport toFormData from './helpers/toFormData.js';\nimport AxiosError from './core/AxiosError.js';\nimport spread from './helpers/spread.js';\nimport isAxiosError from './helpers/isAxiosError.js';\n\n/**\n * Create an instance of Axios\n *\n * @param {Object} defaultConfig The default config for the instance\n *\n * @returns {Axios} A new instance of Axios\n */\nfunction createInstance(defaultConfig) {\n const context = new Axios(defaultConfig);\n const instance = bind(Axios.prototype.request, context);\n\n // Copy axios.prototype to instance\n utils.extend(instance, Axios.prototype, context, {allOwnKeys: true});\n\n // Copy context to instance\n utils.extend(instance, context, null, {allOwnKeys: true});\n\n // Factory for creating new instances\n instance.create = function create(instanceConfig) {\n return createInstance(mergeConfig(defaultConfig, instanceConfig));\n };\n\n return instance;\n}\n\n// Create the default instance to be exported\nconst axios = createInstance(defaults);\n\n// Expose Axios class to allow class inheritance\naxios.Axios = Axios;\n\n// Expose Cancel & CancelToken\naxios.CanceledError = CanceledError;\naxios.CancelToken = CancelToken;\naxios.isCancel = isCancel;\naxios.VERSION = VERSION;\naxios.toFormData = toFormData;\n\n// Expose AxiosError class\naxios.AxiosError = AxiosError;\n\n// alias for CanceledError for backward compatibility\naxios.Cancel = axios.CanceledError;\n\n// Expose all/spread\naxios.all = function all(promises) {\n return Promise.all(promises);\n};\n\naxios.spread = spread;\n\n// Expose isAxiosError\naxios.isAxiosError = isAxiosError;\n\naxios.formToJSON = thing => {\n return formDataToJSON(utils.isHTMLForm(thing) ? new FormData(thing) : thing);\n};\n\nexport default axios;\n"],"names":["prototype","envFormData","encode","url","FormData","stream","zlib","followRedirects","getProxyForUrl","EventEmitter","https","http","adapters","validators"],"mappings":"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"} \ No newline at end of file diff --git a/node_modules/axios/gulpfile.js b/node_modules/axios/gulpfile.js new file mode 100644 index 000000000..7d353439e --- /dev/null +++ b/node_modules/axios/gulpfile.js @@ -0,0 +1,88 @@ +import gulp from 'gulp'; +import fs from 'fs-extra'; +import axios from './index.js'; + +gulp.task('default', async function(){ + console.log('hello!'); +}); + +const clear = gulp.task('clear', async function() { + await fs.emptyDir('./dist/') +}); + +const bower = gulp.task('bower', async function () { + const npm = JSON.parse(await fs.readFile('package.json')); + const bower = JSON.parse(await fs.readFile('bower.json')); + + const fields = [ + 'name', + 'description', + 'version', + 'homepage', + 'license', + 'keywords' + ]; + + for (let i = 0, l = fields.length; i < l; i++) { + const field = fields[i]; + bower[field] = npm[field]; + } + + await fs.writeFile('bower.json', JSON.stringify(bower, null, 2)); +}); + +async function getContributors(user, repo, maxCount = 1) { + const contributors = (await axios.get( + `https://api.github.com/repos/${encodeURIComponent(user)}/${encodeURIComponent(repo)}/contributors`, + { params: { per_page: maxCount } } + )).data; + + return Promise.all(contributors.map(async (contributor)=> { + return {...contributor, ...(await axios.get( + `https://api.github.com/users/${encodeURIComponent(contributor.login)}` + )).data}; + })) +} + +const packageJSON = gulp.task('package', async function () { + const CONTRIBUTION_THRESHOLD = 3; + + const npm = JSON.parse(await fs.readFile('package.json')); + + try { + const contributors = await getContributors('axios', 'axios', 15); + + npm.contributors = contributors + .filter( + ({type, contributions}) => type.toLowerCase() === 'user' && contributions >= CONTRIBUTION_THRESHOLD + ) + .map(({login, name, url}) => `${name || login} (https://github.com/${login})`); + + await fs.writeFile('package.json', JSON.stringify(npm, null, 2)); + } catch (err) { + if (axios.isAxiosError(err) && err.response && err.response.status === 403) { + throw Error(`GitHub API Error: ${err.response.data && err.response.data.message}`); + } + throw err; + } +}); + +const env = gulp.task('env', async function () { + var npm = JSON.parse(await fs.readFile('package.json')); + + await fs.writeFile('./lib/env/data.js', Object.entries({ + VERSION: npm.version + }).map(([key, value]) => { + return `export const ${key} = ${JSON.stringify(value)};` + }).join('\n')); +}); + +const version = gulp.series('bower', 'env', 'package'); + +export { + bower, + env, + clear, + version, + packageJSON +} diff --git a/node_modules/axios/index.d.ts b/node_modules/axios/index.d.ts new file mode 100644 index 000000000..e79e20f56 --- /dev/null +++ b/node_modules/axios/index.d.ts @@ -0,0 +1,477 @@ +// TypeScript Version: 4.1 +type AxiosHeaderValue = string | string[] | number | boolean | null; +type RawAxiosHeaders = Record; + +type MethodsHeaders = { + [Key in Method as Lowercase]: AxiosHeaders; +}; + +interface CommonHeaders { + common: AxiosHeaders; +} + +type AxiosHeaderMatcher = (this: AxiosHeaders, value: string, name: string, headers: RawAxiosHeaders) => boolean; + +type AxiosHeaderSetter = (value: AxiosHeaderValue, rewrite?: boolean | AxiosHeaderMatcher) => AxiosHeaders; + +type AxiosHeaderGetter = ((parser?: RegExp) => RegExpExecArray | null) | + ((matcher?: AxiosHeaderMatcher) => AxiosHeaderValue); + +type AxiosHeaderTester = (matcher?: AxiosHeaderMatcher) => boolean; + +export class AxiosHeaders { + constructor( + headers?: RawAxiosHeaders | AxiosHeaders, + defaultHeaders?: RawAxiosHeaders | AxiosHeaders + ); + + set(headerName?: string, value?: AxiosHeaderValue, rewrite?: boolean | AxiosHeaderMatcher): AxiosHeaders; + set(headers?: RawAxiosHeaders | AxiosHeaders, rewrite?: boolean): AxiosHeaders; + + get(headerName: string, parser: RegExp): RegExpExecArray | null; + get(headerName: string, matcher?: true | AxiosHeaderMatcher): AxiosHeaderValue; + + has(header: string, matcher?: true | AxiosHeaderMatcher): boolean; + + delete(header: string | string[], matcher?: AxiosHeaderMatcher): boolean; + + clear(): boolean; + + normalize(format: boolean): AxiosHeaders; + + toJSON(): RawAxiosHeaders; + + static from(thing?: AxiosHeaders | RawAxiosHeaders | string): AxiosHeaders; + + static accessor(header: string | string[]): AxiosHeaders; + + setContentType: AxiosHeaderSetter; + getContentType: AxiosHeaderGetter; + hasContentType: AxiosHeaderTester; + + setContentLength: AxiosHeaderSetter; + getContentLength: AxiosHeaderGetter; + hasContentLength: AxiosHeaderTester; + + setAccept: AxiosHeaderSetter; + getAccept: AxiosHeaderGetter; + hasAccept: AxiosHeaderTester; + + setUserAgent: AxiosHeaderSetter; + getUserAgent: AxiosHeaderGetter; + hasUserAgent: AxiosHeaderTester; + + setContentEncoding: AxiosHeaderSetter; + getContentEncoding: AxiosHeaderGetter; + hasContentEncoding: AxiosHeaderTester; +} + +export type RawAxiosRequestHeaders = Partial; + +export type AxiosRequestHeaders = Partial & AxiosHeaders; + +export type RawAxiosResponseHeaders = Partial & { + "set-cookie"?: string[] +}>; + +export type AxiosResponseHeaders = RawAxiosResponseHeaders & AxiosHeaders; + +export interface AxiosRequestTransformer { + (this: AxiosRequestConfig, data: any, headers: AxiosRequestHeaders): any; +} + +export interface AxiosResponseTransformer { + (this: AxiosRequestConfig, data: any, headers: AxiosResponseHeaders, status?: number): any; +} + +export interface AxiosAdapter { + (config: AxiosRequestConfig): AxiosPromise; +} + +export interface AxiosBasicCredentials { + username: string; + password: string; +} + +export interface AxiosProxyConfig { + host: string; + port: number; + auth?: { + username: string; + password: string; + }; + protocol?: string; +} + +export enum HttpStatusCode { + Continue = 100, + SwitchingProtocols = 101, + Processing = 102, + EarlyHints = 103, + Ok = 200, + Created = 201, + Accepted = 202, + NonAuthoritativeInformation = 203, + NoContent = 204, + ResetContent = 205, + PartialContent = 206, + MultiStatus = 207, + AlreadyReported = 208, + ImUsed = 226, + MultipleChoices = 300, + MovedPermanently = 301, + Found = 302, + SeeOther = 303, + NotModified = 304, + UseProxy = 305, + Unused = 306, + TemporaryRedirect = 307, + PermanentRedirect = 308, + BadRequest = 400, + Unauthorized = 401, + PaymentRequired = 402, + Forbidden = 403, + NotFound = 404, + MethodNotAllowed = 405, + NotAcceptable = 406, + ProxyAuthenticationRequired = 407, + RequestTimeout = 408, + Conflict = 409, + Gone = 410, + LengthRequired = 411, + PreconditionFailed = 412, + PayloadTooLarge = 413, + UriTooLong = 414, + UnsupportedMediaType = 415, + RangeNotSatisfiable = 416, + ExpectationFailed = 417, + ImATeapot = 418, + MisdirectedRequest = 421, + UnprocessableEntity = 422, + Locked = 423, + FailedDependency = 424, + TooEarly = 425, + UpgradeRequired = 426, + PreconditionRequired = 428, + TooManyRequests = 429, + RequestHeaderFieldsTooLarge = 431, + UnavailableForLegalReasons = 451, + InternalServerError = 500, + NotImplemented = 501, + BadGateway = 502, + ServiceUnavailable = 503, + GatewayTimeout = 504, + HttpVersionNotSupported = 505, + VariantAlsoNegotiates = 506, + InsufficientStorage = 507, + LoopDetected = 508, + NotExtended = 510, + NetworkAuthenticationRequired = 511, +} + +export type Method = + | 'get' | 'GET' + | 'delete' | 'DELETE' + | 'head' | 'HEAD' + | 'options' | 'OPTIONS' + | 'post' | 'POST' + | 'put' | 'PUT' + | 'patch' | 'PATCH' + | 'purge' | 'PURGE' + | 'link' | 'LINK' + | 'unlink' | 'UNLINK'; + +export type ResponseType = + | 'arraybuffer' + | 'blob' + | 'document' + | 'json' + | 'text' + | 'stream'; + +export type responseEncoding = + | 'ascii' | 'ASCII' + | 'ansi' | 'ANSI' + | 'binary' | 'BINARY' + | 'base64' | 'BASE64' + | 'base64url' | 'BASE64URL' + | 'hex' | 'HEX' + | 'latin1' | 'LATIN1' + | 'ucs-2' | 'UCS-2' + | 'ucs2' | 'UCS2' + | 'utf-8' | 'UTF-8' + | 'utf8' | 'UTF8' + | 'utf16le' | 'UTF16LE'; + +export interface TransitionalOptions { + silentJSONParsing?: boolean; + forcedJSONParsing?: boolean; + clarifyTimeoutError?: boolean; +} + +export interface GenericAbortSignal { + aborted: boolean; + onabort: ((...args: any) => any) | null; + addEventListener: (...args: any) => any; + removeEventListener: (...args: any) => any; +} + +export interface FormDataVisitorHelpers { + defaultVisitor: SerializerVisitor; + convertValue: (value: any) => any; + isVisitable: (value: any) => boolean; +} + +export interface SerializerVisitor { + ( + this: GenericFormData, + value: any, + key: string | number, + path: null | Array, + helpers: FormDataVisitorHelpers + ): boolean; +} + +export interface SerializerOptions { + visitor?: SerializerVisitor; + dots?: boolean; + metaTokens?: boolean; + indexes?: boolean | null; +} + +// tslint:disable-next-line +export interface FormSerializerOptions extends SerializerOptions { +} + +export interface ParamEncoder { + (value: any, defaultEncoder: (value: any) => any): any; +} + +export interface ParamsSerializerOptions extends SerializerOptions { + encode?: ParamEncoder; +} + +type MaxUploadRate = number; + +type MaxDownloadRate = number; + +export interface AxiosProgressEvent { + loaded: number; + total?: number; + progress?: number; + bytes: number; + rate?: number; + estimated?: number; + upload?: boolean; + download?: boolean; +} + +type Milliseconds = number; + +export interface AxiosRequestConfig { + url?: string; + method?: Method | string; + baseURL?: string; + transformRequest?: AxiosRequestTransformer | AxiosRequestTransformer[]; + transformResponse?: AxiosResponseTransformer | AxiosResponseTransformer[]; + headers?: RawAxiosRequestHeaders; + params?: any; + paramsSerializer?: ParamsSerializerOptions; + data?: D; + timeout?: Milliseconds; + timeoutErrorMessage?: string; + withCredentials?: boolean; + adapter?: AxiosAdapter; + auth?: AxiosBasicCredentials; + responseType?: ResponseType; + responseEncoding?: responseEncoding | string; + xsrfCookieName?: string; + xsrfHeaderName?: string; + onUploadProgress?: (progressEvent: AxiosProgressEvent) => void; + onDownloadProgress?: (progressEvent: AxiosProgressEvent) => void; + maxContentLength?: number; + validateStatus?: ((status: number) => boolean) | null; + maxBodyLength?: number; + maxRedirects?: number; + maxRate?: number | [MaxUploadRate, MaxDownloadRate]; + beforeRedirect?: (options: Record, responseDetails: {headers: Record}) => void; + socketPath?: string | null; + httpAgent?: any; + httpsAgent?: any; + proxy?: AxiosProxyConfig | false; + cancelToken?: CancelToken; + decompress?: boolean; + transitional?: TransitionalOptions; + signal?: GenericAbortSignal; + insecureHTTPParser?: boolean; + env?: { + FormData?: new (...args: any[]) => object; + }; + formSerializer?: FormSerializerOptions; +} + +export interface HeadersDefaults { + common: RawAxiosRequestHeaders; + delete: RawAxiosRequestHeaders; + get: RawAxiosRequestHeaders; + head: RawAxiosRequestHeaders; + post: RawAxiosRequestHeaders; + put: RawAxiosRequestHeaders; + patch: RawAxiosRequestHeaders; + options?: RawAxiosRequestHeaders; + purge?: RawAxiosRequestHeaders; + link?: RawAxiosRequestHeaders; + unlink?: RawAxiosRequestHeaders; +} + +export interface AxiosDefaults extends Omit, 'headers'> { + headers: HeadersDefaults; +} + +export interface CreateAxiosDefaults extends Omit, 'headers'> { + headers?: RawAxiosRequestHeaders | Partial; +} + +export interface AxiosResponse { + data: T; + status: number; + statusText: string; + headers: RawAxiosResponseHeaders | AxiosResponseHeaders; + config: AxiosRequestConfig; + request?: any; +} + +export class AxiosError extends Error { + constructor( + message?: string, + code?: string, + config?: AxiosRequestConfig, + request?: any, + response?: AxiosResponse + ); + + config?: AxiosRequestConfig; + code?: string; + request?: any; + response?: AxiosResponse; + isAxiosError: boolean; + status?: number; + toJSON: () => object; + cause?: Error; + static readonly ERR_FR_TOO_MANY_REDIRECTS = "ERR_FR_TOO_MANY_REDIRECTS"; + static readonly ERR_BAD_OPTION_VALUE = "ERR_BAD_OPTION_VALUE"; + static readonly ERR_BAD_OPTION = "ERR_BAD_OPTION"; + static readonly ERR_NETWORK = "ERR_NETWORK"; + static readonly ERR_DEPRECATED = "ERR_DEPRECATED"; + static readonly ERR_BAD_RESPONSE = "ERR_BAD_RESPONSE"; + static readonly ERR_BAD_REQUEST = "ERR_BAD_REQUEST"; + static readonly ERR_NOT_SUPPORT = "ERR_NOT_SUPPORT"; + static readonly ERR_INVALID_URL = "ERR_INVALID_URL"; + static readonly ERR_CANCELED = "ERR_CANCELED"; + static readonly ECONNABORTED = "ECONNABORTED"; + static readonly ETIMEDOUT = "ETIMEDOUT"; +} + +export class CanceledError extends AxiosError { +} + +export type AxiosPromise = Promise>; + +export interface CancelStatic { + new (message?: string): Cancel; +} + +export interface Cancel { + message: string | undefined; +} + +export interface Canceler { + (message?: string, config?: AxiosRequestConfig, request?: any): void; +} + +export interface CancelTokenStatic { + new (executor: (cancel: Canceler) => void): CancelToken; + source(): CancelTokenSource; +} + +export interface CancelToken { + promise: Promise; + reason?: Cancel; + throwIfRequested(): void; +} + +export interface CancelTokenSource { + token: CancelToken; + cancel: Canceler; +} + +export interface AxiosInterceptorOptions { + synchronous?: boolean; + runWhen?: (config: AxiosRequestConfig) => boolean; +} + +export interface AxiosInterceptorManager { + use(onFulfilled?: (value: V) => V | Promise, onRejected?: (error: any) => any, options?: AxiosInterceptorOptions): number; + eject(id: number): void; +} + +export class Axios { + constructor(config?: AxiosRequestConfig); + defaults: AxiosDefaults; + interceptors: { + request: AxiosInterceptorManager; + response: AxiosInterceptorManager; + }; + getUri(config?: AxiosRequestConfig): string; + request, D = any>(config: AxiosRequestConfig): Promise; + get, D = any>(url: string, config?: AxiosRequestConfig): Promise; + delete, D = any>(url: string, config?: AxiosRequestConfig): Promise; + head, D = any>(url: string, config?: AxiosRequestConfig): Promise; + options, D = any>(url: string, config?: AxiosRequestConfig): Promise; + post, D = any>(url: string, data?: D, config?: AxiosRequestConfig): Promise; + put, D = any>(url: string, data?: D, config?: AxiosRequestConfig): Promise; + patch, D = any>(url: string, data?: D, config?: AxiosRequestConfig): Promise; + postForm, D = any>(url: string, data?: D, config?: AxiosRequestConfig): Promise; + putForm, D = any>(url: string, data?: D, config?: AxiosRequestConfig): Promise; + patchForm, D = any>(url: string, data?: D, config?: AxiosRequestConfig): Promise; +} + +export interface AxiosInstance extends Axios { + , D = any>(config: AxiosRequestConfig): Promise; + , D = any>(url: string, config?: AxiosRequestConfig): Promise; + + defaults: Omit & { + headers: HeadersDefaults & { + [key: string]: AxiosHeaderValue + } + }; +} + +export interface GenericFormData { + append(name: string, value: any, options?: any): any; +} + +export interface GenericHTMLFormElement { + name: string; + method: string; + submit(): void; +} + +export interface AxiosStatic extends AxiosInstance { + create(config?: CreateAxiosDefaults): AxiosInstance; + Cancel: CancelStatic; + CancelToken: CancelTokenStatic; + Axios: typeof Axios; + AxiosError: typeof AxiosError; + readonly VERSION: string; + isCancel(value: any): value is Cancel; + all(values: Array>): Promise; + spread(callback: (...args: T[]) => R): (array: T[]) => R; + isAxiosError(payload: any): payload is AxiosError; + toFormData(sourceObj: object, targetFormData?: GenericFormData, options?: FormSerializerOptions): GenericFormData; + formToJSON(form: GenericFormData|GenericHTMLFormElement): object; +} + +declare const axios: AxiosStatic; + +export default axios; diff --git a/node_modules/axios/index.js b/node_modules/axios/index.js new file mode 100644 index 000000000..93d32fca9 --- /dev/null +++ b/node_modules/axios/index.js @@ -0,0 +1,2 @@ +import axios from './lib/axios.js'; +export default axios; diff --git a/node_modules/axios/karma.conf.cjs b/node_modules/axios/karma.conf.cjs new file mode 100644 index 000000000..fca512f3d --- /dev/null +++ b/node_modules/axios/karma.conf.cjs @@ -0,0 +1,250 @@ +/* eslint-disable no-console */ +/* eslint-disable no-unused-vars */ +/* eslint-disable func-names */ +// Karma configuration +// Generated on Fri Aug 15 2014 23:11:13 GMT-0500 (CDT) + +'use strict'; + +var resolve = require('@rollup/plugin-node-resolve').default; +var commonjs = require('@rollup/plugin-commonjs'); + +function createCustomLauncher(browser, version, platform) { + return { + base: 'SauceLabs', + browserName: browser, + version: version, + platform: platform + }; +} + +module.exports = function(config) { + var customLaunchers = {}; + var browsers = process.env.Browsers && process.env.Browsers.split(','); + var sauceLabs; + + if (process.env.SAUCE_USERNAME || process.env.SAUCE_ACCESS_KEY) { + customLaunchers = {}; + + var runAll = true; + var options = [ + 'SAUCE_CHROME', + 'SAUCE_FIREFOX', + 'SAUCE_SAFARI', + 'SAUCE_OPERA', + 'SAUCE_IE', + 'SAUCE_EDGE', + 'SAUCE_IOS', + 'SAUCE_ANDROID' + ]; + + options.forEach(function(opt) { + if (process.env[opt]) { + runAll = false; + } + }); + + // Chrome + if (runAll || process.env.SAUCE_CHROME) { + customLaunchers.SL_Chrome = createCustomLauncher('chrome'); + // customLaunchers.SL_ChromeDev = createCustomLauncher('chrome', 'dev'); + // customLaunchers.SL_ChromeBeta = createCustomLauncher('chrome', 'beta'); + } + + // Firefox + if (runAll || process.env.SAUCE_FIREFOX) { + //customLaunchers.SL_Firefox = createCustomLauncher('firefox'); + // customLaunchers.SL_FirefoxDev = createCustomLauncher('firefox', 'dev'); + // customLaunchers.SL_FirefoxBeta = createCustomLauncher('firefox', 'beta'); + } + + // Safari + if (runAll || process.env.SAUCE_SAFARI) { + // customLaunchers.SL_Safari7 = createCustomLauncher('safari', 7); + // customLaunchers.SL_Safari8 = createCustomLauncher('safari', 8); + customLaunchers.SL_Safari9 = createCustomLauncher( + 'safari', + 9.0, + 'OS X 10.11' + ); + customLaunchers.SL_Safari10 = createCustomLauncher( + 'safari', + '10.1', + 'macOS 10.12' + ); + customLaunchers.SL_Safari11 = createCustomLauncher( + 'safari', + '11.1', + 'macOS 10.13' + ); + } + + // Opera + if (runAll || process.env.SAUCE_OPERA) { + // TODO The available versions of Opera are too old and lack basic APIs + // customLaunchers.SL_Opera11 = createCustomLauncher('opera', 11, 'Windows XP'); + // customLaunchers.SL_Opera12 = createCustomLauncher('opera', 12, 'Windows 7'); + } + + // IE + if (runAll || process.env.SAUCE_IE) { + customLaunchers.SL_IE11 = createCustomLauncher('internet explorer', 11, 'Windows 8.1'); + } + + // Edge + if (runAll || process.env.SAUCE_EDGE) { + customLaunchers.SL_Edge = createCustomLauncher('microsoftedge', null, 'Windows 10'); + } + + // IOS + if (runAll || process.env.SAUCE_IOS) { + // TODO IOS7 capture always timesout + // customLaunchers.SL_IOS7 = createCustomLauncher('iphone', '7.1', 'OS X 10.10'); + // TODO Mobile browsers are causing failures, possibly from too many concurrent VMs + // customLaunchers.SL_IOS8 = createCustomLauncher('iphone', '8.4', 'OS X 10.10'); + // customLaunchers.SL_IOS9 = createCustomLauncher('iphone', '9.2', 'OS X 10.10'); + } + + // Android + if (runAll || process.env.SAUCE_ANDROID) { + // TODO Mobile browsers are causing failures, possibly from too many concurrent VMs + // customLaunchers.SL_Android4 = createCustomLauncher('android', '4.4', 'Linux'); + // customLaunchers.SL_Android5 = createCustomLauncher('android', '5.1', 'Linux'); + } + + browsers = Object.keys(customLaunchers); + + sauceLabs = { + recordScreenshots: false, + connectOptions: { + // port: 5757, + logfile: 'sauce_connect.log' + }, + public: 'public' + }; + } else if (process.env.TRAVIS_PULL_REQUEST && process.env.TRAVIS_PULL_REQUEST !== 'false') { + console.log( + 'Cannot run on Sauce Labs as encrypted environment variables are not available to PRs. ' + + 'Running on Travis.' + ); + browsers = ['Firefox']; + } else if (process.env.GITHUB_ACTIONS === 'true') { + console.log('Running ci on Github Actions.'); + browsers = ['FirefoxHeadless', 'ChromeHeadless']; + } else { + browsers = browsers || ['Chrome']; + console.log(`Running ${browsers} locally since SAUCE_USERNAME and SAUCE_ACCESS_KEY environment variables are not set.`); + } + + config.set({ + // base path that will be used to resolve all patterns (eg. files, exclude) + basePath: '', + + + // frameworks to use + // available frameworks: https://npmjs.org/browse/keyword/karma-adapter + frameworks: ['jasmine-ajax', 'jasmine', 'sinon'], + + + // list of files / patterns to load in the browser + files: [ + {pattern: 'test/specs/__helpers.js', watched: false}, + {pattern: 'test/specs/**/*.spec.js', watched: false} + ], + + + // list of files to exclude + exclude: [], + + + // preprocess matching files before serving them to the browser + // available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor + preprocessors: { + 'test/specs/__helpers.js': ['rollup'], + 'test/specs/**/*.spec.js': ['rollup'] + }, + + rollupPreprocessor: { + plugins: [ + resolve({browser: true}), + commonjs() + ], + output: { + format: 'iife', + name: '_axios', + sourcemap: 'inline' + } + }, + + + // test results reporter to use + // possible values: 'dots', 'progress' + // available reporters: https://npmjs.org/browse/keyword/karma-reporter + // Disable code coverage, as it's breaking CI: + // reporters: ['dots', 'coverage', 'saucelabs'], + reporters: ['progress'], + + + // web server port + port: 9876, + + + // Increase timeouts to prevent the issue with disconnected tests (https://goo.gl/nstA69) + captureTimeout: 4 * 60 * 1000, + browserDisconnectTimeout: 10000, + browserDisconnectTolerance: 1, + browserNoActivityTimeout: 4 * 60 * 1000, + + + // enable / disable colors in the output (reporters and logs) + colors: true, + + + // level of logging + // possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG + logLevel: config.LOG_INFO, + + + // enable / disable watching file and executing tests whenever any file changes + autoWatch: false, + + + // start these browsers + // available browser launchers: https://npmjs.org/browse/keyword/karma-launcher + browsers: browsers, + + + // Continuous Integration mode + // if true, Karma captures browsers, runs the tests and exits + singleRun: false, + + // Webpack config + webpack: { + mode: 'development', + cache: true, + devtool: 'inline-source-map', + externals: [ + { + './adapters/http': 'var undefined' + } + ] + }, + + webpackServer: { + stats: { + colors: true + } + }, + + + // Coverage reporting + coverageReporter: { + type: 'lcov', + dir: 'coverage/', + subdir: '.' + }, + + sauceLabs: sauceLabs, + customLaunchers: customLaunchers + }); +}; diff --git a/node_modules/axios/lib/adapters/README.md b/node_modules/axios/lib/adapters/README.md new file mode 100644 index 000000000..68f111895 --- /dev/null +++ b/node_modules/axios/lib/adapters/README.md @@ -0,0 +1,37 @@ +# axios // adapters + +The modules under `adapters/` are modules that handle dispatching a request and settling a returned `Promise` once a response is received. + +## Example + +```js +var settle = require('./../core/settle'); + +module.exports = function myAdapter(config) { + // At this point: + // - config has been merged with defaults + // - request transformers have already run + // - request interceptors have already run + + // Make the request using config provided + // Upon response settle the Promise + + return new Promise(function(resolve, reject) { + + var response = { + data: responseData, + status: request.status, + statusText: request.statusText, + headers: responseHeaders, + config: config, + request: request + }; + + settle(resolve, reject, response); + + // From here: + // - response transformers will run + // - response interceptors will run + }); +} +``` diff --git a/node_modules/axios/lib/adapters/http.js b/node_modules/axios/lib/adapters/http.js new file mode 100644 index 000000000..b864afeb1 --- /dev/null +++ b/node_modules/axios/lib/adapters/http.js @@ -0,0 +1,583 @@ +'use strict'; + +import utils from './../utils.js'; +import settle from './../core/settle.js'; +import buildFullPath from '../core/buildFullPath.js'; +import buildURL from './../helpers/buildURL.js'; +import {getProxyForUrl} from 'proxy-from-env'; +import http from 'http'; +import https from 'https'; +import followRedirects from 'follow-redirects'; +import zlib from 'zlib'; +import {VERSION} from '../env/data.js'; +import transitionalDefaults from '../defaults/transitional.js'; +import AxiosError from '../core/AxiosError.js'; +import CanceledError from '../cancel/CanceledError.js'; +import platform from '../platform/index.js'; +import fromDataURI from '../helpers/fromDataURI.js'; +import stream from 'stream'; +import AxiosHeaders from '../core/AxiosHeaders.js'; +import AxiosTransformStream from '../helpers/AxiosTransformStream.js'; +import EventEmitter from 'events'; + +const isBrotliSupported = utils.isFunction(zlib.createBrotliDecompress); + +const {http: httpFollow, https: httpsFollow} = followRedirects; + +const isHttps = /https:?/; + +const supportedProtocols = platform.protocols.map(protocol => { + return protocol + ':'; +}); + +/** + * If the proxy or config beforeRedirects functions are defined, call them with the options + * object. + * + * @param {Object} options - The options object that was passed to the request. + * + * @returns {Object} + */ +function dispatchBeforeRedirect(options) { + if (options.beforeRedirects.proxy) { + options.beforeRedirects.proxy(options); + } + if (options.beforeRedirects.config) { + options.beforeRedirects.config(options); + } +} + +/** + * If the proxy or config afterRedirects functions are defined, call them with the options + * + * @param {http.ClientRequestArgs} options + * @param {AxiosProxyConfig} configProxy + * @param {string} location + * + * @returns {http.ClientRequestArgs} + */ +function setProxy(options, configProxy, location) { + let proxy = configProxy; + if (!proxy && proxy !== false) { + const proxyUrl = getProxyForUrl(location); + if (proxyUrl) { + proxy = new URL(proxyUrl); + } + } + if (proxy) { + // Basic proxy authorization + if (proxy.username) { + proxy.auth = (proxy.username || '') + ':' + (proxy.password || ''); + } + + if (proxy.auth) { + // Support proxy auth object form + if (proxy.auth.username || proxy.auth.password) { + proxy.auth = (proxy.auth.username || '') + ':' + (proxy.auth.password || ''); + } + const base64 = Buffer + .from(proxy.auth, 'utf8') + .toString('base64'); + options.headers['Proxy-Authorization'] = 'Basic ' + base64; + } + + options.headers.host = options.hostname + (options.port ? ':' + options.port : ''); + options.hostname = proxy.hostname; + // Replace 'host' since options is not a URL object + options.host = proxy.hostname; + options.port = proxy.port; + options.path = location; + if (proxy.protocol) { + options.protocol = proxy.protocol; + } + } + + options.beforeRedirects.proxy = function beforeRedirect(redirectOptions) { + // Configure proxy for redirected request, passing the original config proxy to apply + // the exact same logic as if the redirected request was performed by axios directly. + setProxy(redirectOptions, configProxy, redirectOptions.href); + }; +} + +/*eslint consistent-return:0*/ +export default function httpAdapter(config) { + return new Promise(function dispatchHttpRequest(resolvePromise, rejectPromise) { + let data = config.data; + const responseType = config.responseType; + const responseEncoding = config.responseEncoding; + const method = config.method.toUpperCase(); + let isFinished; + let isDone; + let rejected = false; + let req; + + // temporary internal emitter until the AxiosRequest class will be implemented + const emitter = new EventEmitter(); + + function onFinished() { + if (isFinished) return; + isFinished = true; + + if (config.cancelToken) { + config.cancelToken.unsubscribe(abort); + } + + if (config.signal) { + config.signal.removeEventListener('abort', abort); + } + + emitter.removeAllListeners(); + } + + function done(value, isRejected) { + if (isDone) return; + + isDone = true; + + if (isRejected) { + rejected = true; + onFinished(); + } + + isRejected ? rejectPromise(value) : resolvePromise(value); + } + + const resolve = function resolve(value) { + done(value); + }; + + const reject = function reject(value) { + done(value, true); + }; + + function abort(reason) { + emitter.emit('abort', !reason || reason.type ? new CanceledError(null, config, req) : reason); + } + + emitter.once('abort', reject); + + if (config.cancelToken || config.signal) { + config.cancelToken && config.cancelToken.subscribe(abort); + if (config.signal) { + config.signal.aborted ? abort() : config.signal.addEventListener('abort', abort); + } + } + + // Parse url + const fullPath = buildFullPath(config.baseURL, config.url); + const parsed = new URL(fullPath); + const protocol = parsed.protocol || supportedProtocols[0]; + + if (protocol === 'data:') { + let convertedData; + + if (method !== 'GET') { + return settle(resolve, reject, { + status: 405, + statusText: 'method not allowed', + headers: {}, + config + }); + } + + try { + convertedData = fromDataURI(config.url, responseType === 'blob', { + Blob: config.env && config.env.Blob + }); + } catch (err) { + throw AxiosError.from(err, AxiosError.ERR_BAD_REQUEST, config); + } + + if (responseType === 'text') { + convertedData = convertedData.toString(responseEncoding); + + if (!responseEncoding || responseEncoding === 'utf8') { + data = utils.stripBOM(convertedData); + } + } else if (responseType === 'stream') { + convertedData = stream.Readable.from(convertedData); + } + + return settle(resolve, reject, { + data: convertedData, + status: 200, + statusText: 'OK', + headers: {}, + config + }); + } + + if (supportedProtocols.indexOf(protocol) === -1) { + return reject(new AxiosError( + 'Unsupported protocol ' + protocol, + AxiosError.ERR_BAD_REQUEST, + config + )); + } + + const headers = AxiosHeaders.from(config.headers).normalize(); + + // Set User-Agent (required by some servers) + // See https://github.com/axios/axios/issues/69 + // User-Agent is specified; handle case where no UA header is desired + // Only set header if it hasn't been set in config + headers.set('User-Agent', 'axios/' + VERSION, false); + + const onDownloadProgress = config.onDownloadProgress; + const onUploadProgress = config.onUploadProgress; + const maxRate = config.maxRate; + let maxUploadRate = undefined; + let maxDownloadRate = undefined; + + // support for https://www.npmjs.com/package/form-data api + if (utils.isFormData(data) && utils.isFunction(data.getHeaders)) { + headers.set(data.getHeaders()); + } else if (data && !utils.isStream(data)) { + if (Buffer.isBuffer(data)) { + // Nothing to do... + } else if (utils.isArrayBuffer(data)) { + data = Buffer.from(new Uint8Array(data)); + } else if (utils.isString(data)) { + data = Buffer.from(data, 'utf-8'); + } else { + return reject(new AxiosError( + 'Data after transformation must be a string, an ArrayBuffer, a Buffer, or a Stream', + AxiosError.ERR_BAD_REQUEST, + config + )); + } + + // Add Content-Length header if data exists + headers.set('Content-Length', data.length, false); + + if (config.maxBodyLength > -1 && data.length > config.maxBodyLength) { + return reject(new AxiosError( + 'Request body larger than maxBodyLength limit', + AxiosError.ERR_BAD_REQUEST, + config + )); + } + } + + const contentLength = +headers.getContentLength(); + + if (utils.isArray(maxRate)) { + maxUploadRate = maxRate[0]; + maxDownloadRate = maxRate[1]; + } else { + maxUploadRate = maxDownloadRate = maxRate; + } + + if (data && (onUploadProgress || maxUploadRate)) { + if (!utils.isStream(data)) { + data = stream.Readable.from(data, {objectMode: false}); + } + + data = stream.pipeline([data, new AxiosTransformStream({ + length: utils.toFiniteNumber(contentLength), + maxRate: utils.toFiniteNumber(maxUploadRate) + })], utils.noop); + + onUploadProgress && data.on('progress', progress => { + onUploadProgress(Object.assign(progress, { + upload: true + })); + }); + } + + // HTTP basic authentication + let auth = undefined; + if (config.auth) { + const username = config.auth.username || ''; + const password = config.auth.password || ''; + auth = username + ':' + password; + } + + if (!auth && parsed.username) { + const urlUsername = parsed.username; + const urlPassword = parsed.password; + auth = urlUsername + ':' + urlPassword; + } + + auth && headers.delete('authorization'); + + const path = parsed.pathname.concat(parsed.searchParams); + try { + buildURL(path, config.params, config.paramsSerializer).replace(/^\?/, ''); + } catch (err) { + const customErr = new Error(err.message); + customErr.config = config; + customErr.url = config.url; + customErr.exists = true; + return reject(customErr); + } + + headers.set('Accept-Encoding', 'gzip, deflate, br', false); + + const options = { + path: buildURL(path, config.params, config.paramsSerializer).replace(/^\?/, ''), + method: method, + headers: headers.toJSON(), + agents: { http: config.httpAgent, https: config.httpsAgent }, + auth, + protocol, + beforeRedirect: dispatchBeforeRedirect, + beforeRedirects: {} + }; + + if (config.socketPath) { + options.socketPath = config.socketPath; + } else { + options.hostname = parsed.hostname; + options.port = parsed.port; + setProxy(options, config.proxy, protocol + '//' + parsed.hostname + (parsed.port ? ':' + parsed.port : '') + options.path); + } + + let transport; + const isHttpsRequest = isHttps.test(options.protocol); + options.agent = isHttpsRequest ? config.httpsAgent : config.httpAgent; + if (config.transport) { + transport = config.transport; + } else if (config.maxRedirects === 0) { + transport = isHttpsRequest ? https : http; + } else { + if (config.maxRedirects) { + options.maxRedirects = config.maxRedirects; + } + if (config.beforeRedirect) { + options.beforeRedirects.config = config.beforeRedirect; + } + transport = isHttpsRequest ? httpsFollow : httpFollow; + } + + if (config.maxBodyLength > -1) { + options.maxBodyLength = config.maxBodyLength; + } else { + // follow-redirects does not skip comparison, so it should always succeed for axios -1 unlimited + options.maxBodyLength = Infinity; + } + + if (config.insecureHTTPParser) { + options.insecureHTTPParser = config.insecureHTTPParser; + } + + // Create the request + req = transport.request(options, function handleResponse(res) { + if (req.destroyed) return; + + const streams = [res]; + + // uncompress the response body transparently if required + let responseStream = res; + + // return the last request in case of redirects + const lastRequest = res.req || req; + + // if decompress disabled we should not decompress + if (config.decompress !== false) { + // if no content, but headers still say that it is encoded, + // remove the header not confuse downstream operations + if (data && data.length === 0 && res.headers['content-encoding']) { + delete res.headers['content-encoding']; + } + + switch (res.headers['content-encoding']) { + /*eslint default-case:0*/ + case 'gzip': + case 'compress': + case 'deflate': + // add the unzipper to the body stream processing pipeline + streams.push(zlib.createUnzip()); + + // remove the content-encoding in order to not confuse downstream operations + delete res.headers['content-encoding']; + break; + case 'br': + if (isBrotliSupported) { + streams.push(zlib.createBrotliDecompress()); + delete res.headers['content-encoding']; + } + } + } + + if (onDownloadProgress) { + const responseLength = +res.headers['content-length']; + + const transformStream = new AxiosTransformStream({ + length: utils.toFiniteNumber(responseLength), + maxRate: utils.toFiniteNumber(maxDownloadRate) + }); + + onDownloadProgress && transformStream.on('progress', progress => { + onDownloadProgress(Object.assign(progress, { + download: true + })); + }); + + streams.push(transformStream); + } + + responseStream = streams.length > 1 ? stream.pipeline(streams, utils.noop) : streams[0]; + + const offListeners = stream.finished(responseStream, () => { + offListeners(); + onFinished(); + }); + + const response = { + status: res.statusCode, + statusText: res.statusMessage, + headers: new AxiosHeaders(res.headers), + config, + request: lastRequest + }; + + if (responseType === 'stream') { + response.data = responseStream; + settle(resolve, reject, response); + } else { + const responseBuffer = []; + let totalResponseBytes = 0; + + responseStream.on('data', function handleStreamData(chunk) { + responseBuffer.push(chunk); + totalResponseBytes += chunk.length; + + // make sure the content length is not over the maxContentLength if specified + if (config.maxContentLength > -1 && totalResponseBytes > config.maxContentLength) { + // stream.destroy() emit aborted event before calling reject() on Node.js v16 + rejected = true; + responseStream.destroy(); + reject(new AxiosError('maxContentLength size of ' + config.maxContentLength + ' exceeded', + AxiosError.ERR_BAD_RESPONSE, config, lastRequest)); + } + }); + + responseStream.on('aborted', function handlerStreamAborted() { + if (rejected) { + return; + } + + const err = new AxiosError( + 'maxContentLength size of ' + config.maxContentLength + ' exceeded', + AxiosError.ERR_BAD_RESPONSE, + config, + lastRequest + ); + responseStream.destroy(err); + reject(err); + }); + + responseStream.on('error', function handleStreamError(err) { + if (req.destroyed) return; + reject(AxiosError.from(err, null, config, lastRequest)); + }); + + responseStream.on('end', function handleStreamEnd() { + try { + let responseData = responseBuffer.length === 1 ? responseBuffer[0] : Buffer.concat(responseBuffer); + if (responseType !== 'arraybuffer') { + responseData = responseData.toString(responseEncoding); + if (!responseEncoding || responseEncoding === 'utf8') { + responseData = utils.stripBOM(responseData); + } + } + response.data = responseData; + } catch (err) { + reject(AxiosError.from(err, null, config, response.request, response)); + } + settle(resolve, reject, response); + }); + } + + emitter.once('abort', err => { + if (!responseStream.destroyed) { + responseStream.emit('error', err); + responseStream.destroy(); + } + }); + }); + + emitter.once('abort', err => { + reject(err); + req.destroy(err); + }); + + // Handle errors + req.on('error', function handleRequestError(err) { + // @todo remove + // if (req.aborted && err.code !== AxiosError.ERR_FR_TOO_MANY_REDIRECTS) return; + reject(AxiosError.from(err, null, config, req)); + }); + + // set tcp keep alive to prevent drop connection by peer + req.on('socket', function handleRequestSocket(socket) { + // default interval of sending ack packet is 1 minute + socket.setKeepAlive(true, 1000 * 60); + }); + + // Handle request timeout + if (config.timeout) { + // This is forcing a int timeout to avoid problems if the `req` interface doesn't handle other types. + const timeout = parseInt(config.timeout, 10); + + if (isNaN(timeout)) { + reject(new AxiosError( + 'error trying to parse `config.timeout` to int', + AxiosError.ERR_BAD_OPTION_VALUE, + config, + req + )); + + return; + } + + // Sometime, the response will be very slow, and does not respond, the connect event will be block by event loop system. + // And timer callback will be fired, and abort() will be invoked before connection, then get "socket hang up" and code ECONNRESET. + // At this time, if we have a large number of request, nodejs will hang up some socket on background. and the number will up and up. + // And then these socket which be hang up will devouring CPU little by little. + // ClientRequest.setTimeout will be fired on the specify milliseconds, and can make sure that abort() will be fired after connect. + req.setTimeout(timeout, function handleRequestTimeout() { + if (isDone) return; + let timeoutErrorMessage = config.timeout ? 'timeout of ' + config.timeout + 'ms exceeded' : 'timeout exceeded'; + const transitional = config.transitional || transitionalDefaults; + if (config.timeoutErrorMessage) { + timeoutErrorMessage = config.timeoutErrorMessage; + } + reject(new AxiosError( + timeoutErrorMessage, + transitional.clarifyTimeoutError ? AxiosError.ETIMEDOUT : AxiosError.ECONNABORTED, + config, + req + )); + abort(); + }); + } + + + // Send the request + if (utils.isStream(data)) { + let ended = false; + let errored = false; + + data.on('end', () => { + ended = true; + }); + + data.once('error', err => { + errored = true; + req.destroy(err); + }); + + data.on('close', () => { + if (!ended && !errored) { + abort(new CanceledError('Request stream has been aborted', config, req)); + } + }); + + data.pipe(req); + } else { + req.end(data); + } + }); +} diff --git a/node_modules/axios/lib/adapters/index.js b/node_modules/axios/lib/adapters/index.js new file mode 100644 index 000000000..02ab12664 --- /dev/null +++ b/node_modules/axios/lib/adapters/index.js @@ -0,0 +1,33 @@ +import utils from '../utils.js'; +import httpAdapter from './http.js'; +import xhrAdapter from './xhr.js'; + +const adapters = { + http: httpAdapter, + xhr: xhrAdapter +} + +export default { + getAdapter: (nameOrAdapter) => { + if(utils.isString(nameOrAdapter)){ + const adapter = adapters[nameOrAdapter]; + + if (!nameOrAdapter) { + throw Error( + utils.hasOwnProp(nameOrAdapter) ? + `Adapter '${nameOrAdapter}' is not available in the build` : + `Can not resolve adapter '${nameOrAdapter}'` + ); + } + + return adapter + } + + if (!utils.isFunction(nameOrAdapter)) { + throw new TypeError('adapter is not a function'); + } + + return nameOrAdapter; + }, + adapters +} diff --git a/node_modules/axios/lib/adapters/xhr.js b/node_modules/axios/lib/adapters/xhr.js new file mode 100644 index 000000000..e0233f5e0 --- /dev/null +++ b/node_modules/axios/lib/adapters/xhr.js @@ -0,0 +1,246 @@ +'use strict'; + +import utils from './../utils.js'; +import settle from './../core/settle.js'; +import cookies from './../helpers/cookies.js'; +import buildURL from './../helpers/buildURL.js'; +import buildFullPath from '../core/buildFullPath.js'; +import isURLSameOrigin from './../helpers/isURLSameOrigin.js'; +import transitionalDefaults from '../defaults/transitional.js'; +import AxiosError from '../core/AxiosError.js'; +import CanceledError from '../cancel/CanceledError.js'; +import parseProtocol from '../helpers/parseProtocol.js'; +import platform from '../platform/index.js'; +import AxiosHeaders from '../core/AxiosHeaders.js'; +import speedometer from '../helpers/speedometer.js'; + +function progressEventReducer(listener, isDownloadStream) { + let bytesNotified = 0; + const _speedometer = speedometer(50, 250); + + return e => { + const loaded = e.loaded; + const total = e.lengthComputable ? e.total : undefined; + const progressBytes = loaded - bytesNotified; + const rate = _speedometer(progressBytes); + const inRange = loaded <= total; + + bytesNotified = loaded; + + const data = { + loaded, + total, + progress: total ? (loaded / total) : undefined, + bytes: progressBytes, + rate: rate ? rate : undefined, + estimated: rate && total && inRange ? (total - loaded) / rate : undefined + }; + + data[isDownloadStream ? 'download' : 'upload'] = true; + + listener(data); + }; +} + +export default function xhrAdapter(config) { + return new Promise(function dispatchXhrRequest(resolve, reject) { + let requestData = config.data; + const requestHeaders = AxiosHeaders.from(config.headers).normalize(); + const responseType = config.responseType; + let onCanceled; + function done() { + if (config.cancelToken) { + config.cancelToken.unsubscribe(onCanceled); + } + + if (config.signal) { + config.signal.removeEventListener('abort', onCanceled); + } + } + + if (utils.isFormData(requestData) && platform.isStandardBrowserEnv) { + requestHeaders.setContentType(false); // Let the browser set it + } + + let request = new XMLHttpRequest(); + + // HTTP basic authentication + if (config.auth) { + const username = config.auth.username || ''; + const password = config.auth.password ? unescape(encodeURIComponent(config.auth.password)) : ''; + requestHeaders.set('Authorization', 'Basic ' + btoa(username + ':' + password)); + } + + const fullPath = buildFullPath(config.baseURL, config.url); + + request.open(config.method.toUpperCase(), buildURL(fullPath, config.params, config.paramsSerializer), true); + + // Set the request timeout in MS + request.timeout = config.timeout; + + function onloadend() { + if (!request) { + return; + } + // Prepare the response + const responseHeaders = AxiosHeaders.from( + 'getAllResponseHeaders' in request && request.getAllResponseHeaders() + ); + const responseData = !responseType || responseType === 'text' || responseType === 'json' ? + request.responseText : request.response; + const response = { + data: responseData, + status: request.status, + statusText: request.statusText, + headers: responseHeaders, + config, + request + }; + + settle(function _resolve(value) { + resolve(value); + done(); + }, function _reject(err) { + reject(err); + done(); + }, response); + + // Clean up request + request = null; + } + + if ('onloadend' in request) { + // Use onloadend if available + request.onloadend = onloadend; + } else { + // Listen for ready state to emulate onloadend + request.onreadystatechange = function handleLoad() { + if (!request || request.readyState !== 4) { + return; + } + + // The request errored out and we didn't get a response, this will be + // handled by onerror instead + // With one exception: request that using file: protocol, most browsers + // will return status as 0 even though it's a successful request + if (request.status === 0 && !(request.responseURL && request.responseURL.indexOf('file:') === 0)) { + return; + } + // readystate handler is calling before onerror or ontimeout handlers, + // so we should call onloadend on the next 'tick' + setTimeout(onloadend); + }; + } + + // Handle browser request cancellation (as opposed to a manual cancellation) + request.onabort = function handleAbort() { + if (!request) { + return; + } + + reject(new AxiosError('Request aborted', AxiosError.ECONNABORTED, config, request)); + + // Clean up request + request = null; + }; + + // Handle low level network errors + request.onerror = function handleError() { + // Real errors are hidden from us by the browser + // onerror should only fire if it's a network error + reject(new AxiosError('Network Error', AxiosError.ERR_NETWORK, config, request)); + + // Clean up request + request = null; + }; + + // Handle timeout + request.ontimeout = function handleTimeout() { + let timeoutErrorMessage = config.timeout ? 'timeout of ' + config.timeout + 'ms exceeded' : 'timeout exceeded'; + const transitional = config.transitional || transitionalDefaults; + if (config.timeoutErrorMessage) { + timeoutErrorMessage = config.timeoutErrorMessage; + } + reject(new AxiosError( + timeoutErrorMessage, + transitional.clarifyTimeoutError ? AxiosError.ETIMEDOUT : AxiosError.ECONNABORTED, + config, + request)); + + // Clean up request + request = null; + }; + + // Add xsrf header + // This is only done if running in a standard browser environment. + // Specifically not if we're in a web worker, or react-native. + if (platform.isStandardBrowserEnv) { + // Add xsrf header + const xsrfValue = (config.withCredentials || isURLSameOrigin(fullPath)) + && config.xsrfCookieName && cookies.read(config.xsrfCookieName); + + if (xsrfValue) { + requestHeaders.set(config.xsrfHeaderName, xsrfValue); + } + } + + // Remove Content-Type if data is undefined + requestData === undefined && requestHeaders.setContentType(null); + + // Add headers to the request + if ('setRequestHeader' in request) { + utils.forEach(requestHeaders.toJSON(), function setRequestHeader(val, key) { + request.setRequestHeader(key, val); + }); + } + + // Add withCredentials to request if needed + if (!utils.isUndefined(config.withCredentials)) { + request.withCredentials = !!config.withCredentials; + } + + // Add responseType to request if needed + if (responseType && responseType !== 'json') { + request.responseType = config.responseType; + } + + // Handle progress if needed + if (typeof config.onDownloadProgress === 'function') { + request.addEventListener('progress', progressEventReducer(config.onDownloadProgress, true)); + } + + // Not all browsers support upload events + if (typeof config.onUploadProgress === 'function' && request.upload) { + request.upload.addEventListener('progress', progressEventReducer(config.onUploadProgress)); + } + + if (config.cancelToken || config.signal) { + // Handle cancellation + // eslint-disable-next-line func-names + onCanceled = cancel => { + if (!request) { + return; + } + reject(!cancel || cancel.type ? new CanceledError(null, config, request) : cancel); + request.abort(); + request = null; + }; + + config.cancelToken && config.cancelToken.subscribe(onCanceled); + if (config.signal) { + config.signal.aborted ? onCanceled() : config.signal.addEventListener('abort', onCanceled); + } + } + + const protocol = parseProtocol(fullPath); + + if (protocol && platform.protocols.indexOf(protocol) === -1) { + reject(new AxiosError('Unsupported protocol ' + protocol + ':', AxiosError.ERR_BAD_REQUEST, config)); + return; + } + + + // Send the request + request.send(requestData || null); + }); +} diff --git a/node_modules/axios/lib/axios.js b/node_modules/axios/lib/axios.js new file mode 100644 index 000000000..cae031176 --- /dev/null +++ b/node_modules/axios/lib/axios.js @@ -0,0 +1,76 @@ +'use strict'; + +import utils from './utils.js'; +import bind from './helpers/bind.js'; +import Axios from './core/Axios.js'; +import mergeConfig from './core/mergeConfig.js'; +import defaults from './defaults/index.js'; +import formDataToJSON from './helpers/formDataToJSON.js'; +import CanceledError from './cancel/CanceledError.js'; +import CancelToken from'./cancel/CancelToken.js'; +import isCancel from'./cancel/isCancel.js'; +import {VERSION} from './env/data.js'; +import toFormData from './helpers/toFormData.js'; +import AxiosError from './core/AxiosError.js'; +import spread from './helpers/spread.js'; +import isAxiosError from './helpers/isAxiosError.js'; + +/** + * Create an instance of Axios + * + * @param {Object} defaultConfig The default config for the instance + * + * @returns {Axios} A new instance of Axios + */ +function createInstance(defaultConfig) { + const context = new Axios(defaultConfig); + const instance = bind(Axios.prototype.request, context); + + // Copy axios.prototype to instance + utils.extend(instance, Axios.prototype, context, {allOwnKeys: true}); + + // Copy context to instance + utils.extend(instance, context, null, {allOwnKeys: true}); + + // Factory for creating new instances + instance.create = function create(instanceConfig) { + return createInstance(mergeConfig(defaultConfig, instanceConfig)); + }; + + return instance; +} + +// Create the default instance to be exported +const axios = createInstance(defaults); + +// Expose Axios class to allow class inheritance +axios.Axios = Axios; + +// Expose Cancel & CancelToken +axios.CanceledError = CanceledError; +axios.CancelToken = CancelToken; +axios.isCancel = isCancel; +axios.VERSION = VERSION; +axios.toFormData = toFormData; + +// Expose AxiosError class +axios.AxiosError = AxiosError; + +// alias for CanceledError for backward compatibility +axios.Cancel = axios.CanceledError; + +// Expose all/spread +axios.all = function all(promises) { + return Promise.all(promises); +}; + +axios.spread = spread; + +// Expose isAxiosError +axios.isAxiosError = isAxiosError; + +axios.formToJSON = thing => { + return formDataToJSON(utils.isHTMLForm(thing) ? new FormData(thing) : thing); +}; + +export default axios; diff --git a/node_modules/axios/lib/cancel/CancelToken.js b/node_modules/axios/lib/cancel/CancelToken.js new file mode 100644 index 000000000..20d8f68a2 --- /dev/null +++ b/node_modules/axios/lib/cancel/CancelToken.js @@ -0,0 +1,121 @@ +'use strict'; + +import CanceledError from './CanceledError.js'; + +/** + * A `CancelToken` is an object that can be used to request cancellation of an operation. + * + * @param {Function} executor The executor function. + * + * @returns {CancelToken} + */ +class CancelToken { + constructor(executor) { + if (typeof executor !== 'function') { + throw new TypeError('executor must be a function.'); + } + + let resolvePromise; + + this.promise = new Promise(function promiseExecutor(resolve) { + resolvePromise = resolve; + }); + + const token = this; + + // eslint-disable-next-line func-names + this.promise.then(cancel => { + if (!token._listeners) return; + + let i = token._listeners.length; + + while (i-- > 0) { + token._listeners[i](cancel); + } + token._listeners = null; + }); + + // eslint-disable-next-line func-names + this.promise.then = onfulfilled => { + let _resolve; + // eslint-disable-next-line func-names + const promise = new Promise(resolve => { + token.subscribe(resolve); + _resolve = resolve; + }).then(onfulfilled); + + promise.cancel = function reject() { + token.unsubscribe(_resolve); + }; + + return promise; + }; + + executor(function cancel(message, config, request) { + if (token.reason) { + // Cancellation has already been requested + return; + } + + token.reason = new CanceledError(message, config, request); + resolvePromise(token.reason); + }); + } + + /** + * Throws a `CanceledError` if cancellation has been requested. + */ + throwIfRequested() { + if (this.reason) { + throw this.reason; + } + } + + /** + * Subscribe to the cancel signal + */ + + subscribe(listener) { + if (this.reason) { + listener(this.reason); + return; + } + + if (this._listeners) { + this._listeners.push(listener); + } else { + this._listeners = [listener]; + } + } + + /** + * Unsubscribe from the cancel signal + */ + + unsubscribe(listener) { + if (!this._listeners) { + return; + } + const index = this._listeners.indexOf(listener); + if (index !== -1) { + this._listeners.splice(index, 1); + } + } + + /** + * Returns an object that contains a new `CancelToken` and a function that, when called, + * cancels the `CancelToken`. + */ + static source() { + let cancel; + const token = new CancelToken(function executor(c) { + cancel = c; + }); + return { + token, + cancel + }; + } +} + +export default CancelToken; diff --git a/node_modules/axios/lib/cancel/CanceledError.js b/node_modules/axios/lib/cancel/CanceledError.js new file mode 100644 index 000000000..880066edf --- /dev/null +++ b/node_modules/axios/lib/cancel/CanceledError.js @@ -0,0 +1,25 @@ +'use strict'; + +import AxiosError from '../core/AxiosError.js'; +import utils from '../utils.js'; + +/** + * A `CanceledError` is an object that is thrown when an operation is canceled. + * + * @param {string=} message The message. + * @param {Object=} config The config. + * @param {Object=} request The request. + * + * @returns {CanceledError} The created error. + */ +function CanceledError(message, config, request) { + // eslint-disable-next-line no-eq-null,eqeqeq + AxiosError.call(this, message == null ? 'canceled' : message, AxiosError.ERR_CANCELED, config, request); + this.name = 'CanceledError'; +} + +utils.inherits(CanceledError, AxiosError, { + __CANCEL__: true +}); + +export default CanceledError; diff --git a/node_modules/axios/lib/cancel/isCancel.js b/node_modules/axios/lib/cancel/isCancel.js new file mode 100644 index 000000000..a444a129d --- /dev/null +++ b/node_modules/axios/lib/cancel/isCancel.js @@ -0,0 +1,5 @@ +'use strict'; + +export default function isCancel(value) { + return !!(value && value.__CANCEL__); +} diff --git a/node_modules/axios/lib/core/Axios.js b/node_modules/axios/lib/core/Axios.js new file mode 100644 index 000000000..a7cf75c95 --- /dev/null +++ b/node_modules/axios/lib/core/Axios.js @@ -0,0 +1,188 @@ +'use strict'; + +import utils from './../utils.js'; +import buildURL from '../helpers/buildURL.js'; +import InterceptorManager from './InterceptorManager.js'; +import dispatchRequest from './dispatchRequest.js'; +import mergeConfig from './mergeConfig.js'; +import buildFullPath from './buildFullPath.js'; +import validator from '../helpers/validator.js'; +import AxiosHeaders from './AxiosHeaders.js'; + +const validators = validator.validators; + +/** + * Create a new instance of Axios + * + * @param {Object} instanceConfig The default config for the instance + * + * @return {Axios} A new instance of Axios + */ +class Axios { + constructor(instanceConfig) { + this.defaults = instanceConfig; + this.interceptors = { + request: new InterceptorManager(), + response: new InterceptorManager() + }; + } + + /** + * Dispatch a request + * + * @param {String|Object} configOrUrl The config specific for this request (merged with this.defaults) + * @param {?Object} config + * + * @returns {Promise} The Promise to be fulfilled + */ + request(configOrUrl, config) { + /*eslint no-param-reassign:0*/ + // Allow for axios('example/url'[, config]) a la fetch API + if (typeof configOrUrl === 'string') { + config = config || {}; + config.url = configOrUrl; + } else { + config = configOrUrl || {}; + } + + config = mergeConfig(this.defaults, config); + + const transitional = config.transitional; + + if (transitional !== undefined) { + validator.assertOptions(transitional, { + silentJSONParsing: validators.transitional(validators.boolean), + forcedJSONParsing: validators.transitional(validators.boolean), + clarifyTimeoutError: validators.transitional(validators.boolean) + }, false); + } + + // Set config.method + config.method = (config.method || this.defaults.method || 'get').toLowerCase(); + + // Flatten headers + const defaultHeaders = config.headers && utils.merge( + config.headers.common, + config.headers[config.method] + ); + + defaultHeaders && utils.forEach( + ['delete', 'get', 'head', 'post', 'put', 'patch', 'common'], + function cleanHeaderConfig(method) { + delete config.headers[method]; + } + ); + + config.headers = new AxiosHeaders(config.headers, defaultHeaders); + + // filter out skipped interceptors + const requestInterceptorChain = []; + let synchronousRequestInterceptors = true; + this.interceptors.request.forEach(function unshiftRequestInterceptors(interceptor) { + if (typeof interceptor.runWhen === 'function' && interceptor.runWhen(config) === false) { + return; + } + + synchronousRequestInterceptors = synchronousRequestInterceptors && interceptor.synchronous; + + requestInterceptorChain.unshift(interceptor.fulfilled, interceptor.rejected); + }); + + const responseInterceptorChain = []; + this.interceptors.response.forEach(function pushResponseInterceptors(interceptor) { + responseInterceptorChain.push(interceptor.fulfilled, interceptor.rejected); + }); + + let promise; + let i = 0; + let len; + + if (!synchronousRequestInterceptors) { + const chain = [dispatchRequest.bind(this), undefined]; + chain.unshift.apply(chain, requestInterceptorChain); + chain.push.apply(chain, responseInterceptorChain); + len = chain.length; + + promise = Promise.resolve(config); + + while (i < len) { + promise = promise.then(chain[i++], chain[i++]); + } + + return promise; + } + + len = requestInterceptorChain.length; + + let newConfig = config; + + i = 0; + + while (i < len) { + const onFulfilled = requestInterceptorChain[i++]; + const onRejected = requestInterceptorChain[i++]; + try { + newConfig = onFulfilled(newConfig); + } catch (error) { + onRejected.call(this, error); + break; + } + } + + try { + promise = dispatchRequest.call(this, newConfig); + } catch (error) { + return Promise.reject(error); + } + + i = 0; + len = responseInterceptorChain.length; + + while (i < len) { + promise = promise.then(responseInterceptorChain[i++], responseInterceptorChain[i++]); + } + + return promise; + } + + getUri(config) { + config = mergeConfig(this.defaults, config); + const fullPath = buildFullPath(config.baseURL, config.url); + return buildURL(fullPath, config.params, config.paramsSerializer); + } +} + +// Provide aliases for supported request methods +utils.forEach(['delete', 'get', 'head', 'options'], function forEachMethodNoData(method) { + /*eslint func-names:0*/ + Axios.prototype[method] = function(url, config) { + return this.request(mergeConfig(config || {}, { + method, + url, + data: (config || {}).data + })); + }; +}); + +utils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) { + /*eslint func-names:0*/ + + function generateHTTPMethod(isForm) { + return function httpMethod(url, data, config) { + return this.request(mergeConfig(config || {}, { + method, + headers: isForm ? { + 'Content-Type': 'multipart/form-data' + } : {}, + url, + data + })); + }; + } + + Axios.prototype[method] = generateHTTPMethod(); + + Axios.prototype[method + 'Form'] = generateHTTPMethod(true); +}); + +export default Axios; diff --git a/node_modules/axios/lib/core/AxiosError.js b/node_modules/axios/lib/core/AxiosError.js new file mode 100644 index 000000000..1539e9acb --- /dev/null +++ b/node_modules/axios/lib/core/AxiosError.js @@ -0,0 +1,100 @@ +'use strict'; + +import utils from '../utils.js'; + +/** + * Create an Error with the specified message, config, error code, request and response. + * + * @param {string} message The error message. + * @param {string} [code] The error code (for example, 'ECONNABORTED'). + * @param {Object} [config] The config. + * @param {Object} [request] The request. + * @param {Object} [response] The response. + * + * @returns {Error} The created error. + */ +function AxiosError(message, code, config, request, response) { + Error.call(this); + + if (Error.captureStackTrace) { + Error.captureStackTrace(this, this.constructor); + } else { + this.stack = (new Error()).stack; + } + + this.message = message; + this.name = 'AxiosError'; + code && (this.code = code); + config && (this.config = config); + request && (this.request = request); + response && (this.response = response); +} + +utils.inherits(AxiosError, Error, { + toJSON: function toJSON() { + return { + // Standard + message: this.message, + name: this.name, + // Microsoft + description: this.description, + number: this.number, + // Mozilla + fileName: this.fileName, + lineNumber: this.lineNumber, + columnNumber: this.columnNumber, + stack: this.stack, + // Axios + config: this.config, + code: this.code, + status: this.response && this.response.status ? this.response.status : null + }; + } +}); + +const prototype = AxiosError.prototype; +const descriptors = {}; + +[ + 'ERR_BAD_OPTION_VALUE', + 'ERR_BAD_OPTION', + 'ECONNABORTED', + 'ETIMEDOUT', + 'ERR_NETWORK', + 'ERR_FR_TOO_MANY_REDIRECTS', + 'ERR_DEPRECATED', + 'ERR_BAD_RESPONSE', + 'ERR_BAD_REQUEST', + 'ERR_CANCELED', + 'ERR_NOT_SUPPORT', + 'ERR_INVALID_URL' +// eslint-disable-next-line func-names +].forEach(code => { + descriptors[code] = {value: code}; +}); + +Object.defineProperties(AxiosError, descriptors); +Object.defineProperty(prototype, 'isAxiosError', {value: true}); + +// eslint-disable-next-line func-names +AxiosError.from = (error, code, config, request, response, customProps) => { + const axiosError = Object.create(prototype); + + utils.toFlatObject(error, axiosError, function filter(obj) { + return obj !== Error.prototype; + }, prop => { + return prop !== 'isAxiosError'; + }); + + AxiosError.call(axiosError, error.message, code, config, request, response); + + axiosError.cause = error; + + axiosError.name = error.name; + + customProps && Object.assign(axiosError, customProps); + + return axiosError; +}; + +export default AxiosError; diff --git a/node_modules/axios/lib/core/AxiosHeaders.js b/node_modules/axios/lib/core/AxiosHeaders.js new file mode 100644 index 000000000..9d5653860 --- /dev/null +++ b/node_modules/axios/lib/core/AxiosHeaders.js @@ -0,0 +1,274 @@ +'use strict'; + +import utils from '../utils.js'; +import parseHeaders from '../helpers/parseHeaders.js'; + +const $internals = Symbol('internals'); +const $defaults = Symbol('defaults'); + +function normalizeHeader(header) { + return header && String(header).trim().toLowerCase(); +} + +function normalizeValue(value) { + if (value === false || value == null) { + return value; + } + + return String(value); +} + +function parseTokens(str) { + const tokens = Object.create(null); + const tokensRE = /([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g; + let match; + + while ((match = tokensRE.exec(str))) { + tokens[match[1]] = match[2]; + } + + return tokens; +} + +function matchHeaderValue(context, value, header, filter) { + if (utils.isFunction(filter)) { + return filter.call(this, value, header); + } + + if (!utils.isString(value)) return; + + if (utils.isString(filter)) { + return value.indexOf(filter) !== -1; + } + + if (utils.isRegExp(filter)) { + return filter.test(value); + } +} + +function formatHeader(header) { + return header.trim() + .toLowerCase().replace(/([a-z\d])(\w*)/g, (w, char, str) => { + return char.toUpperCase() + str; + }); +} + +function buildAccessors(obj, header) { + const accessorName = utils.toCamelCase(' ' + header); + + ['get', 'set', 'has'].forEach(methodName => { + Object.defineProperty(obj, methodName + accessorName, { + value: function(arg1, arg2, arg3) { + return this[methodName].call(this, header, arg1, arg2, arg3); + }, + configurable: true + }); + }); +} + +function findKey(obj, key) { + key = key.toLowerCase(); + const keys = Object.keys(obj); + let i = keys.length; + let _key; + while (i-- > 0) { + _key = keys[i]; + if (key === _key.toLowerCase()) { + return _key; + } + } + return null; +} + +function AxiosHeaders(headers, defaults) { + headers && this.set(headers); + this[$defaults] = defaults || null; +} + +Object.assign(AxiosHeaders.prototype, { + set: function(header, valueOrRewrite, rewrite) { + const self = this; + + function setHeader(_value, _header, _rewrite) { + const lHeader = normalizeHeader(_header); + + if (!lHeader) { + throw new Error('header name must be a non-empty string'); + } + + const key = findKey(self, lHeader); + + if (key && _rewrite !== true && (self[key] === false || _rewrite === false)) { + return; + } + + if (utils.isArray(_value)) { + _value = _value.map(normalizeValue); + } else { + _value = normalizeValue(_value); + } + + self[key || _header] = _value; + } + + if (utils.isPlainObject(header)) { + utils.forEach(header, (_value, _header) => { + setHeader(_value, _header, valueOrRewrite); + }); + } else { + setHeader(valueOrRewrite, header, rewrite); + } + + return this; + }, + + get: function(header, parser) { + header = normalizeHeader(header); + + if (!header) return undefined; + + const key = findKey(this, header); + + if (key) { + const value = this[key]; + + if (!parser) { + return value; + } + + if (parser === true) { + return parseTokens(value); + } + + if (utils.isFunction(parser)) { + return parser.call(this, value, key); + } + + if (utils.isRegExp(parser)) { + return parser.exec(value); + } + + throw new TypeError('parser must be boolean|regexp|function'); + } + }, + + has: function(header, matcher) { + header = normalizeHeader(header); + + if (header) { + const key = findKey(this, header); + + return !!(key && (!matcher || matchHeaderValue(this, this[key], key, matcher))); + } + + return false; + }, + + delete: function(header, matcher) { + const self = this; + let deleted = false; + + function deleteHeader(_header) { + _header = normalizeHeader(_header); + + if (_header) { + const key = findKey(self, _header); + + if (key && (!matcher || matchHeaderValue(self, self[key], key, matcher))) { + delete self[key]; + + deleted = true; + } + } + } + + if (utils.isArray(header)) { + header.forEach(deleteHeader); + } else { + deleteHeader(header); + } + + return deleted; + }, + + clear: function() { + return Object.keys(this).forEach(this.delete.bind(this)); + }, + + normalize: function(format) { + const self = this; + const headers = {}; + + utils.forEach(this, (value, header) => { + const key = findKey(headers, header); + + if (key) { + self[key] = normalizeValue(value); + delete self[header]; + return; + } + + const normalized = format ? formatHeader(header) : String(header).trim(); + + if (normalized !== header) { + delete self[header]; + } + + self[normalized] = normalizeValue(value); + + headers[normalized] = true; + }); + + return this; + }, + + toJSON: function() { + const obj = Object.create(null); + + utils.forEach(Object.assign({}, this[$defaults] || null, this), + (value, header) => { + if (value == null || value === false) return; + obj[header] = utils.isArray(value) ? value.join(', ') : value; + }); + + return obj; + } +}); + +Object.assign(AxiosHeaders, { + from: function(thing) { + if (utils.isString(thing)) { + return new this(parseHeaders(thing)); + } + return thing instanceof this ? thing : new this(thing); + }, + + accessor: function(header) { + const internals = this[$internals] = (this[$internals] = { + accessors: {} + }); + + const accessors = internals.accessors; + const prototype = this.prototype; + + function defineAccessor(_header) { + const lHeader = normalizeHeader(_header); + + if (!accessors[lHeader]) { + buildAccessors(prototype, _header); + accessors[lHeader] = true; + } + } + + utils.isArray(header) ? header.forEach(defineAccessor) : defineAccessor(header); + + return this; + } +}); + +AxiosHeaders.accessor(['Content-Type', 'Content-Length', 'Accept', 'Accept-Encoding', 'User-Agent']); + +utils.freezeMethods(AxiosHeaders.prototype); +utils.freezeMethods(AxiosHeaders); + +export default AxiosHeaders; diff --git a/node_modules/axios/lib/core/InterceptorManager.js b/node_modules/axios/lib/core/InterceptorManager.js new file mode 100644 index 000000000..6657a9d2d --- /dev/null +++ b/node_modules/axios/lib/core/InterceptorManager.js @@ -0,0 +1,71 @@ +'use strict'; + +import utils from './../utils.js'; + +class InterceptorManager { + constructor() { + this.handlers = []; + } + + /** + * Add a new interceptor to the stack + * + * @param {Function} fulfilled The function to handle `then` for a `Promise` + * @param {Function} rejected The function to handle `reject` for a `Promise` + * + * @return {Number} An ID used to remove interceptor later + */ + use(fulfilled, rejected, options) { + this.handlers.push({ + fulfilled, + rejected, + synchronous: options ? options.synchronous : false, + runWhen: options ? options.runWhen : null + }); + return this.handlers.length - 1; + } + + /** + * Remove an interceptor from the stack + * + * @param {Number} id The ID that was returned by `use` + * + * @returns {Boolean} `true` if the interceptor was removed, `false` otherwise + */ + eject(id) { + if (this.handlers[id]) { + this.handlers[id] = null; + } + } + + /** + * Clear all interceptors from the stack + * + * @returns {void} + */ + clear() { + if (this.handlers) { + this.handlers = []; + } + } + + /** + * Iterate over all the registered interceptors + * + * This method is particularly useful for skipping over any + * interceptors that may have become `null` calling `eject`. + * + * @param {Function} fn The function to call for each interceptor + * + * @returns {void} + */ + forEach(fn) { + utils.forEach(this.handlers, function forEachHandler(h) { + if (h !== null) { + fn(h); + } + }); + } +} + +export default InterceptorManager; diff --git a/node_modules/axios/lib/core/README.md b/node_modules/axios/lib/core/README.md new file mode 100644 index 000000000..84559ce7c --- /dev/null +++ b/node_modules/axios/lib/core/README.md @@ -0,0 +1,8 @@ +# axios // core + +The modules found in `core/` should be modules that are specific to the domain logic of axios. These modules would most likely not make sense to be consumed outside of the axios module, as their logic is too specific. Some examples of core modules are: + +- Dispatching requests + - Requests sent via `adapters/` (see lib/adapters/README.md) +- Managing interceptors +- Handling config diff --git a/node_modules/axios/lib/core/buildFullPath.js b/node_modules/axios/lib/core/buildFullPath.js new file mode 100644 index 000000000..b60927c0a --- /dev/null +++ b/node_modules/axios/lib/core/buildFullPath.js @@ -0,0 +1,21 @@ +'use strict'; + +import isAbsoluteURL from '../helpers/isAbsoluteURL.js'; +import combineURLs from '../helpers/combineURLs.js'; + +/** + * Creates a new URL by combining the baseURL with the requestedURL, + * only when the requestedURL is not already an absolute URL. + * If the requestURL is absolute, this function returns the requestedURL untouched. + * + * @param {string} baseURL The base URL + * @param {string} requestedURL Absolute or relative URL to combine + * + * @returns {string} The combined full path + */ +export default function buildFullPath(baseURL, requestedURL) { + if (baseURL && !isAbsoluteURL(requestedURL)) { + return combineURLs(baseURL, requestedURL); + } + return requestedURL; +} diff --git a/node_modules/axios/lib/core/dispatchRequest.js b/node_modules/axios/lib/core/dispatchRequest.js new file mode 100644 index 000000000..46ced28e3 --- /dev/null +++ b/node_modules/axios/lib/core/dispatchRequest.js @@ -0,0 +1,76 @@ +'use strict'; + +import transformData from './transformData.js'; +import isCancel from '../cancel/isCancel.js'; +import defaults from '../defaults/index.js'; +import CanceledError from '../cancel/CanceledError.js'; +import AxiosHeaders from '../core/AxiosHeaders.js'; + +/** + * Throws a `CanceledError` if cancellation has been requested. + * + * @param {Object} config The config that is to be used for the request + * + * @returns {void} + */ +function throwIfCancellationRequested(config) { + if (config.cancelToken) { + config.cancelToken.throwIfRequested(); + } + + if (config.signal && config.signal.aborted) { + throw new CanceledError(); + } +} + +/** + * Dispatch a request to the server using the configured adapter. + * + * @param {object} config The config that is to be used for the request + * + * @returns {Promise} The Promise to be fulfilled + */ +export default function dispatchRequest(config) { + throwIfCancellationRequested(config); + + config.headers = AxiosHeaders.from(config.headers); + + // Transform request data + config.data = transformData.call( + config, + config.transformRequest + ); + + const adapter = config.adapter || defaults.adapter; + + return adapter(config).then(function onAdapterResolution(response) { + throwIfCancellationRequested(config); + + // Transform response data + response.data = transformData.call( + config, + config.transformResponse, + response + ); + + response.headers = AxiosHeaders.from(response.headers); + + return response; + }, function onAdapterRejection(reason) { + if (!isCancel(reason)) { + throwIfCancellationRequested(config); + + // Transform response data + if (reason && reason.response) { + reason.response.data = transformData.call( + config, + config.transformResponse, + reason.response + ); + reason.response.headers = AxiosHeaders.from(reason.response.headers); + } + } + + return Promise.reject(reason); + }); +} diff --git a/node_modules/axios/lib/core/mergeConfig.js b/node_modules/axios/lib/core/mergeConfig.js new file mode 100644 index 000000000..328e63182 --- /dev/null +++ b/node_modules/axios/lib/core/mergeConfig.js @@ -0,0 +1,101 @@ +'use strict'; + +import utils from '../utils.js'; + +/** + * Config-specific merge-function which creates a new config-object + * by merging two configuration objects together. + * + * @param {Object} config1 + * @param {Object} config2 + * + * @returns {Object} New object resulting from merging config2 to config1 + */ +export default function mergeConfig(config1, config2) { + // eslint-disable-next-line no-param-reassign + config2 = config2 || {}; + const config = {}; + + function getMergedValue(target, source) { + if (utils.isPlainObject(target) && utils.isPlainObject(source)) { + return utils.merge(target, source); + } else if (utils.isPlainObject(source)) { + return utils.merge({}, source); + } else if (utils.isArray(source)) { + return source.slice(); + } + return source; + } + + // eslint-disable-next-line consistent-return + function mergeDeepProperties(prop) { + if (!utils.isUndefined(config2[prop])) { + return getMergedValue(config1[prop], config2[prop]); + } else if (!utils.isUndefined(config1[prop])) { + return getMergedValue(undefined, config1[prop]); + } + } + + // eslint-disable-next-line consistent-return + function valueFromConfig2(prop) { + if (!utils.isUndefined(config2[prop])) { + return getMergedValue(undefined, config2[prop]); + } + } + + // eslint-disable-next-line consistent-return + function defaultToConfig2(prop) { + if (!utils.isUndefined(config2[prop])) { + return getMergedValue(undefined, config2[prop]); + } else if (!utils.isUndefined(config1[prop])) { + return getMergedValue(undefined, config1[prop]); + } + } + + // eslint-disable-next-line consistent-return + function mergeDirectKeys(prop) { + if (prop in config2) { + return getMergedValue(config1[prop], config2[prop]); + } else if (prop in config1) { + return getMergedValue(undefined, config1[prop]); + } + } + + const mergeMap = { + 'url': valueFromConfig2, + 'method': valueFromConfig2, + 'data': valueFromConfig2, + 'baseURL': defaultToConfig2, + 'transformRequest': defaultToConfig2, + 'transformResponse': defaultToConfig2, + 'paramsSerializer': defaultToConfig2, + 'timeout': defaultToConfig2, + 'timeoutMessage': defaultToConfig2, + 'withCredentials': defaultToConfig2, + 'adapter': defaultToConfig2, + 'responseType': defaultToConfig2, + 'xsrfCookieName': defaultToConfig2, + 'xsrfHeaderName': defaultToConfig2, + 'onUploadProgress': defaultToConfig2, + 'onDownloadProgress': defaultToConfig2, + 'decompress': defaultToConfig2, + 'maxContentLength': defaultToConfig2, + 'maxBodyLength': defaultToConfig2, + 'beforeRedirect': defaultToConfig2, + 'transport': defaultToConfig2, + 'httpAgent': defaultToConfig2, + 'httpsAgent': defaultToConfig2, + 'cancelToken': defaultToConfig2, + 'socketPath': defaultToConfig2, + 'responseEncoding': defaultToConfig2, + 'validateStatus': mergeDirectKeys + }; + + utils.forEach(Object.keys(config1).concat(Object.keys(config2)), function computeConfigValue(prop) { + const merge = mergeMap[prop] || mergeDeepProperties; + const configValue = merge(prop); + (utils.isUndefined(configValue) && merge !== mergeDirectKeys) || (config[prop] = configValue); + }); + + return config; +} diff --git a/node_modules/axios/lib/core/settle.js b/node_modules/axios/lib/core/settle.js new file mode 100644 index 000000000..ac905c432 --- /dev/null +++ b/node_modules/axios/lib/core/settle.js @@ -0,0 +1,27 @@ +'use strict'; + +import AxiosError from './AxiosError.js'; + +/** + * Resolve or reject a Promise based on response status. + * + * @param {Function} resolve A function that resolves the promise. + * @param {Function} reject A function that rejects the promise. + * @param {object} response The response. + * + * @returns {object} The response. + */ +export default function settle(resolve, reject, response) { + const validateStatus = response.config.validateStatus; + if (!response.status || !validateStatus || validateStatus(response.status)) { + resolve(response); + } else { + reject(new AxiosError( + 'Request failed with status code ' + response.status, + [AxiosError.ERR_BAD_REQUEST, AxiosError.ERR_BAD_RESPONSE][Math.floor(response.status / 100) - 4], + response.config, + response.request, + response + )); + } +} diff --git a/node_modules/axios/lib/core/transformData.js b/node_modules/axios/lib/core/transformData.js new file mode 100644 index 000000000..eeb5a8a18 --- /dev/null +++ b/node_modules/axios/lib/core/transformData.js @@ -0,0 +1,28 @@ +'use strict'; + +import utils from './../utils.js'; +import defaults from '../defaults/index.js'; +import AxiosHeaders from '../core/AxiosHeaders.js'; + +/** + * Transform the data for a request or a response + * + * @param {Array|Function} fns A single function or Array of functions + * @param {?Object} response The response object + * + * @returns {*} The resulting transformed data + */ +export default function transformData(fns, response) { + const config = this || defaults; + const context = response || config; + const headers = AxiosHeaders.from(context.headers); + let data = context.data; + + utils.forEach(fns, function transform(fn) { + data = fn.call(config, data, headers.normalize(), response ? response.status : undefined); + }); + + headers.normalize(); + + return data; +} diff --git a/node_modules/axios/lib/defaults/index.js b/node_modules/axios/lib/defaults/index.js new file mode 100644 index 000000000..b4b9db22b --- /dev/null +++ b/node_modules/axios/lib/defaults/index.js @@ -0,0 +1,185 @@ +'use strict'; + +import utils from '../utils.js'; +import AxiosError from '../core/AxiosError.js'; +import transitionalDefaults from './transitional.js'; +import toFormData from '../helpers/toFormData.js'; +import toURLEncodedForm from '../helpers/toURLEncodedForm.js'; +import platform from '../platform/index.js'; +import formDataToJSON from '../helpers/formDataToJSON.js'; +import adapters from '../adapters/index.js'; + +const DEFAULT_CONTENT_TYPE = { + 'Content-Type': 'application/x-www-form-urlencoded' +}; + +/** + * If the browser has an XMLHttpRequest object, use the XHR adapter, otherwise use the HTTP + * adapter + * + * @returns {Function} + */ +function getDefaultAdapter() { + let adapter; + if (typeof XMLHttpRequest !== 'undefined') { + // For browsers use XHR adapter + adapter = adapters.getAdapter('xhr'); + } else if (typeof process !== 'undefined' && utils.kindOf(process) === 'process') { + // For node use HTTP adapter + adapter = adapters.getAdapter('http'); + } + return adapter; +} + +/** + * It takes a string, tries to parse it, and if it fails, it returns the stringified version + * of the input + * + * @param {any} rawValue - The value to be stringified. + * @param {Function} parser - A function that parses a string into a JavaScript object. + * @param {Function} encoder - A function that takes a value and returns a string. + * + * @returns {string} A stringified version of the rawValue. + */ +function stringifySafely(rawValue, parser, encoder) { + if (utils.isString(rawValue)) { + try { + (parser || JSON.parse)(rawValue); + return utils.trim(rawValue); + } catch (e) { + if (e.name !== 'SyntaxError') { + throw e; + } + } + } + + return (encoder || JSON.stringify)(rawValue); +} + +const defaults = { + + transitional: transitionalDefaults, + + adapter: getDefaultAdapter(), + + transformRequest: [function transformRequest(data, headers) { + const contentType = headers.getContentType() || ''; + const hasJSONContentType = contentType.indexOf('application/json') > -1; + const isObjectPayload = utils.isObject(data); + + if (isObjectPayload && utils.isHTMLForm(data)) { + data = new FormData(data); + } + + const isFormData = utils.isFormData(data); + + if (isFormData) { + if (!hasJSONContentType) { + return data; + } + return hasJSONContentType ? JSON.stringify(formDataToJSON(data)) : data; + } + + if (utils.isArrayBuffer(data) || + utils.isBuffer(data) || + utils.isStream(data) || + utils.isFile(data) || + utils.isBlob(data) + ) { + return data; + } + if (utils.isArrayBufferView(data)) { + return data.buffer; + } + if (utils.isURLSearchParams(data)) { + headers.setContentType('application/x-www-form-urlencoded;charset=utf-8', false); + return data.toString(); + } + + let isFileList; + + if (isObjectPayload) { + if (contentType.indexOf('application/x-www-form-urlencoded') > -1) { + return toURLEncodedForm(data, this.formSerializer).toString(); + } + + if ((isFileList = utils.isFileList(data)) || contentType.indexOf('multipart/form-data') > -1) { + const _FormData = this.env && this.env.FormData; + + return toFormData( + isFileList ? {'files[]': data} : data, + _FormData && new _FormData(), + this.formSerializer + ); + } + } + + if (isObjectPayload || hasJSONContentType ) { + headers.setContentType('application/json', false); + return stringifySafely(data); + } + + return data; + }], + + transformResponse: [function transformResponse(data) { + const transitional = this.transitional || defaults.transitional; + const forcedJSONParsing = transitional && transitional.forcedJSONParsing; + const JSONRequested = this.responseType === 'json'; + + if (data && utils.isString(data) && ((forcedJSONParsing && !this.responseType) || JSONRequested)) { + const silentJSONParsing = transitional && transitional.silentJSONParsing; + const strictJSONParsing = !silentJSONParsing && JSONRequested; + + try { + return JSON.parse(data); + } catch (e) { + if (strictJSONParsing) { + if (e.name === 'SyntaxError') { + throw AxiosError.from(e, AxiosError.ERR_BAD_RESPONSE, this, null, this.response); + } + throw e; + } + } + } + + return data; + }], + + /** + * A timeout in milliseconds to abort a request. If set to 0 (default) a + * timeout is not created. + */ + timeout: 0, + + xsrfCookieName: 'XSRF-TOKEN', + xsrfHeaderName: 'X-XSRF-TOKEN', + + maxContentLength: -1, + maxBodyLength: -1, + + env: { + FormData: platform.classes.FormData, + Blob: platform.classes.Blob + }, + + validateStatus: function validateStatus(status) { + return status >= 200 && status < 300; + }, + + headers: { + common: { + 'Accept': 'application/json, text/plain, */*' + } + } +}; + +utils.forEach(['delete', 'get', 'head'], function forEachMethodNoData(method) { + defaults.headers[method] = {}; +}); + +utils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) { + defaults.headers[method] = utils.merge(DEFAULT_CONTENT_TYPE); +}); + +export default defaults; diff --git a/node_modules/axios/lib/defaults/transitional.js b/node_modules/axios/lib/defaults/transitional.js new file mode 100644 index 000000000..f89133196 --- /dev/null +++ b/node_modules/axios/lib/defaults/transitional.js @@ -0,0 +1,7 @@ +'use strict'; + +export default { + silentJSONParsing: true, + forcedJSONParsing: true, + clarifyTimeoutError: false +}; diff --git a/node_modules/axios/lib/env/README.md b/node_modules/axios/lib/env/README.md new file mode 100644 index 000000000..b41baff3c --- /dev/null +++ b/node_modules/axios/lib/env/README.md @@ -0,0 +1,3 @@ +# axios // env + +The `data.js` file is updated automatically when the package version is upgrading. Please do not edit it manually. diff --git a/node_modules/axios/lib/env/classes/FormData.js b/node_modules/axios/lib/env/classes/FormData.js new file mode 100644 index 000000000..d3a90ec4b --- /dev/null +++ b/node_modules/axios/lib/env/classes/FormData.js @@ -0,0 +1,2 @@ +import FormData from 'form-data'; +export default FormData; diff --git a/node_modules/axios/lib/env/data.js b/node_modules/axios/lib/env/data.js new file mode 100644 index 000000000..efeaf950f --- /dev/null +++ b/node_modules/axios/lib/env/data.js @@ -0,0 +1 @@ +export const VERSION = "1.0.0"; \ No newline at end of file diff --git a/node_modules/axios/lib/helpers/AxiosTransformStream.js b/node_modules/axios/lib/helpers/AxiosTransformStream.js new file mode 100644 index 000000000..8e8c6d421 --- /dev/null +++ b/node_modules/axios/lib/helpers/AxiosTransformStream.js @@ -0,0 +1,191 @@ +'use strict'; + +import stream from 'stream'; +import utils from '../utils.js'; +import throttle from './throttle.js'; +import speedometer from './speedometer.js'; + +const kInternals = Symbol('internals'); + +class AxiosTransformStream extends stream.Transform{ + constructor(options) { + options = utils.toFlatObject(options, { + maxRate: 0, + chunkSize: 64 * 1024, + minChunkSize: 100, + timeWindow: 500, + ticksRate: 2, + samplesCount: 15 + }, null, (prop, source) => { + return !utils.isUndefined(source[prop]); + }); + + super({ + readableHighWaterMark: options.chunkSize + }); + + const self = this; + + const internals = this[kInternals] = { + length: options.length, + timeWindow: options.timeWindow, + ticksRate: options.ticksRate, + chunkSize: options.chunkSize, + maxRate: options.maxRate, + minChunkSize: options.minChunkSize, + bytesSeen: 0, + isCaptured: false, + notifiedBytesLoaded: 0, + ts: Date.now(), + bytes: 0, + onReadCallback: null + }; + + const _speedometer = speedometer(internals.ticksRate * options.samplesCount, internals.timeWindow); + + this.on('newListener', event => { + if (event === 'progress') { + if (!internals.isCaptured) { + internals.isCaptured = true; + } + } + }); + + let bytesNotified = 0; + + internals.updateProgress = throttle(function throttledHandler() { + const totalBytes = internals.length; + const bytesTransferred = internals.bytesSeen; + const progressBytes = bytesTransferred - bytesNotified; + if (!progressBytes || self.destroyed) return; + + const rate = _speedometer(progressBytes); + + bytesNotified = bytesTransferred; + + process.nextTick(() => { + self.emit('progress', { + 'loaded': bytesTransferred, + 'total': totalBytes, + 'progress': totalBytes ? (bytesTransferred / totalBytes) : undefined, + 'bytes': progressBytes, + 'rate': rate ? rate : undefined, + 'estimated': rate && totalBytes && bytesTransferred <= totalBytes ? + (totalBytes - bytesTransferred) / rate : undefined + }); + }); + }, internals.ticksRate); + + const onFinish = () => { + internals.updateProgress(true); + }; + + this.once('end', onFinish); + this.once('error', onFinish); + } + + _read(size) { + const internals = this[kInternals]; + + if (internals.onReadCallback) { + internals.onReadCallback(); + } + + return super._read(size); + } + + _transform(chunk, encoding, callback) { + const self = this; + const internals = this[kInternals]; + const maxRate = internals.maxRate; + + const readableHighWaterMark = this.readableHighWaterMark; + + const timeWindow = internals.timeWindow; + + const divider = 1000 / timeWindow; + const bytesThreshold = (maxRate / divider); + const minChunkSize = internals.minChunkSize !== false ? Math.max(internals.minChunkSize, bytesThreshold * 0.01) : 0; + + function pushChunk(_chunk, _callback) { + const bytes = Buffer.byteLength(_chunk); + internals.bytesSeen += bytes; + internals.bytes += bytes; + + if (internals.isCaptured) { + internals.updateProgress(); + } + + if (self.push(_chunk)) { + process.nextTick(_callback); + } else { + internals.onReadCallback = () => { + internals.onReadCallback = null; + process.nextTick(_callback); + }; + } + } + + const transformChunk = (_chunk, _callback) => { + const chunkSize = Buffer.byteLength(_chunk); + let chunkRemainder = null; + let maxChunkSize = readableHighWaterMark; + let bytesLeft; + let passed = 0; + + if (maxRate) { + const now = Date.now(); + + if (!internals.ts || (passed = (now - internals.ts)) >= timeWindow) { + internals.ts = now; + bytesLeft = bytesThreshold - internals.bytes; + internals.bytes = bytesLeft < 0 ? -bytesLeft : 0; + passed = 0; + } + + bytesLeft = bytesThreshold - internals.bytes; + } + + if (maxRate) { + if (bytesLeft <= 0) { + // next time window + return setTimeout(() => { + _callback(null, _chunk); + }, timeWindow - passed); + } + + if (bytesLeft < maxChunkSize) { + maxChunkSize = bytesLeft; + } + } + + if (maxChunkSize && chunkSize > maxChunkSize && (chunkSize - maxChunkSize) > minChunkSize) { + chunkRemainder = _chunk.subarray(maxChunkSize); + _chunk = _chunk.subarray(0, maxChunkSize); + } + + pushChunk(_chunk, chunkRemainder ? () => { + process.nextTick(_callback, null, chunkRemainder); + } : _callback); + }; + + transformChunk(chunk, function transformNextChunk(err, _chunk) { + if (err) { + return callback(err); + } + + if (_chunk) { + transformChunk(_chunk, transformNextChunk); + } else { + callback(null); + } + }); + } + + setLength(length) { + this[kInternals].length = +length; + return this; + } +} + +export default AxiosTransformStream; diff --git a/node_modules/axios/lib/helpers/AxiosURLSearchParams.js b/node_modules/axios/lib/helpers/AxiosURLSearchParams.js new file mode 100644 index 000000000..b9aa9f02b --- /dev/null +++ b/node_modules/axios/lib/helpers/AxiosURLSearchParams.js @@ -0,0 +1,58 @@ +'use strict'; + +import toFormData from './toFormData.js'; + +/** + * It encodes a string by replacing all characters that are not in the unreserved set with + * their percent-encoded equivalents + * + * @param {string} str - The string to encode. + * + * @returns {string} The encoded string. + */ +function encode(str) { + const charMap = { + '!': '%21', + "'": '%27', + '(': '%28', + ')': '%29', + '~': '%7E', + '%20': '+', + '%00': '\x00' + }; + return encodeURIComponent(str).replace(/[!'()~]|%20|%00/g, function replacer(match) { + return charMap[match]; + }); +} + +/** + * It takes a params object and converts it to a FormData object + * + * @param {Object} params - The parameters to be converted to a FormData object. + * @param {Object} options - The options object passed to the Axios constructor. + * + * @returns {void} + */ +function AxiosURLSearchParams(params, options) { + this._pairs = []; + + params && toFormData(params, this, options); +} + +const prototype = AxiosURLSearchParams.prototype; + +prototype.append = function append(name, value) { + this._pairs.push([name, value]); +}; + +prototype.toString = function toString(encoder) { + const _encode = encoder ? function(value) { + return encoder.call(this, value, encode); + } : encode; + + return this._pairs.map(function each(pair) { + return _encode(pair[0]) + '=' + _encode(pair[1]); + }, '').join('&'); +}; + +export default AxiosURLSearchParams; diff --git a/node_modules/axios/lib/helpers/README.md b/node_modules/axios/lib/helpers/README.md new file mode 100644 index 000000000..4ae34193a --- /dev/null +++ b/node_modules/axios/lib/helpers/README.md @@ -0,0 +1,7 @@ +# axios // helpers + +The modules found in `helpers/` should be generic modules that are _not_ specific to the domain logic of axios. These modules could theoretically be published to npm on their own and consumed by other modules or apps. Some examples of generic modules are things like: + +- Browser polyfills +- Managing cookies +- Parsing HTTP headers diff --git a/node_modules/axios/lib/helpers/bind.js b/node_modules/axios/lib/helpers/bind.js new file mode 100644 index 000000000..b3aa83b75 --- /dev/null +++ b/node_modules/axios/lib/helpers/bind.js @@ -0,0 +1,7 @@ +'use strict'; + +export default function bind(fn, thisArg) { + return function wrap() { + return fn.apply(thisArg, arguments); + }; +} diff --git a/node_modules/axios/lib/helpers/buildURL.js b/node_modules/axios/lib/helpers/buildURL.js new file mode 100644 index 000000000..693b85f8b --- /dev/null +++ b/node_modules/axios/lib/helpers/buildURL.js @@ -0,0 +1,56 @@ +'use strict'; + +import utils from '../utils.js'; +import AxiosURLSearchParams from '../helpers/AxiosURLSearchParams.js'; + +/** + * It replaces all instances of the characters `:`, `$`, `,`, `+`, `[`, and `]` with their + * URI encoded counterparts + * + * @param {string} val The value to be encoded. + * + * @returns {string} The encoded value. + */ +function encode(val) { + return encodeURIComponent(val). + replace(/%3A/gi, ':'). + replace(/%24/g, '$'). + replace(/%2C/gi, ','). + replace(/%20/g, '+'). + replace(/%5B/gi, '['). + replace(/%5D/gi, ']'); +} + +/** + * Build a URL by appending params to the end + * + * @param {string} url The base of the url (e.g., http://www.google.com) + * @param {object} [params] The params to be appended + * @param {?object} options + * + * @returns {string} The formatted url + */ +export default function buildURL(url, params, options) { + /*eslint no-param-reassign:0*/ + if (!params) { + return url; + } + + const hashmarkIndex = url.indexOf('#'); + + if (hashmarkIndex !== -1) { + url = url.slice(0, hashmarkIndex); + } + + const _encode = options && options.encode || encode; + + const serializerParams = utils.isURLSearchParams(params) ? + params.toString() : + new AxiosURLSearchParams(params, options).toString(_encode); + + if (serializerParams) { + url += (url.indexOf('?') === -1 ? '?' : '&') + serializerParams; + } + + return url; +} diff --git a/node_modules/axios/lib/helpers/combineURLs.js b/node_modules/axios/lib/helpers/combineURLs.js new file mode 100644 index 000000000..cba9a23da --- /dev/null +++ b/node_modules/axios/lib/helpers/combineURLs.js @@ -0,0 +1,15 @@ +'use strict'; + +/** + * Creates a new URL by combining the specified URLs + * + * @param {string} baseURL The base URL + * @param {string} relativeURL The relative URL + * + * @returns {string} The combined URL + */ +export default function combineURLs(baseURL, relativeURL) { + return relativeURL + ? baseURL.replace(/\/+$/, '') + '/' + relativeURL.replace(/^\/+/, '') + : baseURL; +} diff --git a/node_modules/axios/lib/helpers/cookies.js b/node_modules/axios/lib/helpers/cookies.js new file mode 100644 index 000000000..361493a3a --- /dev/null +++ b/node_modules/axios/lib/helpers/cookies.js @@ -0,0 +1,52 @@ +'use strict'; + +import utils from './../utils.js'; +import platform from '../platform/index.js'; + +export default platform.isStandardBrowserEnv ? + +// Standard browser envs support document.cookie + (function standardBrowserEnv() { + return { + write: function write(name, value, expires, path, domain, secure) { + const cookie = []; + cookie.push(name + '=' + encodeURIComponent(value)); + + if (utils.isNumber(expires)) { + cookie.push('expires=' + new Date(expires).toGMTString()); + } + + if (utils.isString(path)) { + cookie.push('path=' + path); + } + + if (utils.isString(domain)) { + cookie.push('domain=' + domain); + } + + if (secure === true) { + cookie.push('secure'); + } + + document.cookie = cookie.join('; '); + }, + + read: function read(name) { + const match = document.cookie.match(new RegExp('(^|;\\s*)(' + name + ')=([^;]*)')); + return (match ? decodeURIComponent(match[3]) : null); + }, + + remove: function remove(name) { + this.write(name, '', Date.now() - 86400000); + } + }; + })() : + +// Non standard browser env (web workers, react-native) lack needed support. + (function nonStandardBrowserEnv() { + return { + write: function write() {}, + read: function read() { return null; }, + remove: function remove() {} + }; + })(); diff --git a/node_modules/axios/lib/helpers/deprecatedMethod.js b/node_modules/axios/lib/helpers/deprecatedMethod.js new file mode 100644 index 000000000..9e8fae6bf --- /dev/null +++ b/node_modules/axios/lib/helpers/deprecatedMethod.js @@ -0,0 +1,26 @@ +'use strict'; + +/*eslint no-console:0*/ + +/** + * Supply a warning to the developer that a method they are using + * has been deprecated. + * + * @param {string} method The name of the deprecated method + * @param {string} [instead] The alternate method to use if applicable + * @param {string} [docs] The documentation URL to get further details + * + * @returns {void} + */ +export default function deprecatedMethod(method, instead, docs) { + try { + console.warn( + 'DEPRECATED method `' + method + '`.' + + (instead ? ' Use `' + instead + '` instead.' : '') + + ' This method will be removed in a future release.'); + + if (docs) { + console.warn('For more information about usage see ' + docs); + } + } catch (e) { /* Ignore */ } +} diff --git a/node_modules/axios/lib/helpers/formDataToJSON.js b/node_modules/axios/lib/helpers/formDataToJSON.js new file mode 100644 index 000000000..f4581df46 --- /dev/null +++ b/node_modules/axios/lib/helpers/formDataToJSON.js @@ -0,0 +1,92 @@ +'use strict'; + +import utils from '../utils.js'; + +/** + * It takes a string like `foo[x][y][z]` and returns an array like `['foo', 'x', 'y', 'z'] + * + * @param {string} name - The name of the property to get. + * + * @returns An array of strings. + */ +function parsePropPath(name) { + // foo[x][y][z] + // foo.x.y.z + // foo-x-y-z + // foo x y z + return utils.matchAll(/\w+|\[(\w*)]/g, name).map(match => { + return match[0] === '[]' ? '' : match[1] || match[0]; + }); +} + +/** + * Convert an array to an object. + * + * @param {Array} arr - The array to convert to an object. + * + * @returns An object with the same keys and values as the array. + */ +function arrayToObject(arr) { + const obj = {}; + const keys = Object.keys(arr); + let i; + const len = keys.length; + let key; + for (i = 0; i < len; i++) { + key = keys[i]; + obj[key] = arr[key]; + } + return obj; +} + +/** + * It takes a FormData object and returns a JavaScript object + * + * @param {string} formData The FormData object to convert to JSON. + * + * @returns {Object | null} The converted object. + */ +function formDataToJSON(formData) { + function buildPath(path, value, target, index) { + let name = path[index++]; + const isNumericKey = Number.isFinite(+name); + const isLast = index >= path.length; + name = !name && utils.isArray(target) ? target.length : name; + + if (isLast) { + if (utils.hasOwnProp(target, name)) { + target[name] = [target[name], value]; + } else { + target[name] = value; + } + + return !isNumericKey; + } + + if (!target[name] || !utils.isObject(target[name])) { + target[name] = []; + } + + const result = buildPath(path, value, target[name], index); + + if (result && utils.isArray(target[name])) { + target[name] = arrayToObject(target[name]); + } + + return !isNumericKey; + } + + if (utils.isFormData(formData) && utils.isFunction(formData.entries)) { + const obj = {}; + + utils.forEachEntry(formData, (name, value) => { + buildPath(parsePropPath(name), value, obj, 0); + }); + + return obj; + } + + return null; +} + +export default formDataToJSON; diff --git a/node_modules/axios/lib/helpers/fromDataURI.js b/node_modules/axios/lib/helpers/fromDataURI.js new file mode 100644 index 000000000..eb71d3f3b --- /dev/null +++ b/node_modules/axios/lib/helpers/fromDataURI.js @@ -0,0 +1,53 @@ +'use strict'; + +import AxiosError from '../core/AxiosError.js'; +import parseProtocol from './parseProtocol.js'; +import platform from '../platform/index.js'; + +const DATA_URL_PATTERN = /^(?:([^;]+);)?(?:[^;]+;)?(base64|),([\s\S]*)$/; + +/** + * Parse data uri to a Buffer or Blob + * + * @param {String} uri + * @param {?Boolean} asBlob + * @param {?Object} options + * @param {?Function} options.Blob + * + * @returns {Buffer|Blob} + */ +export default function fromDataURI(uri, asBlob, options) { + const _Blob = options && options.Blob || platform.classes.Blob; + const protocol = parseProtocol(uri); + + if (asBlob === undefined && _Blob) { + asBlob = true; + } + + if (protocol === 'data') { + uri = protocol.length ? uri.slice(protocol.length + 1) : uri; + + const match = DATA_URL_PATTERN.exec(uri); + + if (!match) { + throw new AxiosError('Invalid URL', AxiosError.ERR_INVALID_URL); + } + + const mime = match[1]; + const isBase64 = match[2]; + const body = match[3]; + const buffer = Buffer.from(decodeURIComponent(body), isBase64 ? 'base64' : 'utf8'); + + if (asBlob) { + if (!_Blob) { + throw new AxiosError('Blob is not supported', AxiosError.ERR_NOT_SUPPORT); + } + + return new _Blob([buffer], {type: mime}); + } + + return buffer; + } + + throw new AxiosError('Unsupported protocol ' + protocol, AxiosError.ERR_NOT_SUPPORT); +} diff --git a/node_modules/axios/lib/helpers/isAbsoluteURL.js b/node_modules/axios/lib/helpers/isAbsoluteURL.js new file mode 100644 index 000000000..4747a4576 --- /dev/null +++ b/node_modules/axios/lib/helpers/isAbsoluteURL.js @@ -0,0 +1,15 @@ +'use strict'; + +/** + * Determines whether the specified URL is absolute + * + * @param {string} url The URL to test + * + * @returns {boolean} True if the specified URL is absolute, otherwise false + */ +export default function isAbsoluteURL(url) { + // A URL is considered absolute if it begins with "://" or "//" (protocol-relative URL). + // RFC 3986 defines scheme name as a sequence of characters beginning with a letter and followed + // by any combination of letters, digits, plus, period, or hyphen. + return /^([a-z][a-z\d+\-.]*:)?\/\//i.test(url); +} diff --git a/node_modules/axios/lib/helpers/isAxiosError.js b/node_modules/axios/lib/helpers/isAxiosError.js new file mode 100644 index 000000000..da6cd63fd --- /dev/null +++ b/node_modules/axios/lib/helpers/isAxiosError.js @@ -0,0 +1,14 @@ +'use strict'; + +import utils from './../utils.js'; + +/** + * Determines whether the payload is an error thrown by Axios + * + * @param {*} payload The value to test + * + * @returns {boolean} True if the payload is an error thrown by Axios, otherwise false + */ +export default function isAxiosError(payload) { + return utils.isObject(payload) && (payload.isAxiosError === true); +} diff --git a/node_modules/axios/lib/helpers/isURLSameOrigin.js b/node_modules/axios/lib/helpers/isURLSameOrigin.js new file mode 100644 index 000000000..18db03b3c --- /dev/null +++ b/node_modules/axios/lib/helpers/isURLSameOrigin.js @@ -0,0 +1,67 @@ +'use strict'; + +import utils from './../utils.js'; +import platform from '../platform/index.js'; + +export default platform.isStandardBrowserEnv ? + +// Standard browser envs have full support of the APIs needed to test +// whether the request URL is of the same origin as current location. + (function standardBrowserEnv() { + const msie = /(msie|trident)/i.test(navigator.userAgent); + const urlParsingNode = document.createElement('a'); + let originURL; + + /** + * Parse a URL to discover it's components + * + * @param {String} url The URL to be parsed + * @returns {Object} + */ + function resolveURL(url) { + let href = url; + + if (msie) { + // IE needs attribute set twice to normalize properties + urlParsingNode.setAttribute('href', href); + href = urlParsingNode.href; + } + + urlParsingNode.setAttribute('href', href); + + // urlParsingNode provides the UrlUtils interface - http://url.spec.whatwg.org/#urlutils + return { + href: urlParsingNode.href, + protocol: urlParsingNode.protocol ? urlParsingNode.protocol.replace(/:$/, '') : '', + host: urlParsingNode.host, + search: urlParsingNode.search ? urlParsingNode.search.replace(/^\?/, '') : '', + hash: urlParsingNode.hash ? urlParsingNode.hash.replace(/^#/, '') : '', + hostname: urlParsingNode.hostname, + port: urlParsingNode.port, + pathname: (urlParsingNode.pathname.charAt(0) === '/') ? + urlParsingNode.pathname : + '/' + urlParsingNode.pathname + }; + } + + originURL = resolveURL(window.location.href); + + /** + * Determine if a URL shares the same origin as the current location + * + * @param {String} requestURL The URL to test + * @returns {boolean} True if URL shares the same origin, otherwise false + */ + return function isURLSameOrigin(requestURL) { + const parsed = (utils.isString(requestURL)) ? resolveURL(requestURL) : requestURL; + return (parsed.protocol === originURL.protocol && + parsed.host === originURL.host); + }; + })() : + + // Non standard browser envs (web workers, react-native) lack needed support. + (function nonStandardBrowserEnv() { + return function isURLSameOrigin() { + return true; + }; + })(); diff --git a/node_modules/axios/lib/helpers/null.js b/node_modules/axios/lib/helpers/null.js new file mode 100644 index 000000000..b9f82c464 --- /dev/null +++ b/node_modules/axios/lib/helpers/null.js @@ -0,0 +1,2 @@ +// eslint-disable-next-line strict +export default null; diff --git a/node_modules/axios/lib/helpers/parseHeaders.js b/node_modules/axios/lib/helpers/parseHeaders.js new file mode 100644 index 000000000..50af9480c --- /dev/null +++ b/node_modules/axios/lib/helpers/parseHeaders.js @@ -0,0 +1,55 @@ +'use strict'; + +import utils from './../utils.js'; + +// RawAxiosHeaders whose duplicates are ignored by node +// c.f. https://nodejs.org/api/http.html#http_message_headers +const ignoreDuplicateOf = utils.toObjectSet([ + 'age', 'authorization', 'content-length', 'content-type', 'etag', + 'expires', 'from', 'host', 'if-modified-since', 'if-unmodified-since', + 'last-modified', 'location', 'max-forwards', 'proxy-authorization', + 'referer', 'retry-after', 'user-agent' +]); + +/** + * Parse headers into an object + * + * ``` + * Date: Wed, 27 Aug 2014 08:58:49 GMT + * Content-Type: application/json + * Connection: keep-alive + * Transfer-Encoding: chunked + * ``` + * + * @param {String} rawHeaders Headers needing to be parsed + * + * @returns {Object} Headers parsed into an object + */ +export default rawHeaders => { + const parsed = {}; + let key; + let val; + let i; + + rawHeaders && rawHeaders.split('\n').forEach(function parser(line) { + i = line.indexOf(':'); + key = line.substring(0, i).trim().toLowerCase(); + val = line.substring(i + 1).trim(); + + if (!key || (parsed[key] && ignoreDuplicateOf[key])) { + return; + } + + if (key === 'set-cookie') { + if (parsed[key]) { + parsed[key].push(val); + } else { + parsed[key] = [val]; + } + } else { + parsed[key] = parsed[key] ? parsed[key] + ', ' + val : val; + } + }); + + return parsed; +}; diff --git a/node_modules/axios/lib/helpers/parseProtocol.js b/node_modules/axios/lib/helpers/parseProtocol.js new file mode 100644 index 000000000..586ec9647 --- /dev/null +++ b/node_modules/axios/lib/helpers/parseProtocol.js @@ -0,0 +1,6 @@ +'use strict'; + +export default function parseProtocol(url) { + const match = /^([-+\w]{1,25})(:?\/\/|:)/.exec(url); + return match && match[1] || ''; +} diff --git a/node_modules/axios/lib/helpers/speedometer.js b/node_modules/axios/lib/helpers/speedometer.js new file mode 100644 index 000000000..10782b7b8 --- /dev/null +++ b/node_modules/axios/lib/helpers/speedometer.js @@ -0,0 +1,55 @@ +'use strict'; + +/** + * Calculate data maxRate + * @param {Number} [samplesCount= 10] + * @param {Number} [min= 1000] + * @returns {Function} + */ +function speedometer(samplesCount, min) { + samplesCount = samplesCount || 10; + const bytes = new Array(samplesCount); + const timestamps = new Array(samplesCount); + let head = 0; + let tail = 0; + let firstSampleTS; + + min = min !== undefined ? min : 1000; + + return function push(chunkLength) { + const now = Date.now(); + + const startedAt = timestamps[tail]; + + if (!firstSampleTS) { + firstSampleTS = now; + } + + bytes[head] = chunkLength; + timestamps[head] = now; + + let i = tail; + let bytesCount = 0; + + while (i !== head) { + bytesCount += bytes[i++]; + i = i % samplesCount; + } + + head = (head + 1) % samplesCount; + + if (head === tail) { + tail = (tail + 1) % samplesCount; + } + + if (now - firstSampleTS < min) { + return; + } + + const passed = startedAt && now - startedAt; + + return passed ? Math.round(bytesCount * 1000 / passed) : undefined; + }; +} + +export default speedometer; diff --git a/node_modules/axios/lib/helpers/spread.js b/node_modules/axios/lib/helpers/spread.js new file mode 100644 index 000000000..13479cb25 --- /dev/null +++ b/node_modules/axios/lib/helpers/spread.js @@ -0,0 +1,28 @@ +'use strict'; + +/** + * Syntactic sugar for invoking a function and expanding an array for arguments. + * + * Common use case would be to use `Function.prototype.apply`. + * + * ```js + * function f(x, y, z) {} + * var args = [1, 2, 3]; + * f.apply(null, args); + * ``` + * + * With `spread` this example can be re-written. + * + * ```js + * spread(function(x, y, z) {})([1, 2, 3]); + * ``` + * + * @param {Function} callback + * + * @returns {Function} + */ +export default function spread(callback) { + return function wrap(arr) { + return callback.apply(null, arr); + }; +} diff --git a/node_modules/axios/lib/helpers/throttle.js b/node_modules/axios/lib/helpers/throttle.js new file mode 100644 index 000000000..6969df1ad --- /dev/null +++ b/node_modules/axios/lib/helpers/throttle.js @@ -0,0 +1,33 @@ +'use strict'; + +/** + * Throttle decorator + * @param {Function} fn + * @param {Number} freq + * @return {Function} + */ +function throttle(fn, freq) { + let timestamp = 0; + const threshold = 1000 / freq; + let timer = null; + return function throttled(force, args) { + const now = Date.now(); + if (force || now - timestamp > threshold) { + if (timer) { + clearTimeout(timer); + timer = null; + } + timestamp = now; + return fn.apply(null, args); + } + if (!timer) { + timer = setTimeout(() => { + timer = null; + timestamp = Date.now(); + return fn.apply(null, args); + }, threshold - (now - timestamp)); + } + }; +} + +export default throttle; diff --git a/node_modules/axios/lib/helpers/toFormData.js b/node_modules/axios/lib/helpers/toFormData.js new file mode 100644 index 000000000..1d89e7fc6 --- /dev/null +++ b/node_modules/axios/lib/helpers/toFormData.js @@ -0,0 +1,229 @@ +'use strict'; + +import utils from '../utils.js'; +import AxiosError from '../core/AxiosError.js'; +import envFormData from '../env/classes/FormData.js'; + +/** + * Determines if the given thing is a array or js object. + * + * @param {string} thing - The object or array to be visited. + * + * @returns {boolean} + */ +function isVisitable(thing) { + return utils.isPlainObject(thing) || utils.isArray(thing); +} + +/** + * It removes the brackets from the end of a string + * + * @param {string} key - The key of the parameter. + * + * @returns {string} the key without the brackets. + */ +function removeBrackets(key) { + return utils.endsWith(key, '[]') ? key.slice(0, -2) : key; +} + +/** + * It takes a path, a key, and a boolean, and returns a string + * + * @param {string} path - The path to the current key. + * @param {string} key - The key of the current object being iterated over. + * @param {string} dots - If true, the key will be rendered with dots instead of brackets. + * + * @returns {string} The path to the current key. + */ +function renderKey(path, key, dots) { + if (!path) return key; + return path.concat(key).map(function each(token, i) { + // eslint-disable-next-line no-param-reassign + token = removeBrackets(token); + return !dots && i ? '[' + token + ']' : token; + }).join(dots ? '.' : ''); +} + +/** + * If the array is an array and none of its elements are visitable, then it's a flat array. + * + * @param {Array} arr - The array to check + * + * @returns {boolean} + */ +function isFlatArray(arr) { + return utils.isArray(arr) && !arr.some(isVisitable); +} + +const predicates = utils.toFlatObject(utils, {}, null, function filter(prop) { + return /^is[A-Z]/.test(prop); +}); + +/** + * If the thing is a FormData object, return true, otherwise return false. + * + * @param {unknown} thing - The thing to check. + * + * @returns {boolean} + */ +function isSpecCompliant(thing) { + return thing && utils.isFunction(thing.append) && thing[Symbol.toStringTag] === 'FormData' && thing[Symbol.iterator]; +} + +/** + * Convert a data object to FormData + * + * @param {Object} obj + * @param {?Object} [formData] + * @param {?Object} [options] + * @param {Function} [options.visitor] + * @param {Boolean} [options.metaTokens = true] + * @param {Boolean} [options.dots = false] + * @param {?Boolean} [options.indexes = false] + * + * @returns {Object} + **/ + +/** + * It converts an object into a FormData object + * + * @param {Object} obj - The object to convert to form data. + * @param {string} formData - The FormData object to append to. + * @param {Object} options + * + * @returns + */ +function toFormData(obj, formData, options) { + if (!utils.isObject(obj)) { + throw new TypeError('target must be an object'); + } + + // eslint-disable-next-line no-param-reassign + formData = formData || new (envFormData || FormData)(); + + // eslint-disable-next-line no-param-reassign + options = utils.toFlatObject(options, { + metaTokens: true, + dots: false, + indexes: false + }, false, function defined(option, source) { + // eslint-disable-next-line no-eq-null,eqeqeq + return !utils.isUndefined(source[option]); + }); + + const metaTokens = options.metaTokens; + // eslint-disable-next-line no-use-before-define + const visitor = options.visitor || defaultVisitor; + const dots = options.dots; + const indexes = options.indexes; + const _Blob = options.Blob || typeof Blob !== 'undefined' && Blob; + const useBlob = _Blob && isSpecCompliant(formData); + + if (!utils.isFunction(visitor)) { + throw new TypeError('visitor must be a function'); + } + + function convertValue(value) { + if (value === null) return ''; + + if (utils.isDate(value)) { + return value.toISOString(); + } + + if (!useBlob && utils.isBlob(value)) { + throw new AxiosError('Blob is not supported. Use a Buffer instead.'); + } + + if (utils.isArrayBuffer(value) || utils.isTypedArray(value)) { + return useBlob && typeof Blob === 'function' ? new Blob([value]) : Buffer.from(value); + } + + return value; + } + + /** + * Default visitor. + * + * @param {*} value + * @param {String|Number} key + * @param {Array} path + * @this {FormData} + * + * @returns {boolean} return true to visit the each prop of the value recursively + */ + function defaultVisitor(value, key, path) { + let arr = value; + + if (value && !path && typeof value === 'object') { + if (utils.endsWith(key, '{}')) { + // eslint-disable-next-line no-param-reassign + key = metaTokens ? key : key.slice(0, -2); + // eslint-disable-next-line no-param-reassign + value = JSON.stringify(value); + } else if ( + (utils.isArray(value) && isFlatArray(value)) || + (utils.isFileList(value) || utils.endsWith(key, '[]') && (arr = utils.toArray(value)) + )) { + // eslint-disable-next-line no-param-reassign + key = removeBrackets(key); + + arr.forEach(function each(el, index) { + !utils.isUndefined(el) && formData.append( + // eslint-disable-next-line no-nested-ternary + indexes === true ? renderKey([key], index, dots) : (indexes === null ? key : key + '[]'), + convertValue(el) + ); + }); + return false; + } + } + + if (isVisitable(value)) { + return true; + } + + formData.append(renderKey(path, key, dots), convertValue(value)); + + return false; + } + + const stack = []; + + const exposedHelpers = Object.assign(predicates, { + defaultVisitor, + convertValue, + isVisitable + }); + + function build(value, path) { + if (utils.isUndefined(value)) return; + + if (stack.indexOf(value) !== -1) { + throw Error('Circular reference detected in ' + path.join('.')); + } + + stack.push(value); + + utils.forEach(value, function each(el, key) { + const result = !utils.isUndefined(el) && visitor.call( + formData, el, utils.isString(key) ? key.trim() : key, path, exposedHelpers + ); + + if (result === true) { + build(el, path ? path.concat(key) : [key]); + } + }); + + stack.pop(); + } + + if (!utils.isObject(obj)) { + throw new TypeError('data must be an object'); + } + + build(obj); + + return formData; +} + +export default toFormData; diff --git a/node_modules/axios/lib/helpers/toURLEncodedForm.js b/node_modules/axios/lib/helpers/toURLEncodedForm.js new file mode 100644 index 000000000..988a38a16 --- /dev/null +++ b/node_modules/axios/lib/helpers/toURLEncodedForm.js @@ -0,0 +1,18 @@ +'use strict'; + +import utils from '../utils.js'; +import toFormData from './toFormData.js'; +import platform from '../platform/index.js'; + +export default function toURLEncodedForm(data, options) { + return toFormData(data, new platform.classes.URLSearchParams(), Object.assign({ + visitor: function(value, key, path, helpers) { + if (platform.isNode && utils.isBuffer(value)) { + this.append(key, value.toString('base64')); + return false; + } + + return helpers.defaultVisitor.apply(this, arguments); + } + }, options)); +} diff --git a/node_modules/axios/lib/helpers/validator.js b/node_modules/axios/lib/helpers/validator.js new file mode 100644 index 000000000..14b469600 --- /dev/null +++ b/node_modules/axios/lib/helpers/validator.js @@ -0,0 +1,91 @@ +'use strict'; + +import {VERSION} from '../env/data.js'; +import AxiosError from '../core/AxiosError.js'; + +const validators = {}; + +// eslint-disable-next-line func-names +['object', 'boolean', 'number', 'function', 'string', 'symbol'].forEach((type, i) => { + validators[type] = function validator(thing) { + return typeof thing === type || 'a' + (i < 1 ? 'n ' : ' ') + type; + }; +}); + +const deprecatedWarnings = {}; + +/** + * Transitional option validator + * + * @param {function|boolean?} validator - set to false if the transitional option has been removed + * @param {string?} version - deprecated version / removed since version + * @param {string?} message - some message with additional info + * + * @returns {function} + */ +validators.transitional = function transitional(validator, version, message) { + function formatMessage(opt, desc) { + return '[Axios v' + VERSION + '] Transitional option \'' + opt + '\'' + desc + (message ? '. ' + message : ''); + } + + // eslint-disable-next-line func-names + return (value, opt, opts) => { + if (validator === false) { + throw new AxiosError( + formatMessage(opt, ' has been removed' + (version ? ' in ' + version : '')), + AxiosError.ERR_DEPRECATED + ); + } + + if (version && !deprecatedWarnings[opt]) { + deprecatedWarnings[opt] = true; + // eslint-disable-next-line no-console + console.warn( + formatMessage( + opt, + ' has been deprecated since v' + version + ' and will be removed in the near future' + ) + ); + } + + return validator ? validator(value, opt, opts) : true; + }; +}; + +/** + * Assert object's properties type + * + * @param {object} options + * @param {object} schema + * @param {boolean?} allowUnknown + * + * @returns {object} + */ + +function assertOptions(options, schema, allowUnknown) { + if (typeof options !== 'object') { + throw new AxiosError('options must be an object', AxiosError.ERR_BAD_OPTION_VALUE); + } + const keys = Object.keys(options); + let i = keys.length; + while (i-- > 0) { + const opt = keys[i]; + const validator = schema[opt]; + if (validator) { + const value = options[opt]; + const result = value === undefined || validator(value, opt, options); + if (result !== true) { + throw new AxiosError('option ' + opt + ' must be ' + result, AxiosError.ERR_BAD_OPTION_VALUE); + } + continue; + } + if (allowUnknown !== true) { + throw new AxiosError('Unknown option ' + opt, AxiosError.ERR_BAD_OPTION); + } + } +} + +export default { + assertOptions, + validators +}; diff --git a/node_modules/axios/lib/platform/browser/classes/FormData.js b/node_modules/axios/lib/platform/browser/classes/FormData.js new file mode 100644 index 000000000..436905648 --- /dev/null +++ b/node_modules/axios/lib/platform/browser/classes/FormData.js @@ -0,0 +1,3 @@ +'use strict'; + +export default FormData; diff --git a/node_modules/axios/lib/platform/browser/classes/URLSearchParams.js b/node_modules/axios/lib/platform/browser/classes/URLSearchParams.js new file mode 100644 index 000000000..b7dae9533 --- /dev/null +++ b/node_modules/axios/lib/platform/browser/classes/URLSearchParams.js @@ -0,0 +1,4 @@ +'use strict'; + +import AxiosURLSearchParams from '../../../helpers/AxiosURLSearchParams.js'; +export default typeof URLSearchParams !== 'undefined' ? URLSearchParams : AxiosURLSearchParams; diff --git a/node_modules/axios/lib/platform/browser/index.js b/node_modules/axios/lib/platform/browser/index.js new file mode 100644 index 000000000..80284eb20 --- /dev/null +++ b/node_modules/axios/lib/platform/browser/index.js @@ -0,0 +1,43 @@ +import URLSearchParams from './classes/URLSearchParams.js' +import FormData from './classes/FormData.js' + +/** + * Determine if we're running in a standard browser environment + * + * This allows axios to run in a web worker, and react-native. + * Both environments support XMLHttpRequest, but not fully standard globals. + * + * web workers: + * typeof window -> undefined + * typeof document -> undefined + * + * react-native: + * navigator.product -> 'ReactNative' + * nativescript + * navigator.product -> 'NativeScript' or 'NS' + * + * @returns {boolean} + */ +const isStandardBrowserEnv = (() => { + let product; + if (typeof navigator !== 'undefined' && ( + (product = navigator.product) === 'ReactNative' || + product === 'NativeScript' || + product === 'NS') + ) { + return false; + } + + return typeof window !== 'undefined' && typeof document !== 'undefined'; +})(); + +export default { + isBrowser: true, + classes: { + URLSearchParams, + FormData, + Blob + }, + isStandardBrowserEnv, + protocols: ['http', 'https', 'file', 'blob', 'url', 'data'] +}; diff --git a/node_modules/axios/lib/platform/index.js b/node_modules/axios/lib/platform/index.js new file mode 100644 index 000000000..5e9d005f3 --- /dev/null +++ b/node_modules/axios/lib/platform/index.js @@ -0,0 +1,3 @@ +import platform from './node/index.js'; + +export {platform as default} diff --git a/node_modules/axios/lib/platform/node/classes/FormData.js b/node_modules/axios/lib/platform/node/classes/FormData.js new file mode 100644 index 000000000..b07f9476d --- /dev/null +++ b/node_modules/axios/lib/platform/node/classes/FormData.js @@ -0,0 +1,3 @@ +import FormData from 'form-data'; + +export default FormData; diff --git a/node_modules/axios/lib/platform/node/classes/URLSearchParams.js b/node_modules/axios/lib/platform/node/classes/URLSearchParams.js new file mode 100644 index 000000000..fba584289 --- /dev/null +++ b/node_modules/axios/lib/platform/node/classes/URLSearchParams.js @@ -0,0 +1,4 @@ +'use strict'; + +import url from 'url'; +export default url.URLSearchParams; diff --git a/node_modules/axios/lib/platform/node/index.js b/node_modules/axios/lib/platform/node/index.js new file mode 100644 index 000000000..aef514aa3 --- /dev/null +++ b/node_modules/axios/lib/platform/node/index.js @@ -0,0 +1,12 @@ +import URLSearchParams from './classes/URLSearchParams.js' +import FormData from './classes/FormData.js' + +export default { + isNode: true, + classes: { + URLSearchParams, + FormData, + Blob: typeof Blob !== 'undefined' && Blob || null + }, + protocols: [ 'http', 'https', 'file', 'data' ] +}; diff --git a/node_modules/axios/lib/utils.js b/node_modules/axios/lib/utils.js new file mode 100644 index 000000000..368070f61 --- /dev/null +++ b/node_modules/axios/lib/utils.js @@ -0,0 +1,613 @@ +'use strict'; + +import bind from './helpers/bind.js'; + +// utils is a library of generic helper functions non-specific to axios + +const {toString} = Object.prototype; +const {getPrototypeOf} = Object; + +const kindOf = (cache => thing => { + const str = toString.call(thing); + return cache[str] || (cache[str] = str.slice(8, -1).toLowerCase()); +})(Object.create(null)); + +const kindOfTest = (type) => { + type = type.toLowerCase(); + return (thing) => kindOf(thing) === type +} + +const typeOfTest = type => thing => typeof thing === type; + +/** + * Determine if a value is an Array + * + * @param {Object} val The value to test + * + * @returns {boolean} True if value is an Array, otherwise false + */ +const {isArray} = Array; + +/** + * Determine if a value is undefined + * + * @param {*} val The value to test + * + * @returns {boolean} True if the value is undefined, otherwise false + */ +const isUndefined = typeOfTest('undefined'); + +/** + * Determine if a value is a Buffer + * + * @param {*} val The value to test + * + * @returns {boolean} True if value is a Buffer, otherwise false + */ +function isBuffer(val) { + return val !== null && !isUndefined(val) && val.constructor !== null && !isUndefined(val.constructor) + && isFunction(val.constructor.isBuffer) && val.constructor.isBuffer(val); +} + +/** + * Determine if a value is an ArrayBuffer + * + * @param {*} val The value to test + * + * @returns {boolean} True if value is an ArrayBuffer, otherwise false + */ +const isArrayBuffer = kindOfTest('ArrayBuffer'); + + +/** + * Determine if a value is a view on an ArrayBuffer + * + * @param {*} val The value to test + * + * @returns {boolean} True if value is a view on an ArrayBuffer, otherwise false + */ +function isArrayBufferView(val) { + let result; + if ((typeof ArrayBuffer !== 'undefined') && (ArrayBuffer.isView)) { + result = ArrayBuffer.isView(val); + } else { + result = (val) && (val.buffer) && (isArrayBuffer(val.buffer)); + } + return result; +} + +/** + * Determine if a value is a String + * + * @param {*} val The value to test + * + * @returns {boolean} True if value is a String, otherwise false + */ +const isString = typeOfTest('string'); + +/** + * Determine if a value is a Function + * + * @param {*} val The value to test + * @returns {boolean} True if value is a Function, otherwise false + */ +const isFunction = typeOfTest('function'); + +/** + * Determine if a value is a Number + * + * @param {*} val The value to test + * + * @returns {boolean} True if value is a Number, otherwise false + */ +const isNumber = typeOfTest('number'); + +/** + * Determine if a value is an Object + * + * @param {*} thing The value to test + * + * @returns {boolean} True if value is an Object, otherwise false + */ +const isObject = (thing) => thing !== null && typeof thing === 'object'; + +/** + * Determine if a value is a Boolean + * + * @param {*} thing The value to test + * @returns {boolean} True if value is a Boolean, otherwise false + */ +const isBoolean = thing => thing === true || thing === false; + +/** + * Determine if a value is a plain Object + * + * @param {*} val The value to test + * + * @returns {boolean} True if value is a plain Object, otherwise false + */ +const isPlainObject = (val) => { + if (kindOf(val) !== 'object') { + return false; + } + + const prototype = getPrototypeOf(val); + return prototype === null || prototype === Object.prototype; +} + +/** + * Determine if a value is a Date + * + * @param {*} val The value to test + * + * @returns {boolean} True if value is a Date, otherwise false + */ +const isDate = kindOfTest('Date'); + +/** + * Determine if a value is a File + * + * @param {*} val The value to test + * + * @returns {boolean} True if value is a File, otherwise false + */ +const isFile = kindOfTest('File'); + +/** + * Determine if a value is a Blob + * + * @param {*} val The value to test + * + * @returns {boolean} True if value is a Blob, otherwise false + */ +const isBlob = kindOfTest('Blob'); + +/** + * Determine if a value is a FileList + * + * @param {*} val The value to test + * + * @returns {boolean} True if value is a File, otherwise false + */ +const isFileList = kindOfTest('FileList'); + +/** + * Determine if a value is a Stream + * + * @param {*} val The value to test + * + * @returns {boolean} True if value is a Stream, otherwise false + */ +const isStream = (val) => isObject(val) && isFunction(val.pipe); + +/** + * Determine if a value is a FormData + * + * @param {*} thing The value to test + * + * @returns {boolean} True if value is an FormData, otherwise false + */ +const isFormData = (thing) => { + const pattern = '[object FormData]'; + return thing && ( + (typeof FormData === 'function' && thing instanceof FormData) || + toString.call(thing) === pattern || + (isFunction(thing.toString) && thing.toString() === pattern) + ); +} + +/** + * Determine if a value is a URLSearchParams object + * + * @param {*} val The value to test + * + * @returns {boolean} True if value is a URLSearchParams object, otherwise false + */ +const isURLSearchParams = kindOfTest('URLSearchParams'); + +/** + * Trim excess whitespace off the beginning and end of a string + * + * @param {String} str The String to trim + * + * @returns {String} The String freed of excess whitespace + */ +const trim = (str) => str.trim ? + str.trim() : str.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, ''); + +/** + * Iterate over an Array or an Object invoking a function for each item. + * + * If `obj` is an Array callback will be called passing + * the value, index, and complete array for each item. + * + * If 'obj' is an Object callback will be called passing + * the value, key, and complete object for each property. + * + * @param {Object|Array} obj The object to iterate + * @param {Function} fn The callback to invoke for each item + * + * @param {Boolean} [allOwnKeys = false] + * @returns {void} + */ +function forEach(obj, fn, {allOwnKeys = false} = {}) { + // Don't bother if no value provided + if (obj === null || typeof obj === 'undefined') { + return; + } + + let i; + let l; + + // Force an array if not already something iterable + if (typeof obj !== 'object') { + /*eslint no-param-reassign:0*/ + obj = [obj]; + } + + if (isArray(obj)) { + // Iterate over array values + for (i = 0, l = obj.length; i < l; i++) { + fn.call(null, obj[i], i, obj); + } + } else { + // Iterate over object keys + const keys = allOwnKeys ? Object.getOwnPropertyNames(obj) : Object.keys(obj); + const len = keys.length; + let key; + + for (i = 0; i < len; i++) { + key = keys[i]; + fn.call(null, obj[key], key, obj); + } + } +} + +/** + * Accepts varargs expecting each argument to be an object, then + * immutably merges the properties of each object and returns result. + * + * When multiple objects contain the same key the later object in + * the arguments list will take precedence. + * + * Example: + * + * ```js + * var result = merge({foo: 123}, {foo: 456}); + * console.log(result.foo); // outputs 456 + * ``` + * + * @param {Object} obj1 Object to merge + * + * @returns {Object} Result of all merge properties + */ +function merge(/* obj1, obj2, obj3, ... */) { + const result = {}; + const assignValue = (val, key) => { + if (isPlainObject(result[key]) && isPlainObject(val)) { + result[key] = merge(result[key], val); + } else if (isPlainObject(val)) { + result[key] = merge({}, val); + } else if (isArray(val)) { + result[key] = val.slice(); + } else { + result[key] = val; + } + } + + for (let i = 0, l = arguments.length; i < l; i++) { + arguments[i] && forEach(arguments[i], assignValue); + } + return result; +} + +/** + * Extends object a by mutably adding to it the properties of object b. + * + * @param {Object} a The object to be extended + * @param {Object} b The object to copy properties from + * @param {Object} thisArg The object to bind function to + * + * @param {Boolean} [allOwnKeys] + * @returns {Object} The resulting value of object a + */ +const extend = (a, b, thisArg, {allOwnKeys}= {}) => { + forEach(b, (val, key) => { + if (thisArg && isFunction(val)) { + a[key] = bind(val, thisArg); + } else { + a[key] = val; + } + }, {allOwnKeys}); + return a; +} + +/** + * Remove byte order marker. This catches EF BB BF (the UTF-8 BOM) + * + * @param {string} content with BOM + * + * @returns {string} content value without BOM + */ +const stripBOM = (content) => { + if (content.charCodeAt(0) === 0xFEFF) { + content = content.slice(1); + } + return content; +} + +/** + * Inherit the prototype methods from one constructor into another + * @param {function} constructor + * @param {function} superConstructor + * @param {object} [props] + * @param {object} [descriptors] + * + * @returns {void} + */ +const inherits = (constructor, superConstructor, props, descriptors) => { + constructor.prototype = Object.create(superConstructor.prototype, descriptors); + constructor.prototype.constructor = constructor; + Object.defineProperty(constructor, 'super', { + value: superConstructor.prototype + }); + props && Object.assign(constructor.prototype, props); +} + +/** + * Resolve object with deep prototype chain to a flat object + * @param {Object} sourceObj source object + * @param {Object} [destObj] + * @param {Function|Boolean} [filter] + * @param {Function} [propFilter] + * + * @returns {Object} + */ +const toFlatObject = (sourceObj, destObj, filter, propFilter) => { + let props; + let i; + let prop; + const merged = {}; + + destObj = destObj || {}; + // eslint-disable-next-line no-eq-null,eqeqeq + if (sourceObj == null) return destObj; + + do { + props = Object.getOwnPropertyNames(sourceObj); + i = props.length; + while (i-- > 0) { + prop = props[i]; + if ((!propFilter || propFilter(prop, sourceObj, destObj)) && !merged[prop]) { + destObj[prop] = sourceObj[prop]; + merged[prop] = true; + } + } + sourceObj = filter !== false && getPrototypeOf(sourceObj); + } while (sourceObj && (!filter || filter(sourceObj, destObj)) && sourceObj !== Object.prototype); + + return destObj; +} + +/** + * Determines whether a string ends with the characters of a specified string + * + * @param {String} str + * @param {String} searchString + * @param {Number} [position= 0] + * + * @returns {boolean} + */ +const endsWith = (str, searchString, position) => { + str = String(str); + if (position === undefined || position > str.length) { + position = str.length; + } + position -= searchString.length; + const lastIndex = str.indexOf(searchString, position); + return lastIndex !== -1 && lastIndex === position; +} + + +/** + * Returns new array from array like object or null if failed + * + * @param {*} [thing] + * + * @returns {?Array} + */ +const toArray = (thing) => { + if (!thing) return null; + if (isArray(thing)) return thing; + let i = thing.length; + if (!isNumber(i)) return null; + const arr = new Array(i); + while (i-- > 0) { + arr[i] = thing[i]; + } + return arr; +} + +/** + * Checking if the Uint8Array exists and if it does, it returns a function that checks if the + * thing passed in is an instance of Uint8Array + * + * @param {TypedArray} + * + * @returns {Array} + */ +// eslint-disable-next-line func-names +const isTypedArray = (TypedArray => { + // eslint-disable-next-line func-names + return thing => { + return TypedArray && thing instanceof TypedArray; + }; +})(typeof Uint8Array !== 'undefined' && getPrototypeOf(Uint8Array)); + +/** + * For each entry in the object, call the function with the key and value. + * + * @param {Object} obj - The object to iterate over. + * @param {Function} fn - The function to call for each entry. + * + * @returns {void} + */ +const forEachEntry = (obj, fn) => { + const generator = obj && obj[Symbol.iterator]; + + const iterator = generator.call(obj); + + let result; + + while ((result = iterator.next()) && !result.done) { + const pair = result.value; + fn.call(obj, pair[0], pair[1]); + } +} + +/** + * It takes a regular expression and a string, and returns an array of all the matches + * + * @param {string} regExp - The regular expression to match against. + * @param {string} str - The string to search. + * + * @returns {Array} + */ +const matchAll = (regExp, str) => { + let matches; + const arr = []; + + while ((matches = regExp.exec(str)) !== null) { + arr.push(matches); + } + + return arr; +} + +/* Checking if the kindOfTest function returns true when passed an HTMLFormElement. */ +const isHTMLForm = kindOfTest('HTMLFormElement'); + +const toCamelCase = str => { + return str.toLowerCase().replace(/[_-\s]([a-z\d])(\w*)/g, + function replacer(m, p1, p2) { + return p1.toUpperCase() + p2; + } + ); +}; + +/* Creating a function that will check if an object has a property. */ +const hasOwnProperty = (({hasOwnProperty}) => (obj, prop) => hasOwnProperty.call(obj, prop))(Object.prototype); + +/** + * Determine if a value is a RegExp object + * + * @param {*} val The value to test + * + * @returns {boolean} True if value is a RegExp object, otherwise false + */ +const isRegExp = kindOfTest('RegExp'); + +const reduceDescriptors = (obj, reducer) => { + const descriptors = Object.getOwnPropertyDescriptors(obj); + const reducedDescriptors = {}; + + forEach(descriptors, (descriptor, name) => { + if (reducer(descriptor, name, obj) !== false) { + reducedDescriptors[name] = descriptor; + } + }); + + Object.defineProperties(obj, reducedDescriptors); +} + +/** + * Makes all methods read-only + * @param {Object} obj + */ + +const freezeMethods = (obj) => { + reduceDescriptors(obj, (descriptor, name) => { + const value = obj[name]; + + if (!isFunction(value)) return; + + descriptor.enumerable = false; + + if ('writable' in descriptor) { + descriptor.writable = false; + return; + } + + if (!descriptor.set) { + descriptor.set = () => { + throw Error('Can not read-only method \'' + name + '\''); + }; + } + }); +} + +const toObjectSet = (arrayOrString, delimiter) => { + const obj = {}; + + const define = (arr) => { + arr.forEach(value => { + obj[value] = true; + }); + } + + isArray(arrayOrString) ? define(arrayOrString) : define(String(arrayOrString).split(delimiter)); + + return obj; +} + +const noop = () => {} + +const toFiniteNumber = (value, defaultValue) => { + value = +value; + return Number.isFinite(value) ? value : defaultValue; +} + +export default { + isArray, + isArrayBuffer, + isBuffer, + isFormData, + isArrayBufferView, + isString, + isNumber, + isBoolean, + isObject, + isPlainObject, + isUndefined, + isDate, + isFile, + isBlob, + isRegExp, + isFunction, + isStream, + isURLSearchParams, + isTypedArray, + isFileList, + forEach, + merge, + extend, + trim, + stripBOM, + inherits, + toFlatObject, + kindOf, + kindOfTest, + endsWith, + toArray, + forEachEntry, + matchAll, + isHTMLForm, + hasOwnProperty, + hasOwnProp: hasOwnProperty, // an alias to avoid ESLint no-prototype-builtins detection + reduceDescriptors, + freezeMethods, + toObjectSet, + toCamelCase, + noop, + toFiniteNumber +}; diff --git a/node_modules/axios/package.json b/node_modules/axios/package.json new file mode 100644 index 000000000..c5b4c94a1 --- /dev/null +++ b/node_modules/axios/package.json @@ -0,0 +1,133 @@ +{ + "name": "axios", + "version": "1.0.0", + "description": "Promise based HTTP client for the browser and node.js", + "main": "index.js", + "exports": { + ".": { + "browser": { + "require": "./index.js", + "default": "./index.js" + }, + "default": { + "require": "./dist/node/axios.cjs", + "default": "./index.js" + } + } + }, + "type": "module", + "types": "index.d.ts", + "scripts": { + "test": "npm run test:eslint && npm run test:mocha && npm run test:karma && npm run test:dtslint", + "test:eslint": "node bin/ssl_hotfix.js eslint lib/**/*.js", + "test:dtslint": "node bin/ssl_hotfix.js dtslint", + "test:mocha": "node bin/ssl_hotfix.js mocha test/unit/**/*.js --timeout 30000 --exit", + "test:karma": "node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: karma start karma.conf.cjs --single-run", + "test:karma:server": "node bin/ssl_hotfix.js cross-env karma start karma.conf.cjs", + "start": "node ./sandbox/server.js", + "preversion": "gulp version && npm test", + "version": "npm run build && git add dist && git add package.json", + "prepublishOnly": "npm test", + "postpublish": "git push && git push --tags", + "build": "gulp clear && cross-env NODE_ENV=production rollup -c -m", + "examples": "node ./examples/server.js", + "coveralls": "cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js", + "fix": "eslint --fix lib/**/*.js" + }, + "repository": { + "type": "git", + "url": "https://github.com/axios/axios.git" + }, + "keywords": [ + "xhr", + "http", + "ajax", + "promise", + "node" + ], + "author": "Matt Zabriskie", + "license": "MIT", + "bugs": { + "url": "https://github.com/axios/axios/issues" + }, + "homepage": "https://axios-http.com", + "devDependencies": { + "@babel/preset-env": "^7.18.2", + "@rollup/plugin-babel": "^5.3.1", + "@rollup/plugin-commonjs": "^15.1.0", + "@rollup/plugin-json": "^4.1.0", + "@rollup/plugin-multi-entry": "^4.0.0", + "@rollup/plugin-node-resolve": "^9.0.0", + "abortcontroller-polyfill": "^1.7.3", + "body-parser": "^1.20.0", + "coveralls": "^3.1.1", + "cross-env": "^7.0.3", + "dev-null": "^0.1.1", + "dtslint": "^4.2.1", + "es6-promise": "^4.2.8", + "eslint": "^8.17.0", + "express": "^4.18.1", + "formidable": "^2.0.1", + "fs-extra": "^10.1.0", + "get-stream": "^3.0.0", + "gulp": "^4.0.2", + "istanbul-instrumenter-loader": "^3.0.1", + "jasmine-core": "^2.4.1", + "karma": "^6.3.17", + "karma-chrome-launcher": "^3.1.1", + "karma-firefox-launcher": "^2.1.2", + "karma-jasmine": "^1.1.1", + "karma-jasmine-ajax": "^0.1.13", + "karma-rollup-preprocessor": "^7.0.8", + "karma-safari-launcher": "^1.0.0", + "karma-sauce-launcher": "^4.3.6", + "karma-sinon": "^1.0.5", + "karma-sourcemap-loader": "^0.3.8", + "minimist": "^1.2.6", + "mocha": "^10.0.0", + "multer": "^1.4.4", + "rollup": "^2.67.0", + "rollup-plugin-auto-external": "^2.0.0", + "rollup-plugin-bundle-size": "^1.0.3", + "rollup-plugin-terser": "^7.0.2", + "sinon": "^4.5.0", + "stream-throttle": "^0.1.3", + "terser-webpack-plugin": "^4.2.3", + "typescript": "^4.6.3", + "url-search-params": "^0.10.0" + }, + "browser": { + "./lib/adapters/http.js": "./lib/adapters/xhr.js", + "./lib/platform/node/index.js": "./lib/platform/browser/index.js" + }, + "jsdelivr": "dist/axios.min.js", + "unpkg": "dist/axios.min.js", + "typings": "./index.d.ts", + "dependencies": { + "follow-redirects": "^1.15.0", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" + }, + "bundlesize": [ + { + "path": "./dist/axios.min.js", + "threshold": "5kB" + } + ], + "contributors": [ + "Matt Zabriskie (https://github.com/mzabriskie)", + "Nick Uraltsev (https://github.com/nickuraltsev)", + "Jay (https://github.com/jasonsaayman)", + "Dmitriy Mozgovoy (https://github.com/DigitalBrainJS)", + "Emily Morehouse (https://github.com/emilyemorehouse)", + "Rubén Norte (https://github.com/rubennorte)", + "Justin Beckwith (https://github.com/JustinBeckwith)", + "Martti Laine (https://github.com/codeclown)", + "Xianming Zhong (https://github.com/chinesedfan)", + "Rikki Gibson (https://github.com/RikkiGibson)", + "Remco Haszing (https://github.com/remcohaszing)", + "Yasu Flores (https://github.com/yasuf)", + "Ben Carp (https://github.com/carpben)", + "Daniel Lopretto (https://github.com/timemachine3030)" + ] +} \ No newline at end of file diff --git a/node_modules/axios/rollup.config.js b/node_modules/axios/rollup.config.js new file mode 100644 index 000000000..9fd12d1ba --- /dev/null +++ b/node_modules/axios/rollup.config.js @@ -0,0 +1,90 @@ +import resolve from '@rollup/plugin-node-resolve'; +import commonjs from '@rollup/plugin-commonjs'; +import {terser} from "rollup-plugin-terser"; +import json from '@rollup/plugin-json'; +import { babel } from '@rollup/plugin-babel'; +import autoExternal from 'rollup-plugin-auto-external'; +import bundleSize from 'rollup-plugin-bundle-size' + +const lib = require("./package.json"); +const outputFileName = 'axios'; +const name = "axios"; +const input = './lib/axios.js'; + +const buildConfig = ({es5, browser = true, minifiedVersion = true, ...config}) => { + + const build = ({minified}) => ({ + input, + ...config, + output: { + ...config.output, + file: `${config.output.file}.${minified ? "min.js" : "js"}` + }, + plugins: [ + json(), + resolve({browser}), + commonjs(), + minified && terser(), + minified && bundleSize(), + ...(es5 ? [babel({ + babelHelpers: 'bundled', + presets: ['@babel/preset-env'] + })] : []), + ...(config.plugins || []), + ] + }); + + const configs = [ + build({minified: false}), + ]; + + if (minifiedVersion) { + configs.push(build({minified: true})) + } + + return configs; +}; + +export default async () => { + const year = new Date().getFullYear(); + const banner = `// Axios v${lib.version} Copyright (c) ${year} ${lib.author} and contributors`; + + return [ + ...buildConfig({ + es5: true, + output: { + file: `dist/${outputFileName}`, + name, + format: "umd", + exports: "default", + banner + } + }), + + ...buildConfig({ + output: { + file: `dist/esm/${outputFileName}`, + format: "esm", + preferConst: true, + exports: "named", + banner + } + }), + // Node.js commonjs build + { + input, + output: { + file: `dist/node/${name}.cjs`, + format: "cjs", + preferConst: true, + exports: "default", + banner + }, + plugins: [ + autoExternal(), + resolve(), + commonjs() + ] + } + ] +}; diff --git a/node_modules/axios/tsconfig.json b/node_modules/axios/tsconfig.json new file mode 100644 index 000000000..666518825 --- /dev/null +++ b/node_modules/axios/tsconfig.json @@ -0,0 +1,14 @@ +{ + "compilerOptions": { + "module": "es2015", + "lib": ["dom", "es2015"], + "types": [], + "moduleResolution": "node", + "strict": true, + "noEmit": true, + "baseUrl": ".", + "paths": { + "axios": ["."] + } + } +} diff --git a/node_modules/axios/tslint.json b/node_modules/axios/tslint.json new file mode 100644 index 000000000..3ec44a760 --- /dev/null +++ b/node_modules/axios/tslint.json @@ -0,0 +1,6 @@ +{ + "extends": "dtslint/dtslint.json", + "rules": { + "no-unnecessary-generics": false + } +} diff --git a/node_modules/combined-stream/License b/node_modules/combined-stream/License new file mode 100644 index 000000000..4804b7ab4 --- /dev/null +++ b/node_modules/combined-stream/License @@ -0,0 +1,19 @@ +Copyright (c) 2011 Debuggable Limited + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/node_modules/combined-stream/Readme.md b/node_modules/combined-stream/Readme.md new file mode 100644 index 000000000..9e367b5bc --- /dev/null +++ b/node_modules/combined-stream/Readme.md @@ -0,0 +1,138 @@ +# combined-stream + +A stream that emits multiple other streams one after another. + +**NB** Currently `combined-stream` works with streams version 1 only. There is ongoing effort to switch this library to streams version 2. Any help is welcome. :) Meanwhile you can explore other libraries that provide streams2 support with more or less compatibility with `combined-stream`. + +- [combined-stream2](https://www.npmjs.com/package/combined-stream2): A drop-in streams2-compatible replacement for the combined-stream module. + +- [multistream](https://www.npmjs.com/package/multistream): A stream that emits multiple other streams one after another. + +## Installation + +``` bash +npm install combined-stream +``` + +## Usage + +Here is a simple example that shows how you can use combined-stream to combine +two files into one: + +``` javascript +var CombinedStream = require('combined-stream'); +var fs = require('fs'); + +var combinedStream = CombinedStream.create(); +combinedStream.append(fs.createReadStream('file1.txt')); +combinedStream.append(fs.createReadStream('file2.txt')); + +combinedStream.pipe(fs.createWriteStream('combined.txt')); +``` + +While the example above works great, it will pause all source streams until +they are needed. If you don't want that to happen, you can set `pauseStreams` +to `false`: + +``` javascript +var CombinedStream = require('combined-stream'); +var fs = require('fs'); + +var combinedStream = CombinedStream.create({pauseStreams: false}); +combinedStream.append(fs.createReadStream('file1.txt')); +combinedStream.append(fs.createReadStream('file2.txt')); + +combinedStream.pipe(fs.createWriteStream('combined.txt')); +``` + +However, what if you don't have all the source streams yet, or you don't want +to allocate the resources (file descriptors, memory, etc.) for them right away? +Well, in that case you can simply provide a callback that supplies the stream +by calling a `next()` function: + +``` javascript +var CombinedStream = require('combined-stream'); +var fs = require('fs'); + +var combinedStream = CombinedStream.create(); +combinedStream.append(function(next) { + next(fs.createReadStream('file1.txt')); +}); +combinedStream.append(function(next) { + next(fs.createReadStream('file2.txt')); +}); + +combinedStream.pipe(fs.createWriteStream('combined.txt')); +``` + +## API + +### CombinedStream.create([options]) + +Returns a new combined stream object. Available options are: + +* `maxDataSize` +* `pauseStreams` + +The effect of those options is described below. + +### combinedStream.pauseStreams = `true` + +Whether to apply back pressure to the underlaying streams. If set to `false`, +the underlaying streams will never be paused. If set to `true`, the +underlaying streams will be paused right after being appended, as well as when +`delayedStream.pipe()` wants to throttle. + +### combinedStream.maxDataSize = `2 * 1024 * 1024` + +The maximum amount of bytes (or characters) to buffer for all source streams. +If this value is exceeded, `combinedStream` emits an `'error'` event. + +### combinedStream.dataSize = `0` + +The amount of bytes (or characters) currently buffered by `combinedStream`. + +### combinedStream.append(stream) + +Appends the given `stream` to the combinedStream object. If `pauseStreams` is +set to `true, this stream will also be paused right away. + +`streams` can also be a function that takes one parameter called `next`. `next` +is a function that must be invoked in order to provide the `next` stream, see +example above. + +Regardless of how the `stream` is appended, combined-stream always attaches an +`'error'` listener to it, so you don't have to do that manually. + +Special case: `stream` can also be a String or Buffer. + +### combinedStream.write(data) + +You should not call this, `combinedStream` takes care of piping the appended +streams into itself for you. + +### combinedStream.resume() + +Causes `combinedStream` to start drain the streams it manages. The function is +idempotent, and also emits a `'resume'` event each time which usually goes to +the stream that is currently being drained. + +### combinedStream.pause(); + +If `combinedStream.pauseStreams` is set to `false`, this does nothing. +Otherwise a `'pause'` event is emitted, this goes to the stream that is +currently being drained, so you can use it to apply back pressure. + +### combinedStream.end(); + +Sets `combinedStream.writable` to false, emits an `'end'` event, and removes +all streams from the queue. + +### combinedStream.destroy(); + +Same as `combinedStream.end()`, except it emits a `'close'` event instead of +`'end'`. + +## License + +combined-stream is licensed under the MIT license. diff --git a/node_modules/combined-stream/lib/combined_stream.js b/node_modules/combined-stream/lib/combined_stream.js new file mode 100644 index 000000000..125f097f3 --- /dev/null +++ b/node_modules/combined-stream/lib/combined_stream.js @@ -0,0 +1,208 @@ +var util = require('util'); +var Stream = require('stream').Stream; +var DelayedStream = require('delayed-stream'); + +module.exports = CombinedStream; +function CombinedStream() { + this.writable = false; + this.readable = true; + this.dataSize = 0; + this.maxDataSize = 2 * 1024 * 1024; + this.pauseStreams = true; + + this._released = false; + this._streams = []; + this._currentStream = null; + this._insideLoop = false; + this._pendingNext = false; +} +util.inherits(CombinedStream, Stream); + +CombinedStream.create = function(options) { + var combinedStream = new this(); + + options = options || {}; + for (var option in options) { + combinedStream[option] = options[option]; + } + + return combinedStream; +}; + +CombinedStream.isStreamLike = function(stream) { + return (typeof stream !== 'function') + && (typeof stream !== 'string') + && (typeof stream !== 'boolean') + && (typeof stream !== 'number') + && (!Buffer.isBuffer(stream)); +}; + +CombinedStream.prototype.append = function(stream) { + var isStreamLike = CombinedStream.isStreamLike(stream); + + if (isStreamLike) { + if (!(stream instanceof DelayedStream)) { + var newStream = DelayedStream.create(stream, { + maxDataSize: Infinity, + pauseStream: this.pauseStreams, + }); + stream.on('data', this._checkDataSize.bind(this)); + stream = newStream; + } + + this._handleErrors(stream); + + if (this.pauseStreams) { + stream.pause(); + } + } + + this._streams.push(stream); + return this; +}; + +CombinedStream.prototype.pipe = function(dest, options) { + Stream.prototype.pipe.call(this, dest, options); + this.resume(); + return dest; +}; + +CombinedStream.prototype._getNext = function() { + this._currentStream = null; + + if (this._insideLoop) { + this._pendingNext = true; + return; // defer call + } + + this._insideLoop = true; + try { + do { + this._pendingNext = false; + this._realGetNext(); + } while (this._pendingNext); + } finally { + this._insideLoop = false; + } +}; + +CombinedStream.prototype._realGetNext = function() { + var stream = this._streams.shift(); + + + if (typeof stream == 'undefined') { + this.end(); + return; + } + + if (typeof stream !== 'function') { + this._pipeNext(stream); + return; + } + + var getStream = stream; + getStream(function(stream) { + var isStreamLike = CombinedStream.isStreamLike(stream); + if (isStreamLike) { + stream.on('data', this._checkDataSize.bind(this)); + this._handleErrors(stream); + } + + this._pipeNext(stream); + }.bind(this)); +}; + +CombinedStream.prototype._pipeNext = function(stream) { + this._currentStream = stream; + + var isStreamLike = CombinedStream.isStreamLike(stream); + if (isStreamLike) { + stream.on('end', this._getNext.bind(this)); + stream.pipe(this, {end: false}); + return; + } + + var value = stream; + this.write(value); + this._getNext(); +}; + +CombinedStream.prototype._handleErrors = function(stream) { + var self = this; + stream.on('error', function(err) { + self._emitError(err); + }); +}; + +CombinedStream.prototype.write = function(data) { + this.emit('data', data); +}; + +CombinedStream.prototype.pause = function() { + if (!this.pauseStreams) { + return; + } + + if(this.pauseStreams && this._currentStream && typeof(this._currentStream.pause) == 'function') this._currentStream.pause(); + this.emit('pause'); +}; + +CombinedStream.prototype.resume = function() { + if (!this._released) { + this._released = true; + this.writable = true; + this._getNext(); + } + + if(this.pauseStreams && this._currentStream && typeof(this._currentStream.resume) == 'function') this._currentStream.resume(); + this.emit('resume'); +}; + +CombinedStream.prototype.end = function() { + this._reset(); + this.emit('end'); +}; + +CombinedStream.prototype.destroy = function() { + this._reset(); + this.emit('close'); +}; + +CombinedStream.prototype._reset = function() { + this.writable = false; + this._streams = []; + this._currentStream = null; +}; + +CombinedStream.prototype._checkDataSize = function() { + this._updateDataSize(); + if (this.dataSize <= this.maxDataSize) { + return; + } + + var message = + 'DelayedStream#maxDataSize of ' + this.maxDataSize + ' bytes exceeded.'; + this._emitError(new Error(message)); +}; + +CombinedStream.prototype._updateDataSize = function() { + this.dataSize = 0; + + var self = this; + this._streams.forEach(function(stream) { + if (!stream.dataSize) { + return; + } + + self.dataSize += stream.dataSize; + }); + + if (this._currentStream && this._currentStream.dataSize) { + this.dataSize += this._currentStream.dataSize; + } +}; + +CombinedStream.prototype._emitError = function(err) { + this._reset(); + this.emit('error', err); +}; diff --git a/node_modules/combined-stream/package.json b/node_modules/combined-stream/package.json new file mode 100644 index 000000000..6982b6da1 --- /dev/null +++ b/node_modules/combined-stream/package.json @@ -0,0 +1,25 @@ +{ + "author": "Felix Geisendörfer (http://debuggable.com/)", + "name": "combined-stream", + "description": "A stream that emits multiple other streams one after another.", + "version": "1.0.8", + "homepage": "https://github.com/felixge/node-combined-stream", + "repository": { + "type": "git", + "url": "git://github.com/felixge/node-combined-stream.git" + }, + "main": "./lib/combined_stream", + "scripts": { + "test": "node test/run.js" + }, + "engines": { + "node": ">= 0.8" + }, + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "devDependencies": { + "far": "~0.0.7" + }, + "license": "MIT" +} diff --git a/node_modules/combined-stream/yarn.lock b/node_modules/combined-stream/yarn.lock new file mode 100644 index 000000000..7edf41840 --- /dev/null +++ b/node_modules/combined-stream/yarn.lock @@ -0,0 +1,17 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +delayed-stream@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" + +far@~0.0.7: + version "0.0.7" + resolved "https://registry.yarnpkg.com/far/-/far-0.0.7.tgz#01c1fd362bcd26ce9cf161af3938aa34619f79a7" + dependencies: + oop "0.0.3" + +oop@0.0.3: + version "0.0.3" + resolved "https://registry.yarnpkg.com/oop/-/oop-0.0.3.tgz#70fa405a5650891a194fdc82ca68dad6dabf4401" diff --git a/node_modules/delayed-stream/.npmignore b/node_modules/delayed-stream/.npmignore new file mode 100644 index 000000000..9daeafb98 --- /dev/null +++ b/node_modules/delayed-stream/.npmignore @@ -0,0 +1 @@ +test diff --git a/node_modules/delayed-stream/License b/node_modules/delayed-stream/License new file mode 100644 index 000000000..4804b7ab4 --- /dev/null +++ b/node_modules/delayed-stream/License @@ -0,0 +1,19 @@ +Copyright (c) 2011 Debuggable Limited + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/node_modules/delayed-stream/Makefile b/node_modules/delayed-stream/Makefile new file mode 100644 index 000000000..b4ff85a33 --- /dev/null +++ b/node_modules/delayed-stream/Makefile @@ -0,0 +1,7 @@ +SHELL := /bin/bash + +test: + @./test/run.js + +.PHONY: test + diff --git a/node_modules/delayed-stream/Readme.md b/node_modules/delayed-stream/Readme.md new file mode 100644 index 000000000..aca36f9f0 --- /dev/null +++ b/node_modules/delayed-stream/Readme.md @@ -0,0 +1,141 @@ +# delayed-stream + +Buffers events from a stream until you are ready to handle them. + +## Installation + +``` bash +npm install delayed-stream +``` + +## Usage + +The following example shows how to write a http echo server that delays its +response by 1000 ms. + +``` javascript +var DelayedStream = require('delayed-stream'); +var http = require('http'); + +http.createServer(function(req, res) { + var delayed = DelayedStream.create(req); + + setTimeout(function() { + res.writeHead(200); + delayed.pipe(res); + }, 1000); +}); +``` + +If you are not using `Stream#pipe`, you can also manually release the buffered +events by calling `delayedStream.resume()`: + +``` javascript +var delayed = DelayedStream.create(req); + +setTimeout(function() { + // Emit all buffered events and resume underlaying source + delayed.resume(); +}, 1000); +``` + +## Implementation + +In order to use this meta stream properly, here are a few things you should +know about the implementation. + +### Event Buffering / Proxying + +All events of the `source` stream are hijacked by overwriting the `source.emit` +method. Until node implements a catch-all event listener, this is the only way. + +However, delayed-stream still continues to emit all events it captures on the +`source`, regardless of whether you have released the delayed stream yet or +not. + +Upon creation, delayed-stream captures all `source` events and stores them in +an internal event buffer. Once `delayedStream.release()` is called, all +buffered events are emitted on the `delayedStream`, and the event buffer is +cleared. After that, delayed-stream merely acts as a proxy for the underlaying +source. + +### Error handling + +Error events on `source` are buffered / proxied just like any other events. +However, `delayedStream.create` attaches a no-op `'error'` listener to the +`source`. This way you only have to handle errors on the `delayedStream` +object, rather than in two places. + +### Buffer limits + +delayed-stream provides a `maxDataSize` property that can be used to limit +the amount of data being buffered. In order to protect you from bad `source` +streams that don't react to `source.pause()`, this feature is enabled by +default. + +## API + +### DelayedStream.create(source, [options]) + +Returns a new `delayedStream`. Available options are: + +* `pauseStream` +* `maxDataSize` + +The description for those properties can be found below. + +### delayedStream.source + +The `source` stream managed by this object. This is useful if you are +passing your `delayedStream` around, and you still want to access properties +on the `source` object. + +### delayedStream.pauseStream = true + +Whether to pause the underlaying `source` when calling +`DelayedStream.create()`. Modifying this property afterwards has no effect. + +### delayedStream.maxDataSize = 1024 * 1024 + +The amount of data to buffer before emitting an `error`. + +If the underlaying source is emitting `Buffer` objects, the `maxDataSize` +refers to bytes. + +If the underlaying source is emitting JavaScript strings, the size refers to +characters. + +If you know what you are doing, you can set this property to `Infinity` to +disable this feature. You can also modify this property during runtime. + +### delayedStream.dataSize = 0 + +The amount of data buffered so far. + +### delayedStream.readable + +An ECMA5 getter that returns the value of `source.readable`. + +### delayedStream.resume() + +If the `delayedStream` has not been released so far, `delayedStream.release()` +is called. + +In either case, `source.resume()` is called. + +### delayedStream.pause() + +Calls `source.pause()`. + +### delayedStream.pipe(dest) + +Calls `delayedStream.resume()` and then proxies the arguments to `source.pipe`. + +### delayedStream.release() + +Emits and clears all events that have been buffered up so far. This does not +resume the underlaying source, use `delayedStream.resume()` instead. + +## License + +delayed-stream is licensed under the MIT license. diff --git a/node_modules/delayed-stream/lib/delayed_stream.js b/node_modules/delayed-stream/lib/delayed_stream.js new file mode 100644 index 000000000..b38fc85ff --- /dev/null +++ b/node_modules/delayed-stream/lib/delayed_stream.js @@ -0,0 +1,107 @@ +var Stream = require('stream').Stream; +var util = require('util'); + +module.exports = DelayedStream; +function DelayedStream() { + this.source = null; + this.dataSize = 0; + this.maxDataSize = 1024 * 1024; + this.pauseStream = true; + + this._maxDataSizeExceeded = false; + this._released = false; + this._bufferedEvents = []; +} +util.inherits(DelayedStream, Stream); + +DelayedStream.create = function(source, options) { + var delayedStream = new this(); + + options = options || {}; + for (var option in options) { + delayedStream[option] = options[option]; + } + + delayedStream.source = source; + + var realEmit = source.emit; + source.emit = function() { + delayedStream._handleEmit(arguments); + return realEmit.apply(source, arguments); + }; + + source.on('error', function() {}); + if (delayedStream.pauseStream) { + source.pause(); + } + + return delayedStream; +}; + +Object.defineProperty(DelayedStream.prototype, 'readable', { + configurable: true, + enumerable: true, + get: function() { + return this.source.readable; + } +}); + +DelayedStream.prototype.setEncoding = function() { + return this.source.setEncoding.apply(this.source, arguments); +}; + +DelayedStream.prototype.resume = function() { + if (!this._released) { + this.release(); + } + + this.source.resume(); +}; + +DelayedStream.prototype.pause = function() { + this.source.pause(); +}; + +DelayedStream.prototype.release = function() { + this._released = true; + + this._bufferedEvents.forEach(function(args) { + this.emit.apply(this, args); + }.bind(this)); + this._bufferedEvents = []; +}; + +DelayedStream.prototype.pipe = function() { + var r = Stream.prototype.pipe.apply(this, arguments); + this.resume(); + return r; +}; + +DelayedStream.prototype._handleEmit = function(args) { + if (this._released) { + this.emit.apply(this, args); + return; + } + + if (args[0] === 'data') { + this.dataSize += args[1].length; + this._checkIfMaxDataSizeExceeded(); + } + + this._bufferedEvents.push(args); +}; + +DelayedStream.prototype._checkIfMaxDataSizeExceeded = function() { + if (this._maxDataSizeExceeded) { + return; + } + + if (this.dataSize <= this.maxDataSize) { + return; + } + + this._maxDataSizeExceeded = true; + var message = + 'DelayedStream#maxDataSize of ' + this.maxDataSize + ' bytes exceeded.' + this.emit('error', new Error(message)); +}; diff --git a/node_modules/delayed-stream/package.json b/node_modules/delayed-stream/package.json new file mode 100644 index 000000000..eea3291c5 --- /dev/null +++ b/node_modules/delayed-stream/package.json @@ -0,0 +1,27 @@ +{ + "author": "Felix Geisendörfer (http://debuggable.com/)", + "contributors": [ + "Mike Atkins " + ], + "name": "delayed-stream", + "description": "Buffers events from a stream until you are ready to handle them.", + "license": "MIT", + "version": "1.0.0", + "homepage": "https://github.com/felixge/node-delayed-stream", + "repository": { + "type": "git", + "url": "git://github.com/felixge/node-delayed-stream.git" + }, + "main": "./lib/delayed_stream", + "engines": { + "node": ">=0.4.0" + }, + "scripts": { + "test": "make test" + }, + "dependencies": {}, + "devDependencies": { + "fake": "0.2.0", + "far": "0.0.1" + } +} diff --git a/node_modules/follow-redirects/LICENSE b/node_modules/follow-redirects/LICENSE new file mode 100644 index 000000000..742cbada5 --- /dev/null +++ b/node_modules/follow-redirects/LICENSE @@ -0,0 +1,18 @@ +Copyright 2014–present Olivier Lalonde , James Talmage , Ruben Verborgh + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/node_modules/follow-redirects/README.md b/node_modules/follow-redirects/README.md new file mode 100644 index 000000000..eb869a6f0 --- /dev/null +++ b/node_modules/follow-redirects/README.md @@ -0,0 +1,155 @@ +## Follow Redirects + +Drop-in replacement for Node's `http` and `https` modules that automatically follows redirects. + +[![npm version](https://img.shields.io/npm/v/follow-redirects.svg)](https://www.npmjs.com/package/follow-redirects) +[![Build Status](https://github.com/follow-redirects/follow-redirects/workflows/CI/badge.svg)](https://github.com/follow-redirects/follow-redirects/actions) +[![Coverage Status](https://coveralls.io/repos/follow-redirects/follow-redirects/badge.svg?branch=master)](https://coveralls.io/r/follow-redirects/follow-redirects?branch=master) +[![npm downloads](https://img.shields.io/npm/dm/follow-redirects.svg)](https://www.npmjs.com/package/follow-redirects) +[![Sponsor on GitHub](https://img.shields.io/static/v1?label=Sponsor&message=%F0%9F%92%96&logo=GitHub)](https://github.com/sponsors/RubenVerborgh) + +`follow-redirects` provides [request](https://nodejs.org/api/http.html#http_http_request_options_callback) and [get](https://nodejs.org/api/http.html#http_http_get_options_callback) + methods that behave identically to those found on the native [http](https://nodejs.org/api/http.html#http_http_request_options_callback) and [https](https://nodejs.org/api/https.html#https_https_request_options_callback) + modules, with the exception that they will seamlessly follow redirects. + +```javascript +const { http, https } = require('follow-redirects'); + +http.get('http://bit.ly/900913', response => { + response.on('data', chunk => { + console.log(chunk); + }); +}).on('error', err => { + console.error(err); +}); +``` + +You can inspect the final redirected URL through the `responseUrl` property on the `response`. +If no redirection happened, `responseUrl` is the original request URL. + +```javascript +const request = https.request({ + host: 'bitly.com', + path: '/UHfDGO', +}, response => { + console.log(response.responseUrl); + // 'http://duckduckgo.com/robots.txt' +}); +request.end(); +``` + +## Options +### Global options +Global options are set directly on the `follow-redirects` module: + +```javascript +const followRedirects = require('follow-redirects'); +followRedirects.maxRedirects = 10; +followRedirects.maxBodyLength = 20 * 1024 * 1024; // 20 MB +``` + +The following global options are supported: + +- `maxRedirects` (default: `21`) – sets the maximum number of allowed redirects; if exceeded, an error will be emitted. + +- `maxBodyLength` (default: 10MB) – sets the maximum size of the request body; if exceeded, an error will be emitted. + +### Per-request options +Per-request options are set by passing an `options` object: + +```javascript +const url = require('url'); +const { http, https } = require('follow-redirects'); + +const options = url.parse('http://bit.ly/900913'); +options.maxRedirects = 10; +options.beforeRedirect = (options, response, request) => { + // Use this to adjust the request options upon redirecting, + // to inspect the latest response headers, + // or to cancel the request by throwing an error + + // response.headers = the redirect response headers + // response.statusCode = the redirect response code (eg. 301, 307, etc.) + + // request.url = the requested URL that resulted in a redirect + // request.headers = the headers in the request that resulted in a redirect + // request.method = the method of the request that resulted in a redirect + if (options.hostname === "example.com") { + options.auth = "user:password"; + } +}; +http.request(options); +``` + +In addition to the [standard HTTP](https://nodejs.org/api/http.html#http_http_request_options_callback) and [HTTPS options](https://nodejs.org/api/https.html#https_https_request_options_callback), +the following per-request options are supported: +- `followRedirects` (default: `true`) – whether redirects should be followed. + +- `maxRedirects` (default: `21`) – sets the maximum number of allowed redirects; if exceeded, an error will be emitted. + +- `maxBodyLength` (default: 10MB) – sets the maximum size of the request body; if exceeded, an error will be emitted. + +- `beforeRedirect` (default: `undefined`) – optionally change the request `options` on redirects, or abort the request by throwing an error. + +- `agents` (default: `undefined`) – sets the `agent` option per protocol, since HTTP and HTTPS use different agents. Example value: `{ http: new http.Agent(), https: new https.Agent() }` + +- `trackRedirects` (default: `false`) – whether to store the redirected response details into the `redirects` array on the response object. + + +### Advanced usage +By default, `follow-redirects` will use the Node.js default implementations +of [`http`](https://nodejs.org/api/http.html) +and [`https`](https://nodejs.org/api/https.html). +To enable features such as caching and/or intermediate request tracking, +you might instead want to wrap `follow-redirects` around custom protocol implementations: + +```javascript +const { http, https } = require('follow-redirects').wrap({ + http: require('your-custom-http'), + https: require('your-custom-https'), +}); +``` + +Such custom protocols only need an implementation of the `request` method. + +## Browser Usage + +Due to the way the browser works, +the `http` and `https` browser equivalents perform redirects by default. + +By requiring `follow-redirects` this way: +```javascript +const http = require('follow-redirects/http'); +const https = require('follow-redirects/https'); +``` +you can easily tell webpack and friends to replace +`follow-redirect` by the built-in versions: + +```json +{ + "follow-redirects/http" : "http", + "follow-redirects/https" : "https" +} +``` + +## Contributing + +Pull Requests are always welcome. Please [file an issue](https://github.com/follow-redirects/follow-redirects/issues) + detailing your proposal before you invest your valuable time. Additional features and bug fixes should be accompanied + by tests. You can run the test suite locally with a simple `npm test` command. + +## Debug Logging + +`follow-redirects` uses the excellent [debug](https://www.npmjs.com/package/debug) for logging. To turn on logging + set the environment variable `DEBUG=follow-redirects` for debug output from just this module. When running the test + suite it is sometimes advantageous to set `DEBUG=*` to see output from the express server as well. + +## Authors + +- [Ruben Verborgh](https://ruben.verborgh.org/) +- [Olivier Lalonde](mailto:olalonde@gmail.com) +- [James Talmage](mailto:james@talmage.io) + +## License + +[MIT License](https://github.com/follow-redirects/follow-redirects/blob/master/LICENSE) diff --git a/node_modules/follow-redirects/debug.js b/node_modules/follow-redirects/debug.js new file mode 100644 index 000000000..decb77ded --- /dev/null +++ b/node_modules/follow-redirects/debug.js @@ -0,0 +1,15 @@ +var debug; + +module.exports = function () { + if (!debug) { + try { + /* eslint global-require: off */ + debug = require("debug")("follow-redirects"); + } + catch (error) { /* */ } + if (typeof debug !== "function") { + debug = function () { /* */ }; + } + } + debug.apply(null, arguments); +}; diff --git a/node_modules/follow-redirects/http.js b/node_modules/follow-redirects/http.js new file mode 100644 index 000000000..695e35617 --- /dev/null +++ b/node_modules/follow-redirects/http.js @@ -0,0 +1 @@ +module.exports = require("./").http; diff --git a/node_modules/follow-redirects/https.js b/node_modules/follow-redirects/https.js new file mode 100644 index 000000000..d21c921d9 --- /dev/null +++ b/node_modules/follow-redirects/https.js @@ -0,0 +1 @@ +module.exports = require("./").https; diff --git a/node_modules/follow-redirects/index.js b/node_modules/follow-redirects/index.js new file mode 100644 index 000000000..3e199c14a --- /dev/null +++ b/node_modules/follow-redirects/index.js @@ -0,0 +1,621 @@ +var url = require("url"); +var URL = url.URL; +var http = require("http"); +var https = require("https"); +var Writable = require("stream").Writable; +var assert = require("assert"); +var debug = require("./debug"); + +// Create handlers that pass events from native requests +var events = ["abort", "aborted", "connect", "error", "socket", "timeout"]; +var eventHandlers = Object.create(null); +events.forEach(function (event) { + eventHandlers[event] = function (arg1, arg2, arg3) { + this._redirectable.emit(event, arg1, arg2, arg3); + }; +}); + +var InvalidUrlError = createErrorType( + "ERR_INVALID_URL", + "Invalid URL", + TypeError +); +// Error types with codes +var RedirectionError = createErrorType( + "ERR_FR_REDIRECTION_FAILURE", + "Redirected request failed" +); +var TooManyRedirectsError = createErrorType( + "ERR_FR_TOO_MANY_REDIRECTS", + "Maximum number of redirects exceeded" +); +var MaxBodyLengthExceededError = createErrorType( + "ERR_FR_MAX_BODY_LENGTH_EXCEEDED", + "Request body larger than maxBodyLength limit" +); +var WriteAfterEndError = createErrorType( + "ERR_STREAM_WRITE_AFTER_END", + "write after end" +); + +// An HTTP(S) request that can be redirected +function RedirectableRequest(options, responseCallback) { + // Initialize the request + Writable.call(this); + this._sanitizeOptions(options); + this._options = options; + this._ended = false; + this._ending = false; + this._redirectCount = 0; + this._redirects = []; + this._requestBodyLength = 0; + this._requestBodyBuffers = []; + + // Attach a callback if passed + if (responseCallback) { + this.on("response", responseCallback); + } + + // React to responses of native requests + var self = this; + this._onNativeResponse = function (response) { + self._processResponse(response); + }; + + // Perform the first request + this._performRequest(); +} +RedirectableRequest.prototype = Object.create(Writable.prototype); + +RedirectableRequest.prototype.abort = function () { + abortRequest(this._currentRequest); + this.emit("abort"); +}; + +// Writes buffered data to the current native request +RedirectableRequest.prototype.write = function (data, encoding, callback) { + // Writing is not allowed if end has been called + if (this._ending) { + throw new WriteAfterEndError(); + } + + // Validate input and shift parameters if necessary + if (!isString(data) && !isBuffer(data)) { + throw new TypeError("data should be a string, Buffer or Uint8Array"); + } + if (isFunction(encoding)) { + callback = encoding; + encoding = null; + } + + // Ignore empty buffers, since writing them doesn't invoke the callback + // https://github.com/nodejs/node/issues/22066 + if (data.length === 0) { + if (callback) { + callback(); + } + return; + } + // Only write when we don't exceed the maximum body length + if (this._requestBodyLength + data.length <= this._options.maxBodyLength) { + this._requestBodyLength += data.length; + this._requestBodyBuffers.push({ data: data, encoding: encoding }); + this._currentRequest.write(data, encoding, callback); + } + // Error when we exceed the maximum body length + else { + this.emit("error", new MaxBodyLengthExceededError()); + this.abort(); + } +}; + +// Ends the current native request +RedirectableRequest.prototype.end = function (data, encoding, callback) { + // Shift parameters if necessary + if (isFunction(data)) { + callback = data; + data = encoding = null; + } + else if (isFunction(encoding)) { + callback = encoding; + encoding = null; + } + + // Write data if needed and end + if (!data) { + this._ended = this._ending = true; + this._currentRequest.end(null, null, callback); + } + else { + var self = this; + var currentRequest = this._currentRequest; + this.write(data, encoding, function () { + self._ended = true; + currentRequest.end(null, null, callback); + }); + this._ending = true; + } +}; + +// Sets a header value on the current native request +RedirectableRequest.prototype.setHeader = function (name, value) { + this._options.headers[name] = value; + this._currentRequest.setHeader(name, value); +}; + +// Clears a header value on the current native request +RedirectableRequest.prototype.removeHeader = function (name) { + delete this._options.headers[name]; + this._currentRequest.removeHeader(name); +}; + +// Global timeout for all underlying requests +RedirectableRequest.prototype.setTimeout = function (msecs, callback) { + var self = this; + + // Destroys the socket on timeout + function destroyOnTimeout(socket) { + socket.setTimeout(msecs); + socket.removeListener("timeout", socket.destroy); + socket.addListener("timeout", socket.destroy); + } + + // Sets up a timer to trigger a timeout event + function startTimer(socket) { + if (self._timeout) { + clearTimeout(self._timeout); + } + self._timeout = setTimeout(function () { + self.emit("timeout"); + clearTimer(); + }, msecs); + destroyOnTimeout(socket); + } + + // Stops a timeout from triggering + function clearTimer() { + // Clear the timeout + if (self._timeout) { + clearTimeout(self._timeout); + self._timeout = null; + } + + // Clean up all attached listeners + self.removeListener("abort", clearTimer); + self.removeListener("error", clearTimer); + self.removeListener("response", clearTimer); + if (callback) { + self.removeListener("timeout", callback); + } + if (!self.socket) { + self._currentRequest.removeListener("socket", startTimer); + } + } + + // Attach callback if passed + if (callback) { + this.on("timeout", callback); + } + + // Start the timer if or when the socket is opened + if (this.socket) { + startTimer(this.socket); + } + else { + this._currentRequest.once("socket", startTimer); + } + + // Clean up on events + this.on("socket", destroyOnTimeout); + this.on("abort", clearTimer); + this.on("error", clearTimer); + this.on("response", clearTimer); + + return this; +}; + +// Proxy all other public ClientRequest methods +[ + "flushHeaders", "getHeader", + "setNoDelay", "setSocketKeepAlive", +].forEach(function (method) { + RedirectableRequest.prototype[method] = function (a, b) { + return this._currentRequest[method](a, b); + }; +}); + +// Proxy all public ClientRequest properties +["aborted", "connection", "socket"].forEach(function (property) { + Object.defineProperty(RedirectableRequest.prototype, property, { + get: function () { return this._currentRequest[property]; }, + }); +}); + +RedirectableRequest.prototype._sanitizeOptions = function (options) { + // Ensure headers are always present + if (!options.headers) { + options.headers = {}; + } + + // Since http.request treats host as an alias of hostname, + // but the url module interprets host as hostname plus port, + // eliminate the host property to avoid confusion. + if (options.host) { + // Use hostname if set, because it has precedence + if (!options.hostname) { + options.hostname = options.host; + } + delete options.host; + } + + // Complete the URL object when necessary + if (!options.pathname && options.path) { + var searchPos = options.path.indexOf("?"); + if (searchPos < 0) { + options.pathname = options.path; + } + else { + options.pathname = options.path.substring(0, searchPos); + options.search = options.path.substring(searchPos); + } + } +}; + + +// Executes the next native request (initial or redirect) +RedirectableRequest.prototype._performRequest = function () { + // Load the native protocol + var protocol = this._options.protocol; + var nativeProtocol = this._options.nativeProtocols[protocol]; + if (!nativeProtocol) { + this.emit("error", new TypeError("Unsupported protocol " + protocol)); + return; + } + + // If specified, use the agent corresponding to the protocol + // (HTTP and HTTPS use different types of agents) + if (this._options.agents) { + var scheme = protocol.slice(0, -1); + this._options.agent = this._options.agents[scheme]; + } + + // Create the native request and set up its event handlers + var request = this._currentRequest = + nativeProtocol.request(this._options, this._onNativeResponse); + request._redirectable = this; + for (var event of events) { + request.on(event, eventHandlers[event]); + } + + // RFC7230§5.3.1: When making a request directly to an origin server, […] + // a client MUST send only the absolute path […] as the request-target. + this._currentUrl = /^\//.test(this._options.path) ? + url.format(this._options) : + // When making a request to a proxy, […] + // a client MUST send the target URI in absolute-form […]. + this._options.path; + + // End a redirected request + // (The first request must be ended explicitly with RedirectableRequest#end) + if (this._isRedirect) { + // Write the request entity and end + var i = 0; + var self = this; + var buffers = this._requestBodyBuffers; + (function writeNext(error) { + // Only write if this request has not been redirected yet + /* istanbul ignore else */ + if (request === self._currentRequest) { + // Report any write errors + /* istanbul ignore if */ + if (error) { + self.emit("error", error); + } + // Write the next buffer if there are still left + else if (i < buffers.length) { + var buffer = buffers[i++]; + /* istanbul ignore else */ + if (!request.finished) { + request.write(buffer.data, buffer.encoding, writeNext); + } + } + // End the request if `end` has been called on us + else if (self._ended) { + request.end(); + } + } + }()); + } +}; + +// Processes a response from the current native request +RedirectableRequest.prototype._processResponse = function (response) { + // Store the redirected response + var statusCode = response.statusCode; + if (this._options.trackRedirects) { + this._redirects.push({ + url: this._currentUrl, + headers: response.headers, + statusCode: statusCode, + }); + } + + // RFC7231§6.4: The 3xx (Redirection) class of status code indicates + // that further action needs to be taken by the user agent in order to + // fulfill the request. If a Location header field is provided, + // the user agent MAY automatically redirect its request to the URI + // referenced by the Location field value, + // even if the specific status code is not understood. + + // If the response is not a redirect; return it as-is + var location = response.headers.location; + if (!location || this._options.followRedirects === false || + statusCode < 300 || statusCode >= 400) { + response.responseUrl = this._currentUrl; + response.redirects = this._redirects; + this.emit("response", response); + + // Clean up + this._requestBodyBuffers = []; + return; + } + + // The response is a redirect, so abort the current request + abortRequest(this._currentRequest); + // Discard the remainder of the response to avoid waiting for data + response.destroy(); + + // RFC7231§6.4: A client SHOULD detect and intervene + // in cyclical redirections (i.e., "infinite" redirection loops). + if (++this._redirectCount > this._options.maxRedirects) { + this.emit("error", new TooManyRedirectsError()); + return; + } + + // Store the request headers if applicable + var requestHeaders; + var beforeRedirect = this._options.beforeRedirect; + if (beforeRedirect) { + requestHeaders = Object.assign({ + // The Host header was set by nativeProtocol.request + Host: response.req.getHeader("host"), + }, this._options.headers); + } + + // RFC7231§6.4: Automatic redirection needs to done with + // care for methods not known to be safe, […] + // RFC7231§6.4.2–3: For historical reasons, a user agent MAY change + // the request method from POST to GET for the subsequent request. + var method = this._options.method; + if ((statusCode === 301 || statusCode === 302) && this._options.method === "POST" || + // RFC7231§6.4.4: The 303 (See Other) status code indicates that + // the server is redirecting the user agent to a different resource […] + // A user agent can perform a retrieval request targeting that URI + // (a GET or HEAD request if using HTTP) […] + (statusCode === 303) && !/^(?:GET|HEAD)$/.test(this._options.method)) { + this._options.method = "GET"; + // Drop a possible entity and headers related to it + this._requestBodyBuffers = []; + removeMatchingHeaders(/^content-/i, this._options.headers); + } + + // Drop the Host header, as the redirect might lead to a different host + var currentHostHeader = removeMatchingHeaders(/^host$/i, this._options.headers); + + // If the redirect is relative, carry over the host of the last request + var currentUrlParts = url.parse(this._currentUrl); + var currentHost = currentHostHeader || currentUrlParts.host; + var currentUrl = /^\w+:/.test(location) ? this._currentUrl : + url.format(Object.assign(currentUrlParts, { host: currentHost })); + + // Determine the URL of the redirection + var redirectUrl; + try { + redirectUrl = url.resolve(currentUrl, location); + } + catch (cause) { + this.emit("error", new RedirectionError({ cause: cause })); + return; + } + + // Create the redirected request + debug("redirecting to", redirectUrl); + this._isRedirect = true; + var redirectUrlParts = url.parse(redirectUrl); + Object.assign(this._options, redirectUrlParts); + + // Drop confidential headers when redirecting to a less secure protocol + // or to a different domain that is not a superdomain + if (redirectUrlParts.protocol !== currentUrlParts.protocol && + redirectUrlParts.protocol !== "https:" || + redirectUrlParts.host !== currentHost && + !isSubdomain(redirectUrlParts.host, currentHost)) { + removeMatchingHeaders(/^(?:authorization|cookie)$/i, this._options.headers); + } + + // Evaluate the beforeRedirect callback + if (isFunction(beforeRedirect)) { + var responseDetails = { + headers: response.headers, + statusCode: statusCode, + }; + var requestDetails = { + url: currentUrl, + method: method, + headers: requestHeaders, + }; + try { + beforeRedirect(this._options, responseDetails, requestDetails); + } + catch (err) { + this.emit("error", err); + return; + } + this._sanitizeOptions(this._options); + } + + // Perform the redirected request + try { + this._performRequest(); + } + catch (cause) { + this.emit("error", new RedirectionError({ cause: cause })); + } +}; + +// Wraps the key/value object of protocols with redirect functionality +function wrap(protocols) { + // Default settings + var exports = { + maxRedirects: 21, + maxBodyLength: 10 * 1024 * 1024, + }; + + // Wrap each protocol + var nativeProtocols = {}; + Object.keys(protocols).forEach(function (scheme) { + var protocol = scheme + ":"; + var nativeProtocol = nativeProtocols[protocol] = protocols[scheme]; + var wrappedProtocol = exports[scheme] = Object.create(nativeProtocol); + + // Executes a request, following redirects + function request(input, options, callback) { + // Parse parameters + if (isString(input)) { + var parsed; + try { + parsed = urlToOptions(new URL(input)); + } + catch (err) { + /* istanbul ignore next */ + parsed = url.parse(input); + } + if (!isString(parsed.protocol)) { + throw new InvalidUrlError({ input }); + } + input = parsed; + } + else if (URL && (input instanceof URL)) { + input = urlToOptions(input); + } + else { + callback = options; + options = input; + input = { protocol: protocol }; + } + if (isFunction(options)) { + callback = options; + options = null; + } + + // Set defaults + options = Object.assign({ + maxRedirects: exports.maxRedirects, + maxBodyLength: exports.maxBodyLength, + }, input, options); + options.nativeProtocols = nativeProtocols; + if (!isString(options.host) && !isString(options.hostname)) { + options.hostname = "::1"; + } + + assert.equal(options.protocol, protocol, "protocol mismatch"); + debug("options", options); + return new RedirectableRequest(options, callback); + } + + // Executes a GET request, following redirects + function get(input, options, callback) { + var wrappedRequest = wrappedProtocol.request(input, options, callback); + wrappedRequest.end(); + return wrappedRequest; + } + + // Expose the properties on the wrapped protocol + Object.defineProperties(wrappedProtocol, { + request: { value: request, configurable: true, enumerable: true, writable: true }, + get: { value: get, configurable: true, enumerable: true, writable: true }, + }); + }); + return exports; +} + +/* istanbul ignore next */ +function noop() { /* empty */ } + +// from https://github.com/nodejs/node/blob/master/lib/internal/url.js +function urlToOptions(urlObject) { + var options = { + protocol: urlObject.protocol, + hostname: urlObject.hostname.startsWith("[") ? + /* istanbul ignore next */ + urlObject.hostname.slice(1, -1) : + urlObject.hostname, + hash: urlObject.hash, + search: urlObject.search, + pathname: urlObject.pathname, + path: urlObject.pathname + urlObject.search, + href: urlObject.href, + }; + if (urlObject.port !== "") { + options.port = Number(urlObject.port); + } + return options; +} + +function removeMatchingHeaders(regex, headers) { + var lastValue; + for (var header in headers) { + if (regex.test(header)) { + lastValue = headers[header]; + delete headers[header]; + } + } + return (lastValue === null || typeof lastValue === "undefined") ? + undefined : String(lastValue).trim(); +} + +function createErrorType(code, message, baseClass) { + // Create constructor + function CustomError(properties) { + Error.captureStackTrace(this, this.constructor); + Object.assign(this, properties || {}); + this.code = code; + this.message = this.cause ? message + ": " + this.cause.message : message; + } + + // Attach constructor and set default properties + CustomError.prototype = new (baseClass || Error)(); + CustomError.prototype.constructor = CustomError; + CustomError.prototype.name = "Error [" + code + "]"; + return CustomError; +} + +function abortRequest(request) { + for (var event of events) { + request.removeListener(event, eventHandlers[event]); + } + request.on("error", noop); + request.abort(); +} + +function isSubdomain(subdomain, domain) { + assert(isString(subdomain) && isString(domain)); + var dot = subdomain.length - domain.length - 1; + return dot > 0 && subdomain[dot] === "." && subdomain.endsWith(domain); +} + +function isString(value) { + return typeof value === "string" || value instanceof String; +} + +function isFunction(value) { + return typeof value === "function"; +} + +function isBuffer(value) { + return typeof value === "object" && ("length" in value); +} + +// Exports +module.exports = wrap({ http: http, https: https }); +module.exports.wrap = wrap; diff --git a/node_modules/follow-redirects/package.json b/node_modules/follow-redirects/package.json new file mode 100644 index 000000000..97717c5e9 --- /dev/null +++ b/node_modules/follow-redirects/package.json @@ -0,0 +1,59 @@ +{ + "name": "follow-redirects", + "version": "1.15.2", + "description": "HTTP and HTTPS modules that follow redirects.", + "license": "MIT", + "main": "index.js", + "files": [ + "*.js" + ], + "engines": { + "node": ">=4.0" + }, + "scripts": { + "test": "npm run lint && npm run mocha", + "lint": "eslint *.js test", + "mocha": "nyc mocha" + }, + "repository": { + "type": "git", + "url": "git@github.com:follow-redirects/follow-redirects.git" + }, + "homepage": "https://github.com/follow-redirects/follow-redirects", + "bugs": { + "url": "https://github.com/follow-redirects/follow-redirects/issues" + }, + "keywords": [ + "http", + "https", + "url", + "redirect", + "client", + "location", + "utility" + ], + "author": "Ruben Verborgh (https://ruben.verborgh.org/)", + "contributors": [ + "Olivier Lalonde (http://www.syskall.com)", + "James Talmage " + ], + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "peerDependenciesMeta": { + "debug": { + "optional": true + } + }, + "devDependencies": { + "concat-stream": "^2.0.0", + "eslint": "^5.16.0", + "express": "^4.16.4", + "lolex": "^3.1.0", + "mocha": "^6.0.2", + "nyc": "^14.1.1" + } +} diff --git a/node_modules/form-data/License b/node_modules/form-data/License new file mode 100644 index 000000000..c7ff12a2f --- /dev/null +++ b/node_modules/form-data/License @@ -0,0 +1,19 @@ +Copyright (c) 2012 Felix Geisendörfer (felix@debuggable.com) and contributors + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. diff --git a/node_modules/form-data/README.md.bak b/node_modules/form-data/README.md.bak new file mode 100644 index 000000000..298a1a240 --- /dev/null +++ b/node_modules/form-data/README.md.bak @@ -0,0 +1,358 @@ +# Form-Data [![NPM Module](https://img.shields.io/npm/v/form-data.svg)](https://www.npmjs.com/package/form-data) [![Join the chat at https://gitter.im/form-data/form-data](http://form-data.github.io/images/gitterbadge.svg)](https://gitter.im/form-data/form-data) + +A library to create readable ```"multipart/form-data"``` streams. Can be used to submit forms and file uploads to other web applications. + +The API of this library is inspired by the [XMLHttpRequest-2 FormData Interface][xhr2-fd]. + +[xhr2-fd]: http://dev.w3.org/2006/webapi/XMLHttpRequest-2/Overview.html#the-formdata-interface + +[![Linux Build](https://img.shields.io/travis/form-data/form-data/v4.0.0.svg?label=linux:6.x-12.x)](https://travis-ci.org/form-data/form-data) +[![MacOS Build](https://img.shields.io/travis/form-data/form-data/v4.0.0.svg?label=macos:6.x-12.x)](https://travis-ci.org/form-data/form-data) +[![Windows Build](https://img.shields.io/travis/form-data/form-data/v4.0.0.svg?label=windows:6.x-12.x)](https://travis-ci.org/form-data/form-data) + +[![Coverage Status](https://img.shields.io/coveralls/form-data/form-data/v4.0.0.svg?label=code+coverage)](https://coveralls.io/github/form-data/form-data?branch=master) +[![Dependency Status](https://img.shields.io/david/form-data/form-data.svg)](https://david-dm.org/form-data/form-data) + +## Install + +``` +npm install --save form-data +``` + +## Usage + +In this example we are constructing a form with 3 fields that contain a string, +a buffer and a file stream. + +``` javascript +var FormData = require('form-data'); +var fs = require('fs'); + +var form = new FormData(); +form.append('my_field', 'my value'); +form.append('my_buffer', new Buffer(10)); +form.append('my_file', fs.createReadStream('/foo/bar.jpg')); +``` + +Also you can use http-response stream: + +``` javascript +var FormData = require('form-data'); +var http = require('http'); + +var form = new FormData(); + +http.request('http://nodejs.org/images/logo.png', function(response) { + form.append('my_field', 'my value'); + form.append('my_buffer', new Buffer(10)); + form.append('my_logo', response); +}); +``` + +Or @mikeal's [request](https://github.com/request/request) stream: + +``` javascript +var FormData = require('form-data'); +var request = require('request'); + +var form = new FormData(); + +form.append('my_field', 'my value'); +form.append('my_buffer', new Buffer(10)); +form.append('my_logo', request('http://nodejs.org/images/logo.png')); +``` + +In order to submit this form to a web application, call ```submit(url, [callback])``` method: + +``` javascript +form.submit('http://example.org/', function(err, res) { + // res – response object (http.IncomingMessage) // + res.resume(); +}); + +``` + +For more advanced request manipulations ```submit()``` method returns ```http.ClientRequest``` object, or you can choose from one of the alternative submission methods. + +### Custom options + +You can provide custom options, such as `maxDataSize`: + +``` javascript +var FormData = require('form-data'); + +var form = new FormData({ maxDataSize: 20971520 }); +form.append('my_field', 'my value'); +form.append('my_buffer', /* something big */); +``` + +List of available options could be found in [combined-stream](https://github.com/felixge/node-combined-stream/blob/master/lib/combined_stream.js#L7-L15) + +### Alternative submission methods + +You can use node's http client interface: + +``` javascript +var http = require('http'); + +var request = http.request({ + method: 'post', + host: 'example.org', + path: '/upload', + headers: form.getHeaders() +}); + +form.pipe(request); + +request.on('response', function(res) { + console.log(res.statusCode); +}); +``` + +Or if you would prefer the `'Content-Length'` header to be set for you: + +``` javascript +form.submit('example.org/upload', function(err, res) { + console.log(res.statusCode); +}); +``` + +To use custom headers and pre-known length in parts: + +``` javascript +var CRLF = '\r\n'; +var form = new FormData(); + +var options = { + header: CRLF + '--' + form.getBoundary() + CRLF + 'X-Custom-Header: 123' + CRLF + CRLF, + knownLength: 1 +}; + +form.append('my_buffer', buffer, options); + +form.submit('http://example.com/', function(err, res) { + if (err) throw err; + console.log('Done'); +}); +``` + +Form-Data can recognize and fetch all the required information from common types of streams (```fs.readStream```, ```http.response``` and ```mikeal's request```), for some other types of streams you'd need to provide "file"-related information manually: + +``` javascript +someModule.stream(function(err, stdout, stderr) { + if (err) throw err; + + var form = new FormData(); + + form.append('file', stdout, { + filename: 'unicycle.jpg', // ... or: + filepath: 'photos/toys/unicycle.jpg', + contentType: 'image/jpeg', + knownLength: 19806 + }); + + form.submit('http://example.com/', function(err, res) { + if (err) throw err; + console.log('Done'); + }); +}); +``` + +The `filepath` property overrides `filename` and may contain a relative path. This is typically used when uploading [multiple files from a directory](https://wicg.github.io/entries-api/#dom-htmlinputelement-webkitdirectory). + +For edge cases, like POST request to URL with query string or to pass HTTP auth credentials, object can be passed to `form.submit()` as first parameter: + +``` javascript +form.submit({ + host: 'example.com', + path: '/probably.php?extra=params', + auth: 'username:password' +}, function(err, res) { + console.log(res.statusCode); +}); +``` + +In case you need to also send custom HTTP headers with the POST request, you can use the `headers` key in first parameter of `form.submit()`: + +``` javascript +form.submit({ + host: 'example.com', + path: '/surelynot.php', + headers: {'x-test-header': 'test-header-value'} +}, function(err, res) { + console.log(res.statusCode); +}); +``` + +### Methods + +- [_Void_ append( **String** _field_, **Mixed** _value_ [, **Mixed** _options_] )](https://github.com/form-data/form-data#void-append-string-field-mixed-value--mixed-options-). +- [_Headers_ getHeaders( [**Headers** _userHeaders_] )](https://github.com/form-data/form-data#array-getheaders-array-userheaders-) +- [_String_ getBoundary()](https://github.com/form-data/form-data#string-getboundary) +- [_Void_ setBoundary()](https://github.com/form-data/form-data#void-setboundary) +- [_Buffer_ getBuffer()](https://github.com/form-data/form-data#buffer-getbuffer) +- [_Integer_ getLengthSync()](https://github.com/form-data/form-data#integer-getlengthsync) +- [_Integer_ getLength( **function** _callback_ )](https://github.com/form-data/form-data#integer-getlength-function-callback-) +- [_Boolean_ hasKnownLength()](https://github.com/form-data/form-data#boolean-hasknownlength) +- [_Request_ submit( _params_, **function** _callback_ )](https://github.com/form-data/form-data#request-submit-params-function-callback-) +- [_String_ toString()](https://github.com/form-data/form-data#string-tostring) + +#### _Void_ append( **String** _field_, **Mixed** _value_ [, **Mixed** _options_] ) +Append data to the form. You can submit about any format (string, integer, boolean, buffer, etc.). However, Arrays are not supported and need to be turned into strings by the user. +```javascript +var form = new FormData(); +form.append( 'my_string', 'my value' ); +form.append( 'my_integer', 1 ); +form.append( 'my_boolean', true ); +form.append( 'my_buffer', new Buffer(10) ); +form.append( 'my_array_as_json', JSON.stringify( ['bird','cute'] ) ) +``` + +You may provide a string for options, or an object. +```javascript +// Set filename by providing a string for options +form.append( 'my_file', fs.createReadStream('/foo/bar.jpg'), 'bar.jpg' ); + +// provide an object. +form.append( 'my_file', fs.createReadStream('/foo/bar.jpg'), {filename: 'bar.jpg', contentType: 'image/jpeg', knownLength: 19806} ); +``` + +#### _Headers_ getHeaders( [**Headers** _userHeaders_] ) +This method adds the correct `content-type` header to the provided array of `userHeaders`. + +#### _String_ getBoundary() +Return the boundary of the formData. By default, the boundary consists of 26 `-` followed by 24 numbers +for example: +```javascript +--------------------------515890814546601021194782 +``` + +#### _Void_ setBoundary(String _boundary_) +Set the boundary string, overriding the default behavior described above. + +_Note: The boundary must be unique and may not appear in the data._ + +#### _Buffer_ getBuffer() +Return the full formdata request package, as a Buffer. You can insert this Buffer in e.g. Axios to send multipart data. +```javascript +var form = new FormData(); +form.append( 'my_buffer', Buffer.from([0x4a,0x42,0x20,0x52,0x6f,0x63,0x6b,0x73]) ); +form.append( 'my_file', fs.readFileSync('/foo/bar.jpg') ); + +axios.post( 'https://example.com/path/to/api', + form.getBuffer(), + form.getHeaders() + ) +``` +**Note:** Because the output is of type Buffer, you can only append types that are accepted by Buffer: *string, Buffer, ArrayBuffer, Array, or Array-like Object*. A ReadStream for example will result in an error. + +#### _Integer_ getLengthSync() +Same as `getLength` but synchronous. + +_Note: getLengthSync __doesn't__ calculate streams length._ + +#### _Integer_ getLength( **function** _callback_ ) +Returns the `Content-Length` async. The callback is used to handle errors and continue once the length has been calculated +```javascript +this.getLength(function(err, length) { + if (err) { + this._error(err); + return; + } + + // add content length + request.setHeader('Content-Length', length); + + ... +}.bind(this)); +``` + +#### _Boolean_ hasKnownLength() +Checks if the length of added values is known. + +#### _Request_ submit( _params_, **function** _callback_ ) +Submit the form to a web application. +```javascript +var form = new FormData(); +form.append( 'my_string', 'Hello World' ); + +form.submit( 'http://example.com/', function(err, res) { + // res – response object (http.IncomingMessage) // + res.resume(); +} ); +``` + +#### _String_ toString() +Returns the form data as a string. Don't use this if you are sending files or buffers, use `getBuffer()` instead. + +### Integration with other libraries + +#### Request + +Form submission using [request](https://github.com/request/request): + +```javascript +var formData = { + my_field: 'my_value', + my_file: fs.createReadStream(__dirname + '/unicycle.jpg'), +}; + +request.post({url:'http://service.com/upload', formData: formData}, function(err, httpResponse, body) { + if (err) { + return console.error('upload failed:', err); + } + console.log('Upload successful! Server responded with:', body); +}); +``` + +For more details see [request readme](https://github.com/request/request#multipartform-data-multipart-form-uploads). + +#### node-fetch + +You can also submit a form using [node-fetch](https://github.com/bitinn/node-fetch): + +```javascript +var form = new FormData(); + +form.append('a', 1); + +fetch('http://example.com', { method: 'POST', body: form }) + .then(function(res) { + return res.json(); + }).then(function(json) { + console.log(json); + }); +``` + +#### axios + +In Node.js you can post a file using [axios](https://github.com/axios/axios): +```javascript +const form = new FormData(); +const stream = fs.createReadStream(PATH_TO_FILE); + +form.append('image', stream); + +// In Node.js environment you need to set boundary in the header field 'Content-Type' by calling method `getHeaders` +const formHeaders = form.getHeaders(); + +axios.post('http://example.com', form, { + headers: { + ...formHeaders, + }, +}) +.then(response => response) +.catch(error => error) +``` + +## Notes + +- ```getLengthSync()``` method DOESN'T calculate length for streams, use ```knownLength``` options as workaround. +- ```getLength(cb)``` will send an error as first parameter of callback if stream length cannot be calculated (e.g. send in custom streams w/o using ```knownLength```). +- ```submit``` will not add `content-length` if form length is unknown or not calculable. +- Starting version `2.x` FormData has dropped support for `node@0.10.x`. +- Starting version `3.x` FormData has dropped support for `node@4.x`. + +## License + +Form-Data is released under the [MIT](License) license. diff --git a/node_modules/form-data/Readme.md b/node_modules/form-data/Readme.md new file mode 100644 index 000000000..298a1a240 --- /dev/null +++ b/node_modules/form-data/Readme.md @@ -0,0 +1,358 @@ +# Form-Data [![NPM Module](https://img.shields.io/npm/v/form-data.svg)](https://www.npmjs.com/package/form-data) [![Join the chat at https://gitter.im/form-data/form-data](http://form-data.github.io/images/gitterbadge.svg)](https://gitter.im/form-data/form-data) + +A library to create readable ```"multipart/form-data"``` streams. Can be used to submit forms and file uploads to other web applications. + +The API of this library is inspired by the [XMLHttpRequest-2 FormData Interface][xhr2-fd]. + +[xhr2-fd]: http://dev.w3.org/2006/webapi/XMLHttpRequest-2/Overview.html#the-formdata-interface + +[![Linux Build](https://img.shields.io/travis/form-data/form-data/v4.0.0.svg?label=linux:6.x-12.x)](https://travis-ci.org/form-data/form-data) +[![MacOS Build](https://img.shields.io/travis/form-data/form-data/v4.0.0.svg?label=macos:6.x-12.x)](https://travis-ci.org/form-data/form-data) +[![Windows Build](https://img.shields.io/travis/form-data/form-data/v4.0.0.svg?label=windows:6.x-12.x)](https://travis-ci.org/form-data/form-data) + +[![Coverage Status](https://img.shields.io/coveralls/form-data/form-data/v4.0.0.svg?label=code+coverage)](https://coveralls.io/github/form-data/form-data?branch=master) +[![Dependency Status](https://img.shields.io/david/form-data/form-data.svg)](https://david-dm.org/form-data/form-data) + +## Install + +``` +npm install --save form-data +``` + +## Usage + +In this example we are constructing a form with 3 fields that contain a string, +a buffer and a file stream. + +``` javascript +var FormData = require('form-data'); +var fs = require('fs'); + +var form = new FormData(); +form.append('my_field', 'my value'); +form.append('my_buffer', new Buffer(10)); +form.append('my_file', fs.createReadStream('/foo/bar.jpg')); +``` + +Also you can use http-response stream: + +``` javascript +var FormData = require('form-data'); +var http = require('http'); + +var form = new FormData(); + +http.request('http://nodejs.org/images/logo.png', function(response) { + form.append('my_field', 'my value'); + form.append('my_buffer', new Buffer(10)); + form.append('my_logo', response); +}); +``` + +Or @mikeal's [request](https://github.com/request/request) stream: + +``` javascript +var FormData = require('form-data'); +var request = require('request'); + +var form = new FormData(); + +form.append('my_field', 'my value'); +form.append('my_buffer', new Buffer(10)); +form.append('my_logo', request('http://nodejs.org/images/logo.png')); +``` + +In order to submit this form to a web application, call ```submit(url, [callback])``` method: + +``` javascript +form.submit('http://example.org/', function(err, res) { + // res – response object (http.IncomingMessage) // + res.resume(); +}); + +``` + +For more advanced request manipulations ```submit()``` method returns ```http.ClientRequest``` object, or you can choose from one of the alternative submission methods. + +### Custom options + +You can provide custom options, such as `maxDataSize`: + +``` javascript +var FormData = require('form-data'); + +var form = new FormData({ maxDataSize: 20971520 }); +form.append('my_field', 'my value'); +form.append('my_buffer', /* something big */); +``` + +List of available options could be found in [combined-stream](https://github.com/felixge/node-combined-stream/blob/master/lib/combined_stream.js#L7-L15) + +### Alternative submission methods + +You can use node's http client interface: + +``` javascript +var http = require('http'); + +var request = http.request({ + method: 'post', + host: 'example.org', + path: '/upload', + headers: form.getHeaders() +}); + +form.pipe(request); + +request.on('response', function(res) { + console.log(res.statusCode); +}); +``` + +Or if you would prefer the `'Content-Length'` header to be set for you: + +``` javascript +form.submit('example.org/upload', function(err, res) { + console.log(res.statusCode); +}); +``` + +To use custom headers and pre-known length in parts: + +``` javascript +var CRLF = '\r\n'; +var form = new FormData(); + +var options = { + header: CRLF + '--' + form.getBoundary() + CRLF + 'X-Custom-Header: 123' + CRLF + CRLF, + knownLength: 1 +}; + +form.append('my_buffer', buffer, options); + +form.submit('http://example.com/', function(err, res) { + if (err) throw err; + console.log('Done'); +}); +``` + +Form-Data can recognize and fetch all the required information from common types of streams (```fs.readStream```, ```http.response``` and ```mikeal's request```), for some other types of streams you'd need to provide "file"-related information manually: + +``` javascript +someModule.stream(function(err, stdout, stderr) { + if (err) throw err; + + var form = new FormData(); + + form.append('file', stdout, { + filename: 'unicycle.jpg', // ... or: + filepath: 'photos/toys/unicycle.jpg', + contentType: 'image/jpeg', + knownLength: 19806 + }); + + form.submit('http://example.com/', function(err, res) { + if (err) throw err; + console.log('Done'); + }); +}); +``` + +The `filepath` property overrides `filename` and may contain a relative path. This is typically used when uploading [multiple files from a directory](https://wicg.github.io/entries-api/#dom-htmlinputelement-webkitdirectory). + +For edge cases, like POST request to URL with query string or to pass HTTP auth credentials, object can be passed to `form.submit()` as first parameter: + +``` javascript +form.submit({ + host: 'example.com', + path: '/probably.php?extra=params', + auth: 'username:password' +}, function(err, res) { + console.log(res.statusCode); +}); +``` + +In case you need to also send custom HTTP headers with the POST request, you can use the `headers` key in first parameter of `form.submit()`: + +``` javascript +form.submit({ + host: 'example.com', + path: '/surelynot.php', + headers: {'x-test-header': 'test-header-value'} +}, function(err, res) { + console.log(res.statusCode); +}); +``` + +### Methods + +- [_Void_ append( **String** _field_, **Mixed** _value_ [, **Mixed** _options_] )](https://github.com/form-data/form-data#void-append-string-field-mixed-value--mixed-options-). +- [_Headers_ getHeaders( [**Headers** _userHeaders_] )](https://github.com/form-data/form-data#array-getheaders-array-userheaders-) +- [_String_ getBoundary()](https://github.com/form-data/form-data#string-getboundary) +- [_Void_ setBoundary()](https://github.com/form-data/form-data#void-setboundary) +- [_Buffer_ getBuffer()](https://github.com/form-data/form-data#buffer-getbuffer) +- [_Integer_ getLengthSync()](https://github.com/form-data/form-data#integer-getlengthsync) +- [_Integer_ getLength( **function** _callback_ )](https://github.com/form-data/form-data#integer-getlength-function-callback-) +- [_Boolean_ hasKnownLength()](https://github.com/form-data/form-data#boolean-hasknownlength) +- [_Request_ submit( _params_, **function** _callback_ )](https://github.com/form-data/form-data#request-submit-params-function-callback-) +- [_String_ toString()](https://github.com/form-data/form-data#string-tostring) + +#### _Void_ append( **String** _field_, **Mixed** _value_ [, **Mixed** _options_] ) +Append data to the form. You can submit about any format (string, integer, boolean, buffer, etc.). However, Arrays are not supported and need to be turned into strings by the user. +```javascript +var form = new FormData(); +form.append( 'my_string', 'my value' ); +form.append( 'my_integer', 1 ); +form.append( 'my_boolean', true ); +form.append( 'my_buffer', new Buffer(10) ); +form.append( 'my_array_as_json', JSON.stringify( ['bird','cute'] ) ) +``` + +You may provide a string for options, or an object. +```javascript +// Set filename by providing a string for options +form.append( 'my_file', fs.createReadStream('/foo/bar.jpg'), 'bar.jpg' ); + +// provide an object. +form.append( 'my_file', fs.createReadStream('/foo/bar.jpg'), {filename: 'bar.jpg', contentType: 'image/jpeg', knownLength: 19806} ); +``` + +#### _Headers_ getHeaders( [**Headers** _userHeaders_] ) +This method adds the correct `content-type` header to the provided array of `userHeaders`. + +#### _String_ getBoundary() +Return the boundary of the formData. By default, the boundary consists of 26 `-` followed by 24 numbers +for example: +```javascript +--------------------------515890814546601021194782 +``` + +#### _Void_ setBoundary(String _boundary_) +Set the boundary string, overriding the default behavior described above. + +_Note: The boundary must be unique and may not appear in the data._ + +#### _Buffer_ getBuffer() +Return the full formdata request package, as a Buffer. You can insert this Buffer in e.g. Axios to send multipart data. +```javascript +var form = new FormData(); +form.append( 'my_buffer', Buffer.from([0x4a,0x42,0x20,0x52,0x6f,0x63,0x6b,0x73]) ); +form.append( 'my_file', fs.readFileSync('/foo/bar.jpg') ); + +axios.post( 'https://example.com/path/to/api', + form.getBuffer(), + form.getHeaders() + ) +``` +**Note:** Because the output is of type Buffer, you can only append types that are accepted by Buffer: *string, Buffer, ArrayBuffer, Array, or Array-like Object*. A ReadStream for example will result in an error. + +#### _Integer_ getLengthSync() +Same as `getLength` but synchronous. + +_Note: getLengthSync __doesn't__ calculate streams length._ + +#### _Integer_ getLength( **function** _callback_ ) +Returns the `Content-Length` async. The callback is used to handle errors and continue once the length has been calculated +```javascript +this.getLength(function(err, length) { + if (err) { + this._error(err); + return; + } + + // add content length + request.setHeader('Content-Length', length); + + ... +}.bind(this)); +``` + +#### _Boolean_ hasKnownLength() +Checks if the length of added values is known. + +#### _Request_ submit( _params_, **function** _callback_ ) +Submit the form to a web application. +```javascript +var form = new FormData(); +form.append( 'my_string', 'Hello World' ); + +form.submit( 'http://example.com/', function(err, res) { + // res – response object (http.IncomingMessage) // + res.resume(); +} ); +``` + +#### _String_ toString() +Returns the form data as a string. Don't use this if you are sending files or buffers, use `getBuffer()` instead. + +### Integration with other libraries + +#### Request + +Form submission using [request](https://github.com/request/request): + +```javascript +var formData = { + my_field: 'my_value', + my_file: fs.createReadStream(__dirname + '/unicycle.jpg'), +}; + +request.post({url:'http://service.com/upload', formData: formData}, function(err, httpResponse, body) { + if (err) { + return console.error('upload failed:', err); + } + console.log('Upload successful! Server responded with:', body); +}); +``` + +For more details see [request readme](https://github.com/request/request#multipartform-data-multipart-form-uploads). + +#### node-fetch + +You can also submit a form using [node-fetch](https://github.com/bitinn/node-fetch): + +```javascript +var form = new FormData(); + +form.append('a', 1); + +fetch('http://example.com', { method: 'POST', body: form }) + .then(function(res) { + return res.json(); + }).then(function(json) { + console.log(json); + }); +``` + +#### axios + +In Node.js you can post a file using [axios](https://github.com/axios/axios): +```javascript +const form = new FormData(); +const stream = fs.createReadStream(PATH_TO_FILE); + +form.append('image', stream); + +// In Node.js environment you need to set boundary in the header field 'Content-Type' by calling method `getHeaders` +const formHeaders = form.getHeaders(); + +axios.post('http://example.com', form, { + headers: { + ...formHeaders, + }, +}) +.then(response => response) +.catch(error => error) +``` + +## Notes + +- ```getLengthSync()``` method DOESN'T calculate length for streams, use ```knownLength``` options as workaround. +- ```getLength(cb)``` will send an error as first parameter of callback if stream length cannot be calculated (e.g. send in custom streams w/o using ```knownLength```). +- ```submit``` will not add `content-length` if form length is unknown or not calculable. +- Starting version `2.x` FormData has dropped support for `node@0.10.x`. +- Starting version `3.x` FormData has dropped support for `node@4.x`. + +## License + +Form-Data is released under the [MIT](License) license. diff --git a/node_modules/form-data/index.d.ts b/node_modules/form-data/index.d.ts new file mode 100644 index 000000000..295e9e9bc --- /dev/null +++ b/node_modules/form-data/index.d.ts @@ -0,0 +1,62 @@ +// Definitions by: Carlos Ballesteros Velasco +// Leon Yu +// BendingBender +// Maple Miao + +/// +import * as stream from 'stream'; +import * as http from 'http'; + +export = FormData; + +// Extracted because @types/node doesn't export interfaces. +interface ReadableOptions { + highWaterMark?: number; + encoding?: string; + objectMode?: boolean; + read?(this: stream.Readable, size: number): void; + destroy?(this: stream.Readable, error: Error | null, callback: (error: Error | null) => void): void; + autoDestroy?: boolean; +} + +interface Options extends ReadableOptions { + writable?: boolean; + readable?: boolean; + dataSize?: number; + maxDataSize?: number; + pauseStreams?: boolean; +} + +declare class FormData extends stream.Readable { + constructor(options?: Options); + append(key: string, value: any, options?: FormData.AppendOptions | string): void; + getHeaders(userHeaders?: FormData.Headers): FormData.Headers; + submit( + params: string | FormData.SubmitOptions, + callback?: (error: Error | null, response: http.IncomingMessage) => void + ): http.ClientRequest; + getBuffer(): Buffer; + setBoundary(boundary: string): void; + getBoundary(): string; + getLength(callback: (err: Error | null, length: number) => void): void; + getLengthSync(): number; + hasKnownLength(): boolean; +} + +declare namespace FormData { + interface Headers { + [key: string]: any; + } + + interface AppendOptions { + header?: string | Headers; + knownLength?: number; + filename?: string; + filepath?: string; + contentType?: string; + } + + interface SubmitOptions extends http.RequestOptions { + protocol?: 'https:' | 'http:'; + } +} diff --git a/node_modules/form-data/lib/browser.js b/node_modules/form-data/lib/browser.js new file mode 100644 index 000000000..09e7c70e6 --- /dev/null +++ b/node_modules/form-data/lib/browser.js @@ -0,0 +1,2 @@ +/* eslint-env browser */ +module.exports = typeof self == 'object' ? self.FormData : window.FormData; diff --git a/node_modules/form-data/lib/form_data.js b/node_modules/form-data/lib/form_data.js new file mode 100644 index 000000000..18dc819cd --- /dev/null +++ b/node_modules/form-data/lib/form_data.js @@ -0,0 +1,501 @@ +var CombinedStream = require('combined-stream'); +var util = require('util'); +var path = require('path'); +var http = require('http'); +var https = require('https'); +var parseUrl = require('url').parse; +var fs = require('fs'); +var Stream = require('stream').Stream; +var mime = require('mime-types'); +var asynckit = require('asynckit'); +var populate = require('./populate.js'); + +// Public API +module.exports = FormData; + +// make it a Stream +util.inherits(FormData, CombinedStream); + +/** + * Create readable "multipart/form-data" streams. + * Can be used to submit forms + * and file uploads to other web applications. + * + * @constructor + * @param {Object} options - Properties to be added/overriden for FormData and CombinedStream + */ +function FormData(options) { + if (!(this instanceof FormData)) { + return new FormData(options); + } + + this._overheadLength = 0; + this._valueLength = 0; + this._valuesToMeasure = []; + + CombinedStream.call(this); + + options = options || {}; + for (var option in options) { + this[option] = options[option]; + } +} + +FormData.LINE_BREAK = '\r\n'; +FormData.DEFAULT_CONTENT_TYPE = 'application/octet-stream'; + +FormData.prototype.append = function(field, value, options) { + + options = options || {}; + + // allow filename as single option + if (typeof options == 'string') { + options = {filename: options}; + } + + var append = CombinedStream.prototype.append.bind(this); + + // all that streamy business can't handle numbers + if (typeof value == 'number') { + value = '' + value; + } + + // https://github.com/felixge/node-form-data/issues/38 + if (util.isArray(value)) { + // Please convert your array into string + // the way web server expects it + this._error(new Error('Arrays are not supported.')); + return; + } + + var header = this._multiPartHeader(field, value, options); + var footer = this._multiPartFooter(); + + append(header); + append(value); + append(footer); + + // pass along options.knownLength + this._trackLength(header, value, options); +}; + +FormData.prototype._trackLength = function(header, value, options) { + var valueLength = 0; + + // used w/ getLengthSync(), when length is known. + // e.g. for streaming directly from a remote server, + // w/ a known file a size, and not wanting to wait for + // incoming file to finish to get its size. + if (options.knownLength != null) { + valueLength += +options.knownLength; + } else if (Buffer.isBuffer(value)) { + valueLength = value.length; + } else if (typeof value === 'string') { + valueLength = Buffer.byteLength(value); + } + + this._valueLength += valueLength; + + // @check why add CRLF? does this account for custom/multiple CRLFs? + this._overheadLength += + Buffer.byteLength(header) + + FormData.LINE_BREAK.length; + + // empty or either doesn't have path or not an http response or not a stream + if (!value || ( !value.path && !(value.readable && value.hasOwnProperty('httpVersion')) && !(value instanceof Stream))) { + return; + } + + // no need to bother with the length + if (!options.knownLength) { + this._valuesToMeasure.push(value); + } +}; + +FormData.prototype._lengthRetriever = function(value, callback) { + + if (value.hasOwnProperty('fd')) { + + // take read range into a account + // `end` = Infinity –> read file till the end + // + // TODO: Looks like there is bug in Node fs.createReadStream + // it doesn't respect `end` options without `start` options + // Fix it when node fixes it. + // https://github.com/joyent/node/issues/7819 + if (value.end != undefined && value.end != Infinity && value.start != undefined) { + + // when end specified + // no need to calculate range + // inclusive, starts with 0 + callback(null, value.end + 1 - (value.start ? value.start : 0)); + + // not that fast snoopy + } else { + // still need to fetch file size from fs + fs.stat(value.path, function(err, stat) { + + var fileSize; + + if (err) { + callback(err); + return; + } + + // update final size based on the range options + fileSize = stat.size - (value.start ? value.start : 0); + callback(null, fileSize); + }); + } + + // or http response + } else if (value.hasOwnProperty('httpVersion')) { + callback(null, +value.headers['content-length']); + + // or request stream http://github.com/mikeal/request + } else if (value.hasOwnProperty('httpModule')) { + // wait till response come back + value.on('response', function(response) { + value.pause(); + callback(null, +response.headers['content-length']); + }); + value.resume(); + + // something else + } else { + callback('Unknown stream'); + } +}; + +FormData.prototype._multiPartHeader = function(field, value, options) { + // custom header specified (as string)? + // it becomes responsible for boundary + // (e.g. to handle extra CRLFs on .NET servers) + if (typeof options.header == 'string') { + return options.header; + } + + var contentDisposition = this._getContentDisposition(value, options); + var contentType = this._getContentType(value, options); + + var contents = ''; + var headers = { + // add custom disposition as third element or keep it two elements if not + 'Content-Disposition': ['form-data', 'name="' + field + '"'].concat(contentDisposition || []), + // if no content type. allow it to be empty array + 'Content-Type': [].concat(contentType || []) + }; + + // allow custom headers. + if (typeof options.header == 'object') { + populate(headers, options.header); + } + + var header; + for (var prop in headers) { + if (!headers.hasOwnProperty(prop)) continue; + header = headers[prop]; + + // skip nullish headers. + if (header == null) { + continue; + } + + // convert all headers to arrays. + if (!Array.isArray(header)) { + header = [header]; + } + + // add non-empty headers. + if (header.length) { + contents += prop + ': ' + header.join('; ') + FormData.LINE_BREAK; + } + } + + return '--' + this.getBoundary() + FormData.LINE_BREAK + contents + FormData.LINE_BREAK; +}; + +FormData.prototype._getContentDisposition = function(value, options) { + + var filename + , contentDisposition + ; + + if (typeof options.filepath === 'string') { + // custom filepath for relative paths + filename = path.normalize(options.filepath).replace(/\\/g, '/'); + } else if (options.filename || value.name || value.path) { + // custom filename take precedence + // formidable and the browser add a name property + // fs- and request- streams have path property + filename = path.basename(options.filename || value.name || value.path); + } else if (value.readable && value.hasOwnProperty('httpVersion')) { + // or try http response + filename = path.basename(value.client._httpMessage.path || ''); + } + + if (filename) { + contentDisposition = 'filename="' + filename + '"'; + } + + return contentDisposition; +}; + +FormData.prototype._getContentType = function(value, options) { + + // use custom content-type above all + var contentType = options.contentType; + + // or try `name` from formidable, browser + if (!contentType && value.name) { + contentType = mime.lookup(value.name); + } + + // or try `path` from fs-, request- streams + if (!contentType && value.path) { + contentType = mime.lookup(value.path); + } + + // or if it's http-reponse + if (!contentType && value.readable && value.hasOwnProperty('httpVersion')) { + contentType = value.headers['content-type']; + } + + // or guess it from the filepath or filename + if (!contentType && (options.filepath || options.filename)) { + contentType = mime.lookup(options.filepath || options.filename); + } + + // fallback to the default content type if `value` is not simple value + if (!contentType && typeof value == 'object') { + contentType = FormData.DEFAULT_CONTENT_TYPE; + } + + return contentType; +}; + +FormData.prototype._multiPartFooter = function() { + return function(next) { + var footer = FormData.LINE_BREAK; + + var lastPart = (this._streams.length === 0); + if (lastPart) { + footer += this._lastBoundary(); + } + + next(footer); + }.bind(this); +}; + +FormData.prototype._lastBoundary = function() { + return '--' + this.getBoundary() + '--' + FormData.LINE_BREAK; +}; + +FormData.prototype.getHeaders = function(userHeaders) { + var header; + var formHeaders = { + 'content-type': 'multipart/form-data; boundary=' + this.getBoundary() + }; + + for (header in userHeaders) { + if (userHeaders.hasOwnProperty(header)) { + formHeaders[header.toLowerCase()] = userHeaders[header]; + } + } + + return formHeaders; +}; + +FormData.prototype.setBoundary = function(boundary) { + this._boundary = boundary; +}; + +FormData.prototype.getBoundary = function() { + if (!this._boundary) { + this._generateBoundary(); + } + + return this._boundary; +}; + +FormData.prototype.getBuffer = function() { + var dataBuffer = new Buffer.alloc( 0 ); + var boundary = this.getBoundary(); + + // Create the form content. Add Line breaks to the end of data. + for (var i = 0, len = this._streams.length; i < len; i++) { + if (typeof this._streams[i] !== 'function') { + + // Add content to the buffer. + if(Buffer.isBuffer(this._streams[i])) { + dataBuffer = Buffer.concat( [dataBuffer, this._streams[i]]); + }else { + dataBuffer = Buffer.concat( [dataBuffer, Buffer.from(this._streams[i])]); + } + + // Add break after content. + if (typeof this._streams[i] !== 'string' || this._streams[i].substring( 2, boundary.length + 2 ) !== boundary) { + dataBuffer = Buffer.concat( [dataBuffer, Buffer.from(FormData.LINE_BREAK)] ); + } + } + } + + // Add the footer and return the Buffer object. + return Buffer.concat( [dataBuffer, Buffer.from(this._lastBoundary())] ); +}; + +FormData.prototype._generateBoundary = function() { + // This generates a 50 character boundary similar to those used by Firefox. + // They are optimized for boyer-moore parsing. + var boundary = '--------------------------'; + for (var i = 0; i < 24; i++) { + boundary += Math.floor(Math.random() * 10).toString(16); + } + + this._boundary = boundary; +}; + +// Note: getLengthSync DOESN'T calculate streams length +// As workaround one can calculate file size manually +// and add it as knownLength option +FormData.prototype.getLengthSync = function() { + var knownLength = this._overheadLength + this._valueLength; + + // Don't get confused, there are 3 "internal" streams for each keyval pair + // so it basically checks if there is any value added to the form + if (this._streams.length) { + knownLength += this._lastBoundary().length; + } + + // https://github.com/form-data/form-data/issues/40 + if (!this.hasKnownLength()) { + // Some async length retrievers are present + // therefore synchronous length calculation is false. + // Please use getLength(callback) to get proper length + this._error(new Error('Cannot calculate proper length in synchronous way.')); + } + + return knownLength; +}; + +// Public API to check if length of added values is known +// https://github.com/form-data/form-data/issues/196 +// https://github.com/form-data/form-data/issues/262 +FormData.prototype.hasKnownLength = function() { + var hasKnownLength = true; + + if (this._valuesToMeasure.length) { + hasKnownLength = false; + } + + return hasKnownLength; +}; + +FormData.prototype.getLength = function(cb) { + var knownLength = this._overheadLength + this._valueLength; + + if (this._streams.length) { + knownLength += this._lastBoundary().length; + } + + if (!this._valuesToMeasure.length) { + process.nextTick(cb.bind(this, null, knownLength)); + return; + } + + asynckit.parallel(this._valuesToMeasure, this._lengthRetriever, function(err, values) { + if (err) { + cb(err); + return; + } + + values.forEach(function(length) { + knownLength += length; + }); + + cb(null, knownLength); + }); +}; + +FormData.prototype.submit = function(params, cb) { + var request + , options + , defaults = {method: 'post'} + ; + + // parse provided url if it's string + // or treat it as options object + if (typeof params == 'string') { + + params = parseUrl(params); + options = populate({ + port: params.port, + path: params.pathname, + host: params.hostname, + protocol: params.protocol + }, defaults); + + // use custom params + } else { + + options = populate(params, defaults); + // if no port provided use default one + if (!options.port) { + options.port = options.protocol == 'https:' ? 443 : 80; + } + } + + // put that good code in getHeaders to some use + options.headers = this.getHeaders(params.headers); + + // https if specified, fallback to http in any other case + if (options.protocol == 'https:') { + request = https.request(options); + } else { + request = http.request(options); + } + + // get content length and fire away + this.getLength(function(err, length) { + if (err && err !== 'Unknown stream') { + this._error(err); + return; + } + + // add content length + if (length) { + request.setHeader('Content-Length', length); + } + + this.pipe(request); + if (cb) { + var onResponse; + + var callback = function (error, responce) { + request.removeListener('error', callback); + request.removeListener('response', onResponse); + + return cb.call(this, error, responce); + }; + + onResponse = callback.bind(this, null); + + request.on('error', callback); + request.on('response', onResponse); + } + }.bind(this)); + + return request; +}; + +FormData.prototype._error = function(err) { + if (!this.error) { + this.error = err; + this.pause(); + this.emit('error', err); + } +}; + +FormData.prototype.toString = function () { + return '[object FormData]'; +}; diff --git a/node_modules/form-data/lib/populate.js b/node_modules/form-data/lib/populate.js new file mode 100644 index 000000000..4d35738dd --- /dev/null +++ b/node_modules/form-data/lib/populate.js @@ -0,0 +1,10 @@ +// populates missing values +module.exports = function(dst, src) { + + Object.keys(src).forEach(function(prop) + { + dst[prop] = dst[prop] || src[prop]; + }); + + return dst; +}; diff --git a/node_modules/form-data/package.json b/node_modules/form-data/package.json new file mode 100644 index 000000000..0f20240bf --- /dev/null +++ b/node_modules/form-data/package.json @@ -0,0 +1,68 @@ +{ + "author": "Felix Geisendörfer (http://debuggable.com/)", + "name": "form-data", + "description": "A library to create readable \"multipart/form-data\" streams. Can be used to submit forms and file uploads to other web applications.", + "version": "4.0.0", + "repository": { + "type": "git", + "url": "git://github.com/form-data/form-data.git" + }, + "main": "./lib/form_data", + "browser": "./lib/browser", + "typings": "./index.d.ts", + "scripts": { + "pretest": "rimraf coverage test/tmp", + "test": "istanbul cover test/run.js", + "posttest": "istanbul report lcov text", + "lint": "eslint lib/*.js test/*.js test/integration/*.js", + "report": "istanbul report lcov text", + "ci-lint": "is-node-modern 8 && npm run lint || is-node-not-modern 8", + "ci-test": "npm run test && npm run browser && npm run report", + "predebug": "rimraf coverage test/tmp", + "debug": "verbose=1 ./test/run.js", + "browser": "browserify -t browserify-istanbul test/run-browser.js | obake --coverage", + "check": "istanbul check-coverage coverage/coverage*.json", + "files": "pkgfiles --sort=name", + "get-version": "node -e \"console.log(require('./package.json').version)\"", + "update-readme": "sed -i.bak 's/\\/master\\.svg/\\/v'$(npm --silent run get-version)'.svg/g' README.md", + "restore-readme": "mv README.md.bak README.md", + "prepublish": "in-publish && npm run update-readme || not-in-publish", + "postpublish": "npm run restore-readme" + }, + "pre-commit": [ + "lint", + "ci-test", + "check" + ], + "engines": { + "node": ">= 6" + }, + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "devDependencies": { + "@types/node": "^12.0.10", + "browserify": "^13.1.1", + "browserify-istanbul": "^2.0.0", + "coveralls": "^3.0.4", + "cross-spawn": "^6.0.5", + "eslint": "^6.0.1", + "fake": "^0.2.2", + "far": "^0.0.7", + "formidable": "^1.0.17", + "in-publish": "^2.0.0", + "is-node-modern": "^1.0.0", + "istanbul": "^0.4.5", + "obake": "^0.1.2", + "puppeteer": "^1.19.0", + "pkgfiles": "^2.3.0", + "pre-commit": "^1.1.3", + "request": "^2.88.0", + "rimraf": "^2.7.1", + "tape": "^4.6.2", + "typescript": "^3.5.2" + }, + "license": "MIT" +} diff --git a/node_modules/proxy-from-env/.eslintrc b/node_modules/proxy-from-env/.eslintrc new file mode 100644 index 000000000..a51449b2b --- /dev/null +++ b/node_modules/proxy-from-env/.eslintrc @@ -0,0 +1,29 @@ +{ + "env": { + "node": true + }, + "rules": { + "array-bracket-spacing": [2, "never"], + "block-scoped-var": 2, + "brace-style": [2, "1tbs"], + "camelcase": 1, + "computed-property-spacing": [2, "never"], + "curly": 2, + "eol-last": 2, + "eqeqeq": [2, "smart"], + "max-depth": [1, 3], + "max-len": [1, 80], + "max-statements": [1, 15], + "new-cap": 1, + "no-extend-native": 2, + "no-mixed-spaces-and-tabs": 2, + "no-trailing-spaces": 2, + "no-unused-vars": 1, + "no-use-before-define": [2, "nofunc"], + "object-curly-spacing": [2, "never"], + "quotes": [2, "single", "avoid-escape"], + "semi": [2, "always"], + "keyword-spacing": [2, {"before": true, "after": true}], + "space-unary-ops": 2 + } +} diff --git a/node_modules/proxy-from-env/.travis.yml b/node_modules/proxy-from-env/.travis.yml new file mode 100644 index 000000000..64a05f94b --- /dev/null +++ b/node_modules/proxy-from-env/.travis.yml @@ -0,0 +1,10 @@ +language: node_js +node_js: + - node + - lts/* +script: + - npm run lint + # test-coverage will also run the tests, but does not print helpful output upon test failure. + # So we also run the tests separately. + - npm run test + - npm run test-coverage && cat coverage/lcov.info | ./node_modules/.bin/coveralls && rm -rf coverage diff --git a/node_modules/proxy-from-env/LICENSE b/node_modules/proxy-from-env/LICENSE new file mode 100644 index 000000000..8f25097d0 --- /dev/null +++ b/node_modules/proxy-from-env/LICENSE @@ -0,0 +1,20 @@ +The MIT License + +Copyright (C) 2016-2018 Rob Wu + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/node_modules/proxy-from-env/README.md b/node_modules/proxy-from-env/README.md new file mode 100644 index 000000000..e82520c16 --- /dev/null +++ b/node_modules/proxy-from-env/README.md @@ -0,0 +1,131 @@ +# proxy-from-env + +[![Build Status](https://travis-ci.org/Rob--W/proxy-from-env.svg?branch=master)](https://travis-ci.org/Rob--W/proxy-from-env) +[![Coverage Status](https://coveralls.io/repos/github/Rob--W/proxy-from-env/badge.svg?branch=master)](https://coveralls.io/github/Rob--W/proxy-from-env?branch=master) + +`proxy-from-env` is a Node.js package that exports a function (`getProxyForUrl`) +that takes an input URL (a string or +[`url.parse`](https://nodejs.org/docs/latest/api/url.html#url_url_parsing)'s +return value) and returns the desired proxy URL (also a string) based on +standard proxy environment variables. If no proxy is set, an empty string is +returned. + +It is your responsibility to actually proxy the request using the given URL. + +Installation: + +```sh +npm install proxy-from-env +``` + +## Example +This example shows how the data for a URL can be fetched via the +[`http` module](https://nodejs.org/api/http.html), in a proxy-aware way. + +```javascript +var http = require('http'); +var parseUrl = require('url').parse; +var getProxyForUrl = require('proxy-from-env').getProxyForUrl; + +var some_url = 'http://example.com/something'; + +// // Example, if there is a proxy server at 10.0.0.1:1234, then setting the +// // http_proxy environment variable causes the request to go through a proxy. +// process.env.http_proxy = 'http://10.0.0.1:1234'; +// +// // But if the host to be proxied is listed in NO_PROXY, then the request is +// // not proxied (but a direct request is made). +// process.env.no_proxy = 'example.com'; + +var proxy_url = getProxyForUrl(some_url); // <-- Our magic. +if (proxy_url) { + // Should be proxied through proxy_url. + var parsed_some_url = parseUrl(some_url); + var parsed_proxy_url = parseUrl(proxy_url); + // A HTTP proxy is quite simple. It is similar to a normal request, except the + // path is an absolute URL, and the proxied URL's host is put in the header + // instead of the server's actual host. + httpOptions = { + protocol: parsed_proxy_url.protocol, + hostname: parsed_proxy_url.hostname, + port: parsed_proxy_url.port, + path: parsed_some_url.href, + headers: { + Host: parsed_some_url.host, // = host name + optional port. + }, + }; +} else { + // Direct request. + httpOptions = some_url; +} +http.get(httpOptions, function(res) { + var responses = []; + res.on('data', function(chunk) { responses.push(chunk); }); + res.on('end', function() { console.log(responses.join('')); }); +}); + +``` + +## Environment variables +The environment variables can be specified in lowercase or uppercase, with the +lowercase name having precedence over the uppercase variant. A variable that is +not set has the same meaning as a variable that is set but has no value. + +### NO\_PROXY + +`NO_PROXY` is a list of host names (optionally with a port). If the input URL +matches any of the entries in `NO_PROXY`, then the input URL should be fetched +by a direct request (i.e. without a proxy). + +Matching follows the following rules: + +- `NO_PROXY=*` disables all proxies. +- Space and commas may be used to separate the entries in the `NO_PROXY` list. +- If `NO_PROXY` does not contain any entries, then proxies are never disabled. +- If a port is added after the host name, then the ports must match. If the URL + does not have an explicit port name, the protocol's default port is used. +- Generally, the proxy is only disabled if the host name is an exact match for + an entry in the `NO_PROXY` list. The only exceptions are entries that start + with a dot or with a wildcard; then the proxy is disabled if the host name + ends with the entry. + +See `test.js` for examples of what should match and what does not. + +### \*\_PROXY + +The environment variable used for the proxy depends on the protocol of the URL. +For example, `https://example.com` uses the "https" protocol, and therefore the +proxy to be used is `HTTPS_PROXY` (_NOT_ `HTTP_PROXY`, which is _only_ used for +http:-URLs). + +The library is not limited to http(s), other schemes such as +`FTP_PROXY` (ftp:), +`WSS_PROXY` (wss:), +`WS_PROXY` (ws:) +are also supported. + +If present, `ALL_PROXY` is used as fallback if there is no other match. + + +## External resources +The exact way of parsing the environment variables is not codified in any +standard. This library is designed to be compatible with formats as expected by +existing software. +The following resources were used to determine the desired behavior: + +- cURL: + https://curl.haxx.se/docs/manpage.html#ENVIRONMENT + https://github.com/curl/curl/blob/4af40b3646d3b09f68e419f7ca866ff395d1f897/lib/url.c#L4446-L4514 + https://github.com/curl/curl/blob/4af40b3646d3b09f68e419f7ca866ff395d1f897/lib/url.c#L4608-L4638 + +- wget: + https://www.gnu.org/software/wget/manual/wget.html#Proxies + http://git.savannah.gnu.org/cgit/wget.git/tree/src/init.c?id=636a5f9a1c508aa39e35a3a8e9e54520a284d93d#n383 + http://git.savannah.gnu.org/cgit/wget.git/tree/src/retr.c?id=93c1517c4071c4288ba5a4b038e7634e4c6b5482#n1278 + +- W3: + https://www.w3.org/Daemon/User/Proxies/ProxyClients.html + +- Python's urllib: + https://github.com/python/cpython/blob/936135bb97fe04223aa30ca6e98eac8f3ed6b349/Lib/urllib/request.py#L755-L782 + https://github.com/python/cpython/blob/936135bb97fe04223aa30ca6e98eac8f3ed6b349/Lib/urllib/request.py#L2444-L2479 diff --git a/node_modules/proxy-from-env/index.js b/node_modules/proxy-from-env/index.js new file mode 100644 index 000000000..df75004ae --- /dev/null +++ b/node_modules/proxy-from-env/index.js @@ -0,0 +1,108 @@ +'use strict'; + +var parseUrl = require('url').parse; + +var DEFAULT_PORTS = { + ftp: 21, + gopher: 70, + http: 80, + https: 443, + ws: 80, + wss: 443, +}; + +var stringEndsWith = String.prototype.endsWith || function(s) { + return s.length <= this.length && + this.indexOf(s, this.length - s.length) !== -1; +}; + +/** + * @param {string|object} url - The URL, or the result from url.parse. + * @return {string} The URL of the proxy that should handle the request to the + * given URL. If no proxy is set, this will be an empty string. + */ +function getProxyForUrl(url) { + var parsedUrl = typeof url === 'string' ? parseUrl(url) : url || {}; + var proto = parsedUrl.protocol; + var hostname = parsedUrl.host; + var port = parsedUrl.port; + if (typeof hostname !== 'string' || !hostname || typeof proto !== 'string') { + return ''; // Don't proxy URLs without a valid scheme or host. + } + + proto = proto.split(':', 1)[0]; + // Stripping ports in this way instead of using parsedUrl.hostname to make + // sure that the brackets around IPv6 addresses are kept. + hostname = hostname.replace(/:\d*$/, ''); + port = parseInt(port) || DEFAULT_PORTS[proto] || 0; + if (!shouldProxy(hostname, port)) { + return ''; // Don't proxy URLs that match NO_PROXY. + } + + var proxy = + getEnv('npm_config_' + proto + '_proxy') || + getEnv(proto + '_proxy') || + getEnv('npm_config_proxy') || + getEnv('all_proxy'); + if (proxy && proxy.indexOf('://') === -1) { + // Missing scheme in proxy, default to the requested URL's scheme. + proxy = proto + '://' + proxy; + } + return proxy; +} + +/** + * Determines whether a given URL should be proxied. + * + * @param {string} hostname - The host name of the URL. + * @param {number} port - The effective port of the URL. + * @returns {boolean} Whether the given URL should be proxied. + * @private + */ +function shouldProxy(hostname, port) { + var NO_PROXY = + (getEnv('npm_config_no_proxy') || getEnv('no_proxy')).toLowerCase(); + if (!NO_PROXY) { + return true; // Always proxy if NO_PROXY is not set. + } + if (NO_PROXY === '*') { + return false; // Never proxy if wildcard is set. + } + + return NO_PROXY.split(/[,\s]/).every(function(proxy) { + if (!proxy) { + return true; // Skip zero-length hosts. + } + var parsedProxy = proxy.match(/^(.+):(\d+)$/); + var parsedProxyHostname = parsedProxy ? parsedProxy[1] : proxy; + var parsedProxyPort = parsedProxy ? parseInt(parsedProxy[2]) : 0; + if (parsedProxyPort && parsedProxyPort !== port) { + return true; // Skip if ports don't match. + } + + if (!/^[.*]/.test(parsedProxyHostname)) { + // No wildcards, so stop proxying if there is an exact match. + return hostname !== parsedProxyHostname; + } + + if (parsedProxyHostname.charAt(0) === '*') { + // Remove leading wildcard. + parsedProxyHostname = parsedProxyHostname.slice(1); + } + // Stop proxying if the hostname ends with the no_proxy host. + return !stringEndsWith.call(hostname, parsedProxyHostname); + }); +} + +/** + * Get the value for an environment variable. + * + * @param {string} key - The name of the environment variable. + * @return {string} The value of the environment variable. + * @private + */ +function getEnv(key) { + return process.env[key.toLowerCase()] || process.env[key.toUpperCase()] || ''; +} + +exports.getProxyForUrl = getProxyForUrl; diff --git a/node_modules/proxy-from-env/package.json b/node_modules/proxy-from-env/package.json new file mode 100644 index 000000000..be2b845b2 --- /dev/null +++ b/node_modules/proxy-from-env/package.json @@ -0,0 +1,34 @@ +{ + "name": "proxy-from-env", + "version": "1.1.0", + "description": "Offers getProxyForUrl to get the proxy URL for a URL, respecting the *_PROXY (e.g. HTTP_PROXY) and NO_PROXY environment variables.", + "main": "index.js", + "scripts": { + "lint": "eslint *.js", + "test": "mocha ./test.js --reporter spec", + "test-coverage": "istanbul cover ./node_modules/.bin/_mocha -- --reporter spec" + }, + "repository": { + "type": "git", + "url": "https://github.com/Rob--W/proxy-from-env.git" + }, + "keywords": [ + "proxy", + "http_proxy", + "https_proxy", + "no_proxy", + "environment" + ], + "author": "Rob Wu (https://robwu.nl/)", + "license": "MIT", + "bugs": { + "url": "https://github.com/Rob--W/proxy-from-env/issues" + }, + "homepage": "https://github.com/Rob--W/proxy-from-env#readme", + "devDependencies": { + "coveralls": "^3.0.9", + "eslint": "^6.8.0", + "istanbul": "^0.4.5", + "mocha": "^7.1.0" + } +} diff --git a/node_modules/proxy-from-env/test.js b/node_modules/proxy-from-env/test.js new file mode 100644 index 000000000..abf65423d --- /dev/null +++ b/node_modules/proxy-from-env/test.js @@ -0,0 +1,483 @@ +/* eslint max-statements:0 */ +'use strict'; + +var assert = require('assert'); +var parseUrl = require('url').parse; + +var getProxyForUrl = require('./').getProxyForUrl; + +// Runs the callback with process.env temporarily set to env. +function runWithEnv(env, callback) { + var originalEnv = process.env; + process.env = env; + try { + callback(); + } finally { + process.env = originalEnv; + } +} + +// Defines a test case that checks whether getProxyForUrl(input) === expected. +function testProxyUrl(env, expected, input) { + assert(typeof env === 'object' && env !== null); + // Copy object to make sure that the in param does not get modified between + // the call of this function and the use of it below. + env = JSON.parse(JSON.stringify(env)); + + var title = 'getProxyForUrl(' + JSON.stringify(input) + ')' + + ' === ' + JSON.stringify(expected); + + // Save call stack for later use. + var stack = {}; + Error.captureStackTrace(stack, testProxyUrl); + // Only use the last stack frame because that shows where this function is + // called, and that is sufficient for our purpose. No need to flood the logs + // with an uninteresting stack trace. + stack = stack.stack.split('\n', 2)[1]; + + it(title, function() { + var actual; + runWithEnv(env, function() { + actual = getProxyForUrl(input); + }); + if (expected === actual) { + return; // Good! + } + try { + assert.strictEqual(expected, actual); // Create a formatted error message. + // Should not happen because previously we determined expected !== actual. + throw new Error('assert.strictEqual passed. This is impossible!'); + } catch (e) { + // Use the original stack trace, so we can see a helpful line number. + e.stack = e.message + stack; + throw e; + } + }); +} + +describe('getProxyForUrl', function() { + describe('No proxy variables', function() { + var env = {}; + testProxyUrl(env, '', 'http://example.com'); + testProxyUrl(env, '', 'https://example.com'); + testProxyUrl(env, '', 'ftp://example.com'); + }); + + describe('Invalid URLs', function() { + var env = {}; + env.ALL_PROXY = 'http://unexpected.proxy'; + testProxyUrl(env, '', 'bogus'); + testProxyUrl(env, '', '//example.com'); + testProxyUrl(env, '', '://example.com'); + testProxyUrl(env, '', '://'); + testProxyUrl(env, '', '/path'); + testProxyUrl(env, '', ''); + testProxyUrl(env, '', 'http:'); + testProxyUrl(env, '', 'http:/'); + testProxyUrl(env, '', 'http://'); + testProxyUrl(env, '', 'prototype://'); + testProxyUrl(env, '', 'hasOwnProperty://'); + testProxyUrl(env, '', '__proto__://'); + testProxyUrl(env, '', undefined); + testProxyUrl(env, '', null); + testProxyUrl(env, '', {}); + testProxyUrl(env, '', {host: 'x', protocol: 1}); + testProxyUrl(env, '', {host: 1, protocol: 'x'}); + }); + + describe('http_proxy and HTTP_PROXY', function() { + var env = {}; + env.HTTP_PROXY = 'http://http-proxy'; + + testProxyUrl(env, '', 'https://example'); + testProxyUrl(env, 'http://http-proxy', 'http://example'); + testProxyUrl(env, 'http://http-proxy', parseUrl('http://example')); + + // eslint-disable-next-line camelcase + env.http_proxy = 'http://priority'; + testProxyUrl(env, 'http://priority', 'http://example'); + }); + + describe('http_proxy with non-sensical value', function() { + var env = {}; + // Crazy values should be passed as-is. It is the responsibility of the + // one who launches the application that the value makes sense. + // TODO: Should we be stricter and perform validation? + env.HTTP_PROXY = 'Crazy \n!() { ::// }'; + testProxyUrl(env, 'Crazy \n!() { ::// }', 'http://wow'); + + // The implementation assumes that the HTTP_PROXY environment variable is + // somewhat reasonable, and if the scheme is missing, it is added. + // Garbage in, garbage out some would say... + env.HTTP_PROXY = 'crazy without colon slash slash'; + testProxyUrl(env, 'http://crazy without colon slash slash', 'http://wow'); + }); + + describe('https_proxy and HTTPS_PROXY', function() { + var env = {}; + // Assert that there is no fall back to http_proxy + env.HTTP_PROXY = 'http://unexpected.proxy'; + testProxyUrl(env, '', 'https://example'); + + env.HTTPS_PROXY = 'http://https-proxy'; + testProxyUrl(env, 'http://https-proxy', 'https://example'); + + // eslint-disable-next-line camelcase + env.https_proxy = 'http://priority'; + testProxyUrl(env, 'http://priority', 'https://example'); + }); + + describe('ftp_proxy', function() { + var env = {}; + // Something else than http_proxy / https, as a sanity check. + env.FTP_PROXY = 'http://ftp-proxy'; + + testProxyUrl(env, 'http://ftp-proxy', 'ftp://example'); + testProxyUrl(env, '', 'ftps://example'); + }); + + describe('all_proxy', function() { + var env = {}; + env.ALL_PROXY = 'http://catch-all'; + testProxyUrl(env, 'http://catch-all', 'https://example'); + + // eslint-disable-next-line camelcase + env.all_proxy = 'http://priority'; + testProxyUrl(env, 'http://priority', 'https://example'); + }); + + describe('all_proxy without scheme', function() { + var env = {}; + env.ALL_PROXY = 'noscheme'; + testProxyUrl(env, 'http://noscheme', 'http://example'); + testProxyUrl(env, 'https://noscheme', 'https://example'); + + // The module does not impose restrictions on the scheme. + testProxyUrl(env, 'bogus-scheme://noscheme', 'bogus-scheme://example'); + + // But the URL should still be valid. + testProxyUrl(env, '', 'bogus'); + }); + + describe('no_proxy empty', function() { + var env = {}; + env.HTTPS_PROXY = 'http://proxy'; + + // NO_PROXY set but empty. + env.NO_PROXY = ''; + testProxyUrl(env, 'http://proxy', 'https://example'); + + // No entries in NO_PROXY (comma). + env.NO_PROXY = ','; + testProxyUrl(env, 'http://proxy', 'https://example'); + + // No entries in NO_PROXY (whitespace). + env.NO_PROXY = ' '; + testProxyUrl(env, 'http://proxy', 'https://example'); + + // No entries in NO_PROXY (multiple whitespace / commas). + env.NO_PROXY = ',\t,,,\n, ,\r'; + testProxyUrl(env, 'http://proxy', 'https://example'); + }); + + describe('no_proxy=example (single host)', function() { + var env = {}; + env.HTTP_PROXY = 'http://proxy'; + + env.NO_PROXY = 'example'; + testProxyUrl(env, '', 'http://example'); + testProxyUrl(env, '', 'http://example:80'); + testProxyUrl(env, '', 'http://example:0'); + testProxyUrl(env, '', 'http://example:1337'); + testProxyUrl(env, 'http://proxy', 'http://sub.example'); + testProxyUrl(env, 'http://proxy', 'http://prefexample'); + testProxyUrl(env, 'http://proxy', 'http://example.no'); + testProxyUrl(env, 'http://proxy', 'http://a.b.example'); + testProxyUrl(env, 'http://proxy', 'http://host/example'); + }); + + describe('no_proxy=sub.example (subdomain)', function() { + var env = {}; + env.HTTP_PROXY = 'http://proxy'; + + env.NO_PROXY = 'sub.example'; + testProxyUrl(env, 'http://proxy', 'http://example'); + testProxyUrl(env, 'http://proxy', 'http://example:80'); + testProxyUrl(env, 'http://proxy', 'http://example:0'); + testProxyUrl(env, 'http://proxy', 'http://example:1337'); + testProxyUrl(env, '', 'http://sub.example'); + testProxyUrl(env, 'http://proxy', 'http://no.sub.example'); + testProxyUrl(env, 'http://proxy', 'http://sub-example'); + testProxyUrl(env, 'http://proxy', 'http://example.sub'); + }); + + describe('no_proxy=example:80 (host + port)', function() { + var env = {}; + env.HTTP_PROXY = 'http://proxy'; + + env.NO_PROXY = 'example:80'; + testProxyUrl(env, '', 'http://example'); + testProxyUrl(env, '', 'http://example:80'); + testProxyUrl(env, '', 'http://example:0'); + testProxyUrl(env, 'http://proxy', 'http://example:1337'); + testProxyUrl(env, 'http://proxy', 'http://sub.example'); + testProxyUrl(env, 'http://proxy', 'http://prefexample'); + testProxyUrl(env, 'http://proxy', 'http://example.no'); + testProxyUrl(env, 'http://proxy', 'http://a.b.example'); + }); + + describe('no_proxy=.example (host suffix)', function() { + var env = {}; + env.HTTP_PROXY = 'http://proxy'; + + env.NO_PROXY = '.example'; + testProxyUrl(env, 'http://proxy', 'http://example'); + testProxyUrl(env, 'http://proxy', 'http://example:80'); + testProxyUrl(env, 'http://proxy', 'http://example:1337'); + testProxyUrl(env, '', 'http://sub.example'); + testProxyUrl(env, '', 'http://sub.example:80'); + testProxyUrl(env, '', 'http://sub.example:1337'); + testProxyUrl(env, 'http://proxy', 'http://prefexample'); + testProxyUrl(env, 'http://proxy', 'http://example.no'); + testProxyUrl(env, '', 'http://a.b.example'); + }); + + describe('no_proxy=*', function() { + var env = {}; + env.HTTP_PROXY = 'http://proxy'; + env.NO_PROXY = '*'; + testProxyUrl(env, '', 'http://example.com'); + }); + + describe('no_proxy=*.example (host suffix with *.)', function() { + var env = {}; + env.HTTP_PROXY = 'http://proxy'; + + env.NO_PROXY = '*.example'; + testProxyUrl(env, 'http://proxy', 'http://example'); + testProxyUrl(env, 'http://proxy', 'http://example:80'); + testProxyUrl(env, 'http://proxy', 'http://example:1337'); + testProxyUrl(env, '', 'http://sub.example'); + testProxyUrl(env, '', 'http://sub.example:80'); + testProxyUrl(env, '', 'http://sub.example:1337'); + testProxyUrl(env, 'http://proxy', 'http://prefexample'); + testProxyUrl(env, 'http://proxy', 'http://example.no'); + testProxyUrl(env, '', 'http://a.b.example'); + }); + + describe('no_proxy=*example (substring suffix)', function() { + var env = {}; + env.HTTP_PROXY = 'http://proxy'; + + env.NO_PROXY = '*example'; + testProxyUrl(env, '', 'http://example'); + testProxyUrl(env, '', 'http://example:80'); + testProxyUrl(env, '', 'http://example:1337'); + testProxyUrl(env, '', 'http://sub.example'); + testProxyUrl(env, '', 'http://sub.example:80'); + testProxyUrl(env, '', 'http://sub.example:1337'); + testProxyUrl(env, '', 'http://prefexample'); + testProxyUrl(env, '', 'http://a.b.example'); + testProxyUrl(env, 'http://proxy', 'http://example.no'); + testProxyUrl(env, 'http://proxy', 'http://host/example'); + }); + + describe('no_proxy=.*example (arbitrary wildcards are NOT supported)', + function() { + var env = {}; + env.HTTP_PROXY = 'http://proxy'; + + env.NO_PROXY = '.*example'; + testProxyUrl(env, 'http://proxy', 'http://example'); + testProxyUrl(env, 'http://proxy', 'http://sub.example'); + testProxyUrl(env, 'http://proxy', 'http://sub.example'); + testProxyUrl(env, 'http://proxy', 'http://prefexample'); + testProxyUrl(env, 'http://proxy', 'http://x.prefexample'); + testProxyUrl(env, 'http://proxy', 'http://a.b.example'); + }); + + describe('no_proxy=[::1],[::2]:80,10.0.0.1,10.0.0.2:80 (IP addresses)', + function() { + var env = {}; + env.HTTP_PROXY = 'http://proxy'; + + env.NO_PROXY = '[::1],[::2]:80,10.0.0.1,10.0.0.2:80'; + testProxyUrl(env, '', 'http://[::1]/'); + testProxyUrl(env, '', 'http://[::1]:80/'); + testProxyUrl(env, '', 'http://[::1]:1337/'); + + testProxyUrl(env, '', 'http://[::2]/'); + testProxyUrl(env, '', 'http://[::2]:80/'); + testProxyUrl(env, 'http://proxy', 'http://[::2]:1337/'); + + testProxyUrl(env, '', 'http://10.0.0.1/'); + testProxyUrl(env, '', 'http://10.0.0.1:80/'); + testProxyUrl(env, '', 'http://10.0.0.1:1337/'); + + testProxyUrl(env, '', 'http://10.0.0.2/'); + testProxyUrl(env, '', 'http://10.0.0.2:80/'); + testProxyUrl(env, 'http://proxy', 'http://10.0.0.2:1337/'); + }); + + describe('no_proxy=127.0.0.1/32 (CIDR is NOT supported)', function() { + var env = {}; + env.HTTP_PROXY = 'http://proxy'; + + env.NO_PROXY = '127.0.0.1/32'; + testProxyUrl(env, 'http://proxy', 'http://127.0.0.1'); + testProxyUrl(env, 'http://proxy', 'http://127.0.0.1/32'); + }); + + describe('no_proxy=127.0.0.1 does NOT match localhost', function() { + var env = {}; + env.HTTP_PROXY = 'http://proxy'; + + env.NO_PROXY = '127.0.0.1'; + testProxyUrl(env, '', 'http://127.0.0.1'); + // We're not performing DNS queries, so this shouldn't match. + testProxyUrl(env, 'http://proxy', 'http://localhost'); + }); + + describe('no_proxy with protocols that have a default port', function() { + var env = {}; + env.WS_PROXY = 'http://ws'; + env.WSS_PROXY = 'http://wss'; + env.HTTP_PROXY = 'http://http'; + env.HTTPS_PROXY = 'http://https'; + env.GOPHER_PROXY = 'http://gopher'; + env.FTP_PROXY = 'http://ftp'; + env.ALL_PROXY = 'http://all'; + + env.NO_PROXY = 'xxx:21,xxx:70,xxx:80,xxx:443'; + + testProxyUrl(env, '', 'http://xxx'); + testProxyUrl(env, '', 'http://xxx:80'); + testProxyUrl(env, 'http://http', 'http://xxx:1337'); + + testProxyUrl(env, '', 'ws://xxx'); + testProxyUrl(env, '', 'ws://xxx:80'); + testProxyUrl(env, 'http://ws', 'ws://xxx:1337'); + + testProxyUrl(env, '', 'https://xxx'); + testProxyUrl(env, '', 'https://xxx:443'); + testProxyUrl(env, 'http://https', 'https://xxx:1337'); + + testProxyUrl(env, '', 'wss://xxx'); + testProxyUrl(env, '', 'wss://xxx:443'); + testProxyUrl(env, 'http://wss', 'wss://xxx:1337'); + + testProxyUrl(env, '', 'gopher://xxx'); + testProxyUrl(env, '', 'gopher://xxx:70'); + testProxyUrl(env, 'http://gopher', 'gopher://xxx:1337'); + + testProxyUrl(env, '', 'ftp://xxx'); + testProxyUrl(env, '', 'ftp://xxx:21'); + testProxyUrl(env, 'http://ftp', 'ftp://xxx:1337'); + }); + + describe('no_proxy should not be case-sensitive', function() { + var env = {}; + env.HTTP_PROXY = 'http://proxy'; + env.NO_PROXY = 'XXX,YYY,ZzZ'; + + testProxyUrl(env, '', 'http://xxx'); + testProxyUrl(env, '', 'http://XXX'); + testProxyUrl(env, '', 'http://yyy'); + testProxyUrl(env, '', 'http://YYY'); + testProxyUrl(env, '', 'http://ZzZ'); + testProxyUrl(env, '', 'http://zZz'); + }); + + describe('NPM proxy configuration', function() { + describe('npm_config_http_proxy should work', function() { + var env = {}; + // eslint-disable-next-line camelcase + env.npm_config_http_proxy = 'http://http-proxy'; + + testProxyUrl(env, '', 'https://example'); + testProxyUrl(env, 'http://http-proxy', 'http://example'); + + // eslint-disable-next-line camelcase + env.npm_config_http_proxy = 'http://priority'; + testProxyUrl(env, 'http://priority', 'http://example'); + }); + // eslint-disable-next-line max-len + describe('npm_config_http_proxy should take precedence over HTTP_PROXY and npm_config_proxy', function() { + var env = {}; + // eslint-disable-next-line camelcase + env.npm_config_http_proxy = 'http://http-proxy'; + // eslint-disable-next-line camelcase + env.npm_config_proxy = 'http://unexpected-proxy'; + env.HTTP_PROXY = 'http://unexpected-proxy'; + + testProxyUrl(env, 'http://http-proxy', 'http://example'); + }); + describe('npm_config_https_proxy should work', function() { + var env = {}; + // eslint-disable-next-line camelcase + env.npm_config_http_proxy = 'http://unexpected.proxy'; + testProxyUrl(env, '', 'https://example'); + + // eslint-disable-next-line camelcase + env.npm_config_https_proxy = 'http://https-proxy'; + testProxyUrl(env, 'http://https-proxy', 'https://example'); + + // eslint-disable-next-line camelcase + env.npm_config_https_proxy = 'http://priority'; + testProxyUrl(env, 'http://priority', 'https://example'); + }); + // eslint-disable-next-line max-len + describe('npm_config_https_proxy should take precedence over HTTPS_PROXY and npm_config_proxy', function() { + var env = {}; + // eslint-disable-next-line camelcase + env.npm_config_https_proxy = 'http://https-proxy'; + // eslint-disable-next-line camelcase + env.npm_config_proxy = 'http://unexpected-proxy'; + env.HTTPS_PROXY = 'http://unexpected-proxy'; + + testProxyUrl(env, 'http://https-proxy', 'https://example'); + }); + describe('npm_config_proxy should work', function() { + var env = {}; + // eslint-disable-next-line camelcase + env.npm_config_proxy = 'http://http-proxy'; + testProxyUrl(env, 'http://http-proxy', 'http://example'); + testProxyUrl(env, 'http://http-proxy', 'https://example'); + + // eslint-disable-next-line camelcase + env.npm_config_proxy = 'http://priority'; + testProxyUrl(env, 'http://priority', 'http://example'); + testProxyUrl(env, 'http://priority', 'https://example'); + }); + // eslint-disable-next-line max-len + describe('HTTP_PROXY and HTTPS_PROXY should take precedence over npm_config_proxy', function() { + var env = {}; + env.HTTP_PROXY = 'http://http-proxy'; + env.HTTPS_PROXY = 'http://https-proxy'; + // eslint-disable-next-line camelcase + env.npm_config_proxy = 'http://unexpected-proxy'; + testProxyUrl(env, 'http://http-proxy', 'http://example'); + testProxyUrl(env, 'http://https-proxy', 'https://example'); + }); + describe('npm_config_no_proxy should work', function() { + var env = {}; + env.HTTP_PROXY = 'http://proxy'; + // eslint-disable-next-line camelcase + env.npm_config_no_proxy = 'example'; + + testProxyUrl(env, '', 'http://example'); + testProxyUrl(env, 'http://proxy', 'http://otherwebsite'); + }); + // eslint-disable-next-line max-len + describe('npm_config_no_proxy should take precedence over NO_PROXY', function() { + var env = {}; + env.HTTP_PROXY = 'http://proxy'; + env.NO_PROXY = 'otherwebsite'; + // eslint-disable-next-line camelcase + env.npm_config_no_proxy = 'example'; + + testProxyUrl(env, '', 'http://example'); + testProxyUrl(env, 'http://proxy', 'http://otherwebsite'); + }); + }); +}); diff --git a/package-lock.json b/package-lock.json index a9cfd1f63..ec3250265 100644 --- a/package-lock.json +++ b/package-lock.json @@ -5,6 +5,7 @@ "packages": { "": { "dependencies": { + "axios": "^1.0.0", "express": "^4.18.1", "mongodb": "^4.10.0" } @@ -45,6 +46,21 @@ "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" + }, + "node_modules/axios": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.0.0.tgz", + "integrity": "sha512-SsHsGFN1qNPFT5QhSoSD37SHDfGyLSW5AESmyLk2JeCMHv5g0I9g0Hz/zQHx2KNe0jGXh2q2hAm7OdkXm360CA==", + "dependencies": { + "follow-redirects": "^1.15.0", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" + } + }, "node_modules/base64-js": { "version": "1.5.1", "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", @@ -141,6 +157,17 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, "node_modules/content-disposition": { "version": "0.5.4", "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", @@ -181,6 +208,14 @@ "ms": "2.0.0" } }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "engines": { + "node": ">=0.4.0" + } + }, "node_modules/denque": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/denque/-/denque-2.1.0.tgz", @@ -290,6 +325,38 @@ "node": ">= 0.8" } }, + "node_modules/follow-redirects": { + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz", + "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, "node_modules/forwarded": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", @@ -549,6 +616,11 @@ "node": ">= 0.10" } }, + "node_modules/proxy-from-env": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" + }, "node_modules/punycode": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", @@ -838,6 +910,21 @@ "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" }, + "asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" + }, + "axios": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.0.0.tgz", + "integrity": "sha512-SsHsGFN1qNPFT5QhSoSD37SHDfGyLSW5AESmyLk2JeCMHv5g0I9g0Hz/zQHx2KNe0jGXh2q2hAm7OdkXm360CA==", + "requires": { + "follow-redirects": "^1.15.0", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" + } + }, "base64-js": { "version": "1.5.1", "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", @@ -893,6 +980,14 @@ "get-intrinsic": "^1.0.2" } }, + "combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "requires": { + "delayed-stream": "~1.0.0" + } + }, "content-disposition": { "version": "0.5.4", "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", @@ -924,6 +1019,11 @@ "ms": "2.0.0" } }, + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==" + }, "denque": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/denque/-/denque-2.1.0.tgz", @@ -1011,6 +1111,21 @@ "unpipe": "~1.0.0" } }, + "follow-redirects": { + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz", + "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==" + }, + "form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + } + }, "forwarded": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", @@ -1191,6 +1306,11 @@ "ipaddr.js": "1.9.1" } }, + "proxy-from-env": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" + }, "punycode": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", diff --git a/package.json b/package.json index 19bbef7aa..fcbd1a68c 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,6 @@ { "dependencies": { + "axios": "^1.0.0", "express": "^4.18.1", "mongodb": "^4.10.0" } diff --git a/public/login.js b/public/login.js index fada178a2..440a85132 100644 --- a/public/login.js +++ b/public/login.js @@ -6,6 +6,11 @@ function githubLog() { method: 'GET', 'no-cors':true }) + .then(response => { + console.log(response); + window.location.href = response.url; + }) + .then() } diff --git a/server.js b/server.js index c6ac717a1..678028a9d 100644 --- a/server.js +++ b/server.js @@ -7,13 +7,34 @@ app.use(express.static("views")); app.use(express.json()); const clientId = '903729e701c50a0a540c'; -const clientSecret = 'OMITTED'; +const clientSecret = '11c4d32e3febd2e660acae7b806438ff3c44384f'; app.get('/github', (req, res) => { + // res.redirect("main.html"); res.redirect(`https://github.com/login/oauth/authorize?client_id=${clientId}`); }); - +const axios = require('axios'); +let token = null; + +app.get('/oauth-callback', (req, res) => { + const body = { + client_id: clientId, + client_secret: clientSecret, + code: req.query.code + }; + console.log(body); + const opts = { headers: { accept: 'application/json' } }; + axios.post(`https://github.com/login/oauth/access_token`, body, opts). + then(res => res.data['access_token']). + then(_token => { + console.log('My token:', _token); + token = _token; + client.db( 'Final' ).collection( 'Users' ).insertOne({token: token}); + res.redirect("/main.html"); + }). + catch(err => res.status(500).json({ message: err.message })); +}); const { MongoClient, ServerApiVersion } = require('mongodb'); @@ -26,7 +47,7 @@ let account = null; client.connect() .then( () => { // will only create collection if it doesn't exist - return client.db( 'Final' ).collection( 'Activity Logs' ) + return client.db( 'Final' ).collection( 'Users' ) }) .then( __collection => { collection = __collection; diff --git a/views/index.html b/views/index.html index da2d0534d..890754a37 100644 --- a/views/index.html +++ b/views/index.html @@ -22,7 +22,8 @@

    Welco - + + From e7520f6b7cd2a8fe3de69aa853cdeff37bd7a576 Mon Sep 17 00:00:00 2001 From: Ryan Luu Date: Thu, 6 Oct 2022 15:45:56 -0400 Subject: [PATCH 11/42] fixed the error on line 51 in main.html --- views/main.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/views/main.html b/views/main.html index 740195be4..257494dd6 100644 --- a/views/main.html +++ b/views/main.html @@ -48,7 +48,7 @@

    Preferences



    -

    +





    -

    +

    -

    +



    - +

    Tell us about yourself!

    -
    +



    -

    +

    Mingle or Looking to Date?

    - + - +

    -
    +

    Preferences

    -
    + -

    +

    -

    +

    -

    +

    - @@ -60,9 +61,12 @@

    Preferences

    -
    +
    -
    + + + + From dd58b5cf4f5c44543523e891d37186d18ce68b7f Mon Sep 17 00:00:00 2001 From: Livingwell088 <58043224+Livingwell088@users.noreply.github.com> Date: Fri, 7 Oct 2022 19:13:43 -0400 Subject: [PATCH 14/42] Write Profile to server --- public/main.js | 11 +++++++++++ server.js | 19 ++++++++++++++++--- views/profile.html | 10 ++++++++++ 3 files changed, 37 insertions(+), 3 deletions(-) create mode 100644 views/profile.html diff --git a/public/main.js b/public/main.js index d2e521d02..c461169f6 100644 --- a/public/main.js +++ b/public/main.js @@ -42,6 +42,17 @@ form.onsubmit = function(event) { } + const body = JSON.stringify(input); + fetch( '/submit', { + method: 'POST', + headers: {'Content-Type': 'application/json'}, + body: body, + }) + .then(response => response.json()) + .then( console.log) + + form.reset(); + console.log(input); } diff --git a/server.js b/server.js index 24738f2a0..72080aa74 100644 --- a/server.js +++ b/server.js @@ -47,17 +47,30 @@ app.get('/oauth-callback', (req, res) => { }); app.get('/loggedIn', (req, res) => { - const header = { headers: { Authorization: "token " + token } }; + const header = {headers: {Authorization: "token " + token}}; axios.get("https://api.github.com/user", header) .then(response => { req.session.login = true; req.session.user = response.data.login; console.log(req.session.user); - res.redirect("/main.html"); + client.db("Final").collection("profiles").find({user: req.session.user}).toArray(function (err, result) { + if (err) throw err; + if (result.length > 0) { + res.redirect("/profile.html"); + } else { + res.redirect("/main.html"); + } + }) }) }) +app.post('/submit', (req, res) => { + let newLog = (req.body); + newLog.user = req.session.user; + console.log(collection); + client.db("Final").collection("profiles").insertOne(req.body).then(result => res.json(result)) +}) const { MongoClient, ServerApiVersion } = require('mongodb'); const {response} = require("express"); @@ -81,7 +94,7 @@ client.connect() .then( console.log ) .then( () => { - return (client.db("Final").collection("accounts")); + return (client.db("Final").collection("profiles")); }) .then( __account => { account = __account; diff --git a/views/profile.html b/views/profile.html new file mode 100644 index 000000000..566549bdf --- /dev/null +++ b/views/profile.html @@ -0,0 +1,10 @@ + + + + + Title + + + + + \ No newline at end of file From ae73a722ac9774031890b5ba239cc985c35f3465 Mon Sep 17 00:00:00 2001 From: Ryan Luu Date: Fri, 7 Oct 2022 20:41:12 -0400 Subject: [PATCH 15/42] fixed sliders and css --- public/main.js | 2 ++ public/style.css | 5 +++-- views/main.html | 16 +++++++++------- 3 files changed, 14 insertions(+), 9 deletions(-) diff --git a/public/main.js b/public/main.js index c461169f6..6ad244ed8 100644 --- a/public/main.js +++ b/public/main.js @@ -61,3 +61,5 @@ form.onsubmit = function(event) { + + diff --git a/public/style.css b/public/style.css index a28953eba..62c7de83f 100644 --- a/public/style.css +++ b/public/style.css @@ -67,9 +67,10 @@ p { font-family: "InterTight"; } -input[type=submit] { +.submitButton-container { width: 25%; margin-top: 10%; + text-align: center; font-size: larger; font-family: "InterTight"; background-color: cadetblue; @@ -80,6 +81,6 @@ input[type=submit] { cursor: pointer; } -input[type=submit]:hover { +.submitButton-container:hover { background-color: #2e6768; } \ No newline at end of file diff --git a/views/main.html b/views/main.html index 40a91648f..f05811965 100644 --- a/views/main.html +++ b/views/main.html @@ -21,8 +21,9 @@

    Personal Information





    - -

    + + +

    @@ -35,9 +36,9 @@

    Tell us about yourself!



    Mingle or Looking to Date?

    - + - +

    @@ -48,8 +49,9 @@

    Preferences





    - -

    + + +

    -
    -
    - - -
    - - - + diff --git a/views/main.html b/views/main.html index f05811965..2b02a90d2 100644 --- a/views/main.html +++ b/views/main.html @@ -36,9 +36,10 @@

    Tell us about yourself!



    Mingle or Looking to Date?

    - + + - +

    eeC`}x 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

    @@ -52,17 +53,6 @@

    Preferences



    - -

    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�#G`m$kx@jr`>ZIsf|Wg3!y&siR3Bf_Wg05 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≪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�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 z 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

  • From 006b6af136c2ca60ea75e7d0f4279464a6b620e2 Mon Sep 17 00:00:00 2001 From: Ryan Luu Date: Mon, 10 Oct 2022 19:22:01 -0400 Subject: [PATCH 20/42] updated profile.html --- public/main.js | 13 ++++--- public/michael-dam-mEZ3PoFGs_k-unsplash.jpg | Bin 0 -> 1431471 bytes views/main.html | 13 ++++--- views/profile.html | 38 ++++++++++++++++++-- 4 files changed, 50 insertions(+), 14 deletions(-) create mode 100644 public/michael-dam-mEZ3PoFGs_k-unsplash.jpg diff --git a/public/main.js b/public/main.js index b2ed78e0c..701308ca0 100644 --- a/public/main.js +++ b/public/main.js @@ -54,15 +54,14 @@ form.onsubmit = function(event) { form.reset(); console.log(input); +} - function openNav() { - document.getElementById("mySidenav").style.width = "250px"; - } - - function closeNav() { - document.getElementById("mySidenav").style.width = "0"; - } +function openNav() { + document.getElementById("sideNavBar").style.width = "250px"; +} +function closeNav() { + document.getElementById("sideNavBar").style.width = "0px"; } diff --git a/public/michael-dam-mEZ3PoFGs_k-unsplash.jpg b/public/michael-dam-mEZ3PoFGs_k-unsplash.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e3ebba63602bd3a23965b556592fa4843e5ed35c GIT binary patch literal 1431471 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 i>g^;5- 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

    Aq2(3{2m3uUuL$4otl7p*sK)4ds@`dOyo1FQ*W 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%0DtPI%bIW@%|@1z4JeAsh~d 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

    {1kI0IMoqitN)Zk}ee7 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 z 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%0Dgdp!SgV@%tTHc}XEKDnuV{^IiW4$@GliBMf)Sj& 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�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 z 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Ģ~jA@xX$0qCL1f2arY5U;aL5ARp(Cx(xzyAF?UP- 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 z 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 !rC`S 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

      6AW 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ⅇ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 a>{s>@y$%O -

      GitHub(by) Express

      -
      - × +
      + × +

      Home - Profile + Main + Profile
      - + +

      GitHub(by) Express

      Personal Information

      @@ -29,6 +31,7 @@

      Personal Information





      +
      diff --git a/views/profile.html b/views/profile.html index b6206d2aa..8dcff7631 100644 --- a/views/profile.html +++ b/views/profile.html @@ -15,9 +15,43 @@
      -

      Profile

      +

      Profile

      +
      +
      +

      Welcome to your profile!

      +
      +
      +
      + +
      +
      +
      +
      +

      First Project

      + +

      [Hello, name of project goes here.]

      + +

      [This is the description of the project.]

      + +

      [This is the GitHub Repository link to the project.]

      +
      +
      +

      Current Project

      + +

      [Hello, name of project goes here.]

      + +

      [This is the description of the project.]

      + +

      [This is the GitHub Repository link to the project.]

      +
      +
      +
      +
      +

      [This person is looking to Mingle/Date]

      + + +
      - From 2ac663fb45d7a0a5c50fc4bb8dd4afd74c87a0b1 Mon Sep 17 00:00:00 2001 From: Ryan Luu Date: Mon, 10 Oct 2022 20:18:12 -0400 Subject: [PATCH 21/42] users.txt added to /views --- views/users.txt | 162 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 162 insertions(+) create mode 100644 views/users.txt diff --git a/views/users.txt b/views/users.txt new file mode 100644 index 000000000..64046dd28 --- /dev/null +++ b/views/users.txt @@ -0,0 +1,162 @@ +"accountUsers": { + "User1": { + "firstName": Ben + "lastName": Jamin + "address": 123 Banana Road + "email": barjam@att.net + + "age": 19 + "hobbies": DJ-ing, gaming, coding + "firstProject": Visualizer for music + "currentProject": Decoder for music + "status": Mingle + "youngest": 18 + "oldest": 21 + "distance": 20 + "user": benJamin4DaBananas + "pic": https://unsplash.com/photos/kfN-BBbWTWo + }, + "User2": { + "firstName": Winston + "lastName": Tesla + "address": 246 Overwatch Boulevard + "email": webteam@icloud.com + "age": 25 + "hobbies": Climbing, Coding + "firstProject": Team Analyzer Based on Enneagram Types + "currentProject": Climbing Path Simulator + "status": Mingle + "youngest": 21 + "oldest": 28 + "distance": 300 + "user": winstonTinSpace + "pic": https://unsplash.com/photos/pAtA8xe_iVM + }, + "User3": { + "firstName": Sunwoo + "lastName": Han + "address": 324 Haven Avenue + "email": shang@yahoo.com + "age": 23 + "hobbies": Cooking, Skydiving, Coding + "firstProject": Cooking Simulator + "currentProject": Health Application for Skydivers + "status": Date + "youngest": 22 + "oldest": 26 + "distance": 4000 + "user": jettMommy30 + "pic": https://unsplash.com/photos/dE6c9RZoyL8 + }, + "User4": { + "firstName": Zyanya + "lastName": Mondragón + "address": 389 Ascent Street + "email": empress40@me.com + "age": 24 + "hobbies": Axe Throwing, Spending Time with Family, Coding + "firstProject": Family Tree Analyzer + "currentProject": None + "status": Date + "youngest": 21 + "oldest": 26 + "distance": 2000 + "user": empress1997 + "pic": https://unsplash.com/photos/mEZ3PoFGs_k + }, + "User5": { + "firstName": Shaun + "lastName": Chi + "address": 130 Ta Lo Circle + "email": 10rings@me.com + "age": 25 + "hobbies": Karaoke, Martial Arts, Coding + "firstProject": Calculator Application + "currentProject": Map Editor Application for Overseas + "status": Mingle + "youngest": 23 + "oldest": 26 + "distance": 3000 + "user": + "pic": + }, + "User6": { + "firstName": + "lastName": + "address": + "email": + "age": + "hobbies": + "firstProject": + "currentProject": + "status": + "youngest": + "oldest": + "distance": + "user": + "pic": + }, + "User7": { + "firstName": + "lastName": + "address": + "email": + "age": + "hobbies": + "firstProject": + "currentProject": + "status": + "youngest": + "oldest": + "distance": + "user": + "pic": + }, + "User8": { + "firstName": + "lastName": + "address": + "email": + "age": + "hobbies": + "firstProject": + "currentProject": + "status": + "youngest": + "oldest": + "distance": + "user": + "pic": + }, + "User9": { + "firstName": + "lastName": + "address": + "email": + "age": + "hobbies": + "firstProject": + "currentProject": + "status": + "youngest": + "oldest": + "distance": + "user": + "pic": + }, + "User10": { + "firstName": + "lastName": + "address": + "email": + "age": + "hobbies": + "firstProject": + "currentProject": + "status": + "youngest": + "oldest": + "distance": + "user": + "pic": + }, \ No newline at end of file From 6f38c05be7a2d9d30fead5684909fff938647b38 Mon Sep 17 00:00:00 2001 From: Ryan Luu Date: Mon, 10 Oct 2022 20:21:10 -0400 Subject: [PATCH 22/42] updated 5 users, will fix photo later --- views/users.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/views/users.txt b/views/users.txt index 64046dd28..d70024735 100644 --- a/views/users.txt +++ b/views/users.txt @@ -77,8 +77,8 @@ "youngest": 23 "oldest": 26 "distance": 3000 - "user": - "pic": + "user": iFoughtALizard10 + "pic": https://unsplash.com/photos/iFgRcqHznqg }, "User6": { "firstName": From 6978ecb673e8696526c62ee6d7e3292fd0b7df6a Mon Sep 17 00:00:00 2001 From: Livingwell088 <58043224+Livingwell088@users.noreply.github.com> Date: Mon, 10 Oct 2022 21:31:21 -0400 Subject: [PATCH 23/42] Putting in sample profiles --- public/matching.js | 20 +++++++++++++++++++- views/matching.html | 1 + 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/public/matching.js b/public/matching.js index b9c7ce2c3..075fa34f1 100644 --- a/public/matching.js +++ b/public/matching.js @@ -4,6 +4,8 @@ window.onload = function() { let user = null; + let profile = null; + fetch('/getUser', { method: 'GET', headers: {'Content-Type': 'application/json'} @@ -13,6 +15,18 @@ window.onload = function() { user = text; console.log(user); }) + fetch('/getprofile', { + method: 'GET', + headers: {'Content-Type': 'application/json'} + }) + .then(response => (response.json())) + .then((json) => { + json.forEach((item) => { + if (item.user === user) { + profile = item; + } + }) + }) fetch('/getAllMatches', { method: 'GET', @@ -22,7 +36,11 @@ window.onload = function() { .then((json) => { json.forEach((item) => { if(item.user != user){ - console.log(item); + if (( parseInt(profile.age)>= parseInt(item.youngest)) && (parseInt(profile.age) <= parseInt(item.oldest))){ + if (profile.status === item.status){ + console.log(item); + } + } } }) }) diff --git a/views/matching.html b/views/matching.html index f684b61bb..a24dd851d 100644 --- a/views/matching.html +++ b/views/matching.html @@ -6,6 +6,7 @@ +

      Email

      \ No newline at end of file From 00091f5f12076c226e85e434e4bd9868ac0928ca Mon Sep 17 00:00:00 2001 From: Livingwell088 <58043224+Livingwell088@users.noreply.github.com> Date: Mon, 10 Oct 2022 22:04:24 -0400 Subject: [PATCH 24/42] Filtering by conditions completed --- public/matching.js | 10 ++++- server.js | 91 ++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 100 insertions(+), 1 deletion(-) diff --git a/public/matching.js b/public/matching.js index 075fa34f1..c41ceca88 100644 --- a/public/matching.js +++ b/public/matching.js @@ -6,6 +6,13 @@ window.onload = function() { let profile = null; + let age = null; + + // fetch('/test', { + // method: 'GET', + // headers: {'Content-Type': 'application/json'} + // }) + fetch('/getUser', { method: 'GET', headers: {'Content-Type': 'application/json'} @@ -24,6 +31,7 @@ window.onload = function() { json.forEach((item) => { if (item.user === user) { profile = item; + age = item.age; } }) }) @@ -36,7 +44,7 @@ window.onload = function() { .then((json) => { json.forEach((item) => { if(item.user != user){ - if (( parseInt(profile.age)>= parseInt(item.youngest)) && (parseInt(profile.age) <= parseInt(item.oldest))){ + if ((( item.age >= (profile.youngest)) && (item.age <= (profile.oldest))) && (( profile.age >= (item.youngest)) && (profile.age <= (item.oldest)))){ if (profile.status === item.status){ console.log(item); } diff --git a/server.js b/server.js index 6daea2361..ebdd11339 100644 --- a/server.js +++ b/server.js @@ -14,12 +14,103 @@ app.use( cookie({ })) +const current = [ +{ + firstName: "Ben", + lastName: "Jamin", + address: "123 Banana Road", + email: "barjam@att.net", + age: "19", + hobbies: "DJ-ing, gaming, coding", + firstProject: "Visualizer for music", + currentProject: "Decoder for music", + status: "mingle", + youngest: "18", + oldest: "21", + distance: "20", + user: "benJamin4DaBananas", + pic: "https://unsplash.com/photos/kfN-BBbWTWo" +}, +{ + firstName: "Winston", + lastName: "Tesla", + address: "246 Overwatch Boulevard", + email: "webteam@icloud.com", + age: "25", + hobbies: "Climbing, Coding", + firstProject: "Team Analyzer Based on Enneagram Types", + currentProject: "Climbing Path Simulator", + status: "mingle", + youngest: "21", + oldest: "28", + distance: "300", + user: "winstonTinSpace", + pic: "https://unsplash.com/photos/pAtA8xe_iVM" +}, +{ + firstName: "Sunwoo", + lastName: "Han", + address: "324 Haven Avenue", + email: "shang@yahoo.com", + age: "23", + hobbies: "Cooking, Skydiving, Coding", + firstProject: "Cooking Simulator", + currentProject: "Health Application for Skydivers", + status: "date", + youngest: "22", + oldest: "26", + distance: "4000", + user: "jettMommy30", + pic: "https://unsplash.com/photos/dE6c9RZoyL8" +}, +{ + firstName: "Zyanya", + lastName: "Mondragón", + address: "389 Ascent Street", + email: "empress40@me.com", + age: "24", + hobbies: "Axe Throwing, Spending Time with Family, Coding", + firstProject: "Family Tree Analyzer", + currentProject: "None", + status: "date", + youngest: "21", + oldest: "26", + distance: "2000", + user: "empress1997", + pic: "https://unsplash.com/photos/mEZ3PoFGs_k" +}, +{ + firstName: "Shaun", + lastName: "Chi", + address: "130 Ta Lo Circle", + email: "10rings@me.com", + age: "25", + hobbies: "Karaoke, Martial Arts, Coding", + firstProject: "Calculator Application", + currentProject: "Map Editor Application for Overseas", + status: "mingle", + youngest: "23", + oldest: "26", + distance: "3000", + user: "iFoughtALizard10", + pic: "https://unsplash.com/photos/iFgRcqHznqg" +} +] + const clientId = '903729e701c50a0a540c'; const clientSecret = '11c4d32e3febd2e660acae7b806438ff3c44384f'; const axios = require('axios'); let token = null; + +// app.get('/test', (req, res) => { +// +// for (let i = 0; i < 5; i++){ +// client.db( 'Final' ).collection( 'profiles' ).insertOne(current[i]); +// } +// }) + app.get('/github', (req, res) => { // res.redirect("main.html"); console.log(token) From 9861bbbd721a5dadaadd19cc91f3cc69f09bbc0e Mon Sep 17 00:00:00 2001 From: Livingwell088 <58043224+Livingwell088@users.noreply.github.com> Date: Tue, 11 Oct 2022 07:44:21 -0400 Subject: [PATCH 25/42] Test matching users --- public/matching.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/public/matching.js b/public/matching.js index c41ceca88..3018a1fca 100644 --- a/public/matching.js +++ b/public/matching.js @@ -44,6 +44,9 @@ window.onload = function() { .then((json) => { json.forEach((item) => { if(item.user != user){ + const img = new Image(); + img.src = item.pic; + document.body.appendChild(img); if ((( item.age >= (profile.youngest)) && (item.age <= (profile.oldest))) && (( profile.age >= (item.youngest)) && (profile.age <= (item.oldest)))){ if (profile.status === item.status){ console.log(item); From f7a65579383159a60bca939a48d16c345c147dd3 Mon Sep 17 00:00:00 2001 From: Livingwell088 <58043224+Livingwell088@users.noreply.github.com> Date: Tue, 11 Oct 2022 13:18:13 -0400 Subject: [PATCH 26/42] Added some fake users --- server.js | 244 ++++++++++++++++++++++++++++++++++++------------------ 1 file changed, 164 insertions(+), 80 deletions(-) diff --git a/server.js b/server.js index ebdd11339..3e0d45f06 100644 --- a/server.js +++ b/server.js @@ -15,86 +15,170 @@ app.use( cookie({ const current = [ -{ - firstName: "Ben", - lastName: "Jamin", - address: "123 Banana Road", - email: "barjam@att.net", - age: "19", - hobbies: "DJ-ing, gaming, coding", - firstProject: "Visualizer for music", - currentProject: "Decoder for music", - status: "mingle", - youngest: "18", - oldest: "21", - distance: "20", - user: "benJamin4DaBananas", - pic: "https://unsplash.com/photos/kfN-BBbWTWo" -}, -{ - firstName: "Winston", - lastName: "Tesla", - address: "246 Overwatch Boulevard", - email: "webteam@icloud.com", - age: "25", - hobbies: "Climbing, Coding", - firstProject: "Team Analyzer Based on Enneagram Types", - currentProject: "Climbing Path Simulator", - status: "mingle", - youngest: "21", - oldest: "28", - distance: "300", - user: "winstonTinSpace", - pic: "https://unsplash.com/photos/pAtA8xe_iVM" -}, -{ - firstName: "Sunwoo", - lastName: "Han", - address: "324 Haven Avenue", - email: "shang@yahoo.com", - age: "23", - hobbies: "Cooking, Skydiving, Coding", - firstProject: "Cooking Simulator", - currentProject: "Health Application for Skydivers", - status: "date", - youngest: "22", - oldest: "26", - distance: "4000", - user: "jettMommy30", - pic: "https://unsplash.com/photos/dE6c9RZoyL8" -}, -{ - firstName: "Zyanya", - lastName: "Mondragón", - address: "389 Ascent Street", - email: "empress40@me.com", - age: "24", - hobbies: "Axe Throwing, Spending Time with Family, Coding", - firstProject: "Family Tree Analyzer", - currentProject: "None", - status: "date", - youngest: "21", - oldest: "26", - distance: "2000", - user: "empress1997", - pic: "https://unsplash.com/photos/mEZ3PoFGs_k" -}, -{ - firstName: "Shaun", - lastName: "Chi", - address: "130 Ta Lo Circle", - email: "10rings@me.com", - age: "25", - hobbies: "Karaoke, Martial Arts, Coding", - firstProject: "Calculator Application", - currentProject: "Map Editor Application for Overseas", - status: "mingle", - youngest: "23", - oldest: "26", - distance: "3000", - user: "iFoughtALizard10", - pic: "https://unsplash.com/photos/iFgRcqHznqg" -} + { + firstName: "Ben", + lastName: "Jamin", + address: "123 Banana Road", + email: "barjam@att.net", + age: "19", + hobbies: "DJ-ing, gaming, coding", + firstProject: "Visualizer for music", + currentProject: "Decoder for music", + status: "mingle", + youngest: "18", + oldest: "21", + distance: "20", + user: "benJamin4DaBananas", + pic: "https://unsplash.com/photos/kfN-BBbWTWo" + }, + { + firstName: "Winston", + lastName: "Tesla", + address: "246 Overwatch Boulevard", + email: "webteam@icloud.com", + age: "25", + hobbies: "Climbing, Coding", + firstProject: "Team Analyzer Based on Enneagram Types", + currentProject: "Climbing Path Simulator", + status: "mingle", + youngest: "21", + oldest: "28", + distance: "300", + user: "winstonTinSpace", + pic: "https://unsplash.com/photos/pAtA8xe_iVM" + }, + { + firstName: "Sunwoo", + lastName: "Han", + address: "324 Haven Avenue", + email: "shang@yahoo.com", + age: "23", + hobbies: "Cooking, Skydiving, Coding", + firstProject: "Cooking Simulator", + currentProject: "Health Application for Skydivers", + status: "date", + youngest: "22", + oldest: "26", + distance: "4000", + user: "jettMommy30", + pic: "https://unsplash.com/photos/dE6c9RZoyL8" + }, + { + firstName: "Zyanya", + lastName: "Mondragón", + address: "389 Ascent Street", + email: "empress40@me.com", + age: "24", + hobbies: "Axe Throwing, Spending Time with Family, Coding", + firstProject: "Family Tree Analyzer", + currentProject: "None", + status: "date", + youngest: "21", + oldest: "26", + distance: "2000", + user: "empress1997", + pic: "https://unsplash.com/photos/mEZ3PoFGs_k" + }, + { + firstName: "Shaun", + lastName: "Chi", + address: "130 Ta Lo Circle", + email: "10rings@me.com", + age: "25", + hobbies: "Karaoke, Martial Arts, Coding", + firstProject: "Calculator Application", + currentProject: "Map Editor Application for Overseas", + status: "mingle", + youngest: "23", + oldest: "26", + distance: "3000", + user: "iFoughtALizard10", + pic: "https://unsplash.com/photos/iFgRcqHznqg" + } + , + + + + { + firstName: "Apple", + lastName: "Bananas", + address: "Cars Street", + email: "applebananas@gmail.com", + age: "32", + hobbies: "Eating", + firstProject: "None", + currentProject: "None", + status: "date", + youngest: "18", + oldest: "61", + distance: "20", + user: "applebananas", + pic: "" + }, + { + firstName: "Desk", + lastName: "Elevator", + address: "Falcon Avenue", + email: "deskelevator@gmail.com", + age: "25", + hobbies: "Stationary and Moving", + firstProject: "Writing Papers", + currentProject: "Moving up and down the floors", + status: "mingle", + youngest: "21", + oldest: "78", + distance: "300", + user: "deskelevator", + pic: "" + }, + { + firstName: "Good", + lastName: "Hat", + address: "Igloo Road", + email: "goodhat@gmail.com", + age: "98", + hobbies: "Fashion", + firstProject: "Building", + currentProject: "None", + status: "date", + youngest: "22", + oldest: "76", + distance: "4000", + user: "goodhat", + pic: "" + }, + { + firstName: "Jester", + lastName: "Kangaroo", + address: "Lesser Blvd", + email: "jester", + age: "24", + hobbies: "Circus", + firstProject: "Zoo", + currentProject: "None", + status: "date", + youngest: "18", + oldest: "46", + distance: "2000", + user: "jesterkangaroo", + pic: "" + }, + { + firstName: "Monster", + lastName: "Nest", + address: "Octopus Lane", + email: "monsternest@gmail.com", + age: "25", + hobbies: "Sleeping", + firstProject: "None", + currentProject: "None", + status: "mingle", + youngest: "23", + oldest: "46", + distance: "3000", + user: "monsternest", + pic: "" + } ] const clientId = '903729e701c50a0a540c'; From 5520603610915c3eb728041cd4d316e192918be7 Mon Sep 17 00:00:00 2001 From: Ryan Luu Date: Tue, 11 Oct 2022 18:27:31 -0400 Subject: [PATCH 27/42] fixed profile page, and created layout for info --- public/profile.js | 82 ++++++++++++++++++++++++++++++++++++---------- public/style.css | 21 +++++++++++- views/main.html | 8 ++--- views/profile.html | 32 ++++++------------ 4 files changed, 99 insertions(+), 44 deletions(-) diff --git a/public/profile.js b/public/profile.js index e12f94f06..3353a6d58 100644 --- a/public/profile.js +++ b/public/profile.js @@ -12,7 +12,8 @@ window.onload = function () { console.log(text); const img = new Image(); img.src = text; - document.body.appendChild(img); + document.getElementById("profilePic").lastElementChild; + document.getElementById("profilePic").appendChild(img); }) @@ -36,25 +37,72 @@ window.onload = function () { json.forEach((item) => { if (item.user === user) { - const firstName = item.firstName; - const lastName = item.lastName; - const address = item.address; - const email = item.email; - const age = item.age; - const hobbies = item.hobbies; - const firstProject = item.firstProject; - const currentProject = item.currentProject; - const status = item.status; - const youngest = item.youngest; - const oldest = item.oldest; - const distance = item.distance; - const orientation = item.orientation; + let profileList = document.createElement("ul"); + let fPList = document.createElement("ul"); + let cPList = document.createElement("ul"); + const fName = document.createElement("li"); + const fullName = "Name: " + item.firstName + " " + item.lastName; + fName.innerHTML = fullName; + profileList.appendChild(fName); + + const addressItem = document.createElement("li"); + const address = "Address: " + item.address; + addressItem.innerHTML = address; + profileList.appendChild(addressItem); + + const emailItem = document.createElement("li"); + const email = "Email: " + item.email; + emailItem.innerHTML = email; + profileList.appendChild(emailItem); + + const ageItem = document.createElement("li"); + const age = "Age: " + item.age; + ageItem.innerHTML = age; + profileList.appendChild(ageItem); + + const hobbiesItem = document.createElement("li"); + const hobbies = "Hobbies: " + item.hobbies; + hobbiesItem.innerHTML = hobbies; + profileList.appendChild(hobbiesItem); + + const statusItem = document.createElement("li"); + const statusDescription = "Status: " + item.status; + statusItem.innerHTML = statusDescription; + profileList.appendChild(statusItem); + + const youngestItem = document.createElement("li"); + const youngestDescription = "Youngest: " + item.youngest; + youngestItem.innerHTML = youngestDescription; + profileList.appendChild(youngestItem); + + const oldestItem = document.createElement("li"); + const oldestDescription = "Oldest: " + item.oldest; + oldestItem.innerHTML = oldestDescription; + profileList.appendChild(oldestItem); + + const distanceItem = document.createElement("li"); + const distanceDescription = "Distance: " + item.distance; + distanceItem.innerHTML = distanceDescription; + profileList.appendChild(distanceItem); + + const firstProjectItem = document.createElement("li"); + const firstProjectDesc = "Name of First Project: " + item.firstProject; + firstProjectItem.innerHTML = firstProjectDesc; + fPList.appendChild(firstProjectItem); + + const currentProjectItem = document.createElement("li"); + const currentProject = "Name of Current Project: " + item.currentProject; + currentProjectItem.innerHTML = currentProject; + cPList.appendChild(currentProjectItem); console.log(item); - let current = document.createElement("p"); - current.innerHTML = JSON.stringify(item); - document.body.appendChild(current); + document.getElementById("profileDesc").lastElementChild; + document.getElementById("profileDesc").appendChild(profileList); + document.getElementById("firstProjectList").lastElementChild; + document.getElementById("firstProjectList").appendChild(fPList); + document.getElementById("currentProjectList").lastElementChild; + document.getElementById("currentProjectList").appendChild(cPList); } }) }) diff --git a/public/style.css b/public/style.css index 939cba12c..af82712a5 100644 --- a/public/style.css +++ b/public/style.css @@ -81,7 +81,21 @@ p { cursor: pointer; } -.submitButton-container:hover { +.editButton-container { + width: 25%; + margin-top: 5%; + text-align: center; + font-size: larger; + font-family: "InterTight"; + background-color: cadetblue; + color: rgb(12, 12, 12); + padding: 14px 20px; + border: none; + border-radius: 4px; + cursor: pointer; + } + +.submitButton-container:hover,.editButton-container:hover { background-color: #2e6768; } @@ -124,6 +138,11 @@ p { margin-left: 50px; } +textarea { + width: 350px; + resize: none; + } + @media screen and (max-height: 450px) { .sidenav {padding-top: 15px;} .sidenav a {font-size: 18px;} diff --git a/views/main.html b/views/main.html index 78486733d..6ed6f0ca5 100644 --- a/views/main.html +++ b/views/main.html @@ -40,14 +40,14 @@

      Tell us about yourself!



      -

      +


      -

      +


      Mingle or Looking to Date?

      - + - +

      diff --git a/views/profile.html b/views/profile.html index 8dcff7631..d31667a2e 100644 --- a/views/profile.html +++ b/views/profile.html @@ -18,41 +18,29 @@

      Profile

      -

      Welcome to your profile!

      +

      Welcome to your profile!

      - +

      Here's Me

      +

      +
      +
      +

      All About Me

      +

      First Project

      - -

      [Hello, name of project goes here.]

      - -

      [This is the description of the project.]

      - -

      [This is the GitHub Repository link to the project.]

      +

      Current Project

      - -

      [Hello, name of project goes here.]

      - -

      [This is the description of the project.]

      - -

      [This is the GitHub Repository link to the project.]

      -
      -
      -
      -
      -

      [This person is looking to Mingle/Date]

      - - +

      - + \ No newline at end of file From 5df2622f3f1266b43c2774f4b15048163141fe30 Mon Sep 17 00:00:00 2001 From: Livingwell088 <58043224+Livingwell088@users.noreply.github.com> Date: Tue, 11 Oct 2022 19:28:02 -0400 Subject: [PATCH 28/42] Testing circle profile images --- public/matching.js | 22 ++++++++++++++++------ 1 file changed, 16 insertions(+), 6 deletions(-) diff --git a/public/matching.js b/public/matching.js index 3018a1fca..6cc9ebbdf 100644 --- a/public/matching.js +++ b/public/matching.js @@ -1,11 +1,8 @@ window.onload = function() { - let user = null; - let profile = null; - let age = null; // fetch('/test', { @@ -43,13 +40,26 @@ window.onload = function() { .then(response => (response.json())) .then((json) => { json.forEach((item) => { + const img = new Image(); + img.src = item.pic; + img.style.width = "150px"; + img.style.height = "150px"; + img.style.borderRadius = "50%"; + img.style.backgroundClip = "padding-box"; + img.style.backgroundPosition = "center"; + document.body.appendChild(img); + let name = document.createElement("p"); + name.innerHTML = item.firstName; + document.body.appendChild(name); if(item.user != user){ - const img = new Image(); - img.src = item.pic; - document.body.appendChild(img); + if ((( item.age >= (profile.youngest)) && (item.age <= (profile.oldest))) && (( profile.age >= (item.youngest)) && (profile.age <= (item.oldest)))){ if (profile.status === item.status){ + console.log(item); + + + } } } From f8abc57011f6e572a8ad1fcd0509831fd208f78f Mon Sep 17 00:00:00 2001 From: Livingwell088 <58043224+Livingwell088@users.noreply.github.com> Date: Tue, 11 Oct 2022 20:01:43 -0400 Subject: [PATCH 29/42] Installed bootstrap --- node_modules/.package-lock.json | 28 + node_modules/@popperjs/core/LICENSE.md | 20 + node_modules/@popperjs/core/README.md | 376 + node_modules/@popperjs/core/dist/cjs/enums.js | 65 + .../@popperjs/core/dist/cjs/enums.js.flow | 3 + .../@popperjs/core/dist/cjs/enums.js.map | 1 + .../@popperjs/core/dist/cjs/popper-base.js | 1097 ++ .../core/dist/cjs/popper-base.js.flow | 3 + .../core/dist/cjs/popper-base.js.map | 1 + .../@popperjs/core/dist/cjs/popper-lite.js | 1430 ++ .../core/dist/cjs/popper-lite.js.flow | 3 + .../core/dist/cjs/popper-lite.js.map | 1 + .../@popperjs/core/dist/cjs/popper.js | 2002 +++ .../@popperjs/core/dist/cjs/popper.js.flow | 3 + .../@popperjs/core/dist/cjs/popper.js.map | 1 + .../@popperjs/core/dist/esm/createPopper.js | 259 + .../core/dist/esm/dom-utils/contains.js | 23 + .../esm/dom-utils/getBoundingClientRect.js | 41 + .../dist/esm/dom-utils/getClippingRect.js | 70 + .../dist/esm/dom-utils/getCompositeRect.js | 58 + .../dist/esm/dom-utils/getComputedStyle.js | 4 + .../dist/esm/dom-utils/getDocumentElement.js | 6 + .../dist/esm/dom-utils/getDocumentRect.js | 29 + .../esm/dom-utils/getHTMLElementScroll.js | 6 + .../core/dist/esm/dom-utils/getLayoutRect.js | 25 + .../core/dist/esm/dom-utils/getNodeName.js | 3 + .../core/dist/esm/dom-utils/getNodeScroll.js | 11 + .../dist/esm/dom-utils/getOffsetParent.js | 69 + .../core/dist/esm/dom-utils/getParentNode.js | 19 + .../dist/esm/dom-utils/getScrollParent.js | 16 + .../dist/esm/dom-utils/getViewportRect.js | 31 + .../core/dist/esm/dom-utils/getWindow.js | 12 + .../dist/esm/dom-utils/getWindowScroll.js | 10 + .../dist/esm/dom-utils/getWindowScrollBarX.js | 13 + .../core/dist/esm/dom-utils/instanceOf.js | 23 + .../dist/esm/dom-utils/isLayoutViewport.js | 4 + .../core/dist/esm/dom-utils/isScrollParent.js | 10 + .../core/dist/esm/dom-utils/isTableElement.js | 4 + .../dist/esm/dom-utils/listScrollParents.js | 26 + node_modules/@popperjs/core/dist/esm/enums.js | 31 + node_modules/@popperjs/core/dist/esm/index.js | 8 + .../core/dist/esm/modifiers/applyStyles.js | 84 + .../core/dist/esm/modifiers/arrow.js | 101 + .../core/dist/esm/modifiers/computeStyles.js | 181 + .../core/dist/esm/modifiers/eventListeners.js | 49 + .../@popperjs/core/dist/esm/modifiers/flip.js | 147 + .../@popperjs/core/dist/esm/modifiers/hide.js | 61 + .../core/dist/esm/modifiers/index.js | 9 + .../core/dist/esm/modifiers/offset.js | 54 + .../core/dist/esm/modifiers/popperOffsets.js | 25 + .../dist/esm/modifiers/preventOverflow.js | 142 + .../@popperjs/core/dist/esm/popper-base.js | 3 + .../@popperjs/core/dist/esm/popper-lite.js | 11 + .../@popperjs/core/dist/esm/popper.js | 20 + node_modules/@popperjs/core/dist/esm/types.js | 0 .../dist/esm/utils/computeAutoPlacement.js | 47 + .../core/dist/esm/utils/computeOffsets.js | 70 + .../@popperjs/core/dist/esm/utils/debounce.js | 15 + .../core/dist/esm/utils/detectOverflow.js | 65 + .../core/dist/esm/utils/expandToHashMap.js | 6 + .../@popperjs/core/dist/esm/utils/format.js | 9 + .../core/dist/esm/utils/getAltAxis.js | 3 + .../core/dist/esm/utils/getAltLen.js | 3 + .../core/dist/esm/utils/getBasePlacement.js | 4 + .../core/dist/esm/utils/getFreshSideObject.js | 8 + .../esm/utils/getMainAxisFromPlacement.js | 3 + .../dist/esm/utils/getOppositePlacement.js | 11 + .../utils/getOppositeVariationPlacement.js | 9 + .../core/dist/esm/utils/getVariation.js | 3 + .../@popperjs/core/dist/esm/utils/math.js | 3 + .../core/dist/esm/utils/mergeByName.js | 14 + .../core/dist/esm/utils/mergePaddingObject.js | 4 + .../core/dist/esm/utils/orderModifiers.js | 44 + .../core/dist/esm/utils/rectToClientRect.js | 8 + .../@popperjs/core/dist/esm/utils/uniqueBy.js | 11 + .../core/dist/esm/utils/userAgent.js | 11 + .../core/dist/esm/utils/validateModifiers.js | 81 + .../@popperjs/core/dist/esm/utils/within.js | 8 + node_modules/@popperjs/core/dist/umd/enums.js | 71 + .../@popperjs/core/dist/umd/enums.js.map | 1 + .../@popperjs/core/dist/umd/enums.min.js | 6 + .../@popperjs/core/dist/umd/enums.min.js.flow | 3 + .../@popperjs/core/dist/umd/enums.min.js.map | 1 + .../@popperjs/core/dist/umd/popper-base.js | 1103 ++ .../core/dist/umd/popper-base.js.map | 1 + .../core/dist/umd/popper-base.min.js | 6 + .../core/dist/umd/popper-base.min.js.flow | 3 + .../core/dist/umd/popper-base.min.js.map | 1 + .../@popperjs/core/dist/umd/popper-lite.js | 1436 ++ .../core/dist/umd/popper-lite.js.map | 1 + .../core/dist/umd/popper-lite.min.js | 6 + .../core/dist/umd/popper-lite.min.js.flow | 3 + .../core/dist/umd/popper-lite.min.js.map | 1 + .../@popperjs/core/dist/umd/popper.js | 2008 +++ .../@popperjs/core/dist/umd/popper.js.map | 1 + .../@popperjs/core/dist/umd/popper.min.js | 6 + .../core/dist/umd/popper.min.js.flow | 3 + .../@popperjs/core/dist/umd/popper.min.js.map | 1 + node_modules/@popperjs/core/index.d.ts | 1 + .../@popperjs/core/lib/createPopper.d.ts | 9 + .../@popperjs/core/lib/createPopper.js | 259 + .../@popperjs/core/lib/createPopper.js.flow | 296 + .../core/lib/dom-utils/contains.d.ts | 1 + .../@popperjs/core/lib/dom-utils/contains.js | 23 + .../core/lib/dom-utils/contains.js.flow | 25 + .../lib/dom-utils/getBoundingClientRect.d.ts | 2 + .../lib/dom-utils/getBoundingClientRect.js | 41 + .../dom-utils/getBoundingClientRect.js.flow | 52 + .../core/lib/dom-utils/getClippingRect.d.ts | 3 + .../core/lib/dom-utils/getClippingRect.js | 70 + .../lib/dom-utils/getClippingRect.js.flow | 106 + .../core/lib/dom-utils/getCompositeRect.d.ts | 2 + .../core/lib/dom-utils/getCompositeRect.js | 58 + .../lib/dom-utils/getCompositeRect.js.flow | 64 + .../core/lib/dom-utils/getComputedStyle.d.ts | 1 + .../core/lib/dom-utils/getComputedStyle.js | 4 + .../lib/dom-utils/getComputedStyle.js.flow | 8 + .../lib/dom-utils/getDocumentElement.d.ts | 2 + .../core/lib/dom-utils/getDocumentElement.js | 6 + .../lib/dom-utils/getDocumentElement.js.flow | 15 + .../core/lib/dom-utils/getDocumentRect.d.ts | 2 + .../core/lib/dom-utils/getDocumentRect.js | 29 + .../lib/dom-utils/getDocumentRect.js.flow | 37 + .../lib/dom-utils/getHTMLElementScroll.d.ts | 4 + .../lib/dom-utils/getHTMLElementScroll.js | 6 + .../dom-utils/getHTMLElementScroll.js.flow | 8 + .../core/lib/dom-utils/getLayoutRect.d.ts | 2 + .../core/lib/dom-utils/getLayoutRect.js | 25 + .../core/lib/dom-utils/getLayoutRect.js.flow | 29 + .../core/lib/dom-utils/getNodeName.d.ts | 2 + .../core/lib/dom-utils/getNodeName.js | 3 + .../core/lib/dom-utils/getNodeName.js.flow | 6 + .../core/lib/dom-utils/getNodeScroll.d.ts | 5 + .../core/lib/dom-utils/getNodeScroll.js | 11 + .../core/lib/dom-utils/getNodeScroll.js.flow | 14 + .../core/lib/dom-utils/getOffsetParent.d.ts | 1 + .../core/lib/dom-utils/getOffsetParent.js | 69 + .../lib/dom-utils/getOffsetParent.js.flow | 93 + .../core/lib/dom-utils/getParentNode.d.ts | 1 + .../core/lib/dom-utils/getParentNode.js | 19 + .../core/lib/dom-utils/getParentNode.js.flow | 21 + .../core/lib/dom-utils/getScrollParent.d.ts | 1 + .../core/lib/dom-utils/getScrollParent.js | 16 + .../lib/dom-utils/getScrollParent.js.flow | 18 + .../core/lib/dom-utils/getViewportRect.d.ts | 7 + .../core/lib/dom-utils/getViewportRect.js | 31 + .../lib/dom-utils/getViewportRect.js.flow | 39 + .../core/lib/dom-utils/getWindow.d.ts | 1 + .../@popperjs/core/lib/dom-utils/getWindow.js | 12 + .../core/lib/dom-utils/getWindow.js.flow | 16 + .../core/lib/dom-utils/getWindowScroll.d.ts | 5 + .../core/lib/dom-utils/getWindowScroll.js | 10 + .../lib/dom-utils/getWindowScroll.js.flow | 14 + .../lib/dom-utils/getWindowScrollBarX.d.ts | 1 + .../core/lib/dom-utils/getWindowScrollBarX.js | 13 + .../lib/dom-utils/getWindowScrollBarX.js.flow | 18 + .../core/lib/dom-utils/instanceOf.d.ts | 4 + .../core/lib/dom-utils/instanceOf.js | 23 + .../core/lib/dom-utils/instanceOf.js.flow | 29 + .../core/lib/dom-utils/isLayoutViewport.d.ts | 1 + .../core/lib/dom-utils/isLayoutViewport.js | 4 + .../lib/dom-utils/isLayoutViewport.js.flow | 6 + .../core/lib/dom-utils/isScrollParent.d.ts | 1 + .../core/lib/dom-utils/isScrollParent.js | 10 + .../core/lib/dom-utils/isScrollParent.js.flow | 8 + .../core/lib/dom-utils/isTableElement.d.ts | 1 + .../core/lib/dom-utils/isTableElement.js | 4 + .../core/lib/dom-utils/isTableElement.js.flow | 6 + .../core/lib/dom-utils/listScrollParents.d.ts | 2 + .../core/lib/dom-utils/listScrollParents.js | 26 + .../lib/dom-utils/listScrollParents.js.flow | 33 + node_modules/@popperjs/core/lib/enums.d.ts | 34 + node_modules/@popperjs/core/lib/enums.js | 31 + node_modules/@popperjs/core/lib/enums.js.flow | 91 + node_modules/@popperjs/core/lib/index.d.ts | 6 + node_modules/@popperjs/core/lib/index.js | 8 + node_modules/@popperjs/core/lib/index.js.flow | 13 + .../core/lib/modifiers/applyStyles.d.ts | 4 + .../core/lib/modifiers/applyStyles.js | 84 + .../core/lib/modifiers/applyStyles.js.flow | 98 + .../@popperjs/core/lib/modifiers/arrow.d.ts | 13 + .../@popperjs/core/lib/modifiers/arrow.js | 101 + .../core/lib/modifiers/arrow.js.flow | 142 + .../core/lib/modifiers/computeStyles.d.ts | 38 + .../core/lib/modifiers/computeStyles.js | 181 + .../core/lib/modifiers/computeStyles.js.flow | 263 + .../core/lib/modifiers/eventListeners.d.ts | 8 + .../core/lib/modifiers/eventListeners.js | 49 + .../core/lib/modifiers/eventListeners.js.flow | 54 + .../@popperjs/core/lib/modifiers/flip.d.ts | 16 + .../@popperjs/core/lib/modifiers/flip.js | 147 + .../@popperjs/core/lib/modifiers/flip.js.flow | 177 + .../@popperjs/core/lib/modifiers/hide.d.ts | 4 + .../@popperjs/core/lib/modifiers/hide.js | 61 + .../@popperjs/core/lib/modifiers/hide.js.flow | 76 + .../@popperjs/core/lib/modifiers/index.d.ts | 9 + .../@popperjs/core/lib/modifiers/index.js | 9 + .../core/lib/modifiers/index.js.flow | 10 + .../@popperjs/core/lib/modifiers/offset.d.ts | 18 + .../@popperjs/core/lib/modifiers/offset.js | 54 + .../core/lib/modifiers/offset.js.flow | 71 + .../core/lib/modifiers/popperOffsets.d.ts | 4 + .../core/lib/modifiers/popperOffsets.js | 25 + .../core/lib/modifiers/popperOffsets.js.flow | 26 + .../core/lib/modifiers/preventOverflow.d.ts | 30 + .../core/lib/modifiers/preventOverflow.js | 142 + .../lib/modifiers/preventOverflow.js.flow | 220 + .../@popperjs/core/lib/popper-base.d.ts | 3 + .../@popperjs/core/lib/popper-base.js | 3 + .../@popperjs/core/lib/popper-base.js.flow | 7 + .../@popperjs/core/lib/popper-lite.d.ts | 5 + .../@popperjs/core/lib/popper-lite.js | 11 + .../@popperjs/core/lib/popper-lite.js.flow | 21 + node_modules/@popperjs/core/lib/popper.d.ts | 7 + node_modules/@popperjs/core/lib/popper.js | 20 + .../@popperjs/core/lib/popper.js.flow | 35 + node_modules/@popperjs/core/lib/types.d.ts | 167 + node_modules/@popperjs/core/lib/types.js | 0 node_modules/@popperjs/core/lib/types.js.flow | 199 + .../core/lib/utils/computeAutoPlacement.d.ts | 12 + .../core/lib/utils/computeAutoPlacement.js | 47 + .../lib/utils/computeAutoPlacement.js.flow | 85 + .../core/lib/utils/computeOffsets.d.ts | 8 + .../core/lib/utils/computeOffsets.js | 70 + .../core/lib/utils/computeOffsets.js.flow | 82 + .../@popperjs/core/lib/utils/debounce.d.ts | 1 + .../@popperjs/core/lib/utils/debounce.js | 15 + .../@popperjs/core/lib/utils/debounce.js.flow | 17 + .../core/lib/utils/detectOverflow.d.ts | 12 + .../core/lib/utils/detectOverflow.js | 65 + .../core/lib/utils/detectOverflow.js.flow | 112 + .../core/lib/utils/expandToHashMap.d.ts | 3 + .../core/lib/utils/expandToHashMap.js | 6 + .../core/lib/utils/expandToHashMap.js.flow | 11 + .../@popperjs/core/lib/utils/format.d.ts | 1 + .../@popperjs/core/lib/utils/format.js | 9 + .../@popperjs/core/lib/utils/format.js.flow | 5 + .../@popperjs/core/lib/utils/getAltAxis.d.ts | 1 + .../@popperjs/core/lib/utils/getAltAxis.js | 3 + .../core/lib/utils/getAltAxis.js.flow | 5 + .../@popperjs/core/lib/utils/getAltLen.d.ts | 1 + .../@popperjs/core/lib/utils/getAltLen.js | 3 + .../core/lib/utils/getAltLen.js.flow | 5 + .../core/lib/utils/getBasePlacement.d.ts | 2 + .../core/lib/utils/getBasePlacement.js | 4 + .../core/lib/utils/getBasePlacement.js.flow | 8 + .../core/lib/utils/getFreshSideObject.d.ts | 2 + .../core/lib/utils/getFreshSideObject.js | 8 + .../core/lib/utils/getFreshSideObject.js.flow | 11 + .../lib/utils/getMainAxisFromPlacement.d.ts | 2 + .../lib/utils/getMainAxisFromPlacement.js | 3 + .../utils/getMainAxisFromPlacement.js.flow | 8 + .../core/lib/utils/getOppositePlacement.d.ts | 2 + .../core/lib/utils/getOppositePlacement.js | 11 + .../lib/utils/getOppositePlacement.js.flow | 11 + .../utils/getOppositeVariationPlacement.d.ts | 2 + .../utils/getOppositeVariationPlacement.js | 9 + .../getOppositeVariationPlacement.js.flow | 10 + .../core/lib/utils/getVariation.d.ts | 2 + .../@popperjs/core/lib/utils/getVariation.js | 3 + .../core/lib/utils/getVariation.js.flow | 6 + .../@popperjs/core/lib/utils/math.d.ts | 3 + node_modules/@popperjs/core/lib/utils/math.js | 3 + .../@popperjs/core/lib/utils/math.js.flow | 4 + .../@popperjs/core/lib/utils/mergeByName.d.ts | 2 + .../@popperjs/core/lib/utils/mergeByName.js | 14 + .../core/lib/utils/mergeByName.js.flow | 22 + .../core/lib/utils/mergePaddingObject.d.ts | 2 + .../core/lib/utils/mergePaddingObject.js | 4 + .../core/lib/utils/mergePaddingObject.js.flow | 12 + .../core/lib/utils/orderModifiers.d.ts | 2 + .../core/lib/utils/orderModifiers.js | 44 + .../core/lib/utils/orderModifiers.js.flow | 59 + .../core/lib/utils/rectToClientRect.d.ts | 2 + .../core/lib/utils/rectToClientRect.js | 8 + .../core/lib/utils/rectToClientRect.js.flow | 12 + .../@popperjs/core/lib/utils/uniqueBy.d.ts | 1 + .../@popperjs/core/lib/utils/uniqueBy.js | 11 + .../@popperjs/core/lib/utils/uniqueBy.js.flow | 14 + .../@popperjs/core/lib/utils/userAgent.d.ts | 1 + .../@popperjs/core/lib/utils/userAgent.js | 11 + .../core/lib/utils/userAgent.js.flow | 20 + .../core/lib/utils/validateModifiers.d.ts | 1 + .../core/lib/utils/validateModifiers.js | 81 + .../core/lib/utils/validateModifiers.js.flow | 151 + .../@popperjs/core/lib/utils/within.d.ts | 2 + .../@popperjs/core/lib/utils/within.js | 8 + .../@popperjs/core/lib/utils/within.js.flow | 11 + node_modules/@popperjs/core/package.json | 119 + node_modules/bootstrap/LICENSE | 22 + node_modules/bootstrap/README.md | 246 + .../bootstrap/dist/css/bootstrap-grid.css | 4124 ++++++ .../bootstrap/dist/css/bootstrap-grid.css.map | 1 + .../bootstrap/dist/css/bootstrap-grid.min.css | 7 + .../dist/css/bootstrap-grid.min.css.map | 1 + .../bootstrap/dist/css/bootstrap-grid.rtl.css | 4123 ++++++ .../dist/css/bootstrap-grid.rtl.css.map | 1 + .../dist/css/bootstrap-grid.rtl.min.css | 7 + .../dist/css/bootstrap-grid.rtl.min.css.map | 1 + .../bootstrap/dist/css/bootstrap-reboot.css | 488 + .../dist/css/bootstrap-reboot.css.map | 1 + .../dist/css/bootstrap-reboot.min.css | 7 + .../dist/css/bootstrap-reboot.min.css.map | 1 + .../dist/css/bootstrap-reboot.rtl.css | 485 + .../dist/css/bootstrap-reboot.rtl.css.map | 1 + .../dist/css/bootstrap-reboot.rtl.min.css | 7 + .../dist/css/bootstrap-reboot.rtl.min.css.map | 1 + .../dist/css/bootstrap-utilities.css | 4197 ++++++ .../dist/css/bootstrap-utilities.css.map | 1 + .../dist/css/bootstrap-utilities.min.css | 7 + .../dist/css/bootstrap-utilities.min.css.map | 1 + .../dist/css/bootstrap-utilities.rtl.css | 4188 ++++++ .../dist/css/bootstrap-utilities.rtl.css.map | 1 + .../dist/css/bootstrap-utilities.rtl.min.css | 7 + .../css/bootstrap-utilities.rtl.min.css.map | 1 + node_modules/bootstrap/dist/css/bootstrap.css | 10880 ++++++++++++++++ .../bootstrap/dist/css/bootstrap.css.map | 1 + .../bootstrap/dist/css/bootstrap.min.css | 7 + .../bootstrap/dist/css/bootstrap.min.css.map | 1 + .../bootstrap/dist/css/bootstrap.rtl.css | 10840 +++++++++++++++ .../bootstrap/dist/css/bootstrap.rtl.css.map | 1 + .../bootstrap/dist/css/bootstrap.rtl.min.css | 7 + .../dist/css/bootstrap.rtl.min.css.map | 1 + .../bootstrap/dist/js/bootstrap.bundle.js | 7084 ++++++++++ .../bootstrap/dist/js/bootstrap.bundle.js.map | 1 + .../bootstrap/dist/js/bootstrap.bundle.min.js | 7 + .../dist/js/bootstrap.bundle.min.js.map | 1 + .../bootstrap/dist/js/bootstrap.esm.js | 5211 ++++++++ .../bootstrap/dist/js/bootstrap.esm.js.map | 1 + .../bootstrap/dist/js/bootstrap.esm.min.js | 7 + .../dist/js/bootstrap.esm.min.js.map | 1 + node_modules/bootstrap/dist/js/bootstrap.js | 5258 ++++++++ .../bootstrap/dist/js/bootstrap.js.map | 1 + .../bootstrap/dist/js/bootstrap.min.js | 7 + .../bootstrap/dist/js/bootstrap.min.js.map | 1 + node_modules/bootstrap/js/dist/alert.js | 100 + node_modules/bootstrap/js/dist/alert.js.map | 1 + .../bootstrap/js/dist/base-component.js | 100 + .../bootstrap/js/dist/base-component.js.map | 1 + node_modules/bootstrap/js/dist/button.js | 82 + node_modules/bootstrap/js/dist/button.js.map | 1 + node_modules/bootstrap/js/dist/carousel.js | 471 + .../bootstrap/js/dist/carousel.js.map | 1 + node_modules/bootstrap/js/dist/collapse.js | 311 + .../bootstrap/js/dist/collapse.js.map | 1 + node_modules/bootstrap/js/dist/dom/data.js | 67 + .../bootstrap/js/dist/dom/data.js.map | 1 + .../bootstrap/js/dist/dom/event-handler.js | 284 + .../js/dist/dom/event-handler.js.map | 1 + .../bootstrap/js/dist/dom/manipulator.js | 85 + .../bootstrap/js/dist/dom/manipulator.js.map | 1 + .../bootstrap/js/dist/dom/selector-engine.js | 86 + .../js/dist/dom/selector-engine.js.map | 1 + node_modules/bootstrap/js/dist/dropdown.js | 473 + .../bootstrap/js/dist/dropdown.js.map | 1 + node_modules/bootstrap/js/dist/modal.js | 400 + node_modules/bootstrap/js/dist/modal.js.map | 1 + node_modules/bootstrap/js/dist/offcanvas.js | 298 + .../bootstrap/js/dist/offcanvas.js.map | 1 + node_modules/bootstrap/js/dist/popover.js | 102 + node_modules/bootstrap/js/dist/popover.js.map | 1 + node_modules/bootstrap/js/dist/scrollspy.js | 312 + .../bootstrap/js/dist/scrollspy.js.map | 1 + node_modules/bootstrap/js/dist/tab.js | 334 + node_modules/bootstrap/js/dist/tab.js.map | 1 + node_modules/bootstrap/js/dist/toast.js | 241 + node_modules/bootstrap/js/dist/toast.js.map | 1 + node_modules/bootstrap/js/dist/tooltip.js | 657 + node_modules/bootstrap/js/dist/tooltip.js.map | 1 + .../bootstrap/js/dist/util/backdrop.js | 166 + .../bootstrap/js/dist/util/backdrop.js.map | 1 + .../js/dist/util/component-functions.js | 47 + .../js/dist/util/component-functions.js.map | 1 + node_modules/bootstrap/js/dist/util/config.js | 80 + .../bootstrap/js/dist/util/config.js.map | 1 + .../bootstrap/js/dist/util/focustrap.js | 130 + .../bootstrap/js/dist/util/focustrap.js.map | 1 + node_modules/bootstrap/js/dist/util/index.js | 351 + .../bootstrap/js/dist/util/index.js.map | 1 + .../bootstrap/js/dist/util/sanitizer.js | 123 + .../bootstrap/js/dist/util/sanitizer.js.map | 1 + .../bootstrap/js/dist/util/scrollbar.js | 139 + .../bootstrap/js/dist/util/scrollbar.js.map | 1 + node_modules/bootstrap/js/dist/util/swipe.js | 156 + .../bootstrap/js/dist/util/swipe.js.map | 1 + .../js/dist/util/template-factory.js | 178 + .../js/dist/util/template-factory.js.map | 1 + node_modules/bootstrap/js/src/alert.js | 87 + .../bootstrap/js/src/base-component.js | 85 + node_modules/bootstrap/js/src/button.js | 72 + node_modules/bootstrap/js/src/carousel.js | 475 + node_modules/bootstrap/js/src/collapse.js | 302 + node_modules/bootstrap/js/src/dom/data.js | 55 + .../bootstrap/js/src/dom/event-handler.js | 320 + .../bootstrap/js/src/dom/manipulator.js | 71 + .../bootstrap/js/src/dom/selector-engine.js | 83 + node_modules/bootstrap/js/src/dropdown.js | 454 + node_modules/bootstrap/js/src/modal.js | 377 + node_modules/bootstrap/js/src/offcanvas.js | 283 + node_modules/bootstrap/js/src/popover.js | 97 + node_modules/bootstrap/js/src/scrollspy.js | 294 + node_modules/bootstrap/js/src/tab.js | 305 + node_modules/bootstrap/js/src/toast.js | 225 + node_modules/bootstrap/js/src/tooltip.js | 641 + .../bootstrap/js/src/util/backdrop.js | 149 + .../js/src/util/component-functions.js | 34 + node_modules/bootstrap/js/src/util/config.js | 66 + .../bootstrap/js/src/util/focustrap.js | 115 + node_modules/bootstrap/js/src/util/index.js | 336 + .../bootstrap/js/src/util/sanitizer.js | 118 + .../bootstrap/js/src/util/scrollbar.js | 114 + node_modules/bootstrap/js/src/util/swipe.js | 146 + .../bootstrap/js/src/util/template-factory.js | 160 + node_modules/bootstrap/package.json | 181 + node_modules/bootstrap/scss/_accordion.scss | 149 + node_modules/bootstrap/scss/_alert.scss | 71 + node_modules/bootstrap/scss/_badge.scss | 38 + node_modules/bootstrap/scss/_breadcrumb.scss | 40 + .../bootstrap/scss/_button-group.scss | 142 + node_modules/bootstrap/scss/_buttons.scss | 207 + node_modules/bootstrap/scss/_card.scss | 234 + node_modules/bootstrap/scss/_carousel.scss | 229 + node_modules/bootstrap/scss/_close.scss | 40 + node_modules/bootstrap/scss/_containers.scss | 41 + node_modules/bootstrap/scss/_dropdown.scss | 249 + node_modules/bootstrap/scss/_forms.scss | 9 + node_modules/bootstrap/scss/_functions.scss | 302 + node_modules/bootstrap/scss/_grid.scss | 33 + node_modules/bootstrap/scss/_helpers.scss | 10 + node_modules/bootstrap/scss/_images.scss | 42 + node_modules/bootstrap/scss/_list-group.scss | 192 + node_modules/bootstrap/scss/_maps.scss | 54 + node_modules/bootstrap/scss/_mixins.scss | 43 + node_modules/bootstrap/scss/_modal.scss | 237 + node_modules/bootstrap/scss/_nav.scss | 172 + node_modules/bootstrap/scss/_navbar.scss | 278 + node_modules/bootstrap/scss/_offcanvas.scss | 144 + node_modules/bootstrap/scss/_pagination.scss | 109 + .../bootstrap/scss/_placeholders.scss | 51 + node_modules/bootstrap/scss/_popover.scss | 196 + node_modules/bootstrap/scss/_progress.scss | 59 + node_modules/bootstrap/scss/_reboot.scss | 610 + node_modules/bootstrap/scss/_root.scss | 73 + node_modules/bootstrap/scss/_spinners.scss | 85 + node_modules/bootstrap/scss/_tables.scss | 164 + node_modules/bootstrap/scss/_toasts.scss | 73 + node_modules/bootstrap/scss/_tooltip.scss | 120 + node_modules/bootstrap/scss/_transitions.scss | 27 + node_modules/bootstrap/scss/_type.scss | 106 + node_modules/bootstrap/scss/_utilities.scss | 647 + node_modules/bootstrap/scss/_variables.scss | 1634 +++ .../bootstrap/scss/bootstrap-grid.scss | 64 + .../bootstrap/scss/bootstrap-reboot.scss | 9 + .../bootstrap/scss/bootstrap-utilities.scss | 15 + node_modules/bootstrap/scss/bootstrap.scss | 51 + .../scss/forms/_floating-labels.scss | 75 + .../bootstrap/scss/forms/_form-check.scss | 175 + .../bootstrap/scss/forms/_form-control.scss | 194 + .../bootstrap/scss/forms/_form-range.scss | 91 + .../bootstrap/scss/forms/_form-select.scss | 71 + .../bootstrap/scss/forms/_form-text.scss | 11 + .../bootstrap/scss/forms/_input-group.scss | 132 + .../bootstrap/scss/forms/_labels.scss | 36 + .../bootstrap/scss/forms/_validation.scss | 12 + .../bootstrap/scss/helpers/_clearfix.scss | 3 + .../bootstrap/scss/helpers/_color-bg.scss | 10 + .../scss/helpers/_colored-links.scss | 12 + .../bootstrap/scss/helpers/_position.scss | 36 + .../bootstrap/scss/helpers/_ratio.scss | 26 + .../bootstrap/scss/helpers/_stacks.scss | 15 + .../scss/helpers/_stretched-link.scss | 15 + .../scss/helpers/_text-truncation.scss | 7 + .../scss/helpers/_visually-hidden.scss | 8 + node_modules/bootstrap/scss/helpers/_vr.scss | 8 + .../bootstrap/scss/mixins/_alert.scss | 15 + .../bootstrap/scss/mixins/_backdrop.scss | 14 + .../bootstrap/scss/mixins/_banner.scss | 9 + .../bootstrap/scss/mixins/_border-radius.scss | 78 + .../bootstrap/scss/mixins/_box-shadow.scss | 18 + .../bootstrap/scss/mixins/_breakpoints.scss | 127 + .../bootstrap/scss/mixins/_buttons.scss | 70 + .../bootstrap/scss/mixins/_caret.scss | 64 + .../bootstrap/scss/mixins/_clearfix.scss | 9 + .../bootstrap/scss/mixins/_color-scheme.scss | 7 + .../bootstrap/scss/mixins/_container.scss | 11 + .../bootstrap/scss/mixins/_deprecate.scss | 10 + .../bootstrap/scss/mixins/_forms.scss | 152 + .../bootstrap/scss/mixins/_gradients.scss | 47 + node_modules/bootstrap/scss/mixins/_grid.scss | 151 + .../bootstrap/scss/mixins/_image.scss | 16 + .../bootstrap/scss/mixins/_list-group.scss | 24 + .../bootstrap/scss/mixins/_lists.scss | 7 + .../bootstrap/scss/mixins/_pagination.scss | 10 + .../bootstrap/scss/mixins/_reset-text.scss | 17 + .../bootstrap/scss/mixins/_resize.scss | 6 + .../scss/mixins/_table-variants.scss | 24 + .../bootstrap/scss/mixins/_text-truncate.scss | 8 + .../bootstrap/scss/mixins/_transition.scss | 26 + .../bootstrap/scss/mixins/_utilities.scss | 97 + .../scss/mixins/_visually-hidden.scss | 29 + .../bootstrap/scss/utilities/_api.scss | 47 + node_modules/bootstrap/scss/vendor/_rfs.scss | 354 + package-lock.json | 41 + package.json | 1 + views/matching.html | 10 +- 505 files changed, 95904 insertions(+), 1 deletion(-) create mode 100644 node_modules/@popperjs/core/LICENSE.md create mode 100644 node_modules/@popperjs/core/README.md create mode 100644 node_modules/@popperjs/core/dist/cjs/enums.js create mode 100644 node_modules/@popperjs/core/dist/cjs/enums.js.flow create mode 100644 node_modules/@popperjs/core/dist/cjs/enums.js.map create mode 100644 node_modules/@popperjs/core/dist/cjs/popper-base.js create mode 100644 node_modules/@popperjs/core/dist/cjs/popper-base.js.flow create mode 100644 node_modules/@popperjs/core/dist/cjs/popper-base.js.map create mode 100644 node_modules/@popperjs/core/dist/cjs/popper-lite.js create mode 100644 node_modules/@popperjs/core/dist/cjs/popper-lite.js.flow create mode 100644 node_modules/@popperjs/core/dist/cjs/popper-lite.js.map create mode 100644 node_modules/@popperjs/core/dist/cjs/popper.js create mode 100644 node_modules/@popperjs/core/dist/cjs/popper.js.flow create mode 100644 node_modules/@popperjs/core/dist/cjs/popper.js.map create mode 100644 node_modules/@popperjs/core/dist/esm/createPopper.js create mode 100644 node_modules/@popperjs/core/dist/esm/dom-utils/contains.js create mode 100644 node_modules/@popperjs/core/dist/esm/dom-utils/getBoundingClientRect.js create mode 100644 node_modules/@popperjs/core/dist/esm/dom-utils/getClippingRect.js create mode 100644 node_modules/@popperjs/core/dist/esm/dom-utils/getCompositeRect.js create mode 100644 node_modules/@popperjs/core/dist/esm/dom-utils/getComputedStyle.js create mode 100644 node_modules/@popperjs/core/dist/esm/dom-utils/getDocumentElement.js create mode 100644 node_modules/@popperjs/core/dist/esm/dom-utils/getDocumentRect.js create mode 100644 node_modules/@popperjs/core/dist/esm/dom-utils/getHTMLElementScroll.js create mode 100644 node_modules/@popperjs/core/dist/esm/dom-utils/getLayoutRect.js create mode 100644 node_modules/@popperjs/core/dist/esm/dom-utils/getNodeName.js create mode 100644 node_modules/@popperjs/core/dist/esm/dom-utils/getNodeScroll.js create mode 100644 node_modules/@popperjs/core/dist/esm/dom-utils/getOffsetParent.js create mode 100644 node_modules/@popperjs/core/dist/esm/dom-utils/getParentNode.js create mode 100644 node_modules/@popperjs/core/dist/esm/dom-utils/getScrollParent.js create mode 100644 node_modules/@popperjs/core/dist/esm/dom-utils/getViewportRect.js create mode 100644 node_modules/@popperjs/core/dist/esm/dom-utils/getWindow.js create mode 100644 node_modules/@popperjs/core/dist/esm/dom-utils/getWindowScroll.js create mode 100644 node_modules/@popperjs/core/dist/esm/dom-utils/getWindowScrollBarX.js create mode 100644 node_modules/@popperjs/core/dist/esm/dom-utils/instanceOf.js create mode 100644 node_modules/@popperjs/core/dist/esm/dom-utils/isLayoutViewport.js create mode 100644 node_modules/@popperjs/core/dist/esm/dom-utils/isScrollParent.js create mode 100644 node_modules/@popperjs/core/dist/esm/dom-utils/isTableElement.js create mode 100644 node_modules/@popperjs/core/dist/esm/dom-utils/listScrollParents.js create mode 100644 node_modules/@popperjs/core/dist/esm/enums.js create mode 100644 node_modules/@popperjs/core/dist/esm/index.js create mode 100644 node_modules/@popperjs/core/dist/esm/modifiers/applyStyles.js create mode 100644 node_modules/@popperjs/core/dist/esm/modifiers/arrow.js create mode 100644 node_modules/@popperjs/core/dist/esm/modifiers/computeStyles.js create mode 100644 node_modules/@popperjs/core/dist/esm/modifiers/eventListeners.js create mode 100644 node_modules/@popperjs/core/dist/esm/modifiers/flip.js create mode 100644 node_modules/@popperjs/core/dist/esm/modifiers/hide.js create mode 100644 node_modules/@popperjs/core/dist/esm/modifiers/index.js create mode 100644 node_modules/@popperjs/core/dist/esm/modifiers/offset.js create mode 100644 node_modules/@popperjs/core/dist/esm/modifiers/popperOffsets.js create mode 100644 node_modules/@popperjs/core/dist/esm/modifiers/preventOverflow.js create mode 100644 node_modules/@popperjs/core/dist/esm/popper-base.js create mode 100644 node_modules/@popperjs/core/dist/esm/popper-lite.js create mode 100644 node_modules/@popperjs/core/dist/esm/popper.js create mode 100644 node_modules/@popperjs/core/dist/esm/types.js create mode 100644 node_modules/@popperjs/core/dist/esm/utils/computeAutoPlacement.js create mode 100644 node_modules/@popperjs/core/dist/esm/utils/computeOffsets.js create mode 100644 node_modules/@popperjs/core/dist/esm/utils/debounce.js create mode 100644 node_modules/@popperjs/core/dist/esm/utils/detectOverflow.js create mode 100644 node_modules/@popperjs/core/dist/esm/utils/expandToHashMap.js create mode 100644 node_modules/@popperjs/core/dist/esm/utils/format.js create mode 100644 node_modules/@popperjs/core/dist/esm/utils/getAltAxis.js create mode 100644 node_modules/@popperjs/core/dist/esm/utils/getAltLen.js create mode 100644 node_modules/@popperjs/core/dist/esm/utils/getBasePlacement.js create mode 100644 node_modules/@popperjs/core/dist/esm/utils/getFreshSideObject.js create mode 100644 node_modules/@popperjs/core/dist/esm/utils/getMainAxisFromPlacement.js create mode 100644 node_modules/@popperjs/core/dist/esm/utils/getOppositePlacement.js create mode 100644 node_modules/@popperjs/core/dist/esm/utils/getOppositeVariationPlacement.js create mode 100644 node_modules/@popperjs/core/dist/esm/utils/getVariation.js create mode 100644 node_modules/@popperjs/core/dist/esm/utils/math.js create mode 100644 node_modules/@popperjs/core/dist/esm/utils/mergeByName.js create mode 100644 node_modules/@popperjs/core/dist/esm/utils/mergePaddingObject.js create mode 100644 node_modules/@popperjs/core/dist/esm/utils/orderModifiers.js create mode 100644 node_modules/@popperjs/core/dist/esm/utils/rectToClientRect.js create mode 100644 node_modules/@popperjs/core/dist/esm/utils/uniqueBy.js create mode 100644 node_modules/@popperjs/core/dist/esm/utils/userAgent.js create mode 100644 node_modules/@popperjs/core/dist/esm/utils/validateModifiers.js create mode 100644 node_modules/@popperjs/core/dist/esm/utils/within.js create mode 100644 node_modules/@popperjs/core/dist/umd/enums.js create mode 100644 node_modules/@popperjs/core/dist/umd/enums.js.map create mode 100644 node_modules/@popperjs/core/dist/umd/enums.min.js create mode 100644 node_modules/@popperjs/core/dist/umd/enums.min.js.flow create mode 100644 node_modules/@popperjs/core/dist/umd/enums.min.js.map create mode 100644 node_modules/@popperjs/core/dist/umd/popper-base.js create mode 100644 node_modules/@popperjs/core/dist/umd/popper-base.js.map create mode 100644 node_modules/@popperjs/core/dist/umd/popper-base.min.js create mode 100644 node_modules/@popperjs/core/dist/umd/popper-base.min.js.flow create mode 100644 node_modules/@popperjs/core/dist/umd/popper-base.min.js.map create mode 100644 node_modules/@popperjs/core/dist/umd/popper-lite.js create mode 100644 node_modules/@popperjs/core/dist/umd/popper-lite.js.map create mode 100644 node_modules/@popperjs/core/dist/umd/popper-lite.min.js create mode 100644 node_modules/@popperjs/core/dist/umd/popper-lite.min.js.flow create mode 100644 node_modules/@popperjs/core/dist/umd/popper-lite.min.js.map create mode 100644 node_modules/@popperjs/core/dist/umd/popper.js create mode 100644 node_modules/@popperjs/core/dist/umd/popper.js.map create mode 100644 node_modules/@popperjs/core/dist/umd/popper.min.js create mode 100644 node_modules/@popperjs/core/dist/umd/popper.min.js.flow create mode 100644 node_modules/@popperjs/core/dist/umd/popper.min.js.map create mode 100644 node_modules/@popperjs/core/index.d.ts create mode 100644 node_modules/@popperjs/core/lib/createPopper.d.ts create mode 100644 node_modules/@popperjs/core/lib/createPopper.js create mode 100644 node_modules/@popperjs/core/lib/createPopper.js.flow create mode 100644 node_modules/@popperjs/core/lib/dom-utils/contains.d.ts create mode 100644 node_modules/@popperjs/core/lib/dom-utils/contains.js create mode 100644 node_modules/@popperjs/core/lib/dom-utils/contains.js.flow create mode 100644 node_modules/@popperjs/core/lib/dom-utils/getBoundingClientRect.d.ts create mode 100644 node_modules/@popperjs/core/lib/dom-utils/getBoundingClientRect.js create mode 100644 node_modules/@popperjs/core/lib/dom-utils/getBoundingClientRect.js.flow create mode 100644 node_modules/@popperjs/core/lib/dom-utils/getClippingRect.d.ts create mode 100644 node_modules/@popperjs/core/lib/dom-utils/getClippingRect.js create mode 100644 node_modules/@popperjs/core/lib/dom-utils/getClippingRect.js.flow create mode 100644 node_modules/@popperjs/core/lib/dom-utils/getCompositeRect.d.ts create mode 100644 node_modules/@popperjs/core/lib/dom-utils/getCompositeRect.js create mode 100644 node_modules/@popperjs/core/lib/dom-utils/getCompositeRect.js.flow create mode 100644 node_modules/@popperjs/core/lib/dom-utils/getComputedStyle.d.ts create mode 100644 node_modules/@popperjs/core/lib/dom-utils/getComputedStyle.js create mode 100644 node_modules/@popperjs/core/lib/dom-utils/getComputedStyle.js.flow create mode 100644 node_modules/@popperjs/core/lib/dom-utils/getDocumentElement.d.ts create mode 100644 node_modules/@popperjs/core/lib/dom-utils/getDocumentElement.js create mode 100644 node_modules/@popperjs/core/lib/dom-utils/getDocumentElement.js.flow create mode 100644 node_modules/@popperjs/core/lib/dom-utils/getDocumentRect.d.ts create mode 100644 node_modules/@popperjs/core/lib/dom-utils/getDocumentRect.js create mode 100644 node_modules/@popperjs/core/lib/dom-utils/getDocumentRect.js.flow create mode 100644 node_modules/@popperjs/core/lib/dom-utils/getHTMLElementScroll.d.ts create mode 100644 node_modules/@popperjs/core/lib/dom-utils/getHTMLElementScroll.js create mode 100644 node_modules/@popperjs/core/lib/dom-utils/getHTMLElementScroll.js.flow create mode 100644 node_modules/@popperjs/core/lib/dom-utils/getLayoutRect.d.ts create mode 100644 node_modules/@popperjs/core/lib/dom-utils/getLayoutRect.js create mode 100644 node_modules/@popperjs/core/lib/dom-utils/getLayoutRect.js.flow create mode 100644 node_modules/@popperjs/core/lib/dom-utils/getNodeName.d.ts create mode 100644 node_modules/@popperjs/core/lib/dom-utils/getNodeName.js create mode 100644 node_modules/@popperjs/core/lib/dom-utils/getNodeName.js.flow create mode 100644 node_modules/@popperjs/core/lib/dom-utils/getNodeScroll.d.ts create mode 100644 node_modules/@popperjs/core/lib/dom-utils/getNodeScroll.js create mode 100644 node_modules/@popperjs/core/lib/dom-utils/getNodeScroll.js.flow create mode 100644 node_modules/@popperjs/core/lib/dom-utils/getOffsetParent.d.ts create mode 100644 node_modules/@popperjs/core/lib/dom-utils/getOffsetParent.js create mode 100644 node_modules/@popperjs/core/lib/dom-utils/getOffsetParent.js.flow create mode 100644 node_modules/@popperjs/core/lib/dom-utils/getParentNode.d.ts create mode 100644 node_modules/@popperjs/core/lib/dom-utils/getParentNode.js create mode 100644 node_modules/@popperjs/core/lib/dom-utils/getParentNode.js.flow create mode 100644 node_modules/@popperjs/core/lib/dom-utils/getScrollParent.d.ts create mode 100644 node_modules/@popperjs/core/lib/dom-utils/getScrollParent.js create mode 100644 node_modules/@popperjs/core/lib/dom-utils/getScrollParent.js.flow create mode 100644 node_modules/@popperjs/core/lib/dom-utils/getViewportRect.d.ts create mode 100644 node_modules/@popperjs/core/lib/dom-utils/getViewportRect.js create mode 100644 node_modules/@popperjs/core/lib/dom-utils/getViewportRect.js.flow create mode 100644 node_modules/@popperjs/core/lib/dom-utils/getWindow.d.ts create mode 100644 node_modules/@popperjs/core/lib/dom-utils/getWindow.js create mode 100644 node_modules/@popperjs/core/lib/dom-utils/getWindow.js.flow create mode 100644 node_modules/@popperjs/core/lib/dom-utils/getWindowScroll.d.ts create mode 100644 node_modules/@popperjs/core/lib/dom-utils/getWindowScroll.js create mode 100644 node_modules/@popperjs/core/lib/dom-utils/getWindowScroll.js.flow create mode 100644 node_modules/@popperjs/core/lib/dom-utils/getWindowScrollBarX.d.ts create mode 100644 node_modules/@popperjs/core/lib/dom-utils/getWindowScrollBarX.js create mode 100644 node_modules/@popperjs/core/lib/dom-utils/getWindowScrollBarX.js.flow create mode 100644 node_modules/@popperjs/core/lib/dom-utils/instanceOf.d.ts create mode 100644 node_modules/@popperjs/core/lib/dom-utils/instanceOf.js create mode 100644 node_modules/@popperjs/core/lib/dom-utils/instanceOf.js.flow create mode 100644 node_modules/@popperjs/core/lib/dom-utils/isLayoutViewport.d.ts create mode 100644 node_modules/@popperjs/core/lib/dom-utils/isLayoutViewport.js create mode 100644 node_modules/@popperjs/core/lib/dom-utils/isLayoutViewport.js.flow create mode 100644 node_modules/@popperjs/core/lib/dom-utils/isScrollParent.d.ts create mode 100644 node_modules/@popperjs/core/lib/dom-utils/isScrollParent.js create mode 100644 node_modules/@popperjs/core/lib/dom-utils/isScrollParent.js.flow create mode 100644 node_modules/@popperjs/core/lib/dom-utils/isTableElement.d.ts create mode 100644 node_modules/@popperjs/core/lib/dom-utils/isTableElement.js create mode 100644 node_modules/@popperjs/core/lib/dom-utils/isTableElement.js.flow create mode 100644 node_modules/@popperjs/core/lib/dom-utils/listScrollParents.d.ts create mode 100644 node_modules/@popperjs/core/lib/dom-utils/listScrollParents.js create mode 100644 node_modules/@popperjs/core/lib/dom-utils/listScrollParents.js.flow create mode 100644 node_modules/@popperjs/core/lib/enums.d.ts create mode 100644 node_modules/@popperjs/core/lib/enums.js create mode 100644 node_modules/@popperjs/core/lib/enums.js.flow create mode 100644 node_modules/@popperjs/core/lib/index.d.ts create mode 100644 node_modules/@popperjs/core/lib/index.js create mode 100644 node_modules/@popperjs/core/lib/index.js.flow create mode 100644 node_modules/@popperjs/core/lib/modifiers/applyStyles.d.ts create mode 100644 node_modules/@popperjs/core/lib/modifiers/applyStyles.js create mode 100644 node_modules/@popperjs/core/lib/modifiers/applyStyles.js.flow create mode 100644 node_modules/@popperjs/core/lib/modifiers/arrow.d.ts create mode 100644 node_modules/@popperjs/core/lib/modifiers/arrow.js create mode 100644 node_modules/@popperjs/core/lib/modifiers/arrow.js.flow create mode 100644 node_modules/@popperjs/core/lib/modifiers/computeStyles.d.ts create mode 100644 node_modules/@popperjs/core/lib/modifiers/computeStyles.js create mode 100644 node_modules/@popperjs/core/lib/modifiers/computeStyles.js.flow create mode 100644 node_modules/@popperjs/core/lib/modifiers/eventListeners.d.ts create mode 100644 node_modules/@popperjs/core/lib/modifiers/eventListeners.js create mode 100644 node_modules/@popperjs/core/lib/modifiers/eventListeners.js.flow create mode 100644 node_modules/@popperjs/core/lib/modifiers/flip.d.ts create mode 100644 node_modules/@popperjs/core/lib/modifiers/flip.js create mode 100644 node_modules/@popperjs/core/lib/modifiers/flip.js.flow create mode 100644 node_modules/@popperjs/core/lib/modifiers/hide.d.ts create mode 100644 node_modules/@popperjs/core/lib/modifiers/hide.js create mode 100644 node_modules/@popperjs/core/lib/modifiers/hide.js.flow create mode 100644 node_modules/@popperjs/core/lib/modifiers/index.d.ts create mode 100644 node_modules/@popperjs/core/lib/modifiers/index.js create mode 100644 node_modules/@popperjs/core/lib/modifiers/index.js.flow create mode 100644 node_modules/@popperjs/core/lib/modifiers/offset.d.ts create mode 100644 node_modules/@popperjs/core/lib/modifiers/offset.js create mode 100644 node_modules/@popperjs/core/lib/modifiers/offset.js.flow create mode 100644 node_modules/@popperjs/core/lib/modifiers/popperOffsets.d.ts create mode 100644 node_modules/@popperjs/core/lib/modifiers/popperOffsets.js create mode 100644 node_modules/@popperjs/core/lib/modifiers/popperOffsets.js.flow create mode 100644 node_modules/@popperjs/core/lib/modifiers/preventOverflow.d.ts create mode 100644 node_modules/@popperjs/core/lib/modifiers/preventOverflow.js create mode 100644 node_modules/@popperjs/core/lib/modifiers/preventOverflow.js.flow create mode 100644 node_modules/@popperjs/core/lib/popper-base.d.ts create mode 100644 node_modules/@popperjs/core/lib/popper-base.js create mode 100644 node_modules/@popperjs/core/lib/popper-base.js.flow create mode 100644 node_modules/@popperjs/core/lib/popper-lite.d.ts create mode 100644 node_modules/@popperjs/core/lib/popper-lite.js create mode 100644 node_modules/@popperjs/core/lib/popper-lite.js.flow create mode 100644 node_modules/@popperjs/core/lib/popper.d.ts create mode 100644 node_modules/@popperjs/core/lib/popper.js create mode 100644 node_modules/@popperjs/core/lib/popper.js.flow create mode 100644 node_modules/@popperjs/core/lib/types.d.ts create mode 100644 node_modules/@popperjs/core/lib/types.js create mode 100644 node_modules/@popperjs/core/lib/types.js.flow create mode 100644 node_modules/@popperjs/core/lib/utils/computeAutoPlacement.d.ts create mode 100644 node_modules/@popperjs/core/lib/utils/computeAutoPlacement.js create mode 100644 node_modules/@popperjs/core/lib/utils/computeAutoPlacement.js.flow create mode 100644 node_modules/@popperjs/core/lib/utils/computeOffsets.d.ts create mode 100644 node_modules/@popperjs/core/lib/utils/computeOffsets.js create mode 100644 node_modules/@popperjs/core/lib/utils/computeOffsets.js.flow create mode 100644 node_modules/@popperjs/core/lib/utils/debounce.d.ts create mode 100644 node_modules/@popperjs/core/lib/utils/debounce.js create mode 100644 node_modules/@popperjs/core/lib/utils/debounce.js.flow create mode 100644 node_modules/@popperjs/core/lib/utils/detectOverflow.d.ts create mode 100644 node_modules/@popperjs/core/lib/utils/detectOverflow.js create mode 100644 node_modules/@popperjs/core/lib/utils/detectOverflow.js.flow create mode 100644 node_modules/@popperjs/core/lib/utils/expandToHashMap.d.ts create mode 100644 node_modules/@popperjs/core/lib/utils/expandToHashMap.js create mode 100644 node_modules/@popperjs/core/lib/utils/expandToHashMap.js.flow create mode 100644 node_modules/@popperjs/core/lib/utils/format.d.ts create mode 100644 node_modules/@popperjs/core/lib/utils/format.js create mode 100644 node_modules/@popperjs/core/lib/utils/format.js.flow create mode 100644 node_modules/@popperjs/core/lib/utils/getAltAxis.d.ts create mode 100644 node_modules/@popperjs/core/lib/utils/getAltAxis.js create mode 100644 node_modules/@popperjs/core/lib/utils/getAltAxis.js.flow create mode 100644 node_modules/@popperjs/core/lib/utils/getAltLen.d.ts create mode 100644 node_modules/@popperjs/core/lib/utils/getAltLen.js create mode 100644 node_modules/@popperjs/core/lib/utils/getAltLen.js.flow create mode 100644 node_modules/@popperjs/core/lib/utils/getBasePlacement.d.ts create mode 100644 node_modules/@popperjs/core/lib/utils/getBasePlacement.js create mode 100644 node_modules/@popperjs/core/lib/utils/getBasePlacement.js.flow create mode 100644 node_modules/@popperjs/core/lib/utils/getFreshSideObject.d.ts create mode 100644 node_modules/@popperjs/core/lib/utils/getFreshSideObject.js create mode 100644 node_modules/@popperjs/core/lib/utils/getFreshSideObject.js.flow create mode 100644 node_modules/@popperjs/core/lib/utils/getMainAxisFromPlacement.d.ts create mode 100644 node_modules/@popperjs/core/lib/utils/getMainAxisFromPlacement.js create mode 100644 node_modules/@popperjs/core/lib/utils/getMainAxisFromPlacement.js.flow create mode 100644 node_modules/@popperjs/core/lib/utils/getOppositePlacement.d.ts create mode 100644 node_modules/@popperjs/core/lib/utils/getOppositePlacement.js create mode 100644 node_modules/@popperjs/core/lib/utils/getOppositePlacement.js.flow create mode 100644 node_modules/@popperjs/core/lib/utils/getOppositeVariationPlacement.d.ts create mode 100644 node_modules/@popperjs/core/lib/utils/getOppositeVariationPlacement.js create mode 100644 node_modules/@popperjs/core/lib/utils/getOppositeVariationPlacement.js.flow create mode 100644 node_modules/@popperjs/core/lib/utils/getVariation.d.ts create mode 100644 node_modules/@popperjs/core/lib/utils/getVariation.js create mode 100644 node_modules/@popperjs/core/lib/utils/getVariation.js.flow create mode 100644 node_modules/@popperjs/core/lib/utils/math.d.ts create mode 100644 node_modules/@popperjs/core/lib/utils/math.js create mode 100644 node_modules/@popperjs/core/lib/utils/math.js.flow create mode 100644 node_modules/@popperjs/core/lib/utils/mergeByName.d.ts create mode 100644 node_modules/@popperjs/core/lib/utils/mergeByName.js create mode 100644 node_modules/@popperjs/core/lib/utils/mergeByName.js.flow create mode 100644 node_modules/@popperjs/core/lib/utils/mergePaddingObject.d.ts create mode 100644 node_modules/@popperjs/core/lib/utils/mergePaddingObject.js create mode 100644 node_modules/@popperjs/core/lib/utils/mergePaddingObject.js.flow create mode 100644 node_modules/@popperjs/core/lib/utils/orderModifiers.d.ts create mode 100644 node_modules/@popperjs/core/lib/utils/orderModifiers.js create mode 100644 node_modules/@popperjs/core/lib/utils/orderModifiers.js.flow create mode 100644 node_modules/@popperjs/core/lib/utils/rectToClientRect.d.ts create mode 100644 node_modules/@popperjs/core/lib/utils/rectToClientRect.js create mode 100644 node_modules/@popperjs/core/lib/utils/rectToClientRect.js.flow create mode 100644 node_modules/@popperjs/core/lib/utils/uniqueBy.d.ts create mode 100644 node_modules/@popperjs/core/lib/utils/uniqueBy.js create mode 100644 node_modules/@popperjs/core/lib/utils/uniqueBy.js.flow create mode 100644 node_modules/@popperjs/core/lib/utils/userAgent.d.ts create mode 100644 node_modules/@popperjs/core/lib/utils/userAgent.js create mode 100644 node_modules/@popperjs/core/lib/utils/userAgent.js.flow create mode 100644 node_modules/@popperjs/core/lib/utils/validateModifiers.d.ts create mode 100644 node_modules/@popperjs/core/lib/utils/validateModifiers.js create mode 100644 node_modules/@popperjs/core/lib/utils/validateModifiers.js.flow create mode 100644 node_modules/@popperjs/core/lib/utils/within.d.ts create mode 100644 node_modules/@popperjs/core/lib/utils/within.js create mode 100644 node_modules/@popperjs/core/lib/utils/within.js.flow create mode 100644 node_modules/@popperjs/core/package.json create mode 100644 node_modules/bootstrap/LICENSE create mode 100644 node_modules/bootstrap/README.md create mode 100644 node_modules/bootstrap/dist/css/bootstrap-grid.css create mode 100644 node_modules/bootstrap/dist/css/bootstrap-grid.css.map create mode 100644 node_modules/bootstrap/dist/css/bootstrap-grid.min.css create mode 100644 node_modules/bootstrap/dist/css/bootstrap-grid.min.css.map create mode 100644 node_modules/bootstrap/dist/css/bootstrap-grid.rtl.css create mode 100644 node_modules/bootstrap/dist/css/bootstrap-grid.rtl.css.map create mode 100644 node_modules/bootstrap/dist/css/bootstrap-grid.rtl.min.css create mode 100644 node_modules/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map create mode 100644 node_modules/bootstrap/dist/css/bootstrap-reboot.css create mode 100644 node_modules/bootstrap/dist/css/bootstrap-reboot.css.map create mode 100644 node_modules/bootstrap/dist/css/bootstrap-reboot.min.css create mode 100644 node_modules/bootstrap/dist/css/bootstrap-reboot.min.css.map create mode 100644 node_modules/bootstrap/dist/css/bootstrap-reboot.rtl.css create mode 100644 node_modules/bootstrap/dist/css/bootstrap-reboot.rtl.css.map create mode 100644 node_modules/bootstrap/dist/css/bootstrap-reboot.rtl.min.css create mode 100644 node_modules/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map create mode 100644 node_modules/bootstrap/dist/css/bootstrap-utilities.css create mode 100644 node_modules/bootstrap/dist/css/bootstrap-utilities.css.map create mode 100644 node_modules/bootstrap/dist/css/bootstrap-utilities.min.css create mode 100644 node_modules/bootstrap/dist/css/bootstrap-utilities.min.css.map create mode 100644 node_modules/bootstrap/dist/css/bootstrap-utilities.rtl.css create mode 100644 node_modules/bootstrap/dist/css/bootstrap-utilities.rtl.css.map create mode 100644 node_modules/bootstrap/dist/css/bootstrap-utilities.rtl.min.css create mode 100644 node_modules/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map create mode 100644 node_modules/bootstrap/dist/css/bootstrap.css create mode 100644 node_modules/bootstrap/dist/css/bootstrap.css.map create mode 100644 node_modules/bootstrap/dist/css/bootstrap.min.css create mode 100644 node_modules/bootstrap/dist/css/bootstrap.min.css.map create mode 100644 node_modules/bootstrap/dist/css/bootstrap.rtl.css create mode 100644 node_modules/bootstrap/dist/css/bootstrap.rtl.css.map create mode 100644 node_modules/bootstrap/dist/css/bootstrap.rtl.min.css create mode 100644 node_modules/bootstrap/dist/css/bootstrap.rtl.min.css.map create mode 100644 node_modules/bootstrap/dist/js/bootstrap.bundle.js create mode 100644 node_modules/bootstrap/dist/js/bootstrap.bundle.js.map create mode 100644 node_modules/bootstrap/dist/js/bootstrap.bundle.min.js create mode 100644 node_modules/bootstrap/dist/js/bootstrap.bundle.min.js.map create mode 100644 node_modules/bootstrap/dist/js/bootstrap.esm.js create mode 100644 node_modules/bootstrap/dist/js/bootstrap.esm.js.map create mode 100644 node_modules/bootstrap/dist/js/bootstrap.esm.min.js create mode 100644 node_modules/bootstrap/dist/js/bootstrap.esm.min.js.map create mode 100644 node_modules/bootstrap/dist/js/bootstrap.js create mode 100644 node_modules/bootstrap/dist/js/bootstrap.js.map create mode 100644 node_modules/bootstrap/dist/js/bootstrap.min.js create mode 100644 node_modules/bootstrap/dist/js/bootstrap.min.js.map create mode 100644 node_modules/bootstrap/js/dist/alert.js create mode 100644 node_modules/bootstrap/js/dist/alert.js.map create mode 100644 node_modules/bootstrap/js/dist/base-component.js create mode 100644 node_modules/bootstrap/js/dist/base-component.js.map create mode 100644 node_modules/bootstrap/js/dist/button.js create mode 100644 node_modules/bootstrap/js/dist/button.js.map create mode 100644 node_modules/bootstrap/js/dist/carousel.js create mode 100644 node_modules/bootstrap/js/dist/carousel.js.map create mode 100644 node_modules/bootstrap/js/dist/collapse.js create mode 100644 node_modules/bootstrap/js/dist/collapse.js.map create mode 100644 node_modules/bootstrap/js/dist/dom/data.js create mode 100644 node_modules/bootstrap/js/dist/dom/data.js.map create mode 100644 node_modules/bootstrap/js/dist/dom/event-handler.js create mode 100644 node_modules/bootstrap/js/dist/dom/event-handler.js.map create mode 100644 node_modules/bootstrap/js/dist/dom/manipulator.js create mode 100644 node_modules/bootstrap/js/dist/dom/manipulator.js.map create mode 100644 node_modules/bootstrap/js/dist/dom/selector-engine.js create mode 100644 node_modules/bootstrap/js/dist/dom/selector-engine.js.map create mode 100644 node_modules/bootstrap/js/dist/dropdown.js create mode 100644 node_modules/bootstrap/js/dist/dropdown.js.map create mode 100644 node_modules/bootstrap/js/dist/modal.js create mode 100644 node_modules/bootstrap/js/dist/modal.js.map create mode 100644 node_modules/bootstrap/js/dist/offcanvas.js create mode 100644 node_modules/bootstrap/js/dist/offcanvas.js.map create mode 100644 node_modules/bootstrap/js/dist/popover.js create mode 100644 node_modules/bootstrap/js/dist/popover.js.map create mode 100644 node_modules/bootstrap/js/dist/scrollspy.js create mode 100644 node_modules/bootstrap/js/dist/scrollspy.js.map create mode 100644 node_modules/bootstrap/js/dist/tab.js create mode 100644 node_modules/bootstrap/js/dist/tab.js.map create mode 100644 node_modules/bootstrap/js/dist/toast.js create mode 100644 node_modules/bootstrap/js/dist/toast.js.map create mode 100644 node_modules/bootstrap/js/dist/tooltip.js create mode 100644 node_modules/bootstrap/js/dist/tooltip.js.map create mode 100644 node_modules/bootstrap/js/dist/util/backdrop.js create mode 100644 node_modules/bootstrap/js/dist/util/backdrop.js.map create mode 100644 node_modules/bootstrap/js/dist/util/component-functions.js create mode 100644 node_modules/bootstrap/js/dist/util/component-functions.js.map create mode 100644 node_modules/bootstrap/js/dist/util/config.js create mode 100644 node_modules/bootstrap/js/dist/util/config.js.map create mode 100644 node_modules/bootstrap/js/dist/util/focustrap.js create mode 100644 node_modules/bootstrap/js/dist/util/focustrap.js.map create mode 100644 node_modules/bootstrap/js/dist/util/index.js create mode 100644 node_modules/bootstrap/js/dist/util/index.js.map create mode 100644 node_modules/bootstrap/js/dist/util/sanitizer.js create mode 100644 node_modules/bootstrap/js/dist/util/sanitizer.js.map create mode 100644 node_modules/bootstrap/js/dist/util/scrollbar.js create mode 100644 node_modules/bootstrap/js/dist/util/scrollbar.js.map create mode 100644 node_modules/bootstrap/js/dist/util/swipe.js create mode 100644 node_modules/bootstrap/js/dist/util/swipe.js.map create mode 100644 node_modules/bootstrap/js/dist/util/template-factory.js create mode 100644 node_modules/bootstrap/js/dist/util/template-factory.js.map create mode 100644 node_modules/bootstrap/js/src/alert.js create mode 100644 node_modules/bootstrap/js/src/base-component.js create mode 100644 node_modules/bootstrap/js/src/button.js create mode 100644 node_modules/bootstrap/js/src/carousel.js create mode 100644 node_modules/bootstrap/js/src/collapse.js create mode 100644 node_modules/bootstrap/js/src/dom/data.js create mode 100644 node_modules/bootstrap/js/src/dom/event-handler.js create mode 100644 node_modules/bootstrap/js/src/dom/manipulator.js create mode 100644 node_modules/bootstrap/js/src/dom/selector-engine.js create mode 100644 node_modules/bootstrap/js/src/dropdown.js create mode 100644 node_modules/bootstrap/js/src/modal.js create mode 100644 node_modules/bootstrap/js/src/offcanvas.js create mode 100644 node_modules/bootstrap/js/src/popover.js create mode 100644 node_modules/bootstrap/js/src/scrollspy.js create mode 100644 node_modules/bootstrap/js/src/tab.js create mode 100644 node_modules/bootstrap/js/src/toast.js create mode 100644 node_modules/bootstrap/js/src/tooltip.js create mode 100644 node_modules/bootstrap/js/src/util/backdrop.js create mode 100644 node_modules/bootstrap/js/src/util/component-functions.js create mode 100644 node_modules/bootstrap/js/src/util/config.js create mode 100644 node_modules/bootstrap/js/src/util/focustrap.js create mode 100644 node_modules/bootstrap/js/src/util/index.js create mode 100644 node_modules/bootstrap/js/src/util/sanitizer.js create mode 100644 node_modules/bootstrap/js/src/util/scrollbar.js create mode 100644 node_modules/bootstrap/js/src/util/swipe.js create mode 100644 node_modules/bootstrap/js/src/util/template-factory.js create mode 100644 node_modules/bootstrap/package.json create mode 100644 node_modules/bootstrap/scss/_accordion.scss create mode 100644 node_modules/bootstrap/scss/_alert.scss create mode 100644 node_modules/bootstrap/scss/_badge.scss create mode 100644 node_modules/bootstrap/scss/_breadcrumb.scss create mode 100644 node_modules/bootstrap/scss/_button-group.scss create mode 100644 node_modules/bootstrap/scss/_buttons.scss create mode 100644 node_modules/bootstrap/scss/_card.scss create mode 100644 node_modules/bootstrap/scss/_carousel.scss create mode 100644 node_modules/bootstrap/scss/_close.scss create mode 100644 node_modules/bootstrap/scss/_containers.scss create mode 100644 node_modules/bootstrap/scss/_dropdown.scss create mode 100644 node_modules/bootstrap/scss/_forms.scss create mode 100644 node_modules/bootstrap/scss/_functions.scss create mode 100644 node_modules/bootstrap/scss/_grid.scss create mode 100644 node_modules/bootstrap/scss/_helpers.scss create mode 100644 node_modules/bootstrap/scss/_images.scss create mode 100644 node_modules/bootstrap/scss/_list-group.scss create mode 100644 node_modules/bootstrap/scss/_maps.scss create mode 100644 node_modules/bootstrap/scss/_mixins.scss create mode 100644 node_modules/bootstrap/scss/_modal.scss create mode 100644 node_modules/bootstrap/scss/_nav.scss create mode 100644 node_modules/bootstrap/scss/_navbar.scss create mode 100644 node_modules/bootstrap/scss/_offcanvas.scss create mode 100644 node_modules/bootstrap/scss/_pagination.scss create mode 100644 node_modules/bootstrap/scss/_placeholders.scss create mode 100644 node_modules/bootstrap/scss/_popover.scss create mode 100644 node_modules/bootstrap/scss/_progress.scss create mode 100644 node_modules/bootstrap/scss/_reboot.scss create mode 100644 node_modules/bootstrap/scss/_root.scss create mode 100644 node_modules/bootstrap/scss/_spinners.scss create mode 100644 node_modules/bootstrap/scss/_tables.scss create mode 100644 node_modules/bootstrap/scss/_toasts.scss create mode 100644 node_modules/bootstrap/scss/_tooltip.scss create mode 100644 node_modules/bootstrap/scss/_transitions.scss create mode 100644 node_modules/bootstrap/scss/_type.scss create mode 100644 node_modules/bootstrap/scss/_utilities.scss create mode 100644 node_modules/bootstrap/scss/_variables.scss create mode 100644 node_modules/bootstrap/scss/bootstrap-grid.scss create mode 100644 node_modules/bootstrap/scss/bootstrap-reboot.scss create mode 100644 node_modules/bootstrap/scss/bootstrap-utilities.scss create mode 100644 node_modules/bootstrap/scss/bootstrap.scss create mode 100644 node_modules/bootstrap/scss/forms/_floating-labels.scss create mode 100644 node_modules/bootstrap/scss/forms/_form-check.scss create mode 100644 node_modules/bootstrap/scss/forms/_form-control.scss create mode 100644 node_modules/bootstrap/scss/forms/_form-range.scss create mode 100644 node_modules/bootstrap/scss/forms/_form-select.scss create mode 100644 node_modules/bootstrap/scss/forms/_form-text.scss create mode 100644 node_modules/bootstrap/scss/forms/_input-group.scss create mode 100644 node_modules/bootstrap/scss/forms/_labels.scss create mode 100644 node_modules/bootstrap/scss/forms/_validation.scss create mode 100644 node_modules/bootstrap/scss/helpers/_clearfix.scss create mode 100644 node_modules/bootstrap/scss/helpers/_color-bg.scss create mode 100644 node_modules/bootstrap/scss/helpers/_colored-links.scss create mode 100644 node_modules/bootstrap/scss/helpers/_position.scss create mode 100644 node_modules/bootstrap/scss/helpers/_ratio.scss create mode 100644 node_modules/bootstrap/scss/helpers/_stacks.scss create mode 100644 node_modules/bootstrap/scss/helpers/_stretched-link.scss create mode 100644 node_modules/bootstrap/scss/helpers/_text-truncation.scss create mode 100644 node_modules/bootstrap/scss/helpers/_visually-hidden.scss create mode 100644 node_modules/bootstrap/scss/helpers/_vr.scss create mode 100644 node_modules/bootstrap/scss/mixins/_alert.scss create mode 100644 node_modules/bootstrap/scss/mixins/_backdrop.scss create mode 100644 node_modules/bootstrap/scss/mixins/_banner.scss create mode 100644 node_modules/bootstrap/scss/mixins/_border-radius.scss create mode 100644 node_modules/bootstrap/scss/mixins/_box-shadow.scss create mode 100644 node_modules/bootstrap/scss/mixins/_breakpoints.scss create mode 100644 node_modules/bootstrap/scss/mixins/_buttons.scss create mode 100644 node_modules/bootstrap/scss/mixins/_caret.scss create mode 100644 node_modules/bootstrap/scss/mixins/_clearfix.scss create mode 100644 node_modules/bootstrap/scss/mixins/_color-scheme.scss create mode 100644 node_modules/bootstrap/scss/mixins/_container.scss create mode 100644 node_modules/bootstrap/scss/mixins/_deprecate.scss create mode 100644 node_modules/bootstrap/scss/mixins/_forms.scss create mode 100644 node_modules/bootstrap/scss/mixins/_gradients.scss create mode 100644 node_modules/bootstrap/scss/mixins/_grid.scss create mode 100644 node_modules/bootstrap/scss/mixins/_image.scss create mode 100644 node_modules/bootstrap/scss/mixins/_list-group.scss create mode 100644 node_modules/bootstrap/scss/mixins/_lists.scss create mode 100644 node_modules/bootstrap/scss/mixins/_pagination.scss create mode 100644 node_modules/bootstrap/scss/mixins/_reset-text.scss create mode 100644 node_modules/bootstrap/scss/mixins/_resize.scss create mode 100644 node_modules/bootstrap/scss/mixins/_table-variants.scss create mode 100644 node_modules/bootstrap/scss/mixins/_text-truncate.scss create mode 100644 node_modules/bootstrap/scss/mixins/_transition.scss create mode 100644 node_modules/bootstrap/scss/mixins/_utilities.scss create mode 100644 node_modules/bootstrap/scss/mixins/_visually-hidden.scss create mode 100644 node_modules/bootstrap/scss/utilities/_api.scss create mode 100644 node_modules/bootstrap/scss/vendor/_rfs.scss diff --git a/node_modules/.package-lock.json b/node_modules/.package-lock.json index 74ad7bb01..6179753e0 100644 --- a/node_modules/.package-lock.json +++ b/node_modules/.package-lock.json @@ -3,6 +3,16 @@ "lockfileVersion": 2, "requires": true, "packages": { + "node_modules/@popperjs/core": { + "version": "2.11.6", + "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.6.tgz", + "integrity": "sha512-50/17A98tWUfQ176raKiOGXuYpLyyVMkxxG6oylzL3BPOlA6ADGdK7EYunSa4I064xerltq9TGXs8HmOk5E+vw==", + "peer": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/popperjs" + } + }, "node_modules/@types/node": { "version": "18.8.2", "resolved": "https://registry.npmjs.org/@types/node/-/node-18.8.2.tgz", @@ -96,6 +106,24 @@ "npm": "1.2.8000 || >= 1.4.16" } }, + "node_modules/bootstrap": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-5.2.2.tgz", + "integrity": "sha512-dEtzMTV71n6Fhmbg4fYJzQsw1N29hJKO1js5ackCgIpDcGid2ETMGC6zwSYw09v05Y+oRdQ9loC54zB1La3hHQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/twbs" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/bootstrap" + } + ], + "peerDependencies": { + "@popperjs/core": "^2.11.6" + } + }, "node_modules/bson": { "version": "4.7.0", "resolved": "https://registry.npmjs.org/bson/-/bson-4.7.0.tgz", diff --git a/node_modules/@popperjs/core/LICENSE.md b/node_modules/@popperjs/core/LICENSE.md new file mode 100644 index 000000000..0370c4581 --- /dev/null +++ b/node_modules/@popperjs/core/LICENSE.md @@ -0,0 +1,20 @@ +The MIT License (MIT) + +Copyright (c) 2019 Federico Zivolo + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/node_modules/@popperjs/core/README.md b/node_modules/@popperjs/core/README.md new file mode 100644 index 000000000..53be7b9d8 --- /dev/null +++ b/node_modules/@popperjs/core/README.md @@ -0,0 +1,376 @@ + +

      + Popper +

      + +
      +

      Tooltip & Popover Positioning Engine

      +
      + +

      + + npm version + + + npm downloads per month (popper.js + @popperjs/core) + + + Rolling Versions + +

      + +
      + + +**Positioning tooltips and popovers is difficult. Popper is here to help!** + +Given an element, such as a button, and a tooltip element describing it, Popper +will automatically put the tooltip in the right place near the button. + +It will position _any_ UI element that "pops out" from the flow of your document +and floats near a target element. The most common example is a tooltip, but it +also includes popovers, drop-downs, and more. All of these can be generically +described as a "popper" element. + +## Demo + +[![Popper visualized](https://i.imgur.com/F7qWsmV.jpg)](https://popper.js.org) + +## Docs + +- [v2.x (latest)](https://popper.js.org/docs/v2/) +- [v1.x](https://popper.js.org/docs/v1/) + +We've created a +[Migration Guide](https://popper.js.org/docs/v2/migration-guide/) to help you +migrate from Popper 1 to Popper 2. + +To contribute to the Popper website and documentation, please visit the +[dedicated repository](https://github.com/popperjs/website). + +## Why not use pure CSS? + +- **Clipping and overflow issues**: Pure CSS poppers will not be prevented from + overflowing clipping boundaries, such as the viewport. It will get partially + cut off or overflows if it's near the edge since there is no dynamic + positioning logic. When using Popper, your popper will always be positioned in + the right place without needing manual adjustments. +- **No flipping**: CSS poppers will not flip to a different placement to fit + better in view if necessary. While you can manually adjust for the main axis + overflow, this feature cannot be achieved via CSS alone. Popper automatically + flips the tooltip to make it fit in view as best as possible for the user. +- **No virtual positioning**: CSS poppers cannot follow the mouse cursor or be + used as a context menu. Popper allows you to position your tooltip relative to + any coordinates you desire. +- **Slower development cycle**: When pure CSS is used to position popper + elements, the lack of dynamic positioning means they must be carefully placed + to consider overflow on all screen sizes. In reusable component libraries, + this means a developer can't just add the component anywhere on the page, + because these issues need to be considered and adjusted for every time. With + Popper, you can place your elements anywhere and they will be positioned + correctly, without needing to consider different screen sizes, layouts, etc. + This massively speeds up development time because this work is automatically + offloaded to Popper. +- **Lack of extensibility**: CSS poppers cannot be easily extended to fit any + arbitrary use case you may need to adjust for. Popper is built with + extensibility in mind. + +## Why Popper? + +With the CSS drawbacks out of the way, we now move on to Popper in the +JavaScript space itself. + +Naive JavaScript tooltip implementations usually have the following problems: + +- **Scrolling containers**: They don't ensure the tooltip stays with the + reference element while scrolling when inside any number of scrolling + containers. +- **DOM context**: They often require the tooltip move outside of its original + DOM context because they don't handle `offsetParent` contexts. +- **Compatibility**: Popper handles an incredible number of edge cases regarding + different browsers and environments (mobile viewports, RTL, scrollbars enabled + or disabled, etc.). Popper is a popular and well-maintained library, so you + can be confident positioning will work for your users on any device. +- **Configurability**: They often lack advanced configurability to suit any + possible use case. +- **Size**: They are usually relatively large in size, or require an ancient + jQuery dependency. +- **Performance**: They often have runtime performance issues and update the + tooltip position too slowly. + +**Popper solves all of these key problems in an elegant, performant manner.** It +is a lightweight ~3 kB library that aims to provide a reliable and extensible +positioning engine you can use to ensure all your popper elements are positioned +in the right place. + +When you start writing your own popper implementation, you'll quickly run into +all of the problems mentioned above. These widgets are incredibly common in our +UIs; we've done the hard work figuring this out so you don't need to spend hours +fixing and handling numerous edge cases that we already ran into while building +the library! + +Popper is used in popular libraries like Bootstrap, Foundation, Material UI, and +more. It's likely you've already used popper elements on the web positioned by +Popper at some point in the past few years. + +Since we write UIs using powerful abstraction libraries such as React or Angular +nowadays, you'll also be glad to know Popper can fully integrate with them and +be a good citizen together with your other components. Check out `react-popper` +for the official Popper wrapper for React. + +## Installation + +### 1. Package Manager + +```bash +# With npm +npm i @popperjs/core + +# With Yarn +yarn add @popperjs/core +``` + +### 2. CDN + +```html + + + + + +``` + +### 3. Direct Download? + +Managing dependencies by "directly downloading" them and placing them into your +source code is not recommended for a variety of reasons, including missing out +on feat/fix updates easily. Please use a versioning management system like a CDN +or npm/Yarn. + +## Usage + +The most straightforward way to get started is to import Popper from the `unpkg` +CDN, which includes all of its features. You can call the `Popper.createPopper` +constructor to create new popper instances. + +Here is a complete example: + +```html + +Popper example + + + + + + + + +``` + +Visit the [tutorial](https://popper.js.org/docs/v2/tutorial/) for an example of +how to build your own tooltip from scratch using Popper. + +### Module bundlers + +You can import the `createPopper` constructor from the fully-featured file: + +```js +import { createPopper } from '@popperjs/core'; + +const button = document.querySelector('#button'); +const tooltip = document.querySelector('#tooltip'); + +// Pass the button, the tooltip, and some options, and Popper will do the +// magic positioning for you: +createPopper(button, tooltip, { + placement: 'right', +}); +``` + +All the modifiers listed in the docs menu will be enabled and "just work", so +you don't need to think about setting Popper up. The size of Popper including +all of its features is about 5 kB minzipped, but it may grow a bit in the +future. + +#### Popper Lite (tree-shaking) + +If bundle size is important, you'll want to take advantage of tree-shaking. The +library is built in a modular way to allow to import only the parts you really +need. + +```js +import { createPopperLite as createPopper } from '@popperjs/core'; +``` + +The Lite version includes the most necessary modifiers that will compute the +offsets of the popper, compute and add the positioning styles, and add event +listeners. This is close in bundle size to pure CSS tooltip libraries, and +behaves somewhat similarly. + +However, this does not include the features that makes Popper truly useful. + +The two most useful modifiers not included in Lite are `preventOverflow` and +`flip`: + +```js +import { + createPopperLite as createPopper, + preventOverflow, + flip, +} from '@popperjs/core'; + +const button = document.querySelector('#button'); +const tooltip = document.querySelector('#tooltip'); + +createPopper(button, tooltip, { + modifiers: [preventOverflow, flip], +}); +``` + +As you make more poppers, you may be finding yourself needing other modifiers +provided by the library. + +See [tree-shaking](https://popper.js.org/docs/v2/performance/#tree-shaking) for more +information. + +## Distribution targets + +Popper is distributed in 3 different versions, in 3 different file formats. + +The 3 file formats are: + +- `esm` (works with `import` syntax — **recommended**) +- `umd` (works with ` +
      +
      +
      +
      +
      +
      + + -

      Email

      \ No newline at end of file From bd6fddd895546025225d74c6a2c0a3968fe2cd91 Mon Sep 17 00:00:00 2001 From: Othniel9 Date: Tue, 11 Oct 2022 22:08:45 -0400 Subject: [PATCH 30/42] profile-card done --- .gitignore | 1 + .idea/final_project.iml | 1 + .idea/jsLibraryMappings.xml | 6 +++++ public/matching.js | 46 +++++++++++++++++++++++++++---------- public/profileCard.css | 42 +++++++++++++++++++++++++++++++++ public/style.css | 4 +++- views/matching.html | 13 ++++++----- 7 files changed, 94 insertions(+), 19 deletions(-) create mode 100644 .gitignore create mode 100644 .idea/jsLibraryMappings.xml create mode 100644 public/profileCard.css diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000..40b878db5 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +node_modules/ \ No newline at end of file diff --git a/.idea/final_project.iml b/.idea/final_project.iml index 0c8867d7e..ddfa7d9d9 100644 --- a/.idea/final_project.iml +++ b/.idea/final_project.iml @@ -8,5 +8,6 @@ + \ No newline at end of file diff --git a/.idea/jsLibraryMappings.xml b/.idea/jsLibraryMappings.xml new file mode 100644 index 000000000..b84383514 --- /dev/null +++ b/.idea/jsLibraryMappings.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/public/matching.js b/public/matching.js index 6cc9ebbdf..dbed0b8c5 100644 --- a/public/matching.js +++ b/public/matching.js @@ -4,6 +4,7 @@ window.onload = function() { let user = null; let profile = null; let age = null; + let count = 0; // fetch('/test', { // method: 'GET', @@ -40,26 +41,47 @@ window.onload = function() { .then(response => (response.json())) .then((json) => { json.forEach((item) => { - const img = new Image(); - img.src = item.pic; - img.style.width = "150px"; - img.style.height = "150px"; - img.style.borderRadius = "50%"; - img.style.backgroundClip = "padding-box"; - img.style.backgroundPosition = "center"; - document.body.appendChild(img); - let name = document.createElement("p"); - name.innerHTML = item.firstName; - document.body.appendChild(name); + if(item.user != user){ if ((( item.age >= (profile.youngest)) && (item.age <= (profile.oldest))) && (( profile.age >= (item.youngest)) && (profile.age <= (item.oldest)))){ if (profile.status === item.status){ - console.log(item); + let row = document.getElementById("row"); + + let col = document.createElement("div"); + col.className = "col-lg-4"; + + let card = document.createElement("div"); + card.className = "card"; + + let name = document.createElement("h1"); + name.innerHTML = item.firstName + " " + item.lastName; + + let username = document.createElement("p"); + username.innerHTML = item.user; + + let age = document.createElement("p"); + age.innerHTML = item.age; + let button = document.createElement("p"); + button.innerHTML = "

      " + const img = new Image(); + img.src = item.pic; + img.style.width = "150px"; + img.style.height = "150px"; + img.style.borderRadius = "50%"; + img.style.backgroundClip = "padding-box"; + img.style.backgroundPosition = "center"; + card.appendChild(img); + card.appendChild(name); + card.appendChild(username); + card.appendChild(age); + card.appendChild(button); + col.appendChild(card); + row.appendChild(col); } } } diff --git a/public/profileCard.css b/public/profileCard.css new file mode 100644 index 000000000..1d774aa58 --- /dev/null +++ b/public/profileCard.css @@ -0,0 +1,42 @@ +.card { + box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); + max-width: 350px; + margin: auto; + background: white; + + text-align: center; + border-radius: 10%; +} + +.title { + color: grey; + font-size: 18px; +} + +button { + border: none; + outline: 0; + display: inline-block; + padding: 8px; + color: white; + background-color: #000; + text-align: center; + cursor: pointer; + width: 50%; + font-size: 18px; + margin:auto; + +} + +a { + text-decoration: none; + font-size: 22px; + color: black; +} + +button:hover, a:hover { + opacity: 0.7; +} +p{ + font-size: 20px; +} \ No newline at end of file diff --git a/public/style.css b/public/style.css index 939cba12c..b08ca1bbb 100644 --- a/public/style.css +++ b/public/style.css @@ -127,4 +127,6 @@ p { @media screen and (max-height: 450px) { .sidenav {padding-top: 15px;} .sidenav a {font-size: 18px;} -} \ No newline at end of file +} + +/*Profile Card Css*/ diff --git a/views/matching.html b/views/matching.html index fca4f60bb..013952b23 100644 --- a/views/matching.html +++ b/views/matching.html @@ -3,16 +3,17 @@ Title - + + -
      -
      -
      -
      -
      +
      +

      Matching Page

      +
      +
      + From d4d118c625b10db8d826c4d2d0b5f8c5cbb23352 Mon Sep 17 00:00:00 2001 From: Livingwell088 <58043224+Livingwell088@users.noreply.github.com> Date: Wed, 12 Oct 2022 10:01:22 -0400 Subject: [PATCH 31/42] View profile page done --- public/matching.js | 16 ++ public/viewProfile.js | 99 ++++++++ server.js | 470 ++++++++++++++++++++++++++------------ views/authentication.html | 26 --- views/userProfile.html | 47 ++++ 5 files changed, 485 insertions(+), 173 deletions(-) create mode 100644 public/viewProfile.js delete mode 100644 views/authentication.html create mode 100644 views/userProfile.html diff --git a/public/matching.js b/public/matching.js index dbed0b8c5..4524a240b 100644 --- a/public/matching.js +++ b/public/matching.js @@ -40,6 +40,7 @@ window.onload = function() { }) .then(response => (response.json())) .then((json) => { + console.log() json.forEach((item) => { if(item.user != user){ @@ -65,6 +66,17 @@ window.onload = function() { age.innerHTML = item.age; let button = document.createElement("p"); + button.onclick = function() { + fetch('/viewProfile', { + method: 'POST', + headers: {'Content-Type': 'application/json'}, + body: JSON.stringify(item), + }) + .then(response => { + window.location.href = "./userProfile.html" + }); + } + // viewProfile(item); button.innerHTML = "

      " const img = new Image(); @@ -87,4 +99,8 @@ window.onload = function() { } }) }) +} + +function viewProfile(match) { + } \ No newline at end of file diff --git a/public/viewProfile.js b/public/viewProfile.js new file mode 100644 index 000000000..cfec07dc9 --- /dev/null +++ b/public/viewProfile.js @@ -0,0 +1,99 @@ +let user = null; +window.onload = function () { + + fetch('/getViewingProfile', { + method: 'GET', + headers: {'Content-Type': 'application/json'} + }) + .then(response => response.json()) + .then(response => { + console.log(response); + + const img = new Image(); + img.src = response.pic; + img.style.width = "150px"; + img.style.height = "auto"; + document.getElementById("profilePic").lastElementChild; + document.getElementById("profilePic").appendChild(img); + + let profileList = document.createElement("ul"); + let fPList = document.createElement("ul"); + let cPList = document.createElement("ul"); + + const fName = document.createElement("li"); + const fullName = "Name: " + response.firstName + " " + response.lastName; + fName.innerHTML = fullName; + profileList.appendChild(fName); + + // const addressItem = document.createElement("li"); + // const address = "Address: " + response.address; + // addressItem.innerHTML = address; + // profileList.appendChild(addressItem); + + const emailItem = document.createElement("li"); + const email = "Email: " + response.email; + emailItem.innerHTML = email; + profileList.appendChild(emailItem); + + const ageItem = document.createElement("li"); + const age = "Age: " + response.age; + ageItem.innerHTML = age; + profileList.appendChild(ageItem); + + const hobbiesItem = document.createElement("li"); + const hobbies = "Hobbies: " + response.hobbies; + hobbiesItem.innerHTML = hobbies; + profileList.appendChild(hobbiesItem); + + const statusItem = document.createElement("li"); + const statusDescription = "Status: " + response.status; + statusItem.innerHTML = statusDescription; + profileList.appendChild(statusItem); + + let github = document.getElementById("githubHeader"); + github.href = ("https://www.github.com/" + response.user); + + // const youngestItem = document.createElement("li"); + // const youngestDescription = "Youngest: " + response.youngest; + // youngestItem.innerHTML = youngestDescription; + // profileList.appendChild(youngestItem); + + // const oldestItem = document.createElement("li"); + // const oldestDescription = "Oldest: " + response.oldest; + // oldestItem.innerHTML = oldestDescription; + // profileList.appendChild(oldestItem); + + // const distanceItem = document.createElement("li"); + // const distanceDescription = "Distance: " + response.distance; + // distanceItem.innerHTML = distanceDescription; + // profileList.appendChild(distanceItem); + + const firstProjectItem = document.createElement("li"); + const firstProjectDesc = "Name of First Project: " + response.firstProject; + firstProjectItem.innerHTML = firstProjectDesc; + fPList.appendChild(firstProjectItem); + + const currentProjectItem = document.createElement("li"); + const currentProject = "Name of Current Project: " + response.currentProject; + currentProjectItem.innerHTML = currentProject; + cPList.appendChild(currentProjectItem); + + document.getElementById("profileDesc").lastElementChild; + document.getElementById("profileDesc").appendChild(profileList); + document.getElementById("firstProjectList").lastElementChild; + document.getElementById("firstProjectList").appendChild(fPList); + document.getElementById("currentProjectList").lastElementChild; + document.getElementById("currentProjectList").appendChild(cPList); + }) + + + +} + +function openNav() { + document.getElementById("sideNavBar").style.width = "250px"; +} + +function closeNav() { + document.getElementById("sideNavBar").style.width = "0px"; +} \ No newline at end of file diff --git a/server.js b/server.js index 3e0d45f06..2263f3dcc 100644 --- a/server.js +++ b/server.js @@ -15,172 +15,337 @@ app.use( cookie({ const current = [ + // { + // firstName: "Ben", + // lastName: "Jamin", + // address: "123 Banana Road", + // email: "barjam@att.net", + // age: "19", + // hobbies: "DJ-ing, gaming, coding", + // firstProject: "Visualizer for music", + // currentProject: "Decoder for music", + // status: "mingle", + // youngest: "18", + // oldest: "21", + // distance: "20", + // user: "benJamin4DaBananas", + // pic: "https://unsplash.com/photos/kfN-BBbWTWo" + // }, + // { + // firstName: "Winston", + // lastName: "Tesla", + // address: "246 Overwatch Boulevard", + // email: "webteam@icloud.com", + // age: "25", + // hobbies: "Climbing, Coding", + // firstProject: "Team Analyzer Based on Enneagram Types", + // currentProject: "Climbing Path Simulator", + // status: "mingle", + // youngest: "21", + // oldest: "28", + // distance: "300", + // user: "winstonTinSpace", + // pic: "https://unsplash.com/photos/pAtA8xe_iVM" + // }, + // { + // firstName: "Sunwoo", + // lastName: "Han", + // address: "324 Haven Avenue", + // email: "shang@yahoo.com", + // age: "23", + // hobbies: "Cooking, Skydiving, Coding", + // firstProject: "Cooking Simulator", + // currentProject: "Health Application for Skydivers", + // status: "date", + // youngest: "22", + // oldest: "26", + // distance: "4000", + // user: "jettMommy30", + // pic: "https://unsplash.com/photos/dE6c9RZoyL8" + // }, + // { + // firstName: "Zyanya", + // lastName: "Mondragón", + // address: "389 Ascent Street", + // email: "empress40@me.com", + // age: "24", + // hobbies: "Axe Throwing, Spending Time with Family, Coding", + // firstProject: "Family Tree Analyzer", + // currentProject: "None", + // status: "date", + // youngest: "21", + // oldest: "26", + // distance: "2000", + // user: "empress1997", + // pic: "https://unsplash.com/photos/mEZ3PoFGs_k" + // }, + // { + // firstName: "Shaun", + // lastName: "Chi", + // address: "130 Ta Lo Circle", + // email: "10rings@me.com", + // age: "25", + // hobbies: "Karaoke, Martial Arts, Coding", + // firstProject: "Calculator Application", + // currentProject: "Map Editor Application for Overseas", + // status: "mingle", + // youngest: "23", + // oldest: "26", + // distance: "3000", + // user: "iFoughtALizard10", + // pic: "https://unsplash.com/photos/iFgRcqHznqg" + // } + // , + // + // + // + // { + // firstName: "Apple", + // lastName: "Bananas", + // address: "Cars Street", + // email: "applebananas@gmail.com", + // age: "32", + // hobbies: "Eating", + // firstProject: "None", + // currentProject: "None", + // status: "date", + // youngest: "18", + // oldest: "61", + // distance: "20", + // user: "applebananas", + // pic: "" + // }, + // { + // firstName: "Desk", + // lastName: "Elevator", + // address: "Falcon Avenue", + // email: "deskelevator@gmail.com", + // age: "25", + // hobbies: "Stationary and Moving", + // firstProject: "Writing Papers", + // currentProject: "Moving up and down the floors", + // status: "mingle", + // youngest: "21", + // oldest: "78", + // distance: "300", + // user: "deskelevator", + // pic: "" + // }, + // { + // firstName: "Good", + // lastName: "Hat", + // address: "Igloo Road", + // email: "goodhat@gmail.com", + // age: "98", + // hobbies: "Fashion", + // firstProject: "Building", + // currentProject: "None", + // status: "date", + // youngest: "22", + // oldest: "76", + // distance: "4000", + // user: "goodhat", + // pic: "" + // }, + // { + // firstName: "Jester", + // lastName: "Kangaroo", + // address: "Lesser Blvd", + // email: "jester", + // age: "24", + // hobbies: "Circus", + // firstProject: "Zoo", + // currentProject: "None", + // status: "date", + // youngest: "18", + // oldest: "46", + // distance: "2000", + // user: "jesterkangaroo", + // pic: "" + // }, + // { + // firstName: "Monster", + // lastName: "Nest", + // address: "Octopus Lane", + // email: "monsternest@gmail.com", + // age: "25", + // hobbies: "Sleeping", + // firstProject: "None", + // currentProject: "None", + // status: "mingle", + // youngest: "23", + // oldest: "46", + // distance: "3000", + // user: "monsternest", + // pic: "" + // } + // + // { + // firstName: "Genji", + // lastName: "Hanzo", + // address: "123 Oasis Lane", + // email: "brotherHood@gmail.com", + // age: "25", + // hobbies: "Parkour, Cleaning", + // firstProject: "DNA Analyzer with Music", + // currentProject: "A6", + // status: "date", + // youngest: "23", + // oldest: "45", + // distance: "300", + // user: "brotherhoodAtAllCost", + // pic: "" + // }, + // { + // firstName: "Callie", + // lastName: "Fraser", + // address: "201 Horseneck Road", + // email: "jc8601@burem.studio", + // age: "23", + // hobbies: "Gardening, Coding", + // firstProject: "Automated Gardener Bot", + // currentProject: "Mapping Service for Contractors", + // status: "date", + // youngest: "21", + // oldest: "35", + // distance: "500", + // user: "cf2101", + // pic: "" + // }, + // { + // firstName: "Ivan", + // lastName: "Patel", + // address: "2402 Freight Boulevard", + // email: "denisratmir@hotmail.red", + // age: "35", + // hobbies: "Painting", + // firstProject: "Paint by Code", + // currentProject: "Coding Canvases", + // status: "mingle", + // youngest: "27", + // oldest: "50", + // distance: "240", + // user: "coastingfromcoasttocoast", + // pic: "" + // }, + // { + // firstName: "Mario", + // lastName: "Mario", + // address: "1209 Rainbow Road", + // email: "itsAMeMario@rainbow.co", + // age: "28", + // hobbies: "Gaming, Coding, Plumbing", + // firstProject: "Nighttime Sleep Code", + // currentProject: "Saving Princess Peach", + // status: "mingle", + // youngest: "25", + // oldest: "36", + // distance: "8000", + // user: "mushroomKing", + // pic: "" + // }, + // { + // firstName: "Arda", + // lastName: "Wilcox", + // address: "340 San Diego Drive", + // email: "sravatt@crunchcompass.com", + // age: "30", + // hobbies: "Skiing", + // firstProject: "A3", + // currentProject: "Crypto-Mining Services", + // status: "dating", + // youngest: "25", + // oldest: "40", + // distance: "5000", + // user: "crypto4DaIce", + // pic: "" + // }, { - firstName: "Ben", - lastName: "Jamin", - address: "123 Banana Road", - email: "barjam@att.net", - age: "19", - hobbies: "DJ-ing, gaming, coding", - firstProject: "Visualizer for music", - currentProject: "Decoder for music", - status: "mingle", - youngest: "18", - oldest: "21", + firstName: "Joseph", + lastName: "Butler", + address: "125 Avenue Avenue", + email: "jb@gmail.com", + age: "40", + hobbies: "Read, Eat, Kayak", + firstProject: "A4", + currentProject: "A2", + status: "date", + youngest: "27", + oldest: "35", distance: "20", - user: "benJamin4DaBananas", - pic: "https://unsplash.com/photos/kfN-BBbWTWo" - }, + user: "JB", + pic: "" + } + , { - firstName: "Winston", - lastName: "Tesla", - address: "246 Overwatch Boulevard", - email: "webteam@icloud.com", - age: "25", - hobbies: "Climbing, Coding", - firstProject: "Team Analyzer Based on Enneagram Types", - currentProject: "Climbing Path Simulator", + firstName: "Nathan", + lastName: "Joseph", + address: "1 Queens Street", + email: "natjo@wpi.com", + age: "18", + hobbies: "Boxing, Football", + firstProject: "CoffeeMachine", + currentProject: "ElectricMachine", status: "mingle", - youngest: "21", - oldest: "28", - distance: "300", - user: "winstonTinSpace", - pic: "https://unsplash.com/photos/pAtA8xe_iVM" - }, + youngest: "25", + oldest: "30", + distance: "10", + user: "Nat", + pic: "" + }, { - firstName: "Sunwoo", - lastName: "Han", - address: "324 Haven Avenue", - email: "shang@yahoo.com", + firstName: "Adolf", + lastName: "Maagee", + address: "23 Brent st", + email: "mike@yeet.com", age: "23", - hobbies: "Cooking, Skydiving, Coding", - firstProject: "Cooking Simulator", - currentProject: "Health Application for Skydivers", - status: "date", - youngest: "22", - oldest: "26", - distance: "4000", - user: "jettMommy30", - pic: "https://unsplash.com/photos/dE6c9RZoyL8" - }, - { - firstName: "Zyanya", - lastName: "Mondragón", - address: "389 Ascent Street", - email: "empress40@me.com", - age: "24", - hobbies: "Axe Throwing, Spending Time with Family, Coding", - firstProject: "Family Tree Analyzer", - currentProject: "None", + hobbies: "Books,Scocer,Friends", + firstProject: "Niche", + currentProject: "WorldWideWeb", status: "date", - youngest: "21", - oldest: "26", - distance: "2000", - user: "empress1997", - pic: "https://unsplash.com/photos/mEZ3PoFGs_k" - }, + youngest: "18", + oldest: "50", + distance: "5", + user: "maadolf", + pic: "" }, + { - firstName: "Shaun", - lastName: "Chi", - address: "130 Ta Lo Circle", - email: "10rings@me.com", - age: "25", - hobbies: "Karaoke, Martial Arts, Coding", - firstProject: "Calculator Application", - currentProject: "Map Editor Application for Overseas", + firstName: "Yakuza", + lastName: "Shazam", + address: "55 Akon st", + email: "Yaksha@gmail.com", + age: "26", + hobbies: "Football,Drinking", + firstProject: "The Don", + currentProject: "DoomSlayer", status: "mingle", - youngest: "23", + youngest: "26", oldest: "26", - distance: "3000", - user: "iFoughtALizard10", - pic: "https://unsplash.com/photos/iFgRcqHznqg" - } + distance: "10", + user: "Yak", + pic: "" } , - - - { - firstName: "Apple", - lastName: "Bananas", - address: "Cars Street", - email: "applebananas@gmail.com", - age: "32", - hobbies: "Eating", + firstName: "Kwame", + lastName: "Despite", + address: "1 YouTube Avenue", + email: "kd@gmail.com", + age: "45", + hobbies: "Love,Family", firstProject: "None", currentProject: "None", status: "date", youngest: "18", - oldest: "61", + oldest: "50", distance: "20", - user: "applebananas", - pic: "" - }, - { - firstName: "Desk", - lastName: "Elevator", - address: "Falcon Avenue", - email: "deskelevator@gmail.com", - age: "25", - hobbies: "Stationary and Moving", - firstProject: "Writing Papers", - currentProject: "Moving up and down the floors", - status: "mingle", - youngest: "21", - oldest: "78", - distance: "300", - user: "deskelevator", - pic: "" - }, - { - firstName: "Good", - lastName: "Hat", - address: "Igloo Road", - email: "goodhat@gmail.com", - age: "98", - hobbies: "Fashion", - firstProject: "Building", - currentProject: "None", - status: "date", - youngest: "22", - oldest: "76", - distance: "4000", - user: "goodhat", - pic: "" - }, - { - firstName: "Jester", - lastName: "Kangaroo", - address: "Lesser Blvd", - email: "jester", - age: "24", - hobbies: "Circus", - firstProject: "Zoo", - currentProject: "None", - status: "date", - youngest: "18", - oldest: "46", - distance: "2000", - user: "jesterkangaroo", - pic: "" - }, - { - firstName: "Monster", - lastName: "Nest", - address: "Octopus Lane", - email: "monsternest@gmail.com", - age: "25", - hobbies: "Sleeping", - firstProject: "None", - currentProject: "None", - status: "mingle", - youngest: "23", - oldest: "46", - distance: "3000", - user: "monsternest", - pic: "" - } + user: "Kwams", + pic: "" } + + ] +let viewing = null; + const clientId = '903729e701c50a0a540c'; const clientSecret = '11c4d32e3febd2e660acae7b806438ff3c44384f'; @@ -265,6 +430,17 @@ app.get('/getUser', (req, res) => { res.send(req.session.user); }) +app.post('/viewProfile', (req, res) => { + console.log(req.body); + viewing = req.body; + res.json(req.body); +}) + +app.get('/getViewingProfile', (req, res) => { + console.log(viewing); + res.json(viewing); +}) + const { MongoClient, ServerApiVersion } = require('mongodb'); const {response} = require("express"); const uri = "mongodb+srv://admin:admin@final.nhlyk4z.mongodb.net/?retryWrites=true&w=majority"; diff --git a/views/authentication.html b/views/authentication.html deleted file mode 100644 index 14f282b9a..000000000 --- a/views/authentication.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - Welcome to GitHub(by) Express - - - - - - -

      Welcome to GitHub(by) Express!!!

      -

      Welcome to the newest social media platform to get to know other coders and start new bonds and relationships.

      -

      Please input your login information. If you do not have an account, please create simply a new account.

      - -
      - - -
      -
      - - -
      - - - - diff --git a/views/userProfile.html b/views/userProfile.html new file mode 100644 index 000000000..90eb4d427 --- /dev/null +++ b/views/userProfile.html @@ -0,0 +1,47 @@ + + + + + Title + + + +
      + × +

      + Home + Main + Profile +
      + +
      +

      Profile

      +
      + +
      +
      +

      Here's Me

      +

      +
      +
      +

      All About Me

      +

      +
      +
      +
      +
      +

      First Project

      +

      +
      +
      +

      Current Project

      +

      +
      +
      + + + \ No newline at end of file From f14ec77b7debffbc1eab46e109f840c338457577 Mon Sep 17 00:00:00 2001 From: Livingwell088 <58043224+Livingwell088@users.noreply.github.com> Date: Wed, 12 Oct 2022 12:40:13 -0400 Subject: [PATCH 32/42] Fixed error where the onload doesnt load the cards --- public/matching.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/public/matching.js b/public/matching.js index 4524a240b..e41d2c199 100644 --- a/public/matching.js +++ b/public/matching.js @@ -1,6 +1,6 @@ -window.onload = function() { +window.onload = async function() { let user = null; let profile = null; let age = null; @@ -11,7 +11,7 @@ window.onload = function() { // headers: {'Content-Type': 'application/json'} // }) - fetch('/getUser', { + await fetch('/getUser', { method: 'GET', headers: {'Content-Type': 'application/json'} }) @@ -20,7 +20,7 @@ window.onload = function() { user = text; console.log(user); }) - fetch('/getprofile', { + await fetch('/getprofile', { method: 'GET', headers: {'Content-Type': 'application/json'} }) From c7d3c62b43410047b64dfa5fcfe2008522b063e4 Mon Sep 17 00:00:00 2001 From: Ryan Luu Date: Wed, 12 Oct 2022 16:28:14 -0400 Subject: [PATCH 33/42] sideNav fixed --- public/matching.js | 1 + public/profileCard.css | 44 ++++++++++++++++++++++++++++++++++++++++++ views/main.html | 2 +- views/matching.html | 7 +++++++ views/profile.html | 5 ++--- 5 files changed, 55 insertions(+), 4 deletions(-) diff --git a/public/matching.js b/public/matching.js index e41d2c199..dec234896 100644 --- a/public/matching.js +++ b/public/matching.js @@ -19,6 +19,7 @@ window.onload = async function() { .then(text => { user = text; console.log(user); + document.getElementById("loggedIn").innerHTML = "Logged in as: " + user; }) await fetch('/getprofile', { method: 'GET', diff --git a/public/profileCard.css b/public/profileCard.css index 1d774aa58..2c10ce9f1 100644 --- a/public/profileCard.css +++ b/public/profileCard.css @@ -39,4 +39,48 @@ button:hover, a:hover { } p{ font-size: 20px; +} + +.sidenav { + height: 100%; + width: 0; + position: fixed; + z-index: 1; + top: 0; + left: 0; + background-color: #111; + overflow-x: hidden; + transition: 0.5s; + padding-top: 60px; +} + +.sidenav a { + padding: 8px 8px 8px 32px; + text-decoration: none; + font-size: 25px; + color: #818181; + display: block; + transition: 0.3s; +} + +.sidenav p { + text-align: center; + color: #ffffff; +} + +.sidenav a:hover { + color: #f1f1f1; +} + +.sidenav .collapseBtn { + position: absolute; + top: 0; + right: 25px; + font-size: 36px; + margin-left: 50px; +} + +@media screen and (max-height: 450px) { + .sidenav {padding-top: 15px;} + .sidenav a {font-size: 18px;} } \ No newline at end of file diff --git a/views/main.html b/views/main.html index 908fb6025..1c86858cc 100644 --- a/views/main.html +++ b/views/main.html @@ -11,7 +11,7 @@

      GitHub(by) Express

      diff --git a/views/matching.html b/views/matching.html index 013952b23..1f4f40587 100644 --- a/views/matching.html +++ b/views/matching.html @@ -7,6 +7,13 @@ +
      + × +

      + Profile + Matching + Log Out +

      Matching Page

      diff --git a/views/profile.html b/views/profile.html index b6206d2aa..bf87ba069 100644 --- a/views/profile.html +++ b/views/profile.html @@ -9,9 +9,8 @@
      From 18be4682a6370ff9d2e0d719f7b861091415d265 Mon Sep 17 00:00:00 2001 From: Livingwell088 <58043224+Livingwell088@users.noreply.github.com> Date: Wed, 12 Oct 2022 18:39:05 -0400 Subject: [PATCH 34/42] Editing the profile now implemented --- public/main.js | 77 ++++++++++++++++++++++++++++++++++++++++++++++ server.js | 22 +++++++++++-- views/main.html | 15 +++++---- views/profile.html | 1 + 4 files changed, 105 insertions(+), 10 deletions(-) diff --git a/public/main.js b/public/main.js index 9f4af2279..0b90983ce 100644 --- a/public/main.js +++ b/public/main.js @@ -1,5 +1,82 @@ +window.onload = async function() { + + await fetch('/getUser', { + method: 'GET', + headers: {'Content-Type': 'application/json'} + }) + .then(response => (response.text())) + .then(text => { + user = text; + console.log(user); + document.getElementById("loggedIn").innerHTML = "Logged in as: " + user; + }) + + await fetch('/hasProfile', { + method: 'GET', + headers: {'Content-Type': 'application/json'} + }) + .then(response => response.json()) + .then(json => { + console.log(json[0]); + let current = json[0]; + if (current == null){ + let nav = document.getElementById("sideNavBar"); + + let log_Out = document.createElement("a"); + log_Out.href = "/index.html"; + log_Out.innerHTML = "Log Out"; + + nav.appendChild(log_Out); + } + else{ + + let nav = document.getElementById("sideNavBar"); + + let profile = document.createElement("a"); + profile.href = "/profile.html"; + profile.innerHTML = "Profile"; + + let matching = document.createElement("a"); + matching.href = "/matching.html"; + matching.innerHTML = "Matching"; + + let log_Out = document.createElement("a"); + log_Out.href = "/index.html"; + log_Out.innerHTML = "Log Out"; + + nav.appendChild(profile); + nav.appendChild(matching); + nav.appendChild(log_Out); + + document.getElementById("fName").value = current.firstName; + document.getElementById("lName").value = current.lastName; + document.getElementById("addr").value = current.address; + document.getElementById("email").value = current.email; + document.getElementById("ageValue").innerHTML = current.age; + document.getElementById("ageSlider").value = parseInt(current.age); + document.getElementById("hobbies").value = current.hobbies; + document.getElementById("fProject").value = current.firstProject; + document.getElementById("currProject").value = current.currentProject; + document.getElementById("yAgeRange").value = current.youngest; + document.getElementById("oAgeRange").value = current.oldest; + document.getElementById("distValue").innerHTML = current.distance; + document.getElementById("distSlider").value = parseInt(current.distance); + + if (current.status === "mingle"){ + console.log("ming house"); + document.getElementById("mingleStatus").checked = true; + } + else{ + console.log("NOt ming house"); + document.getElementById("toDateStatus").checked = true; + } + } + }) +} + + const form = document.forms[0]; form.onsubmit = function(event) { diff --git a/server.js b/server.js index 2263f3dcc..b843341b4 100644 --- a/server.js +++ b/server.js @@ -417,8 +417,22 @@ app.post('/submit', (req, res) => { newLog.user = req.session.user; newLog.pic = req.session.pic; console.log(collection); - client.db("Final").collection("profiles").insertOne(req.body).then(result => { - res.redirect("/profile.html"); + + client.db("Final").collection("profiles").find({user: req.session.user}).toArray(function (err, result) { + if (err) throw err; + if (result.length > 0) { + console.log(newLog); + client.db("Final").collection("profiles").updateOne( + {user: req.session.user}, + { $set:{ firstName: newLog.firstName, lastName: newLog.address, age: newLog.age, hobbies: newLog.hobbies, firstProject: newLog.firstProject, currentProject: newLog.currentProject, status: newLog.status, youngest: newLog.youngest, oldest: newLog.oldest, distance: newLog.distance}}) + .then( result => res.redirect("/profile.html") ) + + + } else { + client.db("Final").collection("profiles").insertOne(req.body).then(result => { + res.redirect("/profile.html"); + }) + } }) }) @@ -441,6 +455,10 @@ app.get('/getViewingProfile', (req, res) => { res.json(viewing); }) +app.get('/hasProfile', (req, res) => { + (client.db("Final").collection("profiles").find({user: req.session.user}).toArray()).then(result => res.json(result)); +}) + const { MongoClient, ServerApiVersion } = require('mongodb'); const {response} = require("express"); const uri = "mongodb+srv://admin:admin@final.nhlyk4z.mongodb.net/?retryWrites=true&w=majority"; diff --git a/views/main.html b/views/main.html index 2746ee25f..36ddbceba 100644 --- a/views/main.html +++ b/views/main.html @@ -8,13 +8,12 @@

      GitHub(by) Express

      +
      + × +

      +
      + -
      - × -

      - Profile -
      -

      Personal Information

      @@ -42,10 +41,10 @@

      Tell us about yourself!




      Mingle or Looking to Date?

      - + - +

      diff --git a/views/profile.html b/views/profile.html index 1120fbebd..49bcaa7e8 100644 --- a/views/profile.html +++ b/views/profile.html @@ -11,6 +11,7 @@

      Profile Matching + Log Out
      From 9d46e394fdc9d77bba5b7587754925811d241e43 Mon Sep 17 00:00:00 2001 From: Livingwell088 <58043224+Livingwell088@users.noreply.github.com> Date: Thu, 13 Oct 2022 11:13:37 -0400 Subject: [PATCH 35/42] Changed Edit --- server.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server.js b/server.js index b843341b4..9c850f263 100644 --- a/server.js +++ b/server.js @@ -424,7 +424,7 @@ app.post('/submit', (req, res) => { console.log(newLog); client.db("Final").collection("profiles").updateOne( {user: req.session.user}, - { $set:{ firstName: newLog.firstName, lastName: newLog.address, age: newLog.age, hobbies: newLog.hobbies, firstProject: newLog.firstProject, currentProject: newLog.currentProject, status: newLog.status, youngest: newLog.youngest, oldest: newLog.oldest, distance: newLog.distance}}) + { $set:{ firstName: newLog.firstName, lastName: newLog.lastName, address: newLog.address, age: newLog.age, hobbies: newLog.hobbies, firstProject: newLog.firstProject, currentProject: newLog.currentProject, status: newLog.status, youngest: newLog.youngest, oldest: newLog.oldest, distance: newLog.distance}}) .then( result => res.redirect("/profile.html") ) From bef64c233c260195b1bd2ef8f313eb42c1b2def8 Mon Sep 17 00:00:00 2001 From: Othniel9 Date: Thu, 13 Oct 2022 14:09:42 -0400 Subject: [PATCH 36/42] Edits and styling done --- public/background.png | Bin 0 -> 856122 bytes public/css.css | 25 +++++++++++++++++++++ public/profile.js | 10 +++++++-- public/profileCard.css | 6 ++++- public/style.css | 11 +++++---- views/index.html | 49 ++++++++++++++++++++++++++++++++++++----- 6 files changed, 86 insertions(+), 15 deletions(-) create mode 100644 public/background.png create mode 100644 public/css.css diff --git a/public/background.png b/public/background.png new file mode 100644 index 0000000000000000000000000000000000000000..5297d9fdebe21078501d2318b3704c1457cbe738 GIT binary patch literal 856122 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

      $buaCI#-KnE^GggMbm^z0aueRaO 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%0A!p8D~4z>_*Xw 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

      Z17W{CYkk_G*T;cc?9bj&cKrw?W0 zqA5H&zlpy;Il{fmTlnnZey(3_;C5Rhf4;nnFSpcEWc48TH?OnJ$-+)&1MOo+adz@x z9>mV%cGe7zmyh8<>w9b!Gwe=h8aDNycGK(BH20>u(TS=$dkk!Om01;K*~y3g`{Y9< z8yTpq(@|CLOl5r^D(jr6sB@sQrVo`hy{W8npt7nL73ICCsOYK4Ms>xT)K)l9SJ|7o z%0ARq^`^S6HN}cr19Ef1= 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 wTF#jkCC%}X|a^< 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%0AIJCN@{kUk8qk)5{ku}wu`9!M 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 t804z90AQF;UGA_RHM4>&5at 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

        a9lBcgHPB6X$o z4bid*lUv+7x@5Gq321xmL~Dx!?JZ7F2S;z4guXTjz0}9i;$i@yEmd^GPLNSq8N^NG z1R?|=eUA=jf0db+U$^pt~lvISW$|}N8UKIulJ_r!(s5yd<>at)|y$V8Q={<&# zy2>!r*VuW?jDU;&dkB^YLaOV+xF4jt&dE8DiW&*8swI?GN*r{jFg$;4tsU)+PR?hH zcB+`})vz$2W42qyY>&h)#(ckZZGOnW!jK2c!)`3~Yk1SI9Ba8x#v-X-WGxRVcrzm7 z&8UKvF%_%h8rCLstWO$PoieaKYiVuT#LA?O)p0l8j2c)THd$+9UaXJ%usIol%}F2D z$4#t^XjmQ;vCuDLzR!)>elO?2UMwyP1H%ACqzZ&V3M!(2?>SS3;;rFbx;(CgIGDM4Y{q0CG#{ zc^cWGbGm-|MjS5OjmL$%i5zGr7v$1iE0}&gESJZxT;3-LQX){>{S<%xk4|j9jlkh2 z9kiv20OWAj&10T4>iKTZz}q7o>>D^Z(6LAG@m9s#Lj#AOJoxymeN`;TsX zcyIFBTw0w=8>}c3Li+m2#Me(c!^h8GHGKUnF@StHv@v|VJqW`7ei&9ZoD3iHZ$!*3 z3z((jigcW7TiEnqX4Qg^(M6fzV`xD}@3a#g6Jcl`4o1tk9c_~`+9!3ij=9k|V1h=j zXq_&(AoP2@vfV&syT;>L^dVuxfX34b&Alr3j}d^-ghp*MZFZth_7xO9my!9%&dPXX z-8bbtbt3PD#MzH0w2|tS)x}d}EyG8n8)c1dJg?U9q*CEg zvBFXbk4r>;O!th>Dl`U&!WT{yy`)k>iA9eKUx;|j0eb~cOG)zINo1JGrB?N)P6o4_ zXBu*g-RyoOW$TDdRS}*b!9)4!NITzn(@i*aaQGpCiuwHA7<8nOC4YN3-Jt6+F8n6| ziL)_)$dN&C$J${;*`Y;*K@AV(qaNviJ4S#vPJ!ZeKyo|aqR_cwhfT73@hviK*#~1 zty|=P5P*;aLI6Szi1!|x-n(%5f>;9W2@Vf~7;c9Y;eZt3gy40;>9)hB+m7Ub!*s#v z7U1%TaJsGM1)mLCtPQ>g)M_pwsX#{3BNtMik}Dt~{ke$Lr*>BQa~E={gr!8}LYv1G z3Z7K!cv@}ZS&f^IPpdsBsxTuAPfv60^f_Kik2N<8y+Mm=}x(k8Mb!u+>u$X-@>C6grXo$cdCftHnJj z-^pc)iS!}u}!u^I<_sPFTjuE&F# zE)R;ER6J|a@U&6IlLiGv^)d?UMLez(SWlZI6t^gN(W>BOhlY|)9VMNrb!^x0s@;QE zuT8vc(($}O!LvFU&*~&T7T3#o-k|bzI@0;mS_wtfEZHzr9$Nh=p@WKwIwjP!%T_L@QAAyhgw|IA zCM$gSw~;dZ-|rUje@&0$An_qu&Ih67hkJMs5CY%tY={dqP<_7~CCTORgv29U%|c32 zDMB4dxO~Hdi`Put35vmun?9WS!G@E+561OCmBZl#8037AD62s^4RSds7eZlif)3hT zMbFWQ6^&>mClvF>tiAD-|FKak;Uc%W+5-wbG;oQ{_ zoVs)y-=DjM@6S*nAvq)jDK;MEBA0}qgWME?2Rf%Ch1uykXGf0K_+Gdu;L0^x+pBXQ z$cYod3?CP+2)J@fL#Q(rW_SkTl8Rt>Qem@4A~eK}*vNF$ylTVK+*i00cneb7{TZ}(;F z@2cQm`ftOr|1J_6yWx1V8IHNNNKCzn!pKq-h8APdHy?wJsc0T6Ebo<3HX!5WpoEfs z7fJ^NR18aKnAFfQ??K;^4+G0S48QSW^oUnvgI!DxrT^KySYbJ>7P6ciGY1VdHKNe<|Q#r-FeF8U5`t`dcOR zwJLbsVD(y1vp0=6vCBYCLsb~+s%dmfWLJSkn>tz*bkREAP7QtC2Ks38UaJe;?IL=q zaIjm$K#z%mZV&pqyy))=M`w$Pj%GL7n>=W(_n@WLjizch8mmmyS7~TzGB~VG8@U=9 zDXcD_uGYo5l$vTAIEzvqjLNbgRM2=>>5nKYxr+8{L41@l-Mjixo%hoZg7hK}YibiKBtx6O{h4hKfNoS5iwV!FqH zb%KQn9UJ2+HYYS}P3qX4GO#;EM;#jz3f9ME*4mha)lm^Eqaxmn2&^@FZc@U=l#Hzz z6+3e}cIOT3FS@b6Xkd3v!v36KX;#8MOUC}JYH41_-kgTrSrt1o3bvVV2F3`1W;Rw9;&yN?cQ#jp= z3s-$OcbT#!TAM0#2R`LO{SD(DXVVzx-tid+$dOV!MNr=YnyH z3KFkH;>^uhoVp&1lh>kf=0+sW-HOK98?iWjEgGk;#^B8L7@WVAhzqw9aOQd(PSBd) z>v4SD0v6h$m4NfN;&I{jeb!a#5xJYfU_xVAR8Dv~EDslh^KkB73c@^Ta74%$e)9~Q zpR%z1!Nl7S5`O(0fuG)mbNe{wKKAM7kfnn?1(qc2?FiW06FIB#_ML?HhYCJ?)bNoY z=Ci^59n|4L;x)P-RD7YF$0wEb>(2&$`AKI0`SigB0uXXQScfjomTd03vA#n~GjuGj zE0|xEFuQW3bq&+23dWWs49~mJH{(R_v;#d;cJxd+&^~5E=Y$L0Qv@YCdZs9c=>~1J zqV>D<`;=rY-7(S7<>n79n|pmcInhp;&>j&rG{w*)po~V==|1e0j>pe+;uzfj$VZMwDnF1a?b!5IiWdBl)paDM1}}JaUz&@J%>vow8H-TMA~;V*&!vv_mj# z3<#=EfF2>hh!mkmx}b*Jp!h=IjS~=_C?GOPL`;fgDOEret>aB{!HBfM9qxc9!U<2L z9o{Ghe9?ARc#MnB>3PjRwXV~1vSx##+o2kcBe`IDWf&d_ z8g+W;PRN>rMUPd(1;q$ssiqAi*|b4%J6W>F36%;6y&`vvaA~3G`Wto#Ac~SBe`Gs{ zEFH3l$j0$oIYePZE4(w9>eda~9ZV~>tU?hw`sccc^2j2hwPBR@PkAi!&3s0&i0l%{ z`p59X$vFucQOYk@xLK2q)UsJv?Y30q#p6m39#y!JU*E4w;bSLL7CHP&s0j!`iV-Tez|d+&Z{uwRoGBiWk+#?3$JKhFS`UL zsPw08$jh)nd%Bx?b%qkU-qhy>!A5Pj8@0V2)b)k4s{4GX?D3$i!vNAiEx(P@4iAbN z3>4OzcwA@Tah--owJHi~CFIwL$ggpsutCO?CI!W>b-e5_P||6lw9Cz+#{?iHuibdw zq~mG5f}&apg*74{{g1yrr)%F{FKzaqw8=n8qt32KS(A>cRtllH(b(-leLHO$Guh&8 z@AHCsSEwt6`%Ze4px9$^_o|GGr-C7bL?YytfuI{2#Ly`C)D(VAX7Y0s7StgAejZMor(fRp z@ZAp*PM+0q>b!!0-v{A`vv!=mAmiL66@k|UoWB-~Q4G(tL z-JtWGbq#x)25+8uzvsi@TOZF_`$L!%zT7?t$L4+{-fTr;b~OT1tFahaj6=^<6k5ll z&@>v0`oS1f^hDrAr-}S_7joJi$Z5ABzatDq-A=q1aG`2cVG!wD@Sa2pbSqZB%B5P$v z#@rmaA6AzQZNQqC6hI;L(J=>xMx7WN6EHdkvQ6j_2loP|_ z4h)XkFfb5?zP=Fjc88&-E0o*IskMEW+Q~bmBLI=m-zqYIv^Q(K)vBeA0_h?eYh2vX zLD`C?ddiK+Xlt=@BLpA41Rp&b273(*_Uh>GaAL5_iIHvrqkRg-`*e);nHcLaG1Bcu zKlN$6cB8k+gYHHzy6U`WuXUrn+Ksjv6CJeHw?*PVhepL{jEVyDG!E5JYeQ{CC~7K$ z+3Bb%zsJr;#jCsQew3HqVfd(P2;-g;a(y~GWpsC|=`u$rpH^@%BjeqS zjJLB2wr50av1Dvc3)q+vu|Da<`lP_e&1s3B-=0;lJFhTw94zU0yX?mMHwHewk??t0 z{6-RA`?#!t^nOWV9W2Tq?Jr2!n->{ecIRXUn~g~on^QWrrVVV*nAo22U}x5gotbd# z&PHHsDxBSujfrq94$w%MfaO6G+Y1HA&x^-*r!L~u#W0+@ZXn>SjPGwoBH)6G?=Gu2 zLyqfJ1A&*_xOB;jOGgkw@L>T6!N-5C3s*f1G4wO^%tieOKooXePM)Jx;Vzs#9fa?G z7l8hueEg69Ie<@JhTszK;`G^IoCyqP$RGeYNrj2mBXH(MIL_UQ#Q7W1Ryh4i6wY0X zLEz1JTqMWiS`1EIir^zXK7TzH7s&Cr5qJEWi?{CM>fLlMH9U7a5$EnD<6=k_F54dA zLg*u$4@t&dJsjZ~I+i{>$Gg8~;KQ%sIQ*>e`rP+B8s6>wJ#_pA9|wC9_V-*k*cb5j zK;(6~hwmkP{Gi~|M-`tx5p<}3BR_apN15S+#;?A7lJW7-iNkl+2o@dRzZbA~pkwR6 z!`ZggqXioTAq#5?=2m6Qt*V$>kukm~VQ9{Yfg=FvI|7iNae@&S7ZDE3>KL3hxNx|8 zMCX8cV}}d%omBou>u+_mba{A9Zfkc0=QwFRnpXE#w>eSKELu14H3kQ&3tt$>DO8aC zSZ3uE%E)^v^6Fj6V9^Lln;{-OfM;k+HL_Dbx zj^xDCTGugz&<0VGA3|uvlT_ZIFo;w&sG!2b+D09blp z4%lUKAsi5N0g5R>_sOts(wz(+X0!-*j07{<#jb`P6$)R1i$}Pkk_E)13W!Y;5u4^h zbczGfwCpLyg@|a86&WKSD%OSQ_}>&6>wu3S#b<{`u%Ou>D|RTVi=`59=wZ+d8%sCs zFx(E7>2bp26X5o`K-cLt^jiPx{nx(zTFrEVq__o39+_QH>KUPuLmL$r>Ml48i4|b2 z^$O*13?=F*WluYVY0iuSF#dI31R|2p0m>k9Vy+Ve6Y&fW z)cP2P$W+@u5M2*L^g}zM(&%~X+E;ia!DFgR!Oq~ z(yL~Z$FwS6yHQP}8|?%k25MfbsBKfx)S)qi_MeuRj;AHRK-$RH2&OLi2t*v0sm26f_D$Hv6Wnm>DXe_3lC6hWTQwD?$Fq2tG3dvD9?#N?^dad?u8kp{vmxw$P*|Np>m+hQ$n_w|p!^7(ll$@a;Bn)Q2RErh<*t`Q=F}BJ z0OAmnAgIX*b;aRFTR867BXBRwhag)x!fZYU5L2Uq#Rx~82F?QLq@9=yNf29<5my34H{4IA4g)_1HeR?}}h z7@hZGWFZpWli@s8P}QYd;N9lN^Vd2Gn-yd>gdn3a80n2aBCF{~JWe^;YyFu3v7FE1m(iu1oSKL;2&6*dV*4_Ad z)48_hNq`0-IANRz?+ullL1>P+pdWAI@LIsY{_aciY3x#~-eT0}_psHzIN3dN|J9^y1v@@c(513B2=w+tn=qNx{XC z90m}AkW02?{HS|SP?duHKUd=Luj%;s#|XUtBx8SD0s+Xuj*5dF`8Vx~IQT|y_XND# z7xDf;;?9nb@6{u>!vYU(FQ*1`ay|ZDpHy*(f`9-3AOJ~3K~((oMQ11E(+3%c@0@u5 z)`52iVb<}j0NS**d*HUVUhSIvGmxARS`AKH{BH@T`G>2_3y-I$n3X@VZw*YmdyMR&7)e*yBcfkB>8`R7^+! zQq%6TvKx(*r=|R@2?CI;N8+)v9}CEP>cXQJv;;!HvogU7YL~0WL2hzE{7wk1%`I;< z@QSh+^%?^RIUY}{T%h}+$CVDgH+oXz#M2rlLkPJbekX)Mq(&X^H^)HEvWkWk?KX_X2J$dmIyz>)S`!oy+-Y0s?bmee8#9u_%}Rv3nqMx0F}XpA%n3$hb{N7l z?eL{qRTO%x05zJ*{ak$GP2k~>T@dKT-;`m7>+nV!Fe5~`qeOUPWQ4~ZDPDvx&Iw$2R$Quxm_!M&2@2v8Rm9&{5T7I?Az4D=1DO?@Xu(KC zv}!M$Z#)_(hOH*9|dTa>GT1OTPGd{#pLJ&OnLykm`gWyXJ zK}1R@gGo$=je&+Bg8+mamGq}7AFWo(-`o%X*p=TYq1RcBmJ+gGi3}fwwFaIxnt0x1 z;sxKB>nN@l@uERMX|ssRRvC12-OyvO{Yl%VTKdA#)Dw<|PUgl0xt49<#FwEp(}^Og(Rba4bAjqUX5i-ERY4?1WZ zi$b@99^L}f*{kvhT62%ie>b$ngG!XBJgK_Qj;>Z6BTXI*zf>{*+=us-5An4k5AO?e zv71qdt%uJs8k>vJ)EB7oWy5tM1h;>0LkQXaKPWhT*2JlE6wXw6)ak|@A86ClxpOw$ zJK9V|Jsp(ops_1*IVez05JEsgZbxQXIg75-7#59VIYOg3YeEhOxgG=?$uW(EM0zuM6)yb(|J@&~k*a`z%Lw?x6sPQXc!jIJSw1lT;ef>{uu=Wb26{69Hw8~vl0V{A3_K~NOSWl=I2z*PKm6!NzsCk zNeKiV%TqFzW+Z-YdfJ7lNdc1+E=-I&8A8TJ?I2A}ikO~~Fgv4Qeon)}JVA&C0+87m zja$^oIbkP+oRd)(L&)%;6GH zZ51%orDCW{#z>E~t!ZLV$MlFBGov2Nj+vMnabaQ9g{5&3%M&t|$E}0q!0XlU*hzIw?5q!B{6bB_53Q7#Qx>G1R4DphMviF@IL2y}^cW)m9${zgp|V z(9rbg*|)G|oJ{k2{ai-BpahYu9ix@GdUiH4$*i ziSMp@apG1a0?xT`>WYT5mo=QfNdI4V<9r}xK`0YKc@7G$TO(Tk?C1v%zx(m`0CMu2 z$PVo3Q#TPDd>y-Q8}L8>y$65#mtjQ3IdS^j9Uj{{O|HkSC<{Ptc>kLKB!Ne=cr5GA zecp^k0CFj;09PD&xavwmn9oGh*mE5GwG11dVzBdp0_863ZHf5lFoKT+BP0fqT@i2h zq+|KPg9-ybyi@QSfapAOWo13gWBBkpBA*Tw`1SFS;6=o{11H|@J6QbqK;)o1cYf@9 zvA1vK-sppvwN0JZjZ^0km8DKC2pF4lU}T1%!-0`$7lvkBm{<@ou_W^rz?oGy|LmMt zbYpzh#L$$1?g3i&EunirLFWK%+|zghfi`b;^lNxMAfchh$pAu|s%Vo{S-pwp6$Wp0 z%6jAi>#+klMGoXWb>Q(!0aUz43n5;XODHLm7(hxYWW20W7(f_AYG}iiiLyrH7(kv@ z3n)4o-!3Sp$q*+`hdilvfK*)V#Pb>#i(#b7X|4CJcA=z3z^iHjWi=uw3r4E0b)lwC zU{|D~LFa8(h2;vep9>(+Am~VaCL{F;75|BN@YsdqM|KM$@@=@E6M}?X>Y}qDK06GF zSw|mCXSxuVDIh-G1^Tc$KEsaK%rGQm+K`YNhNN5@?&sSPksb_hdI&seVK7s|U?e)Y zs9TA0L5>i)6`XFk{qBdT3D7(WJdq|M;!K8)hy)3di87+@D~L{#k0dd8#HGrJPm>rt z5;Fvl?q`xjBxlG-O4X5+VjwxyL~@#e2M=|mq-(6yOcjX_LbX>5+b7&gh$Ho zMJVuw%M2R62ni&*9ucLmBBNE1=$xMOL&)F43IU4?Zm$I|1TYLL1R-tj2_-;b0oGfYIKO0c9LDpf(`0|gPuGQyJ-`0mS`&iCG@ig29sgVuVZ`5q5r6j>LdZ2CcZ4z> zNd*or*~utY*>NGTNPnhq^Cx9M{5cRh(&(4}bvY$E^2$^cR46E_F;Lv-M#<}Nl(&YX zyv>WsHZKRZ%c*aqRk7wUyEGoP;;cuX4^7>X+*?xH7LKadUQ{%DQQqW1S#vn+Wup(I z;szg{)q7D`Yoee^LvERh>{1z-r3$iMsYjBL^-4Y(10xs_*$w#?Kwc7XbVlG+SEQvj z?|&M>A_v4Tayq^p&GL_9(KP}P%8!(_x_RS9MZ23rZxno^O>+R>9J zqAuhP%5U7kqrj_Z^(CM&HVe|JU|bEjgP@DyxNy?Io!co03CqN-AMfMp4Ii%G_TuVw zg#pAC62k#=+Gut8f^gj5K|n%~LEu3S32nKebAlAwghfZe9*2bRd=OY9M&>bi5PZ;M zayke+{O*S#B(f{w3XTAQ3B8WO=?;4`&RtXx5O9;X$o%2VWdxi&jo+U+hclOM;7njB zLj^e*fmcPGxfqNS=kBrtLJr5bo3aQpDF1QghR)6h!3Y6}e-r4=iX4Z+f(oRk6u}f?aNlpN&kYsCv)(ma1vYO1N<|q%MVs_5TgUrpUSeUW2 zIHO>3Mg<+0rmf@5gov3*0n_7_rp8?GYjV`dkLkI&DH-$A%JF;ASf7@$HmP8B zLc!9ogr#8xi-S6gg59L~euD$l^MhW@4*GcW({#TFlf5P;dJK$r>%8`M;I)9kR`DN- zoE!qH@ga#}V{XFW?`>(y#2XfEoKhH!R>ozlPFUX;eQz|j#JP-V9osVoc4kfN&JlQ+ zI9PDw{i4ax@oCwOuWu~)RX2WFHSot(6ThyR_+`_>WtapLKW)14b;HD$bpjJh zbWYd(qSsmA;br*vdE3C(9SuKkYkza3YkYmr4eGY}d(p~i(&ud*pLbMz+S0y}j!#=8 z6CXBo94sr?Uy|`|#lXR`hMjo{GzNCKosETsdfW-VjT7gu;o=<)0jC}K?vfj4Zbu{F zjDXXZ4V=65{~thTUQU41gSQKWDwK5@hlMs0CAp(PPaVazx zSL|81A;dz6)-beEft_EUVCAhBo9_hd95}GOE*t~M-nI+-I|4f&1RwAAWxPL7SRdYL zAbotVvpyYC?!&<64<-Z1m(M0Xe=_jtqt5#HLE~2Q!}khE)N=mrt-xbkd%Je{wZG>8 zjd&gG>Nwc9oM3W;Y5B(Xj){#;gCS(;ja7U)vnXP6-i3)dC&uTUn3xk7J_t@|Olxt? z#L}i!Ryeof1{D=f%o!LOlQA%+U|>W+->{0lK@B~FDth`AboI-4-Rnd{w*z$@PSm!^ zsCliUve5*sn5FP_ZlQyf_r#8ZXAV$co1Kp;38gi(!d66SxyXf}v>1XmXwh{Rt-(EV zKxhPustul0Q9XeZ1?6_+mxXbTl$;RSK1yIhh0dhnYJv5U{D!qC5?L3S<8s>OGI8CM6i+eR6*(!nVZLx9}A$7`s6%2l5+??!Vs4gikPer z9?g%=pnF0GBB?-|K9DD+*b$yW=Qcz>v>_(lfw&yHZ*=k&*YJm7@TJ<}d0^)fZX@0S zEye{cN`w|A!=Z+8_}d}b;8emmM`3ztWJ*VLypFge1#w9-D?V94LW+#UR0a3bWZZvf zK}K>09Ys9Iw3L!9AT?V?T8@g;3>~Q%CMzw|z{6}E={ef5k{?PSC8ZLKsO*%)#H)yk z@dJj;P(olr*P>%JR!p1@5?zakB48m`L}1_`=%B}REu7_o@8~X0+);StyYApmh| zHV(RniJ=IQEYapIazg^*vjomVki$S#@b_~S5JZrY^ED)7Q$@Ur`#A;vyUNm?)j9*k^ zqNv7$!Ws`ARhh^u*N|PRBJ(8y2f>GY?1bc$tH`OKF)V8w>strpS&NAm1RNcta6Z!b zl|KXGhYf-Y5}m(nAxG!8dqaX4g_C{z_oLc2>vk>4tpMM-%Y}mt8QGs;l|y& z9^AW29UU6O1g+kU^yV^T&`REOr^2`_kgieo!yiVcz&hnZC@(@=uRIh=cW2;!R6aum zjaLzLP}YOSt_VcP^&se=JP74LB8`VgOL&6pvi^JWZI1ZwpIDZA%PiS>y2m-zj zz;|bUz^Mzjaqg1+c#P`Q`4D`6`p4tk2SEfu2#sD5U=Vze%i#wP4x|&jT#*?%=$u5a zrLUnrkdTmQgxX^9V@MQ!42{4&TNLhudU5S8h0&v67h`ehvJE$`yO5If2>ID1h}4sy zg&C+SEW&Ve32KWy*k65&cRMNAUiUD7Y_2KTS~IY{Zo!8iKxpOd+OmS>WgUwv9?UGe z`IqJB9E}f9i6#9zP|(;bp|Z_|SFf#2YbDJpUbN8Yp^Cgp7t%|EkyUXQ*;TiZSNkI# zH{8Rs=1{z74MSOn4V7JXZv1T>me4t>qJL7y(2R+ZS%Wn;qhXBP2g+{z9fS~okjSy{ zyA}i@^V1sUrc}&Ns+gTrFh1;LU?6DtXBrzNXGFx*qWIRlKdU1e2d7tu z4Xlh9SRM0Wbu0oaqv2Q{_F`$sgM|Up0+fCOQ(ZEqyA{?dj-T3pm2Y=cyc@;Ff7~5`kD`;$r^mRjL`Op1M#@`&b4SXhW*jDg) zOF2H$W50gd)j|4s&tUzsZ{pVj1HT@)`S@j5fnT3@WPT5NzmJ>hku)5<5wN!;;N7Z% zw{KMIf3HOe2OAIYcE25x7J?tnoJZhI0l&K-;CB}doTePe84;&0={S2)$GJcg7pN=b zf(K^A3u=BCM<7D{ogU8`p^%y$*!0}Iyw2Jqmj*qk@i-6;;YPFm1 z%NAfzj$~KF?zRg%TTT`|rf~cIu8h5H75h81eansa2VT6}_hE0xjqObnYwH?TR#Ysn zDBL$RyCi`?WM)ai?4rWX$ij-uqgpGQ25$>o*>qc_h06x7Bp;uWF*dDYbV6kq861|; zHzc8NKxB8MrN?m$Aa(5$>e_Tvx6mdmYt1!5$D?8=*CZ5`I8a{xxgey+<#yJS3J2E~P;~)=NVyZm zOyq7fY>Yn3Aqvy^F-XwR}h)*LPVOx zn_t~Y0?Y&f=25qYJ5GhqyBIk&+>?BSP*7 zxg`lnI${$vM8{ds;Rg>tbi~FRh)Xb8bd8|Ia!$x85iRhDlo(8+q9sH|iHL}l7)HEa zD>Fi)T?8Q%S{F1soHA|T3WFa)jsb)N+1XaE;(nfp2L&2Z9~($3H1V*=jTCBgd~71E z(2a*h9zN1Ff)fISglr31=<6On(Rg%nn1~shLbJ?Hv8-R2x>drey;J0B%9zEx}R z28ZGr6VGaC1DMJIeagucR2s;yFp*QPGkB2uK_gfM9DeA?qxr{b6$LdKk6w}c@wi^W zlO`R{T68>bB?uw8`7yx_}yI1gd(%QPJ&2S*L;0 zb`5218p_*g{hzf8u%<)jz7VT`NZ~vP{asKO3eBQYmx;fKv1`DMt|1dWqi*z!8a%_= zF(9I&*M+Wb5d(cXriP<1HyV%0zF15)M`G?(B&LgecmC2^3#xNco2F;#Pu^O zu3w17?JFs`bv+4JFGu0>1r67)sJM6AfGx-eJKc2O@-TQv&ilL-i%J4b^&yX7QO5_J zQ-L6jW|130c@RGAmzjr{$1tGVCTn_>hIue}tMSUT+Zn<&iM;||T<)(^jcMM#-A>veEC~n-*UAJNb?rt$j@Pg{T1#GDu7vmT7k z>KL68Fg|T*Vun`fT22V%Gf4CECg$c0emp&;U~*i+_^5=55fP)q5_)>Vcxx4Ht|ImJ zI4t$r(A!I)ayteGDcj+~=%{!k7e+<|9<^fV7!%m}U{Dz$_;6xkNWl1@mCvAz#$>+} zQ~e@m9w_%fg?O`rGG_Zk%=Wo3)9Yl>7KcPEjR@>wkaMs;rDAhd<(vAwB?J4* zCf+U^9E#pw6!30QOtHj-9CpY)^(` zYr==kaWB?K-B=qj!GJQPW2s-k@_>prgBojPNayGHHKRH8!7t8c6;}{PX2cS$n7|sza4{%KPKQxa3(I_%f`jK*$BLwhO43RxaCriQ<{LSueEsd zE(yC|!tw5_fp_m^Y^=JlwI<-*j)?brP8{xu_;?`W(^~~!-fQ@JsN<&(2EHDeNAlq7 zp`|bH-5`B>Z>`}yJk;^-osPF}73}XT*xQr2V30}%cc{p4Tf)|sh|Ns_n;Rmww`A;W zD-0hy>k4P$-tL%3T_iqGHjX~5SzlH8=jGa(&Lyc!Z&WP3(XsGG$MTASr8OOI))dZ* ztZx~-vV4QOLpDs%Yv-2eLlgz%>P}557@L&%=g;7Xi+?8d4m#1&9frnEI~qHkyoIuf zCKg(B9&>vB%86$smgw=z3Kv5Lg}v)v8{8XGUgP3XsPbAXpFv@94vaVGpneZ31$~X1!J4!O22|T?*?nipDfrn2`>t6G*YUMg|oJh{JBQetk8pHR)2RR-D9|Rrl zL?=v|wxMF}`z}PLNr=l*k(jF?seq*7e!j}rVlq@jrKt#iAc0!VNl{5EqLVfF;skhO zUGPOac{3G-#3`piqf_Ku@EBFPfW$QCksL@$cOfN9LRyZ3jC>vG`3ll)Q&^e#DpIoqq>)>arGQ4V2tw|sXrPg-n0Ok? zQds1QkO)lT5_MMmeS?qen8eD*VRs6>N5)8qij@%)s~|R7Mog51h)Cf-IU%%FOVGmD z{h{q&HaUbvtAA-NZ~$!%UG@L~AOJ~3K~&AP#bwzz*iAS7DUU4|gEAbM#U6GvXrziB zXHmmrv4=;jQVTUacx2@>=tv_|1Q?XxpqqBebCBp}om>tYU82|U`#$qA$gs;nD{TvG zmNmv3rzCb_$WbAe#g`<&n<#NpB;`)DNR_2WnIMTC8KOsG2%$a7WP2GgG6M)f3)kG! zd)%ky$xv4KgHQ`V(!&s+Lt!Et(w|BEeG_~pZ0pxk34=}&ingd@0HN_K%5snsKmcO3jcaJ=v>>FVn+gdH)V0&7mJhF*J$Okujan5?YcxEm zR#8|@BVJaxJ-?DZ_0?JAa%7ij9DM)Q>Bz5^89Hba7H!0$@cARkb?_!E70+5U-iGzO zO+#_3b^a}Y5Ll4t+N(A%Lk5jmkrP7j;deghx$2&1)DOm?rav52y%vC!w5ce4tuTaC zcN)CGi`<`z*D}hRXa~4}ibfGtEfQx#8rn2;^?K3W<31{2G|@j~Vqnz7(5QjoaUEk* zZppc(A{=$Ru{0KzKHr%`zgj3&z z;_mhPxOp`NH?Ah)=Jhz-y&1`!AECERUXN?L7r_AHvc>ZTEE=;?#Rt3viy(vGg8+rD zQT`(~@)37{&^ZA}l#$7BL2d`ZhAG}>w}V^|KWq?ikP|{Kh*x>Qa6;#%oCcRO73TvT zID07&*-sKMx7CQvPwgmgd4Pb^0XTW#1kPNzf%AbjoIU5l$x{ye;rlSw_dkSjPsoWg zVVngaC&ce`ki$XeB!UtOp5OY>$4AP4@VHe_#BnL%wHrE*WYHR40+1W`3|zV?!70Zx zgir?LeqsSK(w;(gMZ$1Jqx?w~o@eD_y1O33ZMhihjmPFn0=|Aq!NQyahwmb>vMlka z6+y=_fUFo;U3PO}A%Vc)lm~s|1e_+i$2{m9ar5|HU8l@hpz<~uFB?TXZ;(*ZtfREe z&5ILWzSdCM;zU`S9n~EU)c1&J8BozStfOz@15P8Ly-u{e4na$s?O3nd?RecDW~n0t zU42e;_dC%$D4>5>!oY~g>vsEwT<9Ni@C||A^&kg@;Dbf*G3df51=0H)7Jv-6Ff$}_ z9%6o2#^R8S}dfzQv$Xojx;V|Yh1$ignF!jpa?1R;Oga^u%+H-6eZ%4uxtR&aca{#*^8HdS^(2sFqMp>zLr3YULeSMhn*+=<2Ip!>KQl7%Zlc?i6d1q!BL4ff%VD+G=G1^D!@O<3HE;uXC6hbj&ZWbAH{ z`=R3fu7JaR7d{*a`1DRXhL4{=n)v0D8$W%pp?it;)qo|lE>>5 zcu8YlM*vb@rGP{LLf5H}B>$+pjW(q|q=}Vc`rzAx^k?+pxf^MZbfo6VASdBLh8;;6 zHpHd>1|Z~q_?-_6J{-{FEC7jmC?he~KyrbJ2agRTKe9lCfFwR!13?Hu3Qg-!WFa9_vJxIRc_fN}fgD0|D3UT9NTN8vLmTd=*^r#+w7?-(LRNvsZby19 zIUgeEnE6OS&SMREMQ)^KNi2elhdB}+<_P?nj64aXv}}<@a6*43NixBsx+=Bn8-gE_ggv9z-)}ZLbZYVuM2tWf6!Fd^lAH z0tgBy=uKl!yf(LpG8{TGizx{1W>l(I}MFu_5vb-=sVpNx2?)h(zOD z?0%55;f?pe6X$05kbMLrI`k+5MzjfctO;*|iSYX-B9e7PKF~O`LjNG5(Q zS)vuZ)b&CAA2}r|Z{T`X7m4EfDA4g~ZNxXBc@GM!yeO*n;Ym$6KliLY98Vj(c-H7e zaf1~QFKKcg2eYZrudGSt8}RCO`b1abHM_KKmjc(+@6pm9gSzf0RJ3}zbAx&|o>a?t zT0@S5j{FJ=xXZ}>CSacaO2ETX5osk()k2O;5Q%A4-4s=oKly!UDTu9y}3kVsYCb?=(>-h9~W zq!U6S7kPdsc0?Fk!{jT1ha$jH@km4YLlxx@ov3)Ept4Ct^<#E{cu@bukA^3K?Fpu0 z{ZSPmnD8;e$F-+X0wA~A<8Zyzk87=N)IWEjj{PFdDyknj#V}0Ma6^+O27HzgpKQWn_YO`;zviTAKe|1=N;}N8@nz%NU$K z;l|lxIxd{{;@APFtWX7Hg2%^01tfSs2q#oTf~#2cfUvZX z077--_-PN0o%Z1HDNR(6n8ZR@l>}I16#Aat!~gR? z7O}Qei`l6}S*@Cx)v&N=VDaVFJ~OY@O>3B()G#)tiYa?&$b&(GCuB_|Z2+_;5)I6;rH+N7U`Bg@h1B=XUqn%^r_l72Ulmx_UIUcRKN` z#e(K17x19z0&d(nhsL{MxN$EWH}6N__CqV~G+A)B*@}CQt&&31)Z##Mn;nnaX$W=T zS(g*fyPat3QA8o>ZnvPP!-^N3HuQE_(AR0jK$lIXuQeR~Z4nr1w_>EzE(UD+BBT(H zJ_ts*4yaffV$XyjofE6$Zb@yTdccGyb2O|?YFL|6em8`U%?Xb2Va8q9l<`Px?ed_C z*8>_}^{X<=gF03Q-B=s;Vq?slH>2ipbHs!7Q4juj3KD-I> zZq_iLqtdbH!S@SpftYXS417D|!dJ5{@pHUiqCwni`YsmSa>CE=7<-+^d2Hw6@W!^11@&2WPZ< z3HKNX4KPFKB4Yz)%0Y zjit>rtbJ95N6)jdbKf59I%pRF*>xfy9uTS^p(lOVcRGMQ$D+5Rb{V(($6@?#a6XRV zWnAz6lko^W5rrdRDFPsbk3GjSaL%3w-^E;LF%HaaKETXIKBkr9pAlm;rn-PeD~IaZ{N7_-5Vdi-Spz?buZqpdhvGIjZMb)F6vla zRPp+?2DYUyE-6@e>BRh^19J-w%+5PyW@Z&k&p0tT<;29K0}~TYnW-sVF3d2DUc%@ta%Rxc^wkt@{dY z-cxYxmJRhcENHlC!Oi=2+-*{Ex5hU_a&Gd{UU2bB=ME-jnNiwy>> z_;^gbb318^iCetS*G9+Kkr1ySF-}23tP^pu4pBn3SF)lNDB5{Av~#dI&%vUcgH5{t z)nkPxN=Iaz2O(54g7Crhryzu6Rk%gbVA>NwBfr)s#_2sza{3hUjH zYQ?BsmcCpr;)+w400;qt073vD2nc}Wg@I*&OcpR9goS^E5Dk~|J=;lKR5Sb+4S|b5 zvJaj(w=_ty#@-#L!<*njWRe?Empq6~^CB+YgZNArF6MY~F~{_>@J&LWOH#hW{5uM0 zKIa?OAyL6h=?cOHj|2`$>1yz7C3pQELdtIWQF_~pvO7MR^1D7+$Ev(%t~1r#H`~SQ z9;k96&IBx;NZozzGUplBlp@7P!Pl1Ga)MU|%*a~>#kW*kxuJr}2E81)jVf}ksmN|n zWU?9@@|>x1=qO_;;X`xPs{Db0@&~#Ah^QR`Atr!SH7lrjqDdLy)yFI3r-M1 zg6astgA-In_?pJ&F}T?li|cJ(TyOITgfz6cQ2*4x)h9ZxHmTB%&fXK2FV@_)3xM#K z5*tz3YI>{5ji=B2XnXEOce@|GU49I`@L{;mi;;e}%=nNGqr;IH8IHuzNC1PQ0Sw4Q zV{jxIqr-6+?vKUvz^Z{viVcgJz5_0ffVK1*TG&073{+(fLA?Y3o+;yxorG=T_WrzJR-rF5vo| za9q1%lMmn<_wBgJR`MnX?le1br`e7N&zyMJ;>4p?2b$WPc+8c;P6bc9ooMZLijqPA z2|@?~gwx+?l^JNaV6YwMr_5(vZI1YPQQl^ z2iB$>Sev$+$0-LGLurd=SQ|00I;>-5$k?8>5x0N`f#U7B>tE*Ggd2aH z_mfPYqA!D<48IK5r{2vPcr&Monjnh9*4h)JZNGbI;D?t6eq7S=_t$Rxvg*cfs~-Hi zV#xfm?7~kA27X%LT9r9JP$A)L!HD=gw&3HNd5=H`SGe9y>v+q=t2s9|=FM53b75`P z0MI}$zrgB@zCFuRD*kLo|&miQJ5Zrx`kMDnN#KQVT zy#Mhko^<45&!Gd@b3{StNt)1OqyyyhqmkHoj7D@n_8c?&KmG_F!TUk@;PHj=xdojE0z)N;|tZ88R;QF#I z@bT4#1K+$+@ZDPj-@p3+AOazqUVO9R!&hrQyj$_$%_}!HUK&_i(6F+gipoLoFyVs$ z!cj3dubCc>S$f@6x$rVRuE@m~mY1?)XnMlH!jwyZL!e_)!`y_9nF$Ru3z4 z6d&5S3*+Nnj7|DPJszL-Vq(g`_>8%lH8JBBg=BKpgPB=Brsn(tE9281jEx%@7*Rk4 zMEZt0FQBD8d>cTTS`;+5suBuA2zl^?YgP{2d8FXRJ)8WVYrJb-V7dR;iTh6oB6fKl zfrP*JZaz@J==>WGxrXJCi;X6LIK+TX1tbU{CD)yDk@f!zfRwX!{UZQj`5{-l=oR7D z&8x9Uzeh&7T~e=TK2Iw%H+r(mJjf~aAg|ah0FaxnAS=%)YgpU>O3GmvlN|{e4oEWW zWvgt>c;mz1OA1F^nhl9LPNWs`g1Za+dOSy_Re|;c_RjI#Ijht_PKALSCaRX$k$J@m zX_4Pb6U!@hAiuH$q>{z+tM0SA#8M#)ZW`)b}wg3oMud;0dO9T+Y2PZ2}MP{ys zj2x;S+P?*mtU?EJim0Gy0w8=Hy&!)Ckc*eNcJ%=&2p+*$UxEl>BluWiGS{=r*Yh!Y zz7pacNQ`p`fW*f*5Fev}N=Qr;SF#l7dYC|nQ@sF(dO^w%8PV&FHcS9v(iGROK3=B^ zLWrq^(6_<0Dn{tiRL=A&nzTLQhoB)lr)9Q~d}eyJam)z$8gS;F5uuR2LF5 zJxI#+;c|f=DTO{{ltdw;)Li-En}u&4Dn8~g(Mpw;Or}|}mn2w*D4vUJuI>I3{+oiG zCBfbj8p5yK_%KDc+>%mNdfS82J1&&n)}^$M4dUEiuYaWDTC*-uyo8bKY$AVXp!%LJ z4dVol54{^s6x}3*=w`X#O#=nD4CLQ1kayES?hPGzH_V9L4;~K>s+xS_?=U?cZd5h7 z&2_6sny4RCK&qO}R&*&OY&O@ef&g;;S+qb1?-N9*c+jXG9Ny=1d|hKpG_JLJaIM{i z>m6=1c6tOx>Yp2^d#r6KAu6ixJ5hDVY&>POUfo?44G#?5cxa&cu?J6|y3pS0LQkg~ zgD>1>JZQfgl8Q6r!^B`D#)kqJ9g4=#un8VP2;u#{em{mrW6(dAh=sK}^o-Qvbi`4d zwdpt=7K790FCom92GyMh&7FyGOAL;m&~W&m4XQm!6p({^?b!ACdC-7PlR06dtmpyq zvu}vnLDM;XAOsW|(g`3wSB5AcR66MCps}242bB;)2Gx*{C+GvAVxn6U;IzaE#2h<* z8Y$Td7B=hAH=BT#5gmQA$>^QR!VmxKN9ENNg#0xGp`pidXunfBLk{loAtWSBR&JK`c$6TU-a5al2bf#cQ1g|9uC(pX2h|udxh2NJ7 z_JAbC=b|9J5_y-4P?B*4nehQUe~^#4$x# z4|@dy2n}4ndfKJpafgbhUAjQUlTHl}+j+9Ci6Q-Qm&*(#c;S^bt(HFixh=35^~h!;bnJ`9ifF*5GM*jOZn$GjLB@rkd40KypEp%Dj$h80=CB7pP^ zm<{G^C})Zc;e&COk6UcG_c#K#9-c?zz4K_eZN;@a=GDK(d*+Amt%uGn2(jb-QwJVA zci>?Q^Y|TTZg=2uryWna9BA2E)MQpwHfEuIIuS3z}l=$j_cFTEdViL zgTV2}*%%{ixUoL!5*Xo;uX#J^!~1Chh=zBQD&9|N_-b0m*E0sbp|UVXwZS7t-VWaX ze!&aQ4~srYprXn9t0fnhCdDMF?_Rm^-76hG&@1s;!%wd?{B1?UFRKQAU31}|Yi|6u zX5gPII{vw0;Kv0OKhEp;VL``_i-xRbaXpLcRUCc~1P`upyYFeY@p;Zd3(lc0|F{p#4v0V#tokQ70xwotPX`{hS?}bBe52F^-o%w-4jN#;obnp;w2Vm=EKZo{;6KIBdKs z#Mkd0A|ak@P@&j+$b!9x{rG&Z2cPZnV#gjcg8T!3n4S)*AO9x+WXE0`KKbGpKK=YN zv~|_s+kez!W;s?s&ehzt+e#~!HVP-uEGp}8kd2Po_M(nN` zSYI_H<%;m}-KGOSyjAeyI~_m0cjL#mZv61ZBlF#c2j8xF@%4(=T(^7a!RCSs>vKAm z=QYgF*)g+V$Lu11*C{e{i@GFO%`Ldai$O>*fA4AFDiqf{%}yW#(_=cO#uO<#og7gm zVQ+jylf*nmce6ieNXBIrn2vfdH13t(XXeq3p>abBREH;A7@c%ubjpLVDUTcpDI=3^ zd7e?@ys*;QYeRci1X{Z+W=wAzf3G?4v{ge(hYKwoZm<~m;bS|RSYp^@#hnM?xce{y z51OrLdg_pQ_}GSrPgUH1tm5utWxMQ<9?!-HssKp!4PJP3hzEoKQruv|LdkV*c^D|B zcZ25f26M_96ns3D^{Nyeme)DKsk*A5x?V+HgAM{n<#oFm>&w#Tns8)PL?E>+0x6|D z_f!ND2nx9s9^_YgQCQ|dVX1+_BJ<=wy}*i;LMze=osj;IJQc~gPF&0+jMxyH5{~$E zt3=@EDumKy;iC2BPEK z2%(`|2(C~U^EXM3FhVHddKT3Wu3Hg6f}I`&5Q2v3iC|N?`8?OJv<*kk_b-Vj;@KbvxKuPmihBxb zA5t06L>=Ifa8hwwMez*71;I-a_f}1qs zx>0t|hsuY3R5wMVra4N6iC0X%qAEf~gpKH;iZtnBM6Y>l8qkBvMi4@RO2~f)Aq~&{ zsCla5YKyiFAyh*MAT>=2DjzVtND%<3zN-j?u;KLTJq-;H+-Q90#{Fg&9zQYgywwnY zM<4V5dku{A=@{vAVRA4M6N3Sa4@P5jC>A3_vD*+r1*Cr{fWARV4X z^r&+fmI|v^H z5-KAfdqfBzvbLpO!i6(F96NpzrL|F5d|QK|rC9XL8t9#i!i%XS%&pgB<$Vj{lU2FO zxOdN4?A`6aj!*6Q;xmT;2;+Ez01^Zb!pO&-kbegs1dt;~bR0UQ;^1Lb610LbykU+w zaE^VcOBV=Nu)@Q9utoS06PYGW=qWK-xL11@sZoB^m&ajh^a|!?lLSDP*COSEd3sI} zqa@=bC#E#>gIIhO1Q0)740Q~G~RJY6E9a5Za;L&dcwVC1^4&?{mfym zVYS-O+-Aj-4jZ0!+VQN*0s27L_0iLA7x?Jyu$ihy7mEQcGVJG=BzO!sF*m4SVOYb< zQ4Oy~b@6l%I80B6@jLKfd@H>J>$3{hXPxHE*|Gld%$fiq2~y)*Nm6n&A!B30g^e*o z(xzDAC#h3o1~w<%0v}(^`tWW>#n&?`zM0kV-MnG?GhTY|^DCdsPfK2Kg7-f@{`lI5 zAC}EH+8>rZ_;JN6=4=|Ye_AnQ2p|7gBYYV6ZQX_c*l^>YJg#c^bydd?^9sJ7*91UJ z2%$H`1d#7v`bF^wf(Om)gbqR*{V@E093L=?CdURxRQp3wB1urM__xAeLPMXU1DYAa`*#ReZ95CZ`|7`Ut`1qf#VC~+oBIGYeuy@}9j85Jc z0GV8h!VkY)$DQV6>^*!CdynYSdd?>FFOJ6Hv%@jiaU_79N4bLaUn?M?N6e;lf(TWR zU{m_RQ%Tr=IuQrYCt~lJL>xFp@W{qlO92j^)N#sk91q*GF~44jnbjCfEvcAUvSEqQ zx2rlf)?899_{|#!zJF`SkMC6c^j^bH?+yI;&V?V|xbXd^8{e$C@Xe|RUoCs_?v)#F z7O9pQqLguUYG&Go$yp1gX6@kbx|w-ZJQ;+Kxdl_92wrrd5qw}k$H0IKgM)4i4jLF4 zFuR0!WTf{{AJg%i=wgCzY+L6LKFVqxsH}5t14!L<4NT1{z8)cQzPWW_NUsb>O4$XZlv}`|3<5}0tW}^RHN%J8f;f2%;Y1qN z6CCpAOar?Uu{6}jIS>Sp#4P}ci?$;+${`TqXJMh&0*}XRS7%JGp9xyAF2uxp5W~!SiZn6J z(=1QmVBBxTJlVw@GYh(M^YdNZB0+%u!Hslgf*MqU&a#2+ii~ z`3R~j1=l^uYxE%Rx(~UH=H%S;Bj-i{c{lv>_>~(z6yJ(O+1&uj@5P|vezZ*a{YaGF z^`YdBM<9j9bPl~D<@db;Cp4J{BXy~AP~iwp@IH?puVe8()sgyVK2$c_Q2Eq`+ExWu z+cng;>ZpCDpsLA%@&`85G-)!7P~}`@f)?X@n@p3wMDw=jQj)}+@}6Epe(^GGh#)f7 z@5fkw0Hgh}GF-PB8i>WfV6;sCfawY0$>_*T9L5$iu=)K%xq`8C{|;QRdl2r7hfPg} zUAqLQkqq6N3SVRn{Qf*>&J;19Gj2B{rB0xOM)c1<`4S-^$3zw3N*33#Xhx^sv(3ALP*dHLRcYysI~-H!=iEQ*aRh>$hmXT62(go2=5;`X^08^$d@_}om3?O>r9v*r_UHTd&Yp~ zj75BOCKCMVh|&`9py2_slj6}(m57(~HF&v{frVGmSX%RAaQqx5=M_xMs$g8?*pwkx z=%_?+6^bi$y+b~9^c&)bpeLfUPe=EF3*7@cI{Q@gu`PVq06$O%$6Od0_s9yu_!QR* ze3+i{Vs6@l`57-3W_@y;o_1qq(qpbUOnK!sOx&6ncW=k)5E*5<7;1QXLA z;sRkq+P>vzY~3e(XcEm!V>%ncX;SBE*ZVoMFXP)q9pAoG@%@%+@zaVMe_Qk7@9RGN zW5X{;-u`&_{PwIz;>UIW_WZo&h0Ll8Kd-t3K7Ltu34Hu>!;RlIbo{zb_)zhWWpx`s zz890aX;i0oL{yIjkGY06%`OcCuf_>)gg6B=Lk=mE?C-IocPr8CMYjVzT~4qBvb)oP zt`4glgZKa4ktd1${btG#uUJoxx@3K3e$tJXQ#uyLoOn5A$Lld0mdCAF8?#`2JOXbf zEZCT^V0F@tm8sx3u`=ZplR0}of~uAYAs>T?SxmSx8HuSOFTQ(UkH-%)v48JhuyglG z9625(0J3v$06Rl{{{kRE_2YjVKtdIS9?%i;>2Vx6dK|M0&+z@P*D&=e8sGiWfSN`> zcJ1GbT?d@l#U}LQN!W2L311w&h~3BHu;=8zdOm`RNAS4&a11zq1du~tCQJI&fpZtJ z_e>J@pQQSciwLC{UxxYMj9<=uua>2%Y+(1{KM=sWM_q)+K;1>TI130?+4Yc>^ zXn&!K|BUJ@OA3PkLI`Q?GSJ!UHNVCS7g{=1biB~f(#a%BD;~F4~g-D zU9KUo!a!lA3q|EF6qjizEml!f>_Aba9Ys|R6jwV@Qlp``%7vmz1BK-V3d(e8fzK;Z zp@PA8(CRy zWMmjf&Ctcro|0)s?a~J#iC0_3^PmA;{2^HyE~jgffW@_|535uT#9cHeI^K$?I1A#F zoJh;^A@53@bcgVHKF8s0J|B}{Lm)aFNpW^0$J%i*)`r9wD+nQR(N@Gp*$@+LL%?r^ z&u@XxZ<7uYwyd-8kR^vPaRx#%%L1Yp@T8t6_>9-3A`)E9q7j{n0avYYUlE!F(kPquhTwBsn*r07eiH6)7P1d!jKCn|GyGju_;YmH8<9zr#+@eyD zVoe}%i7}o@TwJBPe8ma2m{T=jNg#VVxDH0JFx46picByvQ@PkrVk$L$QE>RZa<)~C ztBmebw*iDcmf&Pn*=5Htv(hHYPFkfMiRBK&S2&SS;Y4Dk6Bnx#Bv(6;Ty4kYYAY^P zg(I~l0vT5=$h~GoexnryH>{$HQ0d_R&BxzEe!UBMR}JLWyJgaA3}n>0kY4LXMx6&~ zS3O9t_aeRCkF5GgWM7R$UcDa$*8(WK9>A5xC^;5fi$p%d0IvIxf6Xn?y-d%_zh;0@ zy;ruBlhRus;&p=&ygV}bim6vLpYuLJL*Mdz&}hDIw*_DP^$h+Jazc(=v(g-wap6pq00;dcjOitK5LRL$ z3*a@R(=iyBNyq9}O~}l1BP1jQpMG*szQ-><4U<^jpaK$1y&`<@F|KBD z9qW%?5UL?TMT7vt7~aE2b$RU2aScaKxj+D+5&djPRN1(gUYMRgc6@egraJTik zWG(Dby9Rnw?zT83BKZDO1cFkqDe!_j_2Rt?AdU6>efODD$UkP9VGh-Pihj)yE^FvhX(eI z8AbdWZ1rY(6xE8KS9Sbt&5ggWyYP<wN)_+^do;l$6cocMlT!FLN9zMa$Y)trX+ zvl`ycsCYZ03w-cIk^gUmkNHtmz+jcLS*L=|4znAfz0HBvb_d#8?PzJU z|F=i>Ds;V2*R{68_&DUjx4sDKj}2&0^ZXumpuNw z$Ay+|7kGT$WypFf*GK6+W2}912h~`+43!RkZH`<39Pr6SAp#6nPkRQ<<1;F^?N;z; z0*Dn&&%)(<5(sJ2@tB3eU0zW^nD*KDNJZTpv)P#VQcA~OYMNOTKYEe-lP;uXi>PITd?m4BPHlsQW88uc(3FSra+)51v)rP=DX|)^W z6*?-)HB^*4P*LlE=`B%ES+Aq|s)33+7b>baJVyF3tfu8EY%tnwhe!i6*zC$d?-#)Zsk0~uAi9JA|8z#)(nHFEvSfndWq ziw1fB3NyN|StWj#5xji-;~o%EN1l2`@u+Ka;%d98fY1-p&}N7!o#|LN+9G9cw?^Ym zTO97TC&=7uyNJ8(@wopY1`qoDXdd+7>97l}!#X;KRCMtKuvbOz3lI9bBhl9#ZBAFL z9GRHaBf~YUSOJip5d#BLF_?OF1p{Ms@CCvU@|RDrYu8ci4Lym^|9TjogzUp#Lyq9H zkQ4YMT7?_$jFg54JqHLO2yLjM@cf$w7vx<1d^>Zneh<^ zMn;?%9=6GGbkrfY2_S@mp58EY^;*#NVoL!TFx41dapZ?NeJD*G1|D^|(bVaaD}L?I z4Rk-%(euneZ>xd6HXQ>Ux-^fAs?p=X@C!Re`m7l3w_tqGf{9@ZCP%E88gXJ~)Qg#s zfXwV@Bo@Z}SR9YU%W1_imez=?!31El-9BAM1-BW^I86S<@s-qwLzE zx;0L$EpqJJv$5dB>a+iYogWhl7`sca&&R{~ zV*Z<6&86erMiW%W3GDd%FpeFILg?N|?ART^uHBK?75e`lfP4|Em|n93NAbL^2Je5W z!SeeQ{QRFcQFk+d-3JaJ^pJtw#}csnIN>7|pC3-ft|LhZJ)Zb4saJmlk(~#l1VE^Q z1ObHV2La^J*~{2-Djo;Vr%C!10pv`08l3J}+R z;dNnS-HFY03%=Qiz;_!Ke7{K$u?c*9vuejz%MR&fVM!#D$+*t=vHC$3^5ukThHcC` zFgESn8U>?lC!b^w2Ynlcs2^1J2_J3kDq7pL?IHX!SuY43gkJ_-JZp8}X`2IFd18tl zP2x>$Dw^9hNeSf1zWgp~(ea>Fm-VNIZ3dd#ba|Z5Gth(nvwP1?AKJYZ8}2`2@nD1; zd7A+8yiG+*yCO07TxVw5B!fF%445ljRD#(V^1R)$H8wnHiNK?$VFEe?BYtmGL7F<; zqJZ3c=EBWpUDmLufRr|Db$ndcP~NDclv^GR|Gff2+L-zjD=ul6ns+8+@p(_oJ@fi>q}W)DdFpY^ZLqZMV5!y=I`c z!G+qZE)zzo6jaoxsH#zA{i~|hj`EralvQ0oQKd!JvAEtv(|KN{hT<9nrB@A6Nkmzx za-gWfDSi*GeiawHQFO(JD}@{{^7B>X=Q~kQplpqXf&v5id9JN-BR|iJ{9Hfsa|6iD z_9H99hm152Qd3+=zHBC2eGDKbd^nMk0Z6dpL%bjHRs>=rMExLW za7Bw z8Y&3Msfk`c9cJt)6pwuKW!iW^)Aa3@#%}^k#Z52DZ~IVn+b<=5#SQGj&{0rJ zuu!F#kFb(oqX-lb3^FStkX>y>Zmk{pSDn(G!PjtTgb%7K;`gXCy(aQB)AFQc>*)DjxK*h`}iwDJ5Y@F0ml`N(2H$Rzwxs5LIjfNo=VVaV1v7mst>7 zasi2D7m!>ThLjo$GOpT?S#OoezUn|)Ib(noNo}BMDy2llr6MOT7CMnwpvc4*s7NT( zka$H$VzC=ZrCym!EQTx($YiivrQDCSaxYR!-AFFdGtDJyB~KuBJrRz8V|c-@Tfahrl~UyOSHHk#Jg~W$nptWFXdGfM{lQZD3$QLHDE;BTF9i&FW|$)-bw|j^(#^a5+uI zCm|s?u=fOZ?>L2>yU$_Ao-pj(YZ}pa?z7^HJuC+c$EUk4fcJOpH~T8;I_C$yAYYy*e7JGsn1TZbEeJdBMt|-7Ff*MXGdC9_t5j4u zXin!^6nCbnP7Dt_Fg+>pB*(I@H0tjJ)0J5w^to*oYfI}Gh+nOQs)2fOemYw+Sl^x%{w1X>P zT)AQ|$D3(II!(Cl^m4?8#bGO6O{iELS1~tY8p`?e7g}yA6a8Djysw zAFVA8nU?2vJa~8>4<3g7Ztgz{gE{BX{3HyIpN8T2^Dr~ftkVXrb&d4$XYUZzg#g0F z`PZWktc=>QChCU`YZF#UBwN{n5A**$`15dJWeY%Fvv_bq!RtvAM9iZmSKt??8Qq$I zU;fsL=)igG+IaxSkNL6hKs3JC6^Wgp9CHnealF9@UK-FpHleeukbaLpJ5uT3pQVB# z-5{X~zSzweaH^>WcJ4fYn|BMa`E4!Mzb(LT|LX~EJxs-(Bge4ss2h7uBp~!e3U(Y$ z!RPxgV&}ma0gFEZ#~<(SI1m6Ksr{ZuZA{)DoW#Z`hTpT?e4b|g8 zM_&atzNx|7ax|uwoEV?C3WO{y=~!k0*1895Jb$GLf{H_% zE{1Ped+Jcp+UW$<4nhFc4nEFdDiu9s51%>l;F${gEC?F}jfbsn8J_5K*eQ1ZxgqiX z^86Nz+-bH#<}steIpN#GBtQ9kxgOeXmzZ%T6Ed)a;T?U0x)|T7PSdZ(KBM3~X|V`^ zw7#GM!|zMM{T3%4P$h0--GCw8XIJk#WCd#*KpGWP+%UEP#QEQPKuYTzD5O(E#coiuqtiJ0&!((l`i>&O9g8XY16f`(wwY`L^P}jYvzTp=jzIHPb*Kb7PTB9G0 zjULoowWGGdj;q%cv)u5y3-#AsxZ2=GUA;@dqq!m9^@BzkeBZk013iJVWAEV z0ptUO5I{aaNN%!0lJ1bXoaU7ChD#|L zk}vDHn5^Mql9^~l013oc;ExJNAkKogBquJW=txXa5SPsVn@kj!UqoiEAL*GMWM=zh zQd4zYOt1-n5JCtbzhA+!$O=}ZKOFwZ2t)>Kh>W(&_@nLc2ORK4IS`Ur;m5z9NMu$- zBC9eW#|$=?m-&!J&q%QkDO}mwYD_1fpnrx13`pC z;HbRiL(QE?)Z7iA?p_pX?nR>JjvrNbd_v1KEAdUsevGn41w{>Z$&${mjX-*Nm;eaj zgKxSk*JIl9u1{G7LS&7qN|UuObEV5LixH_h)M&`6){s%HBBN44dX<9o3MbMk zsfKuvUF$}6wM!HP=1ZrRD`IfETxR_@)ZN}%g5S+Li z4V>6)6|vb)#M7Y9M6q0_3~$F~*$|UyMRZ04;&beX%`$KEeq6RqzJ6+n8yS_RIzkX( zt2!s=s=hUEsQj7?p^^xO@2y~nX@ zR|q^t3@*kL!R5?`S1Z8TlL7H`96Rj7;ll|qHAKNEmrNkp_a2aM&V8sf2E6xc}cWh23#i9~M( z5kY^6}{t5^i3$}8i_z#e;7Ij99Ue<$II7^ zuv&KE(~uAxJ#-R({p>J84@5|7`DeS&WA`B&_8(WVQd3i|?V;i^%{ah6gMd9bkYJ4S~b7~_@l zVHHfH86HwU8vUbG8s6rWZYL&&tp7U0rqaP|f5Op+AuO5mibooirxY;Kl{@8}cgTH?rz%SoK;@7t> z{Kq>(=0D$g@IT&r@qc~g!~gwt0RQuwDE!A;pUgksc=6k&2fuCj@awu4zpQycZ^tih z4E$qL#oyoP_}iv|pVv8V{Iu%9Ppdv~EsGwJAJ#nhZpDRfS2S6TdH>oj<$YWQd%x(B zzK)F_gFDDs9<_j!~B?r**%jJjUh+pKMkAw_|Anhe}(G9+!P@sTEK1AP}vpt|>1 zmp^l_*@5O~3LZUi;6alG_aB4{NH;%@5WpsQcXouMr}F~(dLl5`Ysb)_g3%EdMn~Nk z8}o@DgrEv-@wb7T-rHlXMNsop{-3lIdsd&_FpsCx92OTcle5#=SfdgeX!can! zI2+IF!ckafF?&Gjo#F?nzN4f1j)tn+Dk^U&sJQ7w`3)8pn(0>J9l2&jNqq#0uZD|~ zLPLAqT^-jRx^U}>7k8d}ap##IjZH4p+;&PT78AFsZfK~vWuWek7uW7ZqVYi#8t(jr8XG=Yv_sUeSq4<>AJ#fz#(buDkZQG3;c+BzSqYdo^TRZ^;mi9N4GlU8zx zyS?I+=-b?475Sw)3d#&KiK@^n2V|5kP34TyrKvopKu0#?b#v+eaDMQAY^`C@15!}v z5-&(@o+f^ftZWq-nNFl%&eCxy+d%wf3m!Z!0fELJc^n1# z9%Q9Ck(pvgQLYck@irvJ+mR4$K}=LQq61-w3WOn=KocDyLjya_?cS&`1mdiSy`&;4 z-Ug@VO9F^jnj$|OgFvzcAXG=nqmWS+jkJ;gQi=k&ROm-?fzND)EM$*}Szbt=h^#l! z*Ko}#D?E&r{rxxvPH4I=x^AHIrWaLP08+aJAhmZ*0I9z1LFG*ss%{%wqoMMaDsRxz z>oyc!vm&=TVq5tjcoebhrqQ{bD3w#g)hrw6-=G1WrHN()uOS6BEUQVYP`5|m;-eKP zDg|6=;>kLd11bqArJBs;5*3L>4qPOJlsb@5WJPR2IAZcIApS}Ol1lBkT;Y&OsdOT< z&Jfdh{tYj(>UCsPJCRyul`$d2j-&!7F6Jvp%+-*PLjZA^lkJgXJl_=A+SVwDO0yy= zJwhgs77k8iY8d<}7vQ^mUSK3T!?OJvf=ObYg3Da7EA^QFo=O#|RT|Q&b(o$L9T~Mc zGOud#ebP|R;zOG1*+X*WjvM8V0;r{*qdkDzZ9d#>_u^iM50AQhXzKQ&xyOg*7jB78 zefmPjvt9$Og9bW>+~^*0qj$`UzHx$s7XxEH42}n6`bQ$c{ZsCv(jZ3(TJ}@BJZSIs zqP5d4)6wHcPruoY-qY_w?}&!JQ5|g79vq9q=yVpQW-Bl-REI!h7>*r2C8dK0cDt~D zryF~BT5;r%6Gsl}IDE)0C*?tT&b$*#Q#QPsG3WKH9m{hLnU#4bIDfpq zx}a>YRj~~1?N)CD0fbj+&C#Vq@67^B?3|K(MerbWu#@7=q62SVI`L-7DS$!nV7VH> zgV6DA#f5h(I^M7HF%@r@HN0Qb@Xe-6irRks%8Q@B@#B|osBF0KpYQ))*50x^jzjDI z^bMIorZ`4XV^w!Gx0qS7BulnsmSuq@gUBMwB(|8D&77N?Nd)7XsQk>i* z&wu8b7iU#>RSPUzN&R}Cy|;${dhN!4z4hR~4FGu)#DBjH;y+*N0P-I%0sJMhE0hEMA*d|LDAvmV5U^?=N~RS({-xaIqKxuWRb8%zHd zHUNw_@!Zd!*jT?Bvw<+OG-}1-unmhN79C86Oqd%m%S?2KW1=epqn%+GeiDZM$EVQu z;1qfugbIv2ZVSbO)==DUK8fagC((2-ROTMRq$L!sErgHbc-($UZseGl#Wk;~K?O4- z3T6jv0zgz_7KY7O8vYG{OzE(>HtXJ4o%0BQtj@RuJas5lH{kTw$E9gIW@b#7U-IGE z^YiHIEy1^kw&URbQ0&|1!PXsqY~2-*I9`?$ezn)}%j|LE>)meXC51YG5JG-C1dl(Q z9WH#c)r*i2Kfc*^5a~Gqy!%@lmfuuj<#j6*{|W3o_?-aAwgYZ#JrIqZA*tB2KNWtgJ^vG>m7_w z`!T)f5&#)lvSDD+ilGHN#@HM_9gl_SB+SkSF}>iy+@e>Xd5^qVp%(!yAX6huKhsmt^c(kp9320OI@%K7uH{9>A5Weq6Zd#<_DE&M+CPnE&1!(mwuq3ps&=MS^)ndT}6I%5_t? z-dN6JKwir`tspPohST|~4k85(F`*MU#1BF*NRb2i1rE8Mn`cKh%L=nC$jY`MJo9z;nY^WPc+9;RkYSvytY^_9 zayB64fGGuTiNsCJbAl1M$pwleRq^KD=+&SiQFz0O)1?u}zaEK#GLt;#ij;1=c1o`X z<*~~*{kV23N&q53-M&;1LdfR;QhLXS>$P5#)%j3X=aDJBOCWJdljhlS6~z?}Ns&5V z?UXoMM%o$>QdmY6L^q9RoVSQ!o#u5$4YMUP{k$D%CBIDi1qB2PV|3VXA>)ER=_PJ_ zK8a^+NG`S^<*Xe^MOMTYm=IqWf#kCmP$3aD<*JIj>kcu3GqH-@AygJlm#N65vHh}L z{45#g^@!r+LN>KC;Y*SDVMY)qF1(q_e*^yPsrga`|$SSqSaD6PF3KLiA8iFWo_UrzR zKLC*C9xv|q_|ZbMVw54biVgV1s6WIVz`6A>PkgoyCue*=<}C*n2%#BR@kX3r7;p;v@$ z=~13MaK(%8Ab7BK{v2MtY{AGtJ&u0658JmNz&ATjV#}A`V#`-Yu|33! zts!>&g&vT7ionNLyY1M%N5!taPV5VD;lO?mj_mj0$RQt&e(RGM-hKP*a-<=h0AhGU zc%EG$JcftI!E8=~qNF1}z62*udSO$7$jL20c6KJBqayLN?>uH^a>(O}mJQlBC#L1D**H?pb zer+Xyl|?V+XEn@DQ9)5KJz>Z6xQdxEhm3SVOlVjbcY|v!OOswKOu6MbOTu{m_m0bR z8}F9#9n=4}Gw;CCq)h6pMM6-r&99-8k}woabD4z39Zt zd36&wUM<-0dQrujB}JbVRc`1B9BDjdgH}^zSdWCM=Jdur_MO3RAE)lr5?s1j=Xg1QA{RqUvR+U%z);p0Q(j*^c=o z4^~zSv9fdvUQa0Y>^>yw?N{G8@bwN4zTD};7rPz!VmDP$eZJh~z}Gt+o9f4J!NYj| zhwwo#*}-P@DD2$h#@>(-Y(MD1wu3R70J8U> z5Bm;zvGYJsRC|XxcZ!N}v(Ak2yOF40Z2 zjLLgvR5XO+POBAn?^_`LjCMuVm}>7UxYMfOc8eX=jW$#_DyVLB=+mGV{jo!f0CKy< zgImpn5lyb&Zq${MhE@&t?rUglQqXYEDge^dXhB=E6%X&L=zOf9r%OXmw*^lb%0R_; z#4W>~5+=LRgUR&1wue@y zJEeq}z)(_Y*#ru9j)I zUhb1Ay%EHfQXei}_TpR#;e%;aR5a`Y7HlEU$YYzib)%0%KmY5Zz|YdE@|{v5NHv2{ zk(;LqjGWGQ3XJIKR|F4Do>TeY>-c)YM`o5)CNffeW!IVNx<$QJId!xDzPIQUpMf zqE8?_$&QRP4cS><EeMr3eFzwKYuP^mtsX^a_MrtqG#^cC>)Vwc7z)yX_YkDXR^jygmvQ zjlqra;|6^Qbv~3-yTxxp&xx4bYc!P9=)D>Q5h^i+A$F0lk=-aeWEV;Lc@@b;RwNah zbWW*btXvL42-N z8srmBn~{*mR(Ty%c%3lv`S9cXsp0UYgu$B}Dn~viknr_f$BHiuM_lnKB%O^wQb~ju z>(j58k$u%F(2;%3tfzRfWwhLaGgS)C-F3?f76Ihug8*(l@Zruw@1_Dm^`p5vfRc<$PS_vOP3{Aw!435X3ZKazi$DlfmHzQ~3{7NWYT+^}Zzkf%kzG)%UMUznbuT&F7^rpf=_%KDL!Z^=s1QY@Y0fpDB)-(YSn%5OeiWt)gAZ{gH{2(kN5J&k%btPM~Wr0)3-4 zboD#Y+~&sg^mY96=P48wBw@>zud!qINo?PB3V-?LIKJM=wJR(BvMmx{?y`aKv2~BK z2_Sp-Y1kj)#-R`o4j=Hy`q}>dDmaG^y97Lr9}kEU!hR5f2hVft_B0tn2$hii2dvnC zFbwG#xhO9$LtHF-5iVhBDjN$+QU3=3;@yM}LIr1GPFFSv7{>72=hu0Dc`+a=$1{P9 zAYMI>#haJ0c>5|rjs%fc&!gr1i}fJZmi<^>aEU);en!RojJ_7NGUEYfb=E7hHs{0o zykF+oLI8aJr$hB+(esD1GVj74&VmyJk3WJB!p5%@j|Hc!Ng0X-RSOzqjiFzI!`M)L zXc~72Y`k4o@orU-dB3Jg%Fp|C2UxWBUdE3PFMR(t1P>}7y87W20QvrnAEJW1_2OS2 z1Ne{kUi|Bw2mgHQ#y{S8@b}klF{aaOE+%yv&tLk%)T^JK2R4(gxN7xj)rJpi7JOK< z;oYho{61eV>$~?am)+7j{cO>N=Syy^FS}&eVEt^>A)^C`0b&1sB$QAI(#`aaUmdy5 zW;CC(?RDo|54}EfqZTZTny@r##?q)spksC11P*&a7?EuJ9UEY2{Jk6S`A5f~i5N&TbW7?zL?WpMSGU`^-7d001BWNklW1-=2@gic*f#DIpx}Dt*R`u4d~ijJ@Nuh2K~=qNV-(zMP-W$cP2)O%Xt>?vmiFa-pZwgQq=S0gVBw9>X5#O5)lT zy&sJKrQf5ujcHeAG`84K+iU^Xx~R<5w`r(rccSi*6L%gtaQCqj^__0q>j}sT_ML}* zDOx5dP}$(d%GnzxS-;{MJ@4tNnxawO=$3-!8x2nUb_gXr$D;uzgcP2uY;vQj*@IiH z9^7g5;!dkyV5H`r57mucR5$uj!>Ip8eFz{_K&t8jn*egPN&|}yODj}?j5lG20BQ@KCv}~J{ z|49l}j*7HwMJ7E*1x@3bc}`iQ%Ff|Rm4cjH6}fo?4F~d0Qyp>2W1i>mHC(&O%(5XP z(<+maVnu4IZ4*L_RV)KSc;xz(0V%xB;q$~~oAi3bB|8wEtRgDOhUioUaTyLIjIx(CQG9a>gtwgWl<3MRL(eq!gb*+PN_4`^dRuL*5lV`HAUPMMg?Nr4JWx(u5um zPYAssmv4E+2XgJM57+q*r!g88_hL|SFAC+2L3vKYI?d~wiCec^xFF*MJttH}ipo`4 z!OA#qLTa%Y{2mD)GQ~707J3Kgl%a4n-0bHsJ;9{*87w&pca)$#CgDhfx^*;7b8NBD?D)+Mt<*yWX4rNbnz)PlS+GxBd(P{_5n8Wk7o z+_>7{!}Vq#s@lD%Y4_sx1J5Ra2z>Me(c0%11%&asgb=P^J??j-W6+JRA&<+}V z0Sr&ZU}P#*jsy~}QZWLM4b;pb*Ufo$S;t~tIaLtmqDy1-(+G6*hkX7%l1zbGDr4Jsj2K?ogu zZUBgJJ~AQ&CQ~wOktr~R#Yr(C6%d~@3yLWb4pTgQY8qVT1Oy%F0v|yo8R^ldQJi@h z=}~#GpK#*v&Jbj$xUjfTj)za2=o_}9Z^VSorzUjuTk&+nhDY6}UknAmGS%iWt(je0@sbW6L*YZ22NwZZc>Zr2?{Zj{|%5IyRLtF?6 zaUdi_*#wXyM?3-_^o1Cz2v@TRC9(9-xN}7jp>h4#aW_H^gd!#;1(lVRh>x>laNsHy z7S70O!|c3*KUYA!n4ynj)+K8X^lZ#8cx9!EYgP1a@W|nL<2uhTuLNc7ig5AjSpct} zMdR(uXuNwFhj*`H@b*QlJb&{%My@|!@ndaChk@mJho}_a9xl@Kwqknzr#P_dU_~Er*pyJc3 zfPQ@KljFx%UT~;-d_Kl`9$D7*^E*HO{?3b^-+J)V8#jJ@<-y-xy79vceP}HI;e{7J zY@}P!%faD_6~D(f%T~NzG2``$6)%>pc)qA$eNn~wf)lHY8kT0ASe$cWXjvfdWqhZ4b%Jz%j4YQY2kH(%IC+|OK$lXcBSa5gTC@aFV6h9 zg6S~@Q=@iFjM!z*e`L_M5n#aM#?Jqc4dbIWOpaM)rpLIFr?2D9PguZNoaC6WGHJ%j zR3z4>Ojw^b%RHO0NF*}^|4sbStjw9Pyc~&zWd+O2Dfr=sdQ?=T z;4gpKBEOdmoS>r* zYBG{iqp-T(falK&u(}ov{x^sbyhGDA^o*IsQ`hm-ita8Ky1P7hI_Q;-p}`TK-Z3=d z#mKM=qk|eo2lUjm@uyaaZ)T)2RS&9W3qy8^SDv48h?+V!LKT5v!vaC3syWbdUzHZ| z>e@(@)r8_&br?!-N8m=S8Rc~r+^CI|Nbg!2xF0%D_dr8!yHg^*Z?&kXZnC4I-YQdB zub_$m(&$9>Jxzul5ElMb*V#~cM~9rs+YzX)HKVRkL1T-Gd(C#4mR1FA_Z^b<*7?MP z-tGXN_5~y!m>nep!+s3VyE5pP_}!KVHq^C73Ush|^;V+=Tp_#JKvhOT%{>*jTAaAk z?m$huidzpHsD13!{hystAb{L#(cywCR`hh7D>q9CA=m25>tj&e61xE)4wN_QQ*qCU z-;QzZMuRG^v6oLl|fuB_v6xaAI@KKq3D8&{Ik}L;y{Zi9%(sN zfsUk%NF=65ATccxN$DmeXIKR|QnTzx$xx7-&V(ubF%zj6i%U4j$gm?bQ<0%(BRkt6 zlau4zJkRTV9f!UTeb`WL7LZ6vu_HNE(NnQ9oJh~qkdfs=X0{tNpYz)1*J)lSfUw~_ zHpwpV5#*{=G9kn+CEu}GDss+7BbXEcU(^X)ypo8^mlBW|dlK1c7L=R`B0JNAjC42B zQZ=L`JCKy3j~Lz4G$}P?iE>i9Cf*NUoJm$Q?Y`qs11GVCZRfupw{&b|mw3U^i~l@G zFZLj%P=f&=hWf#Ge(*v*kx5Q?P2Fr*YkApM+KZmwB0NF%uPfLu~h za8*SSE9}cXD5><}LX~%8++d2q#cDUM-1ecg){nCKXxwOs+8iA~0=Q7)m#AOf&|kdm zmgKF=ciCs*6_tca1AQO_Bcp9y(x#|@6j=pA5(=##K*Sf=5O%oq!HsruFRs+Pajo8m zt95={y6qEFK0P#yq%loRrK*F(#%dZspPgQ{UBEx z-MD_wi?SvUZnk+)ec$tM0MgnUg|?@G-vy8-11@xIj1C`B7@dy8*i5_}2_y7`2!uSP zkx%!75JCtaOdsM378R1dAqTn#Oq&4GJ7SkLrv6Efta#0>7vR;0I2LD0Es=1V9+W zO8}t)66MT5td@>|JqcNHg}7W$j*RHjh&*D(p&k2BQW%fbl}g#KeL6ybGNY^Cj2@~W zgI2V6oW#SfP;~b*D$$F9!7MB;l%c3Vm75JF&>Ywwirss{@zu64?A+&+|G|H=i-|Rw zjDDk`V)q^ud-phWv;AHbd-mAH`#}hy;z95*ln?qo_PXYT1 zxV9wF@yw0yU%2pBLcl9NX0e)6hDB?Cd*hV(@vVlxz18sJJFZme^ZgqysBUo0it{;u z7%B)A5o4GbB(2e}^w0nOE2n(DPcJq39zJfAxqW!1r)Np4^r}lYw6D13_;S&LXNx90 zTQp;B!GhI!JC^5FEX}C`9+Z9!71u`;WQ`Pc{wSeVr?H?5}~>FH}K#>Z6& zRA8{e!mI;}^zzIqSeny^-#`BxGP4$}8pV%uX1tiQ;N^lDFXydzv0%m8ycz2Y7Cc|F z;l;9DhL3rU*Zyo)7b3B=6o$nWD;Afd@&02Oy1GlSW9Js^*trk;4%x6P#EG3DZtUEz zVfz6U+Yj1hcJ6n|x!(fEZ=e590J3vW5Z~-nuw(aeL?;CC{>Kq~_;~>7r~TM*U=Ko$ zD%gF*hn+{Fu>IRO>^PV%CUgSGo&#LLiu(V&g0=5>8g`w?#$ihlj@xn(p+w>0)eO9O zU5oYAOsuc@F+ZnB{O;g{4c$YL66o=u%Y+9HRXl8WpsSa0vmP;x_YVdzIOxORphv96T0frhdRA6q%A_;s1(6J#4h6k+DY|a*Q8oYVaU*BlKt-EI2 zs1C>Vn_(!sZAN*mO`w7h!o;YCNAArbgxtOF!0lECYMPZ_0SJ3Fs_*HBbFN+8ZgJyw zql%gaE2`@)sH)ZB<934u^-XqBUs~E6Xua>m{dPtGyYcvm8=YM~boT_%)9XiPuUp>e z>+bi-)&UC**%eaPV#Td{k*KaWp|UWs?RDA;Wn5dq*lD)lD8$ zHF{7{?~%p}e2d>p<8{@{+Y8S5F^x#UBTc+f?B1MM;j;mBYDm}PX z;lowN_TKOad|WQ`qU5R@#TOkYJa5P8Vv7I>8_T(Rm7Z%8#X|rjEm8m^G0lvmG@AfN zQksIqRK38DC4SPS!6d45u0m0rP{kBZV>pwom@vhWo{x>|#_K*mrlu;0PqfG?6=8x9 zLa>l%-VF%J%JB$*@ETuZTqleqCM(kCAzdIzc0?!J1waBxR(KOF@FbcLpXo&5r9}8+ z!;qM2#kq5_;ycMovmq_XBx_fh8C<(k5gX5PLX)Iwu~nU5!{O(RPj@0I$Ag$O70#$o zm|aI?w&awk_|=?uB1guBobxVZv6Qe_L&h2IggKC!??iH*ilkfxi8=HVs7T6Jpsx&B z{*$`dJ&23L<56)xnC4bE=rY2|ZL^2r2CIAdHA2BJsE$6qkFXpikDdZm42d zCtO^<6Oee{tF=LJbnxKKyH{@DxspWyxl-%HwfcYzVAE&zc{?(SEl4jiBlD~kIVB46E;^8Z zSwq1UmrUVRH_lx1{4%9Z`5b3A%7B<$#)2TOuwAO5f~4Zg9Vaf=I&rO5!?gxCZZzuP zQPJc@MY9`Kt!~_GbIZ;rjp+9}18C_9qOC6)_xpo*)E|vU1AZBLKspA!VnR0*kfDhn zMy7)pV;t*TJjQ1e1VXrqMF<%hk3;VuVZ$RWu$_HA^bSU$ZzxvI4~)9dJH!>NNOTWb zWrb;I(u0910tmmBA0t!6c+^pb*q8u9_C#RcP6fNSnQ{1l6W<-ySFjBK2My*Nf(Idl zk9my>2~`k2CxCFm!s7MVUQ^O9M)b%8Xtq>v{fZtCu3yD_b0zsIN==dVtJ30|;sH6f z_XNJ%y%$y2vhn8C9VtW`opei{{J@9`t_D2n3`a*#1iJc6c-$3<#~ltle(b~C>^V%1 zU&qPgyYb~;zQPxO*^YgCPhoF}9s9UibtD$MLju^k+x>3 zj|2~sXPI39#9c;qj)!X7eLDDjwf`y8~y7Yt<$c!74Q;e}xFgc@2T<`3H3v-KZEG&CvxZlpoq^#tOxM+Sx|PII_n5T{98 z{1O{0Ra86-@c8kK7eBsn<8QBBo51nYJ100lzt`~h4=()t(S@Jhd+~!nh!=l-O90`T zl}F6xA78og;U!nF^aQN8&ouFayk66d>5MCVv##LHGaKGNQ}OnhiVx4|7jc5nL1-Za z$oIREszm_MRSVwyE8tD^>OzDZm*y>4oVClp8Lr9Au~mA^DrIkzQwpZ%R4_($VMW8z znj0%?ZoFJ|>anRS`cZyX8wPb6)#Ycos4FXSlh2>$iXujKn(IYrSWvJ=7+f&MDe4pz zs#U6Hi<-a?VMD&JSycxQ`gE2Yc($bA`LZfQf67b7xUQ<;&*>Sz_7VZZA_~vzWt*ry zZ&vK!tS{*BWn32(Xo*lpFfskFLoc&O9p?>d~TfkBNO`mlNs23 zG6x4E@^I9Yj8GF}lh5Gg`gN==CJ4wb%qp0iwqbCLE39Tb=!!t=BNLk2Y-noH(-rA0 z1lcfC)qW zmQ4U*v1KbGbnjVlyVin=Tama?V?y~|tE^Jd(^1uEmp&mqxFsL~F7=PSsD0?h?fXvX zNm5o+G}uttXvfVa6*VnR+-lWuyUl~U_ub+zscTliVbYeU9<7R`U(v6@$lv>qTw)r3 zMDJvmADulxboB;gShD)CM+4(@TRSxA^Pn%K`kn<9^^v01T)%5V=^YEM-8SReEi35B z;93>eqRQ$Olr`AJa9-W!#@&ZO)IN%llHsbRz(%?i6%acvR4I~b%5WhnAY8$sncP^l z;<^@%<;Hpy0fUc!?>S$mzn1=BwA zSOh=}@Q@M~{_Yqb6PI8`e42bSh87^ey_#}Fl*O+>hl%mRYzRmy;es5fpicM7nK)mrLIHJQ~3!a1$ zJcaavAX0KXNJyjS#V1j}NlB3i22UV9&We~=8=_;Zh>Etz1Y<0SinSst-iGJ|u3niD zOtd2@+lRy~FWm7KSiC1-_8iCm2q1(H13=OXodO^!ryT+z$$56LIX(4^LyYKzki>k8 zyu+Saq#M(J{f@hSj;UEJIpna(oG`$5`&ll?wsn>d>V< z(n1yvvUu=pr5^1|HG!%^X+sd#8>0k5F5l4=5-JQd%2Nqp^ewwL($1@(?}MvTR6k;J zEdn3GEb}ISL}xn@%ybBR_)=APQxteotccIkkW}D8YLQoxrP9y2kbTL8g6lqgJk=u(A9JWAaejI3(LWzQ=NEYe;^~AN15@$n9m+*lZx!NVqp^RF3C9n|V9z!?jvWb# z62PP@DjODaI&9WVIdc8V@OuzM{tQ5Jhv=?%Zj@jvbLQd`xA8YDZXDtgK{x^G&Fj)LpI|m`w3d)FhZ9J@EVD zuz%lIh=~fpo7d%7UP;3EBmqRl-1Kh##Ku3wE!Dj1)#3xrI~IxsV@32YEL2qB-t zhXEiwx47aH09jws!GbU$K(Xu**f2nZ5JDjN96$&mhOdC{e!pDM<7bVv90G?9A>NJE z9(`TMxNaQjQQ+tKGY`n-JLwzIyT5uqW31Td0AiE`@}`+L=bX>sgE!2d!v}#t_jBkg zR#ZEvdJsB(dh5Z@@7?(6olBrY2M;Iy{z1b(KDuQ7{)qtM#t-jZ_~E?=e|_i1r#Bit zzM|n=+k_7S$mj6E8+d{dZ|GmHSY=+V+VFbKjyLNB5yz%VVtoHx86$Xb%}7^woU&@Q zG;hMvd;}KfBC#-M75JE)Q7}90kkm3JmW@u>F+QbYV$LC{Msq7}EUbC4yzYi{IS`0e zb+C}{?K368P#CBv5C*6+@HH~4D(ItFnzLb9loz`|$m$~3znnT;ta-4u;*!;`Lg4?=+^@T`LfL<(H zHh-3UOjU^2{%qD3!|~#IBv#fUF~6u{^;rh~um8IfDQPFL<%=!YzWa!D1Z~}A$JSjo ziR1oej|s-`-2VnZ*aPy#RtNSS4q)r9P=s6Tc=>S#>u<+#==dRQ3pt9AV*%_w8i!rS zVzB+YSZqJ61IX?JLF_*8zl-5La4J(2kdV+!91RcR#Hpi_5V*c@2FtTPEKHdM@@FO$ zuynMm&w}8l$735h9-0I~`a3Ps=|dHS z5W;k`X+}GbSTR0i!pKt-hWjlTeyXCs$AOMVs`xGL-Lv6ttra(KnNU$<#?4y0tW7bo zifc^Gok28p>BBeg2qSfmJh;=Y;Z~ai6^#~D-m{{r$%g6{Mb7cs-3KmN*=lTeNMA_n z1HE5_u<`k{Kh}d=4EX5i4xpnah|V5AI(q$5u-ewCcX>2Cbcp|iNnJF{m(`k4dWXhu z^M(oBic2+CT)L&;@@>93X{1*%mC7NWj5`lvaQ9&>YFeXFc`ty=H7YJ`)F;sU!8!#7 z3*D%TMnyw3uGhNcV+kVkcJMw!hYqiNzRD)=27vhFc~!Gdp7V9|k5n`=q{xjcw=|j3 zyB=`(bxJB!oVjM*7#oU8?ImFP#r}E*K!a^ST{317V zt~y2i$UkS()epkQSu66-Daa`#ggB)1kG_xO4D;st71yn(co^^zo1h>z!GX9$C*qSd zBqY0#oaB_%B^^YZvdYADrt~zIOj4o(4iyGt_*!GAIxuC55W=rRz+g!rAtWV369D0n z@IgNYuTyyu0HNtT(Tw^7`#!D@Whx9NU*^f42LT^60wS-%73Ke7(X~;a|L|VRzlsukSkeaVb z`W4rC2p(MfiObQ=(M-l7n4}dsHz&PVlXE=Jwsn>m<}u>-vW6@cuL# z$rUC_l{Z`b;5!Btjee9j1aPA+xH-QhfN`f%e@CFY)q|QgFK)L7ee{h7B?YTz#3R5k zH0j0YOcW;OV==WDkEw;kjY-~ALugE=64E~sje*e^^pC`Xk-Y<>KJ<^c(L3ap1gxGx zk38-j)6h5O!QfO9W|yzw{=+hS_w7-9%N~q9Q8@8!JVK8riW!?XZP!*0ux zm|dzJA^S8rZ>(hT$aO4P$vPI4B0~ZQP3Vl_by$)`0pa=;RSAxqCCOc9derckRm%8AM&0OpYDaIM6+L|>boZFi)1%^PpBIAz zK@1LL;J^Mkft+-Y^nz^rW+(QCL}1%iGj{FuVCP;xzS^djg)z&Y07CVHJ`k>9Q30U` zgo+1Yg8)L`2ZxWhZ3~x{bT*}P=nr8^7X2XffP{udi4i?L?JSDVT)}sT_aflkhq>AF zc>N|vT89n8_Z$pQ98@urcP`8s{c}@ar%Ii;Bnm z6w49qn4Pf6@G*zyd7a;{BxcD9mKm#aCRw#HZjg<4&zU~O8)ZKK{2b2{2sj^~8NLp} zhbF4W&+okW`+Fb$@sWKUI)Lb^2bB*E|M=v@Kfl-TkMG_1`J;v(Kf3VaN6%;D!;c?* z`0+zP6cH*RT)X1;AmFh9M+A^(%NDFHnq*$A+VF8}mxssH!Ne3n;oqAu(h!rDac8pRjo7FJ2=)%mhN0bnL zJXg2=Xx104Fh*bTGK1a;W7e0QSY38tc~RM%l_eExR7X~+h$u3I4XPb$%L>+4R58Fa ziHqPx1?a1Ky{&05g(ZHc1!q-s|*}6jk4enoWS4Cm{YKI-)o%A8hzx4uZ&c8Q6O?3x`gm;JZ`FID9fydOetKMa6?gbe0bqL-YCP!`B#% z=zEW)V(Z~#>^YHu1IMh0i`VdS^$uRI|E&)6hoZfevD_WiJ6^kJt3Ee|ZHyJtgn ztrd-J9yGSOB;2FiTkT2$25*-%vzDJls48tmz)Z)JfX*R3@1eB5bM1t{)4 z@q)uutXnO1+`MOz=-%6{iugmguEp!koqn`-`Eb93K1nwocX~v{>FD;!Q4%9NTzJyM zuoj=JEE7C9k9&jY?2W>cz9=yEmnQgI&1T$cw&>|wtqxQ-sj^~4)q@FC5~W*Z!Fd@g zF0iYkMv>l*&CZS*MUU0J>%ygKMGWVK*CJ3)fdKfcG}?Mrgezz{2|+svZ283pZ6rPu#{EtQT*3q^!EQ%qiOtl>hL50`HQaH%|ii}ZYydgNGi*@?Vj3$o5c z%CX>rA|-=G7ah{`ak^MTF7Ihi+r$f!kQ#xwAFA!};OuUM?1Q%lC zHAKfckd){U2qB1Y_&gzAL0qg2G0_&JBx^`aP~{x2@wqYdS+HLth6+fsDn5%;wxefx zz++0L8(Fylq-A@Nl_^~?waN29q8(Q%@=$ak0iLMih)FPsibIehSOuc3aQh(l9FdbdVz}UVmETn zdF4nT;ks7ld8Rk1NGn!B<%7^cWhCRQ8)-$FtZDHEJ@t%JJSBR>FH^RB$hzPb_%M!C z4+taz23Is>l-QAR!HUd_HoZ0cvJJUc6`8zis;qA1Uvq;UB>C4I(A5%E%-zNcmK^J% zWOa)`z-DzC;eQPvJ^_&2tA1$?XVfm+#0@igLV+T_kk~x?=6V)8IA{{5&w_t;u9fLs zD7qTMo)fNvUFI)KgNCwZm%zu37AMMD6qGkBxc$H8m9xuNEG^q{o)tt8T6rNK!4oJoA)sv`X`bwF?Shv>n`H(f#W#5&xeD% zVsY$X0*-wfhZEn$NC(LN5WS#}>sCetF9C#)nRvzC5BffMj>?FvVnrmv5}qVwgj7Ea z0CCyVq=b-ByqYOqRFJH=A}Jp{oqSGWc-2#0gdIEqXG92A=W4LJTqG$Z%d62Cn@}+} z&O{au28W#JA5ieL-;TbgHuUwW=UbBd+pe= zB^-N0qOf(l3tM-(ux&SQKpav=xGzK#u;QP2-#%4Vueg3?n9dC!2-Ob*K6vEn)uBV$ zrcZ>)S&@-(C_Yn#yqpr8IC==hg&NjZ%P>EmfSFmRC?HInnrGCmK!_83N0R&VyuoB& zhz=mX9CZkB3yh3SI|VvMCRGei*fBhz$cmcWj7~c+GsQ$J`UPB)a>ck^DH2=oh;fXX7TBH_E>qF+|f8y>TP`tLw71qr(qBmjNFH55tT+J!X-|JZAt1;e)^; zUKFlhedYr&fP?Eh1PvaI#|C&99t&ybd4}I(%$~6-?1zp<--I!PuAsPY2BCAGBbA1(FjE@ZSTAO3o0!gNJpW>=1v~b6@bw-CcI{VjEKI}d%XQSX z)M4A6qd0sbi0uc0*m@`iTaN^=^=J%s9!M zBgYfw(>NNDvpL^|XXD$@OdMqC;CD$9$-DhfEVg}{fc>GdI2mC>ex4t1*Q&72evf{W z^xv>eo{+$zQAW7g6<9=N30oSu)``wnRlZ|?A*sndhTN17Pa*)U%FK#`Oz9vdGy(aeb7-TD^^rEHfIAo9`yuZ%){P*tX$RJXX=(!lDF=*It7Yu(SOmX;zq5$ zYQ>vBBW`qZpd2RkB`H&5pK>vgmTFfJecVNSwK5#@RBPtU+C<)C59!B#`JI zr%0^=w=RsT1>?wb#&E5Q^$YBR(?^rdk6%2)Uhxp0y}?y;uAMuPbA8G^{Sw#J zHJrZaM&1P%a!WL17FlunoQk4LZj@a2GL+6 zxx~hEz4g4XM2C><0zHN|HQOXc^w^|uM8$=P!Vnc_f-e{jf0Rj}gYXd>?~=y}aSj0t z14MWva4^t?5R%Hq@&r}DBqQAm4xjT{T)eUgAn{Z_(lvn&0tlf)KqSi}=Xi}~aK4U1 z7@<0olxjw7!YLh=QgsDH2}Z!=35D4gArt8dL%4PVYE&e$i(_%=Mh>!zf^hnd%8C`C z${%Hc%NGH+KN6m33*1p=sQz%cV=MwM{8$1k(xn|FTOrlV5S;^c7vzV2=os zvuI#v-voOr*lEGXJYR4%26>kPq8Ox|)gRjWN#gC`R!9p!hN9$>4LwZKOPRoe~^8}(px#D!srcywTB zkWr6L$($b^ipD^12LAftF}{B{gtR0dc6_}PhYwh>ZL0;_w`-EszkQdc$8Bx^$e#V0 z6cX+~;NDO{6oCrD1&6RU&DS7k0%fDv1f4Pa3uEb+=hGg1^C-v z8!Eh4VZKny^bFI@fmQSb!*C;uJWUoo06kSH6DdIHO=;&JNxLe?DBv`JYB#*->T1 zgKJfvs~&`osZq1crDDelkTk`bkLW< zp)#SbTzNpx$4_s4p!)HT4}K6neiuMCR!8= zu#&4*R6B<3(k|WA6Cvu~(*Y~`nKU%%1pm!UN_iZ+W4N{ziTP>s?;aOsECL!l@^y1l zCd^KS%h%-Bou9X2X3mD$S*y(4oCOODgb*861U#%*U9!rbjey1BS{47E2o7)8%y_>Z ziI2}M`1H!QIqzTE@$Q8UZ=TyXM#ZZaDqcNz{4y_8ff4c1Y^-Gc-eW^8A*>iHZ(P$N zjJ#Zrz_aymynpY+@|qJr{Cpmteym4S>~U<{u@yUag<{)IJJ?z-FtN*qZM!VkCPy2- z*=`jzLn3<_+xrLe^=IJmh=S4HY8RO3dZ3{9u><`b4h(cUG1TG2P^TRe zeJaME+A-Q|7nP*%v4YNaJ07;!(R$A&0MbN5c$0#AtqwFl)X?_CgSIDbG(XnR^iV^? zLnpXOb?>o;`(0kNb^FAR(fC-!gB~|nhqwdk0yFQ z`Uis;9F9i+P>jse!D#8qlD@3IC{aEhcKgxZ?L&K)ANN@p%&&i66)(wMsxbGt+U3Tb zRu8J1HB>dyB(5tHR3l33+~NzRN0b0UZ-uUGIA!Ij__`H^S53&j9D)4HJep8=)q%0e<=RES}IQ`9hgPr%dg%{j7f6b2z*P~HV8o=2rUYxn4 z$^CHNIlI6IA*Ar49p|oTIA7|LIY)o(c{{QSOi0g*Kzgo8;&@||Lg9}&j_CME_@l$& z@rS}2h(J^f&DuJE#Kbuf8)KFD`h<9!tXgs1Dlx$hKBvEe>sVa9;$se1uW0&CO>rV7 z&VuMT8)6a_#HTosluq@-hqP?}<|L$QNKA9d@H!v!9HV!+vXz`>LR``*5SZxkU=**- zPvAI-2zNNF0Sk`XkAV?PI-dF?RT30M|e$ zzZEzFCV1l%s6n%gJ3&P-%>!Sm3(j~u?9t|b2N3?y3rLISQ~{7&zO#SEF7QDB$;?-g zRp5|GFSLp|n#x1rb+@b?6_y5Y`ifuvqN#$gi$X6ebRsF=Au5QTuH`{ep(15?DQBH} z*G91ee4KXPiS!b^ah(1P76twmL{iRKz+v|Ylb~pFPc4o_`ngEtT-MvsncyU(ep{0@ zD5?>Ryk#O5l@hLY{R%*?dnCDv=~ekmqq^ai1S^&Y7T@$qd0=6MhWv6xN(A%E=uOeh z;D+bo>K#T0yTzk%^{!L=6J?Dm%9|XU@Nu(ULG=Sw;_K=kyP?moLBs%(yX_v?_hj51 z!K3z(iiQpa_qr7{_d3w}R6|?83+)3wJRJ7n(Qr_Xe13nxEzcj12Jm(3^mVeer1N2%@FazcF64bpA4wfvJ2L0K&(H z3H|=l7|;X4B0{cT5kUH;Vg*2q9+3WtfB?ww6j!ix0O1-Ihn^4`(`iaKQn3giG^Z0l zsDj8k)^M!+$F_Gc20a7OGM@v;#6lh>W^SOUC<7;ss0crnj_{+W<#^(|IGj4B0|lXi zJ`V#zsD!ZZgV4dD62jLIR2bJQka98xr;bK#0tnZzXh5d|;<2a5%Yhyrph z`>L#95kSHZA3;r79A2(n#o~Ojlwh&Ndw$-B*_miejz*WdRY{q zWMs&Pv7uxv&0WH$w~tX=5WwCYTk-9IaD4s6DQw?n$M)?GY~A6Iq#EvmZ{Kal&b_J> z5{B&86%Z;OgbM>OsB{><51TDj0EFvTMqDq!gC=wq5;`2&k|wrm`*FlY1+lvH5dZqe z1I*8-NLrPsAD=5AQ|hl2kg;hOMyEX(nR3evPr6{t(1Zr2g3;sCJ7h!mfJKInd5#gq zgTodK87n$$Ip3J!QJb6}pLF1lW@6Hg=_w1Qrz0^vZI)K)nHdXaXU!Woq`w^J=4{~2 z>HNH1Zdw->_^!Ev`Dxp))~yH{e+D2_Ka5qe7i->)E`ICYlH|H}D*;vaGU&w2{ z2ZRa?eJHxGLz5%duw(_x01%qNxqh|i5P!w|xCygkk(e2dz~oRErUt|0I6b7p$kcEc zrp6*LJ86;itC;#goTj=;(})^+Q6)FmEQOxVGoP^qdPb{J6PfnXLF=dt`pY!ioS3+#Eaz*9i-{51_hPP{0yjzRh z01z`iy|CcZ3oAanu;BeOE8aY_{4RXFeBr>$7n*>`o97NO?-Md<;{Uy)4ka|T+jZ~} z5V6VX)~jb`@qxT~Ys37~|3lb&{_QG0rwlWDp=g z0t5&lvT??t?26s>JpFXf+?hM`V($O7?q~0VD0g>t&x`f>NdjY+O^Ne8d#|;0c>lQ& zzy0MQs_R80e3ih-c*l+jICjjAqa-q%pPRF!}a~5eWyi`0l&| zhfi9NSJH*)@EQ!FmpvyZFJ$4!**qLNpM!&!yf|>#i*L{6;@i_c29U3hiun3FJ3s#R zxB~}HI6)`9mT*Ku!eNnLqjfA=y`lzm0uq7|0+4i}4#}1Zq**fH@>nr9*@pk;r`veH zmVx&x7JOW@;N6-XFQO9G!vdCOtq27rkRPId%!S@TJ01)w&Ebz}Eow+W|B$GF!mz;W zQ~pr_6Ju6PjR^>j3z(abFh40`F(6?vAYysijO7_4B2yMDOjRU z9|SqW0XyqU0HJ;ln$A4++wqu^Er)Cz_j{+`#z|AO9>snOO0~LcMayk7Lq*)w-FV%C zs&*|(n^IBMoQ{fC6+f@()Ugkvq1(itPar~%2}-^MllXLm*0ks`0fqu81S%H(wO{_a zx@#6tuugTC167?euk=%&U0JJ*VS`rUDWx^L(#Y4Il;T=YYX=o+lPFLrw_J~s8WXCU zZD{OtqWP*DOsL(%o_w@kx1+5`R&-rLZL1NbHEI-BsZm;^ zLvf`JzJhc(ywn7q4yQNmcL2#W{T+bNnpI|omVqNT$F%43P<$Ub*+vEqGNu!dIOG(D zm8wcNs;j)n$+P@l0ffNhOA&m;MQL35MdSfVLspIgAQZ)`ms62uO+vb;LW+=%E9Mkf zd{$U8j7Tz{hpUi4vJBO&IWS5o@cIN~<=P-Pwa^PG``{sF7~v_fL(Uao%`m{6p@*1l zW@#PixNJO+1p3P()wNncJ8g6l(N#5?P}yKaVTB4M)moHRE2S$`xI%4@wDVTeBA}9b zJ-YNiri|7fHfn#nwrU}*iYQ++%SPwov8Sa zCL*Qn_Pqvjfu|3}Z5EzDP{TMkmbb=Nzo;`qhrBusLr6)hMv0ZZs^La-f)MHiApoJ2 zENV`txLIx?@3L}PVC6L%s_2{PrVaJCWo|2Px^GA4QxBK!bv$u$d~W*_3GGirv^^Hl z{z$})ekYr)$Z!>3nWCLVrPb5OD^s*KMKN`>8bzy8l$qT-A##DwBg+5Y%K)dn&nM${ zJQ;WF$*#onO^SFjVa3yc34K#W352PTS9kC z_|6I4J=xPpPyvuf0S`|=XbSQ)KuK5*E+V8JkijV%{PQxeV1-t_Y(k%j$RHE?-vfvf zD_aVLtZcd26B19yqNJ?(Whba$kUByZW1jui^go<{EGY(eo`7tWU@_W>>}&^;E?ALv zsR*eTN|Aao50}olaN(@HKk9Bfm+#W=zRAFgXKp;($i&tf z$&Iab7q-?N*j$sbvFgD3iUX@r8&;R?SYEJW_f-R;3w6+|6L8{C0xq3NMnb|FoIWMt z&>>}I;+w-dd~;Zf14qc1Zsbl7E+tG9_NN{M9+Y}TQ;s-*&`DqtU&|s8AwxRBhs{<6 zQK*7CEfd8Bt=L}Q!2kH$b58Wy*(t!*mYvtGD8@AI{owVhRTGzYQJg73#v+9U#3Y1Q zL{2fIGDd2GpN&{JTwrQmkHDM`lc4DHk^lf807*naRI^$ZJ*L-!3r3D9o?FsmKBC+q zr@Q3ze0EWX(1I3=E9QSABO)srEU%;^8dGCsRgKu17O^$W{sk!|d981f4A|JByX7Wq zJu_i@$AX<_7QSeXdpzQvk1yA+;wxA*{h&21>J1^E%7-`9U*g>JcKq%Mpo>lALR3kW zA|tb62v^MEzkE;dVdK>(N~}`A!-cj~|RbzEI9kEC{RwC*A?;Ty!AiAo< z%DR@5+h`i{C4lhS)!yXe6L~%uK1>WCKfc!Br?(pX@=gH|nuPrLPRElGnvlfTtv>8p z@L^ZL`*#A~y%+HAoy3pXGsEyfo*sgbe?Ao;rFFcxA1H35C&)44^9MaXyw~8xOATJX z&%%HEpHJ|luL6gUe1pVOI-EQyHRZUZ zF5z{mc(Xa3Gy$RF!9%Cq3?Bp|UmdkEj3gWq_@w7NK{;i|d0h@pC2Qeusk|*_!N`yE@H&{m>n-7Hf+udh|F3s7qVe;#)9)o9^MFx^6N^kmAt=BJQJ4K*EkokBTVbKs}8oJ}P29BJ8c=%7{kXSXuERx|)G#EK329l}yacI~hR8_rU-%LpKv;@Tyn9#s>DM zBPKi^GIEL*wWkk^%jg@G@sOqX?eLY^ zkX0(dS7Jd{kq&tk29z~OsBL$mzSE7`4jC0>EvPr3s8-7=Y0#po&5Xuw32nEWT%O%_ z!-kF<66)LaD6daPX>B?x>UAiu(<84W9p0Q|_JSx7qGBHitt*iM-Irry-$Z7H4nCh2 z1RHr2lS`>r6sMbK;pe_AJxB9aR=7}JPLmHSa&u`CLUFqyuRxK{A~Rotuh5R1Vh1a` zNCqh*PlPvDU@r!J9zD(~u<^(8OC%JO=#ZVC3SVwIa*E760Wrubq+3&=617MXG)T7_ zV9F90LeiyVqzM<`tFYtx!zQ?VR%GPb;r5BJ%37FhYDgX<wH>tks(NoBAtCnw3;6B2RCLj=w4B8-q&nJjE)85B{7w6T=7fXXMlh z+$zohLdNxGT6u~Ch_e1fYgr}jRu-*C(OOh_y9`Rz;z>xomOC=2^}M1}hsvuOG~Tv= zIxG|b5!syHbX(*pNOiXb6$BvH1XOm5sO}MY%0W%#ZI7J$ZQtEPPIM2;xISV>&!`PI z{EBW-`Ch<_$CH^Xil6KCyFdnUf{q*gCfpqn89Ep~M$J6+AozF`5V<+@@i>(bS$O~R z$%L?<2i`a7K;NVt{ZlsdPf6&bsmHVl13?3ZW(^n(8{uCxV{Add1jXA%-3YFF5n9Vc zXf0zOLsZ#$dnuYpa&DP83@d0U_7L}anYOC z_^jjaM0==Drksca2*vPHf(K1>`sgkbt%psD7@85dh>)7l<1xGhAXFAe{tsmWq5y~j zA1*}JU7U~=-N*pl>6u-kH)feZgdl{bA=DGHz#b4=)n zvu!KhymDb@%Zcsv3~aAwVRO~R;IXxC$M%MkVPtd7iS?L_wG{~~5i35tsleKD1$5~N zIGB)tlSfbC=%FMWJfOkh!zR%B#Mg(k`0Ah<-yYV2_P*(2e%SM588z88#%$Mnr^`1OykYm=2pUHE&`~g!C8>QhcTsW78TI zJ*L+tLRw6R4VYfgF^o_QGeHSGpPJKQVpfH@hy~OQ^GD}g#DLkQbj(Fku&|tpa5N1| zE9qETRf8@{BLpIwdaTf0@+|`wnr-fwvGLr3?H5+=q#*yv-z8h^tz!{zkmzIN4WY?L z96sK^cH!e&559j#QNeV%V@o zgY-Lq*zlKM2tEu7fcyc3{PvR)&r4Gm`m=uj+QvO3A79z|{Nas+?_Zkn@r8x^H|RNu zdN+2rOn4E~F@!u@)-Z$+cx)|du)U;ZDU%Q_rwMIE&DdD7U}eFK$gBzBpn(&Jf&m?7 zr*)W{H6lE3!eYd%OhTe2tjCOC_*fwj(em`^%ad2(2tJmzSY1|OHKI}AV^M|Zk_yq7 z7R!4g2w7bx&?GO2VoE2IIz{X%-W(-5_wySQr&#^?hFaXU`1P$;0g!h({Ip9eS$g({ z(25jKE#8{({;d`7cCFam75DY-t+K90lcj&BxDSXz0O-#_QaVEnyoN;pvb&p#x9{|L z`+Wxf_y0G5XzVU7T|SF5r}a2}(uGqey^2n`aO#wOU&l^L_;-o}2fbg!KkxV{8%Pwt zd*YH4=hJhLcqI$1U4C?Q58&W;={R}Di|vv&(!h^+07Z%0^EcvZ`hQ~zAj*18jS~1?I07zf2 z3Ilz5jM7wO+=8)5BgUo-@K5V8L5B5t8Ph=tfoTELK@sx{PEI~N7?luR zb0D_iWJO{k!Vxn<6#Kg7aoN6A3~XK*l8Wk1DHaz5OD$uit!VLHB(#uHH4H>#l{>dC!K{n|4l=YPxPi zZKnklEqatTs#pXg1PufaoIur0laDU|q|?N|rmoA1hHEyyxNq#Xqv4u}x-OAFR^4tv zRhyA7{wrGzsAw_r?@``tKpAO@_K2i2{z;(xBuqM%xX!Ws=q8+EAZAlQ=8amS7J z+YXNNZMz|$vCDw!78R_N z)8ijIJ_tmzvvu4N(%znrd-v+l)Z~N1kpw|F&&gM`enn70pg|Bq`Vu;vStgL&*%to1 zIH(YulCbU60ne3jp~yxq*x7+Q_0yJ6f1khTXR`#~s?iW0I2 zLh5c>+00&k)r!h)E2?{}Xt*n(^`Qe@{Z4cbxfndUhi&K?lW=of!kvH(_hxK(5VGN6 z$bqLpH~NDa`|6wVvKNBP;binCvp7vWs4eu~mU}(mL;gAyp(*z&_!$<$L5rZK;hUc{yThzn9WaMdvf5DE4B^N`;^a@Qtya=vl zF@*SOHEU7EWW>$W5IPA)=ym_RlP4VhX)ng6JfL%YCIf-lOia)F5M1;jFz4m*Esbyk zb1p^m%9wb3-owqOaRBKZS2D~Wjf=`!SwLU_>6*AG!J4K-u24Nxs>?{Z zB(eGY!l^7=J}2Yic>$L%IC%AnR;uFq5*ha!?GfS1dtsRwEiqucEcGhnvtf7cCG~E?jM>!pp68h6?gAJf|Ll7Y-0?Y_4Wt zdo3GlQ5owo8#dQ$*xr!wY}1474L1lvHdbi`#f;Uch!1aD(AS%VlSdQqO+o@Lp3~v$ zuTyaBxP{Ye4jeV$+atO?_^{$+qKw3IE(Q=?N5Q_dDGlA*;y)D*#?!Y5I%wsJ4>}1zs5645TpY9e(u&_m=Ao0v`oII|^@$Y0D z`_8>58OM%EIR2f)=f7IL`p4I45<)QYC5RA!Bqn=t^0Ehsm$T8(I)akQ9vnEL!PyJ> zIF?w9!)HtJ?YRPcb>4}Db2cQL_TsBknfT_UGT|VoAh@9E2N}!>M92dYH=2_{onR#H z0io5aR6`BJ$z^R35><8_JAV#styy@zb`_g5F8sLa#%|b*cMBHmMr1r+uwgxDMr6i_ z`56h5(+>1ac-dpgT^gfSJRTG9bX3^C03RN)V`Nmu#F!KQ5g8MM4vY`Tm>hIqYS@L~ zhzE0{PAvHCSn^9)@Jk4f*)Th5!_<(7iGB;l`pp=8ti{NX5fkGU?r<8PGGcs&-lt5M zT@-kQih4(aGa~noEG;>)vf{?-su!`C3zUQyU9lmyMiP1QN9&~vOFD$ZI&NNHUXU0> zmKN*?hwa>MK0Ql?y&{{`spBKQwLr;P`_~sU4u+2>{Te)as=?!a9r}mO{C7YQrlfVr zpvLuEkE{$J*X~(x{egg6k7e9`>P6>W4_a@!7$9mXU5Yx(+D!}%1S9bY2Z0BzXp!hK zPe2$z1cr_JE&>l58m`Kyzbc`&L*fg53Q4MLHG$Gv2|CKjkI|$@X@dbJ4V1JhA-9IM zYi!6U72qwg?nyvKsR$uU3(=>8jru5ZEpX(CEIC(%oMVO~TaCrI7ZzYH&}Vdabaa_3s%@R?xGG(hs|V5VqXuMYHjc8LRdg{!DugR&+y?;5t;wxZ>pi01nu>hD<4 zNTqtcHncw?Q@V_{`$}mc^@i{Sq|1t`YgUf;ZM-9*}#Dj5x;p48~ga_jmJe(5o zBxpzftjviP!$BK{_snNwvu^llUvu8eq7^0vkUa>AuV0NVSm0k2F*GWqU-lA4(j7r_A0Tsi^`;f)~&`vnLPEFobzIOF%!Xv4|B^t z9^X!dogmRT_e;@k>A;j@uRzJh(SeWrl-i+8b)HU`F)$^d&u_rvQ8oG}bnwp#pc2B+ zvI88$yDoEQ$I_+~ku4W{L8!-r0E7~{;LVOAsRO1e>9*opG&W)x@C!)3~b>Vh8G z_H6k3uH)77CQkcViBX%e4b=L*wkBaU=EBy756ck=D=Q+_*JW&OIm+>j)fIgGRT`&l9XVjY*9m9&_dWPc z0;(%dELuQ{E*cS8)Ug)AW(4O%Hd0Q7lr)!#X)F8zGsY%O7@aV% zM#l9R_UkY-re)D%dTn$2sKjwzfs#KyX|*c_f%(e} zBEh8;glHlXO-Fb|i*QVh=%yL5EfaT8tnXN{`NGEV@$9t&FJ8-d`9kEPIx4FpQE}au z+I=nK-D{bf*yD}u-|w}xfBxXXk00##@uQ@a{e4ip9-rSUhI8tZ;Hk)7ufz`@ly$5h zKmHCO|L~0r`&~>|8kbm!BLU{nyV<{Ph=iNeJoJcLW>?gwXlxI~RW0b>j0&2_Lovyj?fp&6;r!LUec$ zRrGSjh?g-Fc49_6TQMmBvS`5Sf*!GX1EOIQ8;2KW^auy_SO^(-Eo*UBk0t8Ep}W5e z+AqL^AmpF5wxR=RHL8UIAQ}c>ntm)tlnDq;K}c)l6WO3tE(Jg+c9)vg;{ZaFh6-9#1y|Ya;g?3YrT49Wl@{^t5=j5XT#gq%1N-Z z`^v`9^W{l@hIbSf{gPszMNVX+^fpRl+gVrR{jLc+&o1NLJ01IzK7Ovl9S&g=q;hlMamdJ$N$gz*90^ zkC6#nWDRgHh>hW6bj*Q~VFyMA?HKNpF!Dsi$P*jJ`eaNFxG+8BKzQ7tz{j{9;c+`c zV|Gl9NEjcqVr0OKp#dYekW)-9wTx5g-^831w1!M8$l)ai=4T}?K3oV%SXpvlBj&}{ znxfU11F;pEAtbUaVu=cBBWBPlBBdjS!vYo-YzoMPZ3xcV5C{tJPgyV=uz)*0W+cA8 zAn+KZo0}mwYdGk}!$A|MIsN_<1A6;RJPD%pD~bv39kQX1;`ga0fC>Y9O}PHRf?JR6 zxIf^=qv33H-*z=LDDoDG$S9Uz z^=ctx=pbd9VE0)dXIuHsJl&nQ`HYZ#DtHT3Tq#k}BBQF!$pzd6HF{)Mq#?gXjlw!L z%9;(JkfF9a4hE2xTT~QnK{KU$UDuG zz%MLSjNd-h3O}xgwm|W=@`>=vzvmQd=&-;!J}#--^O&7fR~9$ggz3TVRI6N6?|H zU{Q2%Ubz*%5)o3C0cN)mmJBO|Y#CCn6ZU*3%vlyTqw8JiFlVS?bf+P^#D%OP2lC1? zkXP=7)u}_8@gls1RPAsTLZ%7nLK2(W$#^bgnL%q@YFirYc>)sJue;IEE}*f~3IdOY z4ioaq&co(Ch<<-5R(EcrvD1jWvWx5$>ALB`wcA;s__2b@bkvh~qDw&aH9IFr`Ra`j z3X&icrXi!&!lH?WJwF+~N;RJNYw>8f97WZs@D-g$L%W25iF!O7s^G}9{CX{FuRG9q z$BV}MUew%iqWqQ}6*p}Bxanag+Med1?Qu3*d%bAy%|LaR4&{v((bkjB#@*o#Ng zb`X5r@*B|`u;Nk3h9`3}`a*Wz%M1ivpmYlVj00oS4o=CS)u^FKc|WS}iC^U8sgaNe z{`pLd&bfI);-{wZ#Y{{tW${VPaP%7X8XDdzJ;f~+eZTu7F2K3T%)GbZ+Q(3FD==j8D?bSPZ`jIWcB zkZ=JB377bJLc(P(D2z`@ROxw;tnCnt^~m&8z-BX|tXze)^*Vh1T+hI?G-u*F*^40o z;TZvQ(^iD0j0gq{m=2gQ7jk1Z=*7&G6M+dk#>Ye@KYzf8!G0Zv2J{#nG+<;{kI@kW z{9^`;`{|CN36m2h{yMax6W8>V4slIQ=`b;&W{n3ln4H#OGN|8!789oD^_U1HV`AJ285HyS+b044@x7olo_}x0Z{N!dA%Ff} z2I)`V+c>R>K;o}|rpb#LKY#DQ-+s%(FQ1(J+Ap7|zrupQ{OZ7e{vzXt_huHQV3FU1 zrY$s?Q9KB7BQ*I|ta!g|#K#>oKE1H=1mveTHU<(peV=mgW`F0px9n&Hdh+WmB~ar{+OEGNd#iFj>fN3=gB+z_Z0ZwjSTCQphev# z&#BoxuIDCj-0yQG#DIbh$Xi4cwYBF~tUeR?|Kqi10tj@spWE>4g~Sc#&v!(;cxF@L zq&JnWnVk&*q}MOq48hbWPyHbDee~b{(uS2-3ofS~M#7PkNcc{RuTR?X%}FN?oRo3! zgp4DnT{wEygRjrIcsfB73QDO;IAue^2@wh3k>A3?DOHCPU2F^|?**+s9XjJ>eVgdS zp$i_INYBH0T`6*Fo-h;~yW~Y;QVvdE$>ClP`hAXG@NyyHsib^RgZcT?Qk+XK!v#(C zzRsyCaVoVGM=#~$>$6!%IOV~?i@7*(F&E!n$l>$Am3$mcE5Qj(1VktkeoIR- zuVXFJ&%tGva8-*@|JG8FgK$0x&=+wXi8v0%XJGnZ`!zlyzRQca8lW-1FcpmYgR^{ zo+wiknxs%4opDbllr?@Ss)Ue`Qzjv^P=q_z4C<-y0z)b?W>bU$=*c{8o0 zwca+M?Uo+Rw=`(IsX_Bi9a?%Qs7c2+>+>pfC@43hph8A*xfey{E)-RWD5|vnv*`5- z5&5M8m;Y5aW}v8ChR3IaJ4?%to7#&ZICOAkiYO?{WG@Dpz-=BKN8z5iau8{T({ShL zQPb)})73nbH@J{pVq))0ZkY*kRx+|n47`e#Qzk&jOy|`!>H?vuQD&)YU*2NJo}pX^ zqf5nRbxO=4U?JZKnb#dT0#BAG`HCh?wk$JDE)~OHZk3l)u#!#ZaY=U;Cbt?1jU6@y z5ZYaPG*pBe4?HNSxQIu?`Ph7Y2aR1iWEGv_*J@fcsBYHsh>2PuDXzDwT|i}r(*B*- zV1~C^4|kOwo>~jMbygH~xZxoKdz%ft{#ra3E<=9#C1e*R;`T!-UF*j5d>c1VW|v$< zer>AK@zHHX)lCU?_nfG_V@LTd2~~GxG(Gg9{i#pUBQJY7>bupr``CieVm=n5gn=3kaDvKfs=G8CHTP)J zhr6RPdIn6mF=)iiArr^v-t*h=U_xf!!{aGhw^H;t-~o9c9{82jtH;w$^v$|hkESKu zpRnN0gqZ>4VNhZK8JKf$>IIbtO$KF5%-AtLCBsi|T2t~qhzw5H(Ldo}!#G9b`sZ^v zB6m2LiLtp1jLj=hLMKg50*jfLjpi_X%tx~kig-aS;^dE@@;>rQ(C#U{Y0;`zf6&9z z8j9zoi3)i}rlSr7V-5r(HiVWX%rDcrlM9Ox56At5=iQi{b0HLVU?yzG)SQILkbvO8j6r;zoFx{30?a9V@okgxj}sp-MXg$>f0{B^SwO3!u7O zhNO#%_k$)H)b|nZ`XDa|K}bSEGDArmI%Intr(;ov20_W$6B5py5^z4z%<;Du&zNxe zoCRqY>`-5J!jR%dWqub5T`f3&geD)QXsc~PmQ#y+cif0=7GQZ(!s439THdsSM8<5I z;?OimnFx_z#)-w4>-WEtm<_AXY<#!=@yJR3@BQ)Dehdt>A}u8yr;e*|{;UOwi2_cZ z5^yrnhBN2gICIg7lNU@lc1DX+iAGSW6-_wE`$1hG)Pzpugk(skH7uL0f=^n(BGG!5 zUZ01w)Er#CPzbZG8hWiAm#-X0Q;Pvx+YN{jV1|@C*Hq5M@DUIZ3J92)uz<4l1LJ1Q zOgb?=;ldQ{T94V_9~Lk=XyFLUp*{nK2lN;jG+=Z{kFj9`#zzgHg0M-yiN8i@Qis_| z&Avhb4M@Q~1twK&VxF4Ta1q(`tezX?Ltzv9MFMlF2!vBH9Zo}NNsYN>Ey62$EX9o6 zJEDLGL5HH9Z9C%H-Vw0#%7X1T2G+B;M!a}y!pmJVUcFWH=B*i|-M1DN!Nu$jh<9&He5af4b`ywDr0b{m2K?!x5r6(@#GgKz@TU&~{`A3y zUq8tB^@Ea@MJqtRe3tO*k0Rc`*5S=dJ%0Ydga7)i0Kff`!<`m?`*Rll&;KmN|M*KT ze*4jdKmXw5iO2hwhW$2lGD6b|61^4|#nHas*8dv-u`!r@cxGZyiJ!06Gc#KAcF;=g9a+(3E_(6pMK6vd`QRwIgM;VYNT6umb50z;oPiS;JUD*djpOIMIDRez$M%Z_ zeK>k13*TML$LX{(B$=C`b6$ld^EQl`H=uQ0N4ldEXLPl=C^X@c*os6`Ely~waZFc% zgUQ86IO9UXfpnP6BF3JUV>^_KopB3ZPnxkaDq%O2jb}jz)`J380wxBK@PHL_PX*TW zfRc3ekMQv&fD8=@7#tKa*k{GSQws+BL=5!{7#*;~KP+)N))c|Vm<5x53nnP(%5TN! zxX8&?1Ru0YJv!^f=wcSemV6kE_%O7TjgciU#^P_q4k7s0t4!VJQ zcS1t%vzrgGl=gfdPadq_x}1Q;?cAJx@x= zSk8v^4l4fNKHWJcZsQi+Dp(w; zFxit?^jL7E!{$wgJ?kWZiVe-M0H&LOtgwi?}N@_AtTxw5!ob8NmW^eRuqsiy*3}R*9yHg6^;xGe1#5J9V)0y z=U}p5Vc4P0j_Q^SR5UvI_sA;NfRtUPha)Eyt^zGQMS7Grc_HU&;3_b}>`8&uo6d%P znk12j#+he@D_?*k*TPdJ0t=cVWfa>PHmE;@CQkG^iF`H$A@rJjAA3Dgi- z(P}|OyNJRjGd$%gxGS~DYq24})sBo>6T^qE-i)69G7Qc%qo#wtNlxSHEjyxX-SAJ= zp!>E91!b3zQ+5GF#N{1&*)>g}in(O0F7E(PII{;gW}gJSZ(a zIs`)b*!|Fjjjbx&d8|Y2wItNt(W9YPMqRHHO}!4ZK5(G(o{Y|W4s_inBasIkx3kcE zoyLeRPG6|IYCz8u8ILD@xIHN0`co6SpXm41(`Ux*ArVv@$cFP#JMN6waC=0+olz0@ z$L)9+kh$!S?l?T2vg7d-oitUkqIc4QN3>2gYva`^ireG$laMl^rD7q{*tCr`NpL}T zFs3OV+{wT(9?rtpTo!1AN|TV0StmwjU3~iI+?ZH!V`{;JsRb9q$IPM=!LWl@lxR9Y zt4cJcr4cQ)s*;gBZWx?5fecx1BZXw%uqtF$0Ky(@UgO)gOz7Fd*I>5!iEdsbxOu^U_K^u>IWx(tjM4{ z{!3B13uI?4L~K}Gq%uAUG?tDmOKiNO40IA1(|KYNB_o~((e+xatoER&z=Ct9&ccx9 zL5A3ZbI06Bx$I-pIl%@^Kxoa1CLX6w3fzuPt>|`JEnLn#vLpGjh%4u<>@_i_Wx{SOgyyo05??EXv^)lo&f41yAZE>3j0~0{wpqj`{CEl! zC7gs;6jL^tu_*zCL@8jTaMZ=3J`^(J(2fM$C*G5E#>8a#V}S zQ9Z^-E$|OpSz|*Mj1CzYI7S9_7#`4KctDMjK@CQSH5ePwVth=G3BLi8<9bX_=omI; zC)J266i|Z{oZ8cj7C}--Nl^-gjhI_BV}8lPQNA+^>6lqcLokw#xfKl-Vmd6X8L+%= zM0CTnH~pZAhoYTr332TM$ZHdxy)k3wtpzXMTJUn$ir2dWizXqjUsJQTB7%!AMXNT{ z2STNUFP~ZVWK!C{O7INWWj}!eBp=@B@zZ-9ett(X;^$o}e%clA)2_s#2w(P! ze3n3;`}(C8KYf<*r=K(N>7xtp-`MciKj-3q{jCUp{gV%`wls(>T)^}7biT{~=O5gP z@%)XIjnCvcc)O$jJH6X7fWU$#Amjs4CLc8YuR+B~OKFHjQm_$C!$wSnXVfXOuEmQ@J$JiM zfh4t<|ItaWk+yV#Yth7mQq?GBjZ)VlF%{-xT7*_~tl5|z3u{J1HZ6#4i(JIH`OF3q_1m!a z$~-AmjvC`v){J=j!HLa{G+yP}SQGH}Z8LuRYZRsRW%%x*nTr4qp2@+1#2g$vosGk1 zvvKS~Ax>W|z_}|q>;>awtP@tgnR4ljh|8x1Ts&!ET}rg!;#nt7COR2J5{^npIPS(b ziC%m|z>#Rj;VYTQtnS6pD_$fV(eqjs!OYP_7ml6v;MBQHoV}ET3rU5zm{x)->T+Ds zRPoBykqg;4ol=U6x+)|Y8*s%`hf9V!oYPm~lDPq?ax23~lD!32Y^_LgwBoYVg7e05 zTvFwrrnV8W@O8XcD8Z{48M`wQ)&?xtnRH`wM#k!l6;T2ZzX9PP3+DO-%=TH?EIv45 z#?!Ii)i-Jei6Dg3KWIY#pauQ?W(*8iFgze)bVyWuA)^we{UWBv&6xIE5g4~(a>9!7 z2`hJvP^>Qf>>izSfi@LJ7c&?@MwYTLxR{Bd1^W3dATVb{C}cr6WJM$-VkKlpY*t2e z-i5`m6LZvSwdlgklJYZsa^8XQpbYVFo&nAGX=UBYiJ=X*^k}+c#8poCbnqmErXhC+?A%F4;PGIH zB6{uU9d>d$mI5IbT)k^V*B#TI$gpm~)jI-DM+ihZZwa`1$Br(#0Zd*HTEn80EKavl zz=I6w^;anY%f|Yb0MZ~ZfY1eccCpCjX=?GN3v+tzDS_h&b}JFnf|< za9%-igO}Ia?Abcle0l~ET5}UKwb0p97&55g+*jsg7@>&>!39l2;;=&CLZCvE5()vx zsc`e-OWM;&XuB?<f?t z!Yf#nos>eQM`oo8z8XF9TLfe`Sl}#ILn=x^dv87-jMeZSoj3msuHSQEHqwfzP#vo3 zQc+ZS3B{F3sO!*kssa@W<~ODxuQ>&|E$Q$zCnKvN8NS9OeqP+6<_KN-JSx5Ex@E-7 zY(92&>M%X+#x%SA2u7^5wJkX%+o{G=z$0pnw5S6s6A(0!+X;MM}LhwN&P6Cg3 z+ExFwT`B&XmbgHWN(6^!A2jUX3-+my$R|w@$T&u#T~V4)1S4KOpUC!yyL)$T)dH7TlmWsfjrm!6iz9QUHPAgFt`)WP%d4#`SnIE^%_z;|b-? z3HeQiLRR?05+=hU0NFq$zpr0$WBH1kSErU&eIP|wayaUbE`({S5l^KeV>kiF^t_Fy zB60YjiAQuJdw>0kpKoVlaoxkOECv4vf^L}ArK)gFYhU8 zW24^k@?Lt#vKLF#mQE=mQRQyYwx5cD4blD=pQP!A z3&&14I3n}FcUpXVBo$wMlZ0=+Nyfp0X$%%ej;I+%zWp|Z!9-cXx(Irmpo7}aDVjGs zyA?e>;}{-Z#p6elxOuY&H*Zv9G17(YXU*IqOy*$)2+|RpRAbt&#?+VwlOrmO535-U zWN1Oa!Jsju-G_~_5j94KRTvvdhksOs@i8?f$F&GdYA_Yh@|1%BXMQ?;Uvo3*AkFS+ zeqIX_w`ngaQN0w+yF?MdYi5RyxfK<{t2!*KX%Qjt*fJuvWnu5f){ca&9YFyQns^X^ zJX21N;-v}5YZHqgBn}|2-de$WMSK5Bv$j%fXX1A4S5$PjW5$bZB_)f}vbNU^tY_py z*fjD5G#4K381@>u4P1)1-^l$+k56yZ`21Rh&#$%k{K|+=uPCXBrWMM>;^$8`ynCg^ zySGOC_}PX}A8epiFanT2{gi|M^Z(XhE1Hh}2MO@^AH=hmnvLe4-zp~akFO*y9o*fq zfMRuDZ5r@$L(eBY-rY7ZV0{1Fg3m7nh7K~LlL$!2BSO$YAE(E^?9y765xbju{P0RK zs=wQ|;@zeNZ#T`@-7w?LhT7(I6&)vO{i|~$l8TLJ3bt3$@N7+mmm6BV+SYTy zBQ>#q|5{Ya5&z(%j}c776`yd#L4!{E*q87Te~rL|*63cpvf=qFrG2fB1p?kk8m1T15!lnzk_xj?Ef!)1MAt2dZ3Ikq3kOfwahP;m#u3sn zCk`K1bnt{ziQGNo1^GT`wd=bJIXIP4fb*IPTryVSoTdV2b>+BXZGg(v23^KAsJtCe zxjLY8wIE5GkLH#RECsJ(Va$!#s2R^EtcX0(V{^iZ^%*->f>uPP4OpBsVPRCj{E&pu zkQISp3kJtb=<{3tPW@vRkOpZjYsiFwAv2512}eat_-#r&?}Qyw69T4aqB|*KDj*^- zMJ9K;iD+j?pc{ze3to&bX2Ks)CLjbL0}B}#47)&a`2JZ7rb1SPLIM_pc0@ulBC|C8 zaA9saHrvh$06>(=kL>xe9 z&HdqsV?Uxd4k6w5tvnH-)vTUg2|W+&=)NbR>$ZricO+c9Yhws$qrjgo1L`}KDBj<} zL)=fpqC_k*ohvf)1fjgi%CJ!0D5AVEexWYHS8QhGmMK#Mx@gZSwZfI7VXuQNBNdW2 zg+<^&uY2-T$gdsBpKQ!b``hqFlsK!8PGo4|vnJWih$8Tlsu z`^hRYA)~;cs7TKpeWLF&GRt)6ykEwtwf3BJSTmAfa$iABXD)K9WZ1Gb5HrZ$SQT%@#dXCZs|FmlF&4ypy~>`?s-vt)rR6`BZ`_$C~Pt! zt6BqBX&PLmDcmmJ(_e!6YckvgXHeH+gg;n|!SPZwx9ic^szu9H6S{8N&`D%`OX9M? zhT9@4uNzQ)O^?!U9iJ85dQ^2AQP*Qe(`|`Kltz8G?pZK1osCF1kBfh9-AYAUj~XRS zmr>JWM%@h&Ew?0e-nOIjhKRN<6B=5ysBYAt{kjtkoi;RfNo=H||0!-hcH-e^CayoU z;@Sfvy6$Vyen*A2+v$8>y>Gyc$5!0z7jSb#LJ$29K5W4qN`Io2rdh>+P7p$E<7ECK zco-rOnXsUL+{{g<1Q;|en4B?lBp=1{F@(@66H7!W>Ommv#7IcuG3y9{2)zl-Ix!TK zdHsr}Ao176<{X@EMF2v-?jHe!AcUZR(l`c2wRkvULhp!x-VqBPj+yXe+=PKC3r2%h z<&ANHreR-9FbF`_vJqX)Wf0*~K*qGN;$5Opv5R=+au1n^&;N zh)3{2Q;#@&!~ujZ#=iuRczQ;Sh@<>heHS5QnJ%7mgcXQx~GE_7O+%IxRN%Tskbwbzpt7 z9MN?*Xup@&#v*n$*wYWB@hLK68`+di=Ip?X4bveR!8s>F^Dg${%mif&4C^qr;K9U{ z7u8kCC@YarR#=YzpRxCBjx*1){7{x;vFJTO`1F}idY|y#d+&Y1C%pIG1DQy8M}ppz zo$l)CndzSG9cgzZZ739aAw}rR9L2o}u&P_rJ9=^ApAKY!WRcJBx%Zs&^pTn;G`FuC zI0@&QYX)4orpJ|Q)Qqmg^;G%vyG z;$M3N=s9U+$*0v-Dc07gz)sF3h3g&_Hns(B)85=wW7R9g@{Sm5J2I^ANwK-F#MYsL z_wqf56uGPB*j<8a)yvgF9`WSSjP$+lP-J#N8}0Eldxz7 zh&n`essCbA&W-8Z8{(FH0+FLVf)rmf`|&3bQQ-7Q!6xTd$KiN=911#L9ZT`*NQPHO zv?}Ej8KF-P!tvdE6F$B(!n+;J)0jW}J_$el5QhQRmkb|MLpN}?r^3(gqw)P~2PkIu z{7{1zM_N2TP~&u0iDR!EN82(SdZc{P<7Yc^obSu=@=(b!ywn3iF}!q=KAs!+q_nKx zy?5Xr-r4c~nGUayeV&mwM;fpW)IP7szQB`_m%B>#kG$AX;CxqsfB%%>U^58&?qD2y zLUFtkj^}$4(4>Zb4JfXbra`VirAKSPR44N(gBBM(ckQv866lEozBZvZ$$qfS@Uy&o=Ybip$QA7Hz0PQsylAoARqfSPrH5>gA znV3$cQUreKkK29$xOqk9yP@&Wj&J=f`0{}U!P+!bcda4V zkcBTF=y2_^1>Zih;MyG%uHP}?+nc}Y`VAwl-!S8w8)n>o9E}@~9PAbO`nHi{cCS9L z;>MF`+zO1rV@W#hgvKL4nGJPp9rOv!5LrtRYAA*}vH~hYHma)Yu{>AhGllodusbeb zxmynJlnq;RdhY*Nol{_CM!?F1&n&($qUNbZ|CkEYIR0DFztJRmk3eK#M8MFP2BQ-? zE-{>(GGc1lgqbM=W~MdVu0A`X#mt>Fs9%)6oZ^ppa6x|olK{q)G zI!NskdbEw}*sn^yRRWKS9y!W;<*4XYqH<8pD(_dLtWQ8$uLgO|1R!#rdJuqQ*M=jv zL4*>TW^}074?-8ybiLEqBXBWcYrmG8(g{MEDW;ctLb}wb?^J<6ghWPlQbVVnL4+WL z-)fB_4xsY%2L1|c|jAG$JzV)cfHK~ju9WsgxNX^$FDM!uI1D+t{ zsC{crd0KuwGFc2qVmNH^p|Hk<@JZ`O(Wz3zWytx*rd6-PS_6ved=bF3F2(6x)e1Jw z)5N2`%Z|n#JL+5(_IyxlJ3&YlC8o9;P|>DEd7FTWcER`S=2D}kONXisJ&Kz&$ShYN zrBH!nTEWUUAvxEIq#O&9^Ylo_Q6V-{j`(aPl5#ctnZz6|;xYxqW~h;vqen`f1#uZV zSmWf-+Cy1}ND&mq0OVD~qP`;!Q7Hn#RQC{(Bp|K80gWvL;lh2$4gSzagu|YoWY0`Y znvPHUJoTrLKii%rMoDu5Oo^e;#RNke9RyuWC{jyoh)7pM8yyBsWH`(T3Qif*MT;Rb z2SR2JhRP;}ncCG;O|T_V?}q|XV+hFWL0*yQ3@hSuBA|~}!W5@QN?|O&7N!Y+AC1Lm zJQkbw06n8gSo78*JwF7IiT6?0YC~bA3e`?CQgee~jk$re{2(~H9OxR3Lw$!8)ol*s z*XWT^A%G?!2?bJEQUYK}d5YLPF>1Qv5uXzVL-Z|_)M+ubREVy@c;ps^AiE$4rByOi z)~Qh4q~}O8YPzg(nNj7kBDFFMDKzb<79p!vj+_P`d=%6xxGA&3sX=vv0%c4><36I5hJ}+0@^h!D3_w5T7kMcHJX}?Xlk~gpiG7I0x3rjXO)OJ zO0BNLfVO^$m{Xv-MS;o|DJq;|lr@R?r00|fL6eZC5j`441-{!r`;}zwBJW4vJS9!| zR->pdV~ldRXY?4JP-AdR#TuSaVRTY~(Mie$r|3~7uPzakj8c-tEG0%+d6Ge+Rx+3M zO=}oD2tN8}^b9w&ibZ>-{WAuRy`|)=@dXR!)*~>pY~yBC+83Rg*RiPZh?0c5`oq!M zFGX{o0xkV=v<}M9F(hXQ=_en@w1PosVnNH1x4cHR>A)%#9l4{i=8oiv#;V(PQ4UC+ zjbA~8z+-w*!^u_jnAV5rq(VUwc{CV0w)A|`<4aKj7HQ3GViA07xXm0*=yqGM?Xj{b zEsC_|Hu|(>#)jLziWt#C_-kMlfff1qYVl1 zbv)Ie#4B2_q8^PezX-#vn*yg`QTNAX7YLh~-vDdB5!R>cr9 zKCQyUjG9;VX!rLLJ{Fekn4L3YX4Zs*!wgJJ+7M1%AfNl;%4c6NWZk}|#I373+_+-E zwXY4h^0k%$+q{fZ_Vl!iqf5b}P|YqW+%saW**`gJi+L1;~jrX^%Z zr?SIqS06%9>9M*pkLS-eu(sTacdrKU;Z+MJ1_Uflsu)HAV^dm~qT3?l7b5#n@`d`bvA@xPB zZb-RnWXmlFYg+-&j_M-KO2Ze7+ec~!j*UYFLx=lF3D2<#+b06N#{zaveDFcN9|Rvh z03rDBY4=dccb~TpCGZ|eS$oGapDF!Vj>8i&9?N|?pmZe(4tB-Z-w|QYOYPqhY;VZm zS(n4TCWCuT!lLd9Dl?>Z@WWjt4yjLLPYIre>|d;B@mi4#FONicc@%bWO7QYf%Ef@x zQ2zW#4rm)lw0O3s#)((SD^j!;MWQt+0+BQC#T4W~!BFw$M9siKCy8K$Amsa(Cj3BCmse(f zOh7{KeK=LKJ`#|e2>5WM!rLPy-V@LqD)_v7{_mZq+aWmhhT{1y!G{Ph$qR8L!&{yN zDe&DnL6GL}o&*vkZX~DlvA+QhP9%G&;n(Rsdd|TBr@myXoqd7*8WbL}u_JJp1WhoO zHf31ckT6hCu))H*g#AVHYhv~q%`8(wn-4k&JV^A~>nOlnU^jv%_D#ah_8u4#^gZQD0`vE3geWXT^IvGXIY1|Eugx^gCz74SB#$zjPJ#ygQqX;~D z7=??l(*TBxc_V`c z0mtmT9&-zN%r6=-zii@_-}!YrCrHk3L~Hli`P9`y-8`WCI|nWq?k4MPYS z$Z7R@dd7&k858Db&6r)VVQSgV8xMW+CUngj(J@6HR2|wzwJd@TUiqFfe)4wEnpJhb z3Ke|{ly=Eb=#rqgTY>Tc4Jrn;DCt$BxJN))za9mxaul^HLEex2CJA!t2|&V7+9E@h zONpuuGNsE==Te}dTL~vah#CYTZI?~yJ!&*|sn9?-WeHSVS~$DOq)sbZdenF5*sM+y zk%kT<>e~&xnpN7MLTSB*{T0+BLM4B+enqKR)VV=Z37Saclv64e$?*RXb#`!RV6KY0 zI|xj&%k;=DH6pV_i{xAt5_4pT&y*o9Q;dWxIml#AhI3kpBJiLt6YBLSZ8Y!}45f5& z!D54&Z*o_+8`02hW7TvTP}!yh0SHY(D%(w{XfvX$Ma%8*CCv(ywkS~6s$w7^K%tx8 zS>*!Kim4~XfUHsnvP)x-RT7EB95oVi1tjJ9PJT|WFlr>0E-7M$bMm}4lsA-X*rcI98Ryk@qWM~@IqH$aUis*HY31}G;_-;hs4DEhe zFu4+e$t4>o>58KG#wWB~NJNP~ef?q#ja@{IPRKAkp}@$bk|XpeQHnINXy(5pyC~Xr zM9GclR8B~pA>`la7}lU?!i?TYn%Zd4+#^TZfP(uy7B}NCK4-!3lpcelYQB>*FselF zkPNP#P_(*&(b6q}vs(sdj|9!VVzl>5;2M(hl%{W7f&K|4hGtY4pVwk~*~lii#Z5bw zwj5a5vV-7*n#xIkWss&j`ebCk=Saz#< zmFd-+W*i+2Lm>`B&?7nS-%)W4FHJVcfKIDcH0>Z!B9=;-2B{>G)34|`tzXe+=(B<< z9coz`Pe25D9MsAfh7X#6Sk$R73n|dcVo{vgjJkq;q&P}pltsa!HlVU730vzm*xS#* z_MQ!!^u1m{7Ok6+*?w+Ojrk=VYhlUAB~{C-R`$89uG>LcStid#9A3W8$L@Y6^7EeH z{vAJj>F0-UzrKqbUyB()ZhvFOjc+WtcGWilp*;Uv_q6!-hMavJvT+1T(AQ+*7LYj!k718+2?>0h1Wa#PY#`^LUhI^_p(vyYx(KPI?WnpF7jJ0VE zR;LwMoRVOHy&zJ|j4IdNU(JQRWuQyW_4;$r!_4Sc|=aAVf;|dq7|d_BgqAPi1_jO5dnw~LI^uE*J)jP?H90D6s9#lC;8!H>^0 z`0-SY?@tB%a3bKl6BWKYQsU#W65k)I`1#*EU+#(UVqb(;`(nI0l;F*w6mO1Ycy}!4 zm9+1k3G9ve_s$RJ0?rP_I6ac!*@@3z!^vak0^YpTun68>)5L?o<6HnWnv)NQzUJ_d z$|(hG>}ohjVs%@Er7a~EHl&zemtk&AjF}ZNW>-a+Ta)s0I%ihGF|`zq$;B|tuSzku zLPeTl%q@#Czaqin8m(0M)&!~bowT+=<%>$Ju2T`C9ILBxEUrl~yBUs=wGd41=+L+2 zz|?6K@_SO?_vi~e5r^a2=ik8aM1+o*WSrDA;*Xs@_)}XqeqZIp_XRb0nO20?X@z)` zl#O#oG>$YH94cgZrcvURNrx8>D?Vgq;>VhLylQC2d|oX|^@-5mSK+}|!Fc#cg_{qR z5bKgr*f5IgPt6PUSz3vPX5!1Zf7T)m>fS69@yc0vMojifu{#zyz%nFB^HAfHn%q1kS6*3py;UkVnJB#ecMlyt3)QvO5AR+c8-3#$a|U ziZ#6zjj7EjjIKK{xMD@`f(hMo26W7-(KV-G02-drVRFWVsaZ3o=Pca8MSjnLMH^gm zCbUi);GEF1mxHc5nn$$gn6aR9*2-$1v7u$s%$;R4@hIw&GI->5NKoKXplnFbD(F^& zR6bxpNvD8PQo9O8EpmpC{3a2~TIHzjq6rAC6!`$8zDt3|E+w43N;LPWSOg?Z-70>) z!KDPLiPp7xw49RF&`GOU8eYq)@6e*D%g7=asccsB)=O!Vj;|wW5<=4lT79Ap5$gT8 z>;~~oM2yI<`db-3^@Y&t6h-*b>Q+Iuk-zq`Pb9NM;MFRM_NB;Q^8J=JT2Rq!W?#pp zx1+d0jlwz=-{7VRM@@%`ryc|#wJsyWM|q2y0i>#pCLczWwCH(jhf1&W8|9!$5}gH2 z3VtuIUW3biyyQY1Qj5(y8LQI|vk=bITRTyDP4u&IB3Uf*r?CDY%5<*}}k-(lVhb>J3Q<4Pw z_;45##V{u+p^lV5X&1wkpn)UJ1bwUu#&|VsDFztg1O%!cfns~rkusJhO3t5AIV1?z z2f{Bd<2Fdko>B}=r@<6;4U~4(-WQL`Ml%{aqR`OpKwR1*HlsImm@zV&hOUt)&Ogp5 z6@fC5iyCx@$qIlm<|bk?{CVA}V=x}cIRV@hIklJzQd;&SM8sZ0en|*&i=M*SYCxS+ zKvSE6O-lq9l~i=oXG2l50?9=I$gU1WiBrX|`~J`>P~D(HZKDG9^-|Q72Vibchr_i* z%=D_!4xr%*TjMx{HL=dq~cD zjO>D^sBO`r)n!6ytr)dVIci!IsBclCu1$f4Rt2B+EppVfNzq8Au5p3YFswkspbX9- z8G0tQpvecNQPC8FlCEe!bb3n5W;NP*?{S4-a7c#15jh6O6c`#;@`PlB?z&7-5|$pL zvu5;JVzB6>!lZEn14r+q1x?)oXcX!iG4tJtnpQFDJ7gG~uw!u}1w#{7^o{7z z)vH2hj|?5%QnYu8(9#xy#+E=dcZt#HlECQ_F^shJO3*ndV`CnziuH{8AcSFPLFe<6 zY*?|dVZ*|P^%H;)d|c`hGUy~f13?J&c#xTzKxKWK4AdrWzMffAVRl_$03ic5!v{6K z?odLMj@Q?RvE%klLZ~N$dNJtqY@6ZnL||(>0tY8ipu3LVV-2>C%-HZG;luk8 zdK~<{(f8-2f9RIFj+@^aaqXIbZ@y9C+Z#&Ux~0VB`V|2OO+N@k$Y@TJ4uTDb zqY&xojYvytKw@GwQd8@ZndwAkdM#Y-<1lC)cyRk69^AfxN4Gx5H-3Il2K!-WIU5_( z4s6UCus*B6>WmaC)Mz~^#{9U9*R#0Sf!C(OvA!(EZ()OggZdk&$6=dVuH6#sdZpOg zk@=F1sIP&I+rOSi2PzyL&_%zBFZ_4*-P+;#!f!z}U`)2|Uo@ufFOv|w0d8Xl$ zz{C4Y%i4XW1?hhbAS!I^h_SgVViAmN?@3tvbJDsMCnCvluqVUbjsyfBJG8gI84Axv zI0Fa6$FdZg)PcbOBIlJXTFqhr*;V71AmBj#2|&({G9p0zT-Ja`yzm2YE%@ z8v*S3ApgmmHx|5oYeh?oA1W&R@ZEH%BLF!+R5EN3n0QtKSmeF8# z@#C3*A5K-DM9=@8et0I}9RbI0^p>U{M?L@{2>E!X`n#eYkE7jC9PWj2iWETwrH=U^ zM8nWQ@wx;azNlSaf*B==QR>veft-CBlw!B$r4%~>i<^oI_>f|DRdN9!k_!MK2q6Fw zGk{Digkot!fu(hV2^khvr7U`W2_U}(k4yMiUX_7F@G`w2M&CjRT#IrHZ6{#-paOBF z8u)$dhlh8speWLc<ns)8o0`iubWeIJZUOM5D#2QiivJ z48Jp}@ux^5{t{=yf6Yw6zhtE0V@4)UGxM>TS&WgSd^FfHkf~3^<6B{P@JI!{H48QE zGq@iXfv;(z8XAMos4L{U4p+a?;rdkrZeBIw<~99AF`@zAe5>b<5$YTH?1~(IU(5LX z;+hg)d@JC~8)|%UQ;l$S7VODRM5VVOHphkdyl!ZsD)BHZ0@v?^LL?4Glhc9O*+|Tc zsj)Pz!@`&mD|2?Nt(iH*g!-hGJvOXtMq_a`%D29{NS;a)2A6#rUNYcPBTEKf7|V(g zQ|l(oZCEhBX=PD|6|E&tQ55`!3G?d~ERq*;%Z?RKBvyB#v9cS7mHl|kxuaP#?wDTz zWZA+1(lx6?+pLBmqx|uy5{Y0%}1bf&VlABGkZNsdle|?6r-qHft)rGa$RzUkMbcC!$)4XfU-d&%DObD z=+<&=K}nk&1x_&vTSTCE-r61l5IL${GSs=`sPB@Yv0Kh+>QR71FhVE2-au0l+6w9R zt!hzJFRf+OwUaMI1%eT0w~;3!4V^kvx2jRqLS}9q`z&bkkX<1~dI_aZg&{dVly6|u zO>CM}uxd=~*(Kku?=>Cwj$Agb7uITcqTy?3_kj()=3Da;c)~%Gj>;Ab`#NemENl|5 z?X>blqoh$lF->Ng)cl-Qt_VKryUif8Il)J%Q^mdxnr@V~8d2P=M?s?odG#vf)X9)t zD`nB+ym|rY6*9!-g(E66j6s2*BPLVBU_szO0Fqv2Umvph!5#!toQ#d+ z5h;3D;&dE|OFbxtSOsip5+oK2h|ZNFxm3eJQj}&(074*QO%)@CCN#w+MCYg(KIC?P zC>#OMM2EqaqGRBQNH;Td$gSZF8gaQ1NGgoMQ{_YW%kLvdcnp~(jNen(L@^sA@9s`W2beX$`BWO5h1deuWgyE*lrn&~9I0jRdZ-B>s)e zsgxl;Cjg1r{wQnEptjY3?2=HddCTEFu18aw4wi_|k(u)dZJj1GlR2qDj;dN2T3iM= z+x5t+2u5bfQtbQ)1lz*8?pMNK%`x((>;HK4LS9A(wPaCR!;>eIv7twJlAxaUmhm@%Mz zQq4{0)g3{++O)o#jLqE?Op{4`NWt*2wruAe%bW~X!*98#gVH5i>e5)6)N(B=}O zr6U}@!#WI(o6tXIMq7^xO(;G4b9djXYcWwERDHrBn9lfAWILAe7aIp?8=X z%;Vu~SD>v+KzE-G-F+H#cB|0tQlQhNgsVr1?m-P2JHk-w41}|TzE>%lU14bI3`J{? z7*1ChPepvb6@jzH>F&_fijn^^UflA51SNTJn#U?lGbln<2Qra=GFBnJq2K@jAOJ~3 zK~z&a`I?5IV{TQA*%g6Bjn$Okw6aAjQU)#_bT8yl41Xu0S6~Zc>lqLqC5+}`pge%RV+_6 zXw8ZeuxR~?z=Hf8v~ERZgIY}%14o3T40c-ydq!v~5*!o>QBVwI;jxg5qquj2Qm_Ia zYoHd#AkvtPSW6D{vUnK8Nw6wYIfmD$)FLOt zOpU^WTYnU2Ic>IJbshl=odGLy=*dMBazr>athk{8WqQ zrvfJdQR0-Z@Qpe-)a=DLJQcX7gW$tw8dqWWOoi>|T5LVnVe3?b%@Z{?js-s5CmMK8 zwd@UHf5?vP!kn(SC?-_Gy(h=ob~x6(q6-iq_>jT7FXtqry#pmEmX&oVfZ=G*w^BtW z^Mf6QZ~baj?wf!RgsjjSmW)@kXbM7}5SoP0X9+@R`a$qPC#5)1D%JBt2}k3e(_Q>y zDX0_TXeS(d-cYpYj++C`y)$*5AJ|;fJ?oKIu7i ze9#&f`6x)2o)TW|I+U@`f`9HKCC-mktjq2UZudU(nZK!1@m)RGtz3*i`_ z55wqe2){-#+cbrpTa$l!zI|Z9hDV2mB`Id+!ZE)nVNK11Vs>7HwG9EwR6MsKV0BZC zwJi;w^n7VeiTQN}Mi;{|wl1J+MuoxUXv}ODBQY%$;zxdH&vf9Aa|8G)SDzT8u221^Q3}p4^u~t4l;#%>W*R+VJIF0axxD@gO)3kDtcz zx|KLA6ADodl#*;nL>UMTO~%up1cZo^@iZi!ryu?yaR?G6Aw-gb08t_yQ$+B6BR;<& z!0(H2`1ysv?`tu>eqh97X%eJ{bd*#$vFV=0mbVVm^A5hrw=i#jcPj}?3l3}$5O{4I z^}gVZ!2DJ$=GLMyyJE-miVfqN4vcL^Vss+{qw6+|tXVOnSp0u$&9{5 z6I_c1bS)Xt&pwZfV&GXDMyD+poVIewaqE-`^`jb;4Jc9CD@R$M0<}Y0PP3vLpskZe z(Db8q%7Xe)9jXTfR1IlRGonL&r<4ICvrUYgP8o{(bf_3MqjJoO$`K1{hm5H1)1kam z1p<)bRvAh=eCt;PAoV>0YP#g8?UbRRTaNZ2EnK5IbdG4zHYo5(k4e-j-!`a0GkIfO z3e_osb|P8UI&5RCX@J(A0Q20%+W?_0Y8*P0K&Tb}82t}kNXFp|AIvLO@`6?;fA5<R8C1STzz)z993g^JrB8s{zy*0iF&7kRaqy;VSCZ78Y=?_zV> zj+dS^tPJWg+$x8&R*IS$6>6HSXzq+b|6me^2NTfWX+=kalGWX&Lsyp(<1=ySAGD&j zQHGXQH9C7teAYF|`E2XbqP{g(6K!dJcHG2BB=o>Mj zqep}GUJdG7X%$S&ZKPBJ)YPTBxSK#mF9WJu=njJh6-{#Fmj|P^MZoZ6JjP}c*q~4U z{XKmq^z<3v>ej;5qe1_G5u;;P435yRJxzK7(byJ>=1viVNOPxzTT*E<(%vWKlo0Zu z^iKp+72(Z%k`%~AaR?1G zBjB-s(5D9Wfh0JJkP%-6vnmlfX&j7_WN5=-WHhJNa{>-}Oa^oUjmvo6 zn>S^=enru|5=jiGxX_?Wg;ZpNQe;MYd=}E;V&H%0a|GS9#)?~t)olsLT)gJ_^<3TzWh3yaCyYVFvrB7Oau9s%AF4h9$jOl!$A>h<5H6-R zv{EHt*DYXYQ-GIBB{vkToh_d+oeb*a1)+2-->(rx%Ki!<6fb*5vA7qF+m`@xawx{( zo`^4!59z;UPmZ5|PQdW!4b;~A;p9w**Y6#8@!G^q>>plIv%0Tv@B^8$FPqrOA91GS zW^d{Mp-vHB2gv1`mlQ7uPEG_6bX
        t|Y!2yO^YKE5{N?YSO%?odvwqR-Q7WDX|~ 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ⅆu~4 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 literal 0 HcmV?d00001 diff --git a/public/css.css b/public/css.css new file mode 100644 index 000000000..4838d406f --- /dev/null +++ b/public/css.css @@ -0,0 +1,25 @@ +body { + background-image: url(background.png); + background-size: cover; +} + +h1,p { + text-align: center; +} + +.row { + width: auto; + border: 2px solid #fff; + display: flex; +} + +.col { + flex: 1; + margin: 10px; + padding: 40px; +} + +.btn{ + width: 25%; +} + diff --git a/public/profile.js b/public/profile.js index 3353a6d58..a4eee7806 100644 --- a/public/profile.js +++ b/public/profile.js @@ -38,8 +38,14 @@ window.onload = function () { if (item.user === user) { let profileList = document.createElement("ul"); + profileList.style.listStyle = "none"; + profileList.style.fontSize = "larger"; let fPList = document.createElement("ul"); + fPList.style.listStyle="none" + fPList.style.fontSize = "larger"; let cPList = document.createElement("ul"); + cPList.style.listStyle="none" + cPList.style.fontSize = "larger"; const fName = document.createElement("li"); const fullName = "Name: " + item.firstName + " " + item.lastName; @@ -87,12 +93,12 @@ window.onload = function () { profileList.appendChild(distanceItem); const firstProjectItem = document.createElement("li"); - const firstProjectDesc = "Name of First Project: " + item.firstProject; + const firstProjectDesc = "First Project: " + item.firstProject; firstProjectItem.innerHTML = firstProjectDesc; fPList.appendChild(firstProjectItem); const currentProjectItem = document.createElement("li"); - const currentProject = "Name of Current Project: " + item.currentProject; + const currentProject = "Current Project: " + item.currentProject; currentProjectItem.innerHTML = currentProject; cPList.appendChild(currentProjectItem); diff --git a/public/profileCard.css b/public/profileCard.css index 2c10ce9f1..56c4435f7 100644 --- a/public/profileCard.css +++ b/public/profileCard.css @@ -1,13 +1,17 @@ .card { box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); + background: rgba(245, 245, 220, 0.8); max-width: 350px; margin: auto; - background: white; text-align: center; border-radius: 10%; } +body{ + background: #8C8356; +} + .title { color: grey; font-size: 18px; diff --git a/public/style.css b/public/style.css index cf78f7d01..6b155d5be 100644 --- a/public/style.css +++ b/public/style.css @@ -39,7 +39,7 @@ label{ flex: 1; margin: 10px; padding: 40px; - border: 2px solid palevioletred; + border: 2px solid #8C8356; border-radius: 5px; } @@ -53,7 +53,7 @@ h1 { color: cadetblue; text-align: center; border: 2px solid #fff; - border-color: rgb(105, 182, 250); + border-color: #8C8356; border-radius: 5px; } @@ -73,7 +73,7 @@ p { text-align: center; font-size: larger; font-family: "InterTight"; - background-color: cadetblue; + background-color: #8C8356; color: rgb(12, 12, 12); padding: 14px 20px; border: none; @@ -87,7 +87,7 @@ p { text-align: center; font-size: larger; font-family: "InterTight"; - background-color: cadetblue; + background-color: #8C8356; color: rgb(12, 12, 12); padding: 14px 20px; border: none; @@ -96,7 +96,7 @@ p { } .submitButton-container:hover,.editButton-container:hover { - background-color: #2e6768; + background-color: #3E4016; } .sidenav { @@ -148,4 +148,3 @@ textarea { .sidenav a {font-size: 18px;} } -/*Profile Card Css*/ diff --git a/views/index.html b/views/index.html index ce4f32002..7d6a5390b 100644 --- a/views/index.html +++ b/views/index.html @@ -3,16 +3,53 @@ Welcome to GitHub(by) Express - - + + -

        Welcome to GitHub(by) Express!!!

        -

        Welcome to the newest social media platform to get to know other coders and start new bonds and relationships.

        -

        Please input your login information. If you do not have an account, please create simply a new account.

        + +
        + +
      +
      + - + + + + + + + + + + + + + + + + From 56a46dc1f25764c93d1e923a830e6f6bfe152b69 Mon Sep 17 00:00:00 2001 From: Ryan Luu Date: Thu, 13 Oct 2022 14:19:09 -0400 Subject: [PATCH 37/42] fixed viewProfile text size and list items --- public/viewProfile.js | 6 ++++++ views/userProfile.html | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/public/viewProfile.js b/public/viewProfile.js index cfec07dc9..038dd3a6f 100644 --- a/public/viewProfile.js +++ b/public/viewProfile.js @@ -17,8 +17,14 @@ window.onload = function () { document.getElementById("profilePic").appendChild(img); let profileList = document.createElement("ul"); + profileList.style.listStyle = "none"; + profileList.style.fontSize = "larger"; let fPList = document.createElement("ul"); + fPList.style.listStyle="none" + fPList.style.fontSize = "larger"; let cPList = document.createElement("ul"); + cPList.style.listStyle="none" + cPList.style.fontSize = "larger"; const fName = document.createElement("li"); const fullName = "Name: " + response.firstName + " " + response.lastName; diff --git a/views/userProfile.html b/views/userProfile.html index 90eb4d427..47f99e0eb 100644 --- a/views/userProfile.html +++ b/views/userProfile.html @@ -9,9 +9,9 @@
      From cd918ae3b446119f6ce74b67e771c3c49cb65891 Mon Sep 17 00:00:00 2001 From: Livingwell088 <58043224+Livingwell088@users.noreply.github.com> Date: Thu, 13 Oct 2022 18:27:17 -0400 Subject: [PATCH 38/42] Final --- public/profile.js | 2 ++ public/viewProfile.js | 25 +++---------------------- 2 files changed, 5 insertions(+), 22 deletions(-) diff --git a/public/profile.js b/public/profile.js index a4eee7806..84768ac96 100644 --- a/public/profile.js +++ b/public/profile.js @@ -12,6 +12,8 @@ window.onload = function () { console.log(text); const img = new Image(); img.src = text; + img.style.width = "250px"; + img.style.height = "auto"; document.getElementById("profilePic").lastElementChild; document.getElementById("profilePic").appendChild(img); }) diff --git a/public/viewProfile.js b/public/viewProfile.js index 038dd3a6f..26ae668ca 100644 --- a/public/viewProfile.js +++ b/public/viewProfile.js @@ -11,7 +11,7 @@ window.onload = function () { const img = new Image(); img.src = response.pic; - img.style.width = "150px"; + img.style.width = "250px"; img.style.height = "auto"; document.getElementById("profilePic").lastElementChild; document.getElementById("profilePic").appendChild(img); @@ -31,10 +31,6 @@ window.onload = function () { fName.innerHTML = fullName; profileList.appendChild(fName); - // const addressItem = document.createElement("li"); - // const address = "Address: " + response.address; - // addressItem.innerHTML = address; - // profileList.appendChild(addressItem); const emailItem = document.createElement("li"); const email = "Email: " + response.email; @@ -59,28 +55,13 @@ window.onload = function () { let github = document.getElementById("githubHeader"); github.href = ("https://www.github.com/" + response.user); - // const youngestItem = document.createElement("li"); - // const youngestDescription = "Youngest: " + response.youngest; - // youngestItem.innerHTML = youngestDescription; - // profileList.appendChild(youngestItem); - - // const oldestItem = document.createElement("li"); - // const oldestDescription = "Oldest: " + response.oldest; - // oldestItem.innerHTML = oldestDescription; - // profileList.appendChild(oldestItem); - - // const distanceItem = document.createElement("li"); - // const distanceDescription = "Distance: " + response.distance; - // distanceItem.innerHTML = distanceDescription; - // profileList.appendChild(distanceItem); - const firstProjectItem = document.createElement("li"); - const firstProjectDesc = "Name of First Project: " + response.firstProject; + const firstProjectDesc = "First Project: " + response.firstProject; firstProjectItem.innerHTML = firstProjectDesc; fPList.appendChild(firstProjectItem); const currentProjectItem = document.createElement("li"); - const currentProject = "Name of Current Project: " + response.currentProject; + const currentProject = "Current Project: " + response.currentProject; currentProjectItem.innerHTML = currentProject; cPList.appendChild(currentProjectItem); From a141b12f8dfefdd5a9cd56ef003ab6cc7b55195f Mon Sep 17 00:00:00 2001 From: Livingwell088 <58043224+Livingwell088@users.noreply.github.com> Date: Thu, 13 Oct 2022 18:32:49 -0400 Subject: [PATCH 39/42] Final 2 --- public/viewProfile.js | 12 ++++++++++++ views/userProfile.html | 4 ++-- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/public/viewProfile.js b/public/viewProfile.js index 26ae668ca..db4a166c5 100644 --- a/public/viewProfile.js +++ b/public/viewProfile.js @@ -1,6 +1,18 @@ let user = null; window.onload = function () { + fetch('/getUser', { + method: 'GET', + headers: {'Content-Type': 'application/json'} + }) + .then(response => (response.text())) + .then(text => { + user = text; + console.log(user); + document.getElementById("loggedIn").innerHTML = "Logged in as: " + user; + }) + console.log(user); + fetch('/getViewingProfile', { method: 'GET', headers: {'Content-Type': 'application/json'} diff --git a/views/userProfile.html b/views/userProfile.html index 47f99e0eb..326ce328e 100644 --- a/views/userProfile.html +++ b/views/userProfile.html @@ -9,9 +9,9 @@
      From f28315119481d90b629252332b6f4b613e55f7d6 Mon Sep 17 00:00:00 2001 From: Othniel9 Date: Thu, 13 Oct 2022 19:34:00 -0400 Subject: [PATCH 40/42] Readme added --- README.txt | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 README.txt diff --git a/README.txt b/README.txt new file mode 100644 index 000000000..24e459a37 --- /dev/null +++ b/README.txt @@ -0,0 +1,21 @@ +https://bondah-li-luu-cs4241.herokuapp.com/ + +1. Our Team created a dating/mingling app for GitHub users to meet people, socialize, find work partners and even potential life partners. When a user launches the website they will be greeted with a login page that features a GitHub Auth0 login to actually make sure only GitHub authorized users are accessing the website. After login, the User is transferred to the main page where they can create their profile. Some essential profile elements include name, profile picture, projects,age, age interest when it comes to getting matched with people. +After a successful profile creation, a User can access the matching page from the menu, which displays profiles that match the age gap chosen by the User. After getting your matches you can click on their profile to learn more about them, and their projects. + + +2. The login page should be fairly straight forward. There is only one single button that allows you to log in with your github account. Any person with an existing Github account would be able to enter the website. After you have successfully authorized and logged in for the first time, you would be prompted to enter your information and profile. There are some key information on the page that would determine the user experience. The first is the status of your profile. If you select “mingle”, you would only be able to match with other users that also want to mingle, and the same goes for “date”. The second being the age preferences. You will only be matched with users whose age matches your preferences AND your age matches their preference. So if your matching page shows no users to match with, try increasing the age preferences and/or changing the status. We have included 20 fake users so at least one or two should show on your page. + + +3. The technologies that we used included + 1. Design: HTML,CSS, JavaScript, and BootStrap + 1. HTML, CSS, JavaScript and Bootstrap were used to design the different screens such as the profile creation, the profile view, the matching section and the actual login using the GitHub Authentication. With these major design elements and technologies, we were able to create a fluid website where it is pretty simple and does not take too much space on the screen in terms of text. + 2. Hosting Server: Heroku + 1. Heroku was used to host the server for external usage beyond running localhost. + 3. Backend : NodeJS, MongoDB + 1. NodeJS and MongoDB were used to store data that we had each user input when profile creation was successful. NodeJS allowed for us to run the server locally when needing to debug certain branches, whilst keeping our server smooth and clean/ + 4. Authentication: GitHub +4. The first challenge that we faced creating this application is determining the project idea. We ultimately decided to work on this idea after some discussion and elimination. The next challenge faced was figuring out the form of login and authentication for this project. We ended up only allowing users to log in with GitHub since this will only be for GitHub users and we will fetch some requests from their respective GitHub profiles. We also faced some challenges with styling of the pages and the aesthetics. We used Bootstrap as the framework. +5. Othniel Bondah - Used features of BootStrap and CSS to style and create layouts. +Nicholas Li - Designing and implementing the server, mongo database, and client side javascript. +Ryan Luu - Designing and implementing the client, used features of BootStrap, JavaScript, HTML, CSS and some backend with MongoDB. \ No newline at end of file From 161374c39e9f7481ed77bbc5531a054bd0007475 Mon Sep 17 00:00:00 2001 From: Othniel9 Date: Thu, 13 Oct 2022 19:36:47 -0400 Subject: [PATCH 41/42] updated --- README.md | 68 +++++++++++++++--------------------------------------- README.txt | 21 ----------------- 2 files changed, 19 insertions(+), 70 deletions(-) delete mode 100644 README.txt diff --git a/README.md b/README.md index e5b5ca55b..0cc1d6544 100644 --- a/README.md +++ b/README.md @@ -1,49 +1,19 @@ -# Final Project -*Due before the start of class, October 13th (final day of the term)* - -For your final project, you'll implement a web application that exhibits understanding of the course materials. -This project should provide an opportunity to both be creative and to pursue individual research and learning goals. - -## General description -Your project should consist of a complete Web application, exhibiting facets of the three main sections of the course material: - -- Static web page content and design. You should have a project that is accessible, easily navigable, and features significant content. -- Dynamic behavior implemented with JavaScript (TypeScript is also allowed if your group wants to explore it). -- Server-side programming *using Node.js*. Typically this will take the form of some sort of persistent data (database), authentication, and possibly server-side computation. -- A video (less than five minutes) where each group member explains some aspect of the project. An easy way to produce this video is for you all the groups members to join a Zoom call that is recorded; each member can share their screen when they discuss the project or one member can "drive" the interface while other members narrate (this second option will probably work better.) The video should be posted on YouTube or some other accessible video hosting service. Make sure your video is less than five minutes, but long enough to successfully explain your project and show it in action. There is no minimum video length. - -## Project ideation -Excellent projects typically serve someone/some group; for this assignment you need to define your users and stakeholders. I encourage you to identify projects that will have impact, either artistically, politically, or in terms of productivity. - -### Deliverables - -#### Form Team (due 9/25) -Students are will work in teams of 3-5 students for the project; teams of two can be approved with the permission of the instructor. Working in teams should help enable you to build a good project in a limited amount of time. Use the `#project-logistics` channel in Discord to pitch ideas for final projects and/or find fellow team members as needed. - -Teams must be in place by end of day on Sunday, September 25th. If you have not identified a team at this point, you will be assigned a team. You will be given some class time on Monday to work on your proposal, but please plan on reserving additional time outside of class as needed. - -#### Proposal (due 9/27) -Provide an outline of your project direction and the names of associated team members. -The outline should have enough detail so that staff can determine if it meets the minimum expectations, or if it goes too far to be reasonable by the deadline. Please include a general description of a project, and list of key technologies/libraries you plan on using (e.g. React, Three.js, Svelte, TypeScript etc.). Two to four paragraps should provide enough level of detail. Name the file proposal.md and submit a pull request by Tuesday, September 27th at 11:59 PM (end of day). Only one pull request is required per team. - -There are no other scheduled checkpoints for your project. - -#### Turning in Your Project -Submit a second PR on the final project repo to turn in your app and code. Again, only one pull request per team. - -Deploy your app, in the form of a webpage, to Glitch/Heroku/Digital Ocean or some other service; it is critical that the application functions correctly wherever you post it. - -The README for your second pull request doesn’t need to be a formal report, but it should contain: - -1. A brief description of what you created, and a link to the project itself (two paragraphs of text) -2. Any additional instructions that might be needed to fully use your project (login information etc.) -3. An outline of the technologies you used and how you used them. -4. What challenges you faced in completing the project. -5. What each group member was responsible for designing / developing. -6. A link to your project video. - -Think of 1,3, and 4 in particular in a similar vein to the design / tech achievements for A1—A4… make a case for why what you did was challenging and why your implementation deserves a grade of 100%. - -## FAQs - -- **Can I use XYZ framework?** You can use any web-based frameworks or tools available, but for your server programming you need to use Node.js. Your client-side scripting language should be either JavaScript or TypeScript. +https://bondah-li-luu-cs4241.herokuapp.com/ + +Our Team created a dating/mingling app for GitHub users to meet people, socialize, find work partners and even potential life partners. When a user launches the website they will be greeted with a login page that features a GitHub Auth0 login to actually make sure only GitHub authorized users are accessing the website. After login, the User is transferred to the main page where they can create their profile. Some essential profile elements include name, profile picture, projects,age, age interest when it comes to getting matched with people. + After a successful profile creation, a User can access the matching page from the menu, which displays profiles that match the age gap chosen by the User. After getting your matches you can click on their profile to learn more about them, and their projects. + +The login page should be fairly straight forward. There is only one single button that allows you to log in with your github account. Any person with an existing Github account would be able to enter the website. After you have successfully authorized and logged in for the first time, you would be prompted to enter your information and profile. There are some key information on the page that would determine the user experience. The first is the status of your profile. If you select “mingle”, you would only be able to match with other users that also want to mingle, and the same goes for “date”. The second being the age preferences. You will only be matched with users whose age matches your preferences AND your age matches their preference. So if your matching page shows no users to match with, try increasing the age preferences and/or changing the status. We have included 20 fake users so at least one or two should show on your page. + +The technologies that we used included + Design: HTML,CSS, JavaScript, and BootStrap + HTML, CSS, JavaScript and Bootstrap were used to design the different screens such as the profile creation, the profile view, the matching section and the actual login using the GitHub Authentication. With these major design elements and technologies, we were able to create a fluid website where it is pretty simple and does not take too much space on the screen in terms of text. + Hosting Server: Heroku + Heroku was used to host the server for external usage beyond running localhost. + Backend : NodeJS, MongoDB + NodeJS and MongoDB were used to store data that we had each user input when profile creation was successful. NodeJS allowed for us to run the server locally when needing to debug certain branches, whilst keeping our server smooth and clean/ + Authentication: GitHub +The first challenge that we faced creating this application is determining the project idea. We ultimately decided to work on this idea after some discussion and elimination. The next challenge faced was figuring out the form of login and authentication for this project. We ended up only allowing users to log in with GitHub since this will only be for GitHub users and we will fetch some requests from their respective GitHub profiles. We also faced some challenges with styling of the pages and the aesthetics. We used Bootstrap as the framework. +Othniel Bondah - Used features of BootStrap and CSS to style and create layouts. +Nicholas Li - Designing and implementing the server, mongo database, and client side javascript. +Ryan Luu - Designing and implementing the client, used features of BootStrap, JavaScript, HTML, CSS and some backend with MongoDB. \ No newline at end of file diff --git a/README.txt b/README.txt deleted file mode 100644 index 24e459a37..000000000 --- a/README.txt +++ /dev/null @@ -1,21 +0,0 @@ -https://bondah-li-luu-cs4241.herokuapp.com/ - -1. Our Team created a dating/mingling app for GitHub users to meet people, socialize, find work partners and even potential life partners. When a user launches the website they will be greeted with a login page that features a GitHub Auth0 login to actually make sure only GitHub authorized users are accessing the website. After login, the User is transferred to the main page where they can create their profile. Some essential profile elements include name, profile picture, projects,age, age interest when it comes to getting matched with people. -After a successful profile creation, a User can access the matching page from the menu, which displays profiles that match the age gap chosen by the User. After getting your matches you can click on their profile to learn more about them, and their projects. - - -2. The login page should be fairly straight forward. There is only one single button that allows you to log in with your github account. Any person with an existing Github account would be able to enter the website. After you have successfully authorized and logged in for the first time, you would be prompted to enter your information and profile. There are some key information on the page that would determine the user experience. The first is the status of your profile. If you select “mingle”, you would only be able to match with other users that also want to mingle, and the same goes for “date”. The second being the age preferences. You will only be matched with users whose age matches your preferences AND your age matches their preference. So if your matching page shows no users to match with, try increasing the age preferences and/or changing the status. We have included 20 fake users so at least one or two should show on your page. - - -3. The technologies that we used included - 1. Design: HTML,CSS, JavaScript, and BootStrap - 1. HTML, CSS, JavaScript and Bootstrap were used to design the different screens such as the profile creation, the profile view, the matching section and the actual login using the GitHub Authentication. With these major design elements and technologies, we were able to create a fluid website where it is pretty simple and does not take too much space on the screen in terms of text. - 2. Hosting Server: Heroku - 1. Heroku was used to host the server for external usage beyond running localhost. - 3. Backend : NodeJS, MongoDB - 1. NodeJS and MongoDB were used to store data that we had each user input when profile creation was successful. NodeJS allowed for us to run the server locally when needing to debug certain branches, whilst keeping our server smooth and clean/ - 4. Authentication: GitHub -4. The first challenge that we faced creating this application is determining the project idea. We ultimately decided to work on this idea after some discussion and elimination. The next challenge faced was figuring out the form of login and authentication for this project. We ended up only allowing users to log in with GitHub since this will only be for GitHub users and we will fetch some requests from their respective GitHub profiles. We also faced some challenges with styling of the pages and the aesthetics. We used Bootstrap as the framework. -5. Othniel Bondah - Used features of BootStrap and CSS to style and create layouts. -Nicholas Li - Designing and implementing the server, mongo database, and client side javascript. -Ryan Luu - Designing and implementing the client, used features of BootStrap, JavaScript, HTML, CSS and some backend with MongoDB. \ No newline at end of file From 0d46d64c25dc6893413c447d5dd812d23a2bd1b6 Mon Sep 17 00:00:00 2001 From: rluu1 Date: Thu, 13 Oct 2022 19:46:20 -0400 Subject: [PATCH 42/42] Update README.md --- README.md | 37 +++++++++++++++++++++++++++---------- 1 file changed, 27 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0cc1d6544..c0217f29e 100644 --- a/README.md +++ b/README.md @@ -1,19 +1,36 @@ +# GitHub(by) Express + https://bondah-li-luu-cs4241.herokuapp.com/ -Our Team created a dating/mingling app for GitHub users to meet people, socialize, find work partners and even potential life partners. When a user launches the website they will be greeted with a login page that features a GitHub Auth0 login to actually make sure only GitHub authorized users are accessing the website. After login, the User is transferred to the main page where they can create their profile. Some essential profile elements include name, profile picture, projects,age, age interest when it comes to getting matched with people. - After a successful profile creation, a User can access the matching page from the menu, which displays profiles that match the age gap chosen by the User. After getting your matches you can click on their profile to learn more about them, and their projects. +## The Goal + +Our Team created a dating/mingling app for GitHub users to meet people, socialize, find work partners and even potential life partners. When a user launches the website they will be greeted with a login page that features a GitHub Auth0 login to actually make sure only GitHub authorized users are accessing the website. After login, the User is transferred to the main page where they can create their profile. Some essential profile elements include name, profile picture, projects,age, age interest when it comes to getting matched with people. After a successful profile creation, a User can access the matching page from the menu, which displays profiles that match the age gap chosen by the User. After getting your matches you can click on their profile to learn more about them, and their projects. + +## The Instructions The login page should be fairly straight forward. There is only one single button that allows you to log in with your github account. Any person with an existing Github account would be able to enter the website. After you have successfully authorized and logged in for the first time, you would be prompted to enter your information and profile. There are some key information on the page that would determine the user experience. The first is the status of your profile. If you select “mingle”, you would only be able to match with other users that also want to mingle, and the same goes for “date”. The second being the age preferences. You will only be matched with users whose age matches your preferences AND your age matches their preference. So if your matching page shows no users to match with, try increasing the age preferences and/or changing the status. We have included 20 fake users so at least one or two should show on your page. +## Technologies + The technologies that we used included - Design: HTML,CSS, JavaScript, and BootStrap - HTML, CSS, JavaScript and Bootstrap were used to design the different screens such as the profile creation, the profile view, the matching section and the actual login using the GitHub Authentication. With these major design elements and technologies, we were able to create a fluid website where it is pretty simple and does not take too much space on the screen in terms of text. - Hosting Server: Heroku - Heroku was used to host the server for external usage beyond running localhost. - Backend : NodeJS, MongoDB - NodeJS and MongoDB were used to store data that we had each user input when profile creation was successful. NodeJS allowed for us to run the server locally when needing to debug certain branches, whilst keeping our server smooth and clean/ - Authentication: GitHub +- Design: HTML,CSS, JavaScript, and BootStrap +HTML, CSS, JavaScript and Bootstrap were used to design the different screens such as the profile creation, the profile view, the matching section and the actual login using the GitHub Authentication. With these major design elements and technologies, we were able to create a fluid website where it is pretty simple and does not take too much space on the screen in terms of text. +- Hosting Server: Heroku +Heroku was used to host the server for external usage beyond running localhost. +- Backend : NodeJS, MongoDB +NodeJS and MongoDB were used to store data that we had each user input when profile creation was successful. NodeJS allowed for us to run the server locally when needing to debug certain branches, whilst keeping our server smooth and clean/ +- Authentication: GitHub + +## Challenges + The first challenge that we faced creating this application is determining the project idea. We ultimately decided to work on this idea after some discussion and elimination. The next challenge faced was figuring out the form of login and authentication for this project. We ended up only allowing users to log in with GitHub since this will only be for GitHub users and we will fetch some requests from their respective GitHub profiles. We also faced some challenges with styling of the pages and the aesthetics. We used Bootstrap as the framework. + +## Group Members + Othniel Bondah - Used features of BootStrap and CSS to style and create layouts. Nicholas Li - Designing and implementing the server, mongo database, and client side javascript. -Ryan Luu - Designing and implementing the client, used features of BootStrap, JavaScript, HTML, CSS and some backend with MongoDB. \ No newline at end of file +Ryan Luu - Designing and implementing the client, used features of BootStrap, JavaScript, HTML, CSS and some backend with MongoDB. + +## Video + +https://drive.google.com/drive/folders/135dUpbm4LM726oJdvykhER5qcCHtD4ZS?usp=sharing

    (lJn#puE76cumRPYm?1u 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�ztRiZZ?%Ii!{5Z|)lT$j$F@g0=KiOp}J;~r) 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�ATB+4nHcs>Gj@Qy_wt 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